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 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
|
/*
* dnode.c - Linux node functions for /proc-based lsof
*/
/*
* Copyright 1997 Purdue Research Foundation, West Lafayette, Indiana
* 47907. All rights reserved.
*
* Written by Victor A. Abell
*
* This software is not subject to any license of the American Telephone
* and Telegraph Company or the Regents of the University of California.
*
* Permission is granted to anyone to use this software for any purpose on
* any computer system, and to alter it and redistribute it freely, subject
* to the following restrictions:
*
* 1. Neither the authors nor Purdue University are responsible for any
* consequences of the use of this software.
*
* 2. The origin of this software must not be misrepresented, either by
* explicit claim or by omission. Credit to the authors and Purdue
* University must appear in documentation and sources.
*
* 3. Altered versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
*
* 4. This notice may not be removed or altered.
*/
#ifndef lint
static char copyright[] =
"@(#) Copyright 1997 Purdue Research Foundation.\nAll rights reserved.\n";
static char *rcsid = "$Id: dnode.c,v 1.22 2012/04/10 16:39:50 abe Exp $";
#endif
#include "lsof.h"
/*
* Local definitions
*/
#define OFFSET_MAX ((off_t)0x7fffffff) /* this is defined in
* .../src/fs/locks.c and not
* in a header file */
#define PIDBUCKS 64 /* PID hash buckets */
#define HASHPID(pid) (((int)((pid * 31415) >> 3)) & (PIDBUCKS - 1))
/*
* Local structure definitions
*/
struct llock {
int pid;
dev_t dev;
INODETYPE inode;
char type;
struct llock *next;
};
/*
* Local definitions
*/
struct llock **LckH = (struct llock **)NULL; /* PID-hashed locks */
/*
* Local function prototypes
*/
_PROTOTYPE(static void check_lock,(void));
/*
* check_lock() - check lock for file *Lf, process *Lp
*/
static void
check_lock()
{
int h;
struct llock *lp;
h = HASHPID(Lp->pid);
for (lp = LckH[h]; lp; lp = lp->next) {
if (Lp->pid == lp->pid
&& Lf->dev == lp->dev
&& Lf->inode == lp->inode)
{
Lf->lock = lp->type;
return;
}
}
}
/*
* get_fields() - separate a line into fields
*/
int
get_fields(ln, sep, fr, eb, en)
char *ln; /* input line */
char *sep; /* separator list */
char ***fr; /* field pointer return address */
int *eb; /* indexes of fields where blank or an
* entry from the separator list may be
* embedded and are not separators
* (may be NULL) */
int en; /* number of entries in eb[] (may be
* zero) */
{
char *bp, *cp, *sp;
int i, j, n;
MALLOC_S len;
static char **fp = (char **)NULL;
static int nfpa = 0;
for (cp = ln, n = 0; cp && *cp;) {
for (bp = cp; *bp && (*bp == ' ' || *bp == '\t'); bp++);
;
if (!*bp || *bp == '\n')
break;
for (cp = bp; *cp; cp++) {
if (*cp == '\n') {
*cp = '\0';
break;
}
if (*cp == '\t') /* TAB is always a separator */
break;
if (*cp == ' ') {
/*
* See if this field may have an embedded space.
*/
if (!eb || !en)
break;
else {
for (i = j = 0; i < en; i++) {
if (eb[i] == n) {
j = 1;
break;
}
}
if (!j)
break;
}
}
if (sep) {
/*
* See if the character is in the separator list.
*/
for (sp = sep; *sp; sp++) {
if (*sp == *cp)
break;
}
if (*sp) {
/*
* See if this field may have an embedded separator.
*/
if (!eb || !en)
break;
else {
for (i = j = 0; i < en; i++) {
if (eb[i] == n) {
j = 1;
break;
}
}
if (!j)
break;
}
}
}
}
if (*cp)
*cp++ = '\0';
if (n >= nfpa) {
nfpa += 32;
len = (MALLOC_S)(nfpa * sizeof(char *));
if (fp)
fp = (char **)realloc((MALLOC_P *)fp, len);
else
fp = (char **)malloc(len);
if (!fp) {
(void) fprintf(stderr,
"%s: can't allocate %d bytes for field pointers.\n",
Pn, (int)len);
Exit(1);
}
}
fp[n++] = bp;
}
*fr = fp;
return(n);
}
/*
* get_locks() - get lock information from /proc/locks
*/
void
get_locks(p)
char *p; /* /proc lock path */
{
unsigned long bp, ep;
char buf[MAXPATHLEN], *ec, **fp;
dev_t dev;
int ex, i, h, mode, pid;
INODETYPE inode;
struct llock *lp, *np;
FILE *ls;
long maj, min;
char type;
static char *vbuf = (char *)NULL;
static size_t vsz = (size_t)0;
/*
* Destroy previous lock information.
*/
if (LckH) {
for (i = 0; i < PIDBUCKS; i++) {
for (lp = LckH[i]; lp; lp = np) {
np = lp->next;
(void) free((FREE_P *)lp);
}
LckH[i] = (struct llock *)NULL;
}
} else {
/*
* If first time, allocate the lock PID hash buckets.
*/
LckH = (struct llock **)calloc((MALLOC_S)PIDBUCKS,
sizeof(struct llock *));
if (!LckH) {
(void) fprintf(stderr,
"%s: can't allocate %d lock hash bytes\n",
Pn, (int)(sizeof(struct llock *) * PIDBUCKS));
Exit(1);
}
}
/*
* Open the /proc lock file, assign a page size buffer to its stream,
* and read it.
*/
if (!(ls = open_proc_stream(p, "r", &vbuf, &vsz, 0)))
return;
while (fgets(buf, sizeof(buf), ls)) {
if (get_fields(buf, ":", &fp, (int *)NULL, 0) < 10)
continue;
if (!fp[1] || strcmp(fp[1], "->") == 0)
continue;
/*
* Get lock type.
*/
if (!fp[3])
continue;
if (*fp[3] == 'R')
mode = 0;
else if (*fp[3] == 'W')
mode = 1;
else
continue;
/*
* Get PID.
*/
if (!fp[4] || !*fp[4])
continue;
pid = atoi(fp[4]);
/*
* Get device number.
*/
ec = (char *)NULL;
if (!fp[5] || !*fp[5]
|| (maj = strtol(fp[5], &ec, 16)) == LONG_MIN || maj == LONG_MAX
|| !ec || *ec)
continue;
ec = (char *)NULL;
if (!fp[6] || !*fp[6]
|| (min = strtol(fp[6], &ec, 16)) == LONG_MIN || min == LONG_MAX
|| !ec || *ec)
continue;
dev = (dev_t)makedev((int)maj, (int)min);
/*
* Get inode number.
*/
ec = (char *)NULL;
if (!fp[7] || !*fp[7]
|| (inode = strtoull(fp[7], &ec, 0)) == ULONG_MAX
|| !ec || *ec)
continue;
/*
* Get lock extent. Convert it and the lock type to a lock character.
*/
if (!fp[8] || !*fp[8] || !fp[9] || !*fp[9])
continue;
ec = (char *)NULL;
if ((bp = strtoul(fp[8], &ec, 0)) == ULONG_MAX || !ec || *ec)
continue;
if (!strcmp(fp[9], "EOF")) /* for Linux 2.4.x */
ep = OFFSET_MAX;
else {
ec = (char *)NULL;
if ((ep = strtoul(fp[9], &ec, 0)) == ULONG_MAX || !ec || *ec)
continue;
}
ex = ((off_t)bp == (off_t)0 && (off_t)ep == OFFSET_MAX) ? 1 : 0;
if (mode)
type = ex ? 'W' : 'w';
else
type = ex ? 'R' : 'r';
/*
* Look for this lock via the hash buckets.
*/
h = HASHPID(pid);
for (lp = LckH[h]; lp; lp = lp->next) {
if (lp->pid == pid
&& lp->dev == dev
&& lp->inode == inode
&& lp->type == type)
break;
}
if (lp)
continue;
/*
* Allocate a new llock structure and link it to the PID hash bucket.
*/
if (!(lp = (struct llock *)malloc(sizeof(struct llock)))) {
(void) snpf(buf, sizeof(buf), InodeFmt_d, inode);
(void) fprintf(stderr,
"%s: can't allocate llock: PID %d; dev %x; inode %s\n",
Pn, pid, (int)dev, buf);
Exit(1);
}
lp->pid = pid;
lp->dev = dev;
lp->inode = inode;
lp->type = type;
lp->next = LckH[h];
LckH[h] = lp;
}
(void) fclose(ls);
}
/*
* process_proc_node() - process file node
*/
void
process_proc_node(p, s, ss, l, ls)
char *p; /* node's readlink() path */
struct stat *s; /* stat() result for path */
int ss; /* *s status -- i.e., SB_* values */
struct stat *l; /* lstat() result for FD (NULL for
* others) */
int ls; /* *l status -- i.e., SB_* values */
{
mode_t access;
mode_t type = 0;
char *cp;
struct mounts *mp = (struct mounts *)NULL;
size_t sz;
char *tn;
/*
* Set the access mode, if possible.
*/
if (l && (ls & SB_MODE) && ((l->st_mode & S_IFMT) == S_IFLNK)) {
if ((access = l->st_mode & (S_IRUSR | S_IWUSR)) == S_IRUSR)
Lf->access = 'r';
else if (access == S_IWUSR)
Lf->access = 'w';
else
Lf->access = 'u';
}
/*
* Determine node type.
*/
if (ss & SB_MODE) {
type = s->st_mode & S_IFMT;
switch (type) {
case S_IFBLK:
Lf->ntype = Ntype = N_BLK;
break;
case S_IFCHR:
Lf->ntype = Ntype = N_CHR;
break;
case S_IFIFO:
Lf->ntype = Ntype = N_FIFO;
break;
case S_IFSOCK:
/* Lf->ntype = Ntype = N_REGLR; by alloc_lfile() */
process_proc_sock(p, s, ss, l, ls);
return;
}
}
if (Selinet)
return;
/*
* Save the device. If it is an NFS device, change the node type to N_NFS.
*/
if (ss & SB_DEV) {
Lf->dev = s->st_dev;
Lf->dev_def = 1;
}
if ((Ntype == N_CHR || Ntype == N_BLK)) {
if (ss & SB_RDEV) {
Lf->rdev = s->st_rdev;
Lf->rdev_def = 1;
}
}
if (Ntype == N_REGLR && (HasNFS == 2)) {
for (mp = readmnt(); mp; mp = mp->next) {
if ((mp->ty == N_NFS)
&& (mp->ds & SB_DEV) && Lf->dev_def && (Lf->dev == mp->dev)
&& (mp->dir && mp->dirl
&& !strncmp(mp->dir, p, mp->dirl))
) {
Lf->ntype = Ntype = N_NFS;
break;
}
}
}
/*
* Save the inode number.
*/
if (ss & SB_INO) {
Lf->inode = (INODETYPE)s->st_ino;
Lf->inp_ty = 1;
}
/*
* Check for a lock.
*/
if (Lf->dev_def && (Lf->inp_ty == 1))
(void) check_lock();
/*
* Save the file size.
*/
switch (Ntype) {
case N_BLK:
case N_CHR:
case N_FIFO:
if (!Fsize && l && (ls & SB_SIZE) && OffType) {
Lf->off = (SZOFFTYPE)l->st_size;
Lf->off_def = 1;
}
break;
default:
if (Foffset) {
if (l && (ls & SB_SIZE) && OffType) {
Lf->off = (SZOFFTYPE)l->st_size;
Lf->off_def = 1;
}
} else if (!Foffset || Fsize) {
if (ss & SB_SIZE) {
Lf->sz = (SZOFFTYPE)s->st_size;
Lf->sz_def = 1;
}
}
}
/*
* Record the link count.
*/
if (Fnlink && (ss & SB_NLINK)) {
Lf->nlink = (long)s->st_nlink;
Lf->nlink_def = 1;
if (Nlink && (Lf->nlink < Nlink))
Lf->sf |= SELNLINK;
}
/*
* Format the type name.
*/
if (ss & SB_MODE) {
switch (type) {
case S_IFBLK:
tn = "BLK";
break;
case S_IFCHR:
tn = "CHR";
break;
case S_IFDIR:
tn = "DIR";
break;
case S_IFIFO:
tn = "FIFO";
break;
case S_IFREG:
tn = "REG";
break;
case S_IFLNK:
tn = "LINK";
break;
case S_ISVTX:
tn = "VTXT";
break;
default:
(void) snpf(Lf->type, sizeof(Lf->type), "%04o",
((type >> 12) & 0xf));
tn = (char *)NULL;
}
} else
tn = "unknown";
if (tn)
(void) snpf(Lf->type, sizeof(Lf->type), "%s", tn);
/*
* Record an NFS file selection.
*/
if (Ntype == N_NFS && Fnfs)
Lf->sf |= SELNFS;
/*
* Test for specified file.
*/
if (Sfile
&& is_file_named(1, p, mp,
((type == S_IFCHR) || (type == S_IFBLK)) ? 1 : 0))
Lf->sf |= SELNM;
/*
* If no NAME information has been stored, store the path.
*
* Store the remote host and mount point for an NFS file.
*/
if (!Namech[0]) {
(void) snpf(Namech, Namechl, "%s", p);
if ((Ntype == N_NFS) && mp && mp->fsname) {
cp = endnm(&sz);
(void) snpf(cp, sz, " (%s)", mp->fsname);
}
}
if (Namech[0])
enter_nm(Namech);
}
|