1 // $Id: getctx-legacy.hc,v 1.1.2.3 2003/12/30 13:45:57 ensc Exp $ --*- c++ -*--
3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
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.
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.
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.
19 #ifndef H_UTIL_VSERVER_LIB_GETCTX_LEGACY_H
20 #define H_UTIL_VSERVER_LIB_GETCTX_LEGACY_H
28 #include "vserver-internal.h"
34 #define CTX_TAG "\ns_context: "
37 vc_X_getctx_legacy(pid_t pid)
39 static volatile size_t bufsize=4097;
40 // TODO: is this really race-free?
41 size_t cur_bufsize = bufsize;
43 char status_name[ sizeof("/proc/01234/status") ];
44 char buf[cur_bufsize];
48 if (pid<0 || (uint32_t)(pid)>99999) {
53 if (pid==0) strcpy(status_name, "/proc/self/status");
55 strcpy(status_name, "/proc/");
56 len = utilvserver_uint2str(status_name+sizeof("/proc/")-1,
57 sizeof(status_name)-sizeof("/proc//status")+1,
59 strcpy(status_name+sizeof("/proc/")+len-1, "/status");
62 fd = open(status_name, O_RDONLY);
63 if (fd==-1) return VC_NOCTX;
65 len = read(fd, buf, cur_bufsize);
68 if (len<cur_bufsize) {
70 pos = strstr(buf, CTX_TAG);
72 else if (len!=(size_t)-1) {
73 bufsize = cur_bufsize * 2 - 1;
77 if (pos!=0) return atoi(pos+sizeof(CTX_TAG)-1);
81 #endif // H_UTIL_VSERVER_LIB_GETCTX_LEGACY_H