usr/src/cmd/zfs/zfs_main.c
author Chris Gerhard <Chris.Gerhard@sun.com>
Tue, 14 Apr 2009 16:59:32 +0100
changeset 9365 7838a22eccd6
parent 8811 f8deccf701cf
child 9396 f41cf682d0d3
permissions -rw-r--r--
PSARC/2009/171 zfs list -d and zfs get -d 6762432 zfs list --depth
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     1
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     2
 * CDDL HEADER START
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     3
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     4
 * The contents of this file are subject to the terms of the
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1387
diff changeset
     5
 * Common Development and Distribution License (the "License").
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1387
diff changeset
     6
 * You may not use this file except in compliance with the License.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     7
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     8
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     9
 * or http://www.opensolaris.org/os/licensing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    10
 * See the License for the specific language governing permissions
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    11
 * and limitations under the License.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    12
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    13
 * When distributing Covered Code, include this CDDL HEADER in each
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    14
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    15
 * If applicable, add the following below this CDDL HEADER, with the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    16
 * fields enclosed by brackets "[]" replaced with your own identifying
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    17
 * information: Portions Copyright [yyyy] [name of copyright owner]
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    18
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    19
 * CDDL HEADER END
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    20
 */
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
    21
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    22
/*
8584
327a1b6dd944 6794452 zfs receive can't restore a root pool
Lori Alt <Lori.Alt@Sun.COM>
parents: 8415
diff changeset
    23
 * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
 * Use is subject to license terms.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    26
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    27
#include <assert.h>
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
    28
#include <ctype.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
#include <errno.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
#include <libgen.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
#include <libintl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
#include <libuutil.h>
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    33
#include <libnvpair.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    34
#include <locale.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    35
#include <stddef.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    36
#include <stdio.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
#include <stdlib.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
#include <strings.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
#include <unistd.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
#include <fcntl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
#include <zone.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
#include <sys/mkdev.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
#include <sys/mntent.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
#include <sys/mnttab.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
#include <sys/mount.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    46
#include <sys/stat.h>
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    47
#include <sys/avl.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    48
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    49
#include <libzfs.h>
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    50
#include <libuutil.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    51
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    52
#include "zfs_iter.h"
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
    53
#include "zfs_util.h"
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
    54
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
    55
libzfs_handle_t *g_zfs;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    56
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    57
static FILE *mnttab_file;
4988
db8abd9846d4 6595467 libzfs consumers should be allowed to write their own history (or none at all)
ek110237
parents: 4860
diff changeset
    58
static char history_str[HIS_MAX_RECORD_LEN];
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    59
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    60
static int zfs_do_clone(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    61
static int zfs_do_create(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    62
static int zfs_do_destroy(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    63
static int zfs_do_get(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    64
static int zfs_do_inherit(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    65
static int zfs_do_list(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
static int zfs_do_mount(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    67
static int zfs_do_rename(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    68
static int zfs_do_rollback(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
static int zfs_do_set(int argc, char **argv);
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
    70
static int zfs_do_upgrade(int argc, char **argv);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
static int zfs_do_snapshot(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    72
static int zfs_do_unmount(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    73
static int zfs_do_share(int argc, char **argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    74
static int zfs_do_unshare(int argc, char **argv);
1749
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
    75
static int zfs_do_send(int argc, char **argv);
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
    76
static int zfs_do_receive(int argc, char **argv);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
    77
static int zfs_do_promote(int argc, char **argv);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    78
static int zfs_do_allow(int argc, char **argv);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    79
static int zfs_do_unallow(int argc, char **argv);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    80
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    81
/*
6865
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6643
diff changeset
    82
 * Enable a reasonable set of defaults for libumem debugging on DEBUG builds.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    83
 */
6865
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6643
diff changeset
    84
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6643
diff changeset
    85
#ifdef DEBUG
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    86
const char *
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
    87
_umem_debug_init(void)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    88
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    89
	return ("default,verbose"); /* $UMEM_DEBUG setting */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    90
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    91
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    92
const char *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    93
_umem_logging_init(void)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    94
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    95
	return ("fail,contents"); /* $UMEM_LOGGING setting */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    96
}
6865
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6643
diff changeset
    97
#endif
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    98
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
    99
typedef enum {
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   100
	HELP_CLONE,
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   101
	HELP_CREATE,
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   102
	HELP_DESTROY,
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   103
	HELP_GET,
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   104
	HELP_INHERIT,
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   105
	HELP_UPGRADE,
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   106
	HELP_LIST,
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   107
	HELP_MOUNT,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   108
	HELP_PROMOTE,
1749
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
   109
	HELP_RECEIVE,
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   110
	HELP_RENAME,
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   111
	HELP_ROLLBACK,
1749
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
   112
	HELP_SEND,
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   113
	HELP_SET,
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   114
	HELP_SHARE,
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   115
	HELP_SNAPSHOT,
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   116
	HELP_UNMOUNT,
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
   117
	HELP_UNSHARE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
   118
	HELP_ALLOW,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
   119
	HELP_UNALLOW
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   120
} zfs_help_t;
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   121
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   122
typedef struct zfs_command {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   123
	const char	*name;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   124
	int		(*func)(int argc, char **argv);
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   125
	zfs_help_t	usage;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   126
} zfs_command_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   127
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   128
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   129
 * Master command table.  Each ZFS command has a name, associated function, and
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1387
diff changeset
   130
 * usage message.  The usage messages need to be internationalized, so we have
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1387
diff changeset
   131
 * to have a function to return the usage message based on a command index.
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   132
 *
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   133
 * These commands are organized according to how they are displayed in the usage
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   134
 * message.  An empty command (one with a NULL name) indicates an empty line in
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   135
 * the generic usage message.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   136
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   137
static zfs_command_t command_table[] = {
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   138
	{ "create",	zfs_do_create,		HELP_CREATE		},
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   139
	{ "destroy",	zfs_do_destroy,		HELP_DESTROY		},
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   140
	{ NULL },
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   141
	{ "snapshot",	zfs_do_snapshot,	HELP_SNAPSHOT		},
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   142
	{ "rollback",	zfs_do_rollback,	HELP_ROLLBACK		},
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   143
	{ "clone",	zfs_do_clone,		HELP_CLONE		},
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   144
	{ "promote",	zfs_do_promote,		HELP_PROMOTE		},
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   145
	{ "rename",	zfs_do_rename,		HELP_RENAME		},
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   146
	{ NULL },
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   147
	{ "list",	zfs_do_list,		HELP_LIST		},
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   148
	{ NULL },
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   149
	{ "set",	zfs_do_set,		HELP_SET		},
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   150
	{ "get", 	zfs_do_get,		HELP_GET		},
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   151
	{ "inherit",	zfs_do_inherit,		HELP_INHERIT		},
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   152
	{ "upgrade",	zfs_do_upgrade,		HELP_UPGRADE		},
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   153
	{ NULL },
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   154
	{ "mount",	zfs_do_mount,		HELP_MOUNT		},
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   155
	{ "unmount",	zfs_do_unmount,		HELP_UNMOUNT		},
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   156
	{ "share",	zfs_do_share,		HELP_SHARE		},
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   157
	{ "unshare",	zfs_do_unshare,		HELP_UNSHARE		},
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   158
	{ NULL },
1749
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
   159
	{ "send",	zfs_do_send,		HELP_SEND		},
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
   160
	{ "receive",	zfs_do_receive,		HELP_RECEIVE		},
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
   161
	{ NULL },
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
   162
	{ "allow",	zfs_do_allow,		HELP_ALLOW		},
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
   163
	{ NULL },
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
   164
	{ "unallow",	zfs_do_unallow,		HELP_UNALLOW		},
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   165
};
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   166
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   167
#define	NCOMMAND	(sizeof (command_table) / sizeof (command_table[0]))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   168
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   169
zfs_command_t *current_command;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   170
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   171
static const char *
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   172
get_usage(zfs_help_t idx)
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   173
{
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   174
	switch (idx) {
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   175
	case HELP_CLONE:
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   176
		return (gettext("\tclone [-p] [-o property=value] ... "
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   177
		    "<snapshot> <filesystem|volume>\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   178
	case HELP_CREATE:
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   179
		return (gettext("\tcreate [-p] [-o property=value] ... "
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   180
		    "<filesystem>\n"
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   181
		    "\tcreate [-ps] [-b blocksize] [-o property=value] ... "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   182
		    "-V <size> <volume>\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   183
	case HELP_DESTROY:
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   184
		return (gettext("\tdestroy [-rRf] "
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   185
		    "<filesystem|volume|snapshot>\n"));
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   186
	case HELP_GET:
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   187
		return (gettext("\tget [-rHp] [-d max] "
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   188
		    "[-o field[,...]] [-s source[,...]]\n"
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   189
		    "\t    <\"all\" | property[,...]> "
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   190
		    "[filesystem|volume|snapshot] ...\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   191
	case HELP_INHERIT:
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   192
		return (gettext("\tinherit [-r] <property> "
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   193
		    "<filesystem|volume|snapshot> ...\n"));
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   194
	case HELP_UPGRADE:
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   195
		return (gettext("\tupgrade [-v]\n"
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   196
		    "\tupgrade [-r] [-V version] <-a | filesystem ...>\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   197
	case HELP_LIST:
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   198
		return (gettext("\tlist [-rH][-d max] "
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   199
		    "[-o property[,...]] [-t type[,...]] [-s property] ...\n"
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   200
		    "\t    [-S property] ... "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   201
		    "[filesystem|volume|snapshot] ...\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   202
	case HELP_MOUNT:
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   203
		return (gettext("\tmount\n"
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   204
		    "\tmount [-vO] [-o opts] <-a | filesystem>\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   205
	case HELP_PROMOTE:
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   206
		return (gettext("\tpromote <clone-filesystem>\n"));
1749
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
   207
	case HELP_RECEIVE:
2665
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2597
diff changeset
   208
		return (gettext("\treceive [-vnF] <filesystem|volume|"
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2597
diff changeset
   209
		"snapshot>\n"
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2597
diff changeset
   210
		"\treceive [-vnF] -d <filesystem>\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   211
	case HELP_RENAME:
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   212
		return (gettext("\trename <filesystem|volume|snapshot> "
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
   213
		    "<filesystem|volume|snapshot>\n"
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   214
		    "\trename -p <filesystem|volume> <filesystem|volume>\n"
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
   215
		    "\trename -r <snapshot> <snapshot>"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   216
	case HELP_ROLLBACK:
5568
ac217d9f8190 PSARC/2007/673 zfs rollback -f obsolescence
ahrens
parents: 5481
diff changeset
   217
		return (gettext("\trollback [-rRf] <snapshot>\n"));
1749
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
   218
	case HELP_SEND:
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
   219
		return (gettext("\tsend [-R] [-[iI] snapshot] <snapshot>\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   220
	case HELP_SET:
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   221
		return (gettext("\tset <property=value> "
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   222
		    "<filesystem|volume|snapshot> ...\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   223
	case HELP_SHARE:
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   224
		return (gettext("\tshare <-a | filesystem>\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   225
	case HELP_SNAPSHOT:
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   226
		return (gettext("\tsnapshot [-r] [-o property=value] ... "
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   227
		    "<filesystem@snapname|volume@snapname>\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   228
	case HELP_UNMOUNT:
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   229
		return (gettext("\tunmount [-f] "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   230
		    "<-a | filesystem|mountpoint>\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   231
	case HELP_UNSHARE:
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   232
		return (gettext("\tunshare [-f] "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   233
		    "<-a | filesystem|mountpoint>\n"));
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
   234
	case HELP_ALLOW:
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   235
		return (gettext("\tallow [-ldug] "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   236
		    "<\"everyone\"|user|group>[,...] <perm|@setname>[,...]\n"
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   237
		    "\t    <filesystem|volume>\n"
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   238
		    "\tallow [-ld] -e <perm|@setname>[,...] "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   239
		    "<filesystem|volume>\n"
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   240
		    "\tallow -c <perm|@setname>[,...] <filesystem|volume>\n"
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   241
		    "\tallow -s @setname <perm|@setname>[,...] "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   242
		    "<filesystem|volume>\n"));
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
   243
	case HELP_UNALLOW:
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   244
		return (gettext("\tunallow [-rldug] "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   245
		    "<\"everyone\"|user|group>[,...]\n"
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   246
		    "\t    [<perm|@setname>[,...]] <filesystem|volume>\n"
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   247
		    "\tunallow [-rld] -e [<perm|@setname>[,...]] "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   248
		    "<filesystem|volume>\n"
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   249
		    "\tunallow [-r] -c [<perm|@setname>[,...]] "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   250
		    "<filesystem|volume>\n"
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   251
		    "\tunallow [-r] -s @setname [<perm|@setname>[,...]] "
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
   252
		    "<filesystem|volume>\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   253
	}
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   254
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   255
	abort();
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   256
	/* NOTREACHED */
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   257
}
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   258
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   259
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   260
 * Utility function to guarantee malloc() success.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   261
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   262
void *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   263
safe_malloc(size_t size)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   264
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   265
	void *data;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   266
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   267
	if ((data = calloc(1, size)) == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   268
		(void) fprintf(stderr, "internal error: out of memory\n");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   269
		exit(1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   270
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   271
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   272
	return (data);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   273
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   274
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   275
/*
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   276
 * Callback routine that will print out information for each of
3654
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   277
 * the properties.
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   278
 */
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   279
static int
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   280
usage_prop_cb(int prop, void *cb)
3654
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   281
{
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   282
	FILE *fp = cb;
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   283
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6289
diff changeset
   284
	(void) fprintf(fp, "\t%-15s ", zfs_prop_to_name(prop));
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6289
diff changeset
   285
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6289
diff changeset
   286
	if (zfs_prop_readonly(prop))
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6289
diff changeset
   287
		(void) fprintf(fp, " NO    ");
3654
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   288
	else
6643
3a34b0dbb107 6625086 changing cachefile doesn't remove old cache on last user
eschrock
parents: 6289
diff changeset
   289
		(void) fprintf(fp, "YES    ");
3654
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   290
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   291
	if (zfs_prop_inheritable(prop))
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   292
		(void) fprintf(fp, "  YES   ");
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   293
	else
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   294
		(void) fprintf(fp, "   NO   ");
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   295
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   296
	if (zfs_prop_values(prop) == NULL)
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   297
		(void) fprintf(fp, "-\n");
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   298
	else
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   299
		(void) fprintf(fp, "%s\n", zfs_prop_values(prop));
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   300
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   301
	return (ZPROP_CONT);
3654
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   302
}
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   303
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   304
/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   305
 * Display usage message.  If we're inside a command, display only the usage for
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   306
 * that command.  Otherwise, iterate over the entire command table and display
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   307
 * a complete usage message.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   308
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   309
static void
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   310
usage(boolean_t requested)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   311
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   312
	int i;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   313
	boolean_t show_properties = B_FALSE;
5993
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   314
	boolean_t show_permissions = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   315
	FILE *fp = requested ? stdout : stderr;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   316
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   317
	if (current_command == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   318
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   319
		(void) fprintf(fp, gettext("usage: zfs command args ...\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   320
		(void) fprintf(fp,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   321
		    gettext("where 'command' is one of the following:\n\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   322
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   323
		for (i = 0; i < NCOMMAND; i++) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   324
			if (command_table[i].name == NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   325
				(void) fprintf(fp, "\n");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   326
			else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   327
				(void) fprintf(fp, "%s",
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   328
				    get_usage(command_table[i].usage));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   329
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   330
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   331
		(void) fprintf(fp, gettext("\nEach dataset is of the form: "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   332
		    "pool/[dataset/]*dataset[@name]\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   333
	} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   334
		(void) fprintf(fp, gettext("usage:\n"));
1387
7dc47b4865df 6340747 i18n : zfs command line tools don't have correctly i18n'd usage messages
eschrock
parents: 1356
diff changeset
   335
		(void) fprintf(fp, "%s", get_usage(current_command->usage));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   336
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   337
2190
9e8f51a4bf78 6401400 zfs(1) usage output is excessively long
darrenm
parents: 2169
diff changeset
   338
	if (current_command != NULL &&
9e8f51a4bf78 6401400 zfs(1) usage output is excessively long
darrenm
parents: 2169
diff changeset
   339
	    (strcmp(current_command->name, "set") == 0 ||
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   340
	    strcmp(current_command->name, "get") == 0 ||
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   341
	    strcmp(current_command->name, "inherit") == 0 ||
2190
9e8f51a4bf78 6401400 zfs(1) usage output is excessively long
darrenm
parents: 2169
diff changeset
   342
	    strcmp(current_command->name, "list") == 0))
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   343
		show_properties = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   344
5993
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   345
	if (current_command != NULL &&
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   346
	    (strcmp(current_command->name, "allow") == 0 ||
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   347
	    strcmp(current_command->name, "unallow") == 0))
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   348
		show_permissions = B_TRUE;
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   349
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   350
	if (show_properties) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   351
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   352
		(void) fprintf(fp,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   353
		    gettext("\nThe following properties are supported:\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   354
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
   355
		(void) fprintf(fp, "\n\t%-14s %s  %s   %s\n\n",
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   356
		    "PROPERTY", "EDIT", "INHERIT", "VALUES");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   357
3654
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   358
		/* Iterate over all properties */
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   359
		(void) zprop_iter(usage_prop_cb, fp, B_FALSE, B_TRUE,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   360
		    ZFS_TYPE_DATASET);
3654
9c6042b08979 6483718 need a stable interface to get all native properties
gw25295
parents: 3635
diff changeset
   361
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   362
		(void) fprintf(fp, gettext("\nSizes are specified in bytes "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   363
		    "with standard units such as K, M, G, etc.\n"));
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7386
diff changeset
   364
		(void) fprintf(fp, gettext("\nUser-defined properties can "
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   365
		    "be specified by using a name containing a colon (:).\n"));
5993
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   366
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   367
	} else if (show_permissions) {
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   368
		(void) fprintf(fp,
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   369
		    gettext("\nThe following permissions are supported:\n"));
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   370
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   371
		zfs_deleg_permissions();
2190
9e8f51a4bf78 6401400 zfs(1) usage output is excessively long
darrenm
parents: 2169
diff changeset
   372
	} else {
9e8f51a4bf78 6401400 zfs(1) usage output is excessively long
darrenm
parents: 2169
diff changeset
   373
		(void) fprintf(fp,
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
   374
		    gettext("\nFor the property list, run: %s\n"),
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
   375
		    "zfs set|get");
5993
6309c3c0a28f 6576659 zfs allow should list delegatable perms
marks
parents: 5904
diff changeset
   376
		(void) fprintf(fp,
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
   377
		    gettext("\nFor the delegated permission list, run: %s\n"),
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
   378
		    "zfs allow|unallow");
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   379
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   380
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   381
	/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   382
	 * See comments at end of main().
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   383
	 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   384
	if (getenv("ZFS_ABORT") != NULL) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   385
		(void) printf("dumping core by request\n");
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   386
		abort();
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   387
	}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   388
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   389
	exit(requested ? 0 : 2);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   390
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   391
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   392
static int
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   393
parseprop(nvlist_t *props)
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   394
{
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   395
	char *propname = optarg;
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   396
	char *propval, *strval;
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   397
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   398
	if ((propval = strchr(propname, '=')) == NULL) {
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   399
		(void) fprintf(stderr, gettext("missing "
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   400
		    "'=' for -o option\n"));
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   401
		return (-1);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   402
	}
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   403
	*propval = '\0';
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   404
	propval++;
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   405
	if (nvlist_lookup_string(props, propname, &strval) == 0) {
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   406
		(void) fprintf(stderr, gettext("property '%s' "
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   407
		    "specified multiple times\n"), propname);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   408
		return (-1);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   409
	}
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   410
	if (nvlist_add_string(props, propname, propval) != 0) {
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   411
		(void) fprintf(stderr, gettext("internal "
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   412
		    "error: out of memory\n"));
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   413
		return (-1);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   414
	}
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   415
	return (0);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   416
}
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   417
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   418
static int
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   419
parse_depth(char *opt, int *flags)
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   420
{
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   421
	char *tmp;
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   422
	int depth;
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   423
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   424
	depth = (int)strtol(opt, &tmp, 0);
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   425
	if (*tmp) {
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   426
		(void) fprintf(stderr,
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   427
		    gettext("%s is not an integer\n"), optarg);
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   428
		usage(B_FALSE);
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   429
	}
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   430
	if (depth < 0) {
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   431
		(void) fprintf(stderr,
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   432
		    gettext("Depth can not be negative.\n"));
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   433
		usage(B_FALSE);
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   434
	}
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   435
	*flags |= (ZFS_ITER_DEPTH_LIMIT|ZFS_ITER_RECURSE);
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   436
	return (depth);
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   437
}
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
   438
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   439
/*
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   440
 * zfs clone [-p] [-o prop=value] ... <snap> <fs | vol>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   441
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   442
 * Given an existing dataset, create a writable copy whose initial contents
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   443
 * are the same as the source.  The newly created dataset maintains a
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   444
 * dependency on the original; the original cannot be destroyed so long as
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   445
 * the clone exists.
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   446
 *
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   447
 * The '-p' flag creates all the non-existing ancestors of the target first.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   448
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   449
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   450
zfs_do_clone(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   451
{
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   452
	zfs_handle_t *zhp = NULL;
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   453
	boolean_t parents = B_FALSE;
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   454
	nvlist_t *props;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   455
	int ret;
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   456
	int c;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   457
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   458
	if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) {
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   459
		(void) fprintf(stderr, gettext("internal error: "
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   460
		    "out of memory\n"));
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   461
		return (1);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   462
	}
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   463
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   464
	/* check options */
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   465
	while ((c = getopt(argc, argv, "o:p")) != -1) {
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   466
		switch (c) {
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   467
		case 'o':
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   468
			if (parseprop(props))
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   469
				return (1);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   470
			break;
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   471
		case 'p':
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   472
			parents = B_TRUE;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   473
			break;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   474
		case '?':
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   475
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   476
			    optopt);
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   477
			goto usage;
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   478
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   479
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   480
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   481
	argc -= optind;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   482
	argv += optind;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   483
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   484
	/* check number of arguments */
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   485
	if (argc < 1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   486
		(void) fprintf(stderr, gettext("missing source dataset "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   487
		    "argument\n"));
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   488
		goto usage;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   489
	}
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   490
	if (argc < 2) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   491
		(void) fprintf(stderr, gettext("missing target dataset "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   492
		    "argument\n"));
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   493
		goto usage;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   494
	}
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   495
	if (argc > 2) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   496
		(void) fprintf(stderr, gettext("too many arguments\n"));
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   497
		goto usage;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   498
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   499
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   500
	/* open the source dataset */
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   501
	if ((zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_SNAPSHOT)) == NULL)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   502
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   503
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   504
	if (parents && zfs_name_valid(argv[1], ZFS_TYPE_FILESYSTEM |
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   505
	    ZFS_TYPE_VOLUME)) {
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   506
		/*
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   507
		 * Now create the ancestors of the target dataset.  If the
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   508
		 * target already exists and '-p' option was used we should not
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   509
		 * complain.
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   510
		 */
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   511
		if (zfs_dataset_exists(g_zfs, argv[1], ZFS_TYPE_FILESYSTEM |
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   512
		    ZFS_TYPE_VOLUME))
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   513
			return (0);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   514
		if (zfs_create_ancestors(g_zfs, argv[1]) != 0)
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   515
			return (1);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   516
	}
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   517
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   518
	/* pass to libzfs */
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   519
	ret = zfs_clone(zhp, argv[1], props);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   520
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   521
	/* create the mountpoint if necessary */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   522
	if (ret == 0) {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   523
		zfs_handle_t *clone;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   524
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   525
		clone = zfs_open(g_zfs, argv[1], ZFS_TYPE_DATASET);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   526
		if (clone != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   527
			if ((ret = zfs_mount(clone, NULL, 0)) == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   528
				ret = zfs_share(clone);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   529
			zfs_close(clone);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   530
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   531
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   532
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   533
	zfs_close(zhp);
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   534
	nvlist_free(props);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   535
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   536
	return (!!ret);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   537
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   538
usage:
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   539
	if (zhp)
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   540
		zfs_close(zhp);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   541
	nvlist_free(props);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   542
	usage(B_FALSE);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   543
	return (-1);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   544
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   545
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   546
/*
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   547
 * zfs create [-p] [-o prop=value] ... fs
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   548
 * zfs create [-ps] [-b blocksize] [-o prop=value] ... -V vol size
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   549
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   550
 * Create a new dataset.  This command can be used to create filesystems
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   551
 * and volumes.  Snapshot creation is handled by 'zfs snapshot'.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   552
 * For volumes, the user must specify a size to be used.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   553
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   554
 * The '-s' flag applies only to volumes, and indicates that we should not try
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   555
 * to set the reservation for this volume.  By default we set a reservation
5481
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   556
 * equal to the size for any volume.  For pools with SPA_VERSION >=
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   557
 * SPA_VERSION_REFRESERVATION, we set a refreservation instead.
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   558
 *
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   559
 * The '-p' flag creates all the non-existing ancestors of the target first.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   560
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   561
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   562
zfs_do_create(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   563
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   564
	zfs_type_t type = ZFS_TYPE_FILESYSTEM;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   565
	zfs_handle_t *zhp = NULL;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   566
	uint64_t volsize;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   567
	int c;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   568
	boolean_t noreserve = B_FALSE;
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
   569
	boolean_t bflag = B_FALSE;
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   570
	boolean_t parents = B_FALSE;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   571
	int ret = 1;
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   572
	nvlist_t *props;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   573
	uint64_t intval;
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   574
	int canmount;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   575
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   576
	if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   577
		(void) fprintf(stderr, gettext("internal error: "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   578
		    "out of memory\n"));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   579
		return (1);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   580
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   581
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   582
	/* check options */
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   583
	while ((c = getopt(argc, argv, ":V:b:so:p")) != -1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   584
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   585
		case 'V':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   586
			type = ZFS_TYPE_VOLUME;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   587
			if (zfs_nicestrtonum(g_zfs, optarg, &intval) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   588
				(void) fprintf(stderr, gettext("bad volume "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   589
				    "size '%s': %s\n"), optarg,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   590
				    libzfs_error_description(g_zfs));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   591
				goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   592
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   593
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   594
			if (nvlist_add_uint64(props,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   595
			    zfs_prop_to_name(ZFS_PROP_VOLSIZE),
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   596
			    intval) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   597
				(void) fprintf(stderr, gettext("internal "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   598
				    "error: out of memory\n"));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   599
				goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   600
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   601
			volsize = intval;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   602
			break;
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   603
		case 'p':
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   604
			parents = B_TRUE;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   605
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   606
		case 'b':
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
   607
			bflag = B_TRUE;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   608
			if (zfs_nicestrtonum(g_zfs, optarg, &intval) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   609
				(void) fprintf(stderr, gettext("bad volume "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   610
				    "block size '%s': %s\n"), optarg,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   611
				    libzfs_error_description(g_zfs));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   612
				goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   613
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   614
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   615
			if (nvlist_add_uint64(props,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   616
			    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE),
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   617
			    intval) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   618
				(void) fprintf(stderr, gettext("internal "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   619
				    "error: out of memory\n"));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   620
				goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   621
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   622
			break;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   623
		case 'o':
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   624
			if (parseprop(props))
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   625
				goto error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   626
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   627
		case 's':
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   628
			noreserve = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   629
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   630
		case ':':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   631
			(void) fprintf(stderr, gettext("missing size "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   632
			    "argument\n"));
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   633
			goto badusage;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   634
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   635
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   636
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   637
			    optopt);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   638
			goto badusage;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   639
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   640
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   641
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
   642
	if ((bflag || noreserve) && type != ZFS_TYPE_VOLUME) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
   643
		(void) fprintf(stderr, gettext("'-s' and '-b' can only be "
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
   644
		    "used when creating a volume\n"));
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   645
		goto badusage;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   646
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   647
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   648
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   649
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   650
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   651
	/* check number of arguments */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   652
	if (argc == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   653
		(void) fprintf(stderr, gettext("missing %s argument\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   654
		    zfs_type_to_name(type));
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   655
		goto badusage;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   656
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   657
	if (argc > 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   658
		(void) fprintf(stderr, gettext("too many arguments\n"));
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   659
		goto badusage;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   660
	}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   661
5481
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   662
	if (type == ZFS_TYPE_VOLUME && !noreserve) {
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   663
		zpool_handle_t *zpool_handle;
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   664
		uint64_t spa_version;
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   665
		char *p;
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   666
		zfs_prop_t resv_prop;
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
   667
		char *strval;
5481
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   668
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   669
		if (p = strchr(argv[0], '/'))
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   670
			*p = '\0';
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   671
		zpool_handle = zpool_open(g_zfs, argv[0]);
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   672
		if (p != NULL)
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   673
			*p = '/';
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   674
		if (zpool_handle == NULL)
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   675
			goto error;
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   676
		spa_version = zpool_get_prop_int(zpool_handle,
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   677
		    ZPOOL_PROP_VERSION, NULL);
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   678
		zpool_close(zpool_handle);
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   679
		if (spa_version >= SPA_VERSION_REFRESERVATION)
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   680
			resv_prop = ZFS_PROP_REFRESERVATION;
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   681
		else
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   682
			resv_prop = ZFS_PROP_RESERVATION;
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   683
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   684
		if (nvlist_lookup_string(props, zfs_prop_to_name(resv_prop),
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   685
		    &strval) != 0) {
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   686
			if (nvlist_add_uint64(props,
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   687
			    zfs_prop_to_name(resv_prop), volsize) != 0) {
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   688
				(void) fprintf(stderr, gettext("internal "
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   689
				    "error: out of memory\n"));
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   690
				nvlist_free(props);
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   691
				return (1);
1364fb7de75d 6619182 new non-sparse zvols should get refreservations
ck153898
parents: 5446
diff changeset
   692
			}
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   693
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   694
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   695
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   696
	if (parents && zfs_name_valid(argv[0], type)) {
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   697
		/*
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   698
		 * Now create the ancestors of target dataset.  If the target
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   699
		 * already exists and '-p' option was used we should not
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   700
		 * complain.
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   701
		 */
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   702
		if (zfs_dataset_exists(g_zfs, argv[0], type)) {
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   703
			ret = 0;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   704
			goto error;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   705
		}
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   706
		if (zfs_create_ancestors(g_zfs, argv[0]) != 0)
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   707
			goto error;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   708
	}
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
   709
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   710
	/* pass to libzfs */
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   711
	if (zfs_create(g_zfs, argv[0], type, props) != 0)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   712
		goto error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   713
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   714
	if ((zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_DATASET)) == NULL)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   715
		goto error;
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   716
	/*
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   717
	 * if the user doesn't want the dataset automatically mounted,
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   718
	 * then skip the mount/share step
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   719
	 */
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   720
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   721
	canmount = zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   722
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   723
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   724
	 * Mount and/or share the new filesystem as appropriate.  We provide a
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   725
	 * verbose error message to let the user know that their filesystem was
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   726
	 * in fact created, even if we failed to mount or share it.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   727
	 */
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   728
	ret = 0;
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   729
	if (canmount == ZFS_CANMOUNT_ON) {
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   730
		if (zfs_mount(zhp, NULL, 0) != 0) {
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   731
			(void) fprintf(stderr, gettext("filesystem "
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   732
			    "successfully created, but not mounted\n"));
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   733
			ret = 1;
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   734
		} else if (zfs_share(zhp) != 0) {
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   735
			(void) fprintf(stderr, gettext("filesystem "
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   736
			    "successfully created, but not shared\n"));
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   737
			ret = 1;
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
   738
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   739
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   740
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   741
error:
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   742
	if (zhp)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   743
		zfs_close(zhp);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   744
	nvlist_free(props);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   745
	return (ret);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   746
badusage:
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   747
	nvlist_free(props);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   748
	usage(B_FALSE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   749
	return (2);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   750
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   751
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   752
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   753
 * zfs destroy [-rf] <fs, snap, vol>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   754
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   755
 * 	-r	Recursively destroy all children
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   756
 * 	-R	Recursively destroy all dependents, including clones
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   757
 * 	-f	Force unmounting of any dependents
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   758
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   759
 * Destroys the given dataset.  By default, it will unmount any filesystems,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   760
 * and refuse to destroy a dataset that has any dependents.  A dependent can
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   761
 * either be a child, or a clone of a child.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   762
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   763
typedef struct destroy_cbdata {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   764
	boolean_t	cb_first;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   765
	int		cb_force;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   766
	int		cb_recurse;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   767
	int		cb_error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   768
	int		cb_needforce;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   769
	int		cb_doclones;
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
   770
	boolean_t	cb_closezhp;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   771
	zfs_handle_t	*cb_target;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   772
	char		*cb_snapname;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   773
} destroy_cbdata_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   774
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   775
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   776
 * Check for any dependents based on the '-r' or '-R' flags.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   777
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   778
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   779
destroy_check_dependent(zfs_handle_t *zhp, void *data)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   780
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   781
	destroy_cbdata_t *cbp = data;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   782
	const char *tname = zfs_get_name(cbp->cb_target);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   783
	const char *name = zfs_get_name(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   784
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   785
	if (strncmp(tname, name, strlen(tname)) == 0 &&
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   786
	    (name[strlen(tname)] == '/' || name[strlen(tname)] == '@')) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   787
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   788
		 * This is a direct descendant, not a clone somewhere else in
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   789
		 * the hierarchy.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   790
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   791
		if (cbp->cb_recurse)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   792
			goto out;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   793
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   794
		if (cbp->cb_first) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   795
			(void) fprintf(stderr, gettext("cannot destroy '%s': "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   796
			    "%s has children\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   797
			    zfs_get_name(cbp->cb_target),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   798
			    zfs_type_to_name(zfs_get_type(cbp->cb_target)));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   799
			(void) fprintf(stderr, gettext("use '-r' to destroy "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   800
			    "the following datasets:\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   801
			cbp->cb_first = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   802
			cbp->cb_error = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   803
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   804
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   805
		(void) fprintf(stderr, "%s\n", zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   806
	} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   807
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   808
		 * This is a clone.  We only want to report this if the '-r'
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   809
		 * wasn't specified, or the target is a snapshot.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   810
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   811
		if (!cbp->cb_recurse &&
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   812
		    zfs_get_type(cbp->cb_target) != ZFS_TYPE_SNAPSHOT)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   813
			goto out;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   814
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   815
		if (cbp->cb_first) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   816
			(void) fprintf(stderr, gettext("cannot destroy '%s': "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   817
			    "%s has dependent clones\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   818
			    zfs_get_name(cbp->cb_target),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   819
			    zfs_type_to_name(zfs_get_type(cbp->cb_target)));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   820
			(void) fprintf(stderr, gettext("use '-R' to destroy "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   821
			    "the following datasets:\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   822
			cbp->cb_first = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   823
			cbp->cb_error = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   824
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   825
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   826
		(void) fprintf(stderr, "%s\n", zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   827
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   828
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   829
out:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   830
	zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   831
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   832
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   833
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   834
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   835
destroy_callback(zfs_handle_t *zhp, void *data)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   836
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   837
	destroy_cbdata_t *cbp = data;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   838
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   839
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   840
	 * Ignore pools (which we've already flagged as an error before getting
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   841
	 * here.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   842
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   843
	if (strchr(zfs_get_name(zhp), '/') == NULL &&
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   844
	    zfs_get_type(zhp) == ZFS_TYPE_FILESYSTEM) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   845
		zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   846
		return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   847
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   848
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   849
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   850
	 * Bail out on the first error.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   851
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   852
	if (zfs_unmount(zhp, NULL, cbp->cb_force ? MS_FORCE : 0) != 0 ||
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   853
	    zfs_destroy(zhp) != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   854
		zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   855
		return (-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   856
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   857
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   858
	zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   859
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   860
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   861
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   862
static int
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   863
destroy_snap_clones(zfs_handle_t *zhp, void *arg)
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   864
{
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   865
	destroy_cbdata_t *cbp = arg;
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   866
	char thissnap[MAXPATHLEN];
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   867
	zfs_handle_t *szhp;
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
   868
	boolean_t closezhp = cbp->cb_closezhp;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
   869
	int rv;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   870
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   871
	(void) snprintf(thissnap, sizeof (thissnap),
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   872
	    "%s@%s", zfs_get_name(zhp), cbp->cb_snapname);
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   873
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   874
	libzfs_print_on_error(g_zfs, B_FALSE);
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   875
	szhp = zfs_open(g_zfs, thissnap, ZFS_TYPE_SNAPSHOT);
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   876
	libzfs_print_on_error(g_zfs, B_TRUE);
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   877
	if (szhp) {
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   878
		/*
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   879
		 * Destroy any clones of this snapshot
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   880
		 */
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   881
		if (zfs_iter_dependents(szhp, B_FALSE, destroy_callback,
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   882
		    cbp) != 0) {
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   883
			zfs_close(szhp);
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
   884
			if (closezhp)
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
   885
				zfs_close(zhp);
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   886
			return (-1);
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   887
		}
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   888
		zfs_close(szhp);
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   889
	}
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   890
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
   891
	cbp->cb_closezhp = B_TRUE;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
   892
	rv = zfs_iter_filesystems(zhp, destroy_snap_clones, arg);
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
   893
	if (closezhp)
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
   894
		zfs_close(zhp);
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
   895
	return (rv);
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   896
}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   897
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   898
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   899
zfs_do_destroy(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   900
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   901
	destroy_cbdata_t cb = { 0 };
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   902
	int c;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   903
	zfs_handle_t *zhp;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   904
	char *cp;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   905
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   906
	/* check options */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   907
	while ((c = getopt(argc, argv, "frR")) != -1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   908
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   909
		case 'f':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   910
			cb.cb_force = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   911
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   912
		case 'r':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   913
			cb.cb_recurse = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   914
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   915
		case 'R':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   916
			cb.cb_recurse = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   917
			cb.cb_doclones = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   918
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   919
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   920
		default:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   921
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   922
			    optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   923
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   924
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   925
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   926
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   927
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   928
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   929
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   930
	/* check number of arguments */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   931
	if (argc == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   932
		(void) fprintf(stderr, gettext("missing path argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   933
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   934
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   935
	if (argc > 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   936
		(void) fprintf(stderr, gettext("too many arguments\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   937
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   938
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   939
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   940
	/*
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   941
	 * If we are doing recursive destroy of a snapshot, then the
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   942
	 * named snapshot may not exist.  Go straight to libzfs.
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   943
	 */
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   944
	if (cb.cb_recurse && (cp = strchr(argv[0], '@'))) {
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   945
		int ret;
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   946
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   947
		*cp = '\0';
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   948
		if ((zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_DATASET)) == NULL)
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   949
			return (1);
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   950
		*cp = '@';
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   951
		cp++;
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   952
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   953
		if (cb.cb_doclones) {
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   954
			cb.cb_snapname = cp;
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   955
			if (destroy_snap_clones(zhp, &cb) != 0) {
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   956
				zfs_close(zhp);
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   957
				return (1);
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   958
			}
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   959
		}
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   960
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   961
		ret = zfs_destroy_snaps(zhp, cp);
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   962
		zfs_close(zhp);
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   963
		if (ret) {
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   964
			(void) fprintf(stderr,
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   965
			    gettext("no snapshots destroyed\n"));
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   966
		}
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   967
		return (ret != 0);
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   968
	}
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   969
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
   970
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   971
	/* Open the given dataset */
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
   972
	if ((zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_DATASET)) == NULL)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   973
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   974
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   975
	cb.cb_target = zhp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   976
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   977
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   978
	 * Perform an explicit check for pools before going any further.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   979
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   980
	if (!cb.cb_recurse && strchr(zfs_get_name(zhp), '/') == NULL &&
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   981
	    zfs_get_type(zhp) == ZFS_TYPE_FILESYSTEM) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   982
		(void) fprintf(stderr, gettext("cannot destroy '%s': "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   983
		    "operation does not apply to pools\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   984
		    zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   985
		(void) fprintf(stderr, gettext("use 'zfs destroy -r "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   986
		    "%s' to destroy all datasets in the pool\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   987
		    zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   988
		(void) fprintf(stderr, gettext("use 'zpool destroy %s' "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   989
		    "to destroy the pool itself\n"), zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   990
		zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   991
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   992
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   993
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   994
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   995
	 * Check for any dependents and/or clones.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   996
	 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
   997
	cb.cb_first = B_TRUE;
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   998
	if (!cb.cb_doclones &&
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
   999
	    zfs_iter_dependents(zhp, B_TRUE, destroy_check_dependent,
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1000
	    &cb) != 0) {
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1001
		zfs_close(zhp);
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1002
		return (1);
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1003
	}
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1004
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1005
	if (cb.cb_error ||
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1006
	    zfs_iter_dependents(zhp, B_FALSE, destroy_callback, &cb) != 0) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1007
		zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1008
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1009
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1010
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1011
	/*
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1012
	 * Do the real thing.  The callback will close the handle regardless of
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1013
	 * whether it succeeds or not.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1014
	 */
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1015
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1016
	if (destroy_callback(zhp, &cb) != 0)
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1017
		return (1);
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1018
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  1019
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  1020
	return (0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1021
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1022
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1023
/*
866
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1024
 * zfs get [-rHp] [-o field[,field]...] [-s source[,source]...]
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1025
 * 	< all | property[,property]... > < fs | snap | vol > ...
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1026
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1027
 *	-r	recurse over any child datasets
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1028
 *	-H	scripted mode.  Headers are stripped, and fields are separated
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1029
 *		by tabs instead of spaces.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1030
 *	-o	Set of fields to display.  One of "name,property,value,source".
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1031
 *		Default is all four.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1032
 *	-s	Set of sources to allow.  One of
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1033
 *		"local,default,inherited,temporary,none".  Default is all
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1034
 *		five.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1035
 *	-p	Display values in parsable (literal) format.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1036
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1037
 *  Prints properties for the given datasets.  The user can control which
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1038
 *  columns to display as well as which property types to allow.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1039
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1040
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1041
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1042
 * Invoked to display the properties for a single dataset.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1043
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1044
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1045
get_callback(zfs_handle_t *zhp, void *data)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1046
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1047
	char buf[ZFS_MAXPROPLEN];
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1048
	zprop_source_t sourcetype;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1049
	char source[ZFS_MAXNAMELEN];
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1050
	zprop_get_cbdata_t *cbp = data;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1051
	nvlist_t *userprop = zfs_get_user_props(zhp);
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1052
	zprop_list_t *pl = cbp->cb_proplist;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1053
	nvlist_t *propval;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1054
	char *strval;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1055
	char *sourceval;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1056
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1057
	for (; pl != NULL; pl = pl->pl_next) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1058
		/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1059
		 * Skip the special fake placeholder.  This will also skip over
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1060
		 * the name property when 'all' is specified.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1061
		 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1062
		if (pl->pl_prop == ZFS_PROP_NAME &&
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1063
		    pl == cbp->cb_proplist)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1064
			continue;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1065
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1066
		if (pl->pl_prop != ZPROP_INVAL) {
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1067
			if (zfs_prop_get(zhp, pl->pl_prop, buf,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1068
			    sizeof (buf), &sourcetype, source,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1069
			    sizeof (source),
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1070
			    cbp->cb_literal) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1071
				if (pl->pl_all)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1072
					continue;
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  1073
				if (!zfs_prop_valid_for_type(pl->pl_prop,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1074
				    ZFS_TYPE_DATASET)) {
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  1075
					(void) fprintf(stderr,
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  1076
					    gettext("No such property '%s'\n"),
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  1077
					    zfs_prop_to_name(pl->pl_prop));
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  1078
					continue;
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  1079
				}
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1080
				sourcetype = ZPROP_SRC_NONE;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1081
				(void) strlcpy(buf, "-", sizeof (buf));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1082
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1083
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1084
			zprop_print_one_property(zfs_get_name(zhp), cbp,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1085
			    zfs_prop_to_name(pl->pl_prop),
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1086
			    buf, sourcetype, source);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1087
		} else {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1088
			if (nvlist_lookup_nvlist(userprop,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1089
			    pl->pl_user_prop, &propval) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1090
				if (pl->pl_all)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1091
					continue;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1092
				sourcetype = ZPROP_SRC_NONE;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1093
				strval = "-";
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1094
			} else {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1095
				verify(nvlist_lookup_string(propval,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1096
				    ZPROP_VALUE, &strval) == 0);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1097
				verify(nvlist_lookup_string(propval,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1098
				    ZPROP_SOURCE, &sourceval) == 0);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1099
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1100
				if (strcmp(sourceval,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1101
				    zfs_get_name(zhp)) == 0) {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1102
					sourcetype = ZPROP_SRC_LOCAL;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1103
				} else {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1104
					sourcetype = ZPROP_SRC_INHERITED;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1105
					(void) strlcpy(source,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1106
					    sourceval, sizeof (source));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1107
				}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1108
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1109
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1110
			zprop_print_one_property(zfs_get_name(zhp), cbp,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1111
			    pl->pl_user_prop, strval, sourcetype,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1112
			    source);
866
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1113
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1114
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1115
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1116
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1117
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1118
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1119
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1120
zfs_do_get(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1121
{
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1122
	zprop_get_cbdata_t cb = { 0 };
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1123
	int i, c, flags = 0;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1124
	char *value, *fields;
866
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1125
	int ret;
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1126
	int limit = 0;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1127
	zprop_list_t fake_name = { 0 };
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1128
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1129
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1130
	 * Set up default columns and sources.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1131
	 */
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1132
	cb.cb_sources = ZPROP_SRC_ALL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1133
	cb.cb_columns[0] = GET_COL_NAME;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1134
	cb.cb_columns[1] = GET_COL_PROPERTY;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1135
	cb.cb_columns[2] = GET_COL_VALUE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1136
	cb.cb_columns[3] = GET_COL_SOURCE;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1137
	cb.cb_type = ZFS_TYPE_DATASET;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1138
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1139
	/* check options */
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1140
	while ((c = getopt(argc, argv, ":d:o:s:rHp")) != -1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1141
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1142
		case 'p':
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1143
			cb.cb_literal = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1144
			break;
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1145
		case 'd':
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1146
			limit = parse_depth(optarg, &flags);
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1147
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1148
		case 'r':
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1149
			flags |= ZFS_ITER_RECURSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1150
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1151
		case 'H':
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1152
			cb.cb_scripted = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1153
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1154
		case ':':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1155
			(void) fprintf(stderr, gettext("missing argument for "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1156
			    "'%c' option\n"), optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1157
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1158
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1159
		case 'o':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1160
			/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1161
			 * Process the set of columns to display.  We zero out
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1162
			 * the structure to give us a blank slate.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1163
			 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1164
			bzero(&cb.cb_columns, sizeof (cb.cb_columns));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1165
			i = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1166
			while (*optarg != '\0') {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1167
				static char *col_subopts[] =
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1168
				    { "name", "property", "value", "source",
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1169
				    NULL };
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1170
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1171
				if (i == 4) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1172
					(void) fprintf(stderr, gettext("too "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1173
					    "many fields given to -o "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1174
					    "option\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1175
					usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1176
				}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1177
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1178
				switch (getsubopt(&optarg, col_subopts,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1179
				    &value)) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1180
				case 0:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1181
					cb.cb_columns[i++] = GET_COL_NAME;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1182
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1183
				case 1:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1184
					cb.cb_columns[i++] = GET_COL_PROPERTY;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1185
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1186
				case 2:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1187
					cb.cb_columns[i++] = GET_COL_VALUE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1188
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1189
				case 3:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1190
					cb.cb_columns[i++] = GET_COL_SOURCE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1191
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1192
				default:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1193
					(void) fprintf(stderr,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1194
					    gettext("invalid column name "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1195
					    "'%s'\n"), value);
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  1196
					usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1197
				}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1198
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1199
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1200
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1201
		case 's':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1202
			cb.cb_sources = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1203
			while (*optarg != '\0') {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1204
				static char *source_subopts[] = {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1205
					"local", "default", "inherited",
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1206
					"temporary", "none", NULL };
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1207
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1208
				switch (getsubopt(&optarg, source_subopts,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1209
				    &value)) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1210
				case 0:
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1211
					cb.cb_sources |= ZPROP_SRC_LOCAL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1212
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1213
				case 1:
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1214
					cb.cb_sources |= ZPROP_SRC_DEFAULT;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1215
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1216
				case 2:
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1217
					cb.cb_sources |= ZPROP_SRC_INHERITED;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1218
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1219
				case 3:
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1220
					cb.cb_sources |= ZPROP_SRC_TEMPORARY;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1221
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1222
				case 4:
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1223
					cb.cb_sources |= ZPROP_SRC_NONE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1224
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1225
				default:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1226
					(void) fprintf(stderr,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1227
					    gettext("invalid source "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1228
					    "'%s'\n"), value);
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  1229
					usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1230
				}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1231
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1232
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1233
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1234
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1235
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1236
			    optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1237
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1238
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1239
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1240
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1241
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1242
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1243
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1244
	if (argc < 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1245
		(void) fprintf(stderr, gettext("missing property "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1246
		    "argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1247
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1248
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1249
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1250
	fields = argv[0];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1251
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1252
	if (zprop_get_list(g_zfs, fields, &cb.cb_proplist, ZFS_TYPE_DATASET)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1253
	    != 0)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1254
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1255
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1256
	argc--;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1257
	argv++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1258
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1259
	/*
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1260
	 * As part of zfs_expand_proplist(), we keep track of the maximum column
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1261
	 * width for each property.  For the 'NAME' (and 'SOURCE') columns, we
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1262
	 * need to know the maximum name length.  However, the user likely did
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1263
	 * not specify 'name' as one of the properties to fetch, so we need to
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1264
	 * make sure we always include at least this property for
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1265
	 * print_get_headers() to work properly.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1266
	 */
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1267
	if (cb.cb_proplist != NULL) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1268
		fake_name.pl_prop = ZFS_PROP_NAME;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1269
		fake_name.pl_width = strlen(gettext("NAME"));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1270
		fake_name.pl_next = cb.cb_proplist;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1271
		cb.cb_proplist = &fake_name;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1272
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1273
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1274
	cb.cb_first = B_TRUE;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1275
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1276
	/* run for each object */
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1277
	ret = zfs_for_each(argc, argv, flags, ZFS_TYPE_DATASET, NULL,
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1278
	    &cb.cb_proplist, limit, get_callback, &cb);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1279
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1280
	if (cb.cb_proplist == &fake_name)
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1281
		zprop_free_list(fake_name.pl_next);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1282
	else
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1283
		zprop_free_list(cb.cb_proplist);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1284
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1285
	return (ret);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1286
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1287
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1288
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1289
 * inherit [-r] <property> <fs|vol> ...
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1290
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1291
 * 	-r	Recurse over all children
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1292
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1293
 * For each dataset specified on the command line, inherit the given property
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1294
 * from its parent.  Inheriting a property at the pool level will cause it to
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1295
 * use the default value.  The '-r' flag will recurse over all children, and is
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1296
 * useful for setting a property on a hierarchy-wide basis, regardless of any
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1297
 * local modifications for each dataset.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1298
 */
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  1299
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1300
static int
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1301
inherit_recurse_cb(zfs_handle_t *zhp, void *data)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1302
{
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1303
	char *propname = data;
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1304
	zfs_prop_t prop = zfs_name_to_prop(propname);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1305
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1306
	/*
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1307
	 * If we're doing it recursively, then ignore properties that
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1308
	 * are not valid for this type of dataset.
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1309
	 */
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1310
	if (prop != ZPROP_INVAL &&
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1311
	    !zfs_prop_valid_for_type(prop, zfs_get_type(zhp)))
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1312
		return (0);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1313
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1314
	return (zfs_prop_inherit(zhp, propname) != 0);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1315
}
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1316
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1317
static int
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1318
inherit_cb(zfs_handle_t *zhp, void *data)
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1319
{
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1320
	char *propname = data;
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1321
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1322
	return (zfs_prop_inherit(zhp, propname) != 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1323
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1324
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1325
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1326
zfs_do_inherit(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1327
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1328
	int c;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1329
	zfs_prop_t prop;
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1330
	char *propname;
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  1331
	int ret;
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1332
	int flags = 0;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1333
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1334
	/* check options */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1335
	while ((c = getopt(argc, argv, "r")) != -1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1336
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1337
		case 'r':
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1338
			flags |= ZFS_ITER_RECURSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1339
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1340
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1341
		default:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1342
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1343
			    optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1344
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1345
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1346
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1347
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1348
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1349
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1350
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1351
	/* check number of arguments */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1352
	if (argc < 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1353
		(void) fprintf(stderr, gettext("missing property argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1354
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1355
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1356
	if (argc < 2) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1357
		(void) fprintf(stderr, gettext("missing dataset argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1358
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1359
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1360
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1361
	propname = argv[0];
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1362
	argc--;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1363
	argv++;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1364
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1365
	if ((prop = zfs_name_to_prop(propname)) != ZPROP_INVAL) {
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1366
		if (zfs_prop_readonly(prop)) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1367
			(void) fprintf(stderr, gettext(
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1368
			    "%s property is read-only\n"),
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1369
			    propname);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1370
			return (1);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1371
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1372
		if (!zfs_prop_inheritable(prop)) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1373
			(void) fprintf(stderr, gettext("'%s' property cannot "
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1374
			    "be inherited\n"), propname);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1375
			if (prop == ZFS_PROP_QUOTA ||
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
  1376
			    prop == ZFS_PROP_RESERVATION ||
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
  1377
			    prop == ZFS_PROP_REFQUOTA ||
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5367
diff changeset
  1378
			    prop == ZFS_PROP_REFRESERVATION)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1379
				(void) fprintf(stderr, gettext("use 'zfs set "
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1380
				    "%s=none' to clear\n"), propname);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1381
			return (1);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1382
		}
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1383
	} else if (!zfs_prop_user(propname)) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1384
		(void) fprintf(stderr, gettext("invalid property '%s'\n"),
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1385
		    propname);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1386
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1387
	}
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1388
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1389
	if (flags & ZFS_ITER_RECURSE) {
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1390
		ret = zfs_for_each(argc, argv, flags, ZFS_TYPE_DATASET,
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1391
		    NULL, NULL, 0, inherit_recurse_cb, propname);
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1392
	} else {
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1393
		ret = zfs_for_each(argc, argv, flags, ZFS_TYPE_DATASET,
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1394
		    NULL, NULL, 0, inherit_cb, propname);
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  1395
	}
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  1396
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  1397
	return (ret);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1398
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1399
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1400
typedef struct upgrade_cbdata {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1401
	uint64_t cb_numupgraded;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1402
	uint64_t cb_numsamegraded;
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
  1403
	uint64_t cb_numfailed;
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1404
	uint64_t cb_version;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1405
	boolean_t cb_newer;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1406
	boolean_t cb_foundone;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1407
	char cb_lastfs[ZFS_MAXNAMELEN];
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1408
} upgrade_cbdata_t;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1409
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1410
static int
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1411
same_pool(zfs_handle_t *zhp, const char *name)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1412
{
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1413
	int len1 = strcspn(name, "/@");
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1414
	const char *zhname = zfs_get_name(zhp);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1415
	int len2 = strcspn(zhname, "/@");
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1416
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1417
	if (len1 != len2)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1418
		return (B_FALSE);
4988
db8abd9846d4 6595467 libzfs consumers should be allowed to write their own history (or none at all)
ek110237
parents: 4860
diff changeset
  1419
	return (strncmp(name, zhname, len1) == 0);
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1420
}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1421
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1422
static int
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1423
upgrade_list_callback(zfs_handle_t *zhp, void *data)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1424
{
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1425
	upgrade_cbdata_t *cb = data;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1426
	int version = zfs_prop_get_int(zhp, ZFS_PROP_VERSION);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1427
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1428
	/* list if it's old/new */
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1429
	if ((!cb->cb_newer && version < ZPL_VERSION) ||
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  1430
	    (cb->cb_newer && version > ZPL_VERSION)) {
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1431
		char *str;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1432
		if (cb->cb_newer) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1433
			str = gettext("The following filesystems are "
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1434
			    "formatted using a newer software version and\n"
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1435
			    "cannot be accessed on the current system.\n\n");
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1436
		} else {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1437
			str = gettext("The following filesystems are "
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1438
			    "out of date, and can be upgraded.  After being\n"
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1439
			    "upgraded, these filesystems (and any 'zfs send' "
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1440
			    "streams generated from\n"
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1441
			    "subsequent snapshots) will no longer be "
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1442
			    "accessible by older software versions.\n\n");
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1443
		}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1444
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1445
		if (!cb->cb_foundone) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1446
			(void) puts(str);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1447
			(void) printf(gettext("VER  FILESYSTEM\n"));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1448
			(void) printf(gettext("---  ------------\n"));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1449
			cb->cb_foundone = B_TRUE;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1450
		}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1451
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1452
		(void) printf("%2u   %s\n", version, zfs_get_name(zhp));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1453
	}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1454
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1455
	return (0);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1456
}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1457
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1458
static int
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1459
upgrade_set_callback(zfs_handle_t *zhp, void *data)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1460
{
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1461
	upgrade_cbdata_t *cb = data;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1462
	int version = zfs_prop_get_int(zhp, ZFS_PROP_VERSION);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1463
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1464
	if (cb->cb_version >= ZPL_VERSION_FUID) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1465
		int spa_version;
5713
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5568
diff changeset
  1466
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5568
diff changeset
  1467
		if (zfs_spa_version(zhp, &spa_version) < 0)
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1468
			return (-1);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1469
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1470
		if (spa_version < SPA_VERSION_FUID) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1471
			/* can't upgrade */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1472
			(void) printf(gettext("%s: can not be upgraded; "
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1473
			    "the pool version needs to first be upgraded\nto "
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1474
			    "version %d\n\n"),
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1475
			    zfs_get_name(zhp), SPA_VERSION_FUID);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1476
			cb->cb_numfailed++;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1477
			return (0);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1478
		}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1479
	}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1480
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1481
	/* upgrade */
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1482
	if (version < cb->cb_version) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1483
		char verstr[16];
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
  1484
		(void) snprintf(verstr, sizeof (verstr),
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
  1485
		    "%llu", cb->cb_version);
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1486
		if (cb->cb_lastfs[0] && !same_pool(zhp, cb->cb_lastfs)) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1487
			/*
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1488
			 * If they did "zfs upgrade -a", then we could
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1489
			 * be doing ioctls to different pools.  We need
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1490
			 * to log this history once to each pool.
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1491
			 */
4988
db8abd9846d4 6595467 libzfs consumers should be allowed to write their own history (or none at all)
ek110237
parents: 4860
diff changeset
  1492
			verify(zpool_stage_history(g_zfs, history_str) == 0);
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1493
		}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1494
		if (zfs_prop_set(zhp, "version", verstr) == 0)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1495
			cb->cb_numupgraded++;
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
  1496
		else
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
  1497
			cb->cb_numfailed++;
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1498
		(void) strcpy(cb->cb_lastfs, zfs_get_name(zhp));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1499
	} else if (version > cb->cb_version) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1500
		/* can't downgrade */
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1501
		(void) printf(gettext("%s: can not be downgraded; "
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1502
		    "it is already at version %u\n"),
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1503
		    zfs_get_name(zhp), version);
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
  1504
		cb->cb_numfailed++;
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1505
	} else {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1506
		cb->cb_numsamegraded++;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1507
	}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1508
	return (0);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1509
}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1510
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1511
/*
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1512
 * zfs upgrade
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1513
 * zfs upgrade -v
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1514
 * zfs upgrade [-r] [-V <version>] <-a | filesystem>
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1515
 */
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1516
static int
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1517
zfs_do_upgrade(int argc, char **argv)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1518
{
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1519
	boolean_t all = B_FALSE;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1520
	boolean_t showversions = B_FALSE;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1521
	int ret;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1522
	upgrade_cbdata_t cb = { 0 };
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1523
	char c;
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1524
	int flags = ZFS_ITER_ARGS_CAN_BE_PATHS;
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1525
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1526
	/* check options */
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1527
	while ((c = getopt(argc, argv, "rvV:a")) != -1) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1528
		switch (c) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1529
		case 'r':
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1530
			flags |= ZFS_ITER_RECURSE;
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1531
			break;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1532
		case 'v':
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1533
			showversions = B_TRUE;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1534
			break;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1535
		case 'V':
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1536
			if (zfs_prop_string_to_index(ZFS_PROP_VERSION,
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1537
			    optarg, &cb.cb_version) != 0) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1538
				(void) fprintf(stderr,
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1539
				    gettext("invalid version %s\n"), optarg);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1540
				usage(B_FALSE);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1541
			}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1542
			break;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1543
		case 'a':
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1544
			all = B_TRUE;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1545
			break;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1546
		case '?':
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1547
		default:
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1548
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1549
			    optopt);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1550
			usage(B_FALSE);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1551
		}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1552
	}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1553
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1554
	argc -= optind;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1555
	argv += optind;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1556
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1557
	if ((!all && !argc) && ((flags & ZFS_ITER_RECURSE) | cb.cb_version))
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1558
		usage(B_FALSE);
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1559
	if (showversions && (flags & ZFS_ITER_RECURSE || all ||
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1560
	    cb.cb_version || argc))
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1561
		usage(B_FALSE);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1562
	if ((all || argc) && (showversions))
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1563
		usage(B_FALSE);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1564
	if (all && argc)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1565
		usage(B_FALSE);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1566
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1567
	if (showversions) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1568
		/* Show info on available versions. */
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1569
		(void) printf(gettext("The following filesystem versions are "
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1570
		    "supported:\n\n"));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1571
		(void) printf(gettext("VER  DESCRIPTION\n"));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1572
		(void) printf("---  -----------------------------------------"
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1573
		    "---------------\n");
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1574
		(void) printf(gettext(" 1   Initial ZFS filesystem version\n"));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1575
		(void) printf(gettext(" 2   Enhanced directory entries\n"));
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1576
		(void) printf(gettext(" 3   Case insensitive and File system "
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1577
		    "unique identifer (FUID)\n"));
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1578
		(void) printf(gettext("\nFor more information on a particular "
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1579
		    "version, including supported releases, see:\n\n"));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1580
		(void) printf("http://www.opensolaris.org/os/community/zfs/"
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1581
		    "version/zpl/N\n\n");
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1582
		(void) printf(gettext("Where 'N' is the version number.\n"));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1583
		ret = 0;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1584
	} else if (argc || all) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1585
		/* Upgrade filesystems */
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1586
		if (cb.cb_version == 0)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1587
			cb.cb_version = ZPL_VERSION;
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1588
		ret = zfs_for_each(argc, argv, flags, ZFS_TYPE_FILESYSTEM,
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1589
		    NULL, NULL, 0, upgrade_set_callback, &cb);
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1590
		(void) printf(gettext("%llu filesystems upgraded\n"),
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1591
		    cb.cb_numupgraded);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1592
		if (cb.cb_numsamegraded) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1593
			(void) printf(gettext("%llu filesystems already at "
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1594
			    "this version\n"),
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1595
			    cb.cb_numsamegraded);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1596
		}
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4787
diff changeset
  1597
		if (cb.cb_numfailed != 0)
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1598
			ret = 1;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1599
	} else {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1600
		/* List old-version filesytems */
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1601
		boolean_t found;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1602
		(void) printf(gettext("This system is currently running "
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1603
		    "ZFS filesystem version %llu.\n\n"), ZPL_VERSION);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1604
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1605
		flags |= ZFS_ITER_RECURSE;
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1606
		ret = zfs_for_each(0, NULL, flags, ZFS_TYPE_FILESYSTEM,
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1607
		    NULL, NULL, 0, upgrade_list_callback, &cb);
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1608
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1609
		found = cb.cb_foundone;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1610
		cb.cb_foundone = B_FALSE;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1611
		cb.cb_newer = B_TRUE;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1612
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1613
		ret = zfs_for_each(0, NULL, flags, ZFS_TYPE_FILESYSTEM,
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1614
		    NULL, NULL, 0, upgrade_list_callback, &cb);
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1615
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1616
		if (!cb.cb_foundone && !found) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1617
			(void) printf(gettext("All filesystems are "
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1618
			    "formatted with the current version.\n"));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1619
		}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1620
	}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1621
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1622
	return (ret);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1623
}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1624
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1625
/*
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1626
 * list [-r][-d max] [-H] [-o property[,property]...] [-t type[,type]...]
2379
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1627
 *      [-s property [-s property]...] [-S property [-S property]...]
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1628
 *      <dataset> ...
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1629
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1630
 * 	-r	Recurse over all children
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1631
 * 	-d	Limit recursion by depth.
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  1632
 * 	-H	Scripted mode; elide headers and separate columns by tabs
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1633
 * 	-o	Control which fields to display.
866
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1634
 * 	-t	Control which object types to display.
2379
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1635
 *	-s	Specify sort columns, descending order.
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1636
 *	-S	Specify sort columns, ascending order.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1637
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1638
 * When given no arguments, lists all filesystems in the system.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1639
 * Otherwise, list the specified datasets, optionally recursing down them if
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1640
 * '-r' is specified.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1641
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1642
typedef struct list_cbdata {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1643
	boolean_t	cb_first;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1644
	boolean_t	cb_scripted;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1645
	zprop_list_t	*cb_proplist;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1646
} list_cbdata_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1647
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1648
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1649
 * Given a list of columns to display, output appropriate headers for each one.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1650
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1651
static void
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1652
print_header(zprop_list_t *pl)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1653
{
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1654
	char headerbuf[ZFS_MAXPROPLEN];
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1655
	const char *header;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1656
	int i;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1657
	boolean_t first = B_TRUE;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1658
	boolean_t right_justify;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1659
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1660
	for (; pl != NULL; pl = pl->pl_next) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1661
		if (!first) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1662
			(void) printf("  ");
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1663
		} else {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1664
			first = B_FALSE;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1665
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1666
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1667
		right_justify = B_FALSE;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1668
		if (pl->pl_prop != ZPROP_INVAL) {
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1669
			header = zfs_prop_column_name(pl->pl_prop);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1670
			right_justify = zfs_prop_align_right(pl->pl_prop);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1671
		} else {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1672
			for (i = 0; pl->pl_user_prop[i] != '\0'; i++)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1673
				headerbuf[i] = toupper(pl->pl_user_prop[i]);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1674
			headerbuf[i] = '\0';
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1675
			header = headerbuf;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1676
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1677
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1678
		if (pl->pl_next == NULL && !right_justify)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1679
			(void) printf("%s", header);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1680
		else if (right_justify)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1681
			(void) printf("%*s", pl->pl_width, header);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1682
		else
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1683
			(void) printf("%-*s", pl->pl_width, header);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1684
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1685
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1686
	(void) printf("\n");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1687
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1688
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1689
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1690
 * Given a dataset and a list of fields, print out all the properties according
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1691
 * to the described layout.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1692
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1693
static void
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1694
print_dataset(zfs_handle_t *zhp, zprop_list_t *pl, boolean_t scripted)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1695
{
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1696
	boolean_t first = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1697
	char property[ZFS_MAXPROPLEN];
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1698
	nvlist_t *userprops = zfs_get_user_props(zhp);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1699
	nvlist_t *propval;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1700
	char *propstr;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1701
	boolean_t right_justify;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1702
	int width;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1703
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1704
	for (; pl != NULL; pl = pl->pl_next) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1705
		if (!first) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1706
			if (scripted)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1707
				(void) printf("\t");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1708
			else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1709
				(void) printf("  ");
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1710
		} else {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1711
			first = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1712
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1713
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1714
		right_justify = B_FALSE;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1715
		if (pl->pl_prop != ZPROP_INVAL) {
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1716
			if (zfs_prop_get(zhp, pl->pl_prop, property,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1717
			    sizeof (property), NULL, NULL, 0, B_FALSE) != 0)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1718
				propstr = "-";
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1719
			else
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1720
				propstr = property;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1721
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1722
			right_justify = zfs_prop_align_right(pl->pl_prop);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1723
		} else {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1724
			if (nvlist_lookup_nvlist(userprops,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1725
			    pl->pl_user_prop, &propval) != 0)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1726
				propstr = "-";
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1727
			else
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1728
				verify(nvlist_lookup_string(propval,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1729
				    ZPROP_VALUE, &propstr) == 0);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1730
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1731
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1732
		width = pl->pl_width;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1733
866
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1734
		/*
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1735
		 * If this is being called in scripted mode, or if this is the
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1736
		 * last column and it is left-justified, don't include a width
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1737
		 * format specifier.
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1738
		 */
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1739
		if (scripted || (pl->pl_next == NULL && !right_justify))
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1740
			(void) printf("%s", propstr);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1741
		else if (right_justify)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1742
			(void) printf("%*s", width, propstr);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1743
		else
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1744
			(void) printf("%-*s", width, propstr);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1745
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1746
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1747
	(void) printf("\n");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1748
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1749
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1750
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1751
 * Generic callback function to list a dataset or snapshot.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1752
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1753
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1754
list_callback(zfs_handle_t *zhp, void *data)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1755
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1756
	list_cbdata_t *cbp = data;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1757
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1758
	if (cbp->cb_first) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1759
		if (!cbp->cb_scripted)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1760
			print_header(cbp->cb_proplist);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1761
		cbp->cb_first = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1762
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1763
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1764
	print_dataset(zhp, cbp->cb_proplist, cbp->cb_scripted);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1765
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1766
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1767
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1768
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1769
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1770
zfs_do_list(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1771
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1772
	int c;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1773
	boolean_t scripted = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1774
	static char default_fields[] =
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1775
	    "name,used,available,referenced,mountpoint";
8415
d5525cd1cbc2 6386929 initial "zfs list" is slow
Rich Morris <Richard.Morris@Sun.COM>
parents: 8269
diff changeset
  1776
	int types = ZFS_TYPE_DATASET;
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1777
	boolean_t types_specified = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1778
	char *fields = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1779
	list_cbdata_t cb = { 0 };
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1780
	char *value;
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1781
	int limit = 0;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1782
	int ret;
2379
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1783
	zfs_sort_column_t *sortcol = NULL;
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1784
	int flags = ZFS_ITER_PROP_LISTSNAPS | ZFS_ITER_ARGS_CAN_BE_PATHS;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1785
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1786
	/* check options */
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1787
	while ((c = getopt(argc, argv, ":d:o:rt:Hs:S:")) != -1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1788
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1789
		case 'o':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1790
			fields = optarg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1791
			break;
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1792
		case 'd':
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1793
			limit = parse_depth(optarg, &flags);
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1794
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1795
		case 'r':
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1796
			flags |= ZFS_ITER_RECURSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1797
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1798
		case 'H':
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1799
			scripted = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1800
			break;
2379
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1801
		case 's':
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1802
			if (zfs_add_sort_column(&sortcol, optarg,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1803
			    B_FALSE) != 0) {
2379
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1804
				(void) fprintf(stderr,
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1805
				    gettext("invalid property '%s'\n"), optarg);
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1806
				usage(B_FALSE);
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1807
			}
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1808
			break;
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1809
		case 'S':
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1810
			if (zfs_add_sort_column(&sortcol, optarg,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1811
			    B_TRUE) != 0) {
2379
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1812
				(void) fprintf(stderr,
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1813
				    gettext("invalid property '%s'\n"), optarg);
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1814
				usage(B_FALSE);
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1815
			}
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1816
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1817
		case 't':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1818
			types = 0;
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1819
			types_specified = B_TRUE;
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1820
			flags &= ~ZFS_ITER_PROP_LISTSNAPS;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1821
			while (*optarg != '\0') {
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1822
				static char *type_subopts[] = { "filesystem",
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1823
				    "volume", "snapshot", "all", NULL };
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1824
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1825
				switch (getsubopt(&optarg, type_subopts,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1826
				    &value)) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1827
				case 0:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1828
					types |= ZFS_TYPE_FILESYSTEM;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1829
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1830
				case 1:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1831
					types |= ZFS_TYPE_VOLUME;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1832
					break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1833
				case 2:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1834
					types |= ZFS_TYPE_SNAPSHOT;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1835
					break;
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1836
				case 3:
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1837
					types = ZFS_TYPE_DATASET;
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1838
					break;
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1839
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1840
				default:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1841
					(void) fprintf(stderr,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1842
					    gettext("invalid type '%s'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1843
					    value);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1844
					usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1845
				}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1846
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1847
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1848
		case ':':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1849
			(void) fprintf(stderr, gettext("missing argument for "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1850
			    "'%c' option\n"), optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1851
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1852
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1853
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1854
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1855
			    optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1856
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1857
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1858
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1859
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1860
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1861
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1862
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1863
	if (fields == NULL)
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7386
diff changeset
  1864
		fields = default_fields;
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7386
diff changeset
  1865
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7386
diff changeset
  1866
	/*
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1867
	 * If "-o space" and no types were specified, don't display snapshots.
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7386
diff changeset
  1868
	 */
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1869
	if (strcmp(fields, "space") == 0 && types_specified == B_FALSE)
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7386
diff changeset
  1870
		types &= ~ZFS_TYPE_SNAPSHOT;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1871
866
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1872
	/*
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1873
	 * If the user specifies '-o all', the zprop_get_list() doesn't
866
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1874
	 * normally include the name of the dataset.  For 'zfs list', we always
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1875
	 * want this property to be first.
08bb8e0ae066 comments
eschrock
parents: 789
diff changeset
  1876
	 */
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1877
	if (zprop_get_list(g_zfs, fields, &cb.cb_proplist, ZFS_TYPE_DATASET)
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1878
	    != 0)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1879
		usage(B_FALSE);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1880
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1881
	cb.cb_scripted = scripted;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1882
	cb.cb_first = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1883
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  1884
	ret = zfs_for_each(argc, argv, flags, types, sortcol, &cb.cb_proplist,
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  1885
	    limit, list_callback, &cb);
2379
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1886
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1887
	zprop_free_list(cb.cb_proplist);
2379
0ff8239b1e93 PSARC 2006/308 zfs list sort option
sjelinek
parents: 2372
diff changeset
  1888
	zfs_free_sort_columns(sortcol);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1889
4221
50b4bab9766b 6540584 zfs list command should not produce "no datasets available" message in script mode
mmusante
parents: 4007
diff changeset
  1890
	if (ret == 0 && cb.cb_first && !cb.cb_scripted)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1891
		(void) printf(gettext("no datasets available\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1892
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1893
	return (ret);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1894
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1895
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1896
/*
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1897
 * zfs rename <fs | snap | vol> <fs | snap | vol>
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1898
 * zfs rename -p <fs | vol> <fs | vol>
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1899
 * zfs rename -r <snap> <snap>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1900
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1901
 * Renames the given dataset to another of the same type.
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1902
 *
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1903
 * The '-p' flag creates all the non-existing ancestors of the target first.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1904
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1905
/* ARGSUSED */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1906
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1907
zfs_do_rename(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1908
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1909
	zfs_handle_t *zhp;
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1910
	int c;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1911
	int ret;
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1912
	boolean_t recurse = B_FALSE;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1913
	boolean_t parents = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1914
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1915
	/* check options */
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1916
	while ((c = getopt(argc, argv, "pr")) != -1) {
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1917
		switch (c) {
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1918
		case 'p':
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1919
			parents = B_TRUE;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1920
			break;
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1921
		case 'r':
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1922
			recurse = B_TRUE;
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1923
			break;
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1924
		case '?':
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1925
		default:
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1926
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1927
			    optopt);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1928
			usage(B_FALSE);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1929
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1930
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1931
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1932
	argc -= optind;
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1933
	argv += optind;
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1934
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1935
	/* check number of arguments */
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1936
	if (argc < 1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1937
		(void) fprintf(stderr, gettext("missing source dataset "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1938
		    "argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1939
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1940
	}
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1941
	if (argc < 2) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1942
		(void) fprintf(stderr, gettext("missing target dataset "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1943
		    "argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1944
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1945
	}
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1946
	if (argc > 2) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1947
		(void) fprintf(stderr, gettext("too many arguments\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1948
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1949
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1950
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1951
	if (recurse && parents) {
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1952
		(void) fprintf(stderr, gettext("-p and -r options are mutually "
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1953
		    "exclusive\n"));
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1954
		usage(B_FALSE);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1955
	}
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1956
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1957
	if (recurse && strchr(argv[0], '@') == 0) {
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1958
		(void) fprintf(stderr, gettext("source dataset for recursive "
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1959
		    "rename must be a snapshot\n"));
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1960
		usage(B_FALSE);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1961
	}
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1962
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1963
	if ((zhp = zfs_open(g_zfs, argv[0], parents ? ZFS_TYPE_FILESYSTEM |
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  1964
	    ZFS_TYPE_VOLUME : ZFS_TYPE_DATASET)) == NULL)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1965
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1966
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1967
	/* If we were asked and the name looks good, try to create ancestors. */
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1968
	if (parents && zfs_name_valid(argv[1], zfs_get_type(zhp)) &&
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1969
	    zfs_create_ancestors(g_zfs, argv[1]) != 0) {
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1970
		zfs_close(zhp);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1971
		return (1);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1972
	}
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  1973
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  1974
	ret = (zfs_rename(zhp, argv[1], recurse) != 0);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1975
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1976
	zfs_close(zhp);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1977
	return (ret);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1978
}
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1979
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1980
/*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1981
 * zfs promote <fs>
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1982
 *
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1983
 * Promotes the given clone fs to be the parent
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1984
 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1985
/* ARGSUSED */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1986
static int
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1987
zfs_do_promote(int argc, char **argv)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1988
{
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1989
	zfs_handle_t *zhp;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1990
	int ret;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1991
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1992
	/* check options */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1993
	if (argc > 1 && argv[1][0] == '-') {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1994
		(void) fprintf(stderr, gettext("invalid option '%c'\n"),
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1995
		    argv[1][1]);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1996
		usage(B_FALSE);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1997
	}
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1998
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  1999
	/* check number of arguments */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2000
	if (argc < 2) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2001
		(void) fprintf(stderr, gettext("missing clone filesystem"
2597
21c0f93f2513 6349987 lzjb.c lived longer than expected?
nd150628
parents: 2474
diff changeset
  2002
		    " argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2003
		usage(B_FALSE);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2004
	}
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2005
	if (argc > 2) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2006
		(void) fprintf(stderr, gettext("too many arguments\n"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2007
		usage(B_FALSE);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2008
	}
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2009
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2010
	zhp = zfs_open(g_zfs, argv[1], ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2011
	if (zhp == NULL)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2012
		return (1);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2013
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2014
	ret = (zfs_promote(zhp) != 0);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2015
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  2016
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2017
	zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2018
	return (ret);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2019
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2020
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2021
/*
5568
ac217d9f8190 PSARC/2007/673 zfs rollback -f obsolescence
ahrens
parents: 5481
diff changeset
  2022
 * zfs rollback [-rRf] <snapshot>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2023
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2024
 * 	-r	Delete any intervening snapshots before doing rollback
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2025
 * 	-R	Delete any snapshots and their clones
5568
ac217d9f8190 PSARC/2007/673 zfs rollback -f obsolescence
ahrens
parents: 5481
diff changeset
  2026
 * 	-f	ignored for backwards compatability
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2027
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2028
 * Given a filesystem, rollback to a specific snapshot, discarding any changes
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2029
 * since then and making it the active dataset.  If more recent snapshots exist,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2030
 * the command will complain unless the '-r' flag is given.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2031
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2032
typedef struct rollback_cbdata {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2033
	uint64_t	cb_create;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2034
	boolean_t	cb_first;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2035
	int		cb_doclones;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2036
	char		*cb_target;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2037
	int		cb_error;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2038
	boolean_t	cb_recurse;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2039
	boolean_t	cb_dependent;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2040
} rollback_cbdata_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2041
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2042
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2043
 * Report any snapshots more recent than the one specified.  Used when '-r' is
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2044
 * not specified.  We reuse this same callback for the snapshot dependents - if
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2045
 * 'cb_dependent' is set, then this is a dependent and we should report it
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2046
 * without checking the transaction group.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2047
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2048
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2049
rollback_check(zfs_handle_t *zhp, void *data)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2050
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2051
	rollback_cbdata_t *cbp = data;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2052
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2053
	if (cbp->cb_doclones) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2054
		zfs_close(zhp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2055
		return (0);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2056
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2057
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2058
	if (!cbp->cb_dependent) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2059
		if (strcmp(zfs_get_name(zhp), cbp->cb_target) != 0 &&
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1264
diff changeset
  2060
		    zfs_get_type(zhp) == ZFS_TYPE_SNAPSHOT &&
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2061
		    zfs_prop_get_int(zhp, ZFS_PROP_CREATETXG) >
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2062
		    cbp->cb_create) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2063
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2064
			if (cbp->cb_first && !cbp->cb_recurse) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2065
				(void) fprintf(stderr, gettext("cannot "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2066
				    "rollback to '%s': more recent snapshots "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2067
				    "exist\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2068
				    cbp->cb_target);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2069
				(void) fprintf(stderr, gettext("use '-r' to "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2070
				    "force deletion of the following "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2071
				    "snapshots:\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2072
				cbp->cb_first = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2073
				cbp->cb_error = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2074
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2075
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2076
			if (cbp->cb_recurse) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2077
				cbp->cb_dependent = B_TRUE;
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  2078
				if (zfs_iter_dependents(zhp, B_TRUE,
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  2079
				    rollback_check, cbp) != 0) {
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  2080
					zfs_close(zhp);
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  2081
					return (-1);
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  2082
				}
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2083
				cbp->cb_dependent = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2084
			} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2085
				(void) fprintf(stderr, "%s\n",
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2086
				    zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2087
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2088
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2089
	} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2090
		if (cbp->cb_first && cbp->cb_recurse) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2091
			(void) fprintf(stderr, gettext("cannot rollback to "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2092
			    "'%s': clones of previous snapshots exist\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2093
			    cbp->cb_target);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2094
			(void) fprintf(stderr, gettext("use '-R' to "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2095
			    "force deletion of the following clones and "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2096
			    "dependents:\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2097
			cbp->cb_first = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2098
			cbp->cb_error = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2099
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2100
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2101
		(void) fprintf(stderr, "%s\n", zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2102
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2103
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2104
	zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2105
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2106
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2107
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2108
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2109
zfs_do_rollback(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2110
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2111
	int ret;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2112
	int c;
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5713
diff changeset
  2113
	boolean_t force = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2114
	rollback_cbdata_t cb = { 0 };
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2115
	zfs_handle_t *zhp, *snap;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2116
	char parentname[ZFS_MAXNAMELEN];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2117
	char *delim;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2118
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2119
	/* check options */
5568
ac217d9f8190 PSARC/2007/673 zfs rollback -f obsolescence
ahrens
parents: 5481
diff changeset
  2120
	while ((c = getopt(argc, argv, "rRf")) != -1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2121
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2122
		case 'r':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2123
			cb.cb_recurse = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2124
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2125
		case 'R':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2126
			cb.cb_recurse = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2127
			cb.cb_doclones = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2128
			break;
5568
ac217d9f8190 PSARC/2007/673 zfs rollback -f obsolescence
ahrens
parents: 5481
diff changeset
  2129
		case 'f':
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5713
diff changeset
  2130
			force = B_TRUE;
5568
ac217d9f8190 PSARC/2007/673 zfs rollback -f obsolescence
ahrens
parents: 5481
diff changeset
  2131
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2132
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2133
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2134
			    optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2135
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2136
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2137
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2138
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2139
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2140
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2141
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2142
	/* check number of arguments */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2143
	if (argc < 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2144
		(void) fprintf(stderr, gettext("missing dataset argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2145
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2146
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2147
	if (argc > 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2148
		(void) fprintf(stderr, gettext("too many arguments\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2149
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2150
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2151
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2152
	/* open the snapshot */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2153
	if ((snap = zfs_open(g_zfs, argv[0], ZFS_TYPE_SNAPSHOT)) == NULL)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2154
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2155
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1264
diff changeset
  2156
	/* open the parent dataset */
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1264
diff changeset
  2157
	(void) strlcpy(parentname, argv[0], sizeof (parentname));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2158
	verify((delim = strrchr(parentname, '@')) != NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2159
	*delim = '\0';
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  2160
	if ((zhp = zfs_open(g_zfs, parentname, ZFS_TYPE_DATASET)) == NULL) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2161
		zfs_close(snap);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2162
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2163
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2164
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2165
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2166
	 * Check for more recent snapshots and/or clones based on the presence
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2167
	 * of '-r' and '-R'.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2168
	 */
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1264
diff changeset
  2169
	cb.cb_target = argv[0];
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1264
diff changeset
  2170
	cb.cb_create = zfs_prop_get_int(snap, ZFS_PROP_CREATETXG);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2171
	cb.cb_first = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2172
	cb.cb_error = 0;
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  2173
	if ((ret = zfs_iter_children(zhp, rollback_check, &cb)) != 0)
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2379
diff changeset
  2174
		goto out;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2175
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2176
	if ((ret = cb.cb_error) != 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2177
		goto out;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2178
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2179
	/*
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1264
diff changeset
  2180
	 * Rollback parent to the given snapshot.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2181
	 */
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5713
diff changeset
  2182
	ret = zfs_rollback(zhp, snap, force);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2183
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2184
out:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2185
	zfs_close(snap);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2186
	zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2187
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2188
	if (ret == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2189
		return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2190
	else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2191
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2192
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2193
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2194
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2195
 * zfs set property=value { fs | snap | vol } ...
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2196
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2197
 * Sets the given property for all datasets specified on the command line.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2198
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2199
typedef struct set_cbdata {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2200
	char		*cb_propname;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2201
	char		*cb_value;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2202
} set_cbdata_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2203
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2204
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2205
set_callback(zfs_handle_t *zhp, void *data)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2206
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2207
	set_cbdata_t *cbp = data;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2208
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2209
	if (zfs_prop_set(zhp, cbp->cb_propname, cbp->cb_value) != 0) {
2169
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2082
diff changeset
  2210
		switch (libzfs_errno(g_zfs)) {
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2082
diff changeset
  2211
		case EZFS_MOUNTFAILED:
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2082
diff changeset
  2212
			(void) fprintf(stderr, gettext("property may be set "
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2082
diff changeset
  2213
			    "but unable to remount filesystem\n"));
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2082
diff changeset
  2214
			break;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2215
		case EZFS_SHARENFSFAILED:
2169
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2082
diff changeset
  2216
			(void) fprintf(stderr, gettext("property may be set "
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2082
diff changeset
  2217
			    "but unable to reshare filesystem\n"));
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2082
diff changeset
  2218
			break;
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2082
diff changeset
  2219
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2220
		return (1);
2169
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2082
diff changeset
  2221
	}
2856
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2676
diff changeset
  2222
	return (0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2223
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2224
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2225
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2226
zfs_do_set(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2227
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2228
	set_cbdata_t cb;
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  2229
	int ret;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2230
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2231
	/* check for options */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2232
	if (argc > 1 && argv[1][0] == '-') {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2233
		(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2234
		    argv[1][1]);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2235
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2236
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2237
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2238
	/* check number of arguments */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2239
	if (argc < 2) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2240
		(void) fprintf(stderr, gettext("missing property=value "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2241
		    "argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2242
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2243
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2244
	if (argc < 3) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2245
		(void) fprintf(stderr, gettext("missing dataset name\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2246
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2247
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2248
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2249
	/* validate property=value argument */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2250
	cb.cb_propname = argv[1];
6993
ccf0a8c4b9a5 6490524 zfs "set" subcommand should enforce prop=value syntax for sharenfs
sg201626
parents: 6865
diff changeset
  2251
	if (((cb.cb_value = strchr(cb.cb_propname, '=')) == NULL) ||
ccf0a8c4b9a5 6490524 zfs "set" subcommand should enforce prop=value syntax for sharenfs
sg201626
parents: 6865
diff changeset
  2252
	    (cb.cb_value[1] == '\0')) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2253
		(void) fprintf(stderr, gettext("missing value in "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2254
		    "property=value argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2255
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2256
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2257
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2258
	*cb.cb_value = '\0';
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2259
	cb.cb_value++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2260
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2261
	if (*cb.cb_propname == '\0') {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2262
		(void) fprintf(stderr,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2263
		    gettext("missing property in property=value argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2264
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2265
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2266
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  2267
	ret = zfs_for_each(argc - 2, argv + 2, NULL,
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  2268
	    ZFS_TYPE_DATASET, NULL, NULL, 0, set_callback, &cb);
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  2269
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  2270
	return (ret);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2271
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2272
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2273
/*
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2274
 * zfs snapshot [-r] [-o prop=value] ... <fs@snap>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2275
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2276
 * Creates a snapshot with the given name.  While functionally equivalent to
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  2277
 * 'zfs create', it is a separate command to differentiate intent.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2278
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2279
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2280
zfs_do_snapshot(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2281
{
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4221
diff changeset
  2282
	boolean_t recursive = B_FALSE;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2283
	int ret;
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2284
	char c;
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2285
	nvlist_t *props;
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2286
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2287
	if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) {
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2288
		(void) fprintf(stderr, gettext("internal error: "
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2289
		    "out of memory\n"));
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2290
		return (1);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2291
	}
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2292
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2293
	/* check options */
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2294
	while ((c = getopt(argc, argv, "ro:")) != -1) {
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2295
		switch (c) {
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2296
		case 'o':
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2297
			if (parseprop(props))
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2298
				return (1);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2299
			break;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2300
		case 'r':
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2301
			recursive = B_TRUE;
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2302
			break;
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2303
		case '?':
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2304
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2305
			    optopt);
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2306
			goto usage;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2307
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2308
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2309
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2310
	argc -= optind;
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2311
	argv += optind;
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2312
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2313
	/* check number of arguments */
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2314
	if (argc < 1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2315
		(void) fprintf(stderr, gettext("missing snapshot argument\n"));
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2316
		goto usage;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2317
	}
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2318
	if (argc > 1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2319
		(void) fprintf(stderr, gettext("too many arguments\n"));
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2320
		goto usage;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2321
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2322
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2323
	ret = zfs_snapshot(g_zfs, argv[0], recursive, props);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2324
	nvlist_free(props);
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2325
	if (ret && recursive)
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2326
		(void) fprintf(stderr, gettext("no snapshots were created\n"));
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2190
diff changeset
  2327
	return (ret != 0);
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2328
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2329
usage:
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2330
	nvlist_free(props);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2331
	usage(B_FALSE);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 6993
diff changeset
  2332
	return (-1);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2333
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2334
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2335
/*
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2336
 * zfs send [-v] -R [-i|-I <@snap>] <fs@snap>
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2337
 * zfs send [-v] [-i|-I <@snap>] <fs@snap>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2338
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2339
 * Send a backup stream to stdout.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2340
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2341
static int
1749
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
  2342
zfs_do_send(int argc, char **argv)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2343
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2344
	char *fromname = NULL;
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2345
	char *toname = NULL;
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2346
	char *cp;
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2347
	zfs_handle_t *zhp;
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2348
	boolean_t doall = B_FALSE;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2349
	boolean_t replicate = B_FALSE;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2350
	boolean_t fromorigin = B_FALSE;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2351
	boolean_t verbose = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2352
	int c, err;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2353
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2354
	/* check options */
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2355
	while ((c = getopt(argc, argv, ":i:I:Rv")) != -1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2356
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2357
		case 'i':
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2358
			if (fromname)
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2359
				usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2360
			fromname = optarg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2361
			break;
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2362
		case 'I':
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2363
			if (fromname)
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2364
				usage(B_FALSE);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2365
			fromname = optarg;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2366
			doall = B_TRUE;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2367
			break;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2368
		case 'R':
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2369
			replicate = B_TRUE;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2370
			break;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2371
		case 'v':
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2372
			verbose = B_TRUE;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2373
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2374
		case ':':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2375
			(void) fprintf(stderr, gettext("missing argument for "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2376
			    "'%c' option\n"), optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2377
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2378
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2379
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2380
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2381
			    optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2382
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2383
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2384
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2385
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2386
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2387
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2388
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2389
	/* check number of arguments */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2390
	if (argc < 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2391
		(void) fprintf(stderr, gettext("missing snapshot argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2392
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2393
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2394
	if (argc > 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2395
		(void) fprintf(stderr, gettext("too many arguments\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2396
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2397
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2398
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2399
	if (isatty(STDOUT_FILENO)) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2400
		(void) fprintf(stderr,
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2401
		    gettext("Error: Stream can not be written to a terminal.\n"
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  2402
		    "You must redirect standard output.\n"));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2403
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2404
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2405
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2406
	cp = strchr(argv[0], '@');
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2407
	if (cp == NULL) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2408
		(void) fprintf(stderr,
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2409
		    gettext("argument must be a snapshot\n"));
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2410
		usage(B_FALSE);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2411
	}
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2412
	*cp = '\0';
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2413
	toname = cp + 1;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2414
	zhp = zfs_open(g_zfs, argv[0], ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2415
	if (zhp == NULL)
2665
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2597
diff changeset
  2416
		return (1);
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2597
diff changeset
  2417
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2418
	/*
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2419
	 * If they specified the full path to the snapshot, chop off
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2420
	 * everything except the short name of the snapshot, but special
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2421
	 * case if they specify the origin.
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2422
	 */
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2423
	if (fromname && (cp = strchr(fromname, '@')) != NULL) {
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2424
		char origin[ZFS_MAXNAMELEN];
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2425
		zprop_source_t src;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2426
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2427
		(void) zfs_prop_get(zhp, ZFS_PROP_ORIGIN,
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2428
		    origin, sizeof (origin), &src, NULL, 0, B_FALSE);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2429
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2430
		if (strcmp(origin, fromname) == 0) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2431
			fromname = NULL;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2432
			fromorigin = B_TRUE;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2433
		} else {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2434
			*cp = '\0';
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2435
			if (cp != fromname && strcmp(argv[0], fromname)) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2436
				(void) fprintf(stderr,
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2437
				    gettext("incremental source must be "
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2438
				    "in same filesystem\n"));
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2439
				usage(B_FALSE);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2440
			}
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2441
			fromname = cp + 1;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2442
			if (strchr(fromname, '@') || strchr(fromname, '/')) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2443
				(void) fprintf(stderr,
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2444
				    gettext("invalid incremental source\n"));
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2445
				usage(B_FALSE);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2446
			}
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2447
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2448
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2449
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2450
	if (replicate && fromname == NULL)
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2451
		doall = B_TRUE;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2452
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2453
	err = zfs_send(zhp, fromname, toname, replicate, doall, fromorigin,
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2454
	    verbose, STDOUT_FILENO);
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2455
	zfs_close(zhp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2456
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2457
	return (err != 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2458
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2459
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2460
/*
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2461
 * zfs receive [-dnvF] <fs@snap>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2462
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2463
 * Restore a backup stream from stdin.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2464
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2465
static int
1749
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
  2466
zfs_do_receive(int argc, char **argv)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2467
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2468
	int c, err;
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2469
	recvflags_t flags;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2470
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2471
	bzero(&flags, sizeof (recvflags_t));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2472
	/* check options */
8584
327a1b6dd944 6794452 zfs receive can't restore a root pool
Lori Alt <Lori.Alt@Sun.COM>
parents: 8415
diff changeset
  2473
	while ((c = getopt(argc, argv, ":dnuvF")) != -1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2474
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2475
		case 'd':
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2476
			flags.isprefix = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2477
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2478
		case 'n':
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2479
			flags.dryrun = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2480
			break;
8584
327a1b6dd944 6794452 zfs receive can't restore a root pool
Lori Alt <Lori.Alt@Sun.COM>
parents: 8415
diff changeset
  2481
		case 'u':
327a1b6dd944 6794452 zfs receive can't restore a root pool
Lori Alt <Lori.Alt@Sun.COM>
parents: 8415
diff changeset
  2482
			flags.nomount = B_TRUE;
327a1b6dd944 6794452 zfs receive can't restore a root pool
Lori Alt <Lori.Alt@Sun.COM>
parents: 8415
diff changeset
  2483
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2484
		case 'v':
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2485
			flags.verbose = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2486
			break;
2665
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2597
diff changeset
  2487
		case 'F':
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2488
			flags.force = B_TRUE;
2665
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2597
diff changeset
  2489
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2490
		case ':':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2491
			(void) fprintf(stderr, gettext("missing argument for "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2492
			    "'%c' option\n"), optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2493
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2494
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2495
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2496
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2497
			    optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2498
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2499
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2500
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2501
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2502
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2503
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2504
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2505
	/* check number of arguments */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2506
	if (argc < 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2507
		(void) fprintf(stderr, gettext("missing snapshot argument\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2508
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2509
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2510
	if (argc > 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2511
		(void) fprintf(stderr, gettext("too many arguments\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  2512
		usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2513
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2514
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2515
	if (isatty(STDIN_FILENO)) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2516
		(void) fprintf(stderr,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2517
		    gettext("Error: Backup stream can not be read "
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  2518
		    "from a terminal.\n"
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  2519
		    "You must redirect standard input.\n"));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2520
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2521
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2522
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2523
	err = zfs_receive(g_zfs, argv[0], flags, STDIN_FILENO, NULL);
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  2524
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2525
	return (err != 0);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2526
}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2527
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2528
typedef struct allow_cb {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2529
	int  a_permcnt;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2530
	size_t a_treeoffset;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2531
} allow_cb_t;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2532
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2533
static void
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2534
zfs_print_perms(avl_tree_t *tree)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2535
{
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2536
	zfs_perm_node_t *permnode;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2537
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2538
	permnode = avl_first(tree);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2539
	while (permnode != NULL) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2540
		(void) printf("%s", permnode->z_pname);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2541
		permnode = AVL_NEXT(tree, permnode);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2542
		if (permnode)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2543
			(void) printf(",");
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2544
		else
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2545
			(void) printf("\n");
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2546
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2547
}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2548
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2549
/*
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2550
 * Iterate over user/groups/everyone/... and the call perm_iter
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2551
 * function to print actual permission when tree has >0 nodes.
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2552
 */
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2553
static void
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2554
zfs_iter_perms(avl_tree_t *tree, const char *banner, allow_cb_t *cb)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2555
{
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2556
	zfs_allow_node_t *item;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2557
	avl_tree_t *ptree;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2558
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2559
	item = avl_first(tree);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2560
	while (item) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2561
		ptree = (void *)((char *)item + cb->a_treeoffset);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2562
		if (avl_numnodes(ptree)) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2563
			if (cb->a_permcnt++ == 0)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2564
				(void) printf("%s\n", banner);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2565
			(void) printf("\t%s", item->z_key);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2566
			/*
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2567
			 * Avoid an extra space being printed
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2568
			 * for "everyone" which is keyed with a null
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2569
			 * string
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2570
			 */
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2571
			if (item->z_key[0] != '\0')
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2572
				(void) printf(" ");
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2573
			zfs_print_perms(ptree);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2574
		}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2575
		item = AVL_NEXT(tree, item);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2576
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2577
}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2578
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2579
#define	LINES "-------------------------------------------------------------\n"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2580
static int
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2581
zfs_print_allows(char *ds)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2582
{
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2583
	zfs_allow_t *curperms, *perms;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2584
	zfs_handle_t *zhp;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2585
	allow_cb_t allowcb = { 0 };
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2586
	char banner[MAXPATHLEN];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2587
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2588
	if (ds[0] == '-')
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2589
		usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2590
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2591
	if (strrchr(ds, '@')) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2592
		(void) fprintf(stderr, gettext("Snapshots don't have 'allow'"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2593
		    " permissions\n"));
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2594
		return (1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2595
	}
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  2596
	if ((zhp = zfs_open(g_zfs, ds, ZFS_TYPE_DATASET)) == NULL)
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2597
		return (1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2598
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2599
	if (zfs_perm_get(zhp, &perms)) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2600
		(void) fprintf(stderr,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2601
		    gettext("Failed to retrieve 'allows' on %s\n"), ds);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2602
		zfs_close(zhp);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2603
		return (1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2604
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2605
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2606
	zfs_close(zhp);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2607
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2608
	if (perms != NULL)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2609
		(void) printf("%s", LINES);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2610
	for (curperms = perms; curperms; curperms = curperms->z_next) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2611
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2612
		(void) snprintf(banner, sizeof (banner),
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
  2613
		    gettext("Permission sets on (%s)"), curperms->z_setpoint);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2614
		allowcb.a_treeoffset =
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2615
		    offsetof(zfs_allow_node_t, z_localdescend);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2616
		allowcb.a_permcnt = 0;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2617
		zfs_iter_perms(&curperms->z_sets, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2618
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2619
		(void) snprintf(banner, sizeof (banner),
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
  2620
		    gettext("Create time permissions on (%s)"),
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
  2621
		    curperms->z_setpoint);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2622
		allowcb.a_treeoffset =
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2623
		    offsetof(zfs_allow_node_t, z_localdescend);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2624
		allowcb.a_permcnt = 0;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2625
		zfs_iter_perms(&curperms->z_crperms, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2626
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2627
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2628
		(void) snprintf(banner, sizeof (banner),
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
  2629
		    gettext("Local permissions on (%s)"), curperms->z_setpoint);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2630
		allowcb.a_treeoffset = offsetof(zfs_allow_node_t, z_local);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2631
		allowcb.a_permcnt = 0;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2632
		zfs_iter_perms(&curperms->z_user, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2633
		zfs_iter_perms(&curperms->z_group, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2634
		zfs_iter_perms(&curperms->z_everyone, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2635
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2636
		(void) snprintf(banner, sizeof (banner),
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
  2637
		    gettext("Descendent permissions on (%s)"),
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
  2638
		    curperms->z_setpoint);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2639
		allowcb.a_treeoffset = offsetof(zfs_allow_node_t, z_descend);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2640
		allowcb.a_permcnt = 0;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2641
		zfs_iter_perms(&curperms->z_user, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2642
		zfs_iter_perms(&curperms->z_group, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2643
		zfs_iter_perms(&curperms->z_everyone, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2644
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2645
		(void) snprintf(banner, sizeof (banner),
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
  2646
		    gettext("Local+Descendent permissions on (%s)"),
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2647
		    curperms->z_setpoint);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2648
		allowcb.a_treeoffset =
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2649
		    offsetof(zfs_allow_node_t, z_localdescend);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2650
		allowcb.a_permcnt = 0;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2651
		zfs_iter_perms(&curperms->z_user, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2652
		zfs_iter_perms(&curperms->z_group, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2653
		zfs_iter_perms(&curperms->z_everyone, banner, &allowcb);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2654
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2655
		(void) printf("%s", LINES);
2926
acfcfefbc60d PSARC 2006/288 zpool history
ek110237
parents: 2885
diff changeset
  2656
	}
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2657
	zfs_free_allows(perms);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2658
	return (0);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2659
}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2660
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2661
#define	ALLOWOPTIONS "ldcsu:g:e"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2662
#define	UNALLOWOPTIONS "ldcsu:g:er"
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2663
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2664
/*
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2665
 * Validate options, and build necessary datastructure to display/remove/add
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2666
 * permissions.
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2667
 * Returns 0 - If permissions should be added/removed
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2668
 * Returns 1 - If permissions should be displayed.
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2669
 * Returns -1 - on failure
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2670
 */
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2671
int
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2672
parse_allow_args(int *argc, char **argv[], boolean_t unallow,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2673
    char **ds, int *recurse, nvlist_t **zperms)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2674
{
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2675
	int c;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2676
	char *options = unallow ? UNALLOWOPTIONS : ALLOWOPTIONS;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2677
	zfs_deleg_inherit_t deleg_type = ZFS_DELEG_NONE;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2678
	zfs_deleg_who_type_t who_type = ZFS_DELEG_WHO_UNKNOWN;
4860
6a4d8017d62d 6592023 zfs allow/unallow has incorrect arguments parse
marks
parents: 4849
diff changeset
  2679
	char *who = NULL;
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2680
	char *perms = NULL;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2681
	zfs_handle_t *zhp;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2682
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2683
	while ((c = getopt(*argc, *argv, options)) != -1) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2684
		switch (c) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2685
		case 'l':
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2686
			if (who_type == ZFS_DELEG_CREATE ||
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2687
			    who_type == ZFS_DELEG_NAMED_SET)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2688
				usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2689
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2690
			deleg_type |= ZFS_DELEG_PERM_LOCAL;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2691
			break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2692
		case 'd':
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2693
			if (who_type == ZFS_DELEG_CREATE ||
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2694
			    who_type == ZFS_DELEG_NAMED_SET)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2695
				usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2696
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2697
			deleg_type |= ZFS_DELEG_PERM_DESCENDENT;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2698
			break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2699
		case 'r':
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2700
			*recurse = B_TRUE;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2701
			break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2702
		case 'c':
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2703
			if (who_type != ZFS_DELEG_WHO_UNKNOWN)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2704
				usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2705
			if (deleg_type)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2706
				usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2707
			who_type = ZFS_DELEG_CREATE;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2708
			break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2709
		case 's':
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2710
			if (who_type != ZFS_DELEG_WHO_UNKNOWN)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2711
				usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2712
			if (deleg_type)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2713
				usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2714
			who_type = ZFS_DELEG_NAMED_SET;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2715
			break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2716
		case 'u':
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2717
			if (who_type != ZFS_DELEG_WHO_UNKNOWN)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2718
				usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2719
			who_type = ZFS_DELEG_USER;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2720
			who = optarg;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2721
			break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2722
		case 'g':
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2723
			if (who_type != ZFS_DELEG_WHO_UNKNOWN)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2724
				usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2725
			who_type = ZFS_DELEG_GROUP;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2726
			who = optarg;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2727
			break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2728
		case 'e':
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2729
			if (who_type != ZFS_DELEG_WHO_UNKNOWN)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2730
				usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2731
			who_type = ZFS_DELEG_EVERYONE;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2732
			break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2733
		default:
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2734
			usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2735
			break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2736
		}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2737
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2738
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2739
	if (deleg_type == 0)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2740
		deleg_type = ZFS_DELEG_PERM_LOCALDESCENDENT;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2741
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2742
	*argc -= optind;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2743
	*argv += optind;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2744
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2745
	if (unallow == B_FALSE && *argc == 1) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2746
		/*
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2747
		 * Only print permissions if no options were processed
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2748
		 */
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2749
		if (optind == 1)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2750
			return (1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2751
		else
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2752
			usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2753
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2754
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2755
	/*
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2756
	 * initialize variables for zfs_build_perms based on number
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2757
	 * of arguments.
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2758
	 * 3 arguments ==>	zfs [un]allow joe perm,perm,perm <dataset> or
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2759
	 *			zfs [un]allow -s @set1 perm,perm <dataset>
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2760
	 * 2 arguments ==>	zfs [un]allow -c perm,perm <dataset> or
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2761
	 *			zfs [un]allow -u|-g <name> perm <dataset> or
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2762
	 *			zfs [un]allow -e perm,perm <dataset>
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2763
	 *			zfs unallow joe <dataset>
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2764
	 *			zfs unallow -s @set1 <dataset>
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2765
	 * 1 argument  ==>	zfs [un]allow -e <dataset> or
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2766
	 *			zfs [un]allow -c <dataset>
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2767
	 */
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2768
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2769
	switch (*argc) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2770
	case 3:
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2771
		perms = (*argv)[1];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2772
		who = (*argv)[0];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2773
		*ds = (*argv)[2];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2774
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2775
		/*
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2776
		 * advance argc/argv for do_allow cases.
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2777
		 * for do_allow case make sure who have a know who type
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2778
		 * and its not a permission set.
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2779
		 */
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2780
		if (unallow == B_TRUE) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2781
			*argc -= 2;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2782
			*argv += 2;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2783
		} else if (who_type != ZFS_DELEG_WHO_UNKNOWN &&
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2784
		    who_type != ZFS_DELEG_NAMED_SET)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2785
			usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2786
		break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2787
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2788
	case 2:
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2789
		if (unallow == B_TRUE && (who_type == ZFS_DELEG_EVERYONE ||
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2790
		    who_type == ZFS_DELEG_CREATE || who != NULL)) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2791
			perms = (*argv)[0];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2792
			*ds = (*argv)[1];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2793
		} else {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2794
			if (unallow == B_FALSE &&
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2795
			    (who_type == ZFS_DELEG_WHO_UNKNOWN ||
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2796
			    who_type == ZFS_DELEG_NAMED_SET))
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2797
				usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2798
			else if (who_type == ZFS_DELEG_WHO_UNKNOWN ||
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2799
			    who_type == ZFS_DELEG_NAMED_SET)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2800
				who = (*argv)[0];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2801
			else if (who_type != ZFS_DELEG_NAMED_SET)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2802
				perms = (*argv)[0];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2803
			*ds = (*argv)[1];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2804
		}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2805
		if (unallow == B_TRUE) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2806
			(*argc)--;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2807
			(*argv)++;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2808
		}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2809
		break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2810
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2811
	case 1:
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2812
		if (unallow == B_FALSE)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2813
			usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2814
		if (who == NULL && who_type != ZFS_DELEG_CREATE &&
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2815
		    who_type != ZFS_DELEG_EVERYONE)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2816
			usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2817
		*ds = (*argv)[0];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2818
		break;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2819
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2820
	default:
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2821
		usage(B_FALSE);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2822
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2823
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2824
	if (strrchr(*ds, '@')) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2825
		(void) fprintf(stderr,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2826
		    gettext("Can't set or remove 'allow' permissions "
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2827
		    "on snapshots.\n"));
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2828
			return (-1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2829
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2830
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  2831
	if ((zhp = zfs_open(g_zfs, *ds, ZFS_TYPE_DATASET)) == NULL)
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2832
		return (-1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2833
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2834
	if ((zfs_build_perms(zhp, who, perms,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2835
	    who_type, deleg_type, zperms)) != 0) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2836
		zfs_close(zhp);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2837
		return (-1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2838
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2839
	zfs_close(zhp);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2840
	return (0);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2841
}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2842
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2843
static int
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2844
zfs_do_allow(int argc, char **argv)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2845
{
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2846
	char *ds;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2847
	nvlist_t *zperms = NULL;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2848
	zfs_handle_t *zhp;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2849
	int unused;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2850
	int ret;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2851
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2852
	if ((ret = parse_allow_args(&argc, &argv, B_FALSE, &ds,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2853
	    &unused, &zperms)) == -1)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2854
		return (1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2855
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2856
	if (ret == 1)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2857
		return (zfs_print_allows(argv[0]));
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2858
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4988
diff changeset
  2859
	if ((zhp = zfs_open(g_zfs, ds, ZFS_TYPE_DATASET)) == NULL)
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2860
		return (1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2861
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2862
	if (zfs_perm_set(zhp, zperms)) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2863
		zfs_close(zhp);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2864
		nvlist_free(zperms);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2865
		return (1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2866
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2867
	nvlist_free(zperms);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2868
	zfs_close(zhp);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2869
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2870
	return (0);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2871
}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2872
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2873
static int
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2874
unallow_callback(zfs_handle_t *zhp, void *data)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2875
{
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2876
	nvlist_t *nvp = (nvlist_t *)data;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2877
	int error;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2878
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2879
	error = zfs_perm_remove(zhp, nvp);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2880
	if (error) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2881
		(void) fprintf(stderr, gettext("Failed to remove permissions "
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2882
		    "on %s\n"), zfs_get_name(zhp));
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2883
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2884
	return (error);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2885
}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2886
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2887
static int
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2888
zfs_do_unallow(int argc, char **argv)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2889
{
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2890
	int recurse = B_FALSE;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2891
	char *ds;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2892
	int error;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2893
	nvlist_t *zperms = NULL;
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  2894
	int flags = 0;
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2895
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2896
	if (parse_allow_args(&argc, &argv, B_TRUE,
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2897
	    &ds, &recurse, &zperms) == -1)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2898
		return (1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2899
7538
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  2900
	if (recurse)
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  2901
		flags |= ZFS_ITER_RECURSE;
18c2451107fd PSARC 2008/469 Excluding snapshot info from 'zfs list'
Rich Morris <Richard.Morris@Sun.COM>
parents: 7390
diff changeset
  2902
	error = zfs_for_each(argc, argv, flags,
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2903
	    ZFS_TYPE_FILESYSTEM|ZFS_TYPE_VOLUME, NULL,
9365
7838a22eccd6 PSARC/2009/171 zfs list -d and zfs get -d
Chris Gerhard <Chris.Gerhard@sun.com>
parents: 8811
diff changeset
  2904
	    NULL, 0, unallow_callback, (void *)zperms);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2905
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2906
	if (zperms)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2907
		nvlist_free(zperms);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2908
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  2909
	return (error);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2910
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2911
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2912
typedef struct get_all_cbdata {
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2913
	zfs_handle_t	**cb_handles;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2914
	size_t		cb_alloc;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2915
	size_t		cb_used;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2916
	uint_t		cb_types;
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2917
	boolean_t	cb_verbose;
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2918
} get_all_cbdata_t;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2919
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2920
#define	CHECK_SPINNER 30
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2921
#define	SPINNER_TIME 3		/* seconds */
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2922
#define	MOUNT_TIME 5		/* seconds */
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2923
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2924
static int
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2925
get_one_dataset(zfs_handle_t *zhp, void *data)
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2926
{
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2927
	static char spin[] = { '-', '\\', '|', '/' };
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2928
	static int spinval = 0;
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2929
	static int spincheck = 0;
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2930
	static time_t last_spin_time = (time_t)0;
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2931
	get_all_cbdata_t *cbp = data;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2932
	zfs_type_t type = zfs_get_type(zhp);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2933
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2934
	if (cbp->cb_verbose) {
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2935
		if (--spincheck < 0) {
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2936
			time_t now = time(NULL);
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2937
			if (last_spin_time + SPINNER_TIME < now) {
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2938
				(void) printf("\b%c", spin[spinval++ % 4]);
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2939
				(void) fflush(stdout);
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2940
				last_spin_time = now;
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2941
			}
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2942
			spincheck = CHECK_SPINNER;
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2943
		}
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2944
	}
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2945
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2946
	/*
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2947
	 * Interate over any nested datasets.
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2948
	 */
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2949
	if (type == ZFS_TYPE_FILESYSTEM &&
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2950
	    zfs_iter_filesystems(zhp, get_one_dataset, data) != 0) {
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3126
diff changeset
  2951
		zfs_close(zhp);
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2952
		return (1);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2953
	}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2954
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2955
	/*
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2956
	 * Skip any datasets whose type does not match.
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2957
	 */
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2958
	if ((type & cbp->cb_types) == 0) {
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2959
		zfs_close(zhp);
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2960
		return (0);
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2961
	}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2962
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2963
	if (cbp->cb_alloc == cbp->cb_used) {
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2964
		zfs_handle_t **handles;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2965
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2966
		if (cbp->cb_alloc == 0)
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2967
			cbp->cb_alloc = 64;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2968
		else
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2969
			cbp->cb_alloc *= 2;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2970
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2971
		handles = safe_malloc(cbp->cb_alloc * sizeof (void *));
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2972
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2973
		if (cbp->cb_handles) {
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2974
			bcopy(cbp->cb_handles, handles,
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2975
			    cbp->cb_used * sizeof (void *));
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2976
			free(cbp->cb_handles);
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2977
		}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2978
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2979
		cbp->cb_handles = handles;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2980
	}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2981
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2982
	cbp->cb_handles[cbp->cb_used++] = zhp;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2983
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2984
	return (0);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2985
}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2986
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2987
static void
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2988
get_all_datasets(uint_t types, zfs_handle_t ***dslist, size_t *count,
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2989
    boolean_t verbose)
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2990
{
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2991
	get_all_cbdata_t cb = { 0 };
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2992
	cb.cb_types = types;
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2993
	cb.cb_verbose = verbose;
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2994
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2995
	if (verbose) {
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2996
		(void) printf("%s: *", gettext("Reading ZFS config"));
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2997
		(void) fflush(stdout);
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  2998
	}
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  2999
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3000
	(void) zfs_iter_root(g_zfs, get_one_dataset, &cb);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3001
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3002
	*dslist = cb.cb_handles;
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3003
	*count = cb.cb_used;
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3004
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3005
	if (verbose) {
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3006
		(void) printf("\b%s\n", gettext("done."));
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3007
	}
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3008
}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3009
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3010
static int
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3011
dataset_cmp(const void *a, const void *b)
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3012
{
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3013
	zfs_handle_t **za = (zfs_handle_t **)a;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3014
	zfs_handle_t **zb = (zfs_handle_t **)b;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3015
	char mounta[MAXPATHLEN];
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3016
	char mountb[MAXPATHLEN];
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3017
	boolean_t gota, gotb;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3018
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3019
	if ((gota = (zfs_get_type(*za) == ZFS_TYPE_FILESYSTEM)) != 0)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3020
		verify(zfs_prop_get(*za, ZFS_PROP_MOUNTPOINT, mounta,
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3021
		    sizeof (mounta), NULL, NULL, 0, B_FALSE) == 0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3022
	if ((gotb = (zfs_get_type(*zb) == ZFS_TYPE_FILESYSTEM)) != 0)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3023
		verify(zfs_prop_get(*zb, ZFS_PROP_MOUNTPOINT, mountb,
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3024
		    sizeof (mountb), NULL, NULL, 0, B_FALSE) == 0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3025
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3026
	if (gota && gotb)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3027
		return (strcmp(mounta, mountb));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3028
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3029
	if (gota)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3030
		return (-1);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3031
	if (gotb)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3032
		return (1);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3033
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3034
	return (strcmp(zfs_get_name(a), zfs_get_name(b)));
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3035
}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3036
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3037
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3038
 * Generic callback for sharing or mounting filesystems.  Because the code is so
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3039
 * similar, we have a common function with an extra parameter to determine which
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3040
 * mode we are using.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3041
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3042
#define	OP_SHARE	0x1
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3043
#define	OP_MOUNT	0x2
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3044
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3045
/*
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3046
 * Share or mount a dataset.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3047
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3048
static int
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3049
share_mount_one(zfs_handle_t *zhp, int op, int flags, char *protocol,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3050
    boolean_t explicit, const char *options)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3051
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3052
	char mountpoint[ZFS_MAXPROPLEN];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3053
	char shareopts[ZFS_MAXPROPLEN];
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3054
	char smbshareopts[ZFS_MAXPROPLEN];
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3055
	const char *cmdname = op == OP_SHARE ? "share" : "mount";
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3056
	struct mnttab mnt;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3057
	uint64_t zoned, canmount;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3058
	zfs_type_t type = zfs_get_type(zhp);
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3059
	boolean_t shared_nfs, shared_smb;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3060
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3061
	assert(type & (ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3062
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3063
	if (type == ZFS_TYPE_FILESYSTEM) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3064
		/*
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3065
		 * Check to make sure we can mount/share this dataset.  If we
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3066
		 * are in the global zone and the filesystem is exported to a
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3067
		 * local zone, or if we are in a local zone and the
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3068
		 * filesystem is not exported, then it is an error.
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3069
		 */
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3070
		zoned = zfs_prop_get_int(zhp, ZFS_PROP_ZONED);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3071
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3072
		if (zoned && getzoneid() == GLOBAL_ZONEID) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3073
			if (!explicit)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3074
				return (0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3075
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3076
			(void) fprintf(stderr, gettext("cannot %s '%s': "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3077
			    "dataset is exported to a local zone\n"), cmdname,
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3078
			    zfs_get_name(zhp));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3079
			return (1);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3080
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3081
		} else if (!zoned && getzoneid() != GLOBAL_ZONEID) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3082
			if (!explicit)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3083
				return (0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3084
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3085
			(void) fprintf(stderr, gettext("cannot %s '%s': "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3086
			    "permission denied\n"), cmdname,
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3087
			    zfs_get_name(zhp));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3088
			return (1);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3089
		}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3090
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3091
		/*
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3092
		 * Ignore any filesystems which don't apply to us. This
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3093
		 * includes those with a legacy mountpoint, or those with
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3094
		 * legacy share options.
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3095
		 */
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3096
		verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, mountpoint,
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3097
		    sizeof (mountpoint), NULL, NULL, 0, B_FALSE) == 0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3098
		verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS, shareopts,
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3099
		    sizeof (shareopts), NULL, NULL, 0, B_FALSE) == 0);
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3100
		verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB, smbshareopts,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3101
		    sizeof (smbshareopts), NULL, NULL, 0, B_FALSE) == 0);
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3102
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3103
		if (op == OP_SHARE && strcmp(shareopts, "off") == 0 &&
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3104
		    strcmp(smbshareopts, "off") == 0) {
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3105
			if (!explicit)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3106
				return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3107
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3108
			(void) fprintf(stderr, gettext("cannot share '%s': "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3109
			    "legacy share\n"), zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3110
			(void) fprintf(stderr, gettext("use share(1M) to "
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
  3111
			    "share this filesystem, or set "
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
  3112
			    "sharenfs property on\n"));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3113
			return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3114
		}
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3115
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3116
		/*
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3117
		 * We cannot share or mount legacy filesystems. If the
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3118
		 * shareopts is non-legacy but the mountpoint is legacy, we
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3119
		 * treat it as a legacy share.
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3120
		 */
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3121
		if (strcmp(mountpoint, "legacy") == 0) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3122
			if (!explicit)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3123
				return (0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3124
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3125
			(void) fprintf(stderr, gettext("cannot %s '%s': "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3126
			    "legacy mountpoint\n"), cmdname, zfs_get_name(zhp));
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  3127
			(void) fprintf(stderr, gettext("use %s(1M) to "
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  3128
			    "%s this filesystem\n"), cmdname, cmdname);
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3129
			return (1);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3130
		}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3131
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3132
		if (strcmp(mountpoint, "none") == 0) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3133
			if (!explicit)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3134
				return (0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3135
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3136
			(void) fprintf(stderr, gettext("cannot %s '%s': no "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3137
			    "mountpoint set\n"), cmdname, zfs_get_name(zhp));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3138
			return (1);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3139
		}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3140
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3141
		/*
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3142
		 * canmount	explicit	outcome
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3143
		 * on		no		pass through
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3144
		 * on		yes		pass through
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3145
		 * off		no		return 0
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3146
		 * off		yes		display error, return 1
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3147
		 * noauto	no		return 0
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3148
		 * noauto	yes		pass through
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3149
		 */
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8213
diff changeset
  3150
		canmount = zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT);
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3151
		if (canmount == ZFS_CANMOUNT_OFF) {
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3152
			if (!explicit)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3153
				return (0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3154
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3155
			(void) fprintf(stderr, gettext("cannot %s '%s': "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3156
			    "'canmount' property is set to 'off'\n"), cmdname,
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3157
			    zfs_get_name(zhp));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3158
			return (1);
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3159
		} else if (canmount == ZFS_CANMOUNT_NOAUTO && !explicit) {
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3160
			return (0);
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3161
		}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3162
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3163
		/*
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3164
		 * At this point, we have verified that the mountpoint and/or
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3165
		 * shareopts are appropriate for auto management. If the
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3166
		 * filesystem is already mounted or shared, return (failing
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3167
		 * for explicit requests); otherwise mount or share the
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3168
		 * filesystem.
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3169
		 */
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3170
		switch (op) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3171
		case OP_SHARE:
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3172
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3173
			shared_nfs = zfs_is_shared_nfs(zhp, NULL);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3174
			shared_smb = zfs_is_shared_smb(zhp, NULL);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3175
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3176
			if (shared_nfs && shared_smb ||
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3177
			    (shared_nfs && strcmp(shareopts, "on") == 0 &&
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3178
			    strcmp(smbshareopts, "off") == 0) ||
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3179
			    (shared_smb && strcmp(smbshareopts, "on") == 0 &&
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3180
			    strcmp(shareopts, "off") == 0)) {
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3181
				if (!explicit)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3182
					return (0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3183
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3184
				(void) fprintf(stderr, gettext("cannot share "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3185
				    "'%s': filesystem already shared\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3186
				    zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3187
				return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3188
			}
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3189
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3190
			if (!zfs_is_mounted(zhp, NULL) &&
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3191
			    zfs_mount(zhp, NULL, 0) != 0)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3192
				return (1);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3193
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3194
			if (protocol == NULL) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3195
				if (zfs_shareall(zhp) != 0)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3196
					return (1);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3197
			} else if (strcmp(protocol, "nfs") == 0) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3198
				if (zfs_share_nfs(zhp))
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3199
					return (1);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3200
			} else if (strcmp(protocol, "smb") == 0) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3201
				if (zfs_share_smb(zhp))
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3202
					return (1);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3203
			} else {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3204
				(void) fprintf(stderr, gettext("cannot share "
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3205
				    "'%s': invalid share type '%s' "
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3206
				    "specified\n"),
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3207
				    zfs_get_name(zhp), protocol);
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3208
				return (1);
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3209
			}
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3210
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3211
			break;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3212
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3213
		case OP_MOUNT:
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3214
			if (options == NULL)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3215
				mnt.mnt_mntopts = "";
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3216
			else
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3217
				mnt.mnt_mntopts = (char *)options;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3218
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3219
			if (!hasmntopt(&mnt, MNTOPT_REMOUNT) &&
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3220
			    zfs_is_mounted(zhp, NULL)) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3221
				if (!explicit)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3222
					return (0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3223
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3224
				(void) fprintf(stderr, gettext("cannot mount "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3225
				    "'%s': filesystem already mounted\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3226
				    zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3227
				return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3228
			}
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3229
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3230
			if (zfs_mount(zhp, options, flags) != 0)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3231
				return (1);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3232
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3233
		}
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3234
	} else {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3235
		assert(op == OP_SHARE);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3236
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3237
		/*
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3238
		 * Ignore any volumes that aren't shared.
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3239
		 */
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3240
		verify(zfs_prop_get(zhp, ZFS_PROP_SHAREISCSI, shareopts,
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3241
		    sizeof (shareopts), NULL, NULL, 0, B_FALSE) == 0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3242
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3243
		if (strcmp(shareopts, "off") == 0) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3244
			if (!explicit)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3245
				return (0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3246
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3247
			(void) fprintf(stderr, gettext("cannot share '%s': "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3248
			    "'shareiscsi' property not set\n"),
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3249
			    zfs_get_name(zhp));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3250
			(void) fprintf(stderr, gettext("set 'shareiscsi' "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3251
			    "property or use iscsitadm(1M) to share this "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3252
			    "volume\n"));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3253
			return (1);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3254
		}
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3255
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3256
		if (zfs_is_shared_iscsi(zhp)) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3257
			if (!explicit)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3258
				return (0);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3259
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3260
			(void) fprintf(stderr, gettext("cannot share "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3261
			    "'%s': volume already shared\n"),
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3262
			    zfs_get_name(zhp));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3263
			return (1);
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3264
		}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3265
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3266
		if (zfs_share_iscsi(zhp) != 0)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3267
			return (1);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3268
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3269
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3270
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3271
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3272
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3273
/*
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3274
 * Reports progress in the form "(current/total)".  Not thread-safe.
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3275
 */
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3276
static void
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3277
report_mount_progress(int current, int total)
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3278
{
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3279
	static int len;
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3280
	static char *reverse = "\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b"
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3281
	    "\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b";
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3282
	static time_t last_progress_time;
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3283
	time_t now = time(NULL);
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3284
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3285
	/* report 1..n instead of 0..n-1 */
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3286
	++current;
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3287
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3288
	/* display header if we're here for the first time */
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3289
	if (current == 1) {
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3290
		(void) printf(gettext("Mounting ZFS filesystems: "));
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3291
		len = 0;
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  3292
	} else if (current != total && last_progress_time + MOUNT_TIME >= now) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  3293
		/* too soon to report again */
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  3294
		return;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  3295
	}
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3296
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3297
	last_progress_time = now;
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3298
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3299
	/* back up to prepare for overwriting */
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3300
	if (len)
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3301
		(void) printf("%*.*s", len, len, reverse);
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3302
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3303
	/* We put a newline at the end if this is the last one.  */
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3304
	len = printf("(%d/%d)%s", current, total, current == total ? "\n" : "");
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3305
	(void) fflush(stdout);
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3306
}
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3307
6289
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3308
static void
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3309
append_options(char *mntopts, char *newopts)
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3310
{
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3311
	int len = strlen(mntopts);
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3312
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3313
	/* original length plus new string to append plus 1 for the comma */
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3314
	if (len + 1 + strlen(newopts) >= MNT_LINE_MAX) {
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3315
		(void) fprintf(stderr, gettext("the opts argument for "
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3316
		    "'%c' option is too long (more than %d chars)\n"),
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3317
		    "-o", MNT_LINE_MAX);
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3318
		usage(B_FALSE);
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3319
	}
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3320
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3321
	if (*mntopts)
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3322
		mntopts[len++] = ',';
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3323
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3324
	(void) strcpy(&mntopts[len], newopts);
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3325
}
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3326
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3327
static int
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3328
share_mount(int op, int argc, char **argv)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3329
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3330
	int do_all = 0;
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3331
	boolean_t verbose = B_FALSE;
2372
ecbf1ba25c2e 6449033 PIT nightly fails due to the fix for 6436514
lling
parents: 2369
diff changeset
  3332
	int c, ret = 0;
6289
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3333
	char *options = NULL;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3334
	int types, flags = 0;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3335
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3336
	/* check options */
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3337
	while ((c = getopt(argc, argv, op == OP_MOUNT ? ":avo:O" : "a"))
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3338
	    != -1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3339
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3340
		case 'a':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3341
			do_all = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3342
			break;
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3343
		case 'v':
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3344
			verbose = B_TRUE;
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3345
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3346
		case 'o':
6289
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3347
			if (*optarg == '\0') {
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3348
				(void) fprintf(stderr, gettext("empty mount "
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3349
				    "options (-o) specified\n"));
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3350
				usage(B_FALSE);
4717
20ba35462dba 6579753 segmentation fault if zfs mount -o with very long options
rm160521
parents: 4715
diff changeset
  3351
			}
6289
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3352
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3353
			if (options == NULL)
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3354
				options = safe_malloc(MNT_LINE_MAX + 1);
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3355
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3356
			/* option validation is done later */
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3357
			append_options(options, optarg);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3358
			break;
4717
20ba35462dba 6579753 segmentation fault if zfs mount -o with very long options
rm160521
parents: 4715
diff changeset
  3359
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3360
		case 'O':
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3361
			flags |= MS_OVERLAY;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3362
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3363
		case ':':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3364
			(void) fprintf(stderr, gettext("missing argument for "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3365
			    "'%c' option\n"), optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  3366
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3367
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3368
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3369
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3370
			    optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  3371
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3372
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3373
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3374
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3375
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3376
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3377
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3378
	/* check number of arguments */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3379
	if (do_all) {
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3380
		zfs_handle_t **dslist = NULL;
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3381
		size_t i, count = 0;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3382
		char *protocol = NULL;
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3383
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3384
		if (op == OP_MOUNT) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3385
			types = ZFS_TYPE_FILESYSTEM;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3386
		} else if (argc > 0) {
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3387
			if (strcmp(argv[0], "nfs") == 0 ||
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3388
			    strcmp(argv[0], "smb") == 0) {
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3389
				types = ZFS_TYPE_FILESYSTEM;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3390
			} else if (strcmp(argv[0], "iscsi") == 0) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3391
				types = ZFS_TYPE_VOLUME;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3392
			} else {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3393
				(void) fprintf(stderr, gettext("share type "
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3394
				    "must be 'nfs', 'smb' or 'iscsi'\n"));
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3395
				usage(B_FALSE);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3396
			}
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3397
			protocol = argv[0];
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3398
			argc--;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3399
			argv++;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3400
		} else {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3401
			types = ZFS_TYPE_FILESYSTEM | ZFS_TYPE_VOLUME;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3402
		}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3403
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3404
		if (argc != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3405
			(void) fprintf(stderr, gettext("too many arguments\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  3406
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3407
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3408
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3409
		get_all_datasets(types, &dslist, &count, verbose);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3410
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3411
		if (count == 0)
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3412
			return (0);
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3413
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3414
		qsort(dslist, count, sizeof (void *), dataset_cmp);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3415
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3416
		for (i = 0; i < count; i++) {
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3417
			if (verbose)
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3418
				report_mount_progress(i, count);
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3419
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3420
			if (share_mount_one(dslist[i], op, flags, protocol,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3421
			    B_FALSE, options) != 0)
2369
8e9197fd3c58 6436514 zfs share on /var/mail needs to be run explicitly after system boots
lling
parents: 2199
diff changeset
  3422
				ret = 1;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3423
			zfs_close(dslist[i]);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3424
		}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  3425
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3426
		free(dslist);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3427
	} else if (argc == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3428
		struct mnttab entry;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3429
4717
20ba35462dba 6579753 segmentation fault if zfs mount -o with very long options
rm160521
parents: 4715
diff changeset
  3430
		if ((op == OP_SHARE) || (options != NULL)) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3431
			(void) fprintf(stderr, gettext("missing filesystem "
4717
20ba35462dba 6579753 segmentation fault if zfs mount -o with very long options
rm160521
parents: 4715
diff changeset
  3432
			    "argument (specify -a for all)\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  3433
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3434
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3435
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3436
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3437
		 * When mount is given no arguments, go through /etc/mnttab and
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3438
		 * display any active ZFS mounts.  We hide any snapshots, since
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3439
		 * they are controlled automatically.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3440
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3441
		rewind(mnttab_file);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3442
		while (getmntent(mnttab_file, &entry) == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3443
			if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0 ||
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3444
			    strchr(entry.mnt_special, '@') != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3445
				continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3446
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3447
			(void) printf("%-30s  %s\n", entry.mnt_special,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3448
			    entry.mnt_mountp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3449
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3450
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3451
	} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3452
		zfs_handle_t *zhp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3453
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3454
		types = ZFS_TYPE_FILESYSTEM;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3455
		if (op == OP_SHARE)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3456
			types |= ZFS_TYPE_VOLUME;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3457
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3458
		if (argc > 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3459
			(void) fprintf(stderr,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3460
			    gettext("too many arguments\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  3461
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3462
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3463
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3464
		if ((zhp = zfs_open(g_zfs, argv[0], types)) == NULL) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3465
			ret = 1;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3466
		} else {
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3467
			ret = share_mount_one(zhp, op, flags, NULL, B_TRUE,
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3468
			    options);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3469
			zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3470
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3471
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3472
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3473
	return (ret);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3474
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3475
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3476
/*
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3477
 * zfs mount -a [nfs | iscsi]
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3478
 * zfs mount filesystem
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3479
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3480
 * Mount all filesystems, or mount the given filesystem.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3481
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3482
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3483
zfs_do_mount(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3484
{
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3485
	return (share_mount(OP_MOUNT, argc, argv));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3486
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3487
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3488
/*
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3489
 * zfs share -a [nfs | iscsi | smb]
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3490
 * zfs share filesystem
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3491
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3492
 * Share all filesystems, or share the given filesystem.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3493
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3494
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3495
zfs_do_share(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3496
{
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3497
	return (share_mount(OP_SHARE, argc, argv));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3498
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3499
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3500
typedef struct unshare_unmount_node {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3501
	zfs_handle_t	*un_zhp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3502
	char		*un_mountp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3503
	uu_avl_node_t	un_avlnode;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3504
} unshare_unmount_node_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3505
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3506
/* ARGSUSED */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3507
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3508
unshare_unmount_compare(const void *larg, const void *rarg, void *unused)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3509
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3510
	const unshare_unmount_node_t *l = larg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3511
	const unshare_unmount_node_t *r = rarg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3512
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3513
	return (strcmp(l->un_mountp, r->un_mountp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3514
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3515
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3516
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3517
 * Convenience routine used by zfs_do_umount() and manual_unmount().  Given an
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3518
 * absolute path, find the entry /etc/mnttab, verify that its a ZFS filesystem,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3519
 * and unmount it appropriately.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3520
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3521
static int
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3522
unshare_unmount_path(int op, char *path, int flags, boolean_t is_manual)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3523
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3524
	zfs_handle_t *zhp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3525
	int ret;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3526
	struct stat64 statbuf;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3527
	struct extmnttab entry;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3528
	const char *cmdname = (op == OP_SHARE) ? "unshare" : "unmount";
6289
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3529
	ino_t path_inode;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3530
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3531
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3532
	 * Search for the path in /etc/mnttab.  Rather than looking for the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3533
	 * specific path, which can be fooled by non-standard paths (i.e. ".."
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3534
	 * or "//"), we stat() the path and search for the corresponding
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3535
	 * (major,minor) device pair.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3536
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3537
	if (stat64(path, &statbuf) != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3538
		(void) fprintf(stderr, gettext("cannot %s '%s': %s\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3539
		    cmdname, path, strerror(errno));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3540
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3541
	}
6289
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3542
	path_inode = statbuf.st_ino;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3543
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3544
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3545
	 * Search for the given (major,minor) pair in the mount table.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3546
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3547
	rewind(mnttab_file);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3548
	while ((ret = getextmntent(mnttab_file, &entry, 0)) == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3549
		if (entry.mnt_major == major(statbuf.st_dev) &&
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3550
		    entry.mnt_minor == minor(statbuf.st_dev))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3551
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3552
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3553
	if (ret != 0) {
5904
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3554
		if (op == OP_SHARE) {
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3555
			(void) fprintf(stderr, gettext("cannot %s '%s': not "
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3556
			    "currently mounted\n"), cmdname, path);
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3557
			return (1);
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3558
		}
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3559
		(void) fprintf(stderr, gettext("warning: %s not in mnttab\n"),
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3560
		    path);
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3561
		if ((ret = umount2(path, flags)) != 0)
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3562
			(void) fprintf(stderr, gettext("%s: %s\n"), path,
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3563
			    strerror(errno));
ac17ccc8902b 6587767 'zpool create' get different behavior while mountpoint not empty but has file or dir
timh
parents: 5749
diff changeset
  3564
		return (ret != 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3565
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3566
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3567
	if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3568
		(void) fprintf(stderr, gettext("cannot %s '%s': not a ZFS "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3569
		    "filesystem\n"), cmdname, path);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3570
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3571
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3572
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  3573
	if ((zhp = zfs_open(g_zfs, entry.mnt_special,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  3574
	    ZFS_TYPE_FILESYSTEM)) == NULL)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3575
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3576
6289
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3577
	ret = 1;
7386
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3578
	if (stat64(entry.mnt_mountp, &statbuf) != 0) {
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3579
		(void) fprintf(stderr, gettext("cannot %s '%s': %s\n"),
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3580
		    cmdname, path, strerror(errno));
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3581
		goto out;
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3582
	} else if (statbuf.st_ino != path_inode) {
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3583
		(void) fprintf(stderr, gettext("cannot "
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3584
		    "%s '%s': not a mountpoint\n"), cmdname, path);
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3585
		goto out;
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3586
	}
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3587
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3588
	if (op == OP_SHARE) {
6289
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3589
		char nfs_mnt_prop[ZFS_MAXPROPLEN];
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3590
		char smbshare_prop[ZFS_MAXPROPLEN];
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3591
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3592
		verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS, nfs_mnt_prop,
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3593
		    sizeof (nfs_mnt_prop), NULL, NULL, 0, B_FALSE) == 0);
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3594
		verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB, smbshare_prop,
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3595
		    sizeof (smbshare_prop), NULL, NULL, 0, B_FALSE) == 0);
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3596
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3597
		if (strcmp(nfs_mnt_prop, "off") == 0 &&
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3598
		    strcmp(smbshare_prop, "off") == 0) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3599
			(void) fprintf(stderr, gettext("cannot unshare "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3600
			    "'%s': legacy share\n"), path);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3601
			(void) fprintf(stderr, gettext("use "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3602
			    "unshare(1M) to unshare this filesystem\n"));
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3603
		} else if (!zfs_is_shared(zhp)) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3604
			(void) fprintf(stderr, gettext("cannot unshare '%s': "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3605
			    "not currently shared\n"), path);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3606
		} else {
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3607
			ret = zfs_unshareall_bypath(zhp, path);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3608
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3609
	} else {
6289
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3610
		char mtpt_prop[ZFS_MAXPROPLEN];
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3611
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3612
		verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, mtpt_prop,
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3613
		    sizeof (mtpt_prop), NULL, NULL, 0, B_FALSE) == 0);
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3614
7386
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3615
		if (is_manual) {
1264
976065f98c2b 6372107 legacy "umount" command unmount filesystems in the subdirs when zfs mountpoint is a regular path
lling
parents: 1204
diff changeset
  3616
			ret = zfs_unmount(zhp, NULL, flags);
6289
9a83171c70d6 6603209 Multiple -o options to 'zfs mount' ignore all but the last.
mmusante
parents: 6168
diff changeset
  3617
		} else if (strcmp(mtpt_prop, "legacy") == 0) {
1264
976065f98c2b 6372107 legacy "umount" command unmount filesystems in the subdirs when zfs mountpoint is a regular path
lling
parents: 1204
diff changeset
  3618
			(void) fprintf(stderr, gettext("cannot unmount "
976065f98c2b 6372107 legacy "umount" command unmount filesystems in the subdirs when zfs mountpoint is a regular path
lling
parents: 1204
diff changeset
  3619
			    "'%s': legacy mountpoint\n"),
976065f98c2b 6372107 legacy "umount" command unmount filesystems in the subdirs when zfs mountpoint is a regular path
lling
parents: 1204
diff changeset
  3620
			    zfs_get_name(zhp));
976065f98c2b 6372107 legacy "umount" command unmount filesystems in the subdirs when zfs mountpoint is a regular path
lling
parents: 1204
diff changeset
  3621
			(void) fprintf(stderr, gettext("use umount(1M) "
976065f98c2b 6372107 legacy "umount" command unmount filesystems in the subdirs when zfs mountpoint is a regular path
lling
parents: 1204
diff changeset
  3622
			    "to unmount this filesystem\n"));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3623
		} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3624
			ret = zfs_unmountall(zhp, flags);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3625
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3626
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3627
7386
78eaaa8a7347 6663585 'zfs unshare' & 'zfs unmount' should only support 'filesystem' or 'mountpoint' as argument
Sachin Gaikwad <Sachin.Gaikwad@Sun.COM>
parents: 7273
diff changeset
  3628
out:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3629
	zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3630
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3631
	return (ret != 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3632
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3633
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3634
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3635
 * Generic callback for unsharing or unmounting a filesystem.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3636
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3637
static int
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3638
unshare_unmount(int op, int argc, char **argv)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3639
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3640
	int do_all = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3641
	int flags = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3642
	int ret = 0;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3643
	int types, c;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3644
	zfs_handle_t *zhp;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3645
	char nfsiscsi_mnt_prop[ZFS_MAXPROPLEN];
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3646
	char sharesmb[ZFS_MAXPROPLEN];
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3647
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3648
	/* check options */
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3649
	while ((c = getopt(argc, argv, op == OP_SHARE ? "a" : "af")) != -1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3650
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3651
		case 'a':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3652
			do_all = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3653
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3654
		case 'f':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3655
			flags = MS_FORCE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3656
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3657
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3658
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3659
			    optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  3660
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3661
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3662
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3663
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3664
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3665
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3666
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3667
	if (do_all) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3668
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3669
		 * We could make use of zfs_for_each() to walk all datasets in
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3670
		 * the system, but this would be very inefficient, especially
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3671
		 * since we would have to linearly search /etc/mnttab for each
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3672
		 * one.  Instead, do one pass through /etc/mnttab looking for
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3673
		 * zfs entries and call zfs_unmount() for each one.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3674
		 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3675
		 * Things get a little tricky if the administrator has created
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3676
		 * mountpoints beneath other ZFS filesystems.  In this case, we
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3677
		 * have to unmount the deepest filesystems first.  To accomplish
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3678
		 * this, we place all the mountpoints in an AVL tree sorted by
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3679
		 * the special type (dataset name), and walk the result in
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3680
		 * reverse to make sure to get any snapshots first.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3681
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3682
		struct mnttab entry;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3683
		uu_avl_pool_t *pool;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3684
		uu_avl_t *tree;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3685
		unshare_unmount_node_t *node;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3686
		uu_avl_index_t idx;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3687
		uu_avl_walk_t *walk;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3688
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3689
		if (argc != 0) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3690
			(void) fprintf(stderr, gettext("too many arguments\n"));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3691
			usage(B_FALSE);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3692
		}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3693
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3694
		if ((pool = uu_avl_pool_create("unmount_pool",
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3695
		    sizeof (unshare_unmount_node_t),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3696
		    offsetof(unshare_unmount_node_t, un_avlnode),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3697
		    unshare_unmount_compare,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3698
		    UU_DEFAULT)) == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3699
			(void) fprintf(stderr, gettext("internal error: "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3700
			    "out of memory\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3701
			exit(1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3702
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3703
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3704
		if ((tree = uu_avl_create(pool, NULL, UU_DEFAULT)) == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3705
			(void) fprintf(stderr, gettext("internal error: "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3706
			    "out of memory\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3707
			exit(1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3708
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3709
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3710
		rewind(mnttab_file);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3711
		while (getmntent(mnttab_file, &entry) == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3712
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3713
			/* ignore non-ZFS entries */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3714
			if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3715
				continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3716
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3717
			/* ignore snapshots */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3718
			if (strchr(entry.mnt_special, '@') != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3719
				continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3720
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  3721
			if ((zhp = zfs_open(g_zfs, entry.mnt_special,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3722
			    ZFS_TYPE_FILESYSTEM)) == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3723
				ret = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3724
				continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3725
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3726
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3727
			switch (op) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3728
			case OP_SHARE:
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3729
				verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3730
				    nfsiscsi_mnt_prop,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3731
				    sizeof (nfsiscsi_mnt_prop),
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3732
				    NULL, NULL, 0, B_FALSE) == 0);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3733
				if (strcmp(nfsiscsi_mnt_prop, "off") != 0)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3734
					break;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3735
				verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3736
				    nfsiscsi_mnt_prop,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3737
				    sizeof (nfsiscsi_mnt_prop),
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3738
				    NULL, NULL, 0, B_FALSE) == 0);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3739
				if (strcmp(nfsiscsi_mnt_prop, "off") == 0)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3740
					continue;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3741
				break;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3742
			case OP_MOUNT:
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3743
				/* Ignore legacy mounts */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3744
				verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3745
				    nfsiscsi_mnt_prop,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3746
				    sizeof (nfsiscsi_mnt_prop),
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3747
				    NULL, NULL, 0, B_FALSE) == 0);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3748
				if (strcmp(nfsiscsi_mnt_prop, "legacy") == 0)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3749
					continue;
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3750
				/* Ignore canmount=noauto mounts */
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3751
				if (zfs_prop_get_int(zhp, ZFS_PROP_CANMOUNT) ==
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3752
				    ZFS_CANMOUNT_NOAUTO)
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  3753
					continue;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3754
			default:
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3755
				break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3756
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3757
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3758
			node = safe_malloc(sizeof (unshare_unmount_node_t));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3759
			node->un_zhp = zhp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3760
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3761
			if ((node->un_mountp = strdup(entry.mnt_mountp)) ==
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3762
			    NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3763
				(void) fprintf(stderr, gettext("internal error:"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3764
				    " out of memory\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3765
				exit(1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3766
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3767
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3768
			uu_avl_node_init(node, &node->un_avlnode, pool);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3769
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3770
			if (uu_avl_find(tree, node, NULL, &idx) == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3771
				uu_avl_insert(tree, node, idx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3772
			} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3773
				zfs_close(node->un_zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3774
				free(node->un_mountp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3775
				free(node);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3776
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3777
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3778
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3779
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3780
		 * Walk the AVL tree in reverse, unmounting each filesystem and
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3781
		 * removing it from the AVL tree in the process.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3782
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3783
		if ((walk = uu_avl_walk_start(tree,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3784
		    UU_WALK_REVERSE | UU_WALK_ROBUST)) == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3785
			(void) fprintf(stderr,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3786
			    gettext("internal error: out of memory"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3787
			exit(1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3788
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3790
		while ((node = uu_avl_walk_next(walk)) != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3791
			uu_avl_remove(tree, node);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3792
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3793
			switch (op) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3794
			case OP_SHARE:
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3795
				if (zfs_unshareall_bypath(node->un_zhp,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3796
				    node->un_mountp) != 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3797
					ret = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3798
				break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3799
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3800
			case OP_MOUNT:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3801
				if (zfs_unmount(node->un_zhp,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3802
				    node->un_mountp, flags) != 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3803
					ret = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3804
				break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3805
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3806
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3807
			zfs_close(node->un_zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3808
			free(node->un_mountp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3809
			free(node);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3810
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3811
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3812
		uu_avl_walk_end(walk);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3813
		uu_avl_destroy(tree);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3814
		uu_avl_pool_destroy(pool);
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3815
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3816
		if (op == OP_SHARE) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3817
			/*
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3818
			 * Finally, unshare any volumes shared via iSCSI.
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3819
			 */
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3820
			zfs_handle_t **dslist = NULL;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3821
			size_t i, count = 0;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3822
4737
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3823
			get_all_datasets(ZFS_TYPE_VOLUME, &dslist, &count,
56a3be29f72c PSARC 2007/273 zfs mount -v
mmusante
parents: 4717
diff changeset
  3824
			    B_FALSE);
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3825
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3826
			if (count != 0) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3827
				qsort(dslist, count, sizeof (void *),
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3828
				    dataset_cmp);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3829
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3830
				for (i = 0; i < count; i++) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3831
					if (zfs_unshare_iscsi(dslist[i]) != 0)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3832
						ret = 1;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3833
					zfs_close(dslist[i]);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3834
				}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3835
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3836
				free(dslist);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3837
			}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3838
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3839
	} else {
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3840
		if (argc != 1) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3841
			if (argc == 0)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3842
				(void) fprintf(stderr,
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3843
				    gettext("missing filesystem argument\n"));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3844
			else
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3845
				(void) fprintf(stderr,
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3846
				    gettext("too many arguments\n"));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3847
			usage(B_FALSE);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3848
		}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3849
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3850
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3851
		 * We have an argument, but it may be a full path or a ZFS
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3852
		 * filesystem.  Pass full paths off to unmount_path() (shared by
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3853
		 * manual_unmount), otherwise open the filesystem and pass to
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3854
		 * zfs_unmount().
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3855
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3856
		if (argv[0][0] == '/')
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3857
			return (unshare_unmount_path(op, argv[0],
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3883
diff changeset
  3858
			    flags, B_FALSE));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  3859
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3860
		types = ZFS_TYPE_FILESYSTEM;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3861
		if (op == OP_SHARE)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3862
			types |= ZFS_TYPE_VOLUME;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3863
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3864
		if ((zhp = zfs_open(g_zfs, argv[0], types)) == NULL)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3865
			return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3866
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3867
		if (zfs_get_type(zhp) == ZFS_TYPE_FILESYSTEM) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3868
			verify(zfs_prop_get(zhp, op == OP_SHARE ?
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3869
			    ZFS_PROP_SHARENFS : ZFS_PROP_MOUNTPOINT,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3870
			    nfsiscsi_mnt_prop, sizeof (nfsiscsi_mnt_prop), NULL,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3871
			    NULL, 0, B_FALSE) == 0);
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3872
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3873
			switch (op) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3874
			case OP_SHARE:
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3875
				verify(zfs_prop_get(zhp, ZFS_PROP_SHARENFS,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3876
				    nfsiscsi_mnt_prop,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3877
				    sizeof (nfsiscsi_mnt_prop),
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3878
				    NULL, NULL, 0, B_FALSE) == 0);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3879
				verify(zfs_prop_get(zhp, ZFS_PROP_SHARESMB,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3880
				    sharesmb, sizeof (sharesmb), NULL, NULL,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3881
				    0, B_FALSE) == 0);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3882
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3883
				if (strcmp(nfsiscsi_mnt_prop, "off") == 0 &&
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3884
				    strcmp(sharesmb, "off") == 0) {
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3885
					(void) fprintf(stderr, gettext("cannot "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3886
					    "unshare '%s': legacy share\n"),
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3887
					    zfs_get_name(zhp));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3888
					(void) fprintf(stderr, gettext("use "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3889
					    "unshare(1M) to unshare this "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3890
					    "filesystem\n"));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3891
					ret = 1;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3892
				} else if (!zfs_is_shared(zhp)) {
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3893
					(void) fprintf(stderr, gettext("cannot "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3894
					    "unshare '%s': not currently "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3895
					    "shared\n"), zfs_get_name(zhp));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3896
					ret = 1;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3897
				} else if (zfs_unshareall(zhp) != 0) {
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3898
					ret = 1;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3899
				}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3900
				break;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3901
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3902
			case OP_MOUNT:
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3903
				if (strcmp(nfsiscsi_mnt_prop, "legacy") == 0) {
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3904
					(void) fprintf(stderr, gettext("cannot "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3905
					    "unmount '%s': legacy "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3906
					    "mountpoint\n"), zfs_get_name(zhp));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3907
					(void) fprintf(stderr, gettext("use "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3908
					    "umount(1M) to unmount this "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3909
					    "filesystem\n"));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3910
					ret = 1;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3911
				} else if (!zfs_is_mounted(zhp, NULL)) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3912
					(void) fprintf(stderr, gettext("cannot "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3913
					    "unmount '%s': not currently "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3914
					    "mounted\n"),
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3915
					    zfs_get_name(zhp));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3916
					ret = 1;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3917
				} else if (zfs_unmountall(zhp, flags) != 0) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3918
					ret = 1;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3919
				}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3920
				break;
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3921
			}
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3922
		} else {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3923
			assert(op == OP_SHARE);
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3924
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3925
			verify(zfs_prop_get(zhp, ZFS_PROP_SHAREISCSI,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3926
			    nfsiscsi_mnt_prop, sizeof (nfsiscsi_mnt_prop),
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3927
			    NULL, NULL, 0, B_FALSE) == 0);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3928
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5094
diff changeset
  3929
			if (strcmp(nfsiscsi_mnt_prop, "off") == 0) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3930
				(void) fprintf(stderr, gettext("cannot unshare "
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3931
				    "'%s': 'shareiscsi' property not set\n"),
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3932
				    zfs_get_name(zhp));
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3933
				(void) fprintf(stderr, gettext("set "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3934
				    "'shareiscsi' property or use "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3935
				    "iscsitadm(1M) to share this volume\n"));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3936
				ret = 1;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3937
			} else if (!zfs_is_shared_iscsi(zhp)) {
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3938
				(void) fprintf(stderr, gettext("cannot "
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3939
				    "unshare '%s': not currently shared\n"),
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3940
				    zfs_get_name(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3941
				ret = 1;
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2926
diff changeset
  3942
			} else if (zfs_unshare_iscsi(zhp) != 0) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3943
				ret = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3944
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3945
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3946
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3947
		zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3948
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3949
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3950
	return (ret);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3951
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3952
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3953
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3954
 * zfs unmount -a
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3955
 * zfs unmount filesystem
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3956
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3957
 * Unmount all filesystems, or a specific ZFS filesystem.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3958
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3959
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3960
zfs_do_unmount(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3961
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3962
	return (unshare_unmount(OP_MOUNT, argc, argv));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3963
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3964
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3965
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3966
 * zfs unshare -a
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3967
 * zfs unshare filesystem
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3968
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3969
 * Unshare all filesystems, or a specific ZFS filesystem.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3970
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3971
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3972
zfs_do_unshare(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3973
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3974
	return (unshare_unmount(OP_SHARE, argc, argv));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3975
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3976
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3977
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3978
 * Called when invoked as /etc/fs/zfs/mount.  Do the mount if the mountpoint is
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3979
 * 'legacy'.  Otherwise, complain that use should be using 'zfs mount'.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3980
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3981
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3982
manual_mount(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3983
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3984
	zfs_handle_t *zhp;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3985
	char mountpoint[ZFS_MAXPROPLEN];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3986
	char mntopts[MNT_LINE_MAX] = { '\0' };
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3987
	int ret;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3988
	int c;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3989
	int flags = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3990
	char *dataset, *path;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3991
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3992
	/* check options */
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1387
diff changeset
  3993
	while ((c = getopt(argc, argv, ":mo:O")) != -1) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3994
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3995
		case 'o':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3996
			(void) strlcpy(mntopts, optarg, sizeof (mntopts));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3997
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3998
		case 'O':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3999
			flags |= MS_OVERLAY;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4000
			break;
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1387
diff changeset
  4001
		case 'm':
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1387
diff changeset
  4002
			flags |= MS_NOMNTTAB;
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1387
diff changeset
  4003
			break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4004
		case ':':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4005
			(void) fprintf(stderr, gettext("missing argument for "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4006
			    "'%c' option\n"), optopt);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4007
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4008
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4009
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4010
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4011
			    optopt);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4012
			(void) fprintf(stderr, gettext("usage: mount [-o opts] "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4013
			    "<path>\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4014
			return (2);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4015
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4016
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4017
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4018
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4019
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4020
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4021
	/* check that we only have two arguments */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4022
	if (argc != 2) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4023
		if (argc == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4024
			(void) fprintf(stderr, gettext("missing dataset "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4025
			    "argument\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4026
		else if (argc == 1)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4027
			(void) fprintf(stderr,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4028
			    gettext("missing mountpoint argument\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4029
		else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4030
			(void) fprintf(stderr, gettext("too many arguments\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4031
		(void) fprintf(stderr, "usage: mount <dataset> <mountpoint>\n");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4032
		return (2);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4033
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4034
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4035
	dataset = argv[0];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4036
	path = argv[1];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4037
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4038
	/* try to open the dataset */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4039
	if ((zhp = zfs_open(g_zfs, dataset, ZFS_TYPE_FILESYSTEM)) == NULL)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4040
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4041
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4042
	(void) zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, mountpoint,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4043
	    sizeof (mountpoint), NULL, NULL, 0, B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4044
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4045
	/* check for legacy mountpoint and complain appropriately */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4046
	ret = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4047
	if (strcmp(mountpoint, ZFS_MOUNTPOINT_LEGACY) == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4048
		if (mount(dataset, path, MS_OPTIONSTR | flags, MNTTYPE_ZFS,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4049
		    NULL, 0, mntopts, sizeof (mntopts)) != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4050
			(void) fprintf(stderr, gettext("mount failed: %s\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4051
			    strerror(errno));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4052
			ret = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4053
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4054
	} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4055
		(void) fprintf(stderr, gettext("filesystem '%s' cannot be "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4056
		    "mounted using 'mount -F zfs'\n"), dataset);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4057
		(void) fprintf(stderr, gettext("Use 'zfs set mountpoint=%s' "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4058
		    "instead.\n"), path);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4059
		(void) fprintf(stderr, gettext("If you must use 'mount -F zfs' "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4060
		    "or /etc/vfstab, use 'zfs set mountpoint=legacy'.\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4061
		(void) fprintf(stderr, gettext("See zfs(1M) for more "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4062
		    "information.\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4063
		ret = 1;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4064
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4065
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4066
	return (ret);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4067
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4068
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4069
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4070
 * Called when invoked as /etc/fs/zfs/umount.  Unlike a manual mount, we allow
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4071
 * unmounts of non-legacy filesystems, as this is the dominant administrative
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4072
 * interface.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4073
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4074
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4075
manual_unmount(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4076
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4077
	int flags = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4078
	int c;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4079
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4080
	/* check options */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4081
	while ((c = getopt(argc, argv, "f")) != -1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4082
		switch (c) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4083
		case 'f':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4084
			flags = MS_FORCE;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4085
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4086
		case '?':
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4087
			(void) fprintf(stderr, gettext("invalid option '%c'\n"),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4088
			    optopt);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4089
			(void) fprintf(stderr, gettext("usage: unmount [-f] "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4090
			    "<path>\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4091
			return (2);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4092
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4093
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4094
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4095
	argc -= optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4096
	argv += optind;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4097
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4098
	/* check arguments */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4099
	if (argc != 1) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4100
		if (argc == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4101
			(void) fprintf(stderr, gettext("missing path "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4102
			    "argument\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4103
		else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4104
			(void) fprintf(stderr, gettext("too many arguments\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4105
		(void) fprintf(stderr, gettext("usage: unmount [-f] <path>\n"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4106
		return (2);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4107
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4108
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4109
	return (unshare_unmount_path(OP_MOUNT, argv[0], flags, B_TRUE));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4110
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4111
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4112
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4113
volcheck(zpool_handle_t *zhp, void *data)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4114
{
2856
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2676
diff changeset
  4115
	boolean_t isinit = *((boolean_t *)data);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4116
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4117
	if (isinit)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4118
		return (zpool_create_zvol_links(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4119
	else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4120
		return (zpool_remove_zvol_links(zhp));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4121
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4122
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4123
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4124
 * Iterate over all pools in the system and either create or destroy /dev/zvol
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4125
 * links, depending on the value of 'isinit'.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4126
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4127
static int
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4128
do_volcheck(boolean_t isinit)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4129
{
2856
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2676
diff changeset
  4130
	return (zpool_iter(g_zfs, volcheck, &isinit) ? 1 : 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4131
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4132
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4133
static int
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4134
find_command_idx(char *command, int *idx)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4135
{
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4136
	int i;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4137
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4138
	for (i = 0; i < NCOMMAND; i++) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4139
		if (command_table[i].name == NULL)
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4140
			continue;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4141
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4142
		if (strcmp(command, command_table[i].name) == 0) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4143
			*idx = i;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4144
			return (0);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4145
		}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4146
	}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4147
	return (1);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4148
}
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4149
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4150
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4151
main(int argc, char **argv)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4152
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4153
	int ret;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4154
	int i;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4155
	char *progname;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4156
	char *cmdname;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4157
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4158
	(void) setlocale(LC_ALL, "");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4159
	(void) textdomain(TEXT_DOMAIN);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4160
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4161
	opterr = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4162
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4163
	if ((g_zfs = libzfs_init()) == NULL) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4164
		(void) fprintf(stderr, gettext("internal error: failed to "
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4165
		    "initialize ZFS library\n"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4166
		return (1);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4167
	}
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4168
4988
db8abd9846d4 6595467 libzfs consumers should be allowed to write their own history (or none at all)
ek110237
parents: 4860
diff changeset
  4169
	zpool_set_history_str("zfs", argc, argv, history_str);
db8abd9846d4 6595467 libzfs consumers should be allowed to write their own history (or none at all)
ek110237
parents: 4860
diff changeset
  4170
	verify(zpool_stage_history(g_zfs, history_str) == 0);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4171
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4172
	libzfs_print_on_error(g_zfs, B_TRUE);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4173
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4174
	if ((mnttab_file = fopen(MNTTAB, "r")) == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4175
		(void) fprintf(stderr, gettext("internal error: unable to "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4176
		    "open %s\n"), MNTTAB);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4177
		return (1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4178
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4179
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4180
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4181
	 * This command also doubles as the /etc/fs mount and unmount program.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4182
	 * Determine if we should take this behavior based on argv[0].
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4183
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4184
	progname = basename(argv[0]);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4185
	if (strcmp(progname, "mount") == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4186
		ret = manual_mount(argc, argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4187
	} else if (strcmp(progname, "umount") == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4188
		ret = manual_unmount(argc, argv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4189
	} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4190
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4191
		 * Make sure the user has specified some command.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4192
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4193
		if (argc < 2) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4194
			(void) fprintf(stderr, gettext("missing command\n"));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4195
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4196
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4197
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4198
		cmdname = argv[1];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4199
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4200
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4201
		 * The 'umount' command is an alias for 'unmount'
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4202
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4203
		if (strcmp(cmdname, "umount") == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4204
			cmdname = "unmount";
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4205
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4206
		/*
1749
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
  4207
		 * The 'recv' command is an alias for 'receive'
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
  4208
		 */
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
  4209
		if (strcmp(cmdname, "recv") == 0)
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
  4210
			cmdname = "receive";
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
  4211
cc180b13f4b8 PSARC 2006/185 zfs send/receive
ahrens
parents: 1544
diff changeset
  4212
		/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4213
		 * Special case '-?'
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4214
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4215
		if (strcmp(cmdname, "-?") == 0)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4216
			usage(B_TRUE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4217
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4218
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4219
		 * 'volinit' and 'volfini' do not appear in the usage message,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4220
		 * so we have to special case them here.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4221
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4222
		if (strcmp(cmdname, "volinit") == 0)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4223
			return (do_volcheck(B_TRUE));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4224
		else if (strcmp(cmdname, "volfini") == 0)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4225
			return (do_volcheck(B_FALSE));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4226
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4227
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4228
		 * Run the appropriate command.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4229
		 */
8811
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8584
diff changeset
  4230
		libzfs_mnttab_cache(g_zfs, B_TRUE);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4231
		if (find_command_idx(cmdname, &i) == 0) {
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4232
			current_command = &command_table[i];
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  4233
			ret = command_table[i].func(argc - 1, argv + 1);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4737
diff changeset
  4234
		} else if (strchr(cmdname, '=') != NULL) {
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4737
diff changeset
  4235
			verify(find_command_idx("set", &i) == 0);
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4737
diff changeset
  4236
			current_command = &command_table[i];
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4737
diff changeset
  4237
			ret = command_table[i].func(argc, argv);
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4737
diff changeset
  4238
		} else {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4239
			(void) fprintf(stderr, gettext("unrecognized "
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4240
			    "command '%s'\n"), cmdname);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4241
			usage(B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4242
		}
8811
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8584
diff changeset
  4243
		libzfs_mnttab_cache(g_zfs, B_FALSE);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4244
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4245
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4246
	(void) fclose(mnttab_file);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4247
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4248
	libzfs_fini(g_zfs);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1749
diff changeset
  4249
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4250
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4251
	 * The 'ZFS_ABORT' environment variable causes us to dump core on exit
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4252
	 * for the purposes of running ::findleaks.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4253
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4254
	if (getenv("ZFS_ABORT") != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4255
		(void) printf("dumping core by request\n");
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4256
		abort();
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4257
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4258
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4259
	return (ret);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  4260
}