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