]> git.proxmox.com Git - mirror_zfs.git/blame - cmd/zfs/zfs_main.c
Illumos 4373 - add block contents print to zstreamdump
[mirror_zfs.git] / cmd / zfs / zfs_main.c
CommitLineData
34dc7c2f
BB
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/*
428870ff 23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
2820bc49 24 * Copyright (c) 2013 by Delphix. All rights reserved.
37abac6d 25 * Copyright (c) 2012, Joyent, Inc. All rights reserved.
95fd54a1 26 * Copyright (c) 2013 Steven Hartland. All rights reserved.
54d5378f 27 * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
34dc7c2f
BB
28 */
29
34dc7c2f
BB
30#include <assert.h>
31#include <ctype.h>
32#include <errno.h>
33#include <libgen.h>
34#include <libintl.h>
35#include <libuutil.h>
36#include <libnvpair.h>
37#include <locale.h>
38#include <stddef.h>
39#include <stdio.h>
40#include <stdlib.h>
41#include <strings.h>
42#include <unistd.h>
43#include <fcntl.h>
44#include <zone.h>
9babb374
BB
45#include <grp.h>
46#include <pwd.h>
572e2857 47#include <signal.h>
0b7936d5 48#include <sys/list.h>
34dc7c2f
BB
49#include <sys/mkdev.h>
50#include <sys/mntent.h>
51#include <sys/mnttab.h>
52#include <sys/mount.h>
53#include <sys/stat.h>
9babb374 54#include <sys/fs/zfs.h>
428870ff
BB
55#include <sys/types.h>
56#include <time.h>
34dc7c2f
BB
57
58#include <libzfs.h>
6f1ffb06 59#include <libzfs_core.h>
0b7936d5
AS
60#include <zfs_prop.h>
61#include <zfs_deleg.h>
34dc7c2f 62#include <libuutil.h>
0b7936d5
AS
63#ifdef HAVE_IDMAP
64#include <aclutils.h>
65#include <directory.h>
66#endif /* HAVE_IDMAP */
34dc7c2f
BB
67
68#include "zfs_iter.h"
69#include "zfs_util.h"
428870ff 70#include "zfs_comutil.h"
0bc7a7a7 71#include "libzfs_impl.h"
34dc7c2f
BB
72
73libzfs_handle_t *g_zfs;
74
75static FILE *mnttab_file;
76static char history_str[HIS_MAX_RECORD_LEN];
6f1ffb06 77static boolean_t log_history = B_TRUE;
34dc7c2f
BB
78
79static int zfs_do_clone(int argc, char **argv);
80static int zfs_do_create(int argc, char **argv);
81static int zfs_do_destroy(int argc, char **argv);
82static int zfs_do_get(int argc, char **argv);
83static int zfs_do_inherit(int argc, char **argv);
84static int zfs_do_list(int argc, char **argv);
85static int zfs_do_mount(int argc, char **argv);
86static int zfs_do_rename(int argc, char **argv);
87static int zfs_do_rollback(int argc, char **argv);
88static int zfs_do_set(int argc, char **argv);
89static int zfs_do_upgrade(int argc, char **argv);
90static int zfs_do_snapshot(int argc, char **argv);
91static int zfs_do_unmount(int argc, char **argv);
92static int zfs_do_share(int argc, char **argv);
93static int zfs_do_unshare(int argc, char **argv);
94static int zfs_do_send(int argc, char **argv);
95static int zfs_do_receive(int argc, char **argv);
96static int zfs_do_promote(int argc, char **argv);
9babb374 97static int zfs_do_userspace(int argc, char **argv);
0b7936d5
AS
98static int zfs_do_allow(int argc, char **argv);
99static int zfs_do_unallow(int argc, char **argv);
45d1cae3 100static int zfs_do_hold(int argc, char **argv);
0b7936d5 101static int zfs_do_holds(int argc, char **argv);
45d1cae3 102static int zfs_do_release(int argc, char **argv);
572e2857 103static int zfs_do_diff(int argc, char **argv);
da536844 104static int zfs_do_bookmark(int argc, char **argv);
34dc7c2f
BB
105
106/*
b128c09f 107 * Enable a reasonable set of defaults for libumem debugging on DEBUG builds.
34dc7c2f 108 */
b128c09f
BB
109
110#ifdef DEBUG
34dc7c2f
BB
111const char *
112_umem_debug_init(void)
113{
114 return ("default,verbose"); /* $UMEM_DEBUG setting */
115}
116
117const char *
118_umem_logging_init(void)
119{
120 return ("fail,contents"); /* $UMEM_LOGGING setting */
121}
b128c09f 122#endif
34dc7c2f
BB
123
124typedef enum {
125 HELP_CLONE,
126 HELP_CREATE,
127 HELP_DESTROY,
128 HELP_GET,
129 HELP_INHERIT,
130 HELP_UPGRADE,
131 HELP_LIST,
132 HELP_MOUNT,
133 HELP_PROMOTE,
134 HELP_RECEIVE,
135 HELP_RENAME,
136 HELP_ROLLBACK,
137 HELP_SEND,
138 HELP_SET,
139 HELP_SHARE,
140 HELP_SNAPSHOT,
141 HELP_UNMOUNT,
142 HELP_UNSHARE,
143 HELP_ALLOW,
9babb374
BB
144 HELP_UNALLOW,
145 HELP_USERSPACE,
45d1cae3
BB
146 HELP_GROUPSPACE,
147 HELP_HOLD,
148 HELP_HOLDS,
572e2857 149 HELP_RELEASE,
330d06f9 150 HELP_DIFF,
da536844 151 HELP_BOOKMARK,
34dc7c2f
BB
152} zfs_help_t;
153
154typedef struct zfs_command {
155 const char *name;
156 int (*func)(int argc, char **argv);
157 zfs_help_t usage;
158} zfs_command_t;
159
160/*
161 * Master command table. Each ZFS command has a name, associated function, and
162 * usage message. The usage messages need to be internationalized, so we have
163 * to have a function to return the usage message based on a command index.
164 *
165 * These commands are organized according to how they are displayed in the usage
166 * message. An empty command (one with a NULL name) indicates an empty line in
167 * the generic usage message.
168 */
169static zfs_command_t command_table[] = {
170 { "create", zfs_do_create, HELP_CREATE },
171 { "destroy", zfs_do_destroy, HELP_DESTROY },
172 { NULL },
173 { "snapshot", zfs_do_snapshot, HELP_SNAPSHOT },
174 { "rollback", zfs_do_rollback, HELP_ROLLBACK },
175 { "clone", zfs_do_clone, HELP_CLONE },
176 { "promote", zfs_do_promote, HELP_PROMOTE },
177 { "rename", zfs_do_rename, HELP_RENAME },
da536844 178 { "bookmark", zfs_do_bookmark, HELP_BOOKMARK },
34dc7c2f
BB
179 { NULL },
180 { "list", zfs_do_list, HELP_LIST },
181 { NULL },
182 { "set", zfs_do_set, HELP_SET },
428870ff 183 { "get", zfs_do_get, HELP_GET },
34dc7c2f
BB
184 { "inherit", zfs_do_inherit, HELP_INHERIT },
185 { "upgrade", zfs_do_upgrade, HELP_UPGRADE },
9babb374
BB
186 { "userspace", zfs_do_userspace, HELP_USERSPACE },
187 { "groupspace", zfs_do_userspace, HELP_GROUPSPACE },
34dc7c2f
BB
188 { NULL },
189 { "mount", zfs_do_mount, HELP_MOUNT },
190 { "unmount", zfs_do_unmount, HELP_UNMOUNT },
191 { "share", zfs_do_share, HELP_SHARE },
192 { "unshare", zfs_do_unshare, HELP_UNSHARE },
193 { NULL },
194 { "send", zfs_do_send, HELP_SEND },
195 { "receive", zfs_do_receive, HELP_RECEIVE },
196 { NULL },
0b7936d5 197 { "allow", zfs_do_allow, HELP_ALLOW },
34dc7c2f 198 { NULL },
0b7936d5 199 { "unallow", zfs_do_unallow, HELP_UNALLOW },
45d1cae3
BB
200 { NULL },
201 { "hold", zfs_do_hold, HELP_HOLD },
0b7936d5 202 { "holds", zfs_do_holds, HELP_HOLDS },
45d1cae3 203 { "release", zfs_do_release, HELP_RELEASE },
572e2857 204 { "diff", zfs_do_diff, HELP_DIFF },
34dc7c2f
BB
205};
206
207#define NCOMMAND (sizeof (command_table) / sizeof (command_table[0]))
208
209zfs_command_t *current_command;
210
211static const char *
212get_usage(zfs_help_t idx)
213{
214 switch (idx) {
215 case HELP_CLONE:
b128c09f
BB
216 return (gettext("\tclone [-p] [-o property=value] ... "
217 "<snapshot> <filesystem|volume>\n"));
34dc7c2f
BB
218 case HELP_CREATE:
219 return (gettext("\tcreate [-p] [-o property=value] ... "
220 "<filesystem>\n"
221 "\tcreate [-ps] [-b blocksize] [-o property=value] ... "
222 "-V <size> <volume>\n"));
223 case HELP_DESTROY:
330d06f9
MA
224 return (gettext("\tdestroy [-fnpRrv] <filesystem|volume>\n"
225 "\tdestroy [-dnpRrv] "
da536844
MA
226 "<filesystem|volume>@<snap>[%<snap>][,...]\n"
227 "\tdestroy <filesystem|volume>#<bookmark>\n"));
34dc7c2f 228 case HELP_GET:
9babb374 229 return (gettext("\tget [-rHp] [-d max] "
da536844
MA
230 "[-o \"all\" | field[,...]]\n"
231 "\t [-t type[,...]] [-s source[,...]]\n"
34dc7c2f
BB
232 "\t <\"all\" | property[,...]> "
233 "[filesystem|volume|snapshot] ...\n"));
234 case HELP_INHERIT:
428870ff 235 return (gettext("\tinherit [-rS] <property> "
b128c09f 236 "<filesystem|volume|snapshot> ...\n"));
34dc7c2f
BB
237 case HELP_UPGRADE:
238 return (gettext("\tupgrade [-v]\n"
239 "\tupgrade [-r] [-V version] <-a | filesystem ...>\n"));
240 case HELP_LIST:
54d5378f
YP
241 return (gettext("\tlist [-Hp] [-r|-d max] [-o property[,...]] "
242 "[-s property]...\n\t [-S property]... [-t type[,...]] "
157c9b69 243 "[filesystem|volume|snapshot] ...\n"));
34dc7c2f
BB
244 case HELP_MOUNT:
245 return (gettext("\tmount\n"
246 "\tmount [-vO] [-o opts] <-a | filesystem>\n"));
247 case HELP_PROMOTE:
248 return (gettext("\tpromote <clone-filesystem>\n"));
249 case HELP_RECEIVE:
428870ff 250 return (gettext("\treceive [-vnFu] <filesystem|volume|"
34dc7c2f 251 "snapshot>\n"
428870ff 252 "\treceive [-vnFu] [-d | -e] <filesystem>\n"));
34dc7c2f 253 case HELP_RENAME:
db49968e 254 return (gettext("\trename [-f] <filesystem|volume|snapshot> "
34dc7c2f 255 "<filesystem|volume|snapshot>\n"
db49968e 256 "\trename [-f] -p <filesystem|volume> <filesystem|volume>\n"
da536844 257 "\trename -r <snapshot> <snapshot>\n"));
34dc7c2f
BB
258 case HELP_ROLLBACK:
259 return (gettext("\trollback [-rRf] <snapshot>\n"));
260 case HELP_SEND:
9b67f605 261 return (gettext("\tsend [-DnPpRrve] [-[iI] snapshot] "
da536844 262 "<snapshot>\n"
9b67f605 263 "\tsend [-e] [-i snapshot|bookmark] "
da536844 264 "<filesystem|volume|snapshot>\n"));
34dc7c2f
BB
265 case HELP_SET:
266 return (gettext("\tset <property=value> "
b128c09f 267 "<filesystem|volume|snapshot> ...\n"));
34dc7c2f
BB
268 case HELP_SHARE:
269 return (gettext("\tshare <-a | filesystem>\n"));
270 case HELP_SNAPSHOT:
10b75496 271 return (gettext("\tsnapshot|snap [-r] [-o property=value] ... "
da536844 272 "<filesystem|volume>@<snap> ...\n"));
34dc7c2f
BB
273 case HELP_UNMOUNT:
274 return (gettext("\tunmount [-f] "
275 "<-a | filesystem|mountpoint>\n"));
276 case HELP_UNSHARE:
45d1cae3 277 return (gettext("\tunshare "
34dc7c2f
BB
278 "<-a | filesystem|mountpoint>\n"));
279 case HELP_ALLOW:
9babb374
BB
280 return (gettext("\tallow <filesystem|volume>\n"
281 "\tallow [-ldug] "
34dc7c2f
BB
282 "<\"everyone\"|user|group>[,...] <perm|@setname>[,...]\n"
283 "\t <filesystem|volume>\n"
284 "\tallow [-ld] -e <perm|@setname>[,...] "
285 "<filesystem|volume>\n"
286 "\tallow -c <perm|@setname>[,...] <filesystem|volume>\n"
287 "\tallow -s @setname <perm|@setname>[,...] "
288 "<filesystem|volume>\n"));
289 case HELP_UNALLOW:
290 return (gettext("\tunallow [-rldug] "
291 "<\"everyone\"|user|group>[,...]\n"
292 "\t [<perm|@setname>[,...]] <filesystem|volume>\n"
293 "\tunallow [-rld] -e [<perm|@setname>[,...]] "
294 "<filesystem|volume>\n"
295 "\tunallow [-r] -c [<perm|@setname>[,...]] "
296 "<filesystem|volume>\n"
297 "\tunallow [-r] -s @setname [<perm|@setname>[,...]] "
298 "<filesystem|volume>\n"));
9babb374 299 case HELP_USERSPACE:
5990da81 300 return (gettext("\tuserspace [-Hinp] [-o field[,...]] "
da536844
MA
301 "[-s field] ...\n"
302 "\t [-S field] ... [-t type[,...]] "
54d5378f 303 "<filesystem|snapshot>\n"));
9babb374 304 case HELP_GROUPSPACE:
5990da81 305 return (gettext("\tgroupspace [-Hinp] [-o field[,...]] "
da536844
MA
306 "[-s field] ...\n"
307 "\t [-S field] ... [-t type[,...]] "
54d5378f 308 "<filesystem|snapshot>\n"));
45d1cae3
BB
309 case HELP_HOLD:
310 return (gettext("\thold [-r] <tag> <snapshot> ...\n"));
311 case HELP_HOLDS:
312 return (gettext("\tholds [-r] <snapshot> ...\n"));
313 case HELP_RELEASE:
314 return (gettext("\trelease [-r] <tag> <snapshot> ...\n"));
572e2857
BB
315 case HELP_DIFF:
316 return (gettext("\tdiff [-FHt] <snapshot> "
317 "[snapshot|filesystem]\n"));
da536844
MA
318 case HELP_BOOKMARK:
319 return (gettext("\tbookmark <snapshot> <bookmark>\n"));
34dc7c2f
BB
320 }
321
322 abort();
323 /* NOTREACHED */
324}
325
428870ff
BB
326void
327nomem(void)
328{
329 (void) fprintf(stderr, gettext("internal error: out of memory\n"));
330 exit(1);
331}
332
34dc7c2f
BB
333/*
334 * Utility function to guarantee malloc() success.
335 */
428870ff 336
34dc7c2f
BB
337void *
338safe_malloc(size_t size)
339{
340 void *data;
341
428870ff
BB
342 if ((data = calloc(1, size)) == NULL)
343 nomem();
34dc7c2f
BB
344
345 return (data);
346}
347
428870ff
BB
348static char *
349safe_strdup(char *str)
350{
351 char *dupstr = strdup(str);
352
353 if (dupstr == NULL)
354 nomem();
355
356 return (dupstr);
357}
358
34dc7c2f
BB
359/*
360 * Callback routine that will print out information for each of
361 * the properties.
362 */
363static int
364usage_prop_cb(int prop, void *cb)
365{
366 FILE *fp = cb;
367
b128c09f 368 (void) fprintf(fp, "\t%-15s ", zfs_prop_to_name(prop));
34dc7c2f 369
b128c09f
BB
370 if (zfs_prop_readonly(prop))
371 (void) fprintf(fp, " NO ");
34dc7c2f 372 else
b128c09f 373 (void) fprintf(fp, "YES ");
34dc7c2f
BB
374
375 if (zfs_prop_inheritable(prop))
376 (void) fprintf(fp, " YES ");
377 else
378 (void) fprintf(fp, " NO ");
379
380 if (zfs_prop_values(prop) == NULL)
381 (void) fprintf(fp, "-\n");
382 else
383 (void) fprintf(fp, "%s\n", zfs_prop_values(prop));
384
385 return (ZPROP_CONT);
386}
387
388/*
389 * Display usage message. If we're inside a command, display only the usage for
390 * that command. Otherwise, iterate over the entire command table and display
391 * a complete usage message.
392 */
393static void
394usage(boolean_t requested)
395{
396 int i;
397 boolean_t show_properties = B_FALSE;
34dc7c2f
BB
398 FILE *fp = requested ? stdout : stderr;
399
400 if (current_command == NULL) {
401
402 (void) fprintf(fp, gettext("usage: zfs command args ...\n"));
403 (void) fprintf(fp,
404 gettext("where 'command' is one of the following:\n\n"));
405
406 for (i = 0; i < NCOMMAND; i++) {
407 if (command_table[i].name == NULL)
408 (void) fprintf(fp, "\n");
409 else
410 (void) fprintf(fp, "%s",
411 get_usage(command_table[i].usage));
412 }
413
414 (void) fprintf(fp, gettext("\nEach dataset is of the form: "
415 "pool/[dataset/]*dataset[@name]\n"));
416 } else {
417 (void) fprintf(fp, gettext("usage:\n"));
418 (void) fprintf(fp, "%s", get_usage(current_command->usage));
419 }
420
421 if (current_command != NULL &&
422 (strcmp(current_command->name, "set") == 0 ||
423 strcmp(current_command->name, "get") == 0 ||
424 strcmp(current_command->name, "inherit") == 0 ||
425 strcmp(current_command->name, "list") == 0))
426 show_properties = B_TRUE;
427
34dc7c2f 428 if (show_properties) {
34dc7c2f
BB
429 (void) fprintf(fp,
430 gettext("\nThe following properties are supported:\n"));
431
432 (void) fprintf(fp, "\n\t%-14s %s %s %s\n\n",
433 "PROPERTY", "EDIT", "INHERIT", "VALUES");
434
435 /* Iterate over all properties */
436 (void) zprop_iter(usage_prop_cb, fp, B_FALSE, B_TRUE,
437 ZFS_TYPE_DATASET);
438
9babb374
BB
439 (void) fprintf(fp, "\t%-15s ", "userused@...");
440 (void) fprintf(fp, " NO NO <size>\n");
441 (void) fprintf(fp, "\t%-15s ", "groupused@...");
442 (void) fprintf(fp, " NO NO <size>\n");
443 (void) fprintf(fp, "\t%-15s ", "userquota@...");
444 (void) fprintf(fp, "YES NO <size> | none\n");
445 (void) fprintf(fp, "\t%-15s ", "groupquota@...");
446 (void) fprintf(fp, "YES NO <size> | none\n");
330d06f9
MA
447 (void) fprintf(fp, "\t%-15s ", "written@<snap>");
448 (void) fprintf(fp, " NO NO <size>\n");
9babb374 449
34dc7c2f
BB
450 (void) fprintf(fp, gettext("\nSizes are specified in bytes "
451 "with standard units such as K, M, G, etc.\n"));
b128c09f 452 (void) fprintf(fp, gettext("\nUser-defined properties can "
34dc7c2f 453 "be specified by using a name containing a colon (:).\n"));
9babb374
BB
454 (void) fprintf(fp, gettext("\nThe {user|group}{used|quota}@ "
455 "properties must be appended with\n"
456 "a user or group specifier of one of these forms:\n"
457 " POSIX name (eg: \"matt\")\n"
458 " POSIX id (eg: \"126829\")\n"
459 " SMB name@domain (eg: \"matt@sun\")\n"
460 " SMB SID (eg: \"S-1-234-567-89\")\n"));
34dc7c2f 461 } else {
34dc7c2f 462 (void) fprintf(fp,
fb5f0bc8
BB
463 gettext("\nFor the property list, run: %s\n"),
464 "zfs set|get");
34dc7c2f 465 (void) fprintf(fp,
fb5f0bc8
BB
466 gettext("\nFor the delegated permission list, run: %s\n"),
467 "zfs allow|unallow");
34dc7c2f
BB
468 }
469
470 /*
471 * See comments at end of main().
472 */
473 if (getenv("ZFS_ABORT") != NULL) {
474 (void) printf("dumping core by request\n");
475 abort();
476 }
477
478 exit(requested ? 0 : 2);
479}
480
b128c09f
BB
481static int
482parseprop(nvlist_t *props)
483{
484 char *propname = optarg;
485 char *propval, *strval;
486
487 if ((propval = strchr(propname, '=')) == NULL) {
488 (void) fprintf(stderr, gettext("missing "
489 "'=' for -o option\n"));
490 return (-1);
491 }
492 *propval = '\0';
493 propval++;
494 if (nvlist_lookup_string(props, propname, &strval) == 0) {
495 (void) fprintf(stderr, gettext("property '%s' "
496 "specified multiple times\n"), propname);
497 return (-1);
498 }
428870ff
BB
499 if (nvlist_add_string(props, propname, propval) != 0)
500 nomem();
b128c09f 501 return (0);
b128c09f
BB
502}
503
9babb374
BB
504static int
505parse_depth(char *opt, int *flags)
506{
507 char *tmp;
508 int depth;
509
510 depth = (int)strtol(opt, &tmp, 0);
511 if (*tmp) {
512 (void) fprintf(stderr,
513 gettext("%s is not an integer\n"), optarg);
514 usage(B_FALSE);
515 }
516 if (depth < 0) {
517 (void) fprintf(stderr,
518 gettext("Depth can not be negative.\n"));
519 usage(B_FALSE);
520 }
521 *flags |= (ZFS_ITER_DEPTH_LIMIT|ZFS_ITER_RECURSE);
522 return (depth);
523}
524
428870ff
BB
525#define PROGRESS_DELAY 2 /* seconds */
526
527static char *pt_reverse = "\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b";
528static time_t pt_begin;
529static char *pt_header = NULL;
530static boolean_t pt_shown;
531
532static void
533start_progress_timer(void)
534{
535 pt_begin = time(NULL) + PROGRESS_DELAY;
536 pt_shown = B_FALSE;
537}
538
539static void
540set_progress_header(char *header)
541{
542 assert(pt_header == NULL);
543 pt_header = safe_strdup(header);
544 if (pt_shown) {
545 (void) printf("%s: ", header);
546 (void) fflush(stdout);
547 }
548}
549
550static void
551update_progress(char *update)
552{
553 if (!pt_shown && time(NULL) > pt_begin) {
554 int len = strlen(update);
555
556 (void) printf("%s: %s%*.*s", pt_header, update, len, len,
557 pt_reverse);
558 (void) fflush(stdout);
559 pt_shown = B_TRUE;
560 } else if (pt_shown) {
561 int len = strlen(update);
562
563 (void) printf("%s%*.*s", update, len, len, pt_reverse);
564 (void) fflush(stdout);
565 }
566}
567
568static void
569finish_progress(char *done)
570{
571 if (pt_shown) {
572 (void) printf("%s\n", done);
573 (void) fflush(stdout);
574 }
575 free(pt_header);
576 pt_header = NULL;
577}
d603ed6c 578
34dc7c2f 579/*
b128c09f 580 * zfs clone [-p] [-o prop=value] ... <snap> <fs | vol>
34dc7c2f
BB
581 *
582 * Given an existing dataset, create a writable copy whose initial contents
583 * are the same as the source. The newly created dataset maintains a
584 * dependency on the original; the original cannot be destroyed so long as
585 * the clone exists.
586 *
587 * The '-p' flag creates all the non-existing ancestors of the target first.
588 */
589static int
590zfs_do_clone(int argc, char **argv)
591{
b128c09f 592 zfs_handle_t *zhp = NULL;
34dc7c2f 593 boolean_t parents = B_FALSE;
b128c09f 594 nvlist_t *props;
ad60af8e 595 int ret = 0;
34dc7c2f
BB
596 int c;
597
428870ff
BB
598 if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0)
599 nomem();
b128c09f 600
34dc7c2f 601 /* check options */
b128c09f 602 while ((c = getopt(argc, argv, "o:p")) != -1) {
34dc7c2f 603 switch (c) {
b128c09f
BB
604 case 'o':
605 if (parseprop(props))
606 return (1);
607 break;
34dc7c2f
BB
608 case 'p':
609 parents = B_TRUE;
610 break;
611 case '?':
612 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
613 optopt);
b128c09f 614 goto usage;
34dc7c2f
BB
615 }
616 }
617
618 argc -= optind;
619 argv += optind;
620
621 /* check number of arguments */
622 if (argc < 1) {
623 (void) fprintf(stderr, gettext("missing source dataset "
624 "argument\n"));
b128c09f 625 goto usage;
34dc7c2f
BB
626 }
627 if (argc < 2) {
628 (void) fprintf(stderr, gettext("missing target dataset "
629 "argument\n"));
b128c09f 630 goto usage;
34dc7c2f
BB
631 }
632 if (argc > 2) {
633 (void) fprintf(stderr, gettext("too many arguments\n"));
b128c09f 634 goto usage;
34dc7c2f
BB
635 }
636
637 /* open the source dataset */
638 if ((zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_SNAPSHOT)) == NULL)
639 return (1);
640
641 if (parents && zfs_name_valid(argv[1], ZFS_TYPE_FILESYSTEM |
642 ZFS_TYPE_VOLUME)) {
643 /*
644 * Now create the ancestors of the target dataset. If the
645 * target already exists and '-p' option was used we should not
646 * complain.
647 */
648 if (zfs_dataset_exists(g_zfs, argv[1], ZFS_TYPE_FILESYSTEM |
649 ZFS_TYPE_VOLUME))
650 return (0);
651 if (zfs_create_ancestors(g_zfs, argv[1]) != 0)
652 return (1);
653 }
654
655 /* pass to libzfs */
b128c09f 656 ret = zfs_clone(zhp, argv[1], props);
34dc7c2f
BB
657
658 /* create the mountpoint if necessary */
659 if (ret == 0) {
660 zfs_handle_t *clone;
480f6265 661 int canmount = ZFS_CANMOUNT_OFF;
34dc7c2f 662
fb8e608d
TC
663 if (log_history) {
664 (void) zpool_log_history(g_zfs, history_str);
665 log_history = B_FALSE;
666 }
667
34dc7c2f
BB
668 clone = zfs_open(g_zfs, argv[1], ZFS_TYPE_DATASET);
669 if (clone != NULL) {
480f6265
TF
670 /*
671 * if the user doesn't want the dataset automatically
672 * mounted, then skip the mount/share step.
673 */
674 if (zfs_prop_valid_for_type(ZFS_PROP_CANMOUNT,
675 zfs_get_type(clone), B_FALSE))
676 canmount = zfs_prop_get_int(clone,
677 ZFS_PROP_CANMOUNT);
678
679 if (zfs_get_type(clone) != ZFS_TYPE_VOLUME &&
680 canmount == ZFS_CANMOUNT_ON)
572e2857
BB
681 if ((ret = zfs_mount(clone, NULL, 0)) == 0)
682 ret = zfs_share(clone);
34dc7c2f
BB
683 zfs_close(clone);
684 }
685 }
686
687 zfs_close(zhp);
b128c09f 688 nvlist_free(props);
34dc7c2f 689
b128c09f
BB
690 return (!!ret);
691
692usage:
693 if (zhp)
694 zfs_close(zhp);
695 nvlist_free(props);
696 usage(B_FALSE);
697 return (-1);
34dc7c2f
BB
698}
699
700/*
701 * zfs create [-p] [-o prop=value] ... fs
702 * zfs create [-ps] [-b blocksize] [-o prop=value] ... -V vol size
703 *
704 * Create a new dataset. This command can be used to create filesystems
705 * and volumes. Snapshot creation is handled by 'zfs snapshot'.
706 * For volumes, the user must specify a size to be used.
707 *
708 * The '-s' flag applies only to volumes, and indicates that we should not try
709 * to set the reservation for this volume. By default we set a reservation
710 * equal to the size for any volume. For pools with SPA_VERSION >=
711 * SPA_VERSION_REFRESERVATION, we set a refreservation instead.
712 *
713 * The '-p' flag creates all the non-existing ancestors of the target first.
714 */
715static int
716zfs_do_create(int argc, char **argv)
717{
718 zfs_type_t type = ZFS_TYPE_FILESYSTEM;
719 zfs_handle_t *zhp = NULL;
d4ed6673 720 uint64_t volsize = 0;
34dc7c2f
BB
721 int c;
722 boolean_t noreserve = B_FALSE;
723 boolean_t bflag = B_FALSE;
724 boolean_t parents = B_FALSE;
725 int ret = 1;
b128c09f 726 nvlist_t *props;
34dc7c2f 727 uint64_t intval;
572e2857 728 int canmount = ZFS_CANMOUNT_OFF;
34dc7c2f 729
428870ff
BB
730 if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0)
731 nomem();
34dc7c2f
BB
732
733 /* check options */
734 while ((c = getopt(argc, argv, ":V:b:so:p")) != -1) {
735 switch (c) {
736 case 'V':
737 type = ZFS_TYPE_VOLUME;
738 if (zfs_nicestrtonum(g_zfs, optarg, &intval) != 0) {
739 (void) fprintf(stderr, gettext("bad volume "
740 "size '%s': %s\n"), optarg,
741 libzfs_error_description(g_zfs));
742 goto error;
743 }
744
745 if (nvlist_add_uint64(props,
428870ff
BB
746 zfs_prop_to_name(ZFS_PROP_VOLSIZE), intval) != 0)
747 nomem();
34dc7c2f
BB
748 volsize = intval;
749 break;
750 case 'p':
751 parents = B_TRUE;
752 break;
753 case 'b':
754 bflag = B_TRUE;
755 if (zfs_nicestrtonum(g_zfs, optarg, &intval) != 0) {
756 (void) fprintf(stderr, gettext("bad volume "
757 "block size '%s': %s\n"), optarg,
758 libzfs_error_description(g_zfs));
759 goto error;
760 }
761
762 if (nvlist_add_uint64(props,
763 zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE),
428870ff
BB
764 intval) != 0)
765 nomem();
34dc7c2f
BB
766 break;
767 case 'o':
b128c09f 768 if (parseprop(props))
34dc7c2f 769 goto error;
34dc7c2f
BB
770 break;
771 case 's':
772 noreserve = B_TRUE;
773 break;
774 case ':':
775 (void) fprintf(stderr, gettext("missing size "
776 "argument\n"));
777 goto badusage;
778 break;
779 case '?':
780 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
781 optopt);
782 goto badusage;
783 }
784 }
785
786 if ((bflag || noreserve) && type != ZFS_TYPE_VOLUME) {
787 (void) fprintf(stderr, gettext("'-s' and '-b' can only be "
788 "used when creating a volume\n"));
789 goto badusage;
790 }
791
792 argc -= optind;
793 argv += optind;
794
795 /* check number of arguments */
796 if (argc == 0) {
797 (void) fprintf(stderr, gettext("missing %s argument\n"),
798 zfs_type_to_name(type));
799 goto badusage;
800 }
801 if (argc > 1) {
802 (void) fprintf(stderr, gettext("too many arguments\n"));
803 goto badusage;
804 }
805
806 if (type == ZFS_TYPE_VOLUME && !noreserve) {
807 zpool_handle_t *zpool_handle;
808 uint64_t spa_version;
809 char *p;
810 zfs_prop_t resv_prop;
b128c09f 811 char *strval;
34dc7c2f 812
c65aa5b2 813 if ((p = strchr(argv[0], '/')))
34dc7c2f
BB
814 *p = '\0';
815 zpool_handle = zpool_open(g_zfs, argv[0]);
816 if (p != NULL)
817 *p = '/';
818 if (zpool_handle == NULL)
819 goto error;
820 spa_version = zpool_get_prop_int(zpool_handle,
821 ZPOOL_PROP_VERSION, NULL);
822 zpool_close(zpool_handle);
823 if (spa_version >= SPA_VERSION_REFRESERVATION)
824 resv_prop = ZFS_PROP_REFRESERVATION;
825 else
826 resv_prop = ZFS_PROP_RESERVATION;
428870ff 827 volsize = zvol_volsize_to_reservation(volsize, props);
34dc7c2f
BB
828
829 if (nvlist_lookup_string(props, zfs_prop_to_name(resv_prop),
830 &strval) != 0) {
831 if (nvlist_add_uint64(props,
832 zfs_prop_to_name(resv_prop), volsize) != 0) {
34dc7c2f 833 nvlist_free(props);
428870ff 834 nomem();
34dc7c2f
BB
835 }
836 }
837 }
838
839 if (parents && zfs_name_valid(argv[0], type)) {
840 /*
841 * Now create the ancestors of target dataset. If the target
842 * already exists and '-p' option was used we should not
843 * complain.
844 */
845 if (zfs_dataset_exists(g_zfs, argv[0], type)) {
846 ret = 0;
847 goto error;
848 }
849 if (zfs_create_ancestors(g_zfs, argv[0]) != 0)
850 goto error;
851 }
852
853 /* pass to libzfs */
854 if (zfs_create(g_zfs, argv[0], type, props) != 0)
855 goto error;
856
fb8e608d
TC
857 if (log_history) {
858 (void) zpool_log_history(g_zfs, history_str);
859 log_history = B_FALSE;
860 }
861
34dc7c2f
BB
862 if ((zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_DATASET)) == NULL)
863 goto error;
572e2857
BB
864
865 ret = 0;
34dc7c2f
BB
866 /*
867 * if the user doesn't want the dataset automatically mounted,
868 * then skip the mount/share step
869 */
962d5242 870 if (zfs_prop_valid_for_type(ZFS_PROP_CANMOUNT, type, B_FALSE))
572e2857 871 canmount = zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT);
34dc7c2f
BB
872
873 /*
874 * Mount and/or share the new filesystem as appropriate. We provide a
875 * verbose error message to let the user know that their filesystem was
876 * in fact created, even if we failed to mount or share it.
877 */
34dc7c2f
BB
878 if (canmount == ZFS_CANMOUNT_ON) {
879 if (zfs_mount(zhp, NULL, 0) != 0) {
880 (void) fprintf(stderr, gettext("filesystem "
881 "successfully created, but not mounted\n"));
882 ret = 1;
883 } else if (zfs_share(zhp) != 0) {
884 (void) fprintf(stderr, gettext("filesystem "
885 "successfully created, but not shared\n"));
886 ret = 1;
887 }
888 }
889
890error:
891 if (zhp)
892 zfs_close(zhp);
893 nvlist_free(props);
894 return (ret);
895badusage:
896 nvlist_free(props);
897 usage(B_FALSE);
898 return (2);
899}
900
901/*
428870ff
BB
902 * zfs destroy [-rRf] <fs, vol>
903 * zfs destroy [-rRd] <snap>
34dc7c2f 904 *
428870ff
BB
905 * -r Recursively destroy all children
906 * -R Recursively destroy all dependents, including clones
907 * -f Force unmounting of any dependents
45d1cae3 908 * -d If we can't destroy now, mark for deferred destruction
34dc7c2f
BB
909 *
910 * Destroys the given dataset. By default, it will unmount any filesystems,
911 * and refuse to destroy a dataset that has any dependents. A dependent can
912 * either be a child, or a clone of a child.
913 */
914typedef struct destroy_cbdata {
915 boolean_t cb_first;
330d06f9
MA
916 boolean_t cb_force;
917 boolean_t cb_recurse;
918 boolean_t cb_error;
919 boolean_t cb_doclones;
34dc7c2f 920 zfs_handle_t *cb_target;
45d1cae3 921 boolean_t cb_defer_destroy;
330d06f9
MA
922 boolean_t cb_verbose;
923 boolean_t cb_parsable;
924 boolean_t cb_dryrun;
925 nvlist_t *cb_nvl;
13fe0198 926 nvlist_t *cb_batchedsnaps;
330d06f9
MA
927
928 /* first snap in contiguous run */
6f1ffb06 929 char *cb_firstsnap;
330d06f9 930 /* previous snap in contiguous run */
6f1ffb06 931 char *cb_prevsnap;
330d06f9
MA
932 int64_t cb_snapused;
933 char *cb_snapspec;
da536844 934 char *cb_bookmark;
34dc7c2f
BB
935} destroy_cbdata_t;
936
937/*
938 * Check for any dependents based on the '-r' or '-R' flags.
939 */
940static int
941destroy_check_dependent(zfs_handle_t *zhp, void *data)
942{
943 destroy_cbdata_t *cbp = data;
944 const char *tname = zfs_get_name(cbp->cb_target);
945 const char *name = zfs_get_name(zhp);
946
947 if (strncmp(tname, name, strlen(tname)) == 0 &&
948 (name[strlen(tname)] == '/' || name[strlen(tname)] == '@')) {
949 /*
950 * This is a direct descendant, not a clone somewhere else in
951 * the hierarchy.
952 */
953 if (cbp->cb_recurse)
954 goto out;
955
956 if (cbp->cb_first) {
957 (void) fprintf(stderr, gettext("cannot destroy '%s': "
958 "%s has children\n"),
959 zfs_get_name(cbp->cb_target),
960 zfs_type_to_name(zfs_get_type(cbp->cb_target)));
961 (void) fprintf(stderr, gettext("use '-r' to destroy "
962 "the following datasets:\n"));
963 cbp->cb_first = B_FALSE;
330d06f9 964 cbp->cb_error = B_TRUE;
34dc7c2f
BB
965 }
966
967 (void) fprintf(stderr, "%s\n", zfs_get_name(zhp));
968 } else {
969 /*
970 * This is a clone. We only want to report this if the '-r'
971 * wasn't specified, or the target is a snapshot.
972 */
973 if (!cbp->cb_recurse &&
974 zfs_get_type(cbp->cb_target) != ZFS_TYPE_SNAPSHOT)
975 goto out;
976
977 if (cbp->cb_first) {
978 (void) fprintf(stderr, gettext("cannot destroy '%s': "
979 "%s has dependent clones\n"),
980 zfs_get_name(cbp->cb_target),
981 zfs_type_to_name(zfs_get_type(cbp->cb_target)));
982 (void) fprintf(stderr, gettext("use '-R' to destroy "
983 "the following datasets:\n"));
984 cbp->cb_first = B_FALSE;
330d06f9
MA
985 cbp->cb_error = B_TRUE;
986 cbp->cb_dryrun = B_TRUE;
34dc7c2f
BB
987 }
988
989 (void) fprintf(stderr, "%s\n", zfs_get_name(zhp));
990 }
991
992out:
993 zfs_close(zhp);
994 return (0);
995}
996
997static int
998destroy_callback(zfs_handle_t *zhp, void *data)
999{
330d06f9
MA
1000 destroy_cbdata_t *cb = data;
1001 const char *name = zfs_get_name(zhp);
1002
1003 if (cb->cb_verbose) {
1004 if (cb->cb_parsable) {
1005 (void) printf("destroy\t%s\n", name);
1006 } else if (cb->cb_dryrun) {
1007 (void) printf(gettext("would destroy %s\n"),
1008 name);
1009 } else {
1010 (void) printf(gettext("will destroy %s\n"),
1011 name);
1012 }
1013 }
34dc7c2f
BB
1014
1015 /*
1016 * Ignore pools (which we've already flagged as an error before getting
428870ff 1017 * here).
34dc7c2f
BB
1018 */
1019 if (strchr(zfs_get_name(zhp), '/') == NULL &&
1020 zfs_get_type(zhp) == ZFS_TYPE_FILESYSTEM) {
1021 zfs_close(zhp);
1022 return (0);
1023 }
13fe0198
MA
1024 if (cb->cb_dryrun) {
1025 zfs_close(zhp);
1026 return (0);
1027 }
1028
1029 /*
1030 * We batch up all contiguous snapshots (even of different
1031 * filesystems) and destroy them with one ioctl. We can't
1032 * simply do all snap deletions and then all fs deletions,
1033 * because we must delete a clone before its origin.
1034 */
1035 if (zfs_get_type(zhp) == ZFS_TYPE_SNAPSHOT) {
1036 fnvlist_add_boolean(cb->cb_batchedsnaps, name);
1037 } else {
1038 int error = zfs_destroy_snaps_nvl(g_zfs,
1039 cb->cb_batchedsnaps, B_FALSE);
1040 fnvlist_free(cb->cb_batchedsnaps);
1041 cb->cb_batchedsnaps = fnvlist_alloc();
34dc7c2f 1042
13fe0198
MA
1043 if (error != 0 ||
1044 zfs_unmount(zhp, NULL, cb->cb_force ? MS_FORCE : 0) != 0 ||
330d06f9
MA
1045 zfs_destroy(zhp, cb->cb_defer_destroy) != 0) {
1046 zfs_close(zhp);
1047 return (-1);
1048 }
34dc7c2f
BB
1049 }
1050
1051 zfs_close(zhp);
1052 return (0);
1053}
1054
1055static int
330d06f9 1056destroy_print_cb(zfs_handle_t *zhp, void *arg)
34dc7c2f 1057{
330d06f9
MA
1058 destroy_cbdata_t *cb = arg;
1059 const char *name = zfs_get_name(zhp);
1060 int err = 0;
1061
1062 if (nvlist_exists(cb->cb_nvl, name)) {
1063 if (cb->cb_firstsnap == NULL)
6f1ffb06 1064 cb->cb_firstsnap = strdup(name);
330d06f9 1065 if (cb->cb_prevsnap != NULL)
6f1ffb06 1066 free(cb->cb_prevsnap);
330d06f9 1067 /* this snap continues the current range */
6f1ffb06
MA
1068 cb->cb_prevsnap = strdup(name);
1069 if (cb->cb_firstsnap == NULL || cb->cb_prevsnap == NULL)
1070 nomem();
330d06f9
MA
1071 if (cb->cb_verbose) {
1072 if (cb->cb_parsable) {
1073 (void) printf("destroy\t%s\n", name);
1074 } else if (cb->cb_dryrun) {
1075 (void) printf(gettext("would destroy %s\n"),
1076 name);
1077 } else {
1078 (void) printf(gettext("will destroy %s\n"),
1079 name);
1080 }
34dc7c2f 1081 }
330d06f9
MA
1082 } else if (cb->cb_firstsnap != NULL) {
1083 /* end of this range */
1084 uint64_t used = 0;
6f1ffb06 1085 err = lzc_snaprange_space(cb->cb_firstsnap,
330d06f9
MA
1086 cb->cb_prevsnap, &used);
1087 cb->cb_snapused += used;
6f1ffb06 1088 free(cb->cb_firstsnap);
330d06f9 1089 cb->cb_firstsnap = NULL;
6f1ffb06 1090 free(cb->cb_prevsnap);
330d06f9 1091 cb->cb_prevsnap = NULL;
34dc7c2f 1092 }
330d06f9
MA
1093 zfs_close(zhp);
1094 return (err);
1095}
34dc7c2f 1096
330d06f9
MA
1097static int
1098destroy_print_snapshots(zfs_handle_t *fs_zhp, destroy_cbdata_t *cb)
1099{
1100 int err;
1101 assert(cb->cb_firstsnap == NULL);
1102 assert(cb->cb_prevsnap == NULL);
1103 err = zfs_iter_snapshots_sorted(fs_zhp, destroy_print_cb, cb);
1104 if (cb->cb_firstsnap != NULL) {
1105 uint64_t used = 0;
1106 if (err == 0) {
6f1ffb06 1107 err = lzc_snaprange_space(cb->cb_firstsnap,
330d06f9
MA
1108 cb->cb_prevsnap, &used);
1109 }
1110 cb->cb_snapused += used;
6f1ffb06 1111 free(cb->cb_firstsnap);
330d06f9 1112 cb->cb_firstsnap = NULL;
6f1ffb06 1113 free(cb->cb_prevsnap);
330d06f9
MA
1114 cb->cb_prevsnap = NULL;
1115 }
1116 return (err);
1117}
1118
1119static int
1120snapshot_to_nvl_cb(zfs_handle_t *zhp, void *arg)
1121{
1122 destroy_cbdata_t *cb = arg;
1123 int err = 0;
1124
1125 /* Check for clones. */
e956d651 1126 if (!cb->cb_doclones && !cb->cb_defer_destroy) {
330d06f9
MA
1127 cb->cb_target = zhp;
1128 cb->cb_first = B_TRUE;
1129 err = zfs_iter_dependents(zhp, B_TRUE,
1130 destroy_check_dependent, cb);
1131 }
1132
1133 if (err == 0) {
1134 if (nvlist_add_boolean(cb->cb_nvl, zfs_get_name(zhp)))
1135 nomem();
1136 }
1137 zfs_close(zhp);
1138 return (err);
1139}
1140
1141static int
1142gather_snapshots(zfs_handle_t *zhp, void *arg)
1143{
1144 destroy_cbdata_t *cb = arg;
1145 int err = 0;
1146
1147 err = zfs_iter_snapspec(zhp, cb->cb_snapspec, snapshot_to_nvl_cb, cb);
1148 if (err == ENOENT)
1149 err = 0;
1150 if (err != 0)
1151 goto out;
1152
1153 if (cb->cb_verbose) {
1154 err = destroy_print_snapshots(zhp, cb);
1155 if (err != 0)
1156 goto out;
1157 }
1158
1159 if (cb->cb_recurse)
1160 err = zfs_iter_filesystems(zhp, gather_snapshots, cb);
1161
1162out:
1163 zfs_close(zhp);
1164 return (err);
1165}
1166
1167static int
1168destroy_clones(destroy_cbdata_t *cb)
1169{
1170 nvpair_t *pair;
1171 for (pair = nvlist_next_nvpair(cb->cb_nvl, NULL);
1172 pair != NULL;
1173 pair = nvlist_next_nvpair(cb->cb_nvl, pair)) {
1174 zfs_handle_t *zhp = zfs_open(g_zfs, nvpair_name(pair),
1175 ZFS_TYPE_SNAPSHOT);
1176 if (zhp != NULL) {
1177 boolean_t defer = cb->cb_defer_destroy;
1178 int err;
1179
1180 /*
1181 * We can't defer destroy non-snapshots, so set it to
1182 * false while destroying the clones.
1183 */
1184 cb->cb_defer_destroy = B_FALSE;
1185 err = zfs_iter_dependents(zhp, B_FALSE,
1186 destroy_callback, cb);
1187 cb->cb_defer_destroy = defer;
1188 zfs_close(zhp);
1189 if (err != 0)
1190 return (err);
1191 }
1192 }
1193 return (0);
34dc7c2f
BB
1194}
1195
1196static int
1197zfs_do_destroy(int argc, char **argv)
1198{
1199 destroy_cbdata_t cb = { 0 };
13fe0198
MA
1200 int rv = 0;
1201 int err = 0;
34dc7c2f 1202 int c;
13fe0198 1203 zfs_handle_t *zhp = NULL;
da536844 1204 char *at, *pound;
428870ff 1205 zfs_type_t type = ZFS_TYPE_DATASET;
34dc7c2f
BB
1206
1207 /* check options */
330d06f9 1208 while ((c = getopt(argc, argv, "vpndfrR")) != -1) {
34dc7c2f 1209 switch (c) {
330d06f9
MA
1210 case 'v':
1211 cb.cb_verbose = B_TRUE;
1212 break;
1213 case 'p':
1214 cb.cb_verbose = B_TRUE;
1215 cb.cb_parsable = B_TRUE;
1216 break;
1217 case 'n':
1218 cb.cb_dryrun = B_TRUE;
1219 break;
45d1cae3
BB
1220 case 'd':
1221 cb.cb_defer_destroy = B_TRUE;
428870ff 1222 type = ZFS_TYPE_SNAPSHOT;
45d1cae3 1223 break;
34dc7c2f 1224 case 'f':
330d06f9 1225 cb.cb_force = B_TRUE;
34dc7c2f
BB
1226 break;
1227 case 'r':
330d06f9 1228 cb.cb_recurse = B_TRUE;
34dc7c2f
BB
1229 break;
1230 case 'R':
330d06f9
MA
1231 cb.cb_recurse = B_TRUE;
1232 cb.cb_doclones = B_TRUE;
34dc7c2f
BB
1233 break;
1234 case '?':
1235 default:
1236 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
1237 optopt);
1238 usage(B_FALSE);
1239 }
1240 }
1241
1242 argc -= optind;
1243 argv += optind;
1244
1245 /* check number of arguments */
1246 if (argc == 0) {
330d06f9 1247 (void) fprintf(stderr, gettext("missing dataset argument\n"));
34dc7c2f
BB
1248 usage(B_FALSE);
1249 }
1250 if (argc > 1) {
1251 (void) fprintf(stderr, gettext("too many arguments\n"));
1252 usage(B_FALSE);
1253 }
1254
330d06f9 1255 at = strchr(argv[0], '@');
da536844 1256 pound = strchr(argv[0], '#');
330d06f9 1257 if (at != NULL) {
34dc7c2f 1258
330d06f9 1259 /* Build the list of snaps to destroy in cb_nvl. */
13fe0198 1260 cb.cb_nvl = fnvlist_alloc();
330d06f9
MA
1261
1262 *at = '\0';
1263 zhp = zfs_open(g_zfs, argv[0],
1264 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME);
1265 if (zhp == NULL)
34dc7c2f 1266 return (1);
34dc7c2f 1267
330d06f9
MA
1268 cb.cb_snapspec = at + 1;
1269 if (gather_snapshots(zfs_handle_dup(zhp), &cb) != 0 ||
1270 cb.cb_error) {
13fe0198
MA
1271 rv = 1;
1272 goto out;
330d06f9 1273 }
428870ff 1274
330d06f9
MA
1275 if (nvlist_empty(cb.cb_nvl)) {
1276 (void) fprintf(stderr, gettext("could not find any "
1277 "snapshots to destroy; check snapshot names.\n"));
13fe0198
MA
1278 rv = 1;
1279 goto out;
330d06f9
MA
1280 }
1281
1282 if (cb.cb_verbose) {
1283 char buf[16];
1284 zfs_nicenum(cb.cb_snapused, buf, sizeof (buf));
1285 if (cb.cb_parsable) {
1286 (void) printf("reclaim\t%llu\n",
1287 (u_longlong_t)cb.cb_snapused);
1288 } else if (cb.cb_dryrun) {
1289 (void) printf(gettext("would reclaim %s\n"),
1290 buf);
1291 } else {
1292 (void) printf(gettext("will reclaim %s\n"),
1293 buf);
34dc7c2f
BB
1294 }
1295 }
1296
330d06f9 1297 if (!cb.cb_dryrun) {
13fe0198
MA
1298 if (cb.cb_doclones) {
1299 cb.cb_batchedsnaps = fnvlist_alloc();
330d06f9 1300 err = destroy_clones(&cb);
13fe0198
MA
1301 if (err == 0) {
1302 err = zfs_destroy_snaps_nvl(g_zfs,
1303 cb.cb_batchedsnaps, B_FALSE);
1304 }
1305 if (err != 0) {
1306 rv = 1;
1307 goto out;
1308 }
1309 }
330d06f9 1310 if (err == 0) {
13fe0198 1311 err = zfs_destroy_snaps_nvl(g_zfs, cb.cb_nvl,
330d06f9
MA
1312 cb.cb_defer_destroy);
1313 }
34dc7c2f 1314 }
34dc7c2f 1315
330d06f9 1316 if (err != 0)
13fe0198 1317 rv = 1;
da536844
MA
1318 } else if (pound != NULL) {
1319 int err;
1320 nvlist_t *nvl;
1321
1322 if (cb.cb_dryrun) {
1323 (void) fprintf(stderr,
1324 "dryrun is not supported with bookmark\n");
1325 return (-1);
1326 }
1327
1328 if (cb.cb_defer_destroy) {
1329 (void) fprintf(stderr,
1330 "defer destroy is not supported with bookmark\n");
1331 return (-1);
1332 }
1333
1334 if (cb.cb_recurse) {
1335 (void) fprintf(stderr,
1336 "recursive is not supported with bookmark\n");
1337 return (-1);
1338 }
1339
1340 if (!zfs_bookmark_exists(argv[0])) {
1341 (void) fprintf(stderr, gettext("bookmark '%s' "
1342 "does not exist.\n"), argv[0]);
1343 return (1);
1344 }
1345
1346 nvl = fnvlist_alloc();
1347 fnvlist_add_boolean(nvl, argv[0]);
1348
1349 err = lzc_destroy_bookmarks(nvl, NULL);
1350 if (err != 0) {
1351 (void) zfs_standard_error(g_zfs, err,
1352 "cannot destroy bookmark");
1353 }
1354
1355 nvlist_free(cb.cb_nvl);
1356
1357 return (err);
330d06f9
MA
1358 } else {
1359 /* Open the given dataset */
1360 if ((zhp = zfs_open(g_zfs, argv[0], type)) == NULL)
1361 return (1);
34dc7c2f 1362
330d06f9 1363 cb.cb_target = zhp;
34dc7c2f 1364
330d06f9
MA
1365 /*
1366 * Perform an explicit check for pools before going any further.
1367 */
1368 if (!cb.cb_recurse && strchr(zfs_get_name(zhp), '/') == NULL &&
1369 zfs_get_type(zhp) == ZFS_TYPE_FILESYSTEM) {
1370 (void) fprintf(stderr, gettext("cannot destroy '%s': "
1371 "operation does not apply to pools\n"),
1372 zfs_get_name(zhp));
1373 (void) fprintf(stderr, gettext("use 'zfs destroy -r "
1374 "%s' to destroy all datasets in the pool\n"),
1375 zfs_get_name(zhp));
1376 (void) fprintf(stderr, gettext("use 'zpool destroy %s' "
1377 "to destroy the pool itself\n"), zfs_get_name(zhp));
13fe0198
MA
1378 rv = 1;
1379 goto out;
330d06f9 1380 }
34dc7c2f 1381
330d06f9
MA
1382 /*
1383 * Check for any dependents and/or clones.
1384 */
1385 cb.cb_first = B_TRUE;
1386 if (!cb.cb_doclones &&
1387 zfs_iter_dependents(zhp, B_TRUE, destroy_check_dependent,
1388 &cb) != 0) {
13fe0198
MA
1389 rv = 1;
1390 goto out;
330d06f9 1391 }
34dc7c2f 1392
330d06f9 1393 if (cb.cb_error) {
13fe0198
MA
1394 rv = 1;
1395 goto out;
330d06f9 1396 }
34dc7c2f 1397
13fe0198 1398 cb.cb_batchedsnaps = fnvlist_alloc();
330d06f9
MA
1399 if (zfs_iter_dependents(zhp, B_FALSE, destroy_callback,
1400 &cb) != 0) {
13fe0198
MA
1401 rv = 1;
1402 goto out;
330d06f9 1403 }
34dc7c2f 1404
330d06f9
MA
1405 /*
1406 * Do the real thing. The callback will close the
1407 * handle regardless of whether it succeeds or not.
1408 */
13fe0198
MA
1409 err = destroy_callback(zhp, &cb);
1410 zhp = NULL;
1411 if (err == 0) {
1412 err = zfs_destroy_snaps_nvl(g_zfs,
1413 cb.cb_batchedsnaps, cb.cb_defer_destroy);
1414 }
1415 if (err != 0)
1416 rv = 1;
330d06f9 1417 }
34dc7c2f 1418
13fe0198
MA
1419out:
1420 fnvlist_free(cb.cb_batchedsnaps);
1421 fnvlist_free(cb.cb_nvl);
1422 if (zhp != NULL)
1423 zfs_close(zhp);
1424 return (rv);
34dc7c2f
BB
1425}
1426
428870ff
BB
1427static boolean_t
1428is_recvd_column(zprop_get_cbdata_t *cbp)
1429{
1430 int i;
1431 zfs_get_column_t col;
1432
1433 for (i = 0; i < ZFS_GET_NCOLS &&
1434 (col = cbp->cb_columns[i]) != GET_COL_NONE; i++)
1435 if (col == GET_COL_RECVD)
1436 return (B_TRUE);
1437 return (B_FALSE);
1438}
1439
34dc7c2f 1440/*
428870ff
BB
1441 * zfs get [-rHp] [-o all | field[,field]...] [-s source[,source]...]
1442 * < all | property[,property]... > < fs | snap | vol > ...
34dc7c2f
BB
1443 *
1444 * -r recurse over any child datasets
1445 * -H scripted mode. Headers are stripped, and fields are separated
1446 * by tabs instead of spaces.
428870ff
BB
1447 * -o Set of fields to display. One of "name,property,value,
1448 * received,source". Default is "name,property,value,source".
1449 * "all" is an alias for all five.
34dc7c2f 1450 * -s Set of sources to allow. One of
428870ff
BB
1451 * "local,default,inherited,received,temporary,none". Default is
1452 * all six.
34dc7c2f
BB
1453 * -p Display values in parsable (literal) format.
1454 *
1455 * Prints properties for the given datasets. The user can control which
1456 * columns to display as well as which property types to allow.
1457 */
1458
1459/*
1460 * Invoked to display the properties for a single dataset.
1461 */
1462static int
1463get_callback(zfs_handle_t *zhp, void *data)
1464{
1465 char buf[ZFS_MAXPROPLEN];
428870ff 1466 char rbuf[ZFS_MAXPROPLEN];
34dc7c2f
BB
1467 zprop_source_t sourcetype;
1468 char source[ZFS_MAXNAMELEN];
1469 zprop_get_cbdata_t *cbp = data;
428870ff 1470 nvlist_t *user_props = zfs_get_user_props(zhp);
34dc7c2f
BB
1471 zprop_list_t *pl = cbp->cb_proplist;
1472 nvlist_t *propval;
1473 char *strval;
1474 char *sourceval;
428870ff 1475 boolean_t received = is_recvd_column(cbp);
34dc7c2f
BB
1476
1477 for (; pl != NULL; pl = pl->pl_next) {
428870ff 1478 char *recvdval = NULL;
34dc7c2f
BB
1479 /*
1480 * Skip the special fake placeholder. This will also skip over
1481 * the name property when 'all' is specified.
1482 */
1483 if (pl->pl_prop == ZFS_PROP_NAME &&
1484 pl == cbp->cb_proplist)
1485 continue;
1486
1487 if (pl->pl_prop != ZPROP_INVAL) {
1488 if (zfs_prop_get(zhp, pl->pl_prop, buf,
1489 sizeof (buf), &sourcetype, source,
1490 sizeof (source),
1491 cbp->cb_literal) != 0) {
1492 if (pl->pl_all)
1493 continue;
1494 if (!zfs_prop_valid_for_type(pl->pl_prop,
962d5242 1495 ZFS_TYPE_DATASET, B_FALSE)) {
34dc7c2f
BB
1496 (void) fprintf(stderr,
1497 gettext("No such property '%s'\n"),
1498 zfs_prop_to_name(pl->pl_prop));
1499 continue;
1500 }
1501 sourcetype = ZPROP_SRC_NONE;
1502 (void) strlcpy(buf, "-", sizeof (buf));
1503 }
1504
428870ff
BB
1505 if (received && (zfs_prop_get_recvd(zhp,
1506 zfs_prop_to_name(pl->pl_prop), rbuf, sizeof (rbuf),
1507 cbp->cb_literal) == 0))
1508 recvdval = rbuf;
1509
34dc7c2f
BB
1510 zprop_print_one_property(zfs_get_name(zhp), cbp,
1511 zfs_prop_to_name(pl->pl_prop),
428870ff 1512 buf, sourcetype, source, recvdval);
9babb374
BB
1513 } else if (zfs_prop_userquota(pl->pl_user_prop)) {
1514 sourcetype = ZPROP_SRC_LOCAL;
1515
1516 if (zfs_prop_get_userquota(zhp, pl->pl_user_prop,
1517 buf, sizeof (buf), cbp->cb_literal) != 0) {
1518 sourcetype = ZPROP_SRC_NONE;
1519 (void) strlcpy(buf, "-", sizeof (buf));
1520 }
1521
330d06f9
MA
1522 zprop_print_one_property(zfs_get_name(zhp), cbp,
1523 pl->pl_user_prop, buf, sourcetype, source, NULL);
1524 } else if (zfs_prop_written(pl->pl_user_prop)) {
1525 sourcetype = ZPROP_SRC_LOCAL;
1526
1527 if (zfs_prop_get_written(zhp, pl->pl_user_prop,
1528 buf, sizeof (buf), cbp->cb_literal) != 0) {
1529 sourcetype = ZPROP_SRC_NONE;
1530 (void) strlcpy(buf, "-", sizeof (buf));
1531 }
1532
9babb374 1533 zprop_print_one_property(zfs_get_name(zhp), cbp,
428870ff 1534 pl->pl_user_prop, buf, sourcetype, source, NULL);
34dc7c2f 1535 } else {
428870ff 1536 if (nvlist_lookup_nvlist(user_props,
34dc7c2f
BB
1537 pl->pl_user_prop, &propval) != 0) {
1538 if (pl->pl_all)
1539 continue;
1540 sourcetype = ZPROP_SRC_NONE;
1541 strval = "-";
1542 } else {
1543 verify(nvlist_lookup_string(propval,
1544 ZPROP_VALUE, &strval) == 0);
1545 verify(nvlist_lookup_string(propval,
1546 ZPROP_SOURCE, &sourceval) == 0);
1547
1548 if (strcmp(sourceval,
1549 zfs_get_name(zhp)) == 0) {
1550 sourcetype = ZPROP_SRC_LOCAL;
428870ff
BB
1551 } else if (strcmp(sourceval,
1552 ZPROP_SOURCE_VAL_RECVD) == 0) {
1553 sourcetype = ZPROP_SRC_RECEIVED;
34dc7c2f
BB
1554 } else {
1555 sourcetype = ZPROP_SRC_INHERITED;
1556 (void) strlcpy(source,
1557 sourceval, sizeof (source));
1558 }
1559 }
1560
428870ff
BB
1561 if (received && (zfs_prop_get_recvd(zhp,
1562 pl->pl_user_prop, rbuf, sizeof (rbuf),
1563 cbp->cb_literal) == 0))
1564 recvdval = rbuf;
1565
34dc7c2f
BB
1566 zprop_print_one_property(zfs_get_name(zhp), cbp,
1567 pl->pl_user_prop, strval, sourcetype,
428870ff 1568 source, recvdval);
34dc7c2f
BB
1569 }
1570 }
1571
1572 return (0);
1573}
1574
1575static int
1576zfs_do_get(int argc, char **argv)
1577{
1578 zprop_get_cbdata_t cb = { 0 };
bb939d10 1579 int i, c, flags = ZFS_ITER_ARGS_CAN_BE_PATHS;
e346ec25 1580 int types = ZFS_TYPE_DATASET;
34dc7c2f 1581 char *value, *fields;
ad60af8e 1582 int ret = 0;
9babb374 1583 int limit = 0;
34dc7c2f
BB
1584 zprop_list_t fake_name = { 0 };
1585
1586 /*
1587 * Set up default columns and sources.
1588 */
1589 cb.cb_sources = ZPROP_SRC_ALL;
1590 cb.cb_columns[0] = GET_COL_NAME;
1591 cb.cb_columns[1] = GET_COL_PROPERTY;
1592 cb.cb_columns[2] = GET_COL_VALUE;
1593 cb.cb_columns[3] = GET_COL_SOURCE;
1594 cb.cb_type = ZFS_TYPE_DATASET;
1595
1596 /* check options */
e346ec25 1597 while ((c = getopt(argc, argv, ":d:o:s:rt:Hp")) != -1) {
34dc7c2f
BB
1598 switch (c) {
1599 case 'p':
1600 cb.cb_literal = B_TRUE;
1601 break;
9babb374
BB
1602 case 'd':
1603 limit = parse_depth(optarg, &flags);
1604 break;
34dc7c2f 1605 case 'r':
b128c09f 1606 flags |= ZFS_ITER_RECURSE;
34dc7c2f
BB
1607 break;
1608 case 'H':
1609 cb.cb_scripted = B_TRUE;
1610 break;
1611 case ':':
1612 (void) fprintf(stderr, gettext("missing argument for "
1613 "'%c' option\n"), optopt);
1614 usage(B_FALSE);
1615 break;
1616 case 'o':
1617 /*
1618 * Process the set of columns to display. We zero out
1619 * the structure to give us a blank slate.
1620 */
1621 bzero(&cb.cb_columns, sizeof (cb.cb_columns));
1622 i = 0;
1623 while (*optarg != '\0') {
1624 static char *col_subopts[] =
428870ff
BB
1625 { "name", "property", "value", "received",
1626 "source", "all", NULL };
34dc7c2f 1627
428870ff 1628 if (i == ZFS_GET_NCOLS) {
34dc7c2f
BB
1629 (void) fprintf(stderr, gettext("too "
1630 "many fields given to -o "
1631 "option\n"));
1632 usage(B_FALSE);
1633 }
1634
1635 switch (getsubopt(&optarg, col_subopts,
1636 &value)) {
1637 case 0:
1638 cb.cb_columns[i++] = GET_COL_NAME;
1639 break;
1640 case 1:
1641 cb.cb_columns[i++] = GET_COL_PROPERTY;
1642 break;
1643 case 2:
1644 cb.cb_columns[i++] = GET_COL_VALUE;
1645 break;
1646 case 3:
428870ff
BB
1647 cb.cb_columns[i++] = GET_COL_RECVD;
1648 flags |= ZFS_ITER_RECVD_PROPS;
1649 break;
1650 case 4:
34dc7c2f
BB
1651 cb.cb_columns[i++] = GET_COL_SOURCE;
1652 break;
428870ff
BB
1653 case 5:
1654 if (i > 0) {
1655 (void) fprintf(stderr,
1656 gettext("\"all\" conflicts "
1657 "with specific fields "
1658 "given to -o option\n"));
1659 usage(B_FALSE);
1660 }
1661 cb.cb_columns[0] = GET_COL_NAME;
1662 cb.cb_columns[1] = GET_COL_PROPERTY;
1663 cb.cb_columns[2] = GET_COL_VALUE;
1664 cb.cb_columns[3] = GET_COL_RECVD;
1665 cb.cb_columns[4] = GET_COL_SOURCE;
1666 flags |= ZFS_ITER_RECVD_PROPS;
1667 i = ZFS_GET_NCOLS;
1668 break;
34dc7c2f
BB
1669 default:
1670 (void) fprintf(stderr,
1671 gettext("invalid column name "
1672 "'%s'\n"), value);
1673 usage(B_FALSE);
1674 }
1675 }
1676 break;
1677
1678 case 's':
1679 cb.cb_sources = 0;
1680 while (*optarg != '\0') {
1681 static char *source_subopts[] = {
1682 "local", "default", "inherited",
428870ff
BB
1683 "received", "temporary", "none",
1684 NULL };
34dc7c2f
BB
1685
1686 switch (getsubopt(&optarg, source_subopts,
1687 &value)) {
1688 case 0:
1689 cb.cb_sources |= ZPROP_SRC_LOCAL;
1690 break;
1691 case 1:
1692 cb.cb_sources |= ZPROP_SRC_DEFAULT;
1693 break;
1694 case 2:
1695 cb.cb_sources |= ZPROP_SRC_INHERITED;
1696 break;
1697 case 3:
428870ff 1698 cb.cb_sources |= ZPROP_SRC_RECEIVED;
34dc7c2f
BB
1699 break;
1700 case 4:
428870ff
BB
1701 cb.cb_sources |= ZPROP_SRC_TEMPORARY;
1702 break;
1703 case 5:
34dc7c2f
BB
1704 cb.cb_sources |= ZPROP_SRC_NONE;
1705 break;
1706 default:
1707 (void) fprintf(stderr,
1708 gettext("invalid source "
1709 "'%s'\n"), value);
1710 usage(B_FALSE);
1711 }
1712 }
1713 break;
1714
e346ec25
AS
1715 case 't':
1716 types = 0;
1717 flags &= ~ZFS_ITER_PROP_LISTSNAPS;
1718 while (*optarg != '\0') {
1719 static char *type_subopts[] = { "filesystem",
da536844
MA
1720 "volume", "snapshot", "bookmark",
1721 "all", NULL };
e346ec25
AS
1722
1723 switch (getsubopt(&optarg, type_subopts,
1724 &value)) {
1725 case 0:
1726 types |= ZFS_TYPE_FILESYSTEM;
1727 break;
1728 case 1:
1729 types |= ZFS_TYPE_VOLUME;
1730 break;
1731 case 2:
1732 types |= ZFS_TYPE_SNAPSHOT;
1733 break;
1734 case 3:
da536844
MA
1735 types |= ZFS_TYPE_BOOKMARK;
1736 break;
1737 case 4:
1738 types = ZFS_TYPE_DATASET |
1739 ZFS_TYPE_BOOKMARK;
e346ec25
AS
1740 break;
1741
1742 default:
1743 (void) fprintf(stderr,
1744 gettext("invalid type '%s'\n"),
1745 value);
1746 usage(B_FALSE);
1747 }
1748 }
1749 break;
1750
34dc7c2f
BB
1751 case '?':
1752 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
1753 optopt);
1754 usage(B_FALSE);
1755 }
1756 }
1757
1758 argc -= optind;
1759 argv += optind;
1760
1761 if (argc < 1) {
1762 (void) fprintf(stderr, gettext("missing property "
1763 "argument\n"));
1764 usage(B_FALSE);
1765 }
1766
1767 fields = argv[0];
1768
1769 if (zprop_get_list(g_zfs, fields, &cb.cb_proplist, ZFS_TYPE_DATASET)
1770 != 0)
1771 usage(B_FALSE);
1772
1773 argc--;
1774 argv++;
1775
1776 /*
1777 * As part of zfs_expand_proplist(), we keep track of the maximum column
1778 * width for each property. For the 'NAME' (and 'SOURCE') columns, we
1779 * need to know the maximum name length. However, the user likely did
1780 * not specify 'name' as one of the properties to fetch, so we need to
1781 * make sure we always include at least this property for
1782 * print_get_headers() to work properly.
1783 */
1784 if (cb.cb_proplist != NULL) {
1785 fake_name.pl_prop = ZFS_PROP_NAME;
1786 fake_name.pl_width = strlen(gettext("NAME"));
1787 fake_name.pl_next = cb.cb_proplist;
1788 cb.cb_proplist = &fake_name;
1789 }
1790
1791 cb.cb_first = B_TRUE;
1792
1793 /* run for each object */
e346ec25 1794 ret = zfs_for_each(argc, argv, flags, types, NULL,
9babb374 1795 &cb.cb_proplist, limit, get_callback, &cb);
34dc7c2f
BB
1796
1797 if (cb.cb_proplist == &fake_name)
1798 zprop_free_list(fake_name.pl_next);
1799 else
1800 zprop_free_list(cb.cb_proplist);
1801
1802 return (ret);
1803}
1804
1805/*
428870ff 1806 * inherit [-rS] <property> <fs|vol> ...
34dc7c2f 1807 *
428870ff
BB
1808 * -r Recurse over all children
1809 * -S Revert to received value, if any
34dc7c2f
BB
1810 *
1811 * For each dataset specified on the command line, inherit the given property
1812 * from its parent. Inheriting a property at the pool level will cause it to
1813 * use the default value. The '-r' flag will recurse over all children, and is
1814 * useful for setting a property on a hierarchy-wide basis, regardless of any
1815 * local modifications for each dataset.
1816 */
1817
428870ff
BB
1818typedef struct inherit_cbdata {
1819 const char *cb_propname;
1820 boolean_t cb_received;
1821} inherit_cbdata_t;
1822
34dc7c2f 1823static int
b128c09f 1824inherit_recurse_cb(zfs_handle_t *zhp, void *data)
34dc7c2f 1825{
428870ff
BB
1826 inherit_cbdata_t *cb = data;
1827 zfs_prop_t prop = zfs_name_to_prop(cb->cb_propname);
34dc7c2f 1828
b128c09f
BB
1829 /*
1830 * If we're doing it recursively, then ignore properties that
1831 * are not valid for this type of dataset.
1832 */
1833 if (prop != ZPROP_INVAL &&
962d5242 1834 !zfs_prop_valid_for_type(prop, zfs_get_type(zhp), B_FALSE))
b128c09f
BB
1835 return (0);
1836
428870ff 1837 return (zfs_prop_inherit(zhp, cb->cb_propname, cb->cb_received) != 0);
b128c09f
BB
1838}
1839
1840static int
1841inherit_cb(zfs_handle_t *zhp, void *data)
1842{
428870ff 1843 inherit_cbdata_t *cb = data;
b128c09f 1844
428870ff 1845 return (zfs_prop_inherit(zhp, cb->cb_propname, cb->cb_received) != 0);
34dc7c2f
BB
1846}
1847
1848static int
1849zfs_do_inherit(int argc, char **argv)
1850{
34dc7c2f
BB
1851 int c;
1852 zfs_prop_t prop;
428870ff 1853 inherit_cbdata_t cb = { 0 };
34dc7c2f 1854 char *propname;
ad60af8e 1855 int ret = 0;
b128c09f 1856 int flags = 0;
428870ff 1857 boolean_t received = B_FALSE;
34dc7c2f
BB
1858
1859 /* check options */
428870ff 1860 while ((c = getopt(argc, argv, "rS")) != -1) {
34dc7c2f
BB
1861 switch (c) {
1862 case 'r':
b128c09f 1863 flags |= ZFS_ITER_RECURSE;
34dc7c2f 1864 break;
428870ff
BB
1865 case 'S':
1866 received = B_TRUE;
1867 break;
34dc7c2f
BB
1868 case '?':
1869 default:
1870 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
1871 optopt);
1872 usage(B_FALSE);
1873 }
1874 }
1875
1876 argc -= optind;
1877 argv += optind;
1878
1879 /* check number of arguments */
1880 if (argc < 1) {
1881 (void) fprintf(stderr, gettext("missing property argument\n"));
1882 usage(B_FALSE);
1883 }
1884 if (argc < 2) {
1885 (void) fprintf(stderr, gettext("missing dataset argument\n"));
1886 usage(B_FALSE);
1887 }
1888
1889 propname = argv[0];
1890 argc--;
1891 argv++;
1892
1893 if ((prop = zfs_name_to_prop(propname)) != ZPROP_INVAL) {
1894 if (zfs_prop_readonly(prop)) {
1895 (void) fprintf(stderr, gettext(
1896 "%s property is read-only\n"),
1897 propname);
1898 return (1);
1899 }
428870ff 1900 if (!zfs_prop_inheritable(prop) && !received) {
34dc7c2f
BB
1901 (void) fprintf(stderr, gettext("'%s' property cannot "
1902 "be inherited\n"), propname);
1903 if (prop == ZFS_PROP_QUOTA ||
1904 prop == ZFS_PROP_RESERVATION ||
1905 prop == ZFS_PROP_REFQUOTA ||
0bf8501a 1906 prop == ZFS_PROP_REFRESERVATION) {
34dc7c2f
BB
1907 (void) fprintf(stderr, gettext("use 'zfs set "
1908 "%s=none' to clear\n"), propname);
0bf8501a
PH
1909 (void) fprintf(stderr, gettext("use 'zfs "
1910 "inherit -S %s' to revert to received "
1911 "value\n"), propname);
1912 }
34dc7c2f
BB
1913 return (1);
1914 }
428870ff
BB
1915 if (received && (prop == ZFS_PROP_VOLSIZE ||
1916 prop == ZFS_PROP_VERSION)) {
1917 (void) fprintf(stderr, gettext("'%s' property cannot "
1918 "be reverted to a received value\n"), propname);
1919 return (1);
1920 }
34dc7c2f
BB
1921 } else if (!zfs_prop_user(propname)) {
1922 (void) fprintf(stderr, gettext("invalid property '%s'\n"),
1923 propname);
1924 usage(B_FALSE);
1925 }
1926
428870ff
BB
1927 cb.cb_propname = propname;
1928 cb.cb_received = received;
1929
b128c09f
BB
1930 if (flags & ZFS_ITER_RECURSE) {
1931 ret = zfs_for_each(argc, argv, flags, ZFS_TYPE_DATASET,
428870ff 1932 NULL, NULL, 0, inherit_recurse_cb, &cb);
b128c09f
BB
1933 } else {
1934 ret = zfs_for_each(argc, argv, flags, ZFS_TYPE_DATASET,
428870ff 1935 NULL, NULL, 0, inherit_cb, &cb);
b128c09f 1936 }
34dc7c2f
BB
1937
1938 return (ret);
1939}
1940
1941typedef struct upgrade_cbdata {
1942 uint64_t cb_numupgraded;
1943 uint64_t cb_numsamegraded;
1944 uint64_t cb_numfailed;
1945 uint64_t cb_version;
1946 boolean_t cb_newer;
1947 boolean_t cb_foundone;
1948 char cb_lastfs[ZFS_MAXNAMELEN];
1949} upgrade_cbdata_t;
1950
1951static int
1952same_pool(zfs_handle_t *zhp, const char *name)
1953{
1954 int len1 = strcspn(name, "/@");
1955 const char *zhname = zfs_get_name(zhp);
1956 int len2 = strcspn(zhname, "/@");
1957
1958 if (len1 != len2)
1959 return (B_FALSE);
1960 return (strncmp(name, zhname, len1) == 0);
1961}
1962
1963static int
1964upgrade_list_callback(zfs_handle_t *zhp, void *data)
1965{
1966 upgrade_cbdata_t *cb = data;
1967 int version = zfs_prop_get_int(zhp, ZFS_PROP_VERSION);
1968
1969 /* list if it's old/new */
1970 if ((!cb->cb_newer && version < ZPL_VERSION) ||
1971 (cb->cb_newer && version > ZPL_VERSION)) {
1972 char *str;
1973 if (cb->cb_newer) {
1974 str = gettext("The following filesystems are "
1975 "formatted using a newer software version and\n"
1976 "cannot be accessed on the current system.\n\n");
1977 } else {
1978 str = gettext("The following filesystems are "
1979 "out of date, and can be upgraded. After being\n"
1980 "upgraded, these filesystems (and any 'zfs send' "
1981 "streams generated from\n"
1982 "subsequent snapshots) will no longer be "
1983 "accessible by older software versions.\n\n");
1984 }
1985
1986 if (!cb->cb_foundone) {
1987 (void) puts(str);
1988 (void) printf(gettext("VER FILESYSTEM\n"));
1989 (void) printf(gettext("--- ------------\n"));
1990 cb->cb_foundone = B_TRUE;
1991 }
1992
1993 (void) printf("%2u %s\n", version, zfs_get_name(zhp));
1994 }
1995
1996 return (0);
1997}
1998
1999static int
2000upgrade_set_callback(zfs_handle_t *zhp, void *data)
2001{
2002 upgrade_cbdata_t *cb = data;
2003 int version = zfs_prop_get_int(zhp, ZFS_PROP_VERSION);
428870ff
BB
2004 int needed_spa_version;
2005 int spa_version;
2006
2007 if (zfs_spa_version(zhp, &spa_version) < 0)
2008 return (-1);
2009
2010 needed_spa_version = zfs_spa_version_map(cb->cb_version);
2011
2012 if (needed_spa_version < 0)
2013 return (-1);
2014
2015 if (spa_version < needed_spa_version) {
2016 /* can't upgrade */
2017 (void) printf(gettext("%s: can not be "
2018 "upgraded; the pool version needs to first "
2019 "be upgraded\nto version %d\n\n"),
2020 zfs_get_name(zhp), needed_spa_version);
2021 cb->cb_numfailed++;
2022 return (0);
34dc7c2f
BB
2023 }
2024
2025 /* upgrade */
2026 if (version < cb->cb_version) {
2027 char verstr[16];
2028 (void) snprintf(verstr, sizeof (verstr),
b8864a23 2029 "%llu", (u_longlong_t)cb->cb_version);
34dc7c2f
BB
2030 if (cb->cb_lastfs[0] && !same_pool(zhp, cb->cb_lastfs)) {
2031 /*
2032 * If they did "zfs upgrade -a", then we could
2033 * be doing ioctls to different pools. We need
6f1ffb06
MA
2034 * to log this history once to each pool, and bypass
2035 * the normal history logging that happens in main().
34dc7c2f 2036 */
6f1ffb06
MA
2037 (void) zpool_log_history(g_zfs, history_str);
2038 log_history = B_FALSE;
34dc7c2f
BB
2039 }
2040 if (zfs_prop_set(zhp, "version", verstr) == 0)
2041 cb->cb_numupgraded++;
2042 else
2043 cb->cb_numfailed++;
2044 (void) strcpy(cb->cb_lastfs, zfs_get_name(zhp));
2045 } else if (version > cb->cb_version) {
2046 /* can't downgrade */
2047 (void) printf(gettext("%s: can not be downgraded; "
2048 "it is already at version %u\n"),
2049 zfs_get_name(zhp), version);
2050 cb->cb_numfailed++;
2051 } else {
2052 cb->cb_numsamegraded++;
2053 }
2054 return (0);
2055}
2056
2057/*
2058 * zfs upgrade
2059 * zfs upgrade -v
2060 * zfs upgrade [-r] [-V <version>] <-a | filesystem>
2061 */
2062static int
2063zfs_do_upgrade(int argc, char **argv)
2064{
34dc7c2f
BB
2065 boolean_t all = B_FALSE;
2066 boolean_t showversions = B_FALSE;
ad60af8e 2067 int ret = 0;
34dc7c2f 2068 upgrade_cbdata_t cb = { 0 };
b8864a23 2069 signed char c;
b128c09f 2070 int flags = ZFS_ITER_ARGS_CAN_BE_PATHS;
34dc7c2f
BB
2071
2072 /* check options */
2073 while ((c = getopt(argc, argv, "rvV:a")) != -1) {
2074 switch (c) {
2075 case 'r':
b128c09f 2076 flags |= ZFS_ITER_RECURSE;
34dc7c2f
BB
2077 break;
2078 case 'v':
2079 showversions = B_TRUE;
2080 break;
2081 case 'V':
2082 if (zfs_prop_string_to_index(ZFS_PROP_VERSION,
2083 optarg, &cb.cb_version) != 0) {
2084 (void) fprintf(stderr,
2085 gettext("invalid version %s\n"), optarg);
2086 usage(B_FALSE);
2087 }
2088 break;
2089 case 'a':
2090 all = B_TRUE;
2091 break;
2092 case '?':
2093 default:
2094 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
2095 optopt);
2096 usage(B_FALSE);
2097 }
2098 }
2099
2100 argc -= optind;
2101 argv += optind;
2102
b128c09f 2103 if ((!all && !argc) && ((flags & ZFS_ITER_RECURSE) | cb.cb_version))
34dc7c2f 2104 usage(B_FALSE);
b128c09f
BB
2105 if (showversions && (flags & ZFS_ITER_RECURSE || all ||
2106 cb.cb_version || argc))
34dc7c2f
BB
2107 usage(B_FALSE);
2108 if ((all || argc) && (showversions))
2109 usage(B_FALSE);
2110 if (all && argc)
2111 usage(B_FALSE);
2112
2113 if (showversions) {
2114 /* Show info on available versions. */
2115 (void) printf(gettext("The following filesystem versions are "
2116 "supported:\n\n"));
2117 (void) printf(gettext("VER DESCRIPTION\n"));
2118 (void) printf("--- -----------------------------------------"
2119 "---------------\n");
2120 (void) printf(gettext(" 1 Initial ZFS filesystem version\n"));
2121 (void) printf(gettext(" 2 Enhanced directory entries\n"));
330d06f9
MA
2122 (void) printf(gettext(" 3 Case insensitive and filesystem "
2123 "user identifier (FUID)\n"));
9babb374
BB
2124 (void) printf(gettext(" 4 userquota, groupquota "
2125 "properties\n"));
428870ff 2126 (void) printf(gettext(" 5 System attributes\n"));
34dc7c2f 2127 (void) printf(gettext("\nFor more information on a particular "
428870ff
BB
2128 "version, including supported releases,\n"));
2129 (void) printf("see the ZFS Administration Guide.\n\n");
34dc7c2f
BB
2130 ret = 0;
2131 } else if (argc || all) {
2132 /* Upgrade filesystems */
2133 if (cb.cb_version == 0)
2134 cb.cb_version = ZPL_VERSION;
b128c09f 2135 ret = zfs_for_each(argc, argv, flags, ZFS_TYPE_FILESYSTEM,
9babb374 2136 NULL, NULL, 0, upgrade_set_callback, &cb);
34dc7c2f 2137 (void) printf(gettext("%llu filesystems upgraded\n"),
b8864a23 2138 (u_longlong_t)cb.cb_numupgraded);
34dc7c2f
BB
2139 if (cb.cb_numsamegraded) {
2140 (void) printf(gettext("%llu filesystems already at "
2141 "this version\n"),
b8864a23 2142 (u_longlong_t)cb.cb_numsamegraded);
34dc7c2f
BB
2143 }
2144 if (cb.cb_numfailed != 0)
2145 ret = 1;
2146 } else {
2147 /* List old-version filesytems */
2148 boolean_t found;
2149 (void) printf(gettext("This system is currently running "
2150 "ZFS filesystem version %llu.\n\n"), ZPL_VERSION);
2151
b128c09f
BB
2152 flags |= ZFS_ITER_RECURSE;
2153 ret = zfs_for_each(0, NULL, flags, ZFS_TYPE_FILESYSTEM,
9babb374 2154 NULL, NULL, 0, upgrade_list_callback, &cb);
34dc7c2f
BB
2155
2156 found = cb.cb_foundone;
2157 cb.cb_foundone = B_FALSE;
2158 cb.cb_newer = B_TRUE;
2159
b128c09f 2160 ret = zfs_for_each(0, NULL, flags, ZFS_TYPE_FILESYSTEM,
9babb374 2161 NULL, NULL, 0, upgrade_list_callback, &cb);
34dc7c2f
BB
2162
2163 if (!cb.cb_foundone && !found) {
2164 (void) printf(gettext("All filesystems are "
2165 "formatted with the current version.\n"));
2166 }
2167 }
2168
2169 return (ret);
2170}
2171
5990da81
YP
2172/*
2173 * zfs userspace [-Hinp] [-o field[,...]] [-s field [-s field]...]
2174 * [-S field [-S field]...] [-t type[,...]] filesystem | snapshot
2175 * zfs groupspace [-Hinp] [-o field[,...]] [-s field [-s field]...]
2176 * [-S field [-S field]...] [-t type[,...]] filesystem | snapshot
2177 *
2178 * -H Scripted mode; elide headers and separate columns by tabs.
2179 * -i Translate SID to POSIX ID.
2180 * -n Print numeric ID instead of user/group name.
2181 * -o Control which fields to display.
54d5378f 2182 * -p Use exact (parsable) numeric output.
5990da81
YP
2183 * -s Specify sort columns, descending order.
2184 * -S Specify sort columns, ascending order.
2185 * -t Control which object types to display.
2186 *
2187 * Displays space consumed by, and quotas on, each user in the specified
2188 * filesystem or snapshot.
2189 */
0b7936d5 2190
5990da81
YP
2191/* us_field_types, us_field_hdr and us_field_names should be kept in sync */
2192enum us_field_types {
2193 USFIELD_TYPE,
2194 USFIELD_NAME,
2195 USFIELD_USED,
2196 USFIELD_QUOTA
2197};
2198static char *us_field_hdr[] = { "TYPE", "NAME", "USED", "QUOTA" };
2199static char *us_field_names[] = { "type", "name", "used", "quota" };
2200#define USFIELD_LAST (sizeof (us_field_names) / sizeof (char *))
0b7936d5 2201
5990da81
YP
2202#define USTYPE_PSX_GRP (1 << 0)
2203#define USTYPE_PSX_USR (1 << 1)
2204#define USTYPE_SMB_GRP (1 << 2)
2205#define USTYPE_SMB_USR (1 << 3)
2206#define USTYPE_ALL \
2207 (USTYPE_PSX_GRP | USTYPE_PSX_USR | USTYPE_SMB_GRP | USTYPE_SMB_USR)
0b7936d5 2208
5990da81
YP
2209static int us_type_bits[] = {
2210 USTYPE_PSX_GRP,
2211 USTYPE_PSX_USR,
2212 USTYPE_SMB_GRP,
2213 USTYPE_SMB_USR,
2214 USTYPE_ALL
2215};
2820bc49 2216static char *us_type_names[] = { "posixgroup", "posixuser", "smbgroup",
5990da81 2217 "smbuser", "all" };
0b7936d5
AS
2218
2219typedef struct us_node {
2220 nvlist_t *usn_nvl;
2221 uu_avl_node_t usn_avlnode;
2222 uu_list_node_t usn_listnode;
2223} us_node_t;
2224
2225typedef struct us_cbdata {
5990da81
YP
2226 nvlist_t **cb_nvlp;
2227 uu_avl_pool_t *cb_avl_pool;
2228 uu_avl_t *cb_avl;
2229 boolean_t cb_numname;
2230 boolean_t cb_nicenum;
2231 boolean_t cb_sid2posix;
2232 zfs_userquota_prop_t cb_prop;
2233 zfs_sort_column_t *cb_sortcol;
2234 size_t cb_width[USFIELD_LAST];
0b7936d5
AS
2235} us_cbdata_t;
2236
5990da81
YP
2237static boolean_t us_populated = B_FALSE;
2238
0b7936d5
AS
2239typedef struct {
2240 zfs_sort_column_t *si_sortcol;
5990da81 2241 boolean_t si_numname;
0b7936d5
AS
2242} us_sort_info_t;
2243
5990da81
YP
2244static int
2245us_field_index(char *field)
2246{
2247 int i;
2248
2249 for (i = 0; i < USFIELD_LAST; i++) {
2250 if (strcmp(field, us_field_names[i]) == 0)
2251 return (i);
2252 }
2253
2254 return (-1);
2255}
2256
0b7936d5
AS
2257static int
2258us_compare(const void *larg, const void *rarg, void *unused)
2259{
2260 const us_node_t *l = larg;
2261 const us_node_t *r = rarg;
0b7936d5
AS
2262 us_sort_info_t *si = (us_sort_info_t *)unused;
2263 zfs_sort_column_t *sortcol = si->si_sortcol;
5990da81 2264 boolean_t numname = si->si_numname;
0b7936d5
AS
2265 nvlist_t *lnvl = l->usn_nvl;
2266 nvlist_t *rnvl = r->usn_nvl;
5990da81
YP
2267 int rc = 0;
2268 boolean_t lvb, rvb;
0b7936d5
AS
2269
2270 for (; sortcol != NULL; sortcol = sortcol->sc_next) {
2271 char *lvstr = "";
2272 char *rvstr = "";
2273 uint32_t lv32 = 0;
2274 uint32_t rv32 = 0;
2275 uint64_t lv64 = 0;
2276 uint64_t rv64 = 0;
2277 zfs_prop_t prop = sortcol->sc_prop;
2278 const char *propname = NULL;
2279 boolean_t reverse = sortcol->sc_reverse;
2280
2281 switch (prop) {
2282 case ZFS_PROP_TYPE:
2283 propname = "type";
2284 (void) nvlist_lookup_uint32(lnvl, propname, &lv32);
2285 (void) nvlist_lookup_uint32(rnvl, propname, &rv32);
2286 if (rv32 != lv32)
5990da81 2287 rc = (rv32 < lv32) ? 1 : -1;
0b7936d5
AS
2288 break;
2289 case ZFS_PROP_NAME:
2290 propname = "name";
5990da81
YP
2291 if (numname) {
2292 (void) nvlist_lookup_uint64(lnvl, propname,
2293 &lv64);
2294 (void) nvlist_lookup_uint64(rnvl, propname,
2295 &rv64);
2296 if (rv64 != lv64)
2297 rc = (rv64 < lv64) ? 1 : -1;
0b7936d5
AS
2298 } else {
2299 (void) nvlist_lookup_string(lnvl, propname,
2300 &lvstr);
2301 (void) nvlist_lookup_string(rnvl, propname,
2302 &rvstr);
2303 rc = strcmp(lvstr, rvstr);
2304 }
2305 break;
0b7936d5
AS
2306 case ZFS_PROP_USED:
2307 case ZFS_PROP_QUOTA:
5990da81
YP
2308 if (!us_populated)
2309 break;
2310 if (prop == ZFS_PROP_USED)
0b7936d5
AS
2311 propname = "used";
2312 else
2313 propname = "quota";
2314 (void) nvlist_lookup_uint64(lnvl, propname, &lv64);
2315 (void) nvlist_lookup_uint64(rnvl, propname, &rv64);
2316 if (rv64 != lv64)
5990da81
YP
2317 rc = (rv64 < lv64) ? 1 : -1;
2318 break;
0b7936d5
AS
2319 default:
2320 break;
2321 }
2322
5990da81 2323 if (rc != 0) {
0b7936d5
AS
2324 if (rc < 0)
2325 return (reverse ? 1 : -1);
2326 else
2327 return (reverse ? -1 : 1);
2328 }
2329 }
2330
5990da81
YP
2331 /*
2332 * If entries still seem to be the same, check if they are of the same
2333 * type (smbentity is added only if we are doing SID to POSIX ID
2334 * translation where we can have duplicate type/name combinations).
2335 */
2336 if (nvlist_lookup_boolean_value(lnvl, "smbentity", &lvb) == 0 &&
2337 nvlist_lookup_boolean_value(rnvl, "smbentity", &rvb) == 0 &&
2338 lvb != rvb)
2339 return (lvb < rvb ? -1 : 1);
2340
2341 return (0);
0b7936d5
AS
2342}
2343
2344static inline const char *
2345us_type2str(unsigned field_type)
2346{
2347 switch (field_type) {
2348 case USTYPE_PSX_USR:
2349 return ("POSIX User");
2350 case USTYPE_PSX_GRP:
2351 return ("POSIX Group");
2352 case USTYPE_SMB_USR:
2353 return ("SMB User");
2354 case USTYPE_SMB_GRP:
2355 return ("SMB Group");
2356 default:
2357 return ("Undefined");
2358 }
2359}
2360
9babb374
BB
2361static int
2362userspace_cb(void *arg, const char *domain, uid_t rid, uint64_t space)
2363{
0b7936d5
AS
2364 us_cbdata_t *cb = (us_cbdata_t *)arg;
2365 zfs_userquota_prop_t prop = cb->cb_prop;
9babb374 2366 char *name = NULL;
0b7936d5 2367 char *propname;
9babb374 2368 char sizebuf[32];
0b7936d5
AS
2369 us_node_t *node;
2370 uu_avl_pool_t *avl_pool = cb->cb_avl_pool;
2371 uu_avl_t *avl = cb->cb_avl;
2372 uu_avl_index_t idx;
2373 nvlist_t *props;
2374 us_node_t *n;
2375 zfs_sort_column_t *sortcol = cb->cb_sortcol;
5990da81 2376 unsigned type = 0;
0b7936d5
AS
2377 const char *typestr;
2378 size_t namelen;
2379 size_t typelen;
2380 size_t sizelen;
5990da81 2381 int typeidx, nameidx, sizeidx;
0b7936d5 2382 us_sort_info_t sortinfo = { sortcol, cb->cb_numname };
5990da81 2383 boolean_t smbentity = B_FALSE;
9babb374 2384
5990da81
YP
2385 if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0)
2386 nomem();
2387 node = safe_malloc(sizeof (us_node_t));
2388 uu_avl_node_init(node, &node->usn_avlnode, avl_pool);
2389 node->usn_nvl = props;
2390
2391 if (domain != NULL && domain[0] != '\0') {
0b7936d5 2392#ifdef HAVE_IDMAP
5990da81
YP
2393 /* SMB */
2394 char sid[ZFS_MAXNAMELEN + 32];
0b7936d5
AS
2395 uid_t id;
2396 uint64_t classes;
5990da81 2397 int err;
0b7936d5
AS
2398 directory_error_t e;
2399
5990da81
YP
2400 smbentity = B_TRUE;
2401
0b7936d5 2402 (void) snprintf(sid, sizeof (sid), "%s-%u", domain, rid);
5990da81 2403
0b7936d5
AS
2404 if (prop == ZFS_PROP_GROUPUSED || prop == ZFS_PROP_GROUPQUOTA) {
2405 type = USTYPE_SMB_GRP;
2406 err = sid_to_id(sid, B_FALSE, &id);
2407 } else {
2408 type = USTYPE_SMB_USR;
2409 err = sid_to_id(sid, B_TRUE, &id);
2410 }
2411
2412 if (err == 0) {
2413 rid = id;
5990da81
YP
2414 if (!cb->cb_sid2posix) {
2415 e = directory_name_from_sid(NULL, sid, &name,
2416 &classes);
105afebb 2417 if (e != NULL)
5990da81 2418 directory_error_free(e);
5990da81
YP
2419 if (name == NULL)
2420 name = sid;
0b7936d5 2421 }
0b7936d5
AS
2422 }
2423#else
5990da81
YP
2424 nvlist_free(props);
2425 free(node);
2426
0b7936d5
AS
2427 return (-1);
2428#endif /* HAVE_IDMAP */
9babb374
BB
2429 }
2430
5990da81
YP
2431 if (cb->cb_sid2posix || domain == NULL || domain[0] == '\0') {
2432 /* POSIX or -i */
2433 if (prop == ZFS_PROP_GROUPUSED || prop == ZFS_PROP_GROUPQUOTA) {
2434 type = USTYPE_PSX_GRP;
2435 if (!cb->cb_numname) {
2436 struct group *g;
0b7936d5 2437
5990da81
YP
2438 if ((g = getgrgid(rid)) != NULL)
2439 name = g->gr_name;
2440 }
2441 } else {
2442 type = USTYPE_PSX_USR;
2443 if (!cb->cb_numname) {
2444 struct passwd *p;
0b7936d5 2445
5990da81
YP
2446 if ((p = getpwuid(rid)) != NULL)
2447 name = p->pw_name;
2448 }
2449 }
0b7936d5
AS
2450 }
2451
5990da81
YP
2452 /*
2453 * Make sure that the type/name combination is unique when doing
2454 * SID to POSIX ID translation (hence changing the type from SMB to
2455 * POSIX).
2456 */
2457 if (cb->cb_sid2posix &&
2458 nvlist_add_boolean_value(props, "smbentity", smbentity) != 0)
2459 nomem();
2460
2461 /* Calculate/update width of TYPE field */
2462 typestr = us_type2str(type);
2463 typelen = strlen(gettext(typestr));
2464 typeidx = us_field_index("type");
2465 if (typelen > cb->cb_width[typeidx])
2466 cb->cb_width[typeidx] = typelen;
0b7936d5
AS
2467 if (nvlist_add_uint32(props, "type", type) != 0)
2468 nomem();
2469
5990da81
YP
2470 /* Calculate/update width of NAME field */
2471 if ((cb->cb_numname && cb->cb_sid2posix) || name == NULL) {
2472 if (nvlist_add_uint64(props, "name", rid) != 0)
0b7936d5 2473 nomem();
5990da81 2474 namelen = snprintf(NULL, 0, "%u", rid);
0b7936d5
AS
2475 } else {
2476 if (nvlist_add_string(props, "name", name) != 0)
2477 nomem();
2478 namelen = strlen(name);
2479 }
5990da81
YP
2480 nameidx = us_field_index("name");
2481 if (namelen > cb->cb_width[nameidx])
2482 cb->cb_width[nameidx] = namelen;
0b7936d5 2483
5990da81
YP
2484 /*
2485 * Check if this type/name combination is in the list and update it;
2486 * otherwise add new node to the list.
2487 */
2488 if ((n = uu_avl_find(avl, node, &sortinfo, &idx)) == NULL) {
0b7936d5 2489 uu_avl_insert(avl, node, idx);
5990da81 2490 } else {
0b7936d5
AS
2491 nvlist_free(props);
2492 free(node);
2493 node = n;
2494 props = node->usn_nvl;
9babb374 2495 }
9babb374 2496
5990da81
YP
2497 /* Calculate/update width of USED/QUOTA fields */
2498 if (cb->cb_nicenum)
2499 zfs_nicenum(space, sizebuf, sizeof (sizebuf));
2500 else
2501 (void) snprintf(sizebuf, sizeof (sizebuf), "%llu",
2502 (u_longlong_t)space);
2503 sizelen = strlen(sizebuf);
2504 if (prop == ZFS_PROP_USERUSED || prop == ZFS_PROP_GROUPUSED) {
2505 propname = "used";
2506 if (!nvlist_exists(props, "quota"))
2507 (void) nvlist_add_uint64(props, "quota", 0);
2508 } else {
2509 propname = "quota";
2510 if (!nvlist_exists(props, "used"))
2511 (void) nvlist_add_uint64(props, "used", 0);
2512 }
2513 sizeidx = us_field_index(propname);
2514 if (sizelen > cb->cb_width[sizeidx])
2515 cb->cb_width[sizeidx] = sizelen;
2516
0b7936d5
AS
2517 if (nvlist_add_uint64(props, propname, space) != 0)
2518 nomem();
2519
2520 return (0);
2521}
2522
0b7936d5 2523static void
5990da81
YP
2524print_us_node(boolean_t scripted, boolean_t parsable, int *fields, int types,
2525 size_t *width, us_node_t *node)
0b7936d5
AS
2526{
2527 nvlist_t *nvl = node->usn_nvl;
0b7936d5
AS
2528 char valstr[ZFS_MAXNAMELEN];
2529 boolean_t first = B_TRUE;
5990da81
YP
2530 int cfield = 0;
2531 int field;
2532 uint32_t ustype;
2533
2534 /* Check type */
2535 (void) nvlist_lookup_uint32(nvl, "type", &ustype);
2536 if (!(ustype & types))
2537 return;
2538
2539 while ((field = fields[cfield]) != USFIELD_LAST) {
2540 nvpair_t *nvp = NULL;
2541 data_type_t type;
2542 uint32_t val32;
2543 uint64_t val64;
0b7936d5 2544 char *strval = NULL;
5990da81
YP
2545
2546 while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
2547 if (strcmp(nvpair_name(nvp),
2548 us_field_names[field]) == 0)
0b7936d5 2549 break;
0b7936d5
AS
2550 }
2551
5990da81 2552 type = nvpair_type(nvp);
0b7936d5
AS
2553 switch (type) {
2554 case DATA_TYPE_UINT32:
2555 (void) nvpair_value_uint32(nvp, &val32);
2556 break;
2557 case DATA_TYPE_UINT64:
2558 (void) nvpair_value_uint64(nvp, &val64);
2559 break;
2560 case DATA_TYPE_STRING:
2561 (void) nvpair_value_string(nvp, &strval);
2562 break;
2563 default:
5990da81 2564 (void) fprintf(stderr, "invalid data type\n");
0b7936d5
AS
2565 }
2566
2567 switch (field) {
2568 case USFIELD_TYPE:
2569 strval = (char *)us_type2str(val32);
0b7936d5
AS
2570 break;
2571 case USFIELD_NAME:
2572 if (type == DATA_TYPE_UINT64) {
2573 (void) sprintf(valstr, "%llu",
2574 (u_longlong_t) val64);
2575 strval = valstr;
2576 }
0b7936d5
AS
2577 break;
2578 case USFIELD_USED:
2579 case USFIELD_QUOTA:
2580 if (type == DATA_TYPE_UINT64) {
5990da81 2581 if (parsable) {
0b7936d5
AS
2582 (void) sprintf(valstr, "%llu",
2583 (u_longlong_t) val64);
5990da81 2584 } else {
0b7936d5
AS
2585 zfs_nicenum(val64, valstr,
2586 sizeof (valstr));
5990da81
YP
2587 }
2588 if (field == USFIELD_QUOTA &&
2589 strcmp(valstr, "0") == 0)
2590 strval = "none";
2591 else
2592 strval = valstr;
0b7936d5 2593 }
0b7936d5
AS
2594 break;
2595 }
2596
5990da81
YP
2597 if (!first) {
2598 if (scripted)
2599 (void) printf("\t");
0b7936d5 2600 else
5990da81 2601 (void) printf(" ");
0b7936d5 2602 }
5990da81
YP
2603 if (scripted)
2604 (void) printf("%s", strval);
2605 else if (field == USFIELD_TYPE || field == USFIELD_NAME)
2606 (void) printf("%-*s", (int) width[field], strval);
2607 else
2608 (void) printf("%*s", (int) width[field], strval);
0b7936d5
AS
2609
2610 first = B_FALSE;
5990da81 2611 cfield++;
0b7936d5
AS
2612 }
2613
2614 (void) printf("\n");
2615}
2616
2617static void
5990da81
YP
2618print_us(boolean_t scripted, boolean_t parsable, int *fields, int types,
2619 size_t *width, boolean_t rmnode, uu_avl_t *avl)
0b7936d5 2620{
0b7936d5
AS
2621 us_node_t *node;
2622 const char *col;
5990da81
YP
2623 int cfield = 0;
2624 int field;
0b7936d5
AS
2625
2626 if (!scripted) {
2627 boolean_t first = B_TRUE;
5990da81
YP
2628
2629 while ((field = fields[cfield]) != USFIELD_LAST) {
2630 col = gettext(us_field_hdr[field]);
2631 if (field == USFIELD_TYPE || field == USFIELD_NAME) {
2632 (void) printf(first ? "%-*s" : " %-*s",
2633 (int) width[field], col);
2634 } else {
2635 (void) printf(first ? "%*s" : " %*s",
2636 (int) width[field], col);
2637 }
0b7936d5 2638 first = B_FALSE;
5990da81 2639 cfield++;
0b7936d5
AS
2640 }
2641 (void) printf("\n");
2642 }
2643
5990da81
YP
2644 for (node = uu_avl_first(avl); node; node = uu_avl_next(avl, node)) {
2645 print_us_node(scripted, parsable, fields, types, width, node);
0b7936d5
AS
2646 if (rmnode)
2647 nvlist_free(node->usn_nvl);
2648 }
2649}
2650
9babb374
BB
2651static int
2652zfs_do_userspace(int argc, char **argv)
2653{
2654 zfs_handle_t *zhp;
2655 zfs_userquota_prop_t p;
0b7936d5
AS
2656 uu_avl_pool_t *avl_pool;
2657 uu_avl_t *avl_tree;
2658 uu_avl_walk_t *walk;
5990da81
YP
2659 char *delim;
2660 char deffields[] = "type,name,used,quota";
2661 char *ofield = NULL;
2662 char *tfield = NULL;
2663 int cfield = 0;
2664 int fields[256];
2665 int i;
0b7936d5
AS
2666 boolean_t scripted = B_FALSE;
2667 boolean_t prtnum = B_FALSE;
5990da81 2668 boolean_t parsable = B_FALSE;
0b7936d5 2669 boolean_t sid2posix = B_FALSE;
105afebb 2670 int ret = 0;
0b7936d5 2671 int c;
0b7936d5 2672 zfs_sort_column_t *sortcol = NULL;
5990da81 2673 int types = USTYPE_PSX_USR | USTYPE_SMB_USR;
0b7936d5
AS
2674 us_cbdata_t cb;
2675 us_node_t *node;
5990da81
YP
2676 us_node_t *rmnode;
2677 uu_list_pool_t *listpool;
2678 uu_list_t *list;
2679 uu_avl_index_t idx = 0;
2680 uu_list_index_t idx2 = 0;
0b7936d5
AS
2681
2682 if (argc < 2)
2683 usage(B_FALSE);
2684
5990da81
YP
2685 if (strcmp(argv[0], "groupspace") == 0)
2686 /* Toggle default group types */
0b7936d5
AS
2687 types = USTYPE_PSX_GRP | USTYPE_SMB_GRP;
2688
0b7936d5
AS
2689 while ((c = getopt(argc, argv, "nHpo:s:S:t:i")) != -1) {
2690 switch (c) {
2691 case 'n':
2692 prtnum = B_TRUE;
2693 break;
2694 case 'H':
2695 scripted = B_TRUE;
2696 break;
2697 case 'p':
5990da81 2698 parsable = B_TRUE;
0b7936d5
AS
2699 break;
2700 case 'o':
5990da81 2701 ofield = optarg;
0b7936d5
AS
2702 break;
2703 case 's':
0b7936d5
AS
2704 case 'S':
2705 if (zfs_add_sort_column(&sortcol, optarg,
5990da81 2706 c == 's' ? B_FALSE : B_TRUE) != 0) {
0b7936d5 2707 (void) fprintf(stderr,
5990da81 2708 gettext("invalid field '%s'\n"), optarg);
0b7936d5
AS
2709 usage(B_FALSE);
2710 }
2711 break;
2712 case 't':
5990da81 2713 tfield = optarg;
0b7936d5
AS
2714 break;
2715 case 'i':
2716 sid2posix = B_TRUE;
2717 break;
2718 case ':':
2719 (void) fprintf(stderr, gettext("missing argument for "
2720 "'%c' option\n"), optopt);
2721 usage(B_FALSE);
2722 break;
2723 case '?':
2724 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
2725 optopt);
2726 usage(B_FALSE);
2727 }
2728 }
2729
2730 argc -= optind;
2731 argv += optind;
2732
5990da81
YP
2733 if (argc < 1) {
2734 (void) fprintf(stderr, gettext("missing dataset name\n"));
2735 usage(B_FALSE);
2736 }
2737 if (argc > 1) {
2738 (void) fprintf(stderr, gettext("too many arguments\n"));
2739 usage(B_FALSE);
0b7936d5
AS
2740 }
2741
5990da81
YP
2742 /* Use default output fields if not specified using -o */
2743 if (ofield == NULL)
2744 ofield = deffields;
2745 do {
2746 if ((delim = strchr(ofield, ',')) != NULL)
2747 *delim = '\0';
2748 if ((fields[cfield++] = us_field_index(ofield)) == -1) {
2749 (void) fprintf(stderr, gettext("invalid type '%s' "
2750 "for -o option\n"), ofield);
2751 return (-1);
2752 }
2753 if (delim != NULL)
2754 ofield = delim + 1;
2755 } while (delim != NULL);
2756 fields[cfield] = USFIELD_LAST;
2757
2758 /* Override output types (-t option) */
2759 if (tfield != NULL) {
2760 types = 0;
2761
2762 do {
2763 boolean_t found = B_FALSE;
2764
2765 if ((delim = strchr(tfield, ',')) != NULL)
2766 *delim = '\0';
2767 for (i = 0; i < sizeof (us_type_bits) / sizeof (int);
2768 i++) {
2769 if (strcmp(tfield, us_type_names[i]) == 0) {
2770 found = B_TRUE;
2771 types |= us_type_bits[i];
2772 break;
2773 }
2774 }
2775 if (!found) {
2776 (void) fprintf(stderr, gettext("invalid type "
2777 "'%s' for -t option\n"), tfield);
2778 return (-1);
2779 }
2780 if (delim != NULL)
2781 tfield = delim + 1;
2782 } while (delim != NULL);
2783 }
9babb374 2784
5990da81 2785 if ((zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_DATASET)) == NULL)
9babb374
BB
2786 return (1);
2787
0b7936d5 2788 if ((avl_pool = uu_avl_pool_create("us_avl_pool", sizeof (us_node_t),
5990da81 2789 offsetof(us_node_t, usn_avlnode), us_compare, UU_DEFAULT)) == NULL)
0b7936d5
AS
2790 nomem();
2791 if ((avl_tree = uu_avl_create(avl_pool, NULL, UU_DEFAULT)) == NULL)
2792 nomem();
2793
5990da81
YP
2794 /* Always add default sorting columns */
2795 (void) zfs_add_sort_column(&sortcol, "type", B_FALSE);
2796 (void) zfs_add_sort_column(&sortcol, "name", B_FALSE);
2797
2798 cb.cb_sortcol = sortcol;
0b7936d5 2799 cb.cb_numname = prtnum;
5990da81 2800 cb.cb_nicenum = !parsable;
0b7936d5
AS
2801 cb.cb_avl_pool = avl_pool;
2802 cb.cb_avl = avl_tree;
2803 cb.cb_sid2posix = sid2posix;
5990da81
YP
2804
2805 for (i = 0; i < USFIELD_LAST; i++)
2806 cb.cb_width[i] = strlen(gettext(us_field_hdr[i]));
9babb374
BB
2807
2808 for (p = 0; p < ZFS_NUM_USERQUOTA_PROPS; p++) {
5990da81
YP
2809 if (((p == ZFS_PROP_USERUSED || p == ZFS_PROP_USERQUOTA) &&
2810 !(types & (USTYPE_PSX_USR | USTYPE_SMB_USR))) ||
2811 ((p == ZFS_PROP_GROUPUSED || p == ZFS_PROP_GROUPQUOTA) &&
2812 !(types & (USTYPE_PSX_GRP | USTYPE_SMB_GRP))))
0b7936d5 2813 continue;
0b7936d5 2814 cb.cb_prop = p;
105afebb
YP
2815 if ((ret = zfs_userspace(zhp, p, userspace_cb, &cb)) != 0)
2816 return (ret);
9babb374 2817 }
0b7936d5 2818
5990da81 2819 /* Sort the list */
105afebb
YP
2820 if ((node = uu_avl_first(avl_tree)) == NULL)
2821 return (0);
2822
5990da81 2823 us_populated = B_TRUE;
105afebb 2824
5990da81
YP
2825 listpool = uu_list_pool_create("tmplist", sizeof (us_node_t),
2826 offsetof(us_node_t, usn_listnode), NULL, UU_DEFAULT);
2827 list = uu_list_create(listpool, NULL, UU_DEFAULT);
5990da81 2828 uu_list_node_init(node, &node->usn_listnode, listpool);
0b7936d5 2829
5990da81
YP
2830 while (node != NULL) {
2831 rmnode = node;
2832 node = uu_avl_next(avl_tree, node);
2833 uu_avl_remove(avl_tree, rmnode);
2834 if (uu_list_find(list, rmnode, NULL, &idx2) == NULL)
2835 uu_list_insert(list, rmnode, idx2);
2836 }
0b7936d5 2837
5990da81
YP
2838 for (node = uu_list_first(list); node != NULL;
2839 node = uu_list_next(list, node)) {
2840 us_sort_info_t sortinfo = { sortcol, cb.cb_numname };
2841
2842 if (uu_avl_find(avl_tree, node, &sortinfo, &idx) == NULL)
2843 uu_avl_insert(avl_tree, node, idx);
0b7936d5
AS
2844 }
2845
5990da81
YP
2846 uu_list_destroy(list);
2847 uu_list_pool_destroy(listpool);
0b7936d5 2848
5990da81
YP
2849 /* Print and free node nvlist memory */
2850 print_us(scripted, parsable, fields, types, cb.cb_width, B_TRUE,
2851 cb.cb_avl);
0b7936d5 2852
5990da81
YP
2853 zfs_free_sort_columns(sortcol);
2854
2855 /* Clean up the AVL tree */
0b7936d5
AS
2856 if ((walk = uu_avl_walk_start(cb.cb_avl, UU_WALK_ROBUST)) == NULL)
2857 nomem();
2858
2859 while ((node = uu_avl_walk_next(walk)) != NULL) {
2860 uu_avl_remove(cb.cb_avl, node);
2861 free(node);
2862 }
2863
2864 uu_avl_walk_end(walk);
2865 uu_avl_destroy(avl_tree);
2866 uu_avl_pool_destroy(avl_pool);
2867
105afebb 2868 return (ret);
9babb374
BB
2869}
2870
2871/*
54d5378f
YP
2872 * list [-Hp][-r|-d max] [-o property[,...]] [-s property] ... [-S property]
2873 * [-t type[,...]] [filesystem|volume|snapshot] ...
34dc7c2f 2874 *
54d5378f
YP
2875 * -H Scripted mode; elide headers and separate columns by tabs
2876 * -p Display values in parsable (literal) format.
428870ff
BB
2877 * -r Recurse over all children
2878 * -d Limit recursion by depth.
428870ff 2879 * -o Control which fields to display.
34dc7c2f
BB
2880 * -s Specify sort columns, descending order.
2881 * -S Specify sort columns, ascending order.
54d5378f 2882 * -t Control which object types to display.
34dc7c2f 2883 *
54d5378f 2884 * When given no arguments, list all filesystems in the system.
34dc7c2f
BB
2885 * Otherwise, list the specified datasets, optionally recursing down them if
2886 * '-r' is specified.
2887 */
2888typedef struct list_cbdata {
2889 boolean_t cb_first;
54d5378f 2890 boolean_t cb_literal;
34dc7c2f
BB
2891 boolean_t cb_scripted;
2892 zprop_list_t *cb_proplist;
2893} list_cbdata_t;
2894
2895/*
2896 * Given a list of columns to display, output appropriate headers for each one.
2897 */
2898static void
54d5378f 2899print_header(list_cbdata_t *cb)
34dc7c2f 2900{
54d5378f 2901 zprop_list_t *pl = cb->cb_proplist;
34dc7c2f
BB
2902 char headerbuf[ZFS_MAXPROPLEN];
2903 const char *header;
2904 int i;
2905 boolean_t first = B_TRUE;
2906 boolean_t right_justify;
2907
2908 for (; pl != NULL; pl = pl->pl_next) {
2909 if (!first) {
2910 (void) printf(" ");
2911 } else {
2912 first = B_FALSE;
2913 }
2914
2915 right_justify = B_FALSE;
2916 if (pl->pl_prop != ZPROP_INVAL) {
2917 header = zfs_prop_column_name(pl->pl_prop);
2918 right_justify = zfs_prop_align_right(pl->pl_prop);
2919 } else {
2920 for (i = 0; pl->pl_user_prop[i] != '\0'; i++)
2921 headerbuf[i] = toupper(pl->pl_user_prop[i]);
2922 headerbuf[i] = '\0';
2923 header = headerbuf;
2924 }
2925
2926 if (pl->pl_next == NULL && !right_justify)
2927 (void) printf("%s", header);
2928 else if (right_justify)
b8864a23 2929 (void) printf("%*s", (int)pl->pl_width, header);
34dc7c2f 2930 else
b8864a23 2931 (void) printf("%-*s", (int)pl->pl_width, header);
34dc7c2f
BB
2932 }
2933
2934 (void) printf("\n");
2935}
2936
2937/*
2938 * Given a dataset and a list of fields, print out all the properties according
2939 * to the described layout.
2940 */
2941static void
54d5378f 2942print_dataset(zfs_handle_t *zhp, list_cbdata_t *cb)
34dc7c2f 2943{
54d5378f 2944 zprop_list_t *pl = cb->cb_proplist;
34dc7c2f
BB
2945 boolean_t first = B_TRUE;
2946 char property[ZFS_MAXPROPLEN];
2947 nvlist_t *userprops = zfs_get_user_props(zhp);
2948 nvlist_t *propval;
2949 char *propstr;
2950 boolean_t right_justify;
34dc7c2f
BB
2951
2952 for (; pl != NULL; pl = pl->pl_next) {
2953 if (!first) {
54d5378f 2954 if (cb->cb_scripted)
34dc7c2f
BB
2955 (void) printf("\t");
2956 else
2957 (void) printf(" ");
2958 } else {
2959 first = B_FALSE;
2960 }
2961
0cee2406
PJD
2962 if (pl->pl_prop == ZFS_PROP_NAME) {
2963 (void) strlcpy(property, zfs_get_name(zhp),
d1d7e268 2964 sizeof (property));
0cee2406
PJD
2965 propstr = property;
2966 right_justify = zfs_prop_align_right(pl->pl_prop);
2967 } else if (pl->pl_prop != ZPROP_INVAL) {
34dc7c2f 2968 if (zfs_prop_get(zhp, pl->pl_prop, property,
54d5378f 2969 sizeof (property), NULL, NULL, 0,
d1d7e268 2970 cb->cb_literal) != 0)
34dc7c2f
BB
2971 propstr = "-";
2972 else
2973 propstr = property;
34dc7c2f 2974 right_justify = zfs_prop_align_right(pl->pl_prop);
9babb374
BB
2975 } else if (zfs_prop_userquota(pl->pl_user_prop)) {
2976 if (zfs_prop_get_userquota(zhp, pl->pl_user_prop,
54d5378f 2977 property, sizeof (property), cb->cb_literal) != 0)
9babb374
BB
2978 propstr = "-";
2979 else
2980 propstr = property;
2981 right_justify = B_TRUE;
330d06f9
MA
2982 } else if (zfs_prop_written(pl->pl_user_prop)) {
2983 if (zfs_prop_get_written(zhp, pl->pl_user_prop,
54d5378f 2984 property, sizeof (property), cb->cb_literal) != 0)
330d06f9
MA
2985 propstr = "-";
2986 else
2987 propstr = property;
2988 right_justify = B_TRUE;
34dc7c2f
BB
2989 } else {
2990 if (nvlist_lookup_nvlist(userprops,
2991 pl->pl_user_prop, &propval) != 0)
2992 propstr = "-";
2993 else
2994 verify(nvlist_lookup_string(propval,
2995 ZPROP_VALUE, &propstr) == 0);
9babb374 2996 right_justify = B_FALSE;
34dc7c2f
BB
2997 }
2998
34dc7c2f
BB
2999 /*
3000 * If this is being called in scripted mode, or if this is the
3001 * last column and it is left-justified, don't include a width
3002 * format specifier.
3003 */
54d5378f 3004 if (cb->cb_scripted || (pl->pl_next == NULL && !right_justify))
34dc7c2f
BB
3005 (void) printf("%s", propstr);
3006 else if (right_justify)
54d5378f 3007 (void) printf("%*s", (int)pl->pl_width, propstr);
34dc7c2f 3008 else
54d5378f 3009 (void) printf("%-*s", (int)pl->pl_width, propstr);
34dc7c2f
BB
3010 }
3011
3012 (void) printf("\n");
3013}
3014
3015/*
3016 * Generic callback function to list a dataset or snapshot.
3017 */
3018static int
3019list_callback(zfs_handle_t *zhp, void *data)
3020{
3021 list_cbdata_t *cbp = data;
3022
3023 if (cbp->cb_first) {
3024 if (!cbp->cb_scripted)
54d5378f 3025 print_header(cbp);
34dc7c2f
BB
3026 cbp->cb_first = B_FALSE;
3027 }
3028
54d5378f 3029 print_dataset(zhp, cbp);
34dc7c2f
BB
3030
3031 return (0);
3032}
3033
3034static int
3035zfs_do_list(int argc, char **argv)
3036{
3037 int c;
34dc7c2f
BB
3038 static char default_fields[] =
3039 "name,used,available,referenced,mountpoint";
d164b209 3040 int types = ZFS_TYPE_DATASET;
b128c09f 3041 boolean_t types_specified = B_FALSE;
34dc7c2f 3042 char *fields = NULL;
34dc7c2f
BB
3043 list_cbdata_t cb = { 0 };
3044 char *value;
9babb374 3045 int limit = 0;
ad60af8e 3046 int ret = 0;
34dc7c2f 3047 zfs_sort_column_t *sortcol = NULL;
b128c09f 3048 int flags = ZFS_ITER_PROP_LISTSNAPS | ZFS_ITER_ARGS_CAN_BE_PATHS;
34dc7c2f
BB
3049
3050 /* check options */
54d5378f 3051 while ((c = getopt(argc, argv, "HS:d:o:prs:t:")) != -1) {
34dc7c2f
BB
3052 switch (c) {
3053 case 'o':
3054 fields = optarg;
3055 break;
54d5378f
YP
3056 case 'p':
3057 cb.cb_literal = B_TRUE;
3058 flags |= ZFS_ITER_LITERAL_PROPS;
3059 break;
9babb374
BB
3060 case 'd':
3061 limit = parse_depth(optarg, &flags);
3062 break;
34dc7c2f 3063 case 'r':
b128c09f 3064 flags |= ZFS_ITER_RECURSE;
34dc7c2f
BB
3065 break;
3066 case 'H':
54d5378f 3067 cb.cb_scripted = B_TRUE;
34dc7c2f
BB
3068 break;
3069 case 's':
3070 if (zfs_add_sort_column(&sortcol, optarg,
3071 B_FALSE) != 0) {
3072 (void) fprintf(stderr,
3073 gettext("invalid property '%s'\n"), optarg);
3074 usage(B_FALSE);
3075 }
3076 break;
3077 case 'S':
3078 if (zfs_add_sort_column(&sortcol, optarg,
3079 B_TRUE) != 0) {
3080 (void) fprintf(stderr,
3081 gettext("invalid property '%s'\n"), optarg);
3082 usage(B_FALSE);
3083 }
3084 break;
3085 case 't':
3086 types = 0;
b128c09f
BB
3087 types_specified = B_TRUE;
3088 flags &= ~ZFS_ITER_PROP_LISTSNAPS;
34dc7c2f 3089 while (*optarg != '\0') {
b128c09f 3090 static char *type_subopts[] = { "filesystem",
da536844
MA
3091 "volume", "snapshot", "snap", "bookmark",
3092 "all", NULL };
b128c09f 3093
34dc7c2f
BB
3094 switch (getsubopt(&optarg, type_subopts,
3095 &value)) {
3096 case 0:
3097 types |= ZFS_TYPE_FILESYSTEM;
3098 break;
3099 case 1:
3100 types |= ZFS_TYPE_VOLUME;
3101 break;
3102 case 2:
cf81b00a 3103 case 3:
34dc7c2f
BB
3104 types |= ZFS_TYPE_SNAPSHOT;
3105 break;
cf81b00a 3106 case 4:
da536844
MA
3107 types |= ZFS_TYPE_BOOKMARK;
3108 break;
3109 case 5:
3110 types = ZFS_TYPE_DATASET |
3111 ZFS_TYPE_BOOKMARK;
b128c09f 3112 break;
34dc7c2f
BB
3113 default:
3114 (void) fprintf(stderr,
3115 gettext("invalid type '%s'\n"),
3116 value);
3117 usage(B_FALSE);
3118 }
3119 }
3120 break;
3121 case ':':
3122 (void) fprintf(stderr, gettext("missing argument for "
3123 "'%c' option\n"), optopt);
3124 usage(B_FALSE);
3125 break;
3126 case '?':
3127 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
3128 optopt);
3129 usage(B_FALSE);
3130 }
3131 }
3132
3133 argc -= optind;
3134 argv += optind;
3135
3136 if (fields == NULL)
b128c09f
BB
3137 fields = default_fields;
3138
0cee2406
PJD
3139 /*
3140 * If we are only going to list snapshot names and sort by name,
3141 * then we can use faster version.
3142 */
3143 if (strcmp(fields, "name") == 0 && zfs_sort_only_by_name(sortcol))
3144 flags |= ZFS_ITER_SIMPLE;
3145
b128c09f
BB
3146 /*
3147 * If "-o space" and no types were specified, don't display snapshots.
3148 */
3149 if (strcmp(fields, "space") == 0 && types_specified == B_FALSE)
3150 types &= ~ZFS_TYPE_SNAPSHOT;
34dc7c2f
BB
3151
3152 /*
3153 * If the user specifies '-o all', the zprop_get_list() doesn't
3154 * normally include the name of the dataset. For 'zfs list', we always
3155 * want this property to be first.
3156 */
3157 if (zprop_get_list(g_zfs, fields, &cb.cb_proplist, ZFS_TYPE_DATASET)
3158 != 0)
3159 usage(B_FALSE);
3160
34dc7c2f
BB
3161 cb.cb_first = B_TRUE;
3162
b128c09f 3163 ret = zfs_for_each(argc, argv, flags, types, sortcol, &cb.cb_proplist,
9babb374 3164 limit, list_callback, &cb);
34dc7c2f
BB
3165
3166 zprop_free_list(cb.cb_proplist);
3167 zfs_free_sort_columns(sortcol);
3168
3169 if (ret == 0 && cb.cb_first && !cb.cb_scripted)
42cb3819 3170 (void) fprintf(stderr, gettext("no datasets available\n"));
34dc7c2f
BB
3171
3172 return (ret);
3173}
3174
3175/*
db49968e
ES
3176 * zfs rename [-f] <fs | snap | vol> <fs | snap | vol>
3177 * zfs rename [-f] -p <fs | vol> <fs | vol>
34dc7c2f
BB
3178 * zfs rename -r <snap> <snap>
3179 *
3180 * Renames the given dataset to another of the same type.
3181 *
3182 * The '-p' flag creates all the non-existing ancestors of the target first.
3183 */
3184/* ARGSUSED */
3185static int
3186zfs_do_rename(int argc, char **argv)
3187{
3188 zfs_handle_t *zhp;
3189 int c;
ad60af8e 3190 int ret = 0;
34dc7c2f
BB
3191 boolean_t recurse = B_FALSE;
3192 boolean_t parents = B_FALSE;
db49968e 3193 boolean_t force_unmount = B_FALSE;
34dc7c2f
BB
3194
3195 /* check options */
db49968e 3196 while ((c = getopt(argc, argv, "prf")) != -1) {
34dc7c2f
BB
3197 switch (c) {
3198 case 'p':
3199 parents = B_TRUE;
3200 break;
3201 case 'r':
3202 recurse = B_TRUE;
3203 break;
db49968e
ES
3204 case 'f':
3205 force_unmount = B_TRUE;
3206 break;
34dc7c2f
BB
3207 case '?':
3208 default:
3209 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
3210 optopt);
3211 usage(B_FALSE);
3212 }
3213 }
3214
3215 argc -= optind;
3216 argv += optind;
3217
3218 /* check number of arguments */
3219 if (argc < 1) {
3220 (void) fprintf(stderr, gettext("missing source dataset "
3221 "argument\n"));
3222 usage(B_FALSE);
3223 }
3224 if (argc < 2) {
3225 (void) fprintf(stderr, gettext("missing target dataset "
3226 "argument\n"));
3227 usage(B_FALSE);
3228 }
3229 if (argc > 2) {
3230 (void) fprintf(stderr, gettext("too many arguments\n"));
3231 usage(B_FALSE);
3232 }
3233
3234 if (recurse && parents) {
3235 (void) fprintf(stderr, gettext("-p and -r options are mutually "
3236 "exclusive\n"));
3237 usage(B_FALSE);
3238 }
3239
3240 if (recurse && strchr(argv[0], '@') == 0) {
3241 (void) fprintf(stderr, gettext("source dataset for recursive "
3242 "rename must be a snapshot\n"));
3243 usage(B_FALSE);
3244 }
3245
3246 if ((zhp = zfs_open(g_zfs, argv[0], parents ? ZFS_TYPE_FILESYSTEM |
3247 ZFS_TYPE_VOLUME : ZFS_TYPE_DATASET)) == NULL)
3248 return (1);
3249
3250 /* If we were asked and the name looks good, try to create ancestors. */
3251 if (parents && zfs_name_valid(argv[1], zfs_get_type(zhp)) &&
3252 zfs_create_ancestors(g_zfs, argv[1]) != 0) {
3253 zfs_close(zhp);
3254 return (1);
3255 }
3256
db49968e 3257 ret = (zfs_rename(zhp, argv[1], recurse, force_unmount) != 0);
34dc7c2f
BB
3258
3259 zfs_close(zhp);
3260 return (ret);
3261}
3262
3263/*
3264 * zfs promote <fs>
3265 *
3266 * Promotes the given clone fs to be the parent
3267 */
3268/* ARGSUSED */
3269static int
3270zfs_do_promote(int argc, char **argv)
3271{
3272 zfs_handle_t *zhp;
ad60af8e 3273 int ret = 0;
34dc7c2f
BB
3274
3275 /* check options */
3276 if (argc > 1 && argv[1][0] == '-') {
3277 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
3278 argv[1][1]);
3279 usage(B_FALSE);
3280 }
3281
3282 /* check number of arguments */
3283 if (argc < 2) {
3284 (void) fprintf(stderr, gettext("missing clone filesystem"
3285 " argument\n"));
3286 usage(B_FALSE);
3287 }
3288 if (argc > 2) {
3289 (void) fprintf(stderr, gettext("too many arguments\n"));
3290 usage(B_FALSE);
3291 }
3292
3293 zhp = zfs_open(g_zfs, argv[1], ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME);
3294 if (zhp == NULL)
3295 return (1);
3296
3297 ret = (zfs_promote(zhp) != 0);
3298
3299
3300 zfs_close(zhp);
3301 return (ret);
3302}
3303
3304/*
3305 * zfs rollback [-rRf] <snapshot>
3306 *
428870ff
BB
3307 * -r Delete any intervening snapshots before doing rollback
3308 * -R Delete any snapshots and their clones
3309 * -f ignored for backwards compatability
34dc7c2f
BB
3310 *
3311 * Given a filesystem, rollback to a specific snapshot, discarding any changes
3312 * since then and making it the active dataset. If more recent snapshots exist,
3313 * the command will complain unless the '-r' flag is given.
3314 */
3315typedef struct rollback_cbdata {
3316 uint64_t cb_create;
3317 boolean_t cb_first;
3318 int cb_doclones;
3319 char *cb_target;
3320 int cb_error;
3321 boolean_t cb_recurse;
34dc7c2f
BB
3322} rollback_cbdata_t;
3323
da536844
MA
3324static int
3325rollback_check_dependent(zfs_handle_t *zhp, void *data)
3326{
3327 rollback_cbdata_t *cbp = data;
3328
3329 if (cbp->cb_first && cbp->cb_recurse) {
3330 (void) fprintf(stderr, gettext("cannot rollback to "
3331 "'%s': clones of previous snapshots exist\n"),
3332 cbp->cb_target);
3333 (void) fprintf(stderr, gettext("use '-R' to "
3334 "force deletion of the following clones and "
3335 "dependents:\n"));
3336 cbp->cb_first = 0;
3337 cbp->cb_error = 1;
3338 }
3339
3340 (void) fprintf(stderr, "%s\n", zfs_get_name(zhp));
3341
3342 zfs_close(zhp);
3343 return (0);
3344}
9b67f605
MA
3345
3346
34dc7c2f
BB
3347/*
3348 * Report any snapshots more recent than the one specified. Used when '-r' is
3349 * not specified. We reuse this same callback for the snapshot dependents - if
3350 * 'cb_dependent' is set, then this is a dependent and we should report it
3351 * without checking the transaction group.
3352 */
3353static int
3354rollback_check(zfs_handle_t *zhp, void *data)
3355{
3356 rollback_cbdata_t *cbp = data;
3357
3358 if (cbp->cb_doclones) {
3359 zfs_close(zhp);
3360 return (0);
3361 }
3362
da536844
MA
3363 if (zfs_prop_get_int(zhp, ZFS_PROP_CREATETXG) > cbp->cb_create) {
3364 if (cbp->cb_first && !cbp->cb_recurse) {
3365 (void) fprintf(stderr, gettext("cannot "
3366 "rollback to '%s': more recent snapshots "
3367 "or bookmarks exist\n"),
34dc7c2f 3368 cbp->cb_target);
da536844
MA
3369 (void) fprintf(stderr, gettext("use '-r' to "
3370 "force deletion of the following "
3371 "snapshots and bookmarks:\n"));
34dc7c2f
BB
3372 cbp->cb_first = 0;
3373 cbp->cb_error = 1;
3374 }
3375
da536844
MA
3376 if (cbp->cb_recurse) {
3377 if (zfs_iter_dependents(zhp, B_TRUE,
3378 rollback_check_dependent, cbp) != 0) {
3379 zfs_close(zhp);
3380 return (-1);
3381 }
3382 } else {
3383 (void) fprintf(stderr, "%s\n",
3384 zfs_get_name(zhp));
3385 }
34dc7c2f 3386 }
34dc7c2f
BB
3387 zfs_close(zhp);
3388 return (0);
3389}
3390
3391static int
3392zfs_do_rollback(int argc, char **argv)
3393{
ad60af8e 3394 int ret = 0;
34dc7c2f
BB
3395 int c;
3396 boolean_t force = B_FALSE;
3397 rollback_cbdata_t cb = { 0 };
3398 zfs_handle_t *zhp, *snap;
3399 char parentname[ZFS_MAXNAMELEN];
3400 char *delim;
3401
3402 /* check options */
3403 while ((c = getopt(argc, argv, "rRf")) != -1) {
3404 switch (c) {
3405 case 'r':
3406 cb.cb_recurse = 1;
3407 break;
3408 case 'R':
3409 cb.cb_recurse = 1;
3410 cb.cb_doclones = 1;
3411 break;
3412 case 'f':
3413 force = B_TRUE;
3414 break;
3415 case '?':
3416 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
3417 optopt);
3418 usage(B_FALSE);
3419 }
3420 }
3421
3422 argc -= optind;
3423 argv += optind;
3424
3425 /* check number of arguments */
3426 if (argc < 1) {
3427 (void) fprintf(stderr, gettext("missing dataset argument\n"));
3428 usage(B_FALSE);
3429 }
3430 if (argc > 1) {
3431 (void) fprintf(stderr, gettext("too many arguments\n"));
3432 usage(B_FALSE);
3433 }
3434
3435 /* open the snapshot */
3436 if ((snap = zfs_open(g_zfs, argv[0], ZFS_TYPE_SNAPSHOT)) == NULL)
3437 return (1);
3438
3439 /* open the parent dataset */
3440 (void) strlcpy(parentname, argv[0], sizeof (parentname));
3441 verify((delim = strrchr(parentname, '@')) != NULL);
3442 *delim = '\0';
3443 if ((zhp = zfs_open(g_zfs, parentname, ZFS_TYPE_DATASET)) == NULL) {
3444 zfs_close(snap);
3445 return (1);
3446 }
3447
3448 /*
3449 * Check for more recent snapshots and/or clones based on the presence
3450 * of '-r' and '-R'.
3451 */
3452 cb.cb_target = argv[0];
3453 cb.cb_create = zfs_prop_get_int(snap, ZFS_PROP_CREATETXG);
3454 cb.cb_first = B_TRUE;
3455 cb.cb_error = 0;
da536844
MA
3456 if ((ret = zfs_iter_snapshots(zhp, B_FALSE, rollback_check, &cb)) != 0)
3457 goto out;
3458 if ((ret = zfs_iter_bookmarks(zhp, rollback_check, &cb)) != 0)
34dc7c2f
BB
3459 goto out;
3460
3461 if ((ret = cb.cb_error) != 0)
3462 goto out;
3463
3464 /*
3465 * Rollback parent to the given snapshot.
3466 */
3467 ret = zfs_rollback(zhp, snap, force);
3468
3469out:
3470 zfs_close(snap);
3471 zfs_close(zhp);
3472
3473 if (ret == 0)
3474 return (0);
3475 else
3476 return (1);
3477}
3478
3479/*
3480 * zfs set property=value { fs | snap | vol } ...
3481 *
3482 * Sets the given property for all datasets specified on the command line.
3483 */
3484typedef struct set_cbdata {
3485 char *cb_propname;
3486 char *cb_value;
3487} set_cbdata_t;
3488
3489static int
3490set_callback(zfs_handle_t *zhp, void *data)
3491{
3492 set_cbdata_t *cbp = data;
3493
3494 if (zfs_prop_set(zhp, cbp->cb_propname, cbp->cb_value) != 0) {
3495 switch (libzfs_errno(g_zfs)) {
3496 case EZFS_MOUNTFAILED:
3497 (void) fprintf(stderr, gettext("property may be set "
3498 "but unable to remount filesystem\n"));
3499 break;
3500 case EZFS_SHARENFSFAILED:
3501 (void) fprintf(stderr, gettext("property may be set "
3502 "but unable to reshare filesystem\n"));
3503 break;
3504 }
3505 return (1);
3506 }
3507 return (0);
3508}
3509
3510static int
3511zfs_do_set(int argc, char **argv)
3512{
3513 set_cbdata_t cb;
ad60af8e 3514 int ret = 0;
34dc7c2f
BB
3515
3516 /* check for options */
3517 if (argc > 1 && argv[1][0] == '-') {
3518 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
3519 argv[1][1]);
3520 usage(B_FALSE);
3521 }
3522
3523 /* check number of arguments */
3524 if (argc < 2) {
3525 (void) fprintf(stderr, gettext("missing property=value "
3526 "argument\n"));
3527 usage(B_FALSE);
3528 }
3529 if (argc < 3) {
3530 (void) fprintf(stderr, gettext("missing dataset name\n"));
3531 usage(B_FALSE);
3532 }
3533
3534 /* validate property=value argument */
3535 cb.cb_propname = argv[1];
b128c09f
BB
3536 if (((cb.cb_value = strchr(cb.cb_propname, '=')) == NULL) ||
3537 (cb.cb_value[1] == '\0')) {
34dc7c2f
BB
3538 (void) fprintf(stderr, gettext("missing value in "
3539 "property=value argument\n"));
3540 usage(B_FALSE);
3541 }
3542
3543 *cb.cb_value = '\0';
3544 cb.cb_value++;
3545
3546 if (*cb.cb_propname == '\0') {
3547 (void) fprintf(stderr,
3548 gettext("missing property in property=value argument\n"));
3549 usage(B_FALSE);
3550 }
3551
b8864a23 3552 ret = zfs_for_each(argc - 2, argv + 2, 0,
9babb374 3553 ZFS_TYPE_DATASET, NULL, NULL, 0, set_callback, &cb);
34dc7c2f
BB
3554
3555 return (ret);
3556}
3557
6f1ffb06
MA
3558typedef struct snap_cbdata {
3559 nvlist_t *sd_nvl;
3560 boolean_t sd_recursive;
3561 const char *sd_snapname;
3562} snap_cbdata_t;
3563
3564static int
3565zfs_snapshot_cb(zfs_handle_t *zhp, void *arg)
3566{
3567 snap_cbdata_t *sd = arg;
3568 char *name;
3569 int rv = 0;
3570 int error;
3571
96c2e961
KW
3572 if (sd->sd_recursive &&
3573 zfs_prop_get_int(zhp, ZFS_PROP_INCONSISTENT) != 0) {
3574 zfs_close(zhp);
3575 return (0);
3576 }
3577
6f1ffb06
MA
3578 error = asprintf(&name, "%s@%s", zfs_get_name(zhp), sd->sd_snapname);
3579 if (error == -1)
3580 nomem();
3581 fnvlist_add_boolean(sd->sd_nvl, name);
3582 free(name);
3583
3584 if (sd->sd_recursive)
3585 rv = zfs_iter_filesystems(zhp, zfs_snapshot_cb, sd);
3586 zfs_close(zhp);
3587 return (rv);
3588}
3589
34dc7c2f 3590/*
b128c09f 3591 * zfs snapshot [-r] [-o prop=value] ... <fs@snap>
34dc7c2f
BB
3592 *
3593 * Creates a snapshot with the given name. While functionally equivalent to
3594 * 'zfs create', it is a separate command to differentiate intent.
3595 */
3596static int
3597zfs_do_snapshot(int argc, char **argv)
3598{
ad60af8e 3599 int ret = 0;
b8864a23 3600 signed char c;
b128c09f 3601 nvlist_t *props;
6f1ffb06
MA
3602 snap_cbdata_t sd = { 0 };
3603 boolean_t multiple_snaps = B_FALSE;
b128c09f 3604
428870ff
BB
3605 if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0)
3606 nomem();
6f1ffb06
MA
3607 if (nvlist_alloc(&sd.sd_nvl, NV_UNIQUE_NAME, 0) != 0)
3608 nomem();
34dc7c2f
BB
3609
3610 /* check options */
b128c09f 3611 while ((c = getopt(argc, argv, "ro:")) != -1) {
34dc7c2f 3612 switch (c) {
b128c09f
BB
3613 case 'o':
3614 if (parseprop(props))
3615 return (1);
3616 break;
34dc7c2f 3617 case 'r':
6f1ffb06
MA
3618 sd.sd_recursive = B_TRUE;
3619 multiple_snaps = B_TRUE;
34dc7c2f
BB
3620 break;
3621 case '?':
3622 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
3623 optopt);
b128c09f 3624 goto usage;
34dc7c2f
BB
3625 }
3626 }
3627
3628 argc -= optind;
3629 argv += optind;
3630
3631 /* check number of arguments */
3632 if (argc < 1) {
3633 (void) fprintf(stderr, gettext("missing snapshot argument\n"));
b128c09f 3634 goto usage;
34dc7c2f 3635 }
6f1ffb06
MA
3636
3637 if (argc > 1)
3638 multiple_snaps = B_TRUE;
3639 for (; argc > 0; argc--, argv++) {
3640 char *atp;
3641 zfs_handle_t *zhp;
3642
3643 atp = strchr(argv[0], '@');
3644 if (atp == NULL)
3645 goto usage;
3646 *atp = '\0';
3647 sd.sd_snapname = atp + 1;
3648 zhp = zfs_open(g_zfs, argv[0],
3649 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME);
3650 if (zhp == NULL)
3651 goto usage;
3652 if (zfs_snapshot_cb(zhp, &sd) != 0)
3653 goto usage;
34dc7c2f
BB
3654 }
3655
6f1ffb06
MA
3656 ret = zfs_snapshot_nvl(g_zfs, sd.sd_nvl, props);
3657 nvlist_free(sd.sd_nvl);
b128c09f 3658 nvlist_free(props);
6f1ffb06 3659 if (ret != 0 && multiple_snaps)
34dc7c2f
BB
3660 (void) fprintf(stderr, gettext("no snapshots were created\n"));
3661 return (ret != 0);
b128c09f
BB
3662
3663usage:
6f1ffb06 3664 nvlist_free(sd.sd_nvl);
b128c09f
BB
3665 nvlist_free(props);
3666 usage(B_FALSE);
3667 return (-1);
34dc7c2f
BB
3668}
3669
3670/*
34dc7c2f
BB
3671 * Send a backup stream to stdout.
3672 */
3673static int
3674zfs_do_send(int argc, char **argv)
3675{
3676 char *fromname = NULL;
3677 char *toname = NULL;
3678 char *cp;
3679 zfs_handle_t *zhp;
428870ff 3680 sendflags_t flags = { 0 };
34dc7c2f 3681 int c, err;
330d06f9 3682 nvlist_t *dbgnv = NULL;
428870ff 3683 boolean_t extraverbose = B_FALSE;
34dc7c2f
BB
3684
3685 /* check options */
9b67f605 3686 while ((c = getopt(argc, argv, ":i:I:RDpvnPe")) != -1) {
34dc7c2f
BB
3687 switch (c) {
3688 case 'i':
3689 if (fromname)
3690 usage(B_FALSE);
3691 fromname = optarg;
3692 break;
3693 case 'I':
3694 if (fromname)
3695 usage(B_FALSE);
3696 fromname = optarg;
428870ff 3697 flags.doall = B_TRUE;
34dc7c2f
BB
3698 break;
3699 case 'R':
428870ff
BB
3700 flags.replicate = B_TRUE;
3701 break;
3702 case 'p':
3703 flags.props = B_TRUE;
34dc7c2f 3704 break;
330d06f9
MA
3705 case 'P':
3706 flags.parsable = B_TRUE;
3707 flags.verbose = B_TRUE;
3708 break;
34dc7c2f 3709 case 'v':
428870ff
BB
3710 if (flags.verbose)
3711 extraverbose = B_TRUE;
3712 flags.verbose = B_TRUE;
37abac6d 3713 flags.progress = B_TRUE;
428870ff
BB
3714 break;
3715 case 'D':
3716 flags.dedup = B_TRUE;
34dc7c2f 3717 break;
330d06f9
MA
3718 case 'n':
3719 flags.dryrun = B_TRUE;
3720 break;
9b67f605
MA
3721 case 'e':
3722 flags.embed_data = B_TRUE;
3723 break;
34dc7c2f
BB
3724 case ':':
3725 (void) fprintf(stderr, gettext("missing argument for "
3726 "'%c' option\n"), optopt);
3727 usage(B_FALSE);
3728 break;
3729 case '?':
3730 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
3731 optopt);
3732 usage(B_FALSE);
3733 }
3734 }
3735
3736 argc -= optind;
3737 argv += optind;
3738
3739 /* check number of arguments */
3740 if (argc < 1) {
3741 (void) fprintf(stderr, gettext("missing snapshot argument\n"));
3742 usage(B_FALSE);
3743 }
3744 if (argc > 1) {
3745 (void) fprintf(stderr, gettext("too many arguments\n"));
3746 usage(B_FALSE);
3747 }
3748
330d06f9 3749 if (!flags.dryrun && isatty(STDOUT_FILENO)) {
34dc7c2f
BB
3750 (void) fprintf(stderr,
3751 gettext("Error: Stream can not be written to a terminal.\n"
3752 "You must redirect standard output.\n"));
3753 return (1);
3754 }
3755
da536844
MA
3756 /*
3757 * Special case sending a filesystem, or from a bookmark.
3758 */
3759 if (strchr(argv[0], '@') == NULL ||
3760 (fromname && strchr(fromname, '#') != NULL)) {
3761 char frombuf[ZFS_MAXNAMELEN];
9b67f605 3762 enum lzc_send_flags lzc_flags = 0;
da536844
MA
3763
3764 if (flags.replicate || flags.doall || flags.props ||
3765 flags.dedup || flags.dryrun || flags.verbose ||
3766 flags.progress) {
3767 (void) fprintf(stderr,
3768 gettext("Error: "
3769 "Unsupported flag with filesystem or bookmark.\n"));
3770 return (1);
3771 }
3772
3773 zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_DATASET);
3774 if (zhp == NULL)
3775 return (1);
3776
9b67f605
MA
3777 if (flags.embed_data)
3778 lzc_flags |= LZC_SEND_FLAG_EMBED_DATA;
3779
da536844
MA
3780 if (fromname != NULL &&
3781 (fromname[0] == '#' || fromname[0] == '@')) {
3782 /*
3783 * Incremental source name begins with # or @.
3784 * Default to same fs as target.
3785 */
3786 (void) strncpy(frombuf, argv[0], sizeof (frombuf));
3787 cp = strchr(frombuf, '@');
3788 if (cp != NULL)
3789 *cp = '\0';
3790 (void) strlcat(frombuf, fromname, sizeof (frombuf));
3791 fromname = frombuf;
3792 }
9b67f605 3793 err = zfs_send_one(zhp, fromname, STDOUT_FILENO, lzc_flags);
da536844
MA
3794 zfs_close(zhp);
3795 return (err != 0);
34dc7c2f 3796 }
da536844
MA
3797
3798 cp = strchr(argv[0], '@');
0b7936d5
AS
3799 *cp = '\0';
3800 toname = cp + 1;
3801 zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME);
3802 if (zhp == NULL)
3803 return (1);
3804
3805 /*
3806 * If they specified the full path to the snapshot, chop off
3807 * everything except the short name of the snapshot, but special
3808 * case if they specify the origin.
3809 */
3810 if (fromname && (cp = strchr(fromname, '@')) != NULL) {
3811 char origin[ZFS_MAXNAMELEN];
3812 zprop_source_t src;
3813
3814 (void) zfs_prop_get(zhp, ZFS_PROP_ORIGIN,
3815 origin, sizeof (origin), &src, NULL, 0, B_FALSE);
3816
3817 if (strcmp(origin, fromname) == 0) {
3818 fromname = NULL;
3819 flags.fromorigin = B_TRUE;
3820 } else {
3821 *cp = '\0';
3822 if (cp != fromname && strcmp(argv[0], fromname)) {
3823 (void) fprintf(stderr,
3824 gettext("incremental source must be "
3825 "in same filesystem\n"));
3826 usage(B_FALSE);
3827 }
3828 fromname = cp + 1;
3829 if (strchr(fromname, '@') || strchr(fromname, '/')) {
3830 (void) fprintf(stderr,
3831 gettext("invalid incremental source\n"));
3832 usage(B_FALSE);
3833 }
3834 }
3835 }
3836
3837 if (flags.replicate && fromname == NULL)
3838 flags.doall = B_TRUE;
3839
330d06f9 3840 err = zfs_send(zhp, fromname, toname, &flags, STDOUT_FILENO, NULL, 0,
0b7936d5
AS
3841 extraverbose ? &dbgnv : NULL);
3842
330d06f9 3843 if (extraverbose && dbgnv != NULL) {
0b7936d5
AS
3844 /*
3845 * dump_nvlist prints to stdout, but that's been
3846 * redirected to a file. Make it print to stderr
3847 * instead.
3848 */
3849 (void) dup2(STDERR_FILENO, STDOUT_FILENO);
3850 dump_nvlist(dbgnv, 0);
3851 nvlist_free(dbgnv);
3852 }
3853 zfs_close(zhp);
3854
3855 return (err != 0);
3856}
3857
3858/*
3859 * zfs receive [-vnFu] [-d | -e] <fs@snap>
3860 *
3861 * Restore a backup stream from stdin.
3862 */
3863static int
3864zfs_do_receive(int argc, char **argv)
3865{
3866 int c, err;
3867 recvflags_t flags = { 0 };
3868
3869 /* check options */
3870 while ((c = getopt(argc, argv, ":denuvF")) != -1) {
3871 switch (c) {
3872 case 'd':
3873 flags.isprefix = B_TRUE;
3874 break;
3875 case 'e':
3876 flags.isprefix = B_TRUE;
3877 flags.istail = B_TRUE;
3878 break;
3879 case 'n':
3880 flags.dryrun = B_TRUE;
3881 break;
3882 case 'u':
3883 flags.nomount = B_TRUE;
3884 break;
3885 case 'v':
3886 flags.verbose = B_TRUE;
3887 break;
3888 case 'F':
3889 flags.force = B_TRUE;
3890 break;
3891 case ':':
3892 (void) fprintf(stderr, gettext("missing argument for "
3893 "'%c' option\n"), optopt);
3894 usage(B_FALSE);
3895 break;
3896 case '?':
3897 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
3898 optopt);
3899 usage(B_FALSE);
3900 }
3901 }
3902
3903 argc -= optind;
3904 argv += optind;
3905
3906 /* check number of arguments */
3907 if (argc < 1) {
3908 (void) fprintf(stderr, gettext("missing snapshot argument\n"));
3909 usage(B_FALSE);
3910 }
3911 if (argc > 1) {
3912 (void) fprintf(stderr, gettext("too many arguments\n"));
3913 usage(B_FALSE);
3914 }
3915
3916 if (isatty(STDIN_FILENO)) {
3917 (void) fprintf(stderr,
3918 gettext("Error: Backup stream can not be read "
3919 "from a terminal.\n"
3920 "You must redirect standard input.\n"));
3921 return (1);
3922 }
3923
330d06f9 3924 err = zfs_receive(g_zfs, argv[0], &flags, STDIN_FILENO, NULL);
0b7936d5
AS
3925
3926 return (err != 0);
3927}
3928
3929/*
3930 * allow/unallow stuff
3931 */
3932/* copied from zfs/sys/dsl_deleg.h */
3933#define ZFS_DELEG_PERM_CREATE "create"
3934#define ZFS_DELEG_PERM_DESTROY "destroy"
3935#define ZFS_DELEG_PERM_SNAPSHOT "snapshot"
3936#define ZFS_DELEG_PERM_ROLLBACK "rollback"
3937#define ZFS_DELEG_PERM_CLONE "clone"
3938#define ZFS_DELEG_PERM_PROMOTE "promote"
3939#define ZFS_DELEG_PERM_RENAME "rename"
3940#define ZFS_DELEG_PERM_MOUNT "mount"
3941#define ZFS_DELEG_PERM_SHARE "share"
3942#define ZFS_DELEG_PERM_SEND "send"
3943#define ZFS_DELEG_PERM_RECEIVE "receive"
3944#define ZFS_DELEG_PERM_ALLOW "allow"
3945#define ZFS_DELEG_PERM_USERPROP "userprop"
3946#define ZFS_DELEG_PERM_VSCAN "vscan" /* ??? */
3947#define ZFS_DELEG_PERM_USERQUOTA "userquota"
3948#define ZFS_DELEG_PERM_GROUPQUOTA "groupquota"
3949#define ZFS_DELEG_PERM_USERUSED "userused"
3950#define ZFS_DELEG_PERM_GROUPUSED "groupused"
3951#define ZFS_DELEG_PERM_HOLD "hold"
3952#define ZFS_DELEG_PERM_RELEASE "release"
3953#define ZFS_DELEG_PERM_DIFF "diff"
da536844 3954#define ZFS_DELEG_PERM_BOOKMARK "bookmark"
0b7936d5
AS
3955
3956#define ZFS_NUM_DELEG_NOTES ZFS_DELEG_NOTE_NONE
3957
3958static zfs_deleg_perm_tab_t zfs_deleg_perm_tbl[] = {
3959 { ZFS_DELEG_PERM_ALLOW, ZFS_DELEG_NOTE_ALLOW },
3960 { ZFS_DELEG_PERM_CLONE, ZFS_DELEG_NOTE_CLONE },
3961 { ZFS_DELEG_PERM_CREATE, ZFS_DELEG_NOTE_CREATE },
3962 { ZFS_DELEG_PERM_DESTROY, ZFS_DELEG_NOTE_DESTROY },
3963 { ZFS_DELEG_PERM_DIFF, ZFS_DELEG_NOTE_DIFF},
3964 { ZFS_DELEG_PERM_HOLD, ZFS_DELEG_NOTE_HOLD },
3965 { ZFS_DELEG_PERM_MOUNT, ZFS_DELEG_NOTE_MOUNT },
3966 { ZFS_DELEG_PERM_PROMOTE, ZFS_DELEG_NOTE_PROMOTE },
3967 { ZFS_DELEG_PERM_RECEIVE, ZFS_DELEG_NOTE_RECEIVE },
3968 { ZFS_DELEG_PERM_RELEASE, ZFS_DELEG_NOTE_RELEASE },
3969 { ZFS_DELEG_PERM_RENAME, ZFS_DELEG_NOTE_RENAME },
3970 { ZFS_DELEG_PERM_ROLLBACK, ZFS_DELEG_NOTE_ROLLBACK },
3971 { ZFS_DELEG_PERM_SEND, ZFS_DELEG_NOTE_SEND },
3972 { ZFS_DELEG_PERM_SHARE, ZFS_DELEG_NOTE_SHARE },
3973 { ZFS_DELEG_PERM_SNAPSHOT, ZFS_DELEG_NOTE_SNAPSHOT },
da536844 3974 { ZFS_DELEG_PERM_BOOKMARK, ZFS_DELEG_NOTE_BOOKMARK },
0b7936d5
AS
3975
3976 { ZFS_DELEG_PERM_GROUPQUOTA, ZFS_DELEG_NOTE_GROUPQUOTA },
3977 { ZFS_DELEG_PERM_GROUPUSED, ZFS_DELEG_NOTE_GROUPUSED },
3978 { ZFS_DELEG_PERM_USERPROP, ZFS_DELEG_NOTE_USERPROP },
3979 { ZFS_DELEG_PERM_USERQUOTA, ZFS_DELEG_NOTE_USERQUOTA },
3980 { ZFS_DELEG_PERM_USERUSED, ZFS_DELEG_NOTE_USERUSED },
3981 { NULL, ZFS_DELEG_NOTE_NONE }
3982};
3983
3984/* permission structure */
3985typedef struct deleg_perm {
3986 zfs_deleg_who_type_t dp_who_type;
3987 const char *dp_name;
3988 boolean_t dp_local;
3989 boolean_t dp_descend;
3990} deleg_perm_t;
3991
3992/* */
3993typedef struct deleg_perm_node {
3994 deleg_perm_t dpn_perm;
3995
3996 uu_avl_node_t dpn_avl_node;
3997} deleg_perm_node_t;
3998
3999typedef struct fs_perm fs_perm_t;
4000
4001/* permissions set */
4002typedef struct who_perm {
4003 zfs_deleg_who_type_t who_type;
4004 const char *who_name; /* id */
4005 char who_ug_name[256]; /* user/group name */
4006 fs_perm_t *who_fsperm; /* uplink */
4007
4008 uu_avl_t *who_deleg_perm_avl; /* permissions */
4009} who_perm_t;
4010
4011/* */
4012typedef struct who_perm_node {
4013 who_perm_t who_perm;
4014 uu_avl_node_t who_avl_node;
4015} who_perm_node_t;
4016
4017typedef struct fs_perm_set fs_perm_set_t;
4018/* fs permissions */
4019struct fs_perm {
4020 const char *fsp_name;
4021
4022 uu_avl_t *fsp_sc_avl; /* sets,create */
4023 uu_avl_t *fsp_uge_avl; /* user,group,everyone */
4024
4025 fs_perm_set_t *fsp_set; /* uplink */
4026};
4027
4028/* */
4029typedef struct fs_perm_node {
4030 fs_perm_t fspn_fsperm;
4031 uu_avl_t *fspn_avl;
4032
4033 uu_list_node_t fspn_list_node;
4034} fs_perm_node_t;
4035
4036/* top level structure */
4037struct fs_perm_set {
4038 uu_list_pool_t *fsps_list_pool;
4039 uu_list_t *fsps_list; /* list of fs_perms */
4040
4041 uu_avl_pool_t *fsps_named_set_avl_pool;
4042 uu_avl_pool_t *fsps_who_perm_avl_pool;
4043 uu_avl_pool_t *fsps_deleg_perm_avl_pool;
4044};
4045
4046static inline const char *
4047deleg_perm_type(zfs_deleg_note_t note)
4048{
4049 /* subcommands */
4050 switch (note) {
4051 /* SUBCOMMANDS */
4052 /* OTHER */
4053 case ZFS_DELEG_NOTE_GROUPQUOTA:
4054 case ZFS_DELEG_NOTE_GROUPUSED:
4055 case ZFS_DELEG_NOTE_USERPROP:
4056 case ZFS_DELEG_NOTE_USERQUOTA:
4057 case ZFS_DELEG_NOTE_USERUSED:
4058 /* other */
4059 return (gettext("other"));
4060 default:
4061 return (gettext("subcommand"));
4062 }
4063}
4064
4065static int inline
4066who_type2weight(zfs_deleg_who_type_t who_type)
4067{
4068 int res;
4069 switch (who_type) {
4070 case ZFS_DELEG_NAMED_SET_SETS:
4071 case ZFS_DELEG_NAMED_SET:
4072 res = 0;
4073 break;
4074 case ZFS_DELEG_CREATE_SETS:
4075 case ZFS_DELEG_CREATE:
4076 res = 1;
4077 break;
4078 case ZFS_DELEG_USER_SETS:
4079 case ZFS_DELEG_USER:
4080 res = 2;
4081 break;
4082 case ZFS_DELEG_GROUP_SETS:
4083 case ZFS_DELEG_GROUP:
4084 res = 3;
4085 break;
4086 case ZFS_DELEG_EVERYONE_SETS:
4087 case ZFS_DELEG_EVERYONE:
4088 res = 4;
4089 break;
4090 default:
4091 res = -1;
4092 }
4093
4094 return (res);
4095}
4096
4097/* ARGSUSED */
4098static int
4099who_perm_compare(const void *larg, const void *rarg, void *unused)
4100{
4101 const who_perm_node_t *l = larg;
4102 const who_perm_node_t *r = rarg;
4103 zfs_deleg_who_type_t ltype = l->who_perm.who_type;
4104 zfs_deleg_who_type_t rtype = r->who_perm.who_type;
4105 int lweight = who_type2weight(ltype);
4106 int rweight = who_type2weight(rtype);
4107 int res = lweight - rweight;
4108 if (res == 0)
4109 res = strncmp(l->who_perm.who_name, r->who_perm.who_name,
4110 ZFS_MAX_DELEG_NAME-1);
4111
4112 if (res == 0)
4113 return (0);
4114 if (res > 0)
4115 return (1);
4116 else
4117 return (-1);
4118}
4119
4120/* ARGSUSED */
4121static int
4122deleg_perm_compare(const void *larg, const void *rarg, void *unused)
4123{
4124 const deleg_perm_node_t *l = larg;
4125 const deleg_perm_node_t *r = rarg;
4126 int res = strncmp(l->dpn_perm.dp_name, r->dpn_perm.dp_name,
4127 ZFS_MAX_DELEG_NAME-1);
4128
4129 if (res == 0)
4130 return (0);
4131
4132 if (res > 0)
4133 return (1);
4134 else
4135 return (-1);
4136}
4137
4138static inline void
4139fs_perm_set_init(fs_perm_set_t *fspset)
4140{
4141 bzero(fspset, sizeof (fs_perm_set_t));
4142
4143 if ((fspset->fsps_list_pool = uu_list_pool_create("fsps_list_pool",
4144 sizeof (fs_perm_node_t), offsetof(fs_perm_node_t, fspn_list_node),
4145 NULL, UU_DEFAULT)) == NULL)
4146 nomem();
4147 if ((fspset->fsps_list = uu_list_create(fspset->fsps_list_pool, NULL,
4148 UU_DEFAULT)) == NULL)
4149 nomem();
4150
4151 if ((fspset->fsps_named_set_avl_pool = uu_avl_pool_create(
4152 "named_set_avl_pool", sizeof (who_perm_node_t), offsetof(
4153 who_perm_node_t, who_avl_node), who_perm_compare,
4154 UU_DEFAULT)) == NULL)
4155 nomem();
4156
4157 if ((fspset->fsps_who_perm_avl_pool = uu_avl_pool_create(
4158 "who_perm_avl_pool", sizeof (who_perm_node_t), offsetof(
4159 who_perm_node_t, who_avl_node), who_perm_compare,
4160 UU_DEFAULT)) == NULL)
4161 nomem();
4162
4163 if ((fspset->fsps_deleg_perm_avl_pool = uu_avl_pool_create(
4164 "deleg_perm_avl_pool", sizeof (deleg_perm_node_t), offsetof(
4165 deleg_perm_node_t, dpn_avl_node), deleg_perm_compare, UU_DEFAULT))
4166 == NULL)
4167 nomem();
4168}
4169
4170static inline void fs_perm_fini(fs_perm_t *);
4171static inline void who_perm_fini(who_perm_t *);
4172
4173static inline void
4174fs_perm_set_fini(fs_perm_set_t *fspset)
4175{
4176 fs_perm_node_t *node = uu_list_first(fspset->fsps_list);
4177
4178 while (node != NULL) {
4179 fs_perm_node_t *next_node =
4180 uu_list_next(fspset->fsps_list, node);
4181 fs_perm_t *fsperm = &node->fspn_fsperm;
4182 fs_perm_fini(fsperm);
4183 uu_list_remove(fspset->fsps_list, node);
4184 free(node);
4185 node = next_node;
4186 }
4187
4188 uu_avl_pool_destroy(fspset->fsps_named_set_avl_pool);
4189 uu_avl_pool_destroy(fspset->fsps_who_perm_avl_pool);
4190 uu_avl_pool_destroy(fspset->fsps_deleg_perm_avl_pool);
4191}
4192
4193static inline void
4194deleg_perm_init(deleg_perm_t *deleg_perm, zfs_deleg_who_type_t type,
4195 const char *name)
4196{
4197 deleg_perm->dp_who_type = type;
4198 deleg_perm->dp_name = name;
4199}
4200
4201static inline void
4202who_perm_init(who_perm_t *who_perm, fs_perm_t *fsperm,
4203 zfs_deleg_who_type_t type, const char *name)
4204{
4205 uu_avl_pool_t *pool;
4206 pool = fsperm->fsp_set->fsps_deleg_perm_avl_pool;
4207
4208 bzero(who_perm, sizeof (who_perm_t));
4209
4210 if ((who_perm->who_deleg_perm_avl = uu_avl_create(pool, NULL,
4211 UU_DEFAULT)) == NULL)
4212 nomem();
4213
4214 who_perm->who_type = type;
4215 who_perm->who_name = name;
4216 who_perm->who_fsperm = fsperm;
4217}
4218
4219static inline void
4220who_perm_fini(who_perm_t *who_perm)
4221{
4222 deleg_perm_node_t *node = uu_avl_first(who_perm->who_deleg_perm_avl);
4223
4224 while (node != NULL) {
4225 deleg_perm_node_t *next_node =
4226 uu_avl_next(who_perm->who_deleg_perm_avl, node);
4227
4228 uu_avl_remove(who_perm->who_deleg_perm_avl, node);
4229 free(node);
4230 node = next_node;
4231 }
4232
4233 uu_avl_destroy(who_perm->who_deleg_perm_avl);
4234}
4235
4236static inline void
4237fs_perm_init(fs_perm_t *fsperm, fs_perm_set_t *fspset, const char *fsname)
4238{
4239 uu_avl_pool_t *nset_pool = fspset->fsps_named_set_avl_pool;
4240 uu_avl_pool_t *who_pool = fspset->fsps_who_perm_avl_pool;
4241
4242 bzero(fsperm, sizeof (fs_perm_t));
4243
4244 if ((fsperm->fsp_sc_avl = uu_avl_create(nset_pool, NULL, UU_DEFAULT))
4245 == NULL)
4246 nomem();
4247
4248 if ((fsperm->fsp_uge_avl = uu_avl_create(who_pool, NULL, UU_DEFAULT))
4249 == NULL)
4250 nomem();
4251
4252 fsperm->fsp_set = fspset;
4253 fsperm->fsp_name = fsname;
4254}
4255
4256static inline void
4257fs_perm_fini(fs_perm_t *fsperm)
4258{
4259 who_perm_node_t *node = uu_avl_first(fsperm->fsp_sc_avl);
4260 while (node != NULL) {
4261 who_perm_node_t *next_node = uu_avl_next(fsperm->fsp_sc_avl,
4262 node);
4263 who_perm_t *who_perm = &node->who_perm;
4264 who_perm_fini(who_perm);
4265 uu_avl_remove(fsperm->fsp_sc_avl, node);
4266 free(node);
4267 node = next_node;
4268 }
4269
4270 node = uu_avl_first(fsperm->fsp_uge_avl);
4271 while (node != NULL) {
4272 who_perm_node_t *next_node = uu_avl_next(fsperm->fsp_uge_avl,
4273 node);
4274 who_perm_t *who_perm = &node->who_perm;
4275 who_perm_fini(who_perm);
4276 uu_avl_remove(fsperm->fsp_uge_avl, node);
4277 free(node);
4278 node = next_node;
4279 }
4280
4281 uu_avl_destroy(fsperm->fsp_sc_avl);
4282 uu_avl_destroy(fsperm->fsp_uge_avl);
4283}
4284
4285static void inline
4286set_deleg_perm_node(uu_avl_t *avl, deleg_perm_node_t *node,
4287 zfs_deleg_who_type_t who_type, const char *name, char locality)
4288{
4289 uu_avl_index_t idx = 0;
4290
4291 deleg_perm_node_t *found_node = NULL;
4292 deleg_perm_t *deleg_perm = &node->dpn_perm;
4293
4294 deleg_perm_init(deleg_perm, who_type, name);
4295
4296 if ((found_node = uu_avl_find(avl, node, NULL, &idx))
4297 == NULL)
4298 uu_avl_insert(avl, node, idx);
4299 else {
4300 node = found_node;
4301 deleg_perm = &node->dpn_perm;
4302 }
4303
4304
4305 switch (locality) {
4306 case ZFS_DELEG_LOCAL:
4307 deleg_perm->dp_local = B_TRUE;
4308 break;
4309 case ZFS_DELEG_DESCENDENT:
4310 deleg_perm->dp_descend = B_TRUE;
4311 break;
4312 case ZFS_DELEG_NA:
4313 break;
4314 default:
4315 assert(B_FALSE); /* invalid locality */
4316 }
4317}
4318
4319static inline int
4320parse_who_perm(who_perm_t *who_perm, nvlist_t *nvl, char locality)
4321{
4322 nvpair_t *nvp = NULL;
4323 fs_perm_set_t *fspset = who_perm->who_fsperm->fsp_set;
4324 uu_avl_t *avl = who_perm->who_deleg_perm_avl;
4325 zfs_deleg_who_type_t who_type = who_perm->who_type;
4326
4327 while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
4328 const char *name = nvpair_name(nvp);
4329 data_type_t type = nvpair_type(nvp);
4330 uu_avl_pool_t *avl_pool = fspset->fsps_deleg_perm_avl_pool;
4331 deleg_perm_node_t *node =
4332 safe_malloc(sizeof (deleg_perm_node_t));
4333
4334 VERIFY(type == DATA_TYPE_BOOLEAN);
4335
4336 uu_avl_node_init(node, &node->dpn_avl_node, avl_pool);
4337 set_deleg_perm_node(avl, node, who_type, name, locality);
4338 }
4339
4340 return (0);
4341}
4342
4343static inline int
4344parse_fs_perm(fs_perm_t *fsperm, nvlist_t *nvl)
4345{
4346 nvpair_t *nvp = NULL;
4347 fs_perm_set_t *fspset = fsperm->fsp_set;
4348
4349 while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
4350 nvlist_t *nvl2 = NULL;
4351 const char *name = nvpair_name(nvp);
4352 uu_avl_t *avl = NULL;
4353 uu_avl_pool_t *avl_pool = NULL;
4354 zfs_deleg_who_type_t perm_type = name[0];
4355 char perm_locality = name[1];
4356 const char *perm_name = name + 3;
4357 boolean_t is_set = B_TRUE;
4358 who_perm_t *who_perm = NULL;
4359
4360 assert('$' == name[2]);
4361
4362 if (nvpair_value_nvlist(nvp, &nvl2) != 0)
4363 return (-1);
4364
4365 switch (perm_type) {
4366 case ZFS_DELEG_CREATE:
4367 case ZFS_DELEG_CREATE_SETS:
4368 case ZFS_DELEG_NAMED_SET:
4369 case ZFS_DELEG_NAMED_SET_SETS:
4370 avl_pool = fspset->fsps_named_set_avl_pool;
4371 avl = fsperm->fsp_sc_avl;
4372 break;
4373 case ZFS_DELEG_USER:
4374 case ZFS_DELEG_USER_SETS:
4375 case ZFS_DELEG_GROUP:
4376 case ZFS_DELEG_GROUP_SETS:
4377 case ZFS_DELEG_EVERYONE:
4378 case ZFS_DELEG_EVERYONE_SETS:
4379 avl_pool = fspset->fsps_who_perm_avl_pool;
4380 avl = fsperm->fsp_uge_avl;
4381 break;
4382 default:
4383 break;
4384 }
4385
4386 if (is_set) {
4387 who_perm_node_t *found_node = NULL;
4388 who_perm_node_t *node = safe_malloc(
4389 sizeof (who_perm_node_t));
4390 who_perm = &node->who_perm;
4391 uu_avl_index_t idx = 0;
4392
4393 uu_avl_node_init(node, &node->who_avl_node, avl_pool);
4394 who_perm_init(who_perm, fsperm, perm_type, perm_name);
4395
4396 if ((found_node = uu_avl_find(avl, node, NULL, &idx))
4397 == NULL) {
4398 if (avl == fsperm->fsp_uge_avl) {
4399 uid_t rid = 0;
4400 struct passwd *p = NULL;
4401 struct group *g = NULL;
4402 const char *nice_name = NULL;
4403
4404 switch (perm_type) {
4405 case ZFS_DELEG_USER_SETS:
4406 case ZFS_DELEG_USER:
4407 rid = atoi(perm_name);
4408 p = getpwuid(rid);
4409 if (p)
4410 nice_name = p->pw_name;
4411 break;
4412 case ZFS_DELEG_GROUP_SETS:
4413 case ZFS_DELEG_GROUP:
4414 rid = atoi(perm_name);
4415 g = getgrgid(rid);
4416 if (g)
4417 nice_name = g->gr_name;
4418 break;
4419 default:
4420 break;
4421 }
4422
4423 if (nice_name != NULL)
4424 (void) strlcpy(
4425 node->who_perm.who_ug_name,
4426 nice_name, 256);
4427 }
4428
4429 uu_avl_insert(avl, node, idx);
4430 } else {
4431 node = found_node;
4432 who_perm = &node->who_perm;
4433 }
4434 }
4435
4436 (void) parse_who_perm(who_perm, nvl2, perm_locality);
4437 }
4438
4439 return (0);
4440}
4441
4442static inline int
4443parse_fs_perm_set(fs_perm_set_t *fspset, nvlist_t *nvl)
4444{
4445 nvpair_t *nvp = NULL;
4446 uu_avl_index_t idx = 0;
4447
4448 while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
4449 nvlist_t *nvl2 = NULL;
4450 const char *fsname = nvpair_name(nvp);
4451 data_type_t type = nvpair_type(nvp);
4452 fs_perm_t *fsperm = NULL;
4453 fs_perm_node_t *node = safe_malloc(sizeof (fs_perm_node_t));
4454 if (node == NULL)
4455 nomem();
4456
4457 fsperm = &node->fspn_fsperm;
4458
4459 VERIFY(DATA_TYPE_NVLIST == type);
4460
4461 uu_list_node_init(node, &node->fspn_list_node,
4462 fspset->fsps_list_pool);
4463
4464 idx = uu_list_numnodes(fspset->fsps_list);
4465 fs_perm_init(fsperm, fspset, fsname);
4466
4467 if (nvpair_value_nvlist(nvp, &nvl2) != 0)
4468 return (-1);
4469
4470 (void) parse_fs_perm(fsperm, nvl2);
4471
4472 uu_list_insert(fspset->fsps_list, node, idx);
4473 }
4474
4475 return (0);
4476}
4477
4478static inline const char *
4479deleg_perm_comment(zfs_deleg_note_t note)
4480{
4481 const char *str = "";
4482
4483 /* subcommands */
4484 switch (note) {
4485 /* SUBCOMMANDS */
4486 case ZFS_DELEG_NOTE_ALLOW:
4487 str = gettext("Must also have the permission that is being"
4488 "\n\t\t\t\tallowed");
4489 break;
4490 case ZFS_DELEG_NOTE_CLONE:
4491 str = gettext("Must also have the 'create' ability and 'mount'"
4492 "\n\t\t\t\tability in the origin file system");
4493 break;
4494 case ZFS_DELEG_NOTE_CREATE:
4495 str = gettext("Must also have the 'mount' ability");
4496 break;
4497 case ZFS_DELEG_NOTE_DESTROY:
4498 str = gettext("Must also have the 'mount' ability");
4499 break;
4500 case ZFS_DELEG_NOTE_DIFF:
4501 str = gettext("Allows lookup of paths within a dataset;"
4502 "\n\t\t\t\tgiven an object number. Ordinary users need this"
4503 "\n\t\t\t\tin order to use zfs diff");
4504 break;
4505 case ZFS_DELEG_NOTE_HOLD:
4506 str = gettext("Allows adding a user hold to a snapshot");
4507 break;
4508 case ZFS_DELEG_NOTE_MOUNT:
4509 str = gettext("Allows mount/umount of ZFS datasets");
4510 break;
4511 case ZFS_DELEG_NOTE_PROMOTE:
4512 str = gettext("Must also have the 'mount'\n\t\t\t\tand"
4513 " 'promote' ability in the origin file system");
4514 break;
4515 case ZFS_DELEG_NOTE_RECEIVE:
4516 str = gettext("Must also have the 'mount' and 'create'"
4517 " ability");
4518 break;
4519 case ZFS_DELEG_NOTE_RELEASE:
4520 str = gettext("Allows releasing a user hold which\n\t\t\t\t"
4521 "might destroy the snapshot");
4522 break;
4523 case ZFS_DELEG_NOTE_RENAME:
4524 str = gettext("Must also have the 'mount' and 'create'"
4525 "\n\t\t\t\tability in the new parent");
4526 break;
4527 case ZFS_DELEG_NOTE_ROLLBACK:
4528 str = gettext("");
4529 break;
4530 case ZFS_DELEG_NOTE_SEND:
4531 str = gettext("");
4532 break;
4533 case ZFS_DELEG_NOTE_SHARE:
4534 str = gettext("Allows sharing file systems over NFS or SMB"
4535 "\n\t\t\t\tprotocols");
4536 break;
4537 case ZFS_DELEG_NOTE_SNAPSHOT:
4538 str = gettext("");
4539 break;
4540/*
4541 * case ZFS_DELEG_NOTE_VSCAN:
4542 * str = gettext("");
4543 * break;
4544 */
4545 /* OTHER */
4546 case ZFS_DELEG_NOTE_GROUPQUOTA:
4547 str = gettext("Allows accessing any groupquota@... property");
4548 break;
4549 case ZFS_DELEG_NOTE_GROUPUSED:
4550 str = gettext("Allows reading any groupused@... property");
4551 break;
4552 case ZFS_DELEG_NOTE_USERPROP:
4553 str = gettext("Allows changing any user property");
4554 break;
4555 case ZFS_DELEG_NOTE_USERQUOTA:
4556 str = gettext("Allows accessing any userquota@... property");
4557 break;
4558 case ZFS_DELEG_NOTE_USERUSED:
4559 str = gettext("Allows reading any userused@... property");
4560 break;
4561 /* other */
4562 default:
4563 str = "";
4564 }
4565
4566 return (str);
4567}
4568
4569struct allow_opts {
4570 boolean_t local;
4571 boolean_t descend;
4572 boolean_t user;
4573 boolean_t group;
4574 boolean_t everyone;
4575 boolean_t create;
4576 boolean_t set;
4577 boolean_t recursive; /* unallow only */
4578 boolean_t prt_usage;
4579
4580 boolean_t prt_perms;
4581 char *who;
4582 char *perms;
4583 const char *dataset;
4584};
4585
4586static inline int
4587prop_cmp(const void *a, const void *b)
4588{
4589 const char *str1 = *(const char **)a;
4590 const char *str2 = *(const char **)b;
4591 return (strcmp(str1, str2));
4592}
4593
4594static void
4595allow_usage(boolean_t un, boolean_t requested, const char *msg)
4596{
4597 const char *opt_desc[] = {
4598 "-h", gettext("show this help message and exit"),
4599 "-l", gettext("set permission locally"),
4600 "-d", gettext("set permission for descents"),
4601 "-u", gettext("set permission for user"),
4602 "-g", gettext("set permission for group"),
4603 "-e", gettext("set permission for everyone"),
4604 "-c", gettext("set create time permission"),
4605 "-s", gettext("define permission set"),
4606 /* unallow only */
4607 "-r", gettext("remove permissions recursively"),
4608 };
4609 size_t unallow_size = sizeof (opt_desc) / sizeof (char *);
4610 size_t allow_size = unallow_size - 2;
4611 const char *props[ZFS_NUM_PROPS];
4612 int i;
4613 size_t count = 0;
4614 FILE *fp = requested ? stdout : stderr;
4615 zprop_desc_t *pdtbl = zfs_prop_get_table();
4616 const char *fmt = gettext("%-16s %-14s\t%s\n");
4617
4618 (void) fprintf(fp, gettext("Usage: %s\n"), get_usage(un ? HELP_UNALLOW :
4619 HELP_ALLOW));
4620 (void) fprintf(fp, gettext("Options:\n"));
4621 for (i = 0; i < (un ? unallow_size : allow_size); i++) {
4622 const char *opt = opt_desc[i++];
4623 const char *optdsc = opt_desc[i];
4624 (void) fprintf(fp, gettext(" %-10s %s\n"), opt, optdsc);
4625 }
4626
4627 (void) fprintf(fp, gettext("\nThe following permissions are "
4628 "supported:\n\n"));
4629 (void) fprintf(fp, fmt, gettext("NAME"), gettext("TYPE"),
4630 gettext("NOTES"));
4631 for (i = 0; i < ZFS_NUM_DELEG_NOTES; i++) {
4632 const char *perm_name = zfs_deleg_perm_tbl[i].z_perm;
4633 zfs_deleg_note_t perm_note = zfs_deleg_perm_tbl[i].z_note;
4634 const char *perm_type = deleg_perm_type(perm_note);
4635 const char *perm_comment = deleg_perm_comment(perm_note);
4636 (void) fprintf(fp, fmt, perm_name, perm_type, perm_comment);
4637 }
4638
4639 for (i = 0; i < ZFS_NUM_PROPS; i++) {
4640 zprop_desc_t *pd = &pdtbl[i];
4641 if (pd->pd_visible != B_TRUE)
4642 continue;
4643
4644 if (pd->pd_attr == PROP_READONLY)
4645 continue;
4646
4647 props[count++] = pd->pd_name;
4648 }
4649 props[count] = NULL;
4650
4651 qsort(props, count, sizeof (char *), prop_cmp);
4652
4653 for (i = 0; i < count; i++)
4654 (void) fprintf(fp, fmt, props[i], gettext("property"), "");
4655
4656 if (msg != NULL)
4657 (void) fprintf(fp, gettext("\nzfs: error: %s"), msg);
4658
4659 exit(requested ? 0 : 2);
4660}
4661
4662static inline const char *
4663munge_args(int argc, char **argv, boolean_t un, size_t expected_argc,
4664 char **permsp)
4665{
4666 if (un && argc == expected_argc - 1)
4667 *permsp = NULL;
4668 else if (argc == expected_argc)
4669 *permsp = argv[argc - 2];
4670 else
4671 allow_usage(un, B_FALSE,
4672 gettext("wrong number of parameters\n"));
4673
4674 return (argv[argc - 1]);
4675}
4676
4677static void
4678parse_allow_args(int argc, char **argv, boolean_t un, struct allow_opts *opts)
4679{
4680 int uge_sum = opts->user + opts->group + opts->everyone;
4681 int csuge_sum = opts->create + opts->set + uge_sum;
4682 int ldcsuge_sum = csuge_sum + opts->local + opts->descend;
4683 int all_sum = un ? ldcsuge_sum + opts->recursive : ldcsuge_sum;
4684
4685 if (uge_sum > 1)
4686 allow_usage(un, B_FALSE,
4687 gettext("-u, -g, and -e are mutually exclusive\n"));
4688
4689 if (opts->prt_usage) {
4690 if (argc == 0 && all_sum == 0)
4691 allow_usage(un, B_TRUE, NULL);
4692 else
4693 usage(B_FALSE);
4694 }
4695
4696 if (opts->set) {
4697 if (csuge_sum > 1)
4698 allow_usage(un, B_FALSE,
4699 gettext("invalid options combined with -s\n"));
4700
4701 opts->dataset = munge_args(argc, argv, un, 3, &opts->perms);
4702 if (argv[0][0] != '@')
4703 allow_usage(un, B_FALSE,
4704 gettext("invalid set name: missing '@' prefix\n"));
4705 opts->who = argv[0];
4706 } else if (opts->create) {
4707 if (ldcsuge_sum > 1)
4708 allow_usage(un, B_FALSE,
4709 gettext("invalid options combined with -c\n"));
4710 opts->dataset = munge_args(argc, argv, un, 2, &opts->perms);
4711 } else if (opts->everyone) {
4712 if (csuge_sum > 1)
4713 allow_usage(un, B_FALSE,
4714 gettext("invalid options combined with -e\n"));
4715 opts->dataset = munge_args(argc, argv, un, 2, &opts->perms);
4716 } else if (uge_sum == 0 && argc > 0 && strcmp(argv[0], "everyone")
4717 == 0) {
4718 opts->everyone = B_TRUE;
4719 argc--;
4720 argv++;
4721 opts->dataset = munge_args(argc, argv, un, 2, &opts->perms);
79e72243 4722 } else if (argc == 1 && !un) {
0b7936d5
AS
4723 opts->prt_perms = B_TRUE;
4724 opts->dataset = argv[argc-1];
4725 } else {
4726 opts->dataset = munge_args(argc, argv, un, 3, &opts->perms);
4727 opts->who = argv[0];
4728 }
4729
4730 if (!opts->local && !opts->descend) {
4731 opts->local = B_TRUE;
4732 opts->descend = B_TRUE;
4733 }
4734}
4735
4736static void
4737store_allow_perm(zfs_deleg_who_type_t type, boolean_t local, boolean_t descend,
4738 const char *who, char *perms, nvlist_t *top_nvl)
4739{
4740 int i;
4741 char ld[2] = { '\0', '\0' };
4742 char who_buf[ZFS_MAXNAMELEN+32];
4743 char base_type = ZFS_DELEG_WHO_UNKNOWN;
4744 char set_type = ZFS_DELEG_WHO_UNKNOWN;
4745 nvlist_t *base_nvl = NULL;
4746 nvlist_t *set_nvl = NULL;
4747 nvlist_t *nvl;
4748
4749 if (nvlist_alloc(&base_nvl, NV_UNIQUE_NAME, 0) != 0)
4750 nomem();
4751 if (nvlist_alloc(&set_nvl, NV_UNIQUE_NAME, 0) != 0)
4752 nomem();
4753
4754 switch (type) {
4755 case ZFS_DELEG_NAMED_SET_SETS:
4756 case ZFS_DELEG_NAMED_SET:
4757 set_type = ZFS_DELEG_NAMED_SET_SETS;
4758 base_type = ZFS_DELEG_NAMED_SET;
4759 ld[0] = ZFS_DELEG_NA;
4760 break;
4761 case ZFS_DELEG_CREATE_SETS:
4762 case ZFS_DELEG_CREATE:
4763 set_type = ZFS_DELEG_CREATE_SETS;
4764 base_type = ZFS_DELEG_CREATE;
4765 ld[0] = ZFS_DELEG_NA;
4766 break;
4767 case ZFS_DELEG_USER_SETS:
4768 case ZFS_DELEG_USER:
4769 set_type = ZFS_DELEG_USER_SETS;
4770 base_type = ZFS_DELEG_USER;
4771 if (local)
4772 ld[0] = ZFS_DELEG_LOCAL;
4773 if (descend)
4774 ld[1] = ZFS_DELEG_DESCENDENT;
4775 break;
4776 case ZFS_DELEG_GROUP_SETS:
4777 case ZFS_DELEG_GROUP:
4778 set_type = ZFS_DELEG_GROUP_SETS;
4779 base_type = ZFS_DELEG_GROUP;
4780 if (local)
4781 ld[0] = ZFS_DELEG_LOCAL;
4782 if (descend)
4783 ld[1] = ZFS_DELEG_DESCENDENT;
4784 break;
4785 case ZFS_DELEG_EVERYONE_SETS:
4786 case ZFS_DELEG_EVERYONE:
4787 set_type = ZFS_DELEG_EVERYONE_SETS;
4788 base_type = ZFS_DELEG_EVERYONE;
4789 if (local)
4790 ld[0] = ZFS_DELEG_LOCAL;
4791 if (descend)
4792 ld[1] = ZFS_DELEG_DESCENDENT;
4793 default:
4794 break;
4795 }
4796
4797 if (perms != NULL) {
4798 char *curr = perms;
4799 char *end = curr + strlen(perms);
4800
4801 while (curr < end) {
4802 char *delim = strchr(curr, ',');
4803 if (delim == NULL)
4804 delim = end;
4805 else
4806 *delim = '\0';
4807
4808 if (curr[0] == '@')
4809 nvl = set_nvl;
4810 else
4811 nvl = base_nvl;
4812
4813 (void) nvlist_add_boolean(nvl, curr);
4814 if (delim != end)
4815 *delim = ',';
4816 curr = delim + 1;
4817 }
4818
4819 for (i = 0; i < 2; i++) {
4820 char locality = ld[i];
4821 if (locality == 0)
4822 continue;
4823
4824 if (!nvlist_empty(base_nvl)) {
4825 if (who != NULL)
4826 (void) snprintf(who_buf,
4827 sizeof (who_buf), "%c%c$%s",
4828 base_type, locality, who);
4829 else
4830 (void) snprintf(who_buf,
4831 sizeof (who_buf), "%c%c$",
4832 base_type, locality);
4833
4834 (void) nvlist_add_nvlist(top_nvl, who_buf,
4835 base_nvl);
4836 }
4837
4838
4839 if (!nvlist_empty(set_nvl)) {
4840 if (who != NULL)
4841 (void) snprintf(who_buf,
4842 sizeof (who_buf), "%c%c$%s",
4843 set_type, locality, who);
4844 else
4845 (void) snprintf(who_buf,
4846 sizeof (who_buf), "%c%c$",
4847 set_type, locality);
4848
4849 (void) nvlist_add_nvlist(top_nvl, who_buf,
4850 set_nvl);
4851 }
4852 }
4853 } else {
4854 for (i = 0; i < 2; i++) {
4855 char locality = ld[i];
4856 if (locality == 0)
4857 continue;
4858
4859 if (who != NULL)
4860 (void) snprintf(who_buf, sizeof (who_buf),
4861 "%c%c$%s", base_type, locality, who);
4862 else
4863 (void) snprintf(who_buf, sizeof (who_buf),
4864 "%c%c$", base_type, locality);
4865 (void) nvlist_add_boolean(top_nvl, who_buf);
4866
4867 if (who != NULL)
4868 (void) snprintf(who_buf, sizeof (who_buf),
4869 "%c%c$%s", set_type, locality, who);
4870 else
4871 (void) snprintf(who_buf, sizeof (who_buf),
4872 "%c%c$", set_type, locality);
4873 (void) nvlist_add_boolean(top_nvl, who_buf);
4874 }
4875 }
4876}
4877
4878static int
4879construct_fsacl_list(boolean_t un, struct allow_opts *opts, nvlist_t **nvlp)
4880{
4881 if (nvlist_alloc(nvlp, NV_UNIQUE_NAME, 0) != 0)
4882 nomem();
4883
4884 if (opts->set) {
4885 store_allow_perm(ZFS_DELEG_NAMED_SET, opts->local,
4886 opts->descend, opts->who, opts->perms, *nvlp);
4887 } else if (opts->create) {
4888 store_allow_perm(ZFS_DELEG_CREATE, opts->local,
4889 opts->descend, NULL, opts->perms, *nvlp);
4890 } else if (opts->everyone) {
4891 store_allow_perm(ZFS_DELEG_EVERYONE, opts->local,
4892 opts->descend, NULL, opts->perms, *nvlp);
4893 } else {
4894 char *curr = opts->who;
4895 char *end = curr + strlen(curr);
4896
4897 while (curr < end) {
4898 const char *who;
4c069d34 4899 zfs_deleg_who_type_t who_type = ZFS_DELEG_WHO_UNKNOWN;
0b7936d5
AS
4900 char *endch;
4901 char *delim = strchr(curr, ',');
4902 char errbuf[256];
4903 char id[64];
4904 struct passwd *p = NULL;
4905 struct group *g = NULL;
4906
4907 uid_t rid;
4908 if (delim == NULL)
4909 delim = end;
4910 else
4911 *delim = '\0';
4912
4913 rid = (uid_t)strtol(curr, &endch, 0);
4914 if (opts->user) {
4915 who_type = ZFS_DELEG_USER;
4916 if (*endch != '\0')
4917 p = getpwnam(curr);
4918 else
4919 p = getpwuid(rid);
4920
4921 if (p != NULL)
4922 rid = p->pw_uid;
4923 else {
4924 (void) snprintf(errbuf, 256, gettext(
4925 "invalid user %s"), curr);
4926 allow_usage(un, B_TRUE, errbuf);
4927 }
4928 } else if (opts->group) {
4929 who_type = ZFS_DELEG_GROUP;
4930 if (*endch != '\0')
4931 g = getgrnam(curr);
4932 else
4933 g = getgrgid(rid);
4934
4935 if (g != NULL)
4936 rid = g->gr_gid;
4937 else {
4938 (void) snprintf(errbuf, 256, gettext(
4939 "invalid group %s"), curr);
4940 allow_usage(un, B_TRUE, errbuf);
4941 }
4942 } else {
4943 if (*endch != '\0') {
4944 p = getpwnam(curr);
4945 } else {
4946 p = getpwuid(rid);
4947 }
4948
4949 if (p == NULL) {
4950 if (*endch != '\0') {
4951 g = getgrnam(curr);
4952 } else {
4953 g = getgrgid(rid);
4954 }
4955 }
4956
4957 if (p != NULL) {
4958 who_type = ZFS_DELEG_USER;
4959 rid = p->pw_uid;
4960 } else if (g != NULL) {
4961 who_type = ZFS_DELEG_GROUP;
4962 rid = g->gr_gid;
4963 } else {
4964 (void) snprintf(errbuf, 256, gettext(
4965 "invalid user/group %s"), curr);
4966 allow_usage(un, B_TRUE, errbuf);
4967 }
4968 }
4969
4970 (void) sprintf(id, "%u", rid);
4971 who = id;
4972
4973 store_allow_perm(who_type, opts->local,
4974 opts->descend, who, opts->perms, *nvlp);
4975 curr = delim + 1;
4976 }
4977 }
4978
4979 return (0);
4980}
4981
4982static void
4983print_set_creat_perms(uu_avl_t *who_avl)
4984{
4985 const char *sc_title[] = {
4986 gettext("Permission sets:\n"),
4987 gettext("Create time permissions:\n"),
4988 NULL
4989 };
4990 const char **title_ptr = sc_title;
4991 who_perm_node_t *who_node = NULL;
4992 int prev_weight = -1;
4993
4994 for (who_node = uu_avl_first(who_avl); who_node != NULL;
4995 who_node = uu_avl_next(who_avl, who_node)) {
4996 uu_avl_t *avl = who_node->who_perm.who_deleg_perm_avl;
4997 zfs_deleg_who_type_t who_type = who_node->who_perm.who_type;
4998 const char *who_name = who_node->who_perm.who_name;
4999 int weight = who_type2weight(who_type);
5000 boolean_t first = B_TRUE;
5001 deleg_perm_node_t *deleg_node;
5002
5003 if (prev_weight != weight) {
29b35200 5004 (void) printf("%s", *title_ptr++);
0b7936d5
AS
5005 prev_weight = weight;
5006 }
5007
5008 if (who_name == NULL || strnlen(who_name, 1) == 0)
5009 (void) printf("\t");
5010 else
5011 (void) printf("\t%s ", who_name);
5012
5013 for (deleg_node = uu_avl_first(avl); deleg_node != NULL;
5014 deleg_node = uu_avl_next(avl, deleg_node)) {
5015 if (first) {
5016 (void) printf("%s",
5017 deleg_node->dpn_perm.dp_name);
5018 first = B_FALSE;
5019 } else
5020 (void) printf(",%s",
5021 deleg_node->dpn_perm.dp_name);
5022 }
5023
5024 (void) printf("\n");
5025 }
5026}
34dc7c2f 5027
0b7936d5
AS
5028static void inline
5029print_uge_deleg_perms(uu_avl_t *who_avl, boolean_t local, boolean_t descend,
5030 const char *title)
5031{
5032 who_perm_node_t *who_node = NULL;
5033 boolean_t prt_title = B_TRUE;
5034 uu_avl_walk_t *walk;
34dc7c2f 5035
0b7936d5
AS
5036 if ((walk = uu_avl_walk_start(who_avl, UU_WALK_ROBUST)) == NULL)
5037 nomem();
34dc7c2f 5038
0b7936d5
AS
5039 while ((who_node = uu_avl_walk_next(walk)) != NULL) {
5040 const char *who_name = who_node->who_perm.who_name;
5041 const char *nice_who_name = who_node->who_perm.who_ug_name;
5042 uu_avl_t *avl = who_node->who_perm.who_deleg_perm_avl;
5043 zfs_deleg_who_type_t who_type = who_node->who_perm.who_type;
5044 char delim = ' ';
5045 deleg_perm_node_t *deleg_node;
5046 boolean_t prt_who = B_TRUE;
5047
5048 for (deleg_node = uu_avl_first(avl);
5049 deleg_node != NULL;
5050 deleg_node = uu_avl_next(avl, deleg_node)) {
5051 if (local != deleg_node->dpn_perm.dp_local ||
5052 descend != deleg_node->dpn_perm.dp_descend)
5053 continue;
5054
5055 if (prt_who) {
5056 const char *who = NULL;
5057 if (prt_title) {
5058 prt_title = B_FALSE;
29b35200 5059 (void) printf("%s", title);
0b7936d5
AS
5060 }
5061
5062 switch (who_type) {
5063 case ZFS_DELEG_USER_SETS:
5064 case ZFS_DELEG_USER:
5065 who = gettext("user");
5066 if (nice_who_name)
5067 who_name = nice_who_name;
5068 break;
5069 case ZFS_DELEG_GROUP_SETS:
5070 case ZFS_DELEG_GROUP:
5071 who = gettext("group");
5072 if (nice_who_name)
5073 who_name = nice_who_name;
5074 break;
5075 case ZFS_DELEG_EVERYONE_SETS:
5076 case ZFS_DELEG_EVERYONE:
5077 who = gettext("everyone");
5078 who_name = NULL;
5079 default:
5080 break;
5081 }
5082
5083 prt_who = B_FALSE;
5084 if (who_name == NULL)
5085 (void) printf("\t%s", who);
5086 else
5087 (void) printf("\t%s %s", who, who_name);
34dc7c2f 5088 }
0b7936d5
AS
5089
5090 (void) printf("%c%s", delim,
5091 deleg_node->dpn_perm.dp_name);
5092 delim = ',';
34dc7c2f 5093 }
34dc7c2f 5094
0b7936d5
AS
5095 if (!prt_who)
5096 (void) printf("\n");
5097 }
428870ff 5098
0b7936d5
AS
5099 uu_avl_walk_end(walk);
5100}
34dc7c2f 5101
0b7936d5
AS
5102static void
5103print_fs_perms(fs_perm_set_t *fspset)
5104{
5105 fs_perm_node_t *node = NULL;
5106 char buf[ZFS_MAXNAMELEN+32];
5107 const char *dsname = buf;
5108
5109 for (node = uu_list_first(fspset->fsps_list); node != NULL;
5110 node = uu_list_next(fspset->fsps_list, node)) {
5111 uu_avl_t *sc_avl = node->fspn_fsperm.fsp_sc_avl;
5112 uu_avl_t *uge_avl = node->fspn_fsperm.fsp_uge_avl;
5113 int left = 0;
5114
5115 (void) snprintf(buf, ZFS_MAXNAMELEN+32,
5116 gettext("---- Permissions on %s "),
5117 node->fspn_fsperm.fsp_name);
29b35200 5118 (void) printf("%s", dsname);
0b7936d5
AS
5119 left = 70 - strlen(buf);
5120 while (left-- > 0)
5121 (void) printf("-");
5122 (void) printf("\n");
5123
5124 print_set_creat_perms(sc_avl);
5125 print_uge_deleg_perms(uge_avl, B_TRUE, B_FALSE,
5126 gettext("Local permissions:\n"));
5127 print_uge_deleg_perms(uge_avl, B_FALSE, B_TRUE,
5128 gettext("Descendent permissions:\n"));
5129 print_uge_deleg_perms(uge_avl, B_TRUE, B_TRUE,
5130 gettext("Local+Descendent permissions:\n"));
428870ff 5131 }
0b7936d5 5132}
34dc7c2f 5133
0b7936d5
AS
5134static fs_perm_set_t fs_perm_set = { NULL, NULL, NULL, NULL };
5135
5136struct deleg_perms {
5137 boolean_t un;
5138 nvlist_t *nvl;
5139};
5140
5141static int
5142set_deleg_perms(zfs_handle_t *zhp, void *data)
5143{
5144 struct deleg_perms *perms = (struct deleg_perms *)data;
5145 zfs_type_t zfs_type = zfs_get_type(zhp);
5146
5147 if (zfs_type != ZFS_TYPE_FILESYSTEM && zfs_type != ZFS_TYPE_VOLUME)
5148 return (0);
5149
5150 return (zfs_set_fsacl(zhp, perms->un, perms->nvl));
34dc7c2f
BB
5151}
5152
34dc7c2f 5153static int
0b7936d5 5154zfs_do_allow_unallow_impl(int argc, char **argv, boolean_t un)
34dc7c2f 5155{
0b7936d5
AS
5156 zfs_handle_t *zhp;
5157 nvlist_t *perm_nvl = NULL;
5158 nvlist_t *update_perm_nvl = NULL;
5159 int error = 1;
5160 int c;
5161 struct allow_opts opts = { 0 };
34dc7c2f 5162
0b7936d5
AS
5163 const char *optstr = un ? "ldugecsrh" : "ldugecsh";
5164
5165 /* check opts */
5166 while ((c = getopt(argc, argv, optstr)) != -1) {
34dc7c2f 5167 switch (c) {
0b7936d5
AS
5168 case 'l':
5169 opts.local = B_TRUE;
5170 break;
34dc7c2f 5171 case 'd':
0b7936d5 5172 opts.descend = B_TRUE;
34dc7c2f 5173 break;
0b7936d5
AS
5174 case 'u':
5175 opts.user = B_TRUE;
428870ff 5176 break;
0b7936d5
AS
5177 case 'g':
5178 opts.group = B_TRUE;
34dc7c2f 5179 break;
0b7936d5
AS
5180 case 'e':
5181 opts.everyone = B_TRUE;
d164b209 5182 break;
0b7936d5
AS
5183 case 's':
5184 opts.set = B_TRUE;
34dc7c2f 5185 break;
0b7936d5
AS
5186 case 'c':
5187 opts.create = B_TRUE;
5188 break;
5189 case 'r':
5190 opts.recursive = B_TRUE;
34dc7c2f
BB
5191 break;
5192 case ':':
5193 (void) fprintf(stderr, gettext("missing argument for "
5194 "'%c' option\n"), optopt);
5195 usage(B_FALSE);
5196 break;
0b7936d5
AS
5197 case 'h':
5198 opts.prt_usage = B_TRUE;
5199 break;
34dc7c2f
BB
5200 case '?':
5201 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
5202 optopt);
5203 usage(B_FALSE);
5204 }
5205 }
5206
5207 argc -= optind;
5208 argv += optind;
5209
0b7936d5
AS
5210 /* check arguments */
5211 parse_allow_args(argc, argv, un, &opts);
5212
5213 /* try to open the dataset */
684e8c06
AE
5214 if ((zhp = zfs_open(g_zfs, opts.dataset, ZFS_TYPE_FILESYSTEM |
5215 ZFS_TYPE_VOLUME)) == NULL) {
5216 (void) fprintf(stderr, "Failed to open dataset: %s\n",
0b7936d5
AS
5217 opts.dataset);
5218 return (-1);
34dc7c2f 5219 }
0b7936d5
AS
5220
5221 if (zfs_get_fsacl(zhp, &perm_nvl) != 0)
5222 goto cleanup2;
5223
5224 fs_perm_set_init(&fs_perm_set);
5225 if (parse_fs_perm_set(&fs_perm_set, perm_nvl) != 0) {
684e8c06 5226 (void) fprintf(stderr, "Failed to parse fsacl permissions\n");
0b7936d5 5227 goto cleanup1;
34dc7c2f
BB
5228 }
5229
0b7936d5
AS
5230 if (opts.prt_perms)
5231 print_fs_perms(&fs_perm_set);
5232 else {
5233 (void) construct_fsacl_list(un, &opts, &update_perm_nvl);
5234 if (zfs_set_fsacl(zhp, un, update_perm_nvl) != 0)
5235 goto cleanup0;
5236
5237 if (un && opts.recursive) {
5238 struct deleg_perms data = { un, update_perm_nvl };
5239 if (zfs_iter_filesystems(zhp, set_deleg_perms,
5240 &data) != 0)
5241 goto cleanup0;
5242 }
34dc7c2f
BB
5243 }
5244
0b7936d5 5245 error = 0;
34dc7c2f 5246
0b7936d5
AS
5247cleanup0:
5248 nvlist_free(perm_nvl);
5249 if (update_perm_nvl != NULL)
5250 nvlist_free(update_perm_nvl);
5251cleanup1:
5252 fs_perm_set_fini(&fs_perm_set);
5253cleanup2:
5254 zfs_close(zhp);
5255
5256 return (error);
5257}
5258
0b7936d5
AS
5259static int
5260zfs_do_allow(int argc, char **argv)
5261{
5262 return (zfs_do_allow_unallow_impl(argc, argv, B_FALSE));
5263}
5264
0b7936d5
AS
5265static int
5266zfs_do_unallow(int argc, char **argv)
5267{
5268 return (zfs_do_allow_unallow_impl(argc, argv, B_TRUE));
34dc7c2f
BB
5269}
5270
45d1cae3
BB
5271static int
5272zfs_do_hold_rele_impl(int argc, char **argv, boolean_t holding)
5273{
5274 int errors = 0;
5275 int i;
5276 const char *tag;
5277 boolean_t recursive = B_FALSE;
428870ff 5278 const char *opts = holding ? "rt" : "r";
45d1cae3 5279 int c;
45d1cae3
BB
5280
5281 /* check options */
428870ff 5282 while ((c = getopt(argc, argv, opts)) != -1) {
45d1cae3
BB
5283 switch (c) {
5284 case 'r':
5285 recursive = B_TRUE;
5286 break;
5287 case '?':
5288 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
5289 optopt);
5290 usage(B_FALSE);
5291 }
5292 }
5293
5294 argc -= optind;
5295 argv += optind;
5296
5297 /* check number of arguments */
5298 if (argc < 2)
5299 usage(B_FALSE);
5300
5301 tag = argv[0];
5302 --argc;
5303 ++argv;
5304
428870ff
BB
5305 if (holding && tag[0] == '.') {
5306 /* tags starting with '.' are reserved for libzfs */
5307 (void) fprintf(stderr, gettext("tag may not start with '.'\n"));
5308 usage(B_FALSE);
45d1cae3
BB
5309 }
5310
5311 for (i = 0; i < argc; ++i) {
5312 zfs_handle_t *zhp;
5313 char parent[ZFS_MAXNAMELEN];
5314 const char *delim;
5315 char *path = argv[i];
5316
5317 delim = strchr(path, '@');
5318 if (delim == NULL) {
5319 (void) fprintf(stderr,
5320 gettext("'%s' is not a snapshot\n"), path);
5321 ++errors;
5322 continue;
5323 }
5324 (void) strncpy(parent, path, delim - path);
5325 parent[delim - path] = '\0';
5326
5327 zhp = zfs_open(g_zfs, parent,
5328 ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME);
5329 if (zhp == NULL) {
5330 ++errors;
5331 continue;
5332 }
428870ff 5333 if (holding) {
95fd54a1 5334 if (zfs_hold(zhp, delim+1, tag, recursive, -1) != 0)
428870ff
BB
5335 ++errors;
5336 } else {
5337 if (zfs_release(zhp, delim+1, tag, recursive) != 0)
5338 ++errors;
5339 }
45d1cae3
BB
5340 zfs_close(zhp);
5341 }
5342
5343 return (errors != 0);
5344}
5345
5346/*
428870ff 5347 * zfs hold [-r] [-t] <tag> <snap> ...
45d1cae3 5348 *
428870ff 5349 * -r Recursively hold
45d1cae3
BB
5350 *
5351 * Apply a user-hold with the given tag to the list of snapshots.
5352 */
5353static int
5354zfs_do_hold(int argc, char **argv)
5355{
5356 return (zfs_do_hold_rele_impl(argc, argv, B_TRUE));
5357}
5358
5359/*
5360 * zfs release [-r] <tag> <snap> ...
5361 *
428870ff 5362 * -r Recursively release
45d1cae3
BB
5363 *
5364 * Release a user-hold with the given tag from the list of snapshots.
5365 */
5366static int
5367zfs_do_release(int argc, char **argv)
5368{
5369 return (zfs_do_hold_rele_impl(argc, argv, B_FALSE));
5370}
5371
0b7936d5
AS
5372typedef struct holds_cbdata {
5373 boolean_t cb_recursive;
5374 const char *cb_snapname;
5375 nvlist_t **cb_nvlp;
5376 size_t cb_max_namelen;
5377 size_t cb_max_taglen;
5378} holds_cbdata_t;
5379
5380#define STRFTIME_FMT_STR "%a %b %e %k:%M %Y"
5381#define DATETIME_BUF_LEN (32)
5382/*
5383 *
5384 */
5385static void
5386print_holds(boolean_t scripted, int nwidth, int tagwidth, nvlist_t *nvl)
5387{
5388 int i;
5389 nvpair_t *nvp = NULL;
5390 char *hdr_cols[] = { "NAME", "TAG", "TIMESTAMP" };
5391 const char *col;
5392
5393 if (!scripted) {
5394 for (i = 0; i < 3; i++) {
5395 col = gettext(hdr_cols[i]);
5396 if (i < 2)
5397 (void) printf("%-*s ", i ? tagwidth : nwidth,
5398 col);
5399 else
5400 (void) printf("%s\n", col);
5401 }
5402 }
5403
5404 while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
5405 char *zname = nvpair_name(nvp);
5406 nvlist_t *nvl2;
5407 nvpair_t *nvp2 = NULL;
5408 (void) nvpair_value_nvlist(nvp, &nvl2);
5409 while ((nvp2 = nvlist_next_nvpair(nvl2, nvp2)) != NULL) {
5410 char tsbuf[DATETIME_BUF_LEN];
5411 char *tagname = nvpair_name(nvp2);
5412 uint64_t val = 0;
5413 time_t time;
5414 struct tm t;
5415 char sep = scripted ? '\t' : ' ';
5416 int sepnum = scripted ? 1 : 2;
5417
5418 (void) nvpair_value_uint64(nvp2, &val);
5419 time = (time_t)val;
5420 (void) localtime_r(&time, &t);
5421 (void) strftime(tsbuf, DATETIME_BUF_LEN,
5422 gettext(STRFTIME_FMT_STR), &t);
5423
5424 (void) printf("%-*s%*c%-*s%*c%s\n", nwidth, zname,
5425 sepnum, sep, tagwidth, tagname, sepnum, sep, tsbuf);
5426 }
5427 }
5428}
5429
5430/*
5431 * Generic callback function to list a dataset or snapshot.
5432 */
5433static int
5434holds_callback(zfs_handle_t *zhp, void *data)
5435{
5436 holds_cbdata_t *cbp = data;
5437 nvlist_t *top_nvl = *cbp->cb_nvlp;
5438 nvlist_t *nvl = NULL;
5439 nvpair_t *nvp = NULL;
5440 const char *zname = zfs_get_name(zhp);
5441 size_t znamelen = strnlen(zname, ZFS_MAXNAMELEN);
5442
5443 if (cbp->cb_recursive) {
5444 const char *snapname;
5445 char *delim = strchr(zname, '@');
5446 if (delim == NULL)
5447 return (0);
5448
5449 snapname = delim + 1;
5450 if (strcmp(cbp->cb_snapname, snapname))
5451 return (0);
5452 }
5453
5454 if (zfs_get_holds(zhp, &nvl) != 0)
5455 return (-1);
5456
5457 if (znamelen > cbp->cb_max_namelen)
5458 cbp->cb_max_namelen = znamelen;
5459
5460 while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) {
5461 const char *tag = nvpair_name(nvp);
5462 size_t taglen = strnlen(tag, MAXNAMELEN);
5463 if (taglen > cbp->cb_max_taglen)
5464 cbp->cb_max_taglen = taglen;
5465 }
5466
5467 return (nvlist_add_nvlist(top_nvl, zname, nvl));
5468}
5469
5470/*
5471 * zfs holds [-r] <snap> ...
5472 *
5473 * -r Recursively hold
5474 */
5475static int
5476zfs_do_holds(int argc, char **argv)
5477{
5478 int errors = 0;
5479 int c;
5480 int i;
5481 boolean_t scripted = B_FALSE;
5482 boolean_t recursive = B_FALSE;
5483 const char *opts = "rH";
5484 nvlist_t *nvl;
5485
5486 int types = ZFS_TYPE_SNAPSHOT;
5487 holds_cbdata_t cb = { 0 };
5488
5489 int limit = 0;
ad60af8e 5490 int ret = 0;
0b7936d5
AS
5491 int flags = 0;
5492
5493 /* check options */
5494 while ((c = getopt(argc, argv, opts)) != -1) {
5495 switch (c) {
5496 case 'r':
5497 recursive = B_TRUE;
5498 break;
5499 case 'H':
5500 scripted = B_TRUE;
5501 break;
5502 case '?':
5503 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
5504 optopt);
5505 usage(B_FALSE);
5506 }
5507 }
5508
5509 if (recursive) {
5510 types |= ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME;
5511 flags |= ZFS_ITER_RECURSE;
5512 }
5513
5514 argc -= optind;
5515 argv += optind;
5516
5517 /* check number of arguments */
5518 if (argc < 1)
5519 usage(B_FALSE);
5520
5521 if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0)
5522 nomem();
5523
5524 for (i = 0; i < argc; ++i) {
5525 char *snapshot = argv[i];
5526 const char *delim;
5527 const char *snapname;
5528
5529 delim = strchr(snapshot, '@');
5530 if (delim == NULL) {
5531 (void) fprintf(stderr,
5532 gettext("'%s' is not a snapshot\n"), snapshot);
5533 ++errors;
5534 continue;
5535 }
5536 snapname = delim + 1;
5537 if (recursive)
5538 snapshot[delim - snapshot] = '\0';
5539
5540 cb.cb_recursive = recursive;
5541 cb.cb_snapname = snapname;
5542 cb.cb_nvlp = &nvl;
5543
5544 /*
5545 * 1. collect holds data, set format options
5546 */
5547 ret = zfs_for_each(argc, argv, flags, types, NULL, NULL, limit,
5548 holds_callback, &cb);
5549 if (ret != 0)
5550 ++errors;
5551 }
5552
5553 /*
5554 * 2. print holds data
5555 */
5556 print_holds(scripted, cb.cb_max_namelen, cb.cb_max_taglen, nvl);
5557
5558 if (nvlist_empty(nvl))
42cb3819 5559 (void) fprintf(stderr, gettext("no datasets available\n"));
0b7936d5
AS
5560
5561 nvlist_free(nvl);
5562
5563 return (0 != errors);
5564}
5565
34dc7c2f
BB
5566#define CHECK_SPINNER 30
5567#define SPINNER_TIME 3 /* seconds */
5568#define MOUNT_TIME 5 /* seconds */
5569
5570static int
5571get_one_dataset(zfs_handle_t *zhp, void *data)
5572{
428870ff 5573 static char *spin[] = { "-", "\\", "|", "/" };
34dc7c2f
BB
5574 static int spinval = 0;
5575 static int spincheck = 0;
5576 static time_t last_spin_time = (time_t)0;
572e2857 5577 get_all_cb_t *cbp = data;
34dc7c2f
BB
5578 zfs_type_t type = zfs_get_type(zhp);
5579
5580 if (cbp->cb_verbose) {
5581 if (--spincheck < 0) {
5582 time_t now = time(NULL);
5583 if (last_spin_time + SPINNER_TIME < now) {
428870ff 5584 update_progress(spin[spinval++ % 4]);
34dc7c2f
BB
5585 last_spin_time = now;
5586 }
5587 spincheck = CHECK_SPINNER;
5588 }
5589 }
5590
5591 /*
254255f7 5592 * Iterate over any nested datasets.
34dc7c2f 5593 */
572e2857 5594 if (zfs_iter_filesystems(zhp, get_one_dataset, data) != 0) {
34dc7c2f
BB
5595 zfs_close(zhp);
5596 return (1);
5597 }
5598
5599 /*
5600 * Skip any datasets whose type does not match.
5601 */
572e2857 5602 if ((type & ZFS_TYPE_FILESYSTEM) == 0) {
34dc7c2f
BB
5603 zfs_close(zhp);
5604 return (0);
5605 }
572e2857
BB
5606 libzfs_add_handle(cbp, zhp);
5607 assert(cbp->cb_used <= cbp->cb_alloc);
34dc7c2f
BB
5608
5609 return (0);
5610}
5611
5612static void
572e2857 5613get_all_datasets(zfs_handle_t ***dslist, size_t *count, boolean_t verbose)
34dc7c2f 5614{
572e2857 5615 get_all_cb_t cb = { 0 };
34dc7c2f 5616 cb.cb_verbose = verbose;
572e2857 5617 cb.cb_getone = get_one_dataset;
34dc7c2f 5618
428870ff
BB
5619 if (verbose)
5620 set_progress_header(gettext("Reading ZFS config"));
34dc7c2f
BB
5621 (void) zfs_iter_root(g_zfs, get_one_dataset, &cb);
5622
5623 *dslist = cb.cb_handles;
5624 *count = cb.cb_used;
5625
428870ff
BB
5626 if (verbose)
5627 finish_progress(gettext("done."));
34dc7c2f
BB
5628}
5629
34dc7c2f
BB
5630/*
5631 * Generic callback for sharing or mounting filesystems. Because the code is so
5632 * similar, we have a common function with an extra parameter to determine which
5633 * mode we are using.
5634 */
5635#define OP_SHARE 0x1
5636#define OP_MOUNT 0x2
5637
5638/*
5639 * Share or mount a dataset.
5640 */
5641static int
5642share_mount_one(zfs_handle_t *zhp, int op, int flags, char *protocol,
5643 boolean_t explicit, const char *options)
5644{
5645 char mountpoint[ZFS_MAXPROPLEN];
5646 char shareopts[ZFS_MAXPROPLEN];
5647 char smbshareopts[ZFS_MAXPROPLEN];
5648 const char *cmdname = op == OP_SHARE ? "share" : "mount";
5649 struct mnttab mnt;
5650 uint64_t zoned, canmount;
34dc7c2f
BB
5651 boolean_t shared_nfs, shared_smb;
5652
572e2857 5653 assert(zfs_get_type(zhp) & ZFS_TYPE_FILESYSTEM);
34dc7c2f 5654
572e2857
BB
5655 /*
5656 * Check to make sure we can mount/share this dataset. If we
5657 * are in the global zone and the filesystem is exported to a
5658 * local zone, or if we are in a local zone and the
5659 * filesystem is not exported, then it is an error.
5660 */
5661 zoned = zfs_prop_get_int(zhp, ZFS_PROP_ZONED);
34dc7c2f 5662
572e2857
BB
5663 if (zoned && getzoneid() == GLOBAL_ZONEID) {
5664 if (!explicit)
5665 return (0);
34dc7c2f 5666
572e2857
BB
5667 (void) fprintf(stderr, gettext("cannot %s '%s': "
5668 "dataset is exported to a local zone\n"), cmdname,
5669 zfs_get_name(zhp));
5670 return (1);
34dc7c2f 5671
572e2857
BB
5672 } else if (!zoned && getzoneid() != GLOBAL_ZONEID) {
5673 if (!explicit)
5674 return (0);
34dc7c2f 5675
572e2857
BB
5676 (void) fprintf(stderr, gettext("cannot %s '%s': "
5677 "permission denied\n"), cmdname,
5678 zfs_get_name(zhp));
5679 return (1);
5680 }
34dc7c2f 5681
572e2857
BB
5682 /*
5683 * Ignore any filesystems which don't apply to us. This
5684 * includes those with a legacy mountpoint, or those with
5685 * legacy share options.
5686 */
5687 verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, mountpoint,
5688 sizeof (mountpoint), NULL, NULL, 0, B_FALSE) == 0);
5689 verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS, shareopts,
5690 sizeof (shareopts), NULL, NULL, 0, B_FALSE) == 0);
5691 verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB, smbshareopts,
5692 sizeof (smbshareopts), NULL, NULL, 0, B_FALSE) == 0);
5693
5694 if (op == OP_SHARE && strcmp(shareopts, "off") == 0 &&
5695 strcmp(smbshareopts, "off") == 0) {
5696 if (!explicit)
5697 return (0);
34dc7c2f 5698
572e2857
BB
5699 (void) fprintf(stderr, gettext("cannot share '%s': "
5700 "legacy share\n"), zfs_get_name(zhp));
5701 (void) fprintf(stderr, gettext("use share(1M) to "
5702 "share this filesystem, or set "
5703 "sharenfs property on\n"));
5704 return (1);
5705 }
34dc7c2f 5706
572e2857
BB
5707 /*
5708 * We cannot share or mount legacy filesystems. If the
5709 * shareopts is non-legacy but the mountpoint is legacy, we
5710 * treat it as a legacy share.
5711 */
5712 if (strcmp(mountpoint, "legacy") == 0) {
5713 if (!explicit)
5714 return (0);
34dc7c2f 5715
572e2857
BB
5716 (void) fprintf(stderr, gettext("cannot %s '%s': "
5717 "legacy mountpoint\n"), cmdname, zfs_get_name(zhp));
5718 (void) fprintf(stderr, gettext("use %s(1M) to "
5719 "%s this filesystem\n"), cmdname, cmdname);
5720 return (1);
5721 }
34dc7c2f 5722
572e2857
BB
5723 if (strcmp(mountpoint, "none") == 0) {
5724 if (!explicit)
5725 return (0);
34dc7c2f 5726
572e2857
BB
5727 (void) fprintf(stderr, gettext("cannot %s '%s': no "
5728 "mountpoint set\n"), cmdname, zfs_get_name(zhp));
5729 return (1);
5730 }
34dc7c2f 5731
572e2857
BB
5732 /*
5733 * canmount explicit outcome
5734 * on no pass through
5735 * on yes pass through
5736 * off no return 0
5737 * off yes display error, return 1
5738 * noauto no return 0
5739 * noauto yes pass through
5740 */
5741 canmount = zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT);
5742 if (canmount == ZFS_CANMOUNT_OFF) {
5743 if (!explicit)
5744 return (0);
5745
5746 (void) fprintf(stderr, gettext("cannot %s '%s': "
5747 "'canmount' property is set to 'off'\n"), cmdname,
5748 zfs_get_name(zhp));
5749 return (1);
5750 } else if (canmount == ZFS_CANMOUNT_NOAUTO && !explicit) {
5751 return (0);
5752 }
5753
5754 /*
5755 * At this point, we have verified that the mountpoint and/or
5756 * shareopts are appropriate for auto management. If the
5757 * filesystem is already mounted or shared, return (failing
5758 * for explicit requests); otherwise mount or share the
5759 * filesystem.
5760 */
5761 switch (op) {
5762 case OP_SHARE:
5763
5764 shared_nfs = zfs_is_shared_nfs(zhp, NULL);
5765 shared_smb = zfs_is_shared_smb(zhp, NULL);
5766
149e873a
BB
5767 if ((shared_nfs && shared_smb) ||
5768 ((shared_nfs && strcmp(shareopts, "on") == 0) &&
5769 (strcmp(smbshareopts, "off") == 0)) ||
5770 ((shared_smb && strcmp(smbshareopts, "on") == 0) &&
5771 (strcmp(shareopts, "off") == 0))) {
34dc7c2f
BB
5772 if (!explicit)
5773 return (0);
5774
572e2857
BB
5775 (void) fprintf(stderr, gettext("cannot share "
5776 "'%s': filesystem already shared\n"),
34dc7c2f
BB
5777 zfs_get_name(zhp));
5778 return (1);
34dc7c2f
BB
5779 }
5780
572e2857
BB
5781 if (!zfs_is_mounted(zhp, NULL) &&
5782 zfs_mount(zhp, NULL, 0) != 0)
5783 return (1);
34dc7c2f 5784
572e2857
BB
5785 if (protocol == NULL) {
5786 if (zfs_shareall(zhp) != 0)
34dc7c2f 5787 return (1);
572e2857
BB
5788 } else if (strcmp(protocol, "nfs") == 0) {
5789 if (zfs_share_nfs(zhp))
34dc7c2f 5790 return (1);
572e2857
BB
5791 } else if (strcmp(protocol, "smb") == 0) {
5792 if (zfs_share_smb(zhp))
34dc7c2f 5793 return (1);
572e2857
BB
5794 } else {
5795 (void) fprintf(stderr, gettext("cannot share "
5796 "'%s': invalid share type '%s' "
5797 "specified\n"),
5798 zfs_get_name(zhp), protocol);
5799 return (1);
5800 }
34dc7c2f 5801
572e2857 5802 break;
34dc7c2f 5803
572e2857
BB
5804 case OP_MOUNT:
5805 if (options == NULL)
5806 mnt.mnt_mntopts = "";
5807 else
5808 mnt.mnt_mntopts = (char *)options;
34dc7c2f 5809
572e2857
BB
5810 if (!hasmntopt(&mnt, MNTOPT_REMOUNT) &&
5811 zfs_is_mounted(zhp, NULL)) {
5812 if (!explicit)
5813 return (0);
34dc7c2f 5814
572e2857
BB
5815 (void) fprintf(stderr, gettext("cannot mount "
5816 "'%s': filesystem already mounted\n"),
5817 zfs_get_name(zhp));
5818 return (1);
34dc7c2f 5819 }
572e2857
BB
5820
5821 if (zfs_mount(zhp, options, flags) != 0)
5822 return (1);
5823 break;
5824 }
34dc7c2f 5825
34dc7c2f
BB
5826 return (0);
5827}
5828
5829/*
5830 * Reports progress in the form "(current/total)". Not thread-safe.
5831 */
5832static void
5833report_mount_progress(int current, int total)
5834{
428870ff 5835 static time_t last_progress_time = 0;
34dc7c2f 5836 time_t now = time(NULL);
428870ff 5837 char info[32];
34dc7c2f
BB
5838
5839 /* report 1..n instead of 0..n-1 */
5840 ++current;
5841
5842 /* display header if we're here for the first time */
5843 if (current == 1) {
428870ff 5844 set_progress_header(gettext("Mounting ZFS filesystems"));
34dc7c2f
BB
5845 } else if (current != total && last_progress_time + MOUNT_TIME >= now) {
5846 /* too soon to report again */
5847 return;
5848 }
5849
5850 last_progress_time = now;
5851
428870ff 5852 (void) sprintf(info, "(%d/%d)", current, total);
34dc7c2f 5853
428870ff
BB
5854 if (current == total)
5855 finish_progress(info);
5856 else
5857 update_progress(info);
34dc7c2f
BB
5858}
5859
5860static void
5861append_options(char *mntopts, char *newopts)
5862{
5863 int len = strlen(mntopts);
5864
5865 /* original length plus new string to append plus 1 for the comma */
5866 if (len + 1 + strlen(newopts) >= MNT_LINE_MAX) {
5867 (void) fprintf(stderr, gettext("the opts argument for "
d6320ddb 5868 "'%s' option is too long (more than %d chars)\n"),
34dc7c2f
BB
5869 "-o", MNT_LINE_MAX);
5870 usage(B_FALSE);
5871 }
5872
5873 if (*mntopts)
5874 mntopts[len++] = ',';
5875
5876 (void) strcpy(&mntopts[len], newopts);
5877}
5878
5879static int
5880share_mount(int op, int argc, char **argv)
5881{
5882 int do_all = 0;
5883 boolean_t verbose = B_FALSE;
5884 int c, ret = 0;
5885 char *options = NULL;
572e2857 5886 int flags = 0;
34dc7c2f
BB
5887
5888 /* check options */
e18be9a6 5889 while ((c = getopt(argc, argv, op == OP_MOUNT ? ":avo:O" : "a"))
34dc7c2f
BB
5890 != -1) {
5891 switch (c) {
5892 case 'a':
5893 do_all = 1;
5894 break;
5895 case 'v':
5896 verbose = B_TRUE;
5897 break;
5898 case 'o':
5899 if (*optarg == '\0') {
5900 (void) fprintf(stderr, gettext("empty mount "
5901 "options (-o) specified\n"));
5902 usage(B_FALSE);
5903 }
5904
5905 if (options == NULL)
5906 options = safe_malloc(MNT_LINE_MAX + 1);
5907
5908 /* option validation is done later */
5909 append_options(options, optarg);
5910 break;
e18be9a6
SC
5911 case 'O':
5912 flags |= MS_OVERLAY;
5913 break;
34dc7c2f
BB
5914 case ':':
5915 (void) fprintf(stderr, gettext("missing argument for "
5916 "'%c' option\n"), optopt);
5917 usage(B_FALSE);
5918 break;
5919 case '?':
5920 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
5921 optopt);
5922 usage(B_FALSE);
5923 }
5924 }
5925
5926 argc -= optind;
5927 argv += optind;
5928
5929 /* check number of arguments */
5930 if (do_all) {
5931 zfs_handle_t **dslist = NULL;
5932 size_t i, count = 0;
5933 char *protocol = NULL;
5934
572e2857
BB
5935 if (op == OP_SHARE && argc > 0) {
5936 if (strcmp(argv[0], "nfs") != 0 &&
5937 strcmp(argv[0], "smb") != 0) {
34dc7c2f 5938 (void) fprintf(stderr, gettext("share type "
428870ff 5939 "must be 'nfs' or 'smb'\n"));
34dc7c2f
BB
5940 usage(B_FALSE);
5941 }
5942 protocol = argv[0];
5943 argc--;
5944 argv++;
34dc7c2f
BB
5945 }
5946
5947 if (argc != 0) {
5948 (void) fprintf(stderr, gettext("too many arguments\n"));
5949 usage(B_FALSE);
5950 }
5951
428870ff 5952 start_progress_timer();
572e2857 5953 get_all_datasets(&dslist, &count, verbose);
34dc7c2f
BB
5954
5955 if (count == 0)
5956 return (0);
5957
572e2857 5958 qsort(dslist, count, sizeof (void *), libzfs_dataset_cmp);
34dc7c2f
BB
5959
5960 for (i = 0; i < count; i++) {
5961 if (verbose)
5962 report_mount_progress(i, count);
5963
5964 if (share_mount_one(dslist[i], op, flags, protocol,
5965 B_FALSE, options) != 0)
5966 ret = 1;
5967 zfs_close(dslist[i]);
5968 }
5969
5970 free(dslist);
5971 } else if (argc == 0) {
5972 struct mnttab entry;
5973
5974 if ((op == OP_SHARE) || (options != NULL)) {
5975 (void) fprintf(stderr, gettext("missing filesystem "
5976 "argument (specify -a for all)\n"));
5977 usage(B_FALSE);
5978 }
5979
5980 /*
9a616b5d 5981 * When mount is given no arguments, go through /etc/mtab and
34dc7c2f
BB
5982 * display any active ZFS mounts. We hide any snapshots, since
5983 * they are controlled automatically.
5984 */
cbca6076
JL
5985
5986 /* Reopen MNTTAB to prevent reading stale data from open file */
5987 if (freopen(MNTTAB, "r", mnttab_file) == NULL)
5988 return (ENOENT);
5989
34dc7c2f
BB
5990 while (getmntent(mnttab_file, &entry) == 0) {
5991 if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0 ||
5992 strchr(entry.mnt_special, '@') != NULL)
5993 continue;
5994
5995 (void) printf("%-30s %s\n", entry.mnt_special,
5996 entry.mnt_mountp);
5997 }
5998
5999 } else {
6000 zfs_handle_t *zhp;
6001
34dc7c2f
BB
6002 if (argc > 1) {
6003 (void) fprintf(stderr,
6004 gettext("too many arguments\n"));
6005 usage(B_FALSE);
6006 }
6007
572e2857
BB
6008 if ((zhp = zfs_open(g_zfs, argv[0],
6009 ZFS_TYPE_FILESYSTEM)) == NULL) {
34dc7c2f
BB
6010 ret = 1;
6011 } else {
6012 ret = share_mount_one(zhp, op, flags, NULL, B_TRUE,
6013 options);
6014 zfs_close(zhp);
6015 }
6016 }
6017
6018 return (ret);
6019}
6020
6021/*
428870ff 6022 * zfs mount -a [nfs]
34dc7c2f
BB
6023 * zfs mount filesystem
6024 *
6025 * Mount all filesystems, or mount the given filesystem.
6026 */
6027static int
6028zfs_do_mount(int argc, char **argv)
6029{
6030 return (share_mount(OP_MOUNT, argc, argv));
6031}
6032
6033/*
428870ff 6034 * zfs share -a [nfs | smb]
34dc7c2f
BB
6035 * zfs share filesystem
6036 *
6037 * Share all filesystems, or share the given filesystem.
6038 */
6039static int
6040zfs_do_share(int argc, char **argv)
6041{
6042 return (share_mount(OP_SHARE, argc, argv));
6043}
6044
6045typedef struct unshare_unmount_node {
6046 zfs_handle_t *un_zhp;
6047 char *un_mountp;
6048 uu_avl_node_t un_avlnode;
6049} unshare_unmount_node_t;
6050
6051/* ARGSUSED */
6052static int
6053unshare_unmount_compare(const void *larg, const void *rarg, void *unused)
6054{
6055 const unshare_unmount_node_t *l = larg;
6056 const unshare_unmount_node_t *r = rarg;
6057
6058 return (strcmp(l->un_mountp, r->un_mountp));
6059}
6060
6061/*
6062 * Convenience routine used by zfs_do_umount() and manual_unmount(). Given an
9a616b5d 6063 * absolute path, find the entry /etc/mtab, verify that its a ZFS filesystem,
34dc7c2f
BB
6064 * and unmount it appropriately.
6065 */
6066static int
6067unshare_unmount_path(int op, char *path, int flags, boolean_t is_manual)
6068{
6069 zfs_handle_t *zhp;
ad60af8e 6070 int ret = 0;
34dc7c2f
BB
6071 struct stat64 statbuf;
6072 struct extmnttab entry;
6073 const char *cmdname = (op == OP_SHARE) ? "unshare" : "unmount";
6074 ino_t path_inode;
6075
6076 /*
9a616b5d 6077 * Search for the path in /etc/mtab. Rather than looking for the
34dc7c2f
BB
6078 * specific path, which can be fooled by non-standard paths (i.e. ".."
6079 * or "//"), we stat() the path and search for the corresponding
6080 * (major,minor) device pair.
6081 */
6082 if (stat64(path, &statbuf) != 0) {
6083 (void) fprintf(stderr, gettext("cannot %s '%s': %s\n"),
6084 cmdname, path, strerror(errno));
6085 return (1);
6086 }
6087 path_inode = statbuf.st_ino;
6088
6089 /*
6090 * Search for the given (major,minor) pair in the mount table.
6091 */
cbca6076
JL
6092
6093 /* Reopen MNTTAB to prevent reading stale data from open file */
6094 if (freopen(MNTTAB, "r", mnttab_file) == NULL)
6095 return (ENOENT);
6096
34dc7c2f
BB
6097 while ((ret = getextmntent(mnttab_file, &entry, 0)) == 0) {
6098 if (entry.mnt_major == major(statbuf.st_dev) &&
6099 entry.mnt_minor == minor(statbuf.st_dev))
6100 break;
6101 }
6102 if (ret != 0) {
6103 if (op == OP_SHARE) {
6104 (void) fprintf(stderr, gettext("cannot %s '%s': not "
6105 "currently mounted\n"), cmdname, path);
6106 return (1);
6107 }
9a616b5d 6108 (void) fprintf(stderr, gettext("warning: %s not in mtab\n"),
34dc7c2f
BB
6109 path);
6110 if ((ret = umount2(path, flags)) != 0)
6111 (void) fprintf(stderr, gettext("%s: %s\n"), path,
6112 strerror(errno));
6113 return (ret != 0);
6114 }
6115
6116 if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0) {
6117 (void) fprintf(stderr, gettext("cannot %s '%s': not a ZFS "
6118 "filesystem\n"), cmdname, path);
6119 return (1);
6120 }
6121
6122 if ((zhp = zfs_open(g_zfs, entry.mnt_special,
6123 ZFS_TYPE_FILESYSTEM)) == NULL)
6124 return (1);
6125
34dc7c2f 6126 ret = 1;
b128c09f
BB
6127 if (stat64(entry.mnt_mountp, &statbuf) != 0) {
6128 (void) fprintf(stderr, gettext("cannot %s '%s': %s\n"),
6129 cmdname, path, strerror(errno));
6130 goto out;
6131 } else if (statbuf.st_ino != path_inode) {
6132 (void) fprintf(stderr, gettext("cannot "
6133 "%s '%s': not a mountpoint\n"), cmdname, path);
6134 goto out;
6135 }
6136
34dc7c2f
BB
6137 if (op == OP_SHARE) {
6138 char nfs_mnt_prop[ZFS_MAXPROPLEN];
6139 char smbshare_prop[ZFS_MAXPROPLEN];
6140
6141 verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS, nfs_mnt_prop,
6142 sizeof (nfs_mnt_prop), NULL, NULL, 0, B_FALSE) == 0);
6143 verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB, smbshare_prop,
6144 sizeof (smbshare_prop), NULL, NULL, 0, B_FALSE) == 0);
6145
6146 if (strcmp(nfs_mnt_prop, "off") == 0 &&
6147 strcmp(smbshare_prop, "off") == 0) {
6148 (void) fprintf(stderr, gettext("cannot unshare "
6149 "'%s': legacy share\n"), path);
9a616b5d
BB
6150 (void) fprintf(stderr, gettext("use exportfs(8) "
6151 "or smbcontrol(1) to unshare this filesystem\n"));
34dc7c2f
BB
6152 } else if (!zfs_is_shared(zhp)) {
6153 (void) fprintf(stderr, gettext("cannot unshare '%s': "
6154 "not currently shared\n"), path);
6155 } else {
6156 ret = zfs_unshareall_bypath(zhp, path);
6157 }
6158 } else {
6159 char mtpt_prop[ZFS_MAXPROPLEN];
6160
6161 verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, mtpt_prop,
6162 sizeof (mtpt_prop), NULL, NULL, 0, B_FALSE) == 0);
6163
b128c09f 6164 if (is_manual) {
34dc7c2f
BB
6165 ret = zfs_unmount(zhp, NULL, flags);
6166 } else if (strcmp(mtpt_prop, "legacy") == 0) {
6167 (void) fprintf(stderr, gettext("cannot unmount "
6168 "'%s': legacy mountpoint\n"),
6169 zfs_get_name(zhp));
9a616b5d 6170 (void) fprintf(stderr, gettext("use umount(8) "
34dc7c2f
BB
6171 "to unmount this filesystem\n"));
6172 } else {
6173 ret = zfs_unmountall(zhp, flags);
6174 }
6175 }
6176
b128c09f 6177out:
34dc7c2f
BB
6178 zfs_close(zhp);
6179
6180 return (ret != 0);
6181}
6182
6183/*
6184 * Generic callback for unsharing or unmounting a filesystem.
6185 */
6186static int
6187unshare_unmount(int op, int argc, char **argv)
6188{
6189 int do_all = 0;
6190 int flags = 0;
6191 int ret = 0;
572e2857 6192 int c;
34dc7c2f 6193 zfs_handle_t *zhp;
428870ff 6194 char nfs_mnt_prop[ZFS_MAXPROPLEN];
34dc7c2f
BB
6195 char sharesmb[ZFS_MAXPROPLEN];
6196
6197 /* check options */
6198 while ((c = getopt(argc, argv, op == OP_SHARE ? "a" : "af")) != -1) {
6199 switch (c) {
6200 case 'a':
6201 do_all = 1;
6202 break;
6203 case 'f':
6204 flags = MS_FORCE;
6205 break;
6206 case '?':
6207 (void) fprintf(stderr, gettext("invalid option '%c'\n"),
6208 optopt);
6209 usage(B_FALSE);
6210 }
6211 }
6212
6213 argc -= optind;
6214 argv += optind;
6215
6216 if (do_all) {
6217 /*
6218 * We could make use of zfs_for_each() to walk all datasets in
6219 * the system, but this would be very inefficient, especially
9a616b5d
BB
6220 * since we would have to linearly search /etc/mtab for each
6221 * one. Instead, do one pass through /etc/mtab looking for
34dc7c2f
BB
6222 * zfs entries and call zfs_unmount() for each one.
6223 *
6224 * Things get a little tricky if the administrator has created
6225 * mountpoints beneath other ZFS filesystems. In this case, we
6226 * have to unmount the deepest filesystems first. To accomplish
6227 * this, we place all the mountpoints in an AVL tree sorted by
6228 * the special type (dataset name), and walk the result in
6229 * reverse to make sure to get any snapshots first.
6230 */
6231 struct mnttab entry;
6232 uu_avl_pool_t *pool;
149e873a 6233 uu_avl_t *tree = NULL;
34dc7c2f
BB
6234 unshare_unmount_node_t *node;
6235 uu_avl_index_t idx;
6236 uu_avl_walk_t *walk;
6237
6238 if (argc != 0) {
6239 (void) fprintf(stderr, gettext("too many arguments\n"));
6240 usage(B_FALSE);
6241 }
6242
428870ff 6243 if (((pool = uu_avl_pool_create("unmount_pool",
34dc7c2f
BB
6244 sizeof (unshare_unmount_node_t),
6245 offsetof(unshare_unmount_node_t, un_avlnode),
428870ff
BB
6246 unshare_unmount_compare, UU_DEFAULT)) == NULL) ||
6247 ((tree = uu_avl_create(pool, NULL, UU_DEFAULT)) == NULL))
6248 nomem();
34dc7c2f 6249
cbca6076
JL
6250 /* Reopen MNTTAB to prevent reading stale data from open file */
6251 if (freopen(MNTTAB, "r", mnttab_file) == NULL)
6252 return (ENOENT);
6253
34dc7c2f
BB
6254 while (getmntent(mnttab_file, &entry) == 0) {
6255
6256 /* ignore non-ZFS entries */
6257 if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0)
6258 continue;
6259
6260 /* ignore snapshots */
6261 if (strchr(entry.mnt_special, '@') != NULL)
6262 continue;
6263
6264 if ((zhp = zfs_open(g_zfs, entry.mnt_special,
6265 ZFS_TYPE_FILESYSTEM)) == NULL) {
6266 ret = 1;
6267 continue;
6268 }
6269
6270 switch (op) {
6271 case OP_SHARE:
6272 verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS,
428870ff
BB
6273 nfs_mnt_prop,
6274 sizeof (nfs_mnt_prop),
34dc7c2f 6275 NULL, NULL, 0, B_FALSE) == 0);
428870ff 6276 if (strcmp(nfs_mnt_prop, "off") != 0)
34dc7c2f
BB
6277 break;
6278 verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB,
428870ff
BB
6279 nfs_mnt_prop,
6280 sizeof (nfs_mnt_prop),
34dc7c2f 6281 NULL, NULL, 0, B_FALSE) == 0);
428870ff 6282 if (strcmp(nfs_mnt_prop, "off") == 0)
34dc7c2f
BB
6283 continue;
6284 break;
6285 case OP_MOUNT:
6286 /* Ignore legacy mounts */
6287 verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT,
428870ff
BB
6288 nfs_mnt_prop,
6289 sizeof (nfs_mnt_prop),
34dc7c2f 6290 NULL, NULL, 0, B_FALSE) == 0);
428870ff 6291 if (strcmp(nfs_mnt_prop, "legacy") == 0)
34dc7c2f
BB
6292 continue;
6293 /* Ignore canmount=noauto mounts */
6294 if (zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT) ==
6295 ZFS_CANMOUNT_NOAUTO)
6296 continue;
6297 default:
6298 break;
6299 }
6300
6301 node = safe_malloc(sizeof (unshare_unmount_node_t));
6302 node->un_zhp = zhp;
428870ff 6303 node->un_mountp = safe_strdup(entry.mnt_mountp);
34dc7c2f
BB
6304
6305 uu_avl_node_init(node, &node->un_avlnode, pool);
6306
6307 if (uu_avl_find(tree, node, NULL, &idx) == NULL) {
6308 uu_avl_insert(tree, node, idx);
6309 } else {
6310 zfs_close(node->un_zhp);
6311 free(node->un_mountp);
6312 free(node);
6313 }
6314 }
6315
6316 /*
6317 * Walk the AVL tree in reverse, unmounting each filesystem and
6318 * removing it from the AVL tree in the process.
6319 */
6320 if ((walk = uu_avl_walk_start(tree,
428870ff
BB
6321 UU_WALK_REVERSE | UU_WALK_ROBUST)) == NULL)
6322 nomem();
34dc7c2f
BB
6323
6324 while ((node = uu_avl_walk_next(walk)) != NULL) {
6325 uu_avl_remove(tree, node);
6326
6327 switch (op) {
6328 case OP_SHARE:
6329 if (zfs_unshareall_bypath(node->un_zhp,
6330 node->un_mountp) != 0)
6331 ret = 1;
6332 break;
6333
6334 case OP_MOUNT:
6335 if (zfs_unmount(node->un_zhp,
6336 node->un_mountp, flags) != 0)
6337 ret = 1;
6338 break;
6339 }
6340
6341 zfs_close(node->un_zhp);
6342 free(node->un_mountp);
6343 free(node);
6344 }
6345
6346 uu_avl_walk_end(walk);
6347 uu_avl_destroy(tree);
6348 uu_avl_pool_destroy(pool);
6349
34dc7c2f
BB
6350 } else {
6351 if (argc != 1) {
6352 if (argc == 0)
6353 (void) fprintf(stderr,
6354 gettext("missing filesystem argument\n"));
6355 else
6356 (void) fprintf(stderr,
6357 gettext("too many arguments\n"));
6358 usage(B_FALSE);
6359 }
6360
6361 /*
6362 * We have an argument, but it may be a full path or a ZFS
6363 * filesystem. Pass full paths off to unmount_path() (shared by
6364 * manual_unmount), otherwise open the filesystem and pass to
6365 * zfs_unmount().
6366 */
6367 if (argv[0][0] == '/')
6368 return (unshare_unmount_path(op, argv[0],
6369 flags, B_FALSE));
6370
572e2857
BB
6371 if ((zhp = zfs_open(g_zfs, argv[0],
6372 ZFS_TYPE_FILESYSTEM)) == NULL)
34dc7c2f
BB
6373 return (1);
6374
572e2857
BB
6375 verify(zfs_prop_get(zhp, op == OP_SHARE ?
6376 ZFS_PROP_SHARENFS : ZFS_PROP_MOUNTPOINT,
6377 nfs_mnt_prop, sizeof (nfs_mnt_prop), NULL,
6378 NULL, 0, B_FALSE) == 0);
34dc7c2f 6379
572e2857
BB
6380 switch (op) {
6381 case OP_SHARE:
6382 verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS,
6383 nfs_mnt_prop,
6384 sizeof (nfs_mnt_prop),
6385 NULL, NULL, 0, B_FALSE) == 0);
6386 verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB,
6387 sharesmb, sizeof (sharesmb), NULL, NULL,
6388 0, B_FALSE) == 0);
6389
6390 if (strcmp(nfs_mnt_prop, "off") == 0 &&
6391 strcmp(sharesmb, "off") == 0) {
6392 (void) fprintf(stderr, gettext("cannot "
6393 "unshare '%s': legacy share\n"),
6394 zfs_get_name(zhp));
6395 (void) fprintf(stderr, gettext("use "
6396 "unshare(1M) to unshare this "
6397 "filesystem\n"));
6398 ret = 1;
6399 } else if (!zfs_is_shared(zhp)) {
6400 (void) fprintf(stderr, gettext("cannot "
6401 "unshare '%s': not currently "
6402 "shared\n"), zfs_get_name(zhp));
6403 ret = 1;
6404 } else if (zfs_unshareall(zhp) != 0) {
6405 ret = 1;
6406 }
6407 break;
34dc7c2f 6408
572e2857
BB
6409 case OP_MOUNT:
6410 if (strcmp(nfs_mnt_prop, "legacy") == 0) {
6411 (void) fprintf(stderr, gettext("cannot "
6412 "unmount '%s': legacy "
6413 "mountpoint\n"), zfs_get_name(zhp));
6414 (void) fprintf(stderr, gettext("use "
6415 "umount(1M) to unmount this "
6416 "filesystem\n"));
6417 ret = 1;
6418 } else if (!zfs_is_mounted(zhp, NULL)) {
6419 (void) fprintf(stderr, gettext("cannot "
6420 "unmount '%s': not currently "
6421 "mounted\n"),
6422 zfs_get_name(zhp));
6423 ret = 1;
6424 } else if (zfs_unmountall(zhp, flags) != 0) {
6425 ret = 1;
34dc7c2f 6426 }
572e2857 6427 break;
34dc7c2f
BB
6428 }
6429
6430 zfs_close(zhp);
6431 }
6432
6433 return (ret);
6434}
6435
6436/*
6437 * zfs unmount -a
6438 * zfs unmount filesystem
6439 *
6440 * Unmount all filesystems, or a specific ZFS filesystem.
6441 */
6442static int
6443zfs_do_unmount(int argc, char **argv)
6444{
6445 return (unshare_unmount(OP_MOUNT, argc, argv));
6446}
6447
6448/*
6449 * zfs unshare -a
6450 * zfs unshare filesystem
6451 *
6452 * Unshare all filesystems, or a specific ZFS filesystem.
6453 */
6454static int
6455zfs_do_unshare(int argc, char **argv)
6456{
6457 return (unshare_unmount(OP_SHARE, argc, argv));
6458}
6459
34dc7c2f
BB
6460static int
6461find_command_idx(char *command, int *idx)
6462{
6463 int i;
6464
6465 for (i = 0; i < NCOMMAND; i++) {
6466 if (command_table[i].name == NULL)
6467 continue;
6468
6469 if (strcmp(command, command_table[i].name) == 0) {
6470 *idx = i;
6471 return (0);
6472 }
6473 }
6474 return (1);
6475}
6476
572e2857
BB
6477static int
6478zfs_do_diff(int argc, char **argv)
6479{
6480 zfs_handle_t *zhp;
6481 int flags = 0;
6482 char *tosnap = NULL;
6483 char *fromsnap = NULL;
6484 char *atp, *copy;
ad60af8e 6485 int err = 0;
572e2857
BB
6486 int c;
6487
6488 while ((c = getopt(argc, argv, "FHt")) != -1) {
6489 switch (c) {
6490 case 'F':
6491 flags |= ZFS_DIFF_CLASSIFY;
6492 break;
6493 case 'H':
6494 flags |= ZFS_DIFF_PARSEABLE;
6495 break;
6496 case 't':
6497 flags |= ZFS_DIFF_TIMESTAMP;
6498 break;
6499 default:
6500 (void) fprintf(stderr,
6501 gettext("invalid option '%c'\n"), optopt);
6502 usage(B_FALSE);
6503 }
6504 }
6505
6506 argc -= optind;
6507 argv += optind;
6508
6509 if (argc < 1) {
6510 (void) fprintf(stderr,
6511 gettext("must provide at least one snapshot name\n"));
6512 usage(B_FALSE);
6513 }
6514
6515 if (argc > 2) {
6516 (void) fprintf(stderr, gettext("too many arguments\n"));
6517 usage(B_FALSE);
6518 }
6519
6520 fromsnap = argv[0];
6521 tosnap = (argc == 2) ? argv[1] : NULL;
6522
6523 copy = NULL;
6524 if (*fromsnap != '@')
6525 copy = strdup(fromsnap);
6526 else if (tosnap)
6527 copy = strdup(tosnap);
6528 if (copy == NULL)
6529 usage(B_FALSE);
6530
c65aa5b2 6531 if ((atp = strchr(copy, '@')))
572e2857
BB
6532 *atp = '\0';
6533
6534 if ((zhp = zfs_open(g_zfs, copy, ZFS_TYPE_FILESYSTEM)) == NULL)
6535 return (1);
6536
6537 free(copy);
6538
6539 /*
6540 * Ignore SIGPIPE so that the library can give us
6541 * information on any failure
6542 */
6543 (void) sigignore(SIGPIPE);
6544
6545 err = zfs_show_diffs(zhp, STDOUT_FILENO, fromsnap, tosnap, flags);
6546
6547 zfs_close(zhp);
6548
6549 return (err != 0);
6550}
6551
da536844
MA
6552/*
6553 * zfs bookmark <fs@snap> <fs#bmark>
6554 *
6555 * Creates a bookmark with the given name from the given snapshot.
6556 */
6557static int
6558zfs_do_bookmark(int argc, char **argv)
6559{
6560 char snapname[ZFS_MAXNAMELEN];
6561 zfs_handle_t *zhp;
6562 nvlist_t *nvl;
6563 int ret = 0;
6564 int c;
6565
6566 /* check options */
6567 while ((c = getopt(argc, argv, "")) != -1) {
6568 switch (c) {
6569 case '?':
6570 (void) fprintf(stderr,
6571 gettext("invalid option '%c'\n"), optopt);
6572 goto usage;
6573 }
6574 }
6575
6576 argc -= optind;
6577 argv += optind;
6578
6579 /* check number of arguments */
6580 if (argc < 1) {
6581 (void) fprintf(stderr, gettext("missing snapshot argument\n"));
6582 goto usage;
6583 }
6584 if (argc < 2) {
6585 (void) fprintf(stderr, gettext("missing bookmark argument\n"));
6586 goto usage;
6587 }
6588
6589 if (strchr(argv[1], '#') == NULL) {
6590 (void) fprintf(stderr,
6591 gettext("invalid bookmark name '%s' -- "
6592 "must contain a '#'\n"), argv[1]);
6593 goto usage;
6594 }
6595
6596 if (argv[0][0] == '@') {
6597 /*
6598 * Snapshot name begins with @.
6599 * Default to same fs as bookmark.
6600 */
6601 (void) strncpy(snapname, argv[1], sizeof (snapname));
6602 *strchr(snapname, '#') = '\0';
6603 (void) strlcat(snapname, argv[0], sizeof (snapname));
6604 } else {
6605 (void) strncpy(snapname, argv[0], sizeof (snapname));
6606 }
6607 zhp = zfs_open(g_zfs, snapname, ZFS_TYPE_SNAPSHOT);
6608 if (zhp == NULL)
6609 goto usage;
6610 zfs_close(zhp);
6611
6612
6613 nvl = fnvlist_alloc();
6614 fnvlist_add_string(nvl, argv[1], snapname);
6615 ret = lzc_bookmark(nvl, NULL);
6616 fnvlist_free(nvl);
6617
6618 if (ret != 0) {
6619 const char *err_msg;
6620 char errbuf[1024];
6621
6622 (void) snprintf(errbuf, sizeof (errbuf),
6623 dgettext(TEXT_DOMAIN,
6624 "cannot create bookmark '%s'"), argv[1]);
6625
6626 switch (ret) {
6627 case EXDEV:
6628 err_msg = "bookmark is in a different pool";
6629 break;
6630 case EEXIST:
6631 err_msg = "bookmark exists";
6632 break;
6633 case EINVAL:
6634 err_msg = "invalid argument";
6635 break;
6636 case ENOTSUP:
6637 err_msg = "bookmark feature not enabled";
6638 break;
6639 default:
6640 err_msg = "unknown error";
6641 break;
6642 }
6643 (void) fprintf(stderr, "%s: %s\n", errbuf,
6644 dgettext(TEXT_DOMAIN, err_msg));
6645 }
6646
6647 return (ret);
6648
6649usage:
6650 usage(B_FALSE);
6651 return (-1);
6652}
6653
34dc7c2f
BB
6654int
6655main(int argc, char **argv)
6656{
ad60af8e 6657 int ret = 0;
d4ed6673 6658 int i = 0;
34dc7c2f
BB
6659 char *cmdname;
6660
6661 (void) setlocale(LC_ALL, "");
6662 (void) textdomain(TEXT_DOMAIN);
6663
308a451f
MA
6664 dprintf_setup(&argc, argv);
6665
34dc7c2f
BB
6666 opterr = 0;
6667
34dc7c2f 6668 /*
d53368f6 6669 * Make sure the user has specified some command.
34dc7c2f 6670 */
d53368f6
BB
6671 if (argc < 2) {
6672 (void) fprintf(stderr, gettext("missing command\n"));
6673 usage(B_FALSE);
6674 }
34dc7c2f 6675
d53368f6 6676 cmdname = argv[1];
34dc7c2f 6677
d53368f6
BB
6678 /*
6679 * The 'umount' command is an alias for 'unmount'
6680 */
6681 if (strcmp(cmdname, "umount") == 0)
6682 cmdname = "unmount";
34dc7c2f 6683
d53368f6
BB
6684 /*
6685 * The 'recv' command is an alias for 'receive'
6686 */
6687 if (strcmp(cmdname, "recv") == 0)
6688 cmdname = "receive";
34dc7c2f 6689
10b75496
S
6690 /*
6691 * The 'snap' command is an alias for 'snapshot'
6692 */
6693 if (strcmp(cmdname, "snap") == 0)
6694 cmdname = "snapshot";
6695
d53368f6
BB
6696 /*
6697 * Special case '-?'
6698 */
6699 if ((strcmp(cmdname, "-?") == 0) ||
6700 (strcmp(cmdname, "--help") == 0))
6701 usage(B_TRUE);
34dc7c2f 6702
d53368f6
BB
6703 if ((g_zfs = libzfs_init()) == NULL)
6704 return (1);
9b020fd9 6705
0bc7a7a7
TF
6706 mnttab_file = g_zfs->libzfs_mnttab;
6707
6f1ffb06 6708 zfs_save_arguments(argc, argv, history_str, sizeof (history_str));
9b020fd9 6709
d53368f6 6710 libzfs_print_on_error(g_zfs, B_TRUE);
9b020fd9 6711
d53368f6
BB
6712 /*
6713 * Run the appropriate command.
6714 */
e0730668 6715 libzfs_mnttab_cache(g_zfs, B_TRUE);
d53368f6
BB
6716 if (find_command_idx(cmdname, &i) == 0) {
6717 current_command = &command_table[i];
6718 ret = command_table[i].func(argc - 1, argv + 1);
6719 } else if (strchr(cmdname, '=') != NULL) {
6720 verify(find_command_idx("set", &i) == 0);
6721 current_command = &command_table[i];
6722 ret = command_table[i].func(argc, argv);
6723 } else {
6724 (void) fprintf(stderr, gettext("unrecognized "
6725 "command '%s'\n"), cmdname);
6726 usage(B_FALSE);
6727 ret = 1;
34dc7c2f
BB
6728 }
6729
6f1ffb06
MA
6730 if (ret == 0 && log_history)
6731 (void) zpool_log_history(g_zfs, history_str);
6732
fb8e608d
TC
6733 libzfs_fini(g_zfs);
6734
34dc7c2f
BB
6735 /*
6736 * The 'ZFS_ABORT' environment variable causes us to dump core on exit
6737 * for the purposes of running ::findleaks.
6738 */
6739 if (getenv("ZFS_ABORT") != NULL) {
6740 (void) printf("dumping core by request\n");
6741 abort();
6742 }
6743
6744 return (ret);
6745}