|
Revision 1091, 2.0 kB
(checked in by ensc, 5 years ago)
|
return better errorcodes
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 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//status") + sizeof(unsigned int)*3 + 1 ]; |
|---|
| 47 |
int fd; |
|---|
| 48 |
size_t len; |
|---|
| 49 |
char * res = 0; |
|---|
| 50 |
|
|---|
| 51 |
if (pid<0 || (uint32_t)(pid)>99999) { |
|---|
| 52 |
errno = EBADR; |
|---|
| 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_fmt_uint(status_name+sizeof("/proc/")-1, pid); |
|---|
| 60 |
strcpy(status_name+sizeof("/proc/")+len-1, "/status"); |
|---|
| 61 |
} |
|---|
| 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 |
} |
|---|