first pass at updating head branch to be to be the same as the SAMBA_2_0 branch
[kai/samba.git] / source3 / client / smbumount.c
1 /*
2  *  smbumount.c
3  *
4  *  Copyright (C) 1995-1998 by Volker Lendecke
5  *
6  */
7
8 #include "includes.h"
9
10 #include <mntent.h>
11
12 #include <asm/types.h>
13 #include <asm/posix_types.h>
14 #include <linux/smb.h>
15 #include <linux/smb_mount.h>
16 #include <linux/smb_fs.h>
17
18 /* This is a (hopefully) temporary hack due to the fact that
19         sizeof( uid_t ) != sizeof( __kernel_uid_t ) under glibc.
20         This may change in the future and smb.h may get fixed in the
21         future.  In the mean time, it's ugly hack time - get over it.
22 */
23 #undef SMB_IOC_GETMOUNTUID
24 #define SMB_IOC_GETMOUNTUID             _IOR('u', 1, __kernel_uid_t)
25
26 #ifndef O_NOFOLLOW
27 #define O_NOFOLLOW     0400000
28 #endif
29
30 static void
31 usage(void)
32 {
33         printf("usage: smbumount mountpoint\n");
34 }
35
36 static int
37 umount_ok(const char *mount_point)
38 {
39         /* we set O_NOFOLLOW to prevent users playing games with symlinks to
40            umount filesystems they don't own */
41         int fid = open(mount_point, O_RDONLY|O_NOFOLLOW, 0);
42         __kernel_uid_t mount_uid;
43         
44         if (fid == -1) {
45                 fprintf(stderr, "Could not open %s: %s\n",
46                         mount_point, strerror(errno));
47                 return -1;
48         }
49         
50         if (ioctl(fid, SMB_IOC_GETMOUNTUID, &mount_uid) != 0) {
51                 fprintf(stderr, "%s probably not smb-filesystem\n",
52                         mount_point);
53                 return -1;
54         }
55
56         if ((getuid() != 0)
57             && (mount_uid != getuid())) {
58                 fprintf(stderr, "You are not allowed to umount %s\n",
59                         mount_point);
60                 return -1;
61         }
62
63         close(fid);
64         return 0;
65 }
66
67 /* Make a canonical pathname from PATH.  Returns a freshly malloced string.
68    It is up the *caller* to ensure that the PATH is sensible.  i.e.
69    canonicalize ("/dev/fd0/.") returns "/dev/fd0" even though ``/dev/fd0/.''
70    is not a legal pathname for ``/dev/fd0''  Anything we cannot parse
71    we return unmodified.   */
72 static char *
73 canonicalize (char *path)
74 {
75         char *canonical = malloc (PATH_MAX + 1);
76
77         if (strlen(path) > PATH_MAX) {
78                 fprintf(stderr, "Mount point string too long\n");
79                 return NULL;
80         }
81
82         if (path == NULL)
83                 return NULL;
84   
85         if (realpath (path, canonical))
86                 return canonical;
87
88         pstrcpy (canonical, path);
89         return canonical;
90 }
91
92
93 int 
94 main(int argc, char *argv[])
95 {
96         int fd;
97         char* mount_point;
98         struct mntent *mnt;
99         FILE* mtab;
100         FILE* new_mtab;
101
102         if (argc != 2) {
103                 usage();
104                 exit(1);
105         }
106
107         if (geteuid() != 0) {
108                 fprintf(stderr, "smbumount must be installed suid root\n");
109                 exit(1);
110         }
111
112         mount_point = canonicalize(argv[1]);
113
114         if (mount_point == NULL)
115         {
116                 exit(1);
117         }
118
119         if (umount_ok(mount_point) != 0) {
120                 exit(1);
121         }
122
123         if (umount(mount_point) != 0) {
124                 fprintf(stderr, "Could not umount %s: %s\n",
125                         mount_point, strerror(errno));
126                 exit(1);
127         }
128
129         if ((fd = open(MOUNTED"~", O_RDWR|O_CREAT|O_EXCL, 0600)) == -1)
130         {
131                 fprintf(stderr, "Can't get "MOUNTED"~ lock file");
132                 return 1;
133         }
134         close(fd);
135         
136         if ((mtab = setmntent(MOUNTED, "r")) == NULL) {
137                 fprintf(stderr, "Can't open " MOUNTED ": %s\n",
138                         strerror(errno));
139                 return 1;
140         }
141
142 #define MOUNTED_TMP MOUNTED".tmp"
143
144         if ((new_mtab = setmntent(MOUNTED_TMP, "w")) == NULL) {
145                 fprintf(stderr, "Can't open " MOUNTED_TMP ": %s\n",
146                         strerror(errno));
147                 endmntent(mtab);
148                 return 1;
149         }
150
151         while ((mnt = getmntent(mtab)) != NULL) {
152                 if (strcmp(mnt->mnt_dir, mount_point) != 0) {
153                         addmntent(new_mtab, mnt);
154                 }
155         }
156
157         endmntent(mtab);
158
159         if (fchmod (fileno (new_mtab), S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH) < 0) {
160                 fprintf(stderr, "Error changing mode of %s: %s\n",
161                         MOUNTED_TMP, strerror(errno));
162                 exit(1);
163         }
164
165         endmntent(new_mtab);
166
167         if (rename(MOUNTED_TMP, MOUNTED) < 0) {
168                 fprintf(stderr, "Cannot rename %s to %s: %s\n",
169                         MOUNTED, MOUNTED_TMP, strerror(errno));
170                 exit(1);
171         }
172
173         if (unlink(MOUNTED"~") == -1)
174         {
175                 fprintf(stderr, "Can't remove "MOUNTED"~");
176                 return 1;
177         }
178
179         return 0;
180 }