cddccadb45b4c6d2f7c8d6b3da5f2f929f0f391c
[oweals/busybox.git] / mount.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini mount implementation for busybox
4  *
5  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6  *
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.
26  *
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 
31  *              dieting all around.
32  *
33  * 1999-11-06   mtab suppport is back - andersee
34  *
35  * 2000-01-12   Ben Collins <bcollins@debian.org>, Borrowed utils-linux's
36  *              mount to add loop support.
37  *
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  *      
44  */
45
46 #include <stdlib.h>
47 #include <unistd.h>
48 #include <errno.h>
49 #include <string.h>
50 #include <stdio.h>
51 #include <mntent.h>
52 #include <ctype.h>
53 #if defined BB_FEATURE_USE_DEVPS_PATCH
54 #include <linux/devmtab.h> /* For Erik's nifty devmtab device driver */
55 #endif
56 #include "busybox.h"
57
58 enum {
59         MS_MGC_VAL = 0xc0ed0000, /* Magic number indicatng "new" flags */
60         MS_RDONLY = 1,      /* Mount read-only */
61         MS_NOSUID = 2,      /* Ignore suid and sgid bits */
62         MS_NODEV = 4,      /* Disallow access to device special files */
63         MS_NOEXEC = 8,      /* Disallow program execution */
64         MS_SYNCHRONOUS = 16,      /* Writes are synced at once */
65         MS_REMOUNT = 32,      /* Alter flags of a mounted FS */
66         MS_MANDLOCK = 64,      /* Allow mandatory locks on an FS */
67         S_QUOTA = 128,     /* Quota initialized for file/directory/symlink */
68         S_APPEND = 256,     /* Append-only file */
69         S_IMMUTABLE = 512,     /* Immutable file */
70         MS_NOATIME = 1024,    /* Do not update access times. */
71         MS_NODIRATIME = 2048,    /* Do not update directory access times */
72 };
73
74
75 #if defined BB_FEATURE_MOUNT_LOOP
76 #include <fcntl.h>
77 #include <sys/ioctl.h>
78 static int use_loop = FALSE;
79 #endif
80
81 extern int mount (__const char *__special_file, __const char *__dir,
82                         __const char *__fstype, unsigned long int __rwflag,
83                         __const void *__data);
84 extern int umount (__const char *__special_file);
85 extern int umount2 (__const char *__special_file, int __flags);
86
87 #include <sys/syscall.h>
88 #include <linux/unistd.h>
89 static int sysfs( int option, unsigned int fs_index, char * buf);
90 _syscall3(int, sysfs, int, option, unsigned int, fs_index, char *, buf);
91
92
93 extern const char mtab_file[];  /* Defined in utility.c */
94
95 struct mount_options {
96         const char *name;
97         unsigned long and;
98         unsigned long or;
99 };
100
101 static const struct mount_options mount_options[] = {
102         {"async", ~MS_SYNCHRONOUS, 0},
103         {"atime", ~0, ~MS_NOATIME},
104         {"defaults", ~0, 0},
105         {"dev", ~MS_NODEV, 0},
106         {"diratime", ~0, ~MS_NODIRATIME},
107         {"exec", ~MS_NOEXEC, 0},
108         {"noatime", ~0, MS_NOATIME},
109         {"nodev", ~0, MS_NODEV},
110         {"nodiratime", ~0, MS_NODIRATIME},
111         {"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},
118         {0, 0, 0}
119 };
120
121 static int
122 do_mount(char *specialfile, char *dir, char *filesystemtype,
123                  long flags, void *string_flags, int useMtab, int fakeIt,
124                  char *mtab_opts)
125 {
126         int status = 0;
127 #if defined BB_FEATURE_MOUNT_LOOP
128         char *lofile = NULL;
129 #endif
130
131         if (fakeIt == FALSE)
132         {
133 #if defined BB_FEATURE_MOUNT_LOOP
134                 if (use_loop==TRUE) {
135                         int loro = flags & MS_RDONLY;
136                         
137                         lofile = specialfile;
138
139                         specialfile = find_unused_loop_device();
140                         if (specialfile == NULL) {
141                                 error_msg_and_die("Could not find a spare loop device");
142                         }
143                         if (set_loop(specialfile, lofile, 0, &loro)) {
144                                 error_msg_and_die("Could not setup loop device");
145                         }
146                         if (!(flags & MS_RDONLY) && loro) {     /* loop is ro, but wanted rw */
147                                 error_msg("WARNING: loop device is read-only");
148                                 flags &= ~MS_RDONLY;
149                         }
150                 }
151 #endif
152                 status = mount(specialfile, dir, filesystemtype, flags, string_flags);
153                 if (errno == EROFS) {
154                         error_msg("%s is write-protected, mounting read-only", specialfile);
155                         status = mount(specialfile, dir, filesystemtype, flags |= MS_RDONLY, string_flags);
156                 }
157         }
158
159
160         /* If the mount was sucessful, do anything needed, then return TRUE */
161         if (status == 0 || fakeIt==TRUE) {
162
163 #if defined BB_MTAB
164                 if (useMtab == TRUE) {
165                         erase_mtab(specialfile);        // Clean any stale entries
166                         write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
167                 }
168 #endif
169                 return (TRUE);
170         }
171
172         /* Bummer.  mount failed.  Clean up */
173 #if defined BB_FEATURE_MOUNT_LOOP
174         if (lofile != NULL) {
175                 del_loop(specialfile);
176         }
177 #endif
178
179         if (errno == EPERM) {
180                 error_msg_and_die("permission denied. Are you root?");
181         }
182
183         return (FALSE);
184 }
185
186
187
188 /* Seperate standard mount options from the nonstandard string options */
189 static void
190 parse_mount_options(char *options, int *flags, char *strflags)
191 {
192         while (options) {
193                 int gotone = FALSE;
194                 char *comma = strchr(options, ',');
195                 const struct mount_options *f = mount_options;
196
197                 if (comma)
198                         *comma = '\0';
199
200                 while (f->name != 0) {
201                         if (strcasecmp(f->name, options) == 0) {
202
203                                 *flags &= f->and;
204                                 *flags |= f->or;
205                                 gotone = TRUE;
206                                 break;
207                         }
208                         f++;
209                 }
210 #if defined BB_FEATURE_MOUNT_LOOP
211                 if (gotone == FALSE && !strcasecmp("loop", options)) {  /* loop device support */
212                         use_loop = TRUE;
213                         gotone = TRUE;
214                 }
215 #endif
216                 if (*strflags && strflags != '\0' && gotone == FALSE) {
217                         char *temp = strflags;
218
219                         temp += strlen(strflags);
220                         *temp++ = ',';
221                         *temp++ = '\0';
222                 }
223                 if (gotone == FALSE)
224                         strcat(strflags, options);
225                 if (comma) {
226                         *comma = ',';
227                         options = ++comma;
228                 } else {
229                         break;
230                 }
231         }
232 }
233
234 int
235 mount_one(char *blockDevice, char *directory, char *filesystemType,
236                   unsigned long flags, char *string_flags, int useMtab, int fakeIt,
237                   char *mtab_opts, int whineOnErrors)
238 {
239         int status = 0;
240
241         if (strcmp(filesystemType, "auto") == 0) {
242                 int i=0;
243                 const int num_of_filesystems = sysfs(3, 0, 0);
244                 char buf[255];
245                 filesystemType=buf;
246
247                 while(i < num_of_filesystems) {
248                         sysfs(2, i++, filesystemType);
249                         status = do_mount(blockDevice, directory, filesystemType,
250                                         flags | MS_MGC_VAL, string_flags,
251                                         useMtab, fakeIt, mtab_opts);
252                         if (status == TRUE)
253                                 break;
254                 }
255         } else {
256                 status = do_mount(blockDevice, directory, filesystemType,
257                                 flags | MS_MGC_VAL, string_flags, useMtab,
258                                 fakeIt, mtab_opts);
259         }
260
261         if (status == FALSE) {
262                 if (whineOnErrors == TRUE) {
263                         perror_msg("Mounting %s on %s failed", blockDevice, directory);
264                 }
265                 return (FALSE);
266         }
267         return (TRUE);
268 }
269
270 extern int mount_main(int argc, char **argv)
271 {
272         char string_flags_buf[1024] = "";
273         char *string_flags = string_flags_buf;
274         char *extra_opts = string_flags_buf;
275         int flags = 0;
276         char *filesystemType = "auto";
277         char *device = NULL;
278         char *directory = NULL;
279         int all = FALSE;
280         int fakeIt = FALSE;
281         int useMtab = TRUE;
282         int i;
283         int rc = EXIT_FAILURE;
284         int fstabmount = FALSE; 
285
286 #if defined BB_FEATURE_USE_DEVPS_PATCH
287         if (argc == 1) {
288                 int fd, i, numfilesystems;
289                 char device[] = "/dev/mtab";
290                 struct k_mntent *mntentlist;
291
292                 /* open device */ 
293                 fd = open(device, O_RDONLY);
294                 if (fd < 0)
295                         perror_msg_and_die("open failed for `%s'", device);
296
297                 /* How many mounted filesystems?  We need to know to 
298                  * allocate enough space for later... */
299                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
300                 if (numfilesystems<0)
301                         perror_msg_and_die( "\nDEVMTAB_COUNT_MOUNTS");
302                 mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
303                 
304                 /* Grab the list of mounted filesystems */
305                 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
306                         perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
307
308                 for( i = 0 ; i < numfilesystems ; i++) {
309                         printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
310                                         mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
311                                         mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
312                                         mntentlist[i].mnt_passno);
313                 }
314 #ifdef BB_FEATURE_CLEAN_UP
315                 /* Don't bother to close files or free memory.  Exit 
316                  * does that automagically, so we can save a few bytes */
317                 free( mntentlist);
318                 close(fd);
319 #endif
320                 return EXIT_SUCCESS;
321         }
322 #else
323         if (argc == 1) {
324                 FILE *mountTable = setmntent(mtab_file, "r");
325
326                 if (mountTable) {
327                         struct mntent *m;
328
329                         while ((m = getmntent(mountTable)) != 0) {
330                                 char *blockDevice = m->mnt_fsname;
331                                 if (strcmp(blockDevice, "/dev/root") == 0) {
332                                         find_real_root_device_name( blockDevice);
333                                 }
334                                 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
335                                            m->mnt_type, m->mnt_opts);
336                         }
337                         endmntent(mountTable);
338                 } else {
339                         perror_msg_and_die("%s", mtab_file);
340                 }
341                 return EXIT_SUCCESS;
342         }
343 #endif
344
345         /* Parse options */
346         i = --argc;
347         argv++;
348         while (i > 0 && **argv) {
349                 if (**argv == '-') {
350                         char *opt = *argv;
351
352                         while (i > 0 && *++opt)
353                                 switch (*opt) {
354                                 case 'o':
355                                         if (--i == 0) {
356                                                 goto goodbye;
357                                         }
358                                         parse_mount_options(*(++argv), &flags, string_flags);
359                                         break;
360                                 case 'r':
361                                         flags |= MS_RDONLY;
362                                         break;
363                                 case 't':
364                                         if (--i == 0) {
365                                                 goto goodbye;
366                                         }
367                                         filesystemType = *(++argv);
368                                         break;
369                                 case 'w':
370                                         flags &= ~MS_RDONLY;
371                                         break;
372                                 case 'a':
373                                         all = TRUE;
374                                         break;
375                                 case 'f':
376                                         fakeIt = TRUE;
377                                         break;
378 #ifdef BB_MTAB
379                                 case 'n':
380                                         useMtab = FALSE;
381                                         break;
382 #endif
383                                 case 'v':
384                                         break; /* ignore -v */
385                                 case 'h':
386                                 case '-':
387                                         goto goodbye;
388                                 }
389                 } else {
390                         if (device == NULL)
391                                 device = *argv;
392                         else if (directory == NULL)
393                                 directory = *argv;
394                         else {
395                                 goto goodbye;
396                         }
397                 }
398                 i--;
399                 argv++;
400         }
401
402         if (all == TRUE || directory == NULL) {
403                 struct mntent *m;
404                 FILE *f = setmntent("/etc/fstab", "r");
405                 fstabmount = TRUE;
406
407                 if (f == NULL)
408                         perror_msg_and_die( "\nCannot read /etc/fstab");
409
410                 while ((m = getmntent(f)) != NULL) {
411                         if (all == FALSE && directory == NULL && (
412                                 (strcmp(device, m->mnt_fsname) != 0) &&
413                                 (strcmp(device, m->mnt_dir) != 0) ) ) {
414                                 continue;
415                         }
416                         
417                         if (all == TRUE && (                            // If we're mounting 'all'
418                                 (strstr(m->mnt_opts, "noauto")) ||      // and the file system isn't noauto,
419                                 (strstr(m->mnt_type, "swap")) ||        // and isn't swap or nfs, then mount it
420                                 (strstr(m->mnt_type, "nfs")) ) ) {
421                                 continue;
422                         }
423                         
424                         if (all == TRUE || flags == 0) {        // Allow single mount to override fstab flags
425                                 flags = 0;
426                                 *string_flags = '\0';
427                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
428                         }
429                         
430                         device = strdup(m->mnt_fsname);
431                         directory = strdup(m->mnt_dir);
432                         filesystemType = strdup(m->mnt_type);
433 singlemount:                    
434                         rc = EXIT_SUCCESS;
435 #ifdef BB_NFSMOUNT
436                         if (strchr(device, ':') != NULL)
437                                 filesystemType = "nfs";
438                         if (strcmp(filesystemType, "nfs") == 0) {
439                                 if (nfsmount (device, directory, &flags, &extra_opts,
440                                                         &string_flags, 1)) {
441                                         perror_msg("nfsmount failed");
442                                         rc = EXIT_FAILURE;
443                                 }
444                         }
445 #endif
446                         if (!mount_one(device, directory, filesystemType, flags,
447                                         string_flags, useMtab, fakeIt, extra_opts, TRUE))
448                                 rc = EXIT_FAILURE;
449                                 
450                         if (all == FALSE)
451                                 break;
452                 }
453                 if (fstabmount == TRUE)
454                         endmntent(f);
455                         
456                 if (all == FALSE && fstabmount == TRUE && directory == NULL)
457                         fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
458         
459                 return rc;
460         }
461         
462         goto singlemount;
463         
464 goodbye:
465         show_usage();
466 }