17928c9e3f669a6597aed29e20b38aed9bb67a6d
[util-vserver.git] / util-vserver / lib / getctx-legacy.hc
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
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 ctx_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   strcpy(status_name, "/proc/");
49   len = utilvserver_uint2str(status_name+sizeof("/proc/")-1,
50                              sizeof(status_name)-sizeof("/proc//status")+1,
51                              pid, 10);
52   strcpy(status_name+sizeof("/proc/")+len-1, "/status");
53
54   fd = open(status_name, O_RDONLY);
55   if (fd==-1) return VC_NOCTX;
56
57   len = read(fd, buf, cur_bufsize);
58   close(fd);
59
60   if (len<cur_bufsize) {
61     buf[len] = '\0';
62     pos      = strstr(buf, CTX_TAG);
63   }
64   else if (len!=(size_t)-1) {
65     bufsize  = cur_bufsize * 2 - 1;
66     errno    = EAGAIN;
67   }
68
69   if (pos!=0) return atoi(pos+sizeof(CTX_TAG)-1);
70   else        return VC_NOCTX;
71 }
72
73 #endif  //  H_UTIL_VSERVER_LIB_GETCTX_LEGACY_H