]>
The Tcpdump Group git mirrors - tcpdump/blob - print-arista.c
1 // Copyright (c) 2018 Arista Networks, Inc. All rights reserved.
3 /* \summary: EtherType protocol for Arista Networks printer */
7 #include "netdissect-stdinc.h"
9 #include "netdissect.h"
16 The Arista timestamp header consists of the following fields:
17 1. The Arista ethertype (0xd28b)
18 2. A 2-byte subtype field; 0x01 indicates the timestamp header
19 3. A 2-byte version field, described below.
20 4. A 48-bit or 64-bit timestamp field, depending on the contents of the version field
22 This header is then followed by the original ethertype and the remainder of the original packet.
25 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
26 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
28 + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
30 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
32 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
33 | ethertype 0xd28b | subtype 0x1 |
34 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
36 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
38 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
40 The two-byte version value is split into 3 fields:
41 1. The timescale in use. Currently assigned values include:
44 2. The timestamp format and length. Currently assigned values include:
52 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
53 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
54 | timescale | format|hw info|
55 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
58 See also: https://www.arista.com/assets/data/pdf/Whitepapers/Overview_Arista_Timestamps.pdf
62 #define ARISTA_SUBTYPE_TIMESTAMP 0x0001
63 static const struct tok subtype_str
[] = {
64 { ARISTA_SUBTYPE_TIMESTAMP
, "Timestamp" },
68 static const struct tok ts_timescale_str
[] = {
74 #define FORMAT_64BIT 0x1
75 #define FORMAT_48BIT 0x2
76 static const struct tok ts_format_str
[] = {
77 { FORMAT_64BIT
, "64-bit" },
78 { FORMAT_48BIT
, "48-bit" },
82 static const struct tok hw_info_str
[] = {
89 arista_print_date_hms_time(netdissect_options
*ndo
, uint32_t seconds
,
93 char buf
[sizeof("-yyyyyyyyyy-mm-dd hh:mm:ss")];
95 ts
= seconds
+ (nanoseconds
/ 1000000000);
96 nanoseconds
%= 1000000000;
98 nd_format_time(buf
, sizeof(buf
), "%Y-%m-%d %H:%M:%S",
99 gmtime(&ts
)), nanoseconds
);
103 arista_ethertype_print(netdissect_options
*ndo
, const u_char
*bp
, u_int len _U_
)
106 u_short bytesConsumed
= 0;
108 ndo
->ndo_protocol
= "arista";
110 subTypeId
= GET_BE_U_2(bp
);
114 ND_PRINT("SubType %s (0x%04x), ",
115 tok2str(subtype_str
, "Unknown", subTypeId
),
118 // TapAgg Header Timestamping
119 if (subTypeId
== ARISTA_SUBTYPE_TIMESTAMP
) {
121 uint32_t nanoseconds
;
122 uint8_t ts_timescale
= GET_U_1(bp
);
125 ND_PRINT("Timescale %s (%u), ",
126 tok2str(ts_timescale_str
, "Unknown", ts_timescale
),
129 uint8_t ts_format
= GET_U_1(bp
) >> 4;
130 uint8_t hw_info
= GET_U_1(bp
) & 0x0f;
134 // Timestamp has 32-bit lsb in nanosec and remaining msb in sec
135 ND_PRINT("Format %s (%u), HwInfo %s (%u), Timestamp ",
136 tok2str(ts_format_str
, "Unknown", ts_format
),
138 tok2str(hw_info_str
, "Unknown", hw_info
),
142 seconds
= GET_BE_U_4(bp
);
143 nanoseconds
= GET_BE_U_4(bp
+ 4);
144 arista_print_date_hms_time(ndo
, seconds
, nanoseconds
);
148 seconds
= GET_BE_U_2(bp
);
149 nanoseconds
= GET_BE_U_4(bp
+ 2);
150 seconds
+= nanoseconds
/ 1000000000;
151 nanoseconds
%= 1000000000;
152 ND_PRINT("%" PRIu64
".%09u", seconds
, nanoseconds
);
162 return bytesConsumed
;