1
2
3
4
5
6
7
8
9
10
11#include <mntent.h>
12#include "libbb.h"
13
14#if defined(__dietlibc__)
15
16
17static struct mntent *getmntent_r(FILE* stream, struct mntent* result,
18 char* buffer UNUSED_PARAM, int bufsize UNUSED_PARAM)
19{
20 struct mntent* ment = getmntent(stream);
21 return memcpy(result, ment, sizeof(*ment));
22}
23#endif
24
25
26#define OPTION_STRING "fldnra" "vdt:i"
27#define OPT_FORCE (1 << 0)
28#define OPT_LAZY (1 << 1)
29#define OPT_FREELOOP (1 << 2)
30#define OPT_NO_MTAB (1 << 3)
31#define OPT_REMOUNT (1 << 4)
32#define OPT_ALL (ENABLE_FEATURE_UMOUNT_ALL ? (1 << 5) : 0)
33
34
35
36
37
38
39int umount_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
40int umount_main(int argc UNUSED_PARAM, char **argv)
41{
42 int doForce;
43 char *const path = xmalloc(PATH_MAX + 2);
44 struct mntent me;
45 FILE *fp;
46 char *fstype = NULL;
47 int status = EXIT_SUCCESS;
48 unsigned opt;
49 struct mtab_list {
50 char *dir;
51 char *device;
52 struct mtab_list *next;
53 } *mtl, *m;
54
55 opt = getopt32(argv, OPTION_STRING, &fstype);
56
57 argv += optind;
58 doForce = MAX((opt & OPT_FORCE), (opt & OPT_LAZY));
59
60
61
62
63
64
65 m = mtl = NULL;
66
67
68
69 fp = setmntent(bb_path_mtab_file, "r");
70 if (!fp) {
71 if (opt & OPT_ALL)
72 bb_error_msg_and_die("can't open '%s'", bb_path_mtab_file);
73 } else {
74 while (getmntent_r(fp, &me, path, PATH_MAX)) {
75
76 if (!match_fstype(&me, fstype))
77 continue;
78 m = xzalloc(sizeof(*m));
79 m->next = mtl;
80 m->device = xstrdup(me.mnt_fsname);
81 m->dir = xstrdup(me.mnt_dir);
82 mtl = m;
83 }
84 endmntent(fp);
85 }
86
87
88 if (!(opt & OPT_ALL) && !fstype) {
89 if (!argv[0])
90 bb_show_usage();
91 m = NULL;
92 }
93
94
95 for (;;) {
96 int curstat;
97 char *zapit = *argv;
98
99
100 if (m)
101 safe_strncpy(path, m->dir, PATH_MAX);
102
103 else if (opt & OPT_ALL)
104 break;
105
106 else {
107 if (!zapit)
108 break;
109 argv++;
110 realpath(zapit, path);
111 for (m = mtl; m; m = m->next)
112 if (!strcmp(path, m->dir) || !strcmp(path, m->device))
113 break;
114 }
115
116
117
118 if (m) zapit = m->dir;
119
120
121 curstat = umount(zapit);
122
123
124 if (curstat && doForce)
125 curstat = umount2(zapit, doForce);
126
127
128 if (curstat) {
129 if ((opt & OPT_REMOUNT) && errno == EBUSY && m) {
130
131
132 const char *msg = "%s busy - remounted read-only";
133 curstat = mount(m->device, zapit, NULL, MS_REMOUNT|MS_RDONLY, NULL);
134 if (curstat) {
135 msg = "can't remount %s read-only";
136 status = EXIT_FAILURE;
137 }
138 bb_error_msg(msg, m->device);
139 } else {
140 status = EXIT_FAILURE;
141 bb_perror_msg("can't %sumount %s", (doForce ? "forcibly " : ""), zapit);
142 }
143 } else {
144
145
146 if (ENABLE_FEATURE_MOUNT_LOOP && (opt & OPT_FREELOOP) && m)
147 del_loop(m->device);
148 if (ENABLE_FEATURE_MTAB_SUPPORT && !(opt & OPT_NO_MTAB) && m)
149 erase_mtab(m->dir);
150 }
151
152
153
154
155 if (m) while ((m = m->next) != NULL)
156 if ((opt & OPT_ALL) || !strcmp(path, m->device))
157 break;
158 }
159
160
161 if (ENABLE_FEATURE_CLEAN_UP) {
162 while (mtl) {
163 m = mtl->next;
164 free(mtl->device);
165 free(mtl->dir);
166 free(mtl);
167 mtl = m;
168 }
169 free(path);
170 }
171
172 return status;
173}
174