2013-02-26 20:44:11 +08:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Original code by Francesco Fondelli (francesco dot fondelli, gmail dot com)
|
|
|
|
*/
|
|
|
|
|
2016-08-15 21:27:28 +08:00
|
|
|
/* \summary: Overlay Transport Virtualization (OTV) printer */
|
|
|
|
|
|
|
|
/* specification: draft-hasmit-otv-04 */
|
|
|
|
|
2013-02-26 20:44:11 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2018-01-22 04:27:08 +08:00
|
|
|
#include <config.h>
|
2013-02-26 20:44:11 +08:00
|
|
|
#endif
|
|
|
|
|
2018-01-20 22:59:49 +08:00
|
|
|
#include "netdissect-stdinc.h"
|
2013-02-26 20:44:11 +08:00
|
|
|
|
2015-09-06 05:35:58 +08:00
|
|
|
#include "netdissect.h"
|
2013-02-26 20:44:11 +08:00
|
|
|
#include "extract.h"
|
|
|
|
|
2017-02-03 06:13:10 +08:00
|
|
|
#define OTV_HDR_LEN 8
|
|
|
|
|
2013-02-26 20:44:11 +08:00
|
|
|
/*
|
|
|
|
* OTV header, draft-hasmit-otv-04
|
|
|
|
*
|
|
|
|
* 0 1 2 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
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
* |R|R|R|R|I|R|R|R| Overlay ID |
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
* | Instance ID | Reserved |
|
|
|
|
* +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2014-03-08 19:28:13 +08:00
|
|
|
otv_print(netdissect_options *ndo, const u_char *bp, u_int len)
|
2013-02-26 20:44:11 +08:00
|
|
|
{
|
2014-04-23 15:20:40 +08:00
|
|
|
uint8_t flags;
|
2014-01-02 10:27:54 +08:00
|
|
|
|
2018-03-14 23:54:17 +08:00
|
|
|
ndo->ndo_protocol = "otv";
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("OTV, ");
|
2017-02-03 06:13:10 +08:00
|
|
|
if (len < OTV_HDR_LEN)
|
2017-01-10 18:39:35 +08:00
|
|
|
goto trunc;
|
2013-02-26 20:44:11 +08:00
|
|
|
|
2017-12-05 03:21:48 +08:00
|
|
|
ND_TCHECK_1(bp);
|
2017-12-09 09:57:39 +08:00
|
|
|
flags = EXTRACT_U_1(bp);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("flags [%s] (0x%02x), ", flags & 0x08 ? "I" : ".", flags);
|
2013-02-26 20:44:11 +08:00
|
|
|
bp += 1;
|
|
|
|
|
2017-11-25 05:48:55 +08:00
|
|
|
ND_TCHECK_3(bp);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("overlay %u, ", EXTRACT_BE_U_3(bp));
|
2013-02-26 20:44:11 +08:00
|
|
|
bp += 3;
|
|
|
|
|
2017-11-25 05:48:55 +08:00
|
|
|
ND_TCHECK_3(bp);
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT("instance %u\n", EXTRACT_BE_U_3(bp));
|
2017-01-10 18:39:35 +08:00
|
|
|
bp += 3;
|
2013-02-26 20:44:11 +08:00
|
|
|
|
2017-01-10 18:39:35 +08:00
|
|
|
/* Reserved */
|
2017-12-05 03:21:48 +08:00
|
|
|
ND_TCHECK_1(bp);
|
2017-01-10 18:39:35 +08:00
|
|
|
bp += 1;
|
2013-02-26 20:44:11 +08:00
|
|
|
|
2017-02-03 06:13:10 +08:00
|
|
|
ether_print(ndo, bp, len - OTV_HDR_LEN, ndo->ndo_snapend - bp, NULL, NULL);
|
2017-01-10 18:39:35 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
trunc:
|
2018-01-07 18:47:30 +08:00
|
|
|
ND_PRINT(" [|OTV]");
|
2013-02-26 20:44:11 +08:00
|
|
|
}
|