tcpdump/print-sunrpc.c

158 lines
4.1 KiB
C
Raw Normal View History

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.
*/
#ifndef lint
static const char rcsid[] _U_ =
"@(#) $Header: /tcpdump/master/tcpdump/print-sunrpc.c,v 1.47 2005-04-27 21:43:48 guy Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
#include "config.h"
1999-10-08 07:47:09 +08:00
#endif
#include <tcpdump-stdinc.h>
1999-10-08 07:47:09 +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>
#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"
#include "extract.h"
1999-10-08 07:47:09 +08:00
#include "ip.h"
#ifdef INET6
#include "ip6.h"
#endif
#include "rpc_auth.h"
#include "rpc_msg.h"
#include "pmap_prot.h"
1999-10-08 07:47:09 +08:00
static struct tok proc2str[] = {
{ 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)
{
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
rp = (struct sunrpc_msg *)bp;
2000-06-10 13:38:00 +08:00
if (!nflag) {
snprintf(srcid, sizeof(srcid), "0x%x",
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",
EXTRACT_32BITS(&rp->rm_xid));
snprintf(dstid, sizeof(dstid), "0x%x", SUNRPC_PMAPPORT);
2000-06-10 13:38:00 +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",
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);
switch (EXTRACT_32BITS(&rp->rm_call.cb_proc)) {
1999-10-08 07:47:09 +08:00
case SUNRPC_PMAPPROC_SET:
case SUNRPC_PMAPPROC_UNSET:
case SUNRPC_PMAPPROC_GETPORT:
case SUNRPC_PMAPPROC_CALLIT:
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);
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;
{
#ifdef HAVE_GETRPCBYNUMBER
1999-10-08 07:47:09 +08:00
register struct rpcent *rp;
#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);
#ifdef HAVE_GETRPCBYNUMBER
1999-10-08 07:47:09 +08:00
rp = getrpcbynumber(prog);
if (rp == NULL)
#endif
(void) snprintf(buf, sizeof(buf), "#%u", prog);
#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));
#endif
1999-10-08 07:47:09 +08:00
return (buf);
}