1 /* $NetBSD: fstab.c,v 1.23 2001/08/31 00:31:07 lukem Exp $ */ 2 3 /* 4 * Copyright (c) 1980, 1988, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 3. All advertising materials mentioning features or use of this software 16 * must display the following acknowledgement: 17 * This product includes software developed by the University of 18 * California, Berkeley and its contributors. 19 * 4. Neither the name of the University nor the names of its contributors 20 * may be used to endorse or promote products derived from this software 21 * without specific prior written permission. 22 * 23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33 * SUCH DAMAGE. 34 */ 35 36 #include <sys/cdefs.h> 37 #if defined(LIBC_SCCS) && !defined(lint) 38 #if 0 39 static char sccsid[] = "@(#)fstab.c 8.1 (Berkeley) 6/4/93"; 40 #else 41 __RCSID("$NetBSD: fstab.c,v 1.23 2001/08/31 00:31:07 lukem Exp $"); 42 #endif 43 #endif /* LIBC_SCCS and not lint */ 44 45 #include "namespace.h" 46 #include <sys/types.h> 47 48 #include <assert.h> 49 #include <err.h> 50 #include <errno.h> 51 #include <fstab.h> 52 #include <stdio.h> 53 #include <stdlib.h> 54 #include <string.h> 55 #include <unistd.h> 56 57 #ifdef __weak_alias 58 __weak_alias(endfsent,_endfsent) 59 __weak_alias(getfsent,_getfsent) 60 __weak_alias(getfsfile,_getfsfile) 61 __weak_alias(getfsspec,_getfsspec) 62 __weak_alias(setfsent,_setfsent) 63 #endif 64 65 static FILE *_fs_fp; 66 static size_t _fs_lineno = 0; 67 static const char *_fs_file = _PATH_FSTAB; 68 static struct fstab _fs_fstab; 69 70 static int fstabscan __P((void)); 71 72 static __inline char *nextfld __P((char **, const char *)); 73 74 75 static __inline char * 76 nextfld(str, sep) 77 char **str; 78 const char *sep; 79 { 80 char *ret; 81 82 _DIAGASSERT(str != NULL); 83 _DIAGASSERT(sep != NULL); 84 85 while ((ret = strsep(str, sep)) != NULL && *ret == '\0') 86 continue; 87 return ret; 88 } 89 90 91 static int 92 fstabscan() 93 { 94 char *cp, *lp, *sp; 95 #define MAXLINELENGTH 1024 96 static char line[MAXLINELENGTH]; 97 char subline[MAXLINELENGTH]; 98 static const char sep[] = ":\n"; 99 static const char ws[] = " \t\n"; 100 static char *fstab_type[] = { 101 FSTAB_RW, FSTAB_RQ, FSTAB_RO, FSTAB_SW, FSTAB_DP, FSTAB_XX, NULL 102 }; 103 104 (void)memset(&_fs_fstab, 0, sizeof(_fs_fstab)); 105 for (;;) { 106 if (!(lp = fgets(line, sizeof(line), _fs_fp))) 107 return 0; 108 _fs_lineno++; 109 /* OLD_STYLE_FSTAB */ 110 if (!strpbrk(lp, " \t")) { 111 _fs_fstab.fs_spec = nextfld(&lp, sep); 112 if (!_fs_fstab.fs_spec || *_fs_fstab.fs_spec == '#') 113 continue; 114 _fs_fstab.fs_file = nextfld(&lp, sep); 115 _fs_fstab.fs_type = nextfld(&lp, sep); 116 if (_fs_fstab.fs_type) { 117 if (!strcmp(_fs_fstab.fs_type, FSTAB_XX)) 118 continue; 119 _fs_fstab.fs_mntops = _fs_fstab.fs_type; 120 _fs_fstab.fs_vfstype = 121 strcmp(_fs_fstab.fs_type, FSTAB_SW) ? 122 "ufs" : "swap"; 123 if ((cp = nextfld(&lp, sep)) != NULL) { 124 _fs_fstab.fs_freq = atoi(cp); 125 if ((cp = nextfld(&lp, sep)) != NULL) { 126 _fs_fstab.fs_passno = atoi(cp); 127 return 1; 128 } 129 } 130 } 131 goto bad; 132 } 133 /* OLD_STYLE_FSTAB */ 134 _fs_fstab.fs_spec = nextfld(&lp, ws); 135 if (!_fs_fstab.fs_spec || *_fs_fstab.fs_spec == '#') 136 continue; 137 _fs_fstab.fs_file = nextfld(&lp, ws); 138 _fs_fstab.fs_vfstype = nextfld(&lp, ws); 139 _fs_fstab.fs_mntops = nextfld(&lp, ws); 140 if (_fs_fstab.fs_mntops == NULL) 141 goto bad; 142 _fs_fstab.fs_freq = 0; 143 _fs_fstab.fs_passno = 0; 144 if ((cp = nextfld(&lp, ws)) != NULL) { 145 _fs_fstab.fs_freq = atoi(cp); 146 if ((cp = nextfld(&lp, ws)) != NULL) 147 _fs_fstab.fs_passno = atoi(cp); 148 } 149 sp = strncpy(subline, _fs_fstab.fs_mntops, sizeof(subline)-1); 150 while ((cp = nextfld(&sp, ",")) != NULL) { 151 char **tp; 152 153 if (strlen(cp) != 2) 154 continue; 155 156 for (tp = fstab_type; *tp; tp++) 157 if (strcmp(cp, *tp) == 0) { 158 _fs_fstab.fs_type = *tp; 159 break; 160 } 161 if (*tp) 162 break; 163 } 164 if (_fs_fstab.fs_type == NULL) 165 goto bad; 166 if (strcmp(_fs_fstab.fs_type, FSTAB_XX) == 0) 167 continue; 168 if (cp != NULL) 169 return 1; 170 171 bad: 172 warnx("%s, %lu: Missing fields", _fs_file, (u_long)_fs_lineno); 173 } 174 /* NOTREACHED */ 175 } 176 177 struct fstab * 178 getfsent() 179 { 180 if ((!_fs_fp && !setfsent()) || !fstabscan()) 181 return NULL; 182 return &_fs_fstab; 183 } 184 185 struct fstab * 186 getfsspec(name) 187 const char *name; 188 { 189 190 _DIAGASSERT(name != NULL); 191 192 if (setfsent()) 193 while (fstabscan()) 194 if (!strcmp(_fs_fstab.fs_spec, name)) 195 return &_fs_fstab; 196 return NULL; 197 } 198 199 struct fstab * 200 getfsfile(name) 201 const char *name; 202 { 203 204 _DIAGASSERT(name != NULL); 205 206 if (setfsent()) 207 while (fstabscan()) 208 if (!strcmp(_fs_fstab.fs_file, name)) 209 return &_fs_fstab; 210 return NULL; 211 } 212 213 int 214 setfsent() 215 { 216 _fs_lineno = 0; 217 if (_fs_fp) { 218 rewind(_fs_fp); 219 return 1; 220 } 221 if ((_fs_fp = fopen(_PATH_FSTAB, "r")) == NULL) { 222 warn("Cannot open `%s'", _PATH_FSTAB); 223 return 0; 224 } 225 return 1; 226 } 227 228 void 229 endfsent() 230 { 231 if (_fs_fp) { 232 (void)fclose(_fs_fp); 233 _fs_fp = NULL; 234 } 235 } 236