Try to make a "type-punned pointer" warning go away for somebody on the
[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
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                         realpath(*argv++, path);
90                         for (m = mtl; m; m = m->next)
91                                 if (!strcmp(path, m->dir) || !strcmp(path, m->device))
92                                         break;
93                 }
94
95                 // Let's ask the thing nicely to unmount.
96                 curstat = umount(path);
97
98                 // Force the unmount, if necessary.
99                 if (curstat && doForce) {
100                         curstat = umount2(path, doForce);
101                         if (curstat)
102                                 bb_error_msg_and_die("forced umount of %s failed!", path);
103                 }
104
105                 // If still can't umount, maybe remount read-only?
106                 if (curstat && (opt & OPT_REMOUNT) && errno == EBUSY && m) {
107                         curstat = mount(m->device, path, NULL, MS_REMOUNT|MS_RDONLY, NULL);
108                         bb_error_msg(curstat ? "Cannot remount %s read-only" :
109                                                  "%s busy - remounted read-only", m->device);
110                 }
111
112                 if (curstat) {
113                         status = EXIT_FAILURE;
114                         bb_perror_msg("Couldn't umount %s", path);
115                 } else {
116                         /* De-allocate the loop device.  This ioctl should be ignored on
117                          * any non-loop block devices. */
118                         if (ENABLE_FEATURE_MOUNT_LOOP && !(opt & OPT_DONTFREELOOP) && m)
119                                 del_loop(m->device);
120                         if (ENABLE_FEATURE_MTAB_SUPPORT && !(opt & OPT_NO_MTAB) && m)
121                                 erase_mtab(m->dir);
122                 }
123
124
125
126                 // Find next matching mtab entry for -a or umount /dev
127                 while (m && (m = m->next))
128                         if ((opt & OPT_ALL) || !strcmp(path,m->device))
129                                 break;
130         }
131
132         // Free mtab list if necessary
133
134         if (ENABLE_FEATURE_CLEAN_UP) {
135                 while (mtl) {
136                         m = mtl->next;
137                         free(mtl->device);
138                         free(mtl->dir);
139                         free(mtl);
140                         mtl=m;
141                 }
142         }
143
144         return status;
145 }