do not use /dev/null as lockfile
[util-vserver.git] / util-vserver / src / chcontext.c
1 // $Id$
2
3 // Copyright (C) 2003,2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 // based on chcontext.cc by Jacques Gelinas
5 //  
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2, or (at your option)
9 // any later version.
10 //  
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //  
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 /*
21         chcontext is a wrapper to user the new_s_context system call. It
22         does little more than mapping command line option to the system call
23         arguments.
24 */
25 #ifdef HAVE_CONFIG_H
26 #  include <config.h>
27 #endif
28
29 #include "util.h"
30 #include "vserver.h"
31 #include "internal.h"
32
33 #include <stdio.h>
34 #include <unistd.h>
35 #include <string.h>
36 #include <stdlib.h>
37 #include <errno.h>
38 #include <getopt.h>
39 #include <assert.h>
40 #include <fcntl.h>
41 #include <libgen.h>
42
43 #define ENSC_WRAPPERS_PREFIX    "chcontext: "
44 #define ENSC_WRAPPERS_VSERVER   1
45 #define ENSC_WRAPPERS_UNISTD    1
46 #define ENSC_WRAPPERS_FCNTL     1
47 #include <wrappers.h>
48
49 #define CMD_HELP        0x1000
50 #define CMD_VERSION     0x1001
51 #define CMD_CAP         0x4000
52 #define CMD_CTX         0x4001
53 #define CMD_DISCONNECT  0x4002
54 #define CMD_DOMAINNAME  0x4003
55 #define CMD_FLAG        0x4004
56 #define CMD_HOSTNAME    0x4005
57 #define CMD_SECURE      0x4006
58 #define CMD_SILENT      0x4007
59
60 int wrapper_exit_code   = 255;
61
62 struct option const
63 CMDLINE_OPTIONS[] = {
64   { "help",     no_argument,  0, CMD_HELP },
65   { "version",  no_argument,  0, CMD_VERSION },
66   { "cap",        required_argument,  0, CMD_CAP },
67   { "ctx",        required_argument,  0, CMD_CTX },
68   { "disconnect", no_argument,        0, CMD_DISCONNECT },
69   { "domainname", required_argument,  0, CMD_DOMAINNAME },
70   { "flag",       required_argument,  0, CMD_FLAG },
71   { "hostname",   required_argument,  0, CMD_HOSTNAME },
72   { "secure",     no_argument,        0, CMD_SECURE },
73   { "silent",     no_argument,        0, CMD_SILENT },
74   { 0,0,0,0 }
75 };
76
77 struct Arguments {
78     size_t              nbctx;
79     xid_t               ctxs[16];
80     bool                do_disconnect;
81     bool                do_silent;
82     unsigned int        flags;
83     uint32_t            remove_caps;
84     uint32_t            add_caps;
85     char const *        hostname;
86     char const *        domainname;
87 };
88
89 static struct Arguments const *         global_args = 0;
90
91 static void
92 showHelp(int fd, char const *cmd, int res)
93 {
94   VSERVER_DECLARE_CMD(cmd);
95   
96   WRITE_MSG(fd, "Usage: ");
97   WRITE_STR(fd, cmd);
98   WRITE_MSG(fd,
99             " [--cap [!]<cap_name>] [--secure] [--ctx <num>] [--disconnect]\n"
100             "       [--domainname <name>] [--hostname <name>] [--flag <flags>+]\n"
101             "       [--silent] [--] command arguments ...\n"
102             "\n"
103             "chcontext allocate a new security context and executes\n"
104             "a command in that context.\n"
105             "By default, a new/unused context is allocated\n"
106             "\n"
107             "--cap CAP_NAME\n"
108             "    Add a capability from the command. This option may be\n"
109             "    repeated several time.\n"
110             "    See /usr/include/linux/capability.h\n"
111             "    In general, this option is used with the --secure option\n"
112             "    --secure removes most critical capabilities and --cap\n"
113             "    adds specific ones.\n"
114             "\n"
115
116             "--cap !CAP_NAME\n"
117             "    Remove a capability from the command. This option may be\n"
118             "    repeated several time.\n"
119             "    See /usr/include/linux/capability.h\n"
120             "\n"
121             "--ctx num\n"
122             "    Select the context. On root in context 0 is allowed to\n"
123             "    select a specific context.\n"
124             "    Context number 1 is special. It can see all processes\n"
125             "    in any contexts, but can't kill them though.\n"
126             "    Option --ctx may be repeated several times to specify up to 16 contexts.\n"
127
128             "--disconnect\n"
129             "    Start the command in background and make the process\n"
130             "    a child of process 1.\n"
131
132             "--domainname new_domainname\n"
133             "    Set the domainname (NIS) in the new security context.\n"
134             "    Use \"none\" to unset the domain name.\n"
135
136             "--flag\n"
137             "    Set one flag in the new or current security context. The following\n"
138             "    flags are supported. The option may be used several time.\n"
139             "\n"
140             "        fakeinit: The new process will believe it is process number 1.\n"
141             "                  Useful to run a real /sbin/init in a vserver.\n"
142             "        lock:     The new process is trapped and can't use chcontext anymore.\n"
143             "        sched:    The new process and its children will share a common \n"
144             "                  execution priority.\n"
145             "        nproc:    Limit the number of process in the vserver according to\n"
146             "                  ulimit setting. Normally, ulimit is a per user thing.\n"
147             "                  With this flag, it becomes a per vserver thing.\n"
148             "        private:  No one can join this security context once created.\n"
149             "        ulimit:   Apply the current ulimit to the whole context\n"
150
151             "--hostname new_hostname\n"
152             "    Set the hostname in the new security context\n"
153             "    This is need because if you create a less privileged\n"
154             "    security context, it may be unable to change its hostname\n"
155
156             "--secure\n"
157             "    Remove all the capabilities to make a virtual server trustable\n"
158
159             "--silent\n"
160             "    Do not print the allocated context number.\n"
161             "\n"
162             "Please report bugs to " PACKAGE_BUGREPORT "\n");
163
164   exit(res);
165 }
166
167 static void
168 showVersion()
169 {
170   WRITE_MSG(1,
171             "chcontext-compat " VERSION " -- allocates/enters a security context\n"
172             "This program is part of " PACKAGE_STRING "\n\n"
173             "Copyright (C) 2003,2004 Enrico Scholz\n"
174             VERSION_COPYRIGHT_DISCLAIMER);
175   exit(0);
176 }
177
178 static inline void
179 setCap(char const *str, uint32_t *add_caps, uint32_t *remove_caps)
180 {
181   uint32_t      *cap;
182   int           bit;
183   
184   if (str[0] != '!')
185     cap = add_caps;
186   else {
187     cap = remove_caps;
188     str++;
189   }
190         
191   bit = vc_text2cap(str);
192         
193   if (bit!=-1) *cap |= (1<<bit);
194   else {
195     WRITE_MSG(2, "Unknown capability '");
196     WRITE_STR(2, str);
197     WRITE_MSG(2, "'\n");
198     exit(wrapper_exit_code);
199   }
200 }
201
202 static inline void
203 setFlags(char const *str, uint32_t *flags)
204 {
205   struct vc_err_listparser      err;
206   
207   *flags = vc_list2flag_compat(str, 0, &err);
208
209   if (err.ptr!=0) {
210     WRITE_MSG(2, "Unknown flag '");
211     write(2, err.ptr, err.len);
212     WRITE_MSG(2, "'\n");
213     exit(wrapper_exit_code);
214   }
215 }
216
217 static inline ALWAYSINLINE void
218 setHostname(char const *name)
219 {
220   if (name == NULL) return;
221   
222   if (sethostname(name, strlen(name))==-1) {
223     perror("chcontext: sethostname()");
224     exit(255);
225   }
226   if (!global_args->do_silent) {
227     WRITE_MSG(1, "Host name is now ");
228     WRITE_STR(1, name);
229     WRITE_MSG(1, "\n");
230   }
231 }
232
233 static inline ALWAYSINLINE void
234 setDomainname(char const *name)
235 {
236   if (name == NULL) return;
237   
238   if (setdomainname(name, strlen(name))==-1) {
239     perror("chcontext: setdomainname()");
240     exit(255);
241   }
242   if (!global_args->do_silent) {
243     WRITE_MSG(1, "Domain name is now ");
244     WRITE_STR(1, name);
245     WRITE_MSG(1, "\n");
246   }
247 }
248
249 static inline ALWAYSINLINE void
250 tellContext(xid_t ctx)
251 {
252   char          buf[sizeof(xid_t)*3+2];
253   size_t        l;
254
255   if (global_args->do_silent) return;
256
257   l = utilvserver_fmt_long(buf,ctx);
258
259   WRITE_MSG(2, "New security context is ");
260   write(2, buf, l);
261   WRITE_MSG(2, "\n");
262 }
263
264 static inline ALWAYSINLINE int
265 initSync(int p[2])
266 {
267   if (!global_args->do_disconnect) return 0;
268
269   Epipe(p);
270   fcntl(p[1], F_SETFD, FD_CLOEXEC);
271   return Efork();
272 }
273
274 static inline ALWAYSINLINE void
275 doSyncStage1(int p[2])
276 {
277   int   fd;
278
279   if (!global_args->do_disconnect) return;
280   
281   fd = Eopen("/dev/null", O_RDONLY, 0);
282   Esetsid();
283   Edup2(fd, 0);
284   Eclose(p[0]);
285   if (fd!=0) Eclose(fd);
286   Ewrite(p[1], ".", 1);
287 }
288
289 static inline ALWAYSINLINE void
290 doSyncStage2(int p[2])
291 {
292   if (!global_args->do_disconnect) return;
293
294   Ewrite(p[1], "X", 1);
295 }
296
297 static void
298 waitOnSync(pid_t pid, int p[2])
299 {
300   int           c;
301   size_t        l;
302
303   assert(global_args->do_disconnect);
304   assert(pid!=0);
305
306   Eclose(p[1]);
307   l = Eread(p[0], &c, 1);
308   if (l!=1) exitLikeProcess(pid);
309   l = Eread(p[0], &c, 1);
310   if (l!=0) exitLikeProcess(pid);
311 }
312
313 int main (int argc, char *argv[])
314 {
315   struct Arguments args = {
316     .nbctx         = 0,
317     .do_disconnect = false,
318     .do_silent     = false,
319     .flags         = 0,
320     .remove_caps   = 0,
321     .add_caps      = 0,
322     .hostname      = 0,
323     .domainname    = 0
324   };
325   xid_t         newctx;
326   int           xflags;
327   int           p[2];
328   pid_t         pid;
329   
330   global_args = &args;
331   
332   while (1) {
333     int         c = getopt_long(argc, argv, "+", CMDLINE_OPTIONS, 0);
334     if (c==-1) break;
335
336     switch (c) {
337       case CMD_HELP             :  showHelp(1, argv[0], 0);
338       case CMD_VERSION          :  showVersion();
339       case CMD_DISCONNECT       :  args.do_disconnect = true;   break;
340       case CMD_SILENT           :  args.do_silent     = true;   break;
341       case CMD_DOMAINNAME       :  args.domainname    = optarg; break;
342       case CMD_HOSTNAME         :  args.hostname      = optarg; break;
343         
344       case CMD_CAP              :
345         setCap(optarg, &args.add_caps, &args.remove_caps);
346         break;
347       case CMD_SECURE           :
348         args.remove_caps |= vc_get_securecaps();
349         break;
350       case CMD_FLAG             :
351         setFlags(optarg, &args.flags);
352         break;
353       case CMD_CTX              :
354         if (args.nbctx>0)
355           WRITE_MSG(2, "WARNING: More than one ctx not supported by this version\n");
356         if (args.nbctx>=DIM_OF(args.ctxs)) {
357           WRITE_MSG(2, "Too many contexts given\n");
358           exit(255);
359         }
360         args.ctxs[args.nbctx++] = atoi(optarg);
361         break;
362
363           
364       default           :
365         WRITE_MSG(2, "Try '");
366         WRITE_STR(2, argv[0]);
367         WRITE_MSG(2, " --help\" for more information.\n");
368         return 255;
369         break;
370     }
371   }
372
373   if (optind>=argc) {
374     WRITE_MSG(2, "No command given; use '--help' for more information.\n");
375     exit(255);
376   }
377   
378   if (args.domainname && strcmp(args.domainname, "none")==0)
379     args.domainname = "";
380     
381   if (args.nbctx == 0)
382     args.ctxs[args.nbctx++] = VC_DYNAMIC_XID;
383     
384   xflags      = args.flags & S_CTX_INFO_INIT;
385   args.flags &= ~S_CTX_INFO_INIT;
386
387   pid = initSync(p);
388   if (pid==0) {
389     newctx            = Evc_new_s_context(args.ctxs[0],0,args.flags);
390     args.remove_caps &= (~args.add_caps);
391     setHostname(args.hostname);
392     setDomainname(args.domainname);
393
394     if (args.remove_caps!=0 || xflags!=0)
395       Evc_new_s_context (VC_SAMECTX,args.remove_caps,xflags);
396     tellContext(args.ctxs[0]==VC_DYNAMIC_XID ? newctx : args.ctxs[0]);
397
398     doSyncStage1(p);
399     execvp (argv[optind],argv+optind);
400     doSyncStage2(p);
401
402     PERROR_Q("chcontext: execvp", argv[optind]);
403     exit(255);
404   }
405
406   waitOnSync(pid, p);
407   return EXIT_SUCCESS;
408 }
409
410 #ifdef ENSC_TESTSUITE
411 #define FLAG_TEST(STR,EXP) \
412   {                        \
413     uint32_t    flag=0;    \
414     setFlags(STR, &flag);  \
415     assert(flag==(EXP));   \
416   }
417
418 #define CAP_TEST(STR,EXP_ADD,EXP_DEL)           \
419   {                                             \
420     uint32_t    add=0,del=0;                    \
421     setCap(STR, &add, &del);                    \
422     assert(add==(EXP_ADD));                     \
423     assert(del==(EXP_DEL));                     \
424   }
425
426 void
427 test()
428 {
429   FLAG_TEST("lock",       1);
430   FLAG_TEST("lock,sched", 3);
431
432   CAP_TEST("CHOWN",      1, 0);
433   CAP_TEST("CAP_CHOWN",  1, 0);
434   CAP_TEST("!CHOWN",     0, 1);
435   CAP_TEST("!CAP_CHOWN", 0, 1);
436 }
437 #endif