Svn 16007 broke the build under gcc 4.0.3. This fixes up some of the damage
[oweals/busybox.git] / util-linux / umount.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini umount implementation for busybox
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6  * Copyright (C) 2005 by Rob Landley <rob@landley.net>
7  *
8  * This program is licensed under the GNU General Public license (GPL)
9  * version 2 or later, see http://www.fsf.org/licensing/licenses/gpl.html
10  * or the file "LICENSE" in the busybox source tarball for the full text.
11  *
12  */
13
14 #include "busybox.h"
15 #include <mntent.h>
16 #include <getopt.h>
17
18 #define OPTION_STRING           "flDnravd"
19 #define OPT_FORCE                       1
20 #define OPT_LAZY                        2
21 #define OPT_DONTFREELOOP        4
22 #define OPT_NO_MTAB                     8
23 #define OPT_REMOUNT                     16
24 #define OPT_ALL                         (ENABLE_FEATURE_UMOUNT_ALL ? 32 : 0)
25
26 int umount_main(int argc, char **argv)
27 {
28         int doForce;
29         char path[2*PATH_MAX];
30         struct mntent me;
31         FILE *fp;
32         int status = EXIT_SUCCESS;
33         unsigned long opt;
34         struct mtab_list {
35                 char *dir;
36                 char *device;
37                 struct mtab_list *next;
38         } *mtl, *m;
39
40         /* Parse any options */
41
42         opt = bb_getopt_ulflags(argc, argv, OPTION_STRING);
43
44         argc -= optind;
45         argv += optind;
46
47         doForce = MAX((opt & OPT_FORCE), (opt & OPT_LAZY));
48
49         /* Get a list of mount points from mtab.  We read them all in now mostly
50          * for umount -a (so we don't have to worry about the list changing while
51          * we iterate over it, or about getting stuck in a loop on the same failing
52          * entry.  Notice that this also naturally reverses the list so that -a
53          * umounts the most recent entries first. */
54
55         m = mtl = 0;
56
57         /* If we're umounting all, then m points to the start of the list and
58          * the argument list should be empty (which will match all). */
59
60         if (!(fp = setmntent(bb_path_mtab_file, "r"))) {
61                 if (opt & OPT_ALL)
62                         bb_error_msg_and_die("Cannot open %s", bb_path_mtab_file);
63         } else while (getmntent_r(fp,&me,path,sizeof(path))) {
64                 m = xmalloc(sizeof(struct mtab_list));
65                 m->next = mtl;
66                 m->device = xstrdup(me.mnt_fsname);
67                 m->dir = xstrdup(me.mnt_dir);
68                 mtl = m;
69         }
70         endmntent(fp);
71
72         /* If we're not mounting all, we need at least one argument. */
73         if (!(opt & OPT_ALL)) {
74                 m = 0;
75                 if (!argc) bb_show_usage();
76         }
77         
78         // Loop through everything we're supposed to umount, and do so.
79         for (;;) {
80                 int curstat;
81                 char *zapit = *argv;
82
83                 // Do we already know what to umount this time through the loop?
84                 if (m) safe_strncpy(path, m->dir, PATH_MAX);
85                 // For umount -a, end of mtab means time to exit.
86                 else if (opt & OPT_ALL) break;
87                 // Get next command line argument (and look it up in mtab list)
88                 else if (!argc--) break;
89                 else {
90                         argv++;
91                         realpath(zapit, path);
92                         for (m = mtl; m; m = m->next)
93                                 if (!strcmp(path, m->dir) || !strcmp(path, m->device))
94                                         break;
95                 }
96                 // If we couldn't find this sucker in /etc/mtab, punt by passing our
97                 // command line argument straight to the umount syscall.  Otherwise,
98                 // umount the directory even if we were given the block device.
99                 if (m) zapit = m->dir;
100
101                 // Let's ask the thing nicely to unmount.
102                 curstat = umount(zapit);
103
104                 // Force the unmount, if necessary.
105                 if (curstat && doForce) {
106                         curstat = umount2(zapit, doForce);
107                         if (curstat)
108                                 bb_error_msg_and_die("forced umount of %s failed!", zapit);
109                 }
110
111                 // If still can't umount, maybe remount read-only?
112                 if (curstat && (opt & OPT_REMOUNT) && errno == EBUSY && m) {
113                         curstat = mount(m->device, zapit, NULL, MS_REMOUNT|MS_RDONLY, NULL);
114                         bb_error_msg(curstat ? "Cannot remount %s read-only" :
115                                                  "%s busy - remounted read-only", m->device);
116                 }
117
118                 if (curstat) {
119                         status = EXIT_FAILURE;
120                         bb_perror_msg("Couldn't umount %s", zapit);
121                 } else {
122                         /* De-allocate the loop device.  This ioctl should be ignored on
123                          * any non-loop block devices. */
124                         if (ENABLE_FEATURE_MOUNT_LOOP && !(opt & OPT_DONTFREELOOP) && m)
125                                 del_loop(m->device);
126                         if (ENABLE_FEATURE_MTAB_SUPPORT && !(opt & OPT_NO_MTAB) && m)
127                                 erase_mtab(m->dir);
128                 }
129
130                 // Find next matching mtab entry for -a or umount /dev
131                 // Note this means that "umount /dev/blah" will unmount all instances
132                 // of /dev/blah, not just the most recent.
133                 while (m && (m = m->next))
134                         if ((opt & OPT_ALL) || !strcmp(path,m->device))
135                                 break;
136         }
137
138         // Free mtab list if necessary
139
140         if (ENABLE_FEATURE_CLEAN_UP) {
141                 while (mtl) {
142                         m = mtl->next;
143                         free(mtl->device);
144                         free(mtl->dir);
145                         free(mtl);
146                         mtl=m;
147                 }
148         }
149
150         return status;
151 }