usr/src/uts/common/fs/zfs/sys/zfs_vfsops.h
author marks
Mon, 14 Jan 2008 08:49:26 -0800
changeset 5824 1d2d522d19b5
parent 5498 334b476844ca
child 6083 23e77aa611b1
permissions -rw-r--r--
6603908 can't change mode if FS/dir is out of quota
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
3461
c19b22f347d6 6514331 in-memory delete queue is not needed
ahrens
parents: 789
diff changeset
     5
 * Common Development and Distribution License (the "License").
c19b22f347d6 6514331 in-memory delete queue is not needed
ahrens
parents: 789
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
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    21
/*
5824
1d2d522d19b5 6603908 can't change mode if FS/dir is out of quota
marks
parents: 5498
diff changeset
    22
 * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    23
 * Use is subject to license terms.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    26
#ifndef	_SYS_FS_ZFS_VFSOPS_H
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    27
#define	_SYS_FS_ZFS_VFSOPS_H
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    28
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
#pragma ident	"%Z%%M%	%I%	%E% SMI"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
#include <sys/isa_defs.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
#include <sys/types32.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    33
#include <sys/list.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    34
#include <sys/vfs.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    35
#include <sys/zil.h>
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
    36
#include <sys/rrwlock.h>
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
    37
#include <sys/zfs_ioctl.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
extern "C" {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
typedef struct zfsvfs zfsvfs_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
struct zfsvfs {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    46
	vfs_t		*z_vfs;		/* generic fs struct */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    47
	zfsvfs_t	*z_parent;	/* parent fs */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    48
	objset_t	*z_os;		/* objset reference */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    49
	uint64_t	z_root;		/* id of root znode */
3461
c19b22f347d6 6514331 in-memory delete queue is not needed
ahrens
parents: 789
diff changeset
    50
	uint64_t	z_unlinkedobj;	/* id of unlinked zapobj */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    51
	uint64_t	z_max_blksz;	/* maximum block size for files */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    52
	uint64_t	z_assign;	/* TXG_NOWAIT or set by zil_replay() */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    53
	uint64_t	z_fuid_obj;	/* fuid table object number */
5824
1d2d522d19b5 6603908 can't change mode if FS/dir is out of quota
marks
parents: 5498
diff changeset
    54
	uint64_t	z_fuid_size;	/* fuid table size */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    55
	avl_tree_t	z_fuid_idx;	/* fuid tree keyed by index */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    56
	avl_tree_t	z_fuid_domain;	/* fuid tree keyed by domain */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    57
	krwlock_t	z_fuid_lock;	/* fuid lock */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    58
	boolean_t	z_fuid_loaded;	/* fuid tables are loaded */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    59
	struct zfs_fuid_info	*z_fuid_replay; /* fuid info for replay */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    60
	zilog_t		*z_log;		/* intent log pointer */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    61
	uint_t		z_acl_mode;	/* acl chmod/mode behavior */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    62
	uint_t		z_acl_inherit;	/* acl inheritance behavior */
5498
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
    63
	zfs_case_t	z_case;		/* case-sense */
334b476844ca 6622831 normalization properties are not preserved by "zfs send"
timh
parents: 5331
diff changeset
    64
	boolean_t	z_utf8;		/* utf8-only */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    65
	int		z_norm;		/* normalization flags */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
	boolean_t	z_atime;	/* enable atimes mount option */
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4720
diff changeset
    67
	boolean_t	z_unmounted;	/* unmounted */
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
    68
	rrwlock_t	z_teardown_lock;
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
    69
	krwlock_t	z_teardown_inactive_lock;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    70
	list_t		z_all_znodes;	/* all vnodes in the fs */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    71
	kmutex_t	z_znodes_lock;	/* lock for z_all_znodes */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    72
	vnode_t		*z_ctldir;	/* .zfs directory pointer */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    73
	boolean_t	z_show_ctldir;	/* expose .zfs in the root dir */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    74
	boolean_t	z_issnap;	/* true if this is a snapshot */
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    75
	boolean_t	z_vscan;	/* virus scan on/off */
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 5326
diff changeset
    76
	boolean_t	z_use_fuids;	/* version allows fuids */
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 3461
diff changeset
    77
	uint64_t	z_version;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    78
#define	ZFS_OBJ_MTX_SZ	64
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    79
	kmutex_t	z_hold_mtx[ZFS_OBJ_MTX_SZ];	/* znode hold locks */
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
/*
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    83
 * Normal filesystems (those not under .zfs/snapshot) have a total
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    84
 * file ID size limited to 12 bytes (including the length field) due to
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    85
 * NFSv2 protocol's limitation of 32 bytes for a filehandle.  For historical
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    86
 * reasons, this same limit is being imposed by the Solaris NFSv3 implementation
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    87
 * (although the NFSv3 protocol actually permits a maximum of 64 bytes).  It
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    88
 * is not possible to expand beyond 12 bytes without abandoning support
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    89
 * of NFSv2.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    90
 *
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    91
 * For normal filesystems, we partition up the available space as follows:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    92
 *	2 bytes		fid length (required)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    93
 *	6 bytes		object number (48 bits)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    94
 *	4 bytes		generation number (32 bits)
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    95
 *
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    96
 * We reserve only 48 bits for the object number, as this is the limit
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    97
 * currently defined and imposed by the DMU.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    98
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    99
typedef struct zfid_short {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   100
	uint16_t	zf_len;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   101
	uint8_t		zf_object[6];		/* obj[i] = obj >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   102
	uint8_t		zf_gen[4];		/* gen[i] = gen >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   103
} zfid_short_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   104
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   105
/*
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   106
 * Filesystems under .zfs/snapshot have a total file ID size of 22 bytes
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   107
 * (including the length field).  This makes files under .zfs/snapshot
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   108
 * accessible by NFSv3 and NFSv4, but not NFSv2.
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   109
 *
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   110
 * For files under .zfs/snapshot, we partition up the available space
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   111
 * as follows:
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   112
 *	2 bytes		fid length (required)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   113
 *	6 bytes		object number (48 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   114
 *	4 bytes		generation number (32 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   115
 *	6 bytes		objset id (48 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   116
 *	4 bytes		currently just zero (32 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   117
 *
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   118
 * We reserve only 48 bits for the object number and objset id, as these are
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   119
 * the limits currently defined and imposed by the DMU.
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   120
 */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   121
typedef struct zfid_long {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   122
	zfid_short_t	z_fid;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   123
	uint8_t		zf_setid[6];		/* obj[i] = obj >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   124
	uint8_t		zf_setgen[4];		/* gen[i] = gen >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   125
} zfid_long_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   126
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   127
#define	SHORT_FID_LEN	(sizeof (zfid_short_t) - sizeof (uint16_t))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   128
#define	LONG_FID_LEN	(sizeof (zfid_long_t) - sizeof (uint16_t))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   129
4720
8edc0d2e6f3f 6535160 Lock contention on zl_lock from zil_commit
fr157268
parents: 4577
diff changeset
   130
extern uint_t zfs_fsyncer_key;
8edc0d2e6f3f 6535160 Lock contention on zl_lock from zil_commit
fr157268
parents: 4577
diff changeset
   131
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
   132
extern int zfs_suspend_fs(zfsvfs_t *zfsvfs, char *osname, int *mode);
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
   133
extern int zfs_resume_fs(zfsvfs_t *zfsvfs, const char *osname, int mode);
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
   134
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   135
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   136
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   137
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   138
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   139
#endif	/* _SYS_FS_ZFS_VFSOPS_H */