1 /* vi: set sw=4 ts=4: */
3 * Mini mount implementation for busybox
5 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
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.
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.
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
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
25 * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab.
27 * 1999-10-07 Erik Andersen <andersen@lineo.com>, <andersee@debian.org>.
28 * Rewrite of a lot of code. Removed mtab usage (I plan on
29 * putting it back as a compile-time option some time),
30 * major adjustments to option parsing, and some serious
33 * 1999-11-06 mtab suppport is back - andersee
35 * 2000-01-12 Ben Collins <bcollins@debian.org>, Borrowed utils-linux's
36 * mount to add loop support.
46 #include <sys/mount.h>
48 #if defined BB_FEATURE_USE_DEVPS_PATCH
49 #include <linux/devmtab.h>
56 #if defined BB_FEATURE_MOUNT_LOOP
58 #include <sys/ioctl.h>
59 #include <linux/loop.h>
62 static int use_loop = FALSE;
65 extern const char mtab_file[]; /* Defined in utility.c */
67 static const char mount_usage[] =
68 "mount [flags] device directory [-o options,more-options]\n"
69 #ifndef BB_FEATURE_TRIVIAL_HELP
70 "\nMount a filesystem\n\n"
72 "\t-a:\t\tMount all filesystems in fstab.\n"
74 "\t-f:\t\t\"Fake\" mount. Add entry to mount table but don't mount it.\n"
75 "\t-n:\t\tDon't write a mount table entry.\n"
77 "\t-o option:\tOne of many filesystem options, listed below.\n"
78 "\t-r:\t\tMount the filesystem read-only.\n"
79 "\t-t fs-type:\tSpecify the filesystem type.\n"
80 "\t-w:\t\tMount for reading and writing (default).\n"
82 "Options for use with the \"-o\" flag:\n"
83 "\tasync/sync:\tWrites are asynchronous / synchronous.\n"
84 "\tatime/noatime:\tEnable / disable updates to inode access times.\n"
85 "\tdev/nodev:\tAllow use of special device files / disallow them.\n"
86 "\texec/noexec:\tAllow use of executable files / disallow them.\n"
87 #if defined BB_FEATURE_MOUNT_LOOP
88 "\tloop:\t\tMounts a file via loop device.\n"
90 "\tsuid/nosuid:\tAllow set-user-id-root programs / disallow them.\n"
91 "\tremount:\tRe-mount a currently-mounted filesystem, changing its flags.\n"
92 "\tro/rw:\t\tMount for read-only / read-write.\n"
93 "\nThere are EVEN MORE flags that are specific to each filesystem.\n"
94 "You'll have to see the written documentation for those.\n"
99 struct mount_options {
105 static const struct mount_options mount_options[] = {
106 {"async", ~MS_SYNCHRONOUS, 0},
107 {"atime", ~0, ~MS_NOATIME},
109 {"dev", ~MS_NODEV, 0},
110 {"diratime", ~0, ~MS_NODIRATIME},
111 {"exec", ~MS_NOEXEC, 0},
112 {"noatime", ~0, MS_NOATIME},
113 {"nodev", ~0, MS_NODEV},
114 {"nodiratime", ~0, MS_NODIRATIME},
115 {"noexec", ~0, MS_NOEXEC},
116 {"nosuid", ~0, MS_NOSUID},
117 {"remount", ~0, MS_REMOUNT},
118 {"ro", ~0, MS_RDONLY},
119 {"rw", ~MS_RDONLY, 0},
120 {"suid", ~MS_NOSUID, 0},
121 {"sync", ~0, MS_SYNCHRONOUS},
126 do_mount(char *specialfile, char *dir, char *filesystemtype,
127 long flags, void *string_flags, int useMtab, int fakeIt,
137 #if defined BB_FEATURE_MOUNT_LOOP
138 if (use_loop==TRUE) {
139 int loro = flags & MS_RDONLY;
140 char *lofile = specialfile;
142 specialfile = find_unused_loop_device();
143 if (specialfile == NULL) {
144 fprintf(stderr, "Could not find a spare loop device\n");
147 if (set_loop(specialfile, lofile, 0, &loro)) {
148 fprintf(stderr, "Could not setup loop device\n");
151 if (!(flags & MS_RDONLY) && loro) { /* loop is ro, but wanted rw */
152 fprintf(stderr, "WARNING: loop device is read-only\n");
158 mount(specialfile, dir, filesystemtype, flags, string_flags);
162 /* If the mount was sucessful, do anything needed, then return TRUE */
166 if (useMtab == TRUE) {
167 write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
173 /* Bummer. mount failed. Clean up */
174 #if defined BB_FEATURE_MOUNT_LOOP
175 if (lofile != NULL) {
176 del_loop(specialfile);
184 /* Seperate standard mount options from the nonstandard string options */
186 parse_mount_options(char *options, unsigned long *flags, char *strflags)
190 char *comma = strchr(options, ',');
191 const struct mount_options *f = mount_options;
196 while (f->name != 0) {
197 if (strcasecmp(f->name, options) == 0) {
206 #if defined BB_FEATURE_MOUNT_LOOP
207 if (gotone == FALSE && !strcasecmp("loop", options)) { /* loop device support */
212 if (*strflags && strflags != '\0' && gotone == FALSE) {
213 char *temp = strflags;
215 temp += strlen(strflags);
220 strcat(strflags, options);
231 mount_one(char *blockDevice, char *directory, char *filesystemType,
232 unsigned long flags, char *string_flags, int useMtab, int fakeIt,
233 char *mtab_opts, int whineOnErrors)
237 #if defined BB_FEATURE_USE_PROCFS
239 if (strcmp(filesystemType, "auto") == 0) {
240 FILE *f = fopen("/proc/filesystems", "r");
245 while (fgets(buf, sizeof(buf), f) != NULL) {
246 filesystemType = buf;
247 if (*filesystemType == '\t') { // Not a nodev filesystem
249 // Add NULL termination to each line
250 while (*filesystemType && *filesystemType != '\n')
252 *filesystemType = '\0';
254 filesystemType = buf;
255 filesystemType++; // hop past tab
257 status = do_mount(blockDevice, directory, filesystemType,
258 flags | MS_MGC_VAL, string_flags,
259 useMtab, fakeIt, mtab_opts);
267 #if defined BB_FEATURE_USE_DEVPS_PATCH
268 if (strcmp(filesystemType, "auto") == 0) {
269 int fd, i, numfilesystems;
270 char device[] = "/dev/mtab";
271 struct k_fstype *fslist;
274 fd = open(device, O_RDONLY);
276 fatalError("open failed for `%s': %s\n", device, strerror (errno));
278 /* How many filesystems? We need to know to allocate enough space */
279 numfilesystems = ioctl (fd, DEVMTAB_COUNT_FILESYSTEMS);
280 if (numfilesystems<0)
281 fatalError("\nDEVMTAB_COUNT_FILESYSTEMS: %s\n", strerror (errno));
282 fslist = (struct k_fstype *) calloc ( numfilesystems, sizeof(struct k_fstype));
284 /* Grab the list of available filesystems */
285 status = ioctl (fd, DEVMTAB_GET_FILESYSTEMS, fslist);
287 fatalError("\nDEVMTAB_GET_FILESYSTEMS: %s\n", strerror (errno));
289 /* Walk the list trying to mount filesystems
290 * that do not claim to be nodev filesystems */
291 for( i = 0 ; i < numfilesystems ; i++) {
292 if (fslist[i].mnt_nodev)
294 status = do_mount(blockDevice, directory, fslist[i].mnt_type,
295 flags | MS_MGC_VAL, string_flags,
296 useMtab, fakeIt, mtab_opts);
305 status = do_mount(blockDevice, directory, filesystemType,
306 flags | MS_MGC_VAL, string_flags, useMtab,
310 if (status == FALSE && whineOnErrors == TRUE) {
311 if (whineOnErrors == TRUE) {
312 fprintf(stderr, "Mounting %s on %s failed: %s\n",
313 blockDevice, directory, strerror(errno));
320 extern int mount_main(int argc, char **argv)
322 char string_flags_buf[1024] = "";
323 char *string_flags = string_flags_buf;
324 char *extra_opts = string_flags_buf;
325 unsigned long flags = 0;
326 char *filesystemType = "auto";
328 char *directory = NULL;
334 #if defined BB_FEATURE_USE_DEVPS_PATCH
336 int fd, i, numfilesystems;
337 char device[] = "/dev/mtab";
338 struct k_mntent *mntentlist;
341 fd = open(device, O_RDONLY);
343 fatalError("open failed for `%s': %s\n", device, strerror (errno));
345 /* How many mounted filesystems? We need to know to
346 * allocate enough space for later... */
347 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
348 if (numfilesystems<0)
349 fatalError( "\nDEVMTAB_COUNT_MOUNTS: %s\n", strerror (errno));
350 mntentlist = (struct k_mntent *) calloc ( numfilesystems, sizeof(struct k_mntent));
352 /* Grab the list of mounted filesystems */
353 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
354 fatalError( "\nDEVMTAB_GET_MOUNTS: %s\n", strerror (errno));
356 for( i = 0 ; i < numfilesystems ; i++) {
357 fprintf( stdout, "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
358 mntentlist[i].mnt_dir, mntentlist[i].mnt_type,
359 mntentlist[i].mnt_opts, mntentlist[i].mnt_freq,
360 mntentlist[i].mnt_passno);
362 /* Don't bother to close files or free memory. Exit
363 * does that automagically, so we can save a few bytes */
372 FILE *mountTable = setmntent(mtab_file, "r");
377 while ((m = getmntent(mountTable)) != 0) {
378 char *blockDevice = m->mnt_fsname;
379 if (strcmp(blockDevice, "/dev/root") == 0) {
380 find_real_root_device_name( blockDevice);
382 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
383 m->mnt_type, m->mnt_opts);
385 endmntent(mountTable);
396 while (i > 0 && **argv) {
400 while (i > 0 && *++opt)
406 parse_mount_options(*(++argv), &flags, string_flags);
415 filesystemType = *(++argv);
432 break; /* ignore -v */
440 else if (directory == NULL)
452 FILE *f = setmntent("/etc/fstab", "r");
455 fatalError( "\nCannot read /etc/fstab: %s\n", strerror (errno));
457 while ((m = getmntent(f)) != NULL) {
458 // If the filesystem isn't noauto,
459 // and isn't swap or nfs, then mount it
460 if ((!strstr(m->mnt_opts, "noauto")) &&
461 (!strstr(m->mnt_type, "swap")) &&
462 (!strstr(m->mnt_type, "nfs"))) {
464 *string_flags = '\0';
465 parse_mount_options(m->mnt_opts, &flags, string_flags);
466 /* If the directory is /, try to remount
467 * with the options specified in fstab */
468 if (m->mnt_dir[0] == '/' && m->mnt_dir[1] == '\0') {
471 if (mount_one(m->mnt_fsname, m->mnt_dir, m->mnt_type,
472 flags, string_flags, useMtab, fakeIt,
475 /* Try again, but this time try a remount */
476 mount_one(m->mnt_fsname, m->mnt_dir, m->mnt_type,
477 flags|MS_REMOUNT, string_flags, useMtab, fakeIt,
484 if (device && directory) {
486 if (strchr(device, ':') != NULL)
487 filesystemType = "nfs";
488 if (strcmp(filesystemType, "nfs") == 0) {
490 ret = nfsmount (device, directory, &flags,
491 &extra_opts, &string_flags, 1);
493 fatalError("nfsmount failed: %s\n", strerror(errno));
496 exit(mount_one(device, directory, filesystemType,
497 flags, string_flags, useMtab, fakeIt,