usr/src/lib/libzfs/common/libzfs_dataset.c
author Matthew Ahrens <mahrens@delphix.com>
Wed, 14 Aug 2013 11:42:31 -0800
changeset 14220 f7523d207d74
parent 14172 520f3adc5d46
permissions -rw-r--r--
3996 want a libzfs_core API to rollback to latest snapshot Reviewed by: Christopher Siden <[email protected]> Reviewed by: Adam Leventhal <[email protected]> Reviewed by: George Wilson <[email protected]> Reviewed by: Andy Stormont <[email protected]> Approved by: Richard Lowe <[email protected]>
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: 1407
diff changeset
     5
 * Common Development and Distribution License (the "License").
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1407
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: 2885
diff changeset
    21
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    22
/*
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
    23
 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
14138
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
    24
 * Copyright (c) 2013 by Delphix. All rights reserved.
13765
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
    25
 * Copyright (c) 2012 DEY Storage Systems, Inc.  All rights reserved.
13871
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
    26
 * Copyright 2012 Nexenta Systems, Inc. All rights reserved.
14107
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
    27
 * Copyright (c) 2013 Martin Matuska. All rights reserved.
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
    28
 * Copyright (c) 2013 Steven Hartland. All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
#include <ctype.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
#include <errno.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    33
#include <libintl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    34
#include <math.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    35
#include <stdio.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    36
#include <stdlib.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
#include <strings.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
#include <unistd.h>
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
    39
#include <stddef.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
#include <zone.h>
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
    41
#include <fcntl.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
#include <sys/mntent.h>
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
    43
#include <sys/mount.h>
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    44
#include <priv.h>
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    45
#include <pwd.h>
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    46
#include <grp.h>
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    47
#include <stddef.h>
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    48
#include <ucred.h>
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
    49
#include <idmap.h>
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
    50
#include <aclutils.h>
10160
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
    51
#include <directory.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    52
11449
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
    53
#include <sys/dnode.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    54
#include <sys/spa.h>
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
    55
#include <sys/zap.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    56
#include <libzfs.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    57
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    58
#include "zfs_namecheck.h"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    59
#include "zfs_prop.h"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    60
#include "libzfs_impl.h"
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
    61
#include "zfs_deleg.h"
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    62
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
    63
static int userquota_propname_decode(const char *propname, boolean_t zoned,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
    64
    zfs_userquota_prop_t *typep, char *domain, int domainlen, uint64_t *ridp);
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
    65
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    67
 * Given a single type (not a mask of types), return the type in a human
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    68
 * readable form.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    70
const char *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
zfs_type_to_name(zfs_type_t type)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    72
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    73
	switch (type) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    74
	case ZFS_TYPE_FILESYSTEM:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    75
		return (dgettext(TEXT_DOMAIN, "filesystem"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    76
	case ZFS_TYPE_SNAPSHOT:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    77
		return (dgettext(TEXT_DOMAIN, "snapshot"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    78
	case ZFS_TYPE_VOLUME:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    79
		return (dgettext(TEXT_DOMAIN, "volume"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    80
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    81
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    82
	return (NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    83
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    84
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    85
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    86
 * Given a path and mask of ZFS types, return a string describing this dataset.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    87
 * This is used when we fail to open a dataset and we cannot get an exact type.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    88
 * We guess what the type would have been based on the path and the mask of
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    89
 * acceptable types.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    90
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    91
static const char *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    92
path_to_str(const char *path, int types)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    93
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    94
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    95
	 * When given a single type, always report the exact type.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    96
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    97
	if (types == ZFS_TYPE_SNAPSHOT)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    98
		return (dgettext(TEXT_DOMAIN, "snapshot"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    99
	if (types == ZFS_TYPE_FILESYSTEM)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   100
		return (dgettext(TEXT_DOMAIN, "filesystem"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   101
	if (types == ZFS_TYPE_VOLUME)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   102
		return (dgettext(TEXT_DOMAIN, "volume"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   103
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   104
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   105
	 * The user is requesting more than one type of dataset.  If this is the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   106
	 * case, consult the path itself.  If we're looking for a snapshot, and
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   107
	 * a '@' is found, then report it as "snapshot".  Otherwise, remove the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   108
	 * snapshot attribute and try again.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   109
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   110
	if (types & ZFS_TYPE_SNAPSHOT) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   111
		if (strchr(path, '@') != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   112
			return (dgettext(TEXT_DOMAIN, "snapshot"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   113
		return (path_to_str(path, types & ~ZFS_TYPE_SNAPSHOT));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   114
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   115
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   116
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   117
	 * The user has requested either filesystems or volumes.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   118
	 * We have no way of knowing a priori what type this would be, so always
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   119
	 * report it as "filesystem" or "volume", our two primitive types.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   120
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   121
	if (types & ZFS_TYPE_FILESYSTEM)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   122
		return (dgettext(TEXT_DOMAIN, "filesystem"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   123
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   124
	assert(types & ZFS_TYPE_VOLUME);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   125
	return (dgettext(TEXT_DOMAIN, "volume"));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   126
}
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
 * Validate a ZFS path.  This is used even before trying to open the dataset, to
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   130
 * provide a more meaningful error message.  We call zfs_error_aux() to
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   131
 * explain exactly why the name was not valid.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   132
 */
13055
8c712bbb18ea PSARC 2010/105 zfs diff
Tim Haley <Tim.Haley@Sun.COM>
parents: 12926
diff changeset
   133
int
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   134
zfs_validate_name(libzfs_handle_t *hdl, const char *path, int type,
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   135
    boolean_t modifying)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   136
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   137
	namecheck_err_t why;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   138
	char what;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   139
13246
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
   140
	(void) zfs_prop_get_table();
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   141
	if (dataset_namecheck(path, &why, &what) != 0) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   142
		if (hdl != NULL) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   143
			switch (why) {
1003
ce99098d6a9b 6350417 long name will cause rename a dataset panic
lling
parents: 905
diff changeset
   144
			case NAME_ERR_TOOLONG:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   145
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   146
				    "name is too long"));
1003
ce99098d6a9b 6350417 long name will cause rename a dataset panic
lling
parents: 905
diff changeset
   147
				break;
ce99098d6a9b 6350417 long name will cause rename a dataset panic
lling
parents: 905
diff changeset
   148
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   149
			case NAME_ERR_LEADING_SLASH:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   150
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   151
				    "leading slash in name"));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   152
				break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   153
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   154
			case NAME_ERR_EMPTY_COMPONENT:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   155
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   156
				    "empty component in name"));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   157
				break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   158
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   159
			case NAME_ERR_TRAILING_SLASH:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   160
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   161
				    "trailing slash in name"));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   162
				break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   163
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   164
			case NAME_ERR_INVALCHAR:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   165
				zfs_error_aux(hdl,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   166
				    dgettext(TEXT_DOMAIN, "invalid character "
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   167
				    "'%c' in name"), what);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   168
				break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   169
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   170
			case NAME_ERR_MULTIPLE_AT:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   171
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   172
				    "multiple '@' delimiters in name"));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   173
				break;
2856
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   174
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   175
			case NAME_ERR_NOLETTER:
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   176
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   177
				    "pool doesn't begin with a letter"));
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   178
				break;
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   179
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   180
			case NAME_ERR_RESERVED:
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   181
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   182
				    "name is reserved"));
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   183
				break;
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   184
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   185
			case NAME_ERR_DISKLIKE:
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   186
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   187
				    "reserved disk name"));
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
   188
				break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   189
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   190
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   191
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   192
		return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   193
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   194
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   195
	if (!(type & ZFS_TYPE_SNAPSHOT) && strchr(path, '@') != NULL) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   196
		if (hdl != NULL)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   197
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   198
			    "snapshot delimiter '@' in filesystem name"));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   199
		return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   200
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   201
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
   202
	if (type == ZFS_TYPE_SNAPSHOT && strchr(path, '@') == NULL) {
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
   203
		if (hdl != NULL)
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
   204
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3413
f4cbe0204ab7 6471255 Some ZFS error messages contain spelling errors
mmusante
parents: 3377
diff changeset
   205
			    "missing '@' delimiter in snapshot name"));
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
   206
		return (0);
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
   207
	}
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
   208
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   209
	if (modifying && strchr(path, '%') != NULL) {
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   210
		if (hdl != NULL)
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   211
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   212
			    "invalid character %c in name"), '%');
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   213
		return (0);
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   214
	}
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   215
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   216
	return (-1);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   217
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   218
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   219
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   220
zfs_name_valid(const char *name, zfs_type_t type)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   221
{
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 6168
diff changeset
   222
	if (type == ZFS_TYPE_POOL)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 6168
diff changeset
   223
		return (zpool_name_valid(NULL, B_FALSE, name));
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   224
	return (zfs_validate_name(NULL, name, type, B_FALSE));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   225
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   226
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   227
/*
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   228
 * This function takes the raw DSL properties, and filters out the user-defined
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   229
 * properties into a separate nvlist.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   230
 */
4217
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   231
static nvlist_t *
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   232
process_user_props(zfs_handle_t *zhp, nvlist_t *props)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   233
{
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   234
	libzfs_handle_t *hdl = zhp->zfs_hdl;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   235
	nvpair_t *elem;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   236
	nvlist_t *propval;
4217
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   237
	nvlist_t *nvl;
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   238
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   239
	if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0) {
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   240
		(void) no_memory(hdl);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   241
		return (NULL);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   242
	}
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   243
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   244
	elem = NULL;
4217
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   245
	while ((elem = nvlist_next_nvpair(props, elem)) != NULL) {
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   246
		if (!zfs_prop_user(nvpair_name(elem)))
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   247
			continue;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   248
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   249
		verify(nvpair_value_nvlist(elem, &propval) == 0);
4217
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   250
		if (nvlist_add_nvlist(nvl, nvpair_name(elem), propval) != 0) {
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   251
			nvlist_free(nvl);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   252
			(void) no_memory(hdl);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   253
			return (NULL);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   254
		}
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   255
	}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   256
4217
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   257
	return (nvl);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   258
}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   259
6865
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   260
static zpool_handle_t *
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   261
zpool_add_handle(zfs_handle_t *zhp, const char *pool_name)
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   262
{
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   263
	libzfs_handle_t *hdl = zhp->zfs_hdl;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   264
	zpool_handle_t *zph;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   265
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   266
	if ((zph = zpool_open_canfail(hdl, pool_name)) != NULL) {
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   267
		if (hdl->libzfs_pool_handles != NULL)
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   268
			zph->zpool_next = hdl->libzfs_pool_handles;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   269
		hdl->libzfs_pool_handles = zph;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   270
	}
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   271
	return (zph);
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   272
}
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   273
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   274
static zpool_handle_t *
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   275
zpool_find_handle(zfs_handle_t *zhp, const char *pool_name, int len)
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   276
{
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   277
	libzfs_handle_t *hdl = zhp->zfs_hdl;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   278
	zpool_handle_t *zph = hdl->libzfs_pool_handles;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   279
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   280
	while ((zph != NULL) &&
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   281
	    (strncmp(pool_name, zpool_get_name(zph), len) != 0))
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   282
		zph = zph->zpool_next;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   283
	return (zph);
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   284
}
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   285
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   286
/*
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   287
 * Returns a handle to the pool that contains the provided dataset.
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   288
 * If a handle to that pool already exists then that handle is returned.
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   289
 * Otherwise, a new handle is created and added to the list of handles.
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   290
 */
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   291
static zpool_handle_t *
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   292
zpool_handle(zfs_handle_t *zhp)
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   293
{
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   294
	char *pool_name;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   295
	int len;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   296
	zpool_handle_t *zph;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   297
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   298
	len = strcspn(zhp->zfs_name, "/@") + 1;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   299
	pool_name = zfs_alloc(zhp->zfs_hdl, len);
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   300
	(void) strlcpy(pool_name, zhp->zfs_name, len);
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   301
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   302
	zph = zpool_find_handle(zhp, pool_name, len);
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   303
	if (zph == NULL)
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   304
		zph = zpool_add_handle(zhp, pool_name);
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   305
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   306
	free(pool_name);
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   307
	return (zph);
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   308
}
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   309
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   310
void
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   311
zpool_free_handles(libzfs_handle_t *hdl)
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   312
{
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   313
	zpool_handle_t *next, *zph = hdl->libzfs_pool_handles;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   314
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   315
	while (zph != NULL) {
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   316
		next = zph->zpool_next;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   317
		zpool_close(zph);
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   318
		zph = next;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   319
	}
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   320
	hdl->libzfs_pool_handles = NULL;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   321
}
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   322
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   323
/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   324
 * Utility function to gather stats (objset and zpl) for the given object.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   325
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   326
static int
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   327
get_stats_ioctl(zfs_handle_t *zhp, zfs_cmd_t *zc)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   328
{
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   329
	libzfs_handle_t *hdl = zhp->zfs_hdl;
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   330
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   331
	(void) strlcpy(zc->zc_name, zhp->zfs_name, sizeof (zc->zc_name));
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   332
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   333
	while (ioctl(hdl->libzfs_fd, ZFS_IOC_OBJSET_STATS, zc) != 0) {
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
   334
		if (errno == ENOMEM) {
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   335
			if (zcmd_expand_dst_nvlist(hdl, zc) != 0) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   336
				return (-1);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   337
			}
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
   338
		} else {
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
   339
			return (-1);
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
   340
		}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
   341
	}
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   342
	return (0);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   343
}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   344
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   345
/*
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   346
 * Utility function to get the received properties of the given object.
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   347
 */
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   348
static int
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   349
get_recvd_props_ioctl(zfs_handle_t *zhp)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   350
{
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   351
	libzfs_handle_t *hdl = zhp->zfs_hdl;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   352
	nvlist_t *recvdprops;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   353
	zfs_cmd_t zc = { 0 };
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   354
	int err;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   355
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   356
	if (zcmd_alloc_dst_nvlist(hdl, &zc, 0) != 0)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   357
		return (-1);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   358
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   359
	(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   360
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   361
	while (ioctl(hdl->libzfs_fd, ZFS_IOC_OBJSET_RECVD_PROPS, &zc) != 0) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   362
		if (errno == ENOMEM) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   363
			if (zcmd_expand_dst_nvlist(hdl, &zc) != 0) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   364
				return (-1);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   365
			}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   366
		} else {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   367
			zcmd_free_nvlists(&zc);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   368
			return (-1);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   369
		}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   370
	}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   371
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   372
	err = zcmd_read_dst_nvlist(zhp->zfs_hdl, &zc, &recvdprops);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   373
	zcmd_free_nvlists(&zc);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   374
	if (err != 0)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   375
		return (-1);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   376
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   377
	nvlist_free(zhp->zfs_recvd_props);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   378
	zhp->zfs_recvd_props = recvdprops;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   379
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   380
	return (0);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   381
}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   382
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   383
static int
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   384
put_stats_zhdl(zfs_handle_t *zhp, zfs_cmd_t *zc)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   385
{
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   386
	nvlist_t *allprops, *userprops;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   387
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   388
	zhp->zfs_dmustats = zc->zc_objset_stats; /* structure assignment */
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   389
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   390
	if (zcmd_read_dst_nvlist(zhp->zfs_hdl, zc, &allprops) != 0) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   391
		return (-1);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   392
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   393
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   394
	/*
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   395
	 * XXX Why do we store the user props separately, in addition to
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   396
	 * storing them in zfs_props?
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   397
	 */
4217
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   398
	if ((userprops = process_user_props(zhp, allprops)) == NULL) {
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   399
		nvlist_free(allprops);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   400
		return (-1);
4217
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   401
	}
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   402
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   403
	nvlist_free(zhp->zfs_props);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   404
	nvlist_free(zhp->zfs_user_props);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   405
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   406
	zhp->zfs_props = allprops;
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
   407
	zhp->zfs_user_props = userprops;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   408
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   409
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   410
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   411
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   412
static int
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   413
get_stats(zfs_handle_t *zhp)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   414
{
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   415
	int rc = 0;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   416
	zfs_cmd_t zc = { 0 };
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   417
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   418
	if (zcmd_alloc_dst_nvlist(zhp->zfs_hdl, &zc, 0) != 0)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   419
		return (-1);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   420
	if (get_stats_ioctl(zhp, &zc) != 0)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   421
		rc = -1;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   422
	else if (put_stats_zhdl(zhp, &zc) != 0)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   423
		rc = -1;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   424
	zcmd_free_nvlists(&zc);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   425
	return (rc);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   426
}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   427
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   428
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   429
 * Refresh the properties currently stored in the handle.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   430
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   431
void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   432
zfs_refresh_properties(zfs_handle_t *zhp)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   433
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   434
	(void) get_stats(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   435
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   436
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   437
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   438
 * Makes a handle from the given dataset name.  Used by zfs_open() and
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   439
 * zfs_iter_* to create child handles on the fly.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   440
 */
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   441
static int
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   442
make_dataset_handle_common(zfs_handle_t *zhp, zfs_cmd_t *zc)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   443
{
10298
a0d52501437c 6860996 %temporary clones are not automatically destroyed on error
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10242
diff changeset
   444
	if (put_stats_zhdl(zhp, zc) != 0)
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   445
		return (-1);
1758
d0750a16db04 6397267 assertion failed: (link->list_next == 0) == (link->list_prev == 0)
ahrens
parents: 1749
diff changeset
   446
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   447
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   448
	 * We've managed to open the dataset and gather statistics.  Determine
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   449
	 * the high-level type.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   450
	 */
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
   451
	if (zhp->zfs_dmustats.dds_type == DMU_OST_ZVOL)
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
   452
		zhp->zfs_head_type = ZFS_TYPE_VOLUME;
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
   453
	else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZFS)
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
   454
		zhp->zfs_head_type = ZFS_TYPE_FILESYSTEM;
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
   455
	else
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
   456
		abort();
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
   457
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   458
	if (zhp->zfs_dmustats.dds_is_snapshot)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   459
		zhp->zfs_type = ZFS_TYPE_SNAPSHOT;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   460
	else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZVOL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   461
		zhp->zfs_type = ZFS_TYPE_VOLUME;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   462
	else if (zhp->zfs_dmustats.dds_type == DMU_OST_ZFS)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   463
		zhp->zfs_type = ZFS_TYPE_FILESYSTEM;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   464
	else
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   465
		abort();	/* we should never see any other types */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   466
11963
061945695ce1 PSARC/2009/534 SMB/CIFS Standalone DFS
afshin salek ardakani - Sun Microsystems - Irvine United States <Afshin.Ardakani@Sun.COM>
parents: 11876
diff changeset
   467
	if ((zhp->zpool_hdl = zpool_handle(zhp)) == NULL)
061945695ce1 PSARC/2009/534 SMB/CIFS Standalone DFS
afshin salek ardakani - Sun Microsystems - Irvine United States <Afshin.Ardakani@Sun.COM>
parents: 11876
diff changeset
   468
		return (-1);
061945695ce1 PSARC/2009/534 SMB/CIFS Standalone DFS
afshin salek ardakani - Sun Microsystems - Irvine United States <Afshin.Ardakani@Sun.COM>
parents: 11876
diff changeset
   469
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   470
	return (0);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   471
}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   472
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   473
zfs_handle_t *
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   474
make_dataset_handle(libzfs_handle_t *hdl, const char *path)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   475
{
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   476
	zfs_cmd_t zc = { 0 };
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   477
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   478
	zfs_handle_t *zhp = calloc(sizeof (zfs_handle_t), 1);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   479
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   480
	if (zhp == NULL)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   481
		return (NULL);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   482
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   483
	zhp->zfs_hdl = hdl;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   484
	(void) strlcpy(zhp->zfs_name, path, sizeof (zhp->zfs_name));
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   485
	if (zcmd_alloc_dst_nvlist(hdl, &zc, 0) != 0) {
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   486
		free(zhp);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   487
		return (NULL);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   488
	}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   489
	if (get_stats_ioctl(zhp, &zc) == -1) {
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   490
		zcmd_free_nvlists(&zc);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   491
		free(zhp);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   492
		return (NULL);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   493
	}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   494
	if (make_dataset_handle_common(zhp, &zc) == -1) {
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   495
		free(zhp);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   496
		zhp = NULL;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   497
	}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   498
	zcmd_free_nvlists(&zc);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   499
	return (zhp);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   500
}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   501
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   502
zfs_handle_t *
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   503
make_dataset_handle_zc(libzfs_handle_t *hdl, zfs_cmd_t *zc)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   504
{
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   505
	zfs_handle_t *zhp = calloc(sizeof (zfs_handle_t), 1);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   506
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   507
	if (zhp == NULL)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   508
		return (NULL);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   509
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   510
	zhp->zfs_hdl = hdl;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   511
	(void) strlcpy(zhp->zfs_name, zc->zc_name, sizeof (zhp->zfs_name));
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   512
	if (make_dataset_handle_common(zhp, zc) == -1) {
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   513
		free(zhp);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   514
		return (NULL);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   515
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   516
	return (zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   517
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   518
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   519
zfs_handle_t *
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   520
zfs_handle_dup(zfs_handle_t *zhp_orig)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   521
{
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   522
	zfs_handle_t *zhp = calloc(sizeof (zfs_handle_t), 1);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   523
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   524
	if (zhp == NULL)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   525
		return (NULL);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   526
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   527
	zhp->zfs_hdl = zhp_orig->zfs_hdl;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   528
	zhp->zpool_hdl = zhp_orig->zpool_hdl;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   529
	(void) strlcpy(zhp->zfs_name, zhp_orig->zfs_name,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   530
	    sizeof (zhp->zfs_name));
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   531
	zhp->zfs_type = zhp_orig->zfs_type;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   532
	zhp->zfs_head_type = zhp_orig->zfs_head_type;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   533
	zhp->zfs_dmustats = zhp_orig->zfs_dmustats;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   534
	if (zhp_orig->zfs_props != NULL) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   535
		if (nvlist_dup(zhp_orig->zfs_props, &zhp->zfs_props, 0) != 0) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   536
			(void) no_memory(zhp->zfs_hdl);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   537
			zfs_close(zhp);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   538
			return (NULL);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   539
		}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   540
	}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   541
	if (zhp_orig->zfs_user_props != NULL) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   542
		if (nvlist_dup(zhp_orig->zfs_user_props,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   543
		    &zhp->zfs_user_props, 0) != 0) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   544
			(void) no_memory(zhp->zfs_hdl);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   545
			zfs_close(zhp);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   546
			return (NULL);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   547
		}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   548
	}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   549
	if (zhp_orig->zfs_recvd_props != NULL) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   550
		if (nvlist_dup(zhp_orig->zfs_recvd_props,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   551
		    &zhp->zfs_recvd_props, 0)) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   552
			(void) no_memory(zhp->zfs_hdl);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   553
			zfs_close(zhp);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   554
			return (NULL);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   555
		}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   556
	}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   557
	zhp->zfs_mntcheck = zhp_orig->zfs_mntcheck;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   558
	if (zhp_orig->zfs_mntopts != NULL) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   559
		zhp->zfs_mntopts = zfs_strdup(zhp_orig->zfs_hdl,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   560
		    zhp_orig->zfs_mntopts);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   561
	}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   562
	zhp->zfs_props_table = zhp_orig->zfs_props_table;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   563
	return (zhp);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   564
}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   565
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   566
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   567
 * Opens the given snapshot, filesystem, or volume.   The 'types'
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   568
 * argument is a mask of acceptable types.  The function will print an
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   569
 * appropriate error message and return NULL if it can't be opened.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   570
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   571
zfs_handle_t *
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   572
zfs_open(libzfs_handle_t *hdl, const char *path, int types)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   573
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   574
	zfs_handle_t *zhp;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   575
	char errbuf[1024];
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   576
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   577
	(void) snprintf(errbuf, sizeof (errbuf),
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   578
	    dgettext(TEXT_DOMAIN, "cannot open '%s'"), path);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   579
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   580
	/*
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   581
	 * Validate the name before we even try to open it.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   582
	 */
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
   583
	if (!zfs_validate_name(hdl, path, ZFS_TYPE_DATASET, B_FALSE)) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   584
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   585
		    "invalid dataset name"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   586
		(void) zfs_error(hdl, EZFS_INVALIDNAME, errbuf);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   587
		return (NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   588
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   589
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   590
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   591
	 * Try to get stats for the dataset, which will tell us if it exists.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   592
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   593
	errno = 0;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   594
	if ((zhp = make_dataset_handle(hdl, path)) == NULL) {
3237
98d0c28f2f5e 6480245 renaming a dataset to something with '%s' will cause segfault
lling
parents: 3234
diff changeset
   595
		(void) zfs_standard_error(hdl, errno, errbuf);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   596
		return (NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   597
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   598
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   599
	if (!(types & zhp->zfs_type)) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   600
		(void) zfs_error(hdl, EZFS_BADTYPE, errbuf);
2142
f6e0487aa9a3 6433264 crash when adding spare: nvlist_lookup_string(cnv, "path", &path) == 0
eschrock
parents: 2082
diff changeset
   601
		zfs_close(zhp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   602
		return (NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   603
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   604
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   605
	return (zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   606
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   607
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   608
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   609
 * Release a ZFS handle.  Nothing to do but free the associated memory.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   610
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   611
void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   612
zfs_close(zfs_handle_t *zhp)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   613
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   614
	if (zhp->zfs_mntopts)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   615
		free(zhp->zfs_mntopts);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   616
	nvlist_free(zhp->zfs_props);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   617
	nvlist_free(zhp->zfs_user_props);
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
   618
	nvlist_free(zhp->zfs_recvd_props);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   619
	free(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   620
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   621
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   622
typedef struct mnttab_node {
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   623
	struct mnttab mtn_mt;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   624
	avl_node_t mtn_node;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   625
} mnttab_node_t;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   626
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   627
static int
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   628
libzfs_mnttab_cache_compare(const void *arg1, const void *arg2)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   629
{
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   630
	const mnttab_node_t *mtn1 = arg1;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   631
	const mnttab_node_t *mtn2 = arg2;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   632
	int rv;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   633
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   634
	rv = strcmp(mtn1->mtn_mt.mnt_special, mtn2->mtn_mt.mnt_special);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   635
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   636
	if (rv == 0)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   637
		return (0);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   638
	return (rv > 0 ? 1 : -1);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   639
}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   640
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   641
void
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   642
libzfs_mnttab_init(libzfs_handle_t *hdl)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   643
{
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   644
	assert(avl_numnodes(&hdl->libzfs_mnttab_cache) == 0);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   645
	avl_create(&hdl->libzfs_mnttab_cache, libzfs_mnttab_cache_compare,
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   646
	    sizeof (mnttab_node_t), offsetof(mnttab_node_t, mtn_node));
8811
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   647
}
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   648
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   649
void
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   650
libzfs_mnttab_update(libzfs_handle_t *hdl)
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   651
{
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   652
	struct mnttab entry;
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   653
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   654
	rewind(hdl->libzfs_mnttab);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   655
	while (getmntent(hdl->libzfs_mnttab, &entry) == 0) {
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   656
		mnttab_node_t *mtn;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   657
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   658
		if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   659
			continue;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   660
		mtn = zfs_alloc(hdl, sizeof (mnttab_node_t));
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   661
		mtn->mtn_mt.mnt_special = zfs_strdup(hdl, entry.mnt_special);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   662
		mtn->mtn_mt.mnt_mountp = zfs_strdup(hdl, entry.mnt_mountp);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   663
		mtn->mtn_mt.mnt_fstype = zfs_strdup(hdl, entry.mnt_fstype);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   664
		mtn->mtn_mt.mnt_mntopts = zfs_strdup(hdl, entry.mnt_mntopts);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   665
		avl_add(&hdl->libzfs_mnttab_cache, mtn);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   666
	}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   667
}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   668
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   669
void
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   670
libzfs_mnttab_fini(libzfs_handle_t *hdl)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   671
{
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   672
	void *cookie = NULL;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   673
	mnttab_node_t *mtn;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   674
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   675
	while (mtn = avl_destroy_nodes(&hdl->libzfs_mnttab_cache, &cookie)) {
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   676
		free(mtn->mtn_mt.mnt_special);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   677
		free(mtn->mtn_mt.mnt_mountp);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   678
		free(mtn->mtn_mt.mnt_fstype);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   679
		free(mtn->mtn_mt.mnt_mntopts);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   680
		free(mtn);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   681
	}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   682
	avl_destroy(&hdl->libzfs_mnttab_cache);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   683
}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   684
8811
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   685
void
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   686
libzfs_mnttab_cache(libzfs_handle_t *hdl, boolean_t enable)
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   687
{
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   688
	hdl->libzfs_mnttab_enable = enable;
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   689
}
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   690
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   691
int
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   692
libzfs_mnttab_find(libzfs_handle_t *hdl, const char *fsname,
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   693
    struct mnttab *entry)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   694
{
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   695
	mnttab_node_t find;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   696
	mnttab_node_t *mtn;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   697
8811
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   698
	if (!hdl->libzfs_mnttab_enable) {
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   699
		struct mnttab srch = { 0 };
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   700
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   701
		if (avl_numnodes(&hdl->libzfs_mnttab_cache))
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   702
			libzfs_mnttab_fini(hdl);
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   703
		rewind(hdl->libzfs_mnttab);
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   704
		srch.mnt_special = (char *)fsname;
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   705
		srch.mnt_fstype = MNTTYPE_ZFS;
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   706
		if (getmntany(hdl->libzfs_mnttab, entry, &srch) == 0)
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   707
			return (0);
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   708
		else
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   709
			return (ENOENT);
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   710
	}
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   711
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   712
	if (avl_numnodes(&hdl->libzfs_mnttab_cache) == 0)
8811
f8deccf701cf 6790687 libzfs mnttab caching ignores external changes
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8802
diff changeset
   713
		libzfs_mnttab_update(hdl);
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   714
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   715
	find.mtn_mt.mnt_special = (char *)fsname;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   716
	mtn = avl_find(&hdl->libzfs_mnttab_cache, &find, NULL);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   717
	if (mtn) {
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   718
		*entry = mtn->mtn_mt;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   719
		return (0);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   720
	}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   721
	return (ENOENT);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   722
}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   723
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   724
void
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   725
libzfs_mnttab_add(libzfs_handle_t *hdl, const char *special,
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   726
    const char *mountp, const char *mntopts)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   727
{
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   728
	mnttab_node_t *mtn;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   729
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   730
	if (avl_numnodes(&hdl->libzfs_mnttab_cache) == 0)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   731
		return;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   732
	mtn = zfs_alloc(hdl, sizeof (mnttab_node_t));
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   733
	mtn->mtn_mt.mnt_special = zfs_strdup(hdl, special);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   734
	mtn->mtn_mt.mnt_mountp = zfs_strdup(hdl, mountp);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   735
	mtn->mtn_mt.mnt_fstype = zfs_strdup(hdl, MNTTYPE_ZFS);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   736
	mtn->mtn_mt.mnt_mntopts = zfs_strdup(hdl, mntopts);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   737
	avl_add(&hdl->libzfs_mnttab_cache, mtn);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   738
}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   739
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   740
void
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   741
libzfs_mnttab_remove(libzfs_handle_t *hdl, const char *fsname)
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   742
{
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   743
	mnttab_node_t find;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   744
	mnttab_node_t *ret;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   745
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   746
	find.mtn_mt.mnt_special = (char *)fsname;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   747
	if (ret = avl_find(&hdl->libzfs_mnttab_cache, (void *)&find, NULL)) {
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   748
		avl_remove(&hdl->libzfs_mnttab_cache, ret);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   749
		free(ret->mtn_mt.mnt_special);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   750
		free(ret->mtn_mt.mnt_mountp);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   751
		free(ret->mtn_mt.mnt_fstype);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   752
		free(ret->mtn_mt.mnt_mntopts);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   753
		free(ret);
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   754
	}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   755
}
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
   756
5713
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   757
int
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   758
zfs_spa_version(zfs_handle_t *zhp, int *spa_version)
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   759
{
6865
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   760
	zpool_handle_t *zpool_handle = zhp->zpool_hdl;
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
   761
5713
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   762
	if (zpool_handle == NULL)
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   763
		return (-1);
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   764
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   765
	*spa_version = zpool_get_prop_int(zpool_handle,
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   766
	    ZPOOL_PROP_VERSION, NULL);
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   767
	return (0);
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   768
}
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   769
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   770
/*
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   771
 * The choice of reservation property depends on the SPA version.
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   772
 */
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   773
static int
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   774
zfs_which_resv_prop(zfs_handle_t *zhp, zfs_prop_t *resv_prop)
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   775
{
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   776
	int spa_version;
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   777
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   778
	if (zfs_spa_version(zhp, &spa_version) < 0)
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   779
		return (-1);
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   780
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   781
	if (spa_version >= SPA_VERSION_REFRESERVATION)
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   782
		*resv_prop = ZFS_PROP_REFRESERVATION;
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   783
	else
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   784
		*resv_prop = ZFS_PROP_RESERVATION;
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   785
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   786
	return (0);
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   787
}
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
   788
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
   789
/*
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   790
 * Given an nvlist of properties to set, validates that they are correct, and
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   791
 * parses any numeric properties (index, boolean, etc) if they are specified as
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   792
 * strings.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   793
 */
7184
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7042
diff changeset
   794
nvlist_t *
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7042
diff changeset
   795
zfs_valid_proplist(libzfs_handle_t *hdl, zfs_type_t type, nvlist_t *nvl,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   796
    uint64_t zoned, zfs_handle_t *zhp, const char *errbuf)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   797
{
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   798
	nvpair_t *elem;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   799
	uint64_t intval;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   800
	char *strval;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   801
	zfs_prop_t prop;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   802
	nvlist_t *ret;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
   803
	int chosen_normal = -1;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
   804
	int chosen_utf = -1;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   805
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   806
	if (nvlist_alloc(&ret, NV_UNIQUE_NAME, 0) != 0) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   807
		(void) no_memory(hdl);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   808
		return (NULL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   809
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   810
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   811
	/*
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   812
	 * Make sure this property is valid and applies to this type.
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   813
	 */
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   814
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   815
	elem = NULL;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   816
	while ((elem = nvlist_next_nvpair(nvl, elem)) != NULL) {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   817
		const char *propname = nvpair_name(elem);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   818
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   819
		prop = zfs_name_to_prop(propname);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   820
		if (prop == ZPROP_INVAL && zfs_prop_user(propname)) {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   821
			/*
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   822
			 * This is a user property: make sure it's a
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   823
			 * string, and that it's less than ZAP_MAXNAMELEN.
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   824
			 */
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   825
			if (nvpair_type(elem) != DATA_TYPE_STRING) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   826
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   827
				    "'%s' must be a string"), propname);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   828
				(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   829
				goto error;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   830
			}
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   831
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   832
			if (strlen(nvpair_name(elem)) >= ZAP_MAXNAMELEN) {
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   833
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   834
				    "property name '%s' is too long"),
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   835
				    propname);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   836
				(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   837
				goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   838
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   839
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   840
			(void) nvpair_value_string(elem, &strval);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   841
			if (nvlist_add_string(ret, propname, strval) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   842
				(void) no_memory(hdl);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   843
				goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   844
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   845
			continue;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   846
		}
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   847
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   848
		/*
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   849
		 * Currently, only user properties can be modified on
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   850
		 * snapshots.
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   851
		 */
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7184
diff changeset
   852
		if (type == ZFS_TYPE_SNAPSHOT) {
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7184
diff changeset
   853
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7184
diff changeset
   854
			    "this property can not be modified for snapshots"));
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7184
diff changeset
   855
			(void) zfs_error(hdl, EZFS_PROPTYPE, errbuf);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7184
diff changeset
   856
			goto error;
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7184
diff changeset
   857
		}
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7184
diff changeset
   858
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   859
		if (prop == ZPROP_INVAL && zfs_prop_userquota(propname)) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   860
			zfs_userquota_prop_t uqtype;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   861
			char newpropname[128];
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   862
			char domain[128];
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   863
			uint64_t rid;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   864
			uint64_t valary[3];
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   865
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   866
			if (userquota_propname_decode(propname, zoned,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   867
			    &uqtype, domain, sizeof (domain), &rid) != 0) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   868
				zfs_error_aux(hdl,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   869
				    dgettext(TEXT_DOMAIN,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   870
				    "'%s' has an invalid user/group name"),
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   871
				    propname);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   872
				(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   873
				goto error;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   874
			}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   875
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   876
			if (uqtype != ZFS_PROP_USERQUOTA &&
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   877
			    uqtype != ZFS_PROP_GROUPQUOTA) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   878
				zfs_error_aux(hdl,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   879
				    dgettext(TEXT_DOMAIN, "'%s' is readonly"),
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   880
				    propname);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   881
				(void) zfs_error(hdl, EZFS_PROPREADONLY,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   882
				    errbuf);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   883
				goto error;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   884
			}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   885
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   886
			if (nvpair_type(elem) == DATA_TYPE_STRING) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   887
				(void) nvpair_value_string(elem, &strval);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   888
				if (strcmp(strval, "none") == 0) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   889
					intval = 0;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   890
				} else if (zfs_nicestrtonum(hdl,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   891
				    strval, &intval) != 0) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   892
					(void) zfs_error(hdl,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   893
					    EZFS_BADPROP, errbuf);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   894
					goto error;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   895
				}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   896
			} else if (nvpair_type(elem) ==
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   897
			    DATA_TYPE_UINT64) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   898
				(void) nvpair_value_uint64(elem, &intval);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   899
				if (intval == 0) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   900
					zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   901
					    "use 'none' to disable "
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   902
					    "userquota/groupquota"));
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   903
					goto error;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   904
				}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   905
			} else {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   906
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   907
				    "'%s' must be a number"), propname);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   908
				(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   909
				goto error;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   910
			}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   911
10969
ed9b19e85c90 6893929 User/group quotas passed to "zfs create" are not properly set
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10960
diff changeset
   912
			/*
ed9b19e85c90 6893929 User/group quotas passed to "zfs create" are not properly set
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10960
diff changeset
   913
			 * Encode the prop name as
ed9b19e85c90 6893929 User/group quotas passed to "zfs create" are not properly set
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10960
diff changeset
   914
			 * userquota@<hex-rid>-domain, to make it easy
ed9b19e85c90 6893929 User/group quotas passed to "zfs create" are not properly set
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10960
diff changeset
   915
			 * for the kernel to decode.
ed9b19e85c90 6893929 User/group quotas passed to "zfs create" are not properly set
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10960
diff changeset
   916
			 */
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   917
			(void) snprintf(newpropname, sizeof (newpropname),
10969
ed9b19e85c90 6893929 User/group quotas passed to "zfs create" are not properly set
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10960
diff changeset
   918
			    "%s%llx-%s", zfs_userquota_prop_prefixes[uqtype],
ed9b19e85c90 6893929 User/group quotas passed to "zfs create" are not properly set
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10960
diff changeset
   919
			    (longlong_t)rid, domain);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   920
			valary[0] = uqtype;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   921
			valary[1] = rid;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   922
			valary[2] = intval;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   923
			if (nvlist_add_uint64_array(ret, newpropname,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   924
			    valary, 3) != 0) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   925
				(void) no_memory(hdl);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   926
				goto error;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   927
			}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   928
			continue;
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   929
		} else if (prop == ZPROP_INVAL && zfs_prop_written(propname)) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   930
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   931
			    "'%s' is readonly"),
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   932
			    propname);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   933
			(void) zfs_error(hdl, EZFS_PROPREADONLY, errbuf);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
   934
			goto error;
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   935
		}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   936
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   937
		if (prop == ZPROP_INVAL) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   938
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   939
			    "invalid property '%s'"), propname);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   940
			(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   941
			goto error;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   942
		}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
   943
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   944
		if (!zfs_prop_valid_for_type(prop, type)) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   945
			zfs_error_aux(hdl,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   946
			    dgettext(TEXT_DOMAIN, "'%s' does not "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   947
			    "apply to datasets of this type"), propname);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   948
			(void) zfs_error(hdl, EZFS_PROPTYPE, errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   949
			goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   950
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   951
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   952
		if (zfs_prop_readonly(prop) &&
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
   953
		    (!zfs_prop_setonce(prop) || zhp != NULL)) {
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   954
			zfs_error_aux(hdl,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   955
			    dgettext(TEXT_DOMAIN, "'%s' is readonly"),
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   956
			    propname);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   957
			(void) zfs_error(hdl, EZFS_PROPREADONLY, errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   958
			goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   959
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   960
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   961
		if (zprop_parse_value(hdl, elem, prop, type, ret,
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
   962
		    &strval, &intval, errbuf) != 0)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   963
			goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   964
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   965
		/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   966
		 * Perform some additional checks for specific properties.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   967
		 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   968
		switch (prop) {
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   969
		case ZFS_PROP_VERSION:
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   970
		{
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   971
			int version;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   972
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   973
			if (zhp == NULL)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   974
				break;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   975
			version = zfs_prop_get_int(zhp, ZFS_PROP_VERSION);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   976
			if (intval < version) {
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   977
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   978
				    "Can not downgrade; already at version %u"),
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   979
				    version);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   980
				(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   981
				goto error;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   982
			}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   983
			break;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   984
		}
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
   985
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   986
		case ZFS_PROP_RECORDSIZE:
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   987
		case ZFS_PROP_VOLBLOCKSIZE:
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   988
			/* must be power of two within SPA_{MIN,MAX}BLOCKSIZE */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   989
			if (intval < SPA_MINBLOCKSIZE ||
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   990
			    intval > SPA_MAXBLOCKSIZE || !ISP2(intval)) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
   991
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   992
				    "'%s' must be power of 2 from %u "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   993
				    "to %uk"), propname,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   994
				    (uint_t)SPA_MINBLOCKSIZE,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   995
				    (uint_t)SPA_MAXBLOCKSIZE >> 10);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   996
				(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
   997
				goto error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   998
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   999
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1000
10972
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1001
		case ZFS_PROP_MLSLABEL:
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1002
		{
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1003
			/*
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1004
			 * Verify the mlslabel string and convert to
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1005
			 * internal hex label string.
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1006
			 */
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1007
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1008
			m_label_t *new_sl;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1009
			char *hex = NULL;	/* internal label string */
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1010
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1011
			/* Default value is already OK. */
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1012
			if (strcasecmp(strval, ZFS_MLSLABEL_DEFAULT) == 0)
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1013
				break;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1014
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1015
			/* Verify the label can be converted to binary form */
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1016
			if (((new_sl = m_label_alloc(MAC_LABEL)) == NULL) ||
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1017
			    (str_to_label(strval, &new_sl, MAC_LABEL,
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1018
			    L_NO_CORRECTION, NULL) == -1)) {
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1019
				goto badlabel;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1020
			}
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1021
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1022
			/* Now translate to hex internal label string */
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1023
			if (label_to_str(new_sl, &hex, M_INTERNAL,
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1024
			    DEF_NAMES) != 0) {
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1025
				if (hex)
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1026
					free(hex);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1027
				goto badlabel;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1028
			}
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1029
			m_label_free(new_sl);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1030
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1031
			/* If string is already in internal form, we're done. */
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1032
			if (strcmp(strval, hex) == 0) {
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1033
				free(hex);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1034
				break;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1035
			}
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1036
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1037
			/* Replace the label string with the internal form. */
10984
bf1fc133a515 6795907 Add label attribute to ZFS datasets (fix check_rtime and lint)
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10972
diff changeset
  1038
			(void) nvlist_remove(ret, zfs_prop_to_name(prop),
10972
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1039
			    DATA_TYPE_STRING);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1040
			verify(nvlist_add_string(ret, zfs_prop_to_name(prop),
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1041
			    hex) == 0);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1042
			free(hex);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1043
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1044
			break;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1045
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1046
badlabel:
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1047
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1048
			    "invalid mlslabel '%s'"), strval);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1049
			(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1050
			m_label_free(new_sl);	/* OK if null */
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1051
			goto error;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1052
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1053
		}
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  1054
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1055
		case ZFS_PROP_MOUNTPOINT:
4778
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1056
		{
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1057
			namecheck_err_t why;
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1058
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1059
			if (strcmp(strval, ZFS_MOUNTPOINT_NONE) == 0 ||
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1060
			    strcmp(strval, ZFS_MOUNTPOINT_LEGACY) == 0)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1061
				break;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1062
4778
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1063
			if (mountpoint_namecheck(strval, &why)) {
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1064
				switch (why) {
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1065
				case NAME_ERR_LEADING_SLASH:
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1066
					zfs_error_aux(hdl,
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1067
					    dgettext(TEXT_DOMAIN,
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1068
					    "'%s' must be an absolute path, "
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1069
					    "'none', or 'legacy'"), propname);
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1070
					break;
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1071
				case NAME_ERR_TOOLONG:
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1072
					zfs_error_aux(hdl,
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1073
					    dgettext(TEXT_DOMAIN,
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1074
					    "component of '%s' is too long"),
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1075
					    propname);
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1076
					break;
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1077
				}
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1078
				(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1079
				goto error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1080
			}
4778
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1081
		}
068cf1db91f1 6446301 ZFS mountpoint reverted back from legacy but sharenfs property not honored
rm160521
parents: 4603
diff changeset
  1082
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1083
			/*FALLTHRU*/
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1084
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1085
		case ZFS_PROP_SHARESMB:
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1086
		case ZFS_PROP_SHARENFS:
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1087
			/*
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1088
			 * For the mountpoint and sharenfs or sharesmb
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1089
			 * properties, check if it can be set in a
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1090
			 * global/non-global zone based on
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1091
			 * the zoned property value:
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1092
			 *
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1093
			 *		global zone	    non-global zone
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1094
			 * --------------------------------------------------
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1095
			 * zoned=on	mountpoint (no)	    mountpoint (yes)
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1096
			 *		sharenfs (no)	    sharenfs (no)
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1097
			 *		sharesmb (no)	    sharesmb (no)
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1098
			 *
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1099
			 * zoned=off	mountpoint (yes)	N/A
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1100
			 *		sharenfs (yes)
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1101
			 *		sharesmb (yes)
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1102
			 */
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1103
			if (zoned) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1104
				if (getzoneid() == GLOBAL_ZONEID) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1105
					zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1106
					    "'%s' cannot be set on "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1107
					    "dataset in a non-global zone"),
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1108
					    propname);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1109
					(void) zfs_error(hdl, EZFS_ZONED,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1110
					    errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1111
					goto error;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1112
				} else if (prop == ZFS_PROP_SHARENFS ||
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1113
				    prop == ZFS_PROP_SHARESMB) {
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1114
					zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1115
					    "'%s' cannot be set in "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1116
					    "a non-global zone"), propname);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1117
					(void) zfs_error(hdl, EZFS_ZONED,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1118
					    errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1119
					goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1120
				}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1121
			} else if (getzoneid() != GLOBAL_ZONEID) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1122
				/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1123
				 * If zoned property is 'off', this must be in
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  1124
				 * a global zone. If not, something is wrong.
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1125
				 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1126
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1127
				    "'%s' cannot be set while dataset "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1128
				    "'zoned' property is set"), propname);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1129
				(void) zfs_error(hdl, EZFS_ZONED, errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1130
				goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1131
			}
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1132
4180
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1133
			/*
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1134
			 * At this point, it is legitimate to set the
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1135
			 * property. Now we want to make sure that the
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1136
			 * property value is valid if it is sharenfs.
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1137
			 */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1138
			if ((prop == ZFS_PROP_SHARENFS ||
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1139
			    prop == ZFS_PROP_SHARESMB) &&
4217
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1140
			    strcmp(strval, "on") != 0 &&
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1141
			    strcmp(strval, "off") != 0) {
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1142
				zfs_share_proto_t proto;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1143
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1144
				if (prop == ZFS_PROP_SHARESMB)
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1145
					proto = PROTO_SMB;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1146
				else
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1147
					proto = PROTO_NFS;
4180
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1148
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1149
				/*
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1150
				 * Must be an valid sharing protocol
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1151
				 * option string so init the libshare
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1152
				 * in order to enable the parser and
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1153
				 * then parse the options. We use the
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1154
				 * control API since we don't care about
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1155
				 * the current configuration and don't
4180
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1156
				 * want the overhead of loading it
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1157
				 * until we actually do something.
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1158
				 */
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1159
4217
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1160
				if (zfs_init_libshare(hdl,
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1161
				    SA_INIT_CONTROL_API) != SA_OK) {
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1162
					/*
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1163
					 * An error occurred so we can't do
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1164
					 * anything
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1165
					 */
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1166
					zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1167
					    "'%s' cannot be set: problem "
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1168
					    "in share initialization"),
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1169
					    propname);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1170
					(void) zfs_error(hdl, EZFS_BADPROP,
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1171
					    errbuf);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1172
					goto error;
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1173
				}
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1174
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1175
				if (zfs_parse_options(strval, proto) != SA_OK) {
4217
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1176
					/*
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1177
					 * There was an error in parsing so
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1178
					 * deal with it by issuing an error
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1179
					 * message and leaving after
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1180
					 * uninitializing the the libshare
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1181
					 * interface.
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1182
					 */
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1183
					zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1184
					    "'%s' cannot be set to invalid "
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1185
					    "options"), propname);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1186
					(void) zfs_error(hdl, EZFS_BADPROP,
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1187
					    errbuf);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1188
					zfs_uninit_libshare(hdl);
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1189
					goto error;
3411a82f178f 6552521 truss dumps core with multibyte characters in syscall args
eschrock
parents: 4183
diff changeset
  1190
				}
4180
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1191
				zfs_uninit_libshare(hdl);
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1192
			}
30b15f0bd3c9 6491973 sharemgr: zfs set sharenfs=on is slow with lots of zfs filesystems
dougm
parents: 4007
diff changeset
  1193
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1194
			break;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1195
		case ZFS_PROP_UTF8ONLY:
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1196
			chosen_utf = (int)intval;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1197
			break;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1198
		case ZFS_PROP_NORMALIZE:
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1199
			chosen_normal = (int)intval;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1200
			break;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1201
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1202
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1203
		/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1204
		 * For changes to existing volumes, we have some additional
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1205
		 * checks to enforce.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1206
		 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1207
		if (type == ZFS_TYPE_VOLUME && zhp != NULL) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1208
			uint64_t volsize = zfs_prop_get_int(zhp,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1209
			    ZFS_PROP_VOLSIZE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1210
			uint64_t blocksize = zfs_prop_get_int(zhp,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1211
			    ZFS_PROP_VOLBLOCKSIZE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1212
			char buf[64];
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1213
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1214
			switch (prop) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1215
			case ZFS_PROP_RESERVATION:
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5375
diff changeset
  1216
			case ZFS_PROP_REFRESERVATION:
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1217
				if (intval > volsize) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1218
					zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1219
					    "'%s' is greater than current "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1220
					    "volume size"), propname);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1221
					(void) zfs_error(hdl, EZFS_BADPROP,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1222
					    errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1223
					goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1224
				}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1225
				break;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1226
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1227
			case ZFS_PROP_VOLSIZE:
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1228
				if (intval % blocksize != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1229
					zfs_nicenum(blocksize, buf,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1230
					    sizeof (buf));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1231
					zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1232
					    "'%s' must be a multiple of "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1233
					    "volume block size (%s)"),
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1234
					    propname, buf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1235
					(void) zfs_error(hdl, EZFS_BADPROP,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1236
					    errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1237
					goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1238
				}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1239
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1240
				if (intval == 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1241
					zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1242
					    "'%s' cannot be zero"),
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1243
					    propname);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1244
					(void) zfs_error(hdl, EZFS_BADPROP,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1245
					    errbuf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1246
					goto error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1247
				}
3126
4f4fb617fdd0 PSARC 2006/622 iSCSI/ZFS Integration
ahl
parents: 2885
diff changeset
  1248
				break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1249
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1250
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1251
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1252
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1253
	/*
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1254
	 * If normalization was chosen, but no UTF8 choice was made,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1255
	 * enforce rejection of non-UTF8 names.
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1256
	 *
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1257
	 * If normalization was chosen, but rejecting non-UTF8 names
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1258
	 * was explicitly not chosen, it is an error.
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1259
	 */
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1260
	if (chosen_normal > 0 && chosen_utf < 0) {
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1261
		if (nvlist_add_uint64(ret,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1262
		    zfs_prop_to_name(ZFS_PROP_UTF8ONLY), 1) != 0) {
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1263
			(void) no_memory(hdl);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1264
			goto error;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1265
		}
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1266
	} else if (chosen_normal > 0 && chosen_utf == 0) {
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1267
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1268
		    "'%s' must be set 'on' if normalization chosen"),
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1269
		    zfs_prop_to_name(ZFS_PROP_UTF8ONLY));
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1270
		(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1271
		goto error;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1272
	}
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1273
	return (ret);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1274
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1275
error:
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1276
	nvlist_free(ret);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1277
	return (NULL);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1278
}
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1279
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1280
int
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1281
zfs_add_synthetic_resv(zfs_handle_t *zhp, nvlist_t *nvl)
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1282
{
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1283
	uint64_t old_volsize;
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1284
	uint64_t new_volsize;
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1285
	uint64_t old_reservation;
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1286
	uint64_t new_reservation;
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1287
	zfs_prop_t resv_prop;
14040
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1288
	nvlist_t *props;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1289
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1290
	/*
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1291
	 * If this is an existing volume, and someone is setting the volsize,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1292
	 * make sure that it matches the reservation, or add it if necessary.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1293
	 */
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1294
	old_volsize = zfs_prop_get_int(zhp, ZFS_PROP_VOLSIZE);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1295
	if (zfs_which_resv_prop(zhp, &resv_prop) < 0)
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1296
		return (-1);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1297
	old_reservation = zfs_prop_get_int(zhp, resv_prop);
14040
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1298
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1299
	props = fnvlist_alloc();
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1300
	fnvlist_add_uint64(props, zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE),
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1301
	    zfs_prop_get_int(zhp, ZFS_PROP_VOLBLOCKSIZE));
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1302
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1303
	if ((zvol_volsize_to_reservation(old_volsize, props) !=
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1304
	    old_reservation) || nvlist_exists(nvl,
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1305
	    zfs_prop_to_name(resv_prop))) {
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1306
		fnvlist_free(props);
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1307
		return (0);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1308
	}
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1309
	if (nvlist_lookup_uint64(nvl, zfs_prop_to_name(ZFS_PROP_VOLSIZE),
14040
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1310
	    &new_volsize) != 0) {
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1311
		fnvlist_free(props);
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1312
		return (-1);
14040
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1313
	}
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1314
	new_reservation = zvol_volsize_to_reservation(new_volsize, props);
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1315
	fnvlist_free(props);
92bec6d87f59 3557 dumpvp_size is not updated correctly when a dump zvol's size is changed
George Wilson <george.wilson@delphix.com>
parents: 13871
diff changeset
  1316
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1317
	if (nvlist_add_uint64(nvl, zfs_prop_to_name(resv_prop),
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1318
	    new_reservation) != 0) {
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1319
		(void) no_memory(zhp->zfs_hdl);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1320
		return (-1);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1321
	}
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1322
	return (1);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1323
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1324
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1325
void
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1326
zfs_setprop_error(libzfs_handle_t *hdl, zfs_prop_t prop, int err,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1327
    char *errbuf)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1328
{
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1329
	switch (err) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1330
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1331
	case ENOSPC:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1332
		/*
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1333
		 * For quotas and reservations, ENOSPC indicates
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1334
		 * something different; setting a quota or reservation
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1335
		 * doesn't use any disk space.
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1336
		 */
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1337
		switch (prop) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1338
		case ZFS_PROP_QUOTA:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1339
		case ZFS_PROP_REFQUOTA:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1340
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1341
			    "size is less than current used or "
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1342
			    "reserved space"));
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1343
			(void) zfs_error(hdl, EZFS_PROPSPACE, errbuf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1344
			break;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1345
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1346
		case ZFS_PROP_RESERVATION:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1347
		case ZFS_PROP_REFRESERVATION:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1348
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1349
			    "size is greater than available space"));
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1350
			(void) zfs_error(hdl, EZFS_PROPSPACE, errbuf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1351
			break;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1352
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1353
		default:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1354
			(void) zfs_standard_error(hdl, err, errbuf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1355
			break;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1356
		}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1357
		break;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1358
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1359
	case EBUSY:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1360
		(void) zfs_standard_error(hdl, EBUSY, errbuf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1361
		break;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1362
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1363
	case EROFS:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1364
		(void) zfs_error(hdl, EZFS_DSREADONLY, errbuf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1365
		break;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1366
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1367
	case ENOTSUP:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1368
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1369
		    "pool and or dataset must be upgraded to set this "
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1370
		    "property or value"));
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1371
		(void) zfs_error(hdl, EZFS_BADVERSION, errbuf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1372
		break;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1373
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1374
	case ERANGE:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1375
		if (prop == ZFS_PROP_COMPRESSION) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1376
			(void) zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1377
			    "property setting is not allowed on "
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1378
			    "bootable datasets"));
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1379
			(void) zfs_error(hdl, EZFS_NOTSUP, errbuf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1380
		} else {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1381
			(void) zfs_standard_error(hdl, err, errbuf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1382
		}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1383
		break;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1384
11876
5fce03ad05c6 PSARC/2010/006 EOF of iSCSI Target Daemon
Jim Dunham <James.Dunham@Sun.COM>
parents: 11814
diff changeset
  1385
	case EINVAL:
5fce03ad05c6 PSARC/2010/006 EOF of iSCSI Target Daemon
Jim Dunham <James.Dunham@Sun.COM>
parents: 11814
diff changeset
  1386
		if (prop == ZPROP_INVAL) {
5fce03ad05c6 PSARC/2010/006 EOF of iSCSI Target Daemon
Jim Dunham <James.Dunham@Sun.COM>
parents: 11814
diff changeset
  1387
			(void) zfs_error(hdl, EZFS_BADPROP, errbuf);
5fce03ad05c6 PSARC/2010/006 EOF of iSCSI Target Daemon
Jim Dunham <James.Dunham@Sun.COM>
parents: 11814
diff changeset
  1388
		} else {
5fce03ad05c6 PSARC/2010/006 EOF of iSCSI Target Daemon
Jim Dunham <James.Dunham@Sun.COM>
parents: 11814
diff changeset
  1389
			(void) zfs_standard_error(hdl, err, errbuf);
5fce03ad05c6 PSARC/2010/006 EOF of iSCSI Target Daemon
Jim Dunham <James.Dunham@Sun.COM>
parents: 11814
diff changeset
  1390
		}
5fce03ad05c6 PSARC/2010/006 EOF of iSCSI Target Daemon
Jim Dunham <James.Dunham@Sun.COM>
parents: 11814
diff changeset
  1391
		break;
5fce03ad05c6 PSARC/2010/006 EOF of iSCSI Target Daemon
Jim Dunham <James.Dunham@Sun.COM>
parents: 11814
diff changeset
  1392
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1393
	case EOVERFLOW:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1394
		/*
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1395
		 * This platform can't address a volume this big.
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1396
		 */
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1397
#ifdef _ILP32
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1398
		if (prop == ZFS_PROP_VOLSIZE) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1399
			(void) zfs_error(hdl, EZFS_VOLTOOBIG, errbuf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1400
			break;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1401
		}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1402
#endif
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1403
		/* FALLTHROUGH */
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1404
	default:
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1405
		(void) zfs_standard_error(hdl, err, errbuf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1406
	}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1407
}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1408
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1409
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1410
 * Given a property name and value, set the property for the given dataset.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1411
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1412
int
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1413
zfs_prop_set(zfs_handle_t *zhp, const char *propname, const char *propval)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1414
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1415
	zfs_cmd_t zc = { 0 };
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1416
	int ret = -1;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1417
	prop_changelist_t *cl = NULL;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1418
	char errbuf[1024];
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1419
	libzfs_handle_t *hdl = zhp->zfs_hdl;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1420
	nvlist_t *nvl = NULL, *realprops;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1421
	zfs_prop_t prop;
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1422
	boolean_t do_prefix = B_TRUE;
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1423
	int added_resv;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1424
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1425
	(void) snprintf(errbuf, sizeof (errbuf),
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1426
	    dgettext(TEXT_DOMAIN, "cannot set property for '%s'"),
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1427
	    zhp->zfs_name);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1428
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1429
	if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0 ||
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1430
	    nvlist_add_string(nvl, propname, propval) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1431
		(void) no_memory(hdl);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1432
		goto error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1433
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1434
7184
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7042
diff changeset
  1435
	if ((realprops = zfs_valid_proplist(hdl, zhp->zfs_type, nvl,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1436
	    zfs_prop_get_int(zhp, ZFS_PROP_ZONED), zhp, errbuf)) == NULL)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1437
		goto error;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1438
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1439
	nvlist_free(nvl);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1440
	nvl = realprops;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1441
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1442
	prop = zfs_name_to_prop(propname);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1443
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1444
	if (prop == ZFS_PROP_VOLSIZE) {
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1445
		if ((added_resv = zfs_add_synthetic_resv(zhp, nvl)) == -1)
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1446
			goto error;
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1447
	}
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1448
7366
33de5956afbb 6678308 zfs receive dumps core when -n is used, fails on replication stream
Tim Haley <Tim.Haley@Sun.COM>
parents: 7301
diff changeset
  1449
	if ((cl = changelist_gather(zhp, prop, 0, 0)) == NULL)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1450
		goto error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1451
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1452
	if (prop == ZFS_PROP_MOUNTPOINT && changelist_haszonedchild(cl)) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1453
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1454
		    "child dataset with inherited mountpoint is used "
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1455
		    "in a non-global zone"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1456
		ret = zfs_error(hdl, EZFS_ZONED, errbuf);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1457
		goto error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1458
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1459
7509
24f6b0f4654f 6739303 Setting canmount=noauto should not require unmounting and remounting a dataset
Mark J Musante <Mark.Musante@Sun.COM>
parents: 7390
diff changeset
  1460
	/*
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1461
	 * We don't want to unmount & remount the dataset when changing
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1462
	 * its canmount property to 'on' or 'noauto'.  We only use
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1463
	 * the changelist logic to unmount when setting canmount=off.
7509
24f6b0f4654f 6739303 Setting canmount=noauto should not require unmounting and remounting a dataset
Mark J Musante <Mark.Musante@Sun.COM>
parents: 7390
diff changeset
  1464
	 */
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1465
	if (prop == ZFS_PROP_CANMOUNT) {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1466
		uint64_t idx;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1467
		int err = zprop_string_to_index(prop, propval, &idx,
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1468
		    ZFS_TYPE_DATASET);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1469
		if (err == 0 && idx != ZFS_CANMOUNT_OFF)
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1470
			do_prefix = B_FALSE;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  1471
	}
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  1472
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  1473
	if (do_prefix && (ret = changelist_prefix(cl)) != 0)
7509
24f6b0f4654f 6739303 Setting canmount=noauto should not require unmounting and remounting a dataset
Mark J Musante <Mark.Musante@Sun.COM>
parents: 7390
diff changeset
  1474
		goto error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1475
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1476
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1477
	 * Execute the corresponding ioctl() to set this property.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1478
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1479
	(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1480
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1481
	if (zcmd_write_src_nvlist(hdl, &zc, nvl) != 0)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1482
		goto error;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1483
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  1484
	ret = zfs_ioctl(hdl, ZFS_IOC_SET_PROP, &zc);
8845
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  1485
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1486
	if (ret != 0) {
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1487
		zfs_setprop_error(hdl, prop, errno, errbuf);
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1488
		if (added_resv && errno == ENOSPC) {
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1489
			/* clean up the volsize property we tried to set */
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1490
			uint64_t old_volsize = zfs_prop_get_int(zhp,
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1491
			    ZFS_PROP_VOLSIZE);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1492
			nvlist_free(nvl);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1493
			zcmd_free_nvlists(&zc);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1494
			if (nvlist_alloc(&nvl, NV_UNIQUE_NAME, 0) != 0)
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1495
				goto error;
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1496
			if (nvlist_add_uint64(nvl,
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1497
			    zfs_prop_to_name(ZFS_PROP_VOLSIZE),
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1498
			    old_volsize) != 0)
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1499
				goto error;
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1500
			if (zcmd_write_src_nvlist(hdl, &zc, nvl) != 0)
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1501
				goto error;
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1502
			(void) zfs_ioctl(hdl, ZFS_IOC_SET_PROP, &zc);
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1503
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1504
	} else {
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  1505
		if (do_prefix)
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  1506
			ret = changelist_postfix(cl);
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  1507
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1508
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1509
		 * Refresh the statistics so the new property value
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1510
		 * is reflected.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1511
		 */
6168
51c045dcc498 PSARC 2008/168 Support for ZFS property value canmount=noauto
hs24103
parents: 5993
diff changeset
  1512
		if (ret == 0)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1513
			(void) get_stats(zhp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1514
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1515
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1516
error:
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1517
	nvlist_free(nvl);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1518
	zcmd_free_nvlists(&zc);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1519
	if (cl)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1520
		changelist_free(cl);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1521
	return (ret);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1522
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1523
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1524
/*
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1525
 * Given a property, inherit the value from the parent dataset, or if received
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1526
 * is TRUE, revert to the received value, if any.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1527
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1528
int
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1529
zfs_prop_inherit(zfs_handle_t *zhp, const char *propname, boolean_t received)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1530
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1531
	zfs_cmd_t zc = { 0 };
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1532
	int ret;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1533
	prop_changelist_t *cl;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1534
	libzfs_handle_t *hdl = zhp->zfs_hdl;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1535
	char errbuf[1024];
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1536
	zfs_prop_t prop;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1537
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1538
	(void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1539
	    "cannot inherit %s for '%s'"), propname, zhp->zfs_name);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1540
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1541
	zc.zc_cookie = received;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1542
	if ((prop = zfs_name_to_prop(propname)) == ZPROP_INVAL) {
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1543
		/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1544
		 * For user properties, the amount of work we have to do is very
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1545
		 * small, so just do it here.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1546
		 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1547
		if (!zfs_prop_user(propname)) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1548
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1549
			    "invalid property"));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1550
			return (zfs_error(hdl, EZFS_BADPROP, errbuf));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1551
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1552
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1553
		(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1554
		(void) strlcpy(zc.zc_value, propname, sizeof (zc.zc_value));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1555
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4801
diff changeset
  1556
		if (zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_INHERIT_PROP, &zc) != 0)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1557
			return (zfs_standard_error(hdl, errno, errbuf));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1558
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1559
		return (0);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1560
	}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1561
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1562
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1563
	 * Verify that this property is inheritable.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1564
	 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1565
	if (zfs_prop_readonly(prop))
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1566
		return (zfs_error(hdl, EZFS_PROPREADONLY, errbuf));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1567
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1568
	if (!zfs_prop_inheritable(prop) && !received)
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1569
		return (zfs_error(hdl, EZFS_PROPNONINHERIT, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1570
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1571
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1572
	 * Check to see if the value applies to this type
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1573
	 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1574
	if (!zfs_prop_valid_for_type(prop, zhp->zfs_type))
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1575
		return (zfs_error(hdl, EZFS_PROPTYPE, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1576
3443
e0e00ef6cee8 6494654 zfs inherit can't handle property short names
rm160521
parents: 3417
diff changeset
  1577
	/*
12496
f12a527894a8 6930145 zfs(1M) set volsize command failed without any error
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11963
diff changeset
  1578
	 * Normalize the name, to get rid of shorthand abbreviations.
3443
e0e00ef6cee8 6494654 zfs inherit can't handle property short names
rm160521
parents: 3417
diff changeset
  1579
	 */
e0e00ef6cee8 6494654 zfs inherit can't handle property short names
rm160521
parents: 3417
diff changeset
  1580
	propname = zfs_prop_to_name(prop);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1581
	(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  1582
	(void) strlcpy(zc.zc_value, propname, sizeof (zc.zc_value));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1583
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1584
	if (prop == ZFS_PROP_MOUNTPOINT && getzoneid() == GLOBAL_ZONEID &&
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1585
	    zfs_prop_get_int(zhp, ZFS_PROP_ZONED)) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1586
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1587
		    "dataset is used in a non-global zone"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1588
		return (zfs_error(hdl, EZFS_ZONED, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1589
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1590
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1591
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1592
	 * Determine datasets which will be affected by this change, if any.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1593
	 */
7366
33de5956afbb 6678308 zfs receive dumps core when -n is used, fails on replication stream
Tim Haley <Tim.Haley@Sun.COM>
parents: 7301
diff changeset
  1594
	if ((cl = changelist_gather(zhp, prop, 0, 0)) == NULL)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1595
		return (-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1596
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1597
	if (prop == ZFS_PROP_MOUNTPOINT && changelist_haszonedchild(cl)) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1598
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1599
		    "child dataset with inherited mountpoint is used "
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1600
		    "in a non-global zone"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1601
		ret = zfs_error(hdl, EZFS_ZONED, errbuf);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1602
		goto error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1603
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1604
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1605
	if ((ret = changelist_prefix(cl)) != 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1606
		goto error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1607
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4801
diff changeset
  1608
	if ((ret = zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_INHERIT_PROP, &zc)) != 0) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1609
		return (zfs_standard_error(hdl, errno, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1610
	} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1611
2169
0152c8ed1663 6385436 zfs set <property> returns an error, but still sets property value (fix build)
nd150628
parents: 2166
diff changeset
  1612
		if ((ret = changelist_postfix(cl)) != 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1613
			goto error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1614
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1615
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1616
		 * Refresh the statistics so the new property is reflected.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1617
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1618
		(void) get_stats(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1619
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1620
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1621
error:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1622
	changelist_free(cl);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1623
	return (ret);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1624
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1625
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1626
/*
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1627
 * True DSL properties are stored in an nvlist.  The following two functions
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1628
 * extract them appropriately.
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1629
 */
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1630
static uint64_t
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1631
getprop_uint64(zfs_handle_t *zhp, zfs_prop_t prop, char **source)
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1632
{
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1633
	nvlist_t *nv;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1634
	uint64_t value;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1635
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  1636
	*source = NULL;
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1637
	if (nvlist_lookup_nvlist(zhp->zfs_props,
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1638
	    zfs_prop_to_name(prop), &nv) == 0) {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1639
		verify(nvlist_lookup_uint64(nv, ZPROP_VALUE, &value) == 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1640
		(void) nvlist_lookup_string(nv, ZPROP_SOURCE, source);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1641
	} else {
8802
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  1642
		verify(!zhp->zfs_props_table ||
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  1643
		    zhp->zfs_props_table[prop] == B_TRUE);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1644
		value = zfs_prop_default_numeric(prop);
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1645
		*source = "";
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1646
	}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1647
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1648
	return (value);
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1649
}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1650
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1651
static char *
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1652
getprop_string(zfs_handle_t *zhp, zfs_prop_t prop, char **source)
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1653
{
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1654
	nvlist_t *nv;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1655
	char *value;
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1656
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  1657
	*source = NULL;
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1658
	if (nvlist_lookup_nvlist(zhp->zfs_props,
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1659
	    zfs_prop_to_name(prop), &nv) == 0) {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1660
		verify(nvlist_lookup_string(nv, ZPROP_VALUE, &value) == 0);
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1661
		(void) nvlist_lookup_string(nv, ZPROP_SOURCE, source);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1662
	} else {
8802
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  1663
		verify(!zhp->zfs_props_table ||
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  1664
		    zhp->zfs_props_table[prop] == B_TRUE);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1665
		if ((value = (char *)zfs_prop_default_string(prop)) == NULL)
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1666
			value = "";
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1667
		*source = "";
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1668
	}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1669
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1670
	return (value);
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1671
}
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1672
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1673
static boolean_t
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1674
zfs_is_recvd_props_mode(zfs_handle_t *zhp)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1675
{
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1676
	return (zhp->zfs_props == zhp->zfs_recvd_props);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1677
}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1678
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1679
static void
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1680
zfs_set_recvd_props_mode(zfs_handle_t *zhp, uint64_t *cookie)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1681
{
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1682
	*cookie = (uint64_t)(uintptr_t)zhp->zfs_props;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1683
	zhp->zfs_props = zhp->zfs_recvd_props;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1684
}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1685
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1686
static void
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1687
zfs_unset_recvd_props_mode(zfs_handle_t *zhp, uint64_t *cookie)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1688
{
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1689
	zhp->zfs_props = (nvlist_t *)(uintptr_t)*cookie;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1690
	*cookie = 0;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1691
}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1692
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  1693
/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1694
 * Internal function for getting a numeric property.  Both zfs_prop_get() and
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1695
 * zfs_prop_get_int() are built using this interface.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1696
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1697
 * Certain properties can be overridden using 'mount -o'.  In this case, scan
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1698
 * the contents of the /etc/mnttab entry, searching for the appropriate options.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1699
 * If they differ from the on-disk values, report the current values and mark
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1700
 * the source "temporary".
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1701
 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1702
static int
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1703
get_numeric_property(zfs_handle_t *zhp, zfs_prop_t prop, zprop_source_t *src,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1704
    char **source, uint64_t *val)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1705
{
5147
5e950ccc9585 6596190 "zfs list" is slow due to version property
rm160521
parents: 5094
diff changeset
  1706
	zfs_cmd_t zc = { 0 };
5592
1b20f93ffca0 6637425 memory leak in get_numeric_property()
timh
parents: 5498
diff changeset
  1707
	nvlist_t *zplprops = NULL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1708
	struct mnttab mnt;
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1709
	char *mntopt_on = NULL;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1710
	char *mntopt_off = NULL;
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1711
	boolean_t received = zfs_is_recvd_props_mode(zhp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1712
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1713
	*source = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1714
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1715
	switch (prop) {
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1716
	case ZFS_PROP_ATIME:
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1717
		mntopt_on = MNTOPT_ATIME;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1718
		mntopt_off = MNTOPT_NOATIME;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1719
		break;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1720
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1721
	case ZFS_PROP_DEVICES:
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1722
		mntopt_on = MNTOPT_DEVICES;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1723
		mntopt_off = MNTOPT_NODEVICES;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1724
		break;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1725
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1726
	case ZFS_PROP_EXEC:
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1727
		mntopt_on = MNTOPT_EXEC;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1728
		mntopt_off = MNTOPT_NOEXEC;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1729
		break;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1730
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1731
	case ZFS_PROP_READONLY:
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1732
		mntopt_on = MNTOPT_RO;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1733
		mntopt_off = MNTOPT_RW;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1734
		break;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1735
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1736
	case ZFS_PROP_SETUID:
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1737
		mntopt_on = MNTOPT_SETUID;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1738
		mntopt_off = MNTOPT_NOSETUID;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1739
		break;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1740
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1741
	case ZFS_PROP_XATTR:
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1742
		mntopt_on = MNTOPT_XATTR;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1743
		mntopt_off = MNTOPT_NOXATTR;
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1744
		break;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1745
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1746
	case ZFS_PROP_NBMAND:
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1747
		mntopt_on = MNTOPT_NBMAND;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1748
		mntopt_off = MNTOPT_NONBMAND;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1749
		break;
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1750
	}
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1751
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2440
diff changeset
  1752
	/*
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2440
diff changeset
  1753
	 * Because looking up the mount options is potentially expensive
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2440
diff changeset
  1754
	 * (iterating over all of /etc/mnttab), we defer its calculation until
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2440
diff changeset
  1755
	 * we're looking up a property which requires its presence.
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2440
diff changeset
  1756
	 */
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2440
diff changeset
  1757
	if (!zhp->zfs_mntcheck &&
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1758
	    (mntopt_on != NULL || prop == ZFS_PROP_MOUNTED)) {
8228
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
  1759
		libzfs_handle_t *hdl = zhp->zfs_hdl;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
  1760
		struct mnttab entry;
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
  1761
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
  1762
		if (libzfs_mnttab_find(hdl, zhp->zfs_name, &entry) == 0) {
51e9ca9ee3a5 6572357 libzfs should do more to avoid mnttab lookups
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7509
diff changeset
  1763
			zhp->zfs_mntopts = zfs_strdup(hdl,
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1764
			    entry.mnt_mntopts);
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1765
			if (zhp->zfs_mntopts == NULL)
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1766
				return (-1);
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1767
		}
2474
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2440
diff changeset
  1768
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2440
diff changeset
  1769
		zhp->zfs_mntcheck = B_TRUE;
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2440
diff changeset
  1770
	}
c001ad7e0c25 6368751 libzfs interface for mount/umounting all the file systems for a given pool
eschrock
parents: 2440
diff changeset
  1771
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1772
	if (zhp->zfs_mntopts == NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1773
		mnt.mnt_mntopts = "";
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1774
	else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1775
		mnt.mnt_mntopts = zhp->zfs_mntopts;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1776
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1777
	switch (prop) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1778
	case ZFS_PROP_ATIME:
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1779
	case ZFS_PROP_DEVICES:
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1780
	case ZFS_PROP_EXEC:
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1781
	case ZFS_PROP_READONLY:
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1782
	case ZFS_PROP_SETUID:
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1783
	case ZFS_PROP_XATTR:
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  1784
	case ZFS_PROP_NBMAND:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1785
		*val = getprop_uint64(zhp, prop, source);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1786
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1787
		if (received)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1788
			break;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1789
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1790
		if (hasmntopt(&mnt, mntopt_on) && !*val) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1791
			*val = B_TRUE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1792
			if (src)
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1793
				*src = ZPROP_SRC_TEMPORARY;
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1794
		} else if (hasmntopt(&mnt, mntopt_off) && *val) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1795
			*val = B_FALSE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1796
			if (src)
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1797
				*src = ZPROP_SRC_TEMPORARY;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1798
		}
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1799
		break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1800
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  1801
	case ZFS_PROP_CANMOUNT:
11497
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  1802
	case ZFS_PROP_VOLSIZE:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1803
	case ZFS_PROP_QUOTA:
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5375
diff changeset
  1804
	case ZFS_PROP_REFQUOTA:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1805
	case ZFS_PROP_RESERVATION:
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5375
diff changeset
  1806
	case ZFS_PROP_REFRESERVATION:
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  1807
		*val = getprop_uint64(zhp, prop, source);
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1808
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1809
		if (*source == NULL) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1810
			/* not default, must be local */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1811
			*source = zhp->zfs_name;
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1812
		}
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1813
		break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1814
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1815
	case ZFS_PROP_MOUNTED:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1816
		*val = (zhp->zfs_mntopts != NULL);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  1817
		break;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1818
3377
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3363
diff changeset
  1819
	case ZFS_PROP_NUMCLONES:
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3363
diff changeset
  1820
		*val = zhp->zfs_dmustats.dds_num_clones;
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3363
diff changeset
  1821
		break;
a2fa338530c1 6393525 vdev_reopen() should verify that it's still the same device
eschrock
parents: 3363
diff changeset
  1822
5147
5e950ccc9585 6596190 "zfs list" is slow due to version property
rm160521
parents: 5094
diff changeset
  1823
	case ZFS_PROP_VERSION:
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1824
	case ZFS_PROP_NORMALIZE:
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1825
	case ZFS_PROP_UTF8ONLY:
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1826
	case ZFS_PROP_CASE:
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1827
		if (!zfs_prop_valid_for_type(prop, zhp->zfs_head_type) ||
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1828
		    zcmd_alloc_dst_nvlist(zhp->zfs_hdl, &zc, 0) != 0)
5473
fcdd1931b3aa 6590941 zfs set mountpoint should not return 0 when it fails
rm160521
parents: 5446
diff changeset
  1829
			return (-1);
5147
5e950ccc9585 6596190 "zfs list" is slow due to version property
rm160521
parents: 5094
diff changeset
  1830
		(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1831
		if (zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_OBJSET_ZPLPROPS, &zc)) {
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1832
			zcmd_free_nvlists(&zc);
10204
83c3a84aecef 6760420 zfs unmount -f causes recv to fail
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10160
diff changeset
  1833
			return (-1);
5147
5e950ccc9585 6596190 "zfs list" is slow due to version property
rm160521
parents: 5094
diff changeset
  1834
		}
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1835
		if (zcmd_read_dst_nvlist(zhp->zfs_hdl, &zc, &zplprops) != 0 ||
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1836
		    nvlist_lookup_uint64(zplprops, zfs_prop_to_name(prop),
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1837
		    val) != 0) {
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1838
			zcmd_free_nvlists(&zc);
10204
83c3a84aecef 6760420 zfs unmount -f causes recv to fail
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 10160
diff changeset
  1839
			return (-1);
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1840
		}
5592
1b20f93ffca0 6637425 memory leak in get_numeric_property()
timh
parents: 5498
diff changeset
  1841
		if (zplprops)
1b20f93ffca0 6637425 memory leak in get_numeric_property()
timh
parents: 5498
diff changeset
  1842
			nvlist_free(zplprops);
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5481
diff changeset
  1843
		zcmd_free_nvlists(&zc);
5147
5e950ccc9585 6596190 "zfs list" is slow due to version property
rm160521
parents: 5094
diff changeset
  1844
		break;
5e950ccc9585 6596190 "zfs list" is slow due to version property
rm160521
parents: 5094
diff changeset
  1845
14172
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  1846
	case ZFS_PROP_INCONSISTENT:
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  1847
		*val = zhp->zfs_dmustats.dds_inconsistent;
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  1848
		break;
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  1849
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1850
	default:
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1851
		switch (zfs_prop_get_type(prop)) {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4778
diff changeset
  1852
		case PROP_TYPE_NUMBER:
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4778
diff changeset
  1853
		case PROP_TYPE_INDEX:
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1854
			*val = getprop_uint64(zhp, prop, source);
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7366
diff changeset
  1855
			/*
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  1856
			 * If we tried to use a default value for a
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7366
diff changeset
  1857
			 * readonly property, it means that it was not
11080
368ac1f03f55 6900484 default volblocksize is no longer being reported correctly
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11022
diff changeset
  1858
			 * present.
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7366
diff changeset
  1859
			 */
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7366
diff changeset
  1860
			if (zfs_prop_readonly(prop) &&
11080
368ac1f03f55 6900484 default volblocksize is no longer being reported correctly
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11022
diff changeset
  1861
			    *source != NULL && (*source)[0] == '\0') {
368ac1f03f55 6900484 default volblocksize is no longer being reported correctly
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11022
diff changeset
  1862
				*source = NULL;
7390
6d408f0a5fbd PSARC/2008/518 ZFS space accounting enhancements
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7366
diff changeset
  1863
			}
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1864
			break;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1865
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4778
diff changeset
  1866
		case PROP_TYPE_STRING:
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1867
		default:
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1868
			zfs_error_aux(zhp->zfs_hdl, dgettext(TEXT_DOMAIN,
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1869
			    "cannot get non-numeric property"));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1870
			return (zfs_error(zhp->zfs_hdl, EZFS_BADPROP,
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1871
			    dgettext(TEXT_DOMAIN, "internal error")));
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  1872
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1873
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1874
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1875
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1876
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1877
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1878
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1879
 * Calculate the source type, given the raw source string.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1880
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1881
static void
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1882
get_source(zfs_handle_t *zhp, zprop_source_t *srctype, char *source,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1883
    char *statbuf, size_t statlen)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1884
{
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1885
	if (statbuf == NULL || *srctype == ZPROP_SRC_TEMPORARY)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1886
		return;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1887
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1888
	if (source == NULL) {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1889
		*srctype = ZPROP_SRC_NONE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1890
	} else if (source[0] == '\0') {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1891
		*srctype = ZPROP_SRC_DEFAULT;
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1892
	} else if (strstr(source, ZPROP_SOURCE_VAL_RECVD) != NULL) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1893
		*srctype = ZPROP_SRC_RECEIVED;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1894
	} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1895
		if (strcmp(source, zhp->zfs_name) == 0) {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1896
			*srctype = ZPROP_SRC_LOCAL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1897
		} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1898
			(void) strlcpy(statbuf, source, statlen);
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  1899
			*srctype = ZPROP_SRC_INHERITED;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1900
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1901
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1902
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1903
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1904
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1905
int
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1906
zfs_prop_get_recvd(zfs_handle_t *zhp, const char *propname, char *propbuf,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1907
    size_t proplen, boolean_t literal)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1908
{
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1909
	zfs_prop_t prop;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1910
	int err = 0;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1911
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1912
	if (zhp->zfs_recvd_props == NULL)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1913
		if (get_recvd_props_ioctl(zhp) != 0)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1914
			return (-1);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1915
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1916
	prop = zfs_name_to_prop(propname);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1917
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1918
	if (prop != ZPROP_INVAL) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1919
		uint64_t cookie;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1920
		if (!nvlist_exists(zhp->zfs_recvd_props, propname))
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1921
			return (-1);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1922
		zfs_set_recvd_props_mode(zhp, &cookie);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1923
		err = zfs_prop_get(zhp, prop, propbuf, proplen,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1924
		    NULL, NULL, 0, literal);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1925
		zfs_unset_recvd_props_mode(zhp, &cookie);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1926
	} else {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1927
		nvlist_t *propval;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1928
		char *recvdval;
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1929
		if (nvlist_lookup_nvlist(zhp->zfs_recvd_props,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1930
		    propname, &propval) != 0)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1931
			return (-1);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1932
		verify(nvlist_lookup_string(propval, ZPROP_VALUE,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1933
		    &recvdval) == 0);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1934
		(void) strlcpy(propbuf, recvdval, proplen);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1935
	}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1936
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1937
	return (err == 0 ? 0 : -1);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1938
}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  1939
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1940
static int
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1941
get_clones_string(zfs_handle_t *zhp, char *propbuf, size_t proplen)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1942
{
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1943
	nvlist_t *value;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1944
	nvpair_t *pair;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1945
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1946
	value = zfs_get_clones_nvl(zhp);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1947
	if (value == NULL)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1948
		return (-1);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1949
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1950
	propbuf[0] = '\0';
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1951
	for (pair = nvlist_next_nvpair(value, NULL); pair != NULL;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1952
	    pair = nvlist_next_nvpair(value, pair)) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1953
		if (propbuf[0] != '\0')
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1954
			(void) strlcat(propbuf, ",", proplen);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1955
		(void) strlcat(propbuf, nvpair_name(pair), proplen);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1956
	}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1957
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1958
	return (0);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1959
}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1960
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1961
struct get_clones_arg {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1962
	uint64_t numclones;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1963
	nvlist_t *value;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1964
	const char *origin;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1965
	char buf[ZFS_MAXNAMELEN];
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1966
};
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1967
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1968
int
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1969
get_clones_cb(zfs_handle_t *zhp, void *arg)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1970
{
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1971
	struct get_clones_arg *gca = arg;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1972
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1973
	if (gca->numclones == 0) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1974
		zfs_close(zhp);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1975
		return (0);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1976
	}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1977
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1978
	if (zfs_prop_get(zhp, ZFS_PROP_ORIGIN, gca->buf, sizeof (gca->buf),
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1979
	    NULL, NULL, 0, B_TRUE) != 0)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1980
		goto out;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1981
	if (strcmp(gca->buf, gca->origin) == 0) {
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  1982
		fnvlist_add_boolean(gca->value, zfs_get_name(zhp));
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1983
		gca->numclones--;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1984
	}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1985
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1986
out:
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1987
	(void) zfs_iter_children(zhp, get_clones_cb, gca);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1988
	zfs_close(zhp);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1989
	return (0);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1990
}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1991
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1992
nvlist_t *
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1993
zfs_get_clones_nvl(zfs_handle_t *zhp)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1994
{
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1995
	nvlist_t *nv, *value;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1996
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1997
	if (nvlist_lookup_nvlist(zhp->zfs_props,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1998
	    zfs_prop_to_name(ZFS_PROP_CLONES), &nv) != 0) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  1999
		struct get_clones_arg gca;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2000
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2001
		/*
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2002
		 * if this is a snapshot, then the kernel wasn't able
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2003
		 * to get the clones.  Do it by slowly iterating.
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2004
		 */
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2005
		if (zhp->zfs_type != ZFS_TYPE_SNAPSHOT)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2006
			return (NULL);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2007
		if (nvlist_alloc(&nv, NV_UNIQUE_NAME, 0) != 0)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2008
			return (NULL);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2009
		if (nvlist_alloc(&value, NV_UNIQUE_NAME, 0) != 0) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2010
			nvlist_free(nv);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2011
			return (NULL);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2012
		}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2013
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2014
		gca.numclones = zfs_prop_get_int(zhp, ZFS_PROP_NUMCLONES);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2015
		gca.value = value;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2016
		gca.origin = zhp->zfs_name;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2017
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2018
		if (gca.numclones != 0) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2019
			zfs_handle_t *root;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2020
			char pool[ZFS_MAXNAMELEN];
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2021
			char *cp = pool;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2022
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2023
			/* get the pool name */
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2024
			(void) strlcpy(pool, zhp->zfs_name, sizeof (pool));
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2025
			(void) strsep(&cp, "/@");
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2026
			root = zfs_open(zhp->zfs_hdl, pool,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2027
			    ZFS_TYPE_FILESYSTEM);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2028
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2029
			(void) get_clones_cb(root, &gca);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2030
		}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2031
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2032
		if (gca.numclones != 0 ||
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2033
		    nvlist_add_nvlist(nv, ZPROP_VALUE, value) != 0 ||
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2034
		    nvlist_add_nvlist(zhp->zfs_props,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2035
		    zfs_prop_to_name(ZFS_PROP_CLONES), nv) != 0) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2036
			nvlist_free(nv);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2037
			nvlist_free(value);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2038
			return (NULL);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2039
		}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2040
		nvlist_free(nv);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2041
		nvlist_free(value);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2042
		verify(0 == nvlist_lookup_nvlist(zhp->zfs_props,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2043
		    zfs_prop_to_name(ZFS_PROP_CLONES), &nv));
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2044
	}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2045
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2046
	verify(nvlist_lookup_nvlist(nv, ZPROP_VALUE, &value) == 0);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2047
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2048
	return (value);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2049
}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2050
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2051
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2052
 * Retrieve a property from the given object.  If 'literal' is specified, then
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2053
 * numbers are left as exact values.  Otherwise, numbers are converted to a
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2054
 * human-readable form.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2055
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2056
 * Returns 0 on success, or -1 on error.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2057
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2058
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2059
zfs_prop_get(zfs_handle_t *zhp, zfs_prop_t prop, char *propbuf, size_t proplen,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  2060
    zprop_source_t *src, char *statbuf, size_t statlen, boolean_t literal)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2061
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2062
	char *source = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2063
	uint64_t val;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2064
	char *str;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2065
	const char *strval;
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  2066
	boolean_t received = zfs_is_recvd_props_mode(zhp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2067
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2068
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2069
	 * Check to see if this property applies to our object
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2070
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2071
	if (!zfs_prop_valid_for_type(prop, zhp->zfs_type))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2072
		return (-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2073
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  2074
	if (received && zfs_prop_readonly(prop))
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  2075
		return (-1);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  2076
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2077
	if (src)
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  2078
		*src = ZPROP_SRC_NONE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2079
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2080
	switch (prop) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2081
	case ZFS_PROP_CREATION:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2082
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2083
		 * 'creation' is a time_t stored in the statistics.  We convert
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2084
		 * this into a string unless 'literal' is specified.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2085
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2086
		{
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2087
			val = getprop_uint64(zhp, prop, &source);
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2088
			time_t time = (time_t)val;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2089
			struct tm t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2090
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2091
			if (literal ||
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2092
			    localtime_r(&time, &t) == NULL ||
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2093
			    strftime(propbuf, proplen, "%a %b %e %k:%M %Y",
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2094
			    &t) == 0)
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2095
				(void) snprintf(propbuf, proplen, "%llu", val);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2096
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2097
		break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2098
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2099
	case ZFS_PROP_MOUNTPOINT:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2100
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2101
		 * Getting the precise mountpoint can be tricky.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2102
		 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2103
		 *  - for 'none' or 'legacy', return those values.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2104
		 *  - for inherited mountpoints, we want to take everything
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2105
		 *    after our ancestor and append it to the inherited value.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2106
		 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2107
		 * If the pool has an alternate root, we want to prepend that
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2108
		 * root to any values we return.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2109
		 */
6865
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
  2110
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2111
		str = getprop_string(zhp, prop, &source);
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2112
6612
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2113
		if (str[0] == '/') {
6865
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
  2114
			char buf[MAXPATHLEN];
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
  2115
			char *root = buf;
11515
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2116
			const char *relpath;
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2117
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2118
			/*
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2119
			 * If we inherit the mountpoint, even from a dataset
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2120
			 * with a received value, the source will be the path of
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2121
			 * the dataset we inherit from. If source is
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2122
			 * ZPROP_SOURCE_VAL_RECVD, the received value is not
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2123
			 * inherited.
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2124
			 */
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2125
			if (strcmp(source, ZPROP_SOURCE_VAL_RECVD) == 0) {
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2126
				relpath = "";
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2127
			} else {
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2128
				relpath = zhp->zfs_name + strlen(source);
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2129
				if (relpath[0] == '/')
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2130
					relpath++;
a122949107d4 6908211 'zfs inherit -S volsize <volume>' core dumps
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 11497
diff changeset
  2131
			}
6612
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2132
6865
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
  2133
			if ((zpool_get_prop(zhp->zpool_hdl,
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
  2134
			    ZPOOL_PROP_ALTROOT, buf, MAXPATHLEN, NULL)) ||
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
  2135
			    (strcmp(root, "-") == 0))
176d18c623cc 6539380 zfs list uses too much memory
rm160521
parents: 6612
diff changeset
  2136
				root[0] = '\0';
6612
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2137
			/*
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2138
			 * Special case an alternate root of '/'. This will
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2139
			 * avoid having multiple leading slashes in the
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2140
			 * mountpoint path.
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2141
			 */
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2142
			if (strcmp(root, "/") == 0)
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2143
				root++;
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2144
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2145
			/*
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2146
			 * If the mountpoint is '/' then skip over this
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2147
			 * if we are obtaining either an alternate root or
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2148
			 * an inherited mountpoint.
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2149
			 */
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2150
			if (str[1] == '\0' && (root[0] != '\0' ||
bed68cb8aa8c 6668667 mountpoint is displayed incorrectly by zfs list when the mountpoint is "/"
gw25295
parents: 6423
diff changeset
  2151
			    relpath[0] != '\0'))
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2152
				str++;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2153
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2154
			if (relpath[0] == '\0')
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2155
				(void) snprintf(propbuf, proplen, "%s%s",
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2156
				    root, str);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2157
			else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2158
				(void) snprintf(propbuf, proplen, "%s%s%s%s",
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2159
				    root, str, relpath[0] == '@' ? "" : "/",
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2160
				    relpath);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2161
		} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2162
			/* 'legacy' or 'none' */
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2163
			(void) strlcpy(propbuf, str, proplen);
789
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
		break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2167
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2168
	case ZFS_PROP_ORIGIN:
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2856
diff changeset
  2169
		(void) strlcpy(propbuf, getprop_string(zhp, prop, &source),
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2170
		    proplen);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2171
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2172
		 * If there is no parent at all, return failure to indicate that
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2173
		 * it doesn't apply to this dataset.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2174
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2175
		if (propbuf[0] == '\0')
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2176
			return (-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2177
		break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2178
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2179
	case ZFS_PROP_CLONES:
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2180
		if (get_clones_string(zhp, propbuf, proplen) != 0)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2181
			return (-1);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2182
		break;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2183
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2184
	case ZFS_PROP_QUOTA:
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5375
diff changeset
  2185
	case ZFS_PROP_REFQUOTA:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2186
	case ZFS_PROP_RESERVATION:
5378
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5375
diff changeset
  2187
	case ZFS_PROP_REFRESERVATION:
111aa1baa84a PSARC 2007/555 zfs fs-only quotas and reservations
ck153898
parents: 5375
diff changeset
  2188
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2189
		if (get_numeric_property(zhp, prop, src, &source, &val) != 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2190
			return (-1);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2191
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2192
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2193
		 * If quota or reservation is 0, we translate this into 'none'
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2194
		 * (unless literal is set), and indicate that it's the default
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2195
		 * value.  Otherwise, we print the number nicely and indicate
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2196
		 * that its set locally.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2197
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2198
		if (val == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2199
			if (literal)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2200
				(void) strlcpy(propbuf, "0", proplen);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2201
			else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2202
				(void) strlcpy(propbuf, "none", proplen);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2203
		} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2204
			if (literal)
2856
6f4d5ee1906a 6463348 ZFS code could be more portable
nd150628
parents: 2744
diff changeset
  2205
				(void) snprintf(propbuf, proplen, "%llu",
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  2206
				    (u_longlong_t)val);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2207
			else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2208
				zfs_nicenum(val, propbuf, proplen);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2209
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2210
		break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2211
13387
7dd5626b8b49 1092 zfs refratio property
Matt Ahrens <Matt.Ahrens@delphix.com>
parents: 13246
diff changeset
  2212
	case ZFS_PROP_REFRATIO:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2213
	case ZFS_PROP_COMPRESSRATIO:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2214
		if (get_numeric_property(zhp, prop, src, &source, &val) != 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2215
			return (-1);
10922
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10588
diff changeset
  2216
		(void) snprintf(propbuf, proplen, "%llu.%02llux",
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10588
diff changeset
  2217
		    (u_longlong_t)(val / 100),
e2081f502306 PSARC 2009/571 ZFS Deduplication Properties
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 10588
diff changeset
  2218
		    (u_longlong_t)(val % 100));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2219
		break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2220
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2221
	case ZFS_PROP_TYPE:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2222
		switch (zhp->zfs_type) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2223
		case ZFS_TYPE_FILESYSTEM:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2224
			str = "filesystem";
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2225
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2226
		case ZFS_TYPE_VOLUME:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2227
			str = "volume";
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2228
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2229
		case ZFS_TYPE_SNAPSHOT:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2230
			str = "snapshot";
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2231
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2232
		default:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2233
			abort();
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2234
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2235
		(void) snprintf(propbuf, proplen, "%s", str);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2236
		break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2237
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2238
	case ZFS_PROP_MOUNTED:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2239
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2240
		 * The 'mounted' property is a pseudo-property that described
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2241
		 * whether the filesystem is currently mounted.  Even though
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2242
		 * it's a boolean value, the typical values of "on" and "off"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2243
		 * don't make sense, so we translate to "yes" and "no".
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2244
		 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2245
		if (get_numeric_property(zhp, ZFS_PROP_MOUNTED,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2246
		    src, &source, &val) != 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2247
			return (-1);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2248
		if (val)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2249
			(void) strlcpy(propbuf, "yes", proplen);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2250
		else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2251
			(void) strlcpy(propbuf, "no", proplen);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2252
		break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2253
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2254
	case ZFS_PROP_NAME:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2255
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2256
		 * The 'name' property is a pseudo-property derived from the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2257
		 * dataset name.  It is presented as a real property to simplify
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2258
		 * consumers.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2259
		 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2260
		(void) strlcpy(propbuf, zhp->zfs_name, proplen);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2261
		break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2262
10972
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2263
	case ZFS_PROP_MLSLABEL:
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2264
		{
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2265
			m_label_t *new_sl = NULL;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2266
			char *ascii = NULL;	/* human readable label */
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2267
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2268
			(void) strlcpy(propbuf,
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2269
			    getprop_string(zhp, prop, &source), proplen);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2270
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2271
			if (literal || (strcasecmp(propbuf,
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2272
			    ZFS_MLSLABEL_DEFAULT) == 0))
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2273
				break;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2274
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2275
			/*
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2276
			 * Try to translate the internal hex string to
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2277
			 * human-readable output.  If there are any
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2278
			 * problems just use the hex string.
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2279
			 */
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2280
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2281
			if (str_to_label(propbuf, &new_sl, MAC_LABEL,
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2282
			    L_NO_CORRECTION, NULL) == -1) {
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2283
				m_label_free(new_sl);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2284
				break;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2285
			}
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2286
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2287
			if (label_to_str(new_sl, &ascii, M_LABEL,
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2288
			    DEF_NAMES) != 0) {
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2289
				if (ascii)
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2290
					free(ascii);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2291
				m_label_free(new_sl);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2292
				break;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2293
			}
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2294
			m_label_free(new_sl);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2295
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2296
			(void) strlcpy(propbuf, ascii, proplen);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2297
			free(ascii);
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2298
		}
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2299
		break;
807794d41b3a PSARC 2009/348 Security Labels for ZFS
Ric Aleshire <Ric.Aleshire@Sun.COM>
parents: 10969
diff changeset
  2300
13765
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2301
	case ZFS_PROP_GUID:
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2302
		/*
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2303
		 * GUIDs are stored as numbers, but they are identifiers.
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2304
		 * We don't want them to be pretty printed, because pretty
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2305
		 * printing mangles the ID into a truncated and useless value.
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2306
		 */
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2307
		if (get_numeric_property(zhp, prop, src, &source, &val) != 0)
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2308
			return (-1);
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2309
		(void) snprintf(propbuf, proplen, "%llu", (u_longlong_t)val);
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2310
		break;
351036203e4b 2803 zfs get guid pretty-prints the output
Garrett D'Amore <garrett@damore.org>
parents: 13727
diff changeset
  2311
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2312
	default:
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2313
		switch (zfs_prop_get_type(prop)) {
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4778
diff changeset
  2314
		case PROP_TYPE_NUMBER:
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2315
			if (get_numeric_property(zhp, prop, src,
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2316
			    &source, &val) != 0)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2317
				return (-1);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2318
			if (literal)
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2319
				(void) snprintf(propbuf, proplen, "%llu",
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2320
				    (u_longlong_t)val);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2321
			else
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2322
				zfs_nicenum(val, propbuf, proplen);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2323
			break;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2324
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4778
diff changeset
  2325
		case PROP_TYPE_STRING:
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2326
			(void) strlcpy(propbuf,
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2327
			    getprop_string(zhp, prop, &source), proplen);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2328
			break;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2329
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4778
diff changeset
  2330
		case PROP_TYPE_INDEX:
4861
fa5be10d6612 6592018 "zfs get" does not display temporary property
ahrens
parents: 4849
diff changeset
  2331
			if (get_numeric_property(zhp, prop, src,
fa5be10d6612 6592018 "zfs get" does not display temporary property
ahrens
parents: 4849
diff changeset
  2332
			    &source, &val) != 0)
fa5be10d6612 6592018 "zfs get" does not display temporary property
ahrens
parents: 4849
diff changeset
  2333
				return (-1);
fa5be10d6612 6592018 "zfs get" does not display temporary property
ahrens
parents: 4849
diff changeset
  2334
			if (zfs_prop_index_to_string(prop, val, &strval) != 0)
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2335
				return (-1);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2336
			(void) strlcpy(propbuf, strval, proplen);
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2337
			break;
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2338
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2339
		default:
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2340
			abort();
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 4543
diff changeset
  2341
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2342
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2343
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2344
	get_source(zhp, src, source, statbuf, statlen);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2345
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2346
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2347
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2348
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2349
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2350
 * Utility function to get the given numeric property.  Does no validation that
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2351
 * the given property is the appropriate type; should only be used with
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2352
 * hard-coded property types.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2353
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2354
uint64_t
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2355
zfs_prop_get_int(zfs_handle_t *zhp, zfs_prop_t prop)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2356
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2357
	char *source;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2358
	uint64_t val;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2359
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2360
	(void) get_numeric_property(zhp, prop, NULL, &source, &val);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2361
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2362
	return (val);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2363
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2364
5713
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  2365
int
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  2366
zfs_prop_set_int(zfs_handle_t *zhp, zfs_prop_t prop, uint64_t val)
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  2367
{
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  2368
	char buf[64];
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  2369
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2370
	(void) snprintf(buf, sizeof (buf), "%llu", (longlong_t)val);
5713
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  2371
	return (zfs_prop_set(zhp, zfs_prop_to_name(prop), buf));
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  2372
}
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  2373
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2374
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2375
 * Similar to zfs_prop_get(), but returns the value as an integer.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2376
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2377
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2378
zfs_prop_get_numeric(zfs_handle_t *zhp, zfs_prop_t prop, uint64_t *value,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  2379
    zprop_source_t *src, char *statbuf, size_t statlen)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2380
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2381
	char *source;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2382
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2383
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2384
	 * Check to see if this property applies to our object
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2385
	 */
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4801
diff changeset
  2386
	if (!zfs_prop_valid_for_type(prop, zhp->zfs_type)) {
3237
98d0c28f2f5e 6480245 renaming a dataset to something with '%s' will cause segfault
lling
parents: 3234
diff changeset
  2387
		return (zfs_error_fmt(zhp->zfs_hdl, EZFS_PROPTYPE,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2388
		    dgettext(TEXT_DOMAIN, "cannot get property '%s'"),
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2389
		    zfs_prop_to_name(prop)));
4849
3a61e0a9a953 6536043 arc_byteswap_func_t and dmu_byteswap_func_t are redundant
ahrens
parents: 4801
diff changeset
  2390
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2391
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2392
	if (src)
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  2393
		*src = ZPROP_SRC_NONE;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2394
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2395
	if (get_numeric_property(zhp, prop, src, &source, value) != 0)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2396
		return (-1);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2397
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2398
	get_source(zhp, src, source, statbuf, statlen);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2399
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2400
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2401
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2402
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2403
static int
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2404
idmap_id_to_numeric_domain_rid(uid_t id, boolean_t isuser,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2405
    char **domainp, idmap_rid_t *ridp)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2406
{
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2407
	idmap_get_handle_t *get_hdl = NULL;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2408
	idmap_stat status;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2409
	int err = EINVAL;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2410
12926
e95332bf1454 6779186 need domain controller hot failover
joyce mcintosh <Joyce.McIntosh@Sun.COM>
parents: 12798
diff changeset
  2411
	if (idmap_get_create(&get_hdl) != IDMAP_SUCCESS)
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2412
		goto out;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2413
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2414
	if (isuser) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2415
		err = idmap_get_sidbyuid(get_hdl, id,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2416
		    IDMAP_REQ_FLG_USE_CACHE, domainp, ridp, &status);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2417
	} else {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2418
		err = idmap_get_sidbygid(get_hdl, id,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2419
		    IDMAP_REQ_FLG_USE_CACHE, domainp, ridp, &status);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2420
	}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2421
	if (err == IDMAP_SUCCESS &&
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2422
	    idmap_get_mappings(get_hdl) == IDMAP_SUCCESS &&
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2423
	    status == IDMAP_SUCCESS)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2424
		err = 0;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2425
	else
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2426
		err = EINVAL;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2427
out:
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2428
	if (get_hdl)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2429
		idmap_get_destroy(get_hdl);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2430
	return (err);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2431
}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2432
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2433
/*
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2434
 * convert the propname into parameters needed by kernel
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2435
 * Eg: userquota@ahrens -> ZFS_PROP_USERQUOTA, "", 126829
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2436
 * Eg: userused@matt@domain -> ZFS_PROP_USERUSED, "S-1-123-456", 789
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2437
 */
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2438
static int
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2439
userquota_propname_decode(const char *propname, boolean_t zoned,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2440
    zfs_userquota_prop_t *typep, char *domain, int domainlen, uint64_t *ridp)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2441
{
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2442
	zfs_userquota_prop_t type;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2443
	char *cp, *end;
10160
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2444
	char *numericsid = NULL;
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2445
	boolean_t isuser;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2446
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2447
	domain[0] = '\0';
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2448
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2449
	/* Figure out the property type ({user|group}{quota|space}) */
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2450
	for (type = 0; type < ZFS_NUM_USERQUOTA_PROPS; type++) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2451
		if (strncmp(propname, zfs_userquota_prop_prefixes[type],
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2452
		    strlen(zfs_userquota_prop_prefixes[type])) == 0)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2453
			break;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2454
	}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2455
	if (type == ZFS_NUM_USERQUOTA_PROPS)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2456
		return (EINVAL);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2457
	*typep = type;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2458
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2459
	isuser = (type == ZFS_PROP_USERQUOTA ||
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2460
	    type == ZFS_PROP_USERUSED);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2461
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2462
	cp = strchr(propname, '@') + 1;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2463
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2464
	if (strchr(cp, '@')) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2465
		/*
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2466
		 * It's a SID name (eg "user@domain") that needs to be
10160
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2467
		 * turned into S-1-domainID-RID.
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2468
		 */
10160
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2469
		directory_error_t e;
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2470
		if (zoned && getzoneid() == GLOBAL_ZONEID)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2471
			return (ENOENT);
10160
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2472
		if (isuser) {
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2473
			e = directory_sid_from_user_name(NULL,
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2474
			    cp, &numericsid);
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2475
		} else {
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2476
			e = directory_sid_from_group_name(NULL,
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2477
			    cp, &numericsid);
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2478
		}
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2479
		if (e != NULL) {
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2480
			directory_error_free(e);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2481
			return (ENOENT);
10160
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2482
		}
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2483
		if (numericsid == NULL)
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2484
			return (ENOENT);
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2485
		cp = numericsid;
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2486
		/* will be further decoded below */
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2487
	}
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2488
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2489
	if (strncmp(cp, "S-1-", 4) == 0) {
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2490
		/* It's a numeric SID (eg "S-1-234-567-89") */
10160
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2491
		(void) strlcpy(domain, cp, domainlen);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2492
		cp = strrchr(domain, '-');
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2493
		*cp = '\0';
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2494
		cp++;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2495
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2496
		errno = 0;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2497
		*ridp = strtoull(cp, &end, 10);
10160
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2498
		if (numericsid) {
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2499
			free(numericsid);
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2500
			numericsid = NULL;
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2501
		}
9688
127be1845343 6841321 zfs userspace / zfs get userused@ doesn't work on mounted snapshot
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9554
diff changeset
  2502
		if (errno != 0 || *end != '\0')
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2503
			return (EINVAL);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2504
	} else if (!isdigit(*cp)) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2505
		/*
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2506
		 * It's a user/group name (eg "user") that needs to be
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2507
		 * turned into a uid/gid
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2508
		 */
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2509
		if (zoned && getzoneid() == GLOBAL_ZONEID)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2510
			return (ENOENT);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2511
		if (isuser) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2512
			struct passwd *pw;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2513
			pw = getpwnam(cp);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2514
			if (pw == NULL)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2515
				return (ENOENT);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2516
			*ridp = pw->pw_uid;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2517
		} else {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2518
			struct group *gr;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2519
			gr = getgrnam(cp);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2520
			if (gr == NULL)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2521
				return (ENOENT);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2522
			*ridp = gr->gr_gid;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2523
		}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2524
	} else {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2525
		/* It's a user/group ID (eg "12345"). */
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2526
		uid_t id = strtoul(cp, &end, 10);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2527
		idmap_rid_t rid;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2528
		char *mapdomain;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2529
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2530
		if (*end != '\0')
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2531
			return (EINVAL);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2532
		if (id > MAXUID) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2533
			/* It's an ephemeral ID. */
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2534
			if (idmap_id_to_numeric_domain_rid(id, isuser,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2535
			    &mapdomain, &rid) != 0)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2536
				return (ENOENT);
10160
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2537
			(void) strlcpy(domain, mapdomain, domainlen);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2538
			*ridp = rid;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2539
		} else {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2540
			*ridp = id;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2541
		}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2542
	}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2543
10160
a45b03783d44 6861983 zfs should use new name <-> SID interfaces
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 9688
diff changeset
  2544
	ASSERT3P(numericsid, ==, NULL);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2545
	return (0);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2546
}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2547
9469
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2548
static int
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2549
zfs_prop_get_userquota_common(zfs_handle_t *zhp, const char *propname,
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2550
    uint64_t *propvalue, zfs_userquota_prop_t *typep)
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2551
{
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2552
	int err;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2553
	zfs_cmd_t zc = { 0 };
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2554
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2555
	(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2556
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2557
	err = userquota_propname_decode(propname,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2558
	    zfs_prop_get_int(zhp, ZFS_PROP_ZONED),
9469
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2559
	    typep, zc.zc_value, sizeof (zc.zc_value), &zc.zc_guid);
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2560
	zc.zc_objset_type = *typep;
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2561
	if (err)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2562
		return (err);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2563
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2564
	err = ioctl(zhp->zfs_hdl->libzfs_fd, ZFS_IOC_USERSPACE_ONE, &zc);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2565
	if (err)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2566
		return (err);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2567
9469
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2568
	*propvalue = zc.zc_cookie;
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2569
	return (0);
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2570
}
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2571
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2572
int
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2573
zfs_prop_get_userquota_int(zfs_handle_t *zhp, const char *propname,
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2574
    uint64_t *propvalue)
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2575
{
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2576
	zfs_userquota_prop_t type;
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2577
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2578
	return (zfs_prop_get_userquota_common(zhp, propname, propvalue,
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2579
	    &type));
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2580
}
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2581
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2582
int
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2583
zfs_prop_get_userquota(zfs_handle_t *zhp, const char *propname,
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2584
    char *propbuf, int proplen, boolean_t literal)
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2585
{
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2586
	int err;
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2587
	uint64_t propvalue;
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2588
	zfs_userquota_prop_t type;
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2589
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2590
	err = zfs_prop_get_userquota_common(zhp, propname, &propvalue,
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2591
	    &type);
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2592
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2593
	if (err)
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2594
		return (err);
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2595
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2596
	if (literal) {
9469
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2597
		(void) snprintf(propbuf, proplen, "%llu", propvalue);
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2598
	} else if (propvalue == 0 &&
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2599
	    (type == ZFS_PROP_USERQUOTA || type == ZFS_PROP_GROUPQUOTA)) {
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2600
		(void) strlcpy(propbuf, "none", proplen);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2601
	} else {
9469
4f68f041ddcd 6824968 add ZFS userquota support to rquotad
Lin Ling <Lin.Ling@Sun.COM>
parents: 9396
diff changeset
  2602
		zfs_nicenum(propvalue, propbuf, proplen);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2603
	}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2604
	return (0);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2605
}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  2606
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2607
int
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2608
zfs_prop_get_written_int(zfs_handle_t *zhp, const char *propname,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2609
    uint64_t *propvalue)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2610
{
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2611
	int err;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2612
	zfs_cmd_t zc = { 0 };
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2613
	const char *snapname;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2614
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2615
	(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2616
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2617
	snapname = strchr(propname, '@') + 1;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2618
	if (strchr(snapname, '@')) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2619
		(void) strlcpy(zc.zc_value, snapname, sizeof (zc.zc_value));
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2620
	} else {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2621
		/* snapname is the short name, append it to zhp's fsname */
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2622
		char *cp;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2623
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2624
		(void) strlcpy(zc.zc_value, zhp->zfs_name,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2625
		    sizeof (zc.zc_value));
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2626
		cp = strchr(zc.zc_value, '@');
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2627
		if (cp != NULL)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2628
			*cp = '\0';
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2629
		(void) strlcat(zc.zc_value, "@", sizeof (zc.zc_value));
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2630
		(void) strlcat(zc.zc_value, snapname, sizeof (zc.zc_value));
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2631
	}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2632
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2633
	err = ioctl(zhp->zfs_hdl->libzfs_fd, ZFS_IOC_SPACE_WRITTEN, &zc);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2634
	if (err)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2635
		return (err);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2636
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2637
	*propvalue = zc.zc_cookie;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2638
	return (0);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2639
}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2640
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2641
int
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2642
zfs_prop_get_written(zfs_handle_t *zhp, const char *propname,
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2643
    char *propbuf, int proplen, boolean_t literal)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2644
{
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2645
	int err;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2646
	uint64_t propvalue;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2647
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2648
	err = zfs_prop_get_written_int(zhp, propname, &propvalue);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2649
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2650
	if (err)
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2651
		return (err);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2652
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2653
	if (literal) {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2654
		(void) snprintf(propbuf, proplen, "%llu", propvalue);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2655
	} else {
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2656
		zfs_nicenum(propvalue, propbuf, proplen);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2657
	}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2658
	return (0);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2659
}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2660
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2661
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2662
 * Returns the name of the given zfs handle.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2663
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2664
const char *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2665
zfs_get_name(const zfs_handle_t *zhp)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2666
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2667
	return (zhp->zfs_name);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2668
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2669
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2670
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2671
 * Returns the type of the given zfs handle.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2672
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2673
zfs_type_t
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2674
zfs_get_type(const zfs_handle_t *zhp)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2675
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2676
	return (zhp->zfs_type);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2677
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2678
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2679
/*
11497
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2680
 * Is one dataset name a child dataset of another?
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2681
 *
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2682
 * Needs to handle these cases:
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2683
 * Dataset 1	"a/foo"		"a/foo"		"a/foo"		"a/foo"
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2684
 * Dataset 2	"a/fo"		"a/foobar"	"a/bar/baz"	"a/foo/bar"
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2685
 * Descendant?	No.		No.		No.		Yes.
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2686
 */
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2687
static boolean_t
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2688
is_descendant(const char *ds1, const char *ds2)
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2689
{
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2690
	size_t d1len = strlen(ds1);
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2691
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2692
	/* ds2 can't be a descendant if it's smaller */
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2693
	if (strlen(ds2) < d1len)
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2694
		return (B_FALSE);
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2695
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2696
	/* otherwise, compare strings and verify that there's a '/' char */
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2697
	return (ds2[d1len] == '/' && (strncmp(ds1, ds2, d1len) == 0));
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2698
}
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2699
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2700
/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2701
 * Given a complete name, return just the portion that refers to the parent.
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2702
 * Will return -1 if there is no parent (path is just the name of the
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2703
 * pool).
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2704
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2705
static int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2706
parent_name(const char *path, char *buf, size_t buflen)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2707
{
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2708
	char *slashp;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2709
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2710
	(void) strlcpy(buf, path, buflen);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2711
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2712
	if ((slashp = strrchr(buf, '/')) == NULL)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2713
		return (-1);
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  2714
	*slashp = '\0';
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2715
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2716
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2717
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2718
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2719
/*
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2720
 * If accept_ancestor is false, then check to make sure that the given path has
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2721
 * a parent, and that it exists.  If accept_ancestor is true, then find the
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2722
 * closest existing ancestor for the given path.  In prefixlen return the
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2723
 * length of already existing prefix of the given path.  We also fetch the
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2724
 * 'zoned' property, which is used to validate property settings when creating
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2725
 * new datasets.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2726
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2727
static int
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2728
check_parents(libzfs_handle_t *hdl, const char *path, uint64_t *zoned,
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2729
    boolean_t accept_ancestor, int *prefixlen)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2730
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2731
	zfs_cmd_t zc = { 0 };
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2732
	char parent[ZFS_MAXNAMELEN];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2733
	char *slash;
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2734
	zfs_handle_t *zhp;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2735
	char errbuf[1024];
11497
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2736
	uint64_t is_zoned;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2737
8269
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8228
diff changeset
  2738
	(void) snprintf(errbuf, sizeof (errbuf),
03a7e9050cfd 6674216 "zfs share" doesn't work, but "zfs set sharenfs=on" does
Mark J Musante <Mark.Musante@Sun.COM>
parents: 8228
diff changeset
  2739
	    dgettext(TEXT_DOMAIN, "cannot create '%s'"), path);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2740
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2741
	/* get parent, and check to see if this is just a pool */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2742
	if (parent_name(path, parent, sizeof (parent)) != 0) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2743
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2744
		    "missing dataset name"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2745
		return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2746
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2747
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2748
	/* check to see if the pool exists */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2749
	if ((slash = strchr(parent, '/')) == NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2750
		slash = parent + strlen(parent);
13540
060607df0c9d backout 1644/1645/1646/1647/1708: Breaks 'zfs snapshot', boot environments
Richard Lowe <richlowe@richlowe.net>
parents: 13537
diff changeset
  2751
	(void) strncpy(zc.zc_name, parent, slash - parent);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2752
	zc.zc_name[slash - parent] = '\0';
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2753
	if (ioctl(hdl->libzfs_fd, ZFS_IOC_OBJSET_STATS, &zc) != 0 &&
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2754
	    errno == ENOENT) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2755
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2756
		    "no such pool '%s'"), zc.zc_name);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2757
		return (zfs_error(hdl, EZFS_NOENT, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2758
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2759
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2760
	/* check to see if the parent dataset exists */
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2761
	while ((zhp = make_dataset_handle(hdl, parent)) == NULL) {
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2762
		if (errno == ENOENT && accept_ancestor) {
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2763
			/*
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2764
			 * Go deeper to find an ancestor, give up on top level.
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2765
			 */
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2766
			if (parent_name(parent, parent, sizeof (parent)) != 0) {
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2767
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2768
				    "no such pool '%s'"), zc.zc_name);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2769
				return (zfs_error(hdl, EZFS_NOENT, errbuf));
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2770
			}
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2771
		} else if (errno == ENOENT) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2772
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2773
			    "parent does not exist"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2774
			return (zfs_error(hdl, EZFS_NOENT, errbuf));
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2775
		} else
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2776
			return (zfs_standard_error(hdl, errno, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2777
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2778
11497
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2779
	is_zoned = zfs_prop_get_int(zhp, ZFS_PROP_ZONED);
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2780
	if (zoned != NULL)
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2781
		*zoned = is_zoned;
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2782
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2783
	/* we are in a non-global zone, but parent is in the global zone */
11497
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2784
	if (getzoneid() != GLOBAL_ZONEID && !is_zoned) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2785
		(void) zfs_standard_error(hdl, EPERM, errbuf);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2786
		zfs_close(zhp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2787
		return (-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2788
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2790
	/* make sure parent is a filesystem */
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2791
	if (zfs_get_type(zhp) != ZFS_TYPE_FILESYSTEM) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2792
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2793
		    "parent is not a filesystem"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2794
		(void) zfs_error(hdl, EZFS_BADTYPE, errbuf);
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2795
		zfs_close(zhp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2796
		return (-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2797
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2798
1356
e021b5e4aa0e 6377671 zfs mount -a shouldn't bother checking snapshots
eschrock
parents: 1294
diff changeset
  2799
	zfs_close(zhp);
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2800
	if (prefixlen != NULL)
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2801
		*prefixlen = strlen(parent);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2802
	return (0);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2803
}
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2804
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2805
/*
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2806
 * Finds whether the dataset of the given type(s) exists.
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2807
 */
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2808
boolean_t
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2809
zfs_dataset_exists(libzfs_handle_t *hdl, const char *path, zfs_type_t types)
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2810
{
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2811
	zfs_handle_t *zhp;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2812
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
  2813
	if (!zfs_validate_name(hdl, path, types, B_FALSE))
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2814
		return (B_FALSE);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2815
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2816
	/*
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2817
	 * Try to get stats for the dataset, which will tell us if it exists.
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2818
	 */
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2819
	if ((zhp = make_dataset_handle(hdl, path)) != NULL) {
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2820
		int ds_type = zhp->zfs_type;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2821
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2822
		zfs_close(zhp);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2823
		if (types & ds_type)
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2824
			return (B_TRUE);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2825
	}
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2826
	return (B_FALSE);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2827
}
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2828
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2829
/*
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2830
 * Given a path to 'target', create all the ancestors between
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2831
 * the prefixlen portion of the path, and the target itself.
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2832
 * Fail if the initial prefixlen-ancestor does not already exist.
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2833
 */
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2834
int
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2835
create_parents(libzfs_handle_t *hdl, char *target, int prefixlen)
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2836
{
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2837
	zfs_handle_t *h;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2838
	char *cp;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2839
	const char *opname;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2840
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2841
	/* make sure prefix exists */
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2842
	cp = target + prefixlen;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2843
	if (*cp != '/') {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2844
		assert(strchr(cp, '/') == NULL);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2845
		h = zfs_open(hdl, target, ZFS_TYPE_FILESYSTEM);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2846
	} else {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2847
		*cp = '\0';
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2848
		h = zfs_open(hdl, target, ZFS_TYPE_FILESYSTEM);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2849
		*cp = '/';
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2850
	}
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2851
	if (h == NULL)
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2852
		return (-1);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2853
	zfs_close(h);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2854
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2855
	/*
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2856
	 * Attempt to create, mount, and share any ancestor filesystems,
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2857
	 * up to the prefixlen-long one.
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2858
	 */
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2859
	for (cp = target + prefixlen + 1;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2860
	    cp = strchr(cp, '/'); *cp = '/', cp++) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2861
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2862
		*cp = '\0';
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2863
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2864
		h = make_dataset_handle(hdl, target);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2865
		if (h) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2866
			/* it already exists, nothing to do here */
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2867
			zfs_close(h);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2868
			continue;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2869
		}
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2870
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2871
		if (zfs_create(hdl, target, ZFS_TYPE_FILESYSTEM,
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2872
		    NULL) != 0) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2873
			opname = dgettext(TEXT_DOMAIN, "create");
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2874
			goto ancestorerr;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2875
		}
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2876
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2877
		h = zfs_open(hdl, target, ZFS_TYPE_FILESYSTEM);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2878
		if (h == NULL) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2879
			opname = dgettext(TEXT_DOMAIN, "open");
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2880
			goto ancestorerr;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2881
		}
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2882
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2883
		if (zfs_mount(h, NULL, 0) != 0) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2884
			opname = dgettext(TEXT_DOMAIN, "mount");
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2885
			goto ancestorerr;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2886
		}
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2887
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2888
		if (zfs_share(h) != 0) {
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2889
			opname = dgettext(TEXT_DOMAIN, "share");
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2890
			goto ancestorerr;
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2891
		}
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2892
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2893
		zfs_close(h);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2894
	}
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2895
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2896
	return (0);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2897
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2898
ancestorerr:
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2899
	zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2900
	    "failed to %s ancestor '%s'"), opname, target);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2901
	return (-1);
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2902
}
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2903
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  2904
/*
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2905
 * Creates non-existing ancestors of the given path.
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2906
 */
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2907
int
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2908
zfs_create_ancestors(libzfs_handle_t *hdl, const char *path)
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2909
{
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2910
	int prefix;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2911
	char *path_copy;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2912
	int rc;
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2913
11497
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  2914
	if (check_parents(hdl, path, NULL, B_TRUE, &prefix) != 0)
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2915
		return (-1);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2916
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2917
	if ((path_copy = strdup(path)) != NULL) {
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2918
		rc = create_parents(hdl, path_copy, prefix);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2919
		free(path_copy);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2920
	}
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2921
	if (path_copy == NULL || rc != 0)
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2922
		return (-1);
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2923
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2924
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2925
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2926
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2927
/*
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2928
 * Create a new filesystem or volume.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2929
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2930
int
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2931
zfs_create(libzfs_handle_t *hdl, const char *path, zfs_type_t type,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2932
    nvlist_t *props)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2933
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2934
	int ret;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2935
	uint64_t size = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2936
	uint64_t blocksize = zfs_prop_default_numeric(ZFS_PROP_VOLBLOCKSIZE);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2937
	char errbuf[1024];
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2938
	uint64_t zoned;
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  2939
	dmu_objset_type_t ost;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2940
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2941
	(void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2942
	    "cannot create '%s'"), path);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2943
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2944
	/* validate the path, taking care to note the extended error message */
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
  2945
	if (!zfs_validate_name(hdl, path, type, B_TRUE))
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2946
		return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2947
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2948
	/* validate parents exist */
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  2949
	if (check_parents(hdl, path, &zoned, B_FALSE, NULL) != 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2950
		return (-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2951
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2952
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2953
	 * The failure modes when creating a dataset of a different type over
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2954
	 * one that already exists is a little strange.  In particular, if you
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2955
	 * try to create a dataset on top of an existing dataset, the ioctl()
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2956
	 * will return ENOENT, not EEXIST.  To prevent this from happening, we
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2957
	 * first try to see if the dataset exists.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2958
	 */
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  2959
	if (zfs_dataset_exists(hdl, path, ZFS_TYPE_DATASET)) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2960
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2961
		    "dataset already exists"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2962
		return (zfs_error(hdl, EZFS_EXISTS, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2963
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2964
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2965
	if (type == ZFS_TYPE_VOLUME)
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  2966
		ost = DMU_OST_ZVOL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2967
	else
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  2968
		ost = DMU_OST_ZFS;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2969
7184
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7042
diff changeset
  2970
	if (props && (props = zfs_valid_proplist(hdl, type, props,
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  2971
	    zoned, NULL, errbuf)) == 0)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2972
		return (-1);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2973
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2974
	if (type == ZFS_TYPE_VOLUME) {
1133
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  2975
		/*
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  2976
		 * If we are creating a volume, the size and block size must
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  2977
		 * satisfy a few restraints.  First, the blocksize must be a
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  2978
		 * valid block size between SPA_{MIN,MAX}BLOCKSIZE.  Second, the
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  2979
		 * volsize must be a multiple of the block size, and cannot be
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  2980
		 * zero.
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  2981
		 */
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2982
		if (props == NULL || nvlist_lookup_uint64(props,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2983
		    zfs_prop_to_name(ZFS_PROP_VOLSIZE), &size) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2984
			nvlist_free(props);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  2985
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2986
			    "missing volume size"));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2987
			return (zfs_error(hdl, EZFS_BADPROP, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2988
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  2989
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2990
		if ((ret = nvlist_lookup_uint64(props,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2991
		    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE),
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2992
		    &blocksize)) != 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2993
			if (ret == ENOENT) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2994
				blocksize = zfs_prop_default_numeric(
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2995
				    ZFS_PROP_VOLBLOCKSIZE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2996
			} else {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2997
				nvlist_free(props);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2998
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  2999
				    "missing volume block size"));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3000
				return (zfs_error(hdl, EZFS_BADPROP, errbuf));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3001
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3002
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3003
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3004
		if (size == 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3005
			nvlist_free(props);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3006
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3007
			    "volume size cannot be zero"));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3008
			return (zfs_error(hdl, EZFS_BADPROP, errbuf));
1133
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  3009
		}
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  3010
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  3011
		if (size % blocksize != 0) {
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3012
			nvlist_free(props);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3013
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3014
			    "volume size must be a multiple of volume block "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3015
			    "size"));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3016
			return (zfs_error(hdl, EZFS_BADPROP, errbuf));
1133
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 1003
diff changeset
  3017
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3018
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3019
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3020
	/* create the dataset */
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3021
	ret = lzc_create(path, ost, props);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3022
	nvlist_free(props);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3023
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3024
	/* check for failure */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3025
	if (ret != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3026
		char parent[ZFS_MAXNAMELEN];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3027
		(void) parent_name(path, parent, sizeof (parent));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3028
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3029
		switch (errno) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3030
		case ENOENT:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3031
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3032
			    "no such parent '%s'"), parent);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3033
			return (zfs_error(hdl, EZFS_NOENT, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3034
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3035
		case EINVAL:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3036
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
3413
f4cbe0204ab7 6471255 Some ZFS error messages contain spelling errors
mmusante
parents: 3377
diff changeset
  3037
			    "parent '%s' is not a filesystem"), parent);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3038
			return (zfs_error(hdl, EZFS_BADTYPE, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3039
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3040
		case EDOM:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3041
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3042
			    "volume block size must be power of 2 from "
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3043
			    "%u to %uk"),
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3044
			    (uint_t)SPA_MINBLOCKSIZE,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3045
			    (uint_t)SPA_MAXBLOCKSIZE >> 10);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3046
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3047
			return (zfs_error(hdl, EZFS_BADPROP, errbuf));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3048
4603
c7840c367d00 6494569 zfs recv -d pool/<doesn't exist> core dumps for top-level filesystem backups
ahrens
parents: 4597
diff changeset
  3049
		case ENOTSUP:
c7840c367d00 6494569 zfs recv -d pool/<doesn't exist> core dumps for top-level filesystem backups
ahrens
parents: 4597
diff changeset
  3050
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
c7840c367d00 6494569 zfs recv -d pool/<doesn't exist> core dumps for top-level filesystem backups
ahrens
parents: 4597
diff changeset
  3051
			    "pool must be upgraded to set this "
c7840c367d00 6494569 zfs recv -d pool/<doesn't exist> core dumps for top-level filesystem backups
ahrens
parents: 4597
diff changeset
  3052
			    "property or value"));
c7840c367d00 6494569 zfs recv -d pool/<doesn't exist> core dumps for top-level filesystem backups
ahrens
parents: 4597
diff changeset
  3053
			return (zfs_error(hdl, EZFS_BADVERSION, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3054
#ifdef _ILP32
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3055
		case EOVERFLOW:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3056
			/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3057
			 * This platform can't address a volume this big.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3058
			 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3059
			if (type == ZFS_TYPE_VOLUME)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3060
				return (zfs_error(hdl, EZFS_VOLTOOBIG,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3061
				    errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3062
#endif
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3063
			/* FALLTHROUGH */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3064
		default:
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3065
			return (zfs_standard_error(hdl, errno, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3066
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3067
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3068
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3069
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3070
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3071
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3072
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3073
 * Destroys the given dataset.  The caller must make sure that the filesystem
13803
df4cd82e2b60 1796 "ZFS HOLD" should not be used when doing "ZFS SEND" from a read-only pool
Christopher Siden <chris.siden@delphix.com>
parents: 13797
diff changeset
  3074
 * isn't mounted, and that there are no active dependents. If the file system
df4cd82e2b60 1796 "ZFS HOLD" should not be used when doing "ZFS SEND" from a read-only pool
Christopher Siden <chris.siden@delphix.com>
parents: 13797
diff changeset
  3075
 * does not exist this function does nothing.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3076
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3077
int
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  3078
zfs_destroy(zfs_handle_t *zhp, boolean_t defer)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3079
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3080
	zfs_cmd_t zc = { 0 };
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3081
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3082
	(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3083
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3084
	if (ZFS_IS_VOLUME(zhp)) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3085
		zc.zc_objset_type = DMU_OST_ZVOL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3086
	} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3087
		zc.zc_objset_type = DMU_OST_ZFS;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3088
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3089
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  3090
	zc.zc_defer_destroy = defer;
13803
df4cd82e2b60 1796 "ZFS HOLD" should not be used when doing "ZFS SEND" from a read-only pool
Christopher Siden <chris.siden@delphix.com>
parents: 13797
diff changeset
  3091
	if (zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_DESTROY, &zc) != 0 &&
df4cd82e2b60 1796 "ZFS HOLD" should not be used when doing "ZFS SEND" from a read-only pool
Christopher Siden <chris.siden@delphix.com>
parents: 13797
diff changeset
  3092
	    errno != ENOENT) {
3237
98d0c28f2f5e 6480245 renaming a dataset to something with '%s' will cause segfault
lling
parents: 3234
diff changeset
  3093
		return (zfs_standard_error_fmt(zhp->zfs_hdl, errno,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3094
		    dgettext(TEXT_DOMAIN, "cannot destroy '%s'"),
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3095
		    zhp->zfs_name));
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3096
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3097
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3098
	remove_mountpoint(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3099
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3100
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3101
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3102
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3103
struct destroydata {
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3104
	nvlist_t *nvl;
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3105
	const char *snapname;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3106
};
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3107
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3108
static int
10588
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10342
diff changeset
  3109
zfs_check_snap_cb(zfs_handle_t *zhp, void *arg)
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3110
{
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3111
	struct destroydata *dd = arg;
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3112
	char name[ZFS_MAXNAMELEN];
10588
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10342
diff changeset
  3113
	int rv = 0;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3114
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3115
	(void) snprintf(name, sizeof (name),
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3116
	    "%s@%s", zhp->zfs_name, dd->snapname);
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3117
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  3118
	if (lzc_exists(name))
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3119
		verify(nvlist_add_boolean(dd->nvl, name) == 0);
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3120
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3121
	rv = zfs_iter_filesystems(zhp, zfs_check_snap_cb, dd);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3122
	zfs_close(zhp);
3265
967e0fca6143 6463140 zfs recv with a snapshot name that has 2 @@ in a row succeeds
ahrens
parents: 3237
diff changeset
  3123
	return (rv);
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3124
}
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3125
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3126
/*
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3127
 * Destroys all snapshots with the given name in zhp & descendants.
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3128
 */
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3129
int
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  3130
zfs_destroy_snaps(zfs_handle_t *zhp, char *snapname, boolean_t defer)
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3131
{
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3132
	int ret;
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3133
	struct destroydata dd = { 0 };
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3134
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3135
	dd.snapname = snapname;
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3136
	verify(nvlist_alloc(&dd.nvl, NV_UNIQUE_NAME, 0) == 0);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3137
	(void) zfs_check_snap_cb(zfs_handle_dup(zhp), &dd);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3138
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  3139
	if (nvlist_empty(dd.nvl)) {
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3140
		ret = zfs_standard_error_fmt(zhp->zfs_hdl, ENOENT,
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3141
		    dgettext(TEXT_DOMAIN, "cannot destroy '%s@%s'"),
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3142
		    zhp->zfs_name, snapname);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3143
	} else {
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3144
		ret = zfs_destroy_snaps_nvl(zhp->zfs_hdl, dd.nvl, defer);
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3145
	}
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3146
	nvlist_free(dd.nvl);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3147
	return (ret);
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3148
}
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3149
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3150
/*
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3151
 * Destroys all the snapshots named in the nvlist.
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3152
 */
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3153
int
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3154
zfs_destroy_snaps_nvl(libzfs_handle_t *hdl, nvlist_t *snaps, boolean_t defer)
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3155
{
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3156
	int ret;
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3157
	nvlist_t *errlist;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3158
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3159
	ret = lzc_destroy_snaps(snaps, defer, &errlist);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3160
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3161
	if (ret == 0)
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3162
		return (0);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3163
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  3164
	if (nvlist_empty(errlist)) {
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3165
		char errbuf[1024];
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3166
		(void) snprintf(errbuf, sizeof (errbuf),
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3167
		    dgettext(TEXT_DOMAIN, "cannot destroy snapshots"));
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3168
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3169
		ret = zfs_standard_error(hdl, ret, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3170
	}
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3171
	for (nvpair_t *pair = nvlist_next_nvpair(errlist, NULL);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3172
	    pair != NULL; pair = nvlist_next_nvpair(errlist, pair)) {
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3173
		char errbuf[1024];
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3174
		(void) snprintf(errbuf, sizeof (errbuf),
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3175
		    dgettext(TEXT_DOMAIN, "cannot destroy snapshot %s"),
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3176
		    nvpair_name(pair));
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3177
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3178
		switch (fnvpair_value_int32(pair)) {
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3179
		case EEXIST:
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3180
			zfs_error_aux(hdl,
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3181
			    dgettext(TEXT_DOMAIN, "snapshot is cloned"));
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3182
			ret = zfs_error(hdl, EZFS_EXISTS, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3183
			break;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3184
		default:
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3185
			ret = zfs_standard_error(hdl, errno, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  3186
			break;
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3187
		}
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3188
	}
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3189
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3190
	return (ret);
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3191
}
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3192
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3193
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3194
 * Clones the given dataset.  The target must be of the same type as the source.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3195
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3196
int
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3197
zfs_clone(zfs_handle_t *zhp, const char *target, nvlist_t *props)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3198
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3199
	char parent[ZFS_MAXNAMELEN];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3200
	int ret;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3201
	char errbuf[1024];
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3202
	libzfs_handle_t *hdl = zhp->zfs_hdl;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3203
	uint64_t zoned;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3204
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3205
	assert(zhp->zfs_type == ZFS_TYPE_SNAPSHOT);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3206
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3207
	(void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3208
	    "cannot create '%s'"), target);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3209
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  3210
	/* validate the target/clone name */
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
  3211
	if (!zfs_validate_name(hdl, target, ZFS_TYPE_FILESYSTEM, B_TRUE))
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3212
		return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3213
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3214
	/* validate parents exist */
4490
abf035049f7f PSARC 2007/199 zfs {create,clone,rename} -p
vb160487
parents: 4451
diff changeset
  3215
	if (check_parents(hdl, target, &zoned, B_FALSE, NULL) != 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3216
		return (-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3217
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3218
	(void) parent_name(target, parent, sizeof (parent));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3219
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3220
	/* do the clone */
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3221
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3222
	if (props) {
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3223
		zfs_type_t type;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3224
		if (ZFS_IS_VOLUME(zhp)) {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3225
			type = ZFS_TYPE_VOLUME;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3226
		} else {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3227
			type = ZFS_TYPE_FILESYSTEM;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3228
		}
7184
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7042
diff changeset
  3229
		if ((props = zfs_valid_proplist(hdl, type, props, zoned,
9508660f9c27 PSARC 2008/223 Pool root file system properties via zpool(1M)
timh
parents: 7042
diff changeset
  3230
		    zhp, errbuf)) == NULL)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3231
			return (-1);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3232
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3233
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3234
	ret = lzc_clone(target, zhp->zfs_name, props);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3235
	nvlist_free(props);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3236
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3237
	if (ret != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3238
		switch (errno) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3239
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3240
		case ENOENT:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3241
			/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3242
			 * The parent doesn't exist.  We should have caught this
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3243
			 * above, but there may a race condition that has since
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3244
			 * destroyed the parent.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3245
			 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3246
			 * At this point, we don't know whether it's the source
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3247
			 * that doesn't exist anymore, or whether the target
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3248
			 * dataset doesn't exist.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3249
			 */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3250
			zfs_error_aux(zhp->zfs_hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3251
			    "no such parent '%s'"), parent);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3252
			return (zfs_error(zhp->zfs_hdl, EZFS_NOENT, errbuf));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3253
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3254
		case EXDEV:
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3255
			zfs_error_aux(zhp->zfs_hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3256
			    "source and target pools differ"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3257
			return (zfs_error(zhp->zfs_hdl, EZFS_CROSSTARGET,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3258
			    errbuf));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3259
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3260
		default:
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3261
			return (zfs_standard_error(zhp->zfs_hdl, errno,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3262
			    errbuf));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3263
		}
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3264
	}
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3265
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3266
	return (ret);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3267
}
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3268
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3269
/*
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3270
 * Promotes the given clone fs to be the clone parent.
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3271
 */
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3272
int
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3273
zfs_promote(zfs_handle_t *zhp)
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3274
{
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3275
	libzfs_handle_t *hdl = zhp->zfs_hdl;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3276
	zfs_cmd_t zc = { 0 };
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3277
	char parent[MAXPATHLEN];
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3278
	int ret;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3279
	char errbuf[1024];
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3280
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3281
	(void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3282
	    "cannot promote '%s'"), zhp->zfs_name);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3283
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3284
	if (zhp->zfs_type == ZFS_TYPE_SNAPSHOT) {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3285
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3286
		    "snapshots can not be promoted"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3287
		return (zfs_error(hdl, EZFS_BADTYPE, errbuf));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3288
	}
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3289
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  3290
	(void) strlcpy(parent, zhp->zfs_dmustats.dds_origin, sizeof (parent));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3291
	if (parent[0] == '\0') {
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3292
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3293
		    "not a cloned filesystem"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3294
		return (zfs_error(hdl, EZFS_BADTYPE, errbuf));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3295
	}
10588
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10342
diff changeset
  3296
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  3297
	(void) strlcpy(zc.zc_value, zhp->zfs_dmustats.dds_origin,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3298
	    sizeof (zc.zc_value));
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3299
	(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3300
	ret = zfs_ioctl(hdl, ZFS_IOC_PROMOTE, &zc);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3301
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3302
	if (ret != 0) {
2417
694d5de97348 6444346 zfs promote fails in zone
ahrens
parents: 2199
diff changeset
  3303
		int save_errno = errno;
694d5de97348 6444346 zfs promote fails in zone
ahrens
parents: 2199
diff changeset
  3304
694d5de97348 6444346 zfs promote fails in zone
ahrens
parents: 2199
diff changeset
  3305
		switch (save_errno) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3306
		case EEXIST:
10588
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10342
diff changeset
  3307
			/* There is a conflicting snapshot name. */
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3308
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
10588
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10342
diff changeset
  3309
			    "conflicting snapshot '%s' from parent '%s'"),
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10342
diff changeset
  3310
			    zc.zc_string, parent);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3311
			return (zfs_error(hdl, EZFS_EXISTS, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3312
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3313
		default:
2417
694d5de97348 6444346 zfs promote fails in zone
ahrens
parents: 2199
diff changeset
  3314
			return (zfs_standard_error(hdl, save_errno, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3315
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3316
	}
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3317
	return (ret);
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3318
}
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3319
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3320
typedef struct snapdata {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3321
	nvlist_t *sd_nvl;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3322
	const char *sd_snapname;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3323
} snapdata_t;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3324
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3325
static int
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3326
zfs_snapshot_cb(zfs_handle_t *zhp, void *arg)
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3327
{
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3328
	snapdata_t *sd = arg;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3329
	char name[ZFS_MAXNAMELEN];
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3330
	int rv = 0;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3331
14172
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  3332
	if (zfs_prop_get_int(zhp, ZFS_PROP_INCONSISTENT) == 0) {
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  3333
		(void) snprintf(name, sizeof (name),
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  3334
		    "%s@%s", zfs_get_name(zhp), sd->sd_snapname);
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  3335
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  3336
		fnvlist_add_boolean(sd->sd_nvl, name);
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  3337
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  3338
		rv = zfs_iter_filesystems(zhp, zfs_snapshot_cb, sd);
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  3339
	}
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3340
	zfs_close(zhp);
14172
520f3adc5d46 3894 zfs should not allow snapshot of inconsistent dataset
Keith M Wesolowski <wesolows@foobazco.org>
parents: 14138
diff changeset
  3341
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3342
	return (rv);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3343
}
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3344
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3345
/*
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3346
 * Creates snapshots.  The keys in the snaps nvlist are the snapshots to be
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3347
 * created.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3348
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3349
int
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3350
zfs_snapshot_nvl(libzfs_handle_t *hdl, nvlist_t *snaps, nvlist_t *props)
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3351
{
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3352
	int ret;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3353
	char errbuf[1024];
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3354
	nvpair_t *elem;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3355
	nvlist_t *errors;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3356
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3357
	(void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3358
	    "cannot create snapshots "));
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3359
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3360
	elem = NULL;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3361
	while ((elem = nvlist_next_nvpair(snaps, elem)) != NULL) {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3362
		const char *snapname = nvpair_name(elem);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3363
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3364
		/* validate the target name */
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3365
		if (!zfs_validate_name(hdl, snapname, ZFS_TYPE_SNAPSHOT,
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3366
		    B_TRUE)) {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3367
			(void) snprintf(errbuf, sizeof (errbuf),
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3368
			    dgettext(TEXT_DOMAIN,
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3369
			    "cannot create snapshot '%s'"), snapname);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3370
			return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3371
		}
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3372
	}
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3373
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3374
	if (props != NULL &&
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3375
	    (props = zfs_valid_proplist(hdl, ZFS_TYPE_SNAPSHOT,
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3376
	    props, B_FALSE, NULL, errbuf)) == NULL) {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3377
		return (-1);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3378
	}
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3379
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3380
	ret = lzc_snapshot(snaps, props, &errors);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3381
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3382
	if (ret != 0) {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3383
		boolean_t printed = B_FALSE;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3384
		for (elem = nvlist_next_nvpair(errors, NULL);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3385
		    elem != NULL;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3386
		    elem = nvlist_next_nvpair(errors, elem)) {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3387
			(void) snprintf(errbuf, sizeof (errbuf),
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3388
			    dgettext(TEXT_DOMAIN,
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3389
			    "cannot create snapshot '%s'"), nvpair_name(elem));
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3390
			(void) zfs_standard_error(hdl,
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3391
			    fnvpair_value_int32(elem), errbuf);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3392
			printed = B_TRUE;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3393
		}
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3394
		if (!printed) {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3395
			switch (ret) {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3396
			case EXDEV:
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3397
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3398
				    "multiple snapshots of same "
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3399
				    "fs not allowed"));
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3400
				(void) zfs_error(hdl, EZFS_EXISTS, errbuf);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3401
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3402
				break;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3403
			default:
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3404
				(void) zfs_standard_error(hdl, ret, errbuf);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3405
			}
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3406
		}
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3407
	}
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3408
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3409
	nvlist_free(props);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3410
	nvlist_free(errors);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3411
	return (ret);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3412
}
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3413
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3414
int
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7184
diff changeset
  3415
zfs_snapshot(libzfs_handle_t *hdl, const char *path, boolean_t recursive,
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7184
diff changeset
  3416
    nvlist_t *props)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3417
{
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3418
	int ret;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3419
	snapdata_t sd = { 0 };
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3420
	char fsname[ZFS_MAXNAMELEN];
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3421
	char *cp;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3422
	zfs_handle_t *zhp;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3423
	char errbuf[1024];
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3424
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3425
	(void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3426
	    "cannot snapshot %s"), path);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3427
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
  3428
	if (!zfs_validate_name(hdl, path, ZFS_TYPE_SNAPSHOT, B_TRUE))
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3429
		return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3430
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3431
	(void) strlcpy(fsname, path, sizeof (fsname));
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3432
	cp = strchr(fsname, '@');
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3433
	*cp = '\0';
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3434
	sd.sd_snapname = cp + 1;
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3435
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3436
	if ((zhp = zfs_open(hdl, fsname, ZFS_TYPE_FILESYSTEM |
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3437
	    ZFS_TYPE_VOLUME)) == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3438
		return (-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3439
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3440
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3441
	verify(nvlist_alloc(&sd.sd_nvl, NV_UNIQUE_NAME, 0) == 0);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3442
	if (recursive) {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3443
		(void) zfs_snapshot_cb(zfs_handle_dup(zhp), &sd);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3444
	} else {
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3445
		fnvlist_add_boolean(sd.sd_nvl, path);
2199
712a788c2dfd PSARC 2006/388 snapshot -r
ahrens
parents: 2169
diff changeset
  3446
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3447
13797
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3448
	ret = zfs_snapshot_nvl(hdl, sd.sd_nvl, props);
95aba6e49b9f 2882 implement libzfs_core
Matthew Ahrens <mahrens@delphix.com>
parents: 13765
diff changeset
  3449
	nvlist_free(sd.sd_nvl);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3450
	zfs_close(zhp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3451
	return (ret);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3452
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3453
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3454
/*
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3455
 * Destroy any more recent snapshots.  We invoke this callback on any dependents
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3456
 * of the snapshot first.  If the 'cb_dependent' member is non-zero, then this
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3457
 * is a dependent and we should just destroy it without checking the transaction
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3458
 * group.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3459
 */
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3460
typedef struct rollback_data {
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3461
	const char	*cb_target;		/* the snapshot */
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3462
	uint64_t	cb_create;		/* creation time reference */
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3463
	boolean_t	cb_error;
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3464
	boolean_t	cb_dependent;
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3465
	boolean_t	cb_force;
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3466
} rollback_data_t;
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3467
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3468
static int
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3469
rollback_destroy(zfs_handle_t *zhp, void *data)
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3470
{
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3471
	rollback_data_t *cbp = data;
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3472
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3473
	if (!cbp->cb_dependent) {
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3474
		if (strcmp(zhp->zfs_name, cbp->cb_target) != 0 &&
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3475
		    zfs_get_type(zhp) == ZFS_TYPE_SNAPSHOT &&
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3476
		    zfs_prop_get_int(zhp, ZFS_PROP_CREATETXG) >
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3477
		    cbp->cb_create) {
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3478
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3479
			cbp->cb_dependent = B_TRUE;
5446
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3480
			cbp->cb_error |= zfs_iter_dependents(zhp, B_FALSE,
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3481
			    rollback_destroy, cbp);
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3482
			cbp->cb_dependent = B_FALSE;
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3483
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  3484
			cbp->cb_error |= zfs_destroy(zhp, B_FALSE);
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3485
		}
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3486
	} else {
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3487
		/* We must destroy this clone; first unmount it */
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3488
		prop_changelist_t *clp;
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3489
7366
33de5956afbb 6678308 zfs receive dumps core when -n is used, fails on replication stream
Tim Haley <Tim.Haley@Sun.COM>
parents: 7301
diff changeset
  3490
		clp = changelist_gather(zhp, ZFS_PROP_NAME, 0,
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3491
		    cbp->cb_force ? MS_FORCE: 0);
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3492
		if (clp == NULL || changelist_prefix(clp) != 0) {
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3493
			cbp->cb_error = B_TRUE;
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3494
			zfs_close(zhp);
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3495
			return (0);
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3496
		}
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  3497
		if (zfs_destroy(zhp, B_FALSE) != 0)
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3498
			cbp->cb_error = B_TRUE;
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3499
		else
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3500
			changelist_remove(clp, zhp->zfs_name);
5751
86c712b1b536 6641210 zfs rollback -R fails with EBUSY if there is a clone (fix lint)
ahrens
parents: 5749
diff changeset
  3501
		(void) changelist_postfix(clp);
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3502
		changelist_free(clp);
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3503
	}
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3504
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3505
	zfs_close(zhp);
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3506
	return (0);
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3507
}
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3508
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3509
/*
5446
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3510
 * Given a dataset, rollback to a specific snapshot, discarding any
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3511
 * data changes since then and making it the active dataset.
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3512
 *
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3513
 * Any snapshots more recent than the target are destroyed, along with
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3514
 * their dependents.
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3515
 */
5446
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3516
int
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3517
zfs_rollback(zfs_handle_t *zhp, zfs_handle_t *snap, boolean_t force)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3518
{
5446
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3519
	rollback_data_t cb = { 0 };
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3520
	int err;
5713
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3521
	boolean_t restore_resv = 0;
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3522
	uint64_t old_volsize, new_volsize;
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3523
	zfs_prop_t resv_prop;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3524
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3525
	assert(zhp->zfs_type == ZFS_TYPE_FILESYSTEM ||
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3526
	    zhp->zfs_type == ZFS_TYPE_VOLUME);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3527
5446
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3528
	/*
13838
6da32a929222 3100 zvol rename fails with EBUSY when dirty
Matthew Ahrens <mahrens@delphix.com>
parents: 13803
diff changeset
  3529
	 * Destroy all recent snapshots and their dependents.
5446
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3530
	 */
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3531
	cb.cb_force = force;
5446
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3532
	cb.cb_target = snap->zfs_name;
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3533
	cb.cb_create = zfs_prop_get_int(snap, ZFS_PROP_CREATETXG);
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3534
	(void) zfs_iter_children(zhp, rollback_destroy, &cb);
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3535
5749
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3536
	if (cb.cb_error)
78a7afaea267 PSARC/2007/699 zfs rollback -f operative
ahrens
parents: 5717
diff changeset
  3537
		return (-1);
5446
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3538
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3539
	/*
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3540
	 * Now that we have verified that the snapshot is the latest,
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3541
	 * rollback to the given snapshot.
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3542
	 */
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3543
5713
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3544
	if (zhp->zfs_type == ZFS_TYPE_VOLUME) {
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3545
		if (zfs_which_resv_prop(zhp, &resv_prop) < 0)
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3546
			return (-1);
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3547
		old_volsize = zfs_prop_get_int(zhp, ZFS_PROP_VOLSIZE);
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3548
		restore_resv =
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3549
		    (old_volsize == zfs_prop_get_int(zhp, resv_prop));
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3550
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3551
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3552
	/*
5446
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3553
	 * We rely on zfs_iter_children() to verify that there are no
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3554
	 * newer snapshots for the given dataset.  Therefore, we can
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3555
	 * simply pass the name on to the ioctl() call.  There is still
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3556
	 * an unlikely race condition where the user has taken a
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3557
	 * snapshot since we verified that this was the most recent.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3558
	 */
14220
f7523d207d74 3996 want a libzfs_core API to rollback to latest snapshot
Matthew Ahrens <mahrens@delphix.com>
parents: 14172
diff changeset
  3559
	err = lzc_rollback(zhp->zfs_name, NULL, 0);
f7523d207d74 3996 want a libzfs_core API to rollback to latest snapshot
Matthew Ahrens <mahrens@delphix.com>
parents: 14172
diff changeset
  3560
	if (err != 0) {
3237
98d0c28f2f5e 6480245 renaming a dataset to something with '%s' will cause segfault
lling
parents: 3234
diff changeset
  3561
		(void) zfs_standard_error_fmt(zhp->zfs_hdl, errno,
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3562
		    dgettext(TEXT_DOMAIN, "cannot rollback '%s'"),
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3563
		    zhp->zfs_name);
5717
b163be0bb014 6419176 'zfs rollback <volume@snap>' does not lower reservation (fix lint)
rm160521
parents: 5713
diff changeset
  3564
		return (err);
b163be0bb014 6419176 'zfs rollback <volume@snap>' does not lower reservation (fix lint)
rm160521
parents: 5713
diff changeset
  3565
	}
5713
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3566
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3567
	/*
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3568
	 * For volumes, if the pre-rollback volsize matched the pre-
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3569
	 * rollback reservation and the volsize has changed then set
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3570
	 * the reservation property to the post-rollback volsize.
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3571
	 * Make a new handle since the rollback closed the dataset.
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3572
	 */
5717
b163be0bb014 6419176 'zfs rollback <volume@snap>' does not lower reservation (fix lint)
rm160521
parents: 5713
diff changeset
  3573
	if ((zhp->zfs_type == ZFS_TYPE_VOLUME) &&
b163be0bb014 6419176 'zfs rollback <volume@snap>' does not lower reservation (fix lint)
rm160521
parents: 5713
diff changeset
  3574
	    (zhp = make_dataset_handle(zhp->zfs_hdl, zhp->zfs_name))) {
5713
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3575
		if (restore_resv) {
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3576
			new_volsize = zfs_prop_get_int(zhp, ZFS_PROP_VOLSIZE);
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3577
			if (old_volsize != new_volsize)
5717
b163be0bb014 6419176 'zfs rollback <volume@snap>' does not lower reservation (fix lint)
rm160521
parents: 5713
diff changeset
  3578
				err = zfs_prop_set_int(zhp, resv_prop,
b163be0bb014 6419176 'zfs rollback <volume@snap>' does not lower reservation (fix lint)
rm160521
parents: 5713
diff changeset
  3579
				    new_volsize);
5713
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3580
		}
f9b7933f3770 PSARC/2007/675 A_MDEV Removal
rm160521
parents: 5592
diff changeset
  3581
		zfs_close(zhp);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3582
	}
5446
51fbc14b301d 6421210 zfs rollback without unmounting
ahrens
parents: 5378
diff changeset
  3583
	return (err);
1294
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3584
}
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3585
87b43e5de5ee 6364129 need to unmount any child datasets before doing the rollback
lling
parents: 1175
diff changeset
  3586
/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3587
 * Renames the given dataset.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3588
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3589
int
13727
a0cbef703c12 2635 'zfs rename -f' to perform force unmount
Eric Schrock <Eric.Schrock@delphix.com>
parents: 13611
diff changeset
  3590
zfs_rename(zfs_handle_t *zhp, const char *target, boolean_t recursive,
a0cbef703c12 2635 'zfs rename -f' to perform force unmount
Eric Schrock <Eric.Schrock@delphix.com>
parents: 13611
diff changeset
  3591
    boolean_t force_unmount)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3592
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3593
	int ret;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3594
	zfs_cmd_t zc = { 0 };
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3595
	char *delim;
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3596
	prop_changelist_t *cl = NULL;
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3597
	zfs_handle_t *zhrp = NULL;
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3598
	char *parentname = NULL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3599
	char parent[ZFS_MAXNAMELEN];
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3600
	libzfs_handle_t *hdl = zhp->zfs_hdl;
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3601
	char errbuf[1024];
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3602
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3603
	/* if we have the same exact name, just return success */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3604
	if (strcmp(zhp->zfs_name, target) == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3605
		return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3606
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3607
	(void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3608
	    "cannot rename to '%s'"), target);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3609
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3610
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3611
	 * Make sure the target name is valid
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3612
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3613
	if (zhp->zfs_type == ZFS_TYPE_SNAPSHOT) {
2665
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3614
		if ((strchr(target, '@') == NULL) ||
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3615
		    *target == '@') {
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3616
			/*
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3617
			 * Snapshot target name is abbreviated,
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3618
			 * reconstruct full dataset name
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3619
			 */
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3620
			(void) strlcpy(parent, zhp->zfs_name,
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3621
			    sizeof (parent));
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3622
			delim = strchr(parent, '@');
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3623
			if (strchr(target, '@') == NULL)
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3624
				*(++delim) = '\0';
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3625
			else
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3626
				*delim = '\0';
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3627
			(void) strlcat(parent, target, sizeof (parent));
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3628
			target = parent;
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3629
		} else {
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3630
			/*
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3631
			 * Make sure we're renaming within the same dataset.
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3632
			 */
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3633
			delim = strchr(target, '@');
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3634
			if (strncmp(zhp->zfs_name, target, delim - target)
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3635
			    != 0 || zhp->zfs_name[delim - target] != '@') {
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3636
				zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3637
				    "snapshots must be part of same "
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3638
				    "dataset"));
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3639
				return (zfs_error(hdl, EZFS_CROSSTARGET,
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3640
				    errbuf));
2665
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3641
			}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3642
		}
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
  3643
		if (!zfs_validate_name(hdl, target, zhp->zfs_type, B_TRUE))
2665
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3644
			return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3645
	} else {
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3646
		if (recursive) {
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3647
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3648
			    "recursive rename must be a snapshot"));
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3649
			return (zfs_error(hdl, EZFS_BADTYPE, errbuf));
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3650
		}
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3651
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 5147
diff changeset
  3652
		if (!zfs_validate_name(hdl, target, zhp->zfs_type, B_TRUE))
2665
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3653
			return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3654
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3655
		/* validate parents */
11497
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  3656
		if (check_parents(hdl, target, NULL, B_FALSE, NULL) != 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3657
			return (-1);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3658
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3659
		/* make sure we're in the same pool */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3660
		verify((delim = strchr(target, '/')) != NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3661
		if (strncmp(zhp->zfs_name, target, delim - target) != 0 ||
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3662
		    zhp->zfs_name[delim - target] != '/') {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3663
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3664
			    "datasets must be within same pool"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3665
			return (zfs_error(hdl, EZFS_CROSSTARGET, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3666
		}
2440
9281a87e8a9e 6451860 zfs rename' a filesystem|clone to its direct child will cause internal error
nd150628
parents: 2417
diff changeset
  3667
9281a87e8a9e 6451860 zfs rename' a filesystem|clone to its direct child will cause internal error
nd150628
parents: 2417
diff changeset
  3668
		/* new name cannot be a child of the current dataset name */
11497
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  3669
		if (is_descendant(zhp->zfs_name, target)) {
2440
9281a87e8a9e 6451860 zfs rename' a filesystem|clone to its direct child will cause internal error
nd150628
parents: 2417
diff changeset
  3670
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
11497
69b45e632792 6698011 zfs incorrectly reports file systems as children when attempting a rename
Mark J Musante <Mark.Musante@Sun.COM>
parents: 11449
diff changeset
  3671
			    "New dataset name cannot be a descendant of "
2440
9281a87e8a9e 6451860 zfs rename' a filesystem|clone to its direct child will cause internal error
nd150628
parents: 2417
diff changeset
  3672
			    "current dataset name"));
9281a87e8a9e 6451860 zfs rename' a filesystem|clone to its direct child will cause internal error
nd150628
parents: 2417
diff changeset
  3673
			return (zfs_error(hdl, EZFS_INVALIDNAME, errbuf));
9281a87e8a9e 6451860 zfs rename' a filesystem|clone to its direct child will cause internal error
nd150628
parents: 2417
diff changeset
  3674
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3675
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3676
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3677
	(void) snprintf(errbuf, sizeof (errbuf),
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3678
	    dgettext(TEXT_DOMAIN, "cannot rename '%s'"), zhp->zfs_name);
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3679
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3680
	if (getzoneid() == GLOBAL_ZONEID &&
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3681
	    zfs_prop_get_int(zhp, ZFS_PROP_ZONED)) {
2082
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3682
		zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3683
		    "dataset is used in a non-global zone"));
76b439ec3ac1 PSARC 2006/223 ZFS Hot Spares
eschrock
parents: 1793
diff changeset
  3684
		return (zfs_error(hdl, EZFS_ZONED, errbuf));
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3685
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3686
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3687
	if (recursive) {
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3688
4183
8dbff10731ef 6550857 recursive rename leaks memory and segfaults on failure
mmusante
parents: 4180
diff changeset
  3689
		parentname = zfs_strdup(zhp->zfs_hdl, zhp->zfs_name);
8dbff10731ef 6550857 recursive rename leaks memory and segfaults on failure
mmusante
parents: 4180
diff changeset
  3690
		if (parentname == NULL) {
8dbff10731ef 6550857 recursive rename leaks memory and segfaults on failure
mmusante
parents: 4180
diff changeset
  3691
			ret = -1;
8dbff10731ef 6550857 recursive rename leaks memory and segfaults on failure
mmusante
parents: 4180
diff changeset
  3692
			goto error;
8dbff10731ef 6550857 recursive rename leaks memory and segfaults on failure
mmusante
parents: 4180
diff changeset
  3693
		}
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3694
		delim = strchr(parentname, '@');
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3695
		*delim = '\0';
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  3696
		zhrp = zfs_open(zhp->zfs_hdl, parentname, ZFS_TYPE_DATASET);
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3697
		if (zhrp == NULL) {
4183
8dbff10731ef 6550857 recursive rename leaks memory and segfaults on failure
mmusante
parents: 4180
diff changeset
  3698
			ret = -1;
8dbff10731ef 6550857 recursive rename leaks memory and segfaults on failure
mmusante
parents: 4180
diff changeset
  3699
			goto error;
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3700
		}
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3701
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3702
	} else {
13727
a0cbef703c12 2635 'zfs rename -f' to perform force unmount
Eric Schrock <Eric.Schrock@delphix.com>
parents: 13611
diff changeset
  3703
		if ((cl = changelist_gather(zhp, ZFS_PROP_NAME, 0,
a0cbef703c12 2635 'zfs rename -f' to perform force unmount
Eric Schrock <Eric.Schrock@delphix.com>
parents: 13611
diff changeset
  3704
		    force_unmount ? MS_FORCE : 0)) == NULL)
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3705
			return (-1);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3706
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3707
		if (changelist_haszonedchild(cl)) {
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3708
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3709
			    "child dataset with inherited mountpoint is used "
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3710
			    "in a non-global zone"));
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3711
			(void) zfs_error(hdl, EZFS_ZONED, errbuf);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3712
			goto error;
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3713
		}
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3714
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3715
		if ((ret = changelist_prefix(cl)) != 0)
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3716
			goto error;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3717
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3718
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3719
	if (ZFS_IS_VOLUME(zhp))
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3720
		zc.zc_objset_type = DMU_OST_ZVOL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3721
	else
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3722
		zc.zc_objset_type = DMU_OST_ZFS;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3723
2665
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3724
	(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3725
	(void) strlcpy(zc.zc_value, target, sizeof (zc.zc_value));
2665
7b208a92357b PSARC 2006/479 zfs receive -F
nd150628
parents: 2474
diff changeset
  3726
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3727
	zc.zc_cookie = recursive;
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3728
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3729
	if ((ret = zfs_ioctl(zhp->zfs_hdl, ZFS_IOC_RENAME, &zc)) != 0) {
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3730
		/*
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3731
		 * if it was recursive, the one that actually failed will
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3732
		 * be in zc.zc_name
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3733
		 */
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3734
		(void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
5367
c40abbe796be PSARC/2007/574 zfs send -R
ahrens
parents: 5331
diff changeset
  3735
		    "cannot rename '%s'"), zc.zc_name);
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3736
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3737
		if (recursive && errno == EEXIST) {
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3738
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3739
			    "a child dataset already has a snapshot "
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3740
			    "with the new name"));
4801
5cd7916484a5 4687827 dumpadm should be more tolerant of a read-only /etc/dumpadm.conf
eschrock
parents: 4787
diff changeset
  3741
			(void) zfs_error(hdl, EZFS_EXISTS, errbuf);
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3742
		} else {
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3743
			(void) zfs_standard_error(zhp->zfs_hdl, errno, errbuf);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3744
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3745
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3746
		/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3747
		 * On failure, we still want to remount any filesystems that
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3748
		 * were previously mounted, so we don't alter the system state.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3749
		 */
10588
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10342
diff changeset
  3750
		if (!recursive)
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3751
			(void) changelist_postfix(cl);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3752
	} else {
10588
dc03f981ea18 6438937 if 'zfs destroy' fails, it can leave a zvol device link missing
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 10342
diff changeset
  3753
		if (!recursive) {
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3754
			changelist_rename(cl, zfs_get_name(zhp), target);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3755
			ret = changelist_postfix(cl);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3756
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3757
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3758
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3759
error:
4007
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3760
	if (parentname) {
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3761
		free(parentname);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3762
	}
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3763
	if (zhrp) {
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3764
		zfs_close(zhrp);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3765
	}
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3766
	if (cl) {
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3767
		changelist_free(cl);
c6f5c6753018 PSARC 2007/142 zfs rename -r
mmusante
parents: 3912
diff changeset
  3768
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3769
	return (ret);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3770
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  3771
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3772
nvlist_t *
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3773
zfs_get_user_props(zfs_handle_t *zhp)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3774
{
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3775
	return (zhp->zfs_user_props);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3776
}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3777
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3778
nvlist_t *
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3779
zfs_get_recvd_props(zfs_handle_t *zhp)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3780
{
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3781
	if (zhp->zfs_recvd_props == NULL)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3782
		if (get_recvd_props_ioctl(zhp) != 0)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3783
			return (NULL);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3784
	return (zhp->zfs_recvd_props);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3785
}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3786
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3787
/*
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3788
 * This function is used by 'zfs list' to determine the exact set of columns to
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3789
 * display, and their maximum widths.  This does two main things:
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3790
 *
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3791
 *      - If this is a list of all properties, then expand the list to include
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3792
 *        all native properties, and set a flag so that for each dataset we look
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3793
 *        for new unique user properties and add them to the list.
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3794
 *
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3795
 *      - For non fixed-width properties, keep track of the maximum width seen
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3796
 *        so that we can size the column appropriately. If the user has
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3797
 *        requested received property values, we also need to compute the width
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3798
 *        of the RECEIVED column.
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3799
 */
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3800
int
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3801
zfs_expand_proplist(zfs_handle_t *zhp, zprop_list_t **plp, boolean_t received)
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3802
{
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3803
	libzfs_handle_t *hdl = zhp->zfs_hdl;
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  3804
	zprop_list_t *entry;
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  3805
	zprop_list_t **last, **start;
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3806
	nvlist_t *userprops, *propval;
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3807
	nvpair_t *elem;
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3808
	char *strval;
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3809
	char buf[ZFS_MAXPROPLEN];
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3810
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  3811
	if (zprop_expand_list(hdl, plp, ZFS_TYPE_DATASET) != 0)
3912
f6891a60bd72 PSARC 2007/083 ZFS bootable datasets
lling
parents: 3886
diff changeset
  3812
		return (-1);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3813
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3814
	userprops = zfs_get_user_props(zhp);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3815
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3816
	entry = *plp;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3817
	if (entry->pl_all && nvlist_next_nvpair(userprops, NULL) != NULL) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3818
		/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3819
		 * Go through and add any user properties as necessary.  We
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3820
		 * start by incrementing our list pointer to the first
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3821
		 * non-native property.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3822
		 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3823
		start = plp;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3824
		while (*start != NULL) {
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  3825
			if ((*start)->pl_prop == ZPROP_INVAL)
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3826
				break;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3827
			start = &(*start)->pl_next;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3828
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3829
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3830
		elem = NULL;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3831
		while ((elem = nvlist_next_nvpair(userprops, elem)) != NULL) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3832
			/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3833
			 * See if we've already found this property in our list.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3834
			 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3835
			for (last = start; *last != NULL;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3836
			    last = &(*last)->pl_next) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3837
				if (strcmp((*last)->pl_user_prop,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3838
				    nvpair_name(elem)) == 0)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3839
					break;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3840
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3841
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3842
			if (*last == NULL) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3843
				if ((entry = zfs_alloc(hdl,
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  3844
				    sizeof (zprop_list_t))) == NULL ||
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3845
				    ((entry->pl_user_prop = zfs_strdup(hdl,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3846
				    nvpair_name(elem)))) == NULL) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3847
					free(entry);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3848
					return (-1);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3849
				}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3850
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  3851
				entry->pl_prop = ZPROP_INVAL;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3852
				entry->pl_width = strlen(nvpair_name(elem));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3853
				entry->pl_all = B_TRUE;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3854
				*last = entry;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3855
			}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3856
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3857
	}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3858
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3859
	/*
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3860
	 * Now go through and check the width of any non-fixed columns
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3861
	 */
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3862
	for (entry = *plp; entry != NULL; entry = entry->pl_next) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3863
		if (entry->pl_fixed)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3864
			continue;
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3865
5094
71a3e95fb9e2 PSARC 2007/342 Enhanced ZFS Pool Properties
lling
parents: 4861
diff changeset
  3866
		if (entry->pl_prop != ZPROP_INVAL) {
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3867
			if (zfs_prop_get(zhp, entry->pl_prop,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3868
			    buf, sizeof (buf), NULL, NULL, 0, B_FALSE) == 0) {
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3869
				if (strlen(buf) > entry->pl_width)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3870
					entry->pl_width = strlen(buf);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3871
			}
11022
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3872
			if (received && zfs_prop_get_recvd(zhp,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3873
			    zfs_prop_to_name(entry->pl_prop),
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3874
			    buf, sizeof (buf), B_FALSE) == 0)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3875
				if (strlen(buf) > entry->pl_recvd_width)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3876
					entry->pl_recvd_width = strlen(buf);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3877
		} else {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3878
			if (nvlist_lookup_nvlist(userprops, entry->pl_user_prop,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3879
			    &propval) == 0) {
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3880
				verify(nvlist_lookup_string(propval,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3881
				    ZPROP_VALUE, &strval) == 0);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3882
				if (strlen(strval) > entry->pl_width)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3883
					entry->pl_width = strlen(strval);
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3884
			}
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3885
			if (received && zfs_prop_get_recvd(zhp,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3886
			    entry->pl_user_prop,
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3887
			    buf, sizeof (buf), B_FALSE) == 0)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3888
				if (strlen(buf) > entry->pl_recvd_width)
63ab26072e41 PSARC 2009/510 ZFS received properties
Tom Erickson <Tom.Erickson@Sun.COM>
parents: 10984
diff changeset
  3889
					entry->pl_recvd_width = strlen(buf);
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3890
		}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3891
	}
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3892
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3893
	return (0);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2665
diff changeset
  3894
}
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3895
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3896
int
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3897
zfs_deleg_share_nfs(libzfs_handle_t *hdl, char *dataset, char *path,
8845
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3898
    char *resource, void *export, void *sharetab,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3899
    int sharemax, zfs_share_op_t operation)
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3900
{
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3901
	zfs_cmd_t zc = { 0 };
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3902
	int error;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3903
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3904
	(void) strlcpy(zc.zc_name, dataset, sizeof (zc.zc_name));
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3905
	(void) strlcpy(zc.zc_value, path, sizeof (zc.zc_value));
8845
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3906
	if (resource)
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3907
		(void) strlcpy(zc.zc_string, resource, sizeof (zc.zc_string));
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3908
	zc.zc_share.z_sharedata = (uint64_t)(uintptr_t)sharetab;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3909
	zc.zc_share.z_exportdata = (uint64_t)(uintptr_t)export;
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
  3910
	zc.zc_share.z_sharetype = operation;
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3911
	zc.zc_share.z_sharemax = sharemax;
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3912
	error = ioctl(hdl->libzfs_fd, ZFS_IOC_SHARE, &zc);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3913
	return (error);
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4490
diff changeset
  3914
}
8802
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3915
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3916
void
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3917
zfs_prune_proplist(zfs_handle_t *zhp, uint8_t *props)
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3918
{
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3919
	nvpair_t *curr;
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3920
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3921
	/*
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3922
	 * Keep a reference to the props-table against which we prune the
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3923
	 * properties.
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3924
	 */
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3925
	zhp->zfs_props_table = props;
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3926
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3927
	curr = nvlist_next_nvpair(zhp->zfs_props, NULL);
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3928
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3929
	while (curr) {
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3930
		zfs_prop_t zfs_prop = zfs_name_to_prop(nvpair_name(curr));
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3931
		nvpair_t *next = nvlist_next_nvpair(zhp->zfs_props, curr);
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3932
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  3933
		/*
10960
dcc7d6f9faa8 6897978 zfs send should ignore unknown properties
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10951
diff changeset
  3934
		 * User properties will result in ZPROP_INVAL, and since we
dcc7d6f9faa8 6897978 zfs send should ignore unknown properties
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10951
diff changeset
  3935
		 * only know how to prune standard ZFS properties, we always
dcc7d6f9faa8 6897978 zfs send should ignore unknown properties
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10951
diff changeset
  3936
		 * leave these in the list.  This can also happen if we
dcc7d6f9faa8 6897978 zfs send should ignore unknown properties
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10951
diff changeset
  3937
		 * encounter an unknown DSL property (when running older
dcc7d6f9faa8 6897978 zfs send should ignore unknown properties
Eric Schrock <Eric.Schrock@Sun.COM>
parents: 10951
diff changeset
  3938
		 * software, for example).
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  3939
		 */
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  3940
		if (zfs_prop != ZPROP_INVAL && props[zfs_prop] == B_FALSE)
8802
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3941
			(void) nvlist_remove(zhp->zfs_props,
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3942
			    nvpair_name(curr), nvpair_type(curr));
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3943
		curr = next;
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3944
	}
010b31dd4c53 6773366 "zfs list" memory consumption can be further reduced
Sanjeev Bagewadi <Sanjeev.Bagewadi@Sun.COM>
parents: 8269
diff changeset
  3945
}
8845
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3946
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3947
static int
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3948
zfs_smb_acl_mgmt(libzfs_handle_t *hdl, char *dataset, char *path,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3949
    zfs_smb_acl_op_t cmd, char *resource1, char *resource2)
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3950
{
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3951
	zfs_cmd_t zc = { 0 };
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3952
	nvlist_t *nvlist = NULL;
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3953
	int error;
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3954
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3955
	(void) strlcpy(zc.zc_name, dataset, sizeof (zc.zc_name));
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3956
	(void) strlcpy(zc.zc_value, path, sizeof (zc.zc_value));
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3957
	zc.zc_cookie = (uint64_t)cmd;
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3958
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3959
	if (cmd == ZFS_SMB_ACL_RENAME) {
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3960
		if (nvlist_alloc(&nvlist, NV_UNIQUE_NAME, 0) != 0) {
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3961
			(void) no_memory(hdl);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3962
			return (NULL);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3963
		}
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3964
	}
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3965
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3966
	switch (cmd) {
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3967
	case ZFS_SMB_ACL_ADD:
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3968
	case ZFS_SMB_ACL_REMOVE:
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3969
		(void) strlcpy(zc.zc_string, resource1, sizeof (zc.zc_string));
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3970
		break;
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3971
	case ZFS_SMB_ACL_RENAME:
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3972
		if (nvlist_add_string(nvlist, ZFS_SMB_ACL_SRC,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3973
		    resource1) != 0) {
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3974
				(void) no_memory(hdl);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3975
				return (-1);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3976
		}
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3977
		if (nvlist_add_string(nvlist, ZFS_SMB_ACL_TARGET,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3978
		    resource2) != 0) {
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3979
				(void) no_memory(hdl);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3980
				return (-1);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3981
		}
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3982
		if (zcmd_write_src_nvlist(hdl, &zc, nvlist) != 0) {
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3983
			nvlist_free(nvlist);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3984
			return (-1);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3985
		}
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3986
		break;
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3987
	case ZFS_SMB_ACL_PURGE:
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3988
		break;
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3989
	default:
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3990
		return (-1);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3991
	}
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3992
	error = ioctl(hdl->libzfs_fd, ZFS_IOC_SMB_ACL, &zc);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3993
	if (nvlist)
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3994
		nvlist_free(nvlist);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3995
	return (error);
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3996
}
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3997
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3998
int
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  3999
zfs_smb_acl_add(libzfs_handle_t *hdl, char *dataset,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4000
    char *path, char *resource)
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4001
{
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4002
	return (zfs_smb_acl_mgmt(hdl, dataset, path, ZFS_SMB_ACL_ADD,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4003
	    resource, NULL));
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4004
}
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4005
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4006
int
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4007
zfs_smb_acl_remove(libzfs_handle_t *hdl, char *dataset,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4008
    char *path, char *resource)
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4009
{
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4010
	return (zfs_smb_acl_mgmt(hdl, dataset, path, ZFS_SMB_ACL_REMOVE,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4011
	    resource, NULL));
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4012
}
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4013
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4014
int
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4015
zfs_smb_acl_purge(libzfs_handle_t *hdl, char *dataset, char *path)
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4016
{
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4017
	return (zfs_smb_acl_mgmt(hdl, dataset, path, ZFS_SMB_ACL_PURGE,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4018
	    NULL, NULL));
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4019
}
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4020
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4021
int
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4022
zfs_smb_acl_rename(libzfs_handle_t *hdl, char *dataset, char *path,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4023
    char *oldname, char *newname)
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4024
{
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4025
	return (zfs_smb_acl_mgmt(hdl, dataset, path, ZFS_SMB_ACL_RENAME,
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4026
	    oldname, newname));
91af0d9c0790 6800942 smb_session_create() incorrectly stores IP addresses
Alan Wright <amw@Sun.COM>
parents: 8811
diff changeset
  4027
}
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4028
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4029
int
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4030
zfs_userspace(zfs_handle_t *zhp, zfs_userquota_prop_t type,
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4031
    zfs_userspace_cb_t func, void *arg)
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4032
{
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4033
	zfs_cmd_t zc = { 0 };
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4034
	zfs_useracct_t buf[100];
13871
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4035
	libzfs_handle_t *hdl = zhp->zfs_hdl;
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4036
	int ret;
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4037
13552
f0e12b33f77c 1644 add ZFS "clones" property
Matthew Ahrens <matt@delphix.com>
parents: 13540
diff changeset
  4038
	(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4039
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4040
	zc.zc_objset_type = type;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4041
	zc.zc_nvlist_dst = (uintptr_t)buf;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4042
13871
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4043
	for (;;) {
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4044
		zfs_useracct_t *zua = buf;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4045
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4046
		zc.zc_nvlist_dst_size = sizeof (buf);
13871
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4047
		if (zfs_ioctl(hdl, ZFS_IOC_USERSPACE_MANY, &zc) != 0) {
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4048
			char errbuf[1024];
13871
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4049
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4050
			(void) snprintf(errbuf, sizeof (errbuf),
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4051
			    dgettext(TEXT_DOMAIN,
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4052
			    "cannot get used/quota for %s"), zc.zc_name);
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4053
			return (zfs_standard_error_fmt(hdl, errno, errbuf));
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4054
		}
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4055
		if (zc.zc_nvlist_dst_size == 0)
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4056
			break;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4057
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4058
		while (zc.zc_nvlist_dst_size > 0) {
13871
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4059
			if ((ret = func(arg, zua->zu_domain, zua->zu_rid,
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4060
			    zua->zu_space)) != 0)
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4061
				return (ret);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4062
			zua++;
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4063
			zc.zc_nvlist_dst_size -= sizeof (zfs_useracct_t);
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4064
		}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4065
	}
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4066
13871
4b38a0c01186 3098 zfs userspace/groupspace fail without saying why when run as non-root
Yuri Pankov <yuri.pankov@nexenta.com>
parents: 13838
diff changeset
  4067
	return (0);
9396
f41cf682d0d3 PSARC/2009/204 ZFS user/group quotas & space accounting
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 8845
diff changeset
  4068
}
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4069
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4070
struct holdarg {
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4071
	nvlist_t *nvl;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4072
	const char *snapname;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4073
	const char *tag;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4074
	boolean_t recursive;
14138
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4075
	int error;
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4076
};
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4077
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4078
static int
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4079
zfs_hold_one(zfs_handle_t *zhp, void *arg)
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4080
{
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4081
	struct holdarg *ha = arg;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4082
	char name[ZFS_MAXNAMELEN];
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4083
	int rv = 0;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4084
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4085
	(void) snprintf(name, sizeof (name),
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4086
	    "%s@%s", zhp->zfs_name, ha->snapname);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4087
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4088
	if (lzc_exists(name))
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4089
		fnvlist_add_string(ha->nvl, name, ha->tag);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4090
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4091
	if (ha->recursive)
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4092
		rv = zfs_iter_filesystems(zhp, zfs_hold_one, ha);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4093
	zfs_close(zhp);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4094
	return (rv);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4095
}
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4096
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4097
int
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4098
zfs_hold(zfs_handle_t *zhp, const char *snapname, const char *tag,
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4099
    boolean_t recursive, int cleanup_fd)
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4100
{
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4101
	int ret;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4102
	struct holdarg ha;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4103
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4104
	ha.nvl = fnvlist_alloc();
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4105
	ha.snapname = snapname;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4106
	ha.tag = tag;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4107
	ha.recursive = recursive;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4108
	(void) zfs_hold_one(zfs_handle_dup(zhp), &ha);
14107
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4109
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4110
	if (nvlist_empty(ha.nvl)) {
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4111
		char errbuf[1024];
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4112
14107
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4113
		fnvlist_free(ha.nvl);
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4114
		ret = ENOENT;
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4115
		(void) snprintf(errbuf, sizeof (errbuf),
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4116
		    dgettext(TEXT_DOMAIN,
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4117
		    "cannot hold snapshot '%s@%s'"),
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4118
		    zhp->zfs_name, snapname);
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4119
		(void) zfs_standard_error(zhp->zfs_hdl, ret, errbuf);
14107
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4120
		return (ret);
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4121
	}
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4122
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4123
	ret = zfs_hold_nvl(zhp, cleanup_fd, ha.nvl);
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4124
	fnvlist_free(ha.nvl);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4125
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4126
	return (ret);
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4127
}
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4129
int
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4130
zfs_hold_nvl(zfs_handle_t *zhp, int cleanup_fd, nvlist_t *holds)
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4131
{
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4132
	int ret;
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4133
	nvlist_t *errors;
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4134
	libzfs_handle_t *hdl = zhp->zfs_hdl;
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4135
	char errbuf[1024];
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4136
	nvpair_t *elem;
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4137
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4138
	errors = NULL;
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4139
	ret = lzc_hold(holds, cleanup_fd, &errors);
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4140
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4141
	if (ret == 0) {
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4142
		/* There may be errors even in the success case. */
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4143
		fnvlist_free(errors);
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4144
		return (0);
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4145
	}
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4146
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4147
	if (nvlist_empty(errors)) {
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4148
		/* no hold-specific errors */
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4149
		(void) snprintf(errbuf, sizeof (errbuf),
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4150
		    dgettext(TEXT_DOMAIN, "cannot hold"));
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4151
		switch (ret) {
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4152
		case ENOTSUP:
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4153
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4154
			    "pool must be upgraded"));
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4155
			(void) zfs_error(hdl, EZFS_BADVERSION, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4156
			break;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4157
		case EINVAL:
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4158
			(void) zfs_error(hdl, EZFS_BADTYPE, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4159
			break;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4160
		default:
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4161
			(void) zfs_standard_error(hdl, ret, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4162
		}
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4163
	}
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4164
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4165
	for (elem = nvlist_next_nvpair(errors, NULL);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4166
	    elem != NULL;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4167
	    elem = nvlist_next_nvpair(errors, elem)) {
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4168
		(void) snprintf(errbuf, sizeof (errbuf),
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4169
		    dgettext(TEXT_DOMAIN,
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4170
		    "cannot hold snapshot '%s'"), nvpair_name(elem));
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4171
		switch (fnvpair_value_int32(elem)) {
10951
56fd5475e8fe 6896756 assertion failed: 0 == dsl_pool_user_hold(dp, ds->ds_object, htag, &now, tx)
Chris Kirby <Chris.Kirby@sun.com>
parents: 10922
diff changeset
  4172
		case E2BIG:
56fd5475e8fe 6896756 assertion failed: 0 == dsl_pool_user_hold(dp, ds->ds_object, htag, &now, tx)
Chris Kirby <Chris.Kirby@sun.com>
parents: 10922
diff changeset
  4173
			/*
56fd5475e8fe 6896756 assertion failed: 0 == dsl_pool_user_hold(dp, ds->ds_object, htag, &now, tx)
Chris Kirby <Chris.Kirby@sun.com>
parents: 10922
diff changeset
  4174
			 * Temporary tags wind up having the ds object id
56fd5475e8fe 6896756 assertion failed: 0 == dsl_pool_user_hold(dp, ds->ds_object, htag, &now, tx)
Chris Kirby <Chris.Kirby@sun.com>
parents: 10922
diff changeset
  4175
			 * prepended. So even if we passed the length check
56fd5475e8fe 6896756 assertion failed: 0 == dsl_pool_user_hold(dp, ds->ds_object, htag, &now, tx)
Chris Kirby <Chris.Kirby@sun.com>
parents: 10922
diff changeset
  4176
			 * above, it's still possible for the tag to wind
56fd5475e8fe 6896756 assertion failed: 0 == dsl_pool_user_hold(dp, ds->ds_object, htag, &now, tx)
Chris Kirby <Chris.Kirby@sun.com>
parents: 10922
diff changeset
  4177
			 * up being slightly too long.
56fd5475e8fe 6896756 assertion failed: 0 == dsl_pool_user_hold(dp, ds->ds_object, htag, &now, tx)
Chris Kirby <Chris.Kirby@sun.com>
parents: 10922
diff changeset
  4178
			 */
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4179
			(void) zfs_error(hdl, EZFS_TAGTOOLONG, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4180
			break;
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4181
		case EINVAL:
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4182
			(void) zfs_error(hdl, EZFS_BADTYPE, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4183
			break;
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4184
		case EEXIST:
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4185
			(void) zfs_error(hdl, EZFS_REFTAG_HOLD, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4186
			break;
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4187
		default:
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4188
			(void) zfs_standard_error(hdl,
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4189
			    fnvpair_value_int32(elem), errbuf);
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4190
		}
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4191
	}
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4192
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4193
	fnvlist_free(errors);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4194
	return (ret);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4195
}
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4196
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4197
static int
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4198
zfs_release_one(zfs_handle_t *zhp, void *arg)
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4199
{
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4200
	struct holdarg *ha = arg;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4201
	char name[ZFS_MAXNAMELEN];
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4202
	int rv = 0;
14138
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4203
	nvlist_t *existing_holds;
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4204
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4205
	(void) snprintf(name, sizeof (name),
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4206
	    "%s@%s", zhp->zfs_name, ha->snapname);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4207
14138
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4208
	if (lzc_get_holds(name, &existing_holds) != 0) {
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4209
		ha->error = ENOENT;
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4210
	} else if (!nvlist_exists(existing_holds, ha->tag)) {
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4211
		ha->error = ESRCH;
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4212
	} else {
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4213
		nvlist_t *torelease = fnvlist_alloc();
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4214
		fnvlist_add_boolean(torelease, ha->tag);
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4215
		fnvlist_add_nvlist(ha->nvl, name, torelease);
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4216
		fnvlist_free(torelease);
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4217
	}
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4218
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4219
	if (ha->recursive)
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4220
		rv = zfs_iter_filesystems(zhp, zfs_release_one, ha);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4221
	zfs_close(zhp);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4222
	return (rv);
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4223
}
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4224
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4225
int
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4226
zfs_release(zfs_handle_t *zhp, const char *snapname, const char *tag,
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4227
    boolean_t recursive)
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4228
{
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4229
	int ret;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4230
	struct holdarg ha;
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4231
	nvlist_t *errors = NULL;
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4232
	nvpair_t *elem;
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4233
	libzfs_handle_t *hdl = zhp->zfs_hdl;
14107
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4234
	char errbuf[1024];
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4235
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4236
	ha.nvl = fnvlist_alloc();
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4237
	ha.snapname = snapname;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4238
	ha.tag = tag;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4239
	ha.recursive = recursive;
14138
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4240
	ha.error = 0;
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4241
	(void) zfs_release_one(zfs_handle_dup(zhp), &ha);
14107
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4242
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4243
	if (nvlist_empty(ha.nvl)) {
14107
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4244
		fnvlist_free(ha.nvl);
14138
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4245
		ret = ha.error;
14107
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4246
		(void) snprintf(errbuf, sizeof (errbuf),
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4247
		    dgettext(TEXT_DOMAIN,
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4248
		    "cannot release hold from snapshot '%s@%s'"),
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4249
		    zhp->zfs_name, snapname);
14138
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4250
		if (ret == ESRCH) {
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4251
			(void) zfs_error(hdl, EZFS_REFTAG_RELE, errbuf);
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4252
		} else {
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4253
			(void) zfs_standard_error(hdl, ret, errbuf);
aeb4e8fef072 3829 fix for 3740 changed behavior of zfs destroy/hold/release ioctl
Matthew Ahrens <mahrens@delphix.com>
parents: 14128
diff changeset
  4254
		}
14107
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4255
		return (ret);
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4256
	}
e4eb37f33d60 3699 zfs hold or release of a non-existent snapshot does not output error
Martin Matuska <mm@FreeBSD.org>
parents: 14046
diff changeset
  4257
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4258
	ret = lzc_release(ha.nvl, &errors);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4259
	fnvlist_free(ha.nvl);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4260
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4261
	if (ret == 0) {
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4262
		/* There may be errors even in the success case. */
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4263
		fnvlist_free(errors);
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4264
		return (0);
14128
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4265
	}
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4266
1a272fe1337b 3740 Poor ZFS send / receive performance due to snapshot hold / release processing
Steven Hartland <smh@freebsd.org>
parents: 14121
diff changeset
  4267
	if (nvlist_empty(errors)) {
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4268
		/* no hold-specific errors */
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4269
		(void) snprintf(errbuf, sizeof (errbuf), dgettext(TEXT_DOMAIN,
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4270
		    "cannot release"));
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4271
		switch (errno) {
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4272
		case ENOTSUP:
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4273
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4274
			    "pool must be upgraded"));
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4275
			(void) zfs_error(hdl, EZFS_BADVERSION, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4276
			break;
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4277
		default:
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4278
			(void) zfs_standard_error_fmt(hdl, errno, errbuf);
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4279
		}
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4280
	}
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4281
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4282
	for (elem = nvlist_next_nvpair(errors, NULL);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4283
	    elem != NULL;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4284
	    elem = nvlist_next_nvpair(errors, elem)) {
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4285
		(void) snprintf(errbuf, sizeof (errbuf),
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4286
		    dgettext(TEXT_DOMAIN,
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4287
		    "cannot release hold from snapshot '%s'"),
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4288
		    nvpair_name(elem));
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4289
		switch (fnvpair_value_int32(elem)) {
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4290
		case ESRCH:
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4291
			(void) zfs_error(hdl, EZFS_REFTAG_RELE, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4292
			break;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4293
		case EINVAL:
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4294
			(void) zfs_error(hdl, EZFS_BADTYPE, errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4295
			break;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4296
		default:
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4297
			(void) zfs_standard_error_fmt(hdl,
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4298
			    fnvpair_value_int32(elem), errbuf);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4299
		}
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4300
	}
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4301
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4302
	fnvlist_free(errors);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4303
	return (ret);
10242
c40d075fbca6 PSARC/2009/297 zfs snapshot holds
Chris Kirby <chris.kirby@sun.com>
parents: 10204
diff changeset
  4304
}
10342
108f0058f837 6833815 scheduled snapshots deleted per snapshot policy can lead to replication failures
Chris Kirby <chris.kirby@sun.com>
parents: 10298
diff changeset
  4305
13246
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4306
int
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4307
zfs_get_fsacl(zfs_handle_t *zhp, nvlist_t **nvl)
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4308
{
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4309
	zfs_cmd_t zc = { 0 };
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4310
	libzfs_handle_t *hdl = zhp->zfs_hdl;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4311
	int nvsz = 2048;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4312
	void *nvbuf;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4313
	int err = 0;
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4314
	char errbuf[1024];
13246
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4315
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4316
	assert(zhp->zfs_type == ZFS_TYPE_VOLUME ||
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4317
	    zhp->zfs_type == ZFS_TYPE_FILESYSTEM);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4318
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4319
tryagain:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4320
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4321
	nvbuf = malloc(nvsz);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4322
	if (nvbuf == NULL) {
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4323
		err = (zfs_error(hdl, EZFS_NOMEM, strerror(errno)));
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4324
		goto out;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4325
	}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4326
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4327
	zc.zc_nvlist_dst_size = nvsz;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4328
	zc.zc_nvlist_dst = (uintptr_t)nvbuf;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4329
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4330
	(void) strlcpy(zc.zc_name, zhp->zfs_name, ZFS_MAXNAMELEN);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4331
13611
72c96cded60f 1949 crash during reguid causes stale config
George Wilson <george.wilson@delphix.com>
parents: 13552
diff changeset
  4332
	if (ioctl(hdl->libzfs_fd, ZFS_IOC_GET_FSACL, &zc) != 0) {
13246
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4333
		(void) snprintf(errbuf, sizeof (errbuf),
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4334
		    dgettext(TEXT_DOMAIN, "cannot get permissions on '%s'"),
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4335
		    zc.zc_name);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4336
		switch (errno) {
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4337
		case ENOMEM:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4338
			free(nvbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4339
			nvsz = zc.zc_nvlist_dst_size;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4340
			goto tryagain;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4341
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4342
		case ENOTSUP:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4343
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4344
			    "pool must be upgraded"));
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4345
			err = zfs_error(hdl, EZFS_BADVERSION, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4346
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4347
		case EINVAL:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4348
			err = zfs_error(hdl, EZFS_BADTYPE, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4349
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4350
		case ENOENT:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4351
			err = zfs_error(hdl, EZFS_NOENT, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4352
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4353
		default:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4354
			err = zfs_standard_error_fmt(hdl, errno, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4355
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4356
		}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4357
	} else {
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4358
		/* success */
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4359
		int rc = nvlist_unpack(nvbuf, zc.zc_nvlist_dst_size, nvl, 0);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4360
		if (rc) {
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4361
			(void) snprintf(errbuf, sizeof (errbuf), dgettext(
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4362
			    TEXT_DOMAIN, "cannot get permissions on '%s'"),
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4363
			    zc.zc_name);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4364
			err = zfs_standard_error_fmt(hdl, rc, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4365
		}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4366
	}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4367
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4368
	free(nvbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4369
out:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4370
	return (err);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4371
}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4372
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4373
int
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4374
zfs_set_fsacl(zfs_handle_t *zhp, boolean_t un, nvlist_t *nvl)
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4375
{
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4376
	zfs_cmd_t zc = { 0 };
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4377
	libzfs_handle_t *hdl = zhp->zfs_hdl;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4378
	char *nvbuf;
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4379
	char errbuf[1024];
13246
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4380
	size_t nvsz;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4381
	int err;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4382
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4383
	assert(zhp->zfs_type == ZFS_TYPE_VOLUME ||
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4384
	    zhp->zfs_type == ZFS_TYPE_FILESYSTEM);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4385
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4386
	err = nvlist_size(nvl, &nvsz, NV_ENCODE_NATIVE);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4387
	assert(err == 0);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4388
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4389
	nvbuf = malloc(nvsz);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4390
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4391
	err = nvlist_pack(nvl, &nvbuf, &nvsz, NV_ENCODE_NATIVE, 0);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4392
	assert(err == 0);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4393
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4394
	zc.zc_nvlist_src_size = nvsz;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4395
	zc.zc_nvlist_src = (uintptr_t)nvbuf;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4396
	zc.zc_perm_action = un;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4397
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4398
	(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name));
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4399
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4400
	if (zfs_ioctl(hdl, ZFS_IOC_SET_FSACL, &zc) != 0) {
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4401
		(void) snprintf(errbuf, sizeof (errbuf),
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4402
		    dgettext(TEXT_DOMAIN, "cannot set permissions on '%s'"),
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4403
		    zc.zc_name);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4404
		switch (errno) {
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4405
		case ENOTSUP:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4406
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4407
			    "pool must be upgraded"));
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4408
			err = zfs_error(hdl, EZFS_BADVERSION, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4409
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4410
		case EINVAL:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4411
			err = zfs_error(hdl, EZFS_BADTYPE, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4412
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4413
		case ENOENT:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4414
			err = zfs_error(hdl, EZFS_NOENT, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4415
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4416
		default:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4417
			err = zfs_standard_error_fmt(hdl, errno, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4418
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4419
		}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4420
	}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4421
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4422
	free(nvbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4423
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4424
	return (err);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4425
}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4426
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4427
int
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4428
zfs_get_holds(zfs_handle_t *zhp, nvlist_t **nvl)
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4429
{
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4430
	int err;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4431
	char errbuf[1024];
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4432
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4433
	err = lzc_get_holds(zhp->zfs_name, nvl);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4434
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4435
	if (err != 0) {
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4436
		libzfs_handle_t *hdl = zhp->zfs_hdl;
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4437
13246
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4438
		(void) snprintf(errbuf, sizeof (errbuf),
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4439
		    dgettext(TEXT_DOMAIN, "cannot get holds for '%s'"),
14046
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4440
		    zhp->zfs_name);
4972ab336f54 3464 zfs synctask code needs restructuring
Matthew Ahrens <mahrens@delphix.com>
parents: 14040
diff changeset
  4441
		switch (err) {
13246
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4442
		case ENOTSUP:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4443
			zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4444
			    "pool must be upgraded"));
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4445
			err = zfs_error(hdl, EZFS_BADVERSION, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4446
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4447
		case EINVAL:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4448
			err = zfs_error(hdl, EZFS_BADTYPE, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4449
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4450
		case ENOENT:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4451
			err = zfs_error(hdl, EZFS_NOENT, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4452
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4453
		default:
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4454
			err = zfs_standard_error_fmt(hdl, errno, errbuf);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4455
			break;
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4456
		}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4457
	}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4458
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4459
	return (err);
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4460
}
fe5d6e0b0bce 278 get rid zfs of python and pyzfs dependencies
Alexander Stetsenko <ams@nexenta.com>
parents: 13055
diff changeset
  4461
14121
9475b3fef59d 3741 zfs needs better comments
Will Andrews <will@firepipe.net>
parents: 14107
diff changeset
  4462
/*
9475b3fef59d 3741 zfs needs better comments
Will Andrews <will@firepipe.net>
parents: 14107
diff changeset
  4463
 * Convert the zvol's volume size to an appropriate reservation.
9475b3fef59d 3741 zfs needs better comments
Will Andrews <will@firepipe.net>
parents: 14107
diff changeset
  4464
 * Note: If this routine is updated, it is necessary to update the ZFS test
9475b3fef59d 3741 zfs needs better comments
Will Andrews <will@firepipe.net>
parents: 14107
diff changeset
  4465
 * suite's shell version in reservation.kshlib.
9475b3fef59d 3741 zfs needs better comments
Will Andrews <will@firepipe.net>
parents: 14107
diff changeset
  4466
 */
11449
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4467
uint64_t
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4468
zvol_volsize_to_reservation(uint64_t volsize, nvlist_t *props)
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4469
{
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4470
	uint64_t numdb;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4471
	uint64_t nblocks, volblocksize;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4472
	int ncopies;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4473
	char *strval;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4474
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4475
	if (nvlist_lookup_string(props,
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4476
	    zfs_prop_to_name(ZFS_PROP_COPIES), &strval) == 0)
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4477
		ncopies = atoi(strval);
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4478
	else
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4479
		ncopies = 1;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4480
	if (nvlist_lookup_uint64(props,
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4481
	    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE),
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4482
	    &volblocksize) != 0)
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4483
		volblocksize = ZVOL_DEFAULT_BLOCKSIZE;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4484
	nblocks = volsize/volblocksize;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4485
	/* start with metadnode L0-L6 */
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4486
	numdb = 7;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4487
	/* calculate number of indirects */
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4488
	while (nblocks > 1) {
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4489
		nblocks += DNODES_PER_LEVEL - 1;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4490
		nblocks /= DNODES_PER_LEVEL;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4491
		numdb += nblocks;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4492
	}
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4493
	numdb *= MIN(SPA_DVAS_PER_BP, ncopies + 1);
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4494
	volsize *= ncopies;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4495
	/*
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4496
	 * this is exactly DN_MAX_INDBLKSHIFT when metadata isn't
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4497
	 * compressed, but in practice they compress down to about
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4498
	 * 1100 bytes
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4499
	 */
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4500
	numdb *= 1ULL << DN_MAX_INDBLKSHIFT;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4501
	volsize += numdb;
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4502
	return (volsize);
a6be67f77b9f 6429996 zvols don't reserve enough space for requisite meta data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 11417
diff changeset
  4503
}