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
|
|
|
|
*/
|
|
|
|
|
2006-06-03 02:26:16 +05:30
|
|
|
#include "busybox.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;
|
|
|
|
|
|
|
|
if(!(strlen(option))) return 0;
|
|
|
|
if(option[0] != '-') return 0;
|
2006-01-21 03:18:06 +05:30
|
|
|
++option;
|
2005-10-28 18:35:12 +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(
|
2006-01-25 05:38:53 +05:30
|
|
|
"Unsupported option '%c'", *option);
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
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;
|
|
|
|
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) {
|
2005-10-28 21:38:47 +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
|
|
|
|
2005-10-28 21:38:47 +05:30
|
|
|
if((sscanf(filename, "%d/%4s", port, tproto)) != 2) return 0;
|
|
|
|
sprintf(path, "%s/net/%s", FUSER_PROC_DIR, tproto);
|
2005-10-28 18:35:12 +05:30
|
|
|
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;
|
|
|
|
|
|
|
|
if(plist->pid == 0) plist->pid = pid;
|
|
|
|
curr = plist;
|
|
|
|
while(curr != NULL) {
|
|
|
|
if(curr->pid == pid) return 1;
|
|
|
|
last = curr;
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
|
|
|
curr = xmalloc(sizeof(pid_list));
|
|
|
|
last->next = curr;
|
|
|
|
curr->pid = pid;
|
2005-10-28 18:35:12 +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;
|
|
|
|
|
|
|
|
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;
|
|
|
|
while(curr != NULL) {
|
|
|
|
if(curr->inode == inode && curr->dev == dev) return 1;
|
|
|
|
last = curr;
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
|
|
|
curr = xmalloc(sizeof(inode_list));
|
|
|
|
last->next = curr;
|
|
|
|
curr->dev = dev;
|
|
|
|
curr->inode = inode;
|
2005-10-28 18:35:12 +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;
|
2006-01-31 04:18:39 +05:30
|
|
|
long long uint64_inode;
|
2005-10-28 18:35:12 +05:30
|
|
|
int tmp_port;
|
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
if(!fuser_find_socket_dev(&tmp_dev)) tmp_dev = 0;
|
2005-10-28 21:38:47 +05:30
|
|
|
sprintf(path, "%s/net/%s", FUSER_PROC_DIR, proto);
|
2005-10-28 18:35:12 +05:30
|
|
|
|
|
|
|
if (!(f = fopen(path, "r"))) return 0;
|
|
|
|
while(fgets(line, FUSER_MAX_LINE, f)) {
|
|
|
|
if(sscanf(line,
|
|
|
|
"%*d: %64[0-9A-Fa-f]:%x %*x:%*x %*x %*x:%*x "
|
2005-10-28 21:38:47 +05:30
|
|
|
"%*x:%*x %*x %*d %*d %llu",
|
|
|
|
addr, &tmp_port, &uint64_inode) == 3) {
|
2006-01-25 05:38:53 +05:30
|
|
|
if((strlen(addr) == 8) &&
|
2005-10-28 18:35:12 +05:30
|
|
|
(opts & FUSER_OPT_IP6)) continue;
|
|
|
|
else if((strlen(addr) > 8) &&
|
2006-01-25 05:38:53 +05:30
|
|
|
(opts & FUSER_OPT_IP4)) continue;
|
2005-10-28 18:35:12 +05:30
|
|
|
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
|
|
|
|
2006-01-25 05:38:53 +05:30
|
|
|
while(curr) {
|
2005-10-28 18:35:12 +05:30
|
|
|
if((opts & FUSER_OPT_MOUNT) && curr->dev == dev)
|
|
|
|
return 1;
|
|
|
|
if(curr->inode == inode && curr->dev == dev)
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (!(file = fopen(fname, "r"))) return 0;
|
|
|
|
while (fgets(line, FUSER_MAX_LINE, file)) {
|
2006-01-25 05:38:53 +05:30
|
|
|
if(sscanf(line, "%*s %*s %*s %x:%x %llu",
|
2005-10-28 21:38:47 +05:30
|
|
|
&major, &minor, &uint64_inode) != 3) continue;
|
|
|
|
inode = uint64_inode;
|
2005-10-28 18:35:12 +05:30
|
|
|
if(major == 0 && minor == 0 && inode == 0) continue;
|
2006-01-25 05:38:53 +05:30
|
|
|
dev = makedev(major, minor);
|
2005-10-28 18:35:12 +05:30
|
|
|
if(fuser_search_dev_inode(opts, ilist, dev, inode)) {
|
|
|
|
fuser_add_pid(plist, pid);
|
|
|
|
}
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2005-10-28 18:35:12 +05:30
|
|
|
}
|
|
|
|
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
|
|
|
|
|
|
|
if(!fuser_file_to_dev_inode(lname, &dev, &inode)) return 0;
|
2006-01-25 05:38: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);
|
|
|
|
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;
|
|
|
|
|
|
|
|
if((d = opendir(dname))) {
|
|
|
|
while((de = readdir(d)) != NULL) {
|
2005-10-28 21:38:47 +05:30
|
|
|
lname = concat_subpath_file(dname, de->d_name);
|
|
|
|
if(lname == NULL)
|
2005-10-28 18:35:12 +05:30
|
|
|
continue;
|
|
|
|
fuser_scan_link(opts, lname, pid, ilist, plist);
|
|
|
|
free(lname);
|
|
|
|
}
|
|
|
|
closedir(d);
|
|
|
|
}
|
|
|
|
else return 0;
|
|
|
|
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;
|
|
|
|
|
|
|
|
if(!(d = opendir(FUSER_PROC_DIR))) return 0;
|
|
|
|
while((de = readdir(d)) != NULL) {
|
|
|
|
pid = (pid_t)atoi(de->d_name);
|
|
|
|
if(!pid) continue;
|
2005-10-28 21:38:47 +05:30
|
|
|
dname = concat_subpath_file(FUSER_PROC_DIR, de->d_name);
|
2005-10-28 18:35:12 +05:30
|
|
|
if(chdir(dname) < 0) {
|
|
|
|
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
|
|
|
|
|
|
|
if(plist == NULL) return 0;
|
|
|
|
while(curr != NULL) {
|
|
|
|
if(curr->pid > 0) printf("%d ", curr->pid);
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
2006-10-26 06:07:00 +05:30
|
|
|
puts("");
|
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;
|
|
|
|
|
|
|
|
if(plist == NULL) return 0;
|
2006-01-25 05:38:53 +05:30
|
|
|
while(curr != NULL) {
|
2005-10-28 18:35:12 +05:30
|
|
|
if(curr->pid > 0 && curr->pid != mypid) {
|
2006-01-25 05:38:53 +05:30
|
|
|
if (kill(curr->pid, sig) != 0) {
|
|
|
|
bb_perror_msg(
|
2006-10-14 07:53:43 +05:30
|
|
|
"cannot 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)
|
|
|
|
{
|
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;
|
|
|
|
static int opt = 0; /* FUSER_OPT_ */
|
|
|
|
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));
|
2006-12-26 16:12:51 +05:30
|
|
|
for (i=1;i<argc;i++) {
|
2005-10-28 18:35:12 +05:30
|
|
|
optn = fuser_option(argv[i]);
|
2006-01-25 05:38:53 +05:30
|
|
|
if(optn) opt |= optn;
|
2005-10-28 18:35:12 +05:30
|
|
|
else if(argv[i][0] == '-') {
|
2006-12-23 06:36:21 +05:30
|
|
|
killsig = get_signum(argv[i]+1);
|
|
|
|
if(0 > killsig)
|
2005-10-28 18:35:12 +05:30
|
|
|
killsig = SIGTERM;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fni = xrealloc(fni, sizeof(int) * (fnic+2));
|
|
|
|
fni[fnic++] = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!fnic) return 1;
|
|
|
|
|
|
|
|
inodes = xmalloc(sizeof(inode_list));
|
2006-12-26 16:12:51 +05:30
|
|
|
for (i=0;i<fnic;i++) {
|
2005-10-28 18:35:12 +05:30
|
|
|
if(fuser_parse_net_arg(argv[fni[i]], &proto, &port)) {
|
|
|
|
fuser_scan_proc_net(opt, proto, port, inodes);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(!fuser_file_to_dev_inode(
|
|
|
|
argv[fni[i]], &dev, &inode)) {
|
2006-07-13 00:47:55 +05:30
|
|
|
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 */
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(pids);
|
|
|
|
free(inodes);
|
|
|
|
/* return 0 on (success == 1) 1 otherwise */
|
|
|
|
return (success != 1);
|
2006-01-25 05:38:53 +05:30
|
|
|
}
|