d58eecaebe7f8735d2279d8219599311fd1bbb40
[oweals/busybox.git] / util-linux / 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  * Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.org>
7  *
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.
27  *
28  * 1999-10-07   Erik Andersen <andersen@lineo.com>, <andersee@debian.org>.
29  *              Rewrite of a lot of code. Removed mtab usage (I plan on
30  *              putting it back as a compile-time option some time), 
31  *              major adjustments to option parsing, and some serious 
32  *              dieting all around.
33  *
34  * 1999-11-06   mtab suppport is back - andersee
35  *
36  * 2000-01-12   Ben Collins <bcollins@debian.org>, Borrowed utils-linux's
37  *              mount to add loop support.
38  *
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  *      
45  */
46
47 #include <limits.h>
48 #include <stdlib.h>
49 #include <unistd.h>
50 #include <errno.h>
51 #include <string.h>
52 #include <stdio.h>
53 #include <mntent.h>
54 #include <ctype.h>
55 #include "busybox.h"
56 #if defined CONFIG_FEATURE_USE_DEVPS_PATCH
57 #       include <linux/devmtab.h> /* For Erik's nifty devmtab device driver */
58 #endif
59
60 enum {
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 */
74         MS_BIND = 4096,    /* Use the new linux 2.4.x "mount --bind" feature */
75 };
76
77
78 #if defined CONFIG_FEATURE_MOUNT_LOOP
79 #include <fcntl.h>
80 #include <sys/ioctl.h>
81 static int use_loop = FALSE;
82 #endif
83
84 extern int mount (__const char *__special_file, __const char *__dir,
85                         __const char *__fstype, unsigned long int __rwflag,
86                         __const void *__data);
87 extern int umount (__const char *__special_file);
88 extern int umount2 (__const char *__special_file, int __flags);
89
90 extern int sysfs( int option, unsigned int fs_index, char * buf);
91
92 extern const char mtab_file[];  /* Defined in utility.c */
93
94 struct mount_options {
95         const char *name;
96         unsigned long and;
97         unsigned long or;
98 };
99
100 static const struct mount_options mount_options[] = {
101         {"async", ~MS_SYNCHRONOUS, 0},
102         {"atime", ~0, ~MS_NOATIME},
103         {"defaults", ~0, 0},
104         {"noauto", ~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         {"bind", ~0, MS_BIND},
119         {0, 0, 0}
120 };
121
122 static int
123 do_mount(char *specialfile, char *dir, char *filesystemtype,
124                  long flags, void *string_flags, int useMtab, int fakeIt,
125                  char *mtab_opts, int mount_all)
126 {
127         int status = 0;
128 #if defined CONFIG_FEATURE_MOUNT_LOOP
129         char *lofile = NULL;
130 #endif
131
132         if (! fakeIt)
133         {
134 #if defined CONFIG_FEATURE_MOUNT_LOOP
135                 if (use_loop==TRUE) {
136                         int loro = flags & MS_RDONLY;
137                         
138                         lofile = specialfile;
139
140                         specialfile = find_unused_loop_device();
141                         if (specialfile == NULL) {
142                                 error_msg_and_die("Could not find a spare loop device");
143                         }
144                         if (set_loop(specialfile, lofile, 0, &loro)) {
145                                 error_msg_and_die("Could not setup loop device");
146                         }
147                         if (!(flags & MS_RDONLY) && loro) {     /* loop is ro, but wanted rw */
148                                 error_msg("WARNING: loop device is read-only");
149                                 flags |= MS_RDONLY;
150                         }
151                 }
152 #endif
153                 status = mount(specialfile, dir, filesystemtype, flags, string_flags);
154                 if (status < 0 && errno == EROFS) {
155                         error_msg("%s is write-protected, mounting read-only", specialfile);
156                         status = mount(specialfile, dir, filesystemtype, flags |= MS_RDONLY, string_flags);
157                 }
158                 /* Don't whine about already mounted filesystems when mounting all. */
159                 if (status < 0 && errno == EBUSY && mount_all)
160                         return TRUE;
161         }
162
163
164         /* If the mount was sucessful, do anything needed, then return TRUE */
165         if (status == 0 || fakeIt==TRUE) {
166
167 #if defined CONFIG_FEATURE_MTAB_SUPPORT
168                 if (useMtab) {
169                         erase_mtab(specialfile);        // Clean any stale entries
170                         write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
171                 }
172 #endif
173                 return (TRUE);
174         }
175
176         /* Bummer.  mount failed.  Clean up */
177 #if defined CONFIG_FEATURE_MOUNT_LOOP
178         if (lofile != NULL) {
179                 del_loop(specialfile);
180         }
181 #endif
182
183         if (errno == EPERM) {
184                 error_msg_and_die("permission denied. Are you root?");
185         }
186
187         return (FALSE);
188 }
189
190
191
192 /* Seperate standard mount options from the nonstandard string options */
193 static void
194 parse_mount_options(char *options, int *flags, char *strflags)
195 {
196         while (options) {
197                 int gotone = FALSE;
198                 char *comma = strchr(options, ',');
199                 const struct mount_options *f = mount_options;
200
201                 if (comma)
202                         *comma = '\0';
203
204                 while (f->name != 0) {
205                         if (strcasecmp(f->name, options) == 0) {
206
207                                 *flags &= f->and;
208                                 *flags |= f->or;
209                                 gotone = TRUE;
210                                 break;
211                         }
212                         f++;
213                 }
214 #if defined CONFIG_FEATURE_MOUNT_LOOP
215                 if (! gotone && !strcasecmp("loop", options)) { /* loop device support */
216                         use_loop = TRUE;
217                         gotone = TRUE;
218                 }
219 #endif
220                 if (*strflags && strflags != '\0' && ! gotone) {
221                         char *temp = strflags;
222
223                         temp += strlen(strflags);
224                         *temp++ = ',';
225                         *temp++ = '\0';
226                 }
227                 if (! gotone)
228                         strcat(strflags, options);
229                 if (comma) {
230                         *comma = ',';
231                         options = ++comma;
232                 } else {
233                         break;
234                 }
235         }
236 }
237
238 static int
239 mount_one(char *blockDevice, char *directory, char *filesystemType,
240                   unsigned long flags, char *string_flags, int useMtab, int fakeIt,
241                   char *mtab_opts, int whineOnErrors, int mount_all)
242 {
243         int status = 0;
244
245 #if defined CONFIG_FEATURE_USE_DEVPS_PATCH
246         if (strcmp(filesystemType, "auto") == 0) {
247                 static const char *noauto_array[] = { "tmpfs", "shm", "proc", "ramfs", "devpts", "devfs", "usbdevfs", 0 };
248                 const char **noauto_fstype;
249                 const int num_of_filesystems = sysfs(3, 0, 0);
250                 char buf[255];
251                 int i=0;
252
253                 filesystemType=buf;
254
255                 while(i < num_of_filesystems) {
256                         sysfs(2, i++, filesystemType);
257                         for (noauto_fstype = noauto_array; *noauto_fstype; noauto_fstype++) {
258                                 if (!strcmp(filesystemType, *noauto_fstype)) {
259                                         break;
260                                 }
261                         }
262                         if (!*noauto_fstype) {
263                                 status = do_mount(blockDevice, directory, filesystemType,
264                                         flags | MS_MGC_VAL, string_flags,
265                                         useMtab, fakeIt, mtab_opts, mount_all);
266                                 if (status)
267                                         break;
268                         }
269                 }
270         } 
271 #else
272         if (strcmp(filesystemType, "auto") == 0) {
273                 char buf[255];
274                 FILE *f = xfopen("/proc/filesystems", "r");
275
276                 while (fgets(buf, sizeof(buf), f) != NULL) {
277                         filesystemType = buf;
278                         if (*filesystemType == '\t') {  // Not a nodev filesystem
279
280                                 // Add NULL termination to each line
281                                 while (*filesystemType && *filesystemType != '\n')
282                                         filesystemType++;
283                                 *filesystemType = '\0';
284
285                                 filesystemType = buf;
286                                 filesystemType++;       // hop past tab
287
288                                 status = do_mount(blockDevice, directory, filesystemType,
289                                                                   flags | MS_MGC_VAL, string_flags,
290                                                                   useMtab, fakeIt, mtab_opts, mount_all);
291                                 if (status)
292                                         break;
293                         }
294                 }
295                 fclose(f);
296         }
297 #endif
298         else {
299                 status = do_mount(blockDevice, directory, filesystemType,
300                                 flags | MS_MGC_VAL, string_flags, useMtab,
301                                 fakeIt, mtab_opts, mount_all);
302         }
303
304         if (! status) {
305                 if (whineOnErrors) {
306                         perror_msg("Mounting %s on %s failed", blockDevice, directory);
307                 }
308                 return (FALSE);
309         }
310         return (TRUE);
311 }
312
313 void show_mounts(void)
314 {
315 #if defined CONFIG_FEATURE_USE_DEVPS_PATCH
316         int fd, i, numfilesystems;
317         char device[] = "/dev/mtab";
318         struct k_mntent *mntentlist;
319
320         /* open device */ 
321         fd = open(device, O_RDONLY);
322         if (fd < 0)
323                 perror_msg_and_die("open failed for `%s'", device);
324
325         /* How many mounted filesystems?  We need to know to 
326          * allocate enough space for later... */
327         numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
328         if (numfilesystems<0)
329                 perror_msg_and_die( "\nDEVMTAB_COUNT_MOUNTS");
330         mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
331                 
332         /* Grab the list of mounted filesystems */
333         if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
334                 perror_msg_and_die( "\nDEVMTAB_GET_MOUNTS");
335
336         for( i = 0 ; i < numfilesystems ; i++) {
337                 printf( "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
338                                 mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
339                                 mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
340                                 mntentlist[i].mnt_passno);
341         }
342 #ifdef CONFIG_FEATURE_CLEAN_UP
343         /* Don't bother to close files or free memory.  Exit 
344          * does that automagically, so we can save a few bytes */
345         free( mntentlist);
346         close(fd);
347 #endif
348         exit(EXIT_SUCCESS);
349 #else
350         FILE *mountTable = setmntent(mtab_file, "r");
351
352         if (mountTable) {
353                 struct mntent *m;
354
355                 while ((m = getmntent(mountTable)) != 0) {
356                         char *blockDevice = m->mnt_fsname;
357                         if (strcmp(blockDevice, "/dev/root") == 0) {
358                                 blockDevice = find_real_root_device_name(blockDevice);
359                         }
360                         printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
361                                    m->mnt_type, m->mnt_opts);
362 #ifdef CONFIG_FEATURE_CLEAN_UP
363                         if(blockDevice != m->mnt_fsname)
364                                 free(blockDevice);
365 #endif
366                 }
367                 endmntent(mountTable);
368         } else {
369                 perror_msg_and_die("%s", mtab_file);
370         }
371         exit(EXIT_SUCCESS);
372 #endif
373 }
374
375 extern int mount_main(int argc, char **argv)
376 {
377         struct stat statbuf;
378         char string_flags_buf[1024] = "";
379         char *string_flags = string_flags_buf;
380         char *extra_opts = string_flags_buf;
381         int flags = 0;
382         char *filesystemType = "auto";
383         char *device = xmalloc(PATH_MAX);
384         char *directory = xmalloc(PATH_MAX);
385         int all = FALSE;
386         int fakeIt = FALSE;
387         int useMtab = TRUE;
388         int rc = EXIT_FAILURE;
389         int fstabmount = FALSE; 
390         int opt;
391
392         /* Parse options */
393         while ((opt = getopt(argc, argv, "o:rt:wafnv")) > 0) {
394                 switch (opt) {
395                 case 'o':
396                         parse_mount_options(optarg, &flags, string_flags);
397                         break;
398                 case 'r':
399                         flags |= MS_RDONLY;
400                         break;
401                 case 't':
402                         filesystemType = optarg;
403                         break;
404                 case 'w':
405                         flags &= ~MS_RDONLY;
406                         break;
407                 case 'a':
408                         all = TRUE;
409                         break;
410                 case 'f':
411                         fakeIt = TRUE;
412                         break;
413 #ifdef CONFIG_FEATURE_MTAB_SUPPORT
414                 case 'n':
415                         useMtab = FALSE;
416                         break;
417 #endif
418                 case 'v':
419                         break; /* ignore -v */
420                 }
421         }
422
423         if (!all && optind == argc)
424                 show_mounts();
425
426         if (optind < argc) {
427                 /* if device is a filename get its real path */
428                 if (stat(argv[optind], &statbuf) == 0) {
429                         char *tmp = simplify_path(argv[optind]);
430                         safe_strncpy(device, tmp, PATH_MAX);
431                 } else {
432                         safe_strncpy(device, argv[optind], PATH_MAX);
433                 }
434         }
435
436         if (optind + 1 < argc)
437                 directory = simplify_path(argv[optind + 1]);
438
439         if (all || optind + 1 == argc) {
440                 struct mntent *m = NULL;
441                 FILE *f = setmntent("/etc/fstab", "r");
442                 fstabmount = TRUE;
443
444                 if (f == NULL)
445                         perror_msg_and_die( "\nCannot read /etc/fstab");
446
447                 while ((m = getmntent(f)) != NULL) {
448                         if (! all && optind + 1 == argc && (
449                                 (strcmp(device, m->mnt_fsname) != 0) &&
450                                 (strcmp(device, m->mnt_dir) != 0) ) ) {
451                                 continue;
452                         }
453                         
454                         if (all && (                                                    // If we're mounting 'all'
455                                 (strstr(m->mnt_opts, "noauto")) ||      // and the file system isn't noauto,
456                                 (strstr(m->mnt_type, "swap")) ||        // and isn't swap or nfs, then mount it
457                                 (strstr(m->mnt_type, "nfs")) ) ) {
458                                 continue;
459                         }
460                         
461                         if (all || flags == 0) {        // Allow single mount to override fstab flags
462                                 flags = 0;
463                                 string_flags = string_flags_buf;
464                                 *string_flags = '\0';
465                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
466                         }
467                         
468                         strcpy(device, m->mnt_fsname);
469                         strcpy(directory, m->mnt_dir);
470                         filesystemType = xstrdup(m->mnt_type);
471 singlemount:                    
472                         string_flags = xstrdup(string_flags);
473                         rc = EXIT_SUCCESS;
474 #ifdef CONFIG_NFSMOUNT
475                         if (strchr(device, ':') != NULL) {
476                                 filesystemType = "nfs";
477                                 if (nfsmount (device, directory, &flags, &extra_opts,
478                                                         &string_flags, 1)) {
479                                         perror_msg("nfsmount failed");
480                                         rc = EXIT_FAILURE;
481                                 }
482                         }
483 #endif
484                         if (!mount_one(device, directory, filesystemType, flags,
485                                         string_flags, useMtab, fakeIt, extra_opts, TRUE, all))
486                                 rc = EXIT_FAILURE;
487                                 
488                         if (! all)
489                                 break;
490                 }
491                 if (fstabmount)
492                         endmntent(f);
493                         
494                 if (! all && fstabmount && m == NULL)
495                         fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
496         
497                 return rc;
498         }
499         
500         goto singlemount;
501 }