xref: /freebsd/sys/cddl/compat/opensolaris/sys/vfs.h (revision 42249ef2)
1 /*-
2  * Copyright (c) 2007 Pawel Jakub Dawidek <pjd@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28 
29 #ifndef _OPENSOLARIS_SYS_VFS_H_
30 #define	_OPENSOLARIS_SYS_VFS_H_
31 
32 #include <sys/param.h>
33 
34 #ifdef _KERNEL
35 
36 #include <sys/mount.h>
37 #include <sys/vnode.h>
38 
39 #define	rootdir	rootvnode
40 
41 typedef	struct mount	vfs_t;
42 
43 #define	vfs_flag	mnt_flag
44 #define	vfs_data	mnt_data
45 #define	vfs_count	mnt_ref
46 #define	vfs_fsid	mnt_stat.f_fsid
47 #define	vfs_bsize	mnt_stat.f_bsize
48 #define	vfs_resource	mnt_stat.f_mntfromname
49 
50 #define	v_flag		v_vflag
51 #define	v_vfsp		v_mount
52 
53 #define	VFS_RDONLY	MNT_RDONLY
54 #define	VFS_NOSETUID	MNT_NOSUID
55 #define	VFS_NOEXEC	MNT_NOEXEC
56 
57 #define	fs_vscan(vp, cr, async)	(0)
58 
59 #define	VROOT		VV_ROOT
60 
61 /*
62  * Structure defining a mount option for a filesystem.
63  * option names are found in mntent.h
64  */
65 typedef struct mntopt {
66 	char	*mo_name;	/* option name */
67 	char	**mo_cancel;	/* list of options cancelled by this one */
68 	char	*mo_arg;	/* argument string for this option */
69 	int	mo_flags;	/* flags for this mount option */
70 	void	*mo_data;	/* filesystem specific data */
71 } mntopt_t;
72 
73 /*
74  * Flags that apply to mount options
75  */
76 
77 #define	MO_SET		0x01		/* option is set */
78 #define	MO_NODISPLAY	0x02		/* option not listed in mnttab */
79 #define	MO_HASVALUE	0x04		/* option takes a value */
80 #define	MO_IGNORE	0x08		/* option ignored by parser */
81 #define	MO_DEFAULT	MO_SET		/* option is on by default */
82 #define	MO_TAG		0x10		/* flags a tag set by user program */
83 #define	MO_EMPTY	0x20		/* empty space in option table */
84 
85 #define	VFS_NOFORCEOPT	0x01		/* honor MO_IGNORE (don't set option) */
86 #define	VFS_DISPLAY	0x02		/* Turn off MO_NODISPLAY bit for opt */
87 #define	VFS_NODISPLAY	0x04		/* Turn on MO_NODISPLAY bit for opt */
88 #define	VFS_CREATEOPT	0x08		/* Create the opt if it's not there */
89 
90 /*
91  * Structure holding mount option strings for the mounted file system.
92  */
93 typedef struct mntopts {
94 	uint_t		mo_count;		/* number of entries in table */
95 	mntopt_t	*mo_list;		/* list of mount options */
96 } mntopts_t;
97 
98 void vfs_setmntopt(vfs_t *vfsp, const char *name, const char *arg,
99     int flags __unused);
100 void vfs_clearmntopt(vfs_t *vfsp, const char *name);
101 int vfs_optionisset(const vfs_t *vfsp, const char *opt, char **argp);
102 int mount_snapshot(kthread_t *td, vnode_t **vpp, const char *fstype,
103     char *fspath, char *fspec, int fsflags);
104 
105 typedef	uint64_t	vfs_feature_t;
106 
107 #define	VFSFT_XVATTR		0x100000001	/* Supports xvattr for attrs */
108 #define	VFSFT_CASEINSENSITIVE	0x100000002	/* Supports case-insensitive */
109 #define	VFSFT_NOCASESENSITIVE	0x100000004	/* NOT case-sensitive */
110 #define	VFSFT_DIRENTFLAGS	0x100000008	/* Supports dirent flags */
111 #define	VFSFT_ACLONCREATE	0x100000010	/* Supports ACL on create */
112 #define	VFSFT_ACEMASKONACCESS	0x100000020	/* Can use ACEMASK for access */
113 #define	VFSFT_SYSATTR_VIEWS	0x100000040	/* Supports sysattr view i/f */
114 #define	VFSFT_ACCESS_FILTER	0x100000080	/* dirents filtered by access */
115 #define	VFSFT_REPARSE		0x100000100	/* Supports reparse point */
116 #define	VFSFT_ZEROCOPY_SUPPORTED	0x100000200
117 				/* Support loaning /returning cache buffer */
118 
119 #define	vfs_set_feature(vfsp, feature)		do { } while (0)
120 #define	vfs_clear_feature(vfsp, feature)	do { } while (0)
121 #define	vfs_has_feature(vfsp, feature)		(0)
122 
123 #endif	/* _KERNEL */
124 
125 #endif	/* _OPENSOLARIS_SYS_VFS_H_ */
126