2001-09-18 04:06:17 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2001 William C. Fenner.
|
|
|
|
* 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, and (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.
|
|
|
|
* The name of William C. Fenner may not 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: Multicast Source Discovery Protocol (MSDP) printer */
|
|
|
|
|
2001-09-18 04:06:17 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2018-01-22 04:27:08 +08:00
|
|
|
#include <config.h>
|
2001-09-18 04:06:17 +08:00
|
|
|
#endif
|
|
|
|
|
2018-01-20 22:59:49 +08:00
|
|
|
#include "netdissect-stdinc.h"
|
2002-08-01 16:52:55 +08:00
|
|
|
|
2015-09-06 05:35:58 +08:00
|
|
|
#include "netdissect.h"
|
2001-09-18 04:06:17 +08:00
|
|
|
#include "addrtoname.h"
|
|
|
|
#include "extract.h"
|
|
|
|
|
|
|
|
#define MSDP_TYPE_MAX 7
|
|
|
|
|
|
|
|
void
|
2014-03-07 00:41:44 +08:00
|
|
|
msdp_print(netdissect_options *ndo, const u_char *sp, u_int length)
|
2001-09-18 04:06:17 +08:00
|
|
|
{
|
|
|
|
unsigned int type, len;
|
|
|
|
|
2017-11-25 05:48:55 +08:00
|
|
|
ND_TCHECK_3(sp);
|
2001-09-18 04:06:17 +08:00
|
|
|
/* See if we think we're at the beginning of a compound packet */
|
2017-12-09 16:56:29 +08:00
|
|
|
type = EXTRACT_U_1(sp);
|
2017-11-23 06:54:09 +08:00
|
|
|
len = EXTRACT_BE_U_2(sp + 1);
|
2001-09-18 04:06:17 +08:00
|
|
|
if (len > 1500 || len < 3 || type == 0 || type > MSDP_TYPE_MAX)
|
|
|
|
goto trunc; /* not really truncated, but still not decodable */
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" msdp:");
|
2018-01-12 03:52:30 +08:00
|
|
|
while (length != 0) {
|
2017-11-25 05:48:55 +08:00
|
|
|
ND_TCHECK_3(sp);
|
2017-12-09 16:56:29 +08:00
|
|
|
type = EXTRACT_U_1(sp);
|
2017-11-23 06:54:09 +08:00
|
|
|
len = EXTRACT_BE_U_2(sp + 1);
|
2014-03-07 00:41:44 +08:00
|
|
|
if (len > 1400 || ndo->ndo_vflag)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [len %u]", len);
|
2001-09-18 04:06:17 +08:00
|
|
|
if (len < 3)
|
|
|
|
goto trunc;
|
2018-01-12 03:52:30 +08:00
|
|
|
if (length < len)
|
|
|
|
goto trunc;
|
2001-09-18 04:06:17 +08:00
|
|
|
sp += 3;
|
|
|
|
length -= 3;
|
|
|
|
switch (type) {
|
|
|
|
case 1: /* IPv4 Source-Active */
|
|
|
|
case 3: /* IPv4 Source-Active Response */
|
|
|
|
if (type == 1)
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" SA");
|
2001-09-18 04:06:17 +08:00
|
|
|
else
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" SA-Response");
|
2017-12-05 03:21:48 +08:00
|
|
|
ND_TCHECK_1(sp);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" %u entries", EXTRACT_U_1(sp));
|
2017-12-05 05:45:01 +08:00
|
|
|
if ((u_int)((EXTRACT_U_1(sp) * 12) + 8) < len) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [w/data]");
|
2014-03-07 00:41:44 +08:00
|
|
|
if (ndo->ndo_vflag > 1) {
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" ");
|
2017-12-09 18:40:36 +08:00
|
|
|
ip_print(ndo, sp +
|
|
|
|
EXTRACT_U_1(sp) * 12 + 8 - 3,
|
|
|
|
len - (EXTRACT_U_1(sp) * 12 + 8));
|
2001-09-18 04:06:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" SA-Request");
|
2017-11-25 05:48:55 +08:00
|
|
|
ND_TCHECK_5(sp);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" for %s", ipaddr_string(ndo, sp + 1));
|
2001-09-18 04:06:17 +08:00
|
|
|
break;
|
|
|
|
case 4:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" Keepalive");
|
2001-09-18 04:06:17 +08:00
|
|
|
if (len != 3)
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT("[len=%u] ", len);
|
2001-09-18 04:06:17 +08:00
|
|
|
break;
|
|
|
|
case 5:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" Notification");
|
2001-09-18 04:06:17 +08:00
|
|
|
break;
|
|
|
|
default:
|
2018-01-12 03:52:30 +08:00
|
|
|
ND_PRINT(" [type=%u len=%u]", type, len);
|
2001-09-18 04:06:17 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
sp += (len - 3);
|
|
|
|
length -= (len - 3);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
trunc:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [|msdp]");
|
2001-09-18 04:06:17 +08:00
|
|
|
}
|
2005-04-07 05:32:38 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local Variables:
|
|
|
|
* c-style: whitesmith
|
|
|
|
* c-basic-offset: 8
|
|
|
|
* End:
|
|
|
|
*/
|