use vc_get_task_xid() instead of vc_X_getctx()
[util-vserver.git] / util-vserver / src / save_ctxinfo.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 // Saves current ctx + vserver-info into 'argv[1] + /run' which must be a dead
19 // symlink
20
21 #ifdef HAVE_CONFIG_H
22 #  include <config.h>
23 #endif
24
25 #include "vserver.h"
26 #include "internal.h"
27 #include "util.h"
28 #include "wrappers.h"
29 #include "wrappers-vserver.h"
30
31 #include <sys/types.h>
32 #include <sys/stat.h>
33 #include <fcntl.h>
34 #include <stdio.h>
35 #include <limits.h>
36
37 int     wrapper_exit_code = 255;
38
39 inline static void
40 checkParams(int argc, char UNUSED * argv[])
41 {
42   if (argc<3) {
43     WRITE_MSG(2, "Usage:  save_ctxinfo <VSERVER_DIR> <cmd> <args>*\n");
44     exit(255);
45   }
46 }
47
48 int main(int argc, char *argv[])
49 {
50   char          runfile[(checkParams(argc,argv),strlen(argv[1])) + sizeof("/run.rev/99999")];
51   char          dstfile[PATH_MAX];
52   int           fd;
53   char          buf[sizeof(int)*3+2];
54   xid_t         ctx;
55   ssize_t       len;
56   ssize_t       len1 = strlen(argv[1]);
57
58   strcpy(runfile,      argv[1]);
59   strcpy(runfile+len1, "/run");
60
61   ctx=Evc_get_task_xid(0);
62
63   if (ctx==0) {
64     WRITE_MSG(2, "save_ctxinfo: Can not operate in context 0\n");
65     return 255;
66   }
67
68   if (reinterpret_cast(unsigned int)(ctx)>99999) {
69     WRITE_MSG(2, "save_ctxinfo: unexpected context\n");
70     return 255;
71   }
72
73   Ereadlink(runfile, dstfile, sizeof(dstfile));
74   len  = utilvserver_fmt_uint(buf, ctx);
75
76   fd = Eopen(dstfile, O_EXCL|O_CREAT|O_WRONLY, 0644);
77   if (write(fd, buf,     len) !=len  ||
78       write(fd, "\n",    1)   !=1) {
79     perror("write()");
80     return -1;
81   }
82   Eclose(fd);
83
84   strcat(runfile, ".rev/");
85   strcat(runfile, buf);
86   unlink(runfile);
87   Esymlink(argv[1], runfile);
88
89   Eexecv(argv[2], argv+2);
90 }