[systemd-devel] [PATCH] RFC: util: Avoid memory allocations for formatting paths
Holger Freyther
holger at freyther.de
Tue Apr 2 23:27:45 PDT 2013
From: Holger Hans Peter Freyther <holger at moiji-mobile.com>
Avoid memory allocations to construct the path for files in the
procfs. The procfs paths are way shorter than the PATH_MAX so we
can use snprintf on a string located on the stack. This shows up
as a win on x86 using the benchmark program below.
$ make libsystemd-shared.la; gcc -O2 -Isrc/systemd/ -Isrc/ \
-o simple-perf-test simple-perf-test.c \
.libs/libsystemd-shared.a -lrt
#include "shared/util.h"
void test_once(void) {
pid_t pid = getpid();
char *tmp = NULL;
get_process_comm(pid, &tmp);
free(tmp);
tmp = NULL;
get_process_cmdline(pid, 0, 1, &tmp);
free(tmp);
is_kernel_thread(pid);
tmp = NULL;
get_process_exe(pid, &tmp);
free(tmp);
}
int main(int argc, char **argv)
{
int i;
for (i = 0; i < 50000; ++i)
test_once();
}
---
src/shared/util.c | 51 ++++++++++++++++++++++-----------------------------
1 file changed, 22 insertions(+), 29 deletions(-)
diff --git a/src/shared/util.c b/src/shared/util.c
index d861ca9..65b546d 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -80,6 +80,13 @@ char **saved_argv = NULL;
static volatile unsigned cached_columns = 0;
static volatile unsigned cached_lines = 0;
+#define PROCFS_PATH_LEN (sizeof("/proc/")-1 + DECIMAL_STR_MAX(unsigned long))
+
+#define format_procfs_path(buffer, path, pid) do { \
+ snprintf(buffer, sizeof(buffer) - 1, "/proc/%lu/%s", (unsigned long) pid, path); \
+ char_array_0(buffer); } while(0)
+
+
size_t page_size(void) {
static __thread size_t pgsz = 0;
long r;
@@ -571,12 +578,9 @@ int get_process_comm(pid_t pid, char **name) {
if (pid == 0)
r = read_one_line_file("/proc/self/comm", name);
else {
- char *p;
- if (asprintf(&p, "/proc/%lu/comm", (unsigned long) pid) < 0)
- return -ENOMEM;
-
- r = read_one_line_file(p, name);
- free(p);
+ char path[PROCFS_PATH_LEN + sizeof("/comm")];
+ format_procfs_path(path, "comm", pid);
+ r = read_one_line_file(path, name);
}
return r;
@@ -592,12 +596,9 @@ int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char *
if (pid == 0)
f = fopen("/proc/self/cmdline", "re");
else {
- char *p;
- if (asprintf(&p, "/proc/%lu/cmdline", (unsigned long) pid) < 0)
- return -ENOMEM;
-
- f = fopen(p, "re");
- free(p);
+ char path[PROCFS_PATH_LEN + sizeof("/cmdline")];
+ format_procfs_path(path, "cmdline", pid);
+ f = fopen(path, "re");
}
if (!f)
@@ -684,7 +685,7 @@ int get_process_cmdline(pid_t pid, size_t max_length, bool comm_fallback, char *
}
int is_kernel_thread(pid_t pid) {
- char *p;
+ char path[PROCFS_PATH_LEN + sizeof("/cmdline")];
size_t count;
char c;
bool eof;
@@ -693,11 +694,8 @@ int is_kernel_thread(pid_t pid) {
if (pid == 0)
return 0;
- if (asprintf(&p, "/proc/%lu/cmdline", (unsigned long) pid) < 0)
- return -ENOMEM;
-
- f = fopen(p, "re");
- free(p);
+ format_procfs_path(path, "cmdline", pid);
+ f = fopen(path, "re");
if (!f)
return -errno;
@@ -722,12 +720,9 @@ int get_process_exe(pid_t pid, char **name) {
if (pid == 0)
r = readlink_malloc("/proc/self/exe", name);
else {
- char *p;
- if (asprintf(&p, "/proc/%lu/exe", (unsigned long) pid) < 0)
- return -ENOMEM;
-
- r = readlink_malloc(p, name);
- free(p);
+ char path[PROCFS_PATH_LEN + sizeof("/exe")];
+ format_procfs_path(path, "exe", pid);
+ r = readlink_malloc(path, name);
}
return r;
@@ -735,7 +730,7 @@ int get_process_exe(pid_t pid, char **name) {
static int get_process_id(pid_t pid, const char *field, uid_t *uid) {
_cleanup_fclose_ FILE *f = NULL;
- _cleanup_free_ char *p = NULL;
+ char path[PROCFS_PATH_LEN + sizeof("/status")];
char line[LINE_MAX];
assert(field);
@@ -744,10 +739,8 @@ static int get_process_id(pid_t pid, const char *field, uid_t *uid) {
if (pid == 0)
return getuid();
- if (asprintf(&p, "/proc/%lu/status", (unsigned long) pid) < 0)
- return -ENOMEM;
-
- f = fopen(p, "re");
+ format_procfs_path(path, "status", pid);
+ f = fopen(path, "re");
if (!f)
return -errno;
--
1.7.10.4
More information about the systemd-devel
mailing list