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
|
/*
* pdvn.c -- print device name functions 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_PRINTDEVNAME)
# if !defined(lint)
static char copyright[] =
"@(#) Copyright 1997 Purdue Research Foundation.\nAll rights reserved.\n";
static char *rcsid = "$Id: pdvn.c,v 1.8 2008/10/21 16:12:36 abe Exp $";
# endif /* !defined(lint) */
#include "../lsof.h"
#else /* !defined(USE_LIB_PRINTDEVNAME) */
char pdvn_d1[] = "d"; char *pdvn_d2 = pdvn_d1;
#endif /* defined(USE_LIB_PRINTDEVNAME) */
/*
* To use this source file:
*
* 1. Define USE_LIB_PRINTDEVNAME, or both.
*
* 2. Define HAS_STD_CLONE to enable standard clone searches in
* printdevname().
*
* 3. Define HASBLDKDEV to enable block device processing.
*/
/*
* Local definitions
*/
#define LIKE_BLK_SPEC "like block special"
#define LIKE_CHR_SPEC "like character special"
# if defined(USE_LIB_PRINTDEVNAME)
/*
* printdevname() - print block or character device name
*/
int
printdevname(dev, rdev, f, nty)
dev_t *dev; /* device */
dev_t *rdev; /* raw device */
int f; /* 1 = print trailing '\n' */
int nty; /* node type: N_BLK or N_CHR */
{
# if defined(HAS_STD_CLONE)
struct clone *c;
# endif /* defined(HAS_STD_CLONE) */
struct l_dev *dp;
int r = 1;
# if defined(HASDCACHE)
printdevname_again:
# endif /* defined(HASDCACHE) */
# if defined(HAS_STD_CLONE)
/*
* Search for clone if this is a character device on the same device as
* /dev (or /devices).
*/
if ((nty == N_CHR) && Lf->is_stream && Clone && (*dev == DevDev)) {
r = 0; /* Don't let lkupdev() rebuild the device cache,
* because when it has been rebuilt we want to
* search again for clones. */
readdev(0);
for (c = Clone; c; c = c->next) {
if (GET_MAJ_DEV(*rdev) == GET_MIN_DEV(Devtp[c->dx].rdev)) {
# if defined(HASDCACHE)
if (DCunsafe && !Devtp[c->dx].v && !vfy_dev(&Devtp[c->dx]))
goto printdevname_again;
# endif /* defined(HASDCACHE) */
safestrprt(Devtp[c->dx].name, stdout, f);
return(1);
}
}
}
# endif /* defined(HAS_STD_CLONE) */
/*
* Search appropriate device table for a full match.
*/
# if defined(HASBLKDEV)
if (nty == N_BLK)
dp = lkupbdev(dev, rdev, 1, r);
else
# endif /* defined(HASBLKDEV) */
dp = lkupdev(dev, rdev, 1, r);
if (dp) {
safestrprt(dp->name, stdout, f);
return(1);
}
/*
* Search device table for a match without inode number and dev.
*/
# if defined(HASBLKDEV)
if (nty == N_BLK)
dp = lkupbdev(&DevDev, rdev, 0, r);
else
# endif /* defined(HASBLKDEV) */
dp = lkupdev(&DevDev, rdev, 0, r);
if (dp) {
/*
* A match was found. Record it as a name column addition.
*/
char *cp, *ttl;
int len;
ttl = (nty == N_BLK) ? LIKE_BLK_SPEC : LIKE_CHR_SPEC;
len = (int)(1 + strlen(ttl) + 1 + strlen(dp->name) + 1);
if (!(cp = (char *)malloc((MALLOC_S)(len + 1)))) {
(void) fprintf(stderr, "%s: no nma space for: (%s %s)\n",
Pn, ttl, dp->name);
Exit(1);
}
(void) snpf(cp, len + 1, "(%s %s)", ttl, dp->name);
(void) add_nma(cp, len);
(void) free((MALLOC_P *)cp);
return(0);
}
# if defined(HASDCACHE)
/*
* We haven't found a match.
*
* If rebuilding the device cache was suppressed and the device cache is
* "unsafe," rebuild it.
*/
if (!r && DCunsafe) {
(void) rereaddev();
goto printdevname_again;
}
# endif /* defined(HASDCACHE) */
return(0);
}
#endif /* defined(USE_LIB_PRINTDEVNAME) */
|