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 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
|
/*
* dlsof.h - NetBSD header file for lsof
*/
/*
* Copyright 1994 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.
*/
/*
* $Id: dlsof.h,v 1.38 2006/03/28 21:54:08 abe Exp $
*/
#if !defined(NETBSD_LSOF_H)
# define NETBSD_LSOF_H 1
# include <stdlib.h>
# include <dirent.h>
# include <nlist.h>
# include <paths.h>
# include <setjmp.h>
# include <signal.h>
# include <string.h>
# include <unistd.h>
# if (!defined(NETBSDV) || __NetBSD_Version__ >= 999001900)
# include <sys/ptrace.h> /* pulled in by procfs.h, but needs to be pulled in before _KERNEL is defined */
# endif
# if defined(HASGETBOOTFILE)
# include <util.h>
# endif /* defined(HASGETBOOTFILE) */
# include <sys/filedesc.h>
# include <sys/mbuf.h>
# if defined(HAS_LWP_H)
# include <sys/lwp.h>
# endif /* defined(HAS_LWP_H) */
# if defined(NETBSDV) && __NetBSD_Version__ >= 106060000
# if __NetBSD_Version__ < 399001100
# define _KERNEL
# endif /* __NetBSD_Version__<399001100 */
# if defined(NETBSDV) && __NetBSD_Version__ < 399001100
struct buf; /* dummy for function prototype in <sys/buf.h> */
struct uio; /* dummy for function prototype in <sys/buf.h> */
# endif /* defined(NETBSDV && __NetBSD_Version__<399001100) */
# include <sys/ucred.h>
# endif /* defined(NETBSDV) && __NetBSD_Version__>=106060000 */
# if defined(NETBSDV) && __NetBSD_Version__ < 399001100
# include <sys/buf.h>
# endif /* defined(NETBSDV) && __NetBSD_Version__<399001100 */
# if defined(NETBSDV) && __NetBSD_Version__ >= 106060000 && \
__NetBSD_Version__ < 399001100
# undef _KERNEL
# endif /* defined(NETBSDV) && __NetBSD_Version__>=106060000 \
&& __NetBSD_Version__<399001100 */
# define NFS
# define m_stat mnt_stat
# if defined(NETBSDV) && __NetBSD_Version__ >= 106060000
# define _KERNEL
# endif /* defined(NETBSDV) && __NetBSD_Version__>=106060000 */
# if defined(NETBSDV) && NETBSDV >= 1003000
# define sockproto NETBSD_sockproto
# endif /* defined(NETBSDV) && NETBSDV>=1003000 */
# include <sys/mount.h>
# if defined(NETBSDV) && __NetBSD_Version__ >= 106060000
# undef _KERNEL
# endif /* defined(NETBSDV) && __NetBSD_Version__>=106060000 */
# include <rpc/types.h>
# include <sys/protosw.h>
# include <sys/socket.h>
# if defined(HASMSDOSFS)
# if HASMSDOSFS == 1
# include <msdosfs/bpb.h>
# include <msdosfs/fat.h>
# else /* HASMSDOSFS!=1 */
# include <fs/msdosfs/bpb.h>
# include <fs/msdosfs/fat.h>
# endif /* HASMSDOSFS==1 */
# if defined(NETBSDV) && __NetBSD_Version__ < 106060000
/*
* The netcred and netexport structures may be needed in the msdosfsmount
* structure, defined in <msdosfs/msdosfsmount.h>. So as a terrible hack,
* the lsof Configure script extracts the netcred and netexport structure
* definitions from <sys/mount.h> and places them in "netexport.h".
*
* When needed, the netcred and netexport structures netcred should really
* be obtained from <sys/mount.h>. However they are hidden in <sys/mount.h>
* under _KERNEL, and that sometimes can't be defined when including
* <sys/mount.h> without causing other seemingly insurmountable #include
* problems.
*
* THIS IS A TERRIBLE AND FRAGILE HACK!!! It might break if the netexport or
* netcred definitions change radically in <sys/mount.h>.
*
* It is no longer needed for NetBSD Versions 1.6F and above, or for OpenBSD
* versions 3.3 and above.
*/
# include "netexport.h"
# endif /* defined(NETBSDV) && __NetBSD_Version__<106060000 */
# define _KERNEL
# ifndef VFS_PROTOS
# define VFS_PROTOS(x)
# endif
struct nameidata; /* to satisfy a function prototype in msdosfsmount.h */
# include <msdosfs/msdosfsmount.h>
# undef _KERNEL
# include <msdosfs/direntry.h>
# include <msdosfs/denode.h>
# endif /* defined(HASMSDOSFS) */
# if defined(NETBSDV) && NETBSDV >= 1003000
# undef sockproto
# endif /* defined(NETBSDV) && NETBSDV>=1003000 */
# include <sys/socketvar.h>
# include <sys/un.h>
# include <sys/unpcb.h>
# include <net/route.h>
# include <netinet/in.h>
# include <netinet/in_systm.h>
# include <netinet/ip.h>
# if defined(HASIPv6) && defined(NETBSDV) && !defined(HASINRIAIPv6)
# include <netinet/ip6.h>
# include <netinet6/in6_pcb.h>
# endif /* defined(HASIPv6) && defined(NETBSDV) && !defined(HASINRIAIPv6) \
*/
# include <netinet/in_pcb.h>
# include <netinet/ip_var.h>
# include <netinet/tcp.h>
# include <netinet/tcpip.h>
# include <netinet/tcp_fsm.h>
# include <netinet/tcp_timer.h>
# include <netinet/tcp_var.h>
# include <sys/ucred.h>
# if defined(UVM)
/*
* Avoid conflicts with definitions in <vm/vm_param.h>.
*/
# undef FALSE
# undef TRUE
# endif /* defined(UVM) */
# include <sys/vnode.h>
# if defined(NETBSDV) && NETBSDV >= 1003000
/*
* Because late in the 1.3I NetBSD development cycle the sockproto structure
* was placed under _KERNEL in <sys/socket.h>, and because defining _KERNEL
* before #include'ing <sys/socket.h> causes other #include problems, the
* sockproto structure definition that might have been in <sys/socket.h> is
* renamed NETBSD_sockproto, and the following definition is used instead.
*
* Ugly, isn't it?
*/
struct sockproto {
u_short sp_family;
u_short sp_protocol;
};
# endif /* defined(NETBSDV) && NETBSDV>=1003000 */
# include <net/raw_cb.h>
# include <sys/domain.h>
# define pmap RPC_pmap
# include <rpc/rpc.h>
# include <rpc/pmap_prot.h>
# undef pmap
# define KERNEL
# include <ufs/ufs/quota.h>
# if defined(DIRBLKSIZ)
# define DIRENT_DIRBLKSIZ DIRBLKSIZ
# undef DIRBLKSIZ
# endif /* defined(DIRBLKSIZ) */
# if defined(HASI_FFS1)
# define _KERNEL
# include <ufs/ufs/ufsmount.h>
# undef _KERNEL
# endif /* defined(HASI_FFS1) */
# include <ufs/ufs/inode.h>
# if defined(DIRENT_BLKSIZ)
# define DIRBLKSIZ DIRENT_DIRBLKSIZ
# undef DIRENT_DIRBLKSIZ
# endif /*defined(DIRENT_BLKSIZ) */
# if defined(HASBUFQ_H)
# if defined(NETBSDV) && NETBSDV >= 2099010
# define _KERNEL
# include <sys/bufq.h>
# undef _KERNEL
# endif /* defined(NETBSDV) && NETBSDV>=2099010 */
# endif /* defined(HASBUFQ_H) */
# undef KERNEL
# include <ufs/mfs/mfsnode.h>
# if defined(HASTMPFS)
# include <fs/tmpfs/tmpfs.h>
# endif /* defined(HASTMPFS) */
# if defined(HASNFSPROTO)
# include <nfs/rpcv2.h>
# include <nfs/nfsproto.h>
# else /* !defined(HASNFSPROTO) */
# include <nfs/nfsv2.h>
# endif /* defined(HASNFSPROTO) */
# include <nfs/nfs.h>
# include <nfs/nfsnode.h>
# include <sys/proc.h>
# include <kvm.h>
# include <sys/sysctl.h>
# if defined(HASKVMGETPROC2)
# define P_ADDR p_paddr
# define P_COMM p_comm
# define P_CWDI p_cwdi
# define P_FD p_fd
# define P_PID p_pid
# define P_PGID p__pgid
# define P_PPID p_ppid
# define P_STAT p_stat
# define P_TRACEP p_tracep
# define P_UID p_uid
# define P_VMSPACE p_vmspace
# else /* !defined(HASKVMGETPROC2) */
# define P_ADDR kp_eproc.e_paddr
# define P_COMM kp_proc.p_comm
# define P_CWDI kp_proc.p_cwdi
# define P_FD kp_proc.p_fd
# define P_PID kp_proc.p_pid
# define P_PGID kp_eproc.e_pgid
# define P_PPID kp_eproc.e_ppid
# define P_STAT kp_proc.p_stat
# define P_TRACEP kp_proc.p_tracep
# define P_UID kp_eproc.e_ucred.cr_uid
# define P_VMSPACE kp_proc.p_vmspace
# endif /* defined(HASKVMGETPROC2) */
# if defined(HASFDESCFS)
# define _KERNEL
# include <miscfs/fdesc/fdesc.h>
# undef _KERNEL
# endif /* defined(HASFDESCFS) */
# if defined(HASKERNFS)
# define _KERNEL
# define Pkern __Pkern
# define Proot __Proot
# define Pnull __Pnull
# define Ptime __Ptime
# define Pint __Pint
# define Pstring __Pstring
# define Phostname __Phostname
# define Pavenrun __Pavenrun
# define Pdevice __Pdevice
# define Pmsgbuf __Pmsgbuf
# define Pipsecsadir __Pipsecsadir
# define Pipsecspdir __Pipsecspdir
# define Pipsecsa __Pipseca
# define Pipsecsp __Pipsecsp
# include <miscfs/kernfs/kernfs.h>
# undef _KERNEL
# undef Pkern
# undef Proot
# undef Pnull
# undef Ptime
# undef Pint
# undef Pstring
# undef Phostname
# undef Pavenrun
# undef Pdevice
# undef Pmsgbuf
# undef Pipsecsadir
# undef Pipsecspdir
# undef Pipseca
# undef Pipsecsp
# if defined(HASKERNFS_KFS_KT)
# define kf_kt kfs_kt
# endif /* defined(HASKERNFS_KFS_KT) */
# endif /* defined(HASKERNFS) */
# if defined(HASNULLFS)
# define _KERNEL
# if defined(NETBSDV) && NETBSDV >= 1005000 && \
__NetBSD_Version__ < 106060000
# include "netexport.h"
# endif /* defined(NETBSDV) && NETBSDV>=1005000 \
&& __NetBSD_Version__<106060000 */
# include <miscfs/nullfs/null.h>
# undef _KERNEL
# endif /* defined(HASNULLFS) */
# if defined(HASPROCFS)
# if defined(HASPROCFS_PFSROOT)
# define _KERNEL
# endif /* defined(HASPROCFS_PFSROOT) */
# if (defined(NETBSDV) && __NetBSD_Version__ >= 900000000)
# include <sys/ptrace.h>
# endif
/*
* Needed for definition of curlwp, which isn't used by this code base,
* but is exposed in procfs.h in an inline function declaration.
*/
# if (defined(NETBSDV) && __NetBSD_Version__ >= 999009300)
extern struct lwp *curlwp;
# endif
# include <miscfs/procfs/procfs.h>
# if defined(HASPROCFS_PFSROOT)
# undef _KERNEL
# define Proot PFSroot
# define Pproc PFSproc
# define Pcurproc PFScurproc
# define Pmem PFSmem
# define Pregs PFSregs
# define Pfile PFSfile
# define Pfpregs PFSfpregs
# define Pstatus PFSstatus
# define Pnote PFSnote
# define Pnotepg PFSnotepg
# if defined(NetBSDV)
# if NETBSDV >= 2000000
# define Pfd PFSfd
# endif /* NETBSDV>=2000000 */
# if NETBSDV >= 1006000
# define Pmap PFSmap
# define Pmaps PFSmaps
# endif /* NETBSDV>=1006000 */
# if NETBSDV < 8099000
# define Pctl PFSctl
# endif /* NETBSDV<8099000 */
# endif /* defined(NetBSDV) */
# endif /* defined(HASPROCFS_PFSROOT) */
# include <machine/reg.h>
# endif /* defined(HASPROCFS) */
# if defined(HASPTYFS)
# define _KERNEL
# include <fs/ptyfs/ptyfs.h>
# include <miscfs/specfs/specdev.h>
# undef _KERNEL
# endif /* defined(HASPTYFS) */
# define KERNEL
# define _KERNEL
# include <sys/file.h>
# include <sys/fcntl.h>
# if defined(HAS_ADVLOCK_ARGS)
struct vop_advlock_args;
# endif /* defined(HAS_ADVLOCK_ARGS) */
# if defined(DTYPE_KQUEUE)
# define HASKQUEUE /* has the kqueue file type */
# endif /* defined(DTYPE_KQUEUE) */
# include <sys/lockf.h>
# undef KERNEL
# undef _KERNEL
# if defined(UVM)
# define FALSE 0
# define TRUE 1
# include <uvm/uvm.h>
# endif /* defined(UVM) */
# if defined(HAS_UVM_INCL)
# include <uvm/uvm.h>
# include <uvm/uvm_map.h>
# include <uvm/uvm_object.h>
# include <uvm/uvm_pager.h>
# else /* !defined(HAS_UVM_INCL) */
# include <vm/vm.h>
# include <vm/vm_map.h>
# include <vm/vm_object.h>
# include <vm/vm_pager.h>
# endif /* defined(HAS_UVM_INCL) */
# if defined(HAS_SYS_PIPEH)
# include <sys/pipe.h>
# endif /* defined(HAS_SYS_PIPEH) */
# define COMP_P const void
# define DEVINCR 1024 /* device table malloc() increment */
typedef u_long KA_T;
# define KMEM "/dev/kmem"
# define MALLOC_P void
# define FREE_P MALLOC_P
# define MALLOC_S size_t
# if !defined(MAXSYSCMDL)
# define MAXSYSCMDL MAXCOMLEN /* max system command name length */
# endif /* !defined(MAXSYSCMDL) */
# if defined(N_UNIXV)
# define N_UNIX_TMP(x) # x
# define N_UNIX_STR(x) N_UNIX_TMP(x)
# define N_UNIX N_UNIX_STR(N_UNIXV)
# endif /* defined(N_UNIXV) */
# define QSORT_P void
# define READLEN_T int
# define STRNCPY_L size_t
# define SWAP "/dev/drum"
# define SZOFFTYPE unsigned long long
/* size and offset internal storage
* type */
# define SZOFFPSPEC \
"ll" /* SZOFFTYPE print specification \
* modifier */
/*
* Global storage definitions (including their structure definitions)
*/
extern struct file *Cfp;
extern kvm_t *Kd;
extern KA_T Kpa;
struct l_vfs {
KA_T addr; /* kernel address */
fsid_t fsid; /* file system ID */
# if defined(NETBSDV) && __NetBSD_Version__ >= 499002500
/* MFSNAMELEN was removed from the kernel source after 4.99.24 */
char type[sizeof(
((struct statvfs *)NULL)->f_fstypename)]; /* type of file system */
# else
char type[MFSNAMELEN]; /* type of file system */
# endif
char *dir; /* mounted directory */
char *fsname; /* file system name */
struct l_vfs *next; /* forward link */
};
extern struct l_vfs *Lvfs;
struct mounts {
char *dir; /* directory (mounted on) */
char *fsname; /* file system
* (symbolic links unresolved) */
char *fsnmres; /* file system
* (symbolic links resolved) */
dev_t dev; /* directory st_dev */
dev_t rdev; /* directory st_rdev */
INODETYPE inode; /* directory st_ino */
mode_t mode; /* directory st_mode */
mode_t fs_mode; /* file_system st_mode */
struct mounts *next; /* forward link */
};
# define X_NCACHE "ncache"
# define X_NCSIZE "ncsize"
# define NL_NAME n_name
extern int Np; /* number of kernel processes */
# if defined(HASKVMGETPROC2)
struct kinfo_proc2 *P; /* local process table copy */
# else /* ! defined(HASKVMGETPROC2) */
struct kinfo_proc *P; /* local process table copy */
# endif /* defined(HASKVMGETPROC2) */
extern int pgshift; /* kernel's page shift */
struct sfile {
char *aname; /* argument file name */
char *name; /* file name (after readlink()) */
char *devnm; /* device name (optional) */
dev_t dev; /* device */
dev_t rdev; /* raw device */
u_short mode; /* S_IFMT mode bits from stat() */
int type; /* file type: 0 = file system
* 1 = regular file */
INODETYPE i; /* inode number */
int f; /* file found flag */
struct sfile *next; /* forward link */
};
/*
* Definitions for rdev.c
*/
# define DIRTYPE dirent
# define HASDNAMLEN 1 /* struct DIRTYPE has d_namlen element */
/*
* Definitions for rnam.c and rnmh.c
*/
# if defined(HASNCACHE)
# if defined(NETBSDV) && NETBSDV >= 1002000
# include <stddef.h>
# endif /* defined(NETBSDV) && NETBSDV>=1002000 */
# include <sys/uio.h>
# include <sys/namei.h>
# define NCACHE namecache /* kernel's structure name */
# define NCACHE_NM nc_name /* name in NCACHE */
# define NCACHE_NMLEN nc_nlen /* name length in NCACHE */
# define NCACHE_NODEADDR nc_vp /* node address in NCACHE */
# define NCACHE_PARADDR nc_dvp /* parent node address in NCACHE */
# if defined(NETBSDV) && NETBSDV >= 1002000 && \
__NetBSD_Version__ < 999005400
# define NCACHE_NXT nc_hash.le_next /* link in NCACHE */
# else /* defined(NETBSDV) && NETBSDV>=1002000 */
# if defined(NetBSD1_0) && NetBSD < 1994101
# define NCACHE_NXT nc_nxt /* link in NCACHE */
# else /* !defined(NetBSD1_0) || NetBSD>=1994101 */
# define NCACHE_NXT nc_lru.tqe_next /* link in NCACHE */
# endif /* defined(NetBSD1_0) && NetBSD<1994101 */
# endif /* defined(NETBSDV) && NETBSDV>=1002000 */
# if defined(HASNCVPID)
# define NCACHE_PARID nc_dvpid /* parent node ID in NCACHE */
# define NCACHE_NODEID nc_vpid /* node ID in NCACHE */
# endif /* defined(HASNCVPID) */
# endif /* defined(HASNCACHE) */
# if defined(VV_ROOT) /* NetBSD >= 4.99.33 */
# define VNODE_VFLAG v_vflag
# define NCACHE_VROOT VV_ROOT
# else
# define VNODE_VFLAG v_flag
# define NCACHE_VROOT VROOT
# endif /* VV_ROOT */
struct lsof_context_dialect {};
#endif /* NETBSD_LSOF_H */
|