blob: 0f087e197e8ae0b9cf320a220f27841d07460943 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersenf811e071999-10-09 00:25:00 +00002/*
3 * Mini umount implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 *
6 * Copyright (C) 1999 by Lineo, inc.
7 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersenf811e071999-10-09 00:25:00 +00008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
Eric Andersencc8ed391999-10-05 16:24:54 +000025#include "internal.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000026#include <stdio.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000027#include <sys/mount.h>
Eric Andersenf811e071999-10-09 00:25:00 +000028#include <mntent.h>
29#include <fstab.h>
30#include <errno.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000031
Erik Andersene132f4b2000-02-09 04:16:43 +000032
Erik Andersene49d5ec2000-02-08 19:58:47 +000033static const char umount_usage[] =
34 "umount [flags] filesystem|directory\n\n"
35 "Flags:\n" "\t-a:\tUnmount all file systems"
Eric Andersend0246fb1999-11-04 21:18:07 +000036#ifdef BB_MTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +000037 " in /etc/mtab\n\t-n:\tDon't erase /etc/mtab entries\n"
Eric Andersend0246fb1999-11-04 21:18:07 +000038#else
Erik Andersene49d5ec2000-02-08 19:58:47 +000039 "\n"
Eric Andersend0246fb1999-11-04 21:18:07 +000040#endif
Erik Andersenfac10d72000-02-07 05:29:42 +000041#ifdef BB_FEATURE_REMOUNT
Erik Andersene49d5ec2000-02-08 19:58:47 +000042 "\t-r:\tTry to remount devices as read-only if mount is busy\n"
Erik Andersenfac10d72000-02-07 05:29:42 +000043#endif
Eric Andersend0246fb1999-11-04 21:18:07 +000044;
45
Erik Andersenfac10d72000-02-07 05:29:42 +000046struct _mtab_entry_t {
Erik Andersene49d5ec2000-02-08 19:58:47 +000047 char *device;
48 char *mountpt;
49 struct _mtab_entry_t *next;
Erik Andersenfac10d72000-02-07 05:29:42 +000050};
51
52static struct _mtab_entry_t *mtab_cache = NULL;
53
54
Eric Andersend0246fb1999-11-04 21:18:07 +000055
56static int useMtab = TRUE;
57static int umountAll = FALSE;
Erik Andersenfac10d72000-02-07 05:29:42 +000058static int doRemount = FALSE;
Erik Andersene49d5ec2000-02-08 19:58:47 +000059extern const char mtab_file[]; /* Defined in utility.c */
Eric Andersend0246fb1999-11-04 21:18:07 +000060
Erik Andersenfac10d72000-02-07 05:29:42 +000061
Erik Andersen5b911dd2000-02-23 22:49:58 +000062
Erik Andersenfac10d72000-02-07 05:29:42 +000063/* These functions are here because the getmntent functions do not appear
64 * to be re-entrant, which leads to all sorts of problems when we try to
65 * use them recursively - randolph
Erik Andersen5b911dd2000-02-23 22:49:58 +000066 *
67 * TODO: Perhaps switch to using Glibc's getmntent_r
68 * -Erik
Erik Andersenfac10d72000-02-07 05:29:42 +000069 */
70void mtab_read(void)
71{
Erik Andersene49d5ec2000-02-08 19:58:47 +000072 struct _mtab_entry_t *entry = NULL;
73 struct mntent *e;
74 FILE *fp;
75
76 if (mtab_cache != NULL)
77 return;
78
79 if ((fp = setmntent(mtab_file, "r")) == NULL) {
80 fprintf(stderr, "Cannot open %s\n", mtab_file);
81 return;
82 }
83 while ((e = getmntent(fp))) {
84 entry = malloc(sizeof(struct _mtab_entry_t));
85
86 entry->device = strdup(e->mnt_fsname);
87 entry->mountpt = strdup(e->mnt_dir);
88 entry->next = mtab_cache;
89 mtab_cache = entry;
90 }
91 endmntent(fp);
Erik Andersenfac10d72000-02-07 05:29:42 +000092}
93
94char *mtab_getinfo(const char *match, const char which)
95{
Erik Andersene49d5ec2000-02-08 19:58:47 +000096 struct _mtab_entry_t *cur = mtab_cache;
97
98 while (cur) {
99 if (strcmp(cur->mountpt, match) == 0 ||
100 strcmp(cur->device, match) == 0) {
101 if (which == MTAB_GETMOUNTPT) {
102 return cur->mountpt;
103 } else {
Erik Andersenfac10d72000-02-07 05:29:42 +0000104#if !defined BB_MTAB
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105 if (strcmp(cur->device, "/dev/root") == 0) {
106 struct fstab *fstabItem;
107
108 fstabItem = getfsfile("/");
109 if (fstabItem != NULL)
110 return fstabItem->fs_spec;
111 }
Erik Andersenfac10d72000-02-07 05:29:42 +0000112#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000113 return cur->device;
114 }
115 }
116 cur = cur->next;
Erik Andersenfac10d72000-02-07 05:29:42 +0000117 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000118 return NULL;
Erik Andersenfac10d72000-02-07 05:29:42 +0000119}
120
121char *mtab_first(void **iter)
122{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123 struct _mtab_entry_t *mtab_iter;
124
125 if (!iter)
126 return NULL;
127 mtab_iter = mtab_cache;
128 *iter = (void *) mtab_iter;
129 return mtab_next(iter);
Erik Andersenfac10d72000-02-07 05:29:42 +0000130}
131
132char *mtab_next(void **iter)
133{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000134 char *mp;
135
136 if (iter == NULL || *iter == NULL)
137 return NULL;
138 mp = ((struct _mtab_entry_t *) (*iter))->mountpt;
139 *iter = (void *) ((struct _mtab_entry_t *) (*iter))->next;
140 return mp;
Erik Andersenfac10d72000-02-07 05:29:42 +0000141}
142
143void mtab_free(void)
144{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145 struct _mtab_entry_t *this, *next;
Erik Andersenfac10d72000-02-07 05:29:42 +0000146
Erik Andersene49d5ec2000-02-08 19:58:47 +0000147 this = mtab_cache;
148 while (this) {
149 next = this->next;
150 if (this->device)
151 free(this->device);
152 if (this->mountpt)
153 free(this->mountpt);
154 free(this);
155 this = next;
156 }
Erik Andersenfac10d72000-02-07 05:29:42 +0000157}
Erik Andersene132f4b2000-02-09 04:16:43 +0000158
159static int do_umount(const char *name, int useMtab)
160{
161 int status;
162 char *blockDevice = mtab_getinfo(name, MTAB_GETDEVICE);
163
164 if (blockDevice && strcmp(blockDevice, name) == 0)
165 name = mtab_getinfo(blockDevice, MTAB_GETMOUNTPT);
166
167 status = umount(name);
168
169#if defined BB_FEATURE_MOUNT_LOOP
170 if (blockDevice != NULL && !strncmp("/dev/loop", blockDevice, 9))
171 /* this was a loop device, delete it */
172 del_loop(blockDevice);
173#endif
174#if defined BB_FEATURE_REMOUNT
175 if (status != 0 && doRemount == TRUE && errno == EBUSY) {
176 status = mount(blockDevice, name, NULL,
177 MS_MGC_VAL | MS_REMOUNT | MS_RDONLY, NULL);
178 if (status == 0) {
179 fprintf(stderr, "umount: %s busy - remounted read-only\n",
180 blockDevice);
181 /* TODO: update mtab if BB_MTAB is defined */
182 } else {
183 fprintf(stderr, "umount: Cannot remount %s read-only\n",
184 blockDevice);
185 }
186 }
187#endif
188 if (status == 0) {
189#if defined BB_MTAB
190 if (useMtab == TRUE)
191 erase_mtab(name);
192#endif
193 return (TRUE);
194 }
195 return (FALSE);
196}
197
198static int umount_all(int useMtab)
199{
200 int status = TRUE;
201 char *mountpt;
202 void *iter;
203
204 for (mountpt = mtab_first(&iter); mountpt; mountpt = mtab_next(&iter)) {
205 /* Never umount /proc on a umount -a */
206 if (strstr(mountpt, "proc")!= NULL)
207 continue;
208 status = do_umount(mountpt, useMtab);
209 if (status != 0) {
210 /* Don't bother retrying the umount on busy devices */
211 if (errno == EBUSY) {
212 perror(mountpt);
213 continue;
214 }
215 status = do_umount(mountpt, useMtab);
216 if (status != 0) {
217 printf("Couldn't umount %s on %s: %s\n",
218 mountpt, mtab_getinfo(mountpt, MTAB_GETDEVICE),
219 strerror(errno));
220 }
221 }
222 }
223 return (status);
224}
225
226extern int umount_main(int argc, char **argv)
227{
228 if (argc < 2) {
229 usage(umount_usage);
230 }
231
232 /* Parse any options */
233 while (--argc > 0 && **(++argv) == '-') {
234 while (*++(*argv))
235 switch (**argv) {
236 case 'a':
237 umountAll = TRUE;
238 break;
239#ifdef BB_MTAB
240 case 'n':
241 useMtab = FALSE;
242 break;
243#endif
244#ifdef BB_FEATURE_REMOUNT
245 case 'r':
246 doRemount = TRUE;
247 break;
248#endif
249 default:
250 usage(umount_usage);
251 }
252 }
253
254 mtab_read();
255 if (umountAll == TRUE) {
256 exit(umount_all(useMtab));
257 }
258 if (do_umount(*argv, useMtab) == 0)
259 exit(TRUE);
260 else {
261 perror("umount");
262 exit(FALSE);
263 }
264}
265