xref: /freebsd/lib/libc/gen/getfsent.3 (revision 25bb73e063c17cd9048cf60100dbc0ac5177e94a)
158f0484fSRodney W. Grimes.\" Copyright (c) 1983, 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
558f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
658f0484fSRodney W. Grimes.\" are met:
758f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
858f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
958f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1058f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1158f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
1258f0484fSRodney W. Grimes.\" 3. All advertising materials mentioning features or use of this software
1358f0484fSRodney W. Grimes.\"    must display the following acknowledgement:
1458f0484fSRodney W. Grimes.\"	This product includes software developed by the University of
1558f0484fSRodney W. Grimes.\"	California, Berkeley and its contributors.
1658f0484fSRodney W. Grimes.\" 4. Neither the name of the University nor the names of its contributors
1758f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1858f0484fSRodney W. Grimes.\"    without specific prior written permission.
1958f0484fSRodney W. Grimes.\"
2058f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2158f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2258f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2358f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2458f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2558f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2658f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2758f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2858f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2958f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3058f0484fSRodney W. Grimes.\" SUCH DAMAGE.
3158f0484fSRodney W. Grimes.\"
3258f0484fSRodney W. Grimes.\"     @(#)getfsent.3	8.1 (Berkeley) 6/4/93
337f3dea24SPeter Wemm.\" $FreeBSD$
3458f0484fSRodney W. Grimes.\"
3558f0484fSRodney W. Grimes.Dd June 4, 1993
3658f0484fSRodney W. Grimes.Dt GETFSENT 3
3758f0484fSRodney W. Grimes.Os BSD 4
3858f0484fSRodney W. Grimes.Sh NAME
3958f0484fSRodney W. Grimes.Nm getfsent ,
4058f0484fSRodney W. Grimes.Nm getfsspec ,
4158f0484fSRodney W. Grimes.Nm getfsfile ,
4258f0484fSRodney W. Grimes.Nm setfsent ,
4358f0484fSRodney W. Grimes.Nm endfsent
4458f0484fSRodney W. Grimes.Nd get file system descriptor file entry
4525bb73e0SAlexey Zelkin.Sh LIBRARY
4625bb73e0SAlexey Zelkin.Lb libc
4758f0484fSRodney W. Grimes.Sh SYNOPSIS
4858f0484fSRodney W. Grimes.Fd #include <fstab.h>
49712dc76eSMike Pritchard.Ft struct fstab *
5058f0484fSRodney W. Grimes.Fn getfsent void
5158f0484fSRodney W. Grimes.Ft struct fstab *
5258f0484fSRodney W. Grimes.Fn getfsspec "const char *spec"
5358f0484fSRodney W. Grimes.Ft struct fstab *
5458f0484fSRodney W. Grimes.Fn getfsfile "const char *file"
5558f0484fSRodney W. Grimes.Ft int
5658f0484fSRodney W. Grimes.Fn setfsent void
5758f0484fSRodney W. Grimes.Ft void
5858f0484fSRodney W. Grimes.Fn endfsent void
5958f0484fSRodney W. Grimes.Sh DESCRIPTION
6058f0484fSRodney W. GrimesThe
6158f0484fSRodney W. Grimes.Fn getfsent ,
6258f0484fSRodney W. Grimes.Fn getfsspec ,
6358f0484fSRodney W. Grimesand
6458f0484fSRodney W. Grimes.Fn getfsfile
6558f0484fSRodney W. Grimesfunctions
6658f0484fSRodney W. Grimeseach return a pointer to an object with the following structure
6758f0484fSRodney W. Grimescontaining the broken-out fields of a line in the file system
6858f0484fSRodney W. Grimesdescription file,
6958f0484fSRodney W. Grimes.Aq Pa fstab.h .
7058f0484fSRodney W. Grimes.Bd -literal -offset indent
7158f0484fSRodney W. Grimesstruct fstab {
7258f0484fSRodney W. Grimes	char	*fs_spec;	/* block special device name */
7358f0484fSRodney W. Grimes	char	*fs_file;	/* file system path prefix */
741ffa6450SMike Pritchard	char	*fs_vfstype;	/* File system type, ufs, nfs */
751ffa6450SMike Pritchard	char	*fs_mntops;	/* Mount options ala -o */
761ffa6450SMike Pritchard	char	*fs_type;	/* FSTAB_* from fs_mntops */
7758f0484fSRodney W. Grimes	int	fs_freq;	/* dump frequency, in days */
781ffa6450SMike Pritchard	int	fs_passno;	/* pass number on parallel fsck */
7958f0484fSRodney W. Grimes};
8058f0484fSRodney W. Grimes.Ed
8158f0484fSRodney W. Grimes.Pp
8258f0484fSRodney W. GrimesThe fields have meanings described in
8358f0484fSRodney W. Grimes.Xr fstab 5 .
8458f0484fSRodney W. Grimes.Pp
8558f0484fSRodney W. GrimesThe
8658f0484fSRodney W. Grimes.Fn setfsent
8758f0484fSRodney W. Grimesfunction
8858f0484fSRodney W. Grimesopens the file (closing any previously opened file) or rewinds it
8958f0484fSRodney W. Grimesif it is already open.
9058f0484fSRodney W. Grimes.Pp
9158f0484fSRodney W. GrimesThe
9258f0484fSRodney W. Grimes.Fn endfsent
9358f0484fSRodney W. Grimesfunction
9458f0484fSRodney W. Grimescloses the file.
9558f0484fSRodney W. Grimes.Pp
9658f0484fSRodney W. GrimesThe
9758f0484fSRodney W. Grimes.Fn getfsspec
9858f0484fSRodney W. Grimesand
9958f0484fSRodney W. Grimes.Fn getfsfile
10058f0484fSRodney W. Grimesfunctions
10158f0484fSRodney W. Grimessearch the entire file (opening it if necessary) for a matching special
10258f0484fSRodney W. Grimesfile name or file system file name.
10358f0484fSRodney W. Grimes.Pp
10458f0484fSRodney W. GrimesFor programs wishing to read the entire database,
10558f0484fSRodney W. Grimes.Fn getfsent
10658f0484fSRodney W. Grimesreads the next entry (opening the file if necessary).
10758f0484fSRodney W. Grimes.Pp
10858f0484fSRodney W. GrimesAll entries in the file with a type field equivalent to
10958f0484fSRodney W. Grimes.Dv FSTAB_XX
11058f0484fSRodney W. Grimesare ignored.
11158f0484fSRodney W. Grimes.Sh RETURN VALUES
11258f0484fSRodney W. GrimesThe
11358f0484fSRodney W. Grimes.Fn getfsent ,
11458f0484fSRodney W. Grimes.Fn getfsspec ,
11558f0484fSRodney W. Grimesand
11658f0484fSRodney W. Grimes.Fn getfsfile
11758f0484fSRodney W. Grimesfunctions
1181ffa6450SMike Pritchardreturn a
1191ffa6450SMike Pritchard.Dv NULL
1201ffa6450SMike Pritchardpointer on
12158f0484fSRodney W. Grimes.Dv EOF
12258f0484fSRodney W. Grimesor error.
12358f0484fSRodney W. GrimesThe
12458f0484fSRodney W. Grimes.Fn setfsent
12558f0484fSRodney W. Grimesfunction
12658f0484fSRodney W. Grimesreturns 0 on failure, 1 on success.
12758f0484fSRodney W. GrimesThe
12858f0484fSRodney W. Grimes.Fn endfsent
12958f0484fSRodney W. Grimesfunction
13058f0484fSRodney W. Grimesreturns nothing.
13158f0484fSRodney W. Grimes.Sh FILES
13258f0484fSRodney W. Grimes.Bl -tag -width /etc/fstab -compact
13358f0484fSRodney W. Grimes.It Pa /etc/fstab
13458f0484fSRodney W. Grimes.El
13558f0484fSRodney W. Grimes.Sh SEE ALSO
13658f0484fSRodney W. Grimes.Xr fstab 5
13758f0484fSRodney W. Grimes.Sh HISTORY
13858f0484fSRodney W. GrimesThe
13958f0484fSRodney W. Grimes.Fn getfsent
14058f0484fSRodney W. Grimesfunction appeared in
14158f0484fSRodney W. Grimes.Bx 4.0 ;
14258f0484fSRodney W. Grimesthe
14358f0484fSRodney W. Grimes.Fn endfsent ,
14458f0484fSRodney W. Grimes.Fn getfsfile ,
14558f0484fSRodney W. Grimes.Fn getfsspec ,
14658f0484fSRodney W. Grimesand
14758f0484fSRodney W. Grimes.Fn setfsent
14858f0484fSRodney W. Grimesfunctions appeared in
14958f0484fSRodney W. Grimes.Bx 4.3 .
15058f0484fSRodney W. Grimes.Sh BUGS
15158f0484fSRodney W. GrimesThese functions use static data storage;
15258f0484fSRodney W. Grimesif the data is needed for future use, it should be
15358f0484fSRodney W. Grimescopied before any subsequent calls overwrite it.
154