Update menuconfig items with approximate applet sizes
[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  * Licensed under GPLv2, see file LICENSE in this source tree.
9  */
10 //config:config UMOUNT
11 //config:       bool "umount (4.5 kb)"
12 //config:       default y
13 //config:       select PLATFORM_LINUX
14 //config:       help
15 //config:         When you want to remove a mounted filesystem from its current mount
16 //config:         point, for example when you are shutting down the system, the
17 //config:         'umount' utility is the tool to use. If you enabled the 'mount'
18 //config:         utility, you almost certainly also want to enable 'umount'.
19 //config:
20 //config:config FEATURE_UMOUNT_ALL
21 //config:       bool "Support option -a"
22 //config:       default y
23 //config:       depends on UMOUNT
24 //config:       help
25 //config:         Support -a option to unmount all currently mounted filesystems.
26
27 //applet:IF_UMOUNT(APPLET(umount, BB_DIR_BIN, BB_SUID_DROP))
28
29 //kbuild:lib-$(CONFIG_UMOUNT) += umount.o
30
31 //usage:#define umount_trivial_usage
32 //usage:       "[OPTIONS] FILESYSTEM|DIRECTORY"
33 //usage:#define umount_full_usage "\n\n"
34 //usage:       "Unmount file systems\n"
35 //usage:        IF_FEATURE_UMOUNT_ALL(
36 //usage:     "\n        -a      Unmount all file systems" IF_FEATURE_MTAB_SUPPORT(" in /etc/mtab")
37 //usage:        )
38 //usage:        IF_FEATURE_MTAB_SUPPORT(
39 //usage:     "\n        -n      Don't erase /etc/mtab entries"
40 //usage:        )
41 //usage:     "\n        -r      Try to remount devices as read-only if mount is busy"
42 //usage:     "\n        -l      Lazy umount (detach filesystem)"
43 //usage:     "\n        -f      Force umount (i.e., unreachable NFS server)"
44 //usage:        IF_FEATURE_MOUNT_LOOP(
45 //usage:     "\n        -d      Free loop device if it has been used"
46 //usage:        )
47 //usage:
48 //usage:#define umount_example_usage
49 //usage:       "$ umount /dev/hdc1\n"
50
51 #include <mntent.h>
52 #include <sys/mount.h>
53 #ifndef MNT_DETACH
54 # define MNT_DETACH 0x00000002
55 #endif
56 #include "libbb.h"
57 #include "common_bufsiz.h"
58
59 #if defined(__dietlibc__)
60 // TODO: This does not belong here.
61 /* 16.12.2006, Sampo Kellomaki (sampo@iki.fi)
62  * dietlibc-0.30 does not have implementation of getmntent_r() */
63 static struct mntent *getmntent_r(FILE* stream, struct mntent* result,
64                 char* buffer UNUSED_PARAM, int bufsize UNUSED_PARAM)
65 {
66         struct mntent* ment = getmntent(stream);
67         return memcpy(result, ment, sizeof(*ment));
68 }
69 #endif
70
71 /* ignored: -v -t -i */
72 #define OPTION_STRING           "fldnra" "vt:i"
73 #define OPT_FORCE               (1 << 0) // Same as MNT_FORCE
74 #define OPT_LAZY                (1 << 1) // Same as MNT_DETACH
75 #define OPT_FREELOOP            (1 << 2)
76 #define OPT_NO_MTAB             (1 << 3)
77 #define OPT_REMOUNT             (1 << 4)
78 #define OPT_ALL                 (ENABLE_FEATURE_UMOUNT_ALL ? (1 << 5) : 0)
79
80 int umount_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
81 int umount_main(int argc UNUSED_PARAM, char **argv)
82 {
83         int doForce;
84         struct mntent me;
85         FILE *fp;
86         char *fstype = NULL;
87         int status = EXIT_SUCCESS;
88         unsigned opt;
89         struct mtab_list {
90                 char *dir;
91                 char *device;
92                 struct mtab_list *next;
93         } *mtl, *m;
94
95         opt = getopt32(argv, OPTION_STRING, &fstype);
96         //argc -= optind;
97         argv += optind;
98
99         // MNT_FORCE and MNT_DETACH (from linux/fs.h) must match
100         // OPT_FORCE and OPT_LAZY.
101         BUILD_BUG_ON(OPT_FORCE != MNT_FORCE || OPT_LAZY != MNT_DETACH);
102         doForce = opt & (OPT_FORCE|OPT_LAZY);
103
104         /* Get a list of mount points from mtab.  We read them all in now mostly
105          * for umount -a (so we don't have to worry about the list changing while
106          * we iterate over it, or about getting stuck in a loop on the same failing
107          * entry.  Notice that this also naturally reverses the list so that -a
108          * umounts the most recent entries first. */
109         m = mtl = NULL;
110
111         // If we're umounting all, then m points to the start of the list and
112         // the argument list should be empty (which will match all).
113         fp = setmntent(bb_path_mtab_file, "r");
114         if (!fp) {
115                 if (opt & OPT_ALL)
116                         bb_error_msg_and_die("can't open '%s'", bb_path_mtab_file);
117         } else {
118                 setup_common_bufsiz();
119                 while (getmntent_r(fp, &me, bb_common_bufsiz1, COMMON_BUFSIZE)) {
120                         /* Match fstype (fstype==NULL matches always) */
121                         if (!fstype_matches(me.mnt_type, fstype))
122                                 continue;
123                         m = xzalloc(sizeof(*m));
124                         m->next = mtl;
125                         m->device = xstrdup(me.mnt_fsname);
126                         m->dir = xstrdup(me.mnt_dir);
127                         mtl = m;
128                 }
129                 endmntent(fp);
130         }
131
132         // If we're not umounting all, we need at least one argument.
133         if (!(opt & OPT_ALL) && !fstype) {
134                 if (!argv[0])
135                         bb_show_usage();
136                 m = NULL;
137         }
138
139         // Loop through everything we're supposed to umount, and do so.
140         for (;;) {
141                 int curstat;
142                 char *zapit = *argv;
143                 char *path;
144
145                 // Do we already know what to umount this time through the loop?
146                 if (m)
147                         path = xstrdup(m->dir);
148                 // For umount -a, end of mtab means time to exit.
149                 else if (opt & OPT_ALL)
150                         break;
151                 // Use command line argument (and look it up in mtab list)
152                 else {
153                         if (!zapit)
154                                 break;
155                         argv++;
156                         path = xmalloc_realpath(zapit);
157                         if (path) {
158                                 for (m = mtl; m; m = m->next)
159                                         if (strcmp(path, m->dir) == 0 || strcmp(path, m->device) == 0)
160                                                 break;
161                         }
162                 }
163                 // If we couldn't find this sucker in /etc/mtab, punt by passing our
164                 // command line argument straight to the umount syscall.  Otherwise,
165                 // umount the directory even if we were given the block device.
166                 if (m) zapit = m->dir;
167
168 // umount from util-linux 2.22.2 does not do this:
169 // umount -f uses umount2(MNT_FORCE) immediately,
170 // not trying umount() first.
171 // (Strangely, umount -fl ignores -f: it is equivalent to umount -l.
172 // We do pass both flags in this case)
173 #if 0
174                 // Let's ask the thing nicely to unmount.
175                 curstat = umount(zapit);
176
177                 // Unmount with force and/or lazy flags, if necessary.
178                 if (curstat && doForce)
179 #endif
180                         curstat = umount2(zapit, doForce);
181
182                 // If still can't umount, maybe remount read-only?
183                 if (curstat) {
184                         if ((opt & OPT_REMOUNT) && errno == EBUSY && m) {
185                                 // Note! Even if we succeed here, later we should not
186                                 // free loop device or erase mtab entry!
187                                 const char *msg = "%s busy - remounted read-only";
188                                 curstat = mount(m->device, zapit, NULL, MS_REMOUNT|MS_RDONLY, NULL);
189                                 if (curstat) {
190                                         msg = "can't remount %s read-only";
191                                         status = EXIT_FAILURE;
192                                 }
193                                 bb_error_msg(msg, m->device);
194                         } else {
195                                 status = EXIT_FAILURE;
196                                 bb_perror_msg("can't unmount %s", zapit);
197                         }
198                 } else {
199                         // De-allocate the loop device.  This ioctl should be ignored on
200                         // any non-loop block devices.
201                         if (ENABLE_FEATURE_MOUNT_LOOP && (opt & OPT_FREELOOP) && m)
202                                 del_loop(m->device);
203                         if (ENABLE_FEATURE_MTAB_SUPPORT && !(opt & OPT_NO_MTAB) && m)
204                                 erase_mtab(m->dir);
205                 }
206
207                 // Find next matching mtab entry for -a or umount /dev
208                 // Note this means that "umount /dev/blah" will unmount all instances
209                 // of /dev/blah, not just the most recent.
210                 if (m) {
211                         while ((m = m->next) != NULL)
212                                 // NB: if m is non-NULL, path is non-NULL as well
213                                 if ((opt & OPT_ALL) || strcmp(path, m->device) == 0)
214                                         break;
215                 }
216                 free(path);
217         }
218
219         // Free mtab list if necessary
220         if (ENABLE_FEATURE_CLEAN_UP) {
221                 while (mtl) {
222                         m = mtl->next;
223                         free(mtl->device);
224                         free(mtl->dir);
225                         free(mtl);
226                         mtl = m;
227                 }
228         }
229
230         return status;
231 }