]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c
MFV r316902: 7745 print error if lzc_* is called before libzfs_core_init
[FreeBSD/FreeBSD.git] / cddl / contrib / opensolaris / lib / libzfs / common / libzfs_sendrecv.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21
22 /*
23  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Copyright (c) 2011, 2015 by Delphix. All rights reserved.
25  * Copyright (c) 2012, Joyent, Inc. All rights reserved.
26  * Copyright (c) 2012 Pawel Jakub Dawidek. All rights reserved.
27  * Copyright (c) 2013 Steven Hartland. All rights reserved.
28  * Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
29  * Copyright (c) 2014 Integros [integros.com]
30  * Copyright 2016 Igor Kozhukhov <ikozhukhov@gmail.com>
31  */
32
33 #include <assert.h>
34 #include <ctype.h>
35 #include <errno.h>
36 #include <libintl.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <strings.h>
40 #include <unistd.h>
41 #include <stddef.h>
42 #include <fcntl.h>
43 #include <sys/param.h>
44 #include <sys/mount.h>
45 #include <pthread.h>
46 #include <umem.h>
47 #include <time.h>
48
49 #include <libzfs.h>
50 #include <libzfs_core.h>
51
52 #include "zfs_namecheck.h"
53 #include "zfs_prop.h"
54 #include "zfs_fletcher.h"
55 #include "libzfs_impl.h"
56 #include <zlib.h>
57 #include <sha2.h>
58 #include <sys/zio_checksum.h>
59 #include <sys/ddt.h>
60
61 #ifdef __FreeBSD__
62 extern int zfs_ioctl_version;
63 #endif
64
65 /* in libzfs_dataset.c */
66 extern void zfs_setprop_error(libzfs_handle_t *, zfs_prop_t, int, char *);
67 /* We need to use something for ENODATA. */
68 #define ENODATA EIDRM
69
70 static int zfs_receive_impl(libzfs_handle_t *, const char *, const char *,
71     recvflags_t *, int, const char *, nvlist_t *, avl_tree_t *, char **, int,
72     uint64_t *, const char *);
73 static int guid_to_name(libzfs_handle_t *, const char *,
74     uint64_t, boolean_t, char *);
75
76 static const zio_cksum_t zero_cksum = { 0 };
77
78 typedef struct dedup_arg {
79         int     inputfd;
80         int     outputfd;
81         libzfs_handle_t  *dedup_hdl;
82 } dedup_arg_t;
83
84 typedef struct progress_arg {
85         zfs_handle_t *pa_zhp;
86         int pa_fd;
87         boolean_t pa_parsable;
88 } progress_arg_t;
89
90 typedef struct dataref {
91         uint64_t ref_guid;
92         uint64_t ref_object;
93         uint64_t ref_offset;
94 } dataref_t;
95
96 typedef struct dedup_entry {
97         struct dedup_entry      *dde_next;
98         zio_cksum_t dde_chksum;
99         uint64_t dde_prop;
100         dataref_t dde_ref;
101 } dedup_entry_t;
102
103 #define MAX_DDT_PHYSMEM_PERCENT         20
104 #define SMALLEST_POSSIBLE_MAX_DDT_MB            128
105
106 typedef struct dedup_table {
107         dedup_entry_t   **dedup_hash_array;
108         umem_cache_t    *ddecache;
109         uint64_t        max_ddt_size;  /* max dedup table size in bytes */
110         uint64_t        cur_ddt_size;  /* current dedup table size in bytes */
111         uint64_t        ddt_count;
112         int             numhashbits;
113         boolean_t       ddt_full;
114 } dedup_table_t;
115
116 static int
117 high_order_bit(uint64_t n)
118 {
119         int count;
120
121         for (count = 0; n != 0; count++)
122                 n >>= 1;
123         return (count);
124 }
125
126 static size_t
127 ssread(void *buf, size_t len, FILE *stream)
128 {
129         size_t outlen;
130
131         if ((outlen = fread(buf, len, 1, stream)) == 0)
132                 return (0);
133
134         return (outlen);
135 }
136
137 static void
138 ddt_hash_append(libzfs_handle_t *hdl, dedup_table_t *ddt, dedup_entry_t **ddepp,
139     zio_cksum_t *cs, uint64_t prop, dataref_t *dr)
140 {
141         dedup_entry_t   *dde;
142
143         if (ddt->cur_ddt_size >= ddt->max_ddt_size) {
144                 if (ddt->ddt_full == B_FALSE) {
145                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
146                             "Dedup table full.  Deduplication will continue "
147                             "with existing table entries"));
148                         ddt->ddt_full = B_TRUE;
149                 }
150                 return;
151         }
152
153         if ((dde = umem_cache_alloc(ddt->ddecache, UMEM_DEFAULT))
154             != NULL) {
155                 assert(*ddepp == NULL);
156                 dde->dde_next = NULL;
157                 dde->dde_chksum = *cs;
158                 dde->dde_prop = prop;
159                 dde->dde_ref = *dr;
160                 *ddepp = dde;
161                 ddt->cur_ddt_size += sizeof (dedup_entry_t);
162                 ddt->ddt_count++;
163         }
164 }
165
166 /*
167  * Using the specified dedup table, do a lookup for an entry with
168  * the checksum cs.  If found, return the block's reference info
169  * in *dr. Otherwise, insert a new entry in the dedup table, using
170  * the reference information specified by *dr.
171  *
172  * return value:  true - entry was found
173  *                false - entry was not found
174  */
175 static boolean_t
176 ddt_update(libzfs_handle_t *hdl, dedup_table_t *ddt, zio_cksum_t *cs,
177     uint64_t prop, dataref_t *dr)
178 {
179         uint32_t hashcode;
180         dedup_entry_t **ddepp;
181
182         hashcode = BF64_GET(cs->zc_word[0], 0, ddt->numhashbits);
183
184         for (ddepp = &(ddt->dedup_hash_array[hashcode]); *ddepp != NULL;
185             ddepp = &((*ddepp)->dde_next)) {
186                 if (ZIO_CHECKSUM_EQUAL(((*ddepp)->dde_chksum), *cs) &&
187                     (*ddepp)->dde_prop == prop) {
188                         *dr = (*ddepp)->dde_ref;
189                         return (B_TRUE);
190                 }
191         }
192         ddt_hash_append(hdl, ddt, ddepp, cs, prop, dr);
193         return (B_FALSE);
194 }
195
196 static int
197 dump_record(dmu_replay_record_t *drr, void *payload, int payload_len,
198     zio_cksum_t *zc, int outfd)
199 {
200         ASSERT3U(offsetof(dmu_replay_record_t, drr_u.drr_checksum.drr_checksum),
201             ==, sizeof (dmu_replay_record_t) - sizeof (zio_cksum_t));
202         (void) fletcher_4_incremental_native(drr,
203             offsetof(dmu_replay_record_t, drr_u.drr_checksum.drr_checksum), zc);
204         if (drr->drr_type != DRR_BEGIN) {
205                 ASSERT(ZIO_CHECKSUM_IS_ZERO(&drr->drr_u.
206                     drr_checksum.drr_checksum));
207                 drr->drr_u.drr_checksum.drr_checksum = *zc;
208         }
209         (void) fletcher_4_incremental_native(
210             &drr->drr_u.drr_checksum.drr_checksum, sizeof (zio_cksum_t), zc);
211         if (write(outfd, drr, sizeof (*drr)) == -1)
212                 return (errno);
213         if (payload_len != 0) {
214                 (void) fletcher_4_incremental_native(payload, payload_len, zc);
215                 if (write(outfd, payload, payload_len) == -1)
216                         return (errno);
217         }
218         return (0);
219 }
220
221 /*
222  * This function is started in a separate thread when the dedup option
223  * has been requested.  The main send thread determines the list of
224  * snapshots to be included in the send stream and makes the ioctl calls
225  * for each one.  But instead of having the ioctl send the output to the
226  * the output fd specified by the caller of zfs_send()), the
227  * ioctl is told to direct the output to a pipe, which is read by the
228  * alternate thread running THIS function.  This function does the
229  * dedup'ing by:
230  *  1. building a dedup table (the DDT)
231  *  2. doing checksums on each data block and inserting a record in the DDT
232  *  3. looking for matching checksums, and
233  *  4.  sending a DRR_WRITE_BYREF record instead of a write record whenever
234  *      a duplicate block is found.
235  * The output of this function then goes to the output fd requested
236  * by the caller of zfs_send().
237  */
238 static void *
239 cksummer(void *arg)
240 {
241         dedup_arg_t *dda = arg;
242         char *buf = zfs_alloc(dda->dedup_hdl, SPA_MAXBLOCKSIZE);
243         dmu_replay_record_t thedrr;
244         dmu_replay_record_t *drr = &thedrr;
245         FILE *ofp;
246         int outfd;
247         dedup_table_t ddt;
248         zio_cksum_t stream_cksum;
249         uint64_t physmem = sysconf(_SC_PHYS_PAGES) * sysconf(_SC_PAGESIZE);
250         uint64_t numbuckets;
251
252         ddt.max_ddt_size =
253             MAX((physmem * MAX_DDT_PHYSMEM_PERCENT) / 100,
254             SMALLEST_POSSIBLE_MAX_DDT_MB << 20);
255
256         numbuckets = ddt.max_ddt_size / (sizeof (dedup_entry_t));
257
258         /*
259          * numbuckets must be a power of 2.  Increase number to
260          * a power of 2 if necessary.
261          */
262         if (!ISP2(numbuckets))
263                 numbuckets = 1 << high_order_bit(numbuckets);
264
265         ddt.dedup_hash_array = calloc(numbuckets, sizeof (dedup_entry_t *));
266         ddt.ddecache = umem_cache_create("dde", sizeof (dedup_entry_t), 0,
267             NULL, NULL, NULL, NULL, NULL, 0);
268         ddt.cur_ddt_size = numbuckets * sizeof (dedup_entry_t *);
269         ddt.numhashbits = high_order_bit(numbuckets) - 1;
270         ddt.ddt_full = B_FALSE;
271
272         outfd = dda->outputfd;
273         ofp = fdopen(dda->inputfd, "r");
274         while (ssread(drr, sizeof (*drr), ofp) != 0) {
275
276                 /*
277                  * kernel filled in checksum, we are going to write same
278                  * record, but need to regenerate checksum.
279                  */
280                 if (drr->drr_type != DRR_BEGIN) {
281                         bzero(&drr->drr_u.drr_checksum.drr_checksum,
282                             sizeof (drr->drr_u.drr_checksum.drr_checksum));
283                 }
284
285                 switch (drr->drr_type) {
286                 case DRR_BEGIN:
287                 {
288                         struct drr_begin *drrb = &drr->drr_u.drr_begin;
289                         int fflags;
290                         int sz = 0;
291                         ZIO_SET_CHECKSUM(&stream_cksum, 0, 0, 0, 0);
292
293                         ASSERT3U(drrb->drr_magic, ==, DMU_BACKUP_MAGIC);
294
295                         /* set the DEDUP feature flag for this stream */
296                         fflags = DMU_GET_FEATUREFLAGS(drrb->drr_versioninfo);
297                         fflags |= (DMU_BACKUP_FEATURE_DEDUP |
298                             DMU_BACKUP_FEATURE_DEDUPPROPS);
299                         DMU_SET_FEATUREFLAGS(drrb->drr_versioninfo, fflags);
300
301                         if (drr->drr_payloadlen != 0) {
302                                 sz = drr->drr_payloadlen;
303
304                                 if (sz > SPA_MAXBLOCKSIZE) {
305                                         buf = zfs_realloc(dda->dedup_hdl, buf,
306                                             SPA_MAXBLOCKSIZE, sz);
307                                 }
308                                 (void) ssread(buf, sz, ofp);
309                                 if (ferror(stdin))
310                                         perror("fread");
311                         }
312                         if (dump_record(drr, buf, sz, &stream_cksum,
313                             outfd) != 0)
314                                 goto out;
315                         break;
316                 }
317
318                 case DRR_END:
319                 {
320                         struct drr_end *drre = &drr->drr_u.drr_end;
321                         /* use the recalculated checksum */
322                         drre->drr_checksum = stream_cksum;
323                         if (dump_record(drr, NULL, 0, &stream_cksum,
324                             outfd) != 0)
325                                 goto out;
326                         break;
327                 }
328
329                 case DRR_OBJECT:
330                 {
331                         struct drr_object *drro = &drr->drr_u.drr_object;
332                         if (drro->drr_bonuslen > 0) {
333                                 (void) ssread(buf,
334                                     P2ROUNDUP((uint64_t)drro->drr_bonuslen, 8),
335                                     ofp);
336                         }
337                         if (dump_record(drr, buf,
338                             P2ROUNDUP((uint64_t)drro->drr_bonuslen, 8),
339                             &stream_cksum, outfd) != 0)
340                                 goto out;
341                         break;
342                 }
343
344                 case DRR_SPILL:
345                 {
346                         struct drr_spill *drrs = &drr->drr_u.drr_spill;
347                         (void) ssread(buf, drrs->drr_length, ofp);
348                         if (dump_record(drr, buf, drrs->drr_length,
349                             &stream_cksum, outfd) != 0)
350                                 goto out;
351                         break;
352                 }
353
354                 case DRR_FREEOBJECTS:
355                 {
356                         if (dump_record(drr, NULL, 0, &stream_cksum,
357                             outfd) != 0)
358                                 goto out;
359                         break;
360                 }
361
362                 case DRR_WRITE:
363                 {
364                         struct drr_write *drrw = &drr->drr_u.drr_write;
365                         dataref_t       dataref;
366                         uint64_t        payload_size;
367
368                         payload_size = DRR_WRITE_PAYLOAD_SIZE(drrw);
369                         (void) ssread(buf, payload_size, ofp);
370
371                         /*
372                          * Use the existing checksum if it's dedup-capable,
373                          * else calculate a SHA256 checksum for it.
374                          */
375
376                         if (ZIO_CHECKSUM_EQUAL(drrw->drr_key.ddk_cksum,
377                             zero_cksum) ||
378                             !DRR_IS_DEDUP_CAPABLE(drrw->drr_checksumflags)) {
379                                 SHA256_CTX      ctx;
380                                 zio_cksum_t     tmpsha256;
381
382                                 SHA256Init(&ctx);
383                                 SHA256Update(&ctx, buf, payload_size);
384                                 SHA256Final(&tmpsha256, &ctx);
385                                 drrw->drr_key.ddk_cksum.zc_word[0] =
386                                     BE_64(tmpsha256.zc_word[0]);
387                                 drrw->drr_key.ddk_cksum.zc_word[1] =
388                                     BE_64(tmpsha256.zc_word[1]);
389                                 drrw->drr_key.ddk_cksum.zc_word[2] =
390                                     BE_64(tmpsha256.zc_word[2]);
391                                 drrw->drr_key.ddk_cksum.zc_word[3] =
392                                     BE_64(tmpsha256.zc_word[3]);
393                                 drrw->drr_checksumtype = ZIO_CHECKSUM_SHA256;
394                                 drrw->drr_checksumflags = DRR_CHECKSUM_DEDUP;
395                         }
396
397                         dataref.ref_guid = drrw->drr_toguid;
398                         dataref.ref_object = drrw->drr_object;
399                         dataref.ref_offset = drrw->drr_offset;
400
401                         if (ddt_update(dda->dedup_hdl, &ddt,
402                             &drrw->drr_key.ddk_cksum, drrw->drr_key.ddk_prop,
403                             &dataref)) {
404                                 dmu_replay_record_t wbr_drr = {0};
405                                 struct drr_write_byref *wbr_drrr =
406                                     &wbr_drr.drr_u.drr_write_byref;
407
408                                 /* block already present in stream */
409                                 wbr_drr.drr_type = DRR_WRITE_BYREF;
410
411                                 wbr_drrr->drr_object = drrw->drr_object;
412                                 wbr_drrr->drr_offset = drrw->drr_offset;
413                                 wbr_drrr->drr_length = drrw->drr_logical_size;
414                                 wbr_drrr->drr_toguid = drrw->drr_toguid;
415                                 wbr_drrr->drr_refguid = dataref.ref_guid;
416                                 wbr_drrr->drr_refobject =
417                                     dataref.ref_object;
418                                 wbr_drrr->drr_refoffset =
419                                     dataref.ref_offset;
420
421                                 wbr_drrr->drr_checksumtype =
422                                     drrw->drr_checksumtype;
423                                 wbr_drrr->drr_checksumflags =
424                                     drrw->drr_checksumtype;
425                                 wbr_drrr->drr_key.ddk_cksum =
426                                     drrw->drr_key.ddk_cksum;
427                                 wbr_drrr->drr_key.ddk_prop =
428                                     drrw->drr_key.ddk_prop;
429
430                                 if (dump_record(&wbr_drr, NULL, 0,
431                                     &stream_cksum, outfd) != 0)
432                                         goto out;
433                         } else {
434                                 /* block not previously seen */
435                                 if (dump_record(drr, buf, payload_size,
436                                     &stream_cksum, outfd) != 0)
437                                         goto out;
438                         }
439                         break;
440                 }
441
442                 case DRR_WRITE_EMBEDDED:
443                 {
444                         struct drr_write_embedded *drrwe =
445                             &drr->drr_u.drr_write_embedded;
446                         (void) ssread(buf,
447                             P2ROUNDUP((uint64_t)drrwe->drr_psize, 8), ofp);
448                         if (dump_record(drr, buf,
449                             P2ROUNDUP((uint64_t)drrwe->drr_psize, 8),
450                             &stream_cksum, outfd) != 0)
451                                 goto out;
452                         break;
453                 }
454
455                 case DRR_FREE:
456                 {
457                         if (dump_record(drr, NULL, 0, &stream_cksum,
458                             outfd) != 0)
459                                 goto out;
460                         break;
461                 }
462
463                 default:
464                         (void) fprintf(stderr, "INVALID record type 0x%x\n",
465                             drr->drr_type);
466                         /* should never happen, so assert */
467                         assert(B_FALSE);
468                 }
469         }
470 out:
471         umem_cache_destroy(ddt.ddecache);
472         free(ddt.dedup_hash_array);
473         free(buf);
474         (void) fclose(ofp);
475
476         return (NULL);
477 }
478
479 /*
480  * Routines for dealing with the AVL tree of fs-nvlists
481  */
482 typedef struct fsavl_node {
483         avl_node_t fn_node;
484         nvlist_t *fn_nvfs;
485         char *fn_snapname;
486         uint64_t fn_guid;
487 } fsavl_node_t;
488
489 static int
490 fsavl_compare(const void *arg1, const void *arg2)
491 {
492         const fsavl_node_t *fn1 = arg1;
493         const fsavl_node_t *fn2 = arg2;
494
495         if (fn1->fn_guid > fn2->fn_guid)
496                 return (+1);
497         else if (fn1->fn_guid < fn2->fn_guid)
498                 return (-1);
499         else
500                 return (0);
501 }
502
503 /*
504  * Given the GUID of a snapshot, find its containing filesystem and
505  * (optionally) name.
506  */
507 static nvlist_t *
508 fsavl_find(avl_tree_t *avl, uint64_t snapguid, char **snapname)
509 {
510         fsavl_node_t fn_find;
511         fsavl_node_t *fn;
512
513         fn_find.fn_guid = snapguid;
514
515         fn = avl_find(avl, &fn_find, NULL);
516         if (fn) {
517                 if (snapname)
518                         *snapname = fn->fn_snapname;
519                 return (fn->fn_nvfs);
520         }
521         return (NULL);
522 }
523
524 static void
525 fsavl_destroy(avl_tree_t *avl)
526 {
527         fsavl_node_t *fn;
528         void *cookie;
529
530         if (avl == NULL)
531                 return;
532
533         cookie = NULL;
534         while ((fn = avl_destroy_nodes(avl, &cookie)) != NULL)
535                 free(fn);
536         avl_destroy(avl);
537         free(avl);
538 }
539
540 /*
541  * Given an nvlist, produce an avl tree of snapshots, ordered by guid
542  */
543 static avl_tree_t *
544 fsavl_create(nvlist_t *fss)
545 {
546         avl_tree_t *fsavl;
547         nvpair_t *fselem = NULL;
548
549         if ((fsavl = malloc(sizeof (avl_tree_t))) == NULL)
550                 return (NULL);
551
552         avl_create(fsavl, fsavl_compare, sizeof (fsavl_node_t),
553             offsetof(fsavl_node_t, fn_node));
554
555         while ((fselem = nvlist_next_nvpair(fss, fselem)) != NULL) {
556                 nvlist_t *nvfs, *snaps;
557                 nvpair_t *snapelem = NULL;
558
559                 VERIFY(0 == nvpair_value_nvlist(fselem, &nvfs));
560                 VERIFY(0 == nvlist_lookup_nvlist(nvfs, "snaps", &snaps));
561
562                 while ((snapelem =
563                     nvlist_next_nvpair(snaps, snapelem)) != NULL) {
564                         fsavl_node_t *fn;
565                         uint64_t guid;
566
567                         VERIFY(0 == nvpair_value_uint64(snapelem, &guid));
568                         if ((fn = malloc(sizeof (fsavl_node_t))) == NULL) {
569                                 fsavl_destroy(fsavl);
570                                 return (NULL);
571                         }
572                         fn->fn_nvfs = nvfs;
573                         fn->fn_snapname = nvpair_name(snapelem);
574                         fn->fn_guid = guid;
575
576                         /*
577                          * Note: if there are multiple snaps with the
578                          * same GUID, we ignore all but one.
579                          */
580                         if (avl_find(fsavl, fn, NULL) == NULL)
581                                 avl_add(fsavl, fn);
582                         else
583                                 free(fn);
584                 }
585         }
586
587         return (fsavl);
588 }
589
590 /*
591  * Routines for dealing with the giant nvlist of fs-nvlists, etc.
592  */
593 typedef struct send_data {
594         /*
595          * assigned inside every recursive call,
596          * restored from *_save on return:
597          *
598          * guid of fromsnap snapshot in parent dataset
599          * txg of fromsnap snapshot in current dataset
600          * txg of tosnap snapshot in current dataset
601          */
602
603         uint64_t parent_fromsnap_guid;
604         uint64_t fromsnap_txg;
605         uint64_t tosnap_txg;
606
607         /* the nvlists get accumulated during depth-first traversal */
608         nvlist_t *parent_snaps;
609         nvlist_t *fss;
610         nvlist_t *snapprops;
611
612         /* send-receive configuration, does not change during traversal */
613         const char *fsname;
614         const char *fromsnap;
615         const char *tosnap;
616         boolean_t recursive;
617         boolean_t verbose;
618
619         /*
620          * The header nvlist is of the following format:
621          * {
622          *   "tosnap" -> string
623          *   "fromsnap" -> string (if incremental)
624          *   "fss" -> {
625          *      id -> {
626          *
627          *       "name" -> string (full name; for debugging)
628          *       "parentfromsnap" -> number (guid of fromsnap in parent)
629          *
630          *       "props" -> { name -> value (only if set here) }
631          *       "snaps" -> { name (lastname) -> number (guid) }
632          *       "snapprops" -> { name (lastname) -> { name -> value } }
633          *
634          *       "origin" -> number (guid) (if clone)
635          *       "sent" -> boolean (not on-disk)
636          *      }
637          *   }
638          * }
639          *
640          */
641 } send_data_t;
642
643 static void send_iterate_prop(zfs_handle_t *zhp, nvlist_t *nv);
644
645 static int
646 send_iterate_snap(zfs_handle_t *zhp, void *arg)
647 {
648         send_data_t *sd = arg;
649         uint64_t guid = zhp->zfs_dmustats.dds_guid;
650         uint64_t txg = zhp->zfs_dmustats.dds_creation_txg;
651         char *snapname;
652         nvlist_t *nv;
653
654         snapname = strrchr(zhp->zfs_name, '@')+1;
655
656         if (sd->tosnap_txg != 0 && txg > sd->tosnap_txg) {
657                 if (sd->verbose) {
658                         (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
659                             "skipping snapshot %s because it was created "
660                             "after the destination snapshot (%s)\n"),
661                             zhp->zfs_name, sd->tosnap);
662                 }
663                 zfs_close(zhp);
664                 return (0);
665         }
666
667         VERIFY(0 == nvlist_add_uint64(sd->parent_snaps, snapname, guid));
668         /*
669          * NB: if there is no fromsnap here (it's a newly created fs in
670          * an incremental replication), we will substitute the tosnap.
671          */
672         if ((sd->fromsnap && strcmp(snapname, sd->fromsnap) == 0) ||
673             (sd->parent_fromsnap_guid == 0 && sd->tosnap &&
674             strcmp(snapname, sd->tosnap) == 0)) {
675                 sd->parent_fromsnap_guid = guid;
676         }
677
678         VERIFY(0 == nvlist_alloc(&nv, NV_UNIQUE_NAME, 0));
679         send_iterate_prop(zhp, nv);
680         VERIFY(0 == nvlist_add_nvlist(sd->snapprops, snapname, nv));
681         nvlist_free(nv);
682
683         zfs_close(zhp);
684         return (0);
685 }
686
687 static void
688 send_iterate_prop(zfs_handle_t *zhp, nvlist_t *nv)
689 {
690         nvpair_t *elem = NULL;
691
692         while ((elem = nvlist_next_nvpair(zhp->zfs_props, elem)) != NULL) {
693                 char *propname = nvpair_name(elem);
694                 zfs_prop_t prop = zfs_name_to_prop(propname);
695                 nvlist_t *propnv;
696
697                 if (!zfs_prop_user(propname)) {
698                         /*
699                          * Realistically, this should never happen.  However,
700                          * we want the ability to add DSL properties without
701                          * needing to make incompatible version changes.  We
702                          * need to ignore unknown properties to allow older
703                          * software to still send datasets containing these
704                          * properties, with the unknown properties elided.
705                          */
706                         if (prop == ZPROP_INVAL)
707                                 continue;
708
709                         if (zfs_prop_readonly(prop))
710                                 continue;
711                 }
712
713                 verify(nvpair_value_nvlist(elem, &propnv) == 0);
714                 if (prop == ZFS_PROP_QUOTA || prop == ZFS_PROP_RESERVATION ||
715                     prop == ZFS_PROP_REFQUOTA ||
716                     prop == ZFS_PROP_REFRESERVATION) {
717                         char *source;
718                         uint64_t value;
719                         verify(nvlist_lookup_uint64(propnv,
720                             ZPROP_VALUE, &value) == 0);
721                         if (zhp->zfs_type == ZFS_TYPE_SNAPSHOT)
722                                 continue;
723                         /*
724                          * May have no source before SPA_VERSION_RECVD_PROPS,
725                          * but is still modifiable.
726                          */
727                         if (nvlist_lookup_string(propnv,
728                             ZPROP_SOURCE, &source) == 0) {
729                                 if ((strcmp(source, zhp->zfs_name) != 0) &&
730                                     (strcmp(source,
731                                     ZPROP_SOURCE_VAL_RECVD) != 0))
732                                         continue;
733                         }
734                 } else {
735                         char *source;
736                         if (nvlist_lookup_string(propnv,
737                             ZPROP_SOURCE, &source) != 0)
738                                 continue;
739                         if ((strcmp(source, zhp->zfs_name) != 0) &&
740                             (strcmp(source, ZPROP_SOURCE_VAL_RECVD) != 0))
741                                 continue;
742                 }
743
744                 if (zfs_prop_user(propname) ||
745                     zfs_prop_get_type(prop) == PROP_TYPE_STRING) {
746                         char *value;
747                         verify(nvlist_lookup_string(propnv,
748                             ZPROP_VALUE, &value) == 0);
749                         VERIFY(0 == nvlist_add_string(nv, propname, value));
750                 } else {
751                         uint64_t value;
752                         verify(nvlist_lookup_uint64(propnv,
753                             ZPROP_VALUE, &value) == 0);
754                         VERIFY(0 == nvlist_add_uint64(nv, propname, value));
755                 }
756         }
757 }
758
759 /*
760  * returns snapshot creation txg
761  * and returns 0 if the snapshot does not exist
762  */
763 static uint64_t
764 get_snap_txg(libzfs_handle_t *hdl, const char *fs, const char *snap)
765 {
766         char name[ZFS_MAX_DATASET_NAME_LEN];
767         uint64_t txg = 0;
768
769         if (fs == NULL || fs[0] == '\0' || snap == NULL || snap[0] == '\0')
770                 return (txg);
771
772         (void) snprintf(name, sizeof (name), "%s@%s", fs, snap);
773         if (zfs_dataset_exists(hdl, name, ZFS_TYPE_SNAPSHOT)) {
774                 zfs_handle_t *zhp = zfs_open(hdl, name, ZFS_TYPE_SNAPSHOT);
775                 if (zhp != NULL) {
776                         txg = zfs_prop_get_int(zhp, ZFS_PROP_CREATETXG);
777                         zfs_close(zhp);
778                 }
779         }
780
781         return (txg);
782 }
783
784 /*
785  * recursively generate nvlists describing datasets.  See comment
786  * for the data structure send_data_t above for description of contents
787  * of the nvlist.
788  */
789 static int
790 send_iterate_fs(zfs_handle_t *zhp, void *arg)
791 {
792         send_data_t *sd = arg;
793         nvlist_t *nvfs, *nv;
794         int rv = 0;
795         uint64_t parent_fromsnap_guid_save = sd->parent_fromsnap_guid;
796         uint64_t fromsnap_txg_save = sd->fromsnap_txg;
797         uint64_t tosnap_txg_save = sd->tosnap_txg;
798         uint64_t txg = zhp->zfs_dmustats.dds_creation_txg;
799         uint64_t guid = zhp->zfs_dmustats.dds_guid;
800         uint64_t fromsnap_txg, tosnap_txg;
801         char guidstring[64];
802
803         fromsnap_txg = get_snap_txg(zhp->zfs_hdl, zhp->zfs_name, sd->fromsnap);
804         if (fromsnap_txg != 0)
805                 sd->fromsnap_txg = fromsnap_txg;
806
807         tosnap_txg = get_snap_txg(zhp->zfs_hdl, zhp->zfs_name, sd->tosnap);
808         if (tosnap_txg != 0)
809                 sd->tosnap_txg = tosnap_txg;
810
811         /*
812          * on the send side, if the current dataset does not have tosnap,
813          * perform two additional checks:
814          *
815          * - skip sending the current dataset if it was created later than
816          *   the parent tosnap
817          * - return error if the current dataset was created earlier than
818          *   the parent tosnap
819          */
820         if (sd->tosnap != NULL && tosnap_txg == 0) {
821                 if (sd->tosnap_txg != 0 && txg > sd->tosnap_txg) {
822                         if (sd->verbose) {
823                                 (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
824                                     "skipping dataset %s: snapshot %s does "
825                                     "not exist\n"), zhp->zfs_name, sd->tosnap);
826                         }
827                 } else {
828                         (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
829                             "cannot send %s@%s%s: snapshot %s@%s does not "
830                             "exist\n"), sd->fsname, sd->tosnap, sd->recursive ?
831                             dgettext(TEXT_DOMAIN, " recursively") : "",
832                             zhp->zfs_name, sd->tosnap);
833                         rv = -1;
834                 }
835                 goto out;
836         }
837
838         VERIFY(0 == nvlist_alloc(&nvfs, NV_UNIQUE_NAME, 0));
839         VERIFY(0 == nvlist_add_string(nvfs, "name", zhp->zfs_name));
840         VERIFY(0 == nvlist_add_uint64(nvfs, "parentfromsnap",
841             sd->parent_fromsnap_guid));
842
843         if (zhp->zfs_dmustats.dds_origin[0]) {
844                 zfs_handle_t *origin = zfs_open(zhp->zfs_hdl,
845                     zhp->zfs_dmustats.dds_origin, ZFS_TYPE_SNAPSHOT);
846                 if (origin == NULL) {
847                         rv = -1;
848                         goto out;
849                 }
850                 VERIFY(0 == nvlist_add_uint64(nvfs, "origin",
851                     origin->zfs_dmustats.dds_guid));
852         }
853
854         /* iterate over props */
855         VERIFY(0 == nvlist_alloc(&nv, NV_UNIQUE_NAME, 0));
856         send_iterate_prop(zhp, nv);
857         VERIFY(0 == nvlist_add_nvlist(nvfs, "props", nv));
858         nvlist_free(nv);
859
860         /* iterate over snaps, and set sd->parent_fromsnap_guid */
861         sd->parent_fromsnap_guid = 0;
862         VERIFY(0 == nvlist_alloc(&sd->parent_snaps, NV_UNIQUE_NAME, 0));
863         VERIFY(0 == nvlist_alloc(&sd->snapprops, NV_UNIQUE_NAME, 0));
864         (void) zfs_iter_snapshots_sorted(zhp, send_iterate_snap, sd);
865         VERIFY(0 == nvlist_add_nvlist(nvfs, "snaps", sd->parent_snaps));
866         VERIFY(0 == nvlist_add_nvlist(nvfs, "snapprops", sd->snapprops));
867         nvlist_free(sd->parent_snaps);
868         nvlist_free(sd->snapprops);
869
870         /* add this fs to nvlist */
871         (void) snprintf(guidstring, sizeof (guidstring),
872             "0x%llx", (longlong_t)guid);
873         VERIFY(0 == nvlist_add_nvlist(sd->fss, guidstring, nvfs));
874         nvlist_free(nvfs);
875
876         /* iterate over children */
877         if (sd->recursive)
878                 rv = zfs_iter_filesystems(zhp, send_iterate_fs, sd);
879
880 out:
881         sd->parent_fromsnap_guid = parent_fromsnap_guid_save;
882         sd->fromsnap_txg = fromsnap_txg_save;
883         sd->tosnap_txg = tosnap_txg_save;
884
885         zfs_close(zhp);
886         return (rv);
887 }
888
889 static int
890 gather_nvlist(libzfs_handle_t *hdl, const char *fsname, const char *fromsnap,
891     const char *tosnap, boolean_t recursive, boolean_t verbose,
892     nvlist_t **nvlp, avl_tree_t **avlp)
893 {
894         zfs_handle_t *zhp;
895         send_data_t sd = { 0 };
896         int error;
897
898         zhp = zfs_open(hdl, fsname, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME);
899         if (zhp == NULL)
900                 return (EZFS_BADTYPE);
901
902         VERIFY(0 == nvlist_alloc(&sd.fss, NV_UNIQUE_NAME, 0));
903         sd.fsname = fsname;
904         sd.fromsnap = fromsnap;
905         sd.tosnap = tosnap;
906         sd.recursive = recursive;
907         sd.verbose = verbose;
908
909         if ((error = send_iterate_fs(zhp, &sd)) != 0) {
910                 nvlist_free(sd.fss);
911                 if (avlp != NULL)
912                         *avlp = NULL;
913                 *nvlp = NULL;
914                 return (error);
915         }
916
917         if (avlp != NULL && (*avlp = fsavl_create(sd.fss)) == NULL) {
918                 nvlist_free(sd.fss);
919                 *nvlp = NULL;
920                 return (EZFS_NOMEM);
921         }
922
923         *nvlp = sd.fss;
924         return (0);
925 }
926
927 /*
928  * Routines specific to "zfs send"
929  */
930 typedef struct send_dump_data {
931         /* these are all just the short snapname (the part after the @) */
932         const char *fromsnap;
933         const char *tosnap;
934         char prevsnap[ZFS_MAX_DATASET_NAME_LEN];
935         uint64_t prevsnap_obj;
936         boolean_t seenfrom, seento, replicate, doall, fromorigin;
937         boolean_t verbose, dryrun, parsable, progress, embed_data, std_out;
938         boolean_t large_block, compress;
939         int outfd;
940         boolean_t err;
941         nvlist_t *fss;
942         nvlist_t *snapholds;
943         avl_tree_t *fsavl;
944         snapfilter_cb_t *filter_cb;
945         void *filter_cb_arg;
946         nvlist_t *debugnv;
947         char holdtag[ZFS_MAX_DATASET_NAME_LEN];
948         int cleanup_fd;
949         uint64_t size;
950 } send_dump_data_t;
951
952 static int
953 estimate_ioctl(zfs_handle_t *zhp, uint64_t fromsnap_obj,
954     boolean_t fromorigin, enum lzc_send_flags flags, uint64_t *sizep)
955 {
956         zfs_cmd_t zc = { 0 };
957         libzfs_handle_t *hdl = zhp->zfs_hdl;
958
959         assert(zhp->zfs_type == ZFS_TYPE_SNAPSHOT);
960         assert(fromsnap_obj == 0 || !fromorigin);
961
962         (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
963         zc.zc_obj = fromorigin;
964         zc.zc_sendobj = zfs_prop_get_int(zhp, ZFS_PROP_OBJSETID);
965         zc.zc_fromobj = fromsnap_obj;
966         zc.zc_guid = 1;  /* estimate flag */
967         zc.zc_flags = flags;
968
969         if (zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_SEND, &zc) != 0) {
970                 char errbuf[1024];
971                 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
972                     "warning: cannot estimate space for '%s'"), zhp->zfs_name);
973
974                 switch (errno) {
975                 case EXDEV:
976                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
977                             "not an earlier snapshot from the same fs"));
978                         return (zfs_error(hdl, EZFS_CROSSTARGET, errbuf));
979
980                 case ENOENT:
981                         if (zfs_dataset_exists(hdl, zc.zc_name,
982                             ZFS_TYPE_SNAPSHOT)) {
983                                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
984                                     "incremental source (@%s) does not exist"),
985                                     zc.zc_value);
986                         }
987                         return (zfs_error(hdl, EZFS_NOENT, errbuf));
988
989                 case EDQUOT:
990                 case EFBIG:
991                 case EIO:
992                 case ENOLINK:
993                 case ENOSPC:
994                 case ENXIO:
995                 case EPIPE:
996                 case ERANGE:
997                 case EFAULT:
998                 case EROFS:
999                         zfs_error_aux(hdl, strerror(errno));
1000                         return (zfs_error(hdl, EZFS_BADBACKUP, errbuf));
1001
1002                 default:
1003                         return (zfs_standard_error(hdl, errno, errbuf));
1004                 }
1005         }
1006
1007         *sizep = zc.zc_objset_type;
1008
1009         return (0);
1010 }
1011
1012 /*
1013  * Dumps a backup of the given snapshot (incremental from fromsnap if it's not
1014  * NULL) to the file descriptor specified by outfd.
1015  */
1016 static int
1017 dump_ioctl(zfs_handle_t *zhp, const char *fromsnap, uint64_t fromsnap_obj,
1018     boolean_t fromorigin, int outfd, enum lzc_send_flags flags,
1019     nvlist_t *debugnv)
1020 {
1021         zfs_cmd_t zc = { 0 };
1022         libzfs_handle_t *hdl = zhp->zfs_hdl;
1023         nvlist_t *thisdbg;
1024
1025         assert(zhp->zfs_type == ZFS_TYPE_SNAPSHOT);
1026         assert(fromsnap_obj == 0 || !fromorigin);
1027
1028         (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
1029         zc.zc_cookie = outfd;
1030         zc.zc_obj = fromorigin;
1031         zc.zc_sendobj = zfs_prop_get_int(zhp, ZFS_PROP_OBJSETID);
1032         zc.zc_fromobj = fromsnap_obj;
1033         zc.zc_flags = flags;
1034
1035         VERIFY(0 == nvlist_alloc(&thisdbg, NV_UNIQUE_NAME, 0));
1036         if (fromsnap && fromsnap[0] != '\0') {
1037                 VERIFY(0 == nvlist_add_string(thisdbg,
1038                     "fromsnap", fromsnap));
1039         }
1040
1041         if (zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_SEND, &zc) != 0) {
1042                 char errbuf[1024];
1043                 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
1044                     "warning: cannot send '%s'"), zhp->zfs_name);
1045
1046                 VERIFY(0 == nvlist_add_uint64(thisdbg, "error", errno));
1047                 if (debugnv) {
1048                         VERIFY(0 == nvlist_add_nvlist(debugnv,
1049                             zhp->zfs_name, thisdbg));
1050                 }
1051                 nvlist_free(thisdbg);
1052
1053                 switch (errno) {
1054                 case EXDEV:
1055                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1056                             "not an earlier snapshot from the same fs"));
1057                         return (zfs_error(hdl, EZFS_CROSSTARGET, errbuf));
1058
1059                 case ENOENT:
1060                         if (zfs_dataset_exists(hdl, zc.zc_name,
1061                             ZFS_TYPE_SNAPSHOT)) {
1062                                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1063                                     "incremental source (@%s) does not exist"),
1064                                     zc.zc_value);
1065                         }
1066                         return (zfs_error(hdl, EZFS_NOENT, errbuf));
1067
1068                 case EDQUOT:
1069                 case EFBIG:
1070                 case EIO:
1071                 case ENOLINK:
1072                 case ENOSPC:
1073 #ifdef illumos
1074                 case ENOSTR:
1075 #endif
1076                 case ENXIO:
1077                 case EPIPE:
1078                 case ERANGE:
1079                 case EFAULT:
1080                 case EROFS:
1081                         zfs_error_aux(hdl, strerror(errno));
1082                         return (zfs_error(hdl, EZFS_BADBACKUP, errbuf));
1083
1084                 default:
1085                         return (zfs_standard_error(hdl, errno, errbuf));
1086                 }
1087         }
1088
1089         if (debugnv)
1090                 VERIFY(0 == nvlist_add_nvlist(debugnv, zhp->zfs_name, thisdbg));
1091         nvlist_free(thisdbg);
1092
1093         return (0);
1094 }
1095
1096 static void
1097 gather_holds(zfs_handle_t *zhp, send_dump_data_t *sdd)
1098 {
1099         assert(zhp->zfs_type == ZFS_TYPE_SNAPSHOT);
1100
1101         /*
1102          * zfs_send() only sets snapholds for sends that need them,
1103          * e.g. replication and doall.
1104          */
1105         if (sdd->snapholds == NULL)
1106                 return;
1107
1108         fnvlist_add_string(sdd->snapholds, zhp->zfs_name, sdd->holdtag);
1109 }
1110
1111 static void *
1112 send_progress_thread(void *arg)
1113 {
1114         progress_arg_t *pa = arg;
1115         zfs_cmd_t zc = { 0 };
1116         zfs_handle_t *zhp = pa->pa_zhp;
1117         libzfs_handle_t *hdl = zhp->zfs_hdl;
1118         unsigned long long bytes;
1119         char buf[16];
1120         time_t t;
1121         struct tm *tm;
1122
1123         (void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
1124
1125         if (!pa->pa_parsable)
1126                 (void) fprintf(stderr, "TIME        SENT   SNAPSHOT\n");
1127
1128         /*
1129          * Print the progress from ZFS_IOC_SEND_PROGRESS every second.
1130          */
1131         for (;;) {
1132                 (void) sleep(1);
1133
1134                 zc.zc_cookie = pa->pa_fd;
1135                 if (zfs_ioctl(hdl, ZFS_IOC_SEND_PROGRESS, &zc) != 0)
1136                         return ((void *)-1);
1137
1138                 (void) time(&t);
1139                 tm = localtime(&t);
1140                 bytes = zc.zc_cookie;
1141
1142                 if (pa->pa_parsable) {
1143                         (void) fprintf(stderr, "%02d:%02d:%02d\t%llu\t%s\n",
1144                             tm->tm_hour, tm->tm_min, tm->tm_sec,
1145                             bytes, zhp->zfs_name);
1146                 } else {
1147                         zfs_nicenum(bytes, buf, sizeof (buf));
1148                         (void) fprintf(stderr, "%02d:%02d:%02d   %5s   %s\n",
1149                             tm->tm_hour, tm->tm_min, tm->tm_sec,
1150                             buf, zhp->zfs_name);
1151                 }
1152         }
1153 }
1154
1155 static void
1156 send_print_verbose(FILE *fout, const char *tosnap, const char *fromsnap,
1157     uint64_t size, boolean_t parsable)
1158 {
1159         if (parsable) {
1160                 if (fromsnap != NULL) {
1161                         (void) fprintf(fout, "incremental\t%s\t%s",
1162                             fromsnap, tosnap);
1163                 } else {
1164                         (void) fprintf(fout, "full\t%s",
1165                             tosnap);
1166                 }
1167         } else {
1168                 if (fromsnap != NULL) {
1169                         if (strchr(fromsnap, '@') == NULL &&
1170                             strchr(fromsnap, '#') == NULL) {
1171                                 (void) fprintf(fout, dgettext(TEXT_DOMAIN,
1172                                     "send from @%s to %s"),
1173                                     fromsnap, tosnap);
1174                         } else {
1175                                 (void) fprintf(fout, dgettext(TEXT_DOMAIN,
1176                                     "send from %s to %s"),
1177                                     fromsnap, tosnap);
1178                         }
1179                 } else {
1180                         (void) fprintf(fout, dgettext(TEXT_DOMAIN,
1181                             "full send of %s"),
1182                             tosnap);
1183                 }
1184         }
1185
1186         if (size != 0) {
1187                 if (parsable) {
1188                         (void) fprintf(fout, "\t%llu",
1189                             (longlong_t)size);
1190                 } else {
1191                         char buf[16];
1192                         zfs_nicenum(size, buf, sizeof (buf));
1193                         (void) fprintf(fout, dgettext(TEXT_DOMAIN,
1194                             " estimated size is %s"), buf);
1195                 }
1196         }
1197         (void) fprintf(fout, "\n");
1198 }
1199
1200 static int
1201 dump_snapshot(zfs_handle_t *zhp, void *arg)
1202 {
1203         send_dump_data_t *sdd = arg;
1204         progress_arg_t pa = { 0 };
1205         pthread_t tid;
1206         char *thissnap;
1207         enum lzc_send_flags flags = 0;
1208         int err;
1209         boolean_t isfromsnap, istosnap, fromorigin;
1210         boolean_t exclude = B_FALSE;
1211         FILE *fout = sdd->std_out ? stdout : stderr;
1212
1213         err = 0;
1214         thissnap = strchr(zhp->zfs_name, '@') + 1;
1215         isfromsnap = (sdd->fromsnap != NULL &&
1216             strcmp(sdd->fromsnap, thissnap) == 0);
1217
1218         if (!sdd->seenfrom && isfromsnap) {
1219                 gather_holds(zhp, sdd);
1220                 sdd->seenfrom = B_TRUE;
1221                 (void) strcpy(sdd->prevsnap, thissnap);
1222                 sdd->prevsnap_obj = zfs_prop_get_int(zhp, ZFS_PROP_OBJSETID);
1223                 zfs_close(zhp);
1224                 return (0);
1225         }
1226
1227         if (sdd->seento || !sdd->seenfrom) {
1228                 zfs_close(zhp);
1229                 return (0);
1230         }
1231
1232         istosnap = (strcmp(sdd->tosnap, thissnap) == 0);
1233         if (istosnap)
1234                 sdd->seento = B_TRUE;
1235
1236         if (sdd->large_block)
1237                 flags |= LZC_SEND_FLAG_LARGE_BLOCK;
1238         if (sdd->embed_data)
1239                 flags |= LZC_SEND_FLAG_EMBED_DATA;
1240         if (sdd->compress)
1241                 flags |= LZC_SEND_FLAG_COMPRESS;
1242
1243         if (!sdd->doall && !isfromsnap && !istosnap) {
1244                 if (sdd->replicate) {
1245                         char *snapname;
1246                         nvlist_t *snapprops;
1247                         /*
1248                          * Filter out all intermediate snapshots except origin
1249                          * snapshots needed to replicate clones.
1250                          */
1251                         nvlist_t *nvfs = fsavl_find(sdd->fsavl,
1252                             zhp->zfs_dmustats.dds_guid, &snapname);
1253
1254                         VERIFY(0 == nvlist_lookup_nvlist(nvfs,
1255                             "snapprops", &snapprops));
1256                         VERIFY(0 == nvlist_lookup_nvlist(snapprops,
1257                             thissnap, &snapprops));
1258                         exclude = !nvlist_exists(snapprops, "is_clone_origin");
1259                 } else {
1260                         exclude = B_TRUE;
1261                 }
1262         }
1263
1264         /*
1265          * If a filter function exists, call it to determine whether
1266          * this snapshot will be sent.
1267          */
1268         if (exclude || (sdd->filter_cb != NULL &&
1269             sdd->filter_cb(zhp, sdd->filter_cb_arg) == B_FALSE)) {
1270                 /*
1271                  * This snapshot is filtered out.  Don't send it, and don't
1272                  * set prevsnap_obj, so it will be as if this snapshot didn't
1273                  * exist, and the next accepted snapshot will be sent as
1274                  * an incremental from the last accepted one, or as the
1275                  * first (and full) snapshot in the case of a replication,
1276                  * non-incremental send.
1277                  */
1278                 zfs_close(zhp);
1279                 return (0);
1280         }
1281
1282         gather_holds(zhp, sdd);
1283         fromorigin = sdd->prevsnap[0] == '\0' &&
1284             (sdd->fromorigin || sdd->replicate);
1285
1286         if (sdd->verbose) {
1287                 uint64_t size = 0;
1288                 (void) estimate_ioctl(zhp, sdd->prevsnap_obj,
1289                     fromorigin, flags, &size);
1290
1291                 send_print_verbose(fout, zhp->zfs_name,
1292                     sdd->prevsnap[0] ? sdd->prevsnap : NULL,
1293                     size, sdd->parsable);
1294                 sdd->size += size;
1295         }
1296
1297         if (!sdd->dryrun) {
1298                 /*
1299                  * If progress reporting is requested, spawn a new thread to
1300                  * poll ZFS_IOC_SEND_PROGRESS at a regular interval.
1301                  */
1302                 if (sdd->progress) {
1303                         pa.pa_zhp = zhp;
1304                         pa.pa_fd = sdd->outfd;
1305                         pa.pa_parsable = sdd->parsable;
1306
1307                         if ((err = pthread_create(&tid, NULL,
1308                             send_progress_thread, &pa)) != 0) {
1309                                 zfs_close(zhp);
1310                                 return (err);
1311                         }
1312                 }
1313
1314                 err = dump_ioctl(zhp, sdd->prevsnap, sdd->prevsnap_obj,
1315                     fromorigin, sdd->outfd, flags, sdd->debugnv);
1316
1317                 if (sdd->progress) {
1318                         (void) pthread_cancel(tid);
1319                         (void) pthread_join(tid, NULL);
1320                 }
1321         }
1322
1323         (void) strcpy(sdd->prevsnap, thissnap);
1324         sdd->prevsnap_obj = zfs_prop_get_int(zhp, ZFS_PROP_OBJSETID);
1325         zfs_close(zhp);
1326         return (err);
1327 }
1328
1329 static int
1330 dump_filesystem(zfs_handle_t *zhp, void *arg)
1331 {
1332         int rv = 0;
1333         send_dump_data_t *sdd = arg;
1334         boolean_t missingfrom = B_FALSE;
1335         zfs_cmd_t zc = { 0 };
1336
1337         (void) snprintf(zc.zc_name, sizeof (zc.zc_name), "%s@%s",
1338             zhp->zfs_name, sdd->tosnap);
1339         if (ioctl(zhp->zfs_hdl->libzfs_fd, ZFS_IOC_OBJSET_STATS, &zc) != 0) {
1340                 (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1341                     "WARNING: could not send %s@%s: does not exist\n"),
1342                     zhp->zfs_name, sdd->tosnap);
1343                 sdd->err = B_TRUE;
1344                 return (0);
1345         }
1346
1347         if (sdd->replicate && sdd->fromsnap) {
1348                 /*
1349                  * If this fs does not have fromsnap, and we're doing
1350                  * recursive, we need to send a full stream from the
1351                  * beginning (or an incremental from the origin if this
1352                  * is a clone).  If we're doing non-recursive, then let
1353                  * them get the error.
1354                  */
1355                 (void) snprintf(zc.zc_name, sizeof (zc.zc_name), "%s@%s",
1356                     zhp->zfs_name, sdd->fromsnap);
1357                 if (ioctl(zhp->zfs_hdl->libzfs_fd,
1358                     ZFS_IOC_OBJSET_STATS, &zc) != 0) {
1359                         missingfrom = B_TRUE;
1360                 }
1361         }
1362
1363         sdd->seenfrom = sdd->seento = sdd->prevsnap[0] = 0;
1364         sdd->prevsnap_obj = 0;
1365         if (sdd->fromsnap == NULL || missingfrom)
1366                 sdd->seenfrom = B_TRUE;
1367
1368         rv = zfs_iter_snapshots_sorted(zhp, dump_snapshot, arg);
1369         if (!sdd->seenfrom) {
1370                 (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1371                     "WARNING: could not send %s@%s:\n"
1372                     "incremental source (%s@%s) does not exist\n"),
1373                     zhp->zfs_name, sdd->tosnap,
1374                     zhp->zfs_name, sdd->fromsnap);
1375                 sdd->err = B_TRUE;
1376         } else if (!sdd->seento) {
1377                 if (sdd->fromsnap) {
1378                         (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1379                             "WARNING: could not send %s@%s:\n"
1380                             "incremental source (%s@%s) "
1381                             "is not earlier than it\n"),
1382                             zhp->zfs_name, sdd->tosnap,
1383                             zhp->zfs_name, sdd->fromsnap);
1384                 } else {
1385                         (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1386                             "WARNING: "
1387                             "could not send %s@%s: does not exist\n"),
1388                             zhp->zfs_name, sdd->tosnap);
1389                 }
1390                 sdd->err = B_TRUE;
1391         }
1392
1393         return (rv);
1394 }
1395
1396 static int
1397 dump_filesystems(zfs_handle_t *rzhp, void *arg)
1398 {
1399         send_dump_data_t *sdd = arg;
1400         nvpair_t *fspair;
1401         boolean_t needagain, progress;
1402
1403         if (!sdd->replicate)
1404                 return (dump_filesystem(rzhp, sdd));
1405
1406         /* Mark the clone origin snapshots. */
1407         for (fspair = nvlist_next_nvpair(sdd->fss, NULL); fspair;
1408             fspair = nvlist_next_nvpair(sdd->fss, fspair)) {
1409                 nvlist_t *nvfs;
1410                 uint64_t origin_guid = 0;
1411
1412                 VERIFY(0 == nvpair_value_nvlist(fspair, &nvfs));
1413                 (void) nvlist_lookup_uint64(nvfs, "origin", &origin_guid);
1414                 if (origin_guid != 0) {
1415                         char *snapname;
1416                         nvlist_t *origin_nv = fsavl_find(sdd->fsavl,
1417                             origin_guid, &snapname);
1418                         if (origin_nv != NULL) {
1419                                 nvlist_t *snapprops;
1420                                 VERIFY(0 == nvlist_lookup_nvlist(origin_nv,
1421                                     "snapprops", &snapprops));
1422                                 VERIFY(0 == nvlist_lookup_nvlist(snapprops,
1423                                     snapname, &snapprops));
1424                                 VERIFY(0 == nvlist_add_boolean(
1425                                     snapprops, "is_clone_origin"));
1426                         }
1427                 }
1428         }
1429 again:
1430         needagain = progress = B_FALSE;
1431         for (fspair = nvlist_next_nvpair(sdd->fss, NULL); fspair;
1432             fspair = nvlist_next_nvpair(sdd->fss, fspair)) {
1433                 nvlist_t *fslist, *parent_nv;
1434                 char *fsname;
1435                 zfs_handle_t *zhp;
1436                 int err;
1437                 uint64_t origin_guid = 0;
1438                 uint64_t parent_guid = 0;
1439
1440                 VERIFY(nvpair_value_nvlist(fspair, &fslist) == 0);
1441                 if (nvlist_lookup_boolean(fslist, "sent") == 0)
1442                         continue;
1443
1444                 VERIFY(nvlist_lookup_string(fslist, "name", &fsname) == 0);
1445                 (void) nvlist_lookup_uint64(fslist, "origin", &origin_guid);
1446                 (void) nvlist_lookup_uint64(fslist, "parentfromsnap",
1447                     &parent_guid);
1448
1449                 if (parent_guid != 0) {
1450                         parent_nv = fsavl_find(sdd->fsavl, parent_guid, NULL);
1451                         if (!nvlist_exists(parent_nv, "sent")) {
1452                                 /* parent has not been sent; skip this one */
1453                                 needagain = B_TRUE;
1454                                 continue;
1455                         }
1456                 }
1457
1458                 if (origin_guid != 0) {
1459                         nvlist_t *origin_nv = fsavl_find(sdd->fsavl,
1460                             origin_guid, NULL);
1461                         if (origin_nv != NULL &&
1462                             !nvlist_exists(origin_nv, "sent")) {
1463                                 /*
1464                                  * origin has not been sent yet;
1465                                  * skip this clone.
1466                                  */
1467                                 needagain = B_TRUE;
1468                                 continue;
1469                         }
1470                 }
1471
1472                 zhp = zfs_open(rzhp->zfs_hdl, fsname, ZFS_TYPE_DATASET);
1473                 if (zhp == NULL)
1474                         return (-1);
1475                 err = dump_filesystem(zhp, sdd);
1476                 VERIFY(nvlist_add_boolean(fslist, "sent") == 0);
1477                 progress = B_TRUE;
1478                 zfs_close(zhp);
1479                 if (err)
1480                         return (err);
1481         }
1482         if (needagain) {
1483                 assert(progress);
1484                 goto again;
1485         }
1486
1487         /* clean out the sent flags in case we reuse this fss */
1488         for (fspair = nvlist_next_nvpair(sdd->fss, NULL); fspair;
1489             fspair = nvlist_next_nvpair(sdd->fss, fspair)) {
1490                 nvlist_t *fslist;
1491
1492                 VERIFY(nvpair_value_nvlist(fspair, &fslist) == 0);
1493                 (void) nvlist_remove_all(fslist, "sent");
1494         }
1495
1496         return (0);
1497 }
1498
1499 nvlist_t *
1500 zfs_send_resume_token_to_nvlist(libzfs_handle_t *hdl, const char *token)
1501 {
1502         unsigned int version;
1503         int nread;
1504         unsigned long long checksum, packed_len;
1505
1506         /*
1507          * Decode token header, which is:
1508          *   <token version>-<checksum of payload>-<uncompressed payload length>
1509          * Note that the only supported token version is 1.
1510          */
1511         nread = sscanf(token, "%u-%llx-%llx-",
1512             &version, &checksum, &packed_len);
1513         if (nread != 3) {
1514                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1515                     "resume token is corrupt (invalid format)"));
1516                 return (NULL);
1517         }
1518
1519         if (version != ZFS_SEND_RESUME_TOKEN_VERSION) {
1520                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1521                     "resume token is corrupt (invalid version %u)"),
1522                     version);
1523                 return (NULL);
1524         }
1525
1526         /* convert hexadecimal representation to binary */
1527         token = strrchr(token, '-') + 1;
1528         int len = strlen(token) / 2;
1529         unsigned char *compressed = zfs_alloc(hdl, len);
1530         for (int i = 0; i < len; i++) {
1531                 nread = sscanf(token + i * 2, "%2hhx", compressed + i);
1532                 if (nread != 1) {
1533                         free(compressed);
1534                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1535                             "resume token is corrupt "
1536                             "(payload is not hex-encoded)"));
1537                         return (NULL);
1538                 }
1539         }
1540
1541         /* verify checksum */
1542         zio_cksum_t cksum;
1543         fletcher_4_native(compressed, len, NULL, &cksum);
1544         if (cksum.zc_word[0] != checksum) {
1545                 free(compressed);
1546                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1547                     "resume token is corrupt (incorrect checksum)"));
1548                 return (NULL);
1549         }
1550
1551         /* uncompress */
1552         void *packed = zfs_alloc(hdl, packed_len);
1553         uLongf packed_len_long = packed_len;
1554         if (uncompress(packed, &packed_len_long, compressed, len) != Z_OK ||
1555             packed_len_long != packed_len) {
1556                 free(packed);
1557                 free(compressed);
1558                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1559                     "resume token is corrupt (decompression failed)"));
1560                 return (NULL);
1561         }
1562
1563         /* unpack nvlist */
1564         nvlist_t *nv;
1565         int error = nvlist_unpack(packed, packed_len, &nv, KM_SLEEP);
1566         free(packed);
1567         free(compressed);
1568         if (error != 0) {
1569                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1570                     "resume token is corrupt (nvlist_unpack failed)"));
1571                 return (NULL);
1572         }
1573         return (nv);
1574 }
1575
1576 int
1577 zfs_send_resume(libzfs_handle_t *hdl, sendflags_t *flags, int outfd,
1578     const char *resume_token)
1579 {
1580         char errbuf[1024];
1581         char *toname;
1582         char *fromname = NULL;
1583         uint64_t resumeobj, resumeoff, toguid, fromguid, bytes;
1584         zfs_handle_t *zhp;
1585         int error = 0;
1586         char name[ZFS_MAX_DATASET_NAME_LEN];
1587         enum lzc_send_flags lzc_flags = 0;
1588
1589         (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
1590             "cannot resume send"));
1591
1592         nvlist_t *resume_nvl =
1593             zfs_send_resume_token_to_nvlist(hdl, resume_token);
1594         if (resume_nvl == NULL) {
1595                 /*
1596                  * zfs_error_aux has already been set by
1597                  * zfs_send_resume_token_to_nvlist
1598                  */
1599                 return (zfs_error(hdl, EZFS_FAULT, errbuf));
1600         }
1601         if (flags->verbose) {
1602                 (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
1603                     "resume token contents:\n"));
1604                 nvlist_print(stderr, resume_nvl);
1605         }
1606
1607         if (nvlist_lookup_string(resume_nvl, "toname", &toname) != 0 ||
1608             nvlist_lookup_uint64(resume_nvl, "object", &resumeobj) != 0 ||
1609             nvlist_lookup_uint64(resume_nvl, "offset", &resumeoff) != 0 ||
1610             nvlist_lookup_uint64(resume_nvl, "bytes", &bytes) != 0 ||
1611             nvlist_lookup_uint64(resume_nvl, "toguid", &toguid) != 0) {
1612                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1613                     "resume token is corrupt"));
1614                 return (zfs_error(hdl, EZFS_FAULT, errbuf));
1615         }
1616         fromguid = 0;
1617         (void) nvlist_lookup_uint64(resume_nvl, "fromguid", &fromguid);
1618
1619         if (flags->largeblock || nvlist_exists(resume_nvl, "largeblockok"))
1620                 lzc_flags |= LZC_SEND_FLAG_LARGE_BLOCK;
1621         if (flags->embed_data || nvlist_exists(resume_nvl, "embedok"))
1622                 lzc_flags |= LZC_SEND_FLAG_EMBED_DATA;
1623         if (flags->compress || nvlist_exists(resume_nvl, "compressok"))
1624                 lzc_flags |= LZC_SEND_FLAG_COMPRESS;
1625
1626         if (guid_to_name(hdl, toname, toguid, B_FALSE, name) != 0) {
1627                 if (zfs_dataset_exists(hdl, toname, ZFS_TYPE_DATASET)) {
1628                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1629                             "'%s' is no longer the same snapshot used in "
1630                             "the initial send"), toname);
1631                 } else {
1632                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1633                             "'%s' used in the initial send no longer exists"),
1634                             toname);
1635                 }
1636                 return (zfs_error(hdl, EZFS_BADPATH, errbuf));
1637         }
1638         zhp = zfs_open(hdl, name, ZFS_TYPE_DATASET);
1639         if (zhp == NULL) {
1640                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1641                     "unable to access '%s'"), name);
1642                 return (zfs_error(hdl, EZFS_BADPATH, errbuf));
1643         }
1644
1645         if (fromguid != 0) {
1646                 if (guid_to_name(hdl, toname, fromguid, B_TRUE, name) != 0) {
1647                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1648                             "incremental source %#llx no longer exists"),
1649                             (longlong_t)fromguid);
1650                         return (zfs_error(hdl, EZFS_BADPATH, errbuf));
1651                 }
1652                 fromname = name;
1653         }
1654
1655         if (flags->verbose) {
1656                 uint64_t size = 0;
1657                 error = lzc_send_space(zhp->zfs_name, fromname,
1658                     lzc_flags, &size);
1659                 if (error == 0)
1660                         size = MAX(0, (int64_t)(size - bytes));
1661                 send_print_verbose(stderr, zhp->zfs_name, fromname,
1662                     size, flags->parsable);
1663         }
1664
1665         if (!flags->dryrun) {
1666                 progress_arg_t pa = { 0 };
1667                 pthread_t tid;
1668                 /*
1669                  * If progress reporting is requested, spawn a new thread to
1670                  * poll ZFS_IOC_SEND_PROGRESS at a regular interval.
1671                  */
1672                 if (flags->progress) {
1673                         pa.pa_zhp = zhp;
1674                         pa.pa_fd = outfd;
1675                         pa.pa_parsable = flags->parsable;
1676
1677                         error = pthread_create(&tid, NULL,
1678                             send_progress_thread, &pa);
1679                         if (error != 0) {
1680                                 zfs_close(zhp);
1681                                 return (error);
1682                         }
1683                 }
1684
1685                 error = lzc_send_resume(zhp->zfs_name, fromname, outfd,
1686                     lzc_flags, resumeobj, resumeoff);
1687
1688                 if (flags->progress) {
1689                         (void) pthread_cancel(tid);
1690                         (void) pthread_join(tid, NULL);
1691                 }
1692
1693                 char errbuf[1024];
1694                 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
1695                     "warning: cannot send '%s'"), zhp->zfs_name);
1696
1697                 zfs_close(zhp);
1698
1699                 switch (error) {
1700                 case 0:
1701                         return (0);
1702                 case EXDEV:
1703                 case ENOENT:
1704                 case EDQUOT:
1705                 case EFBIG:
1706                 case EIO:
1707                 case ENOLINK:
1708                 case ENOSPC:
1709 #ifdef illumos
1710                 case ENOSTR:
1711 #endif
1712                 case ENXIO:
1713                 case EPIPE:
1714                 case ERANGE:
1715                 case EFAULT:
1716                 case EROFS:
1717                         zfs_error_aux(hdl, strerror(errno));
1718                         return (zfs_error(hdl, EZFS_BADBACKUP, errbuf));
1719
1720                 default:
1721                         return (zfs_standard_error(hdl, errno, errbuf));
1722                 }
1723         }
1724
1725
1726         zfs_close(zhp);
1727
1728         return (error);
1729 }
1730
1731 /*
1732  * Generate a send stream for the dataset identified by the argument zhp.
1733  *
1734  * The content of the send stream is the snapshot identified by
1735  * 'tosnap'.  Incremental streams are requested in two ways:
1736  *     - from the snapshot identified by "fromsnap" (if non-null) or
1737  *     - from the origin of the dataset identified by zhp, which must
1738  *       be a clone.  In this case, "fromsnap" is null and "fromorigin"
1739  *       is TRUE.
1740  *
1741  * The send stream is recursive (i.e. dumps a hierarchy of snapshots) and
1742  * uses a special header (with a hdrtype field of DMU_COMPOUNDSTREAM)
1743  * if "replicate" is set.  If "doall" is set, dump all the intermediate
1744  * snapshots. The DMU_COMPOUNDSTREAM header is used in the "doall"
1745  * case too. If "props" is set, send properties.
1746  */
1747 int
1748 zfs_send(zfs_handle_t *zhp, const char *fromsnap, const char *tosnap,
1749     sendflags_t *flags, int outfd, snapfilter_cb_t filter_func,
1750     void *cb_arg, nvlist_t **debugnvp)
1751 {
1752         char errbuf[1024];
1753         send_dump_data_t sdd = { 0 };
1754         int err = 0;
1755         nvlist_t *fss = NULL;
1756         avl_tree_t *fsavl = NULL;
1757         static uint64_t holdseq;
1758         int spa_version;
1759         pthread_t tid = 0;
1760         int pipefd[2];
1761         dedup_arg_t dda = { 0 };
1762         int featureflags = 0;
1763         FILE *fout;
1764
1765         (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
1766             "cannot send '%s'"), zhp->zfs_name);
1767
1768         if (fromsnap && fromsnap[0] == '\0') {
1769                 zfs_error_aux(zhp->zfs_hdl, dgettext(TEXT_DOMAIN,
1770                     "zero-length incremental source"));
1771                 return (zfs_error(zhp->zfs_hdl, EZFS_NOENT, errbuf));
1772         }
1773
1774         if (zhp->zfs_type == ZFS_TYPE_FILESYSTEM) {
1775                 uint64_t version;
1776                 version = zfs_prop_get_int(zhp, ZFS_PROP_VERSION);
1777                 if (version >= ZPL_VERSION_SA) {
1778                         featureflags |= DMU_BACKUP_FEATURE_SA_SPILL;
1779                 }
1780         }
1781
1782         if (flags->dedup && !flags->dryrun) {
1783                 featureflags |= (DMU_BACKUP_FEATURE_DEDUP |
1784                     DMU_BACKUP_FEATURE_DEDUPPROPS);
1785                 if ((err = pipe(pipefd)) != 0) {
1786                         zfs_error_aux(zhp->zfs_hdl, strerror(errno));
1787                         return (zfs_error(zhp->zfs_hdl, EZFS_PIPEFAILED,
1788                             errbuf));
1789                 }
1790                 dda.outputfd = outfd;
1791                 dda.inputfd = pipefd[1];
1792                 dda.dedup_hdl = zhp->zfs_hdl;
1793                 if ((err = pthread_create(&tid, NULL, cksummer, &dda)) != 0) {
1794                         (void) close(pipefd[0]);
1795                         (void) close(pipefd[1]);
1796                         zfs_error_aux(zhp->zfs_hdl, strerror(errno));
1797                         return (zfs_error(zhp->zfs_hdl,
1798                             EZFS_THREADCREATEFAILED, errbuf));
1799                 }
1800         }
1801
1802         if (flags->replicate || flags->doall || flags->props) {
1803                 dmu_replay_record_t drr = { 0 };
1804                 char *packbuf = NULL;
1805                 size_t buflen = 0;
1806                 zio_cksum_t zc = { 0 };
1807
1808                 if (flags->replicate || flags->props) {
1809                         nvlist_t *hdrnv;
1810
1811                         VERIFY(0 == nvlist_alloc(&hdrnv, NV_UNIQUE_NAME, 0));
1812                         if (fromsnap) {
1813                                 VERIFY(0 == nvlist_add_string(hdrnv,
1814                                     "fromsnap", fromsnap));
1815                         }
1816                         VERIFY(0 == nvlist_add_string(hdrnv, "tosnap", tosnap));
1817                         if (!flags->replicate) {
1818                                 VERIFY(0 == nvlist_add_boolean(hdrnv,
1819                                     "not_recursive"));
1820                         }
1821
1822                         err = gather_nvlist(zhp->zfs_hdl, zhp->zfs_name,
1823                             fromsnap, tosnap, flags->replicate, flags->verbose,
1824                             &fss, &fsavl);
1825                         if (err)
1826                                 goto err_out;
1827                         VERIFY(0 == nvlist_add_nvlist(hdrnv, "fss", fss));
1828                         err = nvlist_pack(hdrnv, &packbuf, &buflen,
1829                             NV_ENCODE_XDR, 0);
1830                         if (debugnvp)
1831                                 *debugnvp = hdrnv;
1832                         else
1833                                 nvlist_free(hdrnv);
1834                         if (err)
1835                                 goto stderr_out;
1836                 }
1837
1838                 if (!flags->dryrun) {
1839                         /* write first begin record */
1840                         drr.drr_type = DRR_BEGIN;
1841                         drr.drr_u.drr_begin.drr_magic = DMU_BACKUP_MAGIC;
1842                         DMU_SET_STREAM_HDRTYPE(drr.drr_u.drr_begin.
1843                             drr_versioninfo, DMU_COMPOUNDSTREAM);
1844                         DMU_SET_FEATUREFLAGS(drr.drr_u.drr_begin.
1845                             drr_versioninfo, featureflags);
1846                         (void) snprintf(drr.drr_u.drr_begin.drr_toname,
1847                             sizeof (drr.drr_u.drr_begin.drr_toname),
1848                             "%s@%s", zhp->zfs_name, tosnap);
1849                         drr.drr_payloadlen = buflen;
1850
1851                         err = dump_record(&drr, packbuf, buflen, &zc, outfd);
1852                         free(packbuf);
1853                         if (err != 0)
1854                                 goto stderr_out;
1855
1856                         /* write end record */
1857                         bzero(&drr, sizeof (drr));
1858                         drr.drr_type = DRR_END;
1859                         drr.drr_u.drr_end.drr_checksum = zc;
1860                         err = write(outfd, &drr, sizeof (drr));
1861                         if (err == -1) {
1862                                 err = errno;
1863                                 goto stderr_out;
1864                         }
1865
1866                         err = 0;
1867                 }
1868         }
1869
1870         /* dump each stream */
1871         sdd.fromsnap = fromsnap;
1872         sdd.tosnap = tosnap;
1873         if (tid != 0)
1874                 sdd.outfd = pipefd[0];
1875         else
1876                 sdd.outfd = outfd;
1877         sdd.replicate = flags->replicate;
1878         sdd.doall = flags->doall;
1879         sdd.fromorigin = flags->fromorigin;
1880         sdd.fss = fss;
1881         sdd.fsavl = fsavl;
1882         sdd.verbose = flags->verbose;
1883         sdd.parsable = flags->parsable;
1884         sdd.progress = flags->progress;
1885         sdd.dryrun = flags->dryrun;
1886         sdd.large_block = flags->largeblock;
1887         sdd.embed_data = flags->embed_data;
1888         sdd.compress = flags->compress;
1889         sdd.filter_cb = filter_func;
1890         sdd.filter_cb_arg = cb_arg;
1891         if (debugnvp)
1892                 sdd.debugnv = *debugnvp;
1893         if (sdd.verbose && sdd.dryrun)
1894                 sdd.std_out = B_TRUE;
1895         fout = sdd.std_out ? stdout : stderr;
1896
1897         /*
1898          * Some flags require that we place user holds on the datasets that are
1899          * being sent so they don't get destroyed during the send. We can skip
1900          * this step if the pool is imported read-only since the datasets cannot
1901          * be destroyed.
1902          */
1903         if (!flags->dryrun && !zpool_get_prop_int(zfs_get_pool_handle(zhp),
1904             ZPOOL_PROP_READONLY, NULL) &&
1905             zfs_spa_version(zhp, &spa_version) == 0 &&
1906             spa_version >= SPA_VERSION_USERREFS &&
1907             (flags->doall || flags->replicate)) {
1908                 ++holdseq;
1909                 (void) snprintf(sdd.holdtag, sizeof (sdd.holdtag),
1910                     ".send-%d-%llu", getpid(), (u_longlong_t)holdseq);
1911                 sdd.cleanup_fd = open(ZFS_DEV, O_RDWR|O_EXCL);
1912                 if (sdd.cleanup_fd < 0) {
1913                         err = errno;
1914                         goto stderr_out;
1915                 }
1916                 sdd.snapholds = fnvlist_alloc();
1917         } else {
1918                 sdd.cleanup_fd = -1;
1919                 sdd.snapholds = NULL;
1920         }
1921         if (flags->verbose || sdd.snapholds != NULL) {
1922                 /*
1923                  * Do a verbose no-op dry run to get all the verbose output
1924                  * or to gather snapshot hold's before generating any data,
1925                  * then do a non-verbose real run to generate the streams.
1926                  */
1927                 sdd.dryrun = B_TRUE;
1928                 err = dump_filesystems(zhp, &sdd);
1929
1930                 if (err != 0)
1931                         goto stderr_out;
1932
1933                 if (flags->verbose) {
1934                         if (flags->parsable) {
1935                                 (void) fprintf(fout, "size\t%llu\n",
1936                                     (longlong_t)sdd.size);
1937                         } else {
1938                                 char buf[16];
1939                                 zfs_nicenum(sdd.size, buf, sizeof (buf));
1940                                 (void) fprintf(fout, dgettext(TEXT_DOMAIN,
1941                                     "total estimated size is %s\n"), buf);
1942                         }
1943                 }
1944
1945                 /* Ensure no snaps found is treated as an error. */
1946                 if (!sdd.seento) {
1947                         err = ENOENT;
1948                         goto err_out;
1949                 }
1950
1951                 /* Skip the second run if dryrun was requested. */
1952                 if (flags->dryrun)
1953                         goto err_out;
1954
1955                 if (sdd.snapholds != NULL) {
1956                         err = zfs_hold_nvl(zhp, sdd.cleanup_fd, sdd.snapholds);
1957                         if (err != 0)
1958                                 goto stderr_out;
1959
1960                         fnvlist_free(sdd.snapholds);
1961                         sdd.snapholds = NULL;
1962                 }
1963
1964                 sdd.dryrun = B_FALSE;
1965                 sdd.verbose = B_FALSE;
1966         }
1967
1968         err = dump_filesystems(zhp, &sdd);
1969         fsavl_destroy(fsavl);
1970         nvlist_free(fss);
1971
1972         /* Ensure no snaps found is treated as an error. */
1973         if (err == 0 && !sdd.seento)
1974                 err = ENOENT;
1975
1976         if (tid != 0) {
1977                 if (err != 0)
1978                         (void) pthread_cancel(tid);
1979                 (void) close(pipefd[0]);
1980                 (void) pthread_join(tid, NULL);
1981         }
1982
1983         if (sdd.cleanup_fd != -1) {
1984                 VERIFY(0 == close(sdd.cleanup_fd));
1985                 sdd.cleanup_fd = -1;
1986         }
1987
1988         if (!flags->dryrun && (flags->replicate || flags->doall ||
1989             flags->props)) {
1990                 /*
1991                  * write final end record.  NB: want to do this even if
1992                  * there was some error, because it might not be totally
1993                  * failed.
1994                  */
1995                 dmu_replay_record_t drr = { 0 };
1996                 drr.drr_type = DRR_END;
1997                 if (write(outfd, &drr, sizeof (drr)) == -1) {
1998                         return (zfs_standard_error(zhp->zfs_hdl,
1999                             errno, errbuf));
2000                 }
2001         }
2002
2003         return (err || sdd.err);
2004
2005 stderr_out:
2006         err = zfs_standard_error(zhp->zfs_hdl, err, errbuf);
2007 err_out:
2008         fsavl_destroy(fsavl);
2009         nvlist_free(fss);
2010         fnvlist_free(sdd.snapholds);
2011
2012         if (sdd.cleanup_fd != -1)
2013                 VERIFY(0 == close(sdd.cleanup_fd));
2014         if (tid != 0) {
2015                 (void) pthread_cancel(tid);
2016                 (void) close(pipefd[0]);
2017                 (void) pthread_join(tid, NULL);
2018         }
2019         return (err);
2020 }
2021
2022 int
2023 zfs_send_one(zfs_handle_t *zhp, const char *from, int fd,
2024     enum lzc_send_flags flags)
2025 {
2026         int err;
2027         libzfs_handle_t *hdl = zhp->zfs_hdl;
2028
2029         char errbuf[1024];
2030         (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
2031             "warning: cannot send '%s'"), zhp->zfs_name);
2032
2033         err = lzc_send(zhp->zfs_name, from, fd, flags);
2034         if (err != 0) {
2035                 switch (errno) {
2036                 case EXDEV:
2037                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2038                             "not an earlier snapshot from the same fs"));
2039                         return (zfs_error(hdl, EZFS_CROSSTARGET, errbuf));
2040
2041                 case ENOENT:
2042                 case ESRCH:
2043                         if (lzc_exists(zhp->zfs_name)) {
2044                                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2045                                     "incremental source (%s) does not exist"),
2046                                     from);
2047                         }
2048                         return (zfs_error(hdl, EZFS_NOENT, errbuf));
2049
2050                 case EBUSY:
2051                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2052                             "target is busy; if a filesystem, "
2053                             "it must not be mounted"));
2054                         return (zfs_error(hdl, EZFS_BUSY, errbuf));
2055
2056                 case EDQUOT:
2057                 case EFBIG:
2058                 case EIO:
2059                 case ENOLINK:
2060                 case ENOSPC:
2061 #ifdef illumos
2062                 case ENOSTR:
2063 #endif
2064                 case ENXIO:
2065                 case EPIPE:
2066                 case ERANGE:
2067                 case EFAULT:
2068                 case EROFS:
2069                         zfs_error_aux(hdl, strerror(errno));
2070                         return (zfs_error(hdl, EZFS_BADBACKUP, errbuf));
2071
2072                 default:
2073                         return (zfs_standard_error(hdl, errno, errbuf));
2074                 }
2075         }
2076         return (err != 0);
2077 }
2078
2079 /*
2080  * Routines specific to "zfs recv"
2081  */
2082
2083 static int
2084 recv_read(libzfs_handle_t *hdl, int fd, void *buf, int ilen,
2085     boolean_t byteswap, zio_cksum_t *zc)
2086 {
2087         char *cp = buf;
2088         int rv;
2089         int len = ilen;
2090
2091         assert(ilen <= SPA_MAXBLOCKSIZE);
2092
2093         do {
2094                 rv = read(fd, cp, len);
2095                 cp += rv;
2096                 len -= rv;
2097         } while (rv > 0);
2098
2099         if (rv < 0 || len != 0) {
2100                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2101                     "failed to read from stream"));
2102                 return (zfs_error(hdl, EZFS_BADSTREAM, dgettext(TEXT_DOMAIN,
2103                     "cannot receive")));
2104         }
2105
2106         if (zc) {
2107                 if (byteswap)
2108                         (void) fletcher_4_incremental_byteswap(buf, ilen, zc);
2109                 else
2110                         (void) fletcher_4_incremental_native(buf, ilen, zc);
2111         }
2112         return (0);
2113 }
2114
2115 static int
2116 recv_read_nvlist(libzfs_handle_t *hdl, int fd, int len, nvlist_t **nvp,
2117     boolean_t byteswap, zio_cksum_t *zc)
2118 {
2119         char *buf;
2120         int err;
2121
2122         buf = zfs_alloc(hdl, len);
2123         if (buf == NULL)
2124                 return (ENOMEM);
2125
2126         err = recv_read(hdl, fd, buf, len, byteswap, zc);
2127         if (err != 0) {
2128                 free(buf);
2129                 return (err);
2130         }
2131
2132         err = nvlist_unpack(buf, len, nvp, 0);
2133         free(buf);
2134         if (err != 0) {
2135                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "invalid "
2136                     "stream (malformed nvlist)"));
2137                 return (EINVAL);
2138         }
2139         return (0);
2140 }
2141
2142 static int
2143 recv_rename(libzfs_handle_t *hdl, const char *name, const char *tryname,
2144     int baselen, char *newname, recvflags_t *flags)
2145 {
2146         static int seq;
2147         zfs_cmd_t zc = { 0 };
2148         int err;
2149         prop_changelist_t *clp;
2150         zfs_handle_t *zhp;
2151
2152         zhp = zfs_open(hdl, name, ZFS_TYPE_DATASET);
2153         if (zhp == NULL)
2154                 return (-1);
2155         clp = changelist_gather(zhp, ZFS_PROP_NAME, 0,
2156             flags->force ? MS_FORCE : 0);
2157         zfs_close(zhp);
2158         if (clp == NULL)
2159                 return (-1);
2160         err = changelist_prefix(clp);
2161         if (err)
2162                 return (err);
2163
2164         zc.zc_objset_type = DMU_OST_ZFS;
2165         (void) strlcpy(zc.zc_name, name, sizeof (zc.zc_name));
2166
2167         if (tryname) {
2168                 (void) strcpy(newname, tryname);
2169
2170                 (void) strlcpy(zc.zc_value, tryname, sizeof (zc.zc_value));
2171
2172                 if (flags->verbose) {
2173                         (void) printf("attempting rename %s to %s\n",
2174                             zc.zc_name, zc.zc_value);
2175                 }
2176                 err = ioctl(hdl->libzfs_fd, ZFS_IOC_RENAME, &zc);
2177                 if (err == 0)
2178                         changelist_rename(clp, name, tryname);
2179         } else {
2180                 err = ENOENT;
2181         }
2182
2183         if (err != 0 && strncmp(name + baselen, "recv-", 5) != 0) {
2184                 seq++;
2185
2186                 (void) snprintf(newname, ZFS_MAX_DATASET_NAME_LEN,
2187                     "%.*srecv-%u-%u", baselen, name, getpid(), seq);
2188                 (void) strlcpy(zc.zc_value, newname, sizeof (zc.zc_value));
2189
2190                 if (flags->verbose) {
2191                         (void) printf("failed - trying rename %s to %s\n",
2192                             zc.zc_name, zc.zc_value);
2193                 }
2194                 err = ioctl(hdl->libzfs_fd, ZFS_IOC_RENAME, &zc);
2195                 if (err == 0)
2196                         changelist_rename(clp, name, newname);
2197                 if (err && flags->verbose) {
2198                         (void) printf("failed (%u) - "
2199                             "will try again on next pass\n", errno);
2200                 }
2201                 err = EAGAIN;
2202         } else if (flags->verbose) {
2203                 if (err == 0)
2204                         (void) printf("success\n");
2205                 else
2206                         (void) printf("failed (%u)\n", errno);
2207         }
2208
2209         (void) changelist_postfix(clp);
2210         changelist_free(clp);
2211
2212         return (err);
2213 }
2214
2215 static int
2216 recv_destroy(libzfs_handle_t *hdl, const char *name, int baselen,
2217     char *newname, recvflags_t *flags)
2218 {
2219         zfs_cmd_t zc = { 0 };
2220         int err = 0;
2221         prop_changelist_t *clp;
2222         zfs_handle_t *zhp;
2223         boolean_t defer = B_FALSE;
2224         int spa_version;
2225
2226         zhp = zfs_open(hdl, name, ZFS_TYPE_DATASET);
2227         if (zhp == NULL)
2228                 return (-1);
2229         clp = changelist_gather(zhp, ZFS_PROP_NAME, 0,
2230             flags->force ? MS_FORCE : 0);
2231         if (zfs_get_type(zhp) == ZFS_TYPE_SNAPSHOT &&
2232             zfs_spa_version(zhp, &spa_version) == 0 &&
2233             spa_version >= SPA_VERSION_USERREFS)
2234                 defer = B_TRUE;
2235         zfs_close(zhp);
2236         if (clp == NULL)
2237                 return (-1);
2238         err = changelist_prefix(clp);
2239         if (err)
2240                 return (err);
2241
2242         zc.zc_objset_type = DMU_OST_ZFS;
2243         zc.zc_defer_destroy = defer;
2244         (void) strlcpy(zc.zc_name, name, sizeof (zc.zc_name));
2245
2246         if (flags->verbose)
2247                 (void) printf("attempting destroy %s\n", zc.zc_name);
2248         err = ioctl(hdl->libzfs_fd, ZFS_IOC_DESTROY, &zc);
2249         if (err == 0) {
2250                 if (flags->verbose)
2251                         (void) printf("success\n");
2252                 changelist_remove(clp, zc.zc_name);
2253         }
2254
2255         (void) changelist_postfix(clp);
2256         changelist_free(clp);
2257
2258         /*
2259          * Deferred destroy might destroy the snapshot or only mark it to be
2260          * destroyed later, and it returns success in either case.
2261          */
2262         if (err != 0 || (defer && zfs_dataset_exists(hdl, name,
2263             ZFS_TYPE_SNAPSHOT))) {
2264                 err = recv_rename(hdl, name, NULL, baselen, newname, flags);
2265         }
2266
2267         return (err);
2268 }
2269
2270 typedef struct guid_to_name_data {
2271         uint64_t guid;
2272         boolean_t bookmark_ok;
2273         char *name;
2274         char *skip;
2275 } guid_to_name_data_t;
2276
2277 static int
2278 guid_to_name_cb(zfs_handle_t *zhp, void *arg)
2279 {
2280         guid_to_name_data_t *gtnd = arg;
2281         const char *slash;
2282         int err;
2283
2284         if (gtnd->skip != NULL &&
2285             (slash = strrchr(zhp->zfs_name, '/')) != NULL &&
2286             strcmp(slash + 1, gtnd->skip) == 0) {
2287                 zfs_close(zhp);
2288                 return (0);
2289         }
2290
2291         if (zfs_prop_get_int(zhp, ZFS_PROP_GUID) == gtnd->guid) {
2292                 (void) strcpy(gtnd->name, zhp->zfs_name);
2293                 zfs_close(zhp);
2294                 return (EEXIST);
2295         }
2296
2297         err = zfs_iter_children(zhp, guid_to_name_cb, gtnd);
2298         if (err != EEXIST && gtnd->bookmark_ok)
2299                 err = zfs_iter_bookmarks(zhp, guid_to_name_cb, gtnd);
2300         zfs_close(zhp);
2301         return (err);
2302 }
2303
2304 /*
2305  * Attempt to find the local dataset associated with this guid.  In the case of
2306  * multiple matches, we attempt to find the "best" match by searching
2307  * progressively larger portions of the hierarchy.  This allows one to send a
2308  * tree of datasets individually and guarantee that we will find the source
2309  * guid within that hierarchy, even if there are multiple matches elsewhere.
2310  */
2311 static int
2312 guid_to_name(libzfs_handle_t *hdl, const char *parent, uint64_t guid,
2313     boolean_t bookmark_ok, char *name)
2314 {
2315         char pname[ZFS_MAX_DATASET_NAME_LEN];
2316         guid_to_name_data_t gtnd;
2317
2318         gtnd.guid = guid;
2319         gtnd.bookmark_ok = bookmark_ok;
2320         gtnd.name = name;
2321         gtnd.skip = NULL;
2322
2323         /*
2324          * Search progressively larger portions of the hierarchy, starting
2325          * with the filesystem specified by 'parent'.  This will
2326          * select the "most local" version of the origin snapshot in the case
2327          * that there are multiple matching snapshots in the system.
2328          */
2329         (void) strlcpy(pname, parent, sizeof (pname));
2330         char *cp = strrchr(pname, '@');
2331         if (cp == NULL)
2332                 cp = strchr(pname, '\0');
2333         for (; cp != NULL; cp = strrchr(pname, '/')) {
2334                 /* Chop off the last component and open the parent */
2335                 *cp = '\0';
2336                 zfs_handle_t *zhp = make_dataset_handle(hdl, pname);
2337
2338                 if (zhp == NULL)
2339                         continue;
2340                 int err = guid_to_name_cb(zfs_handle_dup(zhp), &gtnd);
2341                 if (err != EEXIST)
2342                         err = zfs_iter_children(zhp, guid_to_name_cb, &gtnd);
2343                 if (err != EEXIST && bookmark_ok)
2344                         err = zfs_iter_bookmarks(zhp, guid_to_name_cb, &gtnd);
2345                 zfs_close(zhp);
2346                 if (err == EEXIST)
2347                         return (0);
2348
2349                 /*
2350                  * Remember the last portion of the dataset so we skip it next
2351                  * time through (as we've already searched that portion of the
2352                  * hierarchy).
2353                  */
2354                 gtnd.skip = strrchr(pname, '/') + 1;
2355         }
2356
2357         return (ENOENT);
2358 }
2359
2360 /*
2361  * Return +1 if guid1 is before guid2, 0 if they are the same, and -1 if
2362  * guid1 is after guid2.
2363  */
2364 static int
2365 created_before(libzfs_handle_t *hdl, avl_tree_t *avl,
2366     uint64_t guid1, uint64_t guid2)
2367 {
2368         nvlist_t *nvfs;
2369         char *fsname, *snapname;
2370         char buf[ZFS_MAX_DATASET_NAME_LEN];
2371         int rv;
2372         zfs_handle_t *guid1hdl, *guid2hdl;
2373         uint64_t create1, create2;
2374
2375         if (guid2 == 0)
2376                 return (0);
2377         if (guid1 == 0)
2378                 return (1);
2379
2380         nvfs = fsavl_find(avl, guid1, &snapname);
2381         VERIFY(0 == nvlist_lookup_string(nvfs, "name", &fsname));
2382         (void) snprintf(buf, sizeof (buf), "%s@%s", fsname, snapname);
2383         guid1hdl = zfs_open(hdl, buf, ZFS_TYPE_SNAPSHOT);
2384         if (guid1hdl == NULL)
2385                 return (-1);
2386
2387         nvfs = fsavl_find(avl, guid2, &snapname);
2388         VERIFY(0 == nvlist_lookup_string(nvfs, "name", &fsname));
2389         (void) snprintf(buf, sizeof (buf), "%s@%s", fsname, snapname);
2390         guid2hdl = zfs_open(hdl, buf, ZFS_TYPE_SNAPSHOT);
2391         if (guid2hdl == NULL) {
2392                 zfs_close(guid1hdl);
2393                 return (-1);
2394         }
2395
2396         create1 = zfs_prop_get_int(guid1hdl, ZFS_PROP_CREATETXG);
2397         create2 = zfs_prop_get_int(guid2hdl, ZFS_PROP_CREATETXG);
2398
2399         if (create1 < create2)
2400                 rv = -1;
2401         else if (create1 > create2)
2402                 rv = +1;
2403         else
2404                 rv = 0;
2405
2406         zfs_close(guid1hdl);
2407         zfs_close(guid2hdl);
2408
2409         return (rv);
2410 }
2411
2412 static int
2413 recv_incremental_replication(libzfs_handle_t *hdl, const char *tofs,
2414     recvflags_t *flags, nvlist_t *stream_nv, avl_tree_t *stream_avl,
2415     nvlist_t *renamed)
2416 {
2417         nvlist_t *local_nv, *deleted = NULL;
2418         avl_tree_t *local_avl;
2419         nvpair_t *fselem, *nextfselem;
2420         char *fromsnap;
2421         char newname[ZFS_MAX_DATASET_NAME_LEN];
2422         char guidname[32];
2423         int error;
2424         boolean_t needagain, progress, recursive;
2425         char *s1, *s2;
2426
2427         VERIFY(0 == nvlist_lookup_string(stream_nv, "fromsnap", &fromsnap));
2428
2429         recursive = (nvlist_lookup_boolean(stream_nv, "not_recursive") ==
2430             ENOENT);
2431
2432         if (flags->dryrun)
2433                 return (0);
2434
2435 again:
2436         needagain = progress = B_FALSE;
2437
2438         VERIFY(0 == nvlist_alloc(&deleted, NV_UNIQUE_NAME, 0));
2439
2440         if ((error = gather_nvlist(hdl, tofs, fromsnap, NULL,
2441             recursive, B_FALSE, &local_nv, &local_avl)) != 0)
2442                 return (error);
2443
2444         /*
2445          * Process deletes and renames
2446          */
2447         for (fselem = nvlist_next_nvpair(local_nv, NULL);
2448             fselem; fselem = nextfselem) {
2449                 nvlist_t *nvfs, *snaps;
2450                 nvlist_t *stream_nvfs = NULL;
2451                 nvpair_t *snapelem, *nextsnapelem;
2452                 uint64_t fromguid = 0;
2453                 uint64_t originguid = 0;
2454                 uint64_t stream_originguid = 0;
2455                 uint64_t parent_fromsnap_guid, stream_parent_fromsnap_guid;
2456                 char *fsname, *stream_fsname;
2457
2458                 nextfselem = nvlist_next_nvpair(local_nv, fselem);
2459
2460                 VERIFY(0 == nvpair_value_nvlist(fselem, &nvfs));
2461                 VERIFY(0 == nvlist_lookup_nvlist(nvfs, "snaps", &snaps));
2462                 VERIFY(0 == nvlist_lookup_string(nvfs, "name", &fsname));
2463                 VERIFY(0 == nvlist_lookup_uint64(nvfs, "parentfromsnap",
2464                     &parent_fromsnap_guid));
2465                 (void) nvlist_lookup_uint64(nvfs, "origin", &originguid);
2466
2467                 /*
2468                  * First find the stream's fs, so we can check for
2469                  * a different origin (due to "zfs promote")
2470                  */
2471                 for (snapelem = nvlist_next_nvpair(snaps, NULL);
2472                     snapelem; snapelem = nvlist_next_nvpair(snaps, snapelem)) {
2473                         uint64_t thisguid;
2474
2475                         VERIFY(0 == nvpair_value_uint64(snapelem, &thisguid));
2476                         stream_nvfs = fsavl_find(stream_avl, thisguid, NULL);
2477
2478                         if (stream_nvfs != NULL)
2479                                 break;
2480                 }
2481
2482                 /* check for promote */
2483                 (void) nvlist_lookup_uint64(stream_nvfs, "origin",
2484                     &stream_originguid);
2485                 if (stream_nvfs && originguid != stream_originguid) {
2486                         switch (created_before(hdl, local_avl,
2487                             stream_originguid, originguid)) {
2488                         case 1: {
2489                                 /* promote it! */
2490                                 zfs_cmd_t zc = { 0 };
2491                                 nvlist_t *origin_nvfs;
2492                                 char *origin_fsname;
2493
2494                                 if (flags->verbose)
2495                                         (void) printf("promoting %s\n", fsname);
2496
2497                                 origin_nvfs = fsavl_find(local_avl, originguid,
2498                                     NULL);
2499                                 VERIFY(0 == nvlist_lookup_string(origin_nvfs,
2500                                     "name", &origin_fsname));
2501                                 (void) strlcpy(zc.zc_value, origin_fsname,
2502                                     sizeof (zc.zc_value));
2503                                 (void) strlcpy(zc.zc_name, fsname,
2504                                     sizeof (zc.zc_name));
2505                                 error = zfs_ioctl(hdl, ZFS_IOC_PROMOTE, &zc);
2506                                 if (error == 0)
2507                                         progress = B_TRUE;
2508                                 break;
2509                         }
2510                         default:
2511                                 break;
2512                         case -1:
2513                                 fsavl_destroy(local_avl);
2514                                 nvlist_free(local_nv);
2515                                 return (-1);
2516                         }
2517                         /*
2518                          * We had/have the wrong origin, therefore our
2519                          * list of snapshots is wrong.  Need to handle
2520                          * them on the next pass.
2521                          */
2522                         needagain = B_TRUE;
2523                         continue;
2524                 }
2525
2526                 for (snapelem = nvlist_next_nvpair(snaps, NULL);
2527                     snapelem; snapelem = nextsnapelem) {
2528                         uint64_t thisguid;
2529                         char *stream_snapname;
2530                         nvlist_t *found, *props;
2531
2532                         nextsnapelem = nvlist_next_nvpair(snaps, snapelem);
2533
2534                         VERIFY(0 == nvpair_value_uint64(snapelem, &thisguid));
2535                         found = fsavl_find(stream_avl, thisguid,
2536                             &stream_snapname);
2537
2538                         /* check for delete */
2539                         if (found == NULL) {
2540                                 char name[ZFS_MAX_DATASET_NAME_LEN];
2541
2542                                 if (!flags->force)
2543                                         continue;
2544
2545                                 (void) snprintf(name, sizeof (name), "%s@%s",
2546                                     fsname, nvpair_name(snapelem));
2547
2548                                 error = recv_destroy(hdl, name,
2549                                     strlen(fsname)+1, newname, flags);
2550                                 if (error)
2551                                         needagain = B_TRUE;
2552                                 else
2553                                         progress = B_TRUE;
2554                                 sprintf(guidname, "%lu", thisguid);
2555                                 nvlist_add_boolean(deleted, guidname);
2556                                 continue;
2557                         }
2558
2559                         stream_nvfs = found;
2560
2561                         if (0 == nvlist_lookup_nvlist(stream_nvfs, "snapprops",
2562                             &props) && 0 == nvlist_lookup_nvlist(props,
2563                             stream_snapname, &props)) {
2564                                 zfs_cmd_t zc = { 0 };
2565
2566                                 zc.zc_cookie = B_TRUE; /* received */
2567                                 (void) snprintf(zc.zc_name, sizeof (zc.zc_name),
2568                                     "%s@%s", fsname, nvpair_name(snapelem));
2569                                 if (zcmd_write_src_nvlist(hdl, &zc,
2570                                     props) == 0) {
2571                                         (void) zfs_ioctl(hdl,
2572                                             ZFS_IOC_SET_PROP, &zc);
2573                                         zcmd_free_nvlists(&zc);
2574                                 }
2575                         }
2576
2577                         /* check for different snapname */
2578                         if (strcmp(nvpair_name(snapelem),
2579                             stream_snapname) != 0) {
2580                                 char name[ZFS_MAX_DATASET_NAME_LEN];
2581                                 char tryname[ZFS_MAX_DATASET_NAME_LEN];
2582
2583                                 (void) snprintf(name, sizeof (name), "%s@%s",
2584                                     fsname, nvpair_name(snapelem));
2585                                 (void) snprintf(tryname, sizeof (name), "%s@%s",
2586                                     fsname, stream_snapname);
2587
2588                                 error = recv_rename(hdl, name, tryname,
2589                                     strlen(fsname)+1, newname, flags);
2590                                 if (error)
2591                                         needagain = B_TRUE;
2592                                 else
2593                                         progress = B_TRUE;
2594                         }
2595
2596                         if (strcmp(stream_snapname, fromsnap) == 0)
2597                                 fromguid = thisguid;
2598                 }
2599
2600                 /* check for delete */
2601                 if (stream_nvfs == NULL) {
2602                         if (!flags->force)
2603                                 continue;
2604
2605                         error = recv_destroy(hdl, fsname, strlen(tofs)+1,
2606                             newname, flags);
2607                         if (error)
2608                                 needagain = B_TRUE;
2609                         else
2610                                 progress = B_TRUE;
2611                         sprintf(guidname, "%lu", parent_fromsnap_guid);
2612                         nvlist_add_boolean(deleted, guidname);
2613                         continue;
2614                 }
2615
2616                 if (fromguid == 0) {
2617                         if (flags->verbose) {
2618                                 (void) printf("local fs %s does not have "
2619                                     "fromsnap (%s in stream); must have "
2620                                     "been deleted locally; ignoring\n",
2621                                     fsname, fromsnap);
2622                         }
2623                         continue;
2624                 }
2625
2626                 VERIFY(0 == nvlist_lookup_string(stream_nvfs,
2627                     "name", &stream_fsname));
2628                 VERIFY(0 == nvlist_lookup_uint64(stream_nvfs,
2629                     "parentfromsnap", &stream_parent_fromsnap_guid));
2630
2631                 s1 = strrchr(fsname, '/');
2632                 s2 = strrchr(stream_fsname, '/');
2633
2634                 /*
2635                  * Check if we're going to rename based on parent guid change
2636                  * and the current parent guid was also deleted. If it was then
2637                  * rename will fail and is likely unneeded, so avoid this and
2638                  * force an early retry to determine the new
2639                  * parent_fromsnap_guid.
2640                  */
2641                 if (stream_parent_fromsnap_guid != 0 &&
2642                     parent_fromsnap_guid != 0 &&
2643                     stream_parent_fromsnap_guid != parent_fromsnap_guid) {
2644                         sprintf(guidname, "%lu", parent_fromsnap_guid);
2645                         if (nvlist_exists(deleted, guidname)) {
2646                                 progress = B_TRUE;
2647                                 needagain = B_TRUE;
2648                                 goto doagain;
2649                         }
2650                 }
2651
2652                 /*
2653                  * Check for rename. If the exact receive path is specified, it
2654                  * does not count as a rename, but we still need to check the
2655                  * datasets beneath it.
2656                  */
2657                 if ((stream_parent_fromsnap_guid != 0 &&
2658                     parent_fromsnap_guid != 0 &&
2659                     stream_parent_fromsnap_guid != parent_fromsnap_guid) ||
2660                     ((flags->isprefix || strcmp(tofs, fsname) != 0) &&
2661                     (s1 != NULL) && (s2 != NULL) && strcmp(s1, s2) != 0)) {
2662                         nvlist_t *parent;
2663                         char tryname[ZFS_MAX_DATASET_NAME_LEN];
2664
2665                         parent = fsavl_find(local_avl,
2666                             stream_parent_fromsnap_guid, NULL);
2667                         /*
2668                          * NB: parent might not be found if we used the
2669                          * tosnap for stream_parent_fromsnap_guid,
2670                          * because the parent is a newly-created fs;
2671                          * we'll be able to rename it after we recv the
2672                          * new fs.
2673                          */
2674                         if (parent != NULL) {
2675                                 char *pname;
2676
2677                                 VERIFY(0 == nvlist_lookup_string(parent, "name",
2678                                     &pname));
2679                                 (void) snprintf(tryname, sizeof (tryname),
2680                                     "%s%s", pname, strrchr(stream_fsname, '/'));
2681                         } else {
2682                                 tryname[0] = '\0';
2683                                 if (flags->verbose) {
2684                                         (void) printf("local fs %s new parent "
2685                                             "not found\n", fsname);
2686                                 }
2687                         }
2688
2689                         newname[0] = '\0';
2690
2691                         error = recv_rename(hdl, fsname, tryname,
2692                             strlen(tofs)+1, newname, flags);
2693
2694                         if (renamed != NULL && newname[0] != '\0') {
2695                                 VERIFY(0 == nvlist_add_boolean(renamed,
2696                                     newname));
2697                         }
2698
2699                         if (error)
2700                                 needagain = B_TRUE;
2701                         else
2702                                 progress = B_TRUE;
2703                 }
2704         }
2705
2706 doagain:
2707         fsavl_destroy(local_avl);
2708         nvlist_free(local_nv);
2709         nvlist_free(deleted);
2710
2711         if (needagain && progress) {
2712                 /* do another pass to fix up temporary names */
2713                 if (flags->verbose)
2714                         (void) printf("another pass:\n");
2715                 goto again;
2716         }
2717
2718         return (needagain);
2719 }
2720
2721 static int
2722 zfs_receive_package(libzfs_handle_t *hdl, int fd, const char *destname,
2723     recvflags_t *flags, dmu_replay_record_t *drr, zio_cksum_t *zc,
2724     char **top_zfs, int cleanup_fd, uint64_t *action_handlep)
2725 {
2726         nvlist_t *stream_nv = NULL;
2727         avl_tree_t *stream_avl = NULL;
2728         char *fromsnap = NULL;
2729         char *sendsnap = NULL;
2730         char *cp;
2731         char tofs[ZFS_MAX_DATASET_NAME_LEN];
2732         char sendfs[ZFS_MAX_DATASET_NAME_LEN];
2733         char errbuf[1024];
2734         dmu_replay_record_t drre;
2735         int error;
2736         boolean_t anyerr = B_FALSE;
2737         boolean_t softerr = B_FALSE;
2738         boolean_t recursive;
2739
2740         (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
2741             "cannot receive"));
2742
2743         assert(drr->drr_type == DRR_BEGIN);
2744         assert(drr->drr_u.drr_begin.drr_magic == DMU_BACKUP_MAGIC);
2745         assert(DMU_GET_STREAM_HDRTYPE(drr->drr_u.drr_begin.drr_versioninfo) ==
2746             DMU_COMPOUNDSTREAM);
2747
2748         /*
2749          * Read in the nvlist from the stream.
2750          */
2751         if (drr->drr_payloadlen != 0) {
2752                 error = recv_read_nvlist(hdl, fd, drr->drr_payloadlen,
2753                     &stream_nv, flags->byteswap, zc);
2754                 if (error) {
2755                         error = zfs_error(hdl, EZFS_BADSTREAM, errbuf);
2756                         goto out;
2757                 }
2758         }
2759
2760         recursive = (nvlist_lookup_boolean(stream_nv, "not_recursive") ==
2761             ENOENT);
2762
2763         if (recursive && strchr(destname, '@')) {
2764                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2765                     "cannot specify snapshot name for multi-snapshot stream"));
2766                 error = zfs_error(hdl, EZFS_BADSTREAM, errbuf);
2767                 goto out;
2768         }
2769
2770         /*
2771          * Read in the end record and verify checksum.
2772          */
2773         if (0 != (error = recv_read(hdl, fd, &drre, sizeof (drre),
2774             flags->byteswap, NULL)))
2775                 goto out;
2776         if (flags->byteswap) {
2777                 drre.drr_type = BSWAP_32(drre.drr_type);
2778                 drre.drr_u.drr_end.drr_checksum.zc_word[0] =
2779                     BSWAP_64(drre.drr_u.drr_end.drr_checksum.zc_word[0]);
2780                 drre.drr_u.drr_end.drr_checksum.zc_word[1] =
2781                     BSWAP_64(drre.drr_u.drr_end.drr_checksum.zc_word[1]);
2782                 drre.drr_u.drr_end.drr_checksum.zc_word[2] =
2783                     BSWAP_64(drre.drr_u.drr_end.drr_checksum.zc_word[2]);
2784                 drre.drr_u.drr_end.drr_checksum.zc_word[3] =
2785                     BSWAP_64(drre.drr_u.drr_end.drr_checksum.zc_word[3]);
2786         }
2787         if (drre.drr_type != DRR_END) {
2788                 error = zfs_error(hdl, EZFS_BADSTREAM, errbuf);
2789                 goto out;
2790         }
2791         if (!ZIO_CHECKSUM_EQUAL(drre.drr_u.drr_end.drr_checksum, *zc)) {
2792                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2793                     "incorrect header checksum"));
2794                 error = zfs_error(hdl, EZFS_BADSTREAM, errbuf);
2795                 goto out;
2796         }
2797
2798         (void) nvlist_lookup_string(stream_nv, "fromsnap", &fromsnap);
2799
2800         if (drr->drr_payloadlen != 0) {
2801                 nvlist_t *stream_fss;
2802
2803                 VERIFY(0 == nvlist_lookup_nvlist(stream_nv, "fss",
2804                     &stream_fss));
2805                 if ((stream_avl = fsavl_create(stream_fss)) == NULL) {
2806                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2807                             "couldn't allocate avl tree"));
2808                         error = zfs_error(hdl, EZFS_NOMEM, errbuf);
2809                         goto out;
2810                 }
2811
2812                 if (fromsnap != NULL && recursive) {
2813                         nvlist_t *renamed = NULL;
2814                         nvpair_t *pair = NULL;
2815
2816                         (void) strlcpy(tofs, destname, sizeof (tofs));
2817                         if (flags->isprefix) {
2818                                 struct drr_begin *drrb = &drr->drr_u.drr_begin;
2819                                 int i;
2820
2821                                 if (flags->istail) {
2822                                         cp = strrchr(drrb->drr_toname, '/');
2823                                         if (cp == NULL) {
2824                                                 (void) strlcat(tofs, "/",
2825                                                     sizeof (tofs));
2826                                                 i = 0;
2827                                         } else {
2828                                                 i = (cp - drrb->drr_toname);
2829                                         }
2830                                 } else {
2831                                         i = strcspn(drrb->drr_toname, "/@");
2832                                 }
2833                                 /* zfs_receive_one() will create_parents() */
2834                                 (void) strlcat(tofs, &drrb->drr_toname[i],
2835                                     sizeof (tofs));
2836                                 *strchr(tofs, '@') = '\0';
2837                         }
2838
2839                         if (!flags->dryrun && !flags->nomount) {
2840                                 VERIFY(0 == nvlist_alloc(&renamed,
2841                                     NV_UNIQUE_NAME, 0));
2842                         }
2843
2844                         softerr = recv_incremental_replication(hdl, tofs, flags,
2845                             stream_nv, stream_avl, renamed);
2846
2847                         /* Unmount renamed filesystems before receiving. */
2848                         while ((pair = nvlist_next_nvpair(renamed,
2849                             pair)) != NULL) {
2850                                 zfs_handle_t *zhp;
2851                                 prop_changelist_t *clp = NULL;
2852
2853                                 zhp = zfs_open(hdl, nvpair_name(pair),
2854                                     ZFS_TYPE_FILESYSTEM);
2855                                 if (zhp != NULL) {
2856                                         clp = changelist_gather(zhp,
2857                                             ZFS_PROP_MOUNTPOINT, 0, 0);
2858                                         zfs_close(zhp);
2859                                         if (clp != NULL) {
2860                                                 softerr |=
2861                                                     changelist_prefix(clp);
2862                                                 changelist_free(clp);
2863                                         }
2864                                 }
2865                         }
2866
2867                         nvlist_free(renamed);
2868                 }
2869         }
2870
2871         /*
2872          * Get the fs specified by the first path in the stream (the top level
2873          * specified by 'zfs send') and pass it to each invocation of
2874          * zfs_receive_one().
2875          */
2876         (void) strlcpy(sendfs, drr->drr_u.drr_begin.drr_toname,
2877             sizeof (sendfs));
2878         if ((cp = strchr(sendfs, '@')) != NULL) {
2879                 *cp = '\0';
2880                 /*
2881                  * Find the "sendsnap", the final snapshot in a replication
2882                  * stream.  zfs_receive_one() handles certain errors
2883                  * differently, depending on if the contained stream is the
2884                  * last one or not.
2885                  */
2886                 sendsnap = (cp + 1);
2887         }
2888
2889         /* Finally, receive each contained stream */
2890         do {
2891                 /*
2892                  * we should figure out if it has a recoverable
2893                  * error, in which case do a recv_skip() and drive on.
2894                  * Note, if we fail due to already having this guid,
2895                  * zfs_receive_one() will take care of it (ie,
2896                  * recv_skip() and return 0).
2897                  */
2898                 error = zfs_receive_impl(hdl, destname, NULL, flags, fd,
2899                     sendfs, stream_nv, stream_avl, top_zfs, cleanup_fd,
2900                     action_handlep, sendsnap);
2901                 if (error == ENODATA) {
2902                         error = 0;
2903                         break;
2904                 }
2905                 anyerr |= error;
2906         } while (error == 0);
2907
2908         if (drr->drr_payloadlen != 0 && recursive && fromsnap != NULL) {
2909                 /*
2910                  * Now that we have the fs's they sent us, try the
2911                  * renames again.
2912                  */
2913                 softerr = recv_incremental_replication(hdl, tofs, flags,
2914                     stream_nv, stream_avl, NULL);
2915         }
2916
2917 out:
2918         fsavl_destroy(stream_avl);
2919         nvlist_free(stream_nv);
2920         if (softerr)
2921                 error = -2;
2922         if (anyerr)
2923                 error = -1;
2924         return (error);
2925 }
2926
2927 static void
2928 trunc_prop_errs(int truncated)
2929 {
2930         ASSERT(truncated != 0);
2931
2932         if (truncated == 1)
2933                 (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
2934                     "1 more property could not be set\n"));
2935         else
2936                 (void) fprintf(stderr, dgettext(TEXT_DOMAIN,
2937                     "%d more properties could not be set\n"), truncated);
2938 }
2939
2940 static int
2941 recv_skip(libzfs_handle_t *hdl, int fd, boolean_t byteswap)
2942 {
2943         dmu_replay_record_t *drr;
2944         void *buf = zfs_alloc(hdl, SPA_MAXBLOCKSIZE);
2945         char errbuf[1024];
2946
2947         (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
2948             "cannot receive:"));
2949
2950         /* XXX would be great to use lseek if possible... */
2951         drr = buf;
2952
2953         while (recv_read(hdl, fd, drr, sizeof (dmu_replay_record_t),
2954             byteswap, NULL) == 0) {
2955                 if (byteswap)
2956                         drr->drr_type = BSWAP_32(drr->drr_type);
2957
2958                 switch (drr->drr_type) {
2959                 case DRR_BEGIN:
2960                         if (drr->drr_payloadlen != 0) {
2961                                 (void) recv_read(hdl, fd, buf,
2962                                     drr->drr_payloadlen, B_FALSE, NULL);
2963                         }
2964                         break;
2965
2966                 case DRR_END:
2967                         free(buf);
2968                         return (0);
2969
2970                 case DRR_OBJECT:
2971                         if (byteswap) {
2972                                 drr->drr_u.drr_object.drr_bonuslen =
2973                                     BSWAP_32(drr->drr_u.drr_object.
2974                                     drr_bonuslen);
2975                         }
2976                         (void) recv_read(hdl, fd, buf,
2977                             P2ROUNDUP(drr->drr_u.drr_object.drr_bonuslen, 8),
2978                             B_FALSE, NULL);
2979                         break;
2980
2981                 case DRR_WRITE:
2982                         if (byteswap) {
2983                                 drr->drr_u.drr_write.drr_logical_size =
2984                                     BSWAP_64(
2985                                     drr->drr_u.drr_write.drr_logical_size);
2986                                 drr->drr_u.drr_write.drr_compressed_size =
2987                                     BSWAP_64(
2988                                     drr->drr_u.drr_write.drr_compressed_size);
2989                         }
2990                         uint64_t payload_size =
2991                             DRR_WRITE_PAYLOAD_SIZE(&drr->drr_u.drr_write);
2992                         (void) recv_read(hdl, fd, buf,
2993                             payload_size, B_FALSE, NULL);
2994                         break;
2995                 case DRR_SPILL:
2996                         if (byteswap) {
2997                                 drr->drr_u.drr_spill.drr_length =
2998                                     BSWAP_64(drr->drr_u.drr_spill.drr_length);
2999                         }
3000                         (void) recv_read(hdl, fd, buf,
3001                             drr->drr_u.drr_spill.drr_length, B_FALSE, NULL);
3002                         break;
3003                 case DRR_WRITE_EMBEDDED:
3004                         if (byteswap) {
3005                                 drr->drr_u.drr_write_embedded.drr_psize =
3006                                     BSWAP_32(drr->drr_u.drr_write_embedded.
3007                                     drr_psize);
3008                         }
3009                         (void) recv_read(hdl, fd, buf,
3010                             P2ROUNDUP(drr->drr_u.drr_write_embedded.drr_psize,
3011                             8), B_FALSE, NULL);
3012                         break;
3013                 case DRR_WRITE_BYREF:
3014                 case DRR_FREEOBJECTS:
3015                 case DRR_FREE:
3016                         break;
3017
3018                 default:
3019                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3020                             "invalid record type"));
3021                         return (zfs_error(hdl, EZFS_BADSTREAM, errbuf));
3022                 }
3023         }
3024
3025         free(buf);
3026         return (-1);
3027 }
3028
3029 static void
3030 recv_ecksum_set_aux(libzfs_handle_t *hdl, const char *target_snap,
3031     boolean_t resumable)
3032 {
3033         char target_fs[ZFS_MAX_DATASET_NAME_LEN];
3034
3035         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3036             "checksum mismatch or incomplete stream"));
3037
3038         if (!resumable)
3039                 return;
3040         (void) strlcpy(target_fs, target_snap, sizeof (target_fs));
3041         *strchr(target_fs, '@') = '\0';
3042         zfs_handle_t *zhp = zfs_open(hdl, target_fs,
3043             ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME);
3044         if (zhp == NULL)
3045                 return;
3046
3047         char token_buf[ZFS_MAXPROPLEN];
3048         int error = zfs_prop_get(zhp, ZFS_PROP_RECEIVE_RESUME_TOKEN,
3049             token_buf, sizeof (token_buf),
3050             NULL, NULL, 0, B_TRUE);
3051         if (error == 0) {
3052                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3053                     "checksum mismatch or incomplete stream.\n"
3054                     "Partially received snapshot is saved.\n"
3055                     "A resuming stream can be generated on the sending "
3056                     "system by running:\n"
3057                     "    zfs send -t %s"),
3058                     token_buf);
3059         }
3060         zfs_close(zhp);
3061 }
3062
3063 /*
3064  * Restores a backup of tosnap from the file descriptor specified by infd.
3065  */
3066 static int
3067 zfs_receive_one(libzfs_handle_t *hdl, int infd, const char *tosnap,
3068     const char *originsnap, recvflags_t *flags, dmu_replay_record_t *drr,
3069     dmu_replay_record_t *drr_noswap, const char *sendfs, nvlist_t *stream_nv,
3070     avl_tree_t *stream_avl, char **top_zfs, int cleanup_fd,
3071     uint64_t *action_handlep, const char *finalsnap)
3072 {
3073         zfs_cmd_t zc = { 0 };
3074         time_t begin_time;
3075         int ioctl_err, ioctl_errno, err;
3076         char *cp;
3077         struct drr_begin *drrb = &drr->drr_u.drr_begin;
3078         char errbuf[1024];
3079         char prop_errbuf[1024];
3080         const char *chopprefix;
3081         boolean_t newfs = B_FALSE;
3082         boolean_t stream_wantsnewfs;
3083         uint64_t parent_snapguid = 0;
3084         prop_changelist_t *clp = NULL;
3085         nvlist_t *snapprops_nvlist = NULL;
3086         zprop_errflags_t prop_errflags;
3087         boolean_t recursive;
3088         char *snapname = NULL;
3089
3090         begin_time = time(NULL);
3091
3092         (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
3093             "cannot receive"));
3094
3095         recursive = (nvlist_lookup_boolean(stream_nv, "not_recursive") ==
3096             ENOENT);
3097
3098         if (stream_avl != NULL) {
3099                 nvlist_t *fs = fsavl_find(stream_avl, drrb->drr_toguid,
3100                     &snapname);
3101                 nvlist_t *props;
3102                 int ret;
3103
3104                 (void) nvlist_lookup_uint64(fs, "parentfromsnap",
3105                     &parent_snapguid);
3106                 err = nvlist_lookup_nvlist(fs, "props", &props);
3107                 if (err)
3108                         VERIFY(0 == nvlist_alloc(&props, NV_UNIQUE_NAME, 0));
3109
3110                 if (flags->canmountoff) {
3111                         VERIFY(0 == nvlist_add_uint64(props,
3112                             zfs_prop_to_name(ZFS_PROP_CANMOUNT), 0));
3113                 }
3114                 ret = zcmd_write_src_nvlist(hdl, &zc, props);
3115                 if (err)
3116                         nvlist_free(props);
3117
3118                 if (0 == nvlist_lookup_nvlist(fs, "snapprops", &props)) {
3119                         VERIFY(0 == nvlist_lookup_nvlist(props,
3120                             snapname, &snapprops_nvlist));
3121                 }
3122
3123                 if (ret != 0)
3124                         return (-1);
3125         }
3126
3127         cp = NULL;
3128
3129         /*
3130          * Determine how much of the snapshot name stored in the stream
3131          * we are going to tack on to the name they specified on the
3132          * command line, and how much we are going to chop off.
3133          *
3134          * If they specified a snapshot, chop the entire name stored in
3135          * the stream.
3136          */
3137         if (flags->istail) {
3138                 /*
3139                  * A filesystem was specified with -e. We want to tack on only
3140                  * the tail of the sent snapshot path.
3141                  */
3142                 if (strchr(tosnap, '@')) {
3143                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "invalid "
3144                             "argument - snapshot not allowed with -e"));
3145                         return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
3146                 }
3147
3148                 chopprefix = strrchr(sendfs, '/');
3149
3150                 if (chopprefix == NULL) {
3151                         /*
3152                          * The tail is the poolname, so we need to
3153                          * prepend a path separator.
3154                          */
3155                         int len = strlen(drrb->drr_toname);
3156                         cp = malloc(len + 2);
3157                         cp[0] = '/';
3158                         (void) strcpy(&cp[1], drrb->drr_toname);
3159                         chopprefix = cp;
3160                 } else {
3161                         chopprefix = drrb->drr_toname + (chopprefix - sendfs);
3162                 }
3163         } else if (flags->isprefix) {
3164                 /*
3165                  * A filesystem was specified with -d. We want to tack on
3166                  * everything but the first element of the sent snapshot path
3167                  * (all but the pool name).
3168                  */
3169                 if (strchr(tosnap, '@')) {
3170                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "invalid "
3171                             "argument - snapshot not allowed with -d"));
3172                         return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
3173                 }
3174
3175                 chopprefix = strchr(drrb->drr_toname, '/');
3176                 if (chopprefix == NULL)
3177                         chopprefix = strchr(drrb->drr_toname, '@');
3178         } else if (strchr(tosnap, '@') == NULL) {
3179                 /*
3180                  * If a filesystem was specified without -d or -e, we want to
3181                  * tack on everything after the fs specified by 'zfs send'.
3182                  */
3183                 chopprefix = drrb->drr_toname + strlen(sendfs);
3184         } else {
3185                 /* A snapshot was specified as an exact path (no -d or -e). */
3186                 if (recursive) {
3187                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3188                             "cannot specify snapshot name for multi-snapshot "
3189                             "stream"));
3190                         return (zfs_error(hdl, EZFS_BADSTREAM, errbuf));
3191                 }
3192                 chopprefix = drrb->drr_toname + strlen(drrb->drr_toname);
3193         }
3194
3195         ASSERT(strstr(drrb->drr_toname, sendfs) == drrb->drr_toname);
3196         ASSERT(chopprefix > drrb->drr_toname);
3197         ASSERT(chopprefix <= drrb->drr_toname + strlen(drrb->drr_toname));
3198         ASSERT(chopprefix[0] == '/' || chopprefix[0] == '@' ||
3199             chopprefix[0] == '\0');
3200
3201         /*
3202          * Determine name of destination snapshot, store in zc_value.
3203          */
3204         (void) strcpy(zc.zc_value, tosnap);
3205         (void) strncat(zc.zc_value, chopprefix, sizeof (zc.zc_value));
3206 #ifdef __FreeBSD__
3207         if (zfs_ioctl_version == ZFS_IOCVER_UNDEF)
3208                 zfs_ioctl_version = get_zfs_ioctl_version();
3209         /*
3210          * For forward compatibility hide tosnap in zc_value
3211          */
3212         if (zfs_ioctl_version < ZFS_IOCVER_LZC)
3213                 (void) strcpy(zc.zc_value + strlen(zc.zc_value) + 1, tosnap);
3214 #endif
3215         free(cp);
3216         if (!zfs_name_valid(zc.zc_value, ZFS_TYPE_SNAPSHOT)) {
3217                 zcmd_free_nvlists(&zc);
3218                 return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
3219         }
3220
3221         /*
3222          * Determine the name of the origin snapshot, store in zc_string.
3223          */
3224         if (originsnap) {
3225                 (void) strncpy(zc.zc_string, originsnap, sizeof (zc.zc_string));
3226                 if (flags->verbose)
3227                         (void) printf("using provided clone origin %s\n",
3228                             zc.zc_string);
3229         } else if (drrb->drr_flags & DRR_FLAG_CLONE) {
3230                 if (guid_to_name(hdl, zc.zc_value,
3231                     drrb->drr_fromguid, B_FALSE, zc.zc_string) != 0) {
3232                         zcmd_free_nvlists(&zc);
3233                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3234                             "local origin for clone %s does not exist"),
3235                             zc.zc_value);
3236                         return (zfs_error(hdl, EZFS_NOENT, errbuf));
3237                 }
3238                 if (flags->verbose)
3239                         (void) printf("found clone origin %s\n", zc.zc_string);
3240         }
3241
3242         boolean_t resuming = DMU_GET_FEATUREFLAGS(drrb->drr_versioninfo) &
3243             DMU_BACKUP_FEATURE_RESUMING;
3244         stream_wantsnewfs = (drrb->drr_fromguid == 0 ||
3245             (drrb->drr_flags & DRR_FLAG_CLONE) || originsnap) && !resuming;
3246
3247         if (stream_wantsnewfs) {
3248                 /*
3249                  * if the parent fs does not exist, look for it based on
3250                  * the parent snap GUID
3251                  */
3252                 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
3253                     "cannot receive new filesystem stream"));
3254
3255                 (void) strcpy(zc.zc_name, zc.zc_value);
3256                 cp = strrchr(zc.zc_name, '/');
3257                 if (cp)
3258                         *cp = '\0';
3259                 if (cp &&
3260                     !zfs_dataset_exists(hdl, zc.zc_name, ZFS_TYPE_DATASET)) {
3261                         char suffix[ZFS_MAX_DATASET_NAME_LEN];
3262                         (void) strcpy(suffix, strrchr(zc.zc_value, '/'));
3263                         if (guid_to_name(hdl, zc.zc_name, parent_snapguid,
3264                             B_FALSE, zc.zc_value) == 0) {
3265                                 *strchr(zc.zc_value, '@') = '\0';
3266                                 (void) strcat(zc.zc_value, suffix);
3267                         }
3268                 }
3269         } else {
3270                 /*
3271                  * if the fs does not exist, look for it based on the
3272                  * fromsnap GUID
3273                  */
3274                 (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
3275                     "cannot receive incremental stream"));
3276
3277                 (void) strcpy(zc.zc_name, zc.zc_value);
3278                 *strchr(zc.zc_name, '@') = '\0';
3279
3280                 /*
3281                  * If the exact receive path was specified and this is the
3282                  * topmost path in the stream, then if the fs does not exist we
3283                  * should look no further.
3284                  */
3285                 if ((flags->isprefix || (*(chopprefix = drrb->drr_toname +
3286                     strlen(sendfs)) != '\0' && *chopprefix != '@')) &&
3287                     !zfs_dataset_exists(hdl, zc.zc_name, ZFS_TYPE_DATASET)) {
3288                         char snap[ZFS_MAX_DATASET_NAME_LEN];
3289                         (void) strcpy(snap, strchr(zc.zc_value, '@'));
3290                         if (guid_to_name(hdl, zc.zc_name, drrb->drr_fromguid,
3291                             B_FALSE, zc.zc_value) == 0) {
3292                                 *strchr(zc.zc_value, '@') = '\0';
3293                                 (void) strcat(zc.zc_value, snap);
3294                         }
3295                 }
3296         }
3297
3298         (void) strcpy(zc.zc_name, zc.zc_value);
3299         *strchr(zc.zc_name, '@') = '\0';
3300
3301         if (zfs_dataset_exists(hdl, zc.zc_name, ZFS_TYPE_DATASET)) {
3302                 zfs_handle_t *zhp;
3303
3304                 /*
3305                  * Destination fs exists.  It must be one of these cases:
3306                  *  - an incremental send stream
3307                  *  - the stream specifies a new fs (full stream or clone)
3308                  *    and they want us to blow away the existing fs (and
3309                  *    have therefore specified -F and removed any snapshots)
3310                  *  - we are resuming a failed receive.
3311                  */
3312                 if (stream_wantsnewfs) {
3313                         if (!flags->force) {
3314                                 zcmd_free_nvlists(&zc);
3315                                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3316                                     "destination '%s' exists\n"
3317                                     "must specify -F to overwrite it"),
3318                                     zc.zc_name);
3319                                 return (zfs_error(hdl, EZFS_EXISTS, errbuf));
3320                         }
3321                         if (ioctl(hdl->libzfs_fd, ZFS_IOC_SNAPSHOT_LIST_NEXT,
3322                             &zc) == 0) {
3323                                 zcmd_free_nvlists(&zc);
3324                                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3325                                     "destination has snapshots (eg. %s)\n"
3326                                     "must destroy them to overwrite it"),
3327                                     zc.zc_name);
3328                                 return (zfs_error(hdl, EZFS_EXISTS, errbuf));
3329                         }
3330                 }
3331
3332                 if ((zhp = zfs_open(hdl, zc.zc_name,
3333                     ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME)) == NULL) {
3334                         zcmd_free_nvlists(&zc);
3335                         return (-1);
3336                 }
3337
3338                 if (stream_wantsnewfs &&
3339                     zhp->zfs_dmustats.dds_origin[0]) {
3340                         zcmd_free_nvlists(&zc);
3341                         zfs_close(zhp);
3342                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3343                             "destination '%s' is a clone\n"
3344                             "must destroy it to overwrite it"),
3345                             zc.zc_name);
3346                         return (zfs_error(hdl, EZFS_EXISTS, errbuf));
3347                 }
3348
3349                 if (!flags->dryrun && zhp->zfs_type == ZFS_TYPE_FILESYSTEM &&
3350                     stream_wantsnewfs) {
3351                         /* We can't do online recv in this case */
3352                         clp = changelist_gather(zhp, ZFS_PROP_NAME, 0, 0);
3353                         if (clp == NULL) {
3354                                 zfs_close(zhp);
3355                                 zcmd_free_nvlists(&zc);
3356                                 return (-1);
3357                         }
3358                         if (changelist_prefix(clp) != 0) {
3359                                 changelist_free(clp);
3360                                 zfs_close(zhp);
3361                                 zcmd_free_nvlists(&zc);
3362                                 return (-1);
3363                         }
3364                 }
3365
3366                 /*
3367                  * If we are resuming a newfs, set newfs here so that we will
3368                  * mount it if the recv succeeds this time.  We can tell
3369                  * that it was a newfs on the first recv because the fs
3370                  * itself will be inconsistent (if the fs existed when we
3371                  * did the first recv, we would have received it into
3372                  * .../%recv).
3373                  */
3374                 if (resuming && zfs_prop_get_int(zhp, ZFS_PROP_INCONSISTENT))
3375                         newfs = B_TRUE;
3376
3377                 zfs_close(zhp);
3378         } else {
3379                 /*
3380                  * Destination filesystem does not exist.  Therefore we better
3381                  * be creating a new filesystem (either from a full backup, or
3382                  * a clone).  It would therefore be invalid if the user
3383                  * specified only the pool name (i.e. if the destination name
3384                  * contained no slash character).
3385                  */
3386                 if (!stream_wantsnewfs ||
3387                     (cp = strrchr(zc.zc_name, '/')) == NULL) {
3388                         zcmd_free_nvlists(&zc);
3389                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3390                             "destination '%s' does not exist"), zc.zc_name);
3391                         return (zfs_error(hdl, EZFS_NOENT, errbuf));
3392                 }
3393
3394                 /*
3395                  * Trim off the final dataset component so we perform the
3396                  * recvbackup ioctl to the filesystems's parent.
3397                  */
3398                 *cp = '\0';
3399
3400                 if (flags->isprefix && !flags->istail && !flags->dryrun &&
3401                     create_parents(hdl, zc.zc_value, strlen(tosnap)) != 0) {
3402                         zcmd_free_nvlists(&zc);
3403                         return (zfs_error(hdl, EZFS_BADRESTORE, errbuf));
3404                 }
3405
3406                 newfs = B_TRUE;
3407         }
3408
3409         zc.zc_begin_record = *drr_noswap;
3410         zc.zc_cookie = infd;
3411         zc.zc_guid = flags->force;
3412         zc.zc_resumable = flags->resumable;
3413         if (flags->verbose) {
3414                 (void) printf("%s %s stream of %s into %s\n",
3415                     flags->dryrun ? "would receive" : "receiving",
3416                     drrb->drr_fromguid ? "incremental" : "full",
3417                     drrb->drr_toname, zc.zc_value);
3418                 (void) fflush(stdout);
3419         }
3420
3421         if (flags->dryrun) {
3422                 zcmd_free_nvlists(&zc);
3423                 return (recv_skip(hdl, infd, flags->byteswap));
3424         }
3425
3426         zc.zc_nvlist_dst = (uint64_t)(uintptr_t)prop_errbuf;
3427         zc.zc_nvlist_dst_size = sizeof (prop_errbuf);
3428         zc.zc_cleanup_fd = cleanup_fd;
3429         zc.zc_action_handle = *action_handlep;
3430
3431         err = ioctl_err = zfs_ioctl(hdl, ZFS_IOC_RECV, &zc);
3432         ioctl_errno = errno;
3433         prop_errflags = (zprop_errflags_t)zc.zc_obj;
3434
3435         if (err == 0) {
3436                 nvlist_t *prop_errors;
3437                 VERIFY(0 == nvlist_unpack((void *)(uintptr_t)zc.zc_nvlist_dst,
3438                     zc.zc_nvlist_dst_size, &prop_errors, 0));
3439
3440                 nvpair_t *prop_err = NULL;
3441
3442                 while ((prop_err = nvlist_next_nvpair(prop_errors,
3443                     prop_err)) != NULL) {
3444                         char tbuf[1024];
3445                         zfs_prop_t prop;
3446                         int intval;
3447
3448                         prop = zfs_name_to_prop(nvpair_name(prop_err));
3449                         (void) nvpair_value_int32(prop_err, &intval);
3450                         if (strcmp(nvpair_name(prop_err),
3451                             ZPROP_N_MORE_ERRORS) == 0) {
3452                                 trunc_prop_errs(intval);
3453                                 break;
3454                         } else if (snapname == NULL || finalsnap == NULL ||
3455                             strcmp(finalsnap, snapname) == 0 ||
3456                             strcmp(nvpair_name(prop_err),
3457                             zfs_prop_to_name(ZFS_PROP_REFQUOTA)) != 0) {
3458                                 /*
3459                                  * Skip the special case of, for example,
3460                                  * "refquota", errors on intermediate
3461                                  * snapshots leading up to a final one.
3462                                  * That's why we have all of the checks above.
3463                                  *
3464                                  * See zfs_ioctl.c's extract_delay_props() for
3465                                  * a list of props which can fail on
3466                                  * intermediate snapshots, but shouldn't
3467                                  * affect the overall receive.
3468                                  */
3469                                 (void) snprintf(tbuf, sizeof (tbuf),
3470                                     dgettext(TEXT_DOMAIN,
3471                                     "cannot receive %s property on %s"),
3472                                     nvpair_name(prop_err), zc.zc_name);
3473                                 zfs_setprop_error(hdl, prop, intval, tbuf);
3474                         }
3475                 }
3476                 nvlist_free(prop_errors);
3477         }
3478
3479         zc.zc_nvlist_dst = 0;
3480         zc.zc_nvlist_dst_size = 0;
3481         zcmd_free_nvlists(&zc);
3482
3483         if (err == 0 && snapprops_nvlist) {
3484                 zfs_cmd_t zc2 = { 0 };
3485
3486                 (void) strcpy(zc2.zc_name, zc.zc_value);
3487                 zc2.zc_cookie = B_TRUE; /* received */
3488                 if (zcmd_write_src_nvlist(hdl, &zc2, snapprops_nvlist) == 0) {
3489                         (void) zfs_ioctl(hdl, ZFS_IOC_SET_PROP, &zc2);
3490                         zcmd_free_nvlists(&zc2);
3491                 }
3492         }
3493
3494         if (err && (ioctl_errno == ENOENT || ioctl_errno == EEXIST)) {
3495                 /*
3496                  * It may be that this snapshot already exists,
3497                  * in which case we want to consume & ignore it
3498                  * rather than failing.
3499                  */
3500                 avl_tree_t *local_avl;
3501                 nvlist_t *local_nv, *fs;
3502                 cp = strchr(zc.zc_value, '@');
3503
3504                 /*
3505                  * XXX Do this faster by just iterating over snaps in
3506                  * this fs.  Also if zc_value does not exist, we will
3507                  * get a strange "does not exist" error message.
3508                  */
3509                 *cp = '\0';
3510                 if (gather_nvlist(hdl, zc.zc_value, NULL, NULL, B_FALSE,
3511                     B_FALSE, &local_nv, &local_avl) == 0) {
3512                         *cp = '@';
3513                         fs = fsavl_find(local_avl, drrb->drr_toguid, NULL);
3514                         fsavl_destroy(local_avl);
3515                         nvlist_free(local_nv);
3516
3517                         if (fs != NULL) {
3518                                 if (flags->verbose) {
3519                                         (void) printf("snap %s already exists; "
3520                                             "ignoring\n", zc.zc_value);
3521                                 }
3522                                 err = ioctl_err = recv_skip(hdl, infd,
3523                                     flags->byteswap);
3524                         }
3525                 }
3526                 *cp = '@';
3527         }
3528
3529         if (ioctl_err != 0) {
3530                 switch (ioctl_errno) {
3531                 case ENODEV:
3532                         cp = strchr(zc.zc_value, '@');
3533                         *cp = '\0';
3534                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3535                             "most recent snapshot of %s does not\n"
3536                             "match incremental source"), zc.zc_value);
3537                         (void) zfs_error(hdl, EZFS_BADRESTORE, errbuf);
3538                         *cp = '@';
3539                         break;
3540                 case ETXTBSY:
3541                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3542                             "destination %s has been modified\n"
3543                             "since most recent snapshot"), zc.zc_name);
3544                         (void) zfs_error(hdl, EZFS_BADRESTORE, errbuf);
3545                         break;
3546                 case EEXIST:
3547                         cp = strchr(zc.zc_value, '@');
3548                         if (newfs) {
3549                                 /* it's the containing fs that exists */
3550                                 *cp = '\0';
3551                         }
3552                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3553                             "destination already exists"));
3554                         (void) zfs_error_fmt(hdl, EZFS_EXISTS,
3555                             dgettext(TEXT_DOMAIN, "cannot restore to %s"),
3556                             zc.zc_value);
3557                         *cp = '@';
3558                         break;
3559                 case EINVAL:
3560                         (void) zfs_error(hdl, EZFS_BADSTREAM, errbuf);
3561                         break;
3562                 case ECKSUM:
3563                         recv_ecksum_set_aux(hdl, zc.zc_value, flags->resumable);
3564                         (void) zfs_error(hdl, EZFS_BADSTREAM, errbuf);
3565                         break;
3566                 case ENOTSUP:
3567                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3568                             "pool must be upgraded to receive this stream."));
3569                         (void) zfs_error(hdl, EZFS_BADVERSION, errbuf);
3570                         break;
3571                 case EDQUOT:
3572                         zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3573                             "destination %s space quota exceeded"), zc.zc_name);
3574                         (void) zfs_error(hdl, EZFS_NOSPC, errbuf);
3575                         break;
3576                 default:
3577                         (void) zfs_standard_error(hdl, ioctl_errno, errbuf);
3578                 }
3579         }
3580
3581         /*
3582          * Mount the target filesystem (if created).  Also mount any
3583          * children of the target filesystem if we did a replication
3584          * receive (indicated by stream_avl being non-NULL).
3585          */
3586         cp = strchr(zc.zc_value, '@');
3587         if (cp && (ioctl_err == 0 || !newfs)) {
3588                 zfs_handle_t *h;
3589
3590                 *cp = '\0';
3591                 h = zfs_open(hdl, zc.zc_value,
3592                     ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME);
3593                 if (h != NULL) {
3594                         if (h->zfs_type == ZFS_TYPE_VOLUME) {
3595                                 *cp = '@';
3596                         } else if (newfs || stream_avl) {
3597                                 /*
3598                                  * Track the first/top of hierarchy fs,
3599                                  * for mounting and sharing later.
3600                                  */
3601                                 if (top_zfs && *top_zfs == NULL)
3602                                         *top_zfs = zfs_strdup(hdl, zc.zc_value);
3603                         }
3604                         zfs_close(h);
3605                 }
3606                 *cp = '@';
3607         }
3608
3609         if (clp) {
3610                 if (!flags->nomount)
3611                         err |= changelist_postfix(clp);
3612                 changelist_free(clp);
3613         }
3614
3615         if (prop_errflags & ZPROP_ERR_NOCLEAR) {
3616                 (void) fprintf(stderr, dgettext(TEXT_DOMAIN, "Warning: "
3617                     "failed to clear unreceived properties on %s"),
3618                     zc.zc_name);
3619                 (void) fprintf(stderr, "\n");
3620         }
3621         if (prop_errflags & ZPROP_ERR_NORESTORE) {
3622                 (void) fprintf(stderr, dgettext(TEXT_DOMAIN, "Warning: "
3623                     "failed to restore original properties on %s"),
3624                     zc.zc_name);
3625                 (void) fprintf(stderr, "\n");
3626         }
3627
3628         if (err || ioctl_err)
3629                 return (-1);
3630
3631         *action_handlep = zc.zc_action_handle;
3632
3633         if (flags->verbose) {
3634                 char buf1[64];
3635                 char buf2[64];
3636                 uint64_t bytes = zc.zc_cookie;
3637                 time_t delta = time(NULL) - begin_time;
3638                 if (delta == 0)
3639                         delta = 1;
3640                 zfs_nicenum(bytes, buf1, sizeof (buf1));
3641                 zfs_nicenum(bytes/delta, buf2, sizeof (buf1));
3642
3643                 (void) printf("received %sB stream in %lu seconds (%sB/sec)\n",
3644                     buf1, delta, buf2);
3645         }
3646
3647         return (0);
3648 }
3649
3650 static int
3651 zfs_receive_impl(libzfs_handle_t *hdl, const char *tosnap,
3652     const char *originsnap, recvflags_t *flags, int infd, const char *sendfs,
3653     nvlist_t *stream_nv, avl_tree_t *stream_avl, char **top_zfs, int cleanup_fd,
3654     uint64_t *action_handlep, const char *finalsnap)
3655 {
3656         int err;
3657         dmu_replay_record_t drr, drr_noswap;
3658         struct drr_begin *drrb = &drr.drr_u.drr_begin;
3659         char errbuf[1024];
3660         zio_cksum_t zcksum = { 0 };
3661         uint64_t featureflags;
3662         int hdrtype;
3663
3664         (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
3665             "cannot receive"));
3666
3667         if (flags->isprefix &&
3668             !zfs_dataset_exists(hdl, tosnap, ZFS_TYPE_DATASET)) {
3669                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "specified fs "
3670                     "(%s) does not exist"), tosnap);
3671                 return (zfs_error(hdl, EZFS_NOENT, errbuf));
3672         }
3673         if (originsnap &&
3674             !zfs_dataset_exists(hdl, originsnap, ZFS_TYPE_DATASET)) {
3675                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "specified origin fs "
3676                     "(%s) does not exist"), originsnap);
3677                 return (zfs_error(hdl, EZFS_NOENT, errbuf));
3678         }
3679
3680         /* read in the BEGIN record */
3681         if (0 != (err = recv_read(hdl, infd, &drr, sizeof (drr), B_FALSE,
3682             &zcksum)))
3683                 return (err);
3684
3685         if (drr.drr_type == DRR_END || drr.drr_type == BSWAP_32(DRR_END)) {
3686                 /* It's the double end record at the end of a package */
3687                 return (ENODATA);
3688         }
3689
3690         /* the kernel needs the non-byteswapped begin record */
3691         drr_noswap = drr;
3692
3693         flags->byteswap = B_FALSE;
3694         if (drrb->drr_magic == BSWAP_64(DMU_BACKUP_MAGIC)) {
3695                 /*
3696                  * We computed the checksum in the wrong byteorder in
3697                  * recv_read() above; do it again correctly.
3698                  */
3699                 bzero(&zcksum, sizeof (zio_cksum_t));
3700                 (void) fletcher_4_incremental_byteswap(&drr,
3701                     sizeof (drr), &zcksum);
3702                 flags->byteswap = B_TRUE;
3703
3704                 drr.drr_type = BSWAP_32(drr.drr_type);
3705                 drr.drr_payloadlen = BSWAP_32(drr.drr_payloadlen);
3706                 drrb->drr_magic = BSWAP_64(drrb->drr_magic);
3707                 drrb->drr_versioninfo = BSWAP_64(drrb->drr_versioninfo);
3708                 drrb->drr_creation_time = BSWAP_64(drrb->drr_creation_time);
3709                 drrb->drr_type = BSWAP_32(drrb->drr_type);
3710                 drrb->drr_flags = BSWAP_32(drrb->drr_flags);
3711                 drrb->drr_toguid = BSWAP_64(drrb->drr_toguid);
3712                 drrb->drr_fromguid = BSWAP_64(drrb->drr_fromguid);
3713         }
3714
3715         if (drrb->drr_magic != DMU_BACKUP_MAGIC || drr.drr_type != DRR_BEGIN) {
3716                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "invalid "
3717                     "stream (bad magic number)"));
3718                 return (zfs_error(hdl, EZFS_BADSTREAM, errbuf));
3719         }
3720
3721         featureflags = DMU_GET_FEATUREFLAGS(drrb->drr_versioninfo);
3722         hdrtype = DMU_GET_STREAM_HDRTYPE(drrb->drr_versioninfo);
3723
3724         if (!DMU_STREAM_SUPPORTED(featureflags) ||
3725             (hdrtype != DMU_SUBSTREAM && hdrtype != DMU_COMPOUNDSTREAM)) {
3726                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3727                     "stream has unsupported feature, feature flags = %lx"),
3728                     featureflags);
3729                 return (zfs_error(hdl, EZFS_BADSTREAM, errbuf));
3730         }
3731
3732         if (strchr(drrb->drr_toname, '@') == NULL) {
3733                 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "invalid "
3734                     "stream (bad snapshot name)"));
3735                 return (zfs_error(hdl, EZFS_BADSTREAM, errbuf));
3736         }
3737
3738         if (DMU_GET_STREAM_HDRTYPE(drrb->drr_versioninfo) == DMU_SUBSTREAM) {
3739                 char nonpackage_sendfs[ZFS_MAX_DATASET_NAME_LEN];
3740                 if (sendfs == NULL) {
3741                         /*
3742                          * We were not called from zfs_receive_package(). Get
3743                          * the fs specified by 'zfs send'.
3744                          */
3745                         char *cp;
3746                         (void) strlcpy(nonpackage_sendfs,
3747                             drr.drr_u.drr_begin.drr_toname,
3748                             sizeof (nonpackage_sendfs));
3749                         if ((cp = strchr(nonpackage_sendfs, '@')) != NULL)
3750                                 *cp = '\0';
3751                         sendfs = nonpackage_sendfs;
3752                         VERIFY(finalsnap == NULL);
3753                 }
3754                 return (zfs_receive_one(hdl, infd, tosnap, originsnap, flags,
3755                     &drr, &drr_noswap, sendfs, stream_nv, stream_avl, top_zfs,
3756                     cleanup_fd, action_handlep, finalsnap));
3757         } else {
3758                 assert(DMU_GET_STREAM_HDRTYPE(drrb->drr_versioninfo) ==
3759                     DMU_COMPOUNDSTREAM);
3760                 return (zfs_receive_package(hdl, infd, tosnap, flags, &drr,
3761                     &zcksum, top_zfs, cleanup_fd, action_handlep));
3762         }
3763 }
3764
3765 /*
3766  * Restores a backup of tosnap from the file descriptor specified by infd.
3767  * Return 0 on total success, -2 if some things couldn't be
3768  * destroyed/renamed/promoted, -1 if some things couldn't be received.
3769  * (-1 will override -2, if -1 and the resumable flag was specified the
3770  * transfer can be resumed if the sending side supports it).
3771  */
3772 int
3773 zfs_receive(libzfs_handle_t *hdl, const char *tosnap, nvlist_t *props,
3774     recvflags_t *flags, int infd, avl_tree_t *stream_avl)
3775 {
3776         char *top_zfs = NULL;
3777         int err;
3778         int cleanup_fd;
3779         uint64_t action_handle = 0;
3780         char *originsnap = NULL;
3781         if (props) {
3782                 err = nvlist_lookup_string(props, "origin", &originsnap);
3783                 if (err && err != ENOENT)
3784                         return (err);
3785         }
3786
3787         cleanup_fd = open(ZFS_DEV, O_RDWR|O_EXCL);
3788         VERIFY(cleanup_fd >= 0);
3789
3790         err = zfs_receive_impl(hdl, tosnap, originsnap, flags, infd, NULL, NULL,
3791             stream_avl, &top_zfs, cleanup_fd, &action_handle, NULL);
3792
3793         VERIFY(0 == close(cleanup_fd));
3794
3795         if (err == 0 && !flags->nomount && top_zfs) {
3796                 zfs_handle_t *zhp;
3797                 prop_changelist_t *clp;
3798
3799                 zhp = zfs_open(hdl, top_zfs, ZFS_TYPE_FILESYSTEM);
3800                 if (zhp != NULL) {
3801                         clp = changelist_gather(zhp, ZFS_PROP_MOUNTPOINT,
3802                             CL_GATHER_MOUNT_ALWAYS, 0);
3803                         zfs_close(zhp);
3804                         if (clp != NULL) {
3805                                 /* mount and share received datasets */
3806                                 err = changelist_postfix(clp);
3807                                 changelist_free(clp);
3808                         }
3809                 }
3810                 if (zhp == NULL || clp == NULL || err)
3811                         err = -1;
3812         }
3813         if (top_zfs)
3814                 free(top_zfs);
3815
3816         return (err);
3817 }