made it compilabe with non-C99 compilers
[util-vserver.git] / util-vserver / src / secure-mount.c
1 // $Id$    --*- c++ -*--
2
3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
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; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19   // secure-mount <general mount(8) options> [--secure] [--chroot <dir>]
20   //              [--mtab <mtabfile>] [--fstab <fstabfile>]
21   //
22   // Executes mount-operations in the given chroot-dir: it assumes sources in
23   // the current root-dir while destinations are expected in the chroot
24   // environment.  When '--secure' is given, the destination must not contain
25   // symlinks.
26
27
28 #ifdef HAVE_CONFIG_H
29 #  include <config.h>
30 #endif
31
32 #include "util.h"
33 #include "pathconfig.h"
34
35 #include <getopt.h>
36 #include <fcntl.h>
37 #include <errno.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <unistd.h>
42 #include <stdbool.h>
43 #include <sys/mount.h>
44 #include <sys/stat.h>
45 #include <sys/types.h>
46 #include <sys/file.h>
47 #include <linux/fs.h>
48 #include <assert.h>
49 #include <ctype.h>
50 #include <sys/wait.h>
51
52 #define MNTPOINT        "/etc"
53
54 struct MountInfo {
55     char const *        src;
56     char const *        dst;
57     char const *        type;
58     unsigned long       flags;
59     char *              data;
60     bool                noauto;
61 };
62
63 struct Options {
64     char const *        mtab;
65     char const *        fstab;
66     char const *        rootdir;
67     bool                ignore_mtab;
68     bool                mount_all;
69     bool                is_secure;
70
71     int                 cur_rootdir_fd;
72 };
73
74 #define OPTION_BIND     1024
75 #define OPTION_MOVE     1025
76 #define OPTION_MTAB     1026
77 #define OPTION_FSTAB    1027
78 #define OPTION_CHROOT   1028
79 #define OPTION_SECURE   1029
80
81 static struct option const
82 CMDLINE_OPTIONS[] = {
83   { "help",    no_argument,       0, 'h' },
84   { "version", no_argument,       0, 'v' },
85   { "bind",    no_argument,       0, OPTION_BIND },
86   { "move",    no_argument,       0, OPTION_MOVE },
87   { "mtab",    required_argument, 0, OPTION_MTAB },
88   { "fstab",   required_argument, 0, OPTION_FSTAB },
89   { "chroot",  required_argument, 0, OPTION_CHROOT },
90   { "secure",  no_argument,       0, OPTION_SECURE },
91   { 0, 0, 0, 0 }
92 };
93
94 static struct FstabOptions {
95     char const * const  opt;
96     unsigned long const or_flag;
97     unsigned long const and_flag;
98     bool const          is_dflt;
99 } const FSTAB_OPTIONS[] = {
100   { "bind",       MS_BIND,        ~0, false },
101   { "move",       MS_MOVE,        ~0, false },
102 #if 0
103   { "noatime",    MS_NOATIME,     ~0, false },
104   { "mandlock",   MS_MANDLOCK,    ~0, false },
105   { "nodev",      MS_NODEV,       ~0, false },
106   { "nodiratime", MS_NODIRATIME,  ~0, false },
107   { "noexec",     MS_NOEXEC,      ~0, false },
108   { "nosuid",     MS_NOSUID,      ~0, false },
109   { "rdonly",     MS_RDONLY,      ~0, false },
110   { "remount",    MS_REMOUNT,     ~0, false },
111   { "sync",       MS_SYNCHRONOUS, ~0, false },
112 #ifdef MS_DIRSYNC  
113   { "dirsync",    MS_DIRSYNC,     ~0, false },
114 #endif
115 #endif
116   { "", 0, 0, false }
117 };
118
119 static void
120 showHelp(int fd, char const *cmd, int res)
121 {
122   WRITE_MSG(fd, "Usage:  ");
123   WRITE_STR(fd, cmd);
124   WRITE_MSG(fd,
125             " [--help] [--version] [--bind] [--move] [-t <type>] [-n]\n"
126             "            [--mtab <filename>] [--fstab <filename>] [--chroot <dirname>] \n"
127             "            [--secure] -a|([-o <options>] [--] <src> <dst>)\n\n"
128             "Executes mount-operations in the given chroot-dir: it assumes sources in the\n"
129             "current root-dir while destinations are expected in the chroot environment.\n"
130             "When '--secure' is given, the destination must not contain symlinks.\n\n"
131             "For non-trivial mount-operations it uses the external 'mount' program which\n"
132             "can be overridden by the $MOUNT environment variable.\n\n"
133             "Please report bugs to " PACKAGE_BUGREPORT "\n");
134
135   exit(res);
136 }
137
138 static void
139 showVersion()
140 {
141   WRITE_MSG(1,
142             "secure-mount " VERSION " -- secure mounting of directories\n"
143             "This program is part of " PACKAGE_STRING "\n\n"
144             "Copyright (C) 2003 Enrico Scholz\n"
145             VERSION_COPYRIGHT_DISCLAIMER);
146   exit(0);
147 }
148
149 inline static bool
150 isSameObject(struct stat const *lhs,
151              struct stat const *rhs)
152 {
153   return (lhs->st_dev==rhs->st_dev &&
154           lhs->st_ino==rhs->st_ino);
155 }
156
157 static int
158 chdirSecure(char const *dir)
159 {
160   char          tmp[strlen(dir)+1], *ptr;
161   char const    *cur;
162
163   strcpy(tmp, dir);
164   cur = strtok_r(tmp, "/", &ptr);
165   while (cur) {
166     struct stat         pre_stat, post_stat;
167
168     if (lstat(cur, &pre_stat)==-1) return -1;
169     
170     if (!S_ISDIR(pre_stat.st_mode)) {
171       errno = ENOENT;
172       return -1;
173     }
174     if (S_ISLNK(pre_stat.st_mode)) {
175       errno = EINVAL;
176       return -1;
177     }
178
179     if (chdir(cur)==-1)            return -1;
180     if (stat(".", &post_stat)==-1) return -1;
181
182     if (!isSameObject(&pre_stat, &post_stat)) {
183       char      dir[PATH_MAX];
184       
185       WRITE_MSG(2, "Possible symlink race ATTACK at '");
186       WRITE_STR(2, getcwd(dir, sizeof(dir)));
187       WRITE_MSG(2, "'\n");
188
189       errno = EINVAL;
190       return -1;
191     }
192
193     cur = strtok_r(0, "/", &ptr);
194   }
195
196   return 0;
197 }
198
199 static int
200 verifyPosition(char const *mntpoint, char const *dir1, char const *dir2)
201 {
202   struct stat           pre_stat, post_stat;
203
204   if (stat(mntpoint, &pre_stat)==-1)       return -1;
205   if (chroot(dir1)==-1 || chdir(dir2)==-1) return -1;
206   if (stat(".", &post_stat)==-1)           return -1;
207
208   if (!isSameObject(&pre_stat, &post_stat)) {
209     char        dir[PATH_MAX];
210       
211     WRITE_MSG(2, "Possible symlink race ATTACK at '");
212     WRITE_STR(2, getcwd(dir, sizeof(dir)));
213     WRITE_MSG(2, "' within '");
214     WRITE_STR(2, dir1);
215     WRITE_STR(2, "'\n");
216
217     errno = EINVAL;
218     return -1;
219   }
220
221   return 0;
222 }
223
224 static int
225 fchroot(int fd)
226 {
227   if (fchdir(fd)==-1 || chroot(".")==-1) return -1;
228   return 0;
229 }
230
231 static int
232 writeX(int fd, void const *buf, size_t len)
233 {
234   if ((size_t)(write(fd, buf, len))!=len) return -1;
235   return 0;
236 }
237
238 static int
239 writeStrX(int fd, char const *str)
240 {
241   return writeX(fd, str, strlen(str));
242 }
243
244 static int
245 updateMtab(struct MountInfo const *mnt, struct Options const *opt)
246 {
247   int           res = -1;
248   int           fd;
249   assert(opt->mtab!=0);
250
251   if (opt->rootdir!=0 &&
252       chroot(opt->rootdir)==-1) {
253       perror("chroot()");
254       return -1;
255   }
256
257   fd=open(opt->mtab, O_CREAT|O_APPEND|O_WRONLY, 0644);
258   
259   if (fd==-1) perror("open()");
260   
261   if (fchroot(opt->cur_rootdir_fd)==-1) {
262     perror("fchroot()");
263     goto err1;
264   }
265
266   if (fd==-1) goto err0;
267
268   if (flock(fd, LOCK_EX)==-1) {
269     perror("flock()");
270     goto err1;
271   }
272
273
274   if (writeStrX(fd, mnt->src)==-1 ||
275       writeStrX(fd, " ")==-1 ||
276       writeStrX(fd, mnt->dst)==-1 ||
277       writeStrX(fd, " ")==-1 ||
278       writeStrX(fd, mnt->type ? mnt->type : "none")==-1 ||
279       writeStrX(fd, " ")==-1 ||
280       writeStrX(fd, mnt->data ? mnt->data : "defaults")==-1 ||
281       writeStrX(fd, " 0 0\n")==-1) {
282     perror("write()");
283     goto err1;
284   }
285
286   res = 0;
287
288   err1: close(fd);
289   err0: return res;
290 }
291
292 static bool
293 callExternalMount(struct MountInfo const *mnt)
294 {
295   char const *  argv[10];
296   size_t        idx = 0;
297   pid_t         pid;
298   int           status;
299   char const *  mount_prog = getenv("MOUNT");
300
301   if (mount_prog==0) mount_prog = MOUNT_PROG;
302
303   argv[idx++] = mount_prog;
304   argv[idx++] = "-n";
305   if      (mnt->flags & MS_BIND) argv[idx++] = "--bind";
306   else if (mnt->flags & MS_MOVE) argv[idx++] = "--move";
307
308   if (mnt->data &&
309       strcmp(mnt->data, "defaults")!=0) {
310     argv[idx++] = "-o";
311     argv[idx++] = mnt->data;
312   }
313
314   if (mnt->type) {
315     argv[idx++] = "-t";
316     argv[idx++] = mnt->type;
317   }
318
319   argv[idx++] = mnt->src;
320   argv[idx++] = ".";
321   argv[idx]   = 0;
322
323   pid = fork();
324   if (pid==-1) {
325     perror("fork()");
326     return false;
327   }
328
329   if (pid==0) {
330     execv(mount_prog, const_cast(char **)(argv));
331     perror("execv()");
332     exit(1);
333   }
334
335   if (wait4(pid, &status, 0, 0)==-1) {
336     perror("wait4()");
337     return false;
338   }
339
340   return (WIFEXITED(status)) && (WEXITSTATUS(status)==0);
341 }
342
343 static bool
344 mountSingle(struct MountInfo const *mnt, struct Options const *opt)
345 {
346   char const    *dir = mnt->dst;
347
348   assert(mnt->dst!=0);
349   
350   if (opt->rootdir!=0) {
351     if (chdir(opt->rootdir)==-1) {
352       perror("chdir()");
353       return false;
354     }
355
356     while (*dir=='/') ++dir;
357   }
358
359   if (opt->is_secure) {
360     if (chdirSecure(dir)==-1) {
361       perror("chdirSecure()");
362       return false;
363     }
364   }
365   else {
366     if (*dir!='\0' &&
367         chdir(dir)==-1) {
368       perror("chdir()");
369       return false;
370     }
371   }
372
373   if (mnt->flags&MS_BIND) {
374     if (mount(mnt->src, ".",
375               mnt->type ? mnt->type : "",
376               mnt->flags, mnt->data)==-1) {
377       perror("mount()");
378       return false;
379     }
380   }
381   else {
382     if (!callExternalMount(mnt)) return false;
383   }
384
385     // Check if directories were moved between the chdirSecure() and mount(2)
386   if ((mnt->flags&MS_BIND) && opt->rootdir!=0 &&
387       (verifyPosition(mnt->src, opt->rootdir, mnt->dst)==-1 ||
388        fchroot(opt->cur_rootdir_fd)==-1)) {
389     perror("verifyPosition/fchroot");
390       // TODO: what is with unmounting?
391     return false;
392   }
393
394   if (!opt->ignore_mtab &&
395       updateMtab(mnt, opt)==-1) {
396     WRITE_MSG(2, "Failed to update mtab-file\n");
397       // no error
398   }
399   
400   return true;
401 }
402
403 static bool
404 searchAndRemoveOption(char *buf, char const *needle)
405 {
406   char          *pos = strstr(buf, needle);
407   size_t        len  = strlen(needle);
408
409   if (pos==0)                          return false;
410   if (pos>buf && pos[-1]!=',')         return false;
411   if (pos[len]!=',' && pos[len]!='\0') return false;
412
413   if (pos>buf || pos[len]!='\0') ++len;
414   if (pos>buf) --pos;
415
416   memmove(pos, pos+len, strlen(pos+len));
417   return true;
418 }
419
420 static bool
421 transformOptionList(struct MountInfo *info)
422 {
423   struct FstabOptions const *   flag;
424     
425   for (flag=FSTAB_OPTIONS; flag->opt[0]!='\0'; ++flag) {
426     if (searchAndRemoveOption(info->data, flag->opt) || flag->is_dflt) {
427       info->flags &= flag->and_flag;
428       info->flags |= flag->or_flag;
429     }
430   }
431
432   if (searchAndRemoveOption(info->data, "noauto"))
433     info->noauto = true;
434
435   return true;
436 }
437
438 #define MOVE_TO_NEXT_FIELD(PTR,ALLOW_EOL)               \
439   while (!isspace(*PTR) && *PTR!='\0') ++PTR;           \
440   if (!(ALLOW_EOL) && *PTR=='\0') return prFAIL;        \
441   *PTR++ = '\0';                                        \
442   while (isspace(*PTR)) ++PTR
443
444 static enum {prDOIT, prFAIL, prIGNORE}
445 parseFstabLine(struct MountInfo *info, char *buf)
446 {
447   while (isspace(*buf)) ++buf;
448   if (*buf=='#' || *buf=='\0')  return prIGNORE;
449
450   info->src  = buf;
451   MOVE_TO_NEXT_FIELD(buf, false);
452   info->dst  = buf;
453   MOVE_TO_NEXT_FIELD(buf, false);
454   info->type = buf;
455   MOVE_TO_NEXT_FIELD(buf, false);
456   info->data = buf;
457   MOVE_TO_NEXT_FIELD(buf, true);
458
459   if (strcmp(info->type, "swap")==0) return prIGNORE;
460   if (strcmp(info->type, "none")==0) info->type = 0;
461
462   info->flags  = 0;
463   info->noauto = false;
464   if (!transformOptionList(info)) return prFAIL;
465   if (info->noauto)               return prIGNORE;
466
467   return prDOIT;
468 }
469
470 #undef MOVE_TO_NEXT_FIELD
471
472 static bool
473 mountFstab(struct Options const *opt)
474 {
475   bool          res = false;
476   int           fd;
477   off_t         len;
478
479   assert(opt->fstab!=0);
480   fd = open(opt->fstab, O_RDONLY);
481   if (fd==-1) {
482     perror("open(<fstab>)");
483     goto err0;
484   }
485
486   len = lseek(fd, 0, SEEK_END);
487   if (len==-1 ||
488       lseek(fd, 0, SEEK_SET)==-1) {
489     perror("lseek(<fstab>)");
490     goto err1;
491   }
492
493   {
494     char        buf[len+2];
495     char        *ptr, *ptrptr;
496
497     if (read(fd, buf, len+1)!=len) {
498       perror("read()");
499       goto err1;
500     }
501     buf[len]   = '#';   // workaround for broken dietlibc strtok_r()
502                         // implementation
503     buf[len+1] = '\0';
504
505     ptr = strtok_r(buf, "\n", &ptrptr);
506     while (ptr) {
507       struct MountInfo  mnt;
508       char *            new_ptr = strtok_r(0, "\n", &ptrptr);
509
510       switch (parseFstabLine(&mnt, ptr)) {
511         case prFAIL     :
512           WRITE_MSG(2, "Failed to parse fstab-line beginning with '");
513           WRITE_STR(2, ptr);
514           WRITE_MSG(2, "'\n");
515           goto err1;
516
517         case prIGNORE   :  break;
518         case prDOIT     :
519           chdir("/");
520           if (!mountSingle(&mnt, opt)) {
521             WRITE_MSG(2, "Failed to mount fstab-line beginning with '");
522             WRITE_STR(2, ptr);
523             WRITE_MSG(2, "'\n");
524           }
525           break;
526         default         :
527           assert(false);
528       }
529
530       ptr = new_ptr;
531     }
532   }
533
534   res = true;
535
536   err1: close(fd);
537   err0: return res;
538 }
539
540 int main(int argc, char *argv[])
541 {
542   struct MountInfo      mnt = {
543     .src         = 0,
544     .dst         = 0,
545     .type        = 0,
546     .flags       = 0,
547     .data        = 0,
548     .noauto      = false
549   };
550
551   struct Options        opt = {
552     .mtab           = "/etc/mtab",
553     .fstab          = "/etc/fstab",
554     .rootdir        = 0,
555     .ignore_mtab    = false,
556     .mount_all      = false,
557     .is_secure      = false,
558     .cur_rootdir_fd = -1
559   };
560
561   opt.cur_rootdir_fd = open("/", O_RDONLY|O_DIRECTORY);
562
563   if (opt.cur_rootdir_fd==-1) {
564     perror("open(\"/\")");
565     return EXIT_FAILURE;
566   }
567
568   while (1) {
569     int         c = getopt_long(argc, argv, "ht:nao:", CMDLINE_OPTIONS, 0);
570     if (c==-1) break;
571     
572     switch (c) {
573       case 'h'          :  showHelp(1, argv[0], 0);
574       case 'v'          :  showVersion();
575       case 't'          :  mnt.type = optarg;         break;
576       case 'n'          :  opt.ignore_mtab = true;    break;
577       case 'a'          :  opt.mount_all   = true;    break;
578       case 'o'          :  mnt.data        = optarg;  break;
579       case OPTION_BIND  :  mnt.flags      |= MS_BIND; break;
580       case OPTION_MOVE  :  mnt.flags      |= MS_MOVE; break;
581       case OPTION_MTAB  :  opt.mtab        = optarg;  break;
582       case OPTION_FSTAB :  opt.fstab       = optarg;  break;
583       case OPTION_CHROOT:  opt.rootdir     = optarg;  break;
584       case OPTION_SECURE:  opt.is_secure   = true;    break;
585       default           :
586         WRITE_MSG(2, "Try '");
587         WRITE_STR(2, argv[0]);
588         WRITE_MSG(2, " --help\" for more information.\n");
589         return EXIT_FAILURE;
590         break;
591     }
592   }
593
594   if (opt.mount_all && optind<argc) {
595     WRITE_MSG(2, "Can not specify <src> and '-a' at the same time\n");
596     return EXIT_FAILURE;
597   }
598
599   if (opt.mount_all) {
600     if (!mountFstab(&opt)) return EXIT_FAILURE;
601     else                   return EXIT_SUCCESS;
602   }
603
604   if (optind+2!=argc) {
605     WRITE_MSG(2, "Invalid <src> <dst> pair specified\n");
606     return EXIT_FAILURE;
607   }
608
609   if (mnt.data) {
610     mnt.data = strdup(mnt.data);
611     if (!transformOptionList(&mnt)) {
612       WRITE_MSG(2, "Invalid options specified\n");
613       return EXIT_FAILURE;
614     }
615   }
616     
617   mnt.src  = argv[optind++];
618   mnt.dst  = argv[optind++];
619
620   if (!mountSingle(&mnt, &opt)) return EXIT_FAILURE;
621     
622   return EXIT_SUCCESS;
623 }