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