2 Unmount utility program for Linux CIFS VFS (virtual filesystem) client
3 Copyright (C) 2005 Steve French (sfrench@us.ibm.com)
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include <sys/types.h>
27 #include <sys/mount.h>
28 #include <sys/ioctl.h>
39 #define UNMOUNT_CIFS_VERSION_MAJOR "0"
40 #define UNMOUNT_CIFS_VERSION_MINOR "6"
42 #ifndef UNMOUNT_CIFS_VENDOR_SUFFIX
45 #ifdef SAMBA_VERSION_VENDOR_SUFFIX
46 #define UNMOUNT_CIFS_VENDOR_SUFFIX "-"SAMBA_VERSION_OFFICIAL_STRING"-"SAMBA_VERSION_VENDOR_SUFFIX
48 #define UNMOUNT_CIFS_VENDOR_SUFFIX "-"SAMBA_VERSION_OFFICIAL_STRING
49 #endif /* SAMBA_VERSION_OFFICIAL_STRING and SAMBA_VERSION_VENDOR_SUFFIX */
51 #define UNMOUNT_CIFS_VENDOR_SUFFIX ""
52 #endif /* _SAMBA_BUILD_ */
53 #endif /* UNMOUNT_CIFS_VENDOR_SUFFIX */
56 #define MNT_DETACH 0x02
60 #define MNT_EXPIRE 0x04
64 #define MOUNTED_LOCK "/etc/mtab~"
67 #define MOUNTED_TEMP "/etc/mtab.tmp"
70 #define CIFS_IOC_CHECKUMOUNT _IO(0xCF, 2)
71 #define CIFS_MAGIC_NUMBER 0xFF534D42 /* the first four bytes of SMB PDU */
73 static struct option longopts
[] = {
74 { "all", 0, NULL
, 'a' },
75 { "help",0, NULL
, 'h' },
76 { "read-only", 0, NULL
, 'r' },
77 { "ro", 0, NULL
, 'r' },
78 { "verbose", 0, NULL
, 'v' },
79 { "version", 0, NULL
, 'V' },
80 { "expire", 0, NULL
, 'e' },
81 { "force", 0, 0, 'f' },
82 { "lazy", 0, 0, 'l' },
83 { "no-mtab", 0, 0, 'n' },
87 const char * thisprogram
;
90 static void umount_cifs_usage(void)
92 printf("\nUsage: %s <remotetarget> <dir>\n", thisprogram
);
93 printf("\nUnmount the specified directory\n");
94 printf("\nLess commonly used options:");
95 printf("\n\t-r\tIf mount fails, retry with readonly remount.");
96 printf("\n\t-n\tDo not write to mtab.");
97 printf("\n\t-f\tAttempt a forced unmount, even if the fs is busy.");
98 printf("\n\t-l\tAttempt lazy unmount, Unmount now, cleanup later.");
99 printf("\n\t-v\tEnable verbose mode (may be useful for debugging).");
100 printf("\n\t-h\tDisplay this help.");
101 printf("\n\nOptions are described in more detail in the manual page");
102 printf("\n\tman 8 umount.cifs\n");
103 printf("\nTo display the version number of the cifs umount utility:");
104 printf("\n\t%s -V\n",thisprogram
);
105 printf("\nInvoking the umount utility on cifs mounts, can execute");
106 printf(" /sbin/umount.cifs (if present and umount -i is not specified.\n");
109 static int umount_check_perm(char * dir
)
114 /* allow root to unmount, no matter what */
118 /* presumably can not chdir into the target as we do on mount */
119 fileid
= open(dir
, O_RDONLY
| O_DIRECTORY
| O_NOFOLLOW
, 0);
122 printf("error opening mountpoint %d %s",errno
,strerror(errno
));
126 rc
= ioctl(fileid
, CIFS_IOC_CHECKUMOUNT
, NULL
);
129 printf("ioctl returned %d with errno %d %s\n",rc
,errno
,strerror(errno
));
132 printf("user unmounting via %s is an optional feature of",thisprogram
);
133 printf(" the cifs filesystem driver (cifs.ko)");
134 printf("\n\tand requires cifs.ko version 1.32 or later\n");
136 printf("user unmount of %s failed with %d %s\n",dir
,errno
,strerror(errno
));
142 static int remove_from_mtab(char * mountpoint
)
148 struct mntent
* mount_entry
;
151 /* If it is a symlink, e.g. to /proc/mounts, no need to update it. */
152 if ((lstat(MOUNTED
, &statbuf
) == 0) && (S_ISLNK(statbuf
.st_mode
)))
155 /* Do we first need to check if it is writable? */
159 printf("Mount table locked\n");
164 printf("attempting to remove from mtab\n");
166 org_fd
= setmntent(MOUNTED
, "r");
168 printf("Can not open %s\n",MOUNTED
);
173 new_fd
= setmntent(MOUNTED_TEMP
,"w");
175 printf("Can not open temp file %s", MOUNTED_TEMP
);
181 /* BB fix so we only remove the last entry that matches BB */
183 while((mount_entry
= getmntent(org_fd
)) != NULL
) {
184 if(strcmp(mount_entry
->mnt_dir
, mountpoint
) == 0) {
189 printf("%d matching entries in mount table\n", num_matches
);
191 /* Is there a better way to seek back to the first entry in mtab? */
193 org_fd
= setmntent(MOUNTED
, "r");
196 printf("Can not open %s\n",MOUNTED
);
201 while((mount_entry
= getmntent(org_fd
)) != NULL
) {
202 if(strcmp(mount_entry
->mnt_dir
, mountpoint
) != 0) {
203 addmntent(new_fd
, mount_entry
);
205 if(num_matches
!= 1) {
206 addmntent(new_fd
, mount_entry
);
208 } else if(verboseflg
)
209 printf("entry not copied (ie entry is removed)\n");
214 printf("done updating tmp file\n");
215 rc
= fchmod (fileno (new_fd
), S_IRUSR
|S_IWUSR
|S_IRGRP
|S_IROTH
);
217 printf("error %s changing mode of %s\n", strerror(errno
),
222 rc
= rename(MOUNTED_TEMP
, MOUNTED
);
225 printf("failure %s renaming %s to %s\n",strerror(errno
),
226 MOUNTED_TEMP
, MOUNTED
);
236 /* Make a canonical pathname from PATH. Returns a freshly malloced string.
237 It is up the *caller* to ensure that the PATH is sensible. i.e.
238 canonicalize ("/dev/fd0/.") returns "/dev/fd0" even though ``/dev/fd0/.''
239 is not a legal pathname for ``/dev/fd0'' Anything we cannot parse
240 we return unmodified. */
242 canonicalize(char *path
)
250 if (strlen(path
) > PATH_MAX
) {
251 fprintf(stderr
, "Mount point string too long\n");
255 canonical
= (char *)malloc (PATH_MAX
+ 1);
258 fprintf(stderr
, "Error! Not enough memory!\n");
262 if (realpath (path
, canonical
))
265 strncpy (canonical
, path
, PATH_MAX
);
266 canonical
[PATH_MAX
] = '\0';
270 int main(int argc
, char ** argv
)
276 int retry_remount
= 0;
277 struct statfs statbuf
;
281 thisprogram
= argv
[0];
292 if(thisprogram
== NULL
)
293 thisprogram
= "umount.cifs";
295 /* add sharename in opts string as unc= parm */
297 while ((c
= getopt_long (argc
, argv
, "afhilnrvV",
298 longopts
, NULL
)) != -1) {
300 /* No code to do the following option yet */
315 flags
|= MNT_DETACH
; /* lazy unmount */
318 flags
|= MNT_EXPIRE
; /* gradually timeout */
327 printf ("umount.cifs version: %s.%s%s\n",
328 UNMOUNT_CIFS_VERSION_MAJOR
,
329 UNMOUNT_CIFS_VERSION_MINOR
,
330 UNMOUNT_CIFS_VENDOR_SUFFIX
);
333 printf("unknown unmount option %c\n",c
);
339 /* move past the umount options */
343 mountpoint
= canonicalize(argv
[0]);
345 if((argc
< 1) || (argv
[0] == NULL
)) {
346 printf("\nMissing name of unmount directory\n");
352 printf("optind %d unmount dir %s\n",optind
, mountpoint
);
354 /* check if running effectively root */
356 printf("Trying to unmount when %s not installed suid\n",thisprogram
);
358 printf("euid = %d\n",geteuid());
362 /* fixup path if needed */
364 /* Trim any trailing slashes */
365 while ((strlen(mountpoint
) > 1) &&
366 (mountpoint
[strlen(mountpoint
)-1] == '/'))
368 mountpoint
[strlen(mountpoint
)-1] = '\0';
371 /* make sure that this is a cifs filesystem */
372 rc
= statfs(mountpoint
, &statbuf
);
374 if(rc
|| (statbuf
.f_type
!= CIFS_MAGIC_NUMBER
)) {
375 printf("This utility only unmounts cifs filesystems.\n");
379 /* check if our uid was the one who mounted */
380 rc
= umount_check_perm(mountpoint
);
382 printf("Not permitted to unmount\n");
386 if(umount2(mountpoint
, flags
)) {
387 /* remember to kill daemon on error */
390 printf("unmount failed but no error number set\n");
393 printf("unmount error %d = %s\n",errno
,strerror(errno
));
395 printf("Refer to the umount.cifs(8) manual page (man 8 umount.cifs)\n");
399 printf("umount2 succeeded\n");
401 remove_from_mtab(mountpoint
);