9f25e05ce28945fbe82e31d545ba1e2e40b32665
[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 "internal.h"
47 #include <stdlib.h>
48 #include <unistd.h>
49 #include <errno.h>
50 #include <string.h>
51 #include <stdio.h>
52 #include <mntent.h>
53 #include <ctype.h>
54 #if defined BB_FEATURE_USE_DEVPS_PATCH
55 #include <linux/devmtab.h> /* For Erik's nifty devmtab device driver */
56 #endif
57
58
59 #define MS_MGC_VAL              0xc0ed0000 /* Magic number indicatng "new" flags */
60 #define MS_RDONLY        1      /* Mount read-only */
61 #define MS_NOSUID        2      /* Ignore suid and sgid bits */
62 #define MS_NODEV         4      /* Disallow access to device special files */
63 #define MS_NOEXEC        8      /* Disallow program execution */
64 #define MS_SYNCHRONOUS  16      /* Writes are synced at once */
65 #define MS_REMOUNT      32      /* Alter flags of a mounted FS */
66 #define MS_MANDLOCK     64      /* Allow mandatory locks on an FS */
67 #define S_QUOTA         128     /* Quota initialized for file/directory/symlink */
68 #define S_APPEND        256     /* Append-only file */
69 #define S_IMMUTABLE     512     /* Immutable file */
70 #define MS_NOATIME      1024    /* Do not update access times. */
71 #define 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
88 extern const char mtab_file[];  /* Defined in utility.c */
89
90 struct mount_options {
91         const char *name;
92         unsigned long and;
93         unsigned long or;
94 };
95
96 static const struct mount_options mount_options[] = {
97         {"async", ~MS_SYNCHRONOUS, 0},
98         {"atime", ~0, ~MS_NOATIME},
99         {"defaults", ~0, 0},
100         {"dev", ~MS_NODEV, 0},
101         {"diratime", ~0, ~MS_NODIRATIME},
102         {"exec", ~MS_NOEXEC, 0},
103         {"noatime", ~0, MS_NOATIME},
104         {"nodev", ~0, MS_NODEV},
105         {"nodiratime", ~0, MS_NODIRATIME},
106         {"noexec", ~0, MS_NOEXEC},
107         {"nosuid", ~0, MS_NOSUID},
108         {"remount", ~0, MS_REMOUNT},
109         {"ro", ~0, MS_RDONLY},
110         {"rw", ~MS_RDONLY, 0},
111         {"suid", ~MS_NOSUID, 0},
112         {"sync", ~0, MS_SYNCHRONOUS},
113         {0, 0, 0}
114 };
115
116 static int
117 do_mount(char *specialfile, char *dir, char *filesystemtype,
118                  long flags, void *string_flags, int useMtab, int fakeIt,
119                  char *mtab_opts)
120 {
121         int status = 0;
122         char *lofile = NULL;
123
124 #if defined BB_MTAB
125         if (fakeIt == FALSE)
126 #endif
127         {
128 #if defined BB_FEATURE_MOUNT_LOOP
129                 if (use_loop==TRUE) {
130                         int loro = flags & MS_RDONLY;
131                         char *lofile = specialfile;
132
133                         specialfile = find_unused_loop_device();
134                         if (specialfile == NULL) {
135                                 errorMsg("Could not find a spare loop device\n");
136                                 return (FALSE);
137                         }
138                         if (set_loop(specialfile, lofile, 0, &loro)) {
139                                 errorMsg("Could not setup loop device\n");
140                                 return (FALSE);
141                         }
142                         if (!(flags & MS_RDONLY) && loro) {     /* loop is ro, but wanted rw */
143                                 errorMsg("WARNING: loop device is read-only\n");
144                                 flags &= ~MS_RDONLY;
145                         }
146                 }
147 #endif
148                 status = mount(specialfile, dir, filesystemtype, flags, string_flags);
149         }
150
151
152         /* If the mount was sucessful, do anything needed, then return TRUE */
153         if (status == 0) {
154
155 #if defined BB_MTAB
156                 if (useMtab == TRUE) {
157                         erase_mtab(specialfile);        // Clean any stale entries
158                         write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
159                 }
160 #endif
161                 return (TRUE);
162         }
163
164         /* Bummer.  mount failed.  Clean up */
165 #if defined BB_FEATURE_MOUNT_LOOP
166         if (lofile != NULL) {
167                 del_loop(specialfile);
168         }
169 #endif
170
171         if (errno == EPERM) {
172                 fatalError("permission denied. Are you root?\n");
173         }
174
175         return (FALSE);
176 }
177
178
179
180 /* Seperate standard mount options from the nonstandard string options */
181 static void
182 parse_mount_options(char *options, int *flags, char *strflags)
183 {
184         while (options) {
185                 int gotone = FALSE;
186                 char *comma = strchr(options, ',');
187                 const struct mount_options *f = mount_options;
188
189                 if (comma)
190                         *comma = '\0';
191
192                 while (f->name != 0) {
193                         if (strcasecmp(f->name, options) == 0) {
194
195                                 *flags &= f->and;
196                                 *flags |= f->or;
197                                 gotone = TRUE;
198                                 break;
199                         }
200                         f++;
201                 }
202 #if defined BB_FEATURE_MOUNT_LOOP
203                 if (gotone == FALSE && !strcasecmp("loop", options)) {  /* loop device support */
204                         use_loop = TRUE;
205                         gotone = TRUE;
206                 }
207 #endif
208                 if (*strflags && strflags != '\0' && gotone == FALSE) {
209                         char *temp = strflags;
210
211                         temp += strlen(strflags);
212                         *temp++ = ',';
213                         *temp++ = '\0';
214                 }
215                 if (gotone == FALSE)
216                         strcat(strflags, options);
217                 if (comma) {
218                         *comma = ',';
219                         options = ++comma;
220                 } else {
221                         break;
222                 }
223         }
224 }
225
226 int
227 mount_one(char *blockDevice, char *directory, char *filesystemType,
228                   unsigned long flags, char *string_flags, int useMtab, int fakeIt,
229                   char *mtab_opts, int whineOnErrors)
230 {
231         int status = 0;
232
233 #if defined BB_FEATURE_USE_PROCFS
234         char buf[255];
235         if (strcmp(filesystemType, "auto") == 0) {
236                 FILE *f = fopen("/proc/filesystems", "r");
237
238                 if (f == NULL)
239                         return (FALSE);
240
241                 while (fgets(buf, sizeof(buf), f) != NULL) {
242                         filesystemType = buf;
243                         if (*filesystemType == '\t') {  // Not a nodev filesystem
244
245                                 // Add NULL termination to each line
246                                 while (*filesystemType && *filesystemType != '\n')
247                                         filesystemType++;
248                                 *filesystemType = '\0';
249
250                                 filesystemType = buf;
251                                 filesystemType++;       // hop past tab
252
253                                 status = do_mount(blockDevice, directory, filesystemType,
254                                                                   flags | MS_MGC_VAL, string_flags,
255                                                                   useMtab, fakeIt, mtab_opts);
256                                 if (status == TRUE)
257                                         break;
258                         }
259                 }
260                 fclose(f);
261         } else
262 #endif
263 #if defined BB_FEATURE_USE_DEVPS_PATCH
264         if (strcmp(filesystemType, "auto") == 0) {
265                 int fd, i, numfilesystems;
266                 char device[] = "/dev/mtab";
267                 struct k_fstype *fslist;
268
269                 /* open device */ 
270                 fd = open(device, O_RDONLY);
271                 if (fd < 0)
272                         fatalError("open failed for `%s': %s\n", device, strerror (errno));
273
274                 /* How many filesystems?  We need to know to allocate enough space */
275                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_FILESYSTEMS);
276                 if (numfilesystems<0)
277                         fatalError("\nDEVMTAB_COUNT_FILESYSTEMS: %s\n", strerror (errno));
278                 fslist = (struct k_fstype *) calloc ( numfilesystems, sizeof(struct k_fstype));
279
280                 /* Grab the list of available filesystems */
281                 status = ioctl (fd, DEVMTAB_GET_FILESYSTEMS, fslist);
282                 if (status<0)
283                         fatalError("\nDEVMTAB_GET_FILESYSTEMS: %s\n", strerror (errno));
284
285                 /* Walk the list trying to mount filesystems 
286                  * that do not claim to be nodev filesystems */
287                 for( i = 0 ; i < numfilesystems ; i++) {
288                         if (fslist[i].mnt_nodev)
289                                 continue;
290                         status = do_mount(blockDevice, directory, fslist[i].mnt_type,
291                                                           flags | MS_MGC_VAL, string_flags,
292                                                           useMtab, fakeIt, mtab_opts);
293                         if (status == TRUE)
294                                 break;
295                 }
296                 free( fslist);
297                 close(fd);
298         } else
299 #endif
300         {
301                 status = do_mount(blockDevice, directory, filesystemType,
302                                                   flags | MS_MGC_VAL, string_flags, useMtab,
303                                                   fakeIt, mtab_opts);
304         }
305
306         if (status == FALSE) {
307                 if (whineOnErrors == TRUE) {
308                         errorMsg("Mounting %s on %s failed: %s\n",
309                                         blockDevice, directory, strerror(errno));
310                 }
311                 return (FALSE);
312         }
313         return (TRUE);
314 }
315
316 extern int mount_main(int argc, char **argv)
317 {
318         char string_flags_buf[1024] = "";
319         char *string_flags = string_flags_buf;
320         char *extra_opts = string_flags_buf;
321         int flags = 0;
322         char *filesystemType = "auto";
323         char *device = NULL;
324         char *directory = NULL;
325         int all = FALSE;
326         int fakeIt = FALSE;
327         int useMtab = TRUE;
328         int i;
329         int rc = FALSE;
330         int fstabmount = FALSE; 
331
332 #if defined BB_FEATURE_USE_DEVPS_PATCH
333         if (argc == 1) {
334                 int fd, i, numfilesystems;
335                 char device[] = "/dev/mtab";
336                 struct k_mntent *mntentlist;
337
338                 /* open device */ 
339                 fd = open(device, O_RDONLY);
340                 if (fd < 0)
341                         fatalError("open failed for `%s': %s\n", device, strerror (errno));
342
343                 /* How many mounted filesystems?  We need to know to 
344                  * allocate enough space for later... */
345                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
346                 if (numfilesystems<0)
347                         fatalError( "\nDEVMTAB_COUNT_MOUNTS: %s\n", strerror (errno));
348                 mntentlist = (struct k_mntent *) calloc ( numfilesystems, sizeof(struct k_mntent));
349                 
350                 /* Grab the list of mounted filesystems */
351                 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
352                         fatalError( "\nDEVMTAB_GET_MOUNTS: %s\n", strerror (errno));
353
354                 for( i = 0 ; i < numfilesystems ; i++) {
355                         fprintf( stdout, "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
356                                         mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
357                                         mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
358                                         mntentlist[i].mnt_passno);
359                 }
360 #ifdef BB_FEATURE_CLEAN_UP
361                 /* Don't bother to close files or free memory.  Exit 
362                  * does that automagically, so we can save a few bytes */
363                 free( mntentlist);
364                 close(fd);
365 #endif
366                 exit(TRUE);
367         }
368 #else
369         if (argc == 1) {
370                 FILE *mountTable = setmntent(mtab_file, "r");
371
372                 if (mountTable) {
373                         struct mntent *m;
374
375                         while ((m = getmntent(mountTable)) != 0) {
376                                 char *blockDevice = m->mnt_fsname;
377                                 if (strcmp(blockDevice, "/dev/root") == 0) {
378                                         find_real_root_device_name( blockDevice);
379                                 }
380                                 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
381                                            m->mnt_type, m->mnt_opts);
382                         }
383                         endmntent(mountTable);
384                 } else {
385                         perror(mtab_file);
386                 }
387                 exit(TRUE);
388         }
389 #endif
390
391         /* Parse options */
392         i = --argc;
393         argv++;
394         while (i > 0 && **argv) {
395                 if (**argv == '-') {
396                         char *opt = *argv;
397
398                         while (i > 0 && *++opt)
399                                 switch (*opt) {
400                                 case 'o':
401                                         if (--i == 0) {
402                                                 goto goodbye;
403                                         }
404                                         parse_mount_options(*(++argv), &flags, string_flags);
405                                         break;
406                                 case 'r':
407                                         flags |= MS_RDONLY;
408                                         break;
409                                 case 't':
410                                         if (--i == 0) {
411                                                 goto goodbye;
412                                         }
413                                         filesystemType = *(++argv);
414                                         break;
415                                 case 'w':
416                                         flags &= ~MS_RDONLY;
417                                         break;
418                                 case 'a':
419                                         all = TRUE;
420                                         break;
421                                 case 'f':
422                                         fakeIt = TRUE;
423                                         break;
424 #ifdef BB_MTAB
425                                 case 'n':
426                                         useMtab = FALSE;
427                                         break;
428 #endif
429                                 case 'v':
430                                         break; /* ignore -v */
431                                 case 'h':
432                                 case '-':
433                                         goto goodbye;
434                                 }
435                 } else {
436                         if (device == NULL)
437                                 device = *argv;
438                         else if (directory == NULL)
439                                 directory = *argv;
440                         else {
441                                 goto goodbye;
442                         }
443                 }
444                 i--;
445                 argv++;
446         }
447
448         if (all == TRUE || directory == NULL) {
449                 struct mntent *m;
450                 FILE *f = setmntent("/etc/fstab", "r");
451                 fstabmount = TRUE;
452
453                 if (f == NULL)
454                         fatalError( "\nCannot read /etc/fstab: %s\n", strerror (errno));
455
456                 while ((m = getmntent(f)) != NULL) {
457                         if (all == FALSE && directory == NULL && (
458                                 (strcmp(device, m->mnt_fsname) != 0) &&
459                                 (strcmp(device, m->mnt_dir) != 0) ) ) {
460                                 continue;
461                         }
462                         
463                         if (all == TRUE && (                            // If we're mounting 'all'
464                                 (strstr(m->mnt_opts, "noauto")) ||      // and the file system isn't noauto,
465                                 (strstr(m->mnt_type, "swap")) ||        // and isn't swap or nfs, then mount it
466                                 (strstr(m->mnt_type, "nfs")) ) ) {
467                                 continue;
468                         }
469                         
470                         if (all == TRUE || flags == 0) {        // Allow single mount to override fstab flags
471                                 flags = 0;
472                                 *string_flags = '\0';
473                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
474                         }
475                         
476                         device = strdup(m->mnt_fsname);
477                         directory = strdup(m->mnt_dir);
478                         filesystemType = strdup(m->mnt_type);
479 singlemount:                    
480 #ifdef BB_NFSMOUNT
481                         if (strchr(device, ':') != NULL)
482                                 filesystemType = "nfs";
483                         if (strcmp(filesystemType, "nfs") == 0) {
484                                 rc = nfsmount (device, directory, &flags, &extra_opts, &string_flags, 1)
485                                 if ( rc != 0) {
486                                         fatalError("nfsmount failed: %s\n", strerror(errno));   
487                                         rc = FALSE;
488                                 }
489                         } else
490 #endif
491                         rc = mount_one(device, directory, filesystemType, flags,
492                                 string_flags, useMtab, fakeIt, extra_opts, TRUE);
493                                 
494                         if (all == FALSE)
495                                 break;
496
497                         rc = TRUE;      // Always return 0 for 'all'
498                 }
499                 if (fstabmount == TRUE)
500                         endmntent(f);
501                         
502                 if (all == FALSE && fstabmount == TRUE && directory == NULL)
503                         fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
504         
505                 exit(rc);
506         }
507         
508         goto singlemount;
509         
510         exit(FALSE);
511
512 goodbye:
513         usage(mount_usage);
514 }