Print this page
4986 receiving replication stream fails if any snapshot exceeds refquota
Reviewed by: John Kennedy <john.kennedy@delphix.com>
Reviewed by: Matthew Ahrens <mahrens@delphix.com>

@@ -22,10 +22,11 @@
 /*
  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
  * Copyright (c) 2011, 2015 by Delphix. All rights reserved.
  * Copyright (c) 2012, Joyent, Inc. All rights reserved.
  * Copyright (c) 2013 Steven Hartland. All rights reserved.
+ * Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
  */
 
 #include <assert.h>
 #include <ctype.h>
 #include <errno.h>

@@ -56,11 +57,11 @@
 /* in libzfs_dataset.c */
 extern void zfs_setprop_error(libzfs_handle_t *, zfs_prop_t, int, char *);
 
 static int zfs_receive_impl(libzfs_handle_t *, const char *, const char *,
     recvflags_t *, int, const char *, nvlist_t *, avl_tree_t *, char **, int,
-    uint64_t *);
+    uint64_t *, const char *);
 static int guid_to_name(libzfs_handle_t *, const char *,
     uint64_t, boolean_t, char *);
 
 static const zio_cksum_t zero_cksum = { 0 };
 

@@ -2559,10 +2560,11 @@
     char **top_zfs, int cleanup_fd, uint64_t *action_handlep)
 {
         nvlist_t *stream_nv = NULL;
         avl_tree_t *stream_avl = NULL;
         char *fromsnap = NULL;
+        char *sendsnap = NULL;
         char *cp;
         char tofs[ZFS_MAXNAMELEN];
         char sendfs[ZFS_MAXNAMELEN];
         char errbuf[1024];
         dmu_replay_record_t drre;

@@ -2707,12 +2709,20 @@
          * specified by 'zfs send') and pass it to each invocation of
          * zfs_receive_one().
          */
         (void) strlcpy(sendfs, drr->drr_u.drr_begin.drr_toname,
             ZFS_MAXNAMELEN);
-        if ((cp = strchr(sendfs, '@')) != NULL)
+        if ((cp = strchr(sendfs, '@')) != NULL) {
                 *cp = '\0';
+                /*
+                 * Find the "sendsnap", the final snapshot in a replication
+                 * stream.  zfs_receive_one() handles certain errors
+                 * differently, depending on if the contained stream is the
+                 * last one or not.
+                 */
+                sendsnap = (cp + 1);
+        }
 
         /* Finally, receive each contained stream */
         do {
                 /*
                  * we should figure out if it has a recoverable

@@ -2721,11 +2731,11 @@
                  * zfs_receive_one() will take care of it (ie,
                  * recv_skip() and return 0).
                  */
                 error = zfs_receive_impl(hdl, destname, NULL, flags, fd,
                     sendfs, stream_nv, stream_avl, top_zfs, cleanup_fd,
-                    action_handlep);
+                    action_handlep, sendsnap);
                 if (error == ENODATA) {
                         error = 0;
                         break;
                 }
                 anyerr |= error;

@@ -2887,11 +2897,11 @@
 static int
 zfs_receive_one(libzfs_handle_t *hdl, int infd, const char *tosnap,
     const char *originsnap, recvflags_t *flags, dmu_replay_record_t *drr,
     dmu_replay_record_t *drr_noswap, const char *sendfs, nvlist_t *stream_nv,
     avl_tree_t *stream_avl, char **top_zfs, int cleanup_fd,
-    uint64_t *action_handlep)
+    uint64_t *action_handlep, const char *finalsnap)
 {
         zfs_cmd_t zc = { 0 };
         time_t begin_time;
         int ioctl_err, ioctl_errno, err;
         char *cp;

@@ -2904,10 +2914,11 @@
         uint64_t parent_snapguid = 0;
         prop_changelist_t *clp = NULL;
         nvlist_t *snapprops_nvlist = NULL;
         zprop_errflags_t prop_errflags;
         boolean_t recursive;
+        char *snapname = NULL;
 
         begin_time = time(NULL);
 
         (void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
             "cannot receive"));

@@ -2914,11 +2925,10 @@
 
         recursive = (nvlist_lookup_boolean(stream_nv, "not_recursive") ==
             ENOENT);
 
         if (stream_avl != NULL) {
-                char *snapname;
                 nvlist_t *fs = fsavl_find(stream_avl, drrb->drr_toguid,
                     &snapname);
                 nvlist_t *props;
                 int ret;
 

@@ -3261,11 +3271,25 @@
                         (void) nvpair_value_int32(prop_err, &intval);
                         if (strcmp(nvpair_name(prop_err),
                             ZPROP_N_MORE_ERRORS) == 0) {
                                 trunc_prop_errs(intval);
                                 break;
-                        } else {
+                        } else if (snapname == NULL || finalsnap == NULL ||
+                            strcmp(finalsnap, snapname) == 0 ||
+                            strcmp(nvpair_name(prop_err),
+                            zfs_prop_to_name(ZFS_PROP_REFQUOTA)) != 0) {
+                                /*
+                                 * Skip the special case of, for example,
+                                 * "refquota", errors on intermediate
+                                 * snapshots leading up to a final one.
+                                 * That's why we have all of the checks above.
+                                 *
+                                 * See zfs_ioctl.c's extract_delay_props() for
+                                 * a list of props which can fail on
+                                 * intermediate snapshots, but shouldn't
+                                 * affect the overall receive.
+                                 */
                                 (void) snprintf(tbuf, sizeof (tbuf),
                                     dgettext(TEXT_DOMAIN,
                                     "cannot receive %s property on %s"),
                                     nvpair_name(prop_err), zc.zc_name);
                                 zfs_setprop_error(hdl, prop, intval, tbuf);

@@ -3446,11 +3470,11 @@
 
 static int
 zfs_receive_impl(libzfs_handle_t *hdl, const char *tosnap,
     const char *originsnap, recvflags_t *flags, int infd, const char *sendfs,
     nvlist_t *stream_nv, avl_tree_t *stream_avl, char **top_zfs, int cleanup_fd,
-    uint64_t *action_handlep)
+    uint64_t *action_handlep, const char *finalsnap)
 {
         int err;
         dmu_replay_record_t drr, drr_noswap;
         struct drr_begin *drrb = &drr.drr_u.drr_begin;
         char errbuf[1024];

@@ -3542,14 +3566,15 @@
                         (void) strlcpy(nonpackage_sendfs,
                             drr.drr_u.drr_begin.drr_toname, ZFS_MAXNAMELEN);
                         if ((cp = strchr(nonpackage_sendfs, '@')) != NULL)
                                 *cp = '\0';
                         sendfs = nonpackage_sendfs;
+                        VERIFY(finalsnap == NULL);
                 }
                 return (zfs_receive_one(hdl, infd, tosnap, originsnap, flags,
                     &drr, &drr_noswap, sendfs, stream_nv, stream_avl, top_zfs,
-                    cleanup_fd, action_handlep));
+                    cleanup_fd, action_handlep, finalsnap));
         } else {
                 assert(DMU_GET_STREAM_HDRTYPE(drrb->drr_versioninfo) ==
                     DMU_COMPOUNDSTREAM);
                 return (zfs_receive_package(hdl, infd, tosnap, flags, &drr,
                     &zcksum, top_zfs, cleanup_fd, action_handlep));

@@ -3580,11 +3605,11 @@
 
         cleanup_fd = open(ZFS_DEV, O_RDWR|O_EXCL);
         VERIFY(cleanup_fd >= 0);
 
         err = zfs_receive_impl(hdl, tosnap, originsnap, flags, infd, NULL, NULL,
-            stream_avl, &top_zfs, cleanup_fd, &action_handle);
+            stream_avl, &top_zfs, cleanup_fd, &action_handle, NULL);
 
         VERIFY(0 == close(cleanup_fd));
 
         if (err == 0 && !flags->nomount && top_zfs) {
                 zfs_handle_t *zhp;