1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1989, 1990, 1991, 1993, 1994, 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.
|
|
|
|
*/
|
|
|
|
|
2016-08-14 21:42:19 +08:00
|
|
|
/* \summary: Routing Information Protocol (RIP) printer */
|
|
|
|
|
2018-01-16 03:00:45 +08:00
|
|
|
/* specification: RFC 1058, RFC 2453, RFC 4822 */
|
2017-12-31 10:22:28 +08:00
|
|
|
|
1999-11-21 17:36:43 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2018-01-22 04:27:08 +08:00
|
|
|
#include <config.h>
|
1999-10-08 07:47:09 +08:00
|
|
|
#endif
|
|
|
|
|
2018-01-20 22:59:49 +08:00
|
|
|
#include "netdissect-stdinc.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2015-09-06 05:35:58 +08:00
|
|
|
#include "netdissect.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
#include "addrtoname.h"
|
2015-09-07 21:01:46 +08:00
|
|
|
#include "extract.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2006-02-21 18:27:40 +08:00
|
|
|
#include "af.h"
|
|
|
|
|
2013-12-26 22:08:06 +08:00
|
|
|
|
2018-01-16 03:00:45 +08:00
|
|
|
/*
|
|
|
|
* RFC 1058 and RFC 2453 header of packet.
|
|
|
|
*
|
|
|
|
* 0 1 2 3 3
|
|
|
|
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
* | Command (1) | Version (1) | unused |
|
|
|
|
* +---------------+---------------+-------------------------------+
|
|
|
|
*/
|
1999-10-08 07:47:09 +08:00
|
|
|
struct rip {
|
2017-12-31 10:22:28 +08:00
|
|
|
nd_uint8_t rip_cmd; /* request/response */
|
|
|
|
nd_uint8_t rip_vers; /* protocol version # */
|
|
|
|
nd_byte unused[2]; /* unused */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
2002-12-22 10:01:49 +08:00
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
#define RIPCMD_REQUEST 1 /* want info */
|
|
|
|
#define RIPCMD_RESPONSE 2 /* responding to request */
|
|
|
|
#define RIPCMD_TRACEON 3 /* turn tracing on */
|
|
|
|
#define RIPCMD_TRACEOFF 4 /* turn it off */
|
|
|
|
#define RIPCMD_POLL 5 /* want info from everybody */
|
|
|
|
#define RIPCMD_POLLENTRY 6 /* poll for entry */
|
|
|
|
|
2002-12-22 10:01:49 +08:00
|
|
|
static const struct tok rip_cmd_values[] = {
|
|
|
|
{ RIPCMD_REQUEST, "Request" },
|
|
|
|
{ RIPCMD_RESPONSE, "Response" },
|
|
|
|
{ RIPCMD_TRACEON, "Trace on" },
|
|
|
|
{ RIPCMD_TRACEOFF, "Trace off" },
|
|
|
|
{ RIPCMD_POLL, "Poll" },
|
|
|
|
{ RIPCMD_POLLENTRY, "Poll Entry" },
|
|
|
|
{ 0, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
#define RIP_AUTHLEN 16
|
|
|
|
#define RIP_ROUTELEN 20
|
|
|
|
|
|
|
|
/*
|
2018-01-16 03:00:45 +08:00
|
|
|
* First 4 bytes of all RIPv1/RIPv2 entries.
|
|
|
|
*/
|
|
|
|
struct rip_entry_header {
|
|
|
|
nd_uint16_t rip_family;
|
|
|
|
nd_uint16_t rip_tag;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RFC 1058 entry.
|
|
|
|
*
|
|
|
|
* 0 1 2 3 3
|
|
|
|
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
* | Address Family Identifier (2) | must be zero (2) |
|
|
|
|
* +-------------------------------+-------------------------------+
|
|
|
|
* | IP Address (4) |
|
|
|
|
* +---------------------------------------------------------------+
|
|
|
|
* | must be zero (4) |
|
|
|
|
* +---------------------------------------------------------------+
|
|
|
|
* | must be zero (4) |
|
|
|
|
* +---------------------------------------------------------------+
|
|
|
|
* | Metric (4) |
|
|
|
|
* +---------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
struct rip_netinfo_v1 {
|
|
|
|
nd_uint16_t rip_family;
|
|
|
|
nd_byte rip_mbz1[2];
|
|
|
|
nd_ipv4 rip_dest;
|
|
|
|
nd_byte rip_mbz2[4];
|
|
|
|
nd_byte rip_mbz3[4];
|
|
|
|
nd_uint32_t rip_metric; /* cost of route */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RFC 2453 route entry
|
2014-01-02 10:27:54 +08:00
|
|
|
*
|
2002-12-22 10:01:49 +08:00
|
|
|
* 0 1 2 3 3
|
|
|
|
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
* | Address Family Identifier (2) | Route Tag (2) |
|
|
|
|
* +-------------------------------+-------------------------------+
|
|
|
|
* | IP Address (4) |
|
|
|
|
* +---------------------------------------------------------------+
|
|
|
|
* | Subnet Mask (4) |
|
|
|
|
* +---------------------------------------------------------------+
|
|
|
|
* | Next Hop (4) |
|
|
|
|
* +---------------------------------------------------------------+
|
|
|
|
* | Metric (4) |
|
|
|
|
* +---------------------------------------------------------------+
|
|
|
|
*
|
|
|
|
*/
|
2000-06-19 01:41:35 +08:00
|
|
|
|
2018-01-16 03:00:45 +08:00
|
|
|
struct rip_netinfo_v2 {
|
2017-12-31 10:22:28 +08:00
|
|
|
nd_uint16_t rip_family;
|
|
|
|
nd_uint16_t rip_tag;
|
2018-01-16 03:00:45 +08:00
|
|
|
nd_ipv4 rip_dest;
|
2017-12-31 10:22:28 +08:00
|
|
|
nd_uint32_t rip_dest_mask;
|
2018-01-16 03:00:45 +08:00
|
|
|
nd_ipv4 rip_router;
|
2017-12-31 10:22:28 +08:00
|
|
|
nd_uint32_t rip_metric; /* cost of route */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2018-01-16 03:00:45 +08:00
|
|
|
/*
|
|
|
|
* RFC 2453 authentication entry
|
|
|
|
*
|
|
|
|
* 0 1 2 3 3
|
|
|
|
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
* | 0xFFFF | Authentication Type (2) |
|
|
|
|
* +-------------------------------+-------------------------------+
|
|
|
|
* - Authentication (16) -
|
|
|
|
* +---------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct rip_auth_v2 {
|
|
|
|
nd_uint16_t rip_family;
|
|
|
|
nd_uint16_t rip_tag;
|
|
|
|
nd_byte rip_auth[16];
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RFC 4822 Cryptographic Authentication entry.
|
|
|
|
*
|
|
|
|
* 0 1 2 3 3
|
|
|
|
* 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
* | RIPv2 Packet Length | Key ID | Auth Data Len |
|
|
|
|
* +---------------+---------------+---------------+---------------+
|
|
|
|
* | Sequence Number (non-decreasing) |
|
|
|
|
* +---------------+---------------+---------------+---------------+
|
|
|
|
* | reserved must be zero |
|
|
|
|
* +---------------+---------------+---------------+---------------+
|
|
|
|
* | reserved must be zero |
|
|
|
|
* +---------------+---------------+---------------+---------------+
|
|
|
|
*/
|
|
|
|
struct rip_auth_crypto_v2 {
|
|
|
|
nd_uint16_t rip_packet_len;
|
|
|
|
nd_uint8_t rip_key_id;
|
|
|
|
nd_uint8_t rip_auth_data_len;
|
|
|
|
nd_uint32_t rip_seq_num;
|
|
|
|
nd_byte rip_mbz1[4];
|
|
|
|
nd_byte rip_mbz2[4];
|
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned
|
|
|
|
rip_entry_print_v1(netdissect_options *ndo, const u_char *p,
|
2019-03-08 22:26:45 +08:00
|
|
|
unsigned remaining)
|
2000-06-19 01:41:35 +08:00
|
|
|
{
|
2018-01-16 03:00:45 +08:00
|
|
|
const struct rip_entry_header *eh = (const struct rip_entry_header *)p;
|
2017-12-14 02:17:47 +08:00
|
|
|
u_short family;
|
2018-01-16 03:00:45 +08:00
|
|
|
const struct rip_netinfo_v1 *ni = (const struct rip_netinfo_v1 *)p;
|
2000-06-19 01:41:35 +08:00
|
|
|
|
|
|
|
/* RFC 1058 */
|
2018-01-16 03:00:45 +08:00
|
|
|
if (remaining < RIP_ROUTELEN)
|
|
|
|
return (0);
|
2018-06-20 15:09:14 +08:00
|
|
|
ND_TCHECK_SIZE(ni);
|
2018-06-16 23:23:21 +08:00
|
|
|
family = GET_BE_U_2(ni->rip_family);
|
2012-06-12 01:01:34 +08:00
|
|
|
if (family != BSD_AFNUM_INET && family != 0) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\n\t AFI %s, ", tok2str(bsd_af_values, "Unknown (%u)", family));
|
2019-03-08 22:26:45 +08:00
|
|
|
print_unknown_data(ndo, p + sizeof(*eh), "\n\t ", RIP_ROUTELEN - sizeof(*eh));
|
2018-01-16 03:00:45 +08:00
|
|
|
return (RIP_ROUTELEN);
|
2000-06-19 01:41:35 +08:00
|
|
|
}
|
2018-06-16 23:23:21 +08:00
|
|
|
if (GET_BE_U_2(ni->rip_mbz1) ||
|
|
|
|
GET_BE_U_4(ni->rip_mbz2) ||
|
|
|
|
GET_BE_U_4(ni->rip_mbz3)) {
|
2000-06-19 01:41:35 +08:00
|
|
|
/* MBZ fields not zero */
|
2019-03-08 22:26:45 +08:00
|
|
|
print_unknown_data(ndo, p, "\n\t ", RIP_ROUTELEN);
|
2018-01-16 03:00:45 +08:00
|
|
|
return (RIP_ROUTELEN);
|
2012-06-12 01:01:34 +08:00
|
|
|
}
|
|
|
|
if (family == 0) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\n\t AFI 0, %s, metric: %u",
|
2020-01-20 11:55:38 +08:00
|
|
|
GET_IPADDR_STRING(ni->rip_dest),
|
2018-06-16 23:23:21 +08:00
|
|
|
GET_BE_U_4(ni->rip_metric));
|
2018-01-16 03:00:45 +08:00
|
|
|
return (RIP_ROUTELEN);
|
2006-03-23 22:58:44 +08:00
|
|
|
} /* BSD_AFNUM_INET */
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\n\t %s, metric: %u",
|
2020-01-20 11:55:38 +08:00
|
|
|
GET_IPADDR_STRING(ni->rip_dest),
|
2018-06-16 23:23:21 +08:00
|
|
|
GET_BE_U_4(ni->rip_metric));
|
2018-01-16 03:00:45 +08:00
|
|
|
return (RIP_ROUTELEN);
|
2018-06-20 15:09:14 +08:00
|
|
|
trunc:
|
|
|
|
return 0;
|
2000-06-19 01:41:35 +08:00
|
|
|
}
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2012-06-12 01:06:00 +08:00
|
|
|
static unsigned
|
2018-01-16 03:00:45 +08:00
|
|
|
rip_entry_print_v2(netdissect_options *ndo, const u_char *p,
|
2019-03-08 22:26:45 +08:00
|
|
|
unsigned remaining)
|
2000-06-19 01:41:35 +08:00
|
|
|
{
|
2018-01-16 03:00:45 +08:00
|
|
|
const struct rip_entry_header *eh = (const struct rip_entry_header *)p;
|
2017-12-14 02:17:47 +08:00
|
|
|
u_short family;
|
2018-01-16 03:00:45 +08:00
|
|
|
const struct rip_netinfo_v2 *ni;
|
2000-06-19 01:41:35 +08:00
|
|
|
|
2018-01-16 03:00:45 +08:00
|
|
|
if (remaining < sizeof(*eh))
|
|
|
|
return (0);
|
2018-06-20 15:09:14 +08:00
|
|
|
ND_TCHECK_SIZE(eh);
|
2018-06-16 23:23:21 +08:00
|
|
|
family = GET_BE_U_2(eh->rip_family);
|
2012-06-12 01:06:00 +08:00
|
|
|
if (family == 0xFFFF) { /* variable-sized authentication structures */
|
2018-06-16 23:23:21 +08:00
|
|
|
uint16_t auth_type = GET_BE_U_2(eh->rip_tag);
|
2018-01-16 03:00:45 +08:00
|
|
|
|
|
|
|
p += sizeof(*eh);
|
|
|
|
remaining -= sizeof(*eh);
|
2012-06-12 01:06:00 +08:00
|
|
|
if (auth_type == 2) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\n\t Simple Text Authentication data: ");
|
2018-04-30 18:52:10 +08:00
|
|
|
if (nd_printzp(ndo, p, RIP_AUTHLEN, p + remaining))
|
2018-01-16 03:00:45 +08:00
|
|
|
return (0);
|
2012-06-12 01:06:00 +08:00
|
|
|
} else if (auth_type == 3) {
|
2018-01-16 03:00:45 +08:00
|
|
|
const struct rip_auth_crypto_v2 *ch;
|
|
|
|
|
|
|
|
ch = (const struct rip_auth_crypto_v2 *)p;
|
2018-06-20 15:09:14 +08:00
|
|
|
ND_TCHECK_SIZE(ch);
|
2018-01-16 03:00:45 +08:00
|
|
|
if (remaining < sizeof(*ch))
|
|
|
|
return (0);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\n\t Auth header:");
|
2018-06-16 23:23:21 +08:00
|
|
|
ND_PRINT(" Packet Len %u,",
|
|
|
|
GET_BE_U_2(ch->rip_packet_len));
|
|
|
|
ND_PRINT(" Key-ID %u,", GET_U_1(ch->rip_key_id));
|
|
|
|
ND_PRINT(" Auth Data Len %u,",
|
|
|
|
GET_U_1(ch->rip_auth_data_len));
|
|
|
|
ND_PRINT(" SeqNo %u,", GET_BE_U_4(ch->rip_seq_num));
|
|
|
|
ND_PRINT(" MBZ %u,", GET_BE_U_4(ch->rip_mbz1));
|
|
|
|
ND_PRINT(" MBZ %u", GET_BE_U_4(ch->rip_mbz2));
|
2012-06-12 01:06:00 +08:00
|
|
|
} else if (auth_type == 1) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\n\t Auth trailer:");
|
2018-01-16 03:00:45 +08:00
|
|
|
print_unknown_data(ndo, p, "\n\t ", remaining);
|
|
|
|
return (sizeof(*eh) + remaining); /* AT spans till the packet end */
|
2014-03-19 17:57:56 +08:00
|
|
|
} else {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\n\t Unknown (%u) Authentication data:",
|
2019-03-08 22:26:45 +08:00
|
|
|
auth_type);
|
2018-01-16 03:00:45 +08:00
|
|
|
print_unknown_data(ndo, p, "\n\t ", remaining);
|
|
|
|
return (sizeof(*eh) + remaining); /* we don't know how long this is, so we go to the packet end */
|
2000-06-19 01:41:35 +08:00
|
|
|
}
|
2012-06-12 01:01:34 +08:00
|
|
|
} else if (family != BSD_AFNUM_INET && family != 0) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\n\t AFI %s", tok2str(bsd_af_values, "Unknown (%u)", family));
|
2019-03-08 22:26:45 +08:00
|
|
|
print_unknown_data(ndo, p + sizeof(*eh), "\n\t ", RIP_ROUTELEN - sizeof(*eh));
|
2012-06-12 01:01:34 +08:00
|
|
|
} else { /* BSD_AFNUM_INET or AFI 0 */
|
2018-01-16 03:00:45 +08:00
|
|
|
ni = (const struct rip_netinfo_v2 *)p;
|
2018-06-20 15:09:14 +08:00
|
|
|
ND_TCHECK_SIZE(ni);
|
2018-01-16 03:00:45 +08:00
|
|
|
if (remaining < sizeof(*ni))
|
|
|
|
return (0);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("\n\t AFI %s, %15s/%-2d, tag 0x%04x, metric: %u, next-hop: ",
|
2019-03-08 22:26:45 +08:00
|
|
|
tok2str(bsd_af_values, "%u", family),
|
2020-01-20 11:55:38 +08:00
|
|
|
GET_IPADDR_STRING(ni->rip_dest),
|
2018-06-16 23:23:21 +08:00
|
|
|
mask2plen(GET_BE_U_4(ni->rip_dest_mask)),
|
|
|
|
GET_BE_U_2(ni->rip_tag),
|
|
|
|
GET_BE_U_4(ni->rip_metric));
|
|
|
|
if (GET_BE_U_4(ni->rip_router))
|
2020-01-20 11:55:38 +08:00
|
|
|
ND_PRINT("%s", GET_IPADDR_STRING(ni->rip_router));
|
2014-03-19 17:57:56 +08:00
|
|
|
else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("self");
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
2018-01-16 03:00:45 +08:00
|
|
|
return (RIP_ROUTELEN);
|
2018-06-20 15:09:14 +08:00
|
|
|
trunc:
|
|
|
|
return 0;
|
1999-10-08 07:47:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-03-19 17:57:56 +08:00
|
|
|
rip_print(netdissect_options *ndo,
|
2019-03-08 22:26:45 +08:00
|
|
|
const u_char *dat, u_int length)
|
1999-10-08 07:47:09 +08:00
|
|
|
{
|
2017-12-14 02:17:47 +08:00
|
|
|
const struct rip *rp;
|
2017-12-31 10:22:28 +08:00
|
|
|
uint8_t vers, cmd;
|
2018-01-16 03:00:45 +08:00
|
|
|
const u_char *p;
|
2019-03-08 22:52:07 +08:00
|
|
|
u_int len, routecount;
|
2018-01-16 03:00:45 +08:00
|
|
|
unsigned entry_size;
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2018-03-14 23:54:17 +08:00
|
|
|
ndo->ndo_protocol = "rip";
|
2014-03-19 17:57:56 +08:00
|
|
|
if (ndo->ndo_snapend < dat) {
|
2018-05-02 23:15:04 +08:00
|
|
|
nd_print_trunc(ndo);
|
1999-10-08 07:47:09 +08:00
|
|
|
return;
|
1999-11-22 12:24:28 +08:00
|
|
|
}
|
2019-04-19 01:13:49 +08:00
|
|
|
len = ND_BYTES_AVAILABLE_AFTER(dat);
|
2019-03-08 22:52:07 +08:00
|
|
|
if (len > length)
|
|
|
|
len = length;
|
|
|
|
if (len < sizeof(*rp)) {
|
2018-05-02 23:15:04 +08:00
|
|
|
nd_print_trunc(ndo);
|
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
|
|
|
return;
|
|
|
|
}
|
2019-03-08 22:52:07 +08:00
|
|
|
len -= sizeof(*rp);
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2015-04-27 08:24:42 +08:00
|
|
|
rp = (const struct rip *)dat;
|
2002-12-22 10:01:49 +08:00
|
|
|
|
2018-06-20 15:09:14 +08:00
|
|
|
ND_TCHECK_SIZE(rp);
|
2018-06-16 23:23:21 +08:00
|
|
|
vers = GET_U_1(rp->rip_vers);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("%sRIPv%u",
|
2019-03-08 22:26:45 +08:00
|
|
|
(ndo->ndo_vflag >= 1) ? "\n\t" : "",
|
|
|
|
vers);
|
2002-12-22 10:01:49 +08:00
|
|
|
|
2018-01-16 03:00:45 +08:00
|
|
|
if (vers == 0) {
|
2000-09-24 15:59:35 +08:00
|
|
|
/*
|
|
|
|
* RFC 1058.
|
|
|
|
*
|
|
|
|
* XXX - RFC 1058 says
|
|
|
|
*
|
|
|
|
* 0 Datagrams whose version number is zero are to be ignored.
|
|
|
|
* These are from a previous version of the protocol, whose
|
|
|
|
* packet format was machine-specific.
|
|
|
|
*
|
2002-12-22 10:01:49 +08:00
|
|
|
* so perhaps we should just dump the packet, in hex.
|
2001-01-28 16:14:55 +08:00
|
|
|
*/
|
2018-01-16 03:00:45 +08:00
|
|
|
print_unknown_data(ndo, (const uint8_t *)&rp->rip_cmd, "\n\t", length);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* dump version and lets see if we know the commands name*/
|
2018-06-16 23:23:21 +08:00
|
|
|
cmd = GET_U_1(rp->rip_cmd);
|
2018-01-16 03:00:45 +08:00
|
|
|
ND_PRINT(", %s, length: %u",
|
|
|
|
tok2str(rip_cmd_values, "unknown command (%u)", cmd),
|
|
|
|
length);
|
|
|
|
|
|
|
|
if (ndo->ndo_vflag < 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
|
|
|
|
case RIPCMD_REQUEST:
|
|
|
|
case RIPCMD_RESPONSE:
|
|
|
|
switch (vers) {
|
|
|
|
|
|
|
|
case 1:
|
2019-03-08 22:52:07 +08:00
|
|
|
routecount = length / RIP_ROUTELEN;
|
|
|
|
ND_PRINT(", routes: %u", routecount);
|
2018-01-16 03:00:45 +08:00
|
|
|
p = (const u_char *)(rp + 1);
|
2019-03-08 22:52:07 +08:00
|
|
|
while (len != 0) {
|
|
|
|
entry_size = rip_entry_print_v1(ndo, p, len);
|
2018-01-16 03:00:45 +08:00
|
|
|
if (entry_size == 0) {
|
|
|
|
/* Error */
|
2018-05-02 23:15:04 +08:00
|
|
|
nd_print_trunc(ndo);
|
2018-01-16 03:00:45 +08:00
|
|
|
break;
|
2012-06-12 01:06:00 +08:00
|
|
|
}
|
2019-03-09 01:04:43 +08:00
|
|
|
if (len < entry_size) {
|
2019-03-20 20:31:47 +08:00
|
|
|
ND_PRINT(" [remaining entries length %u < %u]",
|
2019-03-09 01:04:43 +08:00
|
|
|
len, entry_size);
|
|
|
|
nd_print_invalid(ndo);
|
|
|
|
break;
|
|
|
|
}
|
2018-01-16 03:00:45 +08:00
|
|
|
p += entry_size;
|
2019-03-08 22:52:07 +08:00
|
|
|
len -= entry_size;
|
2000-06-19 01:41:35 +08:00
|
|
|
}
|
|
|
|
break;
|
2002-12-22 10:01:49 +08:00
|
|
|
|
2018-01-16 03:00:45 +08:00
|
|
|
case 2:
|
2019-03-08 22:52:07 +08:00
|
|
|
routecount = length / RIP_ROUTELEN;
|
|
|
|
ND_PRINT(", routes: %u or less", routecount);
|
2018-01-16 03:00:45 +08:00
|
|
|
p = (const u_char *)(rp + 1);
|
2019-03-08 22:52:07 +08:00
|
|
|
while (len != 0) {
|
|
|
|
entry_size = rip_entry_print_v2(ndo, p, len);
|
2018-01-16 03:00:45 +08:00
|
|
|
if (entry_size == 0) {
|
|
|
|
/* Error */
|
2018-05-02 23:15:04 +08:00
|
|
|
nd_print_trunc(ndo);
|
2018-01-16 03:00:45 +08:00
|
|
|
break;
|
|
|
|
}
|
2019-03-08 22:52:07 +08:00
|
|
|
if (len < entry_size) {
|
2019-03-20 20:31:47 +08:00
|
|
|
ND_PRINT(" [remaining entries length %u < %u]",
|
2019-03-09 01:04:43 +08:00
|
|
|
len, entry_size);
|
|
|
|
nd_print_invalid(ndo);
|
2018-01-16 03:00:45 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
p += entry_size;
|
2019-03-08 22:52:07 +08:00
|
|
|
len -= entry_size;
|
2018-01-16 03:00:45 +08:00
|
|
|
}
|
2000-06-19 01:41:35 +08:00
|
|
|
break;
|
2002-12-22 10:01:49 +08:00
|
|
|
|
2018-01-16 03:00:45 +08:00
|
|
|
default:
|
|
|
|
ND_PRINT(", unknown version");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2002-12-22 10:01:49 +08:00
|
|
|
|
2018-01-16 03:00:45 +08:00
|
|
|
case RIPCMD_TRACEOFF:
|
|
|
|
case RIPCMD_POLL:
|
|
|
|
case RIPCMD_POLLENTRY:
|
|
|
|
break;
|
2002-12-22 10:01:49 +08:00
|
|
|
|
2018-01-16 03:00:45 +08:00
|
|
|
case RIPCMD_TRACEON:
|
|
|
|
/* fall through */
|
|
|
|
default:
|
|
|
|
if (ndo->ndo_vflag <= 1) {
|
|
|
|
if (!print_unknown_data(ndo, (const uint8_t *)rp, "\n\t", length))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* do we want to see an additionally hexdump ? */
|
|
|
|
if (ndo->ndo_vflag> 1) {
|
|
|
|
if (!print_unknown_data(ndo, (const uint8_t *)rp, "\n\t", length))
|
|
|
|
return;
|
|
|
|
}
|
2018-06-20 15:09:14 +08:00
|
|
|
trunc:
|
|
|
|
return;
|
2018-01-16 03:00:45 +08:00
|
|
|
}
|