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