fuser: bugfixes and shrink. It was assuming that xmalloc zeroes returned area!
function old new delta scan_dir_links - 106 +106 add_inode - 89 +89 scan_link - 78 +78 file_to_dev_inode - 64 +64 search_dev_inode - 63 +63 add_pid - 39 +39 packed_usage 23948 23928 -20 fuser_add_pid 49 - -49 fuser_file_to_dev_inode 64 - -64 fuser_search_dev_inode 77 - -77 fuser_scan_link 91 - -91 fuser_scan_dir_links 108 - -108 fuser_add_inode 124 - -124 fuser_main 1450 1243 -207 ------------------------------------------------------------------------------ (add/remove: 6/6 grow/shrink: 0/2 up/down: 439/-740) Total: -301 bytes text data bss dec hex filename 798327 658 7428 806413 c4e0d busybox_old 797988 658 7428 806074 c4cba busybox_unstripped
This commit is contained in:
parent
cdf62770af
commit
afc4113ed7
@ -757,7 +757,7 @@ USE_FEATURE_BRCTL_FANCY("\n" \
|
|||||||
#define dos2unix_full_usage \
|
#define dos2unix_full_usage \
|
||||||
"Convert FILE from dos to unix format.\n" \
|
"Convert FILE from dos to unix format.\n" \
|
||||||
"When no file is given, use stdin/stdout.\n" \
|
"When no file is given, use stdin/stdout.\n" \
|
||||||
"\nOptions:\n" \
|
"\nOptions:" \
|
||||||
"\n -u dos2unix" \
|
"\n -u dos2unix" \
|
||||||
"\n -d unix2dos"
|
"\n -d unix2dos"
|
||||||
|
|
||||||
@ -1024,7 +1024,7 @@ USE_FEATURE_BRCTL_FANCY("\n" \
|
|||||||
"[-C CYLINDERS] [-H HEADS] [-S SECTORS] [-b SSZ] DISK"
|
"[-C CYLINDERS] [-H HEADS] [-S SECTORS] [-b SSZ] DISK"
|
||||||
#define fdisk_full_usage \
|
#define fdisk_full_usage \
|
||||||
"Change partition table\n" \
|
"Change partition table\n" \
|
||||||
"\nOptions:\n" \
|
"\nOptions:" \
|
||||||
"\n -u Start and End are in sectors (instead of cylinders)" \
|
"\n -u Start and End are in sectors (instead of cylinders)" \
|
||||||
"\n -l Show partition table for each DISK, then exit" \
|
"\n -l Show partition table for each DISK, then exit" \
|
||||||
USE_FEATURE_FDISK_BLKSIZE( \
|
USE_FEATURE_FDISK_BLKSIZE( \
|
||||||
@ -1213,13 +1213,14 @@ USE_FEATURE_BRCTL_FANCY("\n" \
|
|||||||
#define fuser_trivial_usage \
|
#define fuser_trivial_usage \
|
||||||
"[options] FILE or PORT/PROTO"
|
"[options] FILE or PORT/PROTO"
|
||||||
#define fuser_full_usage \
|
#define fuser_full_usage \
|
||||||
"Options:\n" \
|
"Find processes which use FILEs or PORTs\n" \
|
||||||
" -m Show all processes on the same mounted fs\n" \
|
"\nOptions:" \
|
||||||
" -s Don't print or kill anything\n" \
|
"\n -m Find processes which use same fs as FILEs" \
|
||||||
" -4 Search only IPv4 space\n" \
|
"\n -4 Search only IPv4 space" \
|
||||||
" -6 Search only IPv6 space\n" \
|
"\n -6 Search only IPv6 space" \
|
||||||
" -k Kill all processes that match\n" \
|
"\n -s Silent: just exit with 0 if any processes are found" \
|
||||||
" -SIGNAL Signal to send (default: TERM)"
|
"\n -k Kill found processes (otherwise display PIDs)" \
|
||||||
|
"\n -SIGNAL Signal to send (default: TERM)"
|
||||||
|
|
||||||
#define getenforce_trivial_usage
|
#define getenforce_trivial_usage
|
||||||
#define getenforce_full_usage
|
#define getenforce_full_usage
|
||||||
@ -4093,7 +4094,7 @@ USE_FEATURE_BRCTL_FANCY("\n" \
|
|||||||
"[flags] FILESYSTEM|DIRECTORY"
|
"[flags] FILESYSTEM|DIRECTORY"
|
||||||
#define umount_full_usage \
|
#define umount_full_usage \
|
||||||
"Unmount file systems" \
|
"Unmount file systems" \
|
||||||
"\n\nOptions:\n" \
|
"\n\nOptions:" \
|
||||||
USE_FEATURE_UMOUNT_ALL( \
|
USE_FEATURE_UMOUNT_ALL( \
|
||||||
"\n -a Unmount all file systems" USE_FEATURE_MTAB_SUPPORT(" in /etc/mtab")) \
|
"\n -a Unmount all file systems" USE_FEATURE_MTAB_SUPPORT(" in /etc/mtab")) \
|
||||||
USE_FEATURE_MTAB_SUPPORT( \
|
USE_FEATURE_MTAB_SUPPORT( \
|
||||||
@ -4168,7 +4169,7 @@ USE_FEATURE_BRCTL_FANCY("\n" \
|
|||||||
#define unix2dos_full_usage \
|
#define unix2dos_full_usage \
|
||||||
"Convert FILE from unix to dos format.\n" \
|
"Convert FILE from unix to dos format.\n" \
|
||||||
"When no file is given, use stdin/stdout.\n" \
|
"When no file is given, use stdin/stdout.\n" \
|
||||||
"\nOptions:\n" \
|
"\nOptions:" \
|
||||||
"\n -u dos2unix" \
|
"\n -u dos2unix" \
|
||||||
"\n -d unix2dos"
|
"\n -d unix2dos"
|
||||||
|
|
||||||
|
384
procps/fuser.c
384
procps/fuser.c
@ -10,187 +10,148 @@
|
|||||||
|
|
||||||
#include "libbb.h"
|
#include "libbb.h"
|
||||||
|
|
||||||
#define FUSER_PROC_DIR "/proc"
|
#define MAX_LINE 255
|
||||||
#define FUSER_MAX_LINE 255
|
|
||||||
|
|
||||||
#define FUSER_OPT_MOUNT 1
|
#define OPTION_STRING "mks64"
|
||||||
#define FUSER_OPT_KILL 2
|
enum {
|
||||||
#define FUSER_OPT_SILENT 4
|
OPT_MOUNT = (1 << 0),
|
||||||
#define FUSER_OPT_IP6 8
|
OPT_KILL = (1 << 1),
|
||||||
#define FUSER_OPT_IP4 16
|
OPT_SILENT = (1 << 2),
|
||||||
|
OPT_IP6 = (1 << 3),
|
||||||
|
OPT_IP4 = (1 << 4),
|
||||||
|
};
|
||||||
|
|
||||||
typedef struct inode_list {
|
typedef struct inode_list {
|
||||||
|
struct inode_list *next;
|
||||||
ino_t inode;
|
ino_t inode;
|
||||||
dev_t dev;
|
dev_t dev;
|
||||||
struct inode_list *next;
|
|
||||||
} inode_list;
|
} inode_list;
|
||||||
|
|
||||||
typedef struct pid_list {
|
typedef struct pid_list {
|
||||||
pid_t pid;
|
|
||||||
struct pid_list *next;
|
struct pid_list *next;
|
||||||
|
pid_t pid;
|
||||||
} pid_list;
|
} pid_list;
|
||||||
|
|
||||||
static int fuser_option(char *option)
|
static dev_t find_socket_dev(void)
|
||||||
{
|
{
|
||||||
int opt = 0;
|
int fd = socket(AF_INET, SOCK_DGRAM, 0);
|
||||||
|
if (fd >= 0) {
|
||||||
if (!option[0])
|
struct stat buf;
|
||||||
return 0;
|
int r = fstat(fd, &buf);
|
||||||
if (option[0] != '-')
|
close(fd);
|
||||||
return 0;
|
if (r == 0)
|
||||||
++option;
|
return buf.st_dev;
|
||||||
while (*option != '\0') {
|
|
||||||
if (*option == 'm') opt |= FUSER_OPT_MOUNT;
|
|
||||||
else if (*option == 'k') opt |= FUSER_OPT_KILL;
|
|
||||||
else if (*option == 's') opt |= FUSER_OPT_SILENT;
|
|
||||||
else if (*option == '6') opt |= FUSER_OPT_IP6;
|
|
||||||
else if (*option == '4') opt |= FUSER_OPT_IP4;
|
|
||||||
else
|
|
||||||
bb_error_msg_and_die("unsupported option '%c'", *option);
|
|
||||||
++option;
|
|
||||||
}
|
}
|
||||||
return opt;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_file_to_dev_inode(const char *filename,
|
static int file_to_dev_inode(const char *filename, dev_t *dev, ino_t *inode)
|
||||||
dev_t *dev, ino_t *inode)
|
|
||||||
{
|
{
|
||||||
struct stat f_stat;
|
struct stat f_stat;
|
||||||
if ((stat(filename, &f_stat)) < 0)
|
if (stat(filename, &f_stat))
|
||||||
return 0;
|
return 0;
|
||||||
*inode = f_stat.st_ino;
|
*inode = f_stat.st_ino;
|
||||||
*dev = f_stat.st_dev;
|
*dev = f_stat.st_dev;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_find_socket_dev(dev_t *dev)
|
static char *parse_net_arg(const char *arg, unsigned *port)
|
||||||
{
|
{
|
||||||
int fd = socket(PF_INET, SOCK_DGRAM,0);
|
char path[12], tproto[5];
|
||||||
struct stat buf;
|
|
||||||
|
|
||||||
if (fd >= 0 && (fstat(fd, &buf)) == 0) {
|
if (sscanf(arg, "%u/%4s", port, tproto) != 2)
|
||||||
*dev = buf.st_dev;
|
return NULL;
|
||||||
close(fd);
|
sprintf(path, "net/%s", tproto);
|
||||||
return 1;
|
if (access(path, R_OK) != 0)
|
||||||
}
|
return NULL;
|
||||||
return 0;
|
return xstrdup(tproto);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_parse_net_arg(const char *filename,
|
static pid_list *add_pid(pid_list *plist, pid_t pid)
|
||||||
const char **proto, int *port)
|
|
||||||
{
|
{
|
||||||
char path[sizeof(FUSER_PROC_DIR)+12], tproto[5];
|
pid_list *curr = plist;
|
||||||
|
|
||||||
if ((sscanf(filename, "%d/%4s", port, tproto)) != 2)
|
|
||||||
return 0;
|
|
||||||
sprintf(path, FUSER_PROC_DIR "/net/%s", tproto);
|
|
||||||
if ((access(path, R_OK)) != 0)
|
|
||||||
return 0;
|
|
||||||
*proto = xstrdup(tproto);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int fuser_add_pid(pid_list *plist, pid_t pid)
|
|
||||||
{
|
|
||||||
pid_list *curr = NULL, *last = NULL;
|
|
||||||
|
|
||||||
if (plist->pid == 0)
|
|
||||||
plist->pid = pid;
|
|
||||||
curr = plist;
|
|
||||||
while (curr != NULL) {
|
while (curr != NULL) {
|
||||||
if (curr->pid == pid)
|
if (curr->pid == pid)
|
||||||
return 1;
|
return plist;
|
||||||
last = curr;
|
|
||||||
curr = curr->next;
|
curr = curr->next;
|
||||||
}
|
}
|
||||||
curr = xzalloc(sizeof(pid_list));
|
curr = xmalloc(sizeof(pid_list));
|
||||||
last->next = curr;
|
|
||||||
curr->pid = pid;
|
curr->pid = pid;
|
||||||
/*curr->next = NULL;*/
|
curr->next = plist;
|
||||||
return 1;
|
return curr;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_add_inode(inode_list *ilist, dev_t dev, ino_t inode)
|
static inode_list *add_inode(inode_list *ilist, dev_t dev, ino_t inode)
|
||||||
{
|
{
|
||||||
inode_list *curr = NULL, *last = NULL;
|
inode_list *curr = ilist;
|
||||||
|
|
||||||
if (!ilist->inode && !ilist->dev) {
|
|
||||||
ilist->dev = dev;
|
|
||||||
ilist->inode = inode;
|
|
||||||
}
|
|
||||||
curr = ilist;
|
|
||||||
while (curr != NULL) {
|
while (curr != NULL) {
|
||||||
if (curr->inode == inode && curr->dev == dev)
|
if (curr->inode == inode && curr->dev == dev)
|
||||||
return 1;
|
return ilist;
|
||||||
last = curr;
|
|
||||||
curr = curr->next;
|
curr = curr->next;
|
||||||
}
|
}
|
||||||
curr = xzalloc(sizeof(inode_list));
|
curr = xmalloc(sizeof(inode_list));
|
||||||
last->next = curr;
|
|
||||||
curr->dev = dev;
|
curr->dev = dev;
|
||||||
curr->inode = inode;
|
curr->inode = inode;
|
||||||
/*curr->next = NULL;*/
|
curr->next = ilist;
|
||||||
return 1;
|
return curr;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_scan_proc_net(int opts, const char *proto,
|
static inode_list *scan_proc_net(const char *proto,
|
||||||
int port, inode_list *ilist)
|
unsigned port, inode_list *ilist)
|
||||||
{
|
{
|
||||||
char path[sizeof(FUSER_PROC_DIR)+12], line[FUSER_MAX_LINE+1];
|
char path[12], line[MAX_LINE + 1];
|
||||||
char addr[128];
|
char addr[128];
|
||||||
ino_t tmp_inode;
|
ino_t tmp_inode;
|
||||||
dev_t tmp_dev;
|
dev_t tmp_dev;
|
||||||
long long uint64_inode;
|
long long uint64_inode;
|
||||||
int tmp_port;
|
unsigned tmp_port;
|
||||||
FILE *f;
|
FILE *f;
|
||||||
|
|
||||||
if (!fuser_find_socket_dev(&tmp_dev))
|
tmp_dev = find_socket_dev();
|
||||||
tmp_dev = 0;
|
|
||||||
sprintf(path, FUSER_PROC_DIR "/net/%s", proto);
|
|
||||||
|
|
||||||
|
sprintf(path, "net/%s", proto);
|
||||||
f = fopen(path, "r");
|
f = fopen(path, "r");
|
||||||
if (!f)
|
if (!f)
|
||||||
return 0;
|
return ilist;
|
||||||
while (fgets(line, FUSER_MAX_LINE, f)) {
|
|
||||||
|
while (fgets(line, MAX_LINE, f)) {
|
||||||
if (sscanf(line, "%*d: %64[0-9A-Fa-f]:%x %*x:%*x %*x %*x:%*x "
|
if (sscanf(line, "%*d: %64[0-9A-Fa-f]:%x %*x:%*x %*x %*x:%*x "
|
||||||
"%*x:%*x %*x %*d %*d %llu",
|
"%*x:%*x %*x %*d %*d %llu",
|
||||||
addr, &tmp_port, &uint64_inode) == 3
|
addr, &tmp_port, &uint64_inode) == 3
|
||||||
) {
|
) {
|
||||||
if (strlen(addr) == 8 && (opts & FUSER_OPT_IP6))
|
if (strlen(addr) == 8 && (option_mask32 & OPT_IP6))
|
||||||
continue;
|
continue;
|
||||||
if (strlen(addr) > 8 && (opts & FUSER_OPT_IP4))
|
if (strlen(addr) > 8 && (option_mask32 & OPT_IP4))
|
||||||
continue;
|
continue;
|
||||||
if (tmp_port == port) {
|
if (tmp_port == port) {
|
||||||
tmp_inode = uint64_inode;
|
tmp_inode = uint64_inode;
|
||||||
fuser_add_inode(ilist, tmp_dev, tmp_inode);
|
ilist = add_inode(ilist, tmp_dev, tmp_inode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fclose(f);
|
fclose(f);
|
||||||
return 1;
|
return ilist;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_search_dev_inode(int opts, inode_list *ilist,
|
static int search_dev_inode(inode_list *ilist, dev_t dev, ino_t inode)
|
||||||
dev_t dev, ino_t inode)
|
|
||||||
{
|
{
|
||||||
inode_list *curr;
|
while (ilist) {
|
||||||
curr = ilist;
|
if (ilist->dev == dev) {
|
||||||
|
if (option_mask32 & OPT_MOUNT)
|
||||||
while (curr) {
|
|
||||||
if ((opts & FUSER_OPT_MOUNT) && curr->dev == dev)
|
|
||||||
return 1;
|
return 1;
|
||||||
if (curr->inode == inode && curr->dev == dev)
|
if (ilist->inode == inode)
|
||||||
return 1;
|
return 1;
|
||||||
curr = curr->next;
|
}
|
||||||
|
ilist = ilist->next;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_scan_pid_maps(int opts, const char *fname, pid_t pid,
|
static pid_list *scan_pid_maps(const char *fname, pid_t pid,
|
||||||
inode_list *ilist, pid_list *plist)
|
inode_list *ilist, pid_list *plist)
|
||||||
{
|
{
|
||||||
FILE *file;
|
FILE *file;
|
||||||
char line[FUSER_MAX_LINE + 1];
|
char line[MAX_LINE + 1];
|
||||||
int major, minor;
|
int major, minor;
|
||||||
ino_t inode;
|
ino_t inode;
|
||||||
long long uint64_inode;
|
long long uint64_inode;
|
||||||
@ -198,36 +159,35 @@ static int fuser_scan_pid_maps(int opts, const char *fname, pid_t pid,
|
|||||||
|
|
||||||
file = fopen(fname, "r");
|
file = fopen(fname, "r");
|
||||||
if (!file)
|
if (!file)
|
||||||
return 0;
|
return plist;
|
||||||
while (fgets(line, FUSER_MAX_LINE, file)) {
|
while (fgets(line, MAX_LINE, file)) {
|
||||||
if (sscanf(line, "%*s %*s %*s %x:%x %llu", &major, &minor, &uint64_inode) != 3)
|
if (sscanf(line, "%*s %*s %*s %x:%x %llu", &major, &minor, &uint64_inode) != 3)
|
||||||
continue;
|
continue;
|
||||||
inode = uint64_inode;
|
inode = uint64_inode;
|
||||||
if (major == 0 && minor == 0 && inode == 0)
|
if (major == 0 && minor == 0 && inode == 0)
|
||||||
continue;
|
continue;
|
||||||
dev = makedev(major, minor);
|
dev = makedev(major, minor);
|
||||||
if (fuser_search_dev_inode(opts, ilist, dev, inode)) {
|
if (search_dev_inode(ilist, dev, inode))
|
||||||
fuser_add_pid(plist, pid);
|
plist = add_pid(plist, pid);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
fclose(file);
|
fclose(file);
|
||||||
return 1;
|
return plist;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_scan_link(int opts, const char *lname, pid_t pid,
|
static pid_list *scan_link(const char *lname, pid_t pid,
|
||||||
inode_list *ilist, pid_list *plist)
|
inode_list *ilist, pid_list *plist)
|
||||||
{
|
{
|
||||||
ino_t inode;
|
ino_t inode;
|
||||||
dev_t dev;
|
dev_t dev;
|
||||||
|
|
||||||
if (!fuser_file_to_dev_inode(lname, &dev, &inode))
|
if (!file_to_dev_inode(lname, &dev, &inode))
|
||||||
return 0;
|
return plist;
|
||||||
if (fuser_search_dev_inode(opts, ilist, dev, inode))
|
if (search_dev_inode(ilist, dev, inode))
|
||||||
fuser_add_pid(plist, pid);
|
plist = add_pid(plist, pid);
|
||||||
return 1;
|
return plist;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_scan_dir_links(int opts, const char *dname, pid_t pid,
|
static pid_list *scan_dir_links(const char *dname, pid_t pid,
|
||||||
inode_list *ilist, pid_list *plist)
|
inode_list *ilist, pid_list *plist)
|
||||||
{
|
{
|
||||||
DIR *d;
|
DIR *d;
|
||||||
@ -236,82 +196,72 @@ static int fuser_scan_dir_links(int opts, const char *dname, pid_t pid,
|
|||||||
|
|
||||||
d = opendir(dname);
|
d = opendir(dname);
|
||||||
if (!d)
|
if (!d)
|
||||||
return 0;
|
return plist;
|
||||||
while ((de = readdir(d)) != NULL) {
|
while ((de = readdir(d)) != NULL) {
|
||||||
lname = concat_subpath_file(dname, de->d_name);
|
lname = concat_subpath_file(dname, de->d_name);
|
||||||
if (lname == NULL)
|
if (lname == NULL)
|
||||||
continue;
|
continue;
|
||||||
fuser_scan_link(opts, lname, pid, ilist, plist);
|
plist = scan_link(lname, pid, ilist, plist);
|
||||||
free(lname);
|
free(lname);
|
||||||
}
|
}
|
||||||
closedir(d);
|
closedir(d);
|
||||||
return 1;
|
return plist;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_scan_proc_pids(int opts, inode_list *ilist, pid_list *plist)
|
static pid_list *scan_proc_pids(inode_list *ilist)
|
||||||
{
|
{
|
||||||
DIR *d;
|
DIR *d;
|
||||||
struct dirent *de;
|
struct dirent *de;
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
char *dname;
|
pid_list *plist;
|
||||||
|
|
||||||
d = opendir(FUSER_PROC_DIR);
|
d = opendir(".");
|
||||||
if (!d)
|
if (!d)
|
||||||
return 0;
|
return NULL;
|
||||||
|
|
||||||
|
plist = NULL;
|
||||||
while ((de = readdir(d)) != NULL) {
|
while ((de = readdir(d)) != NULL) {
|
||||||
pid = (pid_t)atoi(de->d_name);
|
pid = (pid_t)bb_strtou(de->d_name, NULL, 10);
|
||||||
if (!pid)
|
if (errno)
|
||||||
continue;
|
continue;
|
||||||
dname = concat_subpath_file(FUSER_PROC_DIR, de->d_name);
|
if (chdir(de->d_name) < 0)
|
||||||
if (chdir(dname) < 0) {
|
|
||||||
free(dname);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
plist = scan_link("cwd", pid, ilist, plist);
|
||||||
free(dname);
|
plist = scan_link("exe", pid, ilist, plist);
|
||||||
fuser_scan_link(opts, "cwd", pid, ilist, plist);
|
plist = scan_link("root", pid, ilist, plist);
|
||||||
fuser_scan_link(opts, "exe", pid, ilist, plist);
|
plist = scan_dir_links("fd", pid, ilist, plist);
|
||||||
fuser_scan_link(opts, "root", pid, ilist, plist);
|
plist = scan_dir_links("lib", pid, ilist, plist);
|
||||||
fuser_scan_dir_links(opts, "fd", pid, ilist, plist);
|
plist = scan_dir_links("mmap", pid, ilist, plist);
|
||||||
fuser_scan_dir_links(opts, "lib", pid, ilist, plist);
|
plist = scan_pid_maps("maps", pid, ilist, plist);
|
||||||
fuser_scan_dir_links(opts, "mmap", pid, ilist, plist);
|
xchdir("/proc");
|
||||||
fuser_scan_pid_maps(opts, "maps", pid, ilist, plist);
|
|
||||||
chdir("..");
|
|
||||||
}
|
}
|
||||||
closedir(d);
|
closedir(d);
|
||||||
return 1;
|
return plist;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_print_pid_list(pid_list *plist)
|
static int print_pid_list(pid_list *plist)
|
||||||
{
|
{
|
||||||
pid_list *curr = plist;
|
while (plist != NULL) {
|
||||||
|
printf("%u ", (unsigned)plist->pid);
|
||||||
if (plist == NULL)
|
plist = plist->next;
|
||||||
return 0;
|
|
||||||
while (curr != NULL) {
|
|
||||||
if (curr->pid > 0)
|
|
||||||
printf("%d ", curr->pid);
|
|
||||||
curr = curr->next;
|
|
||||||
}
|
}
|
||||||
bb_putchar('\n');
|
bb_putchar('\n');
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fuser_kill_pid_list(pid_list *plist, int sig)
|
static int kill_pid_list(pid_list *plist, int sig)
|
||||||
{
|
{
|
||||||
pid_list *curr = plist;
|
|
||||||
pid_t mypid = getpid();
|
pid_t mypid = getpid();
|
||||||
int success = 1;
|
int success = 1;
|
||||||
|
|
||||||
if (plist == NULL)
|
while (plist != NULL) {
|
||||||
return 0;
|
if (plist->pid != mypid) {
|
||||||
while (curr != NULL) {
|
if (kill(plist->pid, sig) != 0) {
|
||||||
if (curr->pid > 0 && curr->pid != mypid) {
|
bb_perror_msg("kill pid %u", (unsigned)plist->pid);
|
||||||
if (kill(curr->pid, sig) != 0) {
|
|
||||||
bb_perror_msg("kill pid '%d'", curr->pid);
|
|
||||||
success = 0;
|
success = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
curr = curr->next;
|
plist = plist->next;
|
||||||
}
|
}
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
@ -319,69 +269,77 @@ static int fuser_kill_pid_list(pid_list *plist, int sig)
|
|||||||
int fuser_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
int fuser_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
||||||
int fuser_main(int argc, char **argv)
|
int fuser_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
/*static -- huh???*/ int opt = 0; /* FUSER_OPT_ */
|
pid_list *plist;
|
||||||
|
inode_list *ilist;
|
||||||
int port, i, optn;
|
char **pp;
|
||||||
int* fni; /* file name indexes of argv */
|
|
||||||
int fnic = 0; /* file name index count */
|
|
||||||
const char *proto;
|
|
||||||
dev_t dev;
|
dev_t dev;
|
||||||
ino_t inode;
|
ino_t inode;
|
||||||
pid_list *pids;
|
unsigned port;
|
||||||
inode_list *inodes;
|
int opt;
|
||||||
int killsig = SIGTERM;
|
int success;
|
||||||
int success = 1;
|
int killsig;
|
||||||
|
/*
|
||||||
if (argc < 2)
|
fuser [options] FILEs or PORT/PROTOs
|
||||||
bb_show_usage();
|
Find processes which use FILEs or PORTs
|
||||||
|
-m Find processes which use same fs as FILEs
|
||||||
fni = xmalloc(sizeof(int));
|
-4 Search only IPv4 space
|
||||||
for (i = 1; i < argc; i++) {
|
-6 Search only IPv6 space
|
||||||
optn = fuser_option(argv[i]);
|
-s Silent: just exit with 0 if any processes are found
|
||||||
if (optn)
|
-k Kill found processes (otherwise display PIDs)
|
||||||
opt |= optn;
|
-SIGNAL Signal to send (default: TERM)
|
||||||
else if (argv[i][0] == '-') {
|
*/
|
||||||
killsig = get_signum(argv[i]+1);
|
/* Handle -SIGNAL. Oh my... */
|
||||||
if (killsig < 0)
|
|
||||||
killsig = SIGTERM;
|
killsig = SIGTERM;
|
||||||
} else {
|
pp = argv;
|
||||||
fni = xrealloc(fni, sizeof(int) * (fnic+2));
|
while (*++pp) {
|
||||||
fni[fnic++] = i;
|
char *arg = *pp;
|
||||||
}
|
if (arg[0] != '-')
|
||||||
|
continue;
|
||||||
|
if (arg[1] == '-' && arg[2] == '\0') /* "--" */
|
||||||
|
break;
|
||||||
|
if ((arg[1] == '4' || arg[1] == '6') && arg[2] == '\0')
|
||||||
|
continue; /* it's "-4" or "-6" */
|
||||||
|
opt = get_signum(&arg[1]);
|
||||||
|
if (opt < 0)
|
||||||
|
continue;
|
||||||
|
/* "-SIGNAL" option found. Remove it and bail out */
|
||||||
|
killsig = opt;
|
||||||
|
do {
|
||||||
|
pp[0] = arg = pp[1];
|
||||||
|
pp++;
|
||||||
|
} while (arg);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!fnic)
|
opt = getopt32(argv, OPTION_STRING);
|
||||||
return 1;
|
argv += optind;
|
||||||
|
|
||||||
inodes = xmalloc(sizeof(inode_list));
|
xchdir("/proc");
|
||||||
for (i = 0; i < fnic; i++) {
|
|
||||||
if (fuser_parse_net_arg(argv[fni[i]], &proto, &port)) {
|
ilist = NULL;
|
||||||
fuser_scan_proc_net(opt, proto, port, inodes);
|
pp = argv;
|
||||||
} else {
|
while (*pp) {
|
||||||
if (!fuser_file_to_dev_inode(argv[fni[i]], &dev, &inode)) {
|
char *proto = parse_net_arg(*pp, &port);
|
||||||
if (ENABLE_FEATURE_CLEAN_UP)
|
if (proto) { /* PORT/PROTO */
|
||||||
free(inodes);
|
ilist = scan_proc_net(proto, port, ilist);
|
||||||
bb_perror_msg_and_die("cannot open '%s'", argv[fni[i]]);
|
free(proto);
|
||||||
|
} else { /* FILE */
|
||||||
|
if (!file_to_dev_inode(*pp, &dev, &inode))
|
||||||
|
bb_perror_msg_and_die("can't open %s", *pp);
|
||||||
|
ilist = add_inode(ilist, dev, inode);
|
||||||
}
|
}
|
||||||
fuser_add_inode(inodes, dev, inode);
|
pp++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
plist = scan_proc_pids(ilist);
|
||||||
|
|
||||||
|
if (!plist)
|
||||||
|
return EXIT_FAILURE;
|
||||||
|
success = 1;
|
||||||
|
if (opt & OPT_KILL) {
|
||||||
|
success = kill_pid_list(plist, killsig);
|
||||||
|
} else if (!(opt & OPT_SILENT)) {
|
||||||
|
success = print_pid_list(plist);
|
||||||
}
|
}
|
||||||
pids = xmalloc(sizeof(pid_list));
|
return (success != 1); /* 0 == success */
|
||||||
success = fuser_scan_proc_pids(opt, inodes, pids);
|
|
||||||
/* if the first pid in the list is 0, none have been found */
|
|
||||||
if (pids->pid == 0)
|
|
||||||
success = 0;
|
|
||||||
if (success) {
|
|
||||||
if (opt & FUSER_OPT_KILL) {
|
|
||||||
success = fuser_kill_pid_list(pids, killsig);
|
|
||||||
} else if (!(opt & FUSER_OPT_SILENT)) {
|
|
||||||
success = fuser_print_pid_list(pids);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (ENABLE_FEATURE_CLEAN_UP) {
|
|
||||||
free(pids);
|
|
||||||
free(inodes);
|
|
||||||
}
|
|
||||||
/* return 0 on (success == 1) 1 otherwise */
|
|
||||||
return (success != 1);
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user