- removed '#! /bin/bash' header
[util-vserver.git] / util-vserver / lib / getprocentry-legacy.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 "utils-legacy.h"
24 #include "internal.h"
25 #include "vserver-internal.h"
26
27 #include <string.h>
28 #include <sys/stat.h>
29 #include <fcntl.h>
30 #include <errno.h>
31 #include <unistd.h>
32
33 static volatile size_t          proc_bufsize = 4097;
34
35 size_t
36 utilvserver_getProcEntryBufsize()
37 {
38   return proc_bufsize;
39 }
40
41 char *
42 utilvserver_getProcEntry(pid_t pid,
43                          char *str,
44                          char *buf, size_t bufsize)
45 {
46   char                  status_name[ sizeof("/proc/01234/status") ];
47   int                   fd;
48   size_t                len;
49   char *                res = 0;
50
51   if (pid<0 || (uint32_t)(pid)>99999) {
52     errno = EINVAL;
53     return 0;
54   }
55
56   if (pid==0) strcpy(status_name, "/proc/self/status");
57   else {
58     strcpy(status_name, "/proc/");
59     len = utilvserver_uint2str(status_name+sizeof("/proc/")-1,
60                                sizeof(status_name)-sizeof("/proc//status")+1,
61                                pid, 10);
62     strcpy(status_name+sizeof("/proc/")+len-1, "/status");
63   }
64
65   fd = open(status_name, O_RDONLY);
66   if (fd==-1) return 0;
67
68   len = read(fd, buf, bufsize);
69   close(fd);
70
71   if (len<bufsize) {
72     buf[len] = '\0';
73     if (str)
74       res    = strstr(buf, str) + strlen(str);
75     else
76       res    = buf;
77   }
78   else if (len!=(size_t)-1) {
79     if (proc_bufsize==bufsize)
80       proc_bufsize = bufsize * 2 - 1;
81
82     errno = EAGAIN;
83   }
84
85   return res;
86 }