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
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
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;
|
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
|
|
|
|
struct globals {
|
|
|
|
pid_list *pid_list_head;
|
|
|
|
inode_list *inode_list_head;
|
|
|
|
};
|
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
|
|
|
#define INIT_G() do { } while (0)
|
|
|
|
|
|
|
|
|
|
|
|
static void add_pid(const pid_t pid)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2010-05-23 00:11:08 +05:30
|
|
|
pid_list **curr = &G.pid_list_head;
|
|
|
|
|
|
|
|
while (*curr) {
|
|
|
|
if ((*curr)->pid == pid)
|
|
|
|
return;
|
|
|
|
curr = &(*curr)->next;
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|
2010-05-23 00:11:08 +05:30
|
|
|
|
|
|
|
*curr = xzalloc(sizeof(pid_list));
|
|
|
|
(*curr)->pid = pid;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
static void add_inode(const struct stat *st)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2010-05-23 00:11:08 +05:30
|
|
|
inode_list **curr = &G.inode_list_head;
|
|
|
|
|
|
|
|
while (*curr) {
|
|
|
|
if ((*curr)->dev == st->st_dev
|
|
|
|
&& (*curr)->inode == st->st_ino
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
curr = &(*curr)->next;
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|
2010-05-23 00:11:08 +05:30
|
|
|
|
|
|
|
*curr = xzalloc(sizeof(inode_list));
|
|
|
|
(*curr)->dev = st->st_dev;
|
|
|
|
(*curr)->inode = st->st_ino;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
static void scan_proc_net(const char *path, unsigned port)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2010-05-23 00:11:08 +05:30
|
|
|
char line[MAX_LINE + 1];
|
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;
|
2010-05-23 00:11:08 +05:30
|
|
|
struct stat st;
|
2010-06-07 02:26:12 +05:30
|
|
|
int fd;
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2010-06-07 02:26:12 +05:30
|
|
|
/* find socket dev */
|
|
|
|
st.st_dev = 0;
|
|
|
|
fd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (fd >= 0) {
|
|
|
|
fstat(fd, &st);
|
|
|
|
close(fd);
|
|
|
|
}
|
2007-04-12 04:50:53 +05:30
|
|
|
|
2008-07-22 04:35:26 +05:30
|
|
|
f = fopen_for_read(path);
|
2007-04-12 04:50:53 +05:30
|
|
|
if (!f)
|
2010-05-23 00:11:08 +05:30
|
|
|
return;
|
2008-03-17 14:14:58 +05:30
|
|
|
|
|
|
|
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) {
|
2010-05-23 00:11:08 +05:30
|
|
|
st.st_ino = uint64_inode;
|
|
|
|
add_inode(&st);
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
static int search_dev_inode(const struct stat *st)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2010-05-23 00:11:08 +05:30
|
|
|
inode_list *ilist = G.inode_list_head;
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
while (ilist) {
|
2010-05-23 00:11:08 +05:30
|
|
|
if (ilist->dev == st->st_dev) {
|
2008-03-17 14:14:58 +05:30
|
|
|
if (option_mask32 & OPT_MOUNT)
|
|
|
|
return 1;
|
2010-05-23 00:11:08 +05:30
|
|
|
if (ilist->inode == st->st_ino)
|
2008-03-17 14:14:58 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
ilist = ilist->next;
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|
|
|
|
return 0;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
static void scan_pid_maps(const char *fname, pid_t pid)
|
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;
|
2006-01-31 04:18:39 +05:30
|
|
|
long long uint64_inode;
|
2010-05-23 00:11:08 +05:30
|
|
|
struct stat st;
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2008-07-22 04:35:26 +05:30
|
|
|
file = fopen_for_read(fname);
|
2007-04-12 04:50:53 +05:30
|
|
|
if (!file)
|
2010-05-23 00:11:08 +05:30
|
|
|
return;
|
|
|
|
|
2008-03-17 14:14:58 +05:30
|
|
|
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;
|
2010-05-23 00:11:08 +05:30
|
|
|
st.st_ino = uint64_inode;
|
|
|
|
if (major == 0 && minor == 0 && st.st_ino == 0)
|
2007-04-12 04:50:53 +05:30
|
|
|
continue;
|
2010-05-23 00:11:08 +05:30
|
|
|
st.st_dev = makedev(major, minor);
|
|
|
|
if (search_dev_inode(&st))
|
|
|
|
add_pid(pid);
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
static void scan_link(const char *lname, pid_t pid)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2010-05-23 00:11:08 +05:30
|
|
|
struct stat st;
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
if (stat(lname, &st) >= 0) {
|
|
|
|
if (search_dev_inode(&st))
|
|
|
|
add_pid(pid);
|
|
|
|
}
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
static void scan_dir_links(const char *dname, pid_t pid)
|
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)
|
2010-05-23 00:11:08 +05:30
|
|
|
return;
|
|
|
|
|
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;
|
2010-05-23 00:11:08 +05:30
|
|
|
scan_link(lname, pid);
|
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);
|
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 */
|
2010-05-23 00:11:08 +05:30
|
|
|
static void scan_proc_pids(void)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
|
|
|
DIR *d;
|
|
|
|
struct dirent *de;
|
|
|
|
pid_t pid;
|
|
|
|
|
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)
|
2010-05-23 00:11:08 +05:30
|
|
|
return;
|
2008-03-17 14:14:58 +05:30
|
|
|
|
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;
|
2010-05-23 00:11:08 +05:30
|
|
|
scan_link("cwd", pid);
|
|
|
|
scan_link("exe", pid);
|
|
|
|
scan_link("root", pid);
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
scan_dir_links("fd", pid);
|
|
|
|
scan_dir_links("lib", pid);
|
|
|
|
scan_dir_links("mmap", pid);
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
scan_pid_maps("maps", pid);
|
|
|
|
xchdir("/proc");
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|
2010-05-23 00:11:08 +05:30
|
|
|
closedir(d);
|
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;
|
2010-05-23 00:11:08 +05:30
|
|
|
pid_t mypid;
|
2008-03-17 14:14:58 +05:30
|
|
|
char **pp;
|
2010-05-23 00:11:08 +05:30
|
|
|
struct stat st;
|
2008-03-17 14:14:58 +05:30
|
|
|
unsigned port;
|
|
|
|
int opt;
|
2010-05-23 00:11:08 +05:30
|
|
|
int exitcode;
|
2008-03-17 14:14:58 +05:30
|
|
|
int killsig;
|
|
|
|
/*
|
2010-05-23 00:11:08 +05:30
|
|
|
fuser [OPTIONS] FILE or PORT/PROTO
|
2008-03-17 14:14:58 +05:30
|
|
|
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
|
2010-05-23 00:11:08 +05:30
|
|
|
-s Don't display PIDs
|
|
|
|
-k Kill found processes
|
|
|
|
-SIGNAL Signal to send (default: KILL)
|
2008-03-17 14:14:58 +05:30
|
|
|
*/
|
|
|
|
/* Handle -SIGNAL. Oh my... */
|
2010-05-23 00:11:08 +05:30
|
|
|
killsig = SIGKILL; /* yes, the default is not SIGTERM */
|
2008-03-17 14:14:58 +05:30
|
|
|
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
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
opt_complementary = "-1"; /* at least one param */
|
2008-03-17 14:14:58 +05:30
|
|
|
opt = getopt32(argv, OPTION_STRING);
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
pp = argv;
|
|
|
|
while (*pp) {
|
2010-06-07 02:26:12 +05:30
|
|
|
/* parse net arg */
|
|
|
|
char path[20], tproto[5];
|
|
|
|
if (sscanf(*pp, "%u/%4s", &port, tproto) != 2)
|
|
|
|
goto file;
|
|
|
|
sprintf(path, "/proc/net/%s", tproto);
|
|
|
|
if (access(path, R_OK) != 0) { /* PORT/PROTO */
|
2010-05-23 00:11:08 +05:30
|
|
|
scan_proc_net(path, port);
|
2008-03-17 14:14:58 +05:30
|
|
|
} else { /* FILE */
|
2010-06-07 02:26:12 +05:30
|
|
|
file:
|
2010-05-23 00:11:08 +05:30
|
|
|
xstat(*pp, &st);
|
|
|
|
add_inode(&st);
|
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
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
scan_proc_pids(); /* changes dir to "/proc" */
|
2008-03-17 14:14:58 +05:30
|
|
|
|
2010-05-23 00:11:08 +05:30
|
|
|
mypid = getpid();
|
|
|
|
plist = G.pid_list_head;
|
|
|
|
while (1) {
|
|
|
|
if (!plist)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
if (plist->pid != mypid)
|
|
|
|
break;
|
|
|
|
plist = plist->next;
|
2007-04-12 04:50:53 +05:30
|
|
|
}
|
2010-05-23 00:11:08 +05:30
|
|
|
|
|
|
|
exitcode = EXIT_SUCCESS;
|
|
|
|
do {
|
|
|
|
if (plist->pid != mypid) {
|
|
|
|
if (opt & OPT_KILL) {
|
|
|
|
if (kill(plist->pid, killsig) != 0) {
|
|
|
|
bb_perror_msg("kill pid %u", (unsigned)plist->pid);
|
|
|
|
exitcode = EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!(opt & OPT_SILENT)) {
|
|
|
|
printf("%u ", (unsigned)plist->pid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
plist = plist->next;
|
|
|
|
} while (plist);
|
|
|
|
|
|
|
|
if (!(opt & (OPT_SILENT))) {
|
|
|
|
bb_putchar('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
return exitcode;
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|