1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1992, 1993, 1994, 1995, 1996
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that: (1) source code distributions
|
|
|
|
* retain the above copyright notice and this paragraph in its entirety, (2)
|
|
|
|
* distributions including binary code include the above copyright notice and
|
|
|
|
* this paragraph in its entirety in the documentation or other materials
|
|
|
|
* provided with the distribution, and (3) all advertising materials mentioning
|
|
|
|
* features or use of this software display the following acknowledgement:
|
|
|
|
* ``This product includes software developed by the University of California,
|
|
|
|
* Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
|
|
|
|
* the University nor the names of its contributors may be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*/
|
|
|
|
|
2003-11-16 17:36:07 +08:00
|
|
|
#ifndef lint
|
|
|
|
static const char rcsid[] _U_ =
|
2005-04-28 05:43:48 +08:00
|
|
|
"@(#) $Header: /tcpdump/master/tcpdump/print-sunrpc.c,v 1.47 2005-04-27 21:43:48 guy Exp $ (LBL)";
|
2003-11-16 17:36:07 +08:00
|
|
|
#endif
|
1999-11-21 17:36:43 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
#endif
|
|
|
|
|
2002-08-01 16:52:55 +08:00
|
|
|
#include <tcpdump-stdinc.h>
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2004-12-27 08:41:29 +08:00
|
|
|
#ifdef HAVE_GETRPCBYNUMBER
|
1999-10-08 07:47:09 +08:00
|
|
|
#include <rpc/rpc.h>
|
|
|
|
#ifdef HAVE_RPC_RPCENT_H
|
|
|
|
#include <rpc/rpcent.h>
|
2004-12-27 08:41:29 +08:00
|
|
|
#endif /* HAVE_RPC_RPCENT_H */
|
|
|
|
#endif /* HAVE_GETRPCBYNUMBER */
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "interface.h"
|
|
|
|
#include "addrtoname.h"
|
2002-12-11 15:13:49 +08:00
|
|
|
#include "extract.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2000-09-23 16:54:24 +08:00
|
|
|
#include "ip.h"
|
2000-10-07 13:53:09 +08:00
|
|
|
#ifdef INET6
|
|
|
|
#include "ip6.h"
|
|
|
|
#endif
|
2000-09-23 16:54:24 +08:00
|
|
|
|
2004-12-27 08:41:29 +08:00
|
|
|
#include "rpc_auth.h"
|
|
|
|
#include "rpc_msg.h"
|
|
|
|
#include "pmap_prot.h"
|
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
static struct tok proc2str[] = {
|
2005-04-28 05:43:48 +08:00
|
|
|
{ SUNRPC_PMAPPROC_NULL, "null" },
|
|
|
|
{ SUNRPC_PMAPPROC_SET, "set" },
|
|
|
|
{ SUNRPC_PMAPPROC_UNSET, "unset" },
|
|
|
|
{ SUNRPC_PMAPPROC_GETPORT, "getport" },
|
|
|
|
{ SUNRPC_PMAPPROC_DUMP, "dump" },
|
|
|
|
{ SUNRPC_PMAPPROC_CALLIT, "call" },
|
|
|
|
{ 0, NULL }
|
1999-10-08 07:47:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Forwards */
|
|
|
|
static char *progstr(u_int32_t);
|
|
|
|
|
|
|
|
void
|
|
|
|
sunrpcrequest_print(register const u_char *bp, register u_int length,
|
|
|
|
register const u_char *bp2)
|
|
|
|
{
|
2004-12-27 08:41:29 +08:00
|
|
|
register const struct sunrpc_msg *rp;
|
1999-10-08 07:47:09 +08:00
|
|
|
register const struct ip *ip;
|
2000-06-10 13:38:00 +08:00
|
|
|
#ifdef INET6
|
|
|
|
register const struct ip6_hdr *ip6;
|
|
|
|
#endif
|
1999-10-08 07:47:09 +08:00
|
|
|
u_int32_t x;
|
2000-06-10 13:38:00 +08:00
|
|
|
char srcid[20], dstid[20]; /*fits 32bit*/
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2004-12-27 08:41:29 +08:00
|
|
|
rp = (struct sunrpc_msg *)bp;
|
2000-06-10 13:38:00 +08:00
|
|
|
|
|
|
|
if (!nflag) {
|
|
|
|
snprintf(srcid, sizeof(srcid), "0x%x",
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&rp->rm_xid));
|
2000-06-10 13:38:00 +08:00
|
|
|
strlcpy(dstid, "sunrpc", sizeof(dstid));
|
|
|
|
} else {
|
|
|
|
snprintf(srcid, sizeof(srcid), "0x%x",
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&rp->rm_xid));
|
2005-04-28 05:43:48 +08:00
|
|
|
snprintf(dstid, sizeof(dstid), "0x%x", SUNRPC_PMAPPORT);
|
2000-06-10 13:38:00 +08:00
|
|
|
}
|
|
|
|
|
2000-10-03 10:54:54 +08:00
|
|
|
switch (IP_V((struct ip *)bp2)) {
|
2000-06-10 13:38:00 +08:00
|
|
|
case 4:
|
|
|
|
ip = (struct ip *)bp2;
|
|
|
|
printf("%s.%s > %s.%s: %d",
|
|
|
|
ipaddr_string(&ip->ip_src), srcid,
|
|
|
|
ipaddr_string(&ip->ip_dst), dstid, length);
|
|
|
|
break;
|
|
|
|
#ifdef INET6
|
|
|
|
case 6:
|
|
|
|
ip6 = (struct ip6_hdr *)bp2;
|
|
|
|
printf("%s.%s > %s.%s: %d",
|
|
|
|
ip6addr_string(&ip6->ip6_src), srcid,
|
|
|
|
ip6addr_string(&ip6->ip6_dst), dstid, length);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
printf("%s.%s > %s.%s: %d", "?", srcid, "?", dstid, length);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
printf(" %s", tok2str(proc2str, " proc #%u",
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&rp->rm_call.cb_proc)));
|
|
|
|
x = EXTRACT_32BITS(&rp->rm_call.cb_rpcvers);
|
1999-10-08 07:47:09 +08:00
|
|
|
if (x != 2)
|
|
|
|
printf(" [rpcver %u]", x);
|
|
|
|
|
2002-12-11 15:13:49 +08:00
|
|
|
switch (EXTRACT_32BITS(&rp->rm_call.cb_proc)) {
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2005-04-28 05:43:48 +08:00
|
|
|
case SUNRPC_PMAPPROC_SET:
|
|
|
|
case SUNRPC_PMAPPROC_UNSET:
|
|
|
|
case SUNRPC_PMAPPROC_GETPORT:
|
|
|
|
case SUNRPC_PMAPPROC_CALLIT:
|
2002-12-11 15:13:49 +08:00
|
|
|
x = EXTRACT_32BITS(&rp->rm_call.cb_prog);
|
1999-10-08 07:47:09 +08:00
|
|
|
if (!nflag)
|
|
|
|
printf(" %s", progstr(x));
|
|
|
|
else
|
|
|
|
printf(" %u", x);
|
2002-12-11 15:13:49 +08:00
|
|
|
printf(".%u", EXTRACT_32BITS(&rp->rm_call.cb_vers));
|
1999-10-08 07:47:09 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
progstr(prog)
|
|
|
|
u_int32_t prog;
|
|
|
|
{
|
2004-12-27 08:41:29 +08:00
|
|
|
#ifdef HAVE_GETRPCBYNUMBER
|
1999-10-08 07:47:09 +08:00
|
|
|
register struct rpcent *rp;
|
2002-08-01 16:52:55 +08:00
|
|
|
#endif
|
1999-10-08 07:47:09 +08:00
|
|
|
static char buf[32];
|
Add a few more GCC warnings on GCC >= 2 for ".devel" builds.
From Neil T. Spring: fixes for many of those warnings:
addrtoname.c, configure.in: Linux needs netinet/ether.h for
ether_ntohost
print-*.c: change char *foo = "bar" to const char *foo = "bar"
to appease -Wwrite-strings; should affect no run-time behavior.
print-*.c: make some variables unsigned.
print-bgp.c: plen ('prefix len') is unsigned, no reason to
validate by comparing to zero.
print-cnfp.c, print-rx.c: use intoa, provided by addrtoname,
instead of inet_ntoa.
print-domain.c: unsigned int l; (l=foo()) < 0 is guaranteed to
be false, so check for (u_int)-1, which represents failure,
explicitly.
print-isakmp.c: complete initialization of attrmap objects.
print-lwres.c: "if(x); print foo;" seemed much more likely to be
intended to be "if(x) { print foo; }".
print-smb.c: complete initialization of some structures.
In addition, add some fixes for the signed vs. unsigned comparison
warnings:
extract.h: cast the result of the byte-extraction-and-combining,
as, at least for the 16-bit version, C's integral promotions
will turn "u_int16_t" into "int" if there are other "int"s
nearby.
print-*.c: make some more variables unsigned, or add casts to an
unsigned type of signed values known not to be negative, or add
casts to "int" of unsigned values known to fit in an "int", and
make other changes needed to handle the aforementioned variables
now being unsigned.
print-isakmp.c: clean up the handling of error/status indicators
in notify messages.
print-ppp.c: get rid of a check that an unsigned quantity is >=
0.
print-radius.c: clean up some of the bounds checking.
print-smb.c: extract the word count into a "u_int" to avoid the
aforementioned problems with C's integral promotions.
print-snmp.c: change a check that an unsigned variable is >= 0
to a check that it's != 0.
Also, fix some formats to use "%u" rather than "%d" for unsigned
quantities.
2002-09-05 08:00:07 +08:00
|
|
|
static u_int32_t lastprog = 0;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
if (lastprog != 0 && prog == lastprog)
|
|
|
|
return (buf);
|
2004-12-27 08:41:29 +08:00
|
|
|
#ifdef HAVE_GETRPCBYNUMBER
|
1999-10-08 07:47:09 +08:00
|
|
|
rp = getrpcbynumber(prog);
|
|
|
|
if (rp == NULL)
|
2004-12-27 08:41:29 +08:00
|
|
|
#endif
|
2000-01-17 14:24:23 +08:00
|
|
|
(void) snprintf(buf, sizeof(buf), "#%u", prog);
|
2004-12-27 08:41:29 +08:00
|
|
|
#ifdef HAVE_GETRPCBYNUMBER
|
1999-10-08 07:47:09 +08:00
|
|
|
else
|
2000-04-27 19:10:59 +08:00
|
|
|
strlcpy(buf, rp->r_name, sizeof(buf));
|
2002-08-01 16:52:55 +08:00
|
|
|
#endif
|
1999-10-08 07:47:09 +08:00
|
|
|
return (buf);
|
|
|
|
}
|