43862fc33d5ef1a0bfa3556c65bd748c530e4451
[util-vserver.git] / util-vserver / src / new-namespace.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; either version 2, or (at your option)
8 // any later version.
9 //  
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.
14 //  
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 // Executes a program in a new namespace
20 // Based on http://www.win.tue.nl/~aeb/linux/lk/lk-6.html
21
22
23 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include "util.h"
28 #include "stack-start.h"
29 #include "sys_clone.h"
30
31 #include <sched.h>
32 #include <stdio.h>
33 #include <unistd.h>
34 #include <stdlib.h>
35 #include <signal.h>
36 #include <string.h>
37 #include <sys/types.h>
38 #include <sys/wait.h>
39 #include <libgen.h>
40
41 #define ENSC_WRAPPERS_WAIT      1
42 #include <wrappers.h>
43
44 #ifndef CLONE_NEWNS
45 #  define CLONE_NEWNS 0x00020000
46 #endif
47
48 int     wrapper_exit_code = 255;
49
50 static void
51 showHelp(int fd, char const *cmd, int exit_code)
52 {
53   VSERVER_DECLARE_CMD(cmd);
54   
55   WRITE_MSG(fd, "Usage:  ");
56   WRITE_STR(fd, cmd);
57   WRITE_MSG(fd,
58             " [--help] [--version] <cmd> <args*>\n"
59             "\n"
60             "Executes <cmd> in a new namespace.\n"
61             "\n"
62             "Report bugs to " PACKAGE_BUGREPORT "\n");
63
64   exit(exit_code);
65 }
66
67 static void
68 showVersion()
69 {
70   WRITE_MSG(1,
71             "new-namespace " VERSION " -- executes programs in a new namespace\n"
72             "This program is part of " PACKAGE_STRING "\n"
73             "Copyright (C) 2003 Enrico Scholz\n"
74             VERSION_COPYRIGHT_DISCLAIMER);
75   exit(0);
76 }
77
78 int main(int argc, char *argv[])
79 {
80   pid_t                 pid;
81
82   if (argc==1) showHelp(2, argv[0], 255);
83   if (!strcmp(argv[1], "--help"))    showHelp(1, argv[0], 0);
84   if (!strcmp(argv[1], "--version")) showVersion();
85   if (!strcmp(argv[1], "--"))        ++argv;
86
87   
88 #ifdef NDEBUG    
89   pid = sys_clone(CLONE_NEWNS|CLONE_VFORK|SIGCHLD, 0);
90 #else
91   pid = sys_clone(CLONE_NEWNS|SIGCHLD, 0);
92 #endif
93   switch (pid) {
94     case -1     :
95       perror("clone()");
96       exit(wrapper_exit_code);
97     case 0      :
98       execvp(argv[1], argv+1);
99       perror("execvp()");
100       exit(wrapper_exit_code);
101     default     :
102       exitLikeProcess(pid);
103   }
104 }