1 /* Utilities for reading/writing fstab, mtab, etc.
2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
23 #include <sys/types.h>
25 /* Prepare to begin reading and/or writing mount table entries from the
26 beginning of FILE. MODE is as for `fopen'. */
28 __setmntent (const char *file
, const char *mode
)
30 return fopen (file
, mode
);
32 weak_alias (__setmntent
, setmntent
)
35 /* Close a stream opened with `setmntent'. */
37 __endmntent (FILE *stream
)
39 if (stream
) /* SunOS 4.x allows for NULL stream */
41 return 1; /* SunOS 4.x says to always return 1 */
43 weak_alias (__endmntent
, endmntent
)
46 /* Read one mount table entry from STREAM. Returns a pointer to storage
47 reused on the next call, or null for EOF or error (use feof/ferror to
50 __getmntent_r (FILE *stream
, struct mntent
*mp
, char *buffer
, int bufsiz
)
58 if (fgets (buffer
, bufsiz
, stream
) == NULL
)
61 end_ptr
= strchr (buffer
, '\n');
62 if (end_ptr
!= NULL
) /* chop newline */
66 /* Not the whole line was read. Do it now but forget it. */
68 while (fgets (tmp
, sizeof tmp
, stream
) != NULL
)
69 if (strchr (tmp
, '\n') != NULL
)
73 head
= buffer
+ strspn (buffer
, " \t");
74 /* skip empty lines and comment lines: */
75 } while (head
[0] == '\0' || head
[0] == '#');
77 mp
->mnt_fsname
= __strsep (&head
, " \t") ?: (char *) "";
79 head
+= strspn (head
, " \t");
80 mp
->mnt_dir
= __strsep (&head
, " \t") ?: (char *) "";
82 head
+= strspn (head
, " \t");
83 mp
->mnt_type
= __strsep (&head
, " \t") ?: (char *) "";
85 head
+= strspn (head
, " \t");
86 mp
->mnt_opts
= __strsep (&head
, " \t") ?: (char *) "";
87 switch (head
? sscanf (head
, " %d %d ", &mp
->mnt_freq
, &mp
->mnt_passno
) : 0)
98 weak_alias (__getmntent_r
, getmntent_r
)
100 /* Write the mount table entry described by MNT to STREAM.
101 Return zero on success, nonzero on failure. */
103 __addmntent (FILE *stream
, const struct mntent
*mnt
)
105 if (fseek (stream
, 0, SEEK_END
))
108 return (fprintf (stream
, "%s %s %s %s %d %d\n",
117 weak_alias (__addmntent
, addmntent
)
120 /* Search MNT->mnt_opts for an option matching OPT.
121 Returns the address of the substring, or null if none found. */
123 __hasmntopt (const struct mntent
*mnt
, const char *opt
)
125 const size_t optlen
= strlen (opt
);
126 char *rest
= mnt
->mnt_opts
, *p
;
128 while ((p
= strstr (rest
, opt
)) != NULL
)
130 if (p
== rest
|| p
[-1] == ',' &&
131 (p
[optlen
] == '\0' ||
136 rest
= strchr (rest
, ',');
144 weak_alias (__hasmntopt
, hasmntopt
)