blob: eb6091f30e3763dc7df780b6a820cb59f8ee04fc [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersencc8ed391999-10-05 16:24:54 +00002/*
Eric Andersen596e5461999-10-07 08:30:23 +00003 * Mini mount implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Eric Andersen596e5461999-10-07 08:30:23 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * 3/21/1999 Charles P. Wright <cpwright@cpwright.com>
22 * searches through fstab when -a is passed
23 * will try mounting stuff with all fses when passed -t auto
24 *
25 * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab.
Eric Andersenc4996011999-10-20 22:08:37 +000026 *
27 * 1999-10-07 Erik Andersen <andersen@lineo.com>, <andersee@debian.org>.
Erik Andersen31638212000-01-15 22:28:50 +000028 * Rewrite of a lot of code. Removed mtab usage (I plan on
Eric Andersenc4996011999-10-20 22:08:37 +000029 * putting it back as a compile-time option some time),
30 * major adjustments to option parsing, and some serious
31 * dieting all around.
Erik Andersenb7cc49d2000-01-13 06:38:14 +000032 *
Erik Andersen31638212000-01-15 22:28:50 +000033 * 1999-11-06 mtab suppport is back - andersee
34 *
Erik Andersenb7cc49d2000-01-13 06:38:14 +000035 * 2000-01-12 Ben Collins <bcollins@debian.org>, Borrowed utils-linux's
36 * mount to add loop support.
Eric Andersenfdd51032000-08-02 18:48:26 +000037 *
38 * 2000-04-30 Dave Cinege <dcinege@psychosis.com>
39 * Rewrote fstab while loop and lower mount section. Can now do
40 * single mounts from fstab. Can override fstab options for single
41 * mount. Common mount_one call for single mounts and 'all'. Fixed
42 * mtab updating and stale entries. Removed 'remount' default.
43 *
Erik Andersenb7cc49d2000-01-13 06:38:14 +000044 */
Eric Andersencc8ed391999-10-05 16:24:54 +000045
Matt Kraai34251112001-05-02 21:17:38 +000046#include <limits.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000047#include <stdlib.h>
48#include <unistd.h>
49#include <errno.h>
50#include <string.h>
51#include <stdio.h>
52#include <mntent.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000053#include <ctype.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000054#include "busybox.h"
Mark Whitley4b541a82001-04-25 17:10:30 +000055#if defined BB_FEATURE_USE_DEVPS_PATCH
56# include <linux/devmtab.h> /* For Erik's nifty devmtab device driver */
57#endif
Eric Andersenbd22ed82000-07-08 18:55:24 +000058
Mark Whitley59ab0252001-01-23 22:30:04 +000059enum {
60 MS_MGC_VAL = 0xc0ed0000, /* Magic number indicatng "new" flags */
61 MS_RDONLY = 1, /* Mount read-only */
62 MS_NOSUID = 2, /* Ignore suid and sgid bits */
63 MS_NODEV = 4, /* Disallow access to device special files */
64 MS_NOEXEC = 8, /* Disallow program execution */
65 MS_SYNCHRONOUS = 16, /* Writes are synced at once */
66 MS_REMOUNT = 32, /* Alter flags of a mounted FS */
67 MS_MANDLOCK = 64, /* Allow mandatory locks on an FS */
68 S_QUOTA = 128, /* Quota initialized for file/directory/symlink */
69 S_APPEND = 256, /* Append-only file */
70 S_IMMUTABLE = 512, /* Immutable file */
71 MS_NOATIME = 1024, /* Do not update access times. */
72 MS_NODIRATIME = 2048, /* Do not update directory access times */
Eric Andersen2f6e1f82001-05-21 15:59:34 +000073 MS_BIND = 4096, /* Use the new linux 2.4.x "mount --bind" feature */
Mark Whitley59ab0252001-01-23 22:30:04 +000074};
Eric Andersencc8ed391999-10-05 16:24:54 +000075
Eric Andersenbd22ed82000-07-08 18:55:24 +000076
Erik Andersenb7cc49d2000-01-13 06:38:14 +000077#if defined BB_FEATURE_MOUNT_LOOP
78#include <fcntl.h>
79#include <sys/ioctl.h>
Erik Andersene132f4b2000-02-09 04:16:43 +000080static int use_loop = FALSE;
Erik Andersenb7cc49d2000-01-13 06:38:14 +000081#endif
82
Eric Andersena57ba4d2000-07-08 19:20:49 +000083extern int mount (__const char *__special_file, __const char *__dir,
84 __const char *__fstype, unsigned long int __rwflag,
85 __const void *__data);
86extern int umount (__const char *__special_file);
87extern int umount2 (__const char *__special_file, int __flags);
Eric Andersende440672001-03-01 07:55:49 +000088
Eric Andersene76c3b02001-04-05 03:14:39 +000089extern int sysfs( int option, unsigned int fs_index, char * buf);
Eric Andersena57ba4d2000-07-08 19:20:49 +000090
Erik Andersene49d5ec2000-02-08 19:58:47 +000091extern const char mtab_file[]; /* Defined in utility.c */
Eric Andersend0246fb1999-11-04 21:18:07 +000092
Eric Andersencc8ed391999-10-05 16:24:54 +000093struct mount_options {
Erik Andersene49d5ec2000-02-08 19:58:47 +000094 const char *name;
95 unsigned long and;
96 unsigned long or;
Eric Andersencc8ed391999-10-05 16:24:54 +000097};
98
Eric Andersen596e5461999-10-07 08:30:23 +000099static const struct mount_options mount_options[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000100 {"async", ~MS_SYNCHRONOUS, 0},
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000101 {"atime", ~0, ~MS_NOATIME},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000102 {"defaults", ~0, 0},
103 {"dev", ~MS_NODEV, 0},
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000104 {"diratime", ~0, ~MS_NODIRATIME},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105 {"exec", ~MS_NOEXEC, 0},
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000106 {"noatime", ~0, MS_NOATIME},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000107 {"nodev", ~0, MS_NODEV},
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000108 {"nodiratime", ~0, MS_NODIRATIME},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000109 {"noexec", ~0, MS_NOEXEC},
110 {"nosuid", ~0, MS_NOSUID},
111 {"remount", ~0, MS_REMOUNT},
112 {"ro", ~0, MS_RDONLY},
113 {"rw", ~MS_RDONLY, 0},
114 {"suid", ~MS_NOSUID, 0},
115 {"sync", ~0, MS_SYNCHRONOUS},
Eric Andersen2f6e1f82001-05-21 15:59:34 +0000116 {"bind", ~0, MS_BIND},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000117 {0, 0, 0}
Eric Andersencc8ed391999-10-05 16:24:54 +0000118};
119
Eric Andersend0246fb1999-11-04 21:18:07 +0000120static int
Erik Andersene49d5ec2000-02-08 19:58:47 +0000121do_mount(char *specialfile, char *dir, char *filesystemtype,
122 long flags, void *string_flags, int useMtab, int fakeIt,
Matt Kraai9344f752001-06-03 02:21:38 +0000123 char *mtab_opts, int mount_all)
Eric Andersend0246fb1999-11-04 21:18:07 +0000124{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125 int status = 0;
Eric Andersen8847b9a2000-09-21 01:33:05 +0000126#if defined BB_FEATURE_MOUNT_LOOP
Erik Andersene132f4b2000-02-09 04:16:43 +0000127 char *lofile = NULL;
Eric Andersen8847b9a2000-09-21 01:33:05 +0000128#endif
Eric Andersend0246fb1999-11-04 21:18:07 +0000129
Erik Andersene49d5ec2000-02-08 19:58:47 +0000130 if (fakeIt == FALSE)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000131 {
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000132#if defined BB_FEATURE_MOUNT_LOOP
Erik Andersene132f4b2000-02-09 04:16:43 +0000133 if (use_loop==TRUE) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134 int loro = flags & MS_RDONLY;
Mark Whitleye677dfe2001-02-26 17:45:58 +0000135
136 lofile = specialfile;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137
138 specialfile = find_unused_loop_device();
139 if (specialfile == NULL) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000140 error_msg_and_die("Could not find a spare loop device");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000141 }
142 if (set_loop(specialfile, lofile, 0, &loro)) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000143 error_msg_and_die("Could not setup loop device");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000144 }
145 if (!(flags & MS_RDONLY) && loro) { /* loop is ro, but wanted rw */
Matt Kraaidd19c692001-01-31 19:00:21 +0000146 error_msg("WARNING: loop device is read-only");
Matt Kraai94f3a572001-07-05 14:46:07 +0000147 flags |= MS_RDONLY;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000148 }
149 }
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000150#endif
Eric Andersena42982e2000-06-07 17:28:53 +0000151 status = mount(specialfile, dir, filesystemtype, flags, string_flags);
Matt Kraai9344f752001-06-03 02:21:38 +0000152 if (status < 0 && errno == EROFS) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000153 error_msg("%s is write-protected, mounting read-only", specialfile);
Eric Andersen0cccdfa2000-09-20 06:23:36 +0000154 status = mount(specialfile, dir, filesystemtype, flags |= MS_RDONLY, string_flags);
155 }
Matt Kraai9344f752001-06-03 02:21:38 +0000156 /* Don't whine about already mounted filesystems when mounting all. */
157 if (status < 0 && errno == EBUSY && mount_all)
158 return TRUE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 }
Erik Andersen5cbdd712000-01-26 20:06:48 +0000160
161
Erik Andersene49d5ec2000-02-08 19:58:47 +0000162 /* If the mount was sucessful, do anything needed, then return TRUE */
Eric Andersen0c8e2a62000-08-02 18:56:25 +0000163 if (status == 0 || fakeIt==TRUE) {
Erik Andersen5cbdd712000-01-26 20:06:48 +0000164
Eric Andersenc4cef5a2001-04-01 16:01:11 +0000165#if defined BB_FEATURE_MTAB_SUPPORT
Erik Andersene49d5ec2000-02-08 19:58:47 +0000166 if (useMtab == TRUE) {
Eric Andersenfdd51032000-08-02 18:48:26 +0000167 erase_mtab(specialfile); // Clean any stale entries
Erik Andersene49d5ec2000-02-08 19:58:47 +0000168 write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
169 }
170#endif
171 return (TRUE);
172 }
173
174 /* Bummer. mount failed. Clean up */
175#if defined BB_FEATURE_MOUNT_LOOP
Erik Andersene132f4b2000-02-09 04:16:43 +0000176 if (lofile != NULL) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000177 del_loop(specialfile);
Erik Andersen5cbdd712000-01-26 20:06:48 +0000178 }
Eric Andersend0246fb1999-11-04 21:18:07 +0000179#endif
Eric Andersena42982e2000-06-07 17:28:53 +0000180
181 if (errno == EPERM) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000182 error_msg_and_die("permission denied. Are you root?");
Eric Andersena42982e2000-06-07 17:28:53 +0000183 }
184
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185 return (FALSE);
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000186}
187
Eric Andersend0246fb1999-11-04 21:18:07 +0000188
Eric Andersencc8ed391999-10-05 16:24:54 +0000189
Eric Andersen8341a151999-10-08 17:14:14 +0000190/* Seperate standard mount options from the nonstandard string options */
Eric Andersencc8ed391999-10-05 16:24:54 +0000191static void
Eric Andersene7413a92000-07-14 06:19:41 +0000192parse_mount_options(char *options, int *flags, char *strflags)
Eric Andersencc8ed391999-10-05 16:24:54 +0000193{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000194 while (options) {
195 int gotone = FALSE;
196 char *comma = strchr(options, ',');
197 const struct mount_options *f = mount_options;
Eric Andersencc8ed391999-10-05 16:24:54 +0000198
Erik Andersene49d5ec2000-02-08 19:58:47 +0000199 if (comma)
200 *comma = '\0';
Eric Andersen3ae0c781999-11-04 01:13:21 +0000201
Erik Andersene49d5ec2000-02-08 19:58:47 +0000202 while (f->name != 0) {
203 if (strcasecmp(f->name, options) == 0) {
204
205 *flags &= f->and;
206 *flags |= f->or;
207 gotone = TRUE;
208 break;
209 }
210 f++;
211 }
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000212#if defined BB_FEATURE_MOUNT_LOOP
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213 if (gotone == FALSE && !strcasecmp("loop", options)) { /* loop device support */
Erik Andersene132f4b2000-02-09 04:16:43 +0000214 use_loop = TRUE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000215 gotone = TRUE;
216 }
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000217#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000218 if (*strflags && strflags != '\0' && gotone == FALSE) {
219 char *temp = strflags;
220
221 temp += strlen(strflags);
222 *temp++ = ',';
223 *temp++ = '\0';
224 }
225 if (gotone == FALSE)
226 strcat(strflags, options);
227 if (comma) {
228 *comma = ',';
229 options = ++comma;
230 } else {
231 break;
232 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000233 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000234}
235
Eric Andersen044228d2001-07-17 01:12:36 +0000236static int
Eric Andersend0246fb1999-11-04 21:18:07 +0000237mount_one(char *blockDevice, char *directory, char *filesystemType,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000238 unsigned long flags, char *string_flags, int useMtab, int fakeIt,
Matt Kraai9344f752001-06-03 02:21:38 +0000239 char *mtab_opts, int whineOnErrors, int mount_all)
Eric Andersencc8ed391999-10-05 16:24:54 +0000240{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000241 int status = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000242
Erik Andersene49d5ec2000-02-08 19:58:47 +0000243 if (strcmp(filesystemType, "auto") == 0) {
Glenn L McGrath1e117b42001-03-30 01:28:13 +0000244 static const char *noauto_array[] = { "tmpfs", "shm", "proc", "ramfs", "devpts", "devfs", 0 };
245 const char **noauto_fstype;
Eric Andersen7b91f022001-03-01 07:50:04 +0000246 const int num_of_filesystems = sysfs(3, 0, 0);
247 char buf[255];
Glenn L McGrath323434b2001-03-02 22:21:34 +0000248 int i=0;
249
Eric Andersen7b91f022001-03-01 07:50:04 +0000250 filesystemType=buf;
Eric Andersencc8ed391999-10-05 16:24:54 +0000251
Eric Andersen7b91f022001-03-01 07:50:04 +0000252 while(i < num_of_filesystems) {
253 sysfs(2, i++, filesystemType);
Glenn L McGrath1e117b42001-03-30 01:28:13 +0000254 for (noauto_fstype = noauto_array; *noauto_fstype; noauto_fstype++) {
255 if (!strcmp(filesystemType, *noauto_fstype)) {
Glenn L McGrath323434b2001-03-02 22:21:34 +0000256 break;
257 }
258 }
Glenn L McGrath1e117b42001-03-30 01:28:13 +0000259 if (!*noauto_fstype) {
Glenn L McGrath323434b2001-03-02 22:21:34 +0000260 status = do_mount(blockDevice, directory, filesystemType,
Eric Andersen7b91f022001-03-01 07:50:04 +0000261 flags | MS_MGC_VAL, string_flags,
Matt Kraai9344f752001-06-03 02:21:38 +0000262 useMtab, fakeIt, mtab_opts, mount_all);
Glenn L McGrath323434b2001-03-02 22:21:34 +0000263 if (status == TRUE)
264 break;
265 }
Erik Andersen246cc6d2000-03-07 07:41:42 +0000266 }
Eric Andersen7b91f022001-03-01 07:50:04 +0000267 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000268 status = do_mount(blockDevice, directory, filesystemType,
Eric Andersen7b91f022001-03-01 07:50:04 +0000269 flags | MS_MGC_VAL, string_flags, useMtab,
Matt Kraai9344f752001-06-03 02:21:38 +0000270 fakeIt, mtab_opts, mount_all);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000271 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000272
Eric Andersena42982e2000-06-07 17:28:53 +0000273 if (status == FALSE) {
Erik Andersene132f4b2000-02-09 04:16:43 +0000274 if (whineOnErrors == TRUE) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000275 perror_msg("Mounting %s on %s failed", blockDevice, directory);
Erik Andersene132f4b2000-02-09 04:16:43 +0000276 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000277 return (FALSE);
278 }
279 return (TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000280}
281
Matt Kraai12400822001-04-17 04:32:50 +0000282void show_mounts()
283{
284#if defined BB_FEATURE_USE_DEVPS_PATCH
285 int fd, i, numfilesystems;
286 char device[] = "/dev/mtab";
287 struct k_mntent *mntentlist;
288
289 /* open device */
290 fd = open(device, O_RDONLY);
291 if (fd < 0)
292 perror_msg_and_die("open failed for `%s'", device);
293
294 /* How many mounted filesystems? We need to know to
295 * allocate enough space for later... */
296 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
297 if (numfilesystems<0)
298 perror_msg_and_die( "\nDEVMTAB_COUNT_MOUNTS");
299 mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
300
301 /* Grab the list of mounted filesystems */
302 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
303 perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
304
305 for( i = 0 ; i < numfilesystems ; i++) {
306 printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
307 mntentlist[i].mnt_dir, mntentlist[i].mnt_type,
308 mntentlist[i].mnt_opts, mntentlist[i].mnt_freq,
309 mntentlist[i].mnt_passno);
310 }
311#ifdef BB_FEATURE_CLEAN_UP
312 /* Don't bother to close files or free memory. Exit
313 * does that automagically, so we can save a few bytes */
314 free( mntentlist);
315 close(fd);
316#endif
317 exit(EXIT_SUCCESS);
318#else
319 FILE *mountTable = setmntent(mtab_file, "r");
320
321 if (mountTable) {
322 struct mntent *m;
323
324 while ((m = getmntent(mountTable)) != 0) {
325 char *blockDevice = m->mnt_fsname;
326 if (strcmp(blockDevice, "/dev/root") == 0) {
Eric Andersenc911a432001-05-15 17:42:16 +0000327 blockDevice = find_real_root_device_name(blockDevice);
Matt Kraai12400822001-04-17 04:32:50 +0000328 }
329 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
330 m->mnt_type, m->mnt_opts);
Eric Andersenc911a432001-05-15 17:42:16 +0000331#ifdef BB_FEATURE_CLEAN_UP
332 if(blockDevice != m->mnt_fsname)
333 free(blockDevice);
334#endif
Matt Kraai12400822001-04-17 04:32:50 +0000335 }
336 endmntent(mountTable);
337 } else {
338 perror_msg_and_die("%s", mtab_file);
339 }
340 exit(EXIT_SUCCESS);
341#endif
342}
343
Erik Andersene49d5ec2000-02-08 19:58:47 +0000344extern int mount_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000345{
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000346 struct stat statbuf;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000347 char string_flags_buf[1024] = "";
348 char *string_flags = string_flags_buf;
349 char *extra_opts = string_flags_buf;
Eric Andersene7413a92000-07-14 06:19:41 +0000350 int flags = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000351 char *filesystemType = "auto";
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000352 char *device = xmalloc(PATH_MAX);
353 char *directory = xmalloc(PATH_MAX);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000354 int all = FALSE;
355 int fakeIt = FALSE;
356 int useMtab = TRUE;
Matt Kraai3e856ce2000-12-01 02:55:13 +0000357 int rc = EXIT_FAILURE;
Eric Andersenfdd51032000-08-02 18:48:26 +0000358 int fstabmount = FALSE;
Matt Kraaia3045df2001-04-17 04:48:51 +0000359 int opt;
Eric Andersencc8ed391999-10-05 16:24:54 +0000360
Erik Andersene49d5ec2000-02-08 19:58:47 +0000361 /* Parse options */
Matt Kraaia3045df2001-04-17 04:48:51 +0000362 while ((opt = getopt(argc, argv, "o:rt:wafnv")) > 0) {
363 switch (opt) {
364 case 'o':
365 parse_mount_options(optarg, &flags, string_flags);
366 break;
367 case 'r':
368 flags |= MS_RDONLY;
369 break;
370 case 't':
371 filesystemType = optarg;
372 break;
373 case 'w':
374 flags &= ~MS_RDONLY;
375 break;
376 case 'a':
377 all = TRUE;
378 break;
379 case 'f':
380 fakeIt = TRUE;
381 break;
Eric Andersenc4cef5a2001-04-01 16:01:11 +0000382#ifdef BB_FEATURE_MTAB_SUPPORT
Matt Kraaia3045df2001-04-17 04:48:51 +0000383 case 'n':
384 useMtab = FALSE;
385 break;
Eric Andersena9c95ea1999-11-15 17:33:30 +0000386#endif
Matt Kraaia3045df2001-04-17 04:48:51 +0000387 case 'v':
388 break; /* ignore -v */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000389 }
Matt Kraaia3045df2001-04-17 04:48:51 +0000390 }
391
Matt Kraai34251112001-05-02 21:17:38 +0000392 if (!all && optind == argc)
Matt Kraai12400822001-04-17 04:32:50 +0000393 show_mounts();
394
Matt Kraaie6bf66e2001-05-04 14:49:58 +0000395 if (optind < argc) {
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000396 /* if device is a filename get its real path */
Glenn L McGrathcc0aa0f2001-05-07 01:51:24 +0000397 if (stat(argv[optind], &statbuf) == 0) {
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000398 realpath(argv[optind], device);
399 } else {
Matt Kraaie6bf66e2001-05-04 14:49:58 +0000400 safe_strncpy(device, argv[optind], PATH_MAX);
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000401 }
Matt Kraaie6bf66e2001-05-04 14:49:58 +0000402 }
Matt Kraai34251112001-05-02 21:17:38 +0000403
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000404 if (optind + 1 < argc) {
405 if (realpath(argv[optind + 1], directory) == NULL) {
Glenn L McGrath1b626192001-05-07 01:40:59 +0000406 perror_msg_and_die("%s", directory);
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000407 }
408 }
409
Matt Kraai34251112001-05-02 21:17:38 +0000410 if (all == TRUE || optind + 1 == argc) {
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000411 struct mntent *m = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000412 FILE *f = setmntent("/etc/fstab", "r");
Eric Andersenfdd51032000-08-02 18:48:26 +0000413 fstabmount = TRUE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000414
Erik Andersen246cc6d2000-03-07 07:41:42 +0000415 if (f == NULL)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000416 perror_msg_and_die( "\nCannot read /etc/fstab");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000417
Erik Andersene49d5ec2000-02-08 19:58:47 +0000418 while ((m = getmntent(f)) != NULL) {
Matt Kraai34251112001-05-02 21:17:38 +0000419 if (all == FALSE && optind + 1 == argc && (
Eric Andersenfdd51032000-08-02 18:48:26 +0000420 (strcmp(device, m->mnt_fsname) != 0) &&
421 (strcmp(device, m->mnt_dir) != 0) ) ) {
422 continue;
423 }
424
425 if (all == TRUE && ( // If we're mounting 'all'
426 (strstr(m->mnt_opts, "noauto")) || // and the file system isn't noauto,
427 (strstr(m->mnt_type, "swap")) || // and isn't swap or nfs, then mount it
428 (strstr(m->mnt_type, "nfs")) ) ) {
429 continue;
430 }
431
432 if (all == TRUE || flags == 0) { // Allow single mount to override fstab flags
Erik Andersene49d5ec2000-02-08 19:58:47 +0000433 flags = 0;
434 *string_flags = '\0';
435 parse_mount_options(m->mnt_opts, &flags, string_flags);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000436 }
Eric Andersenfdd51032000-08-02 18:48:26 +0000437
Matt Kraai34251112001-05-02 21:17:38 +0000438 strcpy(device, m->mnt_fsname);
439 strcpy(directory, m->mnt_dir);
Eric Andersenfdd51032000-08-02 18:48:26 +0000440 filesystemType = strdup(m->mnt_type);
441singlemount:
Mark Whitley20f61d32001-03-14 17:30:44 +0000442 string_flags = strdup(string_flags);
Eric Andersend9d03b82000-12-12 23:20:37 +0000443 rc = EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000444#ifdef BB_NFSMOUNT
Pavel Roskin680d65a2000-06-06 17:03:55 +0000445 if (strchr(device, ':') != NULL)
446 filesystemType = "nfs";
Erik Andersene49d5ec2000-02-08 19:58:47 +0000447 if (strcmp(filesystemType, "nfs") == 0) {
Matt Kraai93ba60f2001-02-28 15:33:12 +0000448 if (nfsmount (device, directory, &flags, &extra_opts,
449 &string_flags, 1)) {
450 perror_msg("nfsmount failed");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000451 rc = EXIT_FAILURE;
Eric Andersenfdd51032000-08-02 18:48:26 +0000452 }
Eric Andersen252bacc2000-09-19 01:21:13 +0000453 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000454#endif
Matt Kraai92ed8a32000-12-06 15:55:23 +0000455 if (!mount_one(device, directory, filesystemType, flags,
Matt Kraai9344f752001-06-03 02:21:38 +0000456 string_flags, useMtab, fakeIt, extra_opts, TRUE, all))
Matt Kraai92ed8a32000-12-06 15:55:23 +0000457 rc = EXIT_FAILURE;
Eric Andersenfdd51032000-08-02 18:48:26 +0000458
459 if (all == FALSE)
460 break;
Eric Andersenfdd51032000-08-02 18:48:26 +0000461 }
462 if (fstabmount == TRUE)
463 endmntent(f);
464
Matt Kraaie6bf66e2001-05-04 14:49:58 +0000465 if (all == FALSE && fstabmount == TRUE && m == NULL)
Eric Andersenfdd51032000-08-02 18:48:26 +0000466 fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
467
Matt Kraai93ba60f2001-02-28 15:33:12 +0000468 return rc;
Eric Andersenfdd51032000-08-02 18:48:26 +0000469 }
470
471 goto singlemount;
Eric Andersencc8ed391999-10-05 16:24:54 +0000472}