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
|
|
|
|
*
|
|
|
|
* May be distributed under the conditions of the
|
|
|
|
* GNU Library General Public License
|
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-10-28 18:35:12 +05:30
|
|
|
|
|
|
|
#define FUSER_PROC_DIR "/proc"
|
|
|
|
#define FUSER_MAX_LINE 255
|
|
|
|
|
|
|
|
#define FUSER_OPT_MOUNT 1
|
|
|
|
#define FUSER_OPT_KILL 2
|
2006-01-25 05:38:53 +05:30
|
|
|
#define FUSER_OPT_SILENT 4
|
|
|
|
#define FUSER_OPT_IP6 8
|
|
|
|
#define FUSER_OPT_IP4 16
|
2005-10-28 18:35:12 +05:30
|
|
|
|
|
|
|
typedef struct inode_list {
|
|
|
|
ino_t inode;
|
|
|
|
dev_t dev;
|
|
|
|
struct inode_list *next;
|
|
|
|
} inode_list;
|
|
|
|
|
|
|
|
typedef struct pid_list {
|
|
|
|
pid_t pid;
|
|
|
|
struct pid_list *next;
|
|
|
|
} pid_list;
|
|
|
|
|
2006-01-25 05:38:53 +05:30
|
|
|
static int fuser_option(char *option)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
|
|
|
int opt = 0;
|
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
if (!option[0])
|
|
|
|
return 0;
|
|
|
|
if (option[0] != '-')
|
|
|
|
return 0;
|
2006-01-21 03:18:06 +05:30
|
|
|
++option;
|
2007-04-12 04:50:53 +05:30
|
|
|
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);
|
2006-01-21 03:18:06 +05:30
|
|
|
++option;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
return opt;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fuser_file_to_dev_inode(const char *filename,
|
|
|
|
dev_t *dev, ino_t *inode)
|
|
|
|
{
|
|
|
|
struct stat f_stat;
|
2007-04-12 04:50:53 +05:30
|
|
|
if ((stat(filename, &f_stat)) < 0)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2006-03-15 03:15:38 +05:30
|
|
|
static int fuser_find_socket_dev(dev_t *dev)
|
|
|
|
{
|
2005-10-28 18:35:12 +05:30
|
|
|
int fd = socket(PF_INET, SOCK_DGRAM,0);
|
|
|
|
struct stat buf;
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2005-10-28 18:35:12 +05:30
|
|
|
if (fd >= 0 && (fstat(fd, &buf)) == 0) {
|
2007-04-12 04:50:53 +05:30
|
|
|
*dev = buf.st_dev;
|
2005-10-28 18:35:12 +05:30
|
|
|
close(fd);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-01-25 05:38:53 +05:30
|
|
|
static int fuser_parse_net_arg(const char *filename,
|
|
|
|
const char **proto, int *port)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2005-10-28 21:38:47 +05:30
|
|
|
char path[sizeof(FUSER_PROC_DIR)+12], tproto[5];
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
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;
|
2006-08-03 23:28:17 +05:30
|
|
|
*proto = xstrdup(tproto);
|
2006-01-25 05:38:53 +05:30
|
|
|
return 1;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static int fuser_add_pid(pid_list *plist, pid_t pid)
|
|
|
|
{
|
2006-01-25 05:38:53 +05:30
|
|
|
pid_list *curr = NULL, *last = NULL;
|
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
if (plist->pid == 0)
|
|
|
|
plist->pid = pid;
|
2006-01-25 05:38:53 +05:30
|
|
|
curr = plist;
|
2007-04-12 04:50:53 +05:30
|
|
|
while (curr != NULL) {
|
|
|
|
if (curr->pid == pid)
|
|
|
|
return 1;
|
2006-01-25 05:38:53 +05:30
|
|
|
last = curr;
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
2007-04-12 04:50:53 +05:30
|
|
|
curr = xzalloc(sizeof(pid_list));
|
2006-01-25 05:38:53 +05:30
|
|
|
last->next = curr;
|
|
|
|
curr->pid = pid;
|
2007-04-12 04:50:53 +05:30
|
|
|
/*curr->next = NULL;*/
|
2006-01-25 05:38:53 +05:30
|
|
|
return 1;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static int fuser_add_inode(inode_list *ilist, dev_t dev, ino_t inode)
|
|
|
|
{
|
2006-01-25 05:38:53 +05:30
|
|
|
inode_list *curr = NULL, *last = NULL;
|
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
if (!ilist->inode && !ilist->dev) {
|
2005-10-28 18:35:12 +05:30
|
|
|
ilist->dev = dev;
|
|
|
|
ilist->inode = inode;
|
|
|
|
}
|
2006-01-25 05:38:53 +05:30
|
|
|
curr = ilist;
|
2007-04-12 04:50:53 +05:30
|
|
|
while (curr != NULL) {
|
|
|
|
if (curr->inode == inode && curr->dev == dev)
|
|
|
|
return 1;
|
2006-01-25 05:38:53 +05:30
|
|
|
last = curr;
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
2007-04-12 04:50:53 +05:30
|
|
|
curr = xzalloc(sizeof(inode_list));
|
2006-01-25 05:38:53 +05:30
|
|
|
last->next = curr;
|
|
|
|
curr->dev = dev;
|
|
|
|
curr->inode = inode;
|
2007-04-12 04:50:53 +05:30
|
|
|
/*curr->next = NULL;*/
|
2006-01-25 05:38:53 +05:30
|
|
|
return 1;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2006-01-25 05:38:53 +05:30
|
|
|
static int fuser_scan_proc_net(int opts, const char *proto,
|
|
|
|
int port, inode_list *ilist)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2005-10-28 21:38:47 +05:30
|
|
|
char path[sizeof(FUSER_PROC_DIR)+12], line[FUSER_MAX_LINE+1];
|
2005-10-28 18:35:12 +05:30
|
|
|
char addr[128];
|
|
|
|
ino_t tmp_inode;
|
|
|
|
dev_t tmp_dev;
|
2007-04-12 04:50:53 +05:30
|
|
|
long long uint64_inode;
|
2005-10-28 18:35:12 +05:30
|
|
|
int tmp_port;
|
|
|
|
FILE *f;
|
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
if (!fuser_find_socket_dev(&tmp_dev))
|
|
|
|
tmp_dev = 0;
|
|
|
|
sprintf(path, FUSER_PROC_DIR "/net/%s", proto);
|
|
|
|
|
|
|
|
f = fopen(path, "r");
|
|
|
|
if (!f)
|
|
|
|
return 0;
|
|
|
|
while (fgets(line, FUSER_MAX_LINE, f)) {
|
|
|
|
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
|
|
|
|
) {
|
|
|
|
if (strlen(addr) == 8 && (opts & FUSER_OPT_IP6))
|
|
|
|
continue;
|
|
|
|
if (strlen(addr) > 8 && (opts & FUSER_OPT_IP4))
|
|
|
|
continue;
|
|
|
|
if (tmp_port == port) {
|
2005-10-28 21:38:47 +05:30
|
|
|
tmp_inode = uint64_inode;
|
2005-10-28 18:35:12 +05:30
|
|
|
fuser_add_inode(ilist, tmp_dev, tmp_inode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-01-25 05:38:53 +05:30
|
|
|
static int fuser_search_dev_inode(int opts, inode_list *ilist,
|
|
|
|
dev_t dev, ino_t inode)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
2006-01-25 05:38:53 +05:30
|
|
|
inode_list *curr;
|
|
|
|
curr = ilist;
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
while (curr) {
|
|
|
|
if ((opts & FUSER_OPT_MOUNT) && curr->dev == dev)
|
2005-10-28 18:35:12 +05:30
|
|
|
return 1;
|
2007-04-12 04:50:53 +05:30
|
|
|
if (curr->inode == inode && curr->dev == dev)
|
2005-10-28 18:35:12 +05:30
|
|
|
return 1;
|
2006-01-25 05:38:53 +05:30
|
|
|
curr = curr->next;
|
|
|
|
}
|
|
|
|
return 0;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static int fuser_scan_pid_maps(int opts, const char *fname, pid_t pid,
|
2006-01-25 05:38:53 +05:30
|
|
|
inode_list *ilist, pid_list *plist)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
|
|
|
FILE *file;
|
|
|
|
char line[FUSER_MAX_LINE + 1];
|
|
|
|
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;
|
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
file = fopen(fname, "r");
|
|
|
|
if (!file)
|
|
|
|
return 0;
|
2005-10-28 18:35:12 +05:30
|
|
|
while (fgets(line, FUSER_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);
|
2007-04-12 04:50:53 +05:30
|
|
|
if (fuser_search_dev_inode(opts, ilist, dev, inode)) {
|
2005-10-28 18:35:12 +05:30
|
|
|
fuser_add_pid(plist, pid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-01-25 05:38:53 +05:30
|
|
|
static int fuser_scan_link(int opts, 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
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
if (!fuser_file_to_dev_inode(lname, &dev, &inode))
|
|
|
|
return 0;
|
|
|
|
if (fuser_search_dev_inode(opts, ilist, dev, inode))
|
2005-10-28 18:35:12 +05:30
|
|
|
fuser_add_pid(plist, pid);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fuser_scan_dir_links(int opts, const char *dname, pid_t pid,
|
|
|
|
inode_list *ilist, pid_list *plist)
|
|
|
|
{
|
|
|
|
DIR *d;
|
|
|
|
struct dirent *de;
|
|
|
|
char *lname;
|
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
d = opendir(dname);
|
|
|
|
if (!d)
|
|
|
|
return 0;
|
|
|
|
while ((de = readdir(d)) != NULL) {
|
|
|
|
lname = concat_subpath_file(dname, de->d_name);
|
|
|
|
if (lname == NULL)
|
|
|
|
continue;
|
|
|
|
fuser_scan_link(opts, lname, pid, ilist, plist);
|
|
|
|
free(lname);
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
2007-04-12 04:50:53 +05:30
|
|
|
closedir(d);
|
2005-10-28 18:35:12 +05:30
|
|
|
return 1;
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2006-01-25 05:38:53 +05:30
|
|
|
static int fuser_scan_proc_pids(int opts, inode_list *ilist, pid_list *plist)
|
2005-10-28 18:35:12 +05:30
|
|
|
{
|
|
|
|
DIR *d;
|
|
|
|
struct dirent *de;
|
|
|
|
pid_t pid;
|
|
|
|
char *dname;
|
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
d = opendir(FUSER_PROC_DIR);
|
|
|
|
if (!d)
|
|
|
|
return 0;
|
|
|
|
while ((de = readdir(d)) != NULL) {
|
2005-10-28 18:35:12 +05:30
|
|
|
pid = (pid_t)atoi(de->d_name);
|
2007-04-12 04:50:53 +05:30
|
|
|
if (!pid)
|
|
|
|
continue;
|
2005-10-28 21:38:47 +05:30
|
|
|
dname = concat_subpath_file(FUSER_PROC_DIR, de->d_name);
|
2007-04-12 04:50:53 +05:30
|
|
|
if (chdir(dname) < 0) {
|
2005-10-28 18:35:12 +05:30
|
|
|
free(dname);
|
2006-01-25 05:38:53 +05:30
|
|
|
continue;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
free(dname);
|
|
|
|
fuser_scan_link(opts, "cwd", pid, ilist, plist);
|
|
|
|
fuser_scan_link(opts, "exe", pid, ilist, plist);
|
|
|
|
fuser_scan_link(opts, "root", pid, ilist, plist);
|
|
|
|
fuser_scan_dir_links(opts, "fd", pid, ilist, plist);
|
|
|
|
fuser_scan_dir_links(opts, "lib", pid, ilist, plist);
|
|
|
|
fuser_scan_dir_links(opts, "mmap", pid, ilist, plist);
|
|
|
|
fuser_scan_pid_maps(opts, "maps", pid, ilist, plist);
|
2005-10-28 21:38:47 +05:30
|
|
|
chdir("..");
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|
|
|
|
closedir(d);
|
2005-10-28 18:35:12 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-03-15 03:15:38 +05:30
|
|
|
static int fuser_print_pid_list(pid_list *plist)
|
|
|
|
{
|
2006-01-21 03:18:06 +05:30
|
|
|
pid_list *curr = plist;
|
2005-10-28 18:35:12 +05:30
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
if (plist == NULL)
|
|
|
|
return 0;
|
|
|
|
while (curr != NULL) {
|
|
|
|
if (curr->pid > 0)
|
|
|
|
printf("%d ", curr->pid);
|
2005-10-28 18:35:12 +05:30
|
|
|
curr = curr->next;
|
|
|
|
}
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2005-10-28 18:35:12 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-03-15 03:15:38 +05:30
|
|
|
static int fuser_kill_pid_list(pid_list *plist, int sig)
|
|
|
|
{
|
2006-01-25 05:38:53 +05:30
|
|
|
pid_list *curr = plist;
|
2005-10-28 18:35:12 +05:30
|
|
|
pid_t mypid = getpid();
|
|
|
|
int success = 1;
|
|
|
|
|
2007-04-12 04:50:53 +05:30
|
|
|
if (plist == NULL)
|
|
|
|
return 0;
|
|
|
|
while (curr != NULL) {
|
|
|
|
if (curr->pid > 0 && curr->pid != mypid) {
|
2006-01-25 05:38:53 +05:30
|
|
|
if (kill(curr->pid, sig) != 0) {
|
2007-04-12 04:50:53 +05:30
|
|
|
bb_perror_msg("kill pid '%d'", curr->pid);
|
2006-01-25 05:38:53 +05:30
|
|
|
success = 0;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
}
|
2006-01-25 05:38:53 +05:30
|
|
|
curr = curr->next;
|
|
|
|
}
|
|
|
|
return success;
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
|
2007-02-03 22:58:39 +05:30
|
|
|
int fuser_main(int argc, char **argv);
|
2006-03-15 03:15:38 +05:30
|
|
|
int fuser_main(int argc, char **argv)
|
|
|
|
{
|
2007-04-12 04:50:53 +05:30
|
|
|
/*static -- huh???*/ int opt = 0; /* FUSER_OPT_ */
|
|
|
|
|
2005-10-28 18:35:12 +05:30
|
|
|
int port, i, optn;
|
|
|
|
int* fni; /* file name indexes of argv */
|
|
|
|
int fnic = 0; /* file name index count */
|
|
|
|
const char *proto;
|
|
|
|
dev_t dev;
|
|
|
|
ino_t inode;
|
|
|
|
pid_list *pids;
|
|
|
|
inode_list *inodes;
|
|
|
|
int killsig = SIGTERM;
|
|
|
|
int success = 1;
|
|
|
|
|
2006-04-22 03:34:05 +05:30
|
|
|
if (argc < 2)
|
|
|
|
bb_show_usage();
|
|
|
|
|
2005-10-28 18:35:12 +05:30
|
|
|
fni = xmalloc(sizeof(int));
|
2007-04-12 04:50:53 +05:30
|
|
|
for (i = 1; i < argc; i++) {
|
2005-10-28 18:35:12 +05:30
|
|
|
optn = fuser_option(argv[i]);
|
2007-04-12 04:50:53 +05:30
|
|
|
if (optn)
|
|
|
|
opt |= optn;
|
|
|
|
else if (argv[i][0] == '-') {
|
2006-12-23 06:36:21 +05:30
|
|
|
killsig = get_signum(argv[i]+1);
|
2007-04-12 04:50:53 +05:30
|
|
|
if (killsig < 0)
|
2005-10-28 18:35:12 +05:30
|
|
|
killsig = SIGTERM;
|
2007-04-12 04:50:53 +05:30
|
|
|
} else {
|
2005-10-28 18:35:12 +05:30
|
|
|
fni = xrealloc(fni, sizeof(int) * (fnic+2));
|
|
|
|
fni[fnic++] = i;
|
|
|
|
}
|
|
|
|
}
|
2007-04-12 04:50:53 +05:30
|
|
|
|
|
|
|
if (!fnic)
|
|
|
|
return 1;
|
2005-10-28 18:35:12 +05:30
|
|
|
|
|
|
|
inodes = xmalloc(sizeof(inode_list));
|
2007-04-12 04:50:53 +05:30
|
|
|
for (i = 0; i < fnic; i++) {
|
|
|
|
if (fuser_parse_net_arg(argv[fni[i]], &proto, &port)) {
|
2005-10-28 18:35:12 +05:30
|
|
|
fuser_scan_proc_net(opt, proto, port, inodes);
|
2007-04-12 04:50:53 +05:30
|
|
|
} else {
|
|
|
|
if (!fuser_file_to_dev_inode(argv[fni[i]], &dev, &inode)) {
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(inodes);
|
2006-10-14 07:53:43 +05:30
|
|
|
bb_perror_msg_and_die("cannot open '%s'", argv[fni[i]]);
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
fuser_add_inode(inodes, dev, inode);
|
|
|
|
}
|
|
|
|
}
|
2006-07-13 00:47:55 +05:30
|
|
|
pids = xmalloc(sizeof(pid_list));
|
2005-10-28 18:35:12 +05:30
|
|
|
success = fuser_scan_proc_pids(opt, inodes, pids);
|
|
|
|
/* if the first pid in the list is 0, none have been found */
|
2007-04-12 04:50:53 +05:30
|
|
|
if (pids->pid == 0)
|
|
|
|
success = 0;
|
|
|
|
if (success) {
|
|
|
|
if (opt & FUSER_OPT_KILL) {
|
2005-10-28 18:35:12 +05:30
|
|
|
success = fuser_kill_pid_list(pids, killsig);
|
2007-04-12 04:50:53 +05:30
|
|
|
} else if (!(opt & FUSER_OPT_SILENT)) {
|
2005-10-28 18:35:12 +05:30
|
|
|
success = fuser_print_pid_list(pids);
|
|
|
|
}
|
|
|
|
}
|
2007-04-12 04:50:53 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP) {
|
|
|
|
free(pids);
|
|
|
|
free(inodes);
|
|
|
|
}
|
2005-10-28 18:35:12 +05:30
|
|
|
/* return 0 on (success == 1) 1 otherwise */
|
|
|
|
return (success != 1);
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|