It turns out that DODMALLOC was broken when I reorganized busybox.h
[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
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 #if defined BB_FEATURE_MOUNT_LOOP
123         char *lofile = NULL;
124 #endif
125
126         if (fakeIt == FALSE)
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                                 error_msg_and_die("Could not find a spare loop device");
136                         }
137                         if (set_loop(specialfile, lofile, 0, &loro)) {
138                                 error_msg_and_die("Could not setup loop device");
139                         }
140                         if (!(flags & MS_RDONLY) && loro) {     /* loop is ro, but wanted rw */
141                                 error_msg("WARNING: loop device is read-only");
142                                 flags &= ~MS_RDONLY;
143                         }
144                 }
145 #endif
146                 status = mount(specialfile, dir, filesystemtype, flags, string_flags);
147                 if (errno == EROFS) {
148                         error_msg("%s is write-protected, mounting read-only", specialfile);
149                         status = mount(specialfile, dir, filesystemtype, flags |= MS_RDONLY, string_flags);
150                 }
151         }
152
153
154         /* If the mount was sucessful, do anything needed, then return TRUE */
155         if (status == 0 || fakeIt==TRUE) {
156
157 #if defined BB_MTAB
158                 if (useMtab == TRUE) {
159                         erase_mtab(specialfile);        // Clean any stale entries
160                         write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
161                 }
162 #endif
163                 return (TRUE);
164         }
165
166         /* Bummer.  mount failed.  Clean up */
167 #if defined BB_FEATURE_MOUNT_LOOP
168         if (lofile != NULL) {
169                 del_loop(specialfile);
170         }
171 #endif
172
173         if (errno == EPERM) {
174                 error_msg_and_die("permission denied. Are you root?");
175         }
176
177         return (FALSE);
178 }
179
180
181
182 /* Seperate standard mount options from the nonstandard string options */
183 static void
184 parse_mount_options(char *options, int *flags, char *strflags)
185 {
186         while (options) {
187                 int gotone = FALSE;
188                 char *comma = strchr(options, ',');
189                 const struct mount_options *f = mount_options;
190
191                 if (comma)
192                         *comma = '\0';
193
194                 while (f->name != 0) {
195                         if (strcasecmp(f->name, options) == 0) {
196
197                                 *flags &= f->and;
198                                 *flags |= f->or;
199                                 gotone = TRUE;
200                                 break;
201                         }
202                         f++;
203                 }
204 #if defined BB_FEATURE_MOUNT_LOOP
205                 if (gotone == FALSE && !strcasecmp("loop", options)) {  /* loop device support */
206                         use_loop = TRUE;
207                         gotone = TRUE;
208                 }
209 #endif
210                 if (*strflags && strflags != '\0' && gotone == FALSE) {
211                         char *temp = strflags;
212
213                         temp += strlen(strflags);
214                         *temp++ = ',';
215                         *temp++ = '\0';
216                 }
217                 if (gotone == FALSE)
218                         strcat(strflags, options);
219                 if (comma) {
220                         *comma = ',';
221                         options = ++comma;
222                 } else {
223                         break;
224                 }
225         }
226 }
227
228 int
229 mount_one(char *blockDevice, char *directory, char *filesystemType,
230                   unsigned long flags, char *string_flags, int useMtab, int fakeIt,
231                   char *mtab_opts, int whineOnErrors)
232 {
233         int status = 0;
234
235         char buf[255];
236         if (strcmp(filesystemType, "auto") == 0) {
237                 FILE *f = xfopen("/proc/filesystems", "r");
238
239                 while (fgets(buf, sizeof(buf), f) != NULL) {
240                         filesystemType = buf;
241                         if (*filesystemType == '\t') {  // Not a nodev filesystem
242
243                                 // Add NULL termination to each line
244                                 while (*filesystemType && *filesystemType != '\n')
245                                         filesystemType++;
246                                 *filesystemType = '\0';
247
248                                 filesystemType = buf;
249                                 filesystemType++;       // hop past tab
250
251                                 status = do_mount(blockDevice, directory, filesystemType,
252                                                                   flags | MS_MGC_VAL, string_flags,
253                                                                   useMtab, fakeIt, mtab_opts);
254                                 if (status == TRUE)
255                                         break;
256                         }
257                 }
258                 fclose(f);
259         } else
260 #if defined BB_FEATURE_USE_DEVPS_PATCH
261         if (strcmp(filesystemType, "auto") == 0) {
262                 int fd, i, numfilesystems;
263                 char device[] = "/dev/mtab";
264                 struct k_fstype *fslist;
265
266                 /* open device */ 
267                 fd = open(device, O_RDONLY);
268                 if (fd < 0)
269                         perror_msg_and_die("open failed for `%s'", device);
270
271                 /* How many filesystems?  We need to know to allocate enough space */
272                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_FILESYSTEMS);
273                 if (numfilesystems<0)
274                         perror_msg_and_die("\nDEVMTAB_COUNT_FILESYSTEMS");
275                 fslist = (struct k_fstype *) xcalloc ( numfilesystems, sizeof(struct k_fstype));
276
277                 /* Grab the list of available filesystems */
278                 status = ioctl (fd, DEVMTAB_GET_FILESYSTEMS, fslist);
279                 if (status<0)
280                         perror_msg_and_die("\nDEVMTAB_GET_FILESYSTEMS");
281
282                 /* Walk the list trying to mount filesystems 
283                  * that do not claim to be nodev filesystems */
284                 for( i = 0 ; i < numfilesystems ; i++) {
285                         if (fslist[i].mnt_nodev)
286                                 continue;
287                         status = do_mount(blockDevice, directory, fslist[i].mnt_type,
288                                                           flags | MS_MGC_VAL, string_flags,
289                                                           useMtab, fakeIt, mtab_opts);
290                         if (status == TRUE)
291                                 break;
292                 }
293                 free( fslist);
294                 close(fd);
295         } else
296 #endif
297         {
298                 status = do_mount(blockDevice, directory, filesystemType,
299                                                   flags | MS_MGC_VAL, string_flags, useMtab,
300                                                   fakeIt, mtab_opts);
301         }
302
303         if (status == FALSE) {
304                 if (whineOnErrors == TRUE) {
305                         perror_msg("Mounting %s on %s failed", blockDevice, directory);
306                 }
307                 return (FALSE);
308         }
309         return (TRUE);
310 }
311
312 extern int mount_main(int argc, char **argv)
313 {
314         char string_flags_buf[1024] = "";
315         char *string_flags = string_flags_buf;
316         char *extra_opts = string_flags_buf;
317         int flags = 0;
318         char *filesystemType = "auto";
319         char *device = NULL;
320         char *directory = NULL;
321         int all = FALSE;
322         int fakeIt = FALSE;
323         int useMtab = TRUE;
324         int i;
325         int rc = EXIT_FAILURE;
326         int fstabmount = FALSE; 
327
328 #if defined BB_FEATURE_USE_DEVPS_PATCH
329         if (argc == 1) {
330                 int fd, i, numfilesystems;
331                 char device[] = "/dev/mtab";
332                 struct k_mntent *mntentlist;
333
334                 /* open device */ 
335                 fd = open(device, O_RDONLY);
336                 if (fd < 0)
337                         perror_msg_and_die("open failed for `%s'", device);
338
339                 /* How many mounted filesystems?  We need to know to 
340                  * allocate enough space for later... */
341                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
342                 if (numfilesystems<0)
343                         perror_msg_and_die( "\nDEVMTAB_COUNT_MOUNTS");
344                 mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
345                 
346                 /* Grab the list of mounted filesystems */
347                 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
348                         perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
349
350                 for( i = 0 ; i < numfilesystems ; i++) {
351                         printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
352                                         mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
353                                         mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
354                                         mntentlist[i].mnt_passno);
355                 }
356 #ifdef BB_FEATURE_CLEAN_UP
357                 /* Don't bother to close files or free memory.  Exit 
358                  * does that automagically, so we can save a few bytes */
359                 free( mntentlist);
360                 close(fd);
361 #endif
362                 return EXIT_SUCCESS;
363         }
364 #else
365         if (argc == 1) {
366                 FILE *mountTable = setmntent(mtab_file, "r");
367
368                 if (mountTable) {
369                         struct mntent *m;
370
371                         while ((m = getmntent(mountTable)) != 0) {
372                                 char *blockDevice = m->mnt_fsname;
373                                 if (strcmp(blockDevice, "/dev/root") == 0) {
374                                         find_real_root_device_name( blockDevice);
375                                 }
376                                 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
377                                            m->mnt_type, m->mnt_opts);
378                         }
379                         endmntent(mountTable);
380                 } else {
381                         perror_msg_and_die("%s", mtab_file);
382                 }
383                 return EXIT_SUCCESS;
384         }
385 #endif
386
387         /* Parse options */
388         i = --argc;
389         argv++;
390         while (i > 0 && **argv) {
391                 if (**argv == '-') {
392                         char *opt = *argv;
393
394                         while (i > 0 && *++opt)
395                                 switch (*opt) {
396                                 case 'o':
397                                         if (--i == 0) {
398                                                 goto goodbye;
399                                         }
400                                         parse_mount_options(*(++argv), &flags, string_flags);
401                                         break;
402                                 case 'r':
403                                         flags |= MS_RDONLY;
404                                         break;
405                                 case 't':
406                                         if (--i == 0) {
407                                                 goto goodbye;
408                                         }
409                                         filesystemType = *(++argv);
410                                         break;
411                                 case 'w':
412                                         flags &= ~MS_RDONLY;
413                                         break;
414                                 case 'a':
415                                         all = TRUE;
416                                         break;
417                                 case 'f':
418                                         fakeIt = TRUE;
419                                         break;
420 #ifdef BB_MTAB
421                                 case 'n':
422                                         useMtab = FALSE;
423                                         break;
424 #endif
425                                 case 'v':
426                                         break; /* ignore -v */
427                                 case 'h':
428                                 case '-':
429                                         goto goodbye;
430                                 }
431                 } else {
432                         if (device == NULL)
433                                 device = *argv;
434                         else if (directory == NULL)
435                                 directory = *argv;
436                         else {
437                                 goto goodbye;
438                         }
439                 }
440                 i--;
441                 argv++;
442         }
443
444         if (all == TRUE || directory == NULL) {
445                 struct mntent *m;
446                 FILE *f = setmntent("/etc/fstab", "r");
447                 fstabmount = TRUE;
448
449                 if (f == NULL)
450                         perror_msg_and_die( "\nCannot read /etc/fstab");
451
452                 while ((m = getmntent(f)) != NULL) {
453                         if (all == FALSE && directory == NULL && (
454                                 (strcmp(device, m->mnt_fsname) != 0) &&
455                                 (strcmp(device, m->mnt_dir) != 0) ) ) {
456                                 continue;
457                         }
458                         
459                         if (all == TRUE && (                            // If we're mounting 'all'
460                                 (strstr(m->mnt_opts, "noauto")) ||      // and the file system isn't noauto,
461                                 (strstr(m->mnt_type, "swap")) ||        // and isn't swap or nfs, then mount it
462                                 (strstr(m->mnt_type, "nfs")) ) ) {
463                                 continue;
464                         }
465                         
466                         if (all == TRUE || flags == 0) {        // Allow single mount to override fstab flags
467                                 flags = 0;
468                                 *string_flags = '\0';
469                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
470                         }
471                         
472                         device = strdup(m->mnt_fsname);
473                         directory = strdup(m->mnt_dir);
474                         filesystemType = strdup(m->mnt_type);
475 singlemount:                    
476                         rc = EXIT_SUCCESS;
477 #ifdef BB_NFSMOUNT
478                         if (strchr(device, ':') != NULL)
479                                 filesystemType = "nfs";
480                         if (strcmp(filesystemType, "nfs") == 0) {
481                                 rc = nfsmount (device, directory, &flags,
482                                         &extra_opts, &string_flags, 1);
483                                 if ( rc != 0) {
484                                         perror_msg_and_die("nfsmount failed");  
485                                         rc = EXIT_FAILURE;
486                                 }
487                         }
488 #endif
489                         if (!mount_one(device, directory, filesystemType, flags,
490                                         string_flags, useMtab, fakeIt, extra_opts, TRUE))
491                                 rc = EXIT_FAILURE;
492                                 
493                         if (all == FALSE)
494                                 break;
495                 }
496                 if (fstabmount == TRUE)
497                         endmntent(f);
498                         
499                 if (all == FALSE && fstabmount == TRUE && directory == NULL)
500                         fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
501         
502                 exit(rc);
503         }
504         
505         goto singlemount;
506         
507 goodbye:
508         show_usage();
509 }