do not do the lo-check anymore
[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_PREFIX    "new-namespace: "
42 #define ENSC_WRAPPERS_WAIT      1
43 #include <wrappers.h>
44
45 #ifndef CLONE_NEWNS
46 #  define CLONE_NEWNS 0x00020000
47 #endif
48
49 int     wrapper_exit_code = 255;
50
51 static void
52 showHelp(int fd, char const *cmd, int exit_code)
53 {
54   VSERVER_DECLARE_CMD(cmd);
55   
56   WRITE_MSG(fd, "Usage:  ");
57   WRITE_STR(fd, cmd);
58   WRITE_MSG(fd,
59             " [--help] [--version] <cmd> <args*>\n"
60             "\n"
61             "Executes <cmd> in a new namespace.\n"
62             "\n"
63             "Report bugs to " PACKAGE_BUGREPORT "\n");
64
65   exit(exit_code);
66 }
67
68 static void
69 showVersion()
70 {
71   WRITE_MSG(1,
72             "new-namespace " VERSION " -- executes programs in a new namespace\n"
73             "This program is part of " PACKAGE_STRING "\n"
74             "Copyright (C) 2003 Enrico Scholz\n"
75             VERSION_COPYRIGHT_DISCLAIMER);
76   exit(0);
77 }
78
79 int main(int argc, char *argv[])
80 {
81   pid_t                 pid;
82
83   if (argc==1) showHelp(2, argv[0], 255);
84   if (!strcmp(argv[1], "--help"))    showHelp(1, argv[0], 0);
85   if (!strcmp(argv[1], "--version")) showVersion();
86   if (!strcmp(argv[1], "--"))        ++argv;
87
88   
89 #ifdef NDEBUG    
90   pid = sys_clone(CLONE_NEWNS|CLONE_VFORK|SIGCHLD, 0);
91 #else
92   pid = sys_clone(CLONE_NEWNS|SIGCHLD, 0);
93 #endif
94   switch (pid) {
95     case -1     :
96       perror("new-namespace: clone()");
97       exit(wrapper_exit_code);
98     case 0      :
99       execvp(argv[1], argv+1);
100       perror("new-namespace: execvp()");
101       exit(wrapper_exit_code);
102     default     :
103       exitLikeProcess(pid);
104   }
105 }