xref: /netbsd/sys/ufs/ufs/ufsmount.h (revision c4a72b64)
1 /*	$NetBSD: ufsmount.h,v 1.10 2002/12/01 00:12:12 matt Exp $	*/
2 
3 /*
4  * Copyright (c) 1982, 1986, 1989, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *	This product includes software developed by the University of
18  *	California, Berkeley and its contributors.
19  * 4. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  *	@(#)ufsmount.h	8.6 (Berkeley) 3/30/95
36  */
37 
38 #ifndef _UFS_UFS_UFSMOUNT_H_
39 #define _UFS_UFS_UFSMOUNT_H_
40 
41 /*
42  * Arguments to mount UFS-based filesystems
43  */
44 struct ufs_args {
45 	char	*fspec;			/* block special device to mount */
46 	struct	export_args export;	/* network export information */
47 };
48 
49 /*
50  * Arguments to mount MFS
51  */
52 struct mfs_args {
53 	char	*fspec;			/* name to export for statfs */
54 	struct	export_args export;	/* if exported MFSes are supported */
55 	caddr_t	base;			/* base of file system in memory */
56 	u_long	size;			/* size of file system */
57 };
58 
59 #ifdef _KERNEL
60 
61 #if defined(_KERNEL_OPT)
62 #include "opt_ffs.h"
63 #endif
64 
65 struct buf;
66 struct inode;
67 struct nameidata;
68 struct timeval;
69 struct ucred;
70 struct uio;
71 struct vnode;
72 struct netexport;
73 
74 /* This structure describes the UFS specific mount structure data. */
75 struct ufsmount {
76 	struct	mount *um_mountp;		/* filesystem vfs structure */
77 	dev_t	um_dev;				/* device mounted */
78 	struct	vnode *um_devvp;		/* block device mounted vnode */
79 	u_int32_t um_flags;			/* UFS-specific flags - see below */
80 	union {					/* pointer to superblock */
81 		struct	fs *fs;			/* FFS */
82 		struct	lfs *lfs;		/* LFS */
83 		struct  m_ext2fs *e2fs; /* EXT2FS */
84 	} ufsmount_u;
85 #define	um_fs	ufsmount_u.fs
86 #define	um_lfs	ufsmount_u.lfs
87 #define um_e2fs	ufsmount_u.e2fs
88 #define um_e2fsb ufsmount_u.e2fs->s_es
89 
90 	struct	vnode *um_quotas[MAXQUOTAS];	/* pointer to quota files */
91 	struct	ucred *um_cred[MAXQUOTAS];	/* quota file access cred */
92 	u_long	um_nindir;			/* indirect ptrs per block */
93 	u_long	um_lognindir;			/* log2 of um_nindir */
94 	u_long	um_bptrtodb;			/* indir ptr to disk block */
95 	u_long	um_seqinc;			/* inc between seq blocks */
96 	time_t	um_btime[MAXQUOTAS];		/* block quota time limit */
97 	time_t	um_itime[MAXQUOTAS];		/* inode quota time limit */
98 	char	um_qflags[MAXQUOTAS];		/* quota specific flags */
99 	struct	netexport um_export;		/* export information */
100 	u_int64_t um_savedmaxfilesize;		/* XXX - limit maxfilesize */
101 };
102 
103 /* UFS-specific flags */
104 #define UFS_NEEDSWAP	0x01	/* filesystem metadata need byte-swapping */
105 #define UFS_ISAPPLEUFS	0x02	/* filesystem is Apple UFS */
106 
107 /*
108  * Flags describing the state of quotas.
109  */
110 #define	QTF_OPENING	0x01			/* Q_QUOTAON in progress */
111 #define	QTF_CLOSING	0x02			/* Q_QUOTAOFF in progress */
112 
113 /* Convert mount ptr to ufsmount ptr. */
114 #define VFSTOUFS(mp)	((struct ufsmount *)((mp)->mnt_data))
115 
116 #ifdef APPLE_UFS
117 #define UFS_MPISAPPLEUFS(mp)	(VFSTOUFS(mp)->um_flags & UFS_ISAPPLEUFS)
118 #else
119 #define UFS_MPISAPPLEUFS(mp)	(0)
120 #endif
121 
122 /*
123  * Macros to access file system parameters in the ufsmount structure.
124  * Used by ufs_bmap.
125  */
126 #define MNINDIR(ump)			((ump)->um_nindir)
127 #define	blkptrtodb(ump, b)		((b) << (ump)->um_bptrtodb)
128 #define	is_sequential(ump, a, b)	((b) == (a) + ump->um_seqinc)
129 #endif /* _KERNEL */
130 
131 #endif /* !_UFS_UFS_UFSMOUNT_H_ */
132