]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/tcpdump/print-sunrpc.c
This commit was generated by cvs2svn to compensate for changes in r147455,
[FreeBSD/FreeBSD.git] / contrib / tcpdump / print-sunrpc.c
1 /*
2  * Copyright (c) 1992, 1993, 1994, 1995, 1996
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that: (1) source code distributions
7  * retain the above copyright notice and this paragraph in its entirety, (2)
8  * distributions including binary code include the above copyright notice and
9  * this paragraph in its entirety in the documentation or other materials
10  * provided with the distribution, and (3) all advertising materials mentioning
11  * features or use of this software display the following acknowledgement:
12  * ``This product includes software developed by the University of California,
13  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14  * the University nor the names of its contributors may be used to endorse
15  * or promote products derived from this software without specific prior
16  * written permission.
17  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20  *
21  * $FreeBSD$
22  */
23
24 #ifndef lint
25 static const char rcsid[] _U_ =
26     "@(#) $Header: /tcpdump/master/tcpdump/print-sunrpc.c,v 1.46 2004/12/27 00:41:31 guy Exp $ (LBL)";
27 #endif
28
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 #include <tcpdump-stdinc.h>
34
35 #ifdef HAVE_GETRPCBYNUMBER
36 #include <rpc/rpc.h>
37 #ifdef HAVE_RPC_RPCENT_H
38 #include <rpc/rpcent.h>
39 #endif /* HAVE_RPC_RPCENT_H */
40 #endif /* HAVE_GETRPCBYNUMBER */
41
42 #include <stdio.h>
43 #include <string.h>
44
45 #include "interface.h"
46 #include "addrtoname.h"
47 #include "extract.h"
48
49 #include "ip.h"
50 #ifdef INET6
51 #include "ip6.h"
52 #endif
53
54 #include "rpc_auth.h"
55 #include "rpc_msg.h"
56
57 static struct tok proc2str[] = {
58         { PMAPPROC_NULL,        "null" },
59         { PMAPPROC_SET,         "set" },
60         { PMAPPROC_UNSET,       "unset" },
61         { PMAPPROC_GETPORT,     "getport" },
62         { PMAPPROC_DUMP,        "dump" },
63         { PMAPPROC_CALLIT,      "call" },
64         { 0,                    NULL }
65 };
66
67 /* Forwards */
68 static char *progstr(u_int32_t);
69
70 void
71 sunrpcrequest_print(register const u_char *bp, register u_int length,
72                     register const u_char *bp2)
73 {
74         register const struct sunrpc_msg *rp;
75         register const struct ip *ip;
76 #ifdef INET6
77         register const struct ip6_hdr *ip6;
78 #endif
79         u_int32_t x;
80         char srcid[20], dstid[20];      /*fits 32bit*/
81
82         rp = (struct sunrpc_msg *)bp;
83
84         if (!nflag) {
85                 snprintf(srcid, sizeof(srcid), "0x%x",
86                     EXTRACT_32BITS(&rp->rm_xid));
87                 strlcpy(dstid, "sunrpc", sizeof(dstid));
88         } else {
89                 snprintf(srcid, sizeof(srcid), "0x%x",
90                     EXTRACT_32BITS(&rp->rm_xid));
91                 snprintf(dstid, sizeof(dstid), "0x%x", PMAPPORT);
92         }
93
94         switch (IP_V((struct ip *)bp2)) {
95         case 4:
96                 ip = (struct ip *)bp2;
97                 printf("%s.%s > %s.%s: %d",
98                     ipaddr_string(&ip->ip_src), srcid,
99                     ipaddr_string(&ip->ip_dst), dstid, length);
100                 break;
101 #ifdef INET6
102         case 6:
103                 ip6 = (struct ip6_hdr *)bp2;
104                 printf("%s.%s > %s.%s: %d",
105                     ip6addr_string(&ip6->ip6_src), srcid,
106                     ip6addr_string(&ip6->ip6_dst), dstid, length);
107                 break;
108 #endif
109         default:
110                 printf("%s.%s > %s.%s: %d", "?", srcid, "?", dstid, length);
111                 break;
112         }
113
114         printf(" %s", tok2str(proc2str, " proc #%u",
115             EXTRACT_32BITS(&rp->rm_call.cb_proc)));
116         x = EXTRACT_32BITS(&rp->rm_call.cb_rpcvers);
117         if (x != 2)
118                 printf(" [rpcver %u]", x);
119
120         switch (EXTRACT_32BITS(&rp->rm_call.cb_proc)) {
121
122         case PMAPPROC_SET:
123         case PMAPPROC_UNSET:
124         case PMAPPROC_GETPORT:
125         case PMAPPROC_CALLIT:
126                 x = EXTRACT_32BITS(&rp->rm_call.cb_prog);
127                 if (!nflag)
128                         printf(" %s", progstr(x));
129                 else
130                         printf(" %u", x);
131                 printf(".%u", EXTRACT_32BITS(&rp->rm_call.cb_vers));
132                 break;
133         }
134 }
135
136 static char *
137 progstr(prog)
138         u_int32_t prog;
139 {
140 #ifdef HAVE_GETRPCBYNUMBER
141         register struct rpcent *rp;
142 #endif
143         static char buf[32];
144         static u_int32_t lastprog = 0;
145
146         if (lastprog != 0 && prog == lastprog)
147                 return (buf);
148 #ifdef HAVE_GETRPCBYNUMBER
149         rp = getrpcbynumber(prog);
150         if (rp == NULL)
151 #endif
152                 (void) snprintf(buf, sizeof(buf), "#%u", prog);
153 #ifdef HAVE_GETRPCBYNUMBER
154         else
155                 strlcpy(buf, rp->r_name, sizeof(buf));
156 #endif
157         return (buf);
158 }