xref: /freebsd/include/fstab.h (revision bb28f3c29b4c91af1b0e79e456294bb08735648a)
159deaec5SRodney W. Grimes /*
259deaec5SRodney W. Grimes  * Copyright (c) 1980, 1993
359deaec5SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
459deaec5SRodney W. Grimes  *
559deaec5SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
659deaec5SRodney W. Grimes  * modification, are permitted provided that the following conditions
759deaec5SRodney W. Grimes  * are met:
859deaec5SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
959deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1059deaec5SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1159deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1259deaec5SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
1359deaec5SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
1459deaec5SRodney W. Grimes  *    must display the following acknowledgement:
1559deaec5SRodney W. Grimes  *	This product includes software developed by the University of
1659deaec5SRodney W. Grimes  *	California, Berkeley and its contributors.
1759deaec5SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
1859deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1959deaec5SRodney W. Grimes  *    without specific prior written permission.
2059deaec5SRodney W. Grimes  *
2159deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2259deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2359deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2459deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2559deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2659deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2759deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2859deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2959deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3059deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3159deaec5SRodney W. Grimes  * SUCH DAMAGE.
3259deaec5SRodney W. Grimes  *
3359deaec5SRodney W. Grimes  *	@(#)fstab.h	8.1 (Berkeley) 6/2/93
34bb28f3c2SWarner Losh  * $FreeBSD$
3559deaec5SRodney W. Grimes  */
3659deaec5SRodney W. Grimes 
3759deaec5SRodney W. Grimes #ifndef _FSTAB_H_
3859deaec5SRodney W. Grimes #define _FSTAB_H_
3959deaec5SRodney W. Grimes 
4059deaec5SRodney W. Grimes /*
4159deaec5SRodney W. Grimes  * File system table, see fstab(5).
4259deaec5SRodney W. Grimes  *
4359deaec5SRodney W. Grimes  * Used by dump, mount, umount, swapon, fsck, df, ...
4459deaec5SRodney W. Grimes  *
4559deaec5SRodney W. Grimes  * For ufs fs_spec field is the block special name.  Programs that want to
4659deaec5SRodney W. Grimes  * use the character special name must create that name by prepending a 'r'
4759deaec5SRodney W. Grimes  * after the right most slash.  Quota files are always named "quotas", so
4859deaec5SRodney W. Grimes  * if type is "rq", then use concatenation of fs_file and "quotas" to locate
4959deaec5SRodney W. Grimes  * quota file.
5059deaec5SRodney W. Grimes  */
5159deaec5SRodney W. Grimes #define	_PATH_FSTAB	"/etc/fstab"
5259deaec5SRodney W. Grimes #define	FSTAB		"/etc/fstab"	/* deprecated */
5359deaec5SRodney W. Grimes 
5459deaec5SRodney W. Grimes #define	FSTAB_RW	"rw"		/* read/write device */
5559deaec5SRodney W. Grimes #define	FSTAB_RQ	"rq"		/* read/write with quotas */
5659deaec5SRodney W. Grimes #define	FSTAB_RO	"ro"		/* read-only device */
5759deaec5SRodney W. Grimes #define	FSTAB_SW	"sw"		/* swap device */
5859deaec5SRodney W. Grimes #define	FSTAB_XX	"xx"		/* ignore totally */
5959deaec5SRodney W. Grimes 
6059deaec5SRodney W. Grimes struct fstab {
6159deaec5SRodney W. Grimes 	char	*fs_spec;		/* block special device name */
6259deaec5SRodney W. Grimes 	char	*fs_file;		/* file system path prefix */
6359deaec5SRodney W. Grimes 	char	*fs_vfstype;		/* File system type, ufs, nfs */
6459deaec5SRodney W. Grimes 	char	*fs_mntops;		/* Mount options ala -o */
6559deaec5SRodney W. Grimes 	char	*fs_type;		/* FSTAB_* from fs_mntops */
6659deaec5SRodney W. Grimes 	int	fs_freq;		/* dump frequency, in days */
67b6febe7aSMike Pritchard 	int	fs_passno;		/* pass number on parallel fsck */
6859deaec5SRodney W. Grimes };
6959deaec5SRodney W. Grimes 
7059deaec5SRodney W. Grimes #include <sys/cdefs.h>
7159deaec5SRodney W. Grimes 
7259deaec5SRodney W. Grimes __BEGIN_DECLS
73bb28f3c2SWarner Losh struct fstab *getfsent(void);
74bb28f3c2SWarner Losh struct fstab *getfsspec(const char *);
75bb28f3c2SWarner Losh struct fstab *getfsfile(const char *);
76bb28f3c2SWarner Losh int setfsent(void);
77bb28f3c2SWarner Losh void endfsent(void);
7859deaec5SRodney W. Grimes __END_DECLS
7959deaec5SRodney W. Grimes 
8059deaec5SRodney W. Grimes #endif /* !_FSTAB_H_ */
81