2 * Copyright (c) 1980, 1988, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#)fstab.c 8.1 (Berkeley) 6/4/93
30 * $FreeBSD: src/lib/libc/gen/fstab.c,v 1.15 2007/01/09 00:27:53 imp Exp $
31 * $DragonFly: src/lib/libc/gen/fstab.c,v 1.6 2005/11/13 00:07:42 swildner Exp $
34 #include "namespace.h"
35 #include <sys/param.h>
36 #include <sys/mount.h>
46 #include "un-namespace.h"
49 static char *_fs_spec
; /* allocated via getdevpath() */
50 static struct fstab _fs_fstab
;
51 static int LineNo
= 0;
52 static char *path_fstab
;
53 static char fstab_path
[PATH_MAX
];
54 static int fsp_set
= 0;
56 static void error(int);
57 static void fixfsfile(void);
58 static int fstabscan(void);
59 static char *gdplookup(char *spec
);
62 setfstab(const char *file
)
66 path_fstab
= _PATH_FSTAB
;
68 strncpy(fstab_path
, file
, PATH_MAX
);
69 fstab_path
[PATH_MAX
- 1] = '\0';
70 path_fstab
= fstab_path
;
88 static char buf
[sizeof(_PATH_DEV
) + MNAMELEN
];
92 if (strcmp(_fs_fstab
.fs_file
, "/") != 0)
94 if (statfs("/", &sf
) != 0)
96 if (sf
.f_mntfromname
[0] == '/')
99 strcpy(buf
, _PATH_DEV
);
100 strcat(buf
, sf
.f_mntfromname
);
101 if (stat(buf
, &sb
) != 0 ||
102 (!S_ISBLK(sb
.st_mode
) && !S_ISCHR(sb
.st_mode
)))
104 _fs_fstab
.fs_spec
= buf
;
111 #define MAXLINELENGTH 1024
112 static char line
[MAXLINELENGTH
];
113 char subline
[MAXLINELENGTH
];
118 if (!(p
= fgets(line
, sizeof(line
), _fs_fp
)))
120 /* OLD_STYLE_FSTAB */
122 if (*line
== '#' || *line
== '\n')
124 if (!strpbrk(p
, " \t")) {
125 _fs_fstab
.fs_spec
= gdplookup(strsep(&p
, ":\n"));
126 _fs_fstab
.fs_file
= strsep(&p
, ":\n");
128 _fs_fstab
.fs_type
= strsep(&p
, ":\n");
129 if (_fs_fstab
.fs_type
) {
130 if (!strcmp(_fs_fstab
.fs_type
, FSTAB_XX
))
132 _fs_fstab
.fs_mntops
= _fs_fstab
.fs_type
;
133 _fs_fstab
.fs_vfstype
=
134 strcmp(_fs_fstab
.fs_type
, FSTAB_SW
) ?
136 if ((cp
= strsep(&p
, ":\n")) != NULL
) {
137 _fs_fstab
.fs_freq
= atoi(cp
);
138 if ((cp
= strsep(&p
, ":\n")) != NULL
) {
139 _fs_fstab
.fs_passno
= atoi(cp
);
146 /* OLD_STYLE_FSTAB */
147 while ((cp
= strsep(&p
, " \t\n")) != NULL
&& *cp
== '\0')
149 _fs_fstab
.fs_spec
= cp
;
150 if (!_fs_fstab
.fs_spec
|| *_fs_fstab
.fs_spec
== '#')
152 _fs_fstab
.fs_spec
= gdplookup(_fs_fstab
.fs_spec
);
153 while ((cp
= strsep(&p
, " \t\n")) != NULL
&& *cp
== '\0')
155 _fs_fstab
.fs_file
= cp
;
157 while ((cp
= strsep(&p
, " \t\n")) != NULL
&& *cp
== '\0')
159 _fs_fstab
.fs_vfstype
= cp
;
160 while ((cp
= strsep(&p
, " \t\n")) != NULL
&& *cp
== '\0')
162 _fs_fstab
.fs_mntops
= cp
;
163 if (_fs_fstab
.fs_mntops
== NULL
)
165 _fs_fstab
.fs_freq
= 0;
166 _fs_fstab
.fs_passno
= 0;
167 while ((cp
= strsep(&p
, " \t\n")) != NULL
&& *cp
== '\0')
170 _fs_fstab
.fs_freq
= atoi(cp
);
171 while ((cp
= strsep(&p
, " \t\n")) != NULL
&& *cp
== '\0')
174 _fs_fstab
.fs_passno
= atoi(cp
);
176 strcpy(subline
, _fs_fstab
.fs_mntops
);
178 for (typexx
= 0, cp
= strsep(&p
, ","); cp
;
179 cp
= strsep(&p
, ",")) {
182 if (!strcmp(cp
, FSTAB_RW
)) {
183 _fs_fstab
.fs_type
= FSTAB_RW
;
186 if (!strcmp(cp
, FSTAB_RQ
)) {
187 _fs_fstab
.fs_type
= FSTAB_RQ
;
190 if (!strcmp(cp
, FSTAB_RO
)) {
191 _fs_fstab
.fs_type
= FSTAB_RO
;
194 if (!strcmp(cp
, FSTAB_SW
)) {
195 _fs_fstab
.fs_type
= FSTAB_SW
;
198 if (!strcmp(cp
, FSTAB_XX
)) {
199 _fs_fstab
.fs_type
= FSTAB_XX
;
209 bad
: /* no way to distinguish between EOF and syntax error */
218 if ((!_fs_fp
&& !setfsent()) || !fstabscan())
224 getfsspec(const char *name
)
228 if (!strcmp(_fs_fstab
.fs_spec
, name
))
234 getfsfile(const char *name
)
238 if (!strcmp(_fs_fstab
.fs_file
, name
))
255 setfstab(getenv("PATH_FSTAB"));
257 if ((_fs_fp
= fopen(path_fstab
, "r")) != NULL
) {
277 gdplookup(char *spec
)
281 _fs_spec
= getdevpath(spec
, 0);
282 if (strcmp(_fs_spec
, spec
) != 0)
293 _write(STDERR_FILENO
, "fstab: ", 7);
294 _write(STDERR_FILENO
, path_fstab
, strlen(path_fstab
));
295 _write(STDERR_FILENO
, ":", 1);
296 sprintf(num
, "%d: ", LineNo
);
297 _write(STDERR_FILENO
, num
, strlen(num
));
299 _write(STDERR_FILENO
, p
, strlen(p
));
300 _write(STDERR_FILENO
, "\n", 1);