mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
linux: fix /proc/self/stat executable name parsing (#4353)
- The filename of the executable may contain both spaces and parentheses - Use uv__slurp instead of open/read/close
This commit is contained in:
parent
fa6745b4f2
commit
b0816180e3
@ -1630,36 +1630,17 @@ done:
|
|||||||
int uv_resident_set_memory(size_t* rss) {
|
int uv_resident_set_memory(size_t* rss) {
|
||||||
char buf[1024];
|
char buf[1024];
|
||||||
const char* s;
|
const char* s;
|
||||||
ssize_t n;
|
|
||||||
long val;
|
long val;
|
||||||
int fd;
|
int rc;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
do
|
/* rss: 24th element */
|
||||||
fd = open("/proc/self/stat", O_RDONLY);
|
rc = uv__slurp("/proc/self/stat", buf, sizeof(buf));
|
||||||
while (fd == -1 && errno == EINTR);
|
if (rc < 0)
|
||||||
|
return rc;
|
||||||
if (fd == -1)
|
|
||||||
return UV__ERR(errno);
|
/* find the last ')' */
|
||||||
|
s = strrchr(buf, ')');
|
||||||
do
|
|
||||||
n = read(fd, buf, sizeof(buf) - 1);
|
|
||||||
while (n == -1 && errno == EINTR);
|
|
||||||
|
|
||||||
uv__close(fd);
|
|
||||||
if (n == -1)
|
|
||||||
return UV__ERR(errno);
|
|
||||||
buf[n] = '\0';
|
|
||||||
|
|
||||||
s = strchr(buf, ' ');
|
|
||||||
if (s == NULL)
|
|
||||||
goto err;
|
|
||||||
|
|
||||||
s += 1;
|
|
||||||
if (*s != '(')
|
|
||||||
goto err;
|
|
||||||
|
|
||||||
s = strchr(s, ')');
|
|
||||||
if (s == NULL)
|
if (s == NULL)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
@ -1671,9 +1652,7 @@ int uv_resident_set_memory(size_t* rss) {
|
|||||||
|
|
||||||
errno = 0;
|
errno = 0;
|
||||||
val = strtol(s, NULL, 10);
|
val = strtol(s, NULL, 10);
|
||||||
if (errno != 0)
|
if (val < 0 || errno != 0)
|
||||||
goto err;
|
|
||||||
if (val < 0)
|
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
*rss = val * getpagesize();
|
*rss = val * getpagesize();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user