211ca4199c24e8e2c352e0e31f5887cf76bce64a
[util-vserver.git] / util-vserver / lib / getctx.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
19 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include "compat.h"
24 #include "vserver.h"
25 #include "internal.h"
26 #include <string.h>
27 #include <sys/stat.h>
28 #include <fcntl.h>
29 #include <errno.h>
30
31 #define CTX_TAG         "\ns_context: "
32
33 ctx_t
34 getctx(pid_t pid)
35 {
36   static volatile size_t        bufsize=4097;
37     // TODO: is this really race-free?
38   size_t                        cur_bufsize = bufsize;
39   int                           fd;
40   char                          status_name[ sizeof("/proc/01234/status") ];
41   char                          buf[cur_bufsize];
42   size_t                        len;
43   char                          *pos = 0;
44
45   strcpy(status_name, "/proc/");
46   len = utilvserver_uint2str(status_name+sizeof("/proc/")-1,
47                              sizeof(status_name)-sizeof("/proc//status")+1,
48                              pid, 10);
49   strcpy(status_name+sizeof("/proc/")+len-1, "/status");
50
51   fd = open(status_name, O_RDONLY);
52   if (fd==-1) return CTX_NOCTX;
53
54   len = read(fd, buf, cur_bufsize);
55   close(fd);
56
57   if (len<cur_bufsize)
58     pos      = strstr(buf, CTX_TAG);
59   else if (len!=(size_t)-1) {
60     bufsize  = cur_bufsize * 2 - 1;
61     errno    = EAGAIN;
62   }
63
64   if (pos!=0) return atoi(pos+sizeof(CTX_TAG)-1);
65   else        return CTX_NOCTX;
66 }
67
68 #if 0
69 ctx_t
70 getcctx()
71 {
72   return getctx(getpid());
73 }
74 #endif