blob: dd072e7f6ae0a45fd8fabb79d00f1d33701de432 [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 Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Rob Landley6a6798b2005-08-10 20:35:54 +00006 * 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.
Eric Andersenf811e071999-10-09 00:25:00 +000011 *
12 */
13
Matt Kraaiadcbc122001-05-02 21:24:51 +000014#include <limits.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000015#include <stdio.h>
Eric Andersenf811e071999-10-09 00:25:00 +000016#include <mntent.h>
Eric Andersenf811e071999-10-09 00:25:00 +000017#include <errno.h>
Eric Andersened3ef502001-01-27 08:24:39 +000018#include <string.h>
19#include <stdlib.h>
Rob Landley6a6798b2005-08-10 20:35:54 +000020#include <sys/mount.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000021#include "busybox.h"
Eric Andersene1e23ee2000-06-19 18:38:51 +000022
Erik Andersene132f4b2000-02-09 04:16:43 +000023extern int umount_main(int argc, char **argv)
24{
Rob Landley6a6798b2005-08-10 20:35:54 +000025 int doForce = 0;
26 int freeLoop = ENABLE_FEATURE_MOUNT_LOOP;
27 int useMtab = ENABLE_FEATURE_MTAB_SUPPORT;
28 int umountAll = FALSE;
29 int doRemount = FALSE;
30 char path[2*PATH_MAX];
31 struct mntent me;
32 FILE *fp;
33 int status=EXIT_SUCCESS;
34 struct mtab_list {
35 char *dir;
36 char *device;
37 struct mtab_list *next;
38 } *mtl, *m;
Matt Kraaiadcbc122001-05-02 21:24:51 +000039
Rob Landley6a6798b2005-08-10 20:35:54 +000040 if(argc < 2) bb_show_usage();
41
Erik Andersene132f4b2000-02-09 04:16:43 +000042 /* Parse any options */
43 while (--argc > 0 && **(++argv) == '-') {
Rob Landley6a6798b2005-08-10 20:35:54 +000044 while (*++(*argv)) {
45 if(**argv=='a') umountAll = TRUE;
46 else if(ENABLE_FEATURE_MOUNT_LOOP && **argv=='D') freeLoop = FALSE;
47 else if(ENABLE_FEATURE_MTAB_SUPPORT && **argv=='n') useMtab = FALSE;
48 else if(**argv=='f') doForce = 1; // MNT_FORCE
49 else if(**argv=='l') doForce = 2; // MNT_DETACH
50 else if(**argv=='r') doRemount = TRUE;
51 else if(**argv=='v');
52 else bb_show_usage();
53 }
Erik Andersene132f4b2000-02-09 04:16:43 +000054 }
55
Rob Landley6a6798b2005-08-10 20:35:54 +000056 /* Get a list of mount points from mtab. We read them all in now mostly
57 * for umount -a (so we don't have to worry about the list changing while
58 * we iterate over it, or about getting stuck in a loop on the same failing
59 * entry. Notice that this also naturally reverses the list so that -a
60 * umounts the most recent entries first. */
61
62 m=mtl=0;
63 if(!(fp = setmntent(bb_path_mtab_file, "r")))
64 bb_error_msg_and_die("Cannot open %s", bb_path_mtab_file);
65 while (getmntent_r(fp,&me,path,sizeof(path))) {
66 m=xmalloc(sizeof(struct mtab_list));
67 m->next=mtl;
68 m->device=bb_xstrdup(me.mnt_fsname);
69 m->dir=bb_xstrdup(me.mnt_dir);
70 mtl=m;
71 }
72 endmntent(fp);
73
74 /* If we're umounting all, then m points to the start of the list and
75 * the argument list should be empty (which will match all). */
76 if(!umountAll) m=0;
77
78 // Loop through everything we're supposed to umount, and do so.
79 for(;;) {
80 int curstat;
81
82 // Do we alrady know what to umount this time through the loop?
83 if(m) safe_strncpy(path,m->dir,PATH_MAX);
84 // For umountAll, end of mtab means time to exit.
85 else if(umountAll) break;
86 // Get next command line argument (and look it up in mtab list)
87 else if(!argc--) break;
88 else {
89 // Get next command line argument (and look it up in mtab list)
90 realpath(*argv++, path);
91 for(m = mtl; m; m = m->next)
92 if(!strcmp(path, m->dir) || !strcmp(path, m->device))
93 break;
94 }
95
96 // Let's ask the thing nicely to unmount.
97 curstat = umount(path);
98
99 // Force the unmount, if necessary.
100 if(curstat && doForce) {
101 curstat = umount2(path, doForce);
102 if(curstat)
103 bb_error_msg_and_die("forced umount of %s failed!", path);
104 }
105
106 // If still can't umount, maybe remount read-only?
107 if (curstat && doRemount && errno == EBUSY && m) {
108 curstat = mount(m->device, path, NULL, MS_REMOUNT|MS_RDONLY, NULL);
109 bb_error_msg(curstat ? "Cannot remount %s read-only" :
110 "%s busy - remounted read-only", m->device);
111 }
112
113 /* De-allcate the loop device. This ioctl should be ignored on any
114 * non-loop block devices. */
115 if(ENABLE_FEATURE_MOUNT_LOOP && freeLoop && m)
116 del_loop(m->device);
117
118 if(curstat) {
Rob Landleyf4c684a2005-08-23 20:03:17 +0000119 /* Yes, the ENABLE is redundant here, but the optimizer for ARM
120 * can't do simple constant propogation in local variables... */
121 if(ENABLE_FEATURE_MTAB_SUPPORT && useMtab && m) erase_mtab(m->dir);
Rob Landley6a6798b2005-08-10 20:35:54 +0000122 status = EXIT_FAILURE;
123 bb_perror_msg("Couldn't umount %s\n", path);
124 }
125 // Find next matching mtab entry for -a or umount /dev
126 while(m && (m = m->next))
127 if(umountAll || !strcmp(path,m->device))
128 break;
Erik Andersene132f4b2000-02-09 04:16:43 +0000129 }
Erik Andersene132f4b2000-02-09 04:16:43 +0000130
Rob Landley6a6798b2005-08-10 20:35:54 +0000131 // Free mtab list if necessary
132
133 if(ENABLE_FEATURE_CLEAN_UP) {
134 while(mtl) {
135 m=mtl->next;
136 free(mtl->device);
137 free(mtl->dir);
138 free(mtl);
139 mtl=m;
140 }
141 }
142
143 return status;
Glenn L McGrath15a4f1e2004-02-22 11:35:13 +0000144}