Shutdown sending on the socket when stdin closes.
[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 "busybox.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 #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\n");
136                         }
137                         if (set_loop(specialfile, lofile, 0, &loro)) {
138                                 error_msg_and_die("Could not setup loop device\n");
139                         }
140                         if (!(flags & MS_RDONLY) && loro) {     /* loop is ro, but wanted rw */
141                                 error_msg("WARNING: loop device is read-only\n");
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\n", 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?\n");
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 #if defined BB_FEATURE_USE_PROCFS
236         char buf[255];
237         if (strcmp(filesystemType, "auto") == 0) {
238                 FILE *f = fopen("/proc/filesystems", "r");
239
240                 if (f == NULL)
241                         return (FALSE);
242
243                 while (fgets(buf, sizeof(buf), f) != NULL) {
244                         filesystemType = buf;
245                         if (*filesystemType == '\t') {  // Not a nodev filesystem
246
247                                 // Add NULL termination to each line
248                                 while (*filesystemType && *filesystemType != '\n')
249                                         filesystemType++;
250                                 *filesystemType = '\0';
251
252                                 filesystemType = buf;
253                                 filesystemType++;       // hop past tab
254
255                                 status = do_mount(blockDevice, directory, filesystemType,
256                                                                   flags | MS_MGC_VAL, string_flags,
257                                                                   useMtab, fakeIt, mtab_opts);
258                                 if (status == TRUE)
259                                         break;
260                         }
261                 }
262                 fclose(f);
263         } else
264 #endif
265 #if defined BB_FEATURE_USE_DEVPS_PATCH
266         if (strcmp(filesystemType, "auto") == 0) {
267                 int fd, i, numfilesystems;
268                 char device[] = "/dev/mtab";
269                 struct k_fstype *fslist;
270
271                 /* open device */ 
272                 fd = open(device, O_RDONLY);
273                 if (fd < 0)
274                         error_msg_and_die("open failed for `%s': %s\n", device, strerror (errno));
275
276                 /* How many filesystems?  We need to know to allocate enough space */
277                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_FILESYSTEMS);
278                 if (numfilesystems<0)
279                         error_msg_and_die("\nDEVMTAB_COUNT_FILESYSTEMS: %s\n", strerror (errno));
280                 fslist = (struct k_fstype *) xcalloc ( numfilesystems, sizeof(struct k_fstype));
281
282                 /* Grab the list of available filesystems */
283                 status = ioctl (fd, DEVMTAB_GET_FILESYSTEMS, fslist);
284                 if (status<0)
285                         error_msg_and_die("\nDEVMTAB_GET_FILESYSTEMS: %s\n", strerror (errno));
286
287                 /* Walk the list trying to mount filesystems 
288                  * that do not claim to be nodev filesystems */
289                 for( i = 0 ; i < numfilesystems ; i++) {
290                         if (fslist[i].mnt_nodev)
291                                 continue;
292                         status = do_mount(blockDevice, directory, fslist[i].mnt_type,
293                                                           flags | MS_MGC_VAL, string_flags,
294                                                           useMtab, fakeIt, mtab_opts);
295                         if (status == TRUE)
296                                 break;
297                 }
298                 free( fslist);
299                 close(fd);
300         } else
301 #endif
302         {
303                 status = do_mount(blockDevice, directory, filesystemType,
304                                                   flags | MS_MGC_VAL, string_flags, useMtab,
305                                                   fakeIt, mtab_opts);
306         }
307
308         if (status == FALSE) {
309                 if (whineOnErrors == TRUE) {
310                         error_msg("Mounting %s on %s failed: %s\n",
311                                         blockDevice, directory, strerror(errno));
312                 }
313                 return (FALSE);
314         }
315         return (TRUE);
316 }
317
318 extern int mount_main(int argc, char **argv)
319 {
320         char string_flags_buf[1024] = "";
321         char *string_flags = string_flags_buf;
322         char *extra_opts = string_flags_buf;
323         int flags = 0;
324         char *filesystemType = "auto";
325         char *device = NULL;
326         char *directory = NULL;
327         int all = FALSE;
328         int fakeIt = FALSE;
329         int useMtab = TRUE;
330         int i;
331         int rc = EXIT_FAILURE;
332         int fstabmount = FALSE; 
333
334 #if defined BB_FEATURE_USE_DEVPS_PATCH
335         if (argc == 1) {
336                 int fd, i, numfilesystems;
337                 char device[] = "/dev/mtab";
338                 struct k_mntent *mntentlist;
339
340                 /* open device */ 
341                 fd = open(device, O_RDONLY);
342                 if (fd < 0)
343                         error_msg_and_die("open failed for `%s': %s\n", device, strerror (errno));
344
345                 /* How many mounted filesystems?  We need to know to 
346                  * allocate enough space for later... */
347                 numfilesystems = ioctl (fd, DEVMTAB_COUNT_MOUNTS);
348                 if (numfilesystems<0)
349                         error_msg_and_die( "\nDEVMTAB_COUNT_MOUNTS: %s\n", strerror (errno));
350                 mntentlist = (struct k_mntent *) xcalloc ( numfilesystems, sizeof(struct k_mntent));
351                 
352                 /* Grab the list of mounted filesystems */
353                 if (ioctl (fd, DEVMTAB_GET_MOUNTS, mntentlist)<0)
354                         error_msg_and_die( "\nDEVMTAB_GET_MOUNTS: %s\n", strerror (errno));
355
356                 for( i = 0 ; i < numfilesystems ; i++) {
357                         fprintf( stdout, "%s %s %s %s %d %d\n", mntentlist[i].mnt_fsname,
358                                         mntentlist[i].mnt_dir, mntentlist[i].mnt_type, 
359                                         mntentlist[i].mnt_opts, mntentlist[i].mnt_freq, 
360                                         mntentlist[i].mnt_passno);
361                 }
362 #ifdef BB_FEATURE_CLEAN_UP
363                 /* Don't bother to close files or free memory.  Exit 
364                  * does that automagically, so we can save a few bytes */
365                 free( mntentlist);
366                 close(fd);
367 #endif
368                 return EXIT_SUCCESS;
369         }
370 #else
371         if (argc == 1) {
372                 FILE *mountTable = setmntent(mtab_file, "r");
373
374                 if (mountTable) {
375                         struct mntent *m;
376
377                         while ((m = getmntent(mountTable)) != 0) {
378                                 char *blockDevice = m->mnt_fsname;
379                                 if (strcmp(blockDevice, "/dev/root") == 0) {
380                                         find_real_root_device_name( blockDevice);
381                                 }
382                                 printf("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
383                                            m->mnt_type, m->mnt_opts);
384                         }
385                         endmntent(mountTable);
386                 } else {
387                         perror(mtab_file);
388                 }
389                 return EXIT_SUCCESS;
390         }
391 #endif
392
393         /* Parse options */
394         i = --argc;
395         argv++;
396         while (i > 0 && **argv) {
397                 if (**argv == '-') {
398                         char *opt = *argv;
399
400                         while (i > 0 && *++opt)
401                                 switch (*opt) {
402                                 case 'o':
403                                         if (--i == 0) {
404                                                 goto goodbye;
405                                         }
406                                         parse_mount_options(*(++argv), &flags, string_flags);
407                                         break;
408                                 case 'r':
409                                         flags |= MS_RDONLY;
410                                         break;
411                                 case 't':
412                                         if (--i == 0) {
413                                                 goto goodbye;
414                                         }
415                                         filesystemType = *(++argv);
416                                         break;
417                                 case 'w':
418                                         flags &= ~MS_RDONLY;
419                                         break;
420                                 case 'a':
421                                         all = TRUE;
422                                         break;
423                                 case 'f':
424                                         fakeIt = TRUE;
425                                         break;
426 #ifdef BB_MTAB
427                                 case 'n':
428                                         useMtab = FALSE;
429                                         break;
430 #endif
431                                 case 'v':
432                                         break; /* ignore -v */
433                                 case 'h':
434                                 case '-':
435                                         goto goodbye;
436                                 }
437                 } else {
438                         if (device == NULL)
439                                 device = *argv;
440                         else if (directory == NULL)
441                                 directory = *argv;
442                         else {
443                                 goto goodbye;
444                         }
445                 }
446                 i--;
447                 argv++;
448         }
449
450         if (all == TRUE || directory == NULL) {
451                 struct mntent *m;
452                 FILE *f = setmntent("/etc/fstab", "r");
453                 fstabmount = TRUE;
454
455                 if (f == NULL)
456                         error_msg_and_die( "\nCannot read /etc/fstab: %s\n", strerror (errno));
457
458                 while ((m = getmntent(f)) != NULL) {
459                         if (all == FALSE && directory == NULL && (
460                                 (strcmp(device, m->mnt_fsname) != 0) &&
461                                 (strcmp(device, m->mnt_dir) != 0) ) ) {
462                                 continue;
463                         }
464                         
465                         if (all == TRUE && (                            // If we're mounting 'all'
466                                 (strstr(m->mnt_opts, "noauto")) ||      // and the file system isn't noauto,
467                                 (strstr(m->mnt_type, "swap")) ||        // and isn't swap or nfs, then mount it
468                                 (strstr(m->mnt_type, "nfs")) ) ) {
469                                 continue;
470                         }
471                         
472                         if (all == TRUE || flags == 0) {        // Allow single mount to override fstab flags
473                                 flags = 0;
474                                 *string_flags = '\0';
475                                 parse_mount_options(m->mnt_opts, &flags, string_flags);
476                         }
477                         
478                         device = strdup(m->mnt_fsname);
479                         directory = strdup(m->mnt_dir);
480                         filesystemType = strdup(m->mnt_type);
481 singlemount:                    
482                         rc = EXIT_SUCCESS;
483 #ifdef BB_NFSMOUNT
484                         if (strchr(device, ':') != NULL)
485                                 filesystemType = "nfs";
486                         if (strcmp(filesystemType, "nfs") == 0) {
487                                 rc = nfsmount (device, directory, &flags,
488                                         &extra_opts, &string_flags, 1);
489                                 if ( rc != 0) {
490                                         error_msg_and_die("nfsmount failed: %s\n", strerror(errno));    
491                                         rc = EXIT_FAILURE;
492                                 }
493                         }
494 #endif
495                         if (!mount_one(device, directory, filesystemType, flags,
496                                         string_flags, useMtab, fakeIt, extra_opts, TRUE))
497                                 rc = EXIT_FAILURE;
498                                 
499                         if (all == FALSE)
500                                 break;
501                 }
502                 if (fstabmount == TRUE)
503                         endmntent(f);
504                         
505                 if (all == FALSE && fstabmount == TRUE && directory == NULL)
506                         fprintf(stderr, "Can't find %s in /etc/fstab\n", device);
507         
508                 exit(rc);
509         }
510         
511         goto singlemount;
512         
513 goodbye:
514         usage(mount_usage);
515 }