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.
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.
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]
23 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
25 * Copyright (c) 2015 by Delphix. All rights reserved.
26 * Copyright 2016 Joyent, Inc.
27 * Copyright 2016 Igor Kozhukhov <ikozhukhov@gmail.com>
37 #include <sys/types.h>
47 #include <sys/zfs_ioctl.h>
49 #include "libzfs_impl.h"
51 #define ZDIFF_SNAPDIR "/.zfs/snapshot/"
52 #define ZDIFF_SHARESDIR "/.zfs/shares/"
53 #define ZDIFF_PREFIX "zfs-diff-%d"
55 #define ZDIFF_ADDED '+'
56 #define ZDIFF_MODIFIED 'M'
57 #define ZDIFF_REMOVED '-'
58 #define ZDIFF_RENAMED 'R'
60 typedef struct differ_info
{
73 boolean_t timestamped
;
82 * Given a {dsname, object id}, get the object path
85 get_stats_for_obj(differ_info_t
*di
, const char *dsname
, uint64_t obj
,
86 char *pn
, int maxlen
, zfs_stat_t
*sb
)
91 (void) strlcpy(zc
.zc_name
, dsname
, sizeof (zc
.zc_name
));
95 error
= ioctl(di
->zhp
->zfs_hdl
->libzfs_fd
, ZFS_IOC_OBJ_TO_STATS
, &zc
);
98 /* we can get stats even if we failed to get a path */
99 (void) memcpy(sb
, &zc
.zc_stat
, sizeof (zfs_stat_t
));
101 ASSERT(di
->zerr
== 0);
102 (void) strlcpy(pn
, zc
.zc_value
, maxlen
);
106 if (di
->zerr
== EPERM
) {
107 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
108 dgettext(TEXT_DOMAIN
,
109 "The sys_config privilege or diff delegated permission "
110 "is needed\nto discover path names"));
113 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
114 dgettext(TEXT_DOMAIN
,
115 "Unable to determine path or stats for "
116 "object %lld in %s"), obj
, dsname
);
124 * Prints a file name out a character at a time. If the character is
125 * not in the range of what we consider "printable" ASCII, display it
126 * as an escaped 3-digit octal value. ASCII values less than a space
127 * are all control characters and we declare the upper end as the
128 * DELete character. This also is the last 7-bit ASCII character.
129 * We choose to treat all 8-bit ASCII as not printable for this
133 stream_bytes(FILE *fp
, const char *string
)
137 while ((c
= *string
++) != '\0') {
138 if (c
> ' ' && c
!= '\\' && c
< '\177') {
139 (void) fprintf(fp
, "%c", c
);
141 (void) fprintf(fp
, "\\%03o", (uint8_t)c
);
147 print_what(FILE *fp
, mode_t what
)
151 switch (what
& S_IFMT
) {
183 (void) fprintf(fp
, "%c", symbol
);
187 print_cmn(FILE *fp
, differ_info_t
*di
, const char *file
)
189 stream_bytes(fp
, di
->dsmnt
);
190 stream_bytes(fp
, file
);
194 print_rename(FILE *fp
, differ_info_t
*di
, const char *old
, const char *new,
198 (void) fprintf(fp
, "%10lld.%09lld\t",
199 (longlong_t
)isb
->zs_ctime
[0],
200 (longlong_t
)isb
->zs_ctime
[1]);
201 (void) fprintf(fp
, "%c\t", ZDIFF_RENAMED
);
203 print_what(fp
, isb
->zs_mode
);
204 (void) fprintf(fp
, "\t");
206 print_cmn(fp
, di
, old
);
208 (void) fprintf(fp
, "\t");
210 (void) fprintf(fp
, " -> ");
211 print_cmn(fp
, di
, new);
212 (void) fprintf(fp
, "\n");
216 print_link_change(FILE *fp
, differ_info_t
*di
, int delta
, const char *file
,
220 (void) fprintf(fp
, "%10lld.%09lld\t",
221 (longlong_t
)isb
->zs_ctime
[0],
222 (longlong_t
)isb
->zs_ctime
[1]);
223 (void) fprintf(fp
, "%c\t", ZDIFF_MODIFIED
);
225 print_what(fp
, isb
->zs_mode
);
226 (void) fprintf(fp
, "\t");
228 print_cmn(fp
, di
, file
);
229 (void) fprintf(fp
, "\t(%+d)", delta
);
230 (void) fprintf(fp
, "\n");
234 print_file(FILE *fp
, differ_info_t
*di
, char type
, const char *file
,
238 (void) fprintf(fp
, "%10lld.%09lld\t",
239 (longlong_t
)isb
->zs_ctime
[0],
240 (longlong_t
)isb
->zs_ctime
[1]);
241 (void) fprintf(fp
, "%c\t", type
);
243 print_what(fp
, isb
->zs_mode
);
244 (void) fprintf(fp
, "\t");
246 print_cmn(fp
, di
, file
);
247 (void) fprintf(fp
, "\n");
251 write_inuse_diffs_one(FILE *fp
, differ_info_t
*di
, uint64_t dobj
)
253 struct zfs_stat fsb
, tsb
;
255 char fobjname
[MAXPATHLEN
], tobjname
[MAXPATHLEN
];
256 int fobjerr
, tobjerr
;
259 if (dobj
== di
->shares
)
263 * Check the from and to snapshots for info on the object. If
264 * we get ENOENT, then the object just didn't exist in that
265 * snapshot. If we get ENOTSUP, then we tried to get
266 * info on a non-ZPL object, which we don't care about anyway.
268 fobjerr
= get_stats_for_obj(di
, di
->fromsnap
, dobj
, fobjname
,
270 if (fobjerr
&& di
->zerr
!= ENOENT
&& di
->zerr
!= ENOTSUP
)
273 tobjerr
= get_stats_for_obj(di
, di
->tosnap
, dobj
, tobjname
,
275 if (tobjerr
&& di
->zerr
!= ENOENT
&& di
->zerr
!= ENOTSUP
)
279 * Unallocated object sharing the same meta dnode block
281 if (fobjerr
&& tobjerr
) {
282 ASSERT(di
->zerr
== ENOENT
|| di
->zerr
== ENOTSUP
);
287 di
->zerr
= 0; /* negate get_stats_for_obj() from side that failed */
288 fmode
= fsb
.zs_mode
& S_IFMT
;
289 tmode
= tsb
.zs_mode
& S_IFMT
;
290 if (fmode
== S_IFDIR
|| tmode
== S_IFDIR
|| fsb
.zs_links
== 0 ||
294 change
= tsb
.zs_links
- fsb
.zs_links
;
298 print_link_change(fp
, di
, change
, tobjname
, &tsb
);
301 print_file(fp
, di
, ZDIFF_ADDED
, tobjname
, &tsb
);
303 } else if (tobjerr
) {
305 print_link_change(fp
, di
, change
, fobjname
, &fsb
);
308 print_file(fp
, di
, ZDIFF_REMOVED
, fobjname
, &fsb
);
312 if (fmode
!= tmode
&& fsb
.zs_gen
== tsb
.zs_gen
)
313 tsb
.zs_gen
++; /* Force a generational difference */
315 /* Simple modification or no change */
316 if (fsb
.zs_gen
== tsb
.zs_gen
) {
317 /* No apparent changes. Could we assert !this? */
318 if (fsb
.zs_ctime
[0] == tsb
.zs_ctime
[0] &&
319 fsb
.zs_ctime
[1] == tsb
.zs_ctime
[1])
322 print_link_change(fp
, di
, change
,
323 change
> 0 ? fobjname
: tobjname
, &tsb
);
324 } else if (strcmp(fobjname
, tobjname
) == 0) {
325 print_file(fp
, di
, ZDIFF_MODIFIED
, fobjname
, &tsb
);
327 print_rename(fp
, di
, fobjname
, tobjname
, &tsb
);
331 /* file re-created or object re-used */
332 print_file(fp
, di
, ZDIFF_REMOVED
, fobjname
, &fsb
);
333 print_file(fp
, di
, ZDIFF_ADDED
, tobjname
, &tsb
);
339 write_inuse_diffs(FILE *fp
, differ_info_t
*di
, dmu_diff_record_t
*dr
)
344 for (o
= dr
->ddr_first
; o
<= dr
->ddr_last
; o
++) {
345 if ((err
= write_inuse_diffs_one(fp
, di
, o
)) != 0)
352 describe_free(FILE *fp
, differ_info_t
*di
, uint64_t object
, char *namebuf
,
357 if (get_stats_for_obj(di
, di
->fromsnap
, object
, namebuf
,
359 /* Let it slide, if in the delete queue on from side */
360 if (di
->zerr
== ENOENT
&& sb
.zs_links
== 0) {
367 print_file(fp
, di
, ZDIFF_REMOVED
, namebuf
, &sb
);
372 write_free_diffs(FILE *fp
, differ_info_t
*di
, dmu_diff_record_t
*dr
)
374 zfs_cmd_t zc
= { 0 };
375 libzfs_handle_t
*lhdl
= di
->zhp
->zfs_hdl
;
376 char fobjname
[MAXPATHLEN
];
378 (void) strlcpy(zc
.zc_name
, di
->fromsnap
, sizeof (zc
.zc_name
));
379 zc
.zc_obj
= dr
->ddr_first
- 1;
381 ASSERT(di
->zerr
== 0);
383 while (zc
.zc_obj
< dr
->ddr_last
) {
386 err
= ioctl(lhdl
->libzfs_fd
, ZFS_IOC_NEXT_OBJ
, &zc
);
388 if (zc
.zc_obj
== di
->shares
) {
392 if (zc
.zc_obj
> dr
->ddr_last
) {
395 err
= describe_free(fp
, di
, zc
.zc_obj
, fobjname
,
399 } else if (errno
== ESRCH
) {
402 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
403 dgettext(TEXT_DOMAIN
,
404 "next allocated object (> %lld) find failure"),
418 differ_info_t
*di
= arg
;
419 dmu_diff_record_t dr
;
423 if ((ofp
= fdopen(di
->outputfd
, "w")) == NULL
) {
425 (void) strerror_r(errno
, di
->errbuf
, sizeof (di
->errbuf
));
426 (void) close(di
->datafd
);
431 char *cp
= (char *)&dr
;
432 int len
= sizeof (dr
);
436 rv
= read(di
->datafd
, cp
, len
);
439 } while (len
> 0 && rv
> 0);
441 if (rv
< 0 || (rv
== 0 && len
!= sizeof (dr
))) {
444 } else if (rv
== 0) {
445 /* end of file at a natural breaking point */
449 switch (dr
.ddr_type
) {
451 err
= write_free_diffs(ofp
, di
, &dr
);
454 err
= write_inuse_diffs(ofp
, di
, &dr
);
466 (void) close(di
->datafd
);
470 ASSERT(di
->zerr
== EINVAL
);
471 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
472 dgettext(TEXT_DOMAIN
,
473 "Internal error: bad data from diff IOCTL"));
480 find_shares_object(differ_info_t
*di
)
482 char fullpath
[MAXPATHLEN
];
483 struct stat64 sb
= { 0 };
485 (void) strlcpy(fullpath
, di
->dsmnt
, MAXPATHLEN
);
486 (void) strlcat(fullpath
, ZDIFF_SHARESDIR
, MAXPATHLEN
);
488 if (stat64(fullpath
, &sb
) != 0) {
489 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
490 dgettext(TEXT_DOMAIN
, "Cannot stat %s"), fullpath
);
491 return (zfs_error(di
->zhp
->zfs_hdl
, EZFS_DIFF
, di
->errbuf
));
494 di
->shares
= (uint64_t)sb
.st_ino
;
499 make_temp_snapshot(differ_info_t
*di
)
501 libzfs_handle_t
*hdl
= di
->zhp
->zfs_hdl
;
502 zfs_cmd_t zc
= { 0 };
504 (void) snprintf(zc
.zc_value
, sizeof (zc
.zc_value
),
505 ZDIFF_PREFIX
, getpid());
506 (void) strlcpy(zc
.zc_name
, di
->ds
, sizeof (zc
.zc_name
));
507 zc
.zc_cleanup_fd
= di
->cleanupfd
;
509 if (ioctl(hdl
->libzfs_fd
, ZFS_IOC_TMP_SNAPSHOT
, &zc
) != 0) {
512 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
513 dgettext(TEXT_DOMAIN
, "The diff delegated "
514 "permission is needed in order\nto create a "
515 "just-in-time snapshot for diffing\n"));
516 return (zfs_error(hdl
, EZFS_DIFF
, di
->errbuf
));
518 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
519 dgettext(TEXT_DOMAIN
, "Cannot create just-in-time "
520 "snapshot of '%s'"), zc
.zc_name
);
521 return (zfs_standard_error(hdl
, err
, di
->errbuf
));
525 di
->tmpsnap
= zfs_strdup(hdl
, zc
.zc_value
);
526 di
->tosnap
= zfs_asprintf(hdl
, "%s@%s", di
->ds
, di
->tmpsnap
);
531 teardown_differ_info(differ_info_t
*di
)
540 (void) close(di
->cleanupfd
);
544 get_snapshot_names(differ_info_t
*di
, const char *fromsnap
,
547 libzfs_handle_t
*hdl
= di
->zhp
->zfs_hdl
;
556 * dataset@snap1 dataset@snap2
557 * dataset@snap1 @snap2
558 * dataset@snap1 dataset
559 * @snap1 dataset@snap2
561 if (tosnap
== NULL
) {
562 /* only a from snapshot given, must be valid */
563 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
564 dgettext(TEXT_DOMAIN
,
565 "Badly formed snapshot name %s"), fromsnap
);
567 if (!zfs_validate_name(hdl
, fromsnap
, ZFS_TYPE_SNAPSHOT
,
569 return (zfs_error(hdl
, EZFS_INVALIDNAME
,
573 atptrf
= strchr(fromsnap
, '@');
574 ASSERT(atptrf
!= NULL
);
575 fdslen
= atptrf
- fromsnap
;
577 di
->fromsnap
= zfs_strdup(hdl
, fromsnap
);
578 di
->ds
= zfs_strdup(hdl
, fromsnap
);
579 di
->ds
[fdslen
] = '\0';
581 /* the to snap will be a just-in-time snap of the head */
582 return (make_temp_snapshot(di
));
585 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
586 dgettext(TEXT_DOMAIN
,
587 "Unable to determine which snapshots to compare"));
589 atptrf
= strchr(fromsnap
, '@');
590 atptrt
= strchr(tosnap
, '@');
591 fdslen
= atptrf
? atptrf
- fromsnap
: strlen(fromsnap
);
592 tdslen
= atptrt
? atptrt
- tosnap
: strlen(tosnap
);
593 fsnlen
= strlen(fromsnap
) - fdslen
; /* includes @ sign */
594 tsnlen
= strlen(tosnap
) - tdslen
; /* includes @ sign */
596 if (fsnlen
<= 1 || tsnlen
== 1 || (fdslen
== 0 && tdslen
== 0) ||
597 (fsnlen
== 0 && tsnlen
== 0)) {
598 return (zfs_error(hdl
, EZFS_INVALIDNAME
, di
->errbuf
));
599 } else if ((fdslen
> 0 && tdslen
> 0) &&
600 ((tdslen
!= fdslen
|| strncmp(fromsnap
, tosnap
, fdslen
) != 0))) {
602 * not the same dataset name, might be okay if
603 * tosnap is a clone of a fromsnap descendant.
605 char origin
[ZFS_MAX_DATASET_NAME_LEN
];
609 di
->ds
= zfs_alloc(di
->zhp
->zfs_hdl
, tdslen
+ 1);
610 (void) strncpy(di
->ds
, tosnap
, tdslen
);
611 di
->ds
[tdslen
] = '\0';
613 zhp
= zfs_open(hdl
, di
->ds
, ZFS_TYPE_FILESYSTEM
);
614 while (zhp
!= NULL
) {
615 if (zfs_prop_get(zhp
, ZFS_PROP_ORIGIN
, origin
,
616 sizeof (origin
), &src
, NULL
, 0, B_FALSE
) != 0) {
617 (void) zfs_close(zhp
);
621 if (strncmp(origin
, fromsnap
, fsnlen
) == 0)
624 (void) zfs_close(zhp
);
625 zhp
= zfs_open(hdl
, origin
, ZFS_TYPE_FILESYSTEM
);
629 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
630 dgettext(TEXT_DOMAIN
,
631 "Not an earlier snapshot from the same fs"));
632 return (zfs_error(hdl
, EZFS_INVALIDNAME
, di
->errbuf
));
634 (void) zfs_close(zhp
);
637 di
->isclone
= B_TRUE
;
638 di
->fromsnap
= zfs_strdup(hdl
, fromsnap
);
640 di
->tosnap
= zfs_strdup(hdl
, tosnap
);
642 return (make_temp_snapshot(di
));
645 int dslen
= fdslen
? fdslen
: tdslen
;
647 di
->ds
= zfs_alloc(hdl
, dslen
+ 1);
648 (void) strncpy(di
->ds
, fdslen
? fromsnap
: tosnap
, dslen
);
649 di
->ds
[dslen
] = '\0';
651 di
->fromsnap
= zfs_asprintf(hdl
, "%s%s", di
->ds
, atptrf
);
653 di
->tosnap
= zfs_asprintf(hdl
, "%s%s", di
->ds
, atptrt
);
655 return (make_temp_snapshot(di
));
662 get_mountpoint(differ_info_t
*di
, char *dsnm
, char **mntpt
)
666 mounted
= is_mounted(di
->zhp
->zfs_hdl
, dsnm
, mntpt
);
667 if (mounted
== B_FALSE
) {
668 (void) snprintf(di
->errbuf
, sizeof (di
->errbuf
),
669 dgettext(TEXT_DOMAIN
,
670 "Cannot diff an unmounted snapshot"));
671 return (zfs_error(di
->zhp
->zfs_hdl
, EZFS_BADTYPE
, di
->errbuf
));
674 /* Avoid a double slash at the beginning of root-mounted datasets */
675 if (**mntpt
== '/' && *(*mntpt
+ 1) == '\0')
681 get_mountpoints(differ_info_t
*di
)
687 * first get the mountpoint for the parent dataset
689 if (get_mountpoint(di
, di
->ds
, &di
->dsmnt
) != 0)
692 strptr
= strchr(di
->tosnap
, '@');
693 ASSERT3P(strptr
, !=, NULL
);
694 di
->tomnt
= zfs_asprintf(di
->zhp
->zfs_hdl
, "%s%s%s", di
->dsmnt
,
695 ZDIFF_SNAPDIR
, ++strptr
);
697 strptr
= strchr(di
->fromsnap
, '@');
698 ASSERT3P(strptr
, !=, NULL
);
700 frommntpt
= di
->dsmnt
;
706 err
= get_mountpoint(di
, di
->fromsnap
, &mntpt
);
713 di
->frommnt
= zfs_asprintf(di
->zhp
->zfs_hdl
, "%s%s%s", frommntpt
,
714 ZDIFF_SNAPDIR
, ++strptr
);
723 setup_differ_info(zfs_handle_t
*zhp
, const char *fromsnap
,
724 const char *tosnap
, differ_info_t
*di
)
728 di
->cleanupfd
= open(ZFS_DEV
, O_RDWR
|O_EXCL
);
729 VERIFY(di
->cleanupfd
>= 0);
731 if (get_snapshot_names(di
, fromsnap
, tosnap
) != 0)
734 if (get_mountpoints(di
) != 0)
737 if (find_shares_object(di
) != 0)
744 zfs_show_diffs(zfs_handle_t
*zhp
, int outfd
, const char *fromsnap
,
745 const char *tosnap
, int flags
)
747 zfs_cmd_t zc
= { 0 };
749 differ_info_t di
= { 0 };
754 (void) snprintf(errbuf
, sizeof (errbuf
),
755 dgettext(TEXT_DOMAIN
, "zfs diff failed"));
757 if (setup_differ_info(zhp
, fromsnap
, tosnap
, &di
)) {
758 teardown_differ_info(&di
);
763 zfs_error_aux(zhp
->zfs_hdl
, strerror(errno
));
764 teardown_differ_info(&di
);
765 return (zfs_error(zhp
->zfs_hdl
, EZFS_PIPEFAILED
, errbuf
));
768 di
.scripted
= (flags
& ZFS_DIFF_PARSEABLE
);
769 di
.classify
= (flags
& ZFS_DIFF_CLASSIFY
);
770 di
.timestamped
= (flags
& ZFS_DIFF_TIMESTAMP
);
773 di
.datafd
= pipefd
[0];
775 if (pthread_create(&tid
, NULL
, differ
, &di
)) {
776 zfs_error_aux(zhp
->zfs_hdl
, strerror(errno
));
777 (void) close(pipefd
[0]);
778 (void) close(pipefd
[1]);
779 teardown_differ_info(&di
);
780 return (zfs_error(zhp
->zfs_hdl
,
781 EZFS_THREADCREATEFAILED
, errbuf
));
785 (void) strlcpy(zc
.zc_value
, di
.fromsnap
, strlen(di
.fromsnap
) + 1);
786 (void) strlcpy(zc
.zc_name
, di
.tosnap
, strlen(di
.tosnap
) + 1);
787 zc
.zc_cookie
= pipefd
[1];
789 iocerr
= ioctl(zhp
->zfs_hdl
->libzfs_fd
, ZFS_IOC_DIFF
, &zc
);
791 (void) snprintf(errbuf
, sizeof (errbuf
),
792 dgettext(TEXT_DOMAIN
, "Unable to obtain diffs"));
793 if (errno
== EPERM
) {
794 zfs_error_aux(zhp
->zfs_hdl
, dgettext(TEXT_DOMAIN
,
795 "\n The sys_mount privilege or diff delegated "
796 "permission is needed\n to execute the "
798 } else if (errno
== EXDEV
) {
799 zfs_error_aux(zhp
->zfs_hdl
, dgettext(TEXT_DOMAIN
,
800 "\n Not an earlier snapshot from the same fs"));
801 } else if (errno
!= EPIPE
|| di
.zerr
== 0) {
802 zfs_error_aux(zhp
->zfs_hdl
, strerror(errno
));
804 (void) close(pipefd
[1]);
805 (void) pthread_cancel(tid
);
806 (void) pthread_join(tid
, NULL
);
807 teardown_differ_info(&di
);
808 if (di
.zerr
!= 0 && di
.zerr
!= EPIPE
) {
809 zfs_error_aux(zhp
->zfs_hdl
, strerror(di
.zerr
));
810 return (zfs_error(zhp
->zfs_hdl
, EZFS_DIFF
, di
.errbuf
));
812 return (zfs_error(zhp
->zfs_hdl
, EZFS_DIFFDATA
, errbuf
));
816 (void) close(pipefd
[1]);
817 (void) pthread_join(tid
, NULL
);
820 zfs_error_aux(zhp
->zfs_hdl
, strerror(di
.zerr
));
821 return (zfs_error(zhp
->zfs_hdl
, EZFS_DIFF
, di
.errbuf
));
823 teardown_differ_info(&di
);