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