1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or https://opensource.org/licenses/CDDL-1.0.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
22 * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
23 * Use is subject to license terms.
24 */
25
26#ifndef	_SYS_ZFS_SA_H
27#define	_SYS_ZFS_SA_H
28
29#ifdef _KERNEL
30#include <sys/types32.h>
31#include <sys/list.h>
32#include <sys/dmu.h>
33#include <sys/zfs_acl.h>
34#include <sys/zfs_znode.h>
35#include <sys/sa.h>
36#include <sys/zil.h>
37
38
39#endif
40
41#ifdef	__cplusplus
42extern "C" {
43#endif
44
45/*
46 * This is the list of known attributes
47 * to the ZPL.  The values of the actual
48 * attributes are not defined by the order
49 * the enums.  It is controlled by the attribute
50 * registration mechanism.  Two different file system
51 * could have different numeric values for the same
52 * attributes.  this list is only used for dereferencing
53 * into the table that will hold the actual numeric value.
54 */
55typedef enum zpl_attr {
56	ZPL_ATIME,
57	ZPL_MTIME,
58	ZPL_CTIME,
59	ZPL_CRTIME,
60	ZPL_GEN,
61	ZPL_MODE,
62	ZPL_SIZE,
63	ZPL_PARENT,
64	ZPL_LINKS,
65	ZPL_XATTR,
66	ZPL_RDEV,
67	ZPL_FLAGS,
68	ZPL_UID,
69	ZPL_GID,
70	ZPL_PAD,
71	ZPL_ZNODE_ACL,
72	ZPL_DACL_COUNT,
73	ZPL_SYMLINK,
74	ZPL_SCANSTAMP,
75	ZPL_DACL_ACES,
76	ZPL_DXATTR,
77	ZPL_PROJID,
78	ZPL_END
79} zpl_attr_t;
80
81#define	ZFS_OLD_ZNODE_PHYS_SIZE	0x108
82#define	ZFS_SA_BASE_ATTR_SIZE	(ZFS_OLD_ZNODE_PHYS_SIZE - \
83    sizeof (zfs_acl_phys_t))
84
85#define	SA_MODE_OFFSET		0
86#define	SA_SIZE_OFFSET		8
87#define	SA_GEN_OFFSET		16
88#define	SA_UID_OFFSET		24
89#define	SA_GID_OFFSET		32
90#define	SA_PARENT_OFFSET	40
91#define	SA_FLAGS_OFFSET		48
92#define	SA_PROJID_OFFSET	128
93
94extern const sa_attr_reg_t zfs_attr_table[ZPL_END + 1];
95
96/*
97 * This is a deprecated data structure that only exists for
98 * dealing with file systems create prior to ZPL version 5.
99 */
100typedef struct znode_phys {
101	uint64_t zp_atime[2];		/*  0 - last file access time */
102	uint64_t zp_mtime[2];		/* 16 - last file modification time */
103	uint64_t zp_ctime[2];		/* 32 - last file change time */
104	uint64_t zp_crtime[2];		/* 48 - creation time */
105	uint64_t zp_gen;		/* 64 - generation (txg of creation) */
106	uint64_t zp_mode;		/* 72 - file mode bits */
107	uint64_t zp_size;		/* 80 - size of file */
108	uint64_t zp_parent;		/* 88 - directory parent (`..') */
109	uint64_t zp_links;		/* 96 - number of links to file */
110	uint64_t zp_xattr;		/* 104 - DMU object for xattrs */
111	uint64_t zp_rdev;		/* 112 - dev_t for VBLK & VCHR files */
112	uint64_t zp_flags;		/* 120 - persistent flags */
113	uint64_t zp_uid;		/* 128 - file owner */
114	uint64_t zp_gid;		/* 136 - owning group */
115	uint64_t zp_zap;		/* 144 - extra attributes */
116	uint64_t zp_pad[3];		/* 152 - future */
117	zfs_acl_phys_t zp_acl;		/* 176 - 263 ACL */
118	/*
119	 * Data may pad out any remaining bytes in the znode buffer, eg:
120	 *
121	 * |<---------------------- dnode_phys (512) ------------------------>|
122	 * |<-- dnode (192) --->|<----------- "bonus" buffer (320) ---------->|
123	 *			|<---- znode (264) ---->|<---- data (56) ---->|
124	 *
125	 * At present, we use this space for the following:
126	 *  - symbolic links
127	 *  - 32-byte anti-virus scanstamp (regular files only)
128	 */
129} znode_phys_t;
130
131#ifdef _KERNEL
132
133#define	DXATTR_MAX_ENTRY_SIZE	(32768)
134#define	DXATTR_MAX_SA_SIZE	(SPA_OLD_MAXBLOCKSIZE >> 1)
135
136int zfs_sa_readlink(struct znode *, zfs_uio_t *);
137void zfs_sa_symlink(struct znode *, char *link, int len, dmu_tx_t *);
138void zfs_sa_get_scanstamp(struct znode *, xvattr_t *);
139void zfs_sa_set_scanstamp(struct znode *, xvattr_t *, dmu_tx_t *);
140int zfs_sa_get_xattr(struct znode *);
141int zfs_sa_set_xattr(struct znode *, const char *, const void *, size_t);
142void zfs_sa_upgrade(struct sa_handle  *, dmu_tx_t *);
143void zfs_sa_upgrade_txholds(dmu_tx_t *, struct znode *);
144void zfs_sa_init(void);
145void zfs_sa_fini(void);
146#endif
147
148#ifdef	__cplusplus
149}
150#endif
151
152#endif	/* _SYS_ZFS_SA_H */
153