1 /* Utilities for reading/writing fstab, mtab, etc.
2 Copyright (C) 1995,1996,1997,1998,1999,2000 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 Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the 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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
24 #include <sys/types.h>
27 # define flockfile(s) _IO_flockfile (s)
28 # define funlockfile(s) _IO_funlockfile (s)
31 /* Prepare to begin reading and/or writing mount table entries from the
32 beginning of FILE. MODE is as for `fopen'. */
34 __setmntent (const char *file
, const char *mode
)
36 return fopen (file
, mode
);
38 weak_alias (__setmntent
, setmntent
)
41 /* Close a stream opened with `setmntent'. */
43 __endmntent (FILE *stream
)
45 if (stream
) /* SunOS 4.x allows for NULL stream */
47 return 1; /* SunOS 4.x says to always return 1 */
49 weak_alias (__endmntent
, endmntent
)
52 /* Since the values in a line are separated by spaces, a name cannot
53 contain a space. Therefore some programs encode spaces in names
54 by the strings "\040". We undo the encoding when reading an entry.
55 The decoding happens in place. */
57 decode_name (char *buf
)
63 if (rp
[0] == '\\' && rp
[1] == '0' && rp
[2] == '4' && rp
[3] == '0')
65 /* \040 is a SPACE. */
69 else if (rp
[0] == '\\' && rp
[1] == '0' && rp
[2] == '1' && rp
[3] == '2')
75 else if (rp
[0] == '\\' && rp
[1] == '\\')
77 /* We have to escape \\ to be able to represent all characters. */
83 while (*rp
++ != '\0');
89 /* Read one mount table entry from STREAM. Returns a pointer to storage
90 reused on the next call, or null for EOF or error (use feof/ferror to
93 __getmntent_r (FILE *stream
, struct mntent
*mp
, char *buffer
, int bufsiz
)
103 if (fgets_unlocked (buffer
, bufsiz
, stream
) == NULL
)
105 funlockfile (stream
);
109 end_ptr
= strchr (buffer
, '\n');
110 if (end_ptr
!= NULL
) /* chop newline */
114 /* Not the whole line was read. Do it now but forget it. */
116 while (fgets_unlocked (tmp
, sizeof tmp
, stream
) != NULL
)
117 if (strchr (tmp
, '\n') != NULL
)
121 head
= buffer
+ strspn (buffer
, " \t");
122 /* skip empty lines and comment lines: */
124 while (head
[0] == '\0' || head
[0] == '#');
126 cp
= __strsep (&head
, " \t");
127 mp
->mnt_fsname
= cp
!= NULL
? decode_name (cp
) : (char *) "";
129 head
+= strspn (head
, " \t");
130 cp
= __strsep (&head
, " \t");
131 mp
->mnt_dir
= cp
!= NULL
? decode_name (cp
) : (char *) "";
133 head
+= strspn (head
, " \t");
134 cp
= __strsep (&head
, " \t");
135 mp
->mnt_type
= cp
!= NULL
? decode_name (cp
) : (char *) "";
137 head
+= strspn (head
, " \t");
138 cp
= __strsep (&head
, " \t");
139 mp
->mnt_opts
= cp
!= NULL
? decode_name (cp
) : (char *) "";
140 switch (head
? sscanf (head
, " %d %d ", &mp
->mnt_freq
, &mp
->mnt_passno
) : 0)
149 funlockfile (stream
);
153 weak_alias (__getmntent_r
, getmntent_r
)
156 /* We have to use an encoding for names if they contain spaces or tabs.
157 To be able to represent all characters we also have to escape the
158 backslash itself. This "function" must be a macro since we use
160 #define encode_name(name) \
162 const char *rp = name; \
164 while (*rp != '\0') \
165 if (*rp == ' ' || *rp == '\t' || *rp == '\\') \
172 /* In the worst case the length of the string can increase to \
173 founr times the current length. */ \
177 name = wp = (char *) alloca (strlen (name) * 4 + 1); \
187 else if (*rp == '\t') \
194 else if (*rp == '\\') \
201 while (*rp++ != '\0'); \
206 /* Write the mount table entry described by MNT to STREAM.
207 Return zero on success, nonzero on failure. */
209 __addmntent (FILE *stream
, const struct mntent
*mnt
)
211 struct mntent mntcopy
= *mnt
;
212 if (fseek (stream
, 0, SEEK_END
))
215 /* Encode spaces and tabs in the names. */
216 encode_name (mntcopy
.mnt_fsname
);
217 encode_name (mntcopy
.mnt_dir
);
218 encode_name (mntcopy
.mnt_type
);
219 encode_name (mntcopy
.mnt_opts
);
221 return (fprintf (stream
, "%s %s %s %s %d %d\n",
230 weak_alias (__addmntent
, addmntent
)
233 /* Search MNT->mnt_opts for an option matching OPT.
234 Returns the address of the substring, or null if none found. */
236 __hasmntopt (const struct mntent
*mnt
, const char *opt
)
238 const size_t optlen
= strlen (opt
);
239 char *rest
= mnt
->mnt_opts
, *p
;
241 while ((p
= strstr (rest
, opt
)) != NULL
)
245 && (p
[optlen
] == '\0' ||
250 rest
= strchr (rest
, ',');
258 weak_alias (__hasmntopt
, hasmntopt
)