2006-06-03 02:26:16 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2005-10-28 18:35:12 +05:30
|
|
|
/*
|
2006-01-25 05:38:53 +05:30
|
|
|
* tiny fuser implementation
|
|
|
|
*
|
2005-10-28 18:35:12 +05:30
|
|
|
* Copyright 2004 Tony J. White
|
|
|
|
*
|
2008-12-07 06:22:58 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this tarball for details.
|
2005-10-28 18:35:12 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
#define MAX_LINE 255
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
#define OPTION_STRING "mks64"
|
|
|
|
enum {
|
|
|
|
OPT_MOUNT = (1 << 0),
|
|
|
|
OPT_KILL = (1 << 1),
|
|
|
|
OPT_SILENT = (1 << 2),
|
|
|
|
OPT_IP6 = (1 << 3),
|
|
|
|
OPT_IP4 = (1 << 4),
|
|
|
|
};
|
2005-10-28 18:35:12 +05:30
|
|
|
|
|
|
|
typedef struct inode_list {
|
2008-03-17 14:14:58 +05:30
|
|
|
struct inode_list *next;
|
2005-10-28 18:35:12 +05:30
|
|
|
ino_t inode;
|
|
|
|
dev_t dev;
|
|
|
|
} inode_list;
|
|
|
|
|
|
|
|
typedef struct pid_list {
|
|
|
|
struct pid_list *next;
|
2008-03-17 14:14:58 +05:30
|
|
|
pid_t pid;
|
2005-10-28 18:35:12 +05:30
|
|
|
} pid_list;
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static dev_t find_socket_dev(void)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2008-03-17 14:14:58 +05:30
|
|
|
int fd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (fd >= 0) {
|
|
|
|
struct stat buf;
|
|
|
|
int r = fstat(fd, &buf);
|
|
|
|
close(fd);
|
|
|
|
if (r == 0)
|
|
|
|
return buf.st_dev;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
2008-03-17 14:14:58 +05:30
|
|
|
return 0;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static int file_to_dev_inode(const char *filename, dev_t *dev, ino_t *inode)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
|
|
|
struct stat f_stat;
|
2008-03-17 14:14:58 +05:30
|
|
|
if (stat(filename, &f_stat))
|
2007-04-12 04:50:53 +05:30
|
|
|
return 0;
|
2005-10-28 21:38:47 +05:30
|
|
|
*inode = f_stat.st_ino;
|
|
|
|
*dev = f_stat.st_dev;
|
2006-01-25 05:38:53 +05:30
|
|
|
return 1;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static char *parse_net_arg(const char *arg, unsigned *port)
|
2006-03-15 03:15:38 +05:30
|
|
|
{
|
2008-03-29 23:29:27 +05:30
|
|
|
char path[20], tproto[5];
|
2008-03-17 14:14:58 +05:30
|
|
|
|
|
|
|
if (sscanf(arg, "%u/%4s", port, tproto) != 2)
|
|
|
|
return NULL;
|
2008-03-29 23:29:27 +05:30
|
|
|
sprintf(path, "/proc/net/%s", tproto);
|
2008-03-17 14:14:58 +05:30
|
|
|
if (access(path, R_OK) != 0)
|
|
|
|
return NULL;
|
|
|
|
return xstrdup(tproto);
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static pid_list *add_pid(pid_list *plist, pid_t pid)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2008-03-17 14:14:58 +05:30
|
|
|
pid_list *curr = plist;
|
2007-04-12 04:50:53 +05:30
|
|
|
while (curr != NULL) {
|
|
|
|
if (curr->pid == pid)
|
2008-03-17 14:14:58 +05:30
|
|
|
return plist;
|
2006-01-25 05:38:53 +05:30
|
|
|
curr = curr->next;
|
|
|
|
}
|
2008-03-17 14:14:58 +05:30
|
|
|
curr = xmalloc(sizeof(pid_list));
|
2006-01-25 05:38:53 +05:30
|
|
|
curr->pid = pid;
|
2008-03-17 14:14:58 +05:30
|
|
|
curr->next = plist;
|
|
|
|
return curr;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static inode_list *add_inode(inode_list *ilist, dev_t dev, ino_t inode)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2008-03-17 14:14:58 +05:30
|
|
|
inode_list *curr = ilist;
|
2007-04-12 04:50:53 +05:30
|
|
|
while (curr != NULL) {
|
|
|
|
if (curr->inode == inode && curr->dev == dev)
|
2008-03-17 14:14:58 +05:30
|
|
|
return ilist;
|
2006-01-25 05:38:53 +05:30
|
|
|
curr = curr->next;
|
|
|
|
}
|
2008-03-17 14:14:58 +05:30
|
|
|
curr = xmalloc(sizeof(inode_list));
|
2006-01-25 05:38:53 +05:30
|
|
|
curr->dev = dev;
|
|
|
|
curr->inode = inode;
|
2008-03-17 14:14:58 +05:30
|
|
|
curr->next = ilist;
|
|
|
|
return curr;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static inode_list *scan_proc_net(const char *proto,
|
|
|
|
unsigned port, inode_list *ilist)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2008-03-29 23:29:27 +05:30
|
|
|
char path[20], line[MAX_LINE + 1];
|
2005-10-28 18:35:12 +05:30
|
|
|
ino_t tmp_inode;
|
|
|
|
dev_t tmp_dev;
|
2007-04-12 04:50:53 +05:30
|
|
|
long long uint64_inode;
|
2008-03-17 14:14:58 +05:30
|
|
|
unsigned tmp_port;
|
2005-10-28 18:35:12 +05:30
|
|
|
FILE *f;
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
tmp_dev = find_socket_dev();
|
2007-04-12 04:50:53 +05:30
|
|
|
|
2008-03-29 23:29:27 +05:30
|
|
|
sprintf(path, "/proc/net/%s", proto);
|
2008-07-22 04:35:26 +05:30
|
|
|
f = fopen_for_read(path);
|
2007-04-12 04:50:53 +05:30
|
|
|
if (!f)
|
2008-03-17 14:14:58 +05:30
|
|
|
return ilist;
|
|
|
|
|
|
|
|
while (fgets(line, MAX_LINE, f)) {
|
2008-07-12 15:02:38 +05:30
|
|
|
char addr[68];
|
2007-04-12 04:50:53 +05:30
|
|
|
if (sscanf(line, "%*d: %64[0-9A-Fa-f]:%x %*x:%*x %*x %*x:%*x "
|
|
|
|
"%*x:%*x %*x %*d %*d %llu",
|
|
|
|
addr, &tmp_port, &uint64_inode) == 3
|
|
|
|
) {
|
2008-07-12 14:50:44 +05:30
|
|
|
int len = strlen(addr);
|
|
|
|
if (len == 8 && (option_mask32 & OPT_IP6))
|
2007-04-12 04:50:53 +05:30
|
|
|
continue;
|
2008-07-12 14:50:44 +05:30
|
|
|
if (len > 8 && (option_mask32 & OPT_IP4))
|
2007-04-12 04:50:53 +05:30
|
|
|
continue;
|
|
|
|
if (tmp_port == port) {
|
2005-10-28 21:38:47 +05:30
|
|
|
tmp_inode = uint64_inode;
|
2008-03-17 14:14:58 +05:30
|
|
|
ilist = add_inode(ilist, tmp_dev, tmp_inode);
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(f);
|
2008-03-17 14:14:58 +05:30
|
|
|
return ilist;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static int search_dev_inode(inode_list *ilist, dev_t dev, ino_t inode)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2008-03-17 14:14:58 +05:30
|
|
|
while (ilist) {
|
|
|
|
if (ilist->dev == dev) {
|
|
|
|
if (option_mask32 & OPT_MOUNT)
|
|
|
|
return 1;
|
|
|
|
if (ilist->inode == inode)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
ilist = ilist->next;
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|
|
|
|
return 0;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static pid_list *scan_pid_maps(const char *fname, pid_t pid,
|
|
|
|
inode_list *ilist, pid_list *plist)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
|
|
|
FILE *file;
|
2008-03-17 14:14:58 +05:30
|
|
|
char line[MAX_LINE + 1];
|
2005-10-28 18:35:12 +05:30
|
|
|
int major, minor;
|
|
|
|
ino_t inode;
|
2006-01-31 04:18:39 +05:30
|
|
|
long long uint64_inode;
|
2005-10-28 18:35:12 +05:30
|
|
|
dev_t dev;
|
|
|
|
|
2008-07-22 04:35:26 +05:30
|
|
|
file = fopen_for_read(fname);
|
2007-04-12 04:50:53 +05:30
|
|
|
if (!file)
|
2008-03-17 14:14:58 +05:30
|
|
|
return plist;
|
|
|
|
while (fgets(line, MAX_LINE, file)) {
|
2007-04-12 04:50:53 +05:30
|
|
|
if (sscanf(line, "%*s %*s %*s %x:%x %llu", &major, &minor, &uint64_inode) != 3)
|
|
|
|
continue;
|
2005-10-28 21:38:47 +05:30
|
|
|
inode = uint64_inode;
|
2007-04-12 04:50:53 +05:30
|
|
|
if (major == 0 && minor == 0 && inode == 0)
|
|
|
|
continue;
|
2006-01-25 05:38:53 +05:30
|
|
|
dev = makedev(major, minor);
|
2008-03-17 14:14:58 +05:30
|
|
|
if (search_dev_inode(ilist, dev, inode))
|
|
|
|
plist = add_pid(plist, pid);
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
fclose(file);
|
2008-03-17 14:14:58 +05:30
|
|
|
return plist;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static pid_list *scan_link(const char *lname, pid_t pid,
|
|
|
|
inode_list *ilist, pid_list *plist)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
|
|
|
ino_t inode;
|
2006-01-25 05:38:53 +05:30
|
|
|
dev_t dev;
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
if (!file_to_dev_inode(lname, &dev, &inode))
|
|
|
|
return plist;
|
|
|
|
if (search_dev_inode(ilist, dev, inode))
|
|
|
|
plist = add_pid(plist, pid);
|
|
|
|
return plist;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static pid_list *scan_dir_links(const char *dname, pid_t pid,
|
|
|
|
inode_list *ilist, pid_list *plist)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
|
|
|
DIR *d;
|
|
|
|
struct dirent *de;
|
|
|
|
char *lname;
|
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
d = opendir(dname);
|
|
|
|
if (!d)
|
2008-03-17 14:14:58 +05:30
|
|
|
return plist;
|
2007-04-12 04:50:53 +05:30
|
|
|
while ((de = readdir(d)) != NULL) {
|
|
|
|
lname = concat_subpath_file(dname, de->d_name);
|
|
|
|
if (lname == NULL)
|
|
|
|
continue;
|
2008-03-17 14:14:58 +05:30
|
|
|
plist = scan_link(lname, pid, ilist, plist);
|
2007-04-12 04:50:53 +05:30
|
|
|
free(lname);
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
2007-04-12 04:50:53 +05:30
|
|
|
closedir(d);
|
2008-03-17 14:14:58 +05:30
|
|
|
return plist;
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2008-05-28 18:14:22 +05:30
|
|
|
/* NB: does chdir internally */
|
2008-03-17 14:14:58 +05:30
|
|
|
static pid_list *scan_proc_pids(inode_list *ilist)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
|
|
|
DIR *d;
|
|
|
|
struct dirent *de;
|
|
|
|
pid_t pid;
|
2008-03-17 14:14:58 +05:30
|
|
|
pid_list *plist;
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2008-05-28 20:27:58 +05:30
|
|
|
xchdir("/proc");
|
2008-05-28 18:14:22 +05:30
|
|
|
d = opendir("/proc");
|
2007-04-12 04:50:53 +05:30
|
|
|
if (!d)
|
2008-03-17 14:14:58 +05:30
|
|
|
return NULL;
|
|
|
|
|
|
|
|
plist = NULL;
|
2007-04-12 04:50:53 +05:30
|
|
|
while ((de = readdir(d)) != NULL) {
|
2008-03-17 14:14:58 +05:30
|
|
|
pid = (pid_t)bb_strtou(de->d_name, NULL, 10);
|
|
|
|
if (errno)
|
2007-04-12 04:50:53 +05:30
|
|
|
continue;
|
2008-03-17 14:14:58 +05:30
|
|
|
if (chdir(de->d_name) < 0)
|
2006-01-25 05:38:53 +05:30
|
|
|
continue;
|
2008-03-17 14:14:58 +05:30
|
|
|
plist = scan_link("cwd", pid, ilist, plist);
|
|
|
|
plist = scan_link("exe", pid, ilist, plist);
|
|
|
|
plist = scan_link("root", pid, ilist, plist);
|
|
|
|
plist = scan_dir_links("fd", pid, ilist, plist);
|
|
|
|
plist = scan_dir_links("lib", pid, ilist, plist);
|
|
|
|
plist = scan_dir_links("mmap", pid, ilist, plist);
|
|
|
|
plist = scan_pid_maps("maps", pid, ilist, plist);
|
|
|
|
xchdir("/proc");
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|
|
|
|
closedir(d);
|
2008-03-17 14:14:58 +05:30
|
|
|
return plist;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static int print_pid_list(pid_list *plist)
|
2006-03-15 03:15:38 +05:30
|
|
|
{
|
2008-03-17 14:14:58 +05:30
|
|
|
while (plist != NULL) {
|
|
|
|
printf("%u ", (unsigned)plist->pid);
|
|
|
|
plist = plist->next;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2005-10-28 18:35:12 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
static int kill_pid_list(pid_list *plist, int sig)
|
2006-03-15 03:15:38 +05:30
|
|
|
{
|
2005-10-28 18:35:12 +05:30
|
|
|
pid_t mypid = getpid();
|
|
|
|
int success = 1;
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
while (plist != NULL) {
|
|
|
|
if (plist->pid != mypid) {
|
|
|
|
if (kill(plist->pid, sig) != 0) {
|
|
|
|
bb_perror_msg("kill pid %u", (unsigned)plist->pid);
|
2006-01-25 05:38:53 +05:30
|
|
|
success = 0;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
}
|
2008-03-17 14:14:58 +05:30
|
|
|
plist = plist->next;
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|
|
|
|
return success;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int fuser_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int fuser_main(int argc UNUSED_PARAM, char **argv)
|
2006-03-15 03:15:38 +05:30
|
|
|
{
|
2008-03-17 14:14:58 +05:30
|
|
|
pid_list *plist;
|
|
|
|
inode_list *ilist;
|
|
|
|
char **pp;
|
2005-10-28 18:35:12 +05:30
|
|
|
dev_t dev;
|
|
|
|
ino_t inode;
|
2008-03-17 14:14:58 +05:30
|
|
|
unsigned port;
|
|
|
|
int opt;
|
|
|
|
int success;
|
|
|
|
int killsig;
|
|
|
|
/*
|
|
|
|
fuser [options] FILEs or PORT/PROTOs
|
|
|
|
Find processes which use FILEs or PORTs
|
|
|
|
-m Find processes which use same fs as FILEs
|
|
|
|
-4 Search only IPv4 space
|
|
|
|
-6 Search only IPv6 space
|
|
|
|
-s Silent: just exit with 0 if any processes are found
|
|
|
|
-k Kill found processes (otherwise display PIDs)
|
|
|
|
-SIGNAL Signal to send (default: TERM)
|
|
|
|
*/
|
|
|
|
/* Handle -SIGNAL. Oh my... */
|
|
|
|
killsig = SIGTERM;
|
|
|
|
pp = argv;
|
|
|
|
while (*++pp) {
|
|
|
|
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;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
2007-04-12 04:50:53 +05:30
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
opt = getopt32(argv, OPTION_STRING);
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
ilist = NULL;
|
|
|
|
pp = argv;
|
|
|
|
while (*pp) {
|
|
|
|
char *proto = parse_net_arg(*pp, &port);
|
|
|
|
if (proto) { /* PORT/PROTO */
|
|
|
|
ilist = scan_proc_net(proto, port, ilist);
|
|
|
|
free(proto);
|
|
|
|
} else { /* FILE */
|
|
|
|
if (!file_to_dev_inode(*pp, &dev, &inode))
|
2009-03-04 00:17:56 +05:30
|
|
|
bb_perror_msg_and_die("can't open '%s'", *pp);
|
2008-03-17 14:14:58 +05:30
|
|
|
ilist = add_inode(ilist, dev, inode);
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
2008-03-17 14:14:58 +05:30
|
|
|
pp++;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
2008-03-17 14:14:58 +05:30
|
|
|
|
2008-05-28 18:14:22 +05:30
|
|
|
plist = scan_proc_pids(ilist); /* changes dir to "/proc" */
|
2008-03-17 14:14:58 +05:30
|
|
|
|
|
|
|
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);
|
2007-04-12 04:50:53 +05:30
|
|
|
}
|
2008-03-17 14:14:58 +05:30
|
|
|
return (success != 1); /* 0 == success */
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|