Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | /* vi: set sw=4 ts=4: */
/*
* tiny fuser implementation
*
* Copyright 2004 Tony J. White
*
* May be distributed under the conditions of the
* GNU Library General Public License
*/
#include "libbb.h"
#define MAX_LINE 255
#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),
};
typedef struct inode_list {
struct inode_list *next;
ino_t inode;
dev_t dev;
} inode_list;
typedef struct pid_list {
struct pid_list *next;
pid_t pid;
} pid_list;
static dev_t find_socket_dev(void)
{
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;
}
return 0;
}
static int file_to_dev_inode(const char *filename, dev_t *dev, ino_t *inode)
{
struct stat f_stat;
if (stat(filename, &f_stat))
return 0;
*inode = f_stat.st_ino;
*dev = f_stat.st_dev;
return 1;
}
static char *parse_net_arg(const char *arg, unsigned *port)
{
char path[20], tproto[5];
if (sscanf(arg, "%u/%4s", port, tproto) != 2)
return NULL;
sprintf(path, "/proc/net/%s", tproto);
if (access(path, R_OK) != 0)
return NULL;
return xstrdup(tproto);
}
static pid_list *add_pid(pid_list *plist, pid_t pid)
{
pid_list *curr = plist;
while (curr != NULL) {
if (curr->pid == pid)
return plist;
curr = curr->next;
}
curr = xmalloc(sizeof(pid_list));
curr->pid = pid;
curr->next = plist;
return curr;
}
static inode_list *add_inode(inode_list *ilist, dev_t dev, ino_t inode)
{
inode_list *curr = ilist;
while (curr != NULL) {
if (curr->inode == inode && curr->dev == dev)
return ilist;
curr = curr->next;
}
curr = xmalloc(sizeof(inode_list));
curr->dev = dev;
curr->inode = inode;
curr->next = ilist;
return curr;
}
static inode_list *scan_proc_net(const char *proto,
unsigned port, inode_list *ilist)
{
char path[20], line[MAX_LINE + 1];
ino_t tmp_inode;
dev_t tmp_dev;
long long uint64_inode;
unsigned tmp_port;
FILE *f;
tmp_dev = find_socket_dev();
sprintf(path, "/proc/net/%s", proto);
f = fopen_for_read(path);
if (!f)
return ilist;
while (fgets(line, MAX_LINE, f)) {
char addr[68];
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
) {
int len = strlen(addr);
if (len == 8 && (option_mask32 & OPT_IP6))
continue;
if (len > 8 && (option_mask32 & OPT_IP4))
continue;
if (tmp_port == port) {
tmp_inode = uint64_inode;
ilist = add_inode(ilist, tmp_dev, tmp_inode);
}
}
}
fclose(f);
return ilist;
}
static int search_dev_inode(inode_list *ilist, dev_t dev, ino_t inode)
{
while (ilist) {
if (ilist->dev == dev) {
if (option_mask32 & OPT_MOUNT)
return 1;
if (ilist->inode == inode)
return 1;
}
ilist = ilist->next;
}
return 0;
}
static pid_list *scan_pid_maps(const char *fname, pid_t pid,
inode_list *ilist, pid_list *plist)
{
FILE *file;
char line[MAX_LINE + 1];
int major, minor;
ino_t inode;
long long uint64_inode;
dev_t dev;
file = fopen_for_read(fname);
if (!file)
return plist;
while (fgets(line, MAX_LINE, file)) {
if (sscanf(line, "%*s %*s %*s %x:%x %llu", &major, &minor, &uint64_inode) != 3)
continue;
inode = uint64_inode;
if (major == 0 && minor == 0 && inode == 0)
continue;
dev = makedev(major, minor);
if (search_dev_inode(ilist, dev, inode))
plist = add_pid(plist, pid);
}
fclose(file);
return plist;
}
static pid_list *scan_link(const char *lname, pid_t pid,
inode_list *ilist, pid_list *plist)
{
ino_t inode;
dev_t dev;
if (!file_to_dev_inode(lname, &dev, &inode))
return plist;
if (search_dev_inode(ilist, dev, inode))
plist = add_pid(plist, pid);
return plist;
}
static pid_list *scan_dir_links(const char *dname, pid_t pid,
inode_list *ilist, pid_list *plist)
{
DIR *d;
struct dirent *de;
char *lname;
d = opendir(dname);
if (!d)
return plist;
while ((de = readdir(d)) != NULL) {
lname = concat_subpath_file(dname, de->d_name);
if (lname == NULL)
continue;
plist = scan_link(lname, pid, ilist, plist);
free(lname);
}
closedir(d);
return plist;
}
/* NB: does chdir internally */
static pid_list *scan_proc_pids(inode_list *ilist)
{
DIR *d;
struct dirent *de;
pid_t pid;
pid_list *plist;
xchdir("/proc");
d = opendir("/proc");
if (!d)
return NULL;
plist = NULL;
while ((de = readdir(d)) != NULL) {
pid = (pid_t)bb_strtou(de->d_name, NULL, 10);
if (errno)
continue;
if (chdir(de->d_name) < 0)
continue;
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");
}
closedir(d);
return plist;
}
static int print_pid_list(pid_list *plist)
{
while (plist != NULL) {
printf("%u ", (unsigned)plist->pid);
plist = plist->next;
}
bb_putchar('\n');
return 1;
}
static int kill_pid_list(pid_list *plist, int sig)
{
pid_t mypid = getpid();
int success = 1;
while (plist != NULL) {
if (plist->pid != mypid) {
if (kill(plist->pid, sig) != 0) {
bb_perror_msg("kill pid %u", (unsigned)plist->pid);
success = 0;
}
}
plist = plist->next;
}
return success;
}
int fuser_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int fuser_main(int argc UNUSED_PARAM, char **argv)
{
pid_list *plist;
inode_list *ilist;
char **pp;
dev_t dev;
ino_t inode;
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;
}
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))
bb_perror_msg_and_die("can't open %s", *pp);
ilist = add_inode(ilist, dev, inode);
}
pp++;
}
plist = scan_proc_pids(ilist); /* changes dir to "/proc" */
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);
}
return (success != 1); /* 0 == success */
}
|