- moved here from sysv/
[util-vserver.git] / lib / getctx-legacy.hc
1 // $Id: getctx-legacy.hc,v 1.1.2.3 2003/12/30 13:45:57 ensc Exp $    --*- 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 #ifndef H_UTIL_VSERVER_LIB_GETCTX_LEGACY_H
20 #define H_UTIL_VSERVER_LIB_GETCTX_LEGACY_H
21
22 #ifdef HAVE_CONFIG_H
23 #  include <config.h>
24 #endif
25 #include "compat.h"
26
27 #include "vserver.h"
28 #include "vserver-internal.h"
29 #include <string.h>
30 #include <sys/stat.h>
31 #include <fcntl.h>
32 #include <errno.h>
33
34 #define CTX_TAG         "\ns_context: "
35
36 static xid_t
37 vc_X_getctx_legacy(pid_t pid)
38 {
39   static volatile size_t        bufsize=4097;
40     // TODO: is this really race-free?
41   size_t                        cur_bufsize = bufsize;
42   int                           fd;
43   char                          status_name[ sizeof("/proc/01234/status") ];
44   char                          buf[cur_bufsize];
45   size_t                        len;
46   char                          *pos = 0;
47
48   if (pid<0 || (uint32_t)(pid)>99999) {
49     errno = EINVAL;
50     return 0;
51   }
52
53   if (pid==0) strcpy(status_name, "/proc/self/status");
54   else {
55     strcpy(status_name, "/proc/");
56     len = utilvserver_uint2str(status_name+sizeof("/proc/")-1,
57                                sizeof(status_name)-sizeof("/proc//status")+1,
58                                pid, 10);
59     strcpy(status_name+sizeof("/proc/")+len-1, "/status");
60   }
61
62   fd = open(status_name, O_RDONLY);
63   if (fd==-1) return VC_NOCTX;
64
65   len = read(fd, buf, cur_bufsize);
66   close(fd);
67
68   if (len<cur_bufsize) {
69     buf[len] = '\0';
70     pos      = strstr(buf, CTX_TAG);
71   }
72   else if (len!=(size_t)-1) {
73     bufsize  = cur_bufsize * 2 - 1;
74     errno    = EAGAIN;
75   }
76
77   if (pos!=0) return atoi(pos+sizeof(CTX_TAG)-1);
78   else        return VC_NOCTX;
79 }
80
81 #endif  //  H_UTIL_VSERVER_LIB_GETCTX_LEGACY_H