blob: df6b3a822811939971cf44c2c903023861f1e09c [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 Andersen1d1d2f92002-04-13 08:31:59 +00006 * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org>
Eric Andersen596e5461999-10-07 08:30:23 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * 3/21/1999 Charles P. Wright <cpwright@cpwright.com>
23 * searches through fstab when -a is passed
24 * will try mounting stuff with all fses when passed -t auto
25 *
26 * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab.
Eric Andersenc4996011999-10-20 22:08:37 +000027 *
Eric Andersen3ece93b2002-06-22 17:23:45 +000028 * 1999-10-07 Erik Andersen <andersee@debian.org>.
Erik Andersen31638212000-01-15 22:28:50 +000029 * Rewrite of a lot of code. Removed mtab usage (I plan on
Eric Andersenc4996011999-10-20 22:08:37 +000030 * putting it back as a compile-time option some time),
31 * major adjustments to option parsing, and some serious
32 * dieting all around.
Erik Andersenb7cc49d2000-01-13 06:38:14 +000033 *
Erik Andersen31638212000-01-15 22:28:50 +000034 * 1999-11-06 mtab suppport is back - andersee
35 *
Erik Andersenb7cc49d2000-01-13 06:38:14 +000036 * 2000-01-12 Ben Collins <bcollins@debian.org>, Borrowed utils-linux's
37 * mount to add loop support.
Eric Andersenfdd51032000-08-02 18:48:26 +000038 *
39 * 2000-04-30 Dave Cinege <dcinege@psychosis.com>
40 * Rewrote fstab while loop and lower mount section. Can now do
41 * single mounts from fstab. Can override fstab options for single
42 * mount. Common mount_one call for single mounts and 'all'. Fixed
43 * mtab updating and stale entries. Removed 'remount' default.
44 *
Erik Andersenb7cc49d2000-01-13 06:38:14 +000045 */
Eric Andersencc8ed391999-10-05 16:24:54 +000046
Matt Kraai34251112001-05-02 21:17:38 +000047#include <limits.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000048#include <stdlib.h>
49#include <unistd.h>
50#include <errno.h>
51#include <string.h>
52#include <stdio.h>
53#include <mntent.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000054#include <ctype.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000055#include "busybox.h"
Eric Andersenbdfd0d72001-10-24 05:00:29 +000056#if defined CONFIG_FEATURE_USE_DEVPS_PATCH
Mark Whitley4b541a82001-04-25 17:10:30 +000057# include <linux/devmtab.h> /* For Erik's nifty devmtab device driver */
58#endif
Eric Andersenbd22ed82000-07-08 18:55:24 +000059
Mark Whitley59ab0252001-01-23 22:30:04 +000060enum {
61 MS_MGC_VAL = 0xc0ed0000, /* Magic number indicatng "new" flags */
62 MS_RDONLY = 1, /* Mount read-only */
63 MS_NOSUID = 2, /* Ignore suid and sgid bits */
64 MS_NODEV = 4, /* Disallow access to device special files */
65 MS_NOEXEC = 8, /* Disallow program execution */
66 MS_SYNCHRONOUS = 16, /* Writes are synced at once */
67 MS_REMOUNT = 32, /* Alter flags of a mounted FS */
68 MS_MANDLOCK = 64, /* Allow mandatory locks on an FS */
69 S_QUOTA = 128, /* Quota initialized for file/directory/symlink */
70 S_APPEND = 256, /* Append-only file */
71 S_IMMUTABLE = 512, /* Immutable file */
72 MS_NOATIME = 1024, /* Do not update access times. */
73 MS_NODIRATIME = 2048, /* Do not update directory access times */
Eric Andersen2f6e1f82001-05-21 15:59:34 +000074 MS_BIND = 4096, /* Use the new linux 2.4.x "mount --bind" feature */
Mark Whitley59ab0252001-01-23 22:30:04 +000075};
Eric Andersencc8ed391999-10-05 16:24:54 +000076
Eric Andersenbd22ed82000-07-08 18:55:24 +000077
Eric Andersenbdfd0d72001-10-24 05:00:29 +000078#if defined CONFIG_FEATURE_MOUNT_LOOP
Erik Andersenb7cc49d2000-01-13 06:38:14 +000079#include <fcntl.h>
80#include <sys/ioctl.h>
Erik Andersene132f4b2000-02-09 04:16:43 +000081static int use_loop = FALSE;
Erik Andersenb7cc49d2000-01-13 06:38:14 +000082#endif
83
Eric Andersena57ba4d2000-07-08 19:20:49 +000084extern int mount (__const char *__special_file, __const char *__dir,
85 __const char *__fstype, unsigned long int __rwflag,
86 __const void *__data);
87extern int umount (__const char *__special_file);
88extern int umount2 (__const char *__special_file, int __flags);
Eric Andersende440672001-03-01 07:55:49 +000089
Eric Andersene76c3b02001-04-05 03:14:39 +000090extern int sysfs( int option, unsigned int fs_index, char * buf);
Eric Andersena57ba4d2000-07-08 19:20:49 +000091
Erik Andersene49d5ec2000-02-08 19:58:47 +000092extern const char mtab_file[]; /* Defined in utility.c */
Eric Andersend0246fb1999-11-04 21:18:07 +000093
Eric Andersencc8ed391999-10-05 16:24:54 +000094struct mount_options {
Erik Andersene49d5ec2000-02-08 19:58:47 +000095 const char *name;
96 unsigned long and;
97 unsigned long or;
Eric Andersencc8ed391999-10-05 16:24:54 +000098};
99
Eric Andersen596e5461999-10-07 08:30:23 +0000100static const struct mount_options mount_options[] = {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000101 {"async", ~MS_SYNCHRONOUS, 0},
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000102 {"atime", ~0, ~MS_NOATIME},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000103 {"defaults", ~0, 0},
Robert Grieblaa385d42002-05-14 22:56:29 +0000104 {"noauto", ~0, 0},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105 {"dev", ~MS_NODEV, 0},
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000106 {"diratime", ~0, ~MS_NODIRATIME},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000107 {"exec", ~MS_NOEXEC, 0},
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000108 {"noatime", ~0, MS_NOATIME},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000109 {"nodev", ~0, MS_NODEV},
Erik Andersen6c5f2c62000-05-05 19:49:33 +0000110 {"nodiratime", ~0, MS_NODIRATIME},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000111 {"noexec", ~0, MS_NOEXEC},
112 {"nosuid", ~0, MS_NOSUID},
113 {"remount", ~0, MS_REMOUNT},
114 {"ro", ~0, MS_RDONLY},
115 {"rw", ~MS_RDONLY, 0},
116 {"suid", ~MS_NOSUID, 0},
117 {"sync", ~0, MS_SYNCHRONOUS},
Eric Andersen2f6e1f82001-05-21 15:59:34 +0000118 {"bind", ~0, MS_BIND},
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119 {0, 0, 0}
Eric Andersencc8ed391999-10-05 16:24:54 +0000120};
121
Eric Andersend0246fb1999-11-04 21:18:07 +0000122static int
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123do_mount(char *specialfile, char *dir, char *filesystemtype,
124 long flags, void *string_flags, int useMtab, int fakeIt,
Matt Kraai9344f752001-06-03 02:21:38 +0000125 char *mtab_opts, int mount_all)
Eric Andersend0246fb1999-11-04 21:18:07 +0000126{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000127 int status = 0;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000128#if defined CONFIG_FEATURE_MOUNT_LOOP
Erik Andersene132f4b2000-02-09 04:16:43 +0000129 char *lofile = NULL;
Eric Andersen8847b9a2000-09-21 01:33:05 +0000130#endif
Eric Andersend0246fb1999-11-04 21:18:07 +0000131
Matt Kraai1f0c4362001-12-20 23:13:26 +0000132 if (! fakeIt)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133 {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000134#if defined CONFIG_FEATURE_MOUNT_LOOP
Erik Andersene132f4b2000-02-09 04:16:43 +0000135 if (use_loop==TRUE) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000136 int loro = flags & MS_RDONLY;
Mark Whitleye677dfe2001-02-26 17:45:58 +0000137
138 lofile = specialfile;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000139
140 specialfile = find_unused_loop_device();
141 if (specialfile == NULL) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000142 error_msg_and_die("Could not find a spare loop device");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143 }
144 if (set_loop(specialfile, lofile, 0, &loro)) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000145 error_msg_and_die("Could not setup loop device");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000146 }
147 if (!(flags & MS_RDONLY) && loro) { /* loop is ro, but wanted rw */
Matt Kraaidd19c692001-01-31 19:00:21 +0000148 error_msg("WARNING: loop device is read-only");
Matt Kraai94f3a572001-07-05 14:46:07 +0000149 flags |= MS_RDONLY;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000150 }
151 }
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000152#endif
Eric Andersena42982e2000-06-07 17:28:53 +0000153 status = mount(specialfile, dir, filesystemtype, flags, string_flags);
Matt Kraai9344f752001-06-03 02:21:38 +0000154 if (status < 0 && errno == EROFS) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000155 error_msg("%s is write-protected, mounting read-only", specialfile);
Eric Andersen0cccdfa2000-09-20 06:23:36 +0000156 status = mount(specialfile, dir, filesystemtype, flags |= MS_RDONLY, string_flags);
157 }
Matt Kraai9344f752001-06-03 02:21:38 +0000158 /* Don't whine about already mounted filesystems when mounting all. */
159 if (status < 0 && errno == EBUSY && mount_all)
160 return TRUE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000161 }
Erik Andersen5cbdd712000-01-26 20:06:48 +0000162
163
Erik Andersene49d5ec2000-02-08 19:58:47 +0000164 /* If the mount was sucessful, do anything needed, then return TRUE */
Eric Andersen0c8e2a62000-08-02 18:56:25 +0000165 if (status == 0 || fakeIt==TRUE) {
Erik Andersen5cbdd712000-01-26 20:06:48 +0000166
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000167#if defined CONFIG_FEATURE_MTAB_SUPPORT
Matt Kraai1f0c4362001-12-20 23:13:26 +0000168 if (useMtab) {
Eric Andersenfdd51032000-08-02 18:48:26 +0000169 erase_mtab(specialfile); // Clean any stale entries
Erik Andersene49d5ec2000-02-08 19:58:47 +0000170 write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
171 }
172#endif
173 return (TRUE);
174 }
175
176 /* Bummer. mount failed. Clean up */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000177#if defined CONFIG_FEATURE_MOUNT_LOOP
Erik Andersene132f4b2000-02-09 04:16:43 +0000178 if (lofile != NULL) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000179 del_loop(specialfile);
Erik Andersen5cbdd712000-01-26 20:06:48 +0000180 }
Eric Andersend0246fb1999-11-04 21:18:07 +0000181#endif
Eric Andersena42982e2000-06-07 17:28:53 +0000182
183 if (errno == EPERM) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000184 error_msg_and_die("permission denied. Are you root?");
Eric Andersena42982e2000-06-07 17:28:53 +0000185 }
186
Erik Andersene49d5ec2000-02-08 19:58:47 +0000187 return (FALSE);
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000188}
189
Eric Andersend0246fb1999-11-04 21:18:07 +0000190
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000191static void paste_str(char **s1, const char *s2)
192{
193 *s1 = xrealloc(*s1, strlen(*s1)+strlen(s2)+1);
194 strcat(*s1, s2);
195}
Eric Andersencc8ed391999-10-05 16:24:54 +0000196
Eric Andersen8341a151999-10-08 17:14:14 +0000197/* Seperate standard mount options from the nonstandard string options */
Eric Andersencc8ed391999-10-05 16:24:54 +0000198static void
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000199parse_mount_options(char *options, int *flags, char **strflags)
Eric Andersencc8ed391999-10-05 16:24:54 +0000200{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000201 while (options) {
202 int gotone = FALSE;
203 char *comma = strchr(options, ',');
204 const struct mount_options *f = mount_options;
Eric Andersencc8ed391999-10-05 16:24:54 +0000205
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 if (comma)
207 *comma = '\0';
Eric Andersen3ae0c781999-11-04 01:13:21 +0000208
Erik Andersene49d5ec2000-02-08 19:58:47 +0000209 while (f->name != 0) {
210 if (strcasecmp(f->name, options) == 0) {
211
212 *flags &= f->and;
213 *flags |= f->or;
214 gotone = TRUE;
215 break;
216 }
217 f++;
218 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000219#if defined CONFIG_FEATURE_MOUNT_LOOP
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000220 if (!strcasecmp("loop", options)) { /* loop device support */
Erik Andersene132f4b2000-02-09 04:16:43 +0000221 use_loop = TRUE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000222 gotone = TRUE;
223 }
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000224#endif
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000225 if (! gotone) {
226 if (**strflags) /* have previous parsed options */
227 paste_str(strflags, ",");
228 paste_str(strflags, options);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000229 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000230 if (comma) {
231 *comma = ',';
232 options = ++comma;
233 } else {
234 break;
235 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000236 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000237}
238
Eric Andersen044228d2001-07-17 01:12:36 +0000239static int
Eric Andersend0246fb1999-11-04 21:18:07 +0000240mount_one(char *blockDevice, char *directory, char *filesystemType,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000241 unsigned long flags, char *string_flags, int useMtab, int fakeIt,
Matt Kraai9344f752001-06-03 02:21:38 +0000242 char *mtab_opts, int whineOnErrors, int mount_all)
Eric Andersencc8ed391999-10-05 16:24:54 +0000243{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000244 int status = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000245
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000246#if defined CONFIG_FEATURE_USE_DEVPS_PATCH
Erik Andersene49d5ec2000-02-08 19:58:47 +0000247 if (strcmp(filesystemType, "auto") == 0) {
Eric Andersen3b1525e2001-09-03 16:49:25 +0000248 static const char *noauto_array[] = { "tmpfs", "shm", "proc", "ramfs", "devpts", "devfs", "usbdevfs", 0 };
Glenn L McGrath1e117b42001-03-30 01:28:13 +0000249 const char **noauto_fstype;
Eric Andersen7b91f022001-03-01 07:50:04 +0000250 const int num_of_filesystems = sysfs(3, 0, 0);
251 char buf[255];
Glenn L McGrath323434b2001-03-02 22:21:34 +0000252 int i=0;
253
Eric Andersen7b91f022001-03-01 07:50:04 +0000254 filesystemType=buf;
Eric Andersencc8ed391999-10-05 16:24:54 +0000255
Eric Andersen7b91f022001-03-01 07:50:04 +0000256 while(i < num_of_filesystems) {
257 sysfs(2, i++, filesystemType);
Glenn L McGrath1e117b42001-03-30 01:28:13 +0000258 for (noauto_fstype = noauto_array; *noauto_fstype; noauto_fstype++) {
259 if (!strcmp(filesystemType, *noauto_fstype)) {
Glenn L McGrath323434b2001-03-02 22:21:34 +0000260 break;
261 }
262 }
Glenn L McGrath1e117b42001-03-30 01:28:13 +0000263 if (!*noauto_fstype) {
Glenn L McGrath323434b2001-03-02 22:21:34 +0000264 status = do_mount(blockDevice, directory, filesystemType,
Eric Andersen7b91f022001-03-01 07:50:04 +0000265 flags | MS_MGC_VAL, string_flags,
Matt Kraai9344f752001-06-03 02:21:38 +0000266 useMtab, fakeIt, mtab_opts, mount_all);
Matt Kraai1f0c4362001-12-20 23:13:26 +0000267 if (status)
Glenn L McGrath323434b2001-03-02 22:21:34 +0000268 break;
269 }
Erik Andersen246cc6d2000-03-07 07:41:42 +0000270 }
Eric Andersen8acbf1d2001-10-18 04:10:22 +0000271 }
272#else
273 if (strcmp(filesystemType, "auto") == 0) {
274 char buf[255];
Robert Griebl2a4a8d82002-07-24 01:41:30 +0000275 FILE *f;
276 int read_proc = 0;
277
278 f = fopen ( "/etc/filesystems", "r" );
279
280 if ( f ) {
281 while ( fgets ( buf, sizeof( buf ), f )) {
282 if ( *buf == '*' )
283 read_proc = 1;
284 else if ( *buf == '#' )
285 continue;
286 else {
287 filesystemType = buf;
288
289 // Add NULL termination to each line
290 while (*filesystemType && !isspace ( *filesystemType ))
291 filesystemType++;
292 *filesystemType = '\0';
Eric Andersen8acbf1d2001-10-18 04:10:22 +0000293
Robert Griebl2a4a8d82002-07-24 01:41:30 +0000294 filesystemType = buf;
295
296 if ( xstrlen ( filesystemType )) {
297 status = do_mount(blockDevice, directory, filesystemType,
298 flags | MS_MGC_VAL, string_flags,
299 useMtab, fakeIt, mtab_opts, mount_all);
300 if (status)
301 break;
302 }
303
304 }
305 }
306 fclose ( f );
307 }
Eric Andersen8acbf1d2001-10-18 04:10:22 +0000308
Robert Griebl2a4a8d82002-07-24 01:41:30 +0000309 if (( !f || read_proc ) && !status ) {
310 f = xfopen("/proc/filesystems", "r");
Eric Andersen8acbf1d2001-10-18 04:10:22 +0000311
Robert Griebl2a4a8d82002-07-24 01:41:30 +0000312 while (fgets(buf, sizeof(buf), f) != NULL) {
Eric Andersen8acbf1d2001-10-18 04:10:22 +0000313 filesystemType = buf;
Robert Griebl2a4a8d82002-07-24 01:41:30 +0000314 if (*filesystemType == '\t') { // Not a nodev filesystem
315
316 // Add NULL termination to each line
317 while (*filesystemType && *filesystemType != '\n')
318 filesystemType++;
319 *filesystemType = '\0';
Eric Andersen8acbf1d2001-10-18 04:10:22 +0000320
Robert Griebl2a4a8d82002-07-24 01:41:30 +0000321 filesystemType = buf;
322 filesystemType++; // hop past tab
323
324 status = do_mount(blockDevice, directory, filesystemType,
325 flags | MS_MGC_VAL, string_flags,
326 useMtab, fakeIt, mtab_opts, mount_all);
327 if (status)
328 break;
329 }
Eric Andersen8acbf1d2001-10-18 04:10:22 +0000330 }
331 }
332 fclose(f);
333 }
334#endif
335 else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000336 status = do_mount(blockDevice, directory, filesystemType,
Eric Andersen7b91f022001-03-01 07:50:04 +0000337 flags | MS_MGC_VAL, string_flags, useMtab,
Matt Kraai9344f752001-06-03 02:21:38 +0000338 fakeIt, mtab_opts, mount_all);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000339 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000340
Matt Kraai1f0c4362001-12-20 23:13:26 +0000341 if (! status) {
342 if (whineOnErrors) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000343 perror_msg("Mounting %s on %s failed", blockDevice, directory);
Erik Andersene132f4b2000-02-09 04:16:43 +0000344 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000345 return (FALSE);
346 }
347 return (TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000348}
349
Robert Griebld0dd3d32002-07-25 14:17:19 +0000350static void show_mounts(char *onlytype)
Matt Kraai12400822001-04-17 04:32:50 +0000351{
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000352#if defined CONFIG_FEATURE_USE_DEVPS_PATCH
Matt Kraai12400822001-04-17 04:32:50 +0000353 int fd, i, numfilesystems;
354 char device[] = "/dev/mtab";
355 struct k_mntent *mntentlist;
356
357 /* open device */
358 fd = open(device, O_RDONLY);
359 if (fd < 0)
360 perror_msg_and_die("open failed for `%s'", device);
361
362 /* How many mounted filesystems? We need to know to
363 * allocate enough space for later... */
364 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
365 if (numfilesystems<0)
366 perror_msg_and_die( "\nDEVMTAB_COUNT_MOUNTS");
367 mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
368
369 /* Grab the list of mounted filesystems */
370 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
371 perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
372
373 for( i = 0 ; i < numfilesystems ; i++) {
Robert Griebld0dd3d32002-07-25 14:17:19 +0000374 if ( !onlytype || ( strcmp ( mntentlist[i].mnt_type, onlytype ) == 0 )) {
375 printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
376 mntentlist[i].mnt_dir, mntentlist[i].mnt_type,
377 mntentlist[i].mnt_opts, mntentlist[i].mnt_freq,
378 mntentlist[i].mnt_passno);
379 }
Matt Kraai12400822001-04-17 04:32:50 +0000380 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000381#ifdef CONFIG_FEATURE_CLEAN_UP
Matt Kraai12400822001-04-17 04:32:50 +0000382 /* Don't bother to close files or free memory. Exit
383 * does that automagically, so we can save a few bytes */
384 free( mntentlist);
385 close(fd);
386#endif
387 exit(EXIT_SUCCESS);
388#else
389 FILE *mountTable = setmntent(mtab_file, "r");
390
391 if (mountTable) {
392 struct mntent *m;
393
394 while ((m = getmntent(mountTable)) != 0) {
395 char *blockDevice = m->mnt_fsname;
396 if (strcmp(blockDevice, "/dev/root") == 0) {
Eric Andersenc911a432001-05-15 17:42:16 +0000397 blockDevice = find_real_root_device_name(blockDevice);
Matt Kraai12400822001-04-17 04:32:50 +0000398 }
Robert Griebld0dd3d32002-07-25 14:17:19 +0000399 if ( !onlytype || ( strcmp ( m-> mnt_type, onlytype ) == 0 )) {
400 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
401 m->mnt_type, m->mnt_opts);
402 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000403#ifdef CONFIG_FEATURE_CLEAN_UP
Eric Andersenc911a432001-05-15 17:42:16 +0000404 if(blockDevice != m->mnt_fsname)
405 free(blockDevice);
406#endif
Matt Kraai12400822001-04-17 04:32:50 +0000407 }
408 endmntent(mountTable);
409 } else {
410 perror_msg_and_die("%s", mtab_file);
411 }
412 exit(EXIT_SUCCESS);
413#endif
414}
415
Erik Andersene49d5ec2000-02-08 19:58:47 +0000416extern int mount_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000417{
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000418 struct stat statbuf;
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000419 char *string_flags = xstrdup("");
420 char *extra_opts;
Eric Andersene7413a92000-07-14 06:19:41 +0000421 int flags = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000422 char *filesystemType = "auto";
Robert Griebld0dd3d32002-07-25 14:17:19 +0000423 int got_filesystemType = 0;
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000424 char *device = xmalloc(PATH_MAX);
425 char *directory = xmalloc(PATH_MAX);
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000426 struct mntent *m = NULL;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000427 int all = FALSE;
428 int fakeIt = FALSE;
429 int useMtab = TRUE;
Matt Kraai3e856ce2000-12-01 02:55:13 +0000430 int rc = EXIT_FAILURE;
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000431 FILE *f = 0;
Matt Kraaia3045df2001-04-17 04:48:51 +0000432 int opt;
Eric Andersencc8ed391999-10-05 16:24:54 +0000433
Erik Andersene49d5ec2000-02-08 19:58:47 +0000434 /* Parse options */
Matt Kraaia3045df2001-04-17 04:48:51 +0000435 while ((opt = getopt(argc, argv, "o:rt:wafnv")) > 0) {
436 switch (opt) {
437 case 'o':
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000438 parse_mount_options(optarg, &flags, &string_flags);
Matt Kraaia3045df2001-04-17 04:48:51 +0000439 break;
440 case 'r':
441 flags |= MS_RDONLY;
442 break;
443 case 't':
444 filesystemType = optarg;
Robert Griebld0dd3d32002-07-25 14:17:19 +0000445 got_filesystemType = 1;
Matt Kraaia3045df2001-04-17 04:48:51 +0000446 break;
447 case 'w':
448 flags &= ~MS_RDONLY;
449 break;
450 case 'a':
451 all = TRUE;
452 break;
453 case 'f':
454 fakeIt = TRUE;
455 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000456#ifdef CONFIG_FEATURE_MTAB_SUPPORT
Matt Kraaia3045df2001-04-17 04:48:51 +0000457 case 'n':
458 useMtab = FALSE;
459 break;
Eric Andersena9c95ea1999-11-15 17:33:30 +0000460#endif
Matt Kraaia3045df2001-04-17 04:48:51 +0000461 case 'v':
462 break; /* ignore -v */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000463 }
Matt Kraaia3045df2001-04-17 04:48:51 +0000464 }
465
Matt Kraai34251112001-05-02 21:17:38 +0000466 if (!all && optind == argc)
Robert Griebld0dd3d32002-07-25 14:17:19 +0000467 show_mounts(got_filesystemType ? filesystemType : 0);
Matt Kraai12400822001-04-17 04:32:50 +0000468
Matt Kraaie6bf66e2001-05-04 14:49:58 +0000469 if (optind < argc) {
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000470 /* if device is a filename get its real path */
Glenn L McGrathcc0aa0f2001-05-07 01:51:24 +0000471 if (stat(argv[optind], &statbuf) == 0) {
Eric Andersendefd9982002-04-13 13:47:39 +0000472 char *tmp = simplify_path(argv[optind]);
473 safe_strncpy(device, tmp, PATH_MAX);
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000474 } else {
Matt Kraaie6bf66e2001-05-04 14:49:58 +0000475 safe_strncpy(device, argv[optind], PATH_MAX);
Glenn L McGrath3aae1002001-05-07 01:38:03 +0000476 }
Matt Kraaie6bf66e2001-05-04 14:49:58 +0000477 }
Matt Kraai34251112001-05-02 21:17:38 +0000478
Matt Kraaia7cecbc2001-08-10 15:05:27 +0000479 if (optind + 1 < argc)
480 directory = simplify_path(argv[optind + 1]);
481
Matt Kraai1f0c4362001-12-20 23:13:26 +0000482 if (all || optind + 1 == argc) {
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000483 f = setmntent("/etc/fstab", "r");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000484
Erik Andersen246cc6d2000-03-07 07:41:42 +0000485 if (f == NULL)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000486 perror_msg_and_die( "\nCannot read /etc/fstab");
Erik Andersen246cc6d2000-03-07 07:41:42 +0000487
Erik Andersene49d5ec2000-02-08 19:58:47 +0000488 while ((m = getmntent(f)) != NULL) {
Matt Kraai1f0c4362001-12-20 23:13:26 +0000489 if (! all && optind + 1 == argc && (
Eric Andersenfdd51032000-08-02 18:48:26 +0000490 (strcmp(device, m->mnt_fsname) != 0) &&
491 (strcmp(device, m->mnt_dir) != 0) ) ) {
492 continue;
493 }
494
Matt Kraai1f0c4362001-12-20 23:13:26 +0000495 if (all && ( // If we're mounting 'all'
Eric Andersenfdd51032000-08-02 18:48:26 +0000496 (strstr(m->mnt_opts, "noauto")) || // and the file system isn't noauto,
497 (strstr(m->mnt_type, "swap")) || // and isn't swap or nfs, then mount it
498 (strstr(m->mnt_type, "nfs")) ) ) {
499 continue;
500 }
501
Matt Kraai1f0c4362001-12-20 23:13:26 +0000502 if (all || flags == 0) { // Allow single mount to override fstab flags
Erik Andersene49d5ec2000-02-08 19:58:47 +0000503 flags = 0;
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000504 string_flags[0] = 0;
505 parse_mount_options(m->mnt_opts, &flags, &string_flags);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000506 }
Eric Andersenfdd51032000-08-02 18:48:26 +0000507
Matt Kraai34251112001-05-02 21:17:38 +0000508 strcpy(device, m->mnt_fsname);
509 strcpy(directory, m->mnt_dir);
Matt Kraaic8227632001-11-12 16:57:27 +0000510 filesystemType = xstrdup(m->mnt_type);
Eric Andersenfdd51032000-08-02 18:48:26 +0000511singlemount:
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000512 extra_opts = string_flags;
Eric Andersend9d03b82000-12-12 23:20:37 +0000513 rc = EXIT_SUCCESS;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000514#ifdef CONFIG_NFSMOUNT
Eric Andersenfcffa2c2002-04-06 05:17:57 +0000515 if (strchr(device, ':') != NULL) {
Pavel Roskin680d65a2000-06-06 17:03:55 +0000516 filesystemType = "nfs";
Matt Kraai93ba60f2001-02-28 15:33:12 +0000517 if (nfsmount (device, directory, &flags, &extra_opts,
518 &string_flags, 1)) {
519 perror_msg("nfsmount failed");
Matt Kraai3e856ce2000-12-01 02:55:13 +0000520 rc = EXIT_FAILURE;
Eric Andersenfdd51032000-08-02 18:48:26 +0000521 }
Eric Andersen252bacc2000-09-19 01:21:13 +0000522 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000523#endif
Matt Kraai92ed8a32000-12-06 15:55:23 +0000524 if (!mount_one(device, directory, filesystemType, flags,
Matt Kraai9344f752001-06-03 02:21:38 +0000525 string_flags, useMtab, fakeIt, extra_opts, TRUE, all))
Matt Kraai92ed8a32000-12-06 15:55:23 +0000526 rc = EXIT_FAILURE;
Eric Andersenfdd51032000-08-02 18:48:26 +0000527
Matt Kraai1f0c4362001-12-20 23:13:26 +0000528 if (! all)
Eric Andersenfdd51032000-08-02 18:48:26 +0000529 break;
Eric Andersenfdd51032000-08-02 18:48:26 +0000530 }
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000531 if (f)
Eric Andersenfdd51032000-08-02 18:48:26 +0000532 endmntent(f);
533
Eric Andersen8b1aa4d2002-06-22 17:20:50 +0000534 if (! all && f && m == NULL)
Eric Andersenfdd51032000-08-02 18:48:26 +0000535 fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
536
Matt Kraai93ba60f2001-02-28 15:33:12 +0000537 return rc;
Eric Andersenfdd51032000-08-02 18:48:26 +0000538 }
539
540 goto singlemount;
Eric Andersencc8ed391999-10-05 16:24:54 +0000541}