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
|
/*
* dsock.c - OpenBSD socket processing functions 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.
*/
#ifndef lint
static char copyright[] =
"@(#) Copyright 1994 Purdue Research Foundation.\nAll rights reserved.\n";
#endif
#include "common.h"
/*
* process_socket() - process socket
*/
void process_socket(struct lsof_context *ctx, struct kinfo_file *file) {
char *proto = NULL;
char *type = NULL;
char buf[64];
int flag;
uint32_t lport, fport;
/* Alloc Lf and set fd */
alloc_lfile(ctx, LSOF_FD_NUMERIC, file->fd_fd);
/* Type name */
switch (file->so_family) {
case AF_INET:
Lf->type = LSOF_FILE_IPV4;
break;
case AF_INET6:
Lf->type = LSOF_FILE_IPV6;
break;
case AF_UNIX:
Lf->type = LSOF_FILE_UNIX;
break;
case AF_ROUTE:
Lf->type = LSOF_FILE_ROUTE;
break;
}
/*
* Construct access code.
*/
if (file->fd_fd >= 0) {
if ((flag = (file->f_flag & (FREAD | FWRITE))) == FREAD)
Lf->access = LSOF_FILE_ACCESS_READ;
else if (flag == FWRITE)
Lf->access = LSOF_FILE_ACCESS_WRITE;
else if (flag == (FREAD | FWRITE))
Lf->access = LSOF_FILE_ACCESS_READ_WRITE;
}
/* Fill iproto */
switch (file->so_type) {
case SOCK_STREAM:
proto = "TCP";
break;
case SOCK_DGRAM:
proto = "UDP";
break;
case SOCK_RAW:
proto = "RAW";
break;
}
if (proto) {
(void)snpf(Lf->iproto, sizeof(Lf->iproto), "%s", proto);
Lf->inp_ty = 2;
}
if (file->so_family == AF_INET || file->so_family == AF_INET6) {
/* Show this entry if -i */
if (Fnet) {
/* Handle v4/v6 only */
if (FnetTy == 4 && file->so_family == AF_INET) {
Lf->sf |= SELNET;
} else if (FnetTy == 6 && file->so_family == AF_INET6) {
Lf->sf |= SELNET;
} else if (FnetTy == 0) {
Lf->sf |= SELNET;
}
}
/* Fill internet address info */
lport = ntohs(file->inp_lport);
fport = ntohs(file->inp_fport);
if (file->inp_fport) {
ent_inaddr(ctx, (unsigned char *)file->inp_laddru, lport,
(unsigned char *)file->inp_faddru, fport,
file->so_family);
} else {
/* No foreign address on LISTEN sockets */
ent_inaddr(ctx, (unsigned char *)file->inp_laddru, lport, NULL, 0,
file->so_family);
}
/* Fill TCP state */
if (file->so_type == SOCK_STREAM) {
Lf->lts.type = 0;
Lf->lts.state.i = file->t_state;
}
/* Fill dev with pcb if available */
if (file->inp_ppcb) {
(void)snpf(buf, sizeof(buf), "0x%" PRIx64, file->inp_ppcb);
enter_dev_ch(ctx, buf);
} else if (file->so_pcb && file->so_pcb != (uint64_t)(-1)) {
/* when running as non-root, -1 means not NULL */
(void)snpf(buf, sizeof(buf), "0x%" PRIx64, file->so_pcb);
enter_dev_ch(ctx, buf);
}
} else if (file->so_family == AF_UNIX) {
/* Show this entry if requested */
/* Via -U */
if (Funix)
Lf->sf |= SELUNX;
/* Name matches */
if (is_file_named(ctx, file->unp_path, 0)) {
Lf->sf |= SELNM;
}
/* Fill name */
switch (file->so_type) {
case SOCK_STREAM:
type = "STREAM";
break;
case SOCK_DGRAM:
type = "DGRAM";
break;
default:
type = "UNKNOWN";
break;
}
(void)snpf(Namech, Namechl, "%s%stype=%s",
file->unp_path[0] ? file->unp_path : "",
file->unp_path[0] ? " " : "", type);
(void)enter_nm(ctx, Namech);
/* Fill TCP state */
if (file->so_type == SOCK_STREAM) {
Lf->lts.type = 0;
Lf->lts.state.i = file->t_state;
}
/* Fill dev with so_pcb if available */
if (file->so_pcb && file->so_pcb != (uint64_t)(-1)) {
(void)snpf(buf, sizeof(buf), "0x%" PRIx64, file->so_pcb);
enter_dev_ch(ctx, buf);
}
} else if (file->so_family == AF_ROUTE) {
/* Fill dev with f_data if available */
if (file->f_data) {
(void)snpf(buf, sizeof(buf), "0x%" PRIx64, file->f_data);
enter_dev_ch(ctx, buf);
}
}
/* Finish */
if (Lf->sf)
link_lfile(ctx);
}
|