1eda14cbcSMatt Macy /* 2eda14cbcSMatt Macy * CDDL HEADER START 3eda14cbcSMatt Macy * 4eda14cbcSMatt Macy * The contents of this file are subject to the terms of the 5eda14cbcSMatt Macy * Common Development and Distribution License (the "License"). 6eda14cbcSMatt Macy * You may not use this file except in compliance with the License. 7eda14cbcSMatt Macy * 8eda14cbcSMatt Macy * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9eda14cbcSMatt Macy * or http://www.opensolaris.org/os/licensing. 10eda14cbcSMatt Macy * See the License for the specific language governing permissions 11eda14cbcSMatt Macy * and limitations under the License. 12eda14cbcSMatt Macy * 13eda14cbcSMatt Macy * When distributing Covered Code, include this CDDL HEADER in each 14eda14cbcSMatt Macy * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15eda14cbcSMatt Macy * If applicable, add the following below this CDDL HEADER, with the 16eda14cbcSMatt Macy * fields enclosed by brackets "[]" replaced with your own identifying 17eda14cbcSMatt Macy * information: Portions Copyright [yyyy] [name of copyright owner] 18eda14cbcSMatt Macy * 19eda14cbcSMatt Macy * CDDL HEADER END 20eda14cbcSMatt Macy */ 21eda14cbcSMatt Macy 22eda14cbcSMatt Macy /* 23eda14cbcSMatt Macy * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 24eda14cbcSMatt Macy * Copyright (c) 2011, 2020 by Delphix. All rights reserved. 25eda14cbcSMatt Macy * Copyright 2012 Milan Jurik. All rights reserved. 26eda14cbcSMatt Macy * Copyright (c) 2012, Joyent, Inc. All rights reserved. 27eda14cbcSMatt Macy * Copyright (c) 2013 Steven Hartland. All rights reserved. 28eda14cbcSMatt Macy * Copyright 2016 Igor Kozhukhov <ikozhukhov@gmail.com>. 29eda14cbcSMatt Macy * Copyright 2016 Nexenta Systems, Inc. 30eda14cbcSMatt Macy * Copyright (c) 2019 Datto Inc. 31eda14cbcSMatt Macy * Copyright (c) 2019, loli10K <ezomori.nozomu@gmail.com> 32eda14cbcSMatt Macy * Copyright 2019 Joyent, Inc. 33eda14cbcSMatt Macy * Copyright (c) 2019, 2020 by Christian Schwarz. All rights reserved. 34eda14cbcSMatt Macy */ 35eda14cbcSMatt Macy 36eda14cbcSMatt Macy #include <assert.h> 37eda14cbcSMatt Macy #include <ctype.h> 38eda14cbcSMatt Macy #include <sys/debug.h> 39eda14cbcSMatt Macy #include <errno.h> 40eda14cbcSMatt Macy #include <getopt.h> 41eda14cbcSMatt Macy #include <libgen.h> 42eda14cbcSMatt Macy #include <libintl.h> 43eda14cbcSMatt Macy #include <libuutil.h> 44eda14cbcSMatt Macy #include <libnvpair.h> 45eda14cbcSMatt Macy #include <locale.h> 46eda14cbcSMatt Macy #include <stddef.h> 47eda14cbcSMatt Macy #include <stdio.h> 48eda14cbcSMatt Macy #include <stdlib.h> 49eda14cbcSMatt Macy #include <strings.h> 50eda14cbcSMatt Macy #include <unistd.h> 51eda14cbcSMatt Macy #include <fcntl.h> 52eda14cbcSMatt Macy #include <zone.h> 53eda14cbcSMatt Macy #include <grp.h> 54eda14cbcSMatt Macy #include <pwd.h> 55eda14cbcSMatt Macy #include <signal.h> 56eda14cbcSMatt Macy #include <sys/debug.h> 57eda14cbcSMatt Macy #include <sys/list.h> 58eda14cbcSMatt Macy #include <sys/mkdev.h> 59eda14cbcSMatt Macy #include <sys/mntent.h> 60eda14cbcSMatt Macy #include <sys/mnttab.h> 61eda14cbcSMatt Macy #include <sys/mount.h> 62eda14cbcSMatt Macy #include <sys/stat.h> 63eda14cbcSMatt Macy #include <sys/fs/zfs.h> 64eda14cbcSMatt Macy #include <sys/systeminfo.h> 65eda14cbcSMatt Macy #include <sys/types.h> 66eda14cbcSMatt Macy #include <time.h> 67eda14cbcSMatt Macy #include <sys/zfs_project.h> 68eda14cbcSMatt Macy 69eda14cbcSMatt Macy #include <libzfs.h> 70eda14cbcSMatt Macy #include <libzfs_core.h> 71eda14cbcSMatt Macy #include <zfs_prop.h> 72eda14cbcSMatt Macy #include <zfs_deleg.h> 73eda14cbcSMatt Macy #include <libzutil.h> 74eda14cbcSMatt Macy #include <libuutil.h> 75eda14cbcSMatt Macy #ifdef HAVE_IDMAP 76eda14cbcSMatt Macy #include <aclutils.h> 77eda14cbcSMatt Macy #include <directory.h> 78eda14cbcSMatt Macy #endif /* HAVE_IDMAP */ 79eda14cbcSMatt Macy 80eda14cbcSMatt Macy #include "zfs_iter.h" 81eda14cbcSMatt Macy #include "zfs_util.h" 82eda14cbcSMatt Macy #include "zfs_comutil.h" 83eda14cbcSMatt Macy #include "libzfs_impl.h" 84eda14cbcSMatt Macy #include "zfs_projectutil.h" 85eda14cbcSMatt Macy 86eda14cbcSMatt Macy libzfs_handle_t *g_zfs; 87eda14cbcSMatt Macy 88eda14cbcSMatt Macy static FILE *mnttab_file; 89eda14cbcSMatt Macy static char history_str[HIS_MAX_RECORD_LEN]; 90eda14cbcSMatt Macy static boolean_t log_history = B_TRUE; 91eda14cbcSMatt Macy 92eda14cbcSMatt Macy static int zfs_do_clone(int argc, char **argv); 93eda14cbcSMatt Macy static int zfs_do_create(int argc, char **argv); 94eda14cbcSMatt Macy static int zfs_do_destroy(int argc, char **argv); 95eda14cbcSMatt Macy static int zfs_do_get(int argc, char **argv); 96eda14cbcSMatt Macy static int zfs_do_inherit(int argc, char **argv); 97eda14cbcSMatt Macy static int zfs_do_list(int argc, char **argv); 98eda14cbcSMatt Macy static int zfs_do_mount(int argc, char **argv); 99eda14cbcSMatt Macy static int zfs_do_rename(int argc, char **argv); 100eda14cbcSMatt Macy static int zfs_do_rollback(int argc, char **argv); 101eda14cbcSMatt Macy static int zfs_do_set(int argc, char **argv); 102eda14cbcSMatt Macy static int zfs_do_upgrade(int argc, char **argv); 103eda14cbcSMatt Macy static int zfs_do_snapshot(int argc, char **argv); 104eda14cbcSMatt Macy static int zfs_do_unmount(int argc, char **argv); 105eda14cbcSMatt Macy static int zfs_do_share(int argc, char **argv); 106eda14cbcSMatt Macy static int zfs_do_unshare(int argc, char **argv); 107eda14cbcSMatt Macy static int zfs_do_send(int argc, char **argv); 108eda14cbcSMatt Macy static int zfs_do_receive(int argc, char **argv); 109eda14cbcSMatt Macy static int zfs_do_promote(int argc, char **argv); 110eda14cbcSMatt Macy static int zfs_do_userspace(int argc, char **argv); 111eda14cbcSMatt Macy static int zfs_do_allow(int argc, char **argv); 112eda14cbcSMatt Macy static int zfs_do_unallow(int argc, char **argv); 113eda14cbcSMatt Macy static int zfs_do_hold(int argc, char **argv); 114eda14cbcSMatt Macy static int zfs_do_holds(int argc, char **argv); 115eda14cbcSMatt Macy static int zfs_do_release(int argc, char **argv); 116eda14cbcSMatt Macy static int zfs_do_diff(int argc, char **argv); 117eda14cbcSMatt Macy static int zfs_do_bookmark(int argc, char **argv); 118eda14cbcSMatt Macy static int zfs_do_channel_program(int argc, char **argv); 119eda14cbcSMatt Macy static int zfs_do_load_key(int argc, char **argv); 120eda14cbcSMatt Macy static int zfs_do_unload_key(int argc, char **argv); 121eda14cbcSMatt Macy static int zfs_do_change_key(int argc, char **argv); 122eda14cbcSMatt Macy static int zfs_do_project(int argc, char **argv); 123eda14cbcSMatt Macy static int zfs_do_version(int argc, char **argv); 124eda14cbcSMatt Macy static int zfs_do_redact(int argc, char **argv); 125eda14cbcSMatt Macy static int zfs_do_wait(int argc, char **argv); 126eda14cbcSMatt Macy 127eda14cbcSMatt Macy #ifdef __FreeBSD__ 128eda14cbcSMatt Macy static int zfs_do_jail(int argc, char **argv); 129eda14cbcSMatt Macy static int zfs_do_unjail(int argc, char **argv); 130eda14cbcSMatt Macy #endif 131eda14cbcSMatt Macy 132eda14cbcSMatt Macy /* 133eda14cbcSMatt Macy * Enable a reasonable set of defaults for libumem debugging on DEBUG builds. 134eda14cbcSMatt Macy */ 135eda14cbcSMatt Macy 136eda14cbcSMatt Macy #ifdef DEBUG 137eda14cbcSMatt Macy const char * 138eda14cbcSMatt Macy _umem_debug_init(void) 139eda14cbcSMatt Macy { 140eda14cbcSMatt Macy return ("default,verbose"); /* $UMEM_DEBUG setting */ 141eda14cbcSMatt Macy } 142eda14cbcSMatt Macy 143eda14cbcSMatt Macy const char * 144eda14cbcSMatt Macy _umem_logging_init(void) 145eda14cbcSMatt Macy { 146eda14cbcSMatt Macy return ("fail,contents"); /* $UMEM_LOGGING setting */ 147eda14cbcSMatt Macy } 148eda14cbcSMatt Macy #endif 149eda14cbcSMatt Macy 150eda14cbcSMatt Macy typedef enum { 151eda14cbcSMatt Macy HELP_CLONE, 152eda14cbcSMatt Macy HELP_CREATE, 153eda14cbcSMatt Macy HELP_DESTROY, 154eda14cbcSMatt Macy HELP_GET, 155eda14cbcSMatt Macy HELP_INHERIT, 156eda14cbcSMatt Macy HELP_UPGRADE, 157eda14cbcSMatt Macy HELP_LIST, 158eda14cbcSMatt Macy HELP_MOUNT, 159eda14cbcSMatt Macy HELP_PROMOTE, 160eda14cbcSMatt Macy HELP_RECEIVE, 161eda14cbcSMatt Macy HELP_RENAME, 162eda14cbcSMatt Macy HELP_ROLLBACK, 163eda14cbcSMatt Macy HELP_SEND, 164eda14cbcSMatt Macy HELP_SET, 165eda14cbcSMatt Macy HELP_SHARE, 166eda14cbcSMatt Macy HELP_SNAPSHOT, 167eda14cbcSMatt Macy HELP_UNMOUNT, 168eda14cbcSMatt Macy HELP_UNSHARE, 169eda14cbcSMatt Macy HELP_ALLOW, 170eda14cbcSMatt Macy HELP_UNALLOW, 171eda14cbcSMatt Macy HELP_USERSPACE, 172eda14cbcSMatt Macy HELP_GROUPSPACE, 173eda14cbcSMatt Macy HELP_PROJECTSPACE, 174eda14cbcSMatt Macy HELP_PROJECT, 175eda14cbcSMatt Macy HELP_HOLD, 176eda14cbcSMatt Macy HELP_HOLDS, 177eda14cbcSMatt Macy HELP_RELEASE, 178eda14cbcSMatt Macy HELP_DIFF, 179eda14cbcSMatt Macy HELP_BOOKMARK, 180eda14cbcSMatt Macy HELP_CHANNEL_PROGRAM, 181eda14cbcSMatt Macy HELP_LOAD_KEY, 182eda14cbcSMatt Macy HELP_UNLOAD_KEY, 183eda14cbcSMatt Macy HELP_CHANGE_KEY, 184eda14cbcSMatt Macy HELP_VERSION, 185eda14cbcSMatt Macy HELP_REDACT, 186eda14cbcSMatt Macy HELP_JAIL, 187eda14cbcSMatt Macy HELP_UNJAIL, 188eda14cbcSMatt Macy HELP_WAIT, 189eda14cbcSMatt Macy } zfs_help_t; 190eda14cbcSMatt Macy 191eda14cbcSMatt Macy typedef struct zfs_command { 192eda14cbcSMatt Macy const char *name; 193eda14cbcSMatt Macy int (*func)(int argc, char **argv); 194eda14cbcSMatt Macy zfs_help_t usage; 195eda14cbcSMatt Macy } zfs_command_t; 196eda14cbcSMatt Macy 197eda14cbcSMatt Macy /* 198eda14cbcSMatt Macy * Master command table. Each ZFS command has a name, associated function, and 199eda14cbcSMatt Macy * usage message. The usage messages need to be internationalized, so we have 200eda14cbcSMatt Macy * to have a function to return the usage message based on a command index. 201eda14cbcSMatt Macy * 202eda14cbcSMatt Macy * These commands are organized according to how they are displayed in the usage 203eda14cbcSMatt Macy * message. An empty command (one with a NULL name) indicates an empty line in 204eda14cbcSMatt Macy * the generic usage message. 205eda14cbcSMatt Macy */ 206eda14cbcSMatt Macy static zfs_command_t command_table[] = { 207eda14cbcSMatt Macy { "version", zfs_do_version, HELP_VERSION }, 208eda14cbcSMatt Macy { NULL }, 209eda14cbcSMatt Macy { "create", zfs_do_create, HELP_CREATE }, 210eda14cbcSMatt Macy { "destroy", zfs_do_destroy, HELP_DESTROY }, 211eda14cbcSMatt Macy { NULL }, 212eda14cbcSMatt Macy { "snapshot", zfs_do_snapshot, HELP_SNAPSHOT }, 213eda14cbcSMatt Macy { "rollback", zfs_do_rollback, HELP_ROLLBACK }, 214eda14cbcSMatt Macy { "clone", zfs_do_clone, HELP_CLONE }, 215eda14cbcSMatt Macy { "promote", zfs_do_promote, HELP_PROMOTE }, 216eda14cbcSMatt Macy { "rename", zfs_do_rename, HELP_RENAME }, 217eda14cbcSMatt Macy { "bookmark", zfs_do_bookmark, HELP_BOOKMARK }, 218eda14cbcSMatt Macy { "program", zfs_do_channel_program, HELP_CHANNEL_PROGRAM }, 219eda14cbcSMatt Macy { NULL }, 220eda14cbcSMatt Macy { "list", zfs_do_list, HELP_LIST }, 221eda14cbcSMatt Macy { NULL }, 222eda14cbcSMatt Macy { "set", zfs_do_set, HELP_SET }, 223eda14cbcSMatt Macy { "get", zfs_do_get, HELP_GET }, 224eda14cbcSMatt Macy { "inherit", zfs_do_inherit, HELP_INHERIT }, 225eda14cbcSMatt Macy { "upgrade", zfs_do_upgrade, HELP_UPGRADE }, 226eda14cbcSMatt Macy { NULL }, 227eda14cbcSMatt Macy { "userspace", zfs_do_userspace, HELP_USERSPACE }, 228eda14cbcSMatt Macy { "groupspace", zfs_do_userspace, HELP_GROUPSPACE }, 229eda14cbcSMatt Macy { "projectspace", zfs_do_userspace, HELP_PROJECTSPACE }, 230eda14cbcSMatt Macy { NULL }, 231eda14cbcSMatt Macy { "project", zfs_do_project, HELP_PROJECT }, 232eda14cbcSMatt Macy { NULL }, 233eda14cbcSMatt Macy { "mount", zfs_do_mount, HELP_MOUNT }, 234eda14cbcSMatt Macy { "unmount", zfs_do_unmount, HELP_UNMOUNT }, 235eda14cbcSMatt Macy { "share", zfs_do_share, HELP_SHARE }, 236eda14cbcSMatt Macy { "unshare", zfs_do_unshare, HELP_UNSHARE }, 237eda14cbcSMatt Macy { NULL }, 238eda14cbcSMatt Macy { "send", zfs_do_send, HELP_SEND }, 239eda14cbcSMatt Macy { "receive", zfs_do_receive, HELP_RECEIVE }, 240eda14cbcSMatt Macy { NULL }, 241eda14cbcSMatt Macy { "allow", zfs_do_allow, HELP_ALLOW }, 242eda14cbcSMatt Macy { NULL }, 243eda14cbcSMatt Macy { "unallow", zfs_do_unallow, HELP_UNALLOW }, 244eda14cbcSMatt Macy { NULL }, 245eda14cbcSMatt Macy { "hold", zfs_do_hold, HELP_HOLD }, 246eda14cbcSMatt Macy { "holds", zfs_do_holds, HELP_HOLDS }, 247eda14cbcSMatt Macy { "release", zfs_do_release, HELP_RELEASE }, 248eda14cbcSMatt Macy { "diff", zfs_do_diff, HELP_DIFF }, 249eda14cbcSMatt Macy { "load-key", zfs_do_load_key, HELP_LOAD_KEY }, 250eda14cbcSMatt Macy { "unload-key", zfs_do_unload_key, HELP_UNLOAD_KEY }, 251eda14cbcSMatt Macy { "change-key", zfs_do_change_key, HELP_CHANGE_KEY }, 252eda14cbcSMatt Macy { "redact", zfs_do_redact, HELP_REDACT }, 253eda14cbcSMatt Macy { "wait", zfs_do_wait, HELP_WAIT }, 254eda14cbcSMatt Macy 255eda14cbcSMatt Macy #ifdef __FreeBSD__ 256eda14cbcSMatt Macy { "jail", zfs_do_jail, HELP_JAIL }, 257eda14cbcSMatt Macy { "unjail", zfs_do_unjail, HELP_UNJAIL }, 258eda14cbcSMatt Macy #endif 259eda14cbcSMatt Macy }; 260eda14cbcSMatt Macy 261eda14cbcSMatt Macy #define NCOMMAND (sizeof (command_table) / sizeof (command_table[0])) 262eda14cbcSMatt Macy 263eda14cbcSMatt Macy zfs_command_t *current_command; 264eda14cbcSMatt Macy 265eda14cbcSMatt Macy static const char * 266eda14cbcSMatt Macy get_usage(zfs_help_t idx) 267eda14cbcSMatt Macy { 268eda14cbcSMatt Macy switch (idx) { 269eda14cbcSMatt Macy case HELP_CLONE: 270eda14cbcSMatt Macy return (gettext("\tclone [-p] [-o property=value] ... " 271eda14cbcSMatt Macy "<snapshot> <filesystem|volume>\n")); 272eda14cbcSMatt Macy case HELP_CREATE: 273eda14cbcSMatt Macy return (gettext("\tcreate [-Pnpv] [-o property=value] ... " 274eda14cbcSMatt Macy "<filesystem>\n" 275eda14cbcSMatt Macy "\tcreate [-Pnpsv] [-b blocksize] [-o property=value] ... " 276eda14cbcSMatt Macy "-V <size> <volume>\n")); 277eda14cbcSMatt Macy case HELP_DESTROY: 278eda14cbcSMatt Macy return (gettext("\tdestroy [-fnpRrv] <filesystem|volume>\n" 279eda14cbcSMatt Macy "\tdestroy [-dnpRrv] " 280eda14cbcSMatt Macy "<filesystem|volume>@<snap>[%<snap>][,...]\n" 281eda14cbcSMatt Macy "\tdestroy <filesystem|volume>#<bookmark>\n")); 282eda14cbcSMatt Macy case HELP_GET: 283eda14cbcSMatt Macy return (gettext("\tget [-rHp] [-d max] " 284eda14cbcSMatt Macy "[-o \"all\" | field[,...]]\n" 285eda14cbcSMatt Macy "\t [-t type[,...]] [-s source[,...]]\n" 286eda14cbcSMatt Macy "\t <\"all\" | property[,...]> " 287eda14cbcSMatt Macy "[filesystem|volume|snapshot|bookmark] ...\n")); 288eda14cbcSMatt Macy case HELP_INHERIT: 289eda14cbcSMatt Macy return (gettext("\tinherit [-rS] <property> " 290eda14cbcSMatt Macy "<filesystem|volume|snapshot> ...\n")); 291eda14cbcSMatt Macy case HELP_UPGRADE: 292eda14cbcSMatt Macy return (gettext("\tupgrade [-v]\n" 293eda14cbcSMatt Macy "\tupgrade [-r] [-V version] <-a | filesystem ...>\n")); 294eda14cbcSMatt Macy case HELP_LIST: 295eda14cbcSMatt Macy return (gettext("\tlist [-Hp] [-r|-d max] [-o property[,...]] " 296eda14cbcSMatt Macy "[-s property]...\n\t [-S property]... [-t type[,...]] " 297eda14cbcSMatt Macy "[filesystem|volume|snapshot] ...\n")); 298eda14cbcSMatt Macy case HELP_MOUNT: 299eda14cbcSMatt Macy return (gettext("\tmount\n" 300eda14cbcSMatt Macy "\tmount [-flvO] [-o opts] <-a | filesystem>\n")); 301eda14cbcSMatt Macy case HELP_PROMOTE: 302eda14cbcSMatt Macy return (gettext("\tpromote <clone-filesystem>\n")); 303eda14cbcSMatt Macy case HELP_RECEIVE: 304eda14cbcSMatt Macy return (gettext("\treceive [-vMnsFhu] " 305eda14cbcSMatt Macy "[-o <property>=<value>] ... [-x <property>] ...\n" 306eda14cbcSMatt Macy "\t <filesystem|volume|snapshot>\n" 307eda14cbcSMatt Macy "\treceive [-vMnsFhu] [-o <property>=<value>] ... " 308eda14cbcSMatt Macy "[-x <property>] ... \n" 309eda14cbcSMatt Macy "\t [-d | -e] <filesystem>\n" 310eda14cbcSMatt Macy "\treceive -A <filesystem|volume>\n")); 311eda14cbcSMatt Macy case HELP_RENAME: 312eda14cbcSMatt Macy return (gettext("\trename [-f] <filesystem|volume|snapshot> " 313eda14cbcSMatt Macy "<filesystem|volume|snapshot>\n" 314*eac7052fSMatt Macy "\trename -p [-f] <filesystem|volume> <filesystem|volume>\n" 315*eac7052fSMatt Macy "\trename -u [-f] <filesystem> <filesystem>\n" 316eda14cbcSMatt Macy "\trename -r <snapshot> <snapshot>\n")); 317eda14cbcSMatt Macy case HELP_ROLLBACK: 318eda14cbcSMatt Macy return (gettext("\trollback [-rRf] <snapshot>\n")); 319eda14cbcSMatt Macy case HELP_SEND: 320eda14cbcSMatt Macy return (gettext("\tsend [-DnPpRvLecwhb] [-[i|I] snapshot] " 321eda14cbcSMatt Macy "<snapshot>\n" 322eda14cbcSMatt Macy "\tsend [-nvPLecw] [-i snapshot|bookmark] " 323eda14cbcSMatt Macy "<filesystem|volume|snapshot>\n" 324eda14cbcSMatt Macy "\tsend [-DnPpvLec] [-i bookmark|snapshot] " 325eda14cbcSMatt Macy "--redact <bookmark> <snapshot>\n" 326eda14cbcSMatt Macy "\tsend [-nvPe] -t <receive_resume_token>\n" 327eda14cbcSMatt Macy "\tsend [-Pnv] --saved filesystem\n")); 328eda14cbcSMatt Macy case HELP_SET: 329eda14cbcSMatt Macy return (gettext("\tset <property=value> ... " 330eda14cbcSMatt Macy "<filesystem|volume|snapshot> ...\n")); 331eda14cbcSMatt Macy case HELP_SHARE: 332eda14cbcSMatt Macy return (gettext("\tshare [-l] <-a [nfs|smb] | filesystem>\n")); 333eda14cbcSMatt Macy case HELP_SNAPSHOT: 334eda14cbcSMatt Macy return (gettext("\tsnapshot [-r] [-o property=value] ... " 335eda14cbcSMatt Macy "<filesystem|volume>@<snap> ...\n")); 336eda14cbcSMatt Macy case HELP_UNMOUNT: 337eda14cbcSMatt Macy return (gettext("\tunmount [-fu] " 338eda14cbcSMatt Macy "<-a | filesystem|mountpoint>\n")); 339eda14cbcSMatt Macy case HELP_UNSHARE: 340eda14cbcSMatt Macy return (gettext("\tunshare " 341eda14cbcSMatt Macy "<-a [nfs|smb] | filesystem|mountpoint>\n")); 342eda14cbcSMatt Macy case HELP_ALLOW: 343eda14cbcSMatt Macy return (gettext("\tallow <filesystem|volume>\n" 344eda14cbcSMatt Macy "\tallow [-ldug] " 345eda14cbcSMatt Macy "<\"everyone\"|user|group>[,...] <perm|@setname>[,...]\n" 346eda14cbcSMatt Macy "\t <filesystem|volume>\n" 347eda14cbcSMatt Macy "\tallow [-ld] -e <perm|@setname>[,...] " 348eda14cbcSMatt Macy "<filesystem|volume>\n" 349eda14cbcSMatt Macy "\tallow -c <perm|@setname>[,...] <filesystem|volume>\n" 350eda14cbcSMatt Macy "\tallow -s @setname <perm|@setname>[,...] " 351eda14cbcSMatt Macy "<filesystem|volume>\n")); 352eda14cbcSMatt Macy case HELP_UNALLOW: 353eda14cbcSMatt Macy return (gettext("\tunallow [-rldug] " 354eda14cbcSMatt Macy "<\"everyone\"|user|group>[,...]\n" 355eda14cbcSMatt Macy "\t [<perm|@setname>[,...]] <filesystem|volume>\n" 356eda14cbcSMatt Macy "\tunallow [-rld] -e [<perm|@setname>[,...]] " 357eda14cbcSMatt Macy "<filesystem|volume>\n" 358eda14cbcSMatt Macy "\tunallow [-r] -c [<perm|@setname>[,...]] " 359eda14cbcSMatt Macy "<filesystem|volume>\n" 360eda14cbcSMatt Macy "\tunallow [-r] -s @setname [<perm|@setname>[,...]] " 361eda14cbcSMatt Macy "<filesystem|volume>\n")); 362eda14cbcSMatt Macy case HELP_USERSPACE: 363eda14cbcSMatt Macy return (gettext("\tuserspace [-Hinp] [-o field[,...]] " 364eda14cbcSMatt Macy "[-s field] ...\n" 365eda14cbcSMatt Macy "\t [-S field] ... [-t type[,...]] " 366eda14cbcSMatt Macy "<filesystem|snapshot>\n")); 367eda14cbcSMatt Macy case HELP_GROUPSPACE: 368eda14cbcSMatt Macy return (gettext("\tgroupspace [-Hinp] [-o field[,...]] " 369eda14cbcSMatt Macy "[-s field] ...\n" 370eda14cbcSMatt Macy "\t [-S field] ... [-t type[,...]] " 371eda14cbcSMatt Macy "<filesystem|snapshot>\n")); 372eda14cbcSMatt Macy case HELP_PROJECTSPACE: 373eda14cbcSMatt Macy return (gettext("\tprojectspace [-Hp] [-o field[,...]] " 374eda14cbcSMatt Macy "[-s field] ... \n" 375eda14cbcSMatt Macy "\t [-S field] ... <filesystem|snapshot>\n")); 376eda14cbcSMatt Macy case HELP_PROJECT: 377eda14cbcSMatt Macy return (gettext("\tproject [-d|-r] <directory|file ...>\n" 378eda14cbcSMatt Macy "\tproject -c [-0] [-d|-r] [-p id] <directory|file ...>\n" 379eda14cbcSMatt Macy "\tproject -C [-k] [-r] <directory ...>\n" 380eda14cbcSMatt Macy "\tproject [-p id] [-r] [-s] <directory ...>\n")); 381eda14cbcSMatt Macy case HELP_HOLD: 382eda14cbcSMatt Macy return (gettext("\thold [-r] <tag> <snapshot> ...\n")); 383eda14cbcSMatt Macy case HELP_HOLDS: 384eda14cbcSMatt Macy return (gettext("\tholds [-rH] <snapshot> ...\n")); 385eda14cbcSMatt Macy case HELP_RELEASE: 386eda14cbcSMatt Macy return (gettext("\trelease [-r] <tag> <snapshot> ...\n")); 387eda14cbcSMatt Macy case HELP_DIFF: 388eda14cbcSMatt Macy return (gettext("\tdiff [-FHt] <snapshot> " 389eda14cbcSMatt Macy "[snapshot|filesystem]\n")); 390eda14cbcSMatt Macy case HELP_BOOKMARK: 391eda14cbcSMatt Macy return (gettext("\tbookmark <snapshot|bookmark> " 392eda14cbcSMatt Macy "<newbookmark>\n")); 393eda14cbcSMatt Macy case HELP_CHANNEL_PROGRAM: 394eda14cbcSMatt Macy return (gettext("\tprogram [-jn] [-t <instruction limit>] " 395eda14cbcSMatt Macy "[-m <memory limit (b)>]\n" 396eda14cbcSMatt Macy "\t <pool> <program file> [lua args...]\n")); 397eda14cbcSMatt Macy case HELP_LOAD_KEY: 398eda14cbcSMatt Macy return (gettext("\tload-key [-rn] [-L <keylocation>] " 399eda14cbcSMatt Macy "<-a | filesystem|volume>\n")); 400eda14cbcSMatt Macy case HELP_UNLOAD_KEY: 401eda14cbcSMatt Macy return (gettext("\tunload-key [-r] " 402eda14cbcSMatt Macy "<-a | filesystem|volume>\n")); 403eda14cbcSMatt Macy case HELP_CHANGE_KEY: 404eda14cbcSMatt Macy return (gettext("\tchange-key [-l] [-o keyformat=<value>]\n" 405*eac7052fSMatt Macy "\t [-o keylocation=<value>] [-o pbkdf2iters=<value>]\n" 406eda14cbcSMatt Macy "\t <filesystem|volume>\n" 407eda14cbcSMatt Macy "\tchange-key -i [-l] <filesystem|volume>\n")); 408eda14cbcSMatt Macy case HELP_VERSION: 409eda14cbcSMatt Macy return (gettext("\tversion\n")); 410eda14cbcSMatt Macy case HELP_REDACT: 411eda14cbcSMatt Macy return (gettext("\tredact <snapshot> <bookmark> " 412eda14cbcSMatt Macy "<redaction_snapshot> ...\n")); 413eda14cbcSMatt Macy case HELP_JAIL: 414eda14cbcSMatt Macy return (gettext("\tjail <jailid|jailname> <filesystem>\n")); 415eda14cbcSMatt Macy case HELP_UNJAIL: 416eda14cbcSMatt Macy return (gettext("\tunjail <jailid|jailname> <filesystem>\n")); 417eda14cbcSMatt Macy case HELP_WAIT: 418eda14cbcSMatt Macy return (gettext("\twait [-t <activity>] <filesystem>\n")); 419eda14cbcSMatt Macy } 420eda14cbcSMatt Macy 421eda14cbcSMatt Macy abort(); 422eda14cbcSMatt Macy /* NOTREACHED */ 423eda14cbcSMatt Macy } 424eda14cbcSMatt Macy 425eda14cbcSMatt Macy void 426eda14cbcSMatt Macy nomem(void) 427eda14cbcSMatt Macy { 428eda14cbcSMatt Macy (void) fprintf(stderr, gettext("internal error: out of memory\n")); 429eda14cbcSMatt Macy exit(1); 430eda14cbcSMatt Macy } 431eda14cbcSMatt Macy 432eda14cbcSMatt Macy /* 433eda14cbcSMatt Macy * Utility function to guarantee malloc() success. 434eda14cbcSMatt Macy */ 435eda14cbcSMatt Macy 436eda14cbcSMatt Macy void * 437eda14cbcSMatt Macy safe_malloc(size_t size) 438eda14cbcSMatt Macy { 439eda14cbcSMatt Macy void *data; 440eda14cbcSMatt Macy 441eda14cbcSMatt Macy if ((data = calloc(1, size)) == NULL) 442eda14cbcSMatt Macy nomem(); 443eda14cbcSMatt Macy 444eda14cbcSMatt Macy return (data); 445eda14cbcSMatt Macy } 446eda14cbcSMatt Macy 447eda14cbcSMatt Macy static void * 448eda14cbcSMatt Macy safe_realloc(void *data, size_t size) 449eda14cbcSMatt Macy { 450eda14cbcSMatt Macy void *newp; 451eda14cbcSMatt Macy if ((newp = realloc(data, size)) == NULL) { 452eda14cbcSMatt Macy free(data); 453eda14cbcSMatt Macy nomem(); 454eda14cbcSMatt Macy } 455eda14cbcSMatt Macy 456eda14cbcSMatt Macy return (newp); 457eda14cbcSMatt Macy } 458eda14cbcSMatt Macy 459eda14cbcSMatt Macy static char * 460eda14cbcSMatt Macy safe_strdup(char *str) 461eda14cbcSMatt Macy { 462eda14cbcSMatt Macy char *dupstr = strdup(str); 463eda14cbcSMatt Macy 464eda14cbcSMatt Macy if (dupstr == NULL) 465eda14cbcSMatt Macy nomem(); 466eda14cbcSMatt Macy 467eda14cbcSMatt Macy return (dupstr); 468eda14cbcSMatt Macy } 469eda14cbcSMatt Macy 470eda14cbcSMatt Macy /* 471eda14cbcSMatt Macy * Callback routine that will print out information for each of 472eda14cbcSMatt Macy * the properties. 473eda14cbcSMatt Macy */ 474eda14cbcSMatt Macy static int 475eda14cbcSMatt Macy usage_prop_cb(int prop, void *cb) 476eda14cbcSMatt Macy { 477eda14cbcSMatt Macy FILE *fp = cb; 478eda14cbcSMatt Macy 479eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", zfs_prop_to_name(prop)); 480eda14cbcSMatt Macy 481eda14cbcSMatt Macy if (zfs_prop_readonly(prop)) 482eda14cbcSMatt Macy (void) fprintf(fp, " NO "); 483eda14cbcSMatt Macy else 484eda14cbcSMatt Macy (void) fprintf(fp, "YES "); 485eda14cbcSMatt Macy 486eda14cbcSMatt Macy if (zfs_prop_inheritable(prop)) 487eda14cbcSMatt Macy (void) fprintf(fp, " YES "); 488eda14cbcSMatt Macy else 489eda14cbcSMatt Macy (void) fprintf(fp, " NO "); 490eda14cbcSMatt Macy 491eda14cbcSMatt Macy if (zfs_prop_values(prop) == NULL) 492eda14cbcSMatt Macy (void) fprintf(fp, "-\n"); 493eda14cbcSMatt Macy else 494eda14cbcSMatt Macy (void) fprintf(fp, "%s\n", zfs_prop_values(prop)); 495eda14cbcSMatt Macy 496eda14cbcSMatt Macy return (ZPROP_CONT); 497eda14cbcSMatt Macy } 498eda14cbcSMatt Macy 499eda14cbcSMatt Macy /* 500eda14cbcSMatt Macy * Display usage message. If we're inside a command, display only the usage for 501eda14cbcSMatt Macy * that command. Otherwise, iterate over the entire command table and display 502eda14cbcSMatt Macy * a complete usage message. 503eda14cbcSMatt Macy */ 504eda14cbcSMatt Macy static void 505eda14cbcSMatt Macy usage(boolean_t requested) 506eda14cbcSMatt Macy { 507eda14cbcSMatt Macy int i; 508eda14cbcSMatt Macy boolean_t show_properties = B_FALSE; 509eda14cbcSMatt Macy FILE *fp = requested ? stdout : stderr; 510eda14cbcSMatt Macy 511eda14cbcSMatt Macy if (current_command == NULL) { 512eda14cbcSMatt Macy 513eda14cbcSMatt Macy (void) fprintf(fp, gettext("usage: zfs command args ...\n")); 514eda14cbcSMatt Macy (void) fprintf(fp, 515eda14cbcSMatt Macy gettext("where 'command' is one of the following:\n\n")); 516eda14cbcSMatt Macy 517eda14cbcSMatt Macy for (i = 0; i < NCOMMAND; i++) { 518eda14cbcSMatt Macy if (command_table[i].name == NULL) 519eda14cbcSMatt Macy (void) fprintf(fp, "\n"); 520eda14cbcSMatt Macy else 521eda14cbcSMatt Macy (void) fprintf(fp, "%s", 522eda14cbcSMatt Macy get_usage(command_table[i].usage)); 523eda14cbcSMatt Macy } 524eda14cbcSMatt Macy 525eda14cbcSMatt Macy (void) fprintf(fp, gettext("\nEach dataset is of the form: " 526eda14cbcSMatt Macy "pool/[dataset/]*dataset[@name]\n")); 527eda14cbcSMatt Macy } else { 528eda14cbcSMatt Macy (void) fprintf(fp, gettext("usage:\n")); 529eda14cbcSMatt Macy (void) fprintf(fp, "%s", get_usage(current_command->usage)); 530eda14cbcSMatt Macy } 531eda14cbcSMatt Macy 532eda14cbcSMatt Macy if (current_command != NULL && 533eda14cbcSMatt Macy (strcmp(current_command->name, "set") == 0 || 534eda14cbcSMatt Macy strcmp(current_command->name, "get") == 0 || 535eda14cbcSMatt Macy strcmp(current_command->name, "inherit") == 0 || 536eda14cbcSMatt Macy strcmp(current_command->name, "list") == 0)) 537eda14cbcSMatt Macy show_properties = B_TRUE; 538eda14cbcSMatt Macy 539eda14cbcSMatt Macy if (show_properties) { 540eda14cbcSMatt Macy (void) fprintf(fp, 541eda14cbcSMatt Macy gettext("\nThe following properties are supported:\n")); 542eda14cbcSMatt Macy 543eda14cbcSMatt Macy (void) fprintf(fp, "\n\t%-14s %s %s %s\n\n", 544eda14cbcSMatt Macy "PROPERTY", "EDIT", "INHERIT", "VALUES"); 545eda14cbcSMatt Macy 546eda14cbcSMatt Macy /* Iterate over all properties */ 547eda14cbcSMatt Macy (void) zprop_iter(usage_prop_cb, fp, B_FALSE, B_TRUE, 548eda14cbcSMatt Macy ZFS_TYPE_DATASET); 549eda14cbcSMatt Macy 550eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "userused@..."); 551eda14cbcSMatt Macy (void) fprintf(fp, " NO NO <size>\n"); 552eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "groupused@..."); 553eda14cbcSMatt Macy (void) fprintf(fp, " NO NO <size>\n"); 554eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "projectused@..."); 555eda14cbcSMatt Macy (void) fprintf(fp, " NO NO <size>\n"); 556eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "userobjused@..."); 557eda14cbcSMatt Macy (void) fprintf(fp, " NO NO <size>\n"); 558eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "groupobjused@..."); 559eda14cbcSMatt Macy (void) fprintf(fp, " NO NO <size>\n"); 560eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "projectobjused@..."); 561eda14cbcSMatt Macy (void) fprintf(fp, " NO NO <size>\n"); 562eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "userquota@..."); 563eda14cbcSMatt Macy (void) fprintf(fp, "YES NO <size> | none\n"); 564eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "groupquota@..."); 565eda14cbcSMatt Macy (void) fprintf(fp, "YES NO <size> | none\n"); 566eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "projectquota@..."); 567eda14cbcSMatt Macy (void) fprintf(fp, "YES NO <size> | none\n"); 568eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "userobjquota@..."); 569eda14cbcSMatt Macy (void) fprintf(fp, "YES NO <size> | none\n"); 570eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "groupobjquota@..."); 571eda14cbcSMatt Macy (void) fprintf(fp, "YES NO <size> | none\n"); 572eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "projectobjquota@..."); 573eda14cbcSMatt Macy (void) fprintf(fp, "YES NO <size> | none\n"); 574eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "written@<snap>"); 575eda14cbcSMatt Macy (void) fprintf(fp, " NO NO <size>\n"); 576eda14cbcSMatt Macy (void) fprintf(fp, "\t%-15s ", "written#<bookmark>"); 577eda14cbcSMatt Macy (void) fprintf(fp, " NO NO <size>\n"); 578eda14cbcSMatt Macy 579eda14cbcSMatt Macy (void) fprintf(fp, gettext("\nSizes are specified in bytes " 580eda14cbcSMatt Macy "with standard units such as K, M, G, etc.\n")); 581eda14cbcSMatt Macy (void) fprintf(fp, gettext("\nUser-defined properties can " 582eda14cbcSMatt Macy "be specified by using a name containing a colon (:).\n")); 583eda14cbcSMatt Macy (void) fprintf(fp, gettext("\nThe {user|group|project}" 584eda14cbcSMatt Macy "[obj]{used|quota}@ properties must be appended with\n" 585eda14cbcSMatt Macy "a user|group|project specifier of one of these forms:\n" 586eda14cbcSMatt Macy " POSIX name (eg: \"matt\")\n" 587eda14cbcSMatt Macy " POSIX id (eg: \"126829\")\n" 588eda14cbcSMatt Macy " SMB name@domain (eg: \"matt@sun\")\n" 589eda14cbcSMatt Macy " SMB SID (eg: \"S-1-234-567-89\")\n")); 590eda14cbcSMatt Macy } else { 591eda14cbcSMatt Macy (void) fprintf(fp, 592eda14cbcSMatt Macy gettext("\nFor the property list, run: %s\n"), 593eda14cbcSMatt Macy "zfs set|get"); 594eda14cbcSMatt Macy (void) fprintf(fp, 595eda14cbcSMatt Macy gettext("\nFor the delegated permission list, run: %s\n"), 596eda14cbcSMatt Macy "zfs allow|unallow"); 597eda14cbcSMatt Macy } 598eda14cbcSMatt Macy 599eda14cbcSMatt Macy /* 600eda14cbcSMatt Macy * See comments at end of main(). 601eda14cbcSMatt Macy */ 602eda14cbcSMatt Macy if (getenv("ZFS_ABORT") != NULL) { 603eda14cbcSMatt Macy (void) printf("dumping core by request\n"); 604eda14cbcSMatt Macy abort(); 605eda14cbcSMatt Macy } 606eda14cbcSMatt Macy 607eda14cbcSMatt Macy exit(requested ? 0 : 2); 608eda14cbcSMatt Macy } 609eda14cbcSMatt Macy 610eda14cbcSMatt Macy /* 611eda14cbcSMatt Macy * Take a property=value argument string and add it to the given nvlist. 612eda14cbcSMatt Macy * Modifies the argument inplace. 613eda14cbcSMatt Macy */ 614eda14cbcSMatt Macy static boolean_t 615eda14cbcSMatt Macy parseprop(nvlist_t *props, char *propname) 616eda14cbcSMatt Macy { 617eda14cbcSMatt Macy char *propval; 618eda14cbcSMatt Macy 619eda14cbcSMatt Macy if ((propval = strchr(propname, '=')) == NULL) { 620eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing " 621eda14cbcSMatt Macy "'=' for property=value argument\n")); 622eda14cbcSMatt Macy return (B_FALSE); 623eda14cbcSMatt Macy } 624eda14cbcSMatt Macy *propval = '\0'; 625eda14cbcSMatt Macy propval++; 626eda14cbcSMatt Macy if (nvlist_exists(props, propname)) { 627eda14cbcSMatt Macy (void) fprintf(stderr, gettext("property '%s' " 628eda14cbcSMatt Macy "specified multiple times\n"), propname); 629eda14cbcSMatt Macy return (B_FALSE); 630eda14cbcSMatt Macy } 631eda14cbcSMatt Macy if (nvlist_add_string(props, propname, propval) != 0) 632eda14cbcSMatt Macy nomem(); 633eda14cbcSMatt Macy return (B_TRUE); 634eda14cbcSMatt Macy } 635eda14cbcSMatt Macy 636eda14cbcSMatt Macy /* 637eda14cbcSMatt Macy * Take a property name argument and add it to the given nvlist. 638eda14cbcSMatt Macy * Modifies the argument inplace. 639eda14cbcSMatt Macy */ 640eda14cbcSMatt Macy static boolean_t 641eda14cbcSMatt Macy parsepropname(nvlist_t *props, char *propname) 642eda14cbcSMatt Macy { 643eda14cbcSMatt Macy if (strchr(propname, '=') != NULL) { 644eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid character " 645eda14cbcSMatt Macy "'=' in property argument\n")); 646eda14cbcSMatt Macy return (B_FALSE); 647eda14cbcSMatt Macy } 648eda14cbcSMatt Macy if (nvlist_exists(props, propname)) { 649eda14cbcSMatt Macy (void) fprintf(stderr, gettext("property '%s' " 650eda14cbcSMatt Macy "specified multiple times\n"), propname); 651eda14cbcSMatt Macy return (B_FALSE); 652eda14cbcSMatt Macy } 653eda14cbcSMatt Macy if (nvlist_add_boolean(props, propname) != 0) 654eda14cbcSMatt Macy nomem(); 655eda14cbcSMatt Macy return (B_TRUE); 656eda14cbcSMatt Macy } 657eda14cbcSMatt Macy 658eda14cbcSMatt Macy static int 659eda14cbcSMatt Macy parse_depth(char *opt, int *flags) 660eda14cbcSMatt Macy { 661eda14cbcSMatt Macy char *tmp; 662eda14cbcSMatt Macy int depth; 663eda14cbcSMatt Macy 664eda14cbcSMatt Macy depth = (int)strtol(opt, &tmp, 0); 665eda14cbcSMatt Macy if (*tmp) { 666eda14cbcSMatt Macy (void) fprintf(stderr, 667eda14cbcSMatt Macy gettext("%s is not an integer\n"), optarg); 668eda14cbcSMatt Macy usage(B_FALSE); 669eda14cbcSMatt Macy } 670eda14cbcSMatt Macy if (depth < 0) { 671eda14cbcSMatt Macy (void) fprintf(stderr, 672eda14cbcSMatt Macy gettext("Depth can not be negative.\n")); 673eda14cbcSMatt Macy usage(B_FALSE); 674eda14cbcSMatt Macy } 675eda14cbcSMatt Macy *flags |= (ZFS_ITER_DEPTH_LIMIT|ZFS_ITER_RECURSE); 676eda14cbcSMatt Macy return (depth); 677eda14cbcSMatt Macy } 678eda14cbcSMatt Macy 679eda14cbcSMatt Macy #define PROGRESS_DELAY 2 /* seconds */ 680eda14cbcSMatt Macy 681eda14cbcSMatt Macy static 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"; 682eda14cbcSMatt Macy static time_t pt_begin; 683eda14cbcSMatt Macy static char *pt_header = NULL; 684eda14cbcSMatt Macy static boolean_t pt_shown; 685eda14cbcSMatt Macy 686eda14cbcSMatt Macy static void 687eda14cbcSMatt Macy start_progress_timer(void) 688eda14cbcSMatt Macy { 689eda14cbcSMatt Macy pt_begin = time(NULL) + PROGRESS_DELAY; 690eda14cbcSMatt Macy pt_shown = B_FALSE; 691eda14cbcSMatt Macy } 692eda14cbcSMatt Macy 693eda14cbcSMatt Macy static void 694eda14cbcSMatt Macy set_progress_header(char *header) 695eda14cbcSMatt Macy { 696eda14cbcSMatt Macy assert(pt_header == NULL); 697eda14cbcSMatt Macy pt_header = safe_strdup(header); 698eda14cbcSMatt Macy if (pt_shown) { 699eda14cbcSMatt Macy (void) printf("%s: ", header); 700eda14cbcSMatt Macy (void) fflush(stdout); 701eda14cbcSMatt Macy } 702eda14cbcSMatt Macy } 703eda14cbcSMatt Macy 704eda14cbcSMatt Macy static void 705eda14cbcSMatt Macy update_progress(char *update) 706eda14cbcSMatt Macy { 707eda14cbcSMatt Macy if (!pt_shown && time(NULL) > pt_begin) { 708eda14cbcSMatt Macy int len = strlen(update); 709eda14cbcSMatt Macy 710eda14cbcSMatt Macy (void) printf("%s: %s%*.*s", pt_header, update, len, len, 711eda14cbcSMatt Macy pt_reverse); 712eda14cbcSMatt Macy (void) fflush(stdout); 713eda14cbcSMatt Macy pt_shown = B_TRUE; 714eda14cbcSMatt Macy } else if (pt_shown) { 715eda14cbcSMatt Macy int len = strlen(update); 716eda14cbcSMatt Macy 717eda14cbcSMatt Macy (void) printf("%s%*.*s", update, len, len, pt_reverse); 718eda14cbcSMatt Macy (void) fflush(stdout); 719eda14cbcSMatt Macy } 720eda14cbcSMatt Macy } 721eda14cbcSMatt Macy 722eda14cbcSMatt Macy static void 723eda14cbcSMatt Macy finish_progress(char *done) 724eda14cbcSMatt Macy { 725eda14cbcSMatt Macy if (pt_shown) { 726eda14cbcSMatt Macy (void) printf("%s\n", done); 727eda14cbcSMatt Macy (void) fflush(stdout); 728eda14cbcSMatt Macy } 729eda14cbcSMatt Macy free(pt_header); 730eda14cbcSMatt Macy pt_header = NULL; 731eda14cbcSMatt Macy } 732eda14cbcSMatt Macy 733eda14cbcSMatt Macy static int 734eda14cbcSMatt Macy zfs_mount_and_share(libzfs_handle_t *hdl, const char *dataset, zfs_type_t type) 735eda14cbcSMatt Macy { 736eda14cbcSMatt Macy zfs_handle_t *zhp = NULL; 737eda14cbcSMatt Macy int ret = 0; 738eda14cbcSMatt Macy 739eda14cbcSMatt Macy zhp = zfs_open(hdl, dataset, type); 740eda14cbcSMatt Macy if (zhp == NULL) 741eda14cbcSMatt Macy return (1); 742eda14cbcSMatt Macy 743eda14cbcSMatt Macy /* 744eda14cbcSMatt Macy * Volumes may neither be mounted or shared. Potentially in the 745eda14cbcSMatt Macy * future filesystems detected on these volumes could be mounted. 746eda14cbcSMatt Macy */ 747eda14cbcSMatt Macy if (zfs_get_type(zhp) == ZFS_TYPE_VOLUME) { 748eda14cbcSMatt Macy zfs_close(zhp); 749eda14cbcSMatt Macy return (0); 750eda14cbcSMatt Macy } 751eda14cbcSMatt Macy 752eda14cbcSMatt Macy /* 753eda14cbcSMatt Macy * Mount and/or share the new filesystem as appropriate. We provide a 754eda14cbcSMatt Macy * verbose error message to let the user know that their filesystem was 755eda14cbcSMatt Macy * in fact created, even if we failed to mount or share it. 756eda14cbcSMatt Macy * 757eda14cbcSMatt Macy * If the user doesn't want the dataset automatically mounted, then 758eda14cbcSMatt Macy * skip the mount/share step 759eda14cbcSMatt Macy */ 760eda14cbcSMatt Macy if (zfs_prop_valid_for_type(ZFS_PROP_CANMOUNT, type, B_FALSE) && 761eda14cbcSMatt Macy zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT) == ZFS_CANMOUNT_ON) { 762eda14cbcSMatt Macy if (zfs_mount_delegation_check()) { 763eda14cbcSMatt Macy (void) fprintf(stderr, gettext("filesystem " 764eda14cbcSMatt Macy "successfully created, but it may only be " 765eda14cbcSMatt Macy "mounted by root\n")); 766eda14cbcSMatt Macy ret = 1; 767eda14cbcSMatt Macy } else if (zfs_mount(zhp, NULL, 0) != 0) { 768eda14cbcSMatt Macy (void) fprintf(stderr, gettext("filesystem " 769eda14cbcSMatt Macy "successfully created, but not mounted\n")); 770eda14cbcSMatt Macy ret = 1; 771eda14cbcSMatt Macy } else if (zfs_share(zhp) != 0) { 772eda14cbcSMatt Macy (void) fprintf(stderr, gettext("filesystem " 773eda14cbcSMatt Macy "successfully created, but not shared\n")); 774eda14cbcSMatt Macy ret = 1; 775eda14cbcSMatt Macy } 776eda14cbcSMatt Macy zfs_commit_all_shares(); 777eda14cbcSMatt Macy } 778eda14cbcSMatt Macy 779eda14cbcSMatt Macy zfs_close(zhp); 780eda14cbcSMatt Macy 781eda14cbcSMatt Macy return (ret); 782eda14cbcSMatt Macy } 783eda14cbcSMatt Macy 784eda14cbcSMatt Macy /* 785eda14cbcSMatt Macy * zfs clone [-p] [-o prop=value] ... <snap> <fs | vol> 786eda14cbcSMatt Macy * 787eda14cbcSMatt Macy * Given an existing dataset, create a writable copy whose initial contents 788eda14cbcSMatt Macy * are the same as the source. The newly created dataset maintains a 789eda14cbcSMatt Macy * dependency on the original; the original cannot be destroyed so long as 790eda14cbcSMatt Macy * the clone exists. 791eda14cbcSMatt Macy * 792eda14cbcSMatt Macy * The '-p' flag creates all the non-existing ancestors of the target first. 793eda14cbcSMatt Macy */ 794eda14cbcSMatt Macy static int 795eda14cbcSMatt Macy zfs_do_clone(int argc, char **argv) 796eda14cbcSMatt Macy { 797eda14cbcSMatt Macy zfs_handle_t *zhp = NULL; 798eda14cbcSMatt Macy boolean_t parents = B_FALSE; 799eda14cbcSMatt Macy nvlist_t *props; 800eda14cbcSMatt Macy int ret = 0; 801eda14cbcSMatt Macy int c; 802eda14cbcSMatt Macy 803eda14cbcSMatt Macy if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) 804eda14cbcSMatt Macy nomem(); 805eda14cbcSMatt Macy 806eda14cbcSMatt Macy /* check options */ 807eda14cbcSMatt Macy while ((c = getopt(argc, argv, "o:p")) != -1) { 808eda14cbcSMatt Macy switch (c) { 809eda14cbcSMatt Macy case 'o': 810eda14cbcSMatt Macy if (!parseprop(props, optarg)) { 811eda14cbcSMatt Macy nvlist_free(props); 812eda14cbcSMatt Macy return (1); 813eda14cbcSMatt Macy } 814eda14cbcSMatt Macy break; 815eda14cbcSMatt Macy case 'p': 816eda14cbcSMatt Macy parents = B_TRUE; 817eda14cbcSMatt Macy break; 818eda14cbcSMatt Macy case '?': 819eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 820eda14cbcSMatt Macy optopt); 821eda14cbcSMatt Macy goto usage; 822eda14cbcSMatt Macy } 823eda14cbcSMatt Macy } 824eda14cbcSMatt Macy 825eda14cbcSMatt Macy argc -= optind; 826eda14cbcSMatt Macy argv += optind; 827eda14cbcSMatt Macy 828eda14cbcSMatt Macy /* check number of arguments */ 829eda14cbcSMatt Macy if (argc < 1) { 830eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing source dataset " 831eda14cbcSMatt Macy "argument\n")); 832eda14cbcSMatt Macy goto usage; 833eda14cbcSMatt Macy } 834eda14cbcSMatt Macy if (argc < 2) { 835eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing target dataset " 836eda14cbcSMatt Macy "argument\n")); 837eda14cbcSMatt Macy goto usage; 838eda14cbcSMatt Macy } 839eda14cbcSMatt Macy if (argc > 2) { 840eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 841eda14cbcSMatt Macy goto usage; 842eda14cbcSMatt Macy } 843eda14cbcSMatt Macy 844eda14cbcSMatt Macy /* open the source dataset */ 845eda14cbcSMatt Macy if ((zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_SNAPSHOT)) == NULL) { 846eda14cbcSMatt Macy nvlist_free(props); 847eda14cbcSMatt Macy return (1); 848eda14cbcSMatt Macy } 849eda14cbcSMatt Macy 850eda14cbcSMatt Macy if (parents && zfs_name_valid(argv[1], ZFS_TYPE_FILESYSTEM | 851eda14cbcSMatt Macy ZFS_TYPE_VOLUME)) { 852eda14cbcSMatt Macy /* 853eda14cbcSMatt Macy * Now create the ancestors of the target dataset. If the 854eda14cbcSMatt Macy * target already exists and '-p' option was used we should not 855eda14cbcSMatt Macy * complain. 856eda14cbcSMatt Macy */ 857eda14cbcSMatt Macy if (zfs_dataset_exists(g_zfs, argv[1], ZFS_TYPE_FILESYSTEM | 858eda14cbcSMatt Macy ZFS_TYPE_VOLUME)) { 859eda14cbcSMatt Macy zfs_close(zhp); 860eda14cbcSMatt Macy nvlist_free(props); 861eda14cbcSMatt Macy return (0); 862eda14cbcSMatt Macy } 863eda14cbcSMatt Macy if (zfs_create_ancestors(g_zfs, argv[1]) != 0) { 864eda14cbcSMatt Macy zfs_close(zhp); 865eda14cbcSMatt Macy nvlist_free(props); 866eda14cbcSMatt Macy return (1); 867eda14cbcSMatt Macy } 868eda14cbcSMatt Macy } 869eda14cbcSMatt Macy 870eda14cbcSMatt Macy /* pass to libzfs */ 871eda14cbcSMatt Macy ret = zfs_clone(zhp, argv[1], props); 872eda14cbcSMatt Macy 873eda14cbcSMatt Macy /* create the mountpoint if necessary */ 874eda14cbcSMatt Macy if (ret == 0) { 875eda14cbcSMatt Macy if (log_history) { 876eda14cbcSMatt Macy (void) zpool_log_history(g_zfs, history_str); 877eda14cbcSMatt Macy log_history = B_FALSE; 878eda14cbcSMatt Macy } 879eda14cbcSMatt Macy 880eda14cbcSMatt Macy ret = zfs_mount_and_share(g_zfs, argv[1], ZFS_TYPE_DATASET); 881eda14cbcSMatt Macy } 882eda14cbcSMatt Macy 883eda14cbcSMatt Macy zfs_close(zhp); 884eda14cbcSMatt Macy nvlist_free(props); 885eda14cbcSMatt Macy 886eda14cbcSMatt Macy return (!!ret); 887eda14cbcSMatt Macy 888eda14cbcSMatt Macy usage: 889eda14cbcSMatt Macy ASSERT3P(zhp, ==, NULL); 890eda14cbcSMatt Macy nvlist_free(props); 891eda14cbcSMatt Macy usage(B_FALSE); 892eda14cbcSMatt Macy return (-1); 893eda14cbcSMatt Macy } 894eda14cbcSMatt Macy 895eda14cbcSMatt Macy /* 896eda14cbcSMatt Macy * zfs create [-Pnpv] [-o prop=value] ... fs 897eda14cbcSMatt Macy * zfs create [-Pnpsv] [-b blocksize] [-o prop=value] ... -V vol size 898eda14cbcSMatt Macy * 899eda14cbcSMatt Macy * Create a new dataset. This command can be used to create filesystems 900eda14cbcSMatt Macy * and volumes. Snapshot creation is handled by 'zfs snapshot'. 901eda14cbcSMatt Macy * For volumes, the user must specify a size to be used. 902eda14cbcSMatt Macy * 903eda14cbcSMatt Macy * The '-s' flag applies only to volumes, and indicates that we should not try 904eda14cbcSMatt Macy * to set the reservation for this volume. By default we set a reservation 905eda14cbcSMatt Macy * equal to the size for any volume. For pools with SPA_VERSION >= 906eda14cbcSMatt Macy * SPA_VERSION_REFRESERVATION, we set a refreservation instead. 907eda14cbcSMatt Macy * 908eda14cbcSMatt Macy * The '-p' flag creates all the non-existing ancestors of the target first. 909eda14cbcSMatt Macy * 910eda14cbcSMatt Macy * The '-n' flag is no-op (dry run) mode. This will perform a user-space sanity 911eda14cbcSMatt Macy * check of arguments and properties, but does not check for permissions, 912eda14cbcSMatt Macy * available space, etc. 913eda14cbcSMatt Macy * 914eda14cbcSMatt Macy * The '-v' flag is for verbose output. 915eda14cbcSMatt Macy * 916eda14cbcSMatt Macy * The '-P' flag is used for parseable output. It implies '-v'. 917eda14cbcSMatt Macy */ 918eda14cbcSMatt Macy static int 919eda14cbcSMatt Macy zfs_do_create(int argc, char **argv) 920eda14cbcSMatt Macy { 921eda14cbcSMatt Macy zfs_type_t type = ZFS_TYPE_FILESYSTEM; 922eda14cbcSMatt Macy zpool_handle_t *zpool_handle = NULL; 923eda14cbcSMatt Macy nvlist_t *real_props = NULL; 924eda14cbcSMatt Macy uint64_t volsize = 0; 925eda14cbcSMatt Macy int c; 926eda14cbcSMatt Macy boolean_t noreserve = B_FALSE; 927eda14cbcSMatt Macy boolean_t bflag = B_FALSE; 928eda14cbcSMatt Macy boolean_t parents = B_FALSE; 929eda14cbcSMatt Macy boolean_t dryrun = B_FALSE; 930eda14cbcSMatt Macy boolean_t verbose = B_FALSE; 931eda14cbcSMatt Macy boolean_t parseable = B_FALSE; 932eda14cbcSMatt Macy int ret = 1; 933eda14cbcSMatt Macy nvlist_t *props; 934eda14cbcSMatt Macy uint64_t intval; 935eda14cbcSMatt Macy 936eda14cbcSMatt Macy if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) 937eda14cbcSMatt Macy nomem(); 938eda14cbcSMatt Macy 939eda14cbcSMatt Macy /* check options */ 940eda14cbcSMatt Macy while ((c = getopt(argc, argv, ":PV:b:nso:pv")) != -1) { 941eda14cbcSMatt Macy switch (c) { 942eda14cbcSMatt Macy case 'V': 943eda14cbcSMatt Macy type = ZFS_TYPE_VOLUME; 944eda14cbcSMatt Macy if (zfs_nicestrtonum(g_zfs, optarg, &intval) != 0) { 945eda14cbcSMatt Macy (void) fprintf(stderr, gettext("bad volume " 946eda14cbcSMatt Macy "size '%s': %s\n"), optarg, 947eda14cbcSMatt Macy libzfs_error_description(g_zfs)); 948eda14cbcSMatt Macy goto error; 949eda14cbcSMatt Macy } 950eda14cbcSMatt Macy 951eda14cbcSMatt Macy if (nvlist_add_uint64(props, 952eda14cbcSMatt Macy zfs_prop_to_name(ZFS_PROP_VOLSIZE), intval) != 0) 953eda14cbcSMatt Macy nomem(); 954eda14cbcSMatt Macy volsize = intval; 955eda14cbcSMatt Macy break; 956eda14cbcSMatt Macy case 'P': 957eda14cbcSMatt Macy verbose = B_TRUE; 958eda14cbcSMatt Macy parseable = B_TRUE; 959eda14cbcSMatt Macy break; 960eda14cbcSMatt Macy case 'p': 961eda14cbcSMatt Macy parents = B_TRUE; 962eda14cbcSMatt Macy break; 963eda14cbcSMatt Macy case 'b': 964eda14cbcSMatt Macy bflag = B_TRUE; 965eda14cbcSMatt Macy if (zfs_nicestrtonum(g_zfs, optarg, &intval) != 0) { 966eda14cbcSMatt Macy (void) fprintf(stderr, gettext("bad volume " 967eda14cbcSMatt Macy "block size '%s': %s\n"), optarg, 968eda14cbcSMatt Macy libzfs_error_description(g_zfs)); 969eda14cbcSMatt Macy goto error; 970eda14cbcSMatt Macy } 971eda14cbcSMatt Macy 972eda14cbcSMatt Macy if (nvlist_add_uint64(props, 973eda14cbcSMatt Macy zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 974eda14cbcSMatt Macy intval) != 0) 975eda14cbcSMatt Macy nomem(); 976eda14cbcSMatt Macy break; 977eda14cbcSMatt Macy case 'n': 978eda14cbcSMatt Macy dryrun = B_TRUE; 979eda14cbcSMatt Macy break; 980eda14cbcSMatt Macy case 'o': 981eda14cbcSMatt Macy if (!parseprop(props, optarg)) 982eda14cbcSMatt Macy goto error; 983eda14cbcSMatt Macy break; 984eda14cbcSMatt Macy case 's': 985eda14cbcSMatt Macy noreserve = B_TRUE; 986eda14cbcSMatt Macy break; 987eda14cbcSMatt Macy case 'v': 988eda14cbcSMatt Macy verbose = B_TRUE; 989eda14cbcSMatt Macy break; 990eda14cbcSMatt Macy case ':': 991eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing size " 992eda14cbcSMatt Macy "argument\n")); 993eda14cbcSMatt Macy goto badusage; 994eda14cbcSMatt Macy case '?': 995eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 996eda14cbcSMatt Macy optopt); 997eda14cbcSMatt Macy goto badusage; 998eda14cbcSMatt Macy } 999eda14cbcSMatt Macy } 1000eda14cbcSMatt Macy 1001eda14cbcSMatt Macy if ((bflag || noreserve) && type != ZFS_TYPE_VOLUME) { 1002eda14cbcSMatt Macy (void) fprintf(stderr, gettext("'-s' and '-b' can only be " 1003eda14cbcSMatt Macy "used when creating a volume\n")); 1004eda14cbcSMatt Macy goto badusage; 1005eda14cbcSMatt Macy } 1006eda14cbcSMatt Macy 1007eda14cbcSMatt Macy argc -= optind; 1008eda14cbcSMatt Macy argv += optind; 1009eda14cbcSMatt Macy 1010eda14cbcSMatt Macy /* check number of arguments */ 1011eda14cbcSMatt Macy if (argc == 0) { 1012eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing %s argument\n"), 1013eda14cbcSMatt Macy zfs_type_to_name(type)); 1014eda14cbcSMatt Macy goto badusage; 1015eda14cbcSMatt Macy } 1016eda14cbcSMatt Macy if (argc > 1) { 1017eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 1018eda14cbcSMatt Macy goto badusage; 1019eda14cbcSMatt Macy } 1020eda14cbcSMatt Macy 1021eda14cbcSMatt Macy if (dryrun || (type == ZFS_TYPE_VOLUME && !noreserve)) { 1022eda14cbcSMatt Macy char msg[ZFS_MAX_DATASET_NAME_LEN * 2]; 1023eda14cbcSMatt Macy char *p; 1024eda14cbcSMatt Macy 1025eda14cbcSMatt Macy if ((p = strchr(argv[0], '/')) != NULL) 1026eda14cbcSMatt Macy *p = '\0'; 1027eda14cbcSMatt Macy zpool_handle = zpool_open(g_zfs, argv[0]); 1028eda14cbcSMatt Macy if (p != NULL) 1029eda14cbcSMatt Macy *p = '/'; 1030eda14cbcSMatt Macy if (zpool_handle == NULL) 1031eda14cbcSMatt Macy goto error; 1032eda14cbcSMatt Macy 1033eda14cbcSMatt Macy (void) snprintf(msg, sizeof (msg), 1034eda14cbcSMatt Macy dryrun ? gettext("cannot verify '%s'") : 1035eda14cbcSMatt Macy gettext("cannot create '%s'"), argv[0]); 1036eda14cbcSMatt Macy if (props && (real_props = zfs_valid_proplist(g_zfs, type, 1037eda14cbcSMatt Macy props, 0, NULL, zpool_handle, B_TRUE, msg)) == NULL) { 1038eda14cbcSMatt Macy zpool_close(zpool_handle); 1039eda14cbcSMatt Macy goto error; 1040eda14cbcSMatt Macy } 1041eda14cbcSMatt Macy } 1042eda14cbcSMatt Macy 1043eda14cbcSMatt Macy /* 1044eda14cbcSMatt Macy * if volsize is not a multiple of volblocksize, round it up to the 1045eda14cbcSMatt Macy * nearest multiple of the volblocksize 1046eda14cbcSMatt Macy */ 1047eda14cbcSMatt Macy if (type == ZFS_TYPE_VOLUME) { 1048eda14cbcSMatt Macy uint64_t volblocksize; 1049eda14cbcSMatt Macy 1050eda14cbcSMatt Macy if (nvlist_lookup_uint64(props, 1051eda14cbcSMatt Macy zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 1052eda14cbcSMatt Macy &volblocksize) != 0) 1053eda14cbcSMatt Macy volblocksize = ZVOL_DEFAULT_BLOCKSIZE; 1054eda14cbcSMatt Macy 1055eda14cbcSMatt Macy if (volsize % volblocksize) { 1056eda14cbcSMatt Macy volsize = P2ROUNDUP_TYPED(volsize, volblocksize, 1057eda14cbcSMatt Macy uint64_t); 1058eda14cbcSMatt Macy 1059eda14cbcSMatt Macy if (nvlist_add_uint64(props, 1060eda14cbcSMatt Macy zfs_prop_to_name(ZFS_PROP_VOLSIZE), volsize) != 0) { 1061eda14cbcSMatt Macy nvlist_free(props); 1062eda14cbcSMatt Macy nomem(); 1063eda14cbcSMatt Macy } 1064eda14cbcSMatt Macy } 1065eda14cbcSMatt Macy } 1066eda14cbcSMatt Macy 1067eda14cbcSMatt Macy 1068eda14cbcSMatt Macy if (type == ZFS_TYPE_VOLUME && !noreserve) { 1069eda14cbcSMatt Macy uint64_t spa_version; 1070eda14cbcSMatt Macy zfs_prop_t resv_prop; 1071eda14cbcSMatt Macy char *strval; 1072eda14cbcSMatt Macy 1073eda14cbcSMatt Macy spa_version = zpool_get_prop_int(zpool_handle, 1074eda14cbcSMatt Macy ZPOOL_PROP_VERSION, NULL); 1075eda14cbcSMatt Macy if (spa_version >= SPA_VERSION_REFRESERVATION) 1076eda14cbcSMatt Macy resv_prop = ZFS_PROP_REFRESERVATION; 1077eda14cbcSMatt Macy else 1078eda14cbcSMatt Macy resv_prop = ZFS_PROP_RESERVATION; 1079eda14cbcSMatt Macy 1080eda14cbcSMatt Macy volsize = zvol_volsize_to_reservation(zpool_handle, volsize, 1081eda14cbcSMatt Macy real_props); 1082eda14cbcSMatt Macy 1083eda14cbcSMatt Macy if (nvlist_lookup_string(props, zfs_prop_to_name(resv_prop), 1084eda14cbcSMatt Macy &strval) != 0) { 1085eda14cbcSMatt Macy if (nvlist_add_uint64(props, 1086eda14cbcSMatt Macy zfs_prop_to_name(resv_prop), volsize) != 0) { 1087eda14cbcSMatt Macy nvlist_free(props); 1088eda14cbcSMatt Macy nomem(); 1089eda14cbcSMatt Macy } 1090eda14cbcSMatt Macy } 1091eda14cbcSMatt Macy } 1092eda14cbcSMatt Macy if (zpool_handle != NULL) { 1093eda14cbcSMatt Macy zpool_close(zpool_handle); 1094eda14cbcSMatt Macy nvlist_free(real_props); 1095eda14cbcSMatt Macy } 1096eda14cbcSMatt Macy 1097eda14cbcSMatt Macy if (parents && zfs_name_valid(argv[0], type)) { 1098eda14cbcSMatt Macy /* 1099eda14cbcSMatt Macy * Now create the ancestors of target dataset. If the target 1100eda14cbcSMatt Macy * already exists and '-p' option was used we should not 1101eda14cbcSMatt Macy * complain. 1102eda14cbcSMatt Macy */ 1103eda14cbcSMatt Macy if (zfs_dataset_exists(g_zfs, argv[0], type)) { 1104eda14cbcSMatt Macy ret = 0; 1105eda14cbcSMatt Macy goto error; 1106eda14cbcSMatt Macy } 1107eda14cbcSMatt Macy if (verbose) { 1108eda14cbcSMatt Macy (void) printf(parseable ? "create_ancestors\t%s\n" : 1109eda14cbcSMatt Macy dryrun ? "would create ancestors of %s\n" : 1110eda14cbcSMatt Macy "create ancestors of %s\n", argv[0]); 1111eda14cbcSMatt Macy } 1112eda14cbcSMatt Macy if (!dryrun) { 1113eda14cbcSMatt Macy if (zfs_create_ancestors(g_zfs, argv[0]) != 0) { 1114eda14cbcSMatt Macy goto error; 1115eda14cbcSMatt Macy } 1116eda14cbcSMatt Macy } 1117eda14cbcSMatt Macy } 1118eda14cbcSMatt Macy 1119eda14cbcSMatt Macy if (verbose) { 1120eda14cbcSMatt Macy nvpair_t *nvp = NULL; 1121eda14cbcSMatt Macy (void) printf(parseable ? "create\t%s\n" : 1122eda14cbcSMatt Macy dryrun ? "would create %s\n" : "create %s\n", argv[0]); 1123eda14cbcSMatt Macy while ((nvp = nvlist_next_nvpair(props, nvp)) != NULL) { 1124eda14cbcSMatt Macy uint64_t uval; 1125eda14cbcSMatt Macy char *sval; 1126eda14cbcSMatt Macy 1127eda14cbcSMatt Macy switch (nvpair_type(nvp)) { 1128eda14cbcSMatt Macy case DATA_TYPE_UINT64: 1129eda14cbcSMatt Macy VERIFY0(nvpair_value_uint64(nvp, &uval)); 1130eda14cbcSMatt Macy (void) printf(parseable ? 1131eda14cbcSMatt Macy "property\t%s\t%llu\n" : "\t%s=%llu\n", 1132eda14cbcSMatt Macy nvpair_name(nvp), (u_longlong_t)uval); 1133eda14cbcSMatt Macy break; 1134eda14cbcSMatt Macy case DATA_TYPE_STRING: 1135eda14cbcSMatt Macy VERIFY0(nvpair_value_string(nvp, &sval)); 1136eda14cbcSMatt Macy (void) printf(parseable ? 1137eda14cbcSMatt Macy "property\t%s\t%s\n" : "\t%s=%s\n", 1138eda14cbcSMatt Macy nvpair_name(nvp), sval); 1139eda14cbcSMatt Macy break; 1140eda14cbcSMatt Macy default: 1141eda14cbcSMatt Macy (void) fprintf(stderr, "property '%s' " 1142eda14cbcSMatt Macy "has illegal type %d\n", 1143eda14cbcSMatt Macy nvpair_name(nvp), nvpair_type(nvp)); 1144eda14cbcSMatt Macy abort(); 1145eda14cbcSMatt Macy } 1146eda14cbcSMatt Macy } 1147eda14cbcSMatt Macy } 1148eda14cbcSMatt Macy if (dryrun) { 1149eda14cbcSMatt Macy ret = 0; 1150eda14cbcSMatt Macy goto error; 1151eda14cbcSMatt Macy } 1152eda14cbcSMatt Macy 1153eda14cbcSMatt Macy /* pass to libzfs */ 1154eda14cbcSMatt Macy if (zfs_create(g_zfs, argv[0], type, props) != 0) 1155eda14cbcSMatt Macy goto error; 1156eda14cbcSMatt Macy 1157eda14cbcSMatt Macy if (log_history) { 1158eda14cbcSMatt Macy (void) zpool_log_history(g_zfs, history_str); 1159eda14cbcSMatt Macy log_history = B_FALSE; 1160eda14cbcSMatt Macy } 1161eda14cbcSMatt Macy 1162eda14cbcSMatt Macy ret = zfs_mount_and_share(g_zfs, argv[0], ZFS_TYPE_DATASET); 1163eda14cbcSMatt Macy error: 1164eda14cbcSMatt Macy nvlist_free(props); 1165eda14cbcSMatt Macy return (ret); 1166eda14cbcSMatt Macy badusage: 1167eda14cbcSMatt Macy nvlist_free(props); 1168eda14cbcSMatt Macy usage(B_FALSE); 1169eda14cbcSMatt Macy return (2); 1170eda14cbcSMatt Macy } 1171eda14cbcSMatt Macy 1172eda14cbcSMatt Macy /* 1173eda14cbcSMatt Macy * zfs destroy [-rRf] <fs, vol> 1174eda14cbcSMatt Macy * zfs destroy [-rRd] <snap> 1175eda14cbcSMatt Macy * 1176eda14cbcSMatt Macy * -r Recursively destroy all children 1177eda14cbcSMatt Macy * -R Recursively destroy all dependents, including clones 1178eda14cbcSMatt Macy * -f Force unmounting of any dependents 1179eda14cbcSMatt Macy * -d If we can't destroy now, mark for deferred destruction 1180eda14cbcSMatt Macy * 1181eda14cbcSMatt Macy * Destroys the given dataset. By default, it will unmount any filesystems, 1182eda14cbcSMatt Macy * and refuse to destroy a dataset that has any dependents. A dependent can 1183eda14cbcSMatt Macy * either be a child, or a clone of a child. 1184eda14cbcSMatt Macy */ 1185eda14cbcSMatt Macy typedef struct destroy_cbdata { 1186eda14cbcSMatt Macy boolean_t cb_first; 1187eda14cbcSMatt Macy boolean_t cb_force; 1188eda14cbcSMatt Macy boolean_t cb_recurse; 1189eda14cbcSMatt Macy boolean_t cb_error; 1190eda14cbcSMatt Macy boolean_t cb_doclones; 1191eda14cbcSMatt Macy zfs_handle_t *cb_target; 1192eda14cbcSMatt Macy boolean_t cb_defer_destroy; 1193eda14cbcSMatt Macy boolean_t cb_verbose; 1194eda14cbcSMatt Macy boolean_t cb_parsable; 1195eda14cbcSMatt Macy boolean_t cb_dryrun; 1196eda14cbcSMatt Macy nvlist_t *cb_nvl; 1197eda14cbcSMatt Macy nvlist_t *cb_batchedsnaps; 1198eda14cbcSMatt Macy 1199eda14cbcSMatt Macy /* first snap in contiguous run */ 1200eda14cbcSMatt Macy char *cb_firstsnap; 1201eda14cbcSMatt Macy /* previous snap in contiguous run */ 1202eda14cbcSMatt Macy char *cb_prevsnap; 1203eda14cbcSMatt Macy int64_t cb_snapused; 1204eda14cbcSMatt Macy char *cb_snapspec; 1205eda14cbcSMatt Macy char *cb_bookmark; 1206eda14cbcSMatt Macy uint64_t cb_snap_count; 1207eda14cbcSMatt Macy } destroy_cbdata_t; 1208eda14cbcSMatt Macy 1209eda14cbcSMatt Macy /* 1210eda14cbcSMatt Macy * Check for any dependents based on the '-r' or '-R' flags. 1211eda14cbcSMatt Macy */ 1212eda14cbcSMatt Macy static int 1213eda14cbcSMatt Macy destroy_check_dependent(zfs_handle_t *zhp, void *data) 1214eda14cbcSMatt Macy { 1215eda14cbcSMatt Macy destroy_cbdata_t *cbp = data; 1216eda14cbcSMatt Macy const char *tname = zfs_get_name(cbp->cb_target); 1217eda14cbcSMatt Macy const char *name = zfs_get_name(zhp); 1218eda14cbcSMatt Macy 1219eda14cbcSMatt Macy if (strncmp(tname, name, strlen(tname)) == 0 && 1220eda14cbcSMatt Macy (name[strlen(tname)] == '/' || name[strlen(tname)] == '@')) { 1221eda14cbcSMatt Macy /* 1222eda14cbcSMatt Macy * This is a direct descendant, not a clone somewhere else in 1223eda14cbcSMatt Macy * the hierarchy. 1224eda14cbcSMatt Macy */ 1225eda14cbcSMatt Macy if (cbp->cb_recurse) 1226eda14cbcSMatt Macy goto out; 1227eda14cbcSMatt Macy 1228eda14cbcSMatt Macy if (cbp->cb_first) { 1229eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot destroy '%s': " 1230eda14cbcSMatt Macy "%s has children\n"), 1231eda14cbcSMatt Macy zfs_get_name(cbp->cb_target), 1232eda14cbcSMatt Macy zfs_type_to_name(zfs_get_type(cbp->cb_target))); 1233eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use '-r' to destroy " 1234eda14cbcSMatt Macy "the following datasets:\n")); 1235eda14cbcSMatt Macy cbp->cb_first = B_FALSE; 1236eda14cbcSMatt Macy cbp->cb_error = B_TRUE; 1237eda14cbcSMatt Macy } 1238eda14cbcSMatt Macy 1239eda14cbcSMatt Macy (void) fprintf(stderr, "%s\n", zfs_get_name(zhp)); 1240eda14cbcSMatt Macy } else { 1241eda14cbcSMatt Macy /* 1242eda14cbcSMatt Macy * This is a clone. We only want to report this if the '-r' 1243eda14cbcSMatt Macy * wasn't specified, or the target is a snapshot. 1244eda14cbcSMatt Macy */ 1245eda14cbcSMatt Macy if (!cbp->cb_recurse && 1246eda14cbcSMatt Macy zfs_get_type(cbp->cb_target) != ZFS_TYPE_SNAPSHOT) 1247eda14cbcSMatt Macy goto out; 1248eda14cbcSMatt Macy 1249eda14cbcSMatt Macy if (cbp->cb_first) { 1250eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot destroy '%s': " 1251eda14cbcSMatt Macy "%s has dependent clones\n"), 1252eda14cbcSMatt Macy zfs_get_name(cbp->cb_target), 1253eda14cbcSMatt Macy zfs_type_to_name(zfs_get_type(cbp->cb_target))); 1254eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use '-R' to destroy " 1255eda14cbcSMatt Macy "the following datasets:\n")); 1256eda14cbcSMatt Macy cbp->cb_first = B_FALSE; 1257eda14cbcSMatt Macy cbp->cb_error = B_TRUE; 1258eda14cbcSMatt Macy cbp->cb_dryrun = B_TRUE; 1259eda14cbcSMatt Macy } 1260eda14cbcSMatt Macy 1261eda14cbcSMatt Macy (void) fprintf(stderr, "%s\n", zfs_get_name(zhp)); 1262eda14cbcSMatt Macy } 1263eda14cbcSMatt Macy 1264eda14cbcSMatt Macy out: 1265eda14cbcSMatt Macy zfs_close(zhp); 1266eda14cbcSMatt Macy return (0); 1267eda14cbcSMatt Macy } 1268eda14cbcSMatt Macy 1269eda14cbcSMatt Macy static int 1270eda14cbcSMatt Macy destroy_batched(destroy_cbdata_t *cb) 1271eda14cbcSMatt Macy { 1272eda14cbcSMatt Macy int error = zfs_destroy_snaps_nvl(g_zfs, 1273eda14cbcSMatt Macy cb->cb_batchedsnaps, B_FALSE); 1274eda14cbcSMatt Macy fnvlist_free(cb->cb_batchedsnaps); 1275eda14cbcSMatt Macy cb->cb_batchedsnaps = fnvlist_alloc(); 1276eda14cbcSMatt Macy return (error); 1277eda14cbcSMatt Macy } 1278eda14cbcSMatt Macy 1279eda14cbcSMatt Macy static int 1280eda14cbcSMatt Macy destroy_callback(zfs_handle_t *zhp, void *data) 1281eda14cbcSMatt Macy { 1282eda14cbcSMatt Macy destroy_cbdata_t *cb = data; 1283eda14cbcSMatt Macy const char *name = zfs_get_name(zhp); 1284eda14cbcSMatt Macy int error; 1285eda14cbcSMatt Macy 1286eda14cbcSMatt Macy if (cb->cb_verbose) { 1287eda14cbcSMatt Macy if (cb->cb_parsable) { 1288eda14cbcSMatt Macy (void) printf("destroy\t%s\n", name); 1289eda14cbcSMatt Macy } else if (cb->cb_dryrun) { 1290eda14cbcSMatt Macy (void) printf(gettext("would destroy %s\n"), 1291eda14cbcSMatt Macy name); 1292eda14cbcSMatt Macy } else { 1293eda14cbcSMatt Macy (void) printf(gettext("will destroy %s\n"), 1294eda14cbcSMatt Macy name); 1295eda14cbcSMatt Macy } 1296eda14cbcSMatt Macy } 1297eda14cbcSMatt Macy 1298eda14cbcSMatt Macy /* 1299eda14cbcSMatt Macy * Ignore pools (which we've already flagged as an error before getting 1300eda14cbcSMatt Macy * here). 1301eda14cbcSMatt Macy */ 1302eda14cbcSMatt Macy if (strchr(zfs_get_name(zhp), '/') == NULL && 1303eda14cbcSMatt Macy zfs_get_type(zhp) == ZFS_TYPE_FILESYSTEM) { 1304eda14cbcSMatt Macy zfs_close(zhp); 1305eda14cbcSMatt Macy return (0); 1306eda14cbcSMatt Macy } 1307eda14cbcSMatt Macy if (cb->cb_dryrun) { 1308eda14cbcSMatt Macy zfs_close(zhp); 1309eda14cbcSMatt Macy return (0); 1310eda14cbcSMatt Macy } 1311eda14cbcSMatt Macy 1312eda14cbcSMatt Macy /* 1313eda14cbcSMatt Macy * We batch up all contiguous snapshots (even of different 1314eda14cbcSMatt Macy * filesystems) and destroy them with one ioctl. We can't 1315eda14cbcSMatt Macy * simply do all snap deletions and then all fs deletions, 1316eda14cbcSMatt Macy * because we must delete a clone before its origin. 1317eda14cbcSMatt Macy */ 1318eda14cbcSMatt Macy if (zfs_get_type(zhp) == ZFS_TYPE_SNAPSHOT) { 1319eda14cbcSMatt Macy cb->cb_snap_count++; 1320eda14cbcSMatt Macy fnvlist_add_boolean(cb->cb_batchedsnaps, name); 1321eda14cbcSMatt Macy if (cb->cb_snap_count % 10 == 0 && cb->cb_defer_destroy) 1322eda14cbcSMatt Macy error = destroy_batched(cb); 1323eda14cbcSMatt Macy } else { 1324eda14cbcSMatt Macy error = destroy_batched(cb); 1325eda14cbcSMatt Macy if (error != 0 || 1326eda14cbcSMatt Macy zfs_unmount(zhp, NULL, cb->cb_force ? MS_FORCE : 0) != 0 || 1327eda14cbcSMatt Macy zfs_destroy(zhp, cb->cb_defer_destroy) != 0) { 1328eda14cbcSMatt Macy zfs_close(zhp); 1329eda14cbcSMatt Macy /* 1330eda14cbcSMatt Macy * When performing a recursive destroy we ignore errors 1331eda14cbcSMatt Macy * so that the recursive destroy could continue 1332eda14cbcSMatt Macy * destroying past problem datasets 1333eda14cbcSMatt Macy */ 1334eda14cbcSMatt Macy if (cb->cb_recurse) { 1335eda14cbcSMatt Macy cb->cb_error = B_TRUE; 1336eda14cbcSMatt Macy return (0); 1337eda14cbcSMatt Macy } 1338eda14cbcSMatt Macy return (-1); 1339eda14cbcSMatt Macy } 1340eda14cbcSMatt Macy } 1341eda14cbcSMatt Macy 1342eda14cbcSMatt Macy zfs_close(zhp); 1343eda14cbcSMatt Macy return (0); 1344eda14cbcSMatt Macy } 1345eda14cbcSMatt Macy 1346eda14cbcSMatt Macy static int 1347eda14cbcSMatt Macy destroy_print_cb(zfs_handle_t *zhp, void *arg) 1348eda14cbcSMatt Macy { 1349eda14cbcSMatt Macy destroy_cbdata_t *cb = arg; 1350eda14cbcSMatt Macy const char *name = zfs_get_name(zhp); 1351eda14cbcSMatt Macy int err = 0; 1352eda14cbcSMatt Macy 1353eda14cbcSMatt Macy if (nvlist_exists(cb->cb_nvl, name)) { 1354eda14cbcSMatt Macy if (cb->cb_firstsnap == NULL) 1355eda14cbcSMatt Macy cb->cb_firstsnap = strdup(name); 1356eda14cbcSMatt Macy if (cb->cb_prevsnap != NULL) 1357eda14cbcSMatt Macy free(cb->cb_prevsnap); 1358eda14cbcSMatt Macy /* this snap continues the current range */ 1359eda14cbcSMatt Macy cb->cb_prevsnap = strdup(name); 1360eda14cbcSMatt Macy if (cb->cb_firstsnap == NULL || cb->cb_prevsnap == NULL) 1361eda14cbcSMatt Macy nomem(); 1362eda14cbcSMatt Macy if (cb->cb_verbose) { 1363eda14cbcSMatt Macy if (cb->cb_parsable) { 1364eda14cbcSMatt Macy (void) printf("destroy\t%s\n", name); 1365eda14cbcSMatt Macy } else if (cb->cb_dryrun) { 1366eda14cbcSMatt Macy (void) printf(gettext("would destroy %s\n"), 1367eda14cbcSMatt Macy name); 1368eda14cbcSMatt Macy } else { 1369eda14cbcSMatt Macy (void) printf(gettext("will destroy %s\n"), 1370eda14cbcSMatt Macy name); 1371eda14cbcSMatt Macy } 1372eda14cbcSMatt Macy } 1373eda14cbcSMatt Macy } else if (cb->cb_firstsnap != NULL) { 1374eda14cbcSMatt Macy /* end of this range */ 1375eda14cbcSMatt Macy uint64_t used = 0; 1376eda14cbcSMatt Macy err = lzc_snaprange_space(cb->cb_firstsnap, 1377eda14cbcSMatt Macy cb->cb_prevsnap, &used); 1378eda14cbcSMatt Macy cb->cb_snapused += used; 1379eda14cbcSMatt Macy free(cb->cb_firstsnap); 1380eda14cbcSMatt Macy cb->cb_firstsnap = NULL; 1381eda14cbcSMatt Macy free(cb->cb_prevsnap); 1382eda14cbcSMatt Macy cb->cb_prevsnap = NULL; 1383eda14cbcSMatt Macy } 1384eda14cbcSMatt Macy zfs_close(zhp); 1385eda14cbcSMatt Macy return (err); 1386eda14cbcSMatt Macy } 1387eda14cbcSMatt Macy 1388eda14cbcSMatt Macy static int 1389eda14cbcSMatt Macy destroy_print_snapshots(zfs_handle_t *fs_zhp, destroy_cbdata_t *cb) 1390eda14cbcSMatt Macy { 1391eda14cbcSMatt Macy int err; 1392eda14cbcSMatt Macy assert(cb->cb_firstsnap == NULL); 1393eda14cbcSMatt Macy assert(cb->cb_prevsnap == NULL); 1394eda14cbcSMatt Macy err = zfs_iter_snapshots_sorted(fs_zhp, destroy_print_cb, cb, 0, 0); 1395eda14cbcSMatt Macy if (cb->cb_firstsnap != NULL) { 1396eda14cbcSMatt Macy uint64_t used = 0; 1397eda14cbcSMatt Macy if (err == 0) { 1398eda14cbcSMatt Macy err = lzc_snaprange_space(cb->cb_firstsnap, 1399eda14cbcSMatt Macy cb->cb_prevsnap, &used); 1400eda14cbcSMatt Macy } 1401eda14cbcSMatt Macy cb->cb_snapused += used; 1402eda14cbcSMatt Macy free(cb->cb_firstsnap); 1403eda14cbcSMatt Macy cb->cb_firstsnap = NULL; 1404eda14cbcSMatt Macy free(cb->cb_prevsnap); 1405eda14cbcSMatt Macy cb->cb_prevsnap = NULL; 1406eda14cbcSMatt Macy } 1407eda14cbcSMatt Macy return (err); 1408eda14cbcSMatt Macy } 1409eda14cbcSMatt Macy 1410eda14cbcSMatt Macy static int 1411eda14cbcSMatt Macy snapshot_to_nvl_cb(zfs_handle_t *zhp, void *arg) 1412eda14cbcSMatt Macy { 1413eda14cbcSMatt Macy destroy_cbdata_t *cb = arg; 1414eda14cbcSMatt Macy int err = 0; 1415eda14cbcSMatt Macy 1416eda14cbcSMatt Macy /* Check for clones. */ 1417eda14cbcSMatt Macy if (!cb->cb_doclones && !cb->cb_defer_destroy) { 1418eda14cbcSMatt Macy cb->cb_target = zhp; 1419eda14cbcSMatt Macy cb->cb_first = B_TRUE; 1420eda14cbcSMatt Macy err = zfs_iter_dependents(zhp, B_TRUE, 1421eda14cbcSMatt Macy destroy_check_dependent, cb); 1422eda14cbcSMatt Macy } 1423eda14cbcSMatt Macy 1424eda14cbcSMatt Macy if (err == 0) { 1425eda14cbcSMatt Macy if (nvlist_add_boolean(cb->cb_nvl, zfs_get_name(zhp))) 1426eda14cbcSMatt Macy nomem(); 1427eda14cbcSMatt Macy } 1428eda14cbcSMatt Macy zfs_close(zhp); 1429eda14cbcSMatt Macy return (err); 1430eda14cbcSMatt Macy } 1431eda14cbcSMatt Macy 1432eda14cbcSMatt Macy static int 1433eda14cbcSMatt Macy gather_snapshots(zfs_handle_t *zhp, void *arg) 1434eda14cbcSMatt Macy { 1435eda14cbcSMatt Macy destroy_cbdata_t *cb = arg; 1436eda14cbcSMatt Macy int err = 0; 1437eda14cbcSMatt Macy 1438eda14cbcSMatt Macy err = zfs_iter_snapspec(zhp, cb->cb_snapspec, snapshot_to_nvl_cb, cb); 1439eda14cbcSMatt Macy if (err == ENOENT) 1440eda14cbcSMatt Macy err = 0; 1441eda14cbcSMatt Macy if (err != 0) 1442eda14cbcSMatt Macy goto out; 1443eda14cbcSMatt Macy 1444eda14cbcSMatt Macy if (cb->cb_verbose) { 1445eda14cbcSMatt Macy err = destroy_print_snapshots(zhp, cb); 1446eda14cbcSMatt Macy if (err != 0) 1447eda14cbcSMatt Macy goto out; 1448eda14cbcSMatt Macy } 1449eda14cbcSMatt Macy 1450eda14cbcSMatt Macy if (cb->cb_recurse) 1451eda14cbcSMatt Macy err = zfs_iter_filesystems(zhp, gather_snapshots, cb); 1452eda14cbcSMatt Macy 1453eda14cbcSMatt Macy out: 1454eda14cbcSMatt Macy zfs_close(zhp); 1455eda14cbcSMatt Macy return (err); 1456eda14cbcSMatt Macy } 1457eda14cbcSMatt Macy 1458eda14cbcSMatt Macy static int 1459eda14cbcSMatt Macy destroy_clones(destroy_cbdata_t *cb) 1460eda14cbcSMatt Macy { 1461eda14cbcSMatt Macy nvpair_t *pair; 1462eda14cbcSMatt Macy for (pair = nvlist_next_nvpair(cb->cb_nvl, NULL); 1463eda14cbcSMatt Macy pair != NULL; 1464eda14cbcSMatt Macy pair = nvlist_next_nvpair(cb->cb_nvl, pair)) { 1465eda14cbcSMatt Macy zfs_handle_t *zhp = zfs_open(g_zfs, nvpair_name(pair), 1466eda14cbcSMatt Macy ZFS_TYPE_SNAPSHOT); 1467eda14cbcSMatt Macy if (zhp != NULL) { 1468eda14cbcSMatt Macy boolean_t defer = cb->cb_defer_destroy; 1469eda14cbcSMatt Macy int err; 1470eda14cbcSMatt Macy 1471eda14cbcSMatt Macy /* 1472eda14cbcSMatt Macy * We can't defer destroy non-snapshots, so set it to 1473eda14cbcSMatt Macy * false while destroying the clones. 1474eda14cbcSMatt Macy */ 1475eda14cbcSMatt Macy cb->cb_defer_destroy = B_FALSE; 1476eda14cbcSMatt Macy err = zfs_iter_dependents(zhp, B_FALSE, 1477eda14cbcSMatt Macy destroy_callback, cb); 1478eda14cbcSMatt Macy cb->cb_defer_destroy = defer; 1479eda14cbcSMatt Macy zfs_close(zhp); 1480eda14cbcSMatt Macy if (err != 0) 1481eda14cbcSMatt Macy return (err); 1482eda14cbcSMatt Macy } 1483eda14cbcSMatt Macy } 1484eda14cbcSMatt Macy return (0); 1485eda14cbcSMatt Macy } 1486eda14cbcSMatt Macy 1487eda14cbcSMatt Macy static int 1488eda14cbcSMatt Macy zfs_do_destroy(int argc, char **argv) 1489eda14cbcSMatt Macy { 1490eda14cbcSMatt Macy destroy_cbdata_t cb = { 0 }; 1491eda14cbcSMatt Macy int rv = 0; 1492eda14cbcSMatt Macy int err = 0; 1493eda14cbcSMatt Macy int c; 1494eda14cbcSMatt Macy zfs_handle_t *zhp = NULL; 1495eda14cbcSMatt Macy char *at, *pound; 1496eda14cbcSMatt Macy zfs_type_t type = ZFS_TYPE_DATASET; 1497eda14cbcSMatt Macy 1498eda14cbcSMatt Macy /* check options */ 1499eda14cbcSMatt Macy while ((c = getopt(argc, argv, "vpndfrR")) != -1) { 1500eda14cbcSMatt Macy switch (c) { 1501eda14cbcSMatt Macy case 'v': 1502eda14cbcSMatt Macy cb.cb_verbose = B_TRUE; 1503eda14cbcSMatt Macy break; 1504eda14cbcSMatt Macy case 'p': 1505eda14cbcSMatt Macy cb.cb_verbose = B_TRUE; 1506eda14cbcSMatt Macy cb.cb_parsable = B_TRUE; 1507eda14cbcSMatt Macy break; 1508eda14cbcSMatt Macy case 'n': 1509eda14cbcSMatt Macy cb.cb_dryrun = B_TRUE; 1510eda14cbcSMatt Macy break; 1511eda14cbcSMatt Macy case 'd': 1512eda14cbcSMatt Macy cb.cb_defer_destroy = B_TRUE; 1513eda14cbcSMatt Macy type = ZFS_TYPE_SNAPSHOT; 1514eda14cbcSMatt Macy break; 1515eda14cbcSMatt Macy case 'f': 1516eda14cbcSMatt Macy cb.cb_force = B_TRUE; 1517eda14cbcSMatt Macy break; 1518eda14cbcSMatt Macy case 'r': 1519eda14cbcSMatt Macy cb.cb_recurse = B_TRUE; 1520eda14cbcSMatt Macy break; 1521eda14cbcSMatt Macy case 'R': 1522eda14cbcSMatt Macy cb.cb_recurse = B_TRUE; 1523eda14cbcSMatt Macy cb.cb_doclones = B_TRUE; 1524eda14cbcSMatt Macy break; 1525eda14cbcSMatt Macy case '?': 1526eda14cbcSMatt Macy default: 1527eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 1528eda14cbcSMatt Macy optopt); 1529eda14cbcSMatt Macy usage(B_FALSE); 1530eda14cbcSMatt Macy } 1531eda14cbcSMatt Macy } 1532eda14cbcSMatt Macy 1533eda14cbcSMatt Macy argc -= optind; 1534eda14cbcSMatt Macy argv += optind; 1535eda14cbcSMatt Macy 1536eda14cbcSMatt Macy /* check number of arguments */ 1537eda14cbcSMatt Macy if (argc == 0) { 1538eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing dataset argument\n")); 1539eda14cbcSMatt Macy usage(B_FALSE); 1540eda14cbcSMatt Macy } 1541eda14cbcSMatt Macy if (argc > 1) { 1542eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 1543eda14cbcSMatt Macy usage(B_FALSE); 1544eda14cbcSMatt Macy } 1545eda14cbcSMatt Macy 1546eda14cbcSMatt Macy at = strchr(argv[0], '@'); 1547eda14cbcSMatt Macy pound = strchr(argv[0], '#'); 1548eda14cbcSMatt Macy if (at != NULL) { 1549eda14cbcSMatt Macy 1550eda14cbcSMatt Macy /* Build the list of snaps to destroy in cb_nvl. */ 1551eda14cbcSMatt Macy cb.cb_nvl = fnvlist_alloc(); 1552eda14cbcSMatt Macy 1553eda14cbcSMatt Macy *at = '\0'; 1554eda14cbcSMatt Macy zhp = zfs_open(g_zfs, argv[0], 1555eda14cbcSMatt Macy ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME); 1556eda14cbcSMatt Macy if (zhp == NULL) { 1557eda14cbcSMatt Macy nvlist_free(cb.cb_nvl); 1558eda14cbcSMatt Macy return (1); 1559eda14cbcSMatt Macy } 1560eda14cbcSMatt Macy 1561eda14cbcSMatt Macy cb.cb_snapspec = at + 1; 1562eda14cbcSMatt Macy if (gather_snapshots(zfs_handle_dup(zhp), &cb) != 0 || 1563eda14cbcSMatt Macy cb.cb_error) { 1564eda14cbcSMatt Macy rv = 1; 1565eda14cbcSMatt Macy goto out; 1566eda14cbcSMatt Macy } 1567eda14cbcSMatt Macy 1568eda14cbcSMatt Macy if (nvlist_empty(cb.cb_nvl)) { 1569eda14cbcSMatt Macy (void) fprintf(stderr, gettext("could not find any " 1570eda14cbcSMatt Macy "snapshots to destroy; check snapshot names.\n")); 1571eda14cbcSMatt Macy rv = 1; 1572eda14cbcSMatt Macy goto out; 1573eda14cbcSMatt Macy } 1574eda14cbcSMatt Macy 1575eda14cbcSMatt Macy if (cb.cb_verbose) { 1576eda14cbcSMatt Macy char buf[16]; 1577eda14cbcSMatt Macy zfs_nicebytes(cb.cb_snapused, buf, sizeof (buf)); 1578eda14cbcSMatt Macy if (cb.cb_parsable) { 1579eda14cbcSMatt Macy (void) printf("reclaim\t%llu\n", 1580eda14cbcSMatt Macy (u_longlong_t)cb.cb_snapused); 1581eda14cbcSMatt Macy } else if (cb.cb_dryrun) { 1582eda14cbcSMatt Macy (void) printf(gettext("would reclaim %s\n"), 1583eda14cbcSMatt Macy buf); 1584eda14cbcSMatt Macy } else { 1585eda14cbcSMatt Macy (void) printf(gettext("will reclaim %s\n"), 1586eda14cbcSMatt Macy buf); 1587eda14cbcSMatt Macy } 1588eda14cbcSMatt Macy } 1589eda14cbcSMatt Macy 1590eda14cbcSMatt Macy if (!cb.cb_dryrun) { 1591eda14cbcSMatt Macy if (cb.cb_doclones) { 1592eda14cbcSMatt Macy cb.cb_batchedsnaps = fnvlist_alloc(); 1593eda14cbcSMatt Macy err = destroy_clones(&cb); 1594eda14cbcSMatt Macy if (err == 0) { 1595eda14cbcSMatt Macy err = zfs_destroy_snaps_nvl(g_zfs, 1596eda14cbcSMatt Macy cb.cb_batchedsnaps, B_FALSE); 1597eda14cbcSMatt Macy } 1598eda14cbcSMatt Macy if (err != 0) { 1599eda14cbcSMatt Macy rv = 1; 1600eda14cbcSMatt Macy goto out; 1601eda14cbcSMatt Macy } 1602eda14cbcSMatt Macy } 1603eda14cbcSMatt Macy if (err == 0) { 1604eda14cbcSMatt Macy err = zfs_destroy_snaps_nvl(g_zfs, cb.cb_nvl, 1605eda14cbcSMatt Macy cb.cb_defer_destroy); 1606eda14cbcSMatt Macy } 1607eda14cbcSMatt Macy } 1608eda14cbcSMatt Macy 1609eda14cbcSMatt Macy if (err != 0) 1610eda14cbcSMatt Macy rv = 1; 1611eda14cbcSMatt Macy } else if (pound != NULL) { 1612eda14cbcSMatt Macy int err; 1613eda14cbcSMatt Macy nvlist_t *nvl; 1614eda14cbcSMatt Macy 1615eda14cbcSMatt Macy if (cb.cb_dryrun) { 1616eda14cbcSMatt Macy (void) fprintf(stderr, 1617eda14cbcSMatt Macy "dryrun is not supported with bookmark\n"); 1618eda14cbcSMatt Macy return (-1); 1619eda14cbcSMatt Macy } 1620eda14cbcSMatt Macy 1621eda14cbcSMatt Macy if (cb.cb_defer_destroy) { 1622eda14cbcSMatt Macy (void) fprintf(stderr, 1623eda14cbcSMatt Macy "defer destroy is not supported with bookmark\n"); 1624eda14cbcSMatt Macy return (-1); 1625eda14cbcSMatt Macy } 1626eda14cbcSMatt Macy 1627eda14cbcSMatt Macy if (cb.cb_recurse) { 1628eda14cbcSMatt Macy (void) fprintf(stderr, 1629eda14cbcSMatt Macy "recursive is not supported with bookmark\n"); 1630eda14cbcSMatt Macy return (-1); 1631eda14cbcSMatt Macy } 1632eda14cbcSMatt Macy 1633eda14cbcSMatt Macy /* 1634eda14cbcSMatt Macy * Unfortunately, zfs_bookmark() doesn't honor the 1635eda14cbcSMatt Macy * casesensitivity setting. However, we can't simply 1636eda14cbcSMatt Macy * remove this check, because lzc_destroy_bookmarks() 1637eda14cbcSMatt Macy * ignores non-existent bookmarks, so this is necessary 1638eda14cbcSMatt Macy * to get a proper error message. 1639eda14cbcSMatt Macy */ 1640eda14cbcSMatt Macy if (!zfs_bookmark_exists(argv[0])) { 1641eda14cbcSMatt Macy (void) fprintf(stderr, gettext("bookmark '%s' " 1642eda14cbcSMatt Macy "does not exist.\n"), argv[0]); 1643eda14cbcSMatt Macy return (1); 1644eda14cbcSMatt Macy } 1645eda14cbcSMatt Macy 1646eda14cbcSMatt Macy nvl = fnvlist_alloc(); 1647eda14cbcSMatt Macy fnvlist_add_boolean(nvl, argv[0]); 1648eda14cbcSMatt Macy 1649eda14cbcSMatt Macy err = lzc_destroy_bookmarks(nvl, NULL); 1650eda14cbcSMatt Macy if (err != 0) { 1651eda14cbcSMatt Macy (void) zfs_standard_error(g_zfs, err, 1652eda14cbcSMatt Macy "cannot destroy bookmark"); 1653eda14cbcSMatt Macy } 1654eda14cbcSMatt Macy 1655eda14cbcSMatt Macy nvlist_free(nvl); 1656eda14cbcSMatt Macy 1657eda14cbcSMatt Macy return (err); 1658eda14cbcSMatt Macy } else { 1659eda14cbcSMatt Macy /* Open the given dataset */ 1660eda14cbcSMatt Macy if ((zhp = zfs_open(g_zfs, argv[0], type)) == NULL) 1661eda14cbcSMatt Macy return (1); 1662eda14cbcSMatt Macy 1663eda14cbcSMatt Macy cb.cb_target = zhp; 1664eda14cbcSMatt Macy 1665eda14cbcSMatt Macy /* 1666eda14cbcSMatt Macy * Perform an explicit check for pools before going any further. 1667eda14cbcSMatt Macy */ 1668eda14cbcSMatt Macy if (!cb.cb_recurse && strchr(zfs_get_name(zhp), '/') == NULL && 1669eda14cbcSMatt Macy zfs_get_type(zhp) == ZFS_TYPE_FILESYSTEM) { 1670eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot destroy '%s': " 1671eda14cbcSMatt Macy "operation does not apply to pools\n"), 1672eda14cbcSMatt Macy zfs_get_name(zhp)); 1673eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use 'zfs destroy -r " 1674eda14cbcSMatt Macy "%s' to destroy all datasets in the pool\n"), 1675eda14cbcSMatt Macy zfs_get_name(zhp)); 1676eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use 'zpool destroy %s' " 1677eda14cbcSMatt Macy "to destroy the pool itself\n"), zfs_get_name(zhp)); 1678eda14cbcSMatt Macy rv = 1; 1679eda14cbcSMatt Macy goto out; 1680eda14cbcSMatt Macy } 1681eda14cbcSMatt Macy 1682eda14cbcSMatt Macy /* 1683eda14cbcSMatt Macy * Check for any dependents and/or clones. 1684eda14cbcSMatt Macy */ 1685eda14cbcSMatt Macy cb.cb_first = B_TRUE; 1686eda14cbcSMatt Macy if (!cb.cb_doclones && 1687eda14cbcSMatt Macy zfs_iter_dependents(zhp, B_TRUE, destroy_check_dependent, 1688eda14cbcSMatt Macy &cb) != 0) { 1689eda14cbcSMatt Macy rv = 1; 1690eda14cbcSMatt Macy goto out; 1691eda14cbcSMatt Macy } 1692eda14cbcSMatt Macy 1693eda14cbcSMatt Macy if (cb.cb_error) { 1694eda14cbcSMatt Macy rv = 1; 1695eda14cbcSMatt Macy goto out; 1696eda14cbcSMatt Macy } 1697eda14cbcSMatt Macy cb.cb_batchedsnaps = fnvlist_alloc(); 1698eda14cbcSMatt Macy if (zfs_iter_dependents(zhp, B_FALSE, destroy_callback, 1699eda14cbcSMatt Macy &cb) != 0) { 1700eda14cbcSMatt Macy rv = 1; 1701eda14cbcSMatt Macy goto out; 1702eda14cbcSMatt Macy } 1703eda14cbcSMatt Macy 1704eda14cbcSMatt Macy /* 1705eda14cbcSMatt Macy * Do the real thing. The callback will close the 1706eda14cbcSMatt Macy * handle regardless of whether it succeeds or not. 1707eda14cbcSMatt Macy */ 1708eda14cbcSMatt Macy err = destroy_callback(zhp, &cb); 1709eda14cbcSMatt Macy zhp = NULL; 1710eda14cbcSMatt Macy if (err == 0) { 1711eda14cbcSMatt Macy err = zfs_destroy_snaps_nvl(g_zfs, 1712eda14cbcSMatt Macy cb.cb_batchedsnaps, cb.cb_defer_destroy); 1713eda14cbcSMatt Macy } 1714eda14cbcSMatt Macy if (err != 0 || cb.cb_error == B_TRUE) 1715eda14cbcSMatt Macy rv = 1; 1716eda14cbcSMatt Macy } 1717eda14cbcSMatt Macy 1718eda14cbcSMatt Macy out: 1719eda14cbcSMatt Macy fnvlist_free(cb.cb_batchedsnaps); 1720eda14cbcSMatt Macy fnvlist_free(cb.cb_nvl); 1721eda14cbcSMatt Macy if (zhp != NULL) 1722eda14cbcSMatt Macy zfs_close(zhp); 1723eda14cbcSMatt Macy return (rv); 1724eda14cbcSMatt Macy } 1725eda14cbcSMatt Macy 1726eda14cbcSMatt Macy static boolean_t 1727eda14cbcSMatt Macy is_recvd_column(zprop_get_cbdata_t *cbp) 1728eda14cbcSMatt Macy { 1729eda14cbcSMatt Macy int i; 1730eda14cbcSMatt Macy zfs_get_column_t col; 1731eda14cbcSMatt Macy 1732eda14cbcSMatt Macy for (i = 0; i < ZFS_GET_NCOLS && 1733eda14cbcSMatt Macy (col = cbp->cb_columns[i]) != GET_COL_NONE; i++) 1734eda14cbcSMatt Macy if (col == GET_COL_RECVD) 1735eda14cbcSMatt Macy return (B_TRUE); 1736eda14cbcSMatt Macy return (B_FALSE); 1737eda14cbcSMatt Macy } 1738eda14cbcSMatt Macy 1739eda14cbcSMatt Macy /* 1740eda14cbcSMatt Macy * zfs get [-rHp] [-o all | field[,field]...] [-s source[,source]...] 1741eda14cbcSMatt Macy * < all | property[,property]... > < fs | snap | vol > ... 1742eda14cbcSMatt Macy * 1743eda14cbcSMatt Macy * -r recurse over any child datasets 1744eda14cbcSMatt Macy * -H scripted mode. Headers are stripped, and fields are separated 1745eda14cbcSMatt Macy * by tabs instead of spaces. 1746eda14cbcSMatt Macy * -o Set of fields to display. One of "name,property,value, 1747eda14cbcSMatt Macy * received,source". Default is "name,property,value,source". 1748eda14cbcSMatt Macy * "all" is an alias for all five. 1749eda14cbcSMatt Macy * -s Set of sources to allow. One of 1750eda14cbcSMatt Macy * "local,default,inherited,received,temporary,none". Default is 1751eda14cbcSMatt Macy * all six. 1752eda14cbcSMatt Macy * -p Display values in parsable (literal) format. 1753eda14cbcSMatt Macy * 1754eda14cbcSMatt Macy * Prints properties for the given datasets. The user can control which 1755eda14cbcSMatt Macy * columns to display as well as which property types to allow. 1756eda14cbcSMatt Macy */ 1757eda14cbcSMatt Macy 1758eda14cbcSMatt Macy /* 1759eda14cbcSMatt Macy * Invoked to display the properties for a single dataset. 1760eda14cbcSMatt Macy */ 1761eda14cbcSMatt Macy static int 1762eda14cbcSMatt Macy get_callback(zfs_handle_t *zhp, void *data) 1763eda14cbcSMatt Macy { 1764eda14cbcSMatt Macy char buf[ZFS_MAXPROPLEN]; 1765eda14cbcSMatt Macy char rbuf[ZFS_MAXPROPLEN]; 1766eda14cbcSMatt Macy zprop_source_t sourcetype; 1767eda14cbcSMatt Macy char source[ZFS_MAX_DATASET_NAME_LEN]; 1768eda14cbcSMatt Macy zprop_get_cbdata_t *cbp = data; 1769eda14cbcSMatt Macy nvlist_t *user_props = zfs_get_user_props(zhp); 1770eda14cbcSMatt Macy zprop_list_t *pl = cbp->cb_proplist; 1771eda14cbcSMatt Macy nvlist_t *propval; 1772eda14cbcSMatt Macy char *strval; 1773eda14cbcSMatt Macy char *sourceval; 1774eda14cbcSMatt Macy boolean_t received = is_recvd_column(cbp); 1775eda14cbcSMatt Macy 1776eda14cbcSMatt Macy for (; pl != NULL; pl = pl->pl_next) { 1777eda14cbcSMatt Macy char *recvdval = NULL; 1778eda14cbcSMatt Macy /* 1779eda14cbcSMatt Macy * Skip the special fake placeholder. This will also skip over 1780eda14cbcSMatt Macy * the name property when 'all' is specified. 1781eda14cbcSMatt Macy */ 1782eda14cbcSMatt Macy if (pl->pl_prop == ZFS_PROP_NAME && 1783eda14cbcSMatt Macy pl == cbp->cb_proplist) 1784eda14cbcSMatt Macy continue; 1785eda14cbcSMatt Macy 1786eda14cbcSMatt Macy if (pl->pl_prop != ZPROP_INVAL) { 1787eda14cbcSMatt Macy if (zfs_prop_get(zhp, pl->pl_prop, buf, 1788eda14cbcSMatt Macy sizeof (buf), &sourcetype, source, 1789eda14cbcSMatt Macy sizeof (source), 1790eda14cbcSMatt Macy cbp->cb_literal) != 0) { 1791eda14cbcSMatt Macy if (pl->pl_all) 1792eda14cbcSMatt Macy continue; 1793eda14cbcSMatt Macy if (!zfs_prop_valid_for_type(pl->pl_prop, 1794eda14cbcSMatt Macy ZFS_TYPE_DATASET, B_FALSE)) { 1795eda14cbcSMatt Macy (void) fprintf(stderr, 1796eda14cbcSMatt Macy gettext("No such property '%s'\n"), 1797eda14cbcSMatt Macy zfs_prop_to_name(pl->pl_prop)); 1798eda14cbcSMatt Macy continue; 1799eda14cbcSMatt Macy } 1800eda14cbcSMatt Macy sourcetype = ZPROP_SRC_NONE; 1801eda14cbcSMatt Macy (void) strlcpy(buf, "-", sizeof (buf)); 1802eda14cbcSMatt Macy } 1803eda14cbcSMatt Macy 1804eda14cbcSMatt Macy if (received && (zfs_prop_get_recvd(zhp, 1805eda14cbcSMatt Macy zfs_prop_to_name(pl->pl_prop), rbuf, sizeof (rbuf), 1806eda14cbcSMatt Macy cbp->cb_literal) == 0)) 1807eda14cbcSMatt Macy recvdval = rbuf; 1808eda14cbcSMatt Macy 1809eda14cbcSMatt Macy zprop_print_one_property(zfs_get_name(zhp), cbp, 1810eda14cbcSMatt Macy zfs_prop_to_name(pl->pl_prop), 1811eda14cbcSMatt Macy buf, sourcetype, source, recvdval); 1812eda14cbcSMatt Macy } else if (zfs_prop_userquota(pl->pl_user_prop)) { 1813eda14cbcSMatt Macy sourcetype = ZPROP_SRC_LOCAL; 1814eda14cbcSMatt Macy 1815eda14cbcSMatt Macy if (zfs_prop_get_userquota(zhp, pl->pl_user_prop, 1816eda14cbcSMatt Macy buf, sizeof (buf), cbp->cb_literal) != 0) { 1817eda14cbcSMatt Macy sourcetype = ZPROP_SRC_NONE; 1818eda14cbcSMatt Macy (void) strlcpy(buf, "-", sizeof (buf)); 1819eda14cbcSMatt Macy } 1820eda14cbcSMatt Macy 1821eda14cbcSMatt Macy zprop_print_one_property(zfs_get_name(zhp), cbp, 1822eda14cbcSMatt Macy pl->pl_user_prop, buf, sourcetype, source, NULL); 1823eda14cbcSMatt Macy } else if (zfs_prop_written(pl->pl_user_prop)) { 1824eda14cbcSMatt Macy sourcetype = ZPROP_SRC_LOCAL; 1825eda14cbcSMatt Macy 1826eda14cbcSMatt Macy if (zfs_prop_get_written(zhp, pl->pl_user_prop, 1827eda14cbcSMatt Macy buf, sizeof (buf), cbp->cb_literal) != 0) { 1828eda14cbcSMatt Macy sourcetype = ZPROP_SRC_NONE; 1829eda14cbcSMatt Macy (void) strlcpy(buf, "-", sizeof (buf)); 1830eda14cbcSMatt Macy } 1831eda14cbcSMatt Macy 1832eda14cbcSMatt Macy zprop_print_one_property(zfs_get_name(zhp), cbp, 1833eda14cbcSMatt Macy pl->pl_user_prop, buf, sourcetype, source, NULL); 1834eda14cbcSMatt Macy } else { 1835eda14cbcSMatt Macy if (nvlist_lookup_nvlist(user_props, 1836eda14cbcSMatt Macy pl->pl_user_prop, &propval) != 0) { 1837eda14cbcSMatt Macy if (pl->pl_all) 1838eda14cbcSMatt Macy continue; 1839eda14cbcSMatt Macy sourcetype = ZPROP_SRC_NONE; 1840eda14cbcSMatt Macy strval = "-"; 1841eda14cbcSMatt Macy } else { 1842eda14cbcSMatt Macy verify(nvlist_lookup_string(propval, 1843eda14cbcSMatt Macy ZPROP_VALUE, &strval) == 0); 1844eda14cbcSMatt Macy verify(nvlist_lookup_string(propval, 1845eda14cbcSMatt Macy ZPROP_SOURCE, &sourceval) == 0); 1846eda14cbcSMatt Macy 1847eda14cbcSMatt Macy if (strcmp(sourceval, 1848eda14cbcSMatt Macy zfs_get_name(zhp)) == 0) { 1849eda14cbcSMatt Macy sourcetype = ZPROP_SRC_LOCAL; 1850eda14cbcSMatt Macy } else if (strcmp(sourceval, 1851eda14cbcSMatt Macy ZPROP_SOURCE_VAL_RECVD) == 0) { 1852eda14cbcSMatt Macy sourcetype = ZPROP_SRC_RECEIVED; 1853eda14cbcSMatt Macy } else { 1854eda14cbcSMatt Macy sourcetype = ZPROP_SRC_INHERITED; 1855eda14cbcSMatt Macy (void) strlcpy(source, 1856eda14cbcSMatt Macy sourceval, sizeof (source)); 1857eda14cbcSMatt Macy } 1858eda14cbcSMatt Macy } 1859eda14cbcSMatt Macy 1860eda14cbcSMatt Macy if (received && (zfs_prop_get_recvd(zhp, 1861eda14cbcSMatt Macy pl->pl_user_prop, rbuf, sizeof (rbuf), 1862eda14cbcSMatt Macy cbp->cb_literal) == 0)) 1863eda14cbcSMatt Macy recvdval = rbuf; 1864eda14cbcSMatt Macy 1865eda14cbcSMatt Macy zprop_print_one_property(zfs_get_name(zhp), cbp, 1866eda14cbcSMatt Macy pl->pl_user_prop, strval, sourcetype, 1867eda14cbcSMatt Macy source, recvdval); 1868eda14cbcSMatt Macy } 1869eda14cbcSMatt Macy } 1870eda14cbcSMatt Macy 1871eda14cbcSMatt Macy return (0); 1872eda14cbcSMatt Macy } 1873eda14cbcSMatt Macy 1874eda14cbcSMatt Macy static int 1875eda14cbcSMatt Macy zfs_do_get(int argc, char **argv) 1876eda14cbcSMatt Macy { 1877eda14cbcSMatt Macy zprop_get_cbdata_t cb = { 0 }; 1878eda14cbcSMatt Macy int i, c, flags = ZFS_ITER_ARGS_CAN_BE_PATHS; 1879eda14cbcSMatt Macy int types = ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK; 1880eda14cbcSMatt Macy char *value, *fields; 1881eda14cbcSMatt Macy int ret = 0; 1882eda14cbcSMatt Macy int limit = 0; 1883eda14cbcSMatt Macy zprop_list_t fake_name = { 0 }; 1884eda14cbcSMatt Macy 1885eda14cbcSMatt Macy /* 1886eda14cbcSMatt Macy * Set up default columns and sources. 1887eda14cbcSMatt Macy */ 1888eda14cbcSMatt Macy cb.cb_sources = ZPROP_SRC_ALL; 1889eda14cbcSMatt Macy cb.cb_columns[0] = GET_COL_NAME; 1890eda14cbcSMatt Macy cb.cb_columns[1] = GET_COL_PROPERTY; 1891eda14cbcSMatt Macy cb.cb_columns[2] = GET_COL_VALUE; 1892eda14cbcSMatt Macy cb.cb_columns[3] = GET_COL_SOURCE; 1893eda14cbcSMatt Macy cb.cb_type = ZFS_TYPE_DATASET; 1894eda14cbcSMatt Macy 1895eda14cbcSMatt Macy /* check options */ 1896eda14cbcSMatt Macy while ((c = getopt(argc, argv, ":d:o:s:rt:Hp")) != -1) { 1897eda14cbcSMatt Macy switch (c) { 1898eda14cbcSMatt Macy case 'p': 1899eda14cbcSMatt Macy cb.cb_literal = B_TRUE; 1900eda14cbcSMatt Macy break; 1901eda14cbcSMatt Macy case 'd': 1902eda14cbcSMatt Macy limit = parse_depth(optarg, &flags); 1903eda14cbcSMatt Macy break; 1904eda14cbcSMatt Macy case 'r': 1905eda14cbcSMatt Macy flags |= ZFS_ITER_RECURSE; 1906eda14cbcSMatt Macy break; 1907eda14cbcSMatt Macy case 'H': 1908eda14cbcSMatt Macy cb.cb_scripted = B_TRUE; 1909eda14cbcSMatt Macy break; 1910eda14cbcSMatt Macy case ':': 1911eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing argument for " 1912eda14cbcSMatt Macy "'%c' option\n"), optopt); 1913eda14cbcSMatt Macy usage(B_FALSE); 1914eda14cbcSMatt Macy break; 1915eda14cbcSMatt Macy case 'o': 1916eda14cbcSMatt Macy /* 1917eda14cbcSMatt Macy * Process the set of columns to display. We zero out 1918eda14cbcSMatt Macy * the structure to give us a blank slate. 1919eda14cbcSMatt Macy */ 1920eda14cbcSMatt Macy bzero(&cb.cb_columns, sizeof (cb.cb_columns)); 1921eda14cbcSMatt Macy i = 0; 1922eda14cbcSMatt Macy while (*optarg != '\0') { 1923eda14cbcSMatt Macy static char *col_subopts[] = 1924eda14cbcSMatt Macy { "name", "property", "value", "received", 1925eda14cbcSMatt Macy "source", "all", NULL }; 1926eda14cbcSMatt Macy 1927eda14cbcSMatt Macy if (i == ZFS_GET_NCOLS) { 1928eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too " 1929eda14cbcSMatt Macy "many fields given to -o " 1930eda14cbcSMatt Macy "option\n")); 1931eda14cbcSMatt Macy usage(B_FALSE); 1932eda14cbcSMatt Macy } 1933eda14cbcSMatt Macy 1934eda14cbcSMatt Macy switch (getsubopt(&optarg, col_subopts, 1935eda14cbcSMatt Macy &value)) { 1936eda14cbcSMatt Macy case 0: 1937eda14cbcSMatt Macy cb.cb_columns[i++] = GET_COL_NAME; 1938eda14cbcSMatt Macy break; 1939eda14cbcSMatt Macy case 1: 1940eda14cbcSMatt Macy cb.cb_columns[i++] = GET_COL_PROPERTY; 1941eda14cbcSMatt Macy break; 1942eda14cbcSMatt Macy case 2: 1943eda14cbcSMatt Macy cb.cb_columns[i++] = GET_COL_VALUE; 1944eda14cbcSMatt Macy break; 1945eda14cbcSMatt Macy case 3: 1946eda14cbcSMatt Macy cb.cb_columns[i++] = GET_COL_RECVD; 1947eda14cbcSMatt Macy flags |= ZFS_ITER_RECVD_PROPS; 1948eda14cbcSMatt Macy break; 1949eda14cbcSMatt Macy case 4: 1950eda14cbcSMatt Macy cb.cb_columns[i++] = GET_COL_SOURCE; 1951eda14cbcSMatt Macy break; 1952eda14cbcSMatt Macy case 5: 1953eda14cbcSMatt Macy if (i > 0) { 1954eda14cbcSMatt Macy (void) fprintf(stderr, 1955eda14cbcSMatt Macy gettext("\"all\" conflicts " 1956eda14cbcSMatt Macy "with specific fields " 1957eda14cbcSMatt Macy "given to -o option\n")); 1958eda14cbcSMatt Macy usage(B_FALSE); 1959eda14cbcSMatt Macy } 1960eda14cbcSMatt Macy cb.cb_columns[0] = GET_COL_NAME; 1961eda14cbcSMatt Macy cb.cb_columns[1] = GET_COL_PROPERTY; 1962eda14cbcSMatt Macy cb.cb_columns[2] = GET_COL_VALUE; 1963eda14cbcSMatt Macy cb.cb_columns[3] = GET_COL_RECVD; 1964eda14cbcSMatt Macy cb.cb_columns[4] = GET_COL_SOURCE; 1965eda14cbcSMatt Macy flags |= ZFS_ITER_RECVD_PROPS; 1966eda14cbcSMatt Macy i = ZFS_GET_NCOLS; 1967eda14cbcSMatt Macy break; 1968eda14cbcSMatt Macy default: 1969eda14cbcSMatt Macy (void) fprintf(stderr, 1970eda14cbcSMatt Macy gettext("invalid column name " 1971eda14cbcSMatt Macy "'%s'\n"), value); 1972eda14cbcSMatt Macy usage(B_FALSE); 1973eda14cbcSMatt Macy } 1974eda14cbcSMatt Macy } 1975eda14cbcSMatt Macy break; 1976eda14cbcSMatt Macy 1977eda14cbcSMatt Macy case 's': 1978eda14cbcSMatt Macy cb.cb_sources = 0; 1979eda14cbcSMatt Macy while (*optarg != '\0') { 1980eda14cbcSMatt Macy static char *source_subopts[] = { 1981eda14cbcSMatt Macy "local", "default", "inherited", 1982eda14cbcSMatt Macy "received", "temporary", "none", 1983eda14cbcSMatt Macy NULL }; 1984eda14cbcSMatt Macy 1985eda14cbcSMatt Macy switch (getsubopt(&optarg, source_subopts, 1986eda14cbcSMatt Macy &value)) { 1987eda14cbcSMatt Macy case 0: 1988eda14cbcSMatt Macy cb.cb_sources |= ZPROP_SRC_LOCAL; 1989eda14cbcSMatt Macy break; 1990eda14cbcSMatt Macy case 1: 1991eda14cbcSMatt Macy cb.cb_sources |= ZPROP_SRC_DEFAULT; 1992eda14cbcSMatt Macy break; 1993eda14cbcSMatt Macy case 2: 1994eda14cbcSMatt Macy cb.cb_sources |= ZPROP_SRC_INHERITED; 1995eda14cbcSMatt Macy break; 1996eda14cbcSMatt Macy case 3: 1997eda14cbcSMatt Macy cb.cb_sources |= ZPROP_SRC_RECEIVED; 1998eda14cbcSMatt Macy break; 1999eda14cbcSMatt Macy case 4: 2000eda14cbcSMatt Macy cb.cb_sources |= ZPROP_SRC_TEMPORARY; 2001eda14cbcSMatt Macy break; 2002eda14cbcSMatt Macy case 5: 2003eda14cbcSMatt Macy cb.cb_sources |= ZPROP_SRC_NONE; 2004eda14cbcSMatt Macy break; 2005eda14cbcSMatt Macy default: 2006eda14cbcSMatt Macy (void) fprintf(stderr, 2007eda14cbcSMatt Macy gettext("invalid source " 2008eda14cbcSMatt Macy "'%s'\n"), value); 2009eda14cbcSMatt Macy usage(B_FALSE); 2010eda14cbcSMatt Macy } 2011eda14cbcSMatt Macy } 2012eda14cbcSMatt Macy break; 2013eda14cbcSMatt Macy 2014eda14cbcSMatt Macy case 't': 2015eda14cbcSMatt Macy types = 0; 2016eda14cbcSMatt Macy flags &= ~ZFS_ITER_PROP_LISTSNAPS; 2017eda14cbcSMatt Macy while (*optarg != '\0') { 2018eda14cbcSMatt Macy static char *type_subopts[] = { "filesystem", 2019eda14cbcSMatt Macy "volume", "snapshot", "snap", "bookmark", 2020eda14cbcSMatt Macy "all", NULL }; 2021eda14cbcSMatt Macy 2022eda14cbcSMatt Macy switch (getsubopt(&optarg, type_subopts, 2023eda14cbcSMatt Macy &value)) { 2024eda14cbcSMatt Macy case 0: 2025eda14cbcSMatt Macy types |= ZFS_TYPE_FILESYSTEM; 2026eda14cbcSMatt Macy break; 2027eda14cbcSMatt Macy case 1: 2028eda14cbcSMatt Macy types |= ZFS_TYPE_VOLUME; 2029eda14cbcSMatt Macy break; 2030eda14cbcSMatt Macy case 2: 2031eda14cbcSMatt Macy case 3: 2032eda14cbcSMatt Macy types |= ZFS_TYPE_SNAPSHOT; 2033eda14cbcSMatt Macy break; 2034eda14cbcSMatt Macy case 4: 2035eda14cbcSMatt Macy types |= ZFS_TYPE_BOOKMARK; 2036eda14cbcSMatt Macy break; 2037eda14cbcSMatt Macy case 5: 2038eda14cbcSMatt Macy types = ZFS_TYPE_DATASET | 2039eda14cbcSMatt Macy ZFS_TYPE_BOOKMARK; 2040eda14cbcSMatt Macy break; 2041eda14cbcSMatt Macy 2042eda14cbcSMatt Macy default: 2043eda14cbcSMatt Macy (void) fprintf(stderr, 2044eda14cbcSMatt Macy gettext("invalid type '%s'\n"), 2045eda14cbcSMatt Macy value); 2046eda14cbcSMatt Macy usage(B_FALSE); 2047eda14cbcSMatt Macy } 2048eda14cbcSMatt Macy } 2049eda14cbcSMatt Macy break; 2050eda14cbcSMatt Macy 2051eda14cbcSMatt Macy case '?': 2052eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 2053eda14cbcSMatt Macy optopt); 2054eda14cbcSMatt Macy usage(B_FALSE); 2055eda14cbcSMatt Macy } 2056eda14cbcSMatt Macy } 2057eda14cbcSMatt Macy 2058eda14cbcSMatt Macy argc -= optind; 2059eda14cbcSMatt Macy argv += optind; 2060eda14cbcSMatt Macy 2061eda14cbcSMatt Macy if (argc < 1) { 2062eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing property " 2063eda14cbcSMatt Macy "argument\n")); 2064eda14cbcSMatt Macy usage(B_FALSE); 2065eda14cbcSMatt Macy } 2066eda14cbcSMatt Macy 2067eda14cbcSMatt Macy fields = argv[0]; 2068eda14cbcSMatt Macy 2069eda14cbcSMatt Macy /* 2070eda14cbcSMatt Macy * Handle users who want to get all snapshots or bookmarks 2071eda14cbcSMatt Macy * of a dataset (ex. 'zfs get -t snapshot refer <dataset>'). 2072eda14cbcSMatt Macy */ 2073eda14cbcSMatt Macy if ((types == ZFS_TYPE_SNAPSHOT || types == ZFS_TYPE_BOOKMARK) && 2074eda14cbcSMatt Macy argc > 1 && (flags & ZFS_ITER_RECURSE) == 0 && limit == 0) { 2075eda14cbcSMatt Macy flags |= (ZFS_ITER_DEPTH_LIMIT | ZFS_ITER_RECURSE); 2076eda14cbcSMatt Macy limit = 1; 2077eda14cbcSMatt Macy } 2078eda14cbcSMatt Macy 2079eda14cbcSMatt Macy if (zprop_get_list(g_zfs, fields, &cb.cb_proplist, ZFS_TYPE_DATASET) 2080eda14cbcSMatt Macy != 0) 2081eda14cbcSMatt Macy usage(B_FALSE); 2082eda14cbcSMatt Macy 2083eda14cbcSMatt Macy argc--; 2084eda14cbcSMatt Macy argv++; 2085eda14cbcSMatt Macy 2086eda14cbcSMatt Macy /* 2087eda14cbcSMatt Macy * As part of zfs_expand_proplist(), we keep track of the maximum column 2088eda14cbcSMatt Macy * width for each property. For the 'NAME' (and 'SOURCE') columns, we 2089eda14cbcSMatt Macy * need to know the maximum name length. However, the user likely did 2090eda14cbcSMatt Macy * not specify 'name' as one of the properties to fetch, so we need to 2091eda14cbcSMatt Macy * make sure we always include at least this property for 2092eda14cbcSMatt Macy * print_get_headers() to work properly. 2093eda14cbcSMatt Macy */ 2094eda14cbcSMatt Macy if (cb.cb_proplist != NULL) { 2095eda14cbcSMatt Macy fake_name.pl_prop = ZFS_PROP_NAME; 2096eda14cbcSMatt Macy fake_name.pl_width = strlen(gettext("NAME")); 2097eda14cbcSMatt Macy fake_name.pl_next = cb.cb_proplist; 2098eda14cbcSMatt Macy cb.cb_proplist = &fake_name; 2099eda14cbcSMatt Macy } 2100eda14cbcSMatt Macy 2101eda14cbcSMatt Macy cb.cb_first = B_TRUE; 2102eda14cbcSMatt Macy 2103eda14cbcSMatt Macy /* run for each object */ 2104eda14cbcSMatt Macy ret = zfs_for_each(argc, argv, flags, types, NULL, 2105eda14cbcSMatt Macy &cb.cb_proplist, limit, get_callback, &cb); 2106eda14cbcSMatt Macy 2107eda14cbcSMatt Macy if (cb.cb_proplist == &fake_name) 2108eda14cbcSMatt Macy zprop_free_list(fake_name.pl_next); 2109eda14cbcSMatt Macy else 2110eda14cbcSMatt Macy zprop_free_list(cb.cb_proplist); 2111eda14cbcSMatt Macy 2112eda14cbcSMatt Macy return (ret); 2113eda14cbcSMatt Macy } 2114eda14cbcSMatt Macy 2115eda14cbcSMatt Macy /* 2116eda14cbcSMatt Macy * inherit [-rS] <property> <fs|vol> ... 2117eda14cbcSMatt Macy * 2118eda14cbcSMatt Macy * -r Recurse over all children 2119eda14cbcSMatt Macy * -S Revert to received value, if any 2120eda14cbcSMatt Macy * 2121eda14cbcSMatt Macy * For each dataset specified on the command line, inherit the given property 2122eda14cbcSMatt Macy * from its parent. Inheriting a property at the pool level will cause it to 2123eda14cbcSMatt Macy * use the default value. The '-r' flag will recurse over all children, and is 2124eda14cbcSMatt Macy * useful for setting a property on a hierarchy-wide basis, regardless of any 2125eda14cbcSMatt Macy * local modifications for each dataset. 2126eda14cbcSMatt Macy */ 2127eda14cbcSMatt Macy 2128eda14cbcSMatt Macy typedef struct inherit_cbdata { 2129eda14cbcSMatt Macy const char *cb_propname; 2130eda14cbcSMatt Macy boolean_t cb_received; 2131eda14cbcSMatt Macy } inherit_cbdata_t; 2132eda14cbcSMatt Macy 2133eda14cbcSMatt Macy static int 2134eda14cbcSMatt Macy inherit_recurse_cb(zfs_handle_t *zhp, void *data) 2135eda14cbcSMatt Macy { 2136eda14cbcSMatt Macy inherit_cbdata_t *cb = data; 2137eda14cbcSMatt Macy zfs_prop_t prop = zfs_name_to_prop(cb->cb_propname); 2138eda14cbcSMatt Macy 2139eda14cbcSMatt Macy /* 2140eda14cbcSMatt Macy * If we're doing it recursively, then ignore properties that 2141eda14cbcSMatt Macy * are not valid for this type of dataset. 2142eda14cbcSMatt Macy */ 2143eda14cbcSMatt Macy if (prop != ZPROP_INVAL && 2144eda14cbcSMatt Macy !zfs_prop_valid_for_type(prop, zfs_get_type(zhp), B_FALSE)) 2145eda14cbcSMatt Macy return (0); 2146eda14cbcSMatt Macy 2147eda14cbcSMatt Macy return (zfs_prop_inherit(zhp, cb->cb_propname, cb->cb_received) != 0); 2148eda14cbcSMatt Macy } 2149eda14cbcSMatt Macy 2150eda14cbcSMatt Macy static int 2151eda14cbcSMatt Macy inherit_cb(zfs_handle_t *zhp, void *data) 2152eda14cbcSMatt Macy { 2153eda14cbcSMatt Macy inherit_cbdata_t *cb = data; 2154eda14cbcSMatt Macy 2155eda14cbcSMatt Macy return (zfs_prop_inherit(zhp, cb->cb_propname, cb->cb_received) != 0); 2156eda14cbcSMatt Macy } 2157eda14cbcSMatt Macy 2158eda14cbcSMatt Macy static int 2159eda14cbcSMatt Macy zfs_do_inherit(int argc, char **argv) 2160eda14cbcSMatt Macy { 2161eda14cbcSMatt Macy int c; 2162eda14cbcSMatt Macy zfs_prop_t prop; 2163eda14cbcSMatt Macy inherit_cbdata_t cb = { 0 }; 2164eda14cbcSMatt Macy char *propname; 2165eda14cbcSMatt Macy int ret = 0; 2166eda14cbcSMatt Macy int flags = 0; 2167eda14cbcSMatt Macy boolean_t received = B_FALSE; 2168eda14cbcSMatt Macy 2169eda14cbcSMatt Macy /* check options */ 2170eda14cbcSMatt Macy while ((c = getopt(argc, argv, "rS")) != -1) { 2171eda14cbcSMatt Macy switch (c) { 2172eda14cbcSMatt Macy case 'r': 2173eda14cbcSMatt Macy flags |= ZFS_ITER_RECURSE; 2174eda14cbcSMatt Macy break; 2175eda14cbcSMatt Macy case 'S': 2176eda14cbcSMatt Macy received = B_TRUE; 2177eda14cbcSMatt Macy break; 2178eda14cbcSMatt Macy case '?': 2179eda14cbcSMatt Macy default: 2180eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 2181eda14cbcSMatt Macy optopt); 2182eda14cbcSMatt Macy usage(B_FALSE); 2183eda14cbcSMatt Macy } 2184eda14cbcSMatt Macy } 2185eda14cbcSMatt Macy 2186eda14cbcSMatt Macy argc -= optind; 2187eda14cbcSMatt Macy argv += optind; 2188eda14cbcSMatt Macy 2189eda14cbcSMatt Macy /* check number of arguments */ 2190eda14cbcSMatt Macy if (argc < 1) { 2191eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing property argument\n")); 2192eda14cbcSMatt Macy usage(B_FALSE); 2193eda14cbcSMatt Macy } 2194eda14cbcSMatt Macy if (argc < 2) { 2195eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing dataset argument\n")); 2196eda14cbcSMatt Macy usage(B_FALSE); 2197eda14cbcSMatt Macy } 2198eda14cbcSMatt Macy 2199eda14cbcSMatt Macy propname = argv[0]; 2200eda14cbcSMatt Macy argc--; 2201eda14cbcSMatt Macy argv++; 2202eda14cbcSMatt Macy 2203eda14cbcSMatt Macy if ((prop = zfs_name_to_prop(propname)) != ZPROP_INVAL) { 2204eda14cbcSMatt Macy if (zfs_prop_readonly(prop)) { 2205eda14cbcSMatt Macy (void) fprintf(stderr, gettext( 2206eda14cbcSMatt Macy "%s property is read-only\n"), 2207eda14cbcSMatt Macy propname); 2208eda14cbcSMatt Macy return (1); 2209eda14cbcSMatt Macy } 2210eda14cbcSMatt Macy if (!zfs_prop_inheritable(prop) && !received) { 2211eda14cbcSMatt Macy (void) fprintf(stderr, gettext("'%s' property cannot " 2212eda14cbcSMatt Macy "be inherited\n"), propname); 2213eda14cbcSMatt Macy if (prop == ZFS_PROP_QUOTA || 2214eda14cbcSMatt Macy prop == ZFS_PROP_RESERVATION || 2215eda14cbcSMatt Macy prop == ZFS_PROP_REFQUOTA || 2216eda14cbcSMatt Macy prop == ZFS_PROP_REFRESERVATION) { 2217eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use 'zfs set " 2218eda14cbcSMatt Macy "%s=none' to clear\n"), propname); 2219eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use 'zfs " 2220eda14cbcSMatt Macy "inherit -S %s' to revert to received " 2221eda14cbcSMatt Macy "value\n"), propname); 2222eda14cbcSMatt Macy } 2223eda14cbcSMatt Macy return (1); 2224eda14cbcSMatt Macy } 2225eda14cbcSMatt Macy if (received && (prop == ZFS_PROP_VOLSIZE || 2226eda14cbcSMatt Macy prop == ZFS_PROP_VERSION)) { 2227eda14cbcSMatt Macy (void) fprintf(stderr, gettext("'%s' property cannot " 2228eda14cbcSMatt Macy "be reverted to a received value\n"), propname); 2229eda14cbcSMatt Macy return (1); 2230eda14cbcSMatt Macy } 2231eda14cbcSMatt Macy } else if (!zfs_prop_user(propname)) { 2232eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid property '%s'\n"), 2233eda14cbcSMatt Macy propname); 2234eda14cbcSMatt Macy usage(B_FALSE); 2235eda14cbcSMatt Macy } 2236eda14cbcSMatt Macy 2237eda14cbcSMatt Macy cb.cb_propname = propname; 2238eda14cbcSMatt Macy cb.cb_received = received; 2239eda14cbcSMatt Macy 2240eda14cbcSMatt Macy if (flags & ZFS_ITER_RECURSE) { 2241eda14cbcSMatt Macy ret = zfs_for_each(argc, argv, flags, ZFS_TYPE_DATASET, 2242eda14cbcSMatt Macy NULL, NULL, 0, inherit_recurse_cb, &cb); 2243eda14cbcSMatt Macy } else { 2244eda14cbcSMatt Macy ret = zfs_for_each(argc, argv, flags, ZFS_TYPE_DATASET, 2245eda14cbcSMatt Macy NULL, NULL, 0, inherit_cb, &cb); 2246eda14cbcSMatt Macy } 2247eda14cbcSMatt Macy 2248eda14cbcSMatt Macy return (ret); 2249eda14cbcSMatt Macy } 2250eda14cbcSMatt Macy 2251eda14cbcSMatt Macy typedef struct upgrade_cbdata { 2252eda14cbcSMatt Macy uint64_t cb_numupgraded; 2253eda14cbcSMatt Macy uint64_t cb_numsamegraded; 2254eda14cbcSMatt Macy uint64_t cb_numfailed; 2255eda14cbcSMatt Macy uint64_t cb_version; 2256eda14cbcSMatt Macy boolean_t cb_newer; 2257eda14cbcSMatt Macy boolean_t cb_foundone; 2258eda14cbcSMatt Macy char cb_lastfs[ZFS_MAX_DATASET_NAME_LEN]; 2259eda14cbcSMatt Macy } upgrade_cbdata_t; 2260eda14cbcSMatt Macy 2261eda14cbcSMatt Macy static int 2262eda14cbcSMatt Macy same_pool(zfs_handle_t *zhp, const char *name) 2263eda14cbcSMatt Macy { 2264eda14cbcSMatt Macy int len1 = strcspn(name, "/@"); 2265eda14cbcSMatt Macy const char *zhname = zfs_get_name(zhp); 2266eda14cbcSMatt Macy int len2 = strcspn(zhname, "/@"); 2267eda14cbcSMatt Macy 2268eda14cbcSMatt Macy if (len1 != len2) 2269eda14cbcSMatt Macy return (B_FALSE); 2270eda14cbcSMatt Macy return (strncmp(name, zhname, len1) == 0); 2271eda14cbcSMatt Macy } 2272eda14cbcSMatt Macy 2273eda14cbcSMatt Macy static int 2274eda14cbcSMatt Macy upgrade_list_callback(zfs_handle_t *zhp, void *data) 2275eda14cbcSMatt Macy { 2276eda14cbcSMatt Macy upgrade_cbdata_t *cb = data; 2277eda14cbcSMatt Macy int version = zfs_prop_get_int(zhp, ZFS_PROP_VERSION); 2278eda14cbcSMatt Macy 2279eda14cbcSMatt Macy /* list if it's old/new */ 2280eda14cbcSMatt Macy if ((!cb->cb_newer && version < ZPL_VERSION) || 2281eda14cbcSMatt Macy (cb->cb_newer && version > ZPL_VERSION)) { 2282eda14cbcSMatt Macy char *str; 2283eda14cbcSMatt Macy if (cb->cb_newer) { 2284eda14cbcSMatt Macy str = gettext("The following filesystems are " 2285eda14cbcSMatt Macy "formatted using a newer software version and\n" 2286eda14cbcSMatt Macy "cannot be accessed on the current system.\n\n"); 2287eda14cbcSMatt Macy } else { 2288eda14cbcSMatt Macy str = gettext("The following filesystems are " 2289eda14cbcSMatt Macy "out of date, and can be upgraded. After being\n" 2290eda14cbcSMatt Macy "upgraded, these filesystems (and any 'zfs send' " 2291eda14cbcSMatt Macy "streams generated from\n" 2292eda14cbcSMatt Macy "subsequent snapshots) will no longer be " 2293eda14cbcSMatt Macy "accessible by older software versions.\n\n"); 2294eda14cbcSMatt Macy } 2295eda14cbcSMatt Macy 2296eda14cbcSMatt Macy if (!cb->cb_foundone) { 2297eda14cbcSMatt Macy (void) puts(str); 2298eda14cbcSMatt Macy (void) printf(gettext("VER FILESYSTEM\n")); 2299eda14cbcSMatt Macy (void) printf(gettext("--- ------------\n")); 2300eda14cbcSMatt Macy cb->cb_foundone = B_TRUE; 2301eda14cbcSMatt Macy } 2302eda14cbcSMatt Macy 2303eda14cbcSMatt Macy (void) printf("%2u %s\n", version, zfs_get_name(zhp)); 2304eda14cbcSMatt Macy } 2305eda14cbcSMatt Macy 2306eda14cbcSMatt Macy return (0); 2307eda14cbcSMatt Macy } 2308eda14cbcSMatt Macy 2309eda14cbcSMatt Macy static int 2310eda14cbcSMatt Macy upgrade_set_callback(zfs_handle_t *zhp, void *data) 2311eda14cbcSMatt Macy { 2312eda14cbcSMatt Macy upgrade_cbdata_t *cb = data; 2313eda14cbcSMatt Macy int version = zfs_prop_get_int(zhp, ZFS_PROP_VERSION); 2314eda14cbcSMatt Macy int needed_spa_version; 2315eda14cbcSMatt Macy int spa_version; 2316eda14cbcSMatt Macy 2317eda14cbcSMatt Macy if (zfs_spa_version(zhp, &spa_version) < 0) 2318eda14cbcSMatt Macy return (-1); 2319eda14cbcSMatt Macy 2320eda14cbcSMatt Macy needed_spa_version = zfs_spa_version_map(cb->cb_version); 2321eda14cbcSMatt Macy 2322eda14cbcSMatt Macy if (needed_spa_version < 0) 2323eda14cbcSMatt Macy return (-1); 2324eda14cbcSMatt Macy 2325eda14cbcSMatt Macy if (spa_version < needed_spa_version) { 2326eda14cbcSMatt Macy /* can't upgrade */ 2327eda14cbcSMatt Macy (void) printf(gettext("%s: can not be " 2328eda14cbcSMatt Macy "upgraded; the pool version needs to first " 2329eda14cbcSMatt Macy "be upgraded\nto version %d\n\n"), 2330eda14cbcSMatt Macy zfs_get_name(zhp), needed_spa_version); 2331eda14cbcSMatt Macy cb->cb_numfailed++; 2332eda14cbcSMatt Macy return (0); 2333eda14cbcSMatt Macy } 2334eda14cbcSMatt Macy 2335eda14cbcSMatt Macy /* upgrade */ 2336eda14cbcSMatt Macy if (version < cb->cb_version) { 2337eda14cbcSMatt Macy char verstr[16]; 2338eda14cbcSMatt Macy (void) snprintf(verstr, sizeof (verstr), 2339eda14cbcSMatt Macy "%llu", (u_longlong_t)cb->cb_version); 2340eda14cbcSMatt Macy if (cb->cb_lastfs[0] && !same_pool(zhp, cb->cb_lastfs)) { 2341eda14cbcSMatt Macy /* 2342eda14cbcSMatt Macy * If they did "zfs upgrade -a", then we could 2343eda14cbcSMatt Macy * be doing ioctls to different pools. We need 2344eda14cbcSMatt Macy * to log this history once to each pool, and bypass 2345eda14cbcSMatt Macy * the normal history logging that happens in main(). 2346eda14cbcSMatt Macy */ 2347eda14cbcSMatt Macy (void) zpool_log_history(g_zfs, history_str); 2348eda14cbcSMatt Macy log_history = B_FALSE; 2349eda14cbcSMatt Macy } 2350eda14cbcSMatt Macy if (zfs_prop_set(zhp, "version", verstr) == 0) 2351eda14cbcSMatt Macy cb->cb_numupgraded++; 2352eda14cbcSMatt Macy else 2353eda14cbcSMatt Macy cb->cb_numfailed++; 2354eda14cbcSMatt Macy (void) strcpy(cb->cb_lastfs, zfs_get_name(zhp)); 2355eda14cbcSMatt Macy } else if (version > cb->cb_version) { 2356eda14cbcSMatt Macy /* can't downgrade */ 2357eda14cbcSMatt Macy (void) printf(gettext("%s: can not be downgraded; " 2358eda14cbcSMatt Macy "it is already at version %u\n"), 2359eda14cbcSMatt Macy zfs_get_name(zhp), version); 2360eda14cbcSMatt Macy cb->cb_numfailed++; 2361eda14cbcSMatt Macy } else { 2362eda14cbcSMatt Macy cb->cb_numsamegraded++; 2363eda14cbcSMatt Macy } 2364eda14cbcSMatt Macy return (0); 2365eda14cbcSMatt Macy } 2366eda14cbcSMatt Macy 2367eda14cbcSMatt Macy /* 2368eda14cbcSMatt Macy * zfs upgrade 2369eda14cbcSMatt Macy * zfs upgrade -v 2370eda14cbcSMatt Macy * zfs upgrade [-r] [-V <version>] <-a | filesystem> 2371eda14cbcSMatt Macy */ 2372eda14cbcSMatt Macy static int 2373eda14cbcSMatt Macy zfs_do_upgrade(int argc, char **argv) 2374eda14cbcSMatt Macy { 2375eda14cbcSMatt Macy boolean_t all = B_FALSE; 2376eda14cbcSMatt Macy boolean_t showversions = B_FALSE; 2377eda14cbcSMatt Macy int ret = 0; 2378eda14cbcSMatt Macy upgrade_cbdata_t cb = { 0 }; 2379eda14cbcSMatt Macy int c; 2380eda14cbcSMatt Macy int flags = ZFS_ITER_ARGS_CAN_BE_PATHS; 2381eda14cbcSMatt Macy 2382eda14cbcSMatt Macy /* check options */ 2383eda14cbcSMatt Macy while ((c = getopt(argc, argv, "rvV:a")) != -1) { 2384eda14cbcSMatt Macy switch (c) { 2385eda14cbcSMatt Macy case 'r': 2386eda14cbcSMatt Macy flags |= ZFS_ITER_RECURSE; 2387eda14cbcSMatt Macy break; 2388eda14cbcSMatt Macy case 'v': 2389eda14cbcSMatt Macy showversions = B_TRUE; 2390eda14cbcSMatt Macy break; 2391eda14cbcSMatt Macy case 'V': 2392eda14cbcSMatt Macy if (zfs_prop_string_to_index(ZFS_PROP_VERSION, 2393eda14cbcSMatt Macy optarg, &cb.cb_version) != 0) { 2394eda14cbcSMatt Macy (void) fprintf(stderr, 2395eda14cbcSMatt Macy gettext("invalid version %s\n"), optarg); 2396eda14cbcSMatt Macy usage(B_FALSE); 2397eda14cbcSMatt Macy } 2398eda14cbcSMatt Macy break; 2399eda14cbcSMatt Macy case 'a': 2400eda14cbcSMatt Macy all = B_TRUE; 2401eda14cbcSMatt Macy break; 2402eda14cbcSMatt Macy case '?': 2403eda14cbcSMatt Macy default: 2404eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 2405eda14cbcSMatt Macy optopt); 2406eda14cbcSMatt Macy usage(B_FALSE); 2407eda14cbcSMatt Macy } 2408eda14cbcSMatt Macy } 2409eda14cbcSMatt Macy 2410eda14cbcSMatt Macy argc -= optind; 2411eda14cbcSMatt Macy argv += optind; 2412eda14cbcSMatt Macy 2413eda14cbcSMatt Macy if ((!all && !argc) && ((flags & ZFS_ITER_RECURSE) | cb.cb_version)) 2414eda14cbcSMatt Macy usage(B_FALSE); 2415eda14cbcSMatt Macy if (showversions && (flags & ZFS_ITER_RECURSE || all || 2416eda14cbcSMatt Macy cb.cb_version || argc)) 2417eda14cbcSMatt Macy usage(B_FALSE); 2418eda14cbcSMatt Macy if ((all || argc) && (showversions)) 2419eda14cbcSMatt Macy usage(B_FALSE); 2420eda14cbcSMatt Macy if (all && argc) 2421eda14cbcSMatt Macy usage(B_FALSE); 2422eda14cbcSMatt Macy 2423eda14cbcSMatt Macy if (showversions) { 2424eda14cbcSMatt Macy /* Show info on available versions. */ 2425eda14cbcSMatt Macy (void) printf(gettext("The following filesystem versions are " 2426eda14cbcSMatt Macy "supported:\n\n")); 2427eda14cbcSMatt Macy (void) printf(gettext("VER DESCRIPTION\n")); 2428eda14cbcSMatt Macy (void) printf("--- -----------------------------------------" 2429eda14cbcSMatt Macy "---------------\n"); 2430eda14cbcSMatt Macy (void) printf(gettext(" 1 Initial ZFS filesystem version\n")); 2431eda14cbcSMatt Macy (void) printf(gettext(" 2 Enhanced directory entries\n")); 2432eda14cbcSMatt Macy (void) printf(gettext(" 3 Case insensitive and filesystem " 2433eda14cbcSMatt Macy "user identifier (FUID)\n")); 2434eda14cbcSMatt Macy (void) printf(gettext(" 4 userquota, groupquota " 2435eda14cbcSMatt Macy "properties\n")); 2436eda14cbcSMatt Macy (void) printf(gettext(" 5 System attributes\n")); 2437eda14cbcSMatt Macy (void) printf(gettext("\nFor more information on a particular " 2438eda14cbcSMatt Macy "version, including supported releases,\n")); 2439eda14cbcSMatt Macy (void) printf("see the ZFS Administration Guide.\n\n"); 2440eda14cbcSMatt Macy ret = 0; 2441eda14cbcSMatt Macy } else if (argc || all) { 2442eda14cbcSMatt Macy /* Upgrade filesystems */ 2443eda14cbcSMatt Macy if (cb.cb_version == 0) 2444eda14cbcSMatt Macy cb.cb_version = ZPL_VERSION; 2445eda14cbcSMatt Macy ret = zfs_for_each(argc, argv, flags, ZFS_TYPE_FILESYSTEM, 2446eda14cbcSMatt Macy NULL, NULL, 0, upgrade_set_callback, &cb); 2447eda14cbcSMatt Macy (void) printf(gettext("%llu filesystems upgraded\n"), 2448eda14cbcSMatt Macy (u_longlong_t)cb.cb_numupgraded); 2449eda14cbcSMatt Macy if (cb.cb_numsamegraded) { 2450eda14cbcSMatt Macy (void) printf(gettext("%llu filesystems already at " 2451eda14cbcSMatt Macy "this version\n"), 2452eda14cbcSMatt Macy (u_longlong_t)cb.cb_numsamegraded); 2453eda14cbcSMatt Macy } 2454eda14cbcSMatt Macy if (cb.cb_numfailed != 0) 2455eda14cbcSMatt Macy ret = 1; 2456eda14cbcSMatt Macy } else { 2457eda14cbcSMatt Macy /* List old-version filesystems */ 2458eda14cbcSMatt Macy boolean_t found; 2459eda14cbcSMatt Macy (void) printf(gettext("This system is currently running " 2460eda14cbcSMatt Macy "ZFS filesystem version %llu.\n\n"), ZPL_VERSION); 2461eda14cbcSMatt Macy 2462eda14cbcSMatt Macy flags |= ZFS_ITER_RECURSE; 2463eda14cbcSMatt Macy ret = zfs_for_each(0, NULL, flags, ZFS_TYPE_FILESYSTEM, 2464eda14cbcSMatt Macy NULL, NULL, 0, upgrade_list_callback, &cb); 2465eda14cbcSMatt Macy 2466eda14cbcSMatt Macy found = cb.cb_foundone; 2467eda14cbcSMatt Macy cb.cb_foundone = B_FALSE; 2468eda14cbcSMatt Macy cb.cb_newer = B_TRUE; 2469eda14cbcSMatt Macy 2470eda14cbcSMatt Macy ret = zfs_for_each(0, NULL, flags, ZFS_TYPE_FILESYSTEM, 2471eda14cbcSMatt Macy NULL, NULL, 0, upgrade_list_callback, &cb); 2472eda14cbcSMatt Macy 2473eda14cbcSMatt Macy if (!cb.cb_foundone && !found) { 2474eda14cbcSMatt Macy (void) printf(gettext("All filesystems are " 2475eda14cbcSMatt Macy "formatted with the current version.\n")); 2476eda14cbcSMatt Macy } 2477eda14cbcSMatt Macy } 2478eda14cbcSMatt Macy 2479eda14cbcSMatt Macy return (ret); 2480eda14cbcSMatt Macy } 2481eda14cbcSMatt Macy 2482eda14cbcSMatt Macy /* 2483eda14cbcSMatt Macy * zfs userspace [-Hinp] [-o field[,...]] [-s field [-s field]...] 2484eda14cbcSMatt Macy * [-S field [-S field]...] [-t type[,...]] filesystem | snapshot 2485eda14cbcSMatt Macy * zfs groupspace [-Hinp] [-o field[,...]] [-s field [-s field]...] 2486eda14cbcSMatt Macy * [-S field [-S field]...] [-t type[,...]] filesystem | snapshot 2487eda14cbcSMatt Macy * zfs projectspace [-Hp] [-o field[,...]] [-s field [-s field]...] 2488eda14cbcSMatt Macy * [-S field [-S field]...] filesystem | snapshot 2489eda14cbcSMatt Macy * 2490eda14cbcSMatt Macy * -H Scripted mode; elide headers and separate columns by tabs. 2491eda14cbcSMatt Macy * -i Translate SID to POSIX ID. 2492eda14cbcSMatt Macy * -n Print numeric ID instead of user/group name. 2493eda14cbcSMatt Macy * -o Control which fields to display. 2494eda14cbcSMatt Macy * -p Use exact (parsable) numeric output. 2495eda14cbcSMatt Macy * -s Specify sort columns, descending order. 2496eda14cbcSMatt Macy * -S Specify sort columns, ascending order. 2497eda14cbcSMatt Macy * -t Control which object types to display. 2498eda14cbcSMatt Macy * 2499eda14cbcSMatt Macy * Displays space consumed by, and quotas on, each user in the specified 2500eda14cbcSMatt Macy * filesystem or snapshot. 2501eda14cbcSMatt Macy */ 2502eda14cbcSMatt Macy 2503eda14cbcSMatt Macy /* us_field_types, us_field_hdr and us_field_names should be kept in sync */ 2504eda14cbcSMatt Macy enum us_field_types { 2505eda14cbcSMatt Macy USFIELD_TYPE, 2506eda14cbcSMatt Macy USFIELD_NAME, 2507eda14cbcSMatt Macy USFIELD_USED, 2508eda14cbcSMatt Macy USFIELD_QUOTA, 2509eda14cbcSMatt Macy USFIELD_OBJUSED, 2510eda14cbcSMatt Macy USFIELD_OBJQUOTA 2511eda14cbcSMatt Macy }; 2512eda14cbcSMatt Macy static char *us_field_hdr[] = { "TYPE", "NAME", "USED", "QUOTA", 2513eda14cbcSMatt Macy "OBJUSED", "OBJQUOTA" }; 2514eda14cbcSMatt Macy static char *us_field_names[] = { "type", "name", "used", "quota", 2515eda14cbcSMatt Macy "objused", "objquota" }; 2516eda14cbcSMatt Macy #define USFIELD_LAST (sizeof (us_field_names) / sizeof (char *)) 2517eda14cbcSMatt Macy 2518eda14cbcSMatt Macy #define USTYPE_PSX_GRP (1 << 0) 2519eda14cbcSMatt Macy #define USTYPE_PSX_USR (1 << 1) 2520eda14cbcSMatt Macy #define USTYPE_SMB_GRP (1 << 2) 2521eda14cbcSMatt Macy #define USTYPE_SMB_USR (1 << 3) 2522eda14cbcSMatt Macy #define USTYPE_PROJ (1 << 4) 2523eda14cbcSMatt Macy #define USTYPE_ALL \ 2524eda14cbcSMatt Macy (USTYPE_PSX_GRP | USTYPE_PSX_USR | USTYPE_SMB_GRP | USTYPE_SMB_USR | \ 2525eda14cbcSMatt Macy USTYPE_PROJ) 2526eda14cbcSMatt Macy 2527eda14cbcSMatt Macy static int us_type_bits[] = { 2528eda14cbcSMatt Macy USTYPE_PSX_GRP, 2529eda14cbcSMatt Macy USTYPE_PSX_USR, 2530eda14cbcSMatt Macy USTYPE_SMB_GRP, 2531eda14cbcSMatt Macy USTYPE_SMB_USR, 2532eda14cbcSMatt Macy USTYPE_ALL 2533eda14cbcSMatt Macy }; 2534eda14cbcSMatt Macy static char *us_type_names[] = { "posixgroup", "posixuser", "smbgroup", 2535eda14cbcSMatt Macy "smbuser", "all" }; 2536eda14cbcSMatt Macy 2537eda14cbcSMatt Macy typedef struct us_node { 2538eda14cbcSMatt Macy nvlist_t *usn_nvl; 2539eda14cbcSMatt Macy uu_avl_node_t usn_avlnode; 2540eda14cbcSMatt Macy uu_list_node_t usn_listnode; 2541eda14cbcSMatt Macy } us_node_t; 2542eda14cbcSMatt Macy 2543eda14cbcSMatt Macy typedef struct us_cbdata { 2544eda14cbcSMatt Macy nvlist_t **cb_nvlp; 2545eda14cbcSMatt Macy uu_avl_pool_t *cb_avl_pool; 2546eda14cbcSMatt Macy uu_avl_t *cb_avl; 2547eda14cbcSMatt Macy boolean_t cb_numname; 2548eda14cbcSMatt Macy boolean_t cb_nicenum; 2549eda14cbcSMatt Macy boolean_t cb_sid2posix; 2550eda14cbcSMatt Macy zfs_userquota_prop_t cb_prop; 2551eda14cbcSMatt Macy zfs_sort_column_t *cb_sortcol; 2552eda14cbcSMatt Macy size_t cb_width[USFIELD_LAST]; 2553eda14cbcSMatt Macy } us_cbdata_t; 2554eda14cbcSMatt Macy 2555eda14cbcSMatt Macy static boolean_t us_populated = B_FALSE; 2556eda14cbcSMatt Macy 2557eda14cbcSMatt Macy typedef struct { 2558eda14cbcSMatt Macy zfs_sort_column_t *si_sortcol; 2559eda14cbcSMatt Macy boolean_t si_numname; 2560eda14cbcSMatt Macy } us_sort_info_t; 2561eda14cbcSMatt Macy 2562eda14cbcSMatt Macy static int 2563eda14cbcSMatt Macy us_field_index(char *field) 2564eda14cbcSMatt Macy { 2565eda14cbcSMatt Macy int i; 2566eda14cbcSMatt Macy 2567eda14cbcSMatt Macy for (i = 0; i < USFIELD_LAST; i++) { 2568eda14cbcSMatt Macy if (strcmp(field, us_field_names[i]) == 0) 2569eda14cbcSMatt Macy return (i); 2570eda14cbcSMatt Macy } 2571eda14cbcSMatt Macy 2572eda14cbcSMatt Macy return (-1); 2573eda14cbcSMatt Macy } 2574eda14cbcSMatt Macy 2575eda14cbcSMatt Macy static int 2576eda14cbcSMatt Macy us_compare(const void *larg, const void *rarg, void *unused) 2577eda14cbcSMatt Macy { 2578eda14cbcSMatt Macy const us_node_t *l = larg; 2579eda14cbcSMatt Macy const us_node_t *r = rarg; 2580eda14cbcSMatt Macy us_sort_info_t *si = (us_sort_info_t *)unused; 2581eda14cbcSMatt Macy zfs_sort_column_t *sortcol = si->si_sortcol; 2582eda14cbcSMatt Macy boolean_t numname = si->si_numname; 2583eda14cbcSMatt Macy nvlist_t *lnvl = l->usn_nvl; 2584eda14cbcSMatt Macy nvlist_t *rnvl = r->usn_nvl; 2585eda14cbcSMatt Macy int rc = 0; 2586eda14cbcSMatt Macy boolean_t lvb, rvb; 2587eda14cbcSMatt Macy 2588eda14cbcSMatt Macy for (; sortcol != NULL; sortcol = sortcol->sc_next) { 2589eda14cbcSMatt Macy char *lvstr = ""; 2590eda14cbcSMatt Macy char *rvstr = ""; 2591eda14cbcSMatt Macy uint32_t lv32 = 0; 2592eda14cbcSMatt Macy uint32_t rv32 = 0; 2593eda14cbcSMatt Macy uint64_t lv64 = 0; 2594eda14cbcSMatt Macy uint64_t rv64 = 0; 2595eda14cbcSMatt Macy zfs_prop_t prop = sortcol->sc_prop; 2596eda14cbcSMatt Macy const char *propname = NULL; 2597eda14cbcSMatt Macy boolean_t reverse = sortcol->sc_reverse; 2598eda14cbcSMatt Macy 2599eda14cbcSMatt Macy switch (prop) { 2600eda14cbcSMatt Macy case ZFS_PROP_TYPE: 2601eda14cbcSMatt Macy propname = "type"; 2602eda14cbcSMatt Macy (void) nvlist_lookup_uint32(lnvl, propname, &lv32); 2603eda14cbcSMatt Macy (void) nvlist_lookup_uint32(rnvl, propname, &rv32); 2604eda14cbcSMatt Macy if (rv32 != lv32) 2605eda14cbcSMatt Macy rc = (rv32 < lv32) ? 1 : -1; 2606eda14cbcSMatt Macy break; 2607eda14cbcSMatt Macy case ZFS_PROP_NAME: 2608eda14cbcSMatt Macy propname = "name"; 2609eda14cbcSMatt Macy if (numname) { 2610eda14cbcSMatt Macy compare_nums: 2611eda14cbcSMatt Macy (void) nvlist_lookup_uint64(lnvl, propname, 2612eda14cbcSMatt Macy &lv64); 2613eda14cbcSMatt Macy (void) nvlist_lookup_uint64(rnvl, propname, 2614eda14cbcSMatt Macy &rv64); 2615eda14cbcSMatt Macy if (rv64 != lv64) 2616eda14cbcSMatt Macy rc = (rv64 < lv64) ? 1 : -1; 2617eda14cbcSMatt Macy } else { 2618eda14cbcSMatt Macy if ((nvlist_lookup_string(lnvl, propname, 2619eda14cbcSMatt Macy &lvstr) == ENOENT) || 2620eda14cbcSMatt Macy (nvlist_lookup_string(rnvl, propname, 2621eda14cbcSMatt Macy &rvstr) == ENOENT)) { 2622eda14cbcSMatt Macy goto compare_nums; 2623eda14cbcSMatt Macy } 2624eda14cbcSMatt Macy rc = strcmp(lvstr, rvstr); 2625eda14cbcSMatt Macy } 2626eda14cbcSMatt Macy break; 2627eda14cbcSMatt Macy case ZFS_PROP_USED: 2628eda14cbcSMatt Macy case ZFS_PROP_QUOTA: 2629eda14cbcSMatt Macy if (!us_populated) 2630eda14cbcSMatt Macy break; 2631eda14cbcSMatt Macy if (prop == ZFS_PROP_USED) 2632eda14cbcSMatt Macy propname = "used"; 2633eda14cbcSMatt Macy else 2634eda14cbcSMatt Macy propname = "quota"; 2635eda14cbcSMatt Macy (void) nvlist_lookup_uint64(lnvl, propname, &lv64); 2636eda14cbcSMatt Macy (void) nvlist_lookup_uint64(rnvl, propname, &rv64); 2637eda14cbcSMatt Macy if (rv64 != lv64) 2638eda14cbcSMatt Macy rc = (rv64 < lv64) ? 1 : -1; 2639eda14cbcSMatt Macy break; 2640eda14cbcSMatt Macy 2641eda14cbcSMatt Macy default: 2642eda14cbcSMatt Macy break; 2643eda14cbcSMatt Macy } 2644eda14cbcSMatt Macy 2645eda14cbcSMatt Macy if (rc != 0) { 2646eda14cbcSMatt Macy if (rc < 0) 2647eda14cbcSMatt Macy return (reverse ? 1 : -1); 2648eda14cbcSMatt Macy else 2649eda14cbcSMatt Macy return (reverse ? -1 : 1); 2650eda14cbcSMatt Macy } 2651eda14cbcSMatt Macy } 2652eda14cbcSMatt Macy 2653eda14cbcSMatt Macy /* 2654eda14cbcSMatt Macy * If entries still seem to be the same, check if they are of the same 2655eda14cbcSMatt Macy * type (smbentity is added only if we are doing SID to POSIX ID 2656eda14cbcSMatt Macy * translation where we can have duplicate type/name combinations). 2657eda14cbcSMatt Macy */ 2658eda14cbcSMatt Macy if (nvlist_lookup_boolean_value(lnvl, "smbentity", &lvb) == 0 && 2659eda14cbcSMatt Macy nvlist_lookup_boolean_value(rnvl, "smbentity", &rvb) == 0 && 2660eda14cbcSMatt Macy lvb != rvb) 2661eda14cbcSMatt Macy return (lvb < rvb ? -1 : 1); 2662eda14cbcSMatt Macy 2663eda14cbcSMatt Macy return (0); 2664eda14cbcSMatt Macy } 2665eda14cbcSMatt Macy 2666eda14cbcSMatt Macy static boolean_t 2667eda14cbcSMatt Macy zfs_prop_is_user(unsigned p) 2668eda14cbcSMatt Macy { 2669eda14cbcSMatt Macy return (p == ZFS_PROP_USERUSED || p == ZFS_PROP_USERQUOTA || 2670eda14cbcSMatt Macy p == ZFS_PROP_USEROBJUSED || p == ZFS_PROP_USEROBJQUOTA); 2671eda14cbcSMatt Macy } 2672eda14cbcSMatt Macy 2673eda14cbcSMatt Macy static boolean_t 2674eda14cbcSMatt Macy zfs_prop_is_group(unsigned p) 2675eda14cbcSMatt Macy { 2676eda14cbcSMatt Macy return (p == ZFS_PROP_GROUPUSED || p == ZFS_PROP_GROUPQUOTA || 2677eda14cbcSMatt Macy p == ZFS_PROP_GROUPOBJUSED || p == ZFS_PROP_GROUPOBJQUOTA); 2678eda14cbcSMatt Macy } 2679eda14cbcSMatt Macy 2680eda14cbcSMatt Macy static boolean_t 2681eda14cbcSMatt Macy zfs_prop_is_project(unsigned p) 2682eda14cbcSMatt Macy { 2683eda14cbcSMatt Macy return (p == ZFS_PROP_PROJECTUSED || p == ZFS_PROP_PROJECTQUOTA || 2684eda14cbcSMatt Macy p == ZFS_PROP_PROJECTOBJUSED || p == ZFS_PROP_PROJECTOBJQUOTA); 2685eda14cbcSMatt Macy } 2686eda14cbcSMatt Macy 2687eda14cbcSMatt Macy static inline const char * 2688eda14cbcSMatt Macy us_type2str(unsigned field_type) 2689eda14cbcSMatt Macy { 2690eda14cbcSMatt Macy switch (field_type) { 2691eda14cbcSMatt Macy case USTYPE_PSX_USR: 2692eda14cbcSMatt Macy return ("POSIX User"); 2693eda14cbcSMatt Macy case USTYPE_PSX_GRP: 2694eda14cbcSMatt Macy return ("POSIX Group"); 2695eda14cbcSMatt Macy case USTYPE_SMB_USR: 2696eda14cbcSMatt Macy return ("SMB User"); 2697eda14cbcSMatt Macy case USTYPE_SMB_GRP: 2698eda14cbcSMatt Macy return ("SMB Group"); 2699eda14cbcSMatt Macy case USTYPE_PROJ: 2700eda14cbcSMatt Macy return ("Project"); 2701eda14cbcSMatt Macy default: 2702eda14cbcSMatt Macy return ("Undefined"); 2703eda14cbcSMatt Macy } 2704eda14cbcSMatt Macy } 2705eda14cbcSMatt Macy 2706eda14cbcSMatt Macy static int 2707eda14cbcSMatt Macy userspace_cb(void *arg, const char *domain, uid_t rid, uint64_t space) 2708eda14cbcSMatt Macy { 2709eda14cbcSMatt Macy us_cbdata_t *cb = (us_cbdata_t *)arg; 2710eda14cbcSMatt Macy zfs_userquota_prop_t prop = cb->cb_prop; 2711eda14cbcSMatt Macy char *name = NULL; 2712eda14cbcSMatt Macy char *propname; 2713eda14cbcSMatt Macy char sizebuf[32]; 2714eda14cbcSMatt Macy us_node_t *node; 2715eda14cbcSMatt Macy uu_avl_pool_t *avl_pool = cb->cb_avl_pool; 2716eda14cbcSMatt Macy uu_avl_t *avl = cb->cb_avl; 2717eda14cbcSMatt Macy uu_avl_index_t idx; 2718eda14cbcSMatt Macy nvlist_t *props; 2719eda14cbcSMatt Macy us_node_t *n; 2720eda14cbcSMatt Macy zfs_sort_column_t *sortcol = cb->cb_sortcol; 2721eda14cbcSMatt Macy unsigned type = 0; 2722eda14cbcSMatt Macy const char *typestr; 2723eda14cbcSMatt Macy size_t namelen; 2724eda14cbcSMatt Macy size_t typelen; 2725eda14cbcSMatt Macy size_t sizelen; 2726eda14cbcSMatt Macy int typeidx, nameidx, sizeidx; 2727eda14cbcSMatt Macy us_sort_info_t sortinfo = { sortcol, cb->cb_numname }; 2728eda14cbcSMatt Macy boolean_t smbentity = B_FALSE; 2729eda14cbcSMatt Macy 2730eda14cbcSMatt Macy if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) 2731eda14cbcSMatt Macy nomem(); 2732eda14cbcSMatt Macy node = safe_malloc(sizeof (us_node_t)); 2733eda14cbcSMatt Macy uu_avl_node_init(node, &node->usn_avlnode, avl_pool); 2734eda14cbcSMatt Macy node->usn_nvl = props; 2735eda14cbcSMatt Macy 2736eda14cbcSMatt Macy if (domain != NULL && domain[0] != '\0') { 2737eda14cbcSMatt Macy #ifdef HAVE_IDMAP 2738eda14cbcSMatt Macy /* SMB */ 2739eda14cbcSMatt Macy char sid[MAXNAMELEN + 32]; 2740eda14cbcSMatt Macy uid_t id; 2741eda14cbcSMatt Macy uint64_t classes; 2742eda14cbcSMatt Macy int err; 2743eda14cbcSMatt Macy directory_error_t e; 2744eda14cbcSMatt Macy 2745eda14cbcSMatt Macy smbentity = B_TRUE; 2746eda14cbcSMatt Macy 2747eda14cbcSMatt Macy (void) snprintf(sid, sizeof (sid), "%s-%u", domain, rid); 2748eda14cbcSMatt Macy 2749eda14cbcSMatt Macy if (prop == ZFS_PROP_GROUPUSED || prop == ZFS_PROP_GROUPQUOTA) { 2750eda14cbcSMatt Macy type = USTYPE_SMB_GRP; 2751eda14cbcSMatt Macy err = sid_to_id(sid, B_FALSE, &id); 2752eda14cbcSMatt Macy } else { 2753eda14cbcSMatt Macy type = USTYPE_SMB_USR; 2754eda14cbcSMatt Macy err = sid_to_id(sid, B_TRUE, &id); 2755eda14cbcSMatt Macy } 2756eda14cbcSMatt Macy 2757eda14cbcSMatt Macy if (err == 0) { 2758eda14cbcSMatt Macy rid = id; 2759eda14cbcSMatt Macy if (!cb->cb_sid2posix) { 2760eda14cbcSMatt Macy e = directory_name_from_sid(NULL, sid, &name, 2761eda14cbcSMatt Macy &classes); 2762eda14cbcSMatt Macy if (e != NULL) 2763eda14cbcSMatt Macy directory_error_free(e); 2764eda14cbcSMatt Macy if (name == NULL) 2765eda14cbcSMatt Macy name = sid; 2766eda14cbcSMatt Macy } 2767eda14cbcSMatt Macy } 2768eda14cbcSMatt Macy #else 2769eda14cbcSMatt Macy nvlist_free(props); 2770eda14cbcSMatt Macy free(node); 2771eda14cbcSMatt Macy 2772eda14cbcSMatt Macy return (-1); 2773eda14cbcSMatt Macy #endif /* HAVE_IDMAP */ 2774eda14cbcSMatt Macy } 2775eda14cbcSMatt Macy 2776eda14cbcSMatt Macy if (cb->cb_sid2posix || domain == NULL || domain[0] == '\0') { 2777eda14cbcSMatt Macy /* POSIX or -i */ 2778eda14cbcSMatt Macy if (zfs_prop_is_group(prop)) { 2779eda14cbcSMatt Macy type = USTYPE_PSX_GRP; 2780eda14cbcSMatt Macy if (!cb->cb_numname) { 2781eda14cbcSMatt Macy struct group *g; 2782eda14cbcSMatt Macy 2783eda14cbcSMatt Macy if ((g = getgrgid(rid)) != NULL) 2784eda14cbcSMatt Macy name = g->gr_name; 2785eda14cbcSMatt Macy } 2786eda14cbcSMatt Macy } else if (zfs_prop_is_user(prop)) { 2787eda14cbcSMatt Macy type = USTYPE_PSX_USR; 2788eda14cbcSMatt Macy if (!cb->cb_numname) { 2789eda14cbcSMatt Macy struct passwd *p; 2790eda14cbcSMatt Macy 2791eda14cbcSMatt Macy if ((p = getpwuid(rid)) != NULL) 2792eda14cbcSMatt Macy name = p->pw_name; 2793eda14cbcSMatt Macy } 2794eda14cbcSMatt Macy } else { 2795eda14cbcSMatt Macy type = USTYPE_PROJ; 2796eda14cbcSMatt Macy } 2797eda14cbcSMatt Macy } 2798eda14cbcSMatt Macy 2799eda14cbcSMatt Macy /* 2800eda14cbcSMatt Macy * Make sure that the type/name combination is unique when doing 2801eda14cbcSMatt Macy * SID to POSIX ID translation (hence changing the type from SMB to 2802eda14cbcSMatt Macy * POSIX). 2803eda14cbcSMatt Macy */ 2804eda14cbcSMatt Macy if (cb->cb_sid2posix && 2805eda14cbcSMatt Macy nvlist_add_boolean_value(props, "smbentity", smbentity) != 0) 2806eda14cbcSMatt Macy nomem(); 2807eda14cbcSMatt Macy 2808eda14cbcSMatt Macy /* Calculate/update width of TYPE field */ 2809eda14cbcSMatt Macy typestr = us_type2str(type); 2810eda14cbcSMatt Macy typelen = strlen(gettext(typestr)); 2811eda14cbcSMatt Macy typeidx = us_field_index("type"); 2812eda14cbcSMatt Macy if (typelen > cb->cb_width[typeidx]) 2813eda14cbcSMatt Macy cb->cb_width[typeidx] = typelen; 2814eda14cbcSMatt Macy if (nvlist_add_uint32(props, "type", type) != 0) 2815eda14cbcSMatt Macy nomem(); 2816eda14cbcSMatt Macy 2817eda14cbcSMatt Macy /* Calculate/update width of NAME field */ 2818eda14cbcSMatt Macy if ((cb->cb_numname && cb->cb_sid2posix) || name == NULL) { 2819eda14cbcSMatt Macy if (nvlist_add_uint64(props, "name", rid) != 0) 2820eda14cbcSMatt Macy nomem(); 2821eda14cbcSMatt Macy namelen = snprintf(NULL, 0, "%u", rid); 2822eda14cbcSMatt Macy } else { 2823eda14cbcSMatt Macy if (nvlist_add_string(props, "name", name) != 0) 2824eda14cbcSMatt Macy nomem(); 2825eda14cbcSMatt Macy namelen = strlen(name); 2826eda14cbcSMatt Macy } 2827eda14cbcSMatt Macy nameidx = us_field_index("name"); 2828eda14cbcSMatt Macy if (nameidx >= 0 && namelen > cb->cb_width[nameidx]) 2829eda14cbcSMatt Macy cb->cb_width[nameidx] = namelen; 2830eda14cbcSMatt Macy 2831eda14cbcSMatt Macy /* 2832eda14cbcSMatt Macy * Check if this type/name combination is in the list and update it; 2833eda14cbcSMatt Macy * otherwise add new node to the list. 2834eda14cbcSMatt Macy */ 2835eda14cbcSMatt Macy if ((n = uu_avl_find(avl, node, &sortinfo, &idx)) == NULL) { 2836eda14cbcSMatt Macy uu_avl_insert(avl, node, idx); 2837eda14cbcSMatt Macy } else { 2838eda14cbcSMatt Macy nvlist_free(props); 2839eda14cbcSMatt Macy free(node); 2840eda14cbcSMatt Macy node = n; 2841eda14cbcSMatt Macy props = node->usn_nvl; 2842eda14cbcSMatt Macy } 2843eda14cbcSMatt Macy 2844eda14cbcSMatt Macy /* Calculate/update width of USED/QUOTA fields */ 2845eda14cbcSMatt Macy if (cb->cb_nicenum) { 2846eda14cbcSMatt Macy if (prop == ZFS_PROP_USERUSED || prop == ZFS_PROP_GROUPUSED || 2847eda14cbcSMatt Macy prop == ZFS_PROP_USERQUOTA || prop == ZFS_PROP_GROUPQUOTA || 2848eda14cbcSMatt Macy prop == ZFS_PROP_PROJECTUSED || 2849eda14cbcSMatt Macy prop == ZFS_PROP_PROJECTQUOTA) { 2850eda14cbcSMatt Macy zfs_nicebytes(space, sizebuf, sizeof (sizebuf)); 2851eda14cbcSMatt Macy } else { 2852eda14cbcSMatt Macy zfs_nicenum(space, sizebuf, sizeof (sizebuf)); 2853eda14cbcSMatt Macy } 2854eda14cbcSMatt Macy } else { 2855eda14cbcSMatt Macy (void) snprintf(sizebuf, sizeof (sizebuf), "%llu", 2856eda14cbcSMatt Macy (u_longlong_t)space); 2857eda14cbcSMatt Macy } 2858eda14cbcSMatt Macy sizelen = strlen(sizebuf); 2859eda14cbcSMatt Macy if (prop == ZFS_PROP_USERUSED || prop == ZFS_PROP_GROUPUSED || 2860eda14cbcSMatt Macy prop == ZFS_PROP_PROJECTUSED) { 2861eda14cbcSMatt Macy propname = "used"; 2862eda14cbcSMatt Macy if (!nvlist_exists(props, "quota")) 2863eda14cbcSMatt Macy (void) nvlist_add_uint64(props, "quota", 0); 2864eda14cbcSMatt Macy } else if (prop == ZFS_PROP_USERQUOTA || prop == ZFS_PROP_GROUPQUOTA || 2865eda14cbcSMatt Macy prop == ZFS_PROP_PROJECTQUOTA) { 2866eda14cbcSMatt Macy propname = "quota"; 2867eda14cbcSMatt Macy if (!nvlist_exists(props, "used")) 2868eda14cbcSMatt Macy (void) nvlist_add_uint64(props, "used", 0); 2869eda14cbcSMatt Macy } else if (prop == ZFS_PROP_USEROBJUSED || 2870eda14cbcSMatt Macy prop == ZFS_PROP_GROUPOBJUSED || prop == ZFS_PROP_PROJECTOBJUSED) { 2871eda14cbcSMatt Macy propname = "objused"; 2872eda14cbcSMatt Macy if (!nvlist_exists(props, "objquota")) 2873eda14cbcSMatt Macy (void) nvlist_add_uint64(props, "objquota", 0); 2874eda14cbcSMatt Macy } else if (prop == ZFS_PROP_USEROBJQUOTA || 2875eda14cbcSMatt Macy prop == ZFS_PROP_GROUPOBJQUOTA || 2876eda14cbcSMatt Macy prop == ZFS_PROP_PROJECTOBJQUOTA) { 2877eda14cbcSMatt Macy propname = "objquota"; 2878eda14cbcSMatt Macy if (!nvlist_exists(props, "objused")) 2879eda14cbcSMatt Macy (void) nvlist_add_uint64(props, "objused", 0); 2880eda14cbcSMatt Macy } else { 2881eda14cbcSMatt Macy return (-1); 2882eda14cbcSMatt Macy } 2883eda14cbcSMatt Macy sizeidx = us_field_index(propname); 2884eda14cbcSMatt Macy if (sizeidx >= 0 && sizelen > cb->cb_width[sizeidx]) 2885eda14cbcSMatt Macy cb->cb_width[sizeidx] = sizelen; 2886eda14cbcSMatt Macy 2887eda14cbcSMatt Macy if (nvlist_add_uint64(props, propname, space) != 0) 2888eda14cbcSMatt Macy nomem(); 2889eda14cbcSMatt Macy 2890eda14cbcSMatt Macy return (0); 2891eda14cbcSMatt Macy } 2892eda14cbcSMatt Macy 2893eda14cbcSMatt Macy static void 2894eda14cbcSMatt Macy print_us_node(boolean_t scripted, boolean_t parsable, int *fields, int types, 2895eda14cbcSMatt Macy size_t *width, us_node_t *node) 2896eda14cbcSMatt Macy { 2897eda14cbcSMatt Macy nvlist_t *nvl = node->usn_nvl; 2898eda14cbcSMatt Macy char valstr[MAXNAMELEN]; 2899eda14cbcSMatt Macy boolean_t first = B_TRUE; 2900eda14cbcSMatt Macy int cfield = 0; 2901eda14cbcSMatt Macy int field; 2902eda14cbcSMatt Macy uint32_t ustype; 2903eda14cbcSMatt Macy 2904eda14cbcSMatt Macy /* Check type */ 2905eda14cbcSMatt Macy (void) nvlist_lookup_uint32(nvl, "type", &ustype); 2906eda14cbcSMatt Macy if (!(ustype & types)) 2907eda14cbcSMatt Macy return; 2908eda14cbcSMatt Macy 2909eda14cbcSMatt Macy while ((field = fields[cfield]) != USFIELD_LAST) { 2910eda14cbcSMatt Macy nvpair_t *nvp = NULL; 2911eda14cbcSMatt Macy data_type_t type; 2912eda14cbcSMatt Macy uint32_t val32; 2913eda14cbcSMatt Macy uint64_t val64; 2914eda14cbcSMatt Macy char *strval = "-"; 2915eda14cbcSMatt Macy 2916eda14cbcSMatt Macy while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) { 2917eda14cbcSMatt Macy if (strcmp(nvpair_name(nvp), 2918eda14cbcSMatt Macy us_field_names[field]) == 0) 2919eda14cbcSMatt Macy break; 2920eda14cbcSMatt Macy } 2921eda14cbcSMatt Macy 2922eda14cbcSMatt Macy type = nvp == NULL ? DATA_TYPE_UNKNOWN : nvpair_type(nvp); 2923eda14cbcSMatt Macy switch (type) { 2924eda14cbcSMatt Macy case DATA_TYPE_UINT32: 2925eda14cbcSMatt Macy (void) nvpair_value_uint32(nvp, &val32); 2926eda14cbcSMatt Macy break; 2927eda14cbcSMatt Macy case DATA_TYPE_UINT64: 2928eda14cbcSMatt Macy (void) nvpair_value_uint64(nvp, &val64); 2929eda14cbcSMatt Macy break; 2930eda14cbcSMatt Macy case DATA_TYPE_STRING: 2931eda14cbcSMatt Macy (void) nvpair_value_string(nvp, &strval); 2932eda14cbcSMatt Macy break; 2933eda14cbcSMatt Macy case DATA_TYPE_UNKNOWN: 2934eda14cbcSMatt Macy break; 2935eda14cbcSMatt Macy default: 2936eda14cbcSMatt Macy (void) fprintf(stderr, "invalid data type\n"); 2937eda14cbcSMatt Macy } 2938eda14cbcSMatt Macy 2939eda14cbcSMatt Macy switch (field) { 2940eda14cbcSMatt Macy case USFIELD_TYPE: 2941eda14cbcSMatt Macy if (type == DATA_TYPE_UINT32) 2942eda14cbcSMatt Macy strval = (char *)us_type2str(val32); 2943eda14cbcSMatt Macy break; 2944eda14cbcSMatt Macy case USFIELD_NAME: 2945eda14cbcSMatt Macy if (type == DATA_TYPE_UINT64) { 2946eda14cbcSMatt Macy (void) sprintf(valstr, "%llu", 2947eda14cbcSMatt Macy (u_longlong_t)val64); 2948eda14cbcSMatt Macy strval = valstr; 2949eda14cbcSMatt Macy } 2950eda14cbcSMatt Macy break; 2951eda14cbcSMatt Macy case USFIELD_USED: 2952eda14cbcSMatt Macy case USFIELD_QUOTA: 2953eda14cbcSMatt Macy if (type == DATA_TYPE_UINT64) { 2954eda14cbcSMatt Macy if (parsable) { 2955eda14cbcSMatt Macy (void) sprintf(valstr, "%llu", 2956eda14cbcSMatt Macy (u_longlong_t)val64); 2957eda14cbcSMatt Macy strval = valstr; 2958eda14cbcSMatt Macy } else if (field == USFIELD_QUOTA && 2959eda14cbcSMatt Macy val64 == 0) { 2960eda14cbcSMatt Macy strval = "none"; 2961eda14cbcSMatt Macy } else { 2962eda14cbcSMatt Macy zfs_nicebytes(val64, valstr, 2963eda14cbcSMatt Macy sizeof (valstr)); 2964eda14cbcSMatt Macy strval = valstr; 2965eda14cbcSMatt Macy } 2966eda14cbcSMatt Macy } 2967eda14cbcSMatt Macy break; 2968eda14cbcSMatt Macy case USFIELD_OBJUSED: 2969eda14cbcSMatt Macy case USFIELD_OBJQUOTA: 2970eda14cbcSMatt Macy if (type == DATA_TYPE_UINT64) { 2971eda14cbcSMatt Macy if (parsable) { 2972eda14cbcSMatt Macy (void) sprintf(valstr, "%llu", 2973eda14cbcSMatt Macy (u_longlong_t)val64); 2974eda14cbcSMatt Macy strval = valstr; 2975eda14cbcSMatt Macy } else if (field == USFIELD_OBJQUOTA && 2976eda14cbcSMatt Macy val64 == 0) { 2977eda14cbcSMatt Macy strval = "none"; 2978eda14cbcSMatt Macy } else { 2979eda14cbcSMatt Macy zfs_nicenum(val64, valstr, 2980eda14cbcSMatt Macy sizeof (valstr)); 2981eda14cbcSMatt Macy strval = valstr; 2982eda14cbcSMatt Macy } 2983eda14cbcSMatt Macy } 2984eda14cbcSMatt Macy break; 2985eda14cbcSMatt Macy } 2986eda14cbcSMatt Macy 2987eda14cbcSMatt Macy if (!first) { 2988eda14cbcSMatt Macy if (scripted) 2989eda14cbcSMatt Macy (void) printf("\t"); 2990eda14cbcSMatt Macy else 2991eda14cbcSMatt Macy (void) printf(" "); 2992eda14cbcSMatt Macy } 2993eda14cbcSMatt Macy if (scripted) 2994eda14cbcSMatt Macy (void) printf("%s", strval); 2995eda14cbcSMatt Macy else if (field == USFIELD_TYPE || field == USFIELD_NAME) 2996eda14cbcSMatt Macy (void) printf("%-*s", (int)width[field], strval); 2997eda14cbcSMatt Macy else 2998eda14cbcSMatt Macy (void) printf("%*s", (int)width[field], strval); 2999eda14cbcSMatt Macy 3000eda14cbcSMatt Macy first = B_FALSE; 3001eda14cbcSMatt Macy cfield++; 3002eda14cbcSMatt Macy } 3003eda14cbcSMatt Macy 3004eda14cbcSMatt Macy (void) printf("\n"); 3005eda14cbcSMatt Macy } 3006eda14cbcSMatt Macy 3007eda14cbcSMatt Macy static void 3008eda14cbcSMatt Macy print_us(boolean_t scripted, boolean_t parsable, int *fields, int types, 3009eda14cbcSMatt Macy size_t *width, boolean_t rmnode, uu_avl_t *avl) 3010eda14cbcSMatt Macy { 3011eda14cbcSMatt Macy us_node_t *node; 3012eda14cbcSMatt Macy const char *col; 3013eda14cbcSMatt Macy int cfield = 0; 3014eda14cbcSMatt Macy int field; 3015eda14cbcSMatt Macy 3016eda14cbcSMatt Macy if (!scripted) { 3017eda14cbcSMatt Macy boolean_t first = B_TRUE; 3018eda14cbcSMatt Macy 3019eda14cbcSMatt Macy while ((field = fields[cfield]) != USFIELD_LAST) { 3020eda14cbcSMatt Macy col = gettext(us_field_hdr[field]); 3021eda14cbcSMatt Macy if (field == USFIELD_TYPE || field == USFIELD_NAME) { 3022eda14cbcSMatt Macy (void) printf(first ? "%-*s" : " %-*s", 3023eda14cbcSMatt Macy (int)width[field], col); 3024eda14cbcSMatt Macy } else { 3025eda14cbcSMatt Macy (void) printf(first ? "%*s" : " %*s", 3026eda14cbcSMatt Macy (int)width[field], col); 3027eda14cbcSMatt Macy } 3028eda14cbcSMatt Macy first = B_FALSE; 3029eda14cbcSMatt Macy cfield++; 3030eda14cbcSMatt Macy } 3031eda14cbcSMatt Macy (void) printf("\n"); 3032eda14cbcSMatt Macy } 3033eda14cbcSMatt Macy 3034eda14cbcSMatt Macy for (node = uu_avl_first(avl); node; node = uu_avl_next(avl, node)) { 3035eda14cbcSMatt Macy print_us_node(scripted, parsable, fields, types, width, node); 3036eda14cbcSMatt Macy if (rmnode) 3037eda14cbcSMatt Macy nvlist_free(node->usn_nvl); 3038eda14cbcSMatt Macy } 3039eda14cbcSMatt Macy } 3040eda14cbcSMatt Macy 3041eda14cbcSMatt Macy static int 3042eda14cbcSMatt Macy zfs_do_userspace(int argc, char **argv) 3043eda14cbcSMatt Macy { 3044eda14cbcSMatt Macy zfs_handle_t *zhp; 3045eda14cbcSMatt Macy zfs_userquota_prop_t p; 3046eda14cbcSMatt Macy uu_avl_pool_t *avl_pool; 3047eda14cbcSMatt Macy uu_avl_t *avl_tree; 3048eda14cbcSMatt Macy uu_avl_walk_t *walk; 3049eda14cbcSMatt Macy char *delim; 3050eda14cbcSMatt Macy char deffields[] = "type,name,used,quota,objused,objquota"; 3051eda14cbcSMatt Macy char *ofield = NULL; 3052eda14cbcSMatt Macy char *tfield = NULL; 3053eda14cbcSMatt Macy int cfield = 0; 3054eda14cbcSMatt Macy int fields[256]; 3055eda14cbcSMatt Macy int i; 3056eda14cbcSMatt Macy boolean_t scripted = B_FALSE; 3057eda14cbcSMatt Macy boolean_t prtnum = B_FALSE; 3058eda14cbcSMatt Macy boolean_t parsable = B_FALSE; 3059eda14cbcSMatt Macy boolean_t sid2posix = B_FALSE; 3060eda14cbcSMatt Macy int ret = 0; 3061eda14cbcSMatt Macy int c; 3062eda14cbcSMatt Macy zfs_sort_column_t *sortcol = NULL; 3063eda14cbcSMatt Macy int types = USTYPE_PSX_USR | USTYPE_SMB_USR; 3064eda14cbcSMatt Macy us_cbdata_t cb; 3065eda14cbcSMatt Macy us_node_t *node; 3066eda14cbcSMatt Macy us_node_t *rmnode; 3067eda14cbcSMatt Macy uu_list_pool_t *listpool; 3068eda14cbcSMatt Macy uu_list_t *list; 3069eda14cbcSMatt Macy uu_avl_index_t idx = 0; 3070eda14cbcSMatt Macy uu_list_index_t idx2 = 0; 3071eda14cbcSMatt Macy 3072eda14cbcSMatt Macy if (argc < 2) 3073eda14cbcSMatt Macy usage(B_FALSE); 3074eda14cbcSMatt Macy 3075eda14cbcSMatt Macy if (strcmp(argv[0], "groupspace") == 0) { 3076eda14cbcSMatt Macy /* Toggle default group types */ 3077eda14cbcSMatt Macy types = USTYPE_PSX_GRP | USTYPE_SMB_GRP; 3078eda14cbcSMatt Macy } else if (strcmp(argv[0], "projectspace") == 0) { 3079eda14cbcSMatt Macy types = USTYPE_PROJ; 3080eda14cbcSMatt Macy prtnum = B_TRUE; 3081eda14cbcSMatt Macy } 3082eda14cbcSMatt Macy 3083eda14cbcSMatt Macy while ((c = getopt(argc, argv, "nHpo:s:S:t:i")) != -1) { 3084eda14cbcSMatt Macy switch (c) { 3085eda14cbcSMatt Macy case 'n': 3086eda14cbcSMatt Macy if (types == USTYPE_PROJ) { 3087eda14cbcSMatt Macy (void) fprintf(stderr, 3088eda14cbcSMatt Macy gettext("invalid option 'n'\n")); 3089eda14cbcSMatt Macy usage(B_FALSE); 3090eda14cbcSMatt Macy } 3091eda14cbcSMatt Macy prtnum = B_TRUE; 3092eda14cbcSMatt Macy break; 3093eda14cbcSMatt Macy case 'H': 3094eda14cbcSMatt Macy scripted = B_TRUE; 3095eda14cbcSMatt Macy break; 3096eda14cbcSMatt Macy case 'p': 3097eda14cbcSMatt Macy parsable = B_TRUE; 3098eda14cbcSMatt Macy break; 3099eda14cbcSMatt Macy case 'o': 3100eda14cbcSMatt Macy ofield = optarg; 3101eda14cbcSMatt Macy break; 3102eda14cbcSMatt Macy case 's': 3103eda14cbcSMatt Macy case 'S': 3104eda14cbcSMatt Macy if (zfs_add_sort_column(&sortcol, optarg, 3105eda14cbcSMatt Macy c == 's' ? B_FALSE : B_TRUE) != 0) { 3106eda14cbcSMatt Macy (void) fprintf(stderr, 3107eda14cbcSMatt Macy gettext("invalid field '%s'\n"), optarg); 3108eda14cbcSMatt Macy usage(B_FALSE); 3109eda14cbcSMatt Macy } 3110eda14cbcSMatt Macy break; 3111eda14cbcSMatt Macy case 't': 3112eda14cbcSMatt Macy if (types == USTYPE_PROJ) { 3113eda14cbcSMatt Macy (void) fprintf(stderr, 3114eda14cbcSMatt Macy gettext("invalid option 't'\n")); 3115eda14cbcSMatt Macy usage(B_FALSE); 3116eda14cbcSMatt Macy } 3117eda14cbcSMatt Macy tfield = optarg; 3118eda14cbcSMatt Macy break; 3119eda14cbcSMatt Macy case 'i': 3120eda14cbcSMatt Macy if (types == USTYPE_PROJ) { 3121eda14cbcSMatt Macy (void) fprintf(stderr, 3122eda14cbcSMatt Macy gettext("invalid option 'i'\n")); 3123eda14cbcSMatt Macy usage(B_FALSE); 3124eda14cbcSMatt Macy } 3125eda14cbcSMatt Macy sid2posix = B_TRUE; 3126eda14cbcSMatt Macy break; 3127eda14cbcSMatt Macy case ':': 3128eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing argument for " 3129eda14cbcSMatt Macy "'%c' option\n"), optopt); 3130eda14cbcSMatt Macy usage(B_FALSE); 3131eda14cbcSMatt Macy break; 3132eda14cbcSMatt Macy case '?': 3133eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 3134eda14cbcSMatt Macy optopt); 3135eda14cbcSMatt Macy usage(B_FALSE); 3136eda14cbcSMatt Macy } 3137eda14cbcSMatt Macy } 3138eda14cbcSMatt Macy 3139eda14cbcSMatt Macy argc -= optind; 3140eda14cbcSMatt Macy argv += optind; 3141eda14cbcSMatt Macy 3142eda14cbcSMatt Macy if (argc < 1) { 3143eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing dataset name\n")); 3144eda14cbcSMatt Macy usage(B_FALSE); 3145eda14cbcSMatt Macy } 3146eda14cbcSMatt Macy if (argc > 1) { 3147eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 3148eda14cbcSMatt Macy usage(B_FALSE); 3149eda14cbcSMatt Macy } 3150eda14cbcSMatt Macy 3151eda14cbcSMatt Macy /* Use default output fields if not specified using -o */ 3152eda14cbcSMatt Macy if (ofield == NULL) 3153eda14cbcSMatt Macy ofield = deffields; 3154eda14cbcSMatt Macy do { 3155eda14cbcSMatt Macy if ((delim = strchr(ofield, ',')) != NULL) 3156eda14cbcSMatt Macy *delim = '\0'; 3157eda14cbcSMatt Macy if ((fields[cfield++] = us_field_index(ofield)) == -1) { 3158eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid type '%s' " 3159eda14cbcSMatt Macy "for -o option\n"), ofield); 3160eda14cbcSMatt Macy return (-1); 3161eda14cbcSMatt Macy } 3162eda14cbcSMatt Macy if (delim != NULL) 3163eda14cbcSMatt Macy ofield = delim + 1; 3164eda14cbcSMatt Macy } while (delim != NULL); 3165eda14cbcSMatt Macy fields[cfield] = USFIELD_LAST; 3166eda14cbcSMatt Macy 3167eda14cbcSMatt Macy /* Override output types (-t option) */ 3168eda14cbcSMatt Macy if (tfield != NULL) { 3169eda14cbcSMatt Macy types = 0; 3170eda14cbcSMatt Macy 3171eda14cbcSMatt Macy do { 3172eda14cbcSMatt Macy boolean_t found = B_FALSE; 3173eda14cbcSMatt Macy 3174eda14cbcSMatt Macy if ((delim = strchr(tfield, ',')) != NULL) 3175eda14cbcSMatt Macy *delim = '\0'; 3176eda14cbcSMatt Macy for (i = 0; i < sizeof (us_type_bits) / sizeof (int); 3177eda14cbcSMatt Macy i++) { 3178eda14cbcSMatt Macy if (strcmp(tfield, us_type_names[i]) == 0) { 3179eda14cbcSMatt Macy found = B_TRUE; 3180eda14cbcSMatt Macy types |= us_type_bits[i]; 3181eda14cbcSMatt Macy break; 3182eda14cbcSMatt Macy } 3183eda14cbcSMatt Macy } 3184eda14cbcSMatt Macy if (!found) { 3185eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid type " 3186eda14cbcSMatt Macy "'%s' for -t option\n"), tfield); 3187eda14cbcSMatt Macy return (-1); 3188eda14cbcSMatt Macy } 3189eda14cbcSMatt Macy if (delim != NULL) 3190eda14cbcSMatt Macy tfield = delim + 1; 3191eda14cbcSMatt Macy } while (delim != NULL); 3192eda14cbcSMatt Macy } 3193eda14cbcSMatt Macy 3194eda14cbcSMatt Macy if ((zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_FILESYSTEM | 3195eda14cbcSMatt Macy ZFS_TYPE_SNAPSHOT)) == NULL) 3196eda14cbcSMatt Macy return (1); 3197eda14cbcSMatt Macy if (zhp->zfs_head_type != ZFS_TYPE_FILESYSTEM) { 3198eda14cbcSMatt Macy (void) fprintf(stderr, gettext("operation is only applicable " 3199eda14cbcSMatt Macy "to filesystems and their snapshots\n")); 3200eda14cbcSMatt Macy zfs_close(zhp); 3201eda14cbcSMatt Macy return (1); 3202eda14cbcSMatt Macy } 3203eda14cbcSMatt Macy 3204eda14cbcSMatt Macy if ((avl_pool = uu_avl_pool_create("us_avl_pool", sizeof (us_node_t), 3205eda14cbcSMatt Macy offsetof(us_node_t, usn_avlnode), us_compare, UU_DEFAULT)) == NULL) 3206eda14cbcSMatt Macy nomem(); 3207eda14cbcSMatt Macy if ((avl_tree = uu_avl_create(avl_pool, NULL, UU_DEFAULT)) == NULL) 3208eda14cbcSMatt Macy nomem(); 3209eda14cbcSMatt Macy 3210eda14cbcSMatt Macy /* Always add default sorting columns */ 3211eda14cbcSMatt Macy (void) zfs_add_sort_column(&sortcol, "type", B_FALSE); 3212eda14cbcSMatt Macy (void) zfs_add_sort_column(&sortcol, "name", B_FALSE); 3213eda14cbcSMatt Macy 3214eda14cbcSMatt Macy cb.cb_sortcol = sortcol; 3215eda14cbcSMatt Macy cb.cb_numname = prtnum; 3216eda14cbcSMatt Macy cb.cb_nicenum = !parsable; 3217eda14cbcSMatt Macy cb.cb_avl_pool = avl_pool; 3218eda14cbcSMatt Macy cb.cb_avl = avl_tree; 3219eda14cbcSMatt Macy cb.cb_sid2posix = sid2posix; 3220eda14cbcSMatt Macy 3221eda14cbcSMatt Macy for (i = 0; i < USFIELD_LAST; i++) 3222eda14cbcSMatt Macy cb.cb_width[i] = strlen(gettext(us_field_hdr[i])); 3223eda14cbcSMatt Macy 3224eda14cbcSMatt Macy for (p = 0; p < ZFS_NUM_USERQUOTA_PROPS; p++) { 3225eda14cbcSMatt Macy if ((zfs_prop_is_user(p) && 3226eda14cbcSMatt Macy !(types & (USTYPE_PSX_USR | USTYPE_SMB_USR))) || 3227eda14cbcSMatt Macy (zfs_prop_is_group(p) && 3228eda14cbcSMatt Macy !(types & (USTYPE_PSX_GRP | USTYPE_SMB_GRP))) || 3229eda14cbcSMatt Macy (zfs_prop_is_project(p) && types != USTYPE_PROJ)) 3230eda14cbcSMatt Macy continue; 3231eda14cbcSMatt Macy 3232eda14cbcSMatt Macy cb.cb_prop = p; 3233eda14cbcSMatt Macy if ((ret = zfs_userspace(zhp, p, userspace_cb, &cb)) != 0) { 3234eda14cbcSMatt Macy zfs_close(zhp); 3235eda14cbcSMatt Macy return (ret); 3236eda14cbcSMatt Macy } 3237eda14cbcSMatt Macy } 3238eda14cbcSMatt Macy zfs_close(zhp); 3239eda14cbcSMatt Macy 3240eda14cbcSMatt Macy /* Sort the list */ 3241eda14cbcSMatt Macy if ((node = uu_avl_first(avl_tree)) == NULL) 3242eda14cbcSMatt Macy return (0); 3243eda14cbcSMatt Macy 3244eda14cbcSMatt Macy us_populated = B_TRUE; 3245eda14cbcSMatt Macy 3246eda14cbcSMatt Macy listpool = uu_list_pool_create("tmplist", sizeof (us_node_t), 3247eda14cbcSMatt Macy offsetof(us_node_t, usn_listnode), NULL, UU_DEFAULT); 3248eda14cbcSMatt Macy list = uu_list_create(listpool, NULL, UU_DEFAULT); 3249eda14cbcSMatt Macy uu_list_node_init(node, &node->usn_listnode, listpool); 3250eda14cbcSMatt Macy 3251eda14cbcSMatt Macy while (node != NULL) { 3252eda14cbcSMatt Macy rmnode = node; 3253eda14cbcSMatt Macy node = uu_avl_next(avl_tree, node); 3254eda14cbcSMatt Macy uu_avl_remove(avl_tree, rmnode); 3255eda14cbcSMatt Macy if (uu_list_find(list, rmnode, NULL, &idx2) == NULL) 3256eda14cbcSMatt Macy uu_list_insert(list, rmnode, idx2); 3257eda14cbcSMatt Macy } 3258eda14cbcSMatt Macy 3259eda14cbcSMatt Macy for (node = uu_list_first(list); node != NULL; 3260eda14cbcSMatt Macy node = uu_list_next(list, node)) { 3261eda14cbcSMatt Macy us_sort_info_t sortinfo = { sortcol, cb.cb_numname }; 3262eda14cbcSMatt Macy 3263eda14cbcSMatt Macy if (uu_avl_find(avl_tree, node, &sortinfo, &idx) == NULL) 3264eda14cbcSMatt Macy uu_avl_insert(avl_tree, node, idx); 3265eda14cbcSMatt Macy } 3266eda14cbcSMatt Macy 3267eda14cbcSMatt Macy uu_list_destroy(list); 3268eda14cbcSMatt Macy uu_list_pool_destroy(listpool); 3269eda14cbcSMatt Macy 3270eda14cbcSMatt Macy /* Print and free node nvlist memory */ 3271eda14cbcSMatt Macy print_us(scripted, parsable, fields, types, cb.cb_width, B_TRUE, 3272eda14cbcSMatt Macy cb.cb_avl); 3273eda14cbcSMatt Macy 3274eda14cbcSMatt Macy zfs_free_sort_columns(sortcol); 3275eda14cbcSMatt Macy 3276eda14cbcSMatt Macy /* Clean up the AVL tree */ 3277eda14cbcSMatt Macy if ((walk = uu_avl_walk_start(cb.cb_avl, UU_WALK_ROBUST)) == NULL) 3278eda14cbcSMatt Macy nomem(); 3279eda14cbcSMatt Macy 3280eda14cbcSMatt Macy while ((node = uu_avl_walk_next(walk)) != NULL) { 3281eda14cbcSMatt Macy uu_avl_remove(cb.cb_avl, node); 3282eda14cbcSMatt Macy free(node); 3283eda14cbcSMatt Macy } 3284eda14cbcSMatt Macy 3285eda14cbcSMatt Macy uu_avl_walk_end(walk); 3286eda14cbcSMatt Macy uu_avl_destroy(avl_tree); 3287eda14cbcSMatt Macy uu_avl_pool_destroy(avl_pool); 3288eda14cbcSMatt Macy 3289eda14cbcSMatt Macy return (ret); 3290eda14cbcSMatt Macy } 3291eda14cbcSMatt Macy 3292eda14cbcSMatt Macy /* 3293eda14cbcSMatt Macy * list [-Hp][-r|-d max] [-o property[,...]] [-s property] ... [-S property] 3294eda14cbcSMatt Macy * [-t type[,...]] [filesystem|volume|snapshot] ... 3295eda14cbcSMatt Macy * 3296eda14cbcSMatt Macy * -H Scripted mode; elide headers and separate columns by tabs 3297eda14cbcSMatt Macy * -p Display values in parsable (literal) format. 3298eda14cbcSMatt Macy * -r Recurse over all children 3299eda14cbcSMatt Macy * -d Limit recursion by depth. 3300eda14cbcSMatt Macy * -o Control which fields to display. 3301eda14cbcSMatt Macy * -s Specify sort columns, descending order. 3302eda14cbcSMatt Macy * -S Specify sort columns, ascending order. 3303eda14cbcSMatt Macy * -t Control which object types to display. 3304eda14cbcSMatt Macy * 3305eda14cbcSMatt Macy * When given no arguments, list all filesystems in the system. 3306eda14cbcSMatt Macy * Otherwise, list the specified datasets, optionally recursing down them if 3307eda14cbcSMatt Macy * '-r' is specified. 3308eda14cbcSMatt Macy */ 3309eda14cbcSMatt Macy typedef struct list_cbdata { 3310eda14cbcSMatt Macy boolean_t cb_first; 3311eda14cbcSMatt Macy boolean_t cb_literal; 3312eda14cbcSMatt Macy boolean_t cb_scripted; 3313eda14cbcSMatt Macy zprop_list_t *cb_proplist; 3314eda14cbcSMatt Macy } list_cbdata_t; 3315eda14cbcSMatt Macy 3316eda14cbcSMatt Macy /* 3317eda14cbcSMatt Macy * Given a list of columns to display, output appropriate headers for each one. 3318eda14cbcSMatt Macy */ 3319eda14cbcSMatt Macy static void 3320eda14cbcSMatt Macy print_header(list_cbdata_t *cb) 3321eda14cbcSMatt Macy { 3322eda14cbcSMatt Macy zprop_list_t *pl = cb->cb_proplist; 3323eda14cbcSMatt Macy char headerbuf[ZFS_MAXPROPLEN]; 3324eda14cbcSMatt Macy const char *header; 3325eda14cbcSMatt Macy int i; 3326eda14cbcSMatt Macy boolean_t first = B_TRUE; 3327eda14cbcSMatt Macy boolean_t right_justify; 3328eda14cbcSMatt Macy 3329eda14cbcSMatt Macy for (; pl != NULL; pl = pl->pl_next) { 3330eda14cbcSMatt Macy if (!first) { 3331eda14cbcSMatt Macy (void) printf(" "); 3332eda14cbcSMatt Macy } else { 3333eda14cbcSMatt Macy first = B_FALSE; 3334eda14cbcSMatt Macy } 3335eda14cbcSMatt Macy 3336eda14cbcSMatt Macy right_justify = B_FALSE; 3337eda14cbcSMatt Macy if (pl->pl_prop != ZPROP_INVAL) { 3338eda14cbcSMatt Macy header = zfs_prop_column_name(pl->pl_prop); 3339eda14cbcSMatt Macy right_justify = zfs_prop_align_right(pl->pl_prop); 3340eda14cbcSMatt Macy } else { 3341eda14cbcSMatt Macy for (i = 0; pl->pl_user_prop[i] != '\0'; i++) 3342eda14cbcSMatt Macy headerbuf[i] = toupper(pl->pl_user_prop[i]); 3343eda14cbcSMatt Macy headerbuf[i] = '\0'; 3344eda14cbcSMatt Macy header = headerbuf; 3345eda14cbcSMatt Macy } 3346eda14cbcSMatt Macy 3347eda14cbcSMatt Macy if (pl->pl_next == NULL && !right_justify) 3348eda14cbcSMatt Macy (void) printf("%s", header); 3349eda14cbcSMatt Macy else if (right_justify) 3350eda14cbcSMatt Macy (void) printf("%*s", (int)pl->pl_width, header); 3351eda14cbcSMatt Macy else 3352eda14cbcSMatt Macy (void) printf("%-*s", (int)pl->pl_width, header); 3353eda14cbcSMatt Macy } 3354eda14cbcSMatt Macy 3355eda14cbcSMatt Macy (void) printf("\n"); 3356eda14cbcSMatt Macy } 3357eda14cbcSMatt Macy 3358eda14cbcSMatt Macy /* 3359eda14cbcSMatt Macy * Given a dataset and a list of fields, print out all the properties according 3360eda14cbcSMatt Macy * to the described layout. 3361eda14cbcSMatt Macy */ 3362eda14cbcSMatt Macy static void 3363eda14cbcSMatt Macy print_dataset(zfs_handle_t *zhp, list_cbdata_t *cb) 3364eda14cbcSMatt Macy { 3365eda14cbcSMatt Macy zprop_list_t *pl = cb->cb_proplist; 3366eda14cbcSMatt Macy boolean_t first = B_TRUE; 3367eda14cbcSMatt Macy char property[ZFS_MAXPROPLEN]; 3368eda14cbcSMatt Macy nvlist_t *userprops = zfs_get_user_props(zhp); 3369eda14cbcSMatt Macy nvlist_t *propval; 3370eda14cbcSMatt Macy char *propstr; 3371eda14cbcSMatt Macy boolean_t right_justify; 3372eda14cbcSMatt Macy 3373eda14cbcSMatt Macy for (; pl != NULL; pl = pl->pl_next) { 3374eda14cbcSMatt Macy if (!first) { 3375eda14cbcSMatt Macy if (cb->cb_scripted) 3376eda14cbcSMatt Macy (void) printf("\t"); 3377eda14cbcSMatt Macy else 3378eda14cbcSMatt Macy (void) printf(" "); 3379eda14cbcSMatt Macy } else { 3380eda14cbcSMatt Macy first = B_FALSE; 3381eda14cbcSMatt Macy } 3382eda14cbcSMatt Macy 3383eda14cbcSMatt Macy if (pl->pl_prop == ZFS_PROP_NAME) { 3384eda14cbcSMatt Macy (void) strlcpy(property, zfs_get_name(zhp), 3385eda14cbcSMatt Macy sizeof (property)); 3386eda14cbcSMatt Macy propstr = property; 3387eda14cbcSMatt Macy right_justify = zfs_prop_align_right(pl->pl_prop); 3388eda14cbcSMatt Macy } else if (pl->pl_prop != ZPROP_INVAL) { 3389eda14cbcSMatt Macy if (zfs_prop_get(zhp, pl->pl_prop, property, 3390eda14cbcSMatt Macy sizeof (property), NULL, NULL, 0, 3391eda14cbcSMatt Macy cb->cb_literal) != 0) 3392eda14cbcSMatt Macy propstr = "-"; 3393eda14cbcSMatt Macy else 3394eda14cbcSMatt Macy propstr = property; 3395eda14cbcSMatt Macy right_justify = zfs_prop_align_right(pl->pl_prop); 3396eda14cbcSMatt Macy } else if (zfs_prop_userquota(pl->pl_user_prop)) { 3397eda14cbcSMatt Macy if (zfs_prop_get_userquota(zhp, pl->pl_user_prop, 3398eda14cbcSMatt Macy property, sizeof (property), cb->cb_literal) != 0) 3399eda14cbcSMatt Macy propstr = "-"; 3400eda14cbcSMatt Macy else 3401eda14cbcSMatt Macy propstr = property; 3402eda14cbcSMatt Macy right_justify = B_TRUE; 3403eda14cbcSMatt Macy } else if (zfs_prop_written(pl->pl_user_prop)) { 3404eda14cbcSMatt Macy if (zfs_prop_get_written(zhp, pl->pl_user_prop, 3405eda14cbcSMatt Macy property, sizeof (property), cb->cb_literal) != 0) 3406eda14cbcSMatt Macy propstr = "-"; 3407eda14cbcSMatt Macy else 3408eda14cbcSMatt Macy propstr = property; 3409eda14cbcSMatt Macy right_justify = B_TRUE; 3410eda14cbcSMatt Macy } else { 3411eda14cbcSMatt Macy if (nvlist_lookup_nvlist(userprops, 3412eda14cbcSMatt Macy pl->pl_user_prop, &propval) != 0) 3413eda14cbcSMatt Macy propstr = "-"; 3414eda14cbcSMatt Macy else 3415eda14cbcSMatt Macy verify(nvlist_lookup_string(propval, 3416eda14cbcSMatt Macy ZPROP_VALUE, &propstr) == 0); 3417eda14cbcSMatt Macy right_justify = B_FALSE; 3418eda14cbcSMatt Macy } 3419eda14cbcSMatt Macy 3420eda14cbcSMatt Macy /* 3421eda14cbcSMatt Macy * If this is being called in scripted mode, or if this is the 3422eda14cbcSMatt Macy * last column and it is left-justified, don't include a width 3423eda14cbcSMatt Macy * format specifier. 3424eda14cbcSMatt Macy */ 3425eda14cbcSMatt Macy if (cb->cb_scripted || (pl->pl_next == NULL && !right_justify)) 3426eda14cbcSMatt Macy (void) printf("%s", propstr); 3427eda14cbcSMatt Macy else if (right_justify) 3428eda14cbcSMatt Macy (void) printf("%*s", (int)pl->pl_width, propstr); 3429eda14cbcSMatt Macy else 3430eda14cbcSMatt Macy (void) printf("%-*s", (int)pl->pl_width, propstr); 3431eda14cbcSMatt Macy } 3432eda14cbcSMatt Macy 3433eda14cbcSMatt Macy (void) printf("\n"); 3434eda14cbcSMatt Macy } 3435eda14cbcSMatt Macy 3436eda14cbcSMatt Macy /* 3437eda14cbcSMatt Macy * Generic callback function to list a dataset or snapshot. 3438eda14cbcSMatt Macy */ 3439eda14cbcSMatt Macy static int 3440eda14cbcSMatt Macy list_callback(zfs_handle_t *zhp, void *data) 3441eda14cbcSMatt Macy { 3442eda14cbcSMatt Macy list_cbdata_t *cbp = data; 3443eda14cbcSMatt Macy 3444eda14cbcSMatt Macy if (cbp->cb_first) { 3445eda14cbcSMatt Macy if (!cbp->cb_scripted) 3446eda14cbcSMatt Macy print_header(cbp); 3447eda14cbcSMatt Macy cbp->cb_first = B_FALSE; 3448eda14cbcSMatt Macy } 3449eda14cbcSMatt Macy 3450eda14cbcSMatt Macy print_dataset(zhp, cbp); 3451eda14cbcSMatt Macy 3452eda14cbcSMatt Macy return (0); 3453eda14cbcSMatt Macy } 3454eda14cbcSMatt Macy 3455eda14cbcSMatt Macy static int 3456eda14cbcSMatt Macy zfs_do_list(int argc, char **argv) 3457eda14cbcSMatt Macy { 3458eda14cbcSMatt Macy int c; 3459eda14cbcSMatt Macy static char default_fields[] = 3460eda14cbcSMatt Macy "name,used,available,referenced,mountpoint"; 3461eda14cbcSMatt Macy int types = ZFS_TYPE_DATASET; 3462eda14cbcSMatt Macy boolean_t types_specified = B_FALSE; 3463eda14cbcSMatt Macy char *fields = NULL; 3464eda14cbcSMatt Macy list_cbdata_t cb = { 0 }; 3465eda14cbcSMatt Macy char *value; 3466eda14cbcSMatt Macy int limit = 0; 3467eda14cbcSMatt Macy int ret = 0; 3468eda14cbcSMatt Macy zfs_sort_column_t *sortcol = NULL; 3469eda14cbcSMatt Macy int flags = ZFS_ITER_PROP_LISTSNAPS | ZFS_ITER_ARGS_CAN_BE_PATHS; 3470eda14cbcSMatt Macy 3471eda14cbcSMatt Macy /* check options */ 3472eda14cbcSMatt Macy while ((c = getopt(argc, argv, "HS:d:o:prs:t:")) != -1) { 3473eda14cbcSMatt Macy switch (c) { 3474eda14cbcSMatt Macy case 'o': 3475eda14cbcSMatt Macy fields = optarg; 3476eda14cbcSMatt Macy break; 3477eda14cbcSMatt Macy case 'p': 3478eda14cbcSMatt Macy cb.cb_literal = B_TRUE; 3479eda14cbcSMatt Macy flags |= ZFS_ITER_LITERAL_PROPS; 3480eda14cbcSMatt Macy break; 3481eda14cbcSMatt Macy case 'd': 3482eda14cbcSMatt Macy limit = parse_depth(optarg, &flags); 3483eda14cbcSMatt Macy break; 3484eda14cbcSMatt Macy case 'r': 3485eda14cbcSMatt Macy flags |= ZFS_ITER_RECURSE; 3486eda14cbcSMatt Macy break; 3487eda14cbcSMatt Macy case 'H': 3488eda14cbcSMatt Macy cb.cb_scripted = B_TRUE; 3489eda14cbcSMatt Macy break; 3490eda14cbcSMatt Macy case 's': 3491eda14cbcSMatt Macy if (zfs_add_sort_column(&sortcol, optarg, 3492eda14cbcSMatt Macy B_FALSE) != 0) { 3493eda14cbcSMatt Macy (void) fprintf(stderr, 3494eda14cbcSMatt Macy gettext("invalid property '%s'\n"), optarg); 3495eda14cbcSMatt Macy usage(B_FALSE); 3496eda14cbcSMatt Macy } 3497eda14cbcSMatt Macy break; 3498eda14cbcSMatt Macy case 'S': 3499eda14cbcSMatt Macy if (zfs_add_sort_column(&sortcol, optarg, 3500eda14cbcSMatt Macy B_TRUE) != 0) { 3501eda14cbcSMatt Macy (void) fprintf(stderr, 3502eda14cbcSMatt Macy gettext("invalid property '%s'\n"), optarg); 3503eda14cbcSMatt Macy usage(B_FALSE); 3504eda14cbcSMatt Macy } 3505eda14cbcSMatt Macy break; 3506eda14cbcSMatt Macy case 't': 3507eda14cbcSMatt Macy types = 0; 3508eda14cbcSMatt Macy types_specified = B_TRUE; 3509eda14cbcSMatt Macy flags &= ~ZFS_ITER_PROP_LISTSNAPS; 3510eda14cbcSMatt Macy while (*optarg != '\0') { 3511eda14cbcSMatt Macy static char *type_subopts[] = { "filesystem", 3512eda14cbcSMatt Macy "volume", "snapshot", "snap", "bookmark", 3513eda14cbcSMatt Macy "all", NULL }; 3514eda14cbcSMatt Macy 3515eda14cbcSMatt Macy switch (getsubopt(&optarg, type_subopts, 3516eda14cbcSMatt Macy &value)) { 3517eda14cbcSMatt Macy case 0: 3518eda14cbcSMatt Macy types |= ZFS_TYPE_FILESYSTEM; 3519eda14cbcSMatt Macy break; 3520eda14cbcSMatt Macy case 1: 3521eda14cbcSMatt Macy types |= ZFS_TYPE_VOLUME; 3522eda14cbcSMatt Macy break; 3523eda14cbcSMatt Macy case 2: 3524eda14cbcSMatt Macy case 3: 3525eda14cbcSMatt Macy types |= ZFS_TYPE_SNAPSHOT; 3526eda14cbcSMatt Macy break; 3527eda14cbcSMatt Macy case 4: 3528eda14cbcSMatt Macy types |= ZFS_TYPE_BOOKMARK; 3529eda14cbcSMatt Macy break; 3530eda14cbcSMatt Macy case 5: 3531eda14cbcSMatt Macy types = ZFS_TYPE_DATASET | 3532eda14cbcSMatt Macy ZFS_TYPE_BOOKMARK; 3533eda14cbcSMatt Macy break; 3534eda14cbcSMatt Macy default: 3535eda14cbcSMatt Macy (void) fprintf(stderr, 3536eda14cbcSMatt Macy gettext("invalid type '%s'\n"), 3537eda14cbcSMatt Macy value); 3538eda14cbcSMatt Macy usage(B_FALSE); 3539eda14cbcSMatt Macy } 3540eda14cbcSMatt Macy } 3541eda14cbcSMatt Macy break; 3542eda14cbcSMatt Macy case ':': 3543eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing argument for " 3544eda14cbcSMatt Macy "'%c' option\n"), optopt); 3545eda14cbcSMatt Macy usage(B_FALSE); 3546eda14cbcSMatt Macy break; 3547eda14cbcSMatt Macy case '?': 3548eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 3549eda14cbcSMatt Macy optopt); 3550eda14cbcSMatt Macy usage(B_FALSE); 3551eda14cbcSMatt Macy } 3552eda14cbcSMatt Macy } 3553eda14cbcSMatt Macy 3554eda14cbcSMatt Macy argc -= optind; 3555eda14cbcSMatt Macy argv += optind; 3556eda14cbcSMatt Macy 3557eda14cbcSMatt Macy if (fields == NULL) 3558eda14cbcSMatt Macy fields = default_fields; 3559eda14cbcSMatt Macy 3560eda14cbcSMatt Macy /* 3561eda14cbcSMatt Macy * If we are only going to list snapshot names and sort by name, 3562eda14cbcSMatt Macy * then we can use faster version. 3563eda14cbcSMatt Macy */ 3564eda14cbcSMatt Macy if (strcmp(fields, "name") == 0 && zfs_sort_only_by_name(sortcol)) 3565eda14cbcSMatt Macy flags |= ZFS_ITER_SIMPLE; 3566eda14cbcSMatt Macy 3567eda14cbcSMatt Macy /* 3568eda14cbcSMatt Macy * If "-o space" and no types were specified, don't display snapshots. 3569eda14cbcSMatt Macy */ 3570eda14cbcSMatt Macy if (strcmp(fields, "space") == 0 && types_specified == B_FALSE) 3571eda14cbcSMatt Macy types &= ~ZFS_TYPE_SNAPSHOT; 3572eda14cbcSMatt Macy 3573eda14cbcSMatt Macy /* 3574eda14cbcSMatt Macy * Handle users who want to list all snapshots or bookmarks 3575eda14cbcSMatt Macy * of the current dataset (ex. 'zfs list -t snapshot <dataset>'). 3576eda14cbcSMatt Macy */ 3577eda14cbcSMatt Macy if ((types == ZFS_TYPE_SNAPSHOT || types == ZFS_TYPE_BOOKMARK) && 3578eda14cbcSMatt Macy argc > 0 && (flags & ZFS_ITER_RECURSE) == 0 && limit == 0) { 3579eda14cbcSMatt Macy flags |= (ZFS_ITER_DEPTH_LIMIT | ZFS_ITER_RECURSE); 3580eda14cbcSMatt Macy limit = 1; 3581eda14cbcSMatt Macy } 3582eda14cbcSMatt Macy 3583eda14cbcSMatt Macy /* 3584eda14cbcSMatt Macy * If the user specifies '-o all', the zprop_get_list() doesn't 3585eda14cbcSMatt Macy * normally include the name of the dataset. For 'zfs list', we always 3586eda14cbcSMatt Macy * want this property to be first. 3587eda14cbcSMatt Macy */ 3588eda14cbcSMatt Macy if (zprop_get_list(g_zfs, fields, &cb.cb_proplist, ZFS_TYPE_DATASET) 3589eda14cbcSMatt Macy != 0) 3590eda14cbcSMatt Macy usage(B_FALSE); 3591eda14cbcSMatt Macy 3592eda14cbcSMatt Macy cb.cb_first = B_TRUE; 3593eda14cbcSMatt Macy 3594eda14cbcSMatt Macy ret = zfs_for_each(argc, argv, flags, types, sortcol, &cb.cb_proplist, 3595eda14cbcSMatt Macy limit, list_callback, &cb); 3596eda14cbcSMatt Macy 3597eda14cbcSMatt Macy zprop_free_list(cb.cb_proplist); 3598eda14cbcSMatt Macy zfs_free_sort_columns(sortcol); 3599eda14cbcSMatt Macy 3600eda14cbcSMatt Macy if (ret == 0 && cb.cb_first && !cb.cb_scripted) 3601eda14cbcSMatt Macy (void) fprintf(stderr, gettext("no datasets available\n")); 3602eda14cbcSMatt Macy 3603eda14cbcSMatt Macy return (ret); 3604eda14cbcSMatt Macy } 3605eda14cbcSMatt Macy 3606eda14cbcSMatt Macy /* 3607*eac7052fSMatt Macy * zfs rename [-fu] <fs | snap | vol> <fs | snap | vol> 3608eda14cbcSMatt Macy * zfs rename [-f] -p <fs | vol> <fs | vol> 3609*eac7052fSMatt Macy * zfs rename [-u] -r <snap> <snap> 3610eda14cbcSMatt Macy * 3611eda14cbcSMatt Macy * Renames the given dataset to another of the same type. 3612eda14cbcSMatt Macy * 3613eda14cbcSMatt Macy * The '-p' flag creates all the non-existing ancestors of the target first. 3614*eac7052fSMatt Macy * The '-u' flag prevents file systems from being remounted during rename. 3615eda14cbcSMatt Macy */ 3616eda14cbcSMatt Macy /* ARGSUSED */ 3617eda14cbcSMatt Macy static int 3618eda14cbcSMatt Macy zfs_do_rename(int argc, char **argv) 3619eda14cbcSMatt Macy { 3620eda14cbcSMatt Macy zfs_handle_t *zhp; 3621*eac7052fSMatt Macy renameflags_t flags = { 0 }; 3622eda14cbcSMatt Macy int c; 3623eda14cbcSMatt Macy int ret = 0; 3624*eac7052fSMatt Macy int types; 3625eda14cbcSMatt Macy boolean_t parents = B_FALSE; 3626eda14cbcSMatt Macy 3627eda14cbcSMatt Macy /* check options */ 3628*eac7052fSMatt Macy while ((c = getopt(argc, argv, "pruf")) != -1) { 3629eda14cbcSMatt Macy switch (c) { 3630eda14cbcSMatt Macy case 'p': 3631eda14cbcSMatt Macy parents = B_TRUE; 3632eda14cbcSMatt Macy break; 3633eda14cbcSMatt Macy case 'r': 3634*eac7052fSMatt Macy flags.recursive = B_TRUE; 3635*eac7052fSMatt Macy break; 3636*eac7052fSMatt Macy case 'u': 3637*eac7052fSMatt Macy flags.nounmount = B_TRUE; 3638eda14cbcSMatt Macy break; 3639eda14cbcSMatt Macy case 'f': 3640*eac7052fSMatt Macy flags.forceunmount = B_TRUE; 3641eda14cbcSMatt Macy break; 3642eda14cbcSMatt Macy case '?': 3643eda14cbcSMatt Macy default: 3644eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 3645eda14cbcSMatt Macy optopt); 3646eda14cbcSMatt Macy usage(B_FALSE); 3647eda14cbcSMatt Macy } 3648eda14cbcSMatt Macy } 3649eda14cbcSMatt Macy 3650eda14cbcSMatt Macy argc -= optind; 3651eda14cbcSMatt Macy argv += optind; 3652eda14cbcSMatt Macy 3653eda14cbcSMatt Macy /* check number of arguments */ 3654eda14cbcSMatt Macy if (argc < 1) { 3655eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing source dataset " 3656eda14cbcSMatt Macy "argument\n")); 3657eda14cbcSMatt Macy usage(B_FALSE); 3658eda14cbcSMatt Macy } 3659eda14cbcSMatt Macy if (argc < 2) { 3660eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing target dataset " 3661eda14cbcSMatt Macy "argument\n")); 3662eda14cbcSMatt Macy usage(B_FALSE); 3663eda14cbcSMatt Macy } 3664eda14cbcSMatt Macy if (argc > 2) { 3665eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 3666eda14cbcSMatt Macy usage(B_FALSE); 3667eda14cbcSMatt Macy } 3668eda14cbcSMatt Macy 3669*eac7052fSMatt Macy if (flags.recursive && parents) { 3670eda14cbcSMatt Macy (void) fprintf(stderr, gettext("-p and -r options are mutually " 3671eda14cbcSMatt Macy "exclusive\n")); 3672eda14cbcSMatt Macy usage(B_FALSE); 3673eda14cbcSMatt Macy } 3674eda14cbcSMatt Macy 3675*eac7052fSMatt Macy if (flags.nounmount && parents) { 3676*eac7052fSMatt Macy (void) fprintf(stderr, gettext("-u and -p options are mutually " 3677*eac7052fSMatt Macy "exclusive\n")); 3678*eac7052fSMatt Macy usage(B_FALSE); 3679*eac7052fSMatt Macy } 3680*eac7052fSMatt Macy 3681*eac7052fSMatt Macy if (flags.recursive && strchr(argv[0], '@') == 0) { 3682eda14cbcSMatt Macy (void) fprintf(stderr, gettext("source dataset for recursive " 3683eda14cbcSMatt Macy "rename must be a snapshot\n")); 3684eda14cbcSMatt Macy usage(B_FALSE); 3685eda14cbcSMatt Macy } 3686eda14cbcSMatt Macy 3687*eac7052fSMatt Macy if (flags.nounmount) 3688*eac7052fSMatt Macy types = ZFS_TYPE_FILESYSTEM; 3689*eac7052fSMatt Macy else if (parents) 3690*eac7052fSMatt Macy types = ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME; 3691*eac7052fSMatt Macy else 3692*eac7052fSMatt Macy types = ZFS_TYPE_DATASET; 3693*eac7052fSMatt Macy 3694*eac7052fSMatt Macy if ((zhp = zfs_open(g_zfs, argv[0], types)) == NULL) 3695eda14cbcSMatt Macy return (1); 3696eda14cbcSMatt Macy 3697eda14cbcSMatt Macy /* If we were asked and the name looks good, try to create ancestors. */ 3698eda14cbcSMatt Macy if (parents && zfs_name_valid(argv[1], zfs_get_type(zhp)) && 3699eda14cbcSMatt Macy zfs_create_ancestors(g_zfs, argv[1]) != 0) { 3700eda14cbcSMatt Macy zfs_close(zhp); 3701eda14cbcSMatt Macy return (1); 3702eda14cbcSMatt Macy } 3703eda14cbcSMatt Macy 3704*eac7052fSMatt Macy ret = (zfs_rename(zhp, argv[1], flags) != 0); 3705eda14cbcSMatt Macy 3706eda14cbcSMatt Macy zfs_close(zhp); 3707eda14cbcSMatt Macy return (ret); 3708eda14cbcSMatt Macy } 3709eda14cbcSMatt Macy 3710eda14cbcSMatt Macy /* 3711eda14cbcSMatt Macy * zfs promote <fs> 3712eda14cbcSMatt Macy * 3713eda14cbcSMatt Macy * Promotes the given clone fs to be the parent 3714eda14cbcSMatt Macy */ 3715eda14cbcSMatt Macy /* ARGSUSED */ 3716eda14cbcSMatt Macy static int 3717eda14cbcSMatt Macy zfs_do_promote(int argc, char **argv) 3718eda14cbcSMatt Macy { 3719eda14cbcSMatt Macy zfs_handle_t *zhp; 3720eda14cbcSMatt Macy int ret = 0; 3721eda14cbcSMatt Macy 3722eda14cbcSMatt Macy /* check options */ 3723eda14cbcSMatt Macy if (argc > 1 && argv[1][0] == '-') { 3724eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 3725eda14cbcSMatt Macy argv[1][1]); 3726eda14cbcSMatt Macy usage(B_FALSE); 3727eda14cbcSMatt Macy } 3728eda14cbcSMatt Macy 3729eda14cbcSMatt Macy /* check number of arguments */ 3730eda14cbcSMatt Macy if (argc < 2) { 3731eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing clone filesystem" 3732eda14cbcSMatt Macy " argument\n")); 3733eda14cbcSMatt Macy usage(B_FALSE); 3734eda14cbcSMatt Macy } 3735eda14cbcSMatt Macy if (argc > 2) { 3736eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 3737eda14cbcSMatt Macy usage(B_FALSE); 3738eda14cbcSMatt Macy } 3739eda14cbcSMatt Macy 3740eda14cbcSMatt Macy zhp = zfs_open(g_zfs, argv[1], ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME); 3741eda14cbcSMatt Macy if (zhp == NULL) 3742eda14cbcSMatt Macy return (1); 3743eda14cbcSMatt Macy 3744eda14cbcSMatt Macy ret = (zfs_promote(zhp) != 0); 3745eda14cbcSMatt Macy 3746eda14cbcSMatt Macy 3747eda14cbcSMatt Macy zfs_close(zhp); 3748eda14cbcSMatt Macy return (ret); 3749eda14cbcSMatt Macy } 3750eda14cbcSMatt Macy 3751eda14cbcSMatt Macy static int 3752eda14cbcSMatt Macy zfs_do_redact(int argc, char **argv) 3753eda14cbcSMatt Macy { 3754eda14cbcSMatt Macy char *snap = NULL; 3755eda14cbcSMatt Macy char *bookname = NULL; 3756eda14cbcSMatt Macy char **rsnaps = NULL; 3757eda14cbcSMatt Macy int numrsnaps = 0; 3758eda14cbcSMatt Macy argv++; 3759eda14cbcSMatt Macy argc--; 3760eda14cbcSMatt Macy if (argc < 3) { 3761eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too few arguments\n")); 3762eda14cbcSMatt Macy usage(B_FALSE); 3763eda14cbcSMatt Macy } 3764eda14cbcSMatt Macy 3765eda14cbcSMatt Macy snap = argv[0]; 3766eda14cbcSMatt Macy bookname = argv[1]; 3767eda14cbcSMatt Macy rsnaps = argv + 2; 3768eda14cbcSMatt Macy numrsnaps = argc - 2; 3769eda14cbcSMatt Macy 3770eda14cbcSMatt Macy nvlist_t *rsnapnv = fnvlist_alloc(); 3771eda14cbcSMatt Macy 3772eda14cbcSMatt Macy for (int i = 0; i < numrsnaps; i++) { 3773eda14cbcSMatt Macy fnvlist_add_boolean(rsnapnv, rsnaps[i]); 3774eda14cbcSMatt Macy } 3775eda14cbcSMatt Macy 3776eda14cbcSMatt Macy int err = lzc_redact(snap, bookname, rsnapnv); 3777eda14cbcSMatt Macy fnvlist_free(rsnapnv); 3778eda14cbcSMatt Macy 3779eda14cbcSMatt Macy switch (err) { 3780eda14cbcSMatt Macy case 0: 3781eda14cbcSMatt Macy break; 3782eda14cbcSMatt Macy case ENOENT: 3783eda14cbcSMatt Macy (void) fprintf(stderr, 3784eda14cbcSMatt Macy gettext("provided snapshot %s does not exist\n"), snap); 3785eda14cbcSMatt Macy break; 3786eda14cbcSMatt Macy case EEXIST: 3787eda14cbcSMatt Macy (void) fprintf(stderr, gettext("specified redaction bookmark " 3788eda14cbcSMatt Macy "(%s) provided already exists\n"), bookname); 3789eda14cbcSMatt Macy break; 3790eda14cbcSMatt Macy case ENAMETOOLONG: 3791eda14cbcSMatt Macy (void) fprintf(stderr, gettext("provided bookmark name cannot " 3792eda14cbcSMatt Macy "be used, final name would be too long\n")); 3793eda14cbcSMatt Macy break; 3794eda14cbcSMatt Macy case E2BIG: 3795eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many redaction snapshots " 3796eda14cbcSMatt Macy "specified\n")); 3797eda14cbcSMatt Macy break; 3798eda14cbcSMatt Macy case EINVAL: 3799eda14cbcSMatt Macy if (strchr(bookname, '#') != NULL) 3800eda14cbcSMatt Macy (void) fprintf(stderr, gettext( 3801eda14cbcSMatt Macy "redaction bookmark name must not contain '#'\n")); 3802eda14cbcSMatt Macy else 3803eda14cbcSMatt Macy (void) fprintf(stderr, gettext( 3804eda14cbcSMatt Macy "redaction snapshot must be descendent of " 3805eda14cbcSMatt Macy "snapshot being redacted\n")); 3806eda14cbcSMatt Macy break; 3807eda14cbcSMatt Macy case EALREADY: 3808eda14cbcSMatt Macy (void) fprintf(stderr, gettext("attempted to redact redacted " 3809eda14cbcSMatt Macy "dataset or with respect to redacted dataset\n")); 3810eda14cbcSMatt Macy break; 3811eda14cbcSMatt Macy case ENOTSUP: 3812eda14cbcSMatt Macy (void) fprintf(stderr, gettext("redaction bookmarks feature " 3813eda14cbcSMatt Macy "not enabled\n")); 3814eda14cbcSMatt Macy break; 3815eda14cbcSMatt Macy case EXDEV: 3816eda14cbcSMatt Macy (void) fprintf(stderr, gettext("potentially invalid redaction " 3817eda14cbcSMatt Macy "snapshot; full dataset names required\n")); 3818eda14cbcSMatt Macy break; 3819eda14cbcSMatt Macy default: 3820eda14cbcSMatt Macy (void) fprintf(stderr, gettext("internal error: %s\n"), 3821eda14cbcSMatt Macy strerror(errno)); 3822eda14cbcSMatt Macy } 3823eda14cbcSMatt Macy 3824eda14cbcSMatt Macy return (err); 3825eda14cbcSMatt Macy } 3826eda14cbcSMatt Macy 3827eda14cbcSMatt Macy /* 3828eda14cbcSMatt Macy * zfs rollback [-rRf] <snapshot> 3829eda14cbcSMatt Macy * 3830eda14cbcSMatt Macy * -r Delete any intervening snapshots before doing rollback 3831eda14cbcSMatt Macy * -R Delete any snapshots and their clones 3832eda14cbcSMatt Macy * -f ignored for backwards compatibility 3833eda14cbcSMatt Macy * 3834eda14cbcSMatt Macy * Given a filesystem, rollback to a specific snapshot, discarding any changes 3835eda14cbcSMatt Macy * since then and making it the active dataset. If more recent snapshots exist, 3836eda14cbcSMatt Macy * the command will complain unless the '-r' flag is given. 3837eda14cbcSMatt Macy */ 3838eda14cbcSMatt Macy typedef struct rollback_cbdata { 3839eda14cbcSMatt Macy uint64_t cb_create; 3840eda14cbcSMatt Macy uint8_t cb_younger_ds_printed; 3841eda14cbcSMatt Macy boolean_t cb_first; 3842eda14cbcSMatt Macy int cb_doclones; 3843eda14cbcSMatt Macy char *cb_target; 3844eda14cbcSMatt Macy int cb_error; 3845eda14cbcSMatt Macy boolean_t cb_recurse; 3846eda14cbcSMatt Macy } rollback_cbdata_t; 3847eda14cbcSMatt Macy 3848eda14cbcSMatt Macy static int 3849eda14cbcSMatt Macy rollback_check_dependent(zfs_handle_t *zhp, void *data) 3850eda14cbcSMatt Macy { 3851eda14cbcSMatt Macy rollback_cbdata_t *cbp = data; 3852eda14cbcSMatt Macy 3853eda14cbcSMatt Macy if (cbp->cb_first && cbp->cb_recurse) { 3854eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot rollback to " 3855eda14cbcSMatt Macy "'%s': clones of previous snapshots exist\n"), 3856eda14cbcSMatt Macy cbp->cb_target); 3857eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use '-R' to " 3858eda14cbcSMatt Macy "force deletion of the following clones and " 3859eda14cbcSMatt Macy "dependents:\n")); 3860eda14cbcSMatt Macy cbp->cb_first = 0; 3861eda14cbcSMatt Macy cbp->cb_error = 1; 3862eda14cbcSMatt Macy } 3863eda14cbcSMatt Macy 3864eda14cbcSMatt Macy (void) fprintf(stderr, "%s\n", zfs_get_name(zhp)); 3865eda14cbcSMatt Macy 3866eda14cbcSMatt Macy zfs_close(zhp); 3867eda14cbcSMatt Macy return (0); 3868eda14cbcSMatt Macy } 3869eda14cbcSMatt Macy 3870eda14cbcSMatt Macy 3871eda14cbcSMatt Macy /* 3872eda14cbcSMatt Macy * Report some snapshots/bookmarks more recent than the one specified. 3873eda14cbcSMatt Macy * Used when '-r' is not specified. We reuse this same callback for the 3874eda14cbcSMatt Macy * snapshot dependents - if 'cb_dependent' is set, then this is a 3875eda14cbcSMatt Macy * dependent and we should report it without checking the transaction group. 3876eda14cbcSMatt Macy */ 3877eda14cbcSMatt Macy static int 3878eda14cbcSMatt Macy rollback_check(zfs_handle_t *zhp, void *data) 3879eda14cbcSMatt Macy { 3880eda14cbcSMatt Macy rollback_cbdata_t *cbp = data; 3881eda14cbcSMatt Macy /* 3882eda14cbcSMatt Macy * Max number of younger snapshots and/or bookmarks to display before 3883eda14cbcSMatt Macy * we stop the iteration. 3884eda14cbcSMatt Macy */ 3885eda14cbcSMatt Macy const uint8_t max_younger = 32; 3886eda14cbcSMatt Macy 3887eda14cbcSMatt Macy if (cbp->cb_doclones) { 3888eda14cbcSMatt Macy zfs_close(zhp); 3889eda14cbcSMatt Macy return (0); 3890eda14cbcSMatt Macy } 3891eda14cbcSMatt Macy 3892eda14cbcSMatt Macy if (zfs_prop_get_int(zhp, ZFS_PROP_CREATETXG) > cbp->cb_create) { 3893eda14cbcSMatt Macy if (cbp->cb_first && !cbp->cb_recurse) { 3894eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot " 3895eda14cbcSMatt Macy "rollback to '%s': more recent snapshots " 3896eda14cbcSMatt Macy "or bookmarks exist\n"), 3897eda14cbcSMatt Macy cbp->cb_target); 3898eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use '-r' to " 3899eda14cbcSMatt Macy "force deletion of the following " 3900eda14cbcSMatt Macy "snapshots and bookmarks:\n")); 3901eda14cbcSMatt Macy cbp->cb_first = 0; 3902eda14cbcSMatt Macy cbp->cb_error = 1; 3903eda14cbcSMatt Macy } 3904eda14cbcSMatt Macy 3905eda14cbcSMatt Macy if (cbp->cb_recurse) { 3906eda14cbcSMatt Macy if (zfs_iter_dependents(zhp, B_TRUE, 3907eda14cbcSMatt Macy rollback_check_dependent, cbp) != 0) { 3908eda14cbcSMatt Macy zfs_close(zhp); 3909eda14cbcSMatt Macy return (-1); 3910eda14cbcSMatt Macy } 3911eda14cbcSMatt Macy } else { 3912eda14cbcSMatt Macy (void) fprintf(stderr, "%s\n", 3913eda14cbcSMatt Macy zfs_get_name(zhp)); 3914eda14cbcSMatt Macy cbp->cb_younger_ds_printed++; 3915eda14cbcSMatt Macy } 3916eda14cbcSMatt Macy } 3917eda14cbcSMatt Macy zfs_close(zhp); 3918eda14cbcSMatt Macy 3919eda14cbcSMatt Macy if (cbp->cb_younger_ds_printed == max_younger) { 3920eda14cbcSMatt Macy /* 3921eda14cbcSMatt Macy * This non-recursive rollback is going to fail due to the 3922eda14cbcSMatt Macy * presence of snapshots and/or bookmarks that are younger than 3923eda14cbcSMatt Macy * the rollback target. 3924eda14cbcSMatt Macy * We printed some of the offending objects, now we stop 3925eda14cbcSMatt Macy * zfs_iter_snapshot/bookmark iteration so we can fail fast and 3926eda14cbcSMatt Macy * avoid iterating over the rest of the younger objects 3927eda14cbcSMatt Macy */ 3928eda14cbcSMatt Macy (void) fprintf(stderr, gettext("Output limited to %d " 3929eda14cbcSMatt Macy "snapshots/bookmarks\n"), max_younger); 3930eda14cbcSMatt Macy return (-1); 3931eda14cbcSMatt Macy } 3932eda14cbcSMatt Macy return (0); 3933eda14cbcSMatt Macy } 3934eda14cbcSMatt Macy 3935eda14cbcSMatt Macy static int 3936eda14cbcSMatt Macy zfs_do_rollback(int argc, char **argv) 3937eda14cbcSMatt Macy { 3938eda14cbcSMatt Macy int ret = 0; 3939eda14cbcSMatt Macy int c; 3940eda14cbcSMatt Macy boolean_t force = B_FALSE; 3941eda14cbcSMatt Macy rollback_cbdata_t cb = { 0 }; 3942eda14cbcSMatt Macy zfs_handle_t *zhp, *snap; 3943eda14cbcSMatt Macy char parentname[ZFS_MAX_DATASET_NAME_LEN]; 3944eda14cbcSMatt Macy char *delim; 3945eda14cbcSMatt Macy uint64_t min_txg = 0; 3946eda14cbcSMatt Macy 3947eda14cbcSMatt Macy /* check options */ 3948eda14cbcSMatt Macy while ((c = getopt(argc, argv, "rRf")) != -1) { 3949eda14cbcSMatt Macy switch (c) { 3950eda14cbcSMatt Macy case 'r': 3951eda14cbcSMatt Macy cb.cb_recurse = 1; 3952eda14cbcSMatt Macy break; 3953eda14cbcSMatt Macy case 'R': 3954eda14cbcSMatt Macy cb.cb_recurse = 1; 3955eda14cbcSMatt Macy cb.cb_doclones = 1; 3956eda14cbcSMatt Macy break; 3957eda14cbcSMatt Macy case 'f': 3958eda14cbcSMatt Macy force = B_TRUE; 3959eda14cbcSMatt Macy break; 3960eda14cbcSMatt Macy case '?': 3961eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 3962eda14cbcSMatt Macy optopt); 3963eda14cbcSMatt Macy usage(B_FALSE); 3964eda14cbcSMatt Macy } 3965eda14cbcSMatt Macy } 3966eda14cbcSMatt Macy 3967eda14cbcSMatt Macy argc -= optind; 3968eda14cbcSMatt Macy argv += optind; 3969eda14cbcSMatt Macy 3970eda14cbcSMatt Macy /* check number of arguments */ 3971eda14cbcSMatt Macy if (argc < 1) { 3972eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing dataset argument\n")); 3973eda14cbcSMatt Macy usage(B_FALSE); 3974eda14cbcSMatt Macy } 3975eda14cbcSMatt Macy if (argc > 1) { 3976eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 3977eda14cbcSMatt Macy usage(B_FALSE); 3978eda14cbcSMatt Macy } 3979eda14cbcSMatt Macy 3980eda14cbcSMatt Macy /* open the snapshot */ 3981eda14cbcSMatt Macy if ((snap = zfs_open(g_zfs, argv[0], ZFS_TYPE_SNAPSHOT)) == NULL) 3982eda14cbcSMatt Macy return (1); 3983eda14cbcSMatt Macy 3984eda14cbcSMatt Macy /* open the parent dataset */ 3985eda14cbcSMatt Macy (void) strlcpy(parentname, argv[0], sizeof (parentname)); 3986eda14cbcSMatt Macy verify((delim = strrchr(parentname, '@')) != NULL); 3987eda14cbcSMatt Macy *delim = '\0'; 3988eda14cbcSMatt Macy if ((zhp = zfs_open(g_zfs, parentname, ZFS_TYPE_DATASET)) == NULL) { 3989eda14cbcSMatt Macy zfs_close(snap); 3990eda14cbcSMatt Macy return (1); 3991eda14cbcSMatt Macy } 3992eda14cbcSMatt Macy 3993eda14cbcSMatt Macy /* 3994eda14cbcSMatt Macy * Check for more recent snapshots and/or clones based on the presence 3995eda14cbcSMatt Macy * of '-r' and '-R'. 3996eda14cbcSMatt Macy */ 3997eda14cbcSMatt Macy cb.cb_target = argv[0]; 3998eda14cbcSMatt Macy cb.cb_create = zfs_prop_get_int(snap, ZFS_PROP_CREATETXG); 3999eda14cbcSMatt Macy cb.cb_first = B_TRUE; 4000eda14cbcSMatt Macy cb.cb_error = 0; 4001eda14cbcSMatt Macy 4002eda14cbcSMatt Macy if (cb.cb_create > 0) 4003eda14cbcSMatt Macy min_txg = cb.cb_create; 4004eda14cbcSMatt Macy 4005eda14cbcSMatt Macy if ((ret = zfs_iter_snapshots(zhp, B_FALSE, rollback_check, &cb, 4006eda14cbcSMatt Macy min_txg, 0)) != 0) 4007eda14cbcSMatt Macy goto out; 4008eda14cbcSMatt Macy if ((ret = zfs_iter_bookmarks(zhp, rollback_check, &cb)) != 0) 4009eda14cbcSMatt Macy goto out; 4010eda14cbcSMatt Macy 4011eda14cbcSMatt Macy if ((ret = cb.cb_error) != 0) 4012eda14cbcSMatt Macy goto out; 4013eda14cbcSMatt Macy 4014eda14cbcSMatt Macy /* 4015eda14cbcSMatt Macy * Rollback parent to the given snapshot. 4016eda14cbcSMatt Macy */ 4017eda14cbcSMatt Macy ret = zfs_rollback(zhp, snap, force); 4018eda14cbcSMatt Macy 4019eda14cbcSMatt Macy out: 4020eda14cbcSMatt Macy zfs_close(snap); 4021eda14cbcSMatt Macy zfs_close(zhp); 4022eda14cbcSMatt Macy 4023eda14cbcSMatt Macy if (ret == 0) 4024eda14cbcSMatt Macy return (0); 4025eda14cbcSMatt Macy else 4026eda14cbcSMatt Macy return (1); 4027eda14cbcSMatt Macy } 4028eda14cbcSMatt Macy 4029eda14cbcSMatt Macy /* 4030eda14cbcSMatt Macy * zfs set property=value ... { fs | snap | vol } ... 4031eda14cbcSMatt Macy * 4032eda14cbcSMatt Macy * Sets the given properties for all datasets specified on the command line. 4033eda14cbcSMatt Macy */ 4034eda14cbcSMatt Macy 4035eda14cbcSMatt Macy static int 4036eda14cbcSMatt Macy set_callback(zfs_handle_t *zhp, void *data) 4037eda14cbcSMatt Macy { 4038eda14cbcSMatt Macy nvlist_t *props = data; 4039eda14cbcSMatt Macy 4040eda14cbcSMatt Macy if (zfs_prop_set_list(zhp, props) != 0) { 4041eda14cbcSMatt Macy switch (libzfs_errno(g_zfs)) { 4042eda14cbcSMatt Macy case EZFS_MOUNTFAILED: 4043eda14cbcSMatt Macy (void) fprintf(stderr, gettext("property may be set " 4044eda14cbcSMatt Macy "but unable to remount filesystem\n")); 4045eda14cbcSMatt Macy break; 4046eda14cbcSMatt Macy case EZFS_SHARENFSFAILED: 4047eda14cbcSMatt Macy (void) fprintf(stderr, gettext("property may be set " 4048eda14cbcSMatt Macy "but unable to reshare filesystem\n")); 4049eda14cbcSMatt Macy break; 4050eda14cbcSMatt Macy } 4051eda14cbcSMatt Macy return (1); 4052eda14cbcSMatt Macy } 4053eda14cbcSMatt Macy return (0); 4054eda14cbcSMatt Macy } 4055eda14cbcSMatt Macy 4056eda14cbcSMatt Macy static int 4057eda14cbcSMatt Macy zfs_do_set(int argc, char **argv) 4058eda14cbcSMatt Macy { 4059eda14cbcSMatt Macy nvlist_t *props = NULL; 4060eda14cbcSMatt Macy int ds_start = -1; /* argv idx of first dataset arg */ 4061eda14cbcSMatt Macy int ret = 0; 4062eda14cbcSMatt Macy int i; 4063eda14cbcSMatt Macy 4064eda14cbcSMatt Macy /* check for options */ 4065eda14cbcSMatt Macy if (argc > 1 && argv[1][0] == '-') { 4066eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 4067eda14cbcSMatt Macy argv[1][1]); 4068eda14cbcSMatt Macy usage(B_FALSE); 4069eda14cbcSMatt Macy } 4070eda14cbcSMatt Macy 4071eda14cbcSMatt Macy /* check number of arguments */ 4072eda14cbcSMatt Macy if (argc < 2) { 4073eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing arguments\n")); 4074eda14cbcSMatt Macy usage(B_FALSE); 4075eda14cbcSMatt Macy } 4076eda14cbcSMatt Macy if (argc < 3) { 4077eda14cbcSMatt Macy if (strchr(argv[1], '=') == NULL) { 4078eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing property=value " 4079eda14cbcSMatt Macy "argument(s)\n")); 4080eda14cbcSMatt Macy } else { 4081eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing dataset " 4082eda14cbcSMatt Macy "name(s)\n")); 4083eda14cbcSMatt Macy } 4084eda14cbcSMatt Macy usage(B_FALSE); 4085eda14cbcSMatt Macy } 4086eda14cbcSMatt Macy 4087eda14cbcSMatt Macy /* validate argument order: prop=val args followed by dataset args */ 4088eda14cbcSMatt Macy for (i = 1; i < argc; i++) { 4089eda14cbcSMatt Macy if (strchr(argv[i], '=') != NULL) { 4090eda14cbcSMatt Macy if (ds_start > 0) { 4091eda14cbcSMatt Macy /* out-of-order prop=val argument */ 4092eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid " 4093eda14cbcSMatt Macy "argument order\n")); 4094eda14cbcSMatt Macy usage(B_FALSE); 4095eda14cbcSMatt Macy } 4096eda14cbcSMatt Macy } else if (ds_start < 0) { 4097eda14cbcSMatt Macy ds_start = i; 4098eda14cbcSMatt Macy } 4099eda14cbcSMatt Macy } 4100eda14cbcSMatt Macy if (ds_start < 0) { 4101eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing dataset name(s)\n")); 4102eda14cbcSMatt Macy usage(B_FALSE); 4103eda14cbcSMatt Macy } 4104eda14cbcSMatt Macy 4105eda14cbcSMatt Macy /* Populate a list of property settings */ 4106eda14cbcSMatt Macy if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) 4107eda14cbcSMatt Macy nomem(); 4108eda14cbcSMatt Macy for (i = 1; i < ds_start; i++) { 4109eda14cbcSMatt Macy if (!parseprop(props, argv[i])) { 4110eda14cbcSMatt Macy ret = -1; 4111eda14cbcSMatt Macy goto error; 4112eda14cbcSMatt Macy } 4113eda14cbcSMatt Macy } 4114eda14cbcSMatt Macy 4115eda14cbcSMatt Macy ret = zfs_for_each(argc - ds_start, argv + ds_start, 0, 4116eda14cbcSMatt Macy ZFS_TYPE_DATASET, NULL, NULL, 0, set_callback, props); 4117eda14cbcSMatt Macy 4118eda14cbcSMatt Macy error: 4119eda14cbcSMatt Macy nvlist_free(props); 4120eda14cbcSMatt Macy return (ret); 4121eda14cbcSMatt Macy } 4122eda14cbcSMatt Macy 4123eda14cbcSMatt Macy typedef struct snap_cbdata { 4124eda14cbcSMatt Macy nvlist_t *sd_nvl; 4125eda14cbcSMatt Macy boolean_t sd_recursive; 4126eda14cbcSMatt Macy const char *sd_snapname; 4127eda14cbcSMatt Macy } snap_cbdata_t; 4128eda14cbcSMatt Macy 4129eda14cbcSMatt Macy static int 4130eda14cbcSMatt Macy zfs_snapshot_cb(zfs_handle_t *zhp, void *arg) 4131eda14cbcSMatt Macy { 4132eda14cbcSMatt Macy snap_cbdata_t *sd = arg; 4133eda14cbcSMatt Macy char *name; 4134eda14cbcSMatt Macy int rv = 0; 4135eda14cbcSMatt Macy int error; 4136eda14cbcSMatt Macy 4137eda14cbcSMatt Macy if (sd->sd_recursive && 4138eda14cbcSMatt Macy zfs_prop_get_int(zhp, ZFS_PROP_INCONSISTENT) != 0) { 4139eda14cbcSMatt Macy zfs_close(zhp); 4140eda14cbcSMatt Macy return (0); 4141eda14cbcSMatt Macy } 4142eda14cbcSMatt Macy 4143eda14cbcSMatt Macy error = asprintf(&name, "%s@%s", zfs_get_name(zhp), sd->sd_snapname); 4144eda14cbcSMatt Macy if (error == -1) 4145eda14cbcSMatt Macy nomem(); 4146eda14cbcSMatt Macy fnvlist_add_boolean(sd->sd_nvl, name); 4147eda14cbcSMatt Macy free(name); 4148eda14cbcSMatt Macy 4149eda14cbcSMatt Macy if (sd->sd_recursive) 4150eda14cbcSMatt Macy rv = zfs_iter_filesystems(zhp, zfs_snapshot_cb, sd); 4151eda14cbcSMatt Macy zfs_close(zhp); 4152eda14cbcSMatt Macy return (rv); 4153eda14cbcSMatt Macy } 4154eda14cbcSMatt Macy 4155eda14cbcSMatt Macy /* 4156eda14cbcSMatt Macy * zfs snapshot [-r] [-o prop=value] ... <fs@snap> 4157eda14cbcSMatt Macy * 4158eda14cbcSMatt Macy * Creates a snapshot with the given name. While functionally equivalent to 4159eda14cbcSMatt Macy * 'zfs create', it is a separate command to differentiate intent. 4160eda14cbcSMatt Macy */ 4161eda14cbcSMatt Macy static int 4162eda14cbcSMatt Macy zfs_do_snapshot(int argc, char **argv) 4163eda14cbcSMatt Macy { 4164eda14cbcSMatt Macy int ret = 0; 4165eda14cbcSMatt Macy int c; 4166eda14cbcSMatt Macy nvlist_t *props; 4167eda14cbcSMatt Macy snap_cbdata_t sd = { 0 }; 4168eda14cbcSMatt Macy boolean_t multiple_snaps = B_FALSE; 4169eda14cbcSMatt Macy 4170eda14cbcSMatt Macy if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) 4171eda14cbcSMatt Macy nomem(); 4172eda14cbcSMatt Macy if (nvlist_alloc(&sd.sd_nvl, NV_UNIQUE_NAME, 0) != 0) 4173eda14cbcSMatt Macy nomem(); 4174eda14cbcSMatt Macy 4175eda14cbcSMatt Macy /* check options */ 4176eda14cbcSMatt Macy while ((c = getopt(argc, argv, "ro:")) != -1) { 4177eda14cbcSMatt Macy switch (c) { 4178eda14cbcSMatt Macy case 'o': 4179eda14cbcSMatt Macy if (!parseprop(props, optarg)) { 4180eda14cbcSMatt Macy nvlist_free(sd.sd_nvl); 4181eda14cbcSMatt Macy nvlist_free(props); 4182eda14cbcSMatt Macy return (1); 4183eda14cbcSMatt Macy } 4184eda14cbcSMatt Macy break; 4185eda14cbcSMatt Macy case 'r': 4186eda14cbcSMatt Macy sd.sd_recursive = B_TRUE; 4187eda14cbcSMatt Macy multiple_snaps = B_TRUE; 4188eda14cbcSMatt Macy break; 4189eda14cbcSMatt Macy case '?': 4190eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 4191eda14cbcSMatt Macy optopt); 4192eda14cbcSMatt Macy goto usage; 4193eda14cbcSMatt Macy } 4194eda14cbcSMatt Macy } 4195eda14cbcSMatt Macy 4196eda14cbcSMatt Macy argc -= optind; 4197eda14cbcSMatt Macy argv += optind; 4198eda14cbcSMatt Macy 4199eda14cbcSMatt Macy /* check number of arguments */ 4200eda14cbcSMatt Macy if (argc < 1) { 4201eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing snapshot argument\n")); 4202eda14cbcSMatt Macy goto usage; 4203eda14cbcSMatt Macy } 4204eda14cbcSMatt Macy 4205eda14cbcSMatt Macy if (argc > 1) 4206eda14cbcSMatt Macy multiple_snaps = B_TRUE; 4207eda14cbcSMatt Macy for (; argc > 0; argc--, argv++) { 4208eda14cbcSMatt Macy char *atp; 4209eda14cbcSMatt Macy zfs_handle_t *zhp; 4210eda14cbcSMatt Macy 4211eda14cbcSMatt Macy atp = strchr(argv[0], '@'); 4212eda14cbcSMatt Macy if (atp == NULL) 4213eda14cbcSMatt Macy goto usage; 4214eda14cbcSMatt Macy *atp = '\0'; 4215eda14cbcSMatt Macy sd.sd_snapname = atp + 1; 4216eda14cbcSMatt Macy zhp = zfs_open(g_zfs, argv[0], 4217eda14cbcSMatt Macy ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME); 4218eda14cbcSMatt Macy if (zhp == NULL) 4219eda14cbcSMatt Macy goto usage; 4220eda14cbcSMatt Macy if (zfs_snapshot_cb(zhp, &sd) != 0) 4221eda14cbcSMatt Macy goto usage; 4222eda14cbcSMatt Macy } 4223eda14cbcSMatt Macy 4224eda14cbcSMatt Macy ret = zfs_snapshot_nvl(g_zfs, sd.sd_nvl, props); 4225eda14cbcSMatt Macy nvlist_free(sd.sd_nvl); 4226eda14cbcSMatt Macy nvlist_free(props); 4227eda14cbcSMatt Macy if (ret != 0 && multiple_snaps) 4228eda14cbcSMatt Macy (void) fprintf(stderr, gettext("no snapshots were created\n")); 4229eda14cbcSMatt Macy return (ret != 0); 4230eda14cbcSMatt Macy 4231eda14cbcSMatt Macy usage: 4232eda14cbcSMatt Macy nvlist_free(sd.sd_nvl); 4233eda14cbcSMatt Macy nvlist_free(props); 4234eda14cbcSMatt Macy usage(B_FALSE); 4235eda14cbcSMatt Macy return (-1); 4236eda14cbcSMatt Macy } 4237eda14cbcSMatt Macy 4238eda14cbcSMatt Macy 4239eda14cbcSMatt Macy /* 4240eda14cbcSMatt Macy * Send a backup stream to stdout. 4241eda14cbcSMatt Macy */ 4242eda14cbcSMatt Macy static int 4243eda14cbcSMatt Macy zfs_do_send(int argc, char **argv) 4244eda14cbcSMatt Macy { 4245eda14cbcSMatt Macy char *fromname = NULL; 4246eda14cbcSMatt Macy char *toname = NULL; 4247eda14cbcSMatt Macy char *resume_token = NULL; 4248eda14cbcSMatt Macy char *cp; 4249eda14cbcSMatt Macy zfs_handle_t *zhp; 4250eda14cbcSMatt Macy sendflags_t flags = { 0 }; 4251eda14cbcSMatt Macy int c, err; 4252eda14cbcSMatt Macy nvlist_t *dbgnv = NULL; 4253eda14cbcSMatt Macy char *redactbook = NULL; 4254eda14cbcSMatt Macy 4255eda14cbcSMatt Macy struct option long_options[] = { 4256eda14cbcSMatt Macy {"replicate", no_argument, NULL, 'R'}, 4257eda14cbcSMatt Macy {"redact", required_argument, NULL, 'd'}, 4258eda14cbcSMatt Macy {"props", no_argument, NULL, 'p'}, 4259eda14cbcSMatt Macy {"parsable", no_argument, NULL, 'P'}, 4260eda14cbcSMatt Macy {"dedup", no_argument, NULL, 'D'}, 4261eda14cbcSMatt Macy {"verbose", no_argument, NULL, 'v'}, 4262eda14cbcSMatt Macy {"dryrun", no_argument, NULL, 'n'}, 4263eda14cbcSMatt Macy {"large-block", no_argument, NULL, 'L'}, 4264eda14cbcSMatt Macy {"embed", no_argument, NULL, 'e'}, 4265eda14cbcSMatt Macy {"resume", required_argument, NULL, 't'}, 4266eda14cbcSMatt Macy {"compressed", no_argument, NULL, 'c'}, 4267eda14cbcSMatt Macy {"raw", no_argument, NULL, 'w'}, 4268eda14cbcSMatt Macy {"backup", no_argument, NULL, 'b'}, 4269eda14cbcSMatt Macy {"holds", no_argument, NULL, 'h'}, 4270eda14cbcSMatt Macy {"saved", no_argument, NULL, 'S'}, 4271eda14cbcSMatt Macy {0, 0, 0, 0} 4272eda14cbcSMatt Macy }; 4273eda14cbcSMatt Macy 4274eda14cbcSMatt Macy /* check options */ 4275eda14cbcSMatt Macy while ((c = getopt_long(argc, argv, ":i:I:RDpvnPLeht:cwbd:S", 4276eda14cbcSMatt Macy long_options, NULL)) != -1) { 4277eda14cbcSMatt Macy switch (c) { 4278eda14cbcSMatt Macy case 'i': 4279eda14cbcSMatt Macy if (fromname) 4280eda14cbcSMatt Macy usage(B_FALSE); 4281eda14cbcSMatt Macy fromname = optarg; 4282eda14cbcSMatt Macy break; 4283eda14cbcSMatt Macy case 'I': 4284eda14cbcSMatt Macy if (fromname) 4285eda14cbcSMatt Macy usage(B_FALSE); 4286eda14cbcSMatt Macy fromname = optarg; 4287eda14cbcSMatt Macy flags.doall = B_TRUE; 4288eda14cbcSMatt Macy break; 4289eda14cbcSMatt Macy case 'R': 4290eda14cbcSMatt Macy flags.replicate = B_TRUE; 4291eda14cbcSMatt Macy break; 4292eda14cbcSMatt Macy case 'd': 4293eda14cbcSMatt Macy redactbook = optarg; 4294eda14cbcSMatt Macy break; 4295eda14cbcSMatt Macy case 'p': 4296eda14cbcSMatt Macy flags.props = B_TRUE; 4297eda14cbcSMatt Macy break; 4298eda14cbcSMatt Macy case 'b': 4299eda14cbcSMatt Macy flags.backup = B_TRUE; 4300eda14cbcSMatt Macy break; 4301eda14cbcSMatt Macy case 'h': 4302eda14cbcSMatt Macy flags.holds = B_TRUE; 4303eda14cbcSMatt Macy break; 4304eda14cbcSMatt Macy case 'P': 4305eda14cbcSMatt Macy flags.parsable = B_TRUE; 4306eda14cbcSMatt Macy break; 4307eda14cbcSMatt Macy case 'v': 4308eda14cbcSMatt Macy flags.verbosity++; 4309eda14cbcSMatt Macy flags.progress = B_TRUE; 4310eda14cbcSMatt Macy break; 4311eda14cbcSMatt Macy case 'D': 4312eda14cbcSMatt Macy (void) fprintf(stderr, 4313eda14cbcSMatt Macy gettext("WARNING: deduplicated send is no " 4314eda14cbcSMatt Macy "longer supported. A regular,\n" 4315eda14cbcSMatt Macy "non-deduplicated stream will be generated.\n\n")); 4316eda14cbcSMatt Macy break; 4317eda14cbcSMatt Macy case 'n': 4318eda14cbcSMatt Macy flags.dryrun = B_TRUE; 4319eda14cbcSMatt Macy break; 4320eda14cbcSMatt Macy case 'L': 4321eda14cbcSMatt Macy flags.largeblock = B_TRUE; 4322eda14cbcSMatt Macy break; 4323eda14cbcSMatt Macy case 'e': 4324eda14cbcSMatt Macy flags.embed_data = B_TRUE; 4325eda14cbcSMatt Macy break; 4326eda14cbcSMatt Macy case 't': 4327eda14cbcSMatt Macy resume_token = optarg; 4328eda14cbcSMatt Macy break; 4329eda14cbcSMatt Macy case 'c': 4330eda14cbcSMatt Macy flags.compress = B_TRUE; 4331eda14cbcSMatt Macy break; 4332eda14cbcSMatt Macy case 'w': 4333eda14cbcSMatt Macy flags.raw = B_TRUE; 4334eda14cbcSMatt Macy flags.compress = B_TRUE; 4335eda14cbcSMatt Macy flags.embed_data = B_TRUE; 4336eda14cbcSMatt Macy flags.largeblock = B_TRUE; 4337eda14cbcSMatt Macy break; 4338eda14cbcSMatt Macy case 'S': 4339eda14cbcSMatt Macy flags.saved = B_TRUE; 4340eda14cbcSMatt Macy break; 4341eda14cbcSMatt Macy case ':': 4342eda14cbcSMatt Macy /* 4343eda14cbcSMatt Macy * If a parameter was not passed, optopt contains the 4344eda14cbcSMatt Macy * value that would normally lead us into the 4345eda14cbcSMatt Macy * appropriate case statement. If it's > 256, then this 4346eda14cbcSMatt Macy * must be a longopt and we should look at argv to get 4347eda14cbcSMatt Macy * the string. Otherwise it's just the character, so we 4348eda14cbcSMatt Macy * should use it directly. 4349eda14cbcSMatt Macy */ 4350eda14cbcSMatt Macy if (optopt <= UINT8_MAX) { 4351eda14cbcSMatt Macy (void) fprintf(stderr, 4352eda14cbcSMatt Macy gettext("missing argument for '%c' " 4353eda14cbcSMatt Macy "option\n"), optopt); 4354eda14cbcSMatt Macy } else { 4355eda14cbcSMatt Macy (void) fprintf(stderr, 4356eda14cbcSMatt Macy gettext("missing argument for '%s' " 4357eda14cbcSMatt Macy "option\n"), argv[optind - 1]); 4358eda14cbcSMatt Macy } 4359eda14cbcSMatt Macy usage(B_FALSE); 4360eda14cbcSMatt Macy break; 4361eda14cbcSMatt Macy case '?': 4362eda14cbcSMatt Macy /*FALLTHROUGH*/ 4363eda14cbcSMatt Macy default: 4364eda14cbcSMatt Macy /* 4365eda14cbcSMatt Macy * If an invalid flag was passed, optopt contains the 4366eda14cbcSMatt Macy * character if it was a short flag, or 0 if it was a 4367eda14cbcSMatt Macy * longopt. 4368eda14cbcSMatt Macy */ 4369eda14cbcSMatt Macy if (optopt != 0) { 4370eda14cbcSMatt Macy (void) fprintf(stderr, 4371eda14cbcSMatt Macy gettext("invalid option '%c'\n"), optopt); 4372eda14cbcSMatt Macy } else { 4373eda14cbcSMatt Macy (void) fprintf(stderr, 4374eda14cbcSMatt Macy gettext("invalid option '%s'\n"), 4375eda14cbcSMatt Macy argv[optind - 1]); 4376eda14cbcSMatt Macy 4377eda14cbcSMatt Macy } 4378eda14cbcSMatt Macy usage(B_FALSE); 4379eda14cbcSMatt Macy } 4380eda14cbcSMatt Macy } 4381eda14cbcSMatt Macy 4382eda14cbcSMatt Macy if (flags.parsable && flags.verbosity == 0) 4383eda14cbcSMatt Macy flags.verbosity = 1; 4384eda14cbcSMatt Macy 4385eda14cbcSMatt Macy argc -= optind; 4386eda14cbcSMatt Macy argv += optind; 4387eda14cbcSMatt Macy 4388eda14cbcSMatt Macy if (resume_token != NULL) { 4389eda14cbcSMatt Macy if (fromname != NULL || flags.replicate || flags.props || 4390eda14cbcSMatt Macy flags.backup || flags.holds || 4391eda14cbcSMatt Macy flags.saved || redactbook != NULL) { 4392eda14cbcSMatt Macy (void) fprintf(stderr, 4393eda14cbcSMatt Macy gettext("invalid flags combined with -t\n")); 4394eda14cbcSMatt Macy usage(B_FALSE); 4395eda14cbcSMatt Macy } 4396eda14cbcSMatt Macy if (argc > 0) { 4397eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 4398eda14cbcSMatt Macy usage(B_FALSE); 4399eda14cbcSMatt Macy } 4400eda14cbcSMatt Macy } else { 4401eda14cbcSMatt Macy if (argc < 1) { 4402eda14cbcSMatt Macy (void) fprintf(stderr, 4403eda14cbcSMatt Macy gettext("missing snapshot argument\n")); 4404eda14cbcSMatt Macy usage(B_FALSE); 4405eda14cbcSMatt Macy } 4406eda14cbcSMatt Macy if (argc > 1) { 4407eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 4408eda14cbcSMatt Macy usage(B_FALSE); 4409eda14cbcSMatt Macy } 4410eda14cbcSMatt Macy } 4411eda14cbcSMatt Macy 4412eda14cbcSMatt Macy if (flags.saved) { 4413eda14cbcSMatt Macy if (fromname != NULL || flags.replicate || flags.props || 4414eda14cbcSMatt Macy flags.doall || flags.backup || 4415eda14cbcSMatt Macy flags.holds || flags.largeblock || flags.embed_data || 4416eda14cbcSMatt Macy flags.compress || flags.raw || redactbook != NULL) { 4417eda14cbcSMatt Macy (void) fprintf(stderr, gettext("incompatible flags " 4418eda14cbcSMatt Macy "combined with saved send flag\n")); 4419eda14cbcSMatt Macy usage(B_FALSE); 4420eda14cbcSMatt Macy } 4421eda14cbcSMatt Macy if (strchr(argv[0], '@') != NULL) { 4422eda14cbcSMatt Macy (void) fprintf(stderr, gettext("saved send must " 4423eda14cbcSMatt Macy "specify the dataset with partially-received " 4424eda14cbcSMatt Macy "state\n")); 4425eda14cbcSMatt Macy usage(B_FALSE); 4426eda14cbcSMatt Macy } 4427eda14cbcSMatt Macy } 4428eda14cbcSMatt Macy 4429eda14cbcSMatt Macy if (flags.raw && redactbook != NULL) { 4430eda14cbcSMatt Macy (void) fprintf(stderr, 4431eda14cbcSMatt Macy gettext("Error: raw sends may not be redacted.\n")); 4432eda14cbcSMatt Macy return (1); 4433eda14cbcSMatt Macy } 4434eda14cbcSMatt Macy 4435eda14cbcSMatt Macy if (!flags.dryrun && isatty(STDOUT_FILENO)) { 4436eda14cbcSMatt Macy (void) fprintf(stderr, 4437eda14cbcSMatt Macy gettext("Error: Stream can not be written to a terminal.\n" 4438eda14cbcSMatt Macy "You must redirect standard output.\n")); 4439eda14cbcSMatt Macy return (1); 4440eda14cbcSMatt Macy } 4441eda14cbcSMatt Macy 4442eda14cbcSMatt Macy if (flags.saved) { 4443eda14cbcSMatt Macy zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_DATASET); 4444eda14cbcSMatt Macy if (zhp == NULL) 4445eda14cbcSMatt Macy return (1); 4446eda14cbcSMatt Macy 4447eda14cbcSMatt Macy err = zfs_send_saved(zhp, &flags, STDOUT_FILENO, 4448eda14cbcSMatt Macy resume_token); 4449eda14cbcSMatt Macy zfs_close(zhp); 4450eda14cbcSMatt Macy return (err != 0); 4451eda14cbcSMatt Macy } else if (resume_token != NULL) { 4452eda14cbcSMatt Macy return (zfs_send_resume(g_zfs, &flags, STDOUT_FILENO, 4453eda14cbcSMatt Macy resume_token)); 4454eda14cbcSMatt Macy } 4455eda14cbcSMatt Macy 4456eda14cbcSMatt Macy /* 4457eda14cbcSMatt Macy * For everything except -R and -I, use the new, cleaner code path. 4458eda14cbcSMatt Macy */ 4459eda14cbcSMatt Macy if (!(flags.replicate || flags.doall)) { 4460eda14cbcSMatt Macy char frombuf[ZFS_MAX_DATASET_NAME_LEN]; 4461eda14cbcSMatt Macy 4462eda14cbcSMatt Macy if (fromname != NULL && (strchr(fromname, '#') == NULL && 4463eda14cbcSMatt Macy strchr(fromname, '@') == NULL)) { 4464eda14cbcSMatt Macy /* 4465eda14cbcSMatt Macy * Neither bookmark or snapshot was specified. Print a 4466eda14cbcSMatt Macy * warning, and assume snapshot. 4467eda14cbcSMatt Macy */ 4468eda14cbcSMatt Macy (void) fprintf(stderr, "Warning: incremental source " 4469eda14cbcSMatt Macy "didn't specify type, assuming snapshot. Use '@' " 4470eda14cbcSMatt Macy "or '#' prefix to avoid ambiguity.\n"); 4471eda14cbcSMatt Macy (void) snprintf(frombuf, sizeof (frombuf), "@%s", 4472eda14cbcSMatt Macy fromname); 4473eda14cbcSMatt Macy fromname = frombuf; 4474eda14cbcSMatt Macy } 4475eda14cbcSMatt Macy if (fromname != NULL && 4476eda14cbcSMatt Macy (fromname[0] == '#' || fromname[0] == '@')) { 4477eda14cbcSMatt Macy /* 4478eda14cbcSMatt Macy * Incremental source name begins with # or @. 4479eda14cbcSMatt Macy * Default to same fs as target. 4480eda14cbcSMatt Macy */ 4481eda14cbcSMatt Macy char tmpbuf[ZFS_MAX_DATASET_NAME_LEN]; 4482eda14cbcSMatt Macy (void) strlcpy(tmpbuf, fromname, sizeof (tmpbuf)); 4483eda14cbcSMatt Macy (void) strlcpy(frombuf, argv[0], sizeof (frombuf)); 4484eda14cbcSMatt Macy cp = strchr(frombuf, '@'); 4485eda14cbcSMatt Macy if (cp != NULL) 4486eda14cbcSMatt Macy *cp = '\0'; 4487eda14cbcSMatt Macy (void) strlcat(frombuf, tmpbuf, sizeof (frombuf)); 4488eda14cbcSMatt Macy fromname = frombuf; 4489eda14cbcSMatt Macy } 4490eda14cbcSMatt Macy 4491eda14cbcSMatt Macy zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_DATASET); 4492eda14cbcSMatt Macy if (zhp == NULL) 4493eda14cbcSMatt Macy return (1); 4494eda14cbcSMatt Macy err = zfs_send_one(zhp, fromname, STDOUT_FILENO, &flags, 4495eda14cbcSMatt Macy redactbook); 4496eda14cbcSMatt Macy zfs_close(zhp); 4497eda14cbcSMatt Macy return (err != 0); 4498eda14cbcSMatt Macy } 4499eda14cbcSMatt Macy 4500eda14cbcSMatt Macy if (fromname != NULL && strchr(fromname, '#')) { 4501eda14cbcSMatt Macy (void) fprintf(stderr, 4502eda14cbcSMatt Macy gettext("Error: multiple snapshots cannot be " 4503eda14cbcSMatt Macy "sent from a bookmark.\n")); 4504eda14cbcSMatt Macy return (1); 4505eda14cbcSMatt Macy } 4506eda14cbcSMatt Macy 4507eda14cbcSMatt Macy if (redactbook != NULL) { 4508eda14cbcSMatt Macy (void) fprintf(stderr, gettext("Error: multiple snapshots " 4509eda14cbcSMatt Macy "cannot be sent redacted.\n")); 4510eda14cbcSMatt Macy return (1); 4511eda14cbcSMatt Macy } 4512eda14cbcSMatt Macy 4513eda14cbcSMatt Macy if ((cp = strchr(argv[0], '@')) == NULL) { 4514eda14cbcSMatt Macy (void) fprintf(stderr, gettext("Error: " 4515eda14cbcSMatt Macy "Unsupported flag with filesystem or bookmark.\n")); 4516eda14cbcSMatt Macy return (1); 4517eda14cbcSMatt Macy } 4518eda14cbcSMatt Macy *cp = '\0'; 4519eda14cbcSMatt Macy toname = cp + 1; 4520eda14cbcSMatt Macy zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME); 4521eda14cbcSMatt Macy if (zhp == NULL) 4522eda14cbcSMatt Macy return (1); 4523eda14cbcSMatt Macy 4524eda14cbcSMatt Macy /* 4525eda14cbcSMatt Macy * If they specified the full path to the snapshot, chop off 4526eda14cbcSMatt Macy * everything except the short name of the snapshot, but special 4527eda14cbcSMatt Macy * case if they specify the origin. 4528eda14cbcSMatt Macy */ 4529eda14cbcSMatt Macy if (fromname && (cp = strchr(fromname, '@')) != NULL) { 4530eda14cbcSMatt Macy char origin[ZFS_MAX_DATASET_NAME_LEN]; 4531eda14cbcSMatt Macy zprop_source_t src; 4532eda14cbcSMatt Macy 4533eda14cbcSMatt Macy (void) zfs_prop_get(zhp, ZFS_PROP_ORIGIN, 4534eda14cbcSMatt Macy origin, sizeof (origin), &src, NULL, 0, B_FALSE); 4535eda14cbcSMatt Macy 4536eda14cbcSMatt Macy if (strcmp(origin, fromname) == 0) { 4537eda14cbcSMatt Macy fromname = NULL; 4538eda14cbcSMatt Macy flags.fromorigin = B_TRUE; 4539eda14cbcSMatt Macy } else { 4540eda14cbcSMatt Macy *cp = '\0'; 4541eda14cbcSMatt Macy if (cp != fromname && strcmp(argv[0], fromname)) { 4542eda14cbcSMatt Macy (void) fprintf(stderr, 4543eda14cbcSMatt Macy gettext("incremental source must be " 4544eda14cbcSMatt Macy "in same filesystem\n")); 4545eda14cbcSMatt Macy usage(B_FALSE); 4546eda14cbcSMatt Macy } 4547eda14cbcSMatt Macy fromname = cp + 1; 4548eda14cbcSMatt Macy if (strchr(fromname, '@') || strchr(fromname, '/')) { 4549eda14cbcSMatt Macy (void) fprintf(stderr, 4550eda14cbcSMatt Macy gettext("invalid incremental source\n")); 4551eda14cbcSMatt Macy usage(B_FALSE); 4552eda14cbcSMatt Macy } 4553eda14cbcSMatt Macy } 4554eda14cbcSMatt Macy } 4555eda14cbcSMatt Macy 4556eda14cbcSMatt Macy if (flags.replicate && fromname == NULL) 4557eda14cbcSMatt Macy flags.doall = B_TRUE; 4558eda14cbcSMatt Macy 4559eda14cbcSMatt Macy err = zfs_send(zhp, fromname, toname, &flags, STDOUT_FILENO, NULL, 0, 4560eda14cbcSMatt Macy flags.verbosity >= 3 ? &dbgnv : NULL); 4561eda14cbcSMatt Macy 4562eda14cbcSMatt Macy if (flags.verbosity >= 3 && dbgnv != NULL) { 4563eda14cbcSMatt Macy /* 4564eda14cbcSMatt Macy * dump_nvlist prints to stdout, but that's been 4565eda14cbcSMatt Macy * redirected to a file. Make it print to stderr 4566eda14cbcSMatt Macy * instead. 4567eda14cbcSMatt Macy */ 4568eda14cbcSMatt Macy (void) dup2(STDERR_FILENO, STDOUT_FILENO); 4569eda14cbcSMatt Macy dump_nvlist(dbgnv, 0); 4570eda14cbcSMatt Macy nvlist_free(dbgnv); 4571eda14cbcSMatt Macy } 4572eda14cbcSMatt Macy zfs_close(zhp); 4573eda14cbcSMatt Macy 4574eda14cbcSMatt Macy return (err != 0); 4575eda14cbcSMatt Macy } 4576eda14cbcSMatt Macy 4577eda14cbcSMatt Macy /* 4578eda14cbcSMatt Macy * Restore a backup stream from stdin. 4579eda14cbcSMatt Macy */ 4580eda14cbcSMatt Macy static int 4581eda14cbcSMatt Macy zfs_do_receive(int argc, char **argv) 4582eda14cbcSMatt Macy { 4583eda14cbcSMatt Macy int c, err = 0; 4584eda14cbcSMatt Macy recvflags_t flags = { 0 }; 4585eda14cbcSMatt Macy boolean_t abort_resumable = B_FALSE; 4586eda14cbcSMatt Macy nvlist_t *props; 4587eda14cbcSMatt Macy 4588eda14cbcSMatt Macy if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) 4589eda14cbcSMatt Macy nomem(); 4590eda14cbcSMatt Macy 4591eda14cbcSMatt Macy /* check options */ 4592eda14cbcSMatt Macy while ((c = getopt(argc, argv, ":o:x:dehMnuvFsA")) != -1) { 4593eda14cbcSMatt Macy switch (c) { 4594eda14cbcSMatt Macy case 'o': 4595eda14cbcSMatt Macy if (!parseprop(props, optarg)) { 4596eda14cbcSMatt Macy nvlist_free(props); 4597eda14cbcSMatt Macy usage(B_FALSE); 4598eda14cbcSMatt Macy } 4599eda14cbcSMatt Macy break; 4600eda14cbcSMatt Macy case 'x': 4601eda14cbcSMatt Macy if (!parsepropname(props, optarg)) { 4602eda14cbcSMatt Macy nvlist_free(props); 4603eda14cbcSMatt Macy usage(B_FALSE); 4604eda14cbcSMatt Macy } 4605eda14cbcSMatt Macy break; 4606eda14cbcSMatt Macy case 'd': 4607eda14cbcSMatt Macy if (flags.istail) { 4608eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option " 4609eda14cbcSMatt Macy "combination: -d and -e are mutually " 4610eda14cbcSMatt Macy "exclusive\n")); 4611eda14cbcSMatt Macy usage(B_FALSE); 4612eda14cbcSMatt Macy } 4613eda14cbcSMatt Macy flags.isprefix = B_TRUE; 4614eda14cbcSMatt Macy break; 4615eda14cbcSMatt Macy case 'e': 4616eda14cbcSMatt Macy if (flags.isprefix) { 4617eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option " 4618eda14cbcSMatt Macy "combination: -d and -e are mutually " 4619eda14cbcSMatt Macy "exclusive\n")); 4620eda14cbcSMatt Macy usage(B_FALSE); 4621eda14cbcSMatt Macy } 4622eda14cbcSMatt Macy flags.istail = B_TRUE; 4623eda14cbcSMatt Macy break; 4624eda14cbcSMatt Macy case 'h': 4625eda14cbcSMatt Macy flags.skipholds = B_TRUE; 4626eda14cbcSMatt Macy break; 4627eda14cbcSMatt Macy case 'M': 4628eda14cbcSMatt Macy flags.forceunmount = B_TRUE; 4629eda14cbcSMatt Macy break; 4630eda14cbcSMatt Macy case 'n': 4631eda14cbcSMatt Macy flags.dryrun = B_TRUE; 4632eda14cbcSMatt Macy break; 4633eda14cbcSMatt Macy case 'u': 4634eda14cbcSMatt Macy flags.nomount = B_TRUE; 4635eda14cbcSMatt Macy break; 4636eda14cbcSMatt Macy case 'v': 4637eda14cbcSMatt Macy flags.verbose = B_TRUE; 4638eda14cbcSMatt Macy break; 4639eda14cbcSMatt Macy case 's': 4640eda14cbcSMatt Macy flags.resumable = B_TRUE; 4641eda14cbcSMatt Macy break; 4642eda14cbcSMatt Macy case 'F': 4643eda14cbcSMatt Macy flags.force = B_TRUE; 4644eda14cbcSMatt Macy break; 4645eda14cbcSMatt Macy case 'A': 4646eda14cbcSMatt Macy abort_resumable = B_TRUE; 4647eda14cbcSMatt Macy break; 4648eda14cbcSMatt Macy case ':': 4649eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing argument for " 4650eda14cbcSMatt Macy "'%c' option\n"), optopt); 4651eda14cbcSMatt Macy usage(B_FALSE); 4652eda14cbcSMatt Macy break; 4653eda14cbcSMatt Macy case '?': 4654eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 4655eda14cbcSMatt Macy optopt); 4656eda14cbcSMatt Macy usage(B_FALSE); 4657eda14cbcSMatt Macy } 4658eda14cbcSMatt Macy } 4659eda14cbcSMatt Macy 4660eda14cbcSMatt Macy argc -= optind; 4661eda14cbcSMatt Macy argv += optind; 4662eda14cbcSMatt Macy 4663eda14cbcSMatt Macy /* zfs recv -e (use "tail" name) implies -d (remove dataset "head") */ 4664eda14cbcSMatt Macy if (flags.istail) 4665eda14cbcSMatt Macy flags.isprefix = B_TRUE; 4666eda14cbcSMatt Macy 4667eda14cbcSMatt Macy /* check number of arguments */ 4668eda14cbcSMatt Macy if (argc < 1) { 4669eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing snapshot argument\n")); 4670eda14cbcSMatt Macy usage(B_FALSE); 4671eda14cbcSMatt Macy } 4672eda14cbcSMatt Macy if (argc > 1) { 4673eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 4674eda14cbcSMatt Macy usage(B_FALSE); 4675eda14cbcSMatt Macy } 4676eda14cbcSMatt Macy 4677eda14cbcSMatt Macy if (abort_resumable) { 4678eda14cbcSMatt Macy if (flags.isprefix || flags.istail || flags.dryrun || 4679eda14cbcSMatt Macy flags.resumable || flags.nomount) { 4680eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option\n")); 4681eda14cbcSMatt Macy usage(B_FALSE); 4682eda14cbcSMatt Macy } 4683eda14cbcSMatt Macy 4684eda14cbcSMatt Macy char namebuf[ZFS_MAX_DATASET_NAME_LEN]; 4685eda14cbcSMatt Macy (void) snprintf(namebuf, sizeof (namebuf), 4686eda14cbcSMatt Macy "%s/%%recv", argv[0]); 4687eda14cbcSMatt Macy 4688eda14cbcSMatt Macy if (zfs_dataset_exists(g_zfs, namebuf, 4689eda14cbcSMatt Macy ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME)) { 4690eda14cbcSMatt Macy zfs_handle_t *zhp = zfs_open(g_zfs, 4691eda14cbcSMatt Macy namebuf, ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME); 4692eda14cbcSMatt Macy if (zhp == NULL) { 4693eda14cbcSMatt Macy nvlist_free(props); 4694eda14cbcSMatt Macy return (1); 4695eda14cbcSMatt Macy } 4696eda14cbcSMatt Macy err = zfs_destroy(zhp, B_FALSE); 4697eda14cbcSMatt Macy zfs_close(zhp); 4698eda14cbcSMatt Macy } else { 4699eda14cbcSMatt Macy zfs_handle_t *zhp = zfs_open(g_zfs, 4700eda14cbcSMatt Macy argv[0], ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME); 4701eda14cbcSMatt Macy if (zhp == NULL) 4702eda14cbcSMatt Macy usage(B_FALSE); 4703eda14cbcSMatt Macy if (!zfs_prop_get_int(zhp, ZFS_PROP_INCONSISTENT) || 4704eda14cbcSMatt Macy zfs_prop_get(zhp, ZFS_PROP_RECEIVE_RESUME_TOKEN, 4705eda14cbcSMatt Macy NULL, 0, NULL, NULL, 0, B_TRUE) == -1) { 4706eda14cbcSMatt Macy (void) fprintf(stderr, 4707eda14cbcSMatt Macy gettext("'%s' does not have any " 4708eda14cbcSMatt Macy "resumable receive state to abort\n"), 4709eda14cbcSMatt Macy argv[0]); 4710eda14cbcSMatt Macy nvlist_free(props); 4711eda14cbcSMatt Macy zfs_close(zhp); 4712eda14cbcSMatt Macy return (1); 4713eda14cbcSMatt Macy } 4714eda14cbcSMatt Macy err = zfs_destroy(zhp, B_FALSE); 4715eda14cbcSMatt Macy zfs_close(zhp); 4716eda14cbcSMatt Macy } 4717eda14cbcSMatt Macy nvlist_free(props); 4718eda14cbcSMatt Macy return (err != 0); 4719eda14cbcSMatt Macy } 4720eda14cbcSMatt Macy 4721eda14cbcSMatt Macy if (isatty(STDIN_FILENO)) { 4722eda14cbcSMatt Macy (void) fprintf(stderr, 4723eda14cbcSMatt Macy gettext("Error: Backup stream can not be read " 4724eda14cbcSMatt Macy "from a terminal.\n" 4725eda14cbcSMatt Macy "You must redirect standard input.\n")); 4726eda14cbcSMatt Macy nvlist_free(props); 4727eda14cbcSMatt Macy return (1); 4728eda14cbcSMatt Macy } 4729eda14cbcSMatt Macy err = zfs_receive(g_zfs, argv[0], props, &flags, STDIN_FILENO, NULL); 4730eda14cbcSMatt Macy nvlist_free(props); 4731eda14cbcSMatt Macy 4732eda14cbcSMatt Macy return (err != 0); 4733eda14cbcSMatt Macy } 4734eda14cbcSMatt Macy 4735eda14cbcSMatt Macy /* 4736eda14cbcSMatt Macy * allow/unallow stuff 4737eda14cbcSMatt Macy */ 4738eda14cbcSMatt Macy /* copied from zfs/sys/dsl_deleg.h */ 4739eda14cbcSMatt Macy #define ZFS_DELEG_PERM_CREATE "create" 4740eda14cbcSMatt Macy #define ZFS_DELEG_PERM_DESTROY "destroy" 4741eda14cbcSMatt Macy #define ZFS_DELEG_PERM_SNAPSHOT "snapshot" 4742eda14cbcSMatt Macy #define ZFS_DELEG_PERM_ROLLBACK "rollback" 4743eda14cbcSMatt Macy #define ZFS_DELEG_PERM_CLONE "clone" 4744eda14cbcSMatt Macy #define ZFS_DELEG_PERM_PROMOTE "promote" 4745eda14cbcSMatt Macy #define ZFS_DELEG_PERM_RENAME "rename" 4746eda14cbcSMatt Macy #define ZFS_DELEG_PERM_MOUNT "mount" 4747eda14cbcSMatt Macy #define ZFS_DELEG_PERM_SHARE "share" 4748eda14cbcSMatt Macy #define ZFS_DELEG_PERM_SEND "send" 4749eda14cbcSMatt Macy #define ZFS_DELEG_PERM_RECEIVE "receive" 4750eda14cbcSMatt Macy #define ZFS_DELEG_PERM_ALLOW "allow" 4751eda14cbcSMatt Macy #define ZFS_DELEG_PERM_USERPROP "userprop" 4752eda14cbcSMatt Macy #define ZFS_DELEG_PERM_VSCAN "vscan" /* ??? */ 4753eda14cbcSMatt Macy #define ZFS_DELEG_PERM_USERQUOTA "userquota" 4754eda14cbcSMatt Macy #define ZFS_DELEG_PERM_GROUPQUOTA "groupquota" 4755eda14cbcSMatt Macy #define ZFS_DELEG_PERM_USERUSED "userused" 4756eda14cbcSMatt Macy #define ZFS_DELEG_PERM_GROUPUSED "groupused" 4757eda14cbcSMatt Macy #define ZFS_DELEG_PERM_USEROBJQUOTA "userobjquota" 4758eda14cbcSMatt Macy #define ZFS_DELEG_PERM_GROUPOBJQUOTA "groupobjquota" 4759eda14cbcSMatt Macy #define ZFS_DELEG_PERM_USEROBJUSED "userobjused" 4760eda14cbcSMatt Macy #define ZFS_DELEG_PERM_GROUPOBJUSED "groupobjused" 4761eda14cbcSMatt Macy 4762eda14cbcSMatt Macy #define ZFS_DELEG_PERM_HOLD "hold" 4763eda14cbcSMatt Macy #define ZFS_DELEG_PERM_RELEASE "release" 4764eda14cbcSMatt Macy #define ZFS_DELEG_PERM_DIFF "diff" 4765eda14cbcSMatt Macy #define ZFS_DELEG_PERM_BOOKMARK "bookmark" 4766eda14cbcSMatt Macy #define ZFS_DELEG_PERM_LOAD_KEY "load-key" 4767eda14cbcSMatt Macy #define ZFS_DELEG_PERM_CHANGE_KEY "change-key" 4768eda14cbcSMatt Macy 4769eda14cbcSMatt Macy #define ZFS_DELEG_PERM_PROJECTUSED "projectused" 4770eda14cbcSMatt Macy #define ZFS_DELEG_PERM_PROJECTQUOTA "projectquota" 4771eda14cbcSMatt Macy #define ZFS_DELEG_PERM_PROJECTOBJUSED "projectobjused" 4772eda14cbcSMatt Macy #define ZFS_DELEG_PERM_PROJECTOBJQUOTA "projectobjquota" 4773eda14cbcSMatt Macy 4774eda14cbcSMatt Macy #define ZFS_NUM_DELEG_NOTES ZFS_DELEG_NOTE_NONE 4775eda14cbcSMatt Macy 4776eda14cbcSMatt Macy static zfs_deleg_perm_tab_t zfs_deleg_perm_tbl[] = { 4777eda14cbcSMatt Macy { ZFS_DELEG_PERM_ALLOW, ZFS_DELEG_NOTE_ALLOW }, 4778eda14cbcSMatt Macy { ZFS_DELEG_PERM_CLONE, ZFS_DELEG_NOTE_CLONE }, 4779eda14cbcSMatt Macy { ZFS_DELEG_PERM_CREATE, ZFS_DELEG_NOTE_CREATE }, 4780eda14cbcSMatt Macy { ZFS_DELEG_PERM_DESTROY, ZFS_DELEG_NOTE_DESTROY }, 4781eda14cbcSMatt Macy { ZFS_DELEG_PERM_DIFF, ZFS_DELEG_NOTE_DIFF}, 4782eda14cbcSMatt Macy { ZFS_DELEG_PERM_HOLD, ZFS_DELEG_NOTE_HOLD }, 4783eda14cbcSMatt Macy { ZFS_DELEG_PERM_MOUNT, ZFS_DELEG_NOTE_MOUNT }, 4784eda14cbcSMatt Macy { ZFS_DELEG_PERM_PROMOTE, ZFS_DELEG_NOTE_PROMOTE }, 4785eda14cbcSMatt Macy { ZFS_DELEG_PERM_RECEIVE, ZFS_DELEG_NOTE_RECEIVE }, 4786eda14cbcSMatt Macy { ZFS_DELEG_PERM_RELEASE, ZFS_DELEG_NOTE_RELEASE }, 4787eda14cbcSMatt Macy { ZFS_DELEG_PERM_RENAME, ZFS_DELEG_NOTE_RENAME }, 4788eda14cbcSMatt Macy { ZFS_DELEG_PERM_ROLLBACK, ZFS_DELEG_NOTE_ROLLBACK }, 4789eda14cbcSMatt Macy { ZFS_DELEG_PERM_SEND, ZFS_DELEG_NOTE_SEND }, 4790eda14cbcSMatt Macy { ZFS_DELEG_PERM_SHARE, ZFS_DELEG_NOTE_SHARE }, 4791eda14cbcSMatt Macy { ZFS_DELEG_PERM_SNAPSHOT, ZFS_DELEG_NOTE_SNAPSHOT }, 4792eda14cbcSMatt Macy { ZFS_DELEG_PERM_BOOKMARK, ZFS_DELEG_NOTE_BOOKMARK }, 4793eda14cbcSMatt Macy { ZFS_DELEG_PERM_LOAD_KEY, ZFS_DELEG_NOTE_LOAD_KEY }, 4794eda14cbcSMatt Macy { ZFS_DELEG_PERM_CHANGE_KEY, ZFS_DELEG_NOTE_CHANGE_KEY }, 4795eda14cbcSMatt Macy 4796eda14cbcSMatt Macy { ZFS_DELEG_PERM_GROUPQUOTA, ZFS_DELEG_NOTE_GROUPQUOTA }, 4797eda14cbcSMatt Macy { ZFS_DELEG_PERM_GROUPUSED, ZFS_DELEG_NOTE_GROUPUSED }, 4798eda14cbcSMatt Macy { ZFS_DELEG_PERM_USERPROP, ZFS_DELEG_NOTE_USERPROP }, 4799eda14cbcSMatt Macy { ZFS_DELEG_PERM_USERQUOTA, ZFS_DELEG_NOTE_USERQUOTA }, 4800eda14cbcSMatt Macy { ZFS_DELEG_PERM_USERUSED, ZFS_DELEG_NOTE_USERUSED }, 4801eda14cbcSMatt Macy { ZFS_DELEG_PERM_USEROBJQUOTA, ZFS_DELEG_NOTE_USEROBJQUOTA }, 4802eda14cbcSMatt Macy { ZFS_DELEG_PERM_USEROBJUSED, ZFS_DELEG_NOTE_USEROBJUSED }, 4803eda14cbcSMatt Macy { ZFS_DELEG_PERM_GROUPOBJQUOTA, ZFS_DELEG_NOTE_GROUPOBJQUOTA }, 4804eda14cbcSMatt Macy { ZFS_DELEG_PERM_GROUPOBJUSED, ZFS_DELEG_NOTE_GROUPOBJUSED }, 4805eda14cbcSMatt Macy { ZFS_DELEG_PERM_PROJECTUSED, ZFS_DELEG_NOTE_PROJECTUSED }, 4806eda14cbcSMatt Macy { ZFS_DELEG_PERM_PROJECTQUOTA, ZFS_DELEG_NOTE_PROJECTQUOTA }, 4807eda14cbcSMatt Macy { ZFS_DELEG_PERM_PROJECTOBJUSED, ZFS_DELEG_NOTE_PROJECTOBJUSED }, 4808eda14cbcSMatt Macy { ZFS_DELEG_PERM_PROJECTOBJQUOTA, ZFS_DELEG_NOTE_PROJECTOBJQUOTA }, 4809eda14cbcSMatt Macy { NULL, ZFS_DELEG_NOTE_NONE } 4810eda14cbcSMatt Macy }; 4811eda14cbcSMatt Macy 4812eda14cbcSMatt Macy /* permission structure */ 4813eda14cbcSMatt Macy typedef struct deleg_perm { 4814eda14cbcSMatt Macy zfs_deleg_who_type_t dp_who_type; 4815eda14cbcSMatt Macy const char *dp_name; 4816eda14cbcSMatt Macy boolean_t dp_local; 4817eda14cbcSMatt Macy boolean_t dp_descend; 4818eda14cbcSMatt Macy } deleg_perm_t; 4819eda14cbcSMatt Macy 4820eda14cbcSMatt Macy /* */ 4821eda14cbcSMatt Macy typedef struct deleg_perm_node { 4822eda14cbcSMatt Macy deleg_perm_t dpn_perm; 4823eda14cbcSMatt Macy 4824eda14cbcSMatt Macy uu_avl_node_t dpn_avl_node; 4825eda14cbcSMatt Macy } deleg_perm_node_t; 4826eda14cbcSMatt Macy 4827eda14cbcSMatt Macy typedef struct fs_perm fs_perm_t; 4828eda14cbcSMatt Macy 4829eda14cbcSMatt Macy /* permissions set */ 4830eda14cbcSMatt Macy typedef struct who_perm { 4831eda14cbcSMatt Macy zfs_deleg_who_type_t who_type; 4832eda14cbcSMatt Macy const char *who_name; /* id */ 4833eda14cbcSMatt Macy char who_ug_name[256]; /* user/group name */ 4834eda14cbcSMatt Macy fs_perm_t *who_fsperm; /* uplink */ 4835eda14cbcSMatt Macy 4836eda14cbcSMatt Macy uu_avl_t *who_deleg_perm_avl; /* permissions */ 4837eda14cbcSMatt Macy } who_perm_t; 4838eda14cbcSMatt Macy 4839eda14cbcSMatt Macy /* */ 4840eda14cbcSMatt Macy typedef struct who_perm_node { 4841eda14cbcSMatt Macy who_perm_t who_perm; 4842eda14cbcSMatt Macy uu_avl_node_t who_avl_node; 4843eda14cbcSMatt Macy } who_perm_node_t; 4844eda14cbcSMatt Macy 4845eda14cbcSMatt Macy typedef struct fs_perm_set fs_perm_set_t; 4846eda14cbcSMatt Macy /* fs permissions */ 4847eda14cbcSMatt Macy struct fs_perm { 4848eda14cbcSMatt Macy const char *fsp_name; 4849eda14cbcSMatt Macy 4850eda14cbcSMatt Macy uu_avl_t *fsp_sc_avl; /* sets,create */ 4851eda14cbcSMatt Macy uu_avl_t *fsp_uge_avl; /* user,group,everyone */ 4852eda14cbcSMatt Macy 4853eda14cbcSMatt Macy fs_perm_set_t *fsp_set; /* uplink */ 4854eda14cbcSMatt Macy }; 4855eda14cbcSMatt Macy 4856eda14cbcSMatt Macy /* */ 4857eda14cbcSMatt Macy typedef struct fs_perm_node { 4858eda14cbcSMatt Macy fs_perm_t fspn_fsperm; 4859eda14cbcSMatt Macy uu_avl_t *fspn_avl; 4860eda14cbcSMatt Macy 4861eda14cbcSMatt Macy uu_list_node_t fspn_list_node; 4862eda14cbcSMatt Macy } fs_perm_node_t; 4863eda14cbcSMatt Macy 4864eda14cbcSMatt Macy /* top level structure */ 4865eda14cbcSMatt Macy struct fs_perm_set { 4866eda14cbcSMatt Macy uu_list_pool_t *fsps_list_pool; 4867eda14cbcSMatt Macy uu_list_t *fsps_list; /* list of fs_perms */ 4868eda14cbcSMatt Macy 4869eda14cbcSMatt Macy uu_avl_pool_t *fsps_named_set_avl_pool; 4870eda14cbcSMatt Macy uu_avl_pool_t *fsps_who_perm_avl_pool; 4871eda14cbcSMatt Macy uu_avl_pool_t *fsps_deleg_perm_avl_pool; 4872eda14cbcSMatt Macy }; 4873eda14cbcSMatt Macy 4874eda14cbcSMatt Macy static inline const char * 4875eda14cbcSMatt Macy deleg_perm_type(zfs_deleg_note_t note) 4876eda14cbcSMatt Macy { 4877eda14cbcSMatt Macy /* subcommands */ 4878eda14cbcSMatt Macy switch (note) { 4879eda14cbcSMatt Macy /* SUBCOMMANDS */ 4880eda14cbcSMatt Macy /* OTHER */ 4881eda14cbcSMatt Macy case ZFS_DELEG_NOTE_GROUPQUOTA: 4882eda14cbcSMatt Macy case ZFS_DELEG_NOTE_GROUPUSED: 4883eda14cbcSMatt Macy case ZFS_DELEG_NOTE_USERPROP: 4884eda14cbcSMatt Macy case ZFS_DELEG_NOTE_USERQUOTA: 4885eda14cbcSMatt Macy case ZFS_DELEG_NOTE_USERUSED: 4886eda14cbcSMatt Macy case ZFS_DELEG_NOTE_USEROBJQUOTA: 4887eda14cbcSMatt Macy case ZFS_DELEG_NOTE_USEROBJUSED: 4888eda14cbcSMatt Macy case ZFS_DELEG_NOTE_GROUPOBJQUOTA: 4889eda14cbcSMatt Macy case ZFS_DELEG_NOTE_GROUPOBJUSED: 4890eda14cbcSMatt Macy case ZFS_DELEG_NOTE_PROJECTUSED: 4891eda14cbcSMatt Macy case ZFS_DELEG_NOTE_PROJECTQUOTA: 4892eda14cbcSMatt Macy case ZFS_DELEG_NOTE_PROJECTOBJUSED: 4893eda14cbcSMatt Macy case ZFS_DELEG_NOTE_PROJECTOBJQUOTA: 4894eda14cbcSMatt Macy /* other */ 4895eda14cbcSMatt Macy return (gettext("other")); 4896eda14cbcSMatt Macy default: 4897eda14cbcSMatt Macy return (gettext("subcommand")); 4898eda14cbcSMatt Macy } 4899eda14cbcSMatt Macy } 4900eda14cbcSMatt Macy 4901eda14cbcSMatt Macy static int 4902eda14cbcSMatt Macy who_type2weight(zfs_deleg_who_type_t who_type) 4903eda14cbcSMatt Macy { 4904eda14cbcSMatt Macy int res; 4905eda14cbcSMatt Macy switch (who_type) { 4906eda14cbcSMatt Macy case ZFS_DELEG_NAMED_SET_SETS: 4907eda14cbcSMatt Macy case ZFS_DELEG_NAMED_SET: 4908eda14cbcSMatt Macy res = 0; 4909eda14cbcSMatt Macy break; 4910eda14cbcSMatt Macy case ZFS_DELEG_CREATE_SETS: 4911eda14cbcSMatt Macy case ZFS_DELEG_CREATE: 4912eda14cbcSMatt Macy res = 1; 4913eda14cbcSMatt Macy break; 4914eda14cbcSMatt Macy case ZFS_DELEG_USER_SETS: 4915eda14cbcSMatt Macy case ZFS_DELEG_USER: 4916eda14cbcSMatt Macy res = 2; 4917eda14cbcSMatt Macy break; 4918eda14cbcSMatt Macy case ZFS_DELEG_GROUP_SETS: 4919eda14cbcSMatt Macy case ZFS_DELEG_GROUP: 4920eda14cbcSMatt Macy res = 3; 4921eda14cbcSMatt Macy break; 4922eda14cbcSMatt Macy case ZFS_DELEG_EVERYONE_SETS: 4923eda14cbcSMatt Macy case ZFS_DELEG_EVERYONE: 4924eda14cbcSMatt Macy res = 4; 4925eda14cbcSMatt Macy break; 4926eda14cbcSMatt Macy default: 4927eda14cbcSMatt Macy res = -1; 4928eda14cbcSMatt Macy } 4929eda14cbcSMatt Macy 4930eda14cbcSMatt Macy return (res); 4931eda14cbcSMatt Macy } 4932eda14cbcSMatt Macy 4933eda14cbcSMatt Macy /* ARGSUSED */ 4934eda14cbcSMatt Macy static int 4935eda14cbcSMatt Macy who_perm_compare(const void *larg, const void *rarg, void *unused) 4936eda14cbcSMatt Macy { 4937eda14cbcSMatt Macy const who_perm_node_t *l = larg; 4938eda14cbcSMatt Macy const who_perm_node_t *r = rarg; 4939eda14cbcSMatt Macy zfs_deleg_who_type_t ltype = l->who_perm.who_type; 4940eda14cbcSMatt Macy zfs_deleg_who_type_t rtype = r->who_perm.who_type; 4941eda14cbcSMatt Macy int lweight = who_type2weight(ltype); 4942eda14cbcSMatt Macy int rweight = who_type2weight(rtype); 4943eda14cbcSMatt Macy int res = lweight - rweight; 4944eda14cbcSMatt Macy if (res == 0) 4945eda14cbcSMatt Macy res = strncmp(l->who_perm.who_name, r->who_perm.who_name, 4946eda14cbcSMatt Macy ZFS_MAX_DELEG_NAME-1); 4947eda14cbcSMatt Macy 4948eda14cbcSMatt Macy if (res == 0) 4949eda14cbcSMatt Macy return (0); 4950eda14cbcSMatt Macy if (res > 0) 4951eda14cbcSMatt Macy return (1); 4952eda14cbcSMatt Macy else 4953eda14cbcSMatt Macy return (-1); 4954eda14cbcSMatt Macy } 4955eda14cbcSMatt Macy 4956eda14cbcSMatt Macy /* ARGSUSED */ 4957eda14cbcSMatt Macy static int 4958eda14cbcSMatt Macy deleg_perm_compare(const void *larg, const void *rarg, void *unused) 4959eda14cbcSMatt Macy { 4960eda14cbcSMatt Macy const deleg_perm_node_t *l = larg; 4961eda14cbcSMatt Macy const deleg_perm_node_t *r = rarg; 4962eda14cbcSMatt Macy int res = strncmp(l->dpn_perm.dp_name, r->dpn_perm.dp_name, 4963eda14cbcSMatt Macy ZFS_MAX_DELEG_NAME-1); 4964eda14cbcSMatt Macy 4965eda14cbcSMatt Macy if (res == 0) 4966eda14cbcSMatt Macy return (0); 4967eda14cbcSMatt Macy 4968eda14cbcSMatt Macy if (res > 0) 4969eda14cbcSMatt Macy return (1); 4970eda14cbcSMatt Macy else 4971eda14cbcSMatt Macy return (-1); 4972eda14cbcSMatt Macy } 4973eda14cbcSMatt Macy 4974eda14cbcSMatt Macy static inline void 4975eda14cbcSMatt Macy fs_perm_set_init(fs_perm_set_t *fspset) 4976eda14cbcSMatt Macy { 4977eda14cbcSMatt Macy bzero(fspset, sizeof (fs_perm_set_t)); 4978eda14cbcSMatt Macy 4979eda14cbcSMatt Macy if ((fspset->fsps_list_pool = uu_list_pool_create("fsps_list_pool", 4980eda14cbcSMatt Macy sizeof (fs_perm_node_t), offsetof(fs_perm_node_t, fspn_list_node), 4981eda14cbcSMatt Macy NULL, UU_DEFAULT)) == NULL) 4982eda14cbcSMatt Macy nomem(); 4983eda14cbcSMatt Macy if ((fspset->fsps_list = uu_list_create(fspset->fsps_list_pool, NULL, 4984eda14cbcSMatt Macy UU_DEFAULT)) == NULL) 4985eda14cbcSMatt Macy nomem(); 4986eda14cbcSMatt Macy 4987eda14cbcSMatt Macy if ((fspset->fsps_named_set_avl_pool = uu_avl_pool_create( 4988eda14cbcSMatt Macy "named_set_avl_pool", sizeof (who_perm_node_t), offsetof( 4989eda14cbcSMatt Macy who_perm_node_t, who_avl_node), who_perm_compare, 4990eda14cbcSMatt Macy UU_DEFAULT)) == NULL) 4991eda14cbcSMatt Macy nomem(); 4992eda14cbcSMatt Macy 4993eda14cbcSMatt Macy if ((fspset->fsps_who_perm_avl_pool = uu_avl_pool_create( 4994eda14cbcSMatt Macy "who_perm_avl_pool", sizeof (who_perm_node_t), offsetof( 4995eda14cbcSMatt Macy who_perm_node_t, who_avl_node), who_perm_compare, 4996eda14cbcSMatt Macy UU_DEFAULT)) == NULL) 4997eda14cbcSMatt Macy nomem(); 4998eda14cbcSMatt Macy 4999eda14cbcSMatt Macy if ((fspset->fsps_deleg_perm_avl_pool = uu_avl_pool_create( 5000eda14cbcSMatt Macy "deleg_perm_avl_pool", sizeof (deleg_perm_node_t), offsetof( 5001eda14cbcSMatt Macy deleg_perm_node_t, dpn_avl_node), deleg_perm_compare, UU_DEFAULT)) 5002eda14cbcSMatt Macy == NULL) 5003eda14cbcSMatt Macy nomem(); 5004eda14cbcSMatt Macy } 5005eda14cbcSMatt Macy 5006eda14cbcSMatt Macy static inline void fs_perm_fini(fs_perm_t *); 5007eda14cbcSMatt Macy static inline void who_perm_fini(who_perm_t *); 5008eda14cbcSMatt Macy 5009eda14cbcSMatt Macy static inline void 5010eda14cbcSMatt Macy fs_perm_set_fini(fs_perm_set_t *fspset) 5011eda14cbcSMatt Macy { 5012eda14cbcSMatt Macy fs_perm_node_t *node = uu_list_first(fspset->fsps_list); 5013eda14cbcSMatt Macy 5014eda14cbcSMatt Macy while (node != NULL) { 5015eda14cbcSMatt Macy fs_perm_node_t *next_node = 5016eda14cbcSMatt Macy uu_list_next(fspset->fsps_list, node); 5017eda14cbcSMatt Macy fs_perm_t *fsperm = &node->fspn_fsperm; 5018eda14cbcSMatt Macy fs_perm_fini(fsperm); 5019eda14cbcSMatt Macy uu_list_remove(fspset->fsps_list, node); 5020eda14cbcSMatt Macy free(node); 5021eda14cbcSMatt Macy node = next_node; 5022eda14cbcSMatt Macy } 5023eda14cbcSMatt Macy 5024eda14cbcSMatt Macy uu_avl_pool_destroy(fspset->fsps_named_set_avl_pool); 5025eda14cbcSMatt Macy uu_avl_pool_destroy(fspset->fsps_who_perm_avl_pool); 5026eda14cbcSMatt Macy uu_avl_pool_destroy(fspset->fsps_deleg_perm_avl_pool); 5027eda14cbcSMatt Macy } 5028eda14cbcSMatt Macy 5029eda14cbcSMatt Macy static inline void 5030eda14cbcSMatt Macy deleg_perm_init(deleg_perm_t *deleg_perm, zfs_deleg_who_type_t type, 5031eda14cbcSMatt Macy const char *name) 5032eda14cbcSMatt Macy { 5033eda14cbcSMatt Macy deleg_perm->dp_who_type = type; 5034eda14cbcSMatt Macy deleg_perm->dp_name = name; 5035eda14cbcSMatt Macy } 5036eda14cbcSMatt Macy 5037eda14cbcSMatt Macy static inline void 5038eda14cbcSMatt Macy who_perm_init(who_perm_t *who_perm, fs_perm_t *fsperm, 5039eda14cbcSMatt Macy zfs_deleg_who_type_t type, const char *name) 5040eda14cbcSMatt Macy { 5041eda14cbcSMatt Macy uu_avl_pool_t *pool; 5042eda14cbcSMatt Macy pool = fsperm->fsp_set->fsps_deleg_perm_avl_pool; 5043eda14cbcSMatt Macy 5044eda14cbcSMatt Macy bzero(who_perm, sizeof (who_perm_t)); 5045eda14cbcSMatt Macy 5046eda14cbcSMatt Macy if ((who_perm->who_deleg_perm_avl = uu_avl_create(pool, NULL, 5047eda14cbcSMatt Macy UU_DEFAULT)) == NULL) 5048eda14cbcSMatt Macy nomem(); 5049eda14cbcSMatt Macy 5050eda14cbcSMatt Macy who_perm->who_type = type; 5051eda14cbcSMatt Macy who_perm->who_name = name; 5052eda14cbcSMatt Macy who_perm->who_fsperm = fsperm; 5053eda14cbcSMatt Macy } 5054eda14cbcSMatt Macy 5055eda14cbcSMatt Macy static inline void 5056eda14cbcSMatt Macy who_perm_fini(who_perm_t *who_perm) 5057eda14cbcSMatt Macy { 5058eda14cbcSMatt Macy deleg_perm_node_t *node = uu_avl_first(who_perm->who_deleg_perm_avl); 5059eda14cbcSMatt Macy 5060eda14cbcSMatt Macy while (node != NULL) { 5061eda14cbcSMatt Macy deleg_perm_node_t *next_node = 5062eda14cbcSMatt Macy uu_avl_next(who_perm->who_deleg_perm_avl, node); 5063eda14cbcSMatt Macy 5064eda14cbcSMatt Macy uu_avl_remove(who_perm->who_deleg_perm_avl, node); 5065eda14cbcSMatt Macy free(node); 5066eda14cbcSMatt Macy node = next_node; 5067eda14cbcSMatt Macy } 5068eda14cbcSMatt Macy 5069eda14cbcSMatt Macy uu_avl_destroy(who_perm->who_deleg_perm_avl); 5070eda14cbcSMatt Macy } 5071eda14cbcSMatt Macy 5072eda14cbcSMatt Macy static inline void 5073eda14cbcSMatt Macy fs_perm_init(fs_perm_t *fsperm, fs_perm_set_t *fspset, const char *fsname) 5074eda14cbcSMatt Macy { 5075eda14cbcSMatt Macy uu_avl_pool_t *nset_pool = fspset->fsps_named_set_avl_pool; 5076eda14cbcSMatt Macy uu_avl_pool_t *who_pool = fspset->fsps_who_perm_avl_pool; 5077eda14cbcSMatt Macy 5078eda14cbcSMatt Macy bzero(fsperm, sizeof (fs_perm_t)); 5079eda14cbcSMatt Macy 5080eda14cbcSMatt Macy if ((fsperm->fsp_sc_avl = uu_avl_create(nset_pool, NULL, UU_DEFAULT)) 5081eda14cbcSMatt Macy == NULL) 5082eda14cbcSMatt Macy nomem(); 5083eda14cbcSMatt Macy 5084eda14cbcSMatt Macy if ((fsperm->fsp_uge_avl = uu_avl_create(who_pool, NULL, UU_DEFAULT)) 5085eda14cbcSMatt Macy == NULL) 5086eda14cbcSMatt Macy nomem(); 5087eda14cbcSMatt Macy 5088eda14cbcSMatt Macy fsperm->fsp_set = fspset; 5089eda14cbcSMatt Macy fsperm->fsp_name = fsname; 5090eda14cbcSMatt Macy } 5091eda14cbcSMatt Macy 5092eda14cbcSMatt Macy static inline void 5093eda14cbcSMatt Macy fs_perm_fini(fs_perm_t *fsperm) 5094eda14cbcSMatt Macy { 5095eda14cbcSMatt Macy who_perm_node_t *node = uu_avl_first(fsperm->fsp_sc_avl); 5096eda14cbcSMatt Macy while (node != NULL) { 5097eda14cbcSMatt Macy who_perm_node_t *next_node = uu_avl_next(fsperm->fsp_sc_avl, 5098eda14cbcSMatt Macy node); 5099eda14cbcSMatt Macy who_perm_t *who_perm = &node->who_perm; 5100eda14cbcSMatt Macy who_perm_fini(who_perm); 5101eda14cbcSMatt Macy uu_avl_remove(fsperm->fsp_sc_avl, node); 5102eda14cbcSMatt Macy free(node); 5103eda14cbcSMatt Macy node = next_node; 5104eda14cbcSMatt Macy } 5105eda14cbcSMatt Macy 5106eda14cbcSMatt Macy node = uu_avl_first(fsperm->fsp_uge_avl); 5107eda14cbcSMatt Macy while (node != NULL) { 5108eda14cbcSMatt Macy who_perm_node_t *next_node = uu_avl_next(fsperm->fsp_uge_avl, 5109eda14cbcSMatt Macy node); 5110eda14cbcSMatt Macy who_perm_t *who_perm = &node->who_perm; 5111eda14cbcSMatt Macy who_perm_fini(who_perm); 5112eda14cbcSMatt Macy uu_avl_remove(fsperm->fsp_uge_avl, node); 5113eda14cbcSMatt Macy free(node); 5114eda14cbcSMatt Macy node = next_node; 5115eda14cbcSMatt Macy } 5116eda14cbcSMatt Macy 5117eda14cbcSMatt Macy uu_avl_destroy(fsperm->fsp_sc_avl); 5118eda14cbcSMatt Macy uu_avl_destroy(fsperm->fsp_uge_avl); 5119eda14cbcSMatt Macy } 5120eda14cbcSMatt Macy 5121eda14cbcSMatt Macy static void 5122eda14cbcSMatt Macy set_deleg_perm_node(uu_avl_t *avl, deleg_perm_node_t *node, 5123eda14cbcSMatt Macy zfs_deleg_who_type_t who_type, const char *name, char locality) 5124eda14cbcSMatt Macy { 5125eda14cbcSMatt Macy uu_avl_index_t idx = 0; 5126eda14cbcSMatt Macy 5127eda14cbcSMatt Macy deleg_perm_node_t *found_node = NULL; 5128eda14cbcSMatt Macy deleg_perm_t *deleg_perm = &node->dpn_perm; 5129eda14cbcSMatt Macy 5130eda14cbcSMatt Macy deleg_perm_init(deleg_perm, who_type, name); 5131eda14cbcSMatt Macy 5132eda14cbcSMatt Macy if ((found_node = uu_avl_find(avl, node, NULL, &idx)) 5133eda14cbcSMatt Macy == NULL) 5134eda14cbcSMatt Macy uu_avl_insert(avl, node, idx); 5135eda14cbcSMatt Macy else { 5136eda14cbcSMatt Macy node = found_node; 5137eda14cbcSMatt Macy deleg_perm = &node->dpn_perm; 5138eda14cbcSMatt Macy } 5139eda14cbcSMatt Macy 5140eda14cbcSMatt Macy 5141eda14cbcSMatt Macy switch (locality) { 5142eda14cbcSMatt Macy case ZFS_DELEG_LOCAL: 5143eda14cbcSMatt Macy deleg_perm->dp_local = B_TRUE; 5144eda14cbcSMatt Macy break; 5145eda14cbcSMatt Macy case ZFS_DELEG_DESCENDENT: 5146eda14cbcSMatt Macy deleg_perm->dp_descend = B_TRUE; 5147eda14cbcSMatt Macy break; 5148eda14cbcSMatt Macy case ZFS_DELEG_NA: 5149eda14cbcSMatt Macy break; 5150eda14cbcSMatt Macy default: 5151eda14cbcSMatt Macy assert(B_FALSE); /* invalid locality */ 5152eda14cbcSMatt Macy } 5153eda14cbcSMatt Macy } 5154eda14cbcSMatt Macy 5155eda14cbcSMatt Macy static inline int 5156eda14cbcSMatt Macy parse_who_perm(who_perm_t *who_perm, nvlist_t *nvl, char locality) 5157eda14cbcSMatt Macy { 5158eda14cbcSMatt Macy nvpair_t *nvp = NULL; 5159eda14cbcSMatt Macy fs_perm_set_t *fspset = who_perm->who_fsperm->fsp_set; 5160eda14cbcSMatt Macy uu_avl_t *avl = who_perm->who_deleg_perm_avl; 5161eda14cbcSMatt Macy zfs_deleg_who_type_t who_type = who_perm->who_type; 5162eda14cbcSMatt Macy 5163eda14cbcSMatt Macy while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) { 5164eda14cbcSMatt Macy const char *name = nvpair_name(nvp); 5165eda14cbcSMatt Macy data_type_t type = nvpair_type(nvp); 5166eda14cbcSMatt Macy uu_avl_pool_t *avl_pool = fspset->fsps_deleg_perm_avl_pool; 5167eda14cbcSMatt Macy deleg_perm_node_t *node = 5168eda14cbcSMatt Macy safe_malloc(sizeof (deleg_perm_node_t)); 5169eda14cbcSMatt Macy 5170eda14cbcSMatt Macy VERIFY(type == DATA_TYPE_BOOLEAN); 5171eda14cbcSMatt Macy 5172eda14cbcSMatt Macy uu_avl_node_init(node, &node->dpn_avl_node, avl_pool); 5173eda14cbcSMatt Macy set_deleg_perm_node(avl, node, who_type, name, locality); 5174eda14cbcSMatt Macy } 5175eda14cbcSMatt Macy 5176eda14cbcSMatt Macy return (0); 5177eda14cbcSMatt Macy } 5178eda14cbcSMatt Macy 5179eda14cbcSMatt Macy static inline int 5180eda14cbcSMatt Macy parse_fs_perm(fs_perm_t *fsperm, nvlist_t *nvl) 5181eda14cbcSMatt Macy { 5182eda14cbcSMatt Macy nvpair_t *nvp = NULL; 5183eda14cbcSMatt Macy fs_perm_set_t *fspset = fsperm->fsp_set; 5184eda14cbcSMatt Macy 5185eda14cbcSMatt Macy while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) { 5186eda14cbcSMatt Macy nvlist_t *nvl2 = NULL; 5187eda14cbcSMatt Macy const char *name = nvpair_name(nvp); 5188eda14cbcSMatt Macy uu_avl_t *avl = NULL; 5189eda14cbcSMatt Macy uu_avl_pool_t *avl_pool = NULL; 5190eda14cbcSMatt Macy zfs_deleg_who_type_t perm_type = name[0]; 5191eda14cbcSMatt Macy char perm_locality = name[1]; 5192eda14cbcSMatt Macy const char *perm_name = name + 3; 5193eda14cbcSMatt Macy who_perm_t *who_perm = NULL; 5194eda14cbcSMatt Macy 5195eda14cbcSMatt Macy assert('$' == name[2]); 5196eda14cbcSMatt Macy 5197eda14cbcSMatt Macy if (nvpair_value_nvlist(nvp, &nvl2) != 0) 5198eda14cbcSMatt Macy return (-1); 5199eda14cbcSMatt Macy 5200eda14cbcSMatt Macy switch (perm_type) { 5201eda14cbcSMatt Macy case ZFS_DELEG_CREATE: 5202eda14cbcSMatt Macy case ZFS_DELEG_CREATE_SETS: 5203eda14cbcSMatt Macy case ZFS_DELEG_NAMED_SET: 5204eda14cbcSMatt Macy case ZFS_DELEG_NAMED_SET_SETS: 5205eda14cbcSMatt Macy avl_pool = fspset->fsps_named_set_avl_pool; 5206eda14cbcSMatt Macy avl = fsperm->fsp_sc_avl; 5207eda14cbcSMatt Macy break; 5208eda14cbcSMatt Macy case ZFS_DELEG_USER: 5209eda14cbcSMatt Macy case ZFS_DELEG_USER_SETS: 5210eda14cbcSMatt Macy case ZFS_DELEG_GROUP: 5211eda14cbcSMatt Macy case ZFS_DELEG_GROUP_SETS: 5212eda14cbcSMatt Macy case ZFS_DELEG_EVERYONE: 5213eda14cbcSMatt Macy case ZFS_DELEG_EVERYONE_SETS: 5214eda14cbcSMatt Macy avl_pool = fspset->fsps_who_perm_avl_pool; 5215eda14cbcSMatt Macy avl = fsperm->fsp_uge_avl; 5216eda14cbcSMatt Macy break; 5217eda14cbcSMatt Macy 5218eda14cbcSMatt Macy default: 5219eda14cbcSMatt Macy assert(!"unhandled zfs_deleg_who_type_t"); 5220eda14cbcSMatt Macy } 5221eda14cbcSMatt Macy 5222eda14cbcSMatt Macy who_perm_node_t *found_node = NULL; 5223eda14cbcSMatt Macy who_perm_node_t *node = safe_malloc( 5224eda14cbcSMatt Macy sizeof (who_perm_node_t)); 5225eda14cbcSMatt Macy who_perm = &node->who_perm; 5226eda14cbcSMatt Macy uu_avl_index_t idx = 0; 5227eda14cbcSMatt Macy 5228eda14cbcSMatt Macy uu_avl_node_init(node, &node->who_avl_node, avl_pool); 5229eda14cbcSMatt Macy who_perm_init(who_perm, fsperm, perm_type, perm_name); 5230eda14cbcSMatt Macy 5231eda14cbcSMatt Macy if ((found_node = uu_avl_find(avl, node, NULL, &idx)) 5232eda14cbcSMatt Macy == NULL) { 5233eda14cbcSMatt Macy if (avl == fsperm->fsp_uge_avl) { 5234eda14cbcSMatt Macy uid_t rid = 0; 5235eda14cbcSMatt Macy struct passwd *p = NULL; 5236eda14cbcSMatt Macy struct group *g = NULL; 5237eda14cbcSMatt Macy const char *nice_name = NULL; 5238eda14cbcSMatt Macy 5239eda14cbcSMatt Macy switch (perm_type) { 5240eda14cbcSMatt Macy case ZFS_DELEG_USER_SETS: 5241eda14cbcSMatt Macy case ZFS_DELEG_USER: 5242eda14cbcSMatt Macy rid = atoi(perm_name); 5243eda14cbcSMatt Macy p = getpwuid(rid); 5244eda14cbcSMatt Macy if (p) 5245eda14cbcSMatt Macy nice_name = p->pw_name; 5246eda14cbcSMatt Macy break; 5247eda14cbcSMatt Macy case ZFS_DELEG_GROUP_SETS: 5248eda14cbcSMatt Macy case ZFS_DELEG_GROUP: 5249eda14cbcSMatt Macy rid = atoi(perm_name); 5250eda14cbcSMatt Macy g = getgrgid(rid); 5251eda14cbcSMatt Macy if (g) 5252eda14cbcSMatt Macy nice_name = g->gr_name; 5253eda14cbcSMatt Macy break; 5254eda14cbcSMatt Macy 5255eda14cbcSMatt Macy default: 5256eda14cbcSMatt Macy break; 5257eda14cbcSMatt Macy } 5258eda14cbcSMatt Macy 5259eda14cbcSMatt Macy if (nice_name != NULL) { 5260eda14cbcSMatt Macy (void) strlcpy( 5261eda14cbcSMatt Macy node->who_perm.who_ug_name, 5262eda14cbcSMatt Macy nice_name, 256); 5263eda14cbcSMatt Macy } else { 5264eda14cbcSMatt Macy /* User or group unknown */ 5265eda14cbcSMatt Macy (void) snprintf( 5266eda14cbcSMatt Macy node->who_perm.who_ug_name, 5267eda14cbcSMatt Macy sizeof (node->who_perm.who_ug_name), 5268eda14cbcSMatt Macy "(unknown: %d)", rid); 5269eda14cbcSMatt Macy } 5270eda14cbcSMatt Macy } 5271eda14cbcSMatt Macy 5272eda14cbcSMatt Macy uu_avl_insert(avl, node, idx); 5273eda14cbcSMatt Macy } else { 5274eda14cbcSMatt Macy node = found_node; 5275eda14cbcSMatt Macy who_perm = &node->who_perm; 5276eda14cbcSMatt Macy } 5277eda14cbcSMatt Macy 5278eda14cbcSMatt Macy assert(who_perm != NULL); 5279eda14cbcSMatt Macy (void) parse_who_perm(who_perm, nvl2, perm_locality); 5280eda14cbcSMatt Macy } 5281eda14cbcSMatt Macy 5282eda14cbcSMatt Macy return (0); 5283eda14cbcSMatt Macy } 5284eda14cbcSMatt Macy 5285eda14cbcSMatt Macy static inline int 5286eda14cbcSMatt Macy parse_fs_perm_set(fs_perm_set_t *fspset, nvlist_t *nvl) 5287eda14cbcSMatt Macy { 5288eda14cbcSMatt Macy nvpair_t *nvp = NULL; 5289eda14cbcSMatt Macy uu_avl_index_t idx = 0; 5290eda14cbcSMatt Macy 5291eda14cbcSMatt Macy while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) { 5292eda14cbcSMatt Macy nvlist_t *nvl2 = NULL; 5293eda14cbcSMatt Macy const char *fsname = nvpair_name(nvp); 5294eda14cbcSMatt Macy data_type_t type = nvpair_type(nvp); 5295eda14cbcSMatt Macy fs_perm_t *fsperm = NULL; 5296eda14cbcSMatt Macy fs_perm_node_t *node = safe_malloc(sizeof (fs_perm_node_t)); 5297eda14cbcSMatt Macy if (node == NULL) 5298eda14cbcSMatt Macy nomem(); 5299eda14cbcSMatt Macy 5300eda14cbcSMatt Macy fsperm = &node->fspn_fsperm; 5301eda14cbcSMatt Macy 5302eda14cbcSMatt Macy VERIFY(DATA_TYPE_NVLIST == type); 5303eda14cbcSMatt Macy 5304eda14cbcSMatt Macy uu_list_node_init(node, &node->fspn_list_node, 5305eda14cbcSMatt Macy fspset->fsps_list_pool); 5306eda14cbcSMatt Macy 5307eda14cbcSMatt Macy idx = uu_list_numnodes(fspset->fsps_list); 5308eda14cbcSMatt Macy fs_perm_init(fsperm, fspset, fsname); 5309eda14cbcSMatt Macy 5310eda14cbcSMatt Macy if (nvpair_value_nvlist(nvp, &nvl2) != 0) 5311eda14cbcSMatt Macy return (-1); 5312eda14cbcSMatt Macy 5313eda14cbcSMatt Macy (void) parse_fs_perm(fsperm, nvl2); 5314eda14cbcSMatt Macy 5315eda14cbcSMatt Macy uu_list_insert(fspset->fsps_list, node, idx); 5316eda14cbcSMatt Macy } 5317eda14cbcSMatt Macy 5318eda14cbcSMatt Macy return (0); 5319eda14cbcSMatt Macy } 5320eda14cbcSMatt Macy 5321eda14cbcSMatt Macy static inline const char * 5322eda14cbcSMatt Macy deleg_perm_comment(zfs_deleg_note_t note) 5323eda14cbcSMatt Macy { 5324eda14cbcSMatt Macy const char *str = ""; 5325eda14cbcSMatt Macy 5326eda14cbcSMatt Macy /* subcommands */ 5327eda14cbcSMatt Macy switch (note) { 5328eda14cbcSMatt Macy /* SUBCOMMANDS */ 5329eda14cbcSMatt Macy case ZFS_DELEG_NOTE_ALLOW: 5330eda14cbcSMatt Macy str = gettext("Must also have the permission that is being" 5331eda14cbcSMatt Macy "\n\t\t\t\tallowed"); 5332eda14cbcSMatt Macy break; 5333eda14cbcSMatt Macy case ZFS_DELEG_NOTE_CLONE: 5334eda14cbcSMatt Macy str = gettext("Must also have the 'create' ability and 'mount'" 5335eda14cbcSMatt Macy "\n\t\t\t\tability in the origin file system"); 5336eda14cbcSMatt Macy break; 5337eda14cbcSMatt Macy case ZFS_DELEG_NOTE_CREATE: 5338eda14cbcSMatt Macy str = gettext("Must also have the 'mount' ability"); 5339eda14cbcSMatt Macy break; 5340eda14cbcSMatt Macy case ZFS_DELEG_NOTE_DESTROY: 5341eda14cbcSMatt Macy str = gettext("Must also have the 'mount' ability"); 5342eda14cbcSMatt Macy break; 5343eda14cbcSMatt Macy case ZFS_DELEG_NOTE_DIFF: 5344eda14cbcSMatt Macy str = gettext("Allows lookup of paths within a dataset;" 5345eda14cbcSMatt Macy "\n\t\t\t\tgiven an object number. Ordinary users need this" 5346eda14cbcSMatt Macy "\n\t\t\t\tin order to use zfs diff"); 5347eda14cbcSMatt Macy break; 5348eda14cbcSMatt Macy case ZFS_DELEG_NOTE_HOLD: 5349eda14cbcSMatt Macy str = gettext("Allows adding a user hold to a snapshot"); 5350eda14cbcSMatt Macy break; 5351eda14cbcSMatt Macy case ZFS_DELEG_NOTE_MOUNT: 5352eda14cbcSMatt Macy str = gettext("Allows mount/umount of ZFS datasets"); 5353eda14cbcSMatt Macy break; 5354eda14cbcSMatt Macy case ZFS_DELEG_NOTE_PROMOTE: 5355eda14cbcSMatt Macy str = gettext("Must also have the 'mount'\n\t\t\t\tand" 5356eda14cbcSMatt Macy " 'promote' ability in the origin file system"); 5357eda14cbcSMatt Macy break; 5358eda14cbcSMatt Macy case ZFS_DELEG_NOTE_RECEIVE: 5359eda14cbcSMatt Macy str = gettext("Must also have the 'mount' and 'create'" 5360eda14cbcSMatt Macy " ability"); 5361eda14cbcSMatt Macy break; 5362eda14cbcSMatt Macy case ZFS_DELEG_NOTE_RELEASE: 5363eda14cbcSMatt Macy str = gettext("Allows releasing a user hold which\n\t\t\t\t" 5364eda14cbcSMatt Macy "might destroy the snapshot"); 5365eda14cbcSMatt Macy break; 5366eda14cbcSMatt Macy case ZFS_DELEG_NOTE_RENAME: 5367eda14cbcSMatt Macy str = gettext("Must also have the 'mount' and 'create'" 5368eda14cbcSMatt Macy "\n\t\t\t\tability in the new parent"); 5369eda14cbcSMatt Macy break; 5370eda14cbcSMatt Macy case ZFS_DELEG_NOTE_ROLLBACK: 5371eda14cbcSMatt Macy str = gettext(""); 5372eda14cbcSMatt Macy break; 5373eda14cbcSMatt Macy case ZFS_DELEG_NOTE_SEND: 5374eda14cbcSMatt Macy str = gettext(""); 5375eda14cbcSMatt Macy break; 5376eda14cbcSMatt Macy case ZFS_DELEG_NOTE_SHARE: 5377eda14cbcSMatt Macy str = gettext("Allows sharing file systems over NFS or SMB" 5378eda14cbcSMatt Macy "\n\t\t\t\tprotocols"); 5379eda14cbcSMatt Macy break; 5380eda14cbcSMatt Macy case ZFS_DELEG_NOTE_SNAPSHOT: 5381eda14cbcSMatt Macy str = gettext(""); 5382eda14cbcSMatt Macy break; 5383eda14cbcSMatt Macy case ZFS_DELEG_NOTE_LOAD_KEY: 5384eda14cbcSMatt Macy str = gettext("Allows loading or unloading an encryption key"); 5385eda14cbcSMatt Macy break; 5386eda14cbcSMatt Macy case ZFS_DELEG_NOTE_CHANGE_KEY: 5387eda14cbcSMatt Macy str = gettext("Allows changing or adding an encryption key"); 5388eda14cbcSMatt Macy break; 5389eda14cbcSMatt Macy /* 5390eda14cbcSMatt Macy * case ZFS_DELEG_NOTE_VSCAN: 5391eda14cbcSMatt Macy * str = gettext(""); 5392eda14cbcSMatt Macy * break; 5393eda14cbcSMatt Macy */ 5394eda14cbcSMatt Macy /* OTHER */ 5395eda14cbcSMatt Macy case ZFS_DELEG_NOTE_GROUPQUOTA: 5396eda14cbcSMatt Macy str = gettext("Allows accessing any groupquota@... property"); 5397eda14cbcSMatt Macy break; 5398eda14cbcSMatt Macy case ZFS_DELEG_NOTE_GROUPUSED: 5399eda14cbcSMatt Macy str = gettext("Allows reading any groupused@... property"); 5400eda14cbcSMatt Macy break; 5401eda14cbcSMatt Macy case ZFS_DELEG_NOTE_USERPROP: 5402eda14cbcSMatt Macy str = gettext("Allows changing any user property"); 5403eda14cbcSMatt Macy break; 5404eda14cbcSMatt Macy case ZFS_DELEG_NOTE_USERQUOTA: 5405eda14cbcSMatt Macy str = gettext("Allows accessing any userquota@... property"); 5406eda14cbcSMatt Macy break; 5407eda14cbcSMatt Macy case ZFS_DELEG_NOTE_USERUSED: 5408eda14cbcSMatt Macy str = gettext("Allows reading any userused@... property"); 5409eda14cbcSMatt Macy break; 5410eda14cbcSMatt Macy case ZFS_DELEG_NOTE_USEROBJQUOTA: 5411eda14cbcSMatt Macy str = gettext("Allows accessing any userobjquota@... property"); 5412eda14cbcSMatt Macy break; 5413eda14cbcSMatt Macy case ZFS_DELEG_NOTE_GROUPOBJQUOTA: 5414eda14cbcSMatt Macy str = gettext("Allows accessing any \n\t\t\t\t" 5415eda14cbcSMatt Macy "groupobjquota@... property"); 5416eda14cbcSMatt Macy break; 5417eda14cbcSMatt Macy case ZFS_DELEG_NOTE_GROUPOBJUSED: 5418eda14cbcSMatt Macy str = gettext("Allows reading any groupobjused@... property"); 5419eda14cbcSMatt Macy break; 5420eda14cbcSMatt Macy case ZFS_DELEG_NOTE_USEROBJUSED: 5421eda14cbcSMatt Macy str = gettext("Allows reading any userobjused@... property"); 5422eda14cbcSMatt Macy break; 5423eda14cbcSMatt Macy case ZFS_DELEG_NOTE_PROJECTQUOTA: 5424eda14cbcSMatt Macy str = gettext("Allows accessing any projectquota@... property"); 5425eda14cbcSMatt Macy break; 5426eda14cbcSMatt Macy case ZFS_DELEG_NOTE_PROJECTOBJQUOTA: 5427eda14cbcSMatt Macy str = gettext("Allows accessing any \n\t\t\t\t" 5428eda14cbcSMatt Macy "projectobjquota@... property"); 5429eda14cbcSMatt Macy break; 5430eda14cbcSMatt Macy case ZFS_DELEG_NOTE_PROJECTUSED: 5431eda14cbcSMatt Macy str = gettext("Allows reading any projectused@... property"); 5432eda14cbcSMatt Macy break; 5433eda14cbcSMatt Macy case ZFS_DELEG_NOTE_PROJECTOBJUSED: 5434eda14cbcSMatt Macy str = gettext("Allows accessing any \n\t\t\t\t" 5435eda14cbcSMatt Macy "projectobjused@... property"); 5436eda14cbcSMatt Macy break; 5437eda14cbcSMatt Macy /* other */ 5438eda14cbcSMatt Macy default: 5439eda14cbcSMatt Macy str = ""; 5440eda14cbcSMatt Macy } 5441eda14cbcSMatt Macy 5442eda14cbcSMatt Macy return (str); 5443eda14cbcSMatt Macy } 5444eda14cbcSMatt Macy 5445eda14cbcSMatt Macy struct allow_opts { 5446eda14cbcSMatt Macy boolean_t local; 5447eda14cbcSMatt Macy boolean_t descend; 5448eda14cbcSMatt Macy boolean_t user; 5449eda14cbcSMatt Macy boolean_t group; 5450eda14cbcSMatt Macy boolean_t everyone; 5451eda14cbcSMatt Macy boolean_t create; 5452eda14cbcSMatt Macy boolean_t set; 5453eda14cbcSMatt Macy boolean_t recursive; /* unallow only */ 5454eda14cbcSMatt Macy boolean_t prt_usage; 5455eda14cbcSMatt Macy 5456eda14cbcSMatt Macy boolean_t prt_perms; 5457eda14cbcSMatt Macy char *who; 5458eda14cbcSMatt Macy char *perms; 5459eda14cbcSMatt Macy const char *dataset; 5460eda14cbcSMatt Macy }; 5461eda14cbcSMatt Macy 5462eda14cbcSMatt Macy static inline int 5463eda14cbcSMatt Macy prop_cmp(const void *a, const void *b) 5464eda14cbcSMatt Macy { 5465eda14cbcSMatt Macy const char *str1 = *(const char **)a; 5466eda14cbcSMatt Macy const char *str2 = *(const char **)b; 5467eda14cbcSMatt Macy return (strcmp(str1, str2)); 5468eda14cbcSMatt Macy } 5469eda14cbcSMatt Macy 5470eda14cbcSMatt Macy static void 5471eda14cbcSMatt Macy allow_usage(boolean_t un, boolean_t requested, const char *msg) 5472eda14cbcSMatt Macy { 5473eda14cbcSMatt Macy const char *opt_desc[] = { 5474eda14cbcSMatt Macy "-h", gettext("show this help message and exit"), 5475eda14cbcSMatt Macy "-l", gettext("set permission locally"), 5476eda14cbcSMatt Macy "-d", gettext("set permission for descents"), 5477eda14cbcSMatt Macy "-u", gettext("set permission for user"), 5478eda14cbcSMatt Macy "-g", gettext("set permission for group"), 5479eda14cbcSMatt Macy "-e", gettext("set permission for everyone"), 5480eda14cbcSMatt Macy "-c", gettext("set create time permission"), 5481eda14cbcSMatt Macy "-s", gettext("define permission set"), 5482eda14cbcSMatt Macy /* unallow only */ 5483eda14cbcSMatt Macy "-r", gettext("remove permissions recursively"), 5484eda14cbcSMatt Macy }; 5485eda14cbcSMatt Macy size_t unallow_size = sizeof (opt_desc) / sizeof (char *); 5486eda14cbcSMatt Macy size_t allow_size = unallow_size - 2; 5487eda14cbcSMatt Macy const char *props[ZFS_NUM_PROPS]; 5488eda14cbcSMatt Macy int i; 5489eda14cbcSMatt Macy size_t count = 0; 5490eda14cbcSMatt Macy FILE *fp = requested ? stdout : stderr; 5491eda14cbcSMatt Macy zprop_desc_t *pdtbl = zfs_prop_get_table(); 5492eda14cbcSMatt Macy const char *fmt = gettext("%-16s %-14s\t%s\n"); 5493eda14cbcSMatt Macy 5494eda14cbcSMatt Macy (void) fprintf(fp, gettext("Usage: %s\n"), get_usage(un ? HELP_UNALLOW : 5495eda14cbcSMatt Macy HELP_ALLOW)); 5496eda14cbcSMatt Macy (void) fprintf(fp, gettext("Options:\n")); 5497eda14cbcSMatt Macy for (i = 0; i < (un ? unallow_size : allow_size); i += 2) { 5498eda14cbcSMatt Macy const char *opt = opt_desc[i]; 5499eda14cbcSMatt Macy const char *optdsc = opt_desc[i + 1]; 5500eda14cbcSMatt Macy (void) fprintf(fp, gettext(" %-10s %s\n"), opt, optdsc); 5501eda14cbcSMatt Macy } 5502eda14cbcSMatt Macy 5503eda14cbcSMatt Macy (void) fprintf(fp, gettext("\nThe following permissions are " 5504eda14cbcSMatt Macy "supported:\n\n")); 5505eda14cbcSMatt Macy (void) fprintf(fp, fmt, gettext("NAME"), gettext("TYPE"), 5506eda14cbcSMatt Macy gettext("NOTES")); 5507eda14cbcSMatt Macy for (i = 0; i < ZFS_NUM_DELEG_NOTES; i++) { 5508eda14cbcSMatt Macy const char *perm_name = zfs_deleg_perm_tbl[i].z_perm; 5509eda14cbcSMatt Macy zfs_deleg_note_t perm_note = zfs_deleg_perm_tbl[i].z_note; 5510eda14cbcSMatt Macy const char *perm_type = deleg_perm_type(perm_note); 5511eda14cbcSMatt Macy const char *perm_comment = deleg_perm_comment(perm_note); 5512eda14cbcSMatt Macy (void) fprintf(fp, fmt, perm_name, perm_type, perm_comment); 5513eda14cbcSMatt Macy } 5514eda14cbcSMatt Macy 5515eda14cbcSMatt Macy for (i = 0; i < ZFS_NUM_PROPS; i++) { 5516eda14cbcSMatt Macy zprop_desc_t *pd = &pdtbl[i]; 5517eda14cbcSMatt Macy if (pd->pd_visible != B_TRUE) 5518eda14cbcSMatt Macy continue; 5519eda14cbcSMatt Macy 5520eda14cbcSMatt Macy if (pd->pd_attr == PROP_READONLY) 5521eda14cbcSMatt Macy continue; 5522eda14cbcSMatt Macy 5523eda14cbcSMatt Macy props[count++] = pd->pd_name; 5524eda14cbcSMatt Macy } 5525eda14cbcSMatt Macy props[count] = NULL; 5526eda14cbcSMatt Macy 5527eda14cbcSMatt Macy qsort(props, count, sizeof (char *), prop_cmp); 5528eda14cbcSMatt Macy 5529eda14cbcSMatt Macy for (i = 0; i < count; i++) 5530eda14cbcSMatt Macy (void) fprintf(fp, fmt, props[i], gettext("property"), ""); 5531eda14cbcSMatt Macy 5532eda14cbcSMatt Macy if (msg != NULL) 5533eda14cbcSMatt Macy (void) fprintf(fp, gettext("\nzfs: error: %s"), msg); 5534eda14cbcSMatt Macy 5535eda14cbcSMatt Macy exit(requested ? 0 : 2); 5536eda14cbcSMatt Macy } 5537eda14cbcSMatt Macy 5538eda14cbcSMatt Macy static inline const char * 5539eda14cbcSMatt Macy munge_args(int argc, char **argv, boolean_t un, size_t expected_argc, 5540eda14cbcSMatt Macy char **permsp) 5541eda14cbcSMatt Macy { 5542eda14cbcSMatt Macy if (un && argc == expected_argc - 1) 5543eda14cbcSMatt Macy *permsp = NULL; 5544eda14cbcSMatt Macy else if (argc == expected_argc) 5545eda14cbcSMatt Macy *permsp = argv[argc - 2]; 5546eda14cbcSMatt Macy else 5547eda14cbcSMatt Macy allow_usage(un, B_FALSE, 5548eda14cbcSMatt Macy gettext("wrong number of parameters\n")); 5549eda14cbcSMatt Macy 5550eda14cbcSMatt Macy return (argv[argc - 1]); 5551eda14cbcSMatt Macy } 5552eda14cbcSMatt Macy 5553eda14cbcSMatt Macy static void 5554eda14cbcSMatt Macy parse_allow_args(int argc, char **argv, boolean_t un, struct allow_opts *opts) 5555eda14cbcSMatt Macy { 5556eda14cbcSMatt Macy int uge_sum = opts->user + opts->group + opts->everyone; 5557eda14cbcSMatt Macy int csuge_sum = opts->create + opts->set + uge_sum; 5558eda14cbcSMatt Macy int ldcsuge_sum = csuge_sum + opts->local + opts->descend; 5559eda14cbcSMatt Macy int all_sum = un ? ldcsuge_sum + opts->recursive : ldcsuge_sum; 5560eda14cbcSMatt Macy 5561eda14cbcSMatt Macy if (uge_sum > 1) 5562eda14cbcSMatt Macy allow_usage(un, B_FALSE, 5563eda14cbcSMatt Macy gettext("-u, -g, and -e are mutually exclusive\n")); 5564eda14cbcSMatt Macy 5565eda14cbcSMatt Macy if (opts->prt_usage) { 5566eda14cbcSMatt Macy if (argc == 0 && all_sum == 0) 5567eda14cbcSMatt Macy allow_usage(un, B_TRUE, NULL); 5568eda14cbcSMatt Macy else 5569eda14cbcSMatt Macy usage(B_FALSE); 5570eda14cbcSMatt Macy } 5571eda14cbcSMatt Macy 5572eda14cbcSMatt Macy if (opts->set) { 5573eda14cbcSMatt Macy if (csuge_sum > 1) 5574eda14cbcSMatt Macy allow_usage(un, B_FALSE, 5575eda14cbcSMatt Macy gettext("invalid options combined with -s\n")); 5576eda14cbcSMatt Macy 5577eda14cbcSMatt Macy opts->dataset = munge_args(argc, argv, un, 3, &opts->perms); 5578eda14cbcSMatt Macy if (argv[0][0] != '@') 5579eda14cbcSMatt Macy allow_usage(un, B_FALSE, 5580eda14cbcSMatt Macy gettext("invalid set name: missing '@' prefix\n")); 5581eda14cbcSMatt Macy opts->who = argv[0]; 5582eda14cbcSMatt Macy } else if (opts->create) { 5583eda14cbcSMatt Macy if (ldcsuge_sum > 1) 5584eda14cbcSMatt Macy allow_usage(un, B_FALSE, 5585eda14cbcSMatt Macy gettext("invalid options combined with -c\n")); 5586eda14cbcSMatt Macy opts->dataset = munge_args(argc, argv, un, 2, &opts->perms); 5587eda14cbcSMatt Macy } else if (opts->everyone) { 5588eda14cbcSMatt Macy if (csuge_sum > 1) 5589eda14cbcSMatt Macy allow_usage(un, B_FALSE, 5590eda14cbcSMatt Macy gettext("invalid options combined with -e\n")); 5591eda14cbcSMatt Macy opts->dataset = munge_args(argc, argv, un, 2, &opts->perms); 5592eda14cbcSMatt Macy } else if (uge_sum == 0 && argc > 0 && strcmp(argv[0], "everyone") 5593eda14cbcSMatt Macy == 0) { 5594eda14cbcSMatt Macy opts->everyone = B_TRUE; 5595eda14cbcSMatt Macy argc--; 5596eda14cbcSMatt Macy argv++; 5597eda14cbcSMatt Macy opts->dataset = munge_args(argc, argv, un, 2, &opts->perms); 5598eda14cbcSMatt Macy } else if (argc == 1 && !un) { 5599eda14cbcSMatt Macy opts->prt_perms = B_TRUE; 5600eda14cbcSMatt Macy opts->dataset = argv[argc-1]; 5601eda14cbcSMatt Macy } else { 5602eda14cbcSMatt Macy opts->dataset = munge_args(argc, argv, un, 3, &opts->perms); 5603eda14cbcSMatt Macy opts->who = argv[0]; 5604eda14cbcSMatt Macy } 5605eda14cbcSMatt Macy 5606eda14cbcSMatt Macy if (!opts->local && !opts->descend) { 5607eda14cbcSMatt Macy opts->local = B_TRUE; 5608eda14cbcSMatt Macy opts->descend = B_TRUE; 5609eda14cbcSMatt Macy } 5610eda14cbcSMatt Macy } 5611eda14cbcSMatt Macy 5612eda14cbcSMatt Macy static void 5613eda14cbcSMatt Macy store_allow_perm(zfs_deleg_who_type_t type, boolean_t local, boolean_t descend, 5614eda14cbcSMatt Macy const char *who, char *perms, nvlist_t *top_nvl) 5615eda14cbcSMatt Macy { 5616eda14cbcSMatt Macy int i; 5617eda14cbcSMatt Macy char ld[2] = { '\0', '\0' }; 5618eda14cbcSMatt Macy char who_buf[MAXNAMELEN + 32]; 5619eda14cbcSMatt Macy char base_type = '\0'; 5620eda14cbcSMatt Macy char set_type = '\0'; 5621eda14cbcSMatt Macy nvlist_t *base_nvl = NULL; 5622eda14cbcSMatt Macy nvlist_t *set_nvl = NULL; 5623eda14cbcSMatt Macy nvlist_t *nvl; 5624eda14cbcSMatt Macy 5625eda14cbcSMatt Macy if (nvlist_alloc(&base_nvl, NV_UNIQUE_NAME, 0) != 0) 5626eda14cbcSMatt Macy nomem(); 5627eda14cbcSMatt Macy if (nvlist_alloc(&set_nvl, NV_UNIQUE_NAME, 0) != 0) 5628eda14cbcSMatt Macy nomem(); 5629eda14cbcSMatt Macy 5630eda14cbcSMatt Macy switch (type) { 5631eda14cbcSMatt Macy case ZFS_DELEG_NAMED_SET_SETS: 5632eda14cbcSMatt Macy case ZFS_DELEG_NAMED_SET: 5633eda14cbcSMatt Macy set_type = ZFS_DELEG_NAMED_SET_SETS; 5634eda14cbcSMatt Macy base_type = ZFS_DELEG_NAMED_SET; 5635eda14cbcSMatt Macy ld[0] = ZFS_DELEG_NA; 5636eda14cbcSMatt Macy break; 5637eda14cbcSMatt Macy case ZFS_DELEG_CREATE_SETS: 5638eda14cbcSMatt Macy case ZFS_DELEG_CREATE: 5639eda14cbcSMatt Macy set_type = ZFS_DELEG_CREATE_SETS; 5640eda14cbcSMatt Macy base_type = ZFS_DELEG_CREATE; 5641eda14cbcSMatt Macy ld[0] = ZFS_DELEG_NA; 5642eda14cbcSMatt Macy break; 5643eda14cbcSMatt Macy case ZFS_DELEG_USER_SETS: 5644eda14cbcSMatt Macy case ZFS_DELEG_USER: 5645eda14cbcSMatt Macy set_type = ZFS_DELEG_USER_SETS; 5646eda14cbcSMatt Macy base_type = ZFS_DELEG_USER; 5647eda14cbcSMatt Macy if (local) 5648eda14cbcSMatt Macy ld[0] = ZFS_DELEG_LOCAL; 5649eda14cbcSMatt Macy if (descend) 5650eda14cbcSMatt Macy ld[1] = ZFS_DELEG_DESCENDENT; 5651eda14cbcSMatt Macy break; 5652eda14cbcSMatt Macy case ZFS_DELEG_GROUP_SETS: 5653eda14cbcSMatt Macy case ZFS_DELEG_GROUP: 5654eda14cbcSMatt Macy set_type = ZFS_DELEG_GROUP_SETS; 5655eda14cbcSMatt Macy base_type = ZFS_DELEG_GROUP; 5656eda14cbcSMatt Macy if (local) 5657eda14cbcSMatt Macy ld[0] = ZFS_DELEG_LOCAL; 5658eda14cbcSMatt Macy if (descend) 5659eda14cbcSMatt Macy ld[1] = ZFS_DELEG_DESCENDENT; 5660eda14cbcSMatt Macy break; 5661eda14cbcSMatt Macy case ZFS_DELEG_EVERYONE_SETS: 5662eda14cbcSMatt Macy case ZFS_DELEG_EVERYONE: 5663eda14cbcSMatt Macy set_type = ZFS_DELEG_EVERYONE_SETS; 5664eda14cbcSMatt Macy base_type = ZFS_DELEG_EVERYONE; 5665eda14cbcSMatt Macy if (local) 5666eda14cbcSMatt Macy ld[0] = ZFS_DELEG_LOCAL; 5667eda14cbcSMatt Macy if (descend) 5668eda14cbcSMatt Macy ld[1] = ZFS_DELEG_DESCENDENT; 5669eda14cbcSMatt Macy break; 5670eda14cbcSMatt Macy 5671eda14cbcSMatt Macy default: 5672eda14cbcSMatt Macy assert(set_type != '\0' && base_type != '\0'); 5673eda14cbcSMatt Macy } 5674eda14cbcSMatt Macy 5675eda14cbcSMatt Macy if (perms != NULL) { 5676eda14cbcSMatt Macy char *curr = perms; 5677eda14cbcSMatt Macy char *end = curr + strlen(perms); 5678eda14cbcSMatt Macy 5679eda14cbcSMatt Macy while (curr < end) { 5680eda14cbcSMatt Macy char *delim = strchr(curr, ','); 5681eda14cbcSMatt Macy if (delim == NULL) 5682eda14cbcSMatt Macy delim = end; 5683eda14cbcSMatt Macy else 5684eda14cbcSMatt Macy *delim = '\0'; 5685eda14cbcSMatt Macy 5686eda14cbcSMatt Macy if (curr[0] == '@') 5687eda14cbcSMatt Macy nvl = set_nvl; 5688eda14cbcSMatt Macy else 5689eda14cbcSMatt Macy nvl = base_nvl; 5690eda14cbcSMatt Macy 5691eda14cbcSMatt Macy (void) nvlist_add_boolean(nvl, curr); 5692eda14cbcSMatt Macy if (delim != end) 5693eda14cbcSMatt Macy *delim = ','; 5694eda14cbcSMatt Macy curr = delim + 1; 5695eda14cbcSMatt Macy } 5696eda14cbcSMatt Macy 5697eda14cbcSMatt Macy for (i = 0; i < 2; i++) { 5698eda14cbcSMatt Macy char locality = ld[i]; 5699eda14cbcSMatt Macy if (locality == 0) 5700eda14cbcSMatt Macy continue; 5701eda14cbcSMatt Macy 5702eda14cbcSMatt Macy if (!nvlist_empty(base_nvl)) { 5703eda14cbcSMatt Macy if (who != NULL) 5704eda14cbcSMatt Macy (void) snprintf(who_buf, 5705eda14cbcSMatt Macy sizeof (who_buf), "%c%c$%s", 5706eda14cbcSMatt Macy base_type, locality, who); 5707eda14cbcSMatt Macy else 5708eda14cbcSMatt Macy (void) snprintf(who_buf, 5709eda14cbcSMatt Macy sizeof (who_buf), "%c%c$", 5710eda14cbcSMatt Macy base_type, locality); 5711eda14cbcSMatt Macy 5712eda14cbcSMatt Macy (void) nvlist_add_nvlist(top_nvl, who_buf, 5713eda14cbcSMatt Macy base_nvl); 5714eda14cbcSMatt Macy } 5715eda14cbcSMatt Macy 5716eda14cbcSMatt Macy 5717eda14cbcSMatt Macy if (!nvlist_empty(set_nvl)) { 5718eda14cbcSMatt Macy if (who != NULL) 5719eda14cbcSMatt Macy (void) snprintf(who_buf, 5720eda14cbcSMatt Macy sizeof (who_buf), "%c%c$%s", 5721eda14cbcSMatt Macy set_type, locality, who); 5722eda14cbcSMatt Macy else 5723eda14cbcSMatt Macy (void) snprintf(who_buf, 5724eda14cbcSMatt Macy sizeof (who_buf), "%c%c$", 5725eda14cbcSMatt Macy set_type, locality); 5726eda14cbcSMatt Macy 5727eda14cbcSMatt Macy (void) nvlist_add_nvlist(top_nvl, who_buf, 5728eda14cbcSMatt Macy set_nvl); 5729eda14cbcSMatt Macy } 5730eda14cbcSMatt Macy } 5731eda14cbcSMatt Macy } else { 5732eda14cbcSMatt Macy for (i = 0; i < 2; i++) { 5733eda14cbcSMatt Macy char locality = ld[i]; 5734eda14cbcSMatt Macy if (locality == 0) 5735eda14cbcSMatt Macy continue; 5736eda14cbcSMatt Macy 5737eda14cbcSMatt Macy if (who != NULL) 5738eda14cbcSMatt Macy (void) snprintf(who_buf, sizeof (who_buf), 5739eda14cbcSMatt Macy "%c%c$%s", base_type, locality, who); 5740eda14cbcSMatt Macy else 5741eda14cbcSMatt Macy (void) snprintf(who_buf, sizeof (who_buf), 5742eda14cbcSMatt Macy "%c%c$", base_type, locality); 5743eda14cbcSMatt Macy (void) nvlist_add_boolean(top_nvl, who_buf); 5744eda14cbcSMatt Macy 5745eda14cbcSMatt Macy if (who != NULL) 5746eda14cbcSMatt Macy (void) snprintf(who_buf, sizeof (who_buf), 5747eda14cbcSMatt Macy "%c%c$%s", set_type, locality, who); 5748eda14cbcSMatt Macy else 5749eda14cbcSMatt Macy (void) snprintf(who_buf, sizeof (who_buf), 5750eda14cbcSMatt Macy "%c%c$", set_type, locality); 5751eda14cbcSMatt Macy (void) nvlist_add_boolean(top_nvl, who_buf); 5752eda14cbcSMatt Macy } 5753eda14cbcSMatt Macy } 5754eda14cbcSMatt Macy } 5755eda14cbcSMatt Macy 5756eda14cbcSMatt Macy static int 5757eda14cbcSMatt Macy construct_fsacl_list(boolean_t un, struct allow_opts *opts, nvlist_t **nvlp) 5758eda14cbcSMatt Macy { 5759eda14cbcSMatt Macy if (nvlist_alloc(nvlp, NV_UNIQUE_NAME, 0) != 0) 5760eda14cbcSMatt Macy nomem(); 5761eda14cbcSMatt Macy 5762eda14cbcSMatt Macy if (opts->set) { 5763eda14cbcSMatt Macy store_allow_perm(ZFS_DELEG_NAMED_SET, opts->local, 5764eda14cbcSMatt Macy opts->descend, opts->who, opts->perms, *nvlp); 5765eda14cbcSMatt Macy } else if (opts->create) { 5766eda14cbcSMatt Macy store_allow_perm(ZFS_DELEG_CREATE, opts->local, 5767eda14cbcSMatt Macy opts->descend, NULL, opts->perms, *nvlp); 5768eda14cbcSMatt Macy } else if (opts->everyone) { 5769eda14cbcSMatt Macy store_allow_perm(ZFS_DELEG_EVERYONE, opts->local, 5770eda14cbcSMatt Macy opts->descend, NULL, opts->perms, *nvlp); 5771eda14cbcSMatt Macy } else { 5772eda14cbcSMatt Macy char *curr = opts->who; 5773eda14cbcSMatt Macy char *end = curr + strlen(curr); 5774eda14cbcSMatt Macy 5775eda14cbcSMatt Macy while (curr < end) { 5776eda14cbcSMatt Macy const char *who; 5777eda14cbcSMatt Macy zfs_deleg_who_type_t who_type = ZFS_DELEG_WHO_UNKNOWN; 5778eda14cbcSMatt Macy char *endch; 5779eda14cbcSMatt Macy char *delim = strchr(curr, ','); 5780eda14cbcSMatt Macy char errbuf[256]; 5781eda14cbcSMatt Macy char id[64]; 5782eda14cbcSMatt Macy struct passwd *p = NULL; 5783eda14cbcSMatt Macy struct group *g = NULL; 5784eda14cbcSMatt Macy 5785eda14cbcSMatt Macy uid_t rid; 5786eda14cbcSMatt Macy if (delim == NULL) 5787eda14cbcSMatt Macy delim = end; 5788eda14cbcSMatt Macy else 5789eda14cbcSMatt Macy *delim = '\0'; 5790eda14cbcSMatt Macy 5791eda14cbcSMatt Macy rid = (uid_t)strtol(curr, &endch, 0); 5792eda14cbcSMatt Macy if (opts->user) { 5793eda14cbcSMatt Macy who_type = ZFS_DELEG_USER; 5794eda14cbcSMatt Macy if (*endch != '\0') 5795eda14cbcSMatt Macy p = getpwnam(curr); 5796eda14cbcSMatt Macy else 5797eda14cbcSMatt Macy p = getpwuid(rid); 5798eda14cbcSMatt Macy 5799eda14cbcSMatt Macy if (p != NULL) 5800eda14cbcSMatt Macy rid = p->pw_uid; 5801eda14cbcSMatt Macy else if (*endch != '\0') { 5802eda14cbcSMatt Macy (void) snprintf(errbuf, 256, gettext( 5803eda14cbcSMatt Macy "invalid user %s\n"), curr); 5804eda14cbcSMatt Macy allow_usage(un, B_TRUE, errbuf); 5805eda14cbcSMatt Macy } 5806eda14cbcSMatt Macy } else if (opts->group) { 5807eda14cbcSMatt Macy who_type = ZFS_DELEG_GROUP; 5808eda14cbcSMatt Macy if (*endch != '\0') 5809eda14cbcSMatt Macy g = getgrnam(curr); 5810eda14cbcSMatt Macy else 5811eda14cbcSMatt Macy g = getgrgid(rid); 5812eda14cbcSMatt Macy 5813eda14cbcSMatt Macy if (g != NULL) 5814eda14cbcSMatt Macy rid = g->gr_gid; 5815eda14cbcSMatt Macy else if (*endch != '\0') { 5816eda14cbcSMatt Macy (void) snprintf(errbuf, 256, gettext( 5817eda14cbcSMatt Macy "invalid group %s\n"), curr); 5818eda14cbcSMatt Macy allow_usage(un, B_TRUE, errbuf); 5819eda14cbcSMatt Macy } 5820eda14cbcSMatt Macy } else { 5821eda14cbcSMatt Macy if (*endch != '\0') { 5822eda14cbcSMatt Macy p = getpwnam(curr); 5823eda14cbcSMatt Macy } else { 5824eda14cbcSMatt Macy p = getpwuid(rid); 5825eda14cbcSMatt Macy } 5826eda14cbcSMatt Macy 5827eda14cbcSMatt Macy if (p == NULL) { 5828eda14cbcSMatt Macy if (*endch != '\0') { 5829eda14cbcSMatt Macy g = getgrnam(curr); 5830eda14cbcSMatt Macy } else { 5831eda14cbcSMatt Macy g = getgrgid(rid); 5832eda14cbcSMatt Macy } 5833eda14cbcSMatt Macy } 5834eda14cbcSMatt Macy 5835eda14cbcSMatt Macy if (p != NULL) { 5836eda14cbcSMatt Macy who_type = ZFS_DELEG_USER; 5837eda14cbcSMatt Macy rid = p->pw_uid; 5838eda14cbcSMatt Macy } else if (g != NULL) { 5839eda14cbcSMatt Macy who_type = ZFS_DELEG_GROUP; 5840eda14cbcSMatt Macy rid = g->gr_gid; 5841eda14cbcSMatt Macy } else { 5842eda14cbcSMatt Macy (void) snprintf(errbuf, 256, gettext( 5843eda14cbcSMatt Macy "invalid user/group %s\n"), curr); 5844eda14cbcSMatt Macy allow_usage(un, B_TRUE, errbuf); 5845eda14cbcSMatt Macy } 5846eda14cbcSMatt Macy } 5847eda14cbcSMatt Macy 5848eda14cbcSMatt Macy (void) sprintf(id, "%u", rid); 5849eda14cbcSMatt Macy who = id; 5850eda14cbcSMatt Macy 5851eda14cbcSMatt Macy store_allow_perm(who_type, opts->local, 5852eda14cbcSMatt Macy opts->descend, who, opts->perms, *nvlp); 5853eda14cbcSMatt Macy curr = delim + 1; 5854eda14cbcSMatt Macy } 5855eda14cbcSMatt Macy } 5856eda14cbcSMatt Macy 5857eda14cbcSMatt Macy return (0); 5858eda14cbcSMatt Macy } 5859eda14cbcSMatt Macy 5860eda14cbcSMatt Macy static void 5861eda14cbcSMatt Macy print_set_creat_perms(uu_avl_t *who_avl) 5862eda14cbcSMatt Macy { 5863eda14cbcSMatt Macy const char *sc_title[] = { 5864eda14cbcSMatt Macy gettext("Permission sets:\n"), 5865eda14cbcSMatt Macy gettext("Create time permissions:\n"), 5866eda14cbcSMatt Macy NULL 5867eda14cbcSMatt Macy }; 5868eda14cbcSMatt Macy who_perm_node_t *who_node = NULL; 5869eda14cbcSMatt Macy int prev_weight = -1; 5870eda14cbcSMatt Macy 5871eda14cbcSMatt Macy for (who_node = uu_avl_first(who_avl); who_node != NULL; 5872eda14cbcSMatt Macy who_node = uu_avl_next(who_avl, who_node)) { 5873eda14cbcSMatt Macy uu_avl_t *avl = who_node->who_perm.who_deleg_perm_avl; 5874eda14cbcSMatt Macy zfs_deleg_who_type_t who_type = who_node->who_perm.who_type; 5875eda14cbcSMatt Macy const char *who_name = who_node->who_perm.who_name; 5876eda14cbcSMatt Macy int weight = who_type2weight(who_type); 5877eda14cbcSMatt Macy boolean_t first = B_TRUE; 5878eda14cbcSMatt Macy deleg_perm_node_t *deleg_node; 5879eda14cbcSMatt Macy 5880eda14cbcSMatt Macy if (prev_weight != weight) { 5881eda14cbcSMatt Macy (void) printf("%s", sc_title[weight]); 5882eda14cbcSMatt Macy prev_weight = weight; 5883eda14cbcSMatt Macy } 5884eda14cbcSMatt Macy 5885eda14cbcSMatt Macy if (who_name == NULL || strnlen(who_name, 1) == 0) 5886eda14cbcSMatt Macy (void) printf("\t"); 5887eda14cbcSMatt Macy else 5888eda14cbcSMatt Macy (void) printf("\t%s ", who_name); 5889eda14cbcSMatt Macy 5890eda14cbcSMatt Macy for (deleg_node = uu_avl_first(avl); deleg_node != NULL; 5891eda14cbcSMatt Macy deleg_node = uu_avl_next(avl, deleg_node)) { 5892eda14cbcSMatt Macy if (first) { 5893eda14cbcSMatt Macy (void) printf("%s", 5894eda14cbcSMatt Macy deleg_node->dpn_perm.dp_name); 5895eda14cbcSMatt Macy first = B_FALSE; 5896eda14cbcSMatt Macy } else 5897eda14cbcSMatt Macy (void) printf(",%s", 5898eda14cbcSMatt Macy deleg_node->dpn_perm.dp_name); 5899eda14cbcSMatt Macy } 5900eda14cbcSMatt Macy 5901eda14cbcSMatt Macy (void) printf("\n"); 5902eda14cbcSMatt Macy } 5903eda14cbcSMatt Macy } 5904eda14cbcSMatt Macy 5905eda14cbcSMatt Macy static void 5906eda14cbcSMatt Macy print_uge_deleg_perms(uu_avl_t *who_avl, boolean_t local, boolean_t descend, 5907eda14cbcSMatt Macy const char *title) 5908eda14cbcSMatt Macy { 5909eda14cbcSMatt Macy who_perm_node_t *who_node = NULL; 5910eda14cbcSMatt Macy boolean_t prt_title = B_TRUE; 5911eda14cbcSMatt Macy uu_avl_walk_t *walk; 5912eda14cbcSMatt Macy 5913eda14cbcSMatt Macy if ((walk = uu_avl_walk_start(who_avl, UU_WALK_ROBUST)) == NULL) 5914eda14cbcSMatt Macy nomem(); 5915eda14cbcSMatt Macy 5916eda14cbcSMatt Macy while ((who_node = uu_avl_walk_next(walk)) != NULL) { 5917eda14cbcSMatt Macy const char *who_name = who_node->who_perm.who_name; 5918eda14cbcSMatt Macy const char *nice_who_name = who_node->who_perm.who_ug_name; 5919eda14cbcSMatt Macy uu_avl_t *avl = who_node->who_perm.who_deleg_perm_avl; 5920eda14cbcSMatt Macy zfs_deleg_who_type_t who_type = who_node->who_perm.who_type; 5921eda14cbcSMatt Macy char delim = ' '; 5922eda14cbcSMatt Macy deleg_perm_node_t *deleg_node; 5923eda14cbcSMatt Macy boolean_t prt_who = B_TRUE; 5924eda14cbcSMatt Macy 5925eda14cbcSMatt Macy for (deleg_node = uu_avl_first(avl); 5926eda14cbcSMatt Macy deleg_node != NULL; 5927eda14cbcSMatt Macy deleg_node = uu_avl_next(avl, deleg_node)) { 5928eda14cbcSMatt Macy if (local != deleg_node->dpn_perm.dp_local || 5929eda14cbcSMatt Macy descend != deleg_node->dpn_perm.dp_descend) 5930eda14cbcSMatt Macy continue; 5931eda14cbcSMatt Macy 5932eda14cbcSMatt Macy if (prt_who) { 5933eda14cbcSMatt Macy const char *who = NULL; 5934eda14cbcSMatt Macy if (prt_title) { 5935eda14cbcSMatt Macy prt_title = B_FALSE; 5936eda14cbcSMatt Macy (void) printf("%s", title); 5937eda14cbcSMatt Macy } 5938eda14cbcSMatt Macy 5939eda14cbcSMatt Macy switch (who_type) { 5940eda14cbcSMatt Macy case ZFS_DELEG_USER_SETS: 5941eda14cbcSMatt Macy case ZFS_DELEG_USER: 5942eda14cbcSMatt Macy who = gettext("user"); 5943eda14cbcSMatt Macy if (nice_who_name) 5944eda14cbcSMatt Macy who_name = nice_who_name; 5945eda14cbcSMatt Macy break; 5946eda14cbcSMatt Macy case ZFS_DELEG_GROUP_SETS: 5947eda14cbcSMatt Macy case ZFS_DELEG_GROUP: 5948eda14cbcSMatt Macy who = gettext("group"); 5949eda14cbcSMatt Macy if (nice_who_name) 5950eda14cbcSMatt Macy who_name = nice_who_name; 5951eda14cbcSMatt Macy break; 5952eda14cbcSMatt Macy case ZFS_DELEG_EVERYONE_SETS: 5953eda14cbcSMatt Macy case ZFS_DELEG_EVERYONE: 5954eda14cbcSMatt Macy who = gettext("everyone"); 5955eda14cbcSMatt Macy who_name = NULL; 5956eda14cbcSMatt Macy break; 5957eda14cbcSMatt Macy 5958eda14cbcSMatt Macy default: 5959eda14cbcSMatt Macy assert(who != NULL); 5960eda14cbcSMatt Macy } 5961eda14cbcSMatt Macy 5962eda14cbcSMatt Macy prt_who = B_FALSE; 5963eda14cbcSMatt Macy if (who_name == NULL) 5964eda14cbcSMatt Macy (void) printf("\t%s", who); 5965eda14cbcSMatt Macy else 5966eda14cbcSMatt Macy (void) printf("\t%s %s", who, who_name); 5967eda14cbcSMatt Macy } 5968eda14cbcSMatt Macy 5969eda14cbcSMatt Macy (void) printf("%c%s", delim, 5970eda14cbcSMatt Macy deleg_node->dpn_perm.dp_name); 5971eda14cbcSMatt Macy delim = ','; 5972eda14cbcSMatt Macy } 5973eda14cbcSMatt Macy 5974eda14cbcSMatt Macy if (!prt_who) 5975eda14cbcSMatt Macy (void) printf("\n"); 5976eda14cbcSMatt Macy } 5977eda14cbcSMatt Macy 5978eda14cbcSMatt Macy uu_avl_walk_end(walk); 5979eda14cbcSMatt Macy } 5980eda14cbcSMatt Macy 5981eda14cbcSMatt Macy static void 5982eda14cbcSMatt Macy print_fs_perms(fs_perm_set_t *fspset) 5983eda14cbcSMatt Macy { 5984eda14cbcSMatt Macy fs_perm_node_t *node = NULL; 5985eda14cbcSMatt Macy char buf[MAXNAMELEN + 32]; 5986eda14cbcSMatt Macy const char *dsname = buf; 5987eda14cbcSMatt Macy 5988eda14cbcSMatt Macy for (node = uu_list_first(fspset->fsps_list); node != NULL; 5989eda14cbcSMatt Macy node = uu_list_next(fspset->fsps_list, node)) { 5990eda14cbcSMatt Macy uu_avl_t *sc_avl = node->fspn_fsperm.fsp_sc_avl; 5991eda14cbcSMatt Macy uu_avl_t *uge_avl = node->fspn_fsperm.fsp_uge_avl; 5992eda14cbcSMatt Macy int left = 0; 5993eda14cbcSMatt Macy 5994eda14cbcSMatt Macy (void) snprintf(buf, sizeof (buf), 5995eda14cbcSMatt Macy gettext("---- Permissions on %s "), 5996eda14cbcSMatt Macy node->fspn_fsperm.fsp_name); 5997eda14cbcSMatt Macy (void) printf("%s", dsname); 5998eda14cbcSMatt Macy left = 70 - strlen(buf); 5999eda14cbcSMatt Macy while (left-- > 0) 6000eda14cbcSMatt Macy (void) printf("-"); 6001eda14cbcSMatt Macy (void) printf("\n"); 6002eda14cbcSMatt Macy 6003eda14cbcSMatt Macy print_set_creat_perms(sc_avl); 6004eda14cbcSMatt Macy print_uge_deleg_perms(uge_avl, B_TRUE, B_FALSE, 6005eda14cbcSMatt Macy gettext("Local permissions:\n")); 6006eda14cbcSMatt Macy print_uge_deleg_perms(uge_avl, B_FALSE, B_TRUE, 6007eda14cbcSMatt Macy gettext("Descendent permissions:\n")); 6008eda14cbcSMatt Macy print_uge_deleg_perms(uge_avl, B_TRUE, B_TRUE, 6009eda14cbcSMatt Macy gettext("Local+Descendent permissions:\n")); 6010eda14cbcSMatt Macy } 6011eda14cbcSMatt Macy } 6012eda14cbcSMatt Macy 6013eda14cbcSMatt Macy static fs_perm_set_t fs_perm_set = { NULL, NULL, NULL, NULL }; 6014eda14cbcSMatt Macy 6015eda14cbcSMatt Macy struct deleg_perms { 6016eda14cbcSMatt Macy boolean_t un; 6017eda14cbcSMatt Macy nvlist_t *nvl; 6018eda14cbcSMatt Macy }; 6019eda14cbcSMatt Macy 6020eda14cbcSMatt Macy static int 6021eda14cbcSMatt Macy set_deleg_perms(zfs_handle_t *zhp, void *data) 6022eda14cbcSMatt Macy { 6023eda14cbcSMatt Macy struct deleg_perms *perms = (struct deleg_perms *)data; 6024eda14cbcSMatt Macy zfs_type_t zfs_type = zfs_get_type(zhp); 6025eda14cbcSMatt Macy 6026eda14cbcSMatt Macy if (zfs_type != ZFS_TYPE_FILESYSTEM && zfs_type != ZFS_TYPE_VOLUME) 6027eda14cbcSMatt Macy return (0); 6028eda14cbcSMatt Macy 6029eda14cbcSMatt Macy return (zfs_set_fsacl(zhp, perms->un, perms->nvl)); 6030eda14cbcSMatt Macy } 6031eda14cbcSMatt Macy 6032eda14cbcSMatt Macy static int 6033eda14cbcSMatt Macy zfs_do_allow_unallow_impl(int argc, char **argv, boolean_t un) 6034eda14cbcSMatt Macy { 6035eda14cbcSMatt Macy zfs_handle_t *zhp; 6036eda14cbcSMatt Macy nvlist_t *perm_nvl = NULL; 6037eda14cbcSMatt Macy nvlist_t *update_perm_nvl = NULL; 6038eda14cbcSMatt Macy int error = 1; 6039eda14cbcSMatt Macy int c; 6040eda14cbcSMatt Macy struct allow_opts opts = { 0 }; 6041eda14cbcSMatt Macy 6042eda14cbcSMatt Macy const char *optstr = un ? "ldugecsrh" : "ldugecsh"; 6043eda14cbcSMatt Macy 6044eda14cbcSMatt Macy /* check opts */ 6045eda14cbcSMatt Macy while ((c = getopt(argc, argv, optstr)) != -1) { 6046eda14cbcSMatt Macy switch (c) { 6047eda14cbcSMatt Macy case 'l': 6048eda14cbcSMatt Macy opts.local = B_TRUE; 6049eda14cbcSMatt Macy break; 6050eda14cbcSMatt Macy case 'd': 6051eda14cbcSMatt Macy opts.descend = B_TRUE; 6052eda14cbcSMatt Macy break; 6053eda14cbcSMatt Macy case 'u': 6054eda14cbcSMatt Macy opts.user = B_TRUE; 6055eda14cbcSMatt Macy break; 6056eda14cbcSMatt Macy case 'g': 6057eda14cbcSMatt Macy opts.group = B_TRUE; 6058eda14cbcSMatt Macy break; 6059eda14cbcSMatt Macy case 'e': 6060eda14cbcSMatt Macy opts.everyone = B_TRUE; 6061eda14cbcSMatt Macy break; 6062eda14cbcSMatt Macy case 's': 6063eda14cbcSMatt Macy opts.set = B_TRUE; 6064eda14cbcSMatt Macy break; 6065eda14cbcSMatt Macy case 'c': 6066eda14cbcSMatt Macy opts.create = B_TRUE; 6067eda14cbcSMatt Macy break; 6068eda14cbcSMatt Macy case 'r': 6069eda14cbcSMatt Macy opts.recursive = B_TRUE; 6070eda14cbcSMatt Macy break; 6071eda14cbcSMatt Macy case ':': 6072eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing argument for " 6073eda14cbcSMatt Macy "'%c' option\n"), optopt); 6074eda14cbcSMatt Macy usage(B_FALSE); 6075eda14cbcSMatt Macy break; 6076eda14cbcSMatt Macy case 'h': 6077eda14cbcSMatt Macy opts.prt_usage = B_TRUE; 6078eda14cbcSMatt Macy break; 6079eda14cbcSMatt Macy case '?': 6080eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 6081eda14cbcSMatt Macy optopt); 6082eda14cbcSMatt Macy usage(B_FALSE); 6083eda14cbcSMatt Macy } 6084eda14cbcSMatt Macy } 6085eda14cbcSMatt Macy 6086eda14cbcSMatt Macy argc -= optind; 6087eda14cbcSMatt Macy argv += optind; 6088eda14cbcSMatt Macy 6089eda14cbcSMatt Macy /* check arguments */ 6090eda14cbcSMatt Macy parse_allow_args(argc, argv, un, &opts); 6091eda14cbcSMatt Macy 6092eda14cbcSMatt Macy /* try to open the dataset */ 6093eda14cbcSMatt Macy if ((zhp = zfs_open(g_zfs, opts.dataset, ZFS_TYPE_FILESYSTEM | 6094eda14cbcSMatt Macy ZFS_TYPE_VOLUME)) == NULL) { 6095eda14cbcSMatt Macy (void) fprintf(stderr, "Failed to open dataset: %s\n", 6096eda14cbcSMatt Macy opts.dataset); 6097eda14cbcSMatt Macy return (-1); 6098eda14cbcSMatt Macy } 6099eda14cbcSMatt Macy 6100eda14cbcSMatt Macy if (zfs_get_fsacl(zhp, &perm_nvl) != 0) 6101eda14cbcSMatt Macy goto cleanup2; 6102eda14cbcSMatt Macy 6103eda14cbcSMatt Macy fs_perm_set_init(&fs_perm_set); 6104eda14cbcSMatt Macy if (parse_fs_perm_set(&fs_perm_set, perm_nvl) != 0) { 6105eda14cbcSMatt Macy (void) fprintf(stderr, "Failed to parse fsacl permissions\n"); 6106eda14cbcSMatt Macy goto cleanup1; 6107eda14cbcSMatt Macy } 6108eda14cbcSMatt Macy 6109eda14cbcSMatt Macy if (opts.prt_perms) 6110eda14cbcSMatt Macy print_fs_perms(&fs_perm_set); 6111eda14cbcSMatt Macy else { 6112eda14cbcSMatt Macy (void) construct_fsacl_list(un, &opts, &update_perm_nvl); 6113eda14cbcSMatt Macy if (zfs_set_fsacl(zhp, un, update_perm_nvl) != 0) 6114eda14cbcSMatt Macy goto cleanup0; 6115eda14cbcSMatt Macy 6116eda14cbcSMatt Macy if (un && opts.recursive) { 6117eda14cbcSMatt Macy struct deleg_perms data = { un, update_perm_nvl }; 6118eda14cbcSMatt Macy if (zfs_iter_filesystems(zhp, set_deleg_perms, 6119eda14cbcSMatt Macy &data) != 0) 6120eda14cbcSMatt Macy goto cleanup0; 6121eda14cbcSMatt Macy } 6122eda14cbcSMatt Macy } 6123eda14cbcSMatt Macy 6124eda14cbcSMatt Macy error = 0; 6125eda14cbcSMatt Macy 6126eda14cbcSMatt Macy cleanup0: 6127eda14cbcSMatt Macy nvlist_free(perm_nvl); 6128eda14cbcSMatt Macy nvlist_free(update_perm_nvl); 6129eda14cbcSMatt Macy cleanup1: 6130eda14cbcSMatt Macy fs_perm_set_fini(&fs_perm_set); 6131eda14cbcSMatt Macy cleanup2: 6132eda14cbcSMatt Macy zfs_close(zhp); 6133eda14cbcSMatt Macy 6134eda14cbcSMatt Macy return (error); 6135eda14cbcSMatt Macy } 6136eda14cbcSMatt Macy 6137eda14cbcSMatt Macy static int 6138eda14cbcSMatt Macy zfs_do_allow(int argc, char **argv) 6139eda14cbcSMatt Macy { 6140eda14cbcSMatt Macy return (zfs_do_allow_unallow_impl(argc, argv, B_FALSE)); 6141eda14cbcSMatt Macy } 6142eda14cbcSMatt Macy 6143eda14cbcSMatt Macy static int 6144eda14cbcSMatt Macy zfs_do_unallow(int argc, char **argv) 6145eda14cbcSMatt Macy { 6146eda14cbcSMatt Macy return (zfs_do_allow_unallow_impl(argc, argv, B_TRUE)); 6147eda14cbcSMatt Macy } 6148eda14cbcSMatt Macy 6149eda14cbcSMatt Macy static int 6150eda14cbcSMatt Macy zfs_do_hold_rele_impl(int argc, char **argv, boolean_t holding) 6151eda14cbcSMatt Macy { 6152eda14cbcSMatt Macy int errors = 0; 6153eda14cbcSMatt Macy int i; 6154eda14cbcSMatt Macy const char *tag; 6155eda14cbcSMatt Macy boolean_t recursive = B_FALSE; 6156eda14cbcSMatt Macy const char *opts = holding ? "rt" : "r"; 6157eda14cbcSMatt Macy int c; 6158eda14cbcSMatt Macy 6159eda14cbcSMatt Macy /* check options */ 6160eda14cbcSMatt Macy while ((c = getopt(argc, argv, opts)) != -1) { 6161eda14cbcSMatt Macy switch (c) { 6162eda14cbcSMatt Macy case 'r': 6163eda14cbcSMatt Macy recursive = B_TRUE; 6164eda14cbcSMatt Macy break; 6165eda14cbcSMatt Macy case '?': 6166eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 6167eda14cbcSMatt Macy optopt); 6168eda14cbcSMatt Macy usage(B_FALSE); 6169eda14cbcSMatt Macy } 6170eda14cbcSMatt Macy } 6171eda14cbcSMatt Macy 6172eda14cbcSMatt Macy argc -= optind; 6173eda14cbcSMatt Macy argv += optind; 6174eda14cbcSMatt Macy 6175eda14cbcSMatt Macy /* check number of arguments */ 6176eda14cbcSMatt Macy if (argc < 2) 6177eda14cbcSMatt Macy usage(B_FALSE); 6178eda14cbcSMatt Macy 6179eda14cbcSMatt Macy tag = argv[0]; 6180eda14cbcSMatt Macy --argc; 6181eda14cbcSMatt Macy ++argv; 6182eda14cbcSMatt Macy 6183eda14cbcSMatt Macy if (holding && tag[0] == '.') { 6184eda14cbcSMatt Macy /* tags starting with '.' are reserved for libzfs */ 6185eda14cbcSMatt Macy (void) fprintf(stderr, gettext("tag may not start with '.'\n")); 6186eda14cbcSMatt Macy usage(B_FALSE); 6187eda14cbcSMatt Macy } 6188eda14cbcSMatt Macy 6189eda14cbcSMatt Macy for (i = 0; i < argc; ++i) { 6190eda14cbcSMatt Macy zfs_handle_t *zhp; 6191eda14cbcSMatt Macy char parent[ZFS_MAX_DATASET_NAME_LEN]; 6192eda14cbcSMatt Macy const char *delim; 6193eda14cbcSMatt Macy char *path = argv[i]; 6194eda14cbcSMatt Macy 6195eda14cbcSMatt Macy delim = strchr(path, '@'); 6196eda14cbcSMatt Macy if (delim == NULL) { 6197eda14cbcSMatt Macy (void) fprintf(stderr, 6198eda14cbcSMatt Macy gettext("'%s' is not a snapshot\n"), path); 6199eda14cbcSMatt Macy ++errors; 6200eda14cbcSMatt Macy continue; 6201eda14cbcSMatt Macy } 6202eda14cbcSMatt Macy (void) strncpy(parent, path, delim - path); 6203eda14cbcSMatt Macy parent[delim - path] = '\0'; 6204eda14cbcSMatt Macy 6205eda14cbcSMatt Macy zhp = zfs_open(g_zfs, parent, 6206eda14cbcSMatt Macy ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME); 6207eda14cbcSMatt Macy if (zhp == NULL) { 6208eda14cbcSMatt Macy ++errors; 6209eda14cbcSMatt Macy continue; 6210eda14cbcSMatt Macy } 6211eda14cbcSMatt Macy if (holding) { 6212eda14cbcSMatt Macy if (zfs_hold(zhp, delim+1, tag, recursive, -1) != 0) 6213eda14cbcSMatt Macy ++errors; 6214eda14cbcSMatt Macy } else { 6215eda14cbcSMatt Macy if (zfs_release(zhp, delim+1, tag, recursive) != 0) 6216eda14cbcSMatt Macy ++errors; 6217eda14cbcSMatt Macy } 6218eda14cbcSMatt Macy zfs_close(zhp); 6219eda14cbcSMatt Macy } 6220eda14cbcSMatt Macy 6221eda14cbcSMatt Macy return (errors != 0); 6222eda14cbcSMatt Macy } 6223eda14cbcSMatt Macy 6224eda14cbcSMatt Macy /* 6225eda14cbcSMatt Macy * zfs hold [-r] [-t] <tag> <snap> ... 6226eda14cbcSMatt Macy * 6227eda14cbcSMatt Macy * -r Recursively hold 6228eda14cbcSMatt Macy * 6229eda14cbcSMatt Macy * Apply a user-hold with the given tag to the list of snapshots. 6230eda14cbcSMatt Macy */ 6231eda14cbcSMatt Macy static int 6232eda14cbcSMatt Macy zfs_do_hold(int argc, char **argv) 6233eda14cbcSMatt Macy { 6234eda14cbcSMatt Macy return (zfs_do_hold_rele_impl(argc, argv, B_TRUE)); 6235eda14cbcSMatt Macy } 6236eda14cbcSMatt Macy 6237eda14cbcSMatt Macy /* 6238eda14cbcSMatt Macy * zfs release [-r] <tag> <snap> ... 6239eda14cbcSMatt Macy * 6240eda14cbcSMatt Macy * -r Recursively release 6241eda14cbcSMatt Macy * 6242eda14cbcSMatt Macy * Release a user-hold with the given tag from the list of snapshots. 6243eda14cbcSMatt Macy */ 6244eda14cbcSMatt Macy static int 6245eda14cbcSMatt Macy zfs_do_release(int argc, char **argv) 6246eda14cbcSMatt Macy { 6247eda14cbcSMatt Macy return (zfs_do_hold_rele_impl(argc, argv, B_FALSE)); 6248eda14cbcSMatt Macy } 6249eda14cbcSMatt Macy 6250eda14cbcSMatt Macy typedef struct holds_cbdata { 6251eda14cbcSMatt Macy boolean_t cb_recursive; 6252eda14cbcSMatt Macy const char *cb_snapname; 6253eda14cbcSMatt Macy nvlist_t **cb_nvlp; 6254eda14cbcSMatt Macy size_t cb_max_namelen; 6255eda14cbcSMatt Macy size_t cb_max_taglen; 6256eda14cbcSMatt Macy } holds_cbdata_t; 6257eda14cbcSMatt Macy 6258eda14cbcSMatt Macy #define STRFTIME_FMT_STR "%a %b %e %H:%M %Y" 6259eda14cbcSMatt Macy #define DATETIME_BUF_LEN (32) 6260eda14cbcSMatt Macy /* 6261eda14cbcSMatt Macy * 6262eda14cbcSMatt Macy */ 6263eda14cbcSMatt Macy static void 6264eda14cbcSMatt Macy print_holds(boolean_t scripted, int nwidth, int tagwidth, nvlist_t *nvl) 6265eda14cbcSMatt Macy { 6266eda14cbcSMatt Macy int i; 6267eda14cbcSMatt Macy nvpair_t *nvp = NULL; 6268eda14cbcSMatt Macy char *hdr_cols[] = { "NAME", "TAG", "TIMESTAMP" }; 6269eda14cbcSMatt Macy const char *col; 6270eda14cbcSMatt Macy 6271eda14cbcSMatt Macy if (!scripted) { 6272eda14cbcSMatt Macy for (i = 0; i < 3; i++) { 6273eda14cbcSMatt Macy col = gettext(hdr_cols[i]); 6274eda14cbcSMatt Macy if (i < 2) 6275eda14cbcSMatt Macy (void) printf("%-*s ", i ? tagwidth : nwidth, 6276eda14cbcSMatt Macy col); 6277eda14cbcSMatt Macy else 6278eda14cbcSMatt Macy (void) printf("%s\n", col); 6279eda14cbcSMatt Macy } 6280eda14cbcSMatt Macy } 6281eda14cbcSMatt Macy 6282eda14cbcSMatt Macy while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) { 6283eda14cbcSMatt Macy char *zname = nvpair_name(nvp); 6284eda14cbcSMatt Macy nvlist_t *nvl2; 6285eda14cbcSMatt Macy nvpair_t *nvp2 = NULL; 6286eda14cbcSMatt Macy (void) nvpair_value_nvlist(nvp, &nvl2); 6287eda14cbcSMatt Macy while ((nvp2 = nvlist_next_nvpair(nvl2, nvp2)) != NULL) { 6288eda14cbcSMatt Macy char tsbuf[DATETIME_BUF_LEN]; 6289eda14cbcSMatt Macy char *tagname = nvpair_name(nvp2); 6290eda14cbcSMatt Macy uint64_t val = 0; 6291eda14cbcSMatt Macy time_t time; 6292eda14cbcSMatt Macy struct tm t; 6293eda14cbcSMatt Macy 6294eda14cbcSMatt Macy (void) nvpair_value_uint64(nvp2, &val); 6295eda14cbcSMatt Macy time = (time_t)val; 6296eda14cbcSMatt Macy (void) localtime_r(&time, &t); 6297eda14cbcSMatt Macy (void) strftime(tsbuf, DATETIME_BUF_LEN, 6298eda14cbcSMatt Macy gettext(STRFTIME_FMT_STR), &t); 6299eda14cbcSMatt Macy 6300eda14cbcSMatt Macy if (scripted) { 6301eda14cbcSMatt Macy (void) printf("%s\t%s\t%s\n", zname, 6302eda14cbcSMatt Macy tagname, tsbuf); 6303eda14cbcSMatt Macy } else { 6304eda14cbcSMatt Macy (void) printf("%-*s %-*s %s\n", nwidth, 6305eda14cbcSMatt Macy zname, tagwidth, tagname, tsbuf); 6306eda14cbcSMatt Macy } 6307eda14cbcSMatt Macy } 6308eda14cbcSMatt Macy } 6309eda14cbcSMatt Macy } 6310eda14cbcSMatt Macy 6311eda14cbcSMatt Macy /* 6312eda14cbcSMatt Macy * Generic callback function to list a dataset or snapshot. 6313eda14cbcSMatt Macy */ 6314eda14cbcSMatt Macy static int 6315eda14cbcSMatt Macy holds_callback(zfs_handle_t *zhp, void *data) 6316eda14cbcSMatt Macy { 6317eda14cbcSMatt Macy holds_cbdata_t *cbp = data; 6318eda14cbcSMatt Macy nvlist_t *top_nvl = *cbp->cb_nvlp; 6319eda14cbcSMatt Macy nvlist_t *nvl = NULL; 6320eda14cbcSMatt Macy nvpair_t *nvp = NULL; 6321eda14cbcSMatt Macy const char *zname = zfs_get_name(zhp); 6322eda14cbcSMatt Macy size_t znamelen = strlen(zname); 6323eda14cbcSMatt Macy 6324eda14cbcSMatt Macy if (cbp->cb_recursive) { 6325eda14cbcSMatt Macy const char *snapname; 6326eda14cbcSMatt Macy char *delim = strchr(zname, '@'); 6327eda14cbcSMatt Macy if (delim == NULL) 6328eda14cbcSMatt Macy return (0); 6329eda14cbcSMatt Macy 6330eda14cbcSMatt Macy snapname = delim + 1; 6331eda14cbcSMatt Macy if (strcmp(cbp->cb_snapname, snapname)) 6332eda14cbcSMatt Macy return (0); 6333eda14cbcSMatt Macy } 6334eda14cbcSMatt Macy 6335eda14cbcSMatt Macy if (zfs_get_holds(zhp, &nvl) != 0) 6336eda14cbcSMatt Macy return (-1); 6337eda14cbcSMatt Macy 6338eda14cbcSMatt Macy if (znamelen > cbp->cb_max_namelen) 6339eda14cbcSMatt Macy cbp->cb_max_namelen = znamelen; 6340eda14cbcSMatt Macy 6341eda14cbcSMatt Macy while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) { 6342eda14cbcSMatt Macy const char *tag = nvpair_name(nvp); 6343eda14cbcSMatt Macy size_t taglen = strlen(tag); 6344eda14cbcSMatt Macy if (taglen > cbp->cb_max_taglen) 6345eda14cbcSMatt Macy cbp->cb_max_taglen = taglen; 6346eda14cbcSMatt Macy } 6347eda14cbcSMatt Macy 6348eda14cbcSMatt Macy return (nvlist_add_nvlist(top_nvl, zname, nvl)); 6349eda14cbcSMatt Macy } 6350eda14cbcSMatt Macy 6351eda14cbcSMatt Macy /* 6352eda14cbcSMatt Macy * zfs holds [-rH] <snap> ... 6353eda14cbcSMatt Macy * 6354eda14cbcSMatt Macy * -r Lists holds that are set on the named snapshots recursively. 6355eda14cbcSMatt Macy * -H Scripted mode; elide headers and separate columns by tabs. 6356eda14cbcSMatt Macy */ 6357eda14cbcSMatt Macy static int 6358eda14cbcSMatt Macy zfs_do_holds(int argc, char **argv) 6359eda14cbcSMatt Macy { 6360eda14cbcSMatt Macy int errors = 0; 6361eda14cbcSMatt Macy int c; 6362eda14cbcSMatt Macy int i; 6363eda14cbcSMatt Macy boolean_t scripted = B_FALSE; 6364eda14cbcSMatt Macy boolean_t recursive = B_FALSE; 6365eda14cbcSMatt Macy const char *opts = "rH"; 6366eda14cbcSMatt Macy nvlist_t *nvl; 6367eda14cbcSMatt Macy 6368eda14cbcSMatt Macy int types = ZFS_TYPE_SNAPSHOT; 6369eda14cbcSMatt Macy holds_cbdata_t cb = { 0 }; 6370eda14cbcSMatt Macy 6371eda14cbcSMatt Macy int limit = 0; 6372eda14cbcSMatt Macy int ret = 0; 6373eda14cbcSMatt Macy int flags = 0; 6374eda14cbcSMatt Macy 6375eda14cbcSMatt Macy /* check options */ 6376eda14cbcSMatt Macy while ((c = getopt(argc, argv, opts)) != -1) { 6377eda14cbcSMatt Macy switch (c) { 6378eda14cbcSMatt Macy case 'r': 6379eda14cbcSMatt Macy recursive = B_TRUE; 6380eda14cbcSMatt Macy break; 6381eda14cbcSMatt Macy case 'H': 6382eda14cbcSMatt Macy scripted = B_TRUE; 6383eda14cbcSMatt Macy break; 6384eda14cbcSMatt Macy case '?': 6385eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 6386eda14cbcSMatt Macy optopt); 6387eda14cbcSMatt Macy usage(B_FALSE); 6388eda14cbcSMatt Macy } 6389eda14cbcSMatt Macy } 6390eda14cbcSMatt Macy 6391eda14cbcSMatt Macy if (recursive) { 6392eda14cbcSMatt Macy types |= ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME; 6393eda14cbcSMatt Macy flags |= ZFS_ITER_RECURSE; 6394eda14cbcSMatt Macy } 6395eda14cbcSMatt Macy 6396eda14cbcSMatt Macy argc -= optind; 6397eda14cbcSMatt Macy argv += optind; 6398eda14cbcSMatt Macy 6399eda14cbcSMatt Macy /* check number of arguments */ 6400eda14cbcSMatt Macy if (argc < 1) 6401eda14cbcSMatt Macy usage(B_FALSE); 6402eda14cbcSMatt Macy 6403eda14cbcSMatt Macy if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0) 6404eda14cbcSMatt Macy nomem(); 6405eda14cbcSMatt Macy 6406eda14cbcSMatt Macy for (i = 0; i < argc; ++i) { 6407eda14cbcSMatt Macy char *snapshot = argv[i]; 6408eda14cbcSMatt Macy const char *delim; 6409eda14cbcSMatt Macy const char *snapname; 6410eda14cbcSMatt Macy 6411eda14cbcSMatt Macy delim = strchr(snapshot, '@'); 6412eda14cbcSMatt Macy if (delim == NULL) { 6413eda14cbcSMatt Macy (void) fprintf(stderr, 6414eda14cbcSMatt Macy gettext("'%s' is not a snapshot\n"), snapshot); 6415eda14cbcSMatt Macy ++errors; 6416eda14cbcSMatt Macy continue; 6417eda14cbcSMatt Macy } 6418eda14cbcSMatt Macy snapname = delim + 1; 6419eda14cbcSMatt Macy if (recursive) 6420eda14cbcSMatt Macy snapshot[delim - snapshot] = '\0'; 6421eda14cbcSMatt Macy 6422eda14cbcSMatt Macy cb.cb_recursive = recursive; 6423eda14cbcSMatt Macy cb.cb_snapname = snapname; 6424eda14cbcSMatt Macy cb.cb_nvlp = &nvl; 6425eda14cbcSMatt Macy 6426eda14cbcSMatt Macy /* 6427eda14cbcSMatt Macy * 1. collect holds data, set format options 6428eda14cbcSMatt Macy */ 6429eda14cbcSMatt Macy ret = zfs_for_each(argc, argv, flags, types, NULL, NULL, limit, 6430eda14cbcSMatt Macy holds_callback, &cb); 6431eda14cbcSMatt Macy if (ret != 0) 6432eda14cbcSMatt Macy ++errors; 6433eda14cbcSMatt Macy } 6434eda14cbcSMatt Macy 6435eda14cbcSMatt Macy /* 6436eda14cbcSMatt Macy * 2. print holds data 6437eda14cbcSMatt Macy */ 6438eda14cbcSMatt Macy print_holds(scripted, cb.cb_max_namelen, cb.cb_max_taglen, nvl); 6439eda14cbcSMatt Macy 6440eda14cbcSMatt Macy if (nvlist_empty(nvl)) 6441eda14cbcSMatt Macy (void) fprintf(stderr, gettext("no datasets available\n")); 6442eda14cbcSMatt Macy 6443eda14cbcSMatt Macy nvlist_free(nvl); 6444eda14cbcSMatt Macy 6445eda14cbcSMatt Macy return (0 != errors); 6446eda14cbcSMatt Macy } 6447eda14cbcSMatt Macy 6448eda14cbcSMatt Macy #define CHECK_SPINNER 30 6449eda14cbcSMatt Macy #define SPINNER_TIME 3 /* seconds */ 6450eda14cbcSMatt Macy #define MOUNT_TIME 1 /* seconds */ 6451eda14cbcSMatt Macy 6452eda14cbcSMatt Macy typedef struct get_all_state { 6453eda14cbcSMatt Macy boolean_t ga_verbose; 6454eda14cbcSMatt Macy get_all_cb_t *ga_cbp; 6455eda14cbcSMatt Macy } get_all_state_t; 6456eda14cbcSMatt Macy 6457eda14cbcSMatt Macy static int 6458eda14cbcSMatt Macy get_one_dataset(zfs_handle_t *zhp, void *data) 6459eda14cbcSMatt Macy { 6460eda14cbcSMatt Macy static char *spin[] = { "-", "\\", "|", "/" }; 6461eda14cbcSMatt Macy static int spinval = 0; 6462eda14cbcSMatt Macy static int spincheck = 0; 6463eda14cbcSMatt Macy static time_t last_spin_time = (time_t)0; 6464eda14cbcSMatt Macy get_all_state_t *state = data; 6465eda14cbcSMatt Macy zfs_type_t type = zfs_get_type(zhp); 6466eda14cbcSMatt Macy 6467eda14cbcSMatt Macy if (state->ga_verbose) { 6468eda14cbcSMatt Macy if (--spincheck < 0) { 6469eda14cbcSMatt Macy time_t now = time(NULL); 6470eda14cbcSMatt Macy if (last_spin_time + SPINNER_TIME < now) { 6471eda14cbcSMatt Macy update_progress(spin[spinval++ % 4]); 6472eda14cbcSMatt Macy last_spin_time = now; 6473eda14cbcSMatt Macy } 6474eda14cbcSMatt Macy spincheck = CHECK_SPINNER; 6475eda14cbcSMatt Macy } 6476eda14cbcSMatt Macy } 6477eda14cbcSMatt Macy 6478eda14cbcSMatt Macy /* 6479eda14cbcSMatt Macy * Iterate over any nested datasets. 6480eda14cbcSMatt Macy */ 6481eda14cbcSMatt Macy if (zfs_iter_filesystems(zhp, get_one_dataset, data) != 0) { 6482eda14cbcSMatt Macy zfs_close(zhp); 6483eda14cbcSMatt Macy return (1); 6484eda14cbcSMatt Macy } 6485eda14cbcSMatt Macy 6486eda14cbcSMatt Macy /* 6487eda14cbcSMatt Macy * Skip any datasets whose type does not match. 6488eda14cbcSMatt Macy */ 6489eda14cbcSMatt Macy if ((type & ZFS_TYPE_FILESYSTEM) == 0) { 6490eda14cbcSMatt Macy zfs_close(zhp); 6491eda14cbcSMatt Macy return (0); 6492eda14cbcSMatt Macy } 6493eda14cbcSMatt Macy libzfs_add_handle(state->ga_cbp, zhp); 6494eda14cbcSMatt Macy assert(state->ga_cbp->cb_used <= state->ga_cbp->cb_alloc); 6495eda14cbcSMatt Macy 6496eda14cbcSMatt Macy return (0); 6497eda14cbcSMatt Macy } 6498eda14cbcSMatt Macy 6499eda14cbcSMatt Macy static void 6500eda14cbcSMatt Macy get_all_datasets(get_all_cb_t *cbp, boolean_t verbose) 6501eda14cbcSMatt Macy { 6502eda14cbcSMatt Macy get_all_state_t state = { 6503eda14cbcSMatt Macy .ga_verbose = verbose, 6504eda14cbcSMatt Macy .ga_cbp = cbp 6505eda14cbcSMatt Macy }; 6506eda14cbcSMatt Macy 6507eda14cbcSMatt Macy if (verbose) 6508eda14cbcSMatt Macy set_progress_header(gettext("Reading ZFS config")); 6509eda14cbcSMatt Macy (void) zfs_iter_root(g_zfs, get_one_dataset, &state); 6510eda14cbcSMatt Macy 6511eda14cbcSMatt Macy if (verbose) 6512eda14cbcSMatt Macy finish_progress(gettext("done.")); 6513eda14cbcSMatt Macy } 6514eda14cbcSMatt Macy 6515eda14cbcSMatt Macy /* 6516eda14cbcSMatt Macy * Generic callback for sharing or mounting filesystems. Because the code is so 6517eda14cbcSMatt Macy * similar, we have a common function with an extra parameter to determine which 6518eda14cbcSMatt Macy * mode we are using. 6519eda14cbcSMatt Macy */ 6520eda14cbcSMatt Macy typedef enum { OP_SHARE, OP_MOUNT } share_mount_op_t; 6521eda14cbcSMatt Macy 6522eda14cbcSMatt Macy typedef struct share_mount_state { 6523eda14cbcSMatt Macy share_mount_op_t sm_op; 6524eda14cbcSMatt Macy boolean_t sm_verbose; 6525eda14cbcSMatt Macy int sm_flags; 6526eda14cbcSMatt Macy char *sm_options; 6527eda14cbcSMatt Macy char *sm_proto; /* only valid for OP_SHARE */ 6528eda14cbcSMatt Macy pthread_mutex_t sm_lock; /* protects the remaining fields */ 6529eda14cbcSMatt Macy uint_t sm_total; /* number of filesystems to process */ 6530eda14cbcSMatt Macy uint_t sm_done; /* number of filesystems processed */ 6531eda14cbcSMatt Macy int sm_status; /* -1 if any of the share/mount operations failed */ 6532eda14cbcSMatt Macy } share_mount_state_t; 6533eda14cbcSMatt Macy 6534eda14cbcSMatt Macy /* 6535eda14cbcSMatt Macy * Share or mount a dataset. 6536eda14cbcSMatt Macy */ 6537eda14cbcSMatt Macy static int 6538eda14cbcSMatt Macy share_mount_one(zfs_handle_t *zhp, int op, int flags, char *protocol, 6539eda14cbcSMatt Macy boolean_t explicit, const char *options) 6540eda14cbcSMatt Macy { 6541eda14cbcSMatt Macy char mountpoint[ZFS_MAXPROPLEN]; 6542eda14cbcSMatt Macy char shareopts[ZFS_MAXPROPLEN]; 6543eda14cbcSMatt Macy char smbshareopts[ZFS_MAXPROPLEN]; 6544eda14cbcSMatt Macy const char *cmdname = op == OP_SHARE ? "share" : "mount"; 6545eda14cbcSMatt Macy struct mnttab mnt; 6546eda14cbcSMatt Macy uint64_t zoned, canmount; 6547eda14cbcSMatt Macy boolean_t shared_nfs, shared_smb; 6548eda14cbcSMatt Macy 6549eda14cbcSMatt Macy assert(zfs_get_type(zhp) & ZFS_TYPE_FILESYSTEM); 6550eda14cbcSMatt Macy 6551eda14cbcSMatt Macy /* 6552eda14cbcSMatt Macy * Check to make sure we can mount/share this dataset. If we 6553eda14cbcSMatt Macy * are in the global zone and the filesystem is exported to a 6554eda14cbcSMatt Macy * local zone, or if we are in a local zone and the 6555eda14cbcSMatt Macy * filesystem is not exported, then it is an error. 6556eda14cbcSMatt Macy */ 6557eda14cbcSMatt Macy zoned = zfs_prop_get_int(zhp, ZFS_PROP_ZONED); 6558eda14cbcSMatt Macy 6559eda14cbcSMatt Macy if (zoned && getzoneid() == GLOBAL_ZONEID) { 6560eda14cbcSMatt Macy if (!explicit) 6561eda14cbcSMatt Macy return (0); 6562eda14cbcSMatt Macy 6563eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': " 6564eda14cbcSMatt Macy "dataset is exported to a local zone\n"), cmdname, 6565eda14cbcSMatt Macy zfs_get_name(zhp)); 6566eda14cbcSMatt Macy return (1); 6567eda14cbcSMatt Macy 6568eda14cbcSMatt Macy } else if (!zoned && getzoneid() != GLOBAL_ZONEID) { 6569eda14cbcSMatt Macy if (!explicit) 6570eda14cbcSMatt Macy return (0); 6571eda14cbcSMatt Macy 6572eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': " 6573eda14cbcSMatt Macy "permission denied\n"), cmdname, 6574eda14cbcSMatt Macy zfs_get_name(zhp)); 6575eda14cbcSMatt Macy return (1); 6576eda14cbcSMatt Macy } 6577eda14cbcSMatt Macy 6578eda14cbcSMatt Macy /* 6579eda14cbcSMatt Macy * Ignore any filesystems which don't apply to us. This 6580eda14cbcSMatt Macy * includes those with a legacy mountpoint, or those with 6581eda14cbcSMatt Macy * legacy share options. 6582eda14cbcSMatt Macy */ 6583eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, mountpoint, 6584eda14cbcSMatt Macy sizeof (mountpoint), NULL, NULL, 0, B_FALSE) == 0); 6585eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS, shareopts, 6586eda14cbcSMatt Macy sizeof (shareopts), NULL, NULL, 0, B_FALSE) == 0); 6587eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB, smbshareopts, 6588eda14cbcSMatt Macy sizeof (smbshareopts), NULL, NULL, 0, B_FALSE) == 0); 6589eda14cbcSMatt Macy 6590eda14cbcSMatt Macy if (op == OP_SHARE && strcmp(shareopts, "off") == 0 && 6591eda14cbcSMatt Macy strcmp(smbshareopts, "off") == 0) { 6592eda14cbcSMatt Macy if (!explicit) 6593eda14cbcSMatt Macy return (0); 6594eda14cbcSMatt Macy 6595eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot share '%s': " 6596eda14cbcSMatt Macy "legacy share\n"), zfs_get_name(zhp)); 6597eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use share(1M) to " 6598eda14cbcSMatt Macy "share this filesystem, or set " 6599eda14cbcSMatt Macy "sharenfs property on\n")); 6600eda14cbcSMatt Macy return (1); 6601eda14cbcSMatt Macy } 6602eda14cbcSMatt Macy 6603eda14cbcSMatt Macy /* 6604eda14cbcSMatt Macy * We cannot share or mount legacy filesystems. If the 6605eda14cbcSMatt Macy * shareopts is non-legacy but the mountpoint is legacy, we 6606eda14cbcSMatt Macy * treat it as a legacy share. 6607eda14cbcSMatt Macy */ 6608eda14cbcSMatt Macy if (strcmp(mountpoint, "legacy") == 0) { 6609eda14cbcSMatt Macy if (!explicit) 6610eda14cbcSMatt Macy return (0); 6611eda14cbcSMatt Macy 6612eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': " 6613eda14cbcSMatt Macy "legacy mountpoint\n"), cmdname, zfs_get_name(zhp)); 6614eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use %s(1M) to " 6615eda14cbcSMatt Macy "%s this filesystem\n"), cmdname, cmdname); 6616eda14cbcSMatt Macy return (1); 6617eda14cbcSMatt Macy } 6618eda14cbcSMatt Macy 6619eda14cbcSMatt Macy if (strcmp(mountpoint, "none") == 0) { 6620eda14cbcSMatt Macy if (!explicit) 6621eda14cbcSMatt Macy return (0); 6622eda14cbcSMatt Macy 6623eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': no " 6624eda14cbcSMatt Macy "mountpoint set\n"), cmdname, zfs_get_name(zhp)); 6625eda14cbcSMatt Macy return (1); 6626eda14cbcSMatt Macy } 6627eda14cbcSMatt Macy 6628eda14cbcSMatt Macy /* 6629eda14cbcSMatt Macy * canmount explicit outcome 6630eda14cbcSMatt Macy * on no pass through 6631eda14cbcSMatt Macy * on yes pass through 6632eda14cbcSMatt Macy * off no return 0 6633eda14cbcSMatt Macy * off yes display error, return 1 6634eda14cbcSMatt Macy * noauto no return 0 6635eda14cbcSMatt Macy * noauto yes pass through 6636eda14cbcSMatt Macy */ 6637eda14cbcSMatt Macy canmount = zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT); 6638eda14cbcSMatt Macy if (canmount == ZFS_CANMOUNT_OFF) { 6639eda14cbcSMatt Macy if (!explicit) 6640eda14cbcSMatt Macy return (0); 6641eda14cbcSMatt Macy 6642eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': " 6643eda14cbcSMatt Macy "'canmount' property is set to 'off'\n"), cmdname, 6644eda14cbcSMatt Macy zfs_get_name(zhp)); 6645eda14cbcSMatt Macy return (1); 6646eda14cbcSMatt Macy } else if (canmount == ZFS_CANMOUNT_NOAUTO && !explicit) { 6647eda14cbcSMatt Macy /* 6648eda14cbcSMatt Macy * When performing a 'zfs mount -a', we skip any mounts for 6649eda14cbcSMatt Macy * datasets that have 'noauto' set. Sharing a dataset with 6650eda14cbcSMatt Macy * 'noauto' set is only allowed if it's mounted. 6651eda14cbcSMatt Macy */ 6652eda14cbcSMatt Macy if (op == OP_MOUNT) 6653eda14cbcSMatt Macy return (0); 6654eda14cbcSMatt Macy if (op == OP_SHARE && !zfs_is_mounted(zhp, NULL)) { 6655eda14cbcSMatt Macy /* also purge it from existing exports */ 6656eda14cbcSMatt Macy zfs_unshareall_bypath(zhp, mountpoint); 6657eda14cbcSMatt Macy return (0); 6658eda14cbcSMatt Macy } 6659eda14cbcSMatt Macy } 6660eda14cbcSMatt Macy 6661eda14cbcSMatt Macy /* 6662eda14cbcSMatt Macy * If this filesystem is encrypted and does not have 6663eda14cbcSMatt Macy * a loaded key, we can not mount it. 6664eda14cbcSMatt Macy */ 6665eda14cbcSMatt Macy if ((flags & MS_CRYPT) == 0 && 6666eda14cbcSMatt Macy zfs_prop_get_int(zhp, ZFS_PROP_ENCRYPTION) != ZIO_CRYPT_OFF && 6667eda14cbcSMatt Macy zfs_prop_get_int(zhp, ZFS_PROP_KEYSTATUS) == 6668eda14cbcSMatt Macy ZFS_KEYSTATUS_UNAVAILABLE) { 6669eda14cbcSMatt Macy if (!explicit) 6670eda14cbcSMatt Macy return (0); 6671eda14cbcSMatt Macy 6672eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': " 6673eda14cbcSMatt Macy "encryption key not loaded\n"), cmdname, zfs_get_name(zhp)); 6674eda14cbcSMatt Macy return (1); 6675eda14cbcSMatt Macy } 6676eda14cbcSMatt Macy 6677eda14cbcSMatt Macy /* 6678eda14cbcSMatt Macy * If this filesystem is inconsistent and has a receive resume 6679eda14cbcSMatt Macy * token, we can not mount it. 6680eda14cbcSMatt Macy */ 6681eda14cbcSMatt Macy if (zfs_prop_get_int(zhp, ZFS_PROP_INCONSISTENT) && 6682eda14cbcSMatt Macy zfs_prop_get(zhp, ZFS_PROP_RECEIVE_RESUME_TOKEN, 6683eda14cbcSMatt Macy NULL, 0, NULL, NULL, 0, B_TRUE) == 0) { 6684eda14cbcSMatt Macy if (!explicit) 6685eda14cbcSMatt Macy return (0); 6686eda14cbcSMatt Macy 6687eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': " 6688eda14cbcSMatt Macy "Contains partially-completed state from " 6689eda14cbcSMatt Macy "\"zfs receive -s\", which can be resumed with " 6690eda14cbcSMatt Macy "\"zfs send -t\"\n"), 6691eda14cbcSMatt Macy cmdname, zfs_get_name(zhp)); 6692eda14cbcSMatt Macy return (1); 6693eda14cbcSMatt Macy } 6694eda14cbcSMatt Macy 6695eda14cbcSMatt Macy if (zfs_prop_get_int(zhp, ZFS_PROP_REDACTED) && !(flags & MS_FORCE)) { 6696eda14cbcSMatt Macy if (!explicit) 6697eda14cbcSMatt Macy return (0); 6698eda14cbcSMatt Macy 6699eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': " 6700eda14cbcSMatt Macy "Dataset is not complete, was created by receiving " 6701eda14cbcSMatt Macy "a redacted zfs send stream.\n"), cmdname, 6702eda14cbcSMatt Macy zfs_get_name(zhp)); 6703eda14cbcSMatt Macy return (1); 6704eda14cbcSMatt Macy } 6705eda14cbcSMatt Macy 6706eda14cbcSMatt Macy /* 6707eda14cbcSMatt Macy * At this point, we have verified that the mountpoint and/or 6708eda14cbcSMatt Macy * shareopts are appropriate for auto management. If the 6709eda14cbcSMatt Macy * filesystem is already mounted or shared, return (failing 6710eda14cbcSMatt Macy * for explicit requests); otherwise mount or share the 6711eda14cbcSMatt Macy * filesystem. 6712eda14cbcSMatt Macy */ 6713eda14cbcSMatt Macy switch (op) { 6714eda14cbcSMatt Macy case OP_SHARE: 6715eda14cbcSMatt Macy 6716eda14cbcSMatt Macy shared_nfs = zfs_is_shared_nfs(zhp, NULL); 6717eda14cbcSMatt Macy shared_smb = zfs_is_shared_smb(zhp, NULL); 6718eda14cbcSMatt Macy 6719eda14cbcSMatt Macy if ((shared_nfs && shared_smb) || 6720eda14cbcSMatt Macy (shared_nfs && strcmp(shareopts, "on") == 0 && 6721eda14cbcSMatt Macy strcmp(smbshareopts, "off") == 0) || 6722eda14cbcSMatt Macy (shared_smb && strcmp(smbshareopts, "on") == 0 && 6723eda14cbcSMatt Macy strcmp(shareopts, "off") == 0)) { 6724eda14cbcSMatt Macy if (!explicit) 6725eda14cbcSMatt Macy return (0); 6726eda14cbcSMatt Macy 6727eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot share " 6728eda14cbcSMatt Macy "'%s': filesystem already shared\n"), 6729eda14cbcSMatt Macy zfs_get_name(zhp)); 6730eda14cbcSMatt Macy return (1); 6731eda14cbcSMatt Macy } 6732eda14cbcSMatt Macy 6733eda14cbcSMatt Macy if (!zfs_is_mounted(zhp, NULL) && 6734eda14cbcSMatt Macy zfs_mount(zhp, NULL, flags) != 0) 6735eda14cbcSMatt Macy return (1); 6736eda14cbcSMatt Macy 6737eda14cbcSMatt Macy if (protocol == NULL) { 6738eda14cbcSMatt Macy if (zfs_shareall(zhp) != 0) 6739eda14cbcSMatt Macy return (1); 6740eda14cbcSMatt Macy } else if (strcmp(protocol, "nfs") == 0) { 6741eda14cbcSMatt Macy if (zfs_share_nfs(zhp)) 6742eda14cbcSMatt Macy return (1); 6743eda14cbcSMatt Macy } else if (strcmp(protocol, "smb") == 0) { 6744eda14cbcSMatt Macy if (zfs_share_smb(zhp)) 6745eda14cbcSMatt Macy return (1); 6746eda14cbcSMatt Macy } else { 6747eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot share " 6748eda14cbcSMatt Macy "'%s': invalid share type '%s' " 6749eda14cbcSMatt Macy "specified\n"), 6750eda14cbcSMatt Macy zfs_get_name(zhp), protocol); 6751eda14cbcSMatt Macy return (1); 6752eda14cbcSMatt Macy } 6753eda14cbcSMatt Macy 6754eda14cbcSMatt Macy break; 6755eda14cbcSMatt Macy 6756eda14cbcSMatt Macy case OP_MOUNT: 6757eda14cbcSMatt Macy if (options == NULL) 6758eda14cbcSMatt Macy mnt.mnt_mntopts = ""; 6759eda14cbcSMatt Macy else 6760eda14cbcSMatt Macy mnt.mnt_mntopts = (char *)options; 6761eda14cbcSMatt Macy 6762eda14cbcSMatt Macy if (!hasmntopt(&mnt, MNTOPT_REMOUNT) && 6763eda14cbcSMatt Macy zfs_is_mounted(zhp, NULL)) { 6764eda14cbcSMatt Macy if (!explicit) 6765eda14cbcSMatt Macy return (0); 6766eda14cbcSMatt Macy 6767eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot mount " 6768eda14cbcSMatt Macy "'%s': filesystem already mounted\n"), 6769eda14cbcSMatt Macy zfs_get_name(zhp)); 6770eda14cbcSMatt Macy return (1); 6771eda14cbcSMatt Macy } 6772eda14cbcSMatt Macy 6773eda14cbcSMatt Macy if (zfs_mount(zhp, options, flags) != 0) 6774eda14cbcSMatt Macy return (1); 6775eda14cbcSMatt Macy break; 6776eda14cbcSMatt Macy } 6777eda14cbcSMatt Macy 6778eda14cbcSMatt Macy return (0); 6779eda14cbcSMatt Macy } 6780eda14cbcSMatt Macy 6781eda14cbcSMatt Macy /* 6782eda14cbcSMatt Macy * Reports progress in the form "(current/total)". Not thread-safe. 6783eda14cbcSMatt Macy */ 6784eda14cbcSMatt Macy static void 6785eda14cbcSMatt Macy report_mount_progress(int current, int total) 6786eda14cbcSMatt Macy { 6787eda14cbcSMatt Macy static time_t last_progress_time = 0; 6788eda14cbcSMatt Macy time_t now = time(NULL); 6789eda14cbcSMatt Macy char info[32]; 6790eda14cbcSMatt Macy 6791eda14cbcSMatt Macy /* report 1..n instead of 0..n-1 */ 6792eda14cbcSMatt Macy ++current; 6793eda14cbcSMatt Macy 6794eda14cbcSMatt Macy /* display header if we're here for the first time */ 6795eda14cbcSMatt Macy if (current == 1) { 6796eda14cbcSMatt Macy set_progress_header(gettext("Mounting ZFS filesystems")); 6797eda14cbcSMatt Macy } else if (current != total && last_progress_time + MOUNT_TIME >= now) { 6798eda14cbcSMatt Macy /* too soon to report again */ 6799eda14cbcSMatt Macy return; 6800eda14cbcSMatt Macy } 6801eda14cbcSMatt Macy 6802eda14cbcSMatt Macy last_progress_time = now; 6803eda14cbcSMatt Macy 6804eda14cbcSMatt Macy (void) sprintf(info, "(%d/%d)", current, total); 6805eda14cbcSMatt Macy 6806eda14cbcSMatt Macy if (current == total) 6807eda14cbcSMatt Macy finish_progress(info); 6808eda14cbcSMatt Macy else 6809eda14cbcSMatt Macy update_progress(info); 6810eda14cbcSMatt Macy } 6811eda14cbcSMatt Macy 6812eda14cbcSMatt Macy /* 6813eda14cbcSMatt Macy * zfs_foreach_mountpoint() callback that mounts or shares one filesystem and 6814eda14cbcSMatt Macy * updates the progress meter. 6815eda14cbcSMatt Macy */ 6816eda14cbcSMatt Macy static int 6817eda14cbcSMatt Macy share_mount_one_cb(zfs_handle_t *zhp, void *arg) 6818eda14cbcSMatt Macy { 6819eda14cbcSMatt Macy share_mount_state_t *sms = arg; 6820eda14cbcSMatt Macy int ret; 6821eda14cbcSMatt Macy 6822eda14cbcSMatt Macy ret = share_mount_one(zhp, sms->sm_op, sms->sm_flags, sms->sm_proto, 6823eda14cbcSMatt Macy B_FALSE, sms->sm_options); 6824eda14cbcSMatt Macy 6825eda14cbcSMatt Macy pthread_mutex_lock(&sms->sm_lock); 6826eda14cbcSMatt Macy if (ret != 0) 6827eda14cbcSMatt Macy sms->sm_status = ret; 6828eda14cbcSMatt Macy sms->sm_done++; 6829eda14cbcSMatt Macy if (sms->sm_verbose) 6830eda14cbcSMatt Macy report_mount_progress(sms->sm_done, sms->sm_total); 6831eda14cbcSMatt Macy pthread_mutex_unlock(&sms->sm_lock); 6832eda14cbcSMatt Macy return (ret); 6833eda14cbcSMatt Macy } 6834eda14cbcSMatt Macy 6835eda14cbcSMatt Macy static void 6836eda14cbcSMatt Macy append_options(char *mntopts, char *newopts) 6837eda14cbcSMatt Macy { 6838eda14cbcSMatt Macy int len = strlen(mntopts); 6839eda14cbcSMatt Macy 6840eda14cbcSMatt Macy /* original length plus new string to append plus 1 for the comma */ 6841eda14cbcSMatt Macy if (len + 1 + strlen(newopts) >= MNT_LINE_MAX) { 6842eda14cbcSMatt Macy (void) fprintf(stderr, gettext("the opts argument for " 6843eda14cbcSMatt Macy "'%s' option is too long (more than %d chars)\n"), 6844eda14cbcSMatt Macy "-o", MNT_LINE_MAX); 6845eda14cbcSMatt Macy usage(B_FALSE); 6846eda14cbcSMatt Macy } 6847eda14cbcSMatt Macy 6848eda14cbcSMatt Macy if (*mntopts) 6849eda14cbcSMatt Macy mntopts[len++] = ','; 6850eda14cbcSMatt Macy 6851eda14cbcSMatt Macy (void) strcpy(&mntopts[len], newopts); 6852eda14cbcSMatt Macy } 6853eda14cbcSMatt Macy 6854eda14cbcSMatt Macy static int 6855eda14cbcSMatt Macy share_mount(int op, int argc, char **argv) 6856eda14cbcSMatt Macy { 6857eda14cbcSMatt Macy int do_all = 0; 6858eda14cbcSMatt Macy boolean_t verbose = B_FALSE; 6859eda14cbcSMatt Macy int c, ret = 0; 6860eda14cbcSMatt Macy char *options = NULL; 6861eda14cbcSMatt Macy int flags = 0; 6862eda14cbcSMatt Macy 6863eda14cbcSMatt Macy /* check options */ 6864eda14cbcSMatt Macy while ((c = getopt(argc, argv, op == OP_MOUNT ? ":alvo:Of" : "al")) 6865eda14cbcSMatt Macy != -1) { 6866eda14cbcSMatt Macy switch (c) { 6867eda14cbcSMatt Macy case 'a': 6868eda14cbcSMatt Macy do_all = 1; 6869eda14cbcSMatt Macy break; 6870eda14cbcSMatt Macy case 'v': 6871eda14cbcSMatt Macy verbose = B_TRUE; 6872eda14cbcSMatt Macy break; 6873eda14cbcSMatt Macy case 'l': 6874eda14cbcSMatt Macy flags |= MS_CRYPT; 6875eda14cbcSMatt Macy break; 6876eda14cbcSMatt Macy case 'o': 6877eda14cbcSMatt Macy if (*optarg == '\0') { 6878eda14cbcSMatt Macy (void) fprintf(stderr, gettext("empty mount " 6879eda14cbcSMatt Macy "options (-o) specified\n")); 6880eda14cbcSMatt Macy usage(B_FALSE); 6881eda14cbcSMatt Macy } 6882eda14cbcSMatt Macy 6883eda14cbcSMatt Macy if (options == NULL) 6884eda14cbcSMatt Macy options = safe_malloc(MNT_LINE_MAX + 1); 6885eda14cbcSMatt Macy 6886eda14cbcSMatt Macy /* option validation is done later */ 6887eda14cbcSMatt Macy append_options(options, optarg); 6888eda14cbcSMatt Macy break; 6889eda14cbcSMatt Macy case 'O': 6890eda14cbcSMatt Macy flags |= MS_OVERLAY; 6891eda14cbcSMatt Macy break; 6892eda14cbcSMatt Macy case 'f': 6893eda14cbcSMatt Macy flags |= MS_FORCE; 6894eda14cbcSMatt Macy break; 6895eda14cbcSMatt Macy case ':': 6896eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing argument for " 6897eda14cbcSMatt Macy "'%c' option\n"), optopt); 6898eda14cbcSMatt Macy usage(B_FALSE); 6899eda14cbcSMatt Macy break; 6900eda14cbcSMatt Macy case '?': 6901eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 6902eda14cbcSMatt Macy optopt); 6903eda14cbcSMatt Macy usage(B_FALSE); 6904eda14cbcSMatt Macy } 6905eda14cbcSMatt Macy } 6906eda14cbcSMatt Macy 6907eda14cbcSMatt Macy argc -= optind; 6908eda14cbcSMatt Macy argv += optind; 6909eda14cbcSMatt Macy 6910eda14cbcSMatt Macy /* check number of arguments */ 6911eda14cbcSMatt Macy if (do_all) { 6912eda14cbcSMatt Macy char *protocol = NULL; 6913eda14cbcSMatt Macy 6914eda14cbcSMatt Macy if (op == OP_SHARE && argc > 0) { 6915eda14cbcSMatt Macy if (strcmp(argv[0], "nfs") != 0 && 6916eda14cbcSMatt Macy strcmp(argv[0], "smb") != 0) { 6917eda14cbcSMatt Macy (void) fprintf(stderr, gettext("share type " 6918eda14cbcSMatt Macy "must be 'nfs' or 'smb'\n")); 6919eda14cbcSMatt Macy usage(B_FALSE); 6920eda14cbcSMatt Macy } 6921eda14cbcSMatt Macy protocol = argv[0]; 6922eda14cbcSMatt Macy argc--; 6923eda14cbcSMatt Macy argv++; 6924eda14cbcSMatt Macy } 6925eda14cbcSMatt Macy 6926eda14cbcSMatt Macy if (argc != 0) { 6927eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 6928eda14cbcSMatt Macy usage(B_FALSE); 6929eda14cbcSMatt Macy } 6930eda14cbcSMatt Macy 6931eda14cbcSMatt Macy start_progress_timer(); 6932eda14cbcSMatt Macy get_all_cb_t cb = { 0 }; 6933eda14cbcSMatt Macy get_all_datasets(&cb, verbose); 6934eda14cbcSMatt Macy 6935eda14cbcSMatt Macy if (cb.cb_used == 0) { 6936eda14cbcSMatt Macy if (options != NULL) 6937eda14cbcSMatt Macy free(options); 6938eda14cbcSMatt Macy return (0); 6939eda14cbcSMatt Macy } 6940eda14cbcSMatt Macy 6941eda14cbcSMatt Macy share_mount_state_t share_mount_state = { 0 }; 6942eda14cbcSMatt Macy share_mount_state.sm_op = op; 6943eda14cbcSMatt Macy share_mount_state.sm_verbose = verbose; 6944eda14cbcSMatt Macy share_mount_state.sm_flags = flags; 6945eda14cbcSMatt Macy share_mount_state.sm_options = options; 6946eda14cbcSMatt Macy share_mount_state.sm_proto = protocol; 6947eda14cbcSMatt Macy share_mount_state.sm_total = cb.cb_used; 6948eda14cbcSMatt Macy pthread_mutex_init(&share_mount_state.sm_lock, NULL); 6949eda14cbcSMatt Macy 6950eda14cbcSMatt Macy /* 6951eda14cbcSMatt Macy * libshare isn't mt-safe, so only do the operation in parallel 6952eda14cbcSMatt Macy * if we're mounting. Additionally, the key-loading option must 6953eda14cbcSMatt Macy * be serialized so that we can prompt the user for their keys 6954eda14cbcSMatt Macy * in a consistent manner. 6955eda14cbcSMatt Macy */ 6956eda14cbcSMatt Macy zfs_foreach_mountpoint(g_zfs, cb.cb_handles, cb.cb_used, 6957eda14cbcSMatt Macy share_mount_one_cb, &share_mount_state, 6958eda14cbcSMatt Macy op == OP_MOUNT && !(flags & MS_CRYPT)); 6959eda14cbcSMatt Macy zfs_commit_all_shares(); 6960eda14cbcSMatt Macy 6961eda14cbcSMatt Macy ret = share_mount_state.sm_status; 6962eda14cbcSMatt Macy 6963eda14cbcSMatt Macy for (int i = 0; i < cb.cb_used; i++) 6964eda14cbcSMatt Macy zfs_close(cb.cb_handles[i]); 6965eda14cbcSMatt Macy free(cb.cb_handles); 6966eda14cbcSMatt Macy } else if (argc == 0) { 6967eda14cbcSMatt Macy struct mnttab entry; 6968eda14cbcSMatt Macy 6969eda14cbcSMatt Macy if ((op == OP_SHARE) || (options != NULL)) { 6970eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing filesystem " 6971eda14cbcSMatt Macy "argument (specify -a for all)\n")); 6972eda14cbcSMatt Macy usage(B_FALSE); 6973eda14cbcSMatt Macy } 6974eda14cbcSMatt Macy 6975eda14cbcSMatt Macy /* 6976eda14cbcSMatt Macy * When mount is given no arguments, go through 6977eda14cbcSMatt Macy * /proc/self/mounts and display any active ZFS mounts. 6978eda14cbcSMatt Macy * We hide any snapshots, since they are controlled 6979eda14cbcSMatt Macy * automatically. 6980eda14cbcSMatt Macy */ 6981eda14cbcSMatt Macy 6982eda14cbcSMatt Macy /* Reopen MNTTAB to prevent reading stale data from open file */ 6983eda14cbcSMatt Macy if (freopen(MNTTAB, "r", mnttab_file) == NULL) { 6984eda14cbcSMatt Macy if (options != NULL) 6985eda14cbcSMatt Macy free(options); 6986eda14cbcSMatt Macy return (ENOENT); 6987eda14cbcSMatt Macy } 6988eda14cbcSMatt Macy 6989eda14cbcSMatt Macy while (getmntent(mnttab_file, &entry) == 0) { 6990eda14cbcSMatt Macy if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0 || 6991eda14cbcSMatt Macy strchr(entry.mnt_special, '@') != NULL) 6992eda14cbcSMatt Macy continue; 6993eda14cbcSMatt Macy 6994eda14cbcSMatt Macy (void) printf("%-30s %s\n", entry.mnt_special, 6995eda14cbcSMatt Macy entry.mnt_mountp); 6996eda14cbcSMatt Macy } 6997eda14cbcSMatt Macy 6998eda14cbcSMatt Macy } else { 6999eda14cbcSMatt Macy zfs_handle_t *zhp; 7000eda14cbcSMatt Macy 7001eda14cbcSMatt Macy if (argc > 1) { 7002eda14cbcSMatt Macy (void) fprintf(stderr, 7003eda14cbcSMatt Macy gettext("too many arguments\n")); 7004eda14cbcSMatt Macy usage(B_FALSE); 7005eda14cbcSMatt Macy } 7006eda14cbcSMatt Macy 7007eda14cbcSMatt Macy if ((zhp = zfs_open(g_zfs, argv[0], 7008eda14cbcSMatt Macy ZFS_TYPE_FILESYSTEM)) == NULL) { 7009eda14cbcSMatt Macy ret = 1; 7010eda14cbcSMatt Macy } else { 7011eda14cbcSMatt Macy ret = share_mount_one(zhp, op, flags, NULL, B_TRUE, 7012eda14cbcSMatt Macy options); 7013eda14cbcSMatt Macy zfs_commit_all_shares(); 7014eda14cbcSMatt Macy zfs_close(zhp); 7015eda14cbcSMatt Macy } 7016eda14cbcSMatt Macy } 7017eda14cbcSMatt Macy 7018eda14cbcSMatt Macy if (options != NULL) 7019eda14cbcSMatt Macy free(options); 7020eda14cbcSMatt Macy 7021eda14cbcSMatt Macy return (ret); 7022eda14cbcSMatt Macy } 7023eda14cbcSMatt Macy 7024eda14cbcSMatt Macy /* 7025eda14cbcSMatt Macy * zfs mount -a [nfs] 7026eda14cbcSMatt Macy * zfs mount filesystem 7027eda14cbcSMatt Macy * 7028eda14cbcSMatt Macy * Mount all filesystems, or mount the given filesystem. 7029eda14cbcSMatt Macy */ 7030eda14cbcSMatt Macy static int 7031eda14cbcSMatt Macy zfs_do_mount(int argc, char **argv) 7032eda14cbcSMatt Macy { 7033eda14cbcSMatt Macy return (share_mount(OP_MOUNT, argc, argv)); 7034eda14cbcSMatt Macy } 7035eda14cbcSMatt Macy 7036eda14cbcSMatt Macy /* 7037eda14cbcSMatt Macy * zfs share -a [nfs | smb] 7038eda14cbcSMatt Macy * zfs share filesystem 7039eda14cbcSMatt Macy * 7040eda14cbcSMatt Macy * Share all filesystems, or share the given filesystem. 7041eda14cbcSMatt Macy */ 7042eda14cbcSMatt Macy static int 7043eda14cbcSMatt Macy zfs_do_share(int argc, char **argv) 7044eda14cbcSMatt Macy { 7045eda14cbcSMatt Macy return (share_mount(OP_SHARE, argc, argv)); 7046eda14cbcSMatt Macy } 7047eda14cbcSMatt Macy 7048eda14cbcSMatt Macy typedef struct unshare_unmount_node { 7049eda14cbcSMatt Macy zfs_handle_t *un_zhp; 7050eda14cbcSMatt Macy char *un_mountp; 7051eda14cbcSMatt Macy uu_avl_node_t un_avlnode; 7052eda14cbcSMatt Macy } unshare_unmount_node_t; 7053eda14cbcSMatt Macy 7054eda14cbcSMatt Macy /* ARGSUSED */ 7055eda14cbcSMatt Macy static int 7056eda14cbcSMatt Macy unshare_unmount_compare(const void *larg, const void *rarg, void *unused) 7057eda14cbcSMatt Macy { 7058eda14cbcSMatt Macy const unshare_unmount_node_t *l = larg; 7059eda14cbcSMatt Macy const unshare_unmount_node_t *r = rarg; 7060eda14cbcSMatt Macy 7061eda14cbcSMatt Macy return (strcmp(l->un_mountp, r->un_mountp)); 7062eda14cbcSMatt Macy } 7063eda14cbcSMatt Macy 7064eda14cbcSMatt Macy /* 7065eda14cbcSMatt Macy * Convenience routine used by zfs_do_umount() and manual_unmount(). Given an 7066eda14cbcSMatt Macy * absolute path, find the entry /proc/self/mounts, verify that it's a 7067eda14cbcSMatt Macy * ZFS filesystem, and unmount it appropriately. 7068eda14cbcSMatt Macy */ 7069eda14cbcSMatt Macy static int 7070eda14cbcSMatt Macy unshare_unmount_path(int op, char *path, int flags, boolean_t is_manual) 7071eda14cbcSMatt Macy { 7072eda14cbcSMatt Macy zfs_handle_t *zhp; 7073eda14cbcSMatt Macy int ret = 0; 7074eda14cbcSMatt Macy struct stat64 statbuf; 7075eda14cbcSMatt Macy struct extmnttab entry; 7076eda14cbcSMatt Macy const char *cmdname = (op == OP_SHARE) ? "unshare" : "unmount"; 7077eda14cbcSMatt Macy ino_t path_inode; 7078eda14cbcSMatt Macy 7079eda14cbcSMatt Macy /* 7080eda14cbcSMatt Macy * Search for the given (major,minor) pair in the mount table. 7081eda14cbcSMatt Macy */ 7082eda14cbcSMatt Macy 7083eda14cbcSMatt Macy /* Reopen MNTTAB to prevent reading stale data from open file */ 7084eda14cbcSMatt Macy if (freopen(MNTTAB, "r", mnttab_file) == NULL) 7085eda14cbcSMatt Macy return (ENOENT); 7086eda14cbcSMatt Macy 7087eda14cbcSMatt Macy if (getextmntent(path, &entry, &statbuf) != 0) { 7088eda14cbcSMatt Macy if (op == OP_SHARE) { 7089eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': not " 7090eda14cbcSMatt Macy "currently mounted\n"), cmdname, path); 7091eda14cbcSMatt Macy return (1); 7092eda14cbcSMatt Macy } 7093eda14cbcSMatt Macy (void) fprintf(stderr, gettext("warning: %s not in" 7094eda14cbcSMatt Macy "/proc/self/mounts\n"), path); 7095eda14cbcSMatt Macy if ((ret = umount2(path, flags)) != 0) 7096eda14cbcSMatt Macy (void) fprintf(stderr, gettext("%s: %s\n"), path, 7097eda14cbcSMatt Macy strerror(errno)); 7098eda14cbcSMatt Macy return (ret != 0); 7099eda14cbcSMatt Macy } 7100eda14cbcSMatt Macy path_inode = statbuf.st_ino; 7101eda14cbcSMatt Macy 7102eda14cbcSMatt Macy if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0) { 7103eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': not a ZFS " 7104eda14cbcSMatt Macy "filesystem\n"), cmdname, path); 7105eda14cbcSMatt Macy return (1); 7106eda14cbcSMatt Macy } 7107eda14cbcSMatt Macy 7108eda14cbcSMatt Macy if ((zhp = zfs_open(g_zfs, entry.mnt_special, 7109eda14cbcSMatt Macy ZFS_TYPE_FILESYSTEM)) == NULL) 7110eda14cbcSMatt Macy return (1); 7111eda14cbcSMatt Macy 7112eda14cbcSMatt Macy ret = 1; 7113eda14cbcSMatt Macy if (stat64(entry.mnt_mountp, &statbuf) != 0) { 7114eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot %s '%s': %s\n"), 7115eda14cbcSMatt Macy cmdname, path, strerror(errno)); 7116eda14cbcSMatt Macy goto out; 7117eda14cbcSMatt Macy } else if (statbuf.st_ino != path_inode) { 7118eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot " 7119eda14cbcSMatt Macy "%s '%s': not a mountpoint\n"), cmdname, path); 7120eda14cbcSMatt Macy goto out; 7121eda14cbcSMatt Macy } 7122eda14cbcSMatt Macy 7123eda14cbcSMatt Macy if (op == OP_SHARE) { 7124eda14cbcSMatt Macy char nfs_mnt_prop[ZFS_MAXPROPLEN]; 7125eda14cbcSMatt Macy char smbshare_prop[ZFS_MAXPROPLEN]; 7126eda14cbcSMatt Macy 7127eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS, nfs_mnt_prop, 7128eda14cbcSMatt Macy sizeof (nfs_mnt_prop), NULL, NULL, 0, B_FALSE) == 0); 7129eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB, smbshare_prop, 7130eda14cbcSMatt Macy sizeof (smbshare_prop), NULL, NULL, 0, B_FALSE) == 0); 7131eda14cbcSMatt Macy 7132eda14cbcSMatt Macy if (strcmp(nfs_mnt_prop, "off") == 0 && 7133eda14cbcSMatt Macy strcmp(smbshare_prop, "off") == 0) { 7134eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot unshare " 7135eda14cbcSMatt Macy "'%s': legacy share\n"), path); 7136eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use exportfs(8) " 7137eda14cbcSMatt Macy "or smbcontrol(1) to unshare this filesystem\n")); 7138eda14cbcSMatt Macy } else if (!zfs_is_shared(zhp)) { 7139eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot unshare '%s': " 7140eda14cbcSMatt Macy "not currently shared\n"), path); 7141eda14cbcSMatt Macy } else { 7142eda14cbcSMatt Macy ret = zfs_unshareall_bypath(zhp, path); 7143eda14cbcSMatt Macy zfs_commit_all_shares(); 7144eda14cbcSMatt Macy } 7145eda14cbcSMatt Macy } else { 7146eda14cbcSMatt Macy char mtpt_prop[ZFS_MAXPROPLEN]; 7147eda14cbcSMatt Macy 7148eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, mtpt_prop, 7149eda14cbcSMatt Macy sizeof (mtpt_prop), NULL, NULL, 0, B_FALSE) == 0); 7150eda14cbcSMatt Macy 7151eda14cbcSMatt Macy if (is_manual) { 7152eda14cbcSMatt Macy ret = zfs_unmount(zhp, NULL, flags); 7153eda14cbcSMatt Macy } else if (strcmp(mtpt_prop, "legacy") == 0) { 7154eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot unmount " 7155eda14cbcSMatt Macy "'%s': legacy mountpoint\n"), 7156eda14cbcSMatt Macy zfs_get_name(zhp)); 7157eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use umount(8) " 7158eda14cbcSMatt Macy "to unmount this filesystem\n")); 7159eda14cbcSMatt Macy } else { 7160eda14cbcSMatt Macy ret = zfs_unmountall(zhp, flags); 7161eda14cbcSMatt Macy } 7162eda14cbcSMatt Macy } 7163eda14cbcSMatt Macy 7164eda14cbcSMatt Macy out: 7165eda14cbcSMatt Macy zfs_close(zhp); 7166eda14cbcSMatt Macy 7167eda14cbcSMatt Macy return (ret != 0); 7168eda14cbcSMatt Macy } 7169eda14cbcSMatt Macy 7170eda14cbcSMatt Macy /* 7171eda14cbcSMatt Macy * Generic callback for unsharing or unmounting a filesystem. 7172eda14cbcSMatt Macy */ 7173eda14cbcSMatt Macy static int 7174eda14cbcSMatt Macy unshare_unmount(int op, int argc, char **argv) 7175eda14cbcSMatt Macy { 7176eda14cbcSMatt Macy int do_all = 0; 7177eda14cbcSMatt Macy int flags = 0; 7178eda14cbcSMatt Macy int ret = 0; 7179eda14cbcSMatt Macy int c; 7180eda14cbcSMatt Macy zfs_handle_t *zhp; 7181eda14cbcSMatt Macy char nfs_mnt_prop[ZFS_MAXPROPLEN]; 7182eda14cbcSMatt Macy char sharesmb[ZFS_MAXPROPLEN]; 7183eda14cbcSMatt Macy 7184eda14cbcSMatt Macy /* check options */ 7185eda14cbcSMatt Macy while ((c = getopt(argc, argv, op == OP_SHARE ? ":a" : "afu")) != -1) { 7186eda14cbcSMatt Macy switch (c) { 7187eda14cbcSMatt Macy case 'a': 7188eda14cbcSMatt Macy do_all = 1; 7189eda14cbcSMatt Macy break; 7190eda14cbcSMatt Macy case 'f': 7191eda14cbcSMatt Macy flags |= MS_FORCE; 7192eda14cbcSMatt Macy break; 7193eda14cbcSMatt Macy case 'u': 7194eda14cbcSMatt Macy flags |= MS_CRYPT; 7195eda14cbcSMatt Macy break; 7196eda14cbcSMatt Macy case ':': 7197eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing argument for " 7198eda14cbcSMatt Macy "'%c' option\n"), optopt); 7199eda14cbcSMatt Macy usage(B_FALSE); 7200eda14cbcSMatt Macy break; 7201eda14cbcSMatt Macy case '?': 7202eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 7203eda14cbcSMatt Macy optopt); 7204eda14cbcSMatt Macy usage(B_FALSE); 7205eda14cbcSMatt Macy } 7206eda14cbcSMatt Macy } 7207eda14cbcSMatt Macy 7208eda14cbcSMatt Macy argc -= optind; 7209eda14cbcSMatt Macy argv += optind; 7210eda14cbcSMatt Macy 7211eda14cbcSMatt Macy if (do_all) { 7212eda14cbcSMatt Macy /* 7213eda14cbcSMatt Macy * We could make use of zfs_for_each() to walk all datasets in 7214eda14cbcSMatt Macy * the system, but this would be very inefficient, especially 7215eda14cbcSMatt Macy * since we would have to linearly search /proc/self/mounts for 7216eda14cbcSMatt Macy * each one. Instead, do one pass through /proc/self/mounts 7217eda14cbcSMatt Macy * looking for zfs entries and call zfs_unmount() for each one. 7218eda14cbcSMatt Macy * 7219eda14cbcSMatt Macy * Things get a little tricky if the administrator has created 7220eda14cbcSMatt Macy * mountpoints beneath other ZFS filesystems. In this case, we 7221eda14cbcSMatt Macy * have to unmount the deepest filesystems first. To accomplish 7222eda14cbcSMatt Macy * this, we place all the mountpoints in an AVL tree sorted by 7223eda14cbcSMatt Macy * the special type (dataset name), and walk the result in 7224eda14cbcSMatt Macy * reverse to make sure to get any snapshots first. 7225eda14cbcSMatt Macy */ 7226eda14cbcSMatt Macy struct mnttab entry; 7227eda14cbcSMatt Macy uu_avl_pool_t *pool; 7228eda14cbcSMatt Macy uu_avl_t *tree = NULL; 7229eda14cbcSMatt Macy unshare_unmount_node_t *node; 7230eda14cbcSMatt Macy uu_avl_index_t idx; 7231eda14cbcSMatt Macy uu_avl_walk_t *walk; 7232eda14cbcSMatt Macy char *protocol = NULL; 7233eda14cbcSMatt Macy 7234eda14cbcSMatt Macy if (op == OP_SHARE && argc > 0) { 7235eda14cbcSMatt Macy if (strcmp(argv[0], "nfs") != 0 && 7236eda14cbcSMatt Macy strcmp(argv[0], "smb") != 0) { 7237eda14cbcSMatt Macy (void) fprintf(stderr, gettext("share type " 7238eda14cbcSMatt Macy "must be 'nfs' or 'smb'\n")); 7239eda14cbcSMatt Macy usage(B_FALSE); 7240eda14cbcSMatt Macy } 7241eda14cbcSMatt Macy protocol = argv[0]; 7242eda14cbcSMatt Macy argc--; 7243eda14cbcSMatt Macy argv++; 7244eda14cbcSMatt Macy } 7245eda14cbcSMatt Macy 7246eda14cbcSMatt Macy if (argc != 0) { 7247eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 7248eda14cbcSMatt Macy usage(B_FALSE); 7249eda14cbcSMatt Macy } 7250eda14cbcSMatt Macy 7251eda14cbcSMatt Macy if (((pool = uu_avl_pool_create("unmount_pool", 7252eda14cbcSMatt Macy sizeof (unshare_unmount_node_t), 7253eda14cbcSMatt Macy offsetof(unshare_unmount_node_t, un_avlnode), 7254eda14cbcSMatt Macy unshare_unmount_compare, UU_DEFAULT)) == NULL) || 7255eda14cbcSMatt Macy ((tree = uu_avl_create(pool, NULL, UU_DEFAULT)) == NULL)) 7256eda14cbcSMatt Macy nomem(); 7257eda14cbcSMatt Macy 7258eda14cbcSMatt Macy /* Reopen MNTTAB to prevent reading stale data from open file */ 7259eda14cbcSMatt Macy if (freopen(MNTTAB, "r", mnttab_file) == NULL) 7260eda14cbcSMatt Macy return (ENOENT); 7261eda14cbcSMatt Macy 7262eda14cbcSMatt Macy while (getmntent(mnttab_file, &entry) == 0) { 7263eda14cbcSMatt Macy 7264eda14cbcSMatt Macy /* ignore non-ZFS entries */ 7265eda14cbcSMatt Macy if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0) 7266eda14cbcSMatt Macy continue; 7267eda14cbcSMatt Macy 7268eda14cbcSMatt Macy /* ignore snapshots */ 7269eda14cbcSMatt Macy if (strchr(entry.mnt_special, '@') != NULL) 7270eda14cbcSMatt Macy continue; 7271eda14cbcSMatt Macy 7272eda14cbcSMatt Macy if ((zhp = zfs_open(g_zfs, entry.mnt_special, 7273eda14cbcSMatt Macy ZFS_TYPE_FILESYSTEM)) == NULL) { 7274eda14cbcSMatt Macy ret = 1; 7275eda14cbcSMatt Macy continue; 7276eda14cbcSMatt Macy } 7277eda14cbcSMatt Macy 7278eda14cbcSMatt Macy /* 7279eda14cbcSMatt Macy * Ignore datasets that are excluded/restricted by 7280eda14cbcSMatt Macy * parent pool name. 7281eda14cbcSMatt Macy */ 7282eda14cbcSMatt Macy if (zpool_skip_pool(zfs_get_pool_name(zhp))) { 7283eda14cbcSMatt Macy zfs_close(zhp); 7284eda14cbcSMatt Macy continue; 7285eda14cbcSMatt Macy } 7286eda14cbcSMatt Macy 7287eda14cbcSMatt Macy switch (op) { 7288eda14cbcSMatt Macy case OP_SHARE: 7289eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS, 7290eda14cbcSMatt Macy nfs_mnt_prop, 7291eda14cbcSMatt Macy sizeof (nfs_mnt_prop), 7292eda14cbcSMatt Macy NULL, NULL, 0, B_FALSE) == 0); 7293eda14cbcSMatt Macy if (strcmp(nfs_mnt_prop, "off") != 0) 7294eda14cbcSMatt Macy break; 7295eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB, 7296eda14cbcSMatt Macy nfs_mnt_prop, 7297eda14cbcSMatt Macy sizeof (nfs_mnt_prop), 7298eda14cbcSMatt Macy NULL, NULL, 0, B_FALSE) == 0); 7299eda14cbcSMatt Macy if (strcmp(nfs_mnt_prop, "off") == 0) 7300eda14cbcSMatt Macy continue; 7301eda14cbcSMatt Macy break; 7302eda14cbcSMatt Macy case OP_MOUNT: 7303eda14cbcSMatt Macy /* Ignore legacy mounts */ 7304eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, 7305eda14cbcSMatt Macy nfs_mnt_prop, 7306eda14cbcSMatt Macy sizeof (nfs_mnt_prop), 7307eda14cbcSMatt Macy NULL, NULL, 0, B_FALSE) == 0); 7308eda14cbcSMatt Macy if (strcmp(nfs_mnt_prop, "legacy") == 0) 7309eda14cbcSMatt Macy continue; 7310eda14cbcSMatt Macy /* Ignore canmount=noauto mounts */ 7311eda14cbcSMatt Macy if (zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT) == 7312eda14cbcSMatt Macy ZFS_CANMOUNT_NOAUTO) 7313eda14cbcSMatt Macy continue; 7314eda14cbcSMatt Macy default: 7315eda14cbcSMatt Macy break; 7316eda14cbcSMatt Macy } 7317eda14cbcSMatt Macy 7318eda14cbcSMatt Macy node = safe_malloc(sizeof (unshare_unmount_node_t)); 7319eda14cbcSMatt Macy node->un_zhp = zhp; 7320eda14cbcSMatt Macy node->un_mountp = safe_strdup(entry.mnt_mountp); 7321eda14cbcSMatt Macy 7322eda14cbcSMatt Macy uu_avl_node_init(node, &node->un_avlnode, pool); 7323eda14cbcSMatt Macy 7324eda14cbcSMatt Macy if (uu_avl_find(tree, node, NULL, &idx) == NULL) { 7325eda14cbcSMatt Macy uu_avl_insert(tree, node, idx); 7326eda14cbcSMatt Macy } else { 7327eda14cbcSMatt Macy zfs_close(node->un_zhp); 7328eda14cbcSMatt Macy free(node->un_mountp); 7329eda14cbcSMatt Macy free(node); 7330eda14cbcSMatt Macy } 7331eda14cbcSMatt Macy } 7332eda14cbcSMatt Macy 7333eda14cbcSMatt Macy /* 7334eda14cbcSMatt Macy * Walk the AVL tree in reverse, unmounting each filesystem and 7335eda14cbcSMatt Macy * removing it from the AVL tree in the process. 7336eda14cbcSMatt Macy */ 7337eda14cbcSMatt Macy if ((walk = uu_avl_walk_start(tree, 7338eda14cbcSMatt Macy UU_WALK_REVERSE | UU_WALK_ROBUST)) == NULL) 7339eda14cbcSMatt Macy nomem(); 7340eda14cbcSMatt Macy 7341eda14cbcSMatt Macy while ((node = uu_avl_walk_next(walk)) != NULL) { 7342eda14cbcSMatt Macy const char *mntarg = NULL; 7343eda14cbcSMatt Macy 7344eda14cbcSMatt Macy uu_avl_remove(tree, node); 7345eda14cbcSMatt Macy switch (op) { 7346eda14cbcSMatt Macy case OP_SHARE: 7347eda14cbcSMatt Macy if (zfs_unshareall_bytype(node->un_zhp, 7348eda14cbcSMatt Macy node->un_mountp, protocol) != 0) 7349eda14cbcSMatt Macy ret = 1; 7350eda14cbcSMatt Macy break; 7351eda14cbcSMatt Macy 7352eda14cbcSMatt Macy case OP_MOUNT: 7353eda14cbcSMatt Macy if (zfs_unmount(node->un_zhp, 7354eda14cbcSMatt Macy mntarg, flags) != 0) 7355eda14cbcSMatt Macy ret = 1; 7356eda14cbcSMatt Macy break; 7357eda14cbcSMatt Macy } 7358eda14cbcSMatt Macy 7359eda14cbcSMatt Macy zfs_close(node->un_zhp); 7360eda14cbcSMatt Macy free(node->un_mountp); 7361eda14cbcSMatt Macy free(node); 7362eda14cbcSMatt Macy } 7363eda14cbcSMatt Macy 7364eda14cbcSMatt Macy if (op == OP_SHARE) 7365eda14cbcSMatt Macy zfs_commit_shares(protocol); 7366eda14cbcSMatt Macy 7367eda14cbcSMatt Macy uu_avl_walk_end(walk); 7368eda14cbcSMatt Macy uu_avl_destroy(tree); 7369eda14cbcSMatt Macy uu_avl_pool_destroy(pool); 7370eda14cbcSMatt Macy 7371eda14cbcSMatt Macy } else { 7372eda14cbcSMatt Macy if (argc != 1) { 7373eda14cbcSMatt Macy if (argc == 0) 7374eda14cbcSMatt Macy (void) fprintf(stderr, 7375eda14cbcSMatt Macy gettext("missing filesystem argument\n")); 7376eda14cbcSMatt Macy else 7377eda14cbcSMatt Macy (void) fprintf(stderr, 7378eda14cbcSMatt Macy gettext("too many arguments\n")); 7379eda14cbcSMatt Macy usage(B_FALSE); 7380eda14cbcSMatt Macy } 7381eda14cbcSMatt Macy 7382eda14cbcSMatt Macy /* 7383eda14cbcSMatt Macy * We have an argument, but it may be a full path or a ZFS 7384eda14cbcSMatt Macy * filesystem. Pass full paths off to unmount_path() (shared by 7385eda14cbcSMatt Macy * manual_unmount), otherwise open the filesystem and pass to 7386eda14cbcSMatt Macy * zfs_unmount(). 7387eda14cbcSMatt Macy */ 7388eda14cbcSMatt Macy if (argv[0][0] == '/') 7389eda14cbcSMatt Macy return (unshare_unmount_path(op, argv[0], 7390eda14cbcSMatt Macy flags, B_FALSE)); 7391eda14cbcSMatt Macy 7392eda14cbcSMatt Macy if ((zhp = zfs_open(g_zfs, argv[0], 7393eda14cbcSMatt Macy ZFS_TYPE_FILESYSTEM)) == NULL) 7394eda14cbcSMatt Macy return (1); 7395eda14cbcSMatt Macy 7396eda14cbcSMatt Macy verify(zfs_prop_get(zhp, op == OP_SHARE ? 7397eda14cbcSMatt Macy ZFS_PROP_SHARENFS : ZFS_PROP_MOUNTPOINT, 7398eda14cbcSMatt Macy nfs_mnt_prop, sizeof (nfs_mnt_prop), NULL, 7399eda14cbcSMatt Macy NULL, 0, B_FALSE) == 0); 7400eda14cbcSMatt Macy 7401eda14cbcSMatt Macy switch (op) { 7402eda14cbcSMatt Macy case OP_SHARE: 7403eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS, 7404eda14cbcSMatt Macy nfs_mnt_prop, 7405eda14cbcSMatt Macy sizeof (nfs_mnt_prop), 7406eda14cbcSMatt Macy NULL, NULL, 0, B_FALSE) == 0); 7407eda14cbcSMatt Macy verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB, 7408eda14cbcSMatt Macy sharesmb, sizeof (sharesmb), NULL, NULL, 7409eda14cbcSMatt Macy 0, B_FALSE) == 0); 7410eda14cbcSMatt Macy 7411eda14cbcSMatt Macy if (strcmp(nfs_mnt_prop, "off") == 0 && 7412eda14cbcSMatt Macy strcmp(sharesmb, "off") == 0) { 7413eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot " 7414eda14cbcSMatt Macy "unshare '%s': legacy share\n"), 7415eda14cbcSMatt Macy zfs_get_name(zhp)); 7416eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use " 7417eda14cbcSMatt Macy "unshare(1M) to unshare this " 7418eda14cbcSMatt Macy "filesystem\n")); 7419eda14cbcSMatt Macy ret = 1; 7420eda14cbcSMatt Macy } else if (!zfs_is_shared(zhp)) { 7421eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot " 7422eda14cbcSMatt Macy "unshare '%s': not currently " 7423eda14cbcSMatt Macy "shared\n"), zfs_get_name(zhp)); 7424eda14cbcSMatt Macy ret = 1; 7425eda14cbcSMatt Macy } else if (zfs_unshareall(zhp) != 0) { 7426eda14cbcSMatt Macy ret = 1; 7427eda14cbcSMatt Macy } 7428eda14cbcSMatt Macy break; 7429eda14cbcSMatt Macy 7430eda14cbcSMatt Macy case OP_MOUNT: 7431eda14cbcSMatt Macy if (strcmp(nfs_mnt_prop, "legacy") == 0) { 7432eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot " 7433eda14cbcSMatt Macy "unmount '%s': legacy " 7434eda14cbcSMatt Macy "mountpoint\n"), zfs_get_name(zhp)); 7435eda14cbcSMatt Macy (void) fprintf(stderr, gettext("use " 7436eda14cbcSMatt Macy "umount(1M) to unmount this " 7437eda14cbcSMatt Macy "filesystem\n")); 7438eda14cbcSMatt Macy ret = 1; 7439eda14cbcSMatt Macy } else if (!zfs_is_mounted(zhp, NULL)) { 7440eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot " 7441eda14cbcSMatt Macy "unmount '%s': not currently " 7442eda14cbcSMatt Macy "mounted\n"), 7443eda14cbcSMatt Macy zfs_get_name(zhp)); 7444eda14cbcSMatt Macy ret = 1; 7445eda14cbcSMatt Macy } else if (zfs_unmountall(zhp, flags) != 0) { 7446eda14cbcSMatt Macy ret = 1; 7447eda14cbcSMatt Macy } 7448eda14cbcSMatt Macy break; 7449eda14cbcSMatt Macy } 7450eda14cbcSMatt Macy 7451eda14cbcSMatt Macy zfs_close(zhp); 7452eda14cbcSMatt Macy } 7453eda14cbcSMatt Macy 7454eda14cbcSMatt Macy return (ret); 7455eda14cbcSMatt Macy } 7456eda14cbcSMatt Macy 7457eda14cbcSMatt Macy /* 7458eda14cbcSMatt Macy * zfs unmount [-fu] -a 7459eda14cbcSMatt Macy * zfs unmount [-fu] filesystem 7460eda14cbcSMatt Macy * 7461eda14cbcSMatt Macy * Unmount all filesystems, or a specific ZFS filesystem. 7462eda14cbcSMatt Macy */ 7463eda14cbcSMatt Macy static int 7464eda14cbcSMatt Macy zfs_do_unmount(int argc, char **argv) 7465eda14cbcSMatt Macy { 7466eda14cbcSMatt Macy return (unshare_unmount(OP_MOUNT, argc, argv)); 7467eda14cbcSMatt Macy } 7468eda14cbcSMatt Macy 7469eda14cbcSMatt Macy /* 7470eda14cbcSMatt Macy * zfs unshare -a 7471eda14cbcSMatt Macy * zfs unshare filesystem 7472eda14cbcSMatt Macy * 7473eda14cbcSMatt Macy * Unshare all filesystems, or a specific ZFS filesystem. 7474eda14cbcSMatt Macy */ 7475eda14cbcSMatt Macy static int 7476eda14cbcSMatt Macy zfs_do_unshare(int argc, char **argv) 7477eda14cbcSMatt Macy { 7478eda14cbcSMatt Macy return (unshare_unmount(OP_SHARE, argc, argv)); 7479eda14cbcSMatt Macy } 7480eda14cbcSMatt Macy 7481eda14cbcSMatt Macy static int 7482eda14cbcSMatt Macy find_command_idx(char *command, int *idx) 7483eda14cbcSMatt Macy { 7484eda14cbcSMatt Macy int i; 7485eda14cbcSMatt Macy 7486eda14cbcSMatt Macy for (i = 0; i < NCOMMAND; i++) { 7487eda14cbcSMatt Macy if (command_table[i].name == NULL) 7488eda14cbcSMatt Macy continue; 7489eda14cbcSMatt Macy 7490eda14cbcSMatt Macy if (strcmp(command, command_table[i].name) == 0) { 7491eda14cbcSMatt Macy *idx = i; 7492eda14cbcSMatt Macy return (0); 7493eda14cbcSMatt Macy } 7494eda14cbcSMatt Macy } 7495eda14cbcSMatt Macy return (1); 7496eda14cbcSMatt Macy } 7497eda14cbcSMatt Macy 7498eda14cbcSMatt Macy static int 7499eda14cbcSMatt Macy zfs_do_diff(int argc, char **argv) 7500eda14cbcSMatt Macy { 7501eda14cbcSMatt Macy zfs_handle_t *zhp; 7502eda14cbcSMatt Macy int flags = 0; 7503eda14cbcSMatt Macy char *tosnap = NULL; 7504eda14cbcSMatt Macy char *fromsnap = NULL; 7505eda14cbcSMatt Macy char *atp, *copy; 7506eda14cbcSMatt Macy int err = 0; 7507eda14cbcSMatt Macy int c; 7508eda14cbcSMatt Macy struct sigaction sa; 7509eda14cbcSMatt Macy 7510eda14cbcSMatt Macy while ((c = getopt(argc, argv, "FHt")) != -1) { 7511eda14cbcSMatt Macy switch (c) { 7512eda14cbcSMatt Macy case 'F': 7513eda14cbcSMatt Macy flags |= ZFS_DIFF_CLASSIFY; 7514eda14cbcSMatt Macy break; 7515eda14cbcSMatt Macy case 'H': 7516eda14cbcSMatt Macy flags |= ZFS_DIFF_PARSEABLE; 7517eda14cbcSMatt Macy break; 7518eda14cbcSMatt Macy case 't': 7519eda14cbcSMatt Macy flags |= ZFS_DIFF_TIMESTAMP; 7520eda14cbcSMatt Macy break; 7521eda14cbcSMatt Macy default: 7522eda14cbcSMatt Macy (void) fprintf(stderr, 7523eda14cbcSMatt Macy gettext("invalid option '%c'\n"), optopt); 7524eda14cbcSMatt Macy usage(B_FALSE); 7525eda14cbcSMatt Macy } 7526eda14cbcSMatt Macy } 7527eda14cbcSMatt Macy 7528eda14cbcSMatt Macy argc -= optind; 7529eda14cbcSMatt Macy argv += optind; 7530eda14cbcSMatt Macy 7531eda14cbcSMatt Macy if (argc < 1) { 7532eda14cbcSMatt Macy (void) fprintf(stderr, 7533eda14cbcSMatt Macy gettext("must provide at least one snapshot name\n")); 7534eda14cbcSMatt Macy usage(B_FALSE); 7535eda14cbcSMatt Macy } 7536eda14cbcSMatt Macy 7537eda14cbcSMatt Macy if (argc > 2) { 7538eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 7539eda14cbcSMatt Macy usage(B_FALSE); 7540eda14cbcSMatt Macy } 7541eda14cbcSMatt Macy 7542eda14cbcSMatt Macy fromsnap = argv[0]; 7543eda14cbcSMatt Macy tosnap = (argc == 2) ? argv[1] : NULL; 7544eda14cbcSMatt Macy 7545eda14cbcSMatt Macy copy = NULL; 7546eda14cbcSMatt Macy if (*fromsnap != '@') 7547eda14cbcSMatt Macy copy = strdup(fromsnap); 7548eda14cbcSMatt Macy else if (tosnap) 7549eda14cbcSMatt Macy copy = strdup(tosnap); 7550eda14cbcSMatt Macy if (copy == NULL) 7551eda14cbcSMatt Macy usage(B_FALSE); 7552eda14cbcSMatt Macy 7553eda14cbcSMatt Macy if ((atp = strchr(copy, '@')) != NULL) 7554eda14cbcSMatt Macy *atp = '\0'; 7555eda14cbcSMatt Macy 7556eda14cbcSMatt Macy if ((zhp = zfs_open(g_zfs, copy, ZFS_TYPE_FILESYSTEM)) == NULL) { 7557eda14cbcSMatt Macy free(copy); 7558eda14cbcSMatt Macy return (1); 7559eda14cbcSMatt Macy } 7560eda14cbcSMatt Macy free(copy); 7561eda14cbcSMatt Macy 7562eda14cbcSMatt Macy /* 7563eda14cbcSMatt Macy * Ignore SIGPIPE so that the library can give us 7564eda14cbcSMatt Macy * information on any failure 7565eda14cbcSMatt Macy */ 7566eda14cbcSMatt Macy if (sigemptyset(&sa.sa_mask) == -1) { 7567eda14cbcSMatt Macy err = errno; 7568eda14cbcSMatt Macy goto out; 7569eda14cbcSMatt Macy } 7570eda14cbcSMatt Macy sa.sa_flags = 0; 7571eda14cbcSMatt Macy sa.sa_handler = SIG_IGN; 7572eda14cbcSMatt Macy if (sigaction(SIGPIPE, &sa, NULL) == -1) { 7573eda14cbcSMatt Macy err = errno; 7574eda14cbcSMatt Macy goto out; 7575eda14cbcSMatt Macy } 7576eda14cbcSMatt Macy 7577eda14cbcSMatt Macy err = zfs_show_diffs(zhp, STDOUT_FILENO, fromsnap, tosnap, flags); 7578eda14cbcSMatt Macy out: 7579eda14cbcSMatt Macy zfs_close(zhp); 7580eda14cbcSMatt Macy 7581eda14cbcSMatt Macy return (err != 0); 7582eda14cbcSMatt Macy } 7583eda14cbcSMatt Macy 7584eda14cbcSMatt Macy /* 7585eda14cbcSMatt Macy * zfs bookmark <fs@source>|<fs#source> <fs#bookmark> 7586eda14cbcSMatt Macy * 7587eda14cbcSMatt Macy * Creates a bookmark with the given name from the source snapshot 7588eda14cbcSMatt Macy * or creates a copy of an existing source bookmark. 7589eda14cbcSMatt Macy */ 7590eda14cbcSMatt Macy static int 7591eda14cbcSMatt Macy zfs_do_bookmark(int argc, char **argv) 7592eda14cbcSMatt Macy { 7593eda14cbcSMatt Macy char *source, *bookname; 7594eda14cbcSMatt Macy char expbuf[ZFS_MAX_DATASET_NAME_LEN]; 7595eda14cbcSMatt Macy int source_type; 7596eda14cbcSMatt Macy nvlist_t *nvl; 7597eda14cbcSMatt Macy int ret = 0; 7598eda14cbcSMatt Macy int c; 7599eda14cbcSMatt Macy 7600eda14cbcSMatt Macy /* check options */ 7601eda14cbcSMatt Macy while ((c = getopt(argc, argv, "")) != -1) { 7602eda14cbcSMatt Macy switch (c) { 7603eda14cbcSMatt Macy case '?': 7604eda14cbcSMatt Macy (void) fprintf(stderr, 7605eda14cbcSMatt Macy gettext("invalid option '%c'\n"), optopt); 7606eda14cbcSMatt Macy goto usage; 7607eda14cbcSMatt Macy } 7608eda14cbcSMatt Macy } 7609eda14cbcSMatt Macy 7610eda14cbcSMatt Macy argc -= optind; 7611eda14cbcSMatt Macy argv += optind; 7612eda14cbcSMatt Macy 7613eda14cbcSMatt Macy /* check number of arguments */ 7614eda14cbcSMatt Macy if (argc < 1) { 7615eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing source argument\n")); 7616eda14cbcSMatt Macy goto usage; 7617eda14cbcSMatt Macy } 7618eda14cbcSMatt Macy if (argc < 2) { 7619eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing bookmark argument\n")); 7620eda14cbcSMatt Macy goto usage; 7621eda14cbcSMatt Macy } 7622eda14cbcSMatt Macy 7623eda14cbcSMatt Macy source = argv[0]; 7624eda14cbcSMatt Macy bookname = argv[1]; 7625eda14cbcSMatt Macy 7626eda14cbcSMatt Macy if (strchr(source, '@') == NULL && strchr(source, '#') == NULL) { 7627eda14cbcSMatt Macy (void) fprintf(stderr, 7628eda14cbcSMatt Macy gettext("invalid source name '%s': " 7629eda14cbcSMatt Macy "must contain a '@' or '#'\n"), source); 7630eda14cbcSMatt Macy goto usage; 7631eda14cbcSMatt Macy } 7632eda14cbcSMatt Macy if (strchr(bookname, '#') == NULL) { 7633eda14cbcSMatt Macy (void) fprintf(stderr, 7634eda14cbcSMatt Macy gettext("invalid bookmark name '%s': " 7635eda14cbcSMatt Macy "must contain a '#'\n"), bookname); 7636eda14cbcSMatt Macy goto usage; 7637eda14cbcSMatt Macy } 7638eda14cbcSMatt Macy 7639eda14cbcSMatt Macy /* 7640eda14cbcSMatt Macy * expand source or bookname to full path: 7641eda14cbcSMatt Macy * one of them may be specified as short name 7642eda14cbcSMatt Macy */ 7643eda14cbcSMatt Macy { 7644eda14cbcSMatt Macy char **expand; 7645eda14cbcSMatt Macy char *source_short, *bookname_short; 7646eda14cbcSMatt Macy source_short = strpbrk(source, "@#"); 7647eda14cbcSMatt Macy bookname_short = strpbrk(bookname, "#"); 7648eda14cbcSMatt Macy if (source_short == source && 7649eda14cbcSMatt Macy bookname_short == bookname) { 7650eda14cbcSMatt Macy (void) fprintf(stderr, gettext( 7651eda14cbcSMatt Macy "either source or bookmark must be specified as " 7652eda14cbcSMatt Macy "full dataset paths")); 7653eda14cbcSMatt Macy goto usage; 7654eda14cbcSMatt Macy } else if (source_short != source && 7655eda14cbcSMatt Macy bookname_short != bookname) { 7656eda14cbcSMatt Macy expand = NULL; 7657eda14cbcSMatt Macy } else if (source_short != source) { 7658eda14cbcSMatt Macy strlcpy(expbuf, source, sizeof (expbuf)); 7659eda14cbcSMatt Macy expand = &bookname; 7660eda14cbcSMatt Macy } else if (bookname_short != bookname) { 7661eda14cbcSMatt Macy strlcpy(expbuf, bookname, sizeof (expbuf)); 7662eda14cbcSMatt Macy expand = &source; 7663eda14cbcSMatt Macy } else { 7664eda14cbcSMatt Macy abort(); 7665eda14cbcSMatt Macy } 7666eda14cbcSMatt Macy if (expand != NULL) { 7667eda14cbcSMatt Macy *strpbrk(expbuf, "@#") = '\0'; /* dataset name in buf */ 7668eda14cbcSMatt Macy (void) strlcat(expbuf, *expand, sizeof (expbuf)); 7669eda14cbcSMatt Macy *expand = expbuf; 7670eda14cbcSMatt Macy } 7671eda14cbcSMatt Macy } 7672eda14cbcSMatt Macy 7673eda14cbcSMatt Macy /* determine source type */ 7674eda14cbcSMatt Macy switch (*strpbrk(source, "@#")) { 7675eda14cbcSMatt Macy case '@': source_type = ZFS_TYPE_SNAPSHOT; break; 7676eda14cbcSMatt Macy case '#': source_type = ZFS_TYPE_BOOKMARK; break; 7677eda14cbcSMatt Macy default: abort(); 7678eda14cbcSMatt Macy } 7679eda14cbcSMatt Macy 7680eda14cbcSMatt Macy /* test the source exists */ 7681eda14cbcSMatt Macy zfs_handle_t *zhp; 7682eda14cbcSMatt Macy zhp = zfs_open(g_zfs, source, source_type); 7683eda14cbcSMatt Macy if (zhp == NULL) 7684eda14cbcSMatt Macy goto usage; 7685eda14cbcSMatt Macy zfs_close(zhp); 7686eda14cbcSMatt Macy 7687eda14cbcSMatt Macy nvl = fnvlist_alloc(); 7688eda14cbcSMatt Macy fnvlist_add_string(nvl, bookname, source); 7689eda14cbcSMatt Macy ret = lzc_bookmark(nvl, NULL); 7690eda14cbcSMatt Macy fnvlist_free(nvl); 7691eda14cbcSMatt Macy 7692eda14cbcSMatt Macy if (ret != 0) { 7693eda14cbcSMatt Macy const char *err_msg = NULL; 7694eda14cbcSMatt Macy char errbuf[1024]; 7695eda14cbcSMatt Macy 7696eda14cbcSMatt Macy (void) snprintf(errbuf, sizeof (errbuf), 7697eda14cbcSMatt Macy dgettext(TEXT_DOMAIN, 7698eda14cbcSMatt Macy "cannot create bookmark '%s'"), bookname); 7699eda14cbcSMatt Macy 7700eda14cbcSMatt Macy switch (ret) { 7701eda14cbcSMatt Macy case EXDEV: 7702eda14cbcSMatt Macy err_msg = "bookmark is in a different pool"; 7703eda14cbcSMatt Macy break; 7704eda14cbcSMatt Macy case ZFS_ERR_BOOKMARK_SOURCE_NOT_ANCESTOR: 7705eda14cbcSMatt Macy err_msg = "source is not an ancestor of the " 7706eda14cbcSMatt Macy "new bookmark's dataset"; 7707eda14cbcSMatt Macy break; 7708eda14cbcSMatt Macy case EEXIST: 7709eda14cbcSMatt Macy err_msg = "bookmark exists"; 7710eda14cbcSMatt Macy break; 7711eda14cbcSMatt Macy case EINVAL: 7712eda14cbcSMatt Macy err_msg = "invalid argument"; 7713eda14cbcSMatt Macy break; 7714eda14cbcSMatt Macy case ENOTSUP: 7715eda14cbcSMatt Macy err_msg = "bookmark feature not enabled"; 7716eda14cbcSMatt Macy break; 7717eda14cbcSMatt Macy case ENOSPC: 7718eda14cbcSMatt Macy err_msg = "out of space"; 7719eda14cbcSMatt Macy break; 7720eda14cbcSMatt Macy case ENOENT: 7721eda14cbcSMatt Macy err_msg = "dataset does not exist"; 7722eda14cbcSMatt Macy break; 7723eda14cbcSMatt Macy default: 7724eda14cbcSMatt Macy (void) zfs_standard_error(g_zfs, ret, errbuf); 7725eda14cbcSMatt Macy break; 7726eda14cbcSMatt Macy } 7727eda14cbcSMatt Macy if (err_msg != NULL) { 7728eda14cbcSMatt Macy (void) fprintf(stderr, "%s: %s\n", errbuf, 7729eda14cbcSMatt Macy dgettext(TEXT_DOMAIN, err_msg)); 7730eda14cbcSMatt Macy } 7731eda14cbcSMatt Macy } 7732eda14cbcSMatt Macy 7733eda14cbcSMatt Macy return (ret != 0); 7734eda14cbcSMatt Macy 7735eda14cbcSMatt Macy usage: 7736eda14cbcSMatt Macy usage(B_FALSE); 7737eda14cbcSMatt Macy return (-1); 7738eda14cbcSMatt Macy } 7739eda14cbcSMatt Macy 7740eda14cbcSMatt Macy static int 7741eda14cbcSMatt Macy zfs_do_channel_program(int argc, char **argv) 7742eda14cbcSMatt Macy { 7743eda14cbcSMatt Macy int ret, fd, c; 7744eda14cbcSMatt Macy char *progbuf, *filename, *poolname; 7745eda14cbcSMatt Macy size_t progsize, progread; 7746eda14cbcSMatt Macy nvlist_t *outnvl = NULL; 7747eda14cbcSMatt Macy uint64_t instrlimit = ZCP_DEFAULT_INSTRLIMIT; 7748eda14cbcSMatt Macy uint64_t memlimit = ZCP_DEFAULT_MEMLIMIT; 7749eda14cbcSMatt Macy boolean_t sync_flag = B_TRUE, json_output = B_FALSE; 7750eda14cbcSMatt Macy zpool_handle_t *zhp; 7751eda14cbcSMatt Macy 7752eda14cbcSMatt Macy /* check options */ 7753eda14cbcSMatt Macy while ((c = getopt(argc, argv, "nt:m:j")) != -1) { 7754eda14cbcSMatt Macy switch (c) { 7755eda14cbcSMatt Macy case 't': 7756eda14cbcSMatt Macy case 'm': { 7757eda14cbcSMatt Macy uint64_t arg; 7758eda14cbcSMatt Macy char *endp; 7759eda14cbcSMatt Macy 7760eda14cbcSMatt Macy errno = 0; 7761eda14cbcSMatt Macy arg = strtoull(optarg, &endp, 0); 7762eda14cbcSMatt Macy if (errno != 0 || *endp != '\0') { 7763eda14cbcSMatt Macy (void) fprintf(stderr, gettext( 7764eda14cbcSMatt Macy "invalid argument " 7765eda14cbcSMatt Macy "'%s': expected integer\n"), optarg); 7766eda14cbcSMatt Macy goto usage; 7767eda14cbcSMatt Macy } 7768eda14cbcSMatt Macy 7769eda14cbcSMatt Macy if (c == 't') { 7770eda14cbcSMatt Macy instrlimit = arg; 7771eda14cbcSMatt Macy } else { 7772eda14cbcSMatt Macy ASSERT3U(c, ==, 'm'); 7773eda14cbcSMatt Macy memlimit = arg; 7774eda14cbcSMatt Macy } 7775eda14cbcSMatt Macy break; 7776eda14cbcSMatt Macy } 7777eda14cbcSMatt Macy case 'n': { 7778eda14cbcSMatt Macy sync_flag = B_FALSE; 7779eda14cbcSMatt Macy break; 7780eda14cbcSMatt Macy } 7781eda14cbcSMatt Macy case 'j': { 7782eda14cbcSMatt Macy json_output = B_TRUE; 7783eda14cbcSMatt Macy break; 7784eda14cbcSMatt Macy } 7785eda14cbcSMatt Macy case '?': 7786eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 7787eda14cbcSMatt Macy optopt); 7788eda14cbcSMatt Macy goto usage; 7789eda14cbcSMatt Macy } 7790eda14cbcSMatt Macy } 7791eda14cbcSMatt Macy 7792eda14cbcSMatt Macy argc -= optind; 7793eda14cbcSMatt Macy argv += optind; 7794eda14cbcSMatt Macy 7795eda14cbcSMatt Macy if (argc < 2) { 7796eda14cbcSMatt Macy (void) fprintf(stderr, 7797eda14cbcSMatt Macy gettext("invalid number of arguments\n")); 7798eda14cbcSMatt Macy goto usage; 7799eda14cbcSMatt Macy } 7800eda14cbcSMatt Macy 7801eda14cbcSMatt Macy poolname = argv[0]; 7802eda14cbcSMatt Macy filename = argv[1]; 7803eda14cbcSMatt Macy if (strcmp(filename, "-") == 0) { 7804eda14cbcSMatt Macy fd = 0; 7805eda14cbcSMatt Macy filename = "standard input"; 7806eda14cbcSMatt Macy } else if ((fd = open(filename, O_RDONLY)) < 0) { 7807eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot open '%s': %s\n"), 7808eda14cbcSMatt Macy filename, strerror(errno)); 7809eda14cbcSMatt Macy return (1); 7810eda14cbcSMatt Macy } 7811eda14cbcSMatt Macy 7812eda14cbcSMatt Macy if ((zhp = zpool_open(g_zfs, poolname)) == NULL) { 7813eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot open pool '%s'\n"), 7814eda14cbcSMatt Macy poolname); 7815eda14cbcSMatt Macy if (fd != 0) 7816eda14cbcSMatt Macy (void) close(fd); 7817eda14cbcSMatt Macy return (1); 7818eda14cbcSMatt Macy } 7819eda14cbcSMatt Macy zpool_close(zhp); 7820eda14cbcSMatt Macy 7821eda14cbcSMatt Macy /* 7822eda14cbcSMatt Macy * Read in the channel program, expanding the program buffer as 7823eda14cbcSMatt Macy * necessary. 7824eda14cbcSMatt Macy */ 7825eda14cbcSMatt Macy progread = 0; 7826eda14cbcSMatt Macy progsize = 1024; 7827eda14cbcSMatt Macy progbuf = safe_malloc(progsize); 7828eda14cbcSMatt Macy do { 7829eda14cbcSMatt Macy ret = read(fd, progbuf + progread, progsize - progread); 7830eda14cbcSMatt Macy progread += ret; 7831eda14cbcSMatt Macy if (progread == progsize && ret > 0) { 7832eda14cbcSMatt Macy progsize *= 2; 7833eda14cbcSMatt Macy progbuf = safe_realloc(progbuf, progsize); 7834eda14cbcSMatt Macy } 7835eda14cbcSMatt Macy } while (ret > 0); 7836eda14cbcSMatt Macy 7837eda14cbcSMatt Macy if (fd != 0) 7838eda14cbcSMatt Macy (void) close(fd); 7839eda14cbcSMatt Macy if (ret < 0) { 7840eda14cbcSMatt Macy free(progbuf); 7841eda14cbcSMatt Macy (void) fprintf(stderr, 7842eda14cbcSMatt Macy gettext("cannot read '%s': %s\n"), 7843eda14cbcSMatt Macy filename, strerror(errno)); 7844eda14cbcSMatt Macy return (1); 7845eda14cbcSMatt Macy } 7846eda14cbcSMatt Macy progbuf[progread] = '\0'; 7847eda14cbcSMatt Macy 7848eda14cbcSMatt Macy /* 7849eda14cbcSMatt Macy * Any remaining arguments are passed as arguments to the lua script as 7850eda14cbcSMatt Macy * a string array: 7851eda14cbcSMatt Macy * { 7852eda14cbcSMatt Macy * "argv" -> [ "arg 1", ... "arg n" ], 7853eda14cbcSMatt Macy * } 7854eda14cbcSMatt Macy */ 7855eda14cbcSMatt Macy nvlist_t *argnvl = fnvlist_alloc(); 7856eda14cbcSMatt Macy fnvlist_add_string_array(argnvl, ZCP_ARG_CLIARGV, argv + 2, argc - 2); 7857eda14cbcSMatt Macy 7858eda14cbcSMatt Macy if (sync_flag) { 7859eda14cbcSMatt Macy ret = lzc_channel_program(poolname, progbuf, 7860eda14cbcSMatt Macy instrlimit, memlimit, argnvl, &outnvl); 7861eda14cbcSMatt Macy } else { 7862eda14cbcSMatt Macy ret = lzc_channel_program_nosync(poolname, progbuf, 7863eda14cbcSMatt Macy instrlimit, memlimit, argnvl, &outnvl); 7864eda14cbcSMatt Macy } 7865eda14cbcSMatt Macy 7866eda14cbcSMatt Macy if (ret != 0) { 7867eda14cbcSMatt Macy /* 7868eda14cbcSMatt Macy * On error, report the error message handed back by lua if one 7869eda14cbcSMatt Macy * exists. Otherwise, generate an appropriate error message, 7870eda14cbcSMatt Macy * falling back on strerror() for an unexpected return code. 7871eda14cbcSMatt Macy */ 7872eda14cbcSMatt Macy char *errstring = NULL; 7873eda14cbcSMatt Macy const char *msg = gettext("Channel program execution failed"); 7874eda14cbcSMatt Macy uint64_t instructions = 0; 7875eda14cbcSMatt Macy if (outnvl != NULL && nvlist_exists(outnvl, ZCP_RET_ERROR)) { 7876eda14cbcSMatt Macy (void) nvlist_lookup_string(outnvl, 7877eda14cbcSMatt Macy ZCP_RET_ERROR, &errstring); 7878eda14cbcSMatt Macy if (errstring == NULL) 7879eda14cbcSMatt Macy errstring = strerror(ret); 7880eda14cbcSMatt Macy if (ret == ETIME) { 7881eda14cbcSMatt Macy (void) nvlist_lookup_uint64(outnvl, 7882eda14cbcSMatt Macy ZCP_ARG_INSTRLIMIT, &instructions); 7883eda14cbcSMatt Macy } 7884eda14cbcSMatt Macy } else { 7885eda14cbcSMatt Macy switch (ret) { 7886eda14cbcSMatt Macy case EINVAL: 7887eda14cbcSMatt Macy errstring = 7888eda14cbcSMatt Macy "Invalid instruction or memory limit."; 7889eda14cbcSMatt Macy break; 7890eda14cbcSMatt Macy case ENOMEM: 7891eda14cbcSMatt Macy errstring = "Return value too large."; 7892eda14cbcSMatt Macy break; 7893eda14cbcSMatt Macy case ENOSPC: 7894eda14cbcSMatt Macy errstring = "Memory limit exhausted."; 7895eda14cbcSMatt Macy break; 7896eda14cbcSMatt Macy case ETIME: 7897eda14cbcSMatt Macy errstring = "Timed out."; 7898eda14cbcSMatt Macy break; 7899eda14cbcSMatt Macy case EPERM: 7900eda14cbcSMatt Macy errstring = "Permission denied. Channel " 7901eda14cbcSMatt Macy "programs must be run as root."; 7902eda14cbcSMatt Macy break; 7903eda14cbcSMatt Macy default: 7904eda14cbcSMatt Macy (void) zfs_standard_error(g_zfs, ret, msg); 7905eda14cbcSMatt Macy } 7906eda14cbcSMatt Macy } 7907eda14cbcSMatt Macy if (errstring != NULL) 7908eda14cbcSMatt Macy (void) fprintf(stderr, "%s:\n%s\n", msg, errstring); 7909eda14cbcSMatt Macy 7910eda14cbcSMatt Macy if (ret == ETIME && instructions != 0) 7911eda14cbcSMatt Macy (void) fprintf(stderr, 7912eda14cbcSMatt Macy gettext("%llu Lua instructions\n"), 7913eda14cbcSMatt Macy (u_longlong_t)instructions); 7914eda14cbcSMatt Macy } else { 7915eda14cbcSMatt Macy if (json_output) { 7916eda14cbcSMatt Macy (void) nvlist_print_json(stdout, outnvl); 7917eda14cbcSMatt Macy } else if (nvlist_empty(outnvl)) { 7918eda14cbcSMatt Macy (void) fprintf(stdout, gettext("Channel program fully " 7919eda14cbcSMatt Macy "executed and did not produce output.\n")); 7920eda14cbcSMatt Macy } else { 7921eda14cbcSMatt Macy (void) fprintf(stdout, gettext("Channel program fully " 7922eda14cbcSMatt Macy "executed and produced output:\n")); 7923eda14cbcSMatt Macy dump_nvlist(outnvl, 4); 7924eda14cbcSMatt Macy } 7925eda14cbcSMatt Macy } 7926eda14cbcSMatt Macy 7927eda14cbcSMatt Macy free(progbuf); 7928eda14cbcSMatt Macy fnvlist_free(outnvl); 7929eda14cbcSMatt Macy fnvlist_free(argnvl); 7930eda14cbcSMatt Macy return (ret != 0); 7931eda14cbcSMatt Macy 7932eda14cbcSMatt Macy usage: 7933eda14cbcSMatt Macy usage(B_FALSE); 7934eda14cbcSMatt Macy return (-1); 7935eda14cbcSMatt Macy } 7936eda14cbcSMatt Macy 7937eda14cbcSMatt Macy 7938eda14cbcSMatt Macy typedef struct loadkey_cbdata { 7939eda14cbcSMatt Macy boolean_t cb_loadkey; 7940eda14cbcSMatt Macy boolean_t cb_recursive; 7941eda14cbcSMatt Macy boolean_t cb_noop; 7942eda14cbcSMatt Macy char *cb_keylocation; 7943eda14cbcSMatt Macy uint64_t cb_numfailed; 7944eda14cbcSMatt Macy uint64_t cb_numattempted; 7945eda14cbcSMatt Macy } loadkey_cbdata_t; 7946eda14cbcSMatt Macy 7947eda14cbcSMatt Macy static int 7948eda14cbcSMatt Macy load_key_callback(zfs_handle_t *zhp, void *data) 7949eda14cbcSMatt Macy { 7950eda14cbcSMatt Macy int ret; 7951eda14cbcSMatt Macy boolean_t is_encroot; 7952eda14cbcSMatt Macy loadkey_cbdata_t *cb = data; 7953eda14cbcSMatt Macy uint64_t keystatus = zfs_prop_get_int(zhp, ZFS_PROP_KEYSTATUS); 7954eda14cbcSMatt Macy 7955eda14cbcSMatt Macy /* 7956eda14cbcSMatt Macy * If we are working recursively, we want to skip loading / unloading 7957eda14cbcSMatt Macy * keys for non-encryption roots and datasets whose keys are already 7958eda14cbcSMatt Macy * in the desired end-state. 7959eda14cbcSMatt Macy */ 7960eda14cbcSMatt Macy if (cb->cb_recursive) { 7961eda14cbcSMatt Macy ret = zfs_crypto_get_encryption_root(zhp, &is_encroot, NULL); 7962eda14cbcSMatt Macy if (ret != 0) 7963eda14cbcSMatt Macy return (ret); 7964eda14cbcSMatt Macy if (!is_encroot) 7965eda14cbcSMatt Macy return (0); 7966eda14cbcSMatt Macy 7967eda14cbcSMatt Macy if ((cb->cb_loadkey && keystatus == ZFS_KEYSTATUS_AVAILABLE) || 7968eda14cbcSMatt Macy (!cb->cb_loadkey && keystatus == ZFS_KEYSTATUS_UNAVAILABLE)) 7969eda14cbcSMatt Macy return (0); 7970eda14cbcSMatt Macy } 7971eda14cbcSMatt Macy 7972eda14cbcSMatt Macy cb->cb_numattempted++; 7973eda14cbcSMatt Macy 7974eda14cbcSMatt Macy if (cb->cb_loadkey) 7975eda14cbcSMatt Macy ret = zfs_crypto_load_key(zhp, cb->cb_noop, cb->cb_keylocation); 7976eda14cbcSMatt Macy else 7977eda14cbcSMatt Macy ret = zfs_crypto_unload_key(zhp); 7978eda14cbcSMatt Macy 7979eda14cbcSMatt Macy if (ret != 0) { 7980eda14cbcSMatt Macy cb->cb_numfailed++; 7981eda14cbcSMatt Macy return (ret); 7982eda14cbcSMatt Macy } 7983eda14cbcSMatt Macy 7984eda14cbcSMatt Macy return (0); 7985eda14cbcSMatt Macy } 7986eda14cbcSMatt Macy 7987eda14cbcSMatt Macy static int 7988eda14cbcSMatt Macy load_unload_keys(int argc, char **argv, boolean_t loadkey) 7989eda14cbcSMatt Macy { 7990eda14cbcSMatt Macy int c, ret = 0, flags = 0; 7991eda14cbcSMatt Macy boolean_t do_all = B_FALSE; 7992eda14cbcSMatt Macy loadkey_cbdata_t cb = { 0 }; 7993eda14cbcSMatt Macy 7994eda14cbcSMatt Macy cb.cb_loadkey = loadkey; 7995eda14cbcSMatt Macy 7996eda14cbcSMatt Macy while ((c = getopt(argc, argv, "anrL:")) != -1) { 7997eda14cbcSMatt Macy /* noop and alternate keylocations only apply to zfs load-key */ 7998eda14cbcSMatt Macy if (loadkey) { 7999eda14cbcSMatt Macy switch (c) { 8000eda14cbcSMatt Macy case 'n': 8001eda14cbcSMatt Macy cb.cb_noop = B_TRUE; 8002eda14cbcSMatt Macy continue; 8003eda14cbcSMatt Macy case 'L': 8004eda14cbcSMatt Macy cb.cb_keylocation = optarg; 8005eda14cbcSMatt Macy continue; 8006eda14cbcSMatt Macy default: 8007eda14cbcSMatt Macy break; 8008eda14cbcSMatt Macy } 8009eda14cbcSMatt Macy } 8010eda14cbcSMatt Macy 8011eda14cbcSMatt Macy switch (c) { 8012eda14cbcSMatt Macy case 'a': 8013eda14cbcSMatt Macy do_all = B_TRUE; 8014eda14cbcSMatt Macy cb.cb_recursive = B_TRUE; 8015eda14cbcSMatt Macy break; 8016eda14cbcSMatt Macy case 'r': 8017eda14cbcSMatt Macy flags |= ZFS_ITER_RECURSE; 8018eda14cbcSMatt Macy cb.cb_recursive = B_TRUE; 8019eda14cbcSMatt Macy break; 8020eda14cbcSMatt Macy default: 8021eda14cbcSMatt Macy (void) fprintf(stderr, 8022eda14cbcSMatt Macy gettext("invalid option '%c'\n"), optopt); 8023eda14cbcSMatt Macy usage(B_FALSE); 8024eda14cbcSMatt Macy } 8025eda14cbcSMatt Macy } 8026eda14cbcSMatt Macy 8027eda14cbcSMatt Macy argc -= optind; 8028eda14cbcSMatt Macy argv += optind; 8029eda14cbcSMatt Macy 8030eda14cbcSMatt Macy if (!do_all && argc == 0) { 8031eda14cbcSMatt Macy (void) fprintf(stderr, 8032eda14cbcSMatt Macy gettext("Missing dataset argument or -a option\n")); 8033eda14cbcSMatt Macy usage(B_FALSE); 8034eda14cbcSMatt Macy } 8035eda14cbcSMatt Macy 8036eda14cbcSMatt Macy if (do_all && argc != 0) { 8037eda14cbcSMatt Macy (void) fprintf(stderr, 8038eda14cbcSMatt Macy gettext("Cannot specify dataset with -a option\n")); 8039eda14cbcSMatt Macy usage(B_FALSE); 8040eda14cbcSMatt Macy } 8041eda14cbcSMatt Macy 8042eda14cbcSMatt Macy if (cb.cb_recursive && cb.cb_keylocation != NULL && 8043eda14cbcSMatt Macy strcmp(cb.cb_keylocation, "prompt") != 0) { 8044eda14cbcSMatt Macy (void) fprintf(stderr, gettext("alternate keylocation may only " 8045eda14cbcSMatt Macy "be 'prompt' with -r or -a\n")); 8046eda14cbcSMatt Macy usage(B_FALSE); 8047eda14cbcSMatt Macy } 8048eda14cbcSMatt Macy 8049eda14cbcSMatt Macy ret = zfs_for_each(argc, argv, flags, 8050eda14cbcSMatt Macy ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME, NULL, NULL, 0, 8051eda14cbcSMatt Macy load_key_callback, &cb); 8052eda14cbcSMatt Macy 8053eda14cbcSMatt Macy if (cb.cb_noop || (cb.cb_recursive && cb.cb_numattempted != 0)) { 8054eda14cbcSMatt Macy (void) printf(gettext("%llu / %llu key(s) successfully %s\n"), 8055eda14cbcSMatt Macy (u_longlong_t)(cb.cb_numattempted - cb.cb_numfailed), 8056eda14cbcSMatt Macy (u_longlong_t)cb.cb_numattempted, 8057eda14cbcSMatt Macy loadkey ? (cb.cb_noop ? "verified" : "loaded") : 8058eda14cbcSMatt Macy "unloaded"); 8059eda14cbcSMatt Macy } 8060eda14cbcSMatt Macy 8061eda14cbcSMatt Macy if (cb.cb_numfailed != 0) 8062eda14cbcSMatt Macy ret = -1; 8063eda14cbcSMatt Macy 8064eda14cbcSMatt Macy return (ret); 8065eda14cbcSMatt Macy } 8066eda14cbcSMatt Macy 8067eda14cbcSMatt Macy static int 8068eda14cbcSMatt Macy zfs_do_load_key(int argc, char **argv) 8069eda14cbcSMatt Macy { 8070eda14cbcSMatt Macy return (load_unload_keys(argc, argv, B_TRUE)); 8071eda14cbcSMatt Macy } 8072eda14cbcSMatt Macy 8073eda14cbcSMatt Macy 8074eda14cbcSMatt Macy static int 8075eda14cbcSMatt Macy zfs_do_unload_key(int argc, char **argv) 8076eda14cbcSMatt Macy { 8077eda14cbcSMatt Macy return (load_unload_keys(argc, argv, B_FALSE)); 8078eda14cbcSMatt Macy } 8079eda14cbcSMatt Macy 8080eda14cbcSMatt Macy static int 8081eda14cbcSMatt Macy zfs_do_change_key(int argc, char **argv) 8082eda14cbcSMatt Macy { 8083eda14cbcSMatt Macy int c, ret; 8084eda14cbcSMatt Macy uint64_t keystatus; 8085eda14cbcSMatt Macy boolean_t loadkey = B_FALSE, inheritkey = B_FALSE; 8086eda14cbcSMatt Macy zfs_handle_t *zhp = NULL; 8087eda14cbcSMatt Macy nvlist_t *props = fnvlist_alloc(); 8088eda14cbcSMatt Macy 8089eda14cbcSMatt Macy while ((c = getopt(argc, argv, "lio:")) != -1) { 8090eda14cbcSMatt Macy switch (c) { 8091eda14cbcSMatt Macy case 'l': 8092eda14cbcSMatt Macy loadkey = B_TRUE; 8093eda14cbcSMatt Macy break; 8094eda14cbcSMatt Macy case 'i': 8095eda14cbcSMatt Macy inheritkey = B_TRUE; 8096eda14cbcSMatt Macy break; 8097eda14cbcSMatt Macy case 'o': 8098eda14cbcSMatt Macy if (!parseprop(props, optarg)) { 8099eda14cbcSMatt Macy nvlist_free(props); 8100eda14cbcSMatt Macy return (1); 8101eda14cbcSMatt Macy } 8102eda14cbcSMatt Macy break; 8103eda14cbcSMatt Macy default: 8104eda14cbcSMatt Macy (void) fprintf(stderr, 8105eda14cbcSMatt Macy gettext("invalid option '%c'\n"), optopt); 8106eda14cbcSMatt Macy usage(B_FALSE); 8107eda14cbcSMatt Macy } 8108eda14cbcSMatt Macy } 8109eda14cbcSMatt Macy 8110eda14cbcSMatt Macy if (inheritkey && !nvlist_empty(props)) { 8111eda14cbcSMatt Macy (void) fprintf(stderr, 8112eda14cbcSMatt Macy gettext("Properties not allowed for inheriting\n")); 8113eda14cbcSMatt Macy usage(B_FALSE); 8114eda14cbcSMatt Macy } 8115eda14cbcSMatt Macy 8116eda14cbcSMatt Macy argc -= optind; 8117eda14cbcSMatt Macy argv += optind; 8118eda14cbcSMatt Macy 8119eda14cbcSMatt Macy if (argc < 1) { 8120eda14cbcSMatt Macy (void) fprintf(stderr, gettext("Missing dataset argument\n")); 8121eda14cbcSMatt Macy usage(B_FALSE); 8122eda14cbcSMatt Macy } 8123eda14cbcSMatt Macy 8124eda14cbcSMatt Macy if (argc > 1) { 8125eda14cbcSMatt Macy (void) fprintf(stderr, gettext("Too many arguments\n")); 8126eda14cbcSMatt Macy usage(B_FALSE); 8127eda14cbcSMatt Macy } 8128eda14cbcSMatt Macy 8129eda14cbcSMatt Macy zhp = zfs_open(g_zfs, argv[argc - 1], 8130eda14cbcSMatt Macy ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME); 8131eda14cbcSMatt Macy if (zhp == NULL) 8132eda14cbcSMatt Macy usage(B_FALSE); 8133eda14cbcSMatt Macy 8134eda14cbcSMatt Macy if (loadkey) { 8135eda14cbcSMatt Macy keystatus = zfs_prop_get_int(zhp, ZFS_PROP_KEYSTATUS); 8136eda14cbcSMatt Macy if (keystatus != ZFS_KEYSTATUS_AVAILABLE) { 8137eda14cbcSMatt Macy ret = zfs_crypto_load_key(zhp, B_FALSE, NULL); 8138eda14cbcSMatt Macy if (ret != 0) { 8139eda14cbcSMatt Macy nvlist_free(props); 8140eda14cbcSMatt Macy zfs_close(zhp); 8141eda14cbcSMatt Macy return (-1); 8142eda14cbcSMatt Macy } 8143eda14cbcSMatt Macy } 8144eda14cbcSMatt Macy 8145eda14cbcSMatt Macy /* refresh the properties so the new keystatus is visible */ 8146eda14cbcSMatt Macy zfs_refresh_properties(zhp); 8147eda14cbcSMatt Macy } 8148eda14cbcSMatt Macy 8149eda14cbcSMatt Macy ret = zfs_crypto_rewrap(zhp, props, inheritkey); 8150eda14cbcSMatt Macy if (ret != 0) { 8151eda14cbcSMatt Macy nvlist_free(props); 8152eda14cbcSMatt Macy zfs_close(zhp); 8153eda14cbcSMatt Macy return (-1); 8154eda14cbcSMatt Macy } 8155eda14cbcSMatt Macy 8156eda14cbcSMatt Macy nvlist_free(props); 8157eda14cbcSMatt Macy zfs_close(zhp); 8158eda14cbcSMatt Macy return (0); 8159eda14cbcSMatt Macy } 8160eda14cbcSMatt Macy 8161eda14cbcSMatt Macy /* 8162eda14cbcSMatt Macy * 1) zfs project [-d|-r] <file|directory ...> 8163eda14cbcSMatt Macy * List project ID and inherit flag of file(s) or directories. 8164eda14cbcSMatt Macy * -d: List the directory itself, not its children. 8165eda14cbcSMatt Macy * -r: List subdirectories recursively. 8166eda14cbcSMatt Macy * 8167eda14cbcSMatt Macy * 2) zfs project -C [-k] [-r] <file|directory ...> 8168eda14cbcSMatt Macy * Clear project inherit flag and/or ID on the file(s) or directories. 8169eda14cbcSMatt Macy * -k: Keep the project ID unchanged. If not specified, the project ID 8170eda14cbcSMatt Macy * will be reset as zero. 8171eda14cbcSMatt Macy * -r: Clear on subdirectories recursively. 8172eda14cbcSMatt Macy * 8173eda14cbcSMatt Macy * 3) zfs project -c [-0] [-d|-r] [-p id] <file|directory ...> 8174eda14cbcSMatt Macy * Check project ID and inherit flag on the file(s) or directories, 8175eda14cbcSMatt Macy * report the outliers. 8176eda14cbcSMatt Macy * -0: Print file name followed by a NUL instead of newline. 8177eda14cbcSMatt Macy * -d: Check the directory itself, not its children. 8178eda14cbcSMatt Macy * -p: Specify the referenced ID for comparing with the target file(s) 8179eda14cbcSMatt Macy * or directories' project IDs. If not specified, the target (top) 8180eda14cbcSMatt Macy * directory's project ID will be used as the referenced one. 8181eda14cbcSMatt Macy * -r: Check subdirectories recursively. 8182eda14cbcSMatt Macy * 8183eda14cbcSMatt Macy * 4) zfs project [-p id] [-r] [-s] <file|directory ...> 8184eda14cbcSMatt Macy * Set project ID and/or inherit flag on the file(s) or directories. 8185eda14cbcSMatt Macy * -p: Set the project ID as the given id. 8186eda14cbcSMatt Macy * -r: Set on subdirectories recursively. If not specify "-p" option, 8187eda14cbcSMatt Macy * it will use top-level directory's project ID as the given id, 8188eda14cbcSMatt Macy * then set both project ID and inherit flag on all descendants 8189eda14cbcSMatt Macy * of the top-level directory. 8190eda14cbcSMatt Macy * -s: Set project inherit flag. 8191eda14cbcSMatt Macy */ 8192eda14cbcSMatt Macy static int 8193eda14cbcSMatt Macy zfs_do_project(int argc, char **argv) 8194eda14cbcSMatt Macy { 8195eda14cbcSMatt Macy zfs_project_control_t zpc = { 8196eda14cbcSMatt Macy .zpc_expected_projid = ZFS_INVALID_PROJID, 8197eda14cbcSMatt Macy .zpc_op = ZFS_PROJECT_OP_DEFAULT, 8198eda14cbcSMatt Macy .zpc_dironly = B_FALSE, 8199eda14cbcSMatt Macy .zpc_keep_projid = B_FALSE, 8200eda14cbcSMatt Macy .zpc_newline = B_TRUE, 8201eda14cbcSMatt Macy .zpc_recursive = B_FALSE, 8202eda14cbcSMatt Macy .zpc_set_flag = B_FALSE, 8203eda14cbcSMatt Macy }; 8204eda14cbcSMatt Macy int ret = 0, c; 8205eda14cbcSMatt Macy 8206eda14cbcSMatt Macy if (argc < 2) 8207eda14cbcSMatt Macy usage(B_FALSE); 8208eda14cbcSMatt Macy 8209eda14cbcSMatt Macy while ((c = getopt(argc, argv, "0Ccdkp:rs")) != -1) { 8210eda14cbcSMatt Macy switch (c) { 8211eda14cbcSMatt Macy case '0': 8212eda14cbcSMatt Macy zpc.zpc_newline = B_FALSE; 8213eda14cbcSMatt Macy break; 8214eda14cbcSMatt Macy case 'C': 8215eda14cbcSMatt Macy if (zpc.zpc_op != ZFS_PROJECT_OP_DEFAULT) { 8216eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot " 8217eda14cbcSMatt Macy "specify '-C' '-c' '-s' together\n")); 8218eda14cbcSMatt Macy usage(B_FALSE); 8219eda14cbcSMatt Macy } 8220eda14cbcSMatt Macy 8221eda14cbcSMatt Macy zpc.zpc_op = ZFS_PROJECT_OP_CLEAR; 8222eda14cbcSMatt Macy break; 8223eda14cbcSMatt Macy case 'c': 8224eda14cbcSMatt Macy if (zpc.zpc_op != ZFS_PROJECT_OP_DEFAULT) { 8225eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot " 8226eda14cbcSMatt Macy "specify '-C' '-c' '-s' together\n")); 8227eda14cbcSMatt Macy usage(B_FALSE); 8228eda14cbcSMatt Macy } 8229eda14cbcSMatt Macy 8230eda14cbcSMatt Macy zpc.zpc_op = ZFS_PROJECT_OP_CHECK; 8231eda14cbcSMatt Macy break; 8232eda14cbcSMatt Macy case 'd': 8233eda14cbcSMatt Macy zpc.zpc_dironly = B_TRUE; 8234eda14cbcSMatt Macy /* overwrite "-r" option */ 8235eda14cbcSMatt Macy zpc.zpc_recursive = B_FALSE; 8236eda14cbcSMatt Macy break; 8237eda14cbcSMatt Macy case 'k': 8238eda14cbcSMatt Macy zpc.zpc_keep_projid = B_TRUE; 8239eda14cbcSMatt Macy break; 8240eda14cbcSMatt Macy case 'p': { 8241eda14cbcSMatt Macy char *endptr; 8242eda14cbcSMatt Macy 8243eda14cbcSMatt Macy errno = 0; 8244eda14cbcSMatt Macy zpc.zpc_expected_projid = strtoull(optarg, &endptr, 0); 8245eda14cbcSMatt Macy if (errno != 0 || *endptr != '\0') { 8246eda14cbcSMatt Macy (void) fprintf(stderr, 8247eda14cbcSMatt Macy gettext("project ID must be less than " 8248eda14cbcSMatt Macy "%u\n"), UINT32_MAX); 8249eda14cbcSMatt Macy usage(B_FALSE); 8250eda14cbcSMatt Macy } 8251eda14cbcSMatt Macy if (zpc.zpc_expected_projid >= UINT32_MAX) { 8252eda14cbcSMatt Macy (void) fprintf(stderr, 8253eda14cbcSMatt Macy gettext("invalid project ID\n")); 8254eda14cbcSMatt Macy usage(B_FALSE); 8255eda14cbcSMatt Macy } 8256eda14cbcSMatt Macy break; 8257eda14cbcSMatt Macy } 8258eda14cbcSMatt Macy case 'r': 8259eda14cbcSMatt Macy zpc.zpc_recursive = B_TRUE; 8260eda14cbcSMatt Macy /* overwrite "-d" option */ 8261eda14cbcSMatt Macy zpc.zpc_dironly = B_FALSE; 8262eda14cbcSMatt Macy break; 8263eda14cbcSMatt Macy case 's': 8264eda14cbcSMatt Macy if (zpc.zpc_op != ZFS_PROJECT_OP_DEFAULT) { 8265eda14cbcSMatt Macy (void) fprintf(stderr, gettext("cannot " 8266eda14cbcSMatt Macy "specify '-C' '-c' '-s' together\n")); 8267eda14cbcSMatt Macy usage(B_FALSE); 8268eda14cbcSMatt Macy } 8269eda14cbcSMatt Macy 8270eda14cbcSMatt Macy zpc.zpc_set_flag = B_TRUE; 8271eda14cbcSMatt Macy zpc.zpc_op = ZFS_PROJECT_OP_SET; 8272eda14cbcSMatt Macy break; 8273eda14cbcSMatt Macy default: 8274eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 8275eda14cbcSMatt Macy optopt); 8276eda14cbcSMatt Macy usage(B_FALSE); 8277eda14cbcSMatt Macy } 8278eda14cbcSMatt Macy } 8279eda14cbcSMatt Macy 8280eda14cbcSMatt Macy if (zpc.zpc_op == ZFS_PROJECT_OP_DEFAULT) { 8281eda14cbcSMatt Macy if (zpc.zpc_expected_projid != ZFS_INVALID_PROJID) 8282eda14cbcSMatt Macy zpc.zpc_op = ZFS_PROJECT_OP_SET; 8283eda14cbcSMatt Macy else 8284eda14cbcSMatt Macy zpc.zpc_op = ZFS_PROJECT_OP_LIST; 8285eda14cbcSMatt Macy } 8286eda14cbcSMatt Macy 8287eda14cbcSMatt Macy switch (zpc.zpc_op) { 8288eda14cbcSMatt Macy case ZFS_PROJECT_OP_LIST: 8289eda14cbcSMatt Macy if (zpc.zpc_keep_projid) { 8290eda14cbcSMatt Macy (void) fprintf(stderr, 8291eda14cbcSMatt Macy gettext("'-k' is only valid together with '-C'\n")); 8292eda14cbcSMatt Macy usage(B_FALSE); 8293eda14cbcSMatt Macy } 8294eda14cbcSMatt Macy if (!zpc.zpc_newline) { 8295eda14cbcSMatt Macy (void) fprintf(stderr, 8296eda14cbcSMatt Macy gettext("'-0' is only valid together with '-c'\n")); 8297eda14cbcSMatt Macy usage(B_FALSE); 8298eda14cbcSMatt Macy } 8299eda14cbcSMatt Macy break; 8300eda14cbcSMatt Macy case ZFS_PROJECT_OP_CHECK: 8301eda14cbcSMatt Macy if (zpc.zpc_keep_projid) { 8302eda14cbcSMatt Macy (void) fprintf(stderr, 8303eda14cbcSMatt Macy gettext("'-k' is only valid together with '-C'\n")); 8304eda14cbcSMatt Macy usage(B_FALSE); 8305eda14cbcSMatt Macy } 8306eda14cbcSMatt Macy break; 8307eda14cbcSMatt Macy case ZFS_PROJECT_OP_CLEAR: 8308eda14cbcSMatt Macy if (zpc.zpc_dironly) { 8309eda14cbcSMatt Macy (void) fprintf(stderr, 8310eda14cbcSMatt Macy gettext("'-d' is useless together with '-C'\n")); 8311eda14cbcSMatt Macy usage(B_FALSE); 8312eda14cbcSMatt Macy } 8313eda14cbcSMatt Macy if (!zpc.zpc_newline) { 8314eda14cbcSMatt Macy (void) fprintf(stderr, 8315eda14cbcSMatt Macy gettext("'-0' is only valid together with '-c'\n")); 8316eda14cbcSMatt Macy usage(B_FALSE); 8317eda14cbcSMatt Macy } 8318eda14cbcSMatt Macy if (zpc.zpc_expected_projid != ZFS_INVALID_PROJID) { 8319eda14cbcSMatt Macy (void) fprintf(stderr, 8320eda14cbcSMatt Macy gettext("'-p' is useless together with '-C'\n")); 8321eda14cbcSMatt Macy usage(B_FALSE); 8322eda14cbcSMatt Macy } 8323eda14cbcSMatt Macy break; 8324eda14cbcSMatt Macy case ZFS_PROJECT_OP_SET: 8325eda14cbcSMatt Macy if (zpc.zpc_dironly) { 8326eda14cbcSMatt Macy (void) fprintf(stderr, 8327eda14cbcSMatt Macy gettext("'-d' is useless for set project ID and/or " 8328eda14cbcSMatt Macy "inherit flag\n")); 8329eda14cbcSMatt Macy usage(B_FALSE); 8330eda14cbcSMatt Macy } 8331eda14cbcSMatt Macy if (zpc.zpc_keep_projid) { 8332eda14cbcSMatt Macy (void) fprintf(stderr, 8333eda14cbcSMatt Macy gettext("'-k' is only valid together with '-C'\n")); 8334eda14cbcSMatt Macy usage(B_FALSE); 8335eda14cbcSMatt Macy } 8336eda14cbcSMatt Macy if (!zpc.zpc_newline) { 8337eda14cbcSMatt Macy (void) fprintf(stderr, 8338eda14cbcSMatt Macy gettext("'-0' is only valid together with '-c'\n")); 8339eda14cbcSMatt Macy usage(B_FALSE); 8340eda14cbcSMatt Macy } 8341eda14cbcSMatt Macy break; 8342eda14cbcSMatt Macy default: 8343eda14cbcSMatt Macy ASSERT(0); 8344eda14cbcSMatt Macy break; 8345eda14cbcSMatt Macy } 8346eda14cbcSMatt Macy 8347eda14cbcSMatt Macy argv += optind; 8348eda14cbcSMatt Macy argc -= optind; 8349eda14cbcSMatt Macy if (argc == 0) { 8350eda14cbcSMatt Macy (void) fprintf(stderr, 8351eda14cbcSMatt Macy gettext("missing file or directory target(s)\n")); 8352eda14cbcSMatt Macy usage(B_FALSE); 8353eda14cbcSMatt Macy } 8354eda14cbcSMatt Macy 8355eda14cbcSMatt Macy for (int i = 0; i < argc; i++) { 8356eda14cbcSMatt Macy int err; 8357eda14cbcSMatt Macy 8358eda14cbcSMatt Macy err = zfs_project_handle(argv[i], &zpc); 8359eda14cbcSMatt Macy if (err && !ret) 8360eda14cbcSMatt Macy ret = err; 8361eda14cbcSMatt Macy } 8362eda14cbcSMatt Macy 8363eda14cbcSMatt Macy return (ret); 8364eda14cbcSMatt Macy } 8365eda14cbcSMatt Macy 8366eda14cbcSMatt Macy static int 8367eda14cbcSMatt Macy zfs_do_wait(int argc, char **argv) 8368eda14cbcSMatt Macy { 8369eda14cbcSMatt Macy boolean_t enabled[ZFS_WAIT_NUM_ACTIVITIES]; 8370eda14cbcSMatt Macy int error, i; 8371eda14cbcSMatt Macy char c; 8372eda14cbcSMatt Macy 8373eda14cbcSMatt Macy /* By default, wait for all types of activity. */ 8374eda14cbcSMatt Macy for (i = 0; i < ZFS_WAIT_NUM_ACTIVITIES; i++) 8375eda14cbcSMatt Macy enabled[i] = B_TRUE; 8376eda14cbcSMatt Macy 8377eda14cbcSMatt Macy while ((c = getopt(argc, argv, "t:")) != -1) { 8378eda14cbcSMatt Macy switch (c) { 8379eda14cbcSMatt Macy case 't': 8380eda14cbcSMatt Macy { 8381eda14cbcSMatt Macy static char *col_subopts[] = { "deleteq", NULL }; 8382eda14cbcSMatt Macy char *value; 8383eda14cbcSMatt Macy 8384eda14cbcSMatt Macy /* Reset activities array */ 8385eda14cbcSMatt Macy bzero(&enabled, sizeof (enabled)); 8386eda14cbcSMatt Macy while (*optarg != '\0') { 8387eda14cbcSMatt Macy int activity = getsubopt(&optarg, col_subopts, 8388eda14cbcSMatt Macy &value); 8389eda14cbcSMatt Macy 8390eda14cbcSMatt Macy if (activity < 0) { 8391eda14cbcSMatt Macy (void) fprintf(stderr, 8392eda14cbcSMatt Macy gettext("invalid activity '%s'\n"), 8393eda14cbcSMatt Macy value); 8394eda14cbcSMatt Macy usage(B_FALSE); 8395eda14cbcSMatt Macy } 8396eda14cbcSMatt Macy 8397eda14cbcSMatt Macy enabled[activity] = B_TRUE; 8398eda14cbcSMatt Macy } 8399eda14cbcSMatt Macy break; 8400eda14cbcSMatt Macy } 8401eda14cbcSMatt Macy case '?': 8402eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid option '%c'\n"), 8403eda14cbcSMatt Macy optopt); 8404eda14cbcSMatt Macy usage(B_FALSE); 8405eda14cbcSMatt Macy } 8406eda14cbcSMatt Macy } 8407eda14cbcSMatt Macy 8408eda14cbcSMatt Macy argv += optind; 8409eda14cbcSMatt Macy argc -= optind; 8410eda14cbcSMatt Macy if (argc < 1) { 8411eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing 'filesystem' " 8412eda14cbcSMatt Macy "argument\n")); 8413eda14cbcSMatt Macy usage(B_FALSE); 8414eda14cbcSMatt Macy } 8415eda14cbcSMatt Macy if (argc > 1) { 8416eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 8417eda14cbcSMatt Macy usage(B_FALSE); 8418eda14cbcSMatt Macy } 8419eda14cbcSMatt Macy 8420eda14cbcSMatt Macy zfs_handle_t *zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_FILESYSTEM); 8421eda14cbcSMatt Macy if (zhp == NULL) 8422eda14cbcSMatt Macy return (1); 8423eda14cbcSMatt Macy 8424eda14cbcSMatt Macy for (;;) { 8425eda14cbcSMatt Macy boolean_t missing = B_FALSE; 8426eda14cbcSMatt Macy boolean_t any_waited = B_FALSE; 8427eda14cbcSMatt Macy 8428eda14cbcSMatt Macy for (int i = 0; i < ZFS_WAIT_NUM_ACTIVITIES; i++) { 8429eda14cbcSMatt Macy boolean_t waited; 8430eda14cbcSMatt Macy 8431eda14cbcSMatt Macy if (!enabled[i]) 8432eda14cbcSMatt Macy continue; 8433eda14cbcSMatt Macy 8434eda14cbcSMatt Macy error = zfs_wait_status(zhp, i, &missing, &waited); 8435eda14cbcSMatt Macy if (error != 0 || missing) 8436eda14cbcSMatt Macy break; 8437eda14cbcSMatt Macy 8438eda14cbcSMatt Macy any_waited = (any_waited || waited); 8439eda14cbcSMatt Macy } 8440eda14cbcSMatt Macy 8441eda14cbcSMatt Macy if (error != 0 || missing || !any_waited) 8442eda14cbcSMatt Macy break; 8443eda14cbcSMatt Macy } 8444eda14cbcSMatt Macy 8445eda14cbcSMatt Macy zfs_close(zhp); 8446eda14cbcSMatt Macy 8447eda14cbcSMatt Macy return (error); 8448eda14cbcSMatt Macy } 8449eda14cbcSMatt Macy 8450eda14cbcSMatt Macy /* 8451eda14cbcSMatt Macy * Display version message 8452eda14cbcSMatt Macy */ 8453eda14cbcSMatt Macy static int 8454eda14cbcSMatt Macy zfs_do_version(int argc, char **argv) 8455eda14cbcSMatt Macy { 8456eda14cbcSMatt Macy if (zfs_version_print() == -1) 8457eda14cbcSMatt Macy return (1); 8458eda14cbcSMatt Macy 8459eda14cbcSMatt Macy return (0); 8460eda14cbcSMatt Macy } 8461eda14cbcSMatt Macy 8462eda14cbcSMatt Macy int 8463eda14cbcSMatt Macy main(int argc, char **argv) 8464eda14cbcSMatt Macy { 8465eda14cbcSMatt Macy int ret = 0; 8466eda14cbcSMatt Macy int i = 0; 8467eda14cbcSMatt Macy char *cmdname; 8468eda14cbcSMatt Macy char **newargv; 8469eda14cbcSMatt Macy 8470eda14cbcSMatt Macy (void) setlocale(LC_ALL, ""); 8471eda14cbcSMatt Macy (void) textdomain(TEXT_DOMAIN); 8472eda14cbcSMatt Macy 8473eda14cbcSMatt Macy opterr = 0; 8474eda14cbcSMatt Macy 8475eda14cbcSMatt Macy /* 8476eda14cbcSMatt Macy * Make sure the user has specified some command. 8477eda14cbcSMatt Macy */ 8478eda14cbcSMatt Macy if (argc < 2) { 8479eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing command\n")); 8480eda14cbcSMatt Macy usage(B_FALSE); 8481eda14cbcSMatt Macy } 8482eda14cbcSMatt Macy 8483eda14cbcSMatt Macy cmdname = argv[1]; 8484eda14cbcSMatt Macy 8485eda14cbcSMatt Macy /* 8486eda14cbcSMatt Macy * The 'umount' command is an alias for 'unmount' 8487eda14cbcSMatt Macy */ 8488eda14cbcSMatt Macy if (strcmp(cmdname, "umount") == 0) 8489eda14cbcSMatt Macy cmdname = "unmount"; 8490eda14cbcSMatt Macy 8491eda14cbcSMatt Macy /* 8492eda14cbcSMatt Macy * The 'recv' command is an alias for 'receive' 8493eda14cbcSMatt Macy */ 8494eda14cbcSMatt Macy if (strcmp(cmdname, "recv") == 0) 8495eda14cbcSMatt Macy cmdname = "receive"; 8496eda14cbcSMatt Macy 8497eda14cbcSMatt Macy /* 8498eda14cbcSMatt Macy * The 'snap' command is an alias for 'snapshot' 8499eda14cbcSMatt Macy */ 8500eda14cbcSMatt Macy if (strcmp(cmdname, "snap") == 0) 8501eda14cbcSMatt Macy cmdname = "snapshot"; 8502eda14cbcSMatt Macy 8503eda14cbcSMatt Macy /* 8504eda14cbcSMatt Macy * Special case '-?' 8505eda14cbcSMatt Macy */ 8506eda14cbcSMatt Macy if ((strcmp(cmdname, "-?") == 0) || 8507eda14cbcSMatt Macy (strcmp(cmdname, "--help") == 0)) 8508eda14cbcSMatt Macy usage(B_TRUE); 8509eda14cbcSMatt Macy 8510eda14cbcSMatt Macy /* 8511eda14cbcSMatt Macy * Special case '-V|--version' 8512eda14cbcSMatt Macy */ 8513eda14cbcSMatt Macy if ((strcmp(cmdname, "-V") == 0) || (strcmp(cmdname, "--version") == 0)) 8514eda14cbcSMatt Macy return (zfs_do_version(argc, argv)); 8515eda14cbcSMatt Macy 8516eda14cbcSMatt Macy if ((g_zfs = libzfs_init()) == NULL) { 8517eda14cbcSMatt Macy (void) fprintf(stderr, "%s\n", libzfs_error_init(errno)); 8518eda14cbcSMatt Macy return (1); 8519eda14cbcSMatt Macy } 8520eda14cbcSMatt Macy 8521eda14cbcSMatt Macy mnttab_file = g_zfs->libzfs_mnttab; 8522eda14cbcSMatt Macy 8523eda14cbcSMatt Macy zfs_save_arguments(argc, argv, history_str, sizeof (history_str)); 8524eda14cbcSMatt Macy 8525eda14cbcSMatt Macy libzfs_print_on_error(g_zfs, B_TRUE); 8526eda14cbcSMatt Macy 8527eda14cbcSMatt Macy /* 8528eda14cbcSMatt Macy * Many commands modify input strings for string parsing reasons. 8529eda14cbcSMatt Macy * We create a copy to protect the original argv. 8530eda14cbcSMatt Macy */ 8531eda14cbcSMatt Macy newargv = malloc((argc + 1) * sizeof (newargv[0])); 8532eda14cbcSMatt Macy for (i = 0; i < argc; i++) 8533eda14cbcSMatt Macy newargv[i] = strdup(argv[i]); 8534eda14cbcSMatt Macy newargv[argc] = NULL; 8535eda14cbcSMatt Macy 8536eda14cbcSMatt Macy /* 8537eda14cbcSMatt Macy * Run the appropriate command. 8538eda14cbcSMatt Macy */ 8539eda14cbcSMatt Macy libzfs_mnttab_cache(g_zfs, B_TRUE); 8540eda14cbcSMatt Macy if (find_command_idx(cmdname, &i) == 0) { 8541eda14cbcSMatt Macy current_command = &command_table[i]; 8542eda14cbcSMatt Macy ret = command_table[i].func(argc - 1, newargv + 1); 8543eda14cbcSMatt Macy } else if (strchr(cmdname, '=') != NULL) { 8544eda14cbcSMatt Macy verify(find_command_idx("set", &i) == 0); 8545eda14cbcSMatt Macy current_command = &command_table[i]; 8546eda14cbcSMatt Macy ret = command_table[i].func(argc, newargv); 8547eda14cbcSMatt Macy } else { 8548eda14cbcSMatt Macy (void) fprintf(stderr, gettext("unrecognized " 8549eda14cbcSMatt Macy "command '%s'\n"), cmdname); 8550eda14cbcSMatt Macy usage(B_FALSE); 8551eda14cbcSMatt Macy ret = 1; 8552eda14cbcSMatt Macy } 8553eda14cbcSMatt Macy 8554eda14cbcSMatt Macy for (i = 0; i < argc; i++) 8555eda14cbcSMatt Macy free(newargv[i]); 8556eda14cbcSMatt Macy free(newargv); 8557eda14cbcSMatt Macy 8558eda14cbcSMatt Macy if (ret == 0 && log_history) 8559eda14cbcSMatt Macy (void) zpool_log_history(g_zfs, history_str); 8560eda14cbcSMatt Macy 8561eda14cbcSMatt Macy libzfs_fini(g_zfs); 8562eda14cbcSMatt Macy 8563eda14cbcSMatt Macy /* 8564eda14cbcSMatt Macy * The 'ZFS_ABORT' environment variable causes us to dump core on exit 8565eda14cbcSMatt Macy * for the purposes of running ::findleaks. 8566eda14cbcSMatt Macy */ 8567eda14cbcSMatt Macy if (getenv("ZFS_ABORT") != NULL) { 8568eda14cbcSMatt Macy (void) printf("dumping core by request\n"); 8569eda14cbcSMatt Macy abort(); 8570eda14cbcSMatt Macy } 8571eda14cbcSMatt Macy 8572eda14cbcSMatt Macy return (ret); 8573eda14cbcSMatt Macy } 8574eda14cbcSMatt Macy 8575eda14cbcSMatt Macy #ifdef __FreeBSD__ 8576eda14cbcSMatt Macy #include <sys/jail.h> 8577eda14cbcSMatt Macy #include <jail.h> 8578eda14cbcSMatt Macy /* 8579eda14cbcSMatt Macy * Attach/detach the given dataset to/from the given jail 8580eda14cbcSMatt Macy */ 8581eda14cbcSMatt Macy /* ARGSUSED */ 8582eda14cbcSMatt Macy static int 8583eda14cbcSMatt Macy zfs_do_jail_impl(int argc, char **argv, boolean_t attach) 8584eda14cbcSMatt Macy { 8585eda14cbcSMatt Macy zfs_handle_t *zhp; 8586eda14cbcSMatt Macy int jailid, ret; 8587eda14cbcSMatt Macy 8588eda14cbcSMatt Macy /* check number of arguments */ 8589eda14cbcSMatt Macy if (argc < 3) { 8590eda14cbcSMatt Macy (void) fprintf(stderr, gettext("missing argument(s)\n")); 8591eda14cbcSMatt Macy usage(B_FALSE); 8592eda14cbcSMatt Macy } 8593eda14cbcSMatt Macy if (argc > 3) { 8594eda14cbcSMatt Macy (void) fprintf(stderr, gettext("too many arguments\n")); 8595eda14cbcSMatt Macy usage(B_FALSE); 8596eda14cbcSMatt Macy } 8597eda14cbcSMatt Macy 8598eda14cbcSMatt Macy jailid = jail_getid(argv[1]); 8599eda14cbcSMatt Macy if (jailid < 0) { 8600eda14cbcSMatt Macy (void) fprintf(stderr, gettext("invalid jail id or name\n")); 8601eda14cbcSMatt Macy usage(B_FALSE); 8602eda14cbcSMatt Macy } 8603eda14cbcSMatt Macy 8604eda14cbcSMatt Macy zhp = zfs_open(g_zfs, argv[2], ZFS_TYPE_FILESYSTEM); 8605eda14cbcSMatt Macy if (zhp == NULL) 8606eda14cbcSMatt Macy return (1); 8607eda14cbcSMatt Macy 8608eda14cbcSMatt Macy ret = (zfs_jail(zhp, jailid, attach) != 0); 8609eda14cbcSMatt Macy 8610eda14cbcSMatt Macy zfs_close(zhp); 8611eda14cbcSMatt Macy return (ret); 8612eda14cbcSMatt Macy } 8613eda14cbcSMatt Macy 8614eda14cbcSMatt Macy /* 8615eda14cbcSMatt Macy * zfs jail jailid filesystem 8616eda14cbcSMatt Macy * 8617eda14cbcSMatt Macy * Attach the given dataset to the given jail 8618eda14cbcSMatt Macy */ 8619eda14cbcSMatt Macy /* ARGSUSED */ 8620eda14cbcSMatt Macy static int 8621eda14cbcSMatt Macy zfs_do_jail(int argc, char **argv) 8622eda14cbcSMatt Macy { 8623eda14cbcSMatt Macy return (zfs_do_jail_impl(argc, argv, B_TRUE)); 8624eda14cbcSMatt Macy } 8625eda14cbcSMatt Macy 8626eda14cbcSMatt Macy /* 8627eda14cbcSMatt Macy * zfs unjail jailid filesystem 8628eda14cbcSMatt Macy * 8629eda14cbcSMatt Macy * Detach the given dataset from the given jail 8630eda14cbcSMatt Macy */ 8631eda14cbcSMatt Macy /* ARGSUSED */ 8632eda14cbcSMatt Macy static int 8633eda14cbcSMatt Macy zfs_do_unjail(int argc, char **argv) 8634eda14cbcSMatt Macy { 8635eda14cbcSMatt Macy return (zfs_do_jail_impl(argc, argv, B_FALSE)); 8636eda14cbcSMatt Macy } 8637eda14cbcSMatt Macy #endif 8638