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
|
/*
* dsock.c - AIX 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";
static char *rcsid = "$Id: dsock.c,v 1.24 2008/10/21 16:14:18 abe Exp $";
#endif
#include "lsof.h"
/*
* We include <sys/domain.h> here instead of "dlsof.h" for gcc's benefit.
* Its loader can't handle the multiple CONST u_char arrays declared in
* <net/net_globals.h> -- e.g., etherbroadcastaddr[]. (<sys/domain.h>
* #include's <net/net_globals.h>.)
*/
#include <net/netopt.h>
#include <sys/domain.h>
/*
* process_socket() - process socket file
*/
void
process_socket(sa)
KA_T sa; /* socket address in kernel */
{
struct domain d;
unsigned char *fa = (unsigned char *)NULL;
int fam;
int fp, lp, uo;
struct gnode g;
struct l_ino i;
struct inpcb inp;
int is = 0;
unsigned char *la = (unsigned char *)NULL;
struct protosw p;
struct socket s;
struct tcpcb t;
int ts = 0;
int tsn, tsnx;
struct unpcb uc, unp;
struct sockaddr_un *ua = (struct sockaddr_un *)NULL;
struct sockaddr_un un;
struct vnode v;
struct mbuf mb;
/*
* Set socket file variables.
*/
(void) snpf(Lf->type, sizeof(Lf->type), "sock");
Lf->inp_ty = 2;
/*
* Read socket and protocol switch structures.
*/
if (!sa) {
enter_nm("no socket address");
return;
}
if (kread(sa, (char *) &s, sizeof(s))) {
(void) snpf(Namech, Namechl, "can't read socket struct from %s",
print_kptr(sa, (char *)NULL, 0));
enter_nm(Namech);
return;
}
if (!s.so_type) {
enter_nm("no socket type");
return;
}
if (!s.so_proto
|| kread((KA_T)s.so_proto, (char *)&p, sizeof(p))) {
(void) snpf(Namech, Namechl, "can't read protocol switch from %s",
print_kptr((KA_T)s.so_proto, (char *)NULL, 0));
enter_nm(Namech);
return;
}
/*
* Save size information.
*/
if (Fsize) {
if (Lf->access == 'r')
Lf->sz = (SZOFFTYPE)s.so_rcv.sb_cc;
else if (Lf->access == 'w')
Lf->sz = (SZOFFTYPE)s.so_snd.sb_cc;
else
Lf->sz = (SZOFFTYPE)(s.so_rcv.sb_cc + s.so_snd.sb_cc);
Lf->sz_def = 1;
} else
Lf->off_def = 1;
#if defined(HASTCPTPIQ)
Lf->lts.rq = s.so_rcv.sb_cc;
Lf->lts.sq = s.so_snd.sb_cc;
Lf->lts.rqs = Lf->lts.sqs = 1;
#endif /* defined(HASTCPTPIQ) */
#if defined(HASSOOPT)
Lf->lts.ltm = (unsigned int)s.so_linger;
Lf->lts.opt = (unsigned int)s.so_options;
Lf->lts.pqlen = (unsigned int)s.so_q0len;
Lf->lts.qlen = (unsigned int)s.so_qlen;
Lf->lts.qlim = (unsigned int)s.so_qlimit;
Lf->lts.rbsz = (unsigned long)s.so_rcv.sb_mbmax;
Lf->lts.sbsz = (unsigned long)s.so_snd.sb_mbmax;
Lf->lts.pqlens = Lf->lts.qlens = Lf->lts.qlims = Lf->lts.rbszs
= Lf->lts.sbszs = (unsigned char)1;
#endif /* defined(HASSOOPT) */
#if defined(HASSOSTATE)
Lf->lts.ss = (unsigned int)s.so_state;
#endif /* defined(HASSOSTATE) */
/*
* Process socket by the associated domain family.
*/
if (!p.pr_domain
|| kread((KA_T)p.pr_domain, (char *)&d, sizeof(d))) {
(void) snpf(Namech, Namechl, "can't read domain struct from %s",
print_kptr((KA_T)p.pr_domain, (char *)NULL, 0));
enter_nm(Namech);
return;
}
switch ((fam = d.dom_family)) {
/*
* Process an Internet domain socket.
*/
case AF_INET:
#if defined(HASIPv6)
case AF_INET6:
#endif /* defined(HASIPv6) */
/*
* Read protocol control block.
*/
if (!s.so_pcb
|| kread((KA_T) s.so_pcb, (char *) &inp, sizeof(inp))) {
if (!s.so_pcb) {
(void) snpf(Namech, Namechl, "no PCB%s%s",
(s.so_state & SS_CANTSENDMORE) ? ", CANTSENDMORE" : "",
(s.so_state & SS_CANTRCVMORE) ? ", CANTRCVMORE" : "");
} else {
(void) snpf(Namech, Namechl, "can't read inpcb at %s",
print_kptr((KA_T)s.so_pcb, (char *)NULL, 0));
}
enter_nm(Namech);
return;
}
if (p.pr_protocol == IPPROTO_TCP) {
/*
* If this is a TCP socket, read its control block.
*/
if (inp.inp_ppcb
&& !kread((KA_T)inp.inp_ppcb, (char *)&t, sizeof(t)))
{
ts = 1;
tsn = (int)t.t_state;
tsnx = tsn + TcpStOff;
}
}
if (ts
&& (TcpStIn || TcpStXn)
&& (tsnx >= 0) && (tsnx < TcpNstates)
) {
/*
* Check TCP state name inclusion and exclusions.
*/
if (TcpStXn) {
if (TcpStX[tsnx]) {
Lf->sf |= SELEXCLF;
return;
}
}
if (TcpStIn) {
if (TcpStI[tsnx])
TcpStI[tsnx] = 2;
else {
Lf->sf |= SELEXCLF;
return;
}
}
}
if (Fnet) {
/*
* Set SELNET flag for the file, as requested.
*/
if (!FnetTy
|| ((FnetTy == 4) && (fam == AF_INET))
#if defined(HASIPv6)
|| ((FnetTy == 6) && (fam == AF_INET6))
#endif /* defined(HASIPv6) */
)
Lf->sf |= SELNET;
}
printiproto(p.pr_protocol);
#if defined(HASIPv6)
(void) snpf(Lf->type, sizeof(Lf->type),
fam == AF_INET ? "IPv4" : "IPv6");
#else /* !defined(HASIPv6) */
(void) snpf(Lf->type, sizeof(Lf->type), "inet");
#endif /* defined(HASIPv6) */
/*
* Save Internet socket information.
*/
enter_dev_ch(print_kptr((KA_T)(inp.inp_ppcb ? inp.inp_ppcb
: s.so_pcb),
(char *)NULL, 0));
#if defined(HASIPv6)
/*
* If this is an IPv6 (AF_INET6) socket and IPv4 compatibility
* mode is enabled, use the IPv4 address, change the family
* indicator from AF_INET6 to AF_INET. Otherwise, use the IPv6
* address. Don't ignore empty addresses.
*/
if (fam == AF_INET6) {
if (inp.inp_flags & INP_COMPATV4) {
fam = AF_INET;
la = (unsigned char *)&inp.inp_laddr;
} else
la = (unsigned char *)&inp.inp_laddr6;
} else
#endif /* defined(HASIPv6) */
la = (unsigned char *)&inp.inp_laddr;
lp = (int)ntohs(inp.inp_lport);
if (fam == AF_INET
&& (inp.inp_faddr.s_addr != INADDR_ANY || inp.inp_fport != 0)) {
fa = (unsigned char *)&inp.inp_faddr;
fp = (int)ntohs(inp.inp_fport);
}
#if defined(HASIPv6)
else if (fam == AF_INET6) {
/*
* If this is an IPv6 (AF_INET6) socket and IPv4 compatibility
* mode is enabled, use the IPv4 address, change the family
* indicator from AF_INET6 to AF_INET. Otherwise, use the IPv6
* address. Ignore empty addresses.
*/
if (inp.inp_flags & INP_COMPATV4) {
fam = AF_INET;
if (inp.inp_faddr.s_addr != INADDR_ANY
|| inp.inp_fport != 0)
{
fa = (unsigned char *)&inp.inp_faddr;
fp = (int)ntohs(inp.inp_fport);
}
} else {
if (!IN6_IS_ADDR_UNSPECIFIED(&inp.inp_faddr6)) {
fa = (unsigned char *)&inp.inp_faddr6;
fp = (int)ntohs(inp.inp_fport);
}
}
}
#endif /* defined(HASIPv6) */
if (fa || la)
(void) ent_inaddr(la, lp, fa, fp, fam);
if (ts) {
Lf->lts.type = 0;
Lf->lts.state.i = tsn;
#if defined(HASSOOPT)
Lf->lts.kai = (unsigned int)t.t_timer[TCPT_KEEP];
#endif /* defined(HASSOOPT) */
#if defined(HASTCPOPT)
Lf->lts.mss = (unsigned long)t.t_maxseg;
Lf->lts.msss = (unsigned char)1;
Lf->lts.topt = (unsigned int)t.t_flags;
#endif /* defined(HASTCPOPT) */
}
break;
/*
* Process a ROUTE domain socket.
*/
case AF_ROUTE:
(void) snpf(Lf->type, sizeof(Lf->type), "rte");
if (s.so_pcb)
enter_dev_ch(print_kptr((KA_T)(s.so_pcb), (char *)NULL, 0));
else
(void) snpf(Namech, Namechl, "no protocol control block");
if (!Fsize)
Lf->off_def = 1;
break;
/*
* Process a Unix domain socket.
*/
case AF_UNIX:
if (Funix)
Lf->sf |= SELUNX;
(void) snpf(Lf->type, sizeof(Lf->type), "unix");
/*
* Read Unix protocol control block and the Unix address structure.
*/
enter_dev_ch(print_kptr(sa, (char *)NULL, 0));
if (kread((KA_T) s.so_pcb, (char *)&unp, sizeof(unp))) {
(void) snpf(Namech, Namechl, "can't read unpcb at %s",
print_kptr((KA_T)s.so_pcb, (char *)NULL, 0));
break;
}
if ((struct socket *)sa != unp.unp_socket) {
(void) snpf(Namech, Namechl, "unp_socket (%s) mismatch",
print_kptr((KA_T)unp.unp_socket, (char *)NULL, 0));
break;
}
if (unp.unp_addr) {
if (kread((KA_T) unp.unp_addr, (char *)&mb, sizeof(mb))) {
(void) snpf(Namech, Namechl, "can't read unp_addr at %s",
print_kptr((KA_T)unp.unp_addr, (char *)NULL, 0));
break;
}
#if AIXV>=3200
uo = (int)(mb.m_hdr.mh_data - (caddr_t)unp.unp_addr);
if ((uo + sizeof(struct sockaddr)) <= sizeof(mb))
ua = (struct sockaddr_un *)((char *)&mb + uo);
else {
if (mb.m_hdr.mh_data
&& !kread((KA_T)mb.m_hdr.mh_data, (char *)&un, sizeof(un))
) {
ua = &un;
}
}
#else /* AIXV<3200 */
ua = (struct sockaddr_un *)(((char *)&mb) + mb.m_off);
#endif /* AIXV>=3200 */
}
if (!ua) {
ua = &un;
(void) bzero((char *)ua, sizeof(un));
ua->sun_family = AF_UNSPEC;
}
/*
* Print information on Unix socket that has no address bound
* to it, although it may be connected to another Unix domain
* socket as a pipe.
*/
if (ua->sun_family != AF_UNIX) {
if (ua->sun_family == AF_UNSPEC) {
if (unp.unp_conn) {
if (kread((KA_T)unp.unp_conn, (char *)&uc, sizeof(uc)))
(void) snpf(Namech, Namechl,
"can't read unp_conn at %s",
print_kptr((KA_T)unp.unp_conn,(char *)NULL,0));
else
(void) snpf(Namech, Namechl, "->%s",
print_kptr((KA_T)uc.unp_socket,(char *)NULL,0));
} else
(void) snpf(Namech, Namechl, "->(none)");
} else
(void) snpf(Namech, Namechl, "unknown sun_family (%d)",
ua->sun_family);
break;
}
/*
* Read any associated vnode and then read its gnode and inode.
*/
g.gn_type = VSOCK;
if (unp.unp_vnode
&& !readvnode((KA_T)unp.unp_vnode, &v)) {
if (v.v_gnode
&& !readgnode((KA_T)v.v_gnode, &g)) {
Lf->lock = isglocked(&g);
if (g.gn_type == VSOCK && g.gn_data
&& !readlino(&g, &i))
is = 1;
}
}
/*
* Print Unix socket information.
*/
if (is) {
Lf->dev = i.dev;
Lf->dev_def = i.dev_def;
if (Lf->dev_ch) {
(void) free((FREE_P *)Lf->dev_ch);
Lf->dev_ch = (char *)NULL;
}
Lf->inode = (INODETYPE)i.number;
Lf->inp_ty = i.number_def;
}
if (ua->sun_path[0]) {
if (mb.m_len > sizeof(struct sockaddr_un))
mb.m_len = sizeof(struct sockaddr_un);
*((char *)ua + mb.m_len - 1) = '\0';
if (Sfile && is_file_named(ua->sun_path, VSOCK, 0, 0))
Lf->sf |= SELNM;
if (!Namech[0])
(void) snpf(Namech, Namechl, "%s", ua->sun_path);
} else
(void) snpf(Namech, Namechl, "no address");
break;
default:
printunkaf(fam, 1);
}
if (Namech[0])
enter_nm(Namech);
}
|