update from main archive 961127
[glibc.git] / misc / mntent_r.c
blob70da258de680dc5c07ea86bf6cae82fe10e1fda5
1 /* Utilities for reading/writing fstab, mtab, etc.
2 Copyright (C) 1995, 1996 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
17 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
18 Cambridge, MA 02139, USA. */
20 #include <mntent.h>
21 #include <stdio.h>
22 #include <string.h>
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'. */
27 FILE *
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'. */
36 int
37 __endmntent (FILE *stream)
39 if (stream) /* SunOS 4.x allows for NULL stream */
40 fclose (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
48 check). */
49 struct mntent *
50 __getmntent_r (FILE *stream, struct mntent *mp, char *buffer, int bufsiz)
52 char *head;
56 char *end_ptr;
58 if (fgets (buffer, bufsiz, stream) == NULL)
59 return NULL;
61 end_ptr = strchr (buffer, '\n');
62 if (end_ptr != NULL) /* chop newline */
63 *end_ptr = '\0';
64 else
66 /* Not the whole line was read. Do it now but forget it. */
67 char tmp[1024];
68 while (fgets (tmp, sizeof tmp, stream) != NULL)
69 if (strchr (tmp, '\n') != NULL)
70 break;
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 *) "";
78 if (head)
79 head += strspn (head, " \t");
80 mp->mnt_dir = __strsep (&head, " \t") ?: (char *) "";
81 if (head)
82 head += strspn (head, " \t");
83 mp->mnt_type = __strsep (&head, " \t") ?: (char *) "";
84 if (head)
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)
89 case 0:
90 mp->mnt_freq = 0;
91 case 1:
92 mp->mnt_passno = 0;
93 case 2:
96 return mp;
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))
106 return 1;
108 return (fprintf (stream, "%s %s %s %s %d %d\n",
109 mnt->mnt_fsname,
110 mnt->mnt_dir,
111 mnt->mnt_type,
112 mnt->mnt_opts,
113 mnt->mnt_freq,
114 mnt->mnt_passno)
115 < 0 ? 1 : 0);
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. */
122 char *
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' ||
132 p[optlen] == '=' ||
133 p[optlen] == ','))
134 return p;
136 rest = strchr (rest, ',');
139 return NULL;
141 weak_alias (__hasmntopt, hasmntopt)