Commit 26857cc4 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

util: Move various helpers there

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@gmail.com>
parent c475bccd
...@@ -40,34 +40,7 @@ ...@@ -40,34 +40,7 @@
# error No x86-32 support yet # error No x86-32 support yet
#endif #endif
static DIR *opendir_proc(char *fmt, ...)
{
va_list args;
char path[128];
sprintf(path, "/proc/");
va_start(args, fmt);
vsnprintf(path + 6, sizeof(path) - 6, fmt, args);
va_end(args);
return opendir(path);
}
static FILE *fopen_proc(char *fmt, char *mode, ...)
{
va_list args;
char fname[128];
sprintf(fname, "/proc/");
va_start(args, mode);
vsnprintf(fname + 6, sizeof(fname) - 6, fmt, args);
va_end(args);
return fopen(fname, mode);
}
static char big_buffer[PATH_MAX]; static char big_buffer[PATH_MAX];
static char loc_buf[PAGE_SIZE]; static char loc_buf[PAGE_SIZE];
static void free_pstree(struct list_head *pstree_list) static void free_pstree(struct list_head *pstree_list)
......
...@@ -89,14 +89,6 @@ static int nr_pipes; ...@@ -89,14 +89,6 @@ static int nr_pipes;
static int restore_task_with_children(int my_pid, char *pstree_path); static int restore_task_with_children(int my_pid, char *pstree_path);
static int open_fmt(char *fmt, int pid, int mode)
{
char fname[64];
snprintf(fname, sizeof(fname), fmt, pid);
return open(fname, mode);
}
static void show_saved_shmems(void) static void show_saved_shmems(void)
{ {
int i; int i;
......
...@@ -7,8 +7,10 @@ ...@@ -7,8 +7,10 @@
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <signal.h> #include <signal.h>
#include <stdio.h>
#include <sys/types.h> #include <sys/types.h>
#include <dirent.h>
#include "compiler.h" #include "compiler.h"
#include "types.h" #include "types.h"
...@@ -152,6 +154,10 @@ int reopen_fd_as(int new_fd, int old_fd); ...@@ -152,6 +154,10 @@ int reopen_fd_as(int new_fd, int old_fd);
int parse_maps(pid_t pid, struct list_head *vma_list); int parse_maps(pid_t pid, struct list_head *vma_list);
int close_safe(int *fd); int close_safe(int *fd);
DIR *opendir_proc(char *fmt, ...);
FILE *fopen_proc(char *fmt, char *mode, ...);
int open_fmt(char *fmt, int pid, int mode);
#define __xalloc(op, size, ...) \ #define __xalloc(op, size, ...) \
({ \ ({ \
void *___p = op( __VA_ARGS__ ); \ void *___p = op( __VA_ARGS__ ); \
......
...@@ -393,3 +393,37 @@ err_bogus_mapping: ...@@ -393,3 +393,37 @@ err_bogus_mapping:
vma_area->vma.end); vma_area->vma.end);
goto err; goto err;
} }
DIR *opendir_proc(char *fmt, ...)
{
char path[128];
va_list args;
sprintf(path, "/proc/");
va_start(args, fmt);
vsnprintf(path + 6, sizeof(path) - 6, fmt, args);
va_end(args);
return opendir(path);
}
FILE *fopen_proc(char *fmt, char *mode, ...)
{
char fname[128];
va_list args;
sprintf(fname, "/proc/");
va_start(args, mode);
vsnprintf(fname + 6, sizeof(fname) - 6, fmt, args);
va_end(args);
return fopen(fname, mode);
}
int open_fmt(char *fmt, int pid, int mode)
{
char fname[128];
snprintf(fname, sizeof(fname), fmt, pid);
return open(fname, mode);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment