usr/src/uts/common/fs/zfs/sys/zfs_vfsops.h
author ek110237
Wed, 24 Oct 2007 16:54:46 -0700
changeset 5326 6752aa2bd5bc
parent 4820 acbb57436af2
child 5331 3047ad28a67b
permissions -rw-r--r--
6425096 want online 'zfs recv' (read only and read/write) 6597182 .zfs/snapshot code could use a little more comments
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
/*
3461
c19b22f347d6 6514331 in-memory delete queue is not needed
ahrens
parents: 789
diff changeset
    22
 * Copyright 2007 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>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
extern "C" {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
typedef struct zfsvfs zfsvfs_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
struct zfsvfs {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
	vfs_t		*z_vfs;		/* generic fs struct */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    46
	zfsvfs_t	*z_parent;	/* parent fs */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    47
	objset_t	*z_os;		/* objset reference */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    48
	uint64_t	z_root;		/* id of root znode */
3461
c19b22f347d6 6514331 in-memory delete queue is not needed
ahrens
parents: 789
diff changeset
    49
	uint64_t	z_unlinkedobj;	/* id of unlinked zapobj */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    50
	uint64_t	z_max_blksz;	/* maximum block size for files */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    51
	uint64_t	z_assign;	/* TXG_NOWAIT or set by zil_replay() */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    52
	zilog_t		*z_log;		/* intent log pointer */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    53
	uint_t		z_acl_mode;	/* acl chmod/mode behavior */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    54
	uint_t		z_acl_inherit;	/* acl inheritance behavior */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    55
	boolean_t	z_atime;	/* enable atimes mount option */
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4720
diff changeset
    56
	boolean_t	z_unmounted;	/* unmounted */
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
    57
	rrwlock_t	z_teardown_lock;
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
    58
	krwlock_t	z_teardown_inactive_lock;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    59
	list_t		z_all_znodes;	/* all vnodes in the fs */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    60
	kmutex_t	z_znodes_lock;	/* lock for z_all_znodes */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    61
	vnode_t		*z_ctldir;	/* .zfs directory pointer */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    62
	boolean_t	z_show_ctldir;	/* expose .zfs in the root dir */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    63
	boolean_t	z_issnap;	/* true if this is a snapshot */
4577
ed36b0e652bc PSARC/2007/328 zfs upgrade
ahrens
parents: 3461
diff changeset
    64
	uint64_t	z_version;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    65
#define	ZFS_OBJ_MTX_SZ	64
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
	kmutex_t	z_hold_mtx[ZFS_OBJ_MTX_SZ];	/* znode hold locks */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    67
};
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    68
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
/*
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    70
 * 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
    71
 * 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
    72
 * 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
    73
 * 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
    74
 * (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
    75
 * 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
    76
 * of NFSv2.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    77
 *
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    78
 * For normal filesystems, we partition up the available space as follows:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    79
 *	2 bytes		fid length (required)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    80
 *	6 bytes		object number (48 bits)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    81
 *	4 bytes		generation number (32 bits)
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    82
 *
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    83
 * We reserve only 48 bits for the object number, as this is the limit
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    84
 * currently defined and imposed by the DMU.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    85
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    86
typedef struct zfid_short {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    87
	uint16_t	zf_len;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    88
	uint8_t		zf_object[6];		/* obj[i] = obj >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    89
	uint8_t		zf_gen[4];		/* gen[i] = gen >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    90
} zfid_short_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    91
4820
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    92
/*
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    93
 * 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
    94
 * (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
    95
 * accessible by NFSv3 and NFSv4, but not NFSv2.
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    96
 *
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    97
 * 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
    98
 * as follows:
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
    99
 *	2 bytes		fid length (required)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   100
 *	6 bytes		object number (48 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   101
 *	4 bytes		generation number (32 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   102
 *	6 bytes		objset id (48 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   103
 *	4 bytes		currently just zero (32 bits)
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   104
 *
acbb57436af2 6588264 zpool_get_errlog() can attempt to calloc size 0
ek110237
parents: 4787
diff changeset
   105
 * 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
   106
 * 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
   107
 */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   108
typedef struct zfid_long {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   109
	zfid_short_t	z_fid;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   110
	uint8_t		zf_setid[6];		/* obj[i] = obj >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   111
	uint8_t		zf_setgen[4];		/* gen[i] = gen >> (8 * i) */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   112
} zfid_long_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   113
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   114
#define	SHORT_FID_LEN	(sizeof (zfid_short_t) - sizeof (uint16_t))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   115
#define	LONG_FID_LEN	(sizeof (zfid_long_t) - sizeof (uint16_t))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   116
4720
8edc0d2e6f3f 6535160 Lock contention on zl_lock from zil_commit
fr157268
parents: 4577
diff changeset
   117
extern uint_t zfs_fsyncer_key;
8edc0d2e6f3f 6535160 Lock contention on zl_lock from zil_commit
fr157268
parents: 4577
diff changeset
   118
5326
6752aa2bd5bc 6425096 want online 'zfs recv' (read only and read/write)
ek110237
parents: 4820
diff changeset
   119
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
   120
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
   121
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   122
#ifdef	__cplusplus
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   123
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   124
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   125
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   126
#endif	/* _SYS_FS_ZFS_VFSOPS_H */