Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1 | /* |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 2 | * Mini mount implementation for busybox |
| 3 | * |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 4 | * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>. |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | * |
| 20 | * 3/21/1999 Charles P. Wright <cpwright@cpwright.com> |
| 21 | * searches through fstab when -a is passed |
| 22 | * will try mounting stuff with all fses when passed -t auto |
| 23 | * |
| 24 | * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 25 | * |
| 26 | * 1999-10-07 Erik Andersen <andersen@lineo.com>, <andersee@debian.org>. |
| 27 | * Rewrote of a lot of code. Removed mtab usage (I plan on |
| 28 | * putting it back as a compile-time option some time), |
| 29 | * major adjustments to option parsing, and some serious |
| 30 | * dieting all around. |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 31 | */ |
| 32 | |
| 33 | #include "internal.h" |
| 34 | #include <stdlib.h> |
| 35 | #include <unistd.h> |
| 36 | #include <errno.h> |
| 37 | #include <string.h> |
| 38 | #include <stdio.h> |
| 39 | #include <mntent.h> |
| 40 | #include <sys/mount.h> |
| 41 | #include <ctype.h> |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 42 | #include <fstab.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 43 | |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 44 | extern const char mtab_file[]; /* Defined in utility.c */ |
| 45 | |
Eric Andersen | d73dc5b | 1999-11-10 23:13:02 +0000 | [diff] [blame] | 46 | static const char mount_usage[] = "\tmount [flags]\n" |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 47 | "\tmount [flags] device directory [-o options,more-options]\n" |
| 48 | "\n" |
| 49 | "Flags:\n" |
| 50 | "\t-a:\tMount all file systems in fstab.\n" |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 51 | #ifdef BB_MTAB |
| 52 | "\t-f:\t\"Fake\" mount. Add entry to mount table but don't mount it.\n" |
| 53 | "\t-n:\tDon't write a mount table entry.\n" |
| 54 | #endif |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 55 | "\t-o option:\tOne of many filesystem options, listed below.\n" |
| 56 | "\t-r:\tMount the filesystem read-only.\n" |
| 57 | "\t-t filesystem-type:\tSpecify the filesystem type.\n" |
| 58 | "\t-w:\tMount for reading and writing (default).\n" |
| 59 | "\n" |
| 60 | "Options for use with the \"-o\" flag:\n" |
| 61 | "\tasync / sync:\tWrites are asynchronous / synchronous.\n" |
| 62 | "\tdev / nodev:\tAllow use of special device files / disallow them.\n" |
| 63 | "\texec / noexec:\tAllow use of executable files / disallow them.\n" |
| 64 | "\tsuid / nosuid:\tAllow set-user-id-root programs / disallow them.\n" |
| 65 | "\tremount: Re-mount a currently-mounted filesystem, changing its flags.\n" |
| 66 | "\tro / rw: Mount for read-only / read-write.\n" |
| 67 | "\t" |
| 68 | "There are EVEN MORE flags that are specific to each filesystem.\n" |
| 69 | "You'll have to see the written documentation for those.\n"; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 70 | |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 71 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 72 | struct mount_options { |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 73 | const char *name; |
| 74 | unsigned long and; |
| 75 | unsigned long or; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 76 | }; |
| 77 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 78 | static const struct mount_options mount_options[] = { |
| 79 | {"async", ~MS_SYNCHRONOUS, 0}, |
| 80 | {"defaults", ~0, 0}, |
| 81 | {"dev", ~MS_NODEV, 0}, |
| 82 | {"exec", ~MS_NOEXEC, 0}, |
| 83 | {"nodev", ~0, MS_NODEV}, |
| 84 | {"noexec", ~0, MS_NOEXEC}, |
| 85 | {"nosuid", ~0, MS_NOSUID}, |
| 86 | {"remount", ~0, MS_REMOUNT}, |
| 87 | {"ro", ~0, MS_RDONLY}, |
| 88 | {"rw", ~MS_RDONLY, 0}, |
| 89 | {"suid", ~MS_NOSUID, 0}, |
| 90 | {"sync", ~0, MS_SYNCHRONOUS}, |
| 91 | {0, 0, 0} |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 92 | }; |
| 93 | |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 94 | #if ! defined BB_MTAB |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 95 | #define do_mount(specialfile, dir, filesystemtype, flags, string_flags, useMtab, fakeIt, mtab_opts) \ |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 96 | mount(specialfile, dir, filesystemtype, flags, string_flags) |
| 97 | #else |
| 98 | static int |
| 99 | do_mount(char* specialfile, char* dir, char* filesystemtype, |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 100 | long flags, void* string_flags, int useMtab, int fakeIt, char* mtab_opts) |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 101 | { |
| 102 | int status=0; |
| 103 | |
| 104 | if (fakeIt==FALSE) |
| 105 | status=mount(specialfile, dir, filesystemtype, flags, string_flags); |
| 106 | |
| 107 | if ( status == 0 ) { |
| 108 | if ( useMtab==TRUE ) |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 109 | write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts); |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 110 | return 0; |
| 111 | } |
| 112 | else |
| 113 | return( status); |
| 114 | } |
| 115 | #endif |
| 116 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 117 | |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 118 | /* Seperate standard mount options from the nonstandard string options */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 119 | static void |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 120 | parse_mount_options ( char *options, unsigned long *flags, char *strflags) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 121 | { |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 122 | while (options) { |
| 123 | int gotone=FALSE; |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 124 | char *comma = strchr (options, ','); |
| 125 | const struct mount_options* f = mount_options; |
| 126 | if (comma) |
| 127 | *comma = '\0'; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 128 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 129 | while (f->name != 0) { |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 130 | if (strcasecmp (f->name, options) == 0) { |
Eric Andersen | 3ae0c78 | 1999-11-04 01:13:21 +0000 | [diff] [blame] | 131 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 132 | *flags &= f->and; |
| 133 | *flags |= f->or; |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 134 | gotone=TRUE; |
| 135 | break; |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 136 | } |
| 137 | f++; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 138 | } |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 139 | if (*strflags && strflags!= '\0' && gotone==FALSE) { |
| 140 | char *temp=strflags; |
| 141 | temp += strlen (strflags); |
| 142 | *temp++ = ','; |
| 143 | *temp++ = '\0'; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 144 | } |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 145 | if (gotone==FALSE) { |
| 146 | strcat (strflags, options); |
| 147 | gotone=FALSE; |
| 148 | } |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 149 | if (comma) { |
| 150 | *comma = ','; |
| 151 | options = ++comma; |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 152 | } else { |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 153 | break; |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 154 | } |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 155 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | int |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 159 | mount_one(char *blockDevice, char *directory, char *filesystemType, |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 160 | unsigned long flags, char *string_flags, int useMtab, int fakeIt, char *mtab_opts) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 161 | { |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 162 | int status = 0; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 163 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 164 | char buf[255]; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 165 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 166 | if (strcmp(filesystemType, "auto") == 0) { |
| 167 | FILE *f = fopen ("/proc/filesystems", "r"); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 168 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 169 | if (f == NULL) |
| 170 | return( FALSE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 171 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 172 | while (fgets (buf, sizeof (buf), f) != NULL) { |
| 173 | filesystemType = buf; |
| 174 | if (*filesystemType == '\t') { // Not a nodev filesystem |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 175 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 176 | // Add NULL termination to each line |
| 177 | while (*filesystemType && *filesystemType != '\n') |
| 178 | filesystemType++; |
| 179 | *filesystemType = '\0'; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 180 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 181 | filesystemType = buf; |
| 182 | filesystemType++; // hop past tab |
| 183 | |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 184 | status = do_mount (blockDevice, directory, filesystemType, |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 185 | flags | MS_MGC_VAL, string_flags, useMtab, |
| 186 | fakeIt, mtab_opts); |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 187 | if (status == 0) |
| 188 | break; |
| 189 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 190 | } |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 191 | fclose (f); |
| 192 | } else { |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 193 | status = do_mount (blockDevice, directory, filesystemType, |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 194 | flags | MS_MGC_VAL, string_flags, useMtab, |
| 195 | fakeIt, mtab_opts); |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 196 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 197 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 198 | if (status) { |
| 199 | fprintf (stderr, "Mounting %s on %s failed: %s\n", |
| 200 | blockDevice, directory, strerror(errno)); |
| 201 | return (FALSE); |
| 202 | } |
| 203 | return (TRUE); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 206 | extern int mount_main (int argc, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 207 | { |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 208 | char string_flags_buf[1024]=""; |
| 209 | char *string_flags = string_flags_buf; |
| 210 | char *extra_opts = string_flags_buf; |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 211 | unsigned long flags = 0; |
| 212 | char *filesystemType = "auto"; |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 213 | char *device = NULL; |
| 214 | char *directory = NULL; |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 215 | int all = FALSE; |
| 216 | int fakeIt = FALSE; |
| 217 | int useMtab = TRUE; |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 218 | int i; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 219 | |
Eric Andersen | 29d2e36 | 1999-11-06 06:07:27 +0000 | [diff] [blame] | 220 | /* Only compiled in if BB_MTAB is not defined */ |
| 221 | whine_if_fstab_is_missing(); |
Eric Andersen | cb6e256 | 1999-10-16 15:48:40 +0000 | [diff] [blame] | 222 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 223 | if (argc == 1) { |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 224 | FILE *mountTable = setmntent (mtab_file, "r"); |
| 225 | if (mountTable) { |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 226 | struct mntent *m; |
| 227 | while ((m = getmntent (mountTable)) != 0) { |
Eric Andersen | cb6e256 | 1999-10-16 15:48:40 +0000 | [diff] [blame] | 228 | struct fstab* fstabItem; |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 229 | char *blockDevice = m->mnt_fsname; |
Eric Andersen | cb6e256 | 1999-10-16 15:48:40 +0000 | [diff] [blame] | 230 | /* Note that if /etc/fstab is missing, libc can't fix up /dev/root for us */ |
| 231 | if (strcmp (blockDevice, "/dev/root") == 0) { |
| 232 | fstabItem = getfsfile ("/"); |
| 233 | if (fstabItem != NULL) |
| 234 | blockDevice = fstabItem->fs_spec; |
| 235 | } |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 236 | printf ("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir, |
| 237 | m->mnt_type, m->mnt_opts); |
| 238 | } |
| 239 | endmntent (mountTable); |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 240 | } else { |
| 241 | perror(mtab_file); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 242 | } |
Eric Andersen | 3c16382 | 1999-10-14 22:16:57 +0000 | [diff] [blame] | 243 | exit( TRUE); |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 244 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 245 | |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 246 | |
| 247 | /* Parse options */ |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 248 | i = --argc; |
| 249 | argv++; |
| 250 | while (i > 0 && **argv) { |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 251 | if (**argv == '-') { |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 252 | char *opt = *argv; |
| 253 | while (i>0 && *++opt) switch (*opt) { |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 254 | case 'o': |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 255 | if (--i == 0) { |
Eric Andersen | d73dc5b | 1999-11-10 23:13:02 +0000 | [diff] [blame] | 256 | goto goodbye; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 257 | } |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 258 | parse_mount_options (*(++argv), &flags, string_flags); |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 259 | break; |
| 260 | case 'r': |
| 261 | flags |= MS_RDONLY; |
| 262 | break; |
| 263 | case 't': |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 264 | if (--i == 0) { |
Eric Andersen | d73dc5b | 1999-11-10 23:13:02 +0000 | [diff] [blame] | 265 | goto goodbye; |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 266 | } |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 267 | filesystemType = *(++argv); |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 268 | break; |
| 269 | case 'w': |
| 270 | flags &= ~MS_RDONLY; |
| 271 | break; |
| 272 | case 'a': |
Eric Andersen | 3ae0c78 | 1999-11-04 01:13:21 +0000 | [diff] [blame] | 273 | all = TRUE; |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 274 | break; |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 275 | #ifdef BB_MTAB |
| 276 | case 'f': |
| 277 | fakeIt = TRUE; |
| 278 | break; |
| 279 | case 'n': |
| 280 | useMtab = FALSE; |
| 281 | break; |
| 282 | #endif |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 283 | case 'v': |
| 284 | case 'h': |
| 285 | case '-': |
Eric Andersen | d73dc5b | 1999-11-10 23:13:02 +0000 | [diff] [blame] | 286 | goto goodbye; |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 287 | } |
| 288 | } else { |
| 289 | if (device == NULL) |
| 290 | device=*argv; |
| 291 | else if (directory == NULL) |
| 292 | directory=*argv; |
| 293 | else { |
Eric Andersen | d73dc5b | 1999-11-10 23:13:02 +0000 | [diff] [blame] | 294 | goto goodbye; |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 295 | } |
| 296 | } |
| 297 | i--; |
| 298 | argv++; |
| 299 | } |
| 300 | |
Eric Andersen | 3ae0c78 | 1999-11-04 01:13:21 +0000 | [diff] [blame] | 301 | if (all == TRUE) { |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 302 | struct mntent *m; |
| 303 | FILE *f = setmntent ("/etc/fstab", "r"); |
| 304 | |
| 305 | if (f == NULL) { |
| 306 | perror("/etc/fstab"); |
Eric Andersen | 3c16382 | 1999-10-14 22:16:57 +0000 | [diff] [blame] | 307 | exit( FALSE); |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 308 | } |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 309 | while ((m = getmntent (f)) != NULL) { |
Eric Andersen | 3ae0c78 | 1999-11-04 01:13:21 +0000 | [diff] [blame] | 310 | // If the file system isn't noauto, and isn't mounted on /, |
| 311 | // and isn't swap or nfs, then mount it |
| 312 | if ((!strstr (m->mnt_opts, "noauto")) && |
| 313 | (m->mnt_dir[1] != '\0') && |
| 314 | (!strstr (m->mnt_type, "swap")) && |
| 315 | (!strstr (m->mnt_type, "nfs"))) |
| 316 | { |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 317 | flags = 0; |
Eric Andersen | 3ae0c78 | 1999-11-04 01:13:21 +0000 | [diff] [blame] | 318 | *string_flags = '\0'; |
Eric Andersen | d0246fb | 1999-11-04 21:18:07 +0000 | [diff] [blame] | 319 | parse_mount_options(m->mnt_opts, &flags, string_flags); |
| 320 | mount_one (m->mnt_fsname, m->mnt_dir, m->mnt_type, |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 321 | flags, string_flags, useMtab, fakeIt, extra_opts); |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 322 | } |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 323 | } |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 324 | endmntent (f); |
| 325 | } else { |
Eric Andersen | 8341a15 | 1999-10-08 17:14:14 +0000 | [diff] [blame] | 326 | if (device && directory) { |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 327 | #ifdef BB_NFSMOUNT |
| 328 | if (strcmp(filesystemType, "nfs") == 0) { |
| 329 | if (nfsmount(device, directory, &flags, &extra_opts, &string_flags, 1) != 0) |
| 330 | exit(FALSE); |
| 331 | } |
| 332 | #endif |
Eric Andersen | 3c16382 | 1999-10-14 22:16:57 +0000 | [diff] [blame] | 333 | exit (mount_one (device, directory, filesystemType, |
Eric Andersen | a9c95ea | 1999-11-15 17:33:30 +0000 | [diff] [blame^] | 334 | flags, string_flags, useMtab, fakeIt, extra_opts)); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 335 | } else { |
Eric Andersen | d73dc5b | 1999-11-10 23:13:02 +0000 | [diff] [blame] | 336 | goto goodbye; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 337 | } |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 338 | } |
Eric Andersen | 3c16382 | 1999-10-14 22:16:57 +0000 | [diff] [blame] | 339 | exit( TRUE); |
Eric Andersen | d73dc5b | 1999-11-10 23:13:02 +0000 | [diff] [blame] | 340 | |
| 341 | goodbye: |
| 342 | usage( mount_usage); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 343 | } |