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
|
/*
* rdev.c -- readdev() function for lsof library
*/
/*
* 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.
*/
#include "../machine.h"
#if defined(USE_LIB_READDEV)
# if !defined(lint)
static char copyright[] =
"@(#) Copyright 1997 Purdue Research Foundation.\nAll rights reserved.\n";
static char *rcsid = "$Id: rdev.c,v 1.12 2008/10/21 16:13:23 abe Exp $";
# endif /* !defined(lint) */
#include "../lsof.h"
_PROTOTYPE(static int rmdupdev,(struct l_dev ***dp, int n, char *nm));
/*
* To use this source file:
*
* 1. Define DIRTYPE as:
*
* #define DIRTYPE direct
* or #define DIRTYPE dirent
*
* 2. Define HASDNAMLEN if struct DIRTYPE has a d_namlen element, giving
* the length of d_name.
*
* 3. Define the RDEV_EXPDEV macro to apply special handling to device
* numbers, as required. For example, for EP/IX 2.1.1:
*
* #define RDEV_EXPDEV(n) expdev(n)
*
* to use the expdev() function to expand device numbers. If
* no RDEV_EXPDEV macro is defined, it defaults to:
*
* #define RDEV_EXPDEV(n) (n)
*
* 4. Define HASBLKDEV to request that information on S_IFBLK devices be
* recorded in BDevtp[].
*
* Define NOWARNBLKDEV to suppress the issuance of a warning when no
* block devices are found.
*
* 5. Define RDEV_STATFN to be a stat function other than stat() or lstat()
* -- e.g.,
*
* #define RDEV_STATFN private_stat
*
* 6. Define HAS_STD_CLONE to request that clone device information be stored
* in standard clone structures (defined in lsof.h and addressed via
* Clone). If HAS_STD_CLONE is defined, these must also be defined:
*
* a. Define CLONEMAJ to be the name of the constant or
* variable that defines the clone major device -- e.g.,
*
* #define CLONEMAJ CloneMaj
*
* b. Define HAVECLONEMAJ to be the name of the variable that
* contains the status of the clone major device -- e.g.,
*
* #define HAVECLONEMAJ HaveCloneMaj
*
* Define HAS_STD_CLONE to be 1 if readdev() is expected to build the
* clone table, the clone table is cached (if HASDCACHE is defined), and
* there is a function to clear the cache table when the device table must
* be reloaded. (See dvch.c for naming the clone cache build and clear
* functions.)
*/
# if !defined(RDEV_EXPDEV)
#define RDEV_EXPDEV(n) (n)
# endif /* !defined(RDEV_EXPDEV) */
# if !defined(RDEV_STATFN)
# if defined(USE_STAT)
#define RDEV_STATFN stat
# else /* !defined(USE_STAT) */
#define RDEV_STATFN lstat
# endif /* defined(USE_STAT) */
# endif /* !defined(RDEV_STATFN) */
/*
* readdev() - read device names, modes and types
*/
void
readdev(skip)
int skip; /* skip device cache read if 1 */
{
# if defined(HAS_STD_CLONE) && HAS_STD_CLONE==1
struct clone *c;
# endif /* defined(HAS_STD_CLONE) && HAS_STD_CLONE==1 */
# if defined(HASDCACHE)
int dcrd;
# endif /* defined(HASDCACHE) */
DIR *dfp;
int dnamlen;
struct DIRTYPE *dp;
char *fp = (char *)NULL;
int i = 0;
# if defined(HASBLKDEV)
int j = 0;
# endif /* defined(HASBLKDEV) */
char *path = (char *)NULL;
MALLOC_S pl;
struct stat sb;
if (Sdev)
return;
# if defined(HASDCACHE)
/*
* Read device cache, as directed.
*/
if (!skip) {
if (DCstate == 2 || DCstate == 3) {
if ((dcrd = read_dcache()) == 0)
return;
}
} else
dcrd = 1;
# endif /* defined(HASDCACHE) */
Dstkn = Dstkx = 0;
Dstk = (char **)NULL;
(void) stkdir("/dev");
/*
* Unstack the next /dev or /dev/<subdirectory> directory.
*/
while (--Dstkx >= 0) {
if (!(dfp = OpenDir(Dstk[Dstkx]))) {
# if defined(WARNDEVACCESS)
if (!Fwarn) {
(void) fprintf(stderr, "%s: WARNING: can't open: ", Pn);
safestrprt(Dstk[Dstkx], stderr, 1);
}
# endif /* defined(WARNDEVACCESS) */
(void) free((FREE_P *)Dstk[Dstkx]);
Dstk[Dstkx] = (char *)NULL;
continue;
}
if (path) {
(void) free((FREE_P *)path);
path = (char *)NULL;
}
if (!(path = mkstrcat(Dstk[Dstkx], -1, "/", 1, (char *)NULL, -1,
&pl)))
{
(void) fprintf(stderr, "%s: no space for: ", Pn);
safestrprt(Dstk[Dstkx], stderr, 1);
Exit(1);
}
(void) free((FREE_P *)Dstk[Dstkx]);
Dstk[Dstkx] = (char *)NULL;
/*
* Scan the directory.
*/
for (dp = ReadDir(dfp); dp; dp = ReadDir(dfp)) {
if (dp->d_ino == 0 || dp->d_name[0] == '.')
continue;
/*
* Form the full path name and get its status.
*/
# if defined(HASDNAMLEN)
dnamlen = (int)dp->d_namlen;
# else /* !defined(HASDNAMLEN) */
dnamlen = (int)strlen(dp->d_name);
# endif /* defined(HASDNAMLEN) */
if (fp) {
(void) free((FREE_P *)fp);
fp = (char *)NULL;
}
if (!(fp = mkstrcat(path, pl, dp->d_name, dnamlen,
(char *)NULL, -1, (MALLOC_S *)NULL)))
{
(void) fprintf(stderr, "%s: no space for: ", Pn);
safestrprt(path, stderr, 0);
safestrprtn(dp->d_name, dnamlen, stderr, 1);
Exit(1);
}
if (RDEV_STATFN(fp, &sb) != 0) {
if (errno == ENOENT) /* a sym link to nowhere? */
continue;
# if defined(WARNDEVACCESS)
if (!Fwarn) {
int errno_save = errno;
(void) fprintf(stderr, "%s: can't stat ", Pn);
safestrprt(fp, stderr, 0);
(void) fprintf(stderr, ": %s\n", strerror(errno_save));
}
# endif /* defined(WARNDEVACCESS) */
continue;
}
/*
* If it's a subdirectory, stack its name for later
* processing.
*/
if ((sb.st_mode & S_IFMT) == S_IFDIR) {
(void) stkdir(fp);
continue;
}
if ((sb.st_mode & S_IFMT) == S_IFCHR) {
/*
* Save character device information in Devtp[].
*/
if (i >= Ndev) {
Ndev += DEVINCR;
if (!Devtp)
Devtp = (struct l_dev *)malloc(
(MALLOC_S)(sizeof(struct l_dev)*Ndev));
else
Devtp = (struct l_dev *)realloc((MALLOC_P *)Devtp,
(MALLOC_S)(sizeof(struct l_dev)*Ndev));
if (!Devtp) {
(void) fprintf(stderr,
"%s: no space for character device\n", Pn);
Exit(1);
}
}
Devtp[i].rdev = RDEV_EXPDEV(sb.st_rdev);
Devtp[i].inode = (INODETYPE)sb.st_ino;
if (!(Devtp[i].name = mkstrcpy(fp, (MALLOC_S *)NULL))) {
(void) fprintf(stderr,
"%s: no space for device name: ", Pn);
safestrprt(fp, stderr, 1);
Exit(1);
}
Devtp[i].v = 0;
# if defined(HAS_STD_CLONE) && HAS_STD_CLONE==1
if (HAVECLONEMAJ && GET_MAJ_DEV(Devtp[i].rdev) == CLONEMAJ)
{
/*
* Record clone device information.
*/
if (!(c = (struct clone *)malloc(sizeof(struct clone))))
{
(void) fprintf(stderr,
"%s: no space for clone device: ", Pn);
safestrprt(fp, stderr, 1);
Exit(1);
}
c->dx = i;
c->next = Clone;
Clone = c;
}
# endif /* defined(HAS_STD_CLONE) && HAS_STD_CLONE==1 */
i++;
}
# if defined(HASBLKDEV)
if ((sb.st_mode & S_IFMT) == S_IFBLK) {
/*
* Save block device information in BDevtp[].
*/
if (j >= BNdev) {
BNdev += DEVINCR;
if (!BDevtp)
BDevtp = (struct l_dev *)malloc(
(MALLOC_S)(sizeof(struct l_dev)*BNdev));
else
BDevtp = (struct l_dev *)realloc((MALLOC_P *)BDevtp,
(MALLOC_S)(sizeof(struct l_dev)*BNdev));
if (!BDevtp) {
(void) fprintf(stderr,
"%s: no space for block device\n", Pn);
Exit(1);
}
}
BDevtp[j].name = fp;
fp = (char *)NULL;
BDevtp[j].inode = (INODETYPE)sb.st_ino;
BDevtp[j].rdev = RDEV_EXPDEV(sb.st_rdev);
BDevtp[j].v = 0;
j++;
}
# endif /* defined(HASBLKDEV) */
}
(void) CloseDir(dfp);
}
/*
* Free any allocated space.
*/
if (!Dstk) {
(void) free((FREE_P *)Dstk);
Dstk = (char **)NULL;
}
if (fp)
(void) free((FREE_P *)fp);
if (path)
(void) free((FREE_P *)path);
# if defined(HASBLKDEV)
/*
* Reduce the BDevtp[] (optional) and Devtp[] tables to their minimum
* sizes; allocate and build sort pointer lists; and sort the tables by
* device number.
*/
if (BNdev) {
if (BNdev > j) {
BNdev = j;
BDevtp = (struct l_dev *)realloc((MALLOC_P *)BDevtp,
(MALLOC_S)(sizeof(struct l_dev) * BNdev));
}
if (!(BSdev = (struct l_dev **)malloc(
(MALLOC_S)(sizeof(struct l_dev *) * BNdev))))
{
(void) fprintf(stderr,
"%s: no space for block device sort pointers\n", Pn);
Exit(1);
}
for (j = 0; j < BNdev; j++) {
BSdev[j] = &BDevtp[j];
}
(void) qsort((QSORT_P *)BSdev, (size_t)BNdev,
(size_t)sizeof(struct l_dev *), compdev);
BNdev = rmdupdev(&BSdev, BNdev, "block");
}
# if !defined(NOWARNBLKDEV)
else {
if (!Fwarn)
(void) fprintf(stderr,
"%s: WARNING: no block devices found\n", Pn);
}
# endif /* !defined(NOWARNBLKDEV) */
# endif /* defined(HASBLKDEV) */
if (Ndev) {
if (Ndev > i) {
Ndev = i;
Devtp = (struct l_dev *)realloc((MALLOC_P *)Devtp,
(MALLOC_S)(sizeof(struct l_dev) * Ndev));
}
if (!(Sdev = (struct l_dev **)malloc(
(MALLOC_S)(sizeof(struct l_dev *) * Ndev))))
{
(void) fprintf(stderr,
"%s: no space for character device sort pointers\n", Pn);
Exit(1);
}
for (i = 0; i < Ndev; i++) {
Sdev[i] = &Devtp[i];
}
(void) qsort((QSORT_P *)Sdev, (size_t)Ndev,
(size_t)sizeof(struct l_dev *), compdev);
Ndev = rmdupdev(&Sdev, Ndev, "char");
} else {
(void) fprintf(stderr, "%s: no character devices found\n", Pn);
Exit(1);
}
# if defined(HASDCACHE)
/*
* Write device cache file, as required.
*/
if (DCstate == 1 || (DCstate == 3 && dcrd))
write_dcache();
# endif /* defined(HASDCACHE) */
}
# if defined(HASDCACHE)
/*
* rereaddev() - reread device names, modes and types
*/
void
rereaddev()
{
(void) clr_devtab();
# if defined(DCACHE_CLR)
(void) DCACHE_CLR();
# endif /* defined(DCACHE_CLR) */
readdev(1);
DCunsafe = 0;
}
#endif /* defined(HASDCACHE) */
/*
* rmdupdev() - remove duplicate (major/minor/inode) devices
*/
static int
rmdupdev(dp, n, nm)
struct l_dev ***dp; /* device table pointers address */
int n; /* number of pointers */
char *nm; /* device table name for error message */
{
# if defined(HAS_STD_CLONE) && HAS_STD_CLONE==1
struct clone *c, *cp;
# endif /* defined(HAS_STD_CLONE) && HAS_STD_CLONE==1 */
int i, j, k;
struct l_dev **p;
for (i = j = 0, p = *dp; i < n ;) {
for (k = i + 1; k < n; k++) {
if (p[i]->rdev != p[k]->rdev || p[i]->inode != p[k]->inode)
break;
# if defined(HAS_STD_CLONE) && HAS_STD_CLONE==1
/*
* See if we're deleting a duplicate clone device. If so,
* delete its clone table entry.
*/
for (c = Clone, cp = (struct clone *)NULL;
c;
cp = c, c = c->next)
{
if (&Devtp[c->dx] != p[k])
continue;
if (!cp)
Clone = c->next;
else
cp->next = c->next;
(void) free((FREE_P *)c);
break;
}
# endif /* defined(HAS_STD_CLONE) && HAS_STD_CLONE==1 */
}
if (i != j)
p[j] = p[i];
j++;
i = k;
}
if (n == j)
return(n);
if (!(*dp = (struct l_dev **)realloc((MALLOC_P *)*dp,
(MALLOC_S)(j * sizeof(struct l_dev *)))))
{
(void) fprintf(stderr, "%s: can't realloc %s device pointers\n",
Pn, nm);
Exit(1);
}
return(j);
}
# if defined(HASDCACHE)
/*
* vfy_dev() - verify a device table entry (usually when DCunsafe == 1)
*
* Note: rereads entire device table when an entry can't be verified.
*/
int
vfy_dev(dp)
struct l_dev *dp; /* device table pointer */
{
struct stat sb;
if (!DCunsafe || dp->v)
return(1);
if (RDEV_STATFN(dp->name, &sb) != 0
|| dp->rdev != RDEV_EXPDEV(sb.st_rdev)
|| dp->inode != sb.st_ino) {
(void) rereaddev();
return(0);
}
dp->v = 1;
return(1);
}
# endif /* defined(HASDCACHE) */
#else /* !defined(USE_LIB_READDEV) */
char rdev_d1[] = "d"; char *rdev_d2 = rdev_d1;
#endif /* defined(USE_LIB_READDEV) */
|