aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-metamako.c
blob: 4910dba743b0d08b49ba84ad9b48d7d0543061a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
/* packet-metamako.c
 * Routines for dissection of Metamako trailers. Forked from
 * packet-vssmonitoring.c on 20th December, 2015.
 * See https://www.metamako.com for further details.
 *
 * Copyright VSS-Monitoring 2011
 * Copyright Metamako LP 2015
 *
 * 20111205 - First edition by Sake Blok (sake.blok@SYN-bit.nl)
 * 20151220 - Forked to become packet-metamako.c
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "config.h"

#include <epan/packet.h>
#include <epan/etypes.h>
#include <epan/expert.h>
#include <epan/crc32-tvb.h>

#include <glib/gprintf.h>

#define TRAILER_MIN_LENGTH_NO_FCS 16
#define TRAILER_NS_UPPER_BOUND 1000000000
#define TRAILER_SECS_BOUNDS_DFLT "3600-"
#define TRAILER_DAYS_DIFF_LIMIT_DFLT 30
#define SECS_IN_ONE_DAY (60 * 60 * 24)

void proto_register_metamako(void);
void proto_reg_handoff_metamako(void);

/* FCS Options */
static gboolean metamako_check_fcs = TRUE;
static gint metamako_fcs_len = -1; /* By default, try to autodetect the FCS. */
/* Heuristic Options */
static gint metamako_trailer_present = -1; /* By default, try to autodetect the trailer. */
static range_t* metamako_trailer_secs_bounds = NULL;
static guint metamako_trailer_days_diff_limit = TRAILER_DAYS_DIFF_LIMIT_DFLT;

/* Protocols and Header Fields */
static int proto_metamako;

/*
  Metamako trailer format
   0.............7...............15..............23..............31
  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  |                          Original FCS                         |
  +---------------+---------------+---------------+---------------+
  |                              ...                              |
  +---------------+---------------+---------------+---------------+
  |                        TLV Extensions                         |
  +---------------+---------------+---------------+---------------+
  |                              ...                              |
  +---------------+---------------+---------------+---------------+
  |                            Seconds                            |
  +---------------+---------------+---------------+---------------+
  |                           Nanoseconds                         |
  +---------------+---------------+---------------+---------------+
  |     Flags     |           Device ID           |  Port ID      |
  +---------------+---------------+---------------+---------------+
*/

static int hf_metamako_origfcs;
static int hf_metamako_trailerext;
static int hf_metamako_unknownext;
static int hf_metamako_seqnum;
static int hf_metamako_tagstring;
static int hf_metamako_fracns;
static int hf_metamako_crchash;
static int hf_metamako_egress_seqnum;
static int hf_metamako_time_abs;
static int hf_metamako_time_rel;
static int hf_metamako_flags;
static int hf_metamako_src_port;
static int hf_metamako_src_device;
static int hf_metamako_time_diff;
static int hf_metamako_fcs;
static int hf_metamako_fcs_status;

static int hf_metamako_flags_orig_fcs_vld;
static int hf_metamako_flags_has_ext;
static int hf_metamako_flags_duplicate;
static int hf_metamako_flags_ts_degraded;
static int hf_metamako_flags_control_block_type;
static int hf_metamako_reserved;

static gint ett_metamako;
static gint ett_metamako_timestamp;
static gint ett_metamako_extensions;
static gint ett_metamako_flags;

static const enum_val_t metamako_fcs_vals[] = {
  {"heuristic", "According to heuristic", -1},
  {"never",     "Never",                   0},
  {"always",    "Always",                  4},
  {NULL, NULL, 0}
};

static const enum_val_t metamako_trailer_present_vals[] = {
  {"heuristic", "According to heuristic", -1},
  {"never",     "Never",                   0},
  {"always",    "Always",                  1},
  {NULL, NULL, 0}
};

static const value_string tfs_pcs49_btf_vals[] = {
  { 0x0, "0x33 or 0x66" },
  { 0x1, "0x78"},
  { 0, NULL }
};

static const value_string tfs_orig_fcs_status_vals[] = {
  { 0x0, "Bad" },
  { 0x1, "Good"},
  { 0, NULL }
};

static int* const flags[] = {
  &hf_metamako_flags_control_block_type,
  &hf_metamako_flags_ts_degraded,
  &hf_metamako_flags_duplicate,
  &hf_metamako_flags_has_ext,
  &hf_metamako_flags_orig_fcs_vld,
  &hf_metamako_reserved,
  NULL
};

static expert_field ei_metamako_fcs_bad;

static void
sub_nanos_base_custom(gchar* result, guint32 value)
{
  double temp_double;
  temp_double = ((double)value) / (1ULL << 24);
  snprintf(result, ITEM_LABEL_LENGTH, "%1.9fns", temp_double);
}

static int
validate_metamako_timestamp(nstime_t* metamako_time, packet_info* pinfo)
{

  /* Check that we have a valid nanoseconds field. */
  if (metamako_time->nsecs >= TRAILER_NS_UPPER_BOUND)
    return 0;

  /* Check that the seconds in the trailer timestamp are in the user-specified bounds. */
  if (!value_is_in_range(metamako_trailer_secs_bounds, (guint32)metamako_time->secs))
    return 0;

  /* Check that the number of days between the trailer timestamp
     and the capture timestamp are within the user-specified bounds.
     Don't use the abs() function because it is not supported on all
     platforms and has type ambiguity. */
  if (metamako_time->secs > pinfo->abs_ts.secs) {
    if (metamako_time->secs - pinfo->abs_ts.secs > (time_t)metamako_trailer_days_diff_limit * SECS_IN_ONE_DAY)
      return 0;
  }
  else {
    if (pinfo->abs_ts.secs - metamako_time->secs > (time_t)metamako_trailer_days_diff_limit * SECS_IN_ONE_DAY)
      return 0;
  }

  return 1;
}

static int
dissect_metamako(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, void* data _U_)
{
  guint         i, i_start, i_end, j;

  proto_tree*   ti, * parent, * item;
  proto_tree*   metamako_tree, * timestamp_tree;
  proto_tree*   extensions_tree;

  guint         offset = 0;

  guint         captured_trailer_bytes;
  guint         metamako_trailer_bytes;
  guint         trailer_min_length;
  gboolean      trailer_valid;
  gboolean      has_fcs;

  nstime_t      metamako_time, time_diff, time_rel;
  guint         metamako_meta;

  guint         metamako_tlv_count;
  guint         metamako_tlv_firstword;
  guint         metamako_tlv_len;
  guint         metamako_tlv_tag;
  guint         metamako_tlv_pos;
  guint         metamako_tlv_bytes;

  guint8        metamako_srcport;
  guint16       metamako_srcdevice;
  guint8        metamako_flags;

  struct tm*    tmp;

  /* The Metamako trailer is made up of:
     4 bytes -- original FCS
     N bytes -- trailer extensions
     4 bytes -- seconds
     4 bytes -- nanoseconds
     1 byte  -- flags
     2 bytes -- device ID
     1 byte  -- port ID

     The new FCS is not a part of the trailer specification,
     but it may be passed to this dissector in the course of
     dissecting the Ethernet trailer.
     If `metamako_fcs_len` is  0, we know it's not present;
     if `metamako_fcs_len` is  4, we know it's present;
     if `metamako_fcs_len` is -1, we need some heuristics to
     determine whether it's present.

     4 bytes -- New (valid) FCS (may or may not have been captured)
  */

  /* If the user has told us that the Metamako trailer is not present,
     then exit immediately. */
  if (metamako_trailer_present == 0)
    return 0;

  /* First get the captured length of the trailer. */
  captured_trailer_bytes = tvb_captured_length(tvb);

  /* Determine the minimum trailer length required, based on the user's
     setting of the assumed FCS capture. */
  trailer_min_length = metamako_fcs_len == 4 ? TRAILER_MIN_LENGTH_NO_FCS + 4 : TRAILER_MIN_LENGTH_NO_FCS;

  /* If we have less than `trailer_min_length` bytes captured, we can't
     read the trailer. */
  if (captured_trailer_bytes < trailer_min_length)
    return 0;

  /* Adjust the state of the loop variables to account for the user options. */
  trailer_valid = FALSE;
  i_start = metamako_fcs_len == 4 ? 1 : 0;
  i_end = metamako_fcs_len == 0 ? 1 : 2;

  /* Loop through the trailer bytes, trying to find a valid trailer.
   * When:
   *   i == 0, we assume there IS NO trailing FCS
   *   i == 1, we assume there IS a trailing FCS
   */
  for (i = i_start; i < i_end && !trailer_valid; i++) {
    has_fcs = i == 1;
    captured_trailer_bytes -= 4 * i;
    metamako_trailer_bytes = captured_trailer_bytes;
    /* Start at the tail of the trailer and work inwards. */
    metamako_meta = tvb_get_ntohl(tvb, metamako_trailer_bytes - 4);
    metamako_flags = (metamako_meta >> 24) & 0xFF;
    metamako_trailer_bytes -= 4;
    metamako_time.nsecs = tvb_get_ntohl(tvb, metamako_trailer_bytes - 4);
    metamako_trailer_bytes -= 4;
    metamako_time.secs = tvb_get_ntohl(tvb, metamako_trailer_bytes - 4);
    metamako_trailer_bytes -= 4;

    /* Check the validity of the candidate timestamp. */
    if ((metamako_trailer_present == 1) || validate_metamako_timestamp(&metamako_time, pinfo)) {
      metamako_tlv_bytes = 0;
      metamako_tlv_count = 0;
      /* If the trailer has TLV extensions, "walk" them backwards to the Orig FCS field. */
      if (metamako_flags & 0x2) {
        /* Extensions are flagged as included, check if there is bytes
         * to support this, and try to decode.
         */
        while (metamako_trailer_bytes >= 4) {
          /* Bytes are here, decode as TLVs. */
          metamako_tlv_firstword = tvb_get_ntohl(tvb, metamako_trailer_bytes - 4);
          metamako_tlv_count++;
          metamako_tlv_bytes += 4;
          metamako_trailer_bytes -= 4;

          /* Extract length */
          metamako_tlv_len = (metamako_tlv_firstword >> 6) & 0x3;

          /* If it's a secondary tag header, extract the extended length. */
          if ((metamako_tlv_firstword & 0x1F) == 0x1F)
            metamako_tlv_len = ((metamako_tlv_firstword >> 6) & 0x3FF) + 1;

          /* Skip over the data and find the next tag. We do this in a loop
             rather than subtracting `4 * metamako_tlv_len` in case the
             dissection has picked up an invalid TLV length in its
             heuristic search. This prevents the "walk" from going past the
             original length of the trailer. */
          while ((metamako_tlv_len > 0) && (metamako_trailer_bytes >= 4)) {
            metamako_tlv_len--;
            metamako_tlv_bytes += 4;
            metamako_trailer_bytes -= 4;
          }

          /* If this is flagged as the last TLV, stop. */
          if ((metamako_tlv_firstword >> 5) & 0x1) {
            break;
          }
        }
      }

      /* There should be at least enough bytes for the Orig FCS field.
       * Any bytes before this are padding. */
      if (metamako_trailer_bytes >= 4) {
        /* Decrement by the number of bytes in the Orig FCS field. */
        metamako_trailer_bytes -= 4;
        /* This byte offset is the beginning of the Metamako trailer. */
        offset = metamako_trailer_bytes;
        /* If we've made it this far, it appears we've got a valid trailer. */
        trailer_valid = TRUE;
      }
    }
  }

  /* Did we find a valid trailer? */
  if (!trailer_valid)
    return 0;

  /* Everything looks good! Now dissect the trailer. */
  col_append_str(pinfo->cinfo, COL_INFO, " with Metamako trailer");
  ti = proto_tree_add_item(tree, proto_metamako, tvb, offset, (captured_trailer_bytes - offset), ENC_NA);
  metamako_tree = proto_item_add_subtree(ti, ett_metamako);

  /* Original FCS */
  proto_tree_add_item(metamako_tree, hf_metamako_origfcs, tvb, offset, 4, ENC_BIG_ENDIAN);
  offset += 4;

  /* TLV Extensions */
  if (metamako_tlv_bytes > 0) {
    parent = proto_tree_add_item(metamako_tree, hf_metamako_trailerext, tvb, captured_trailer_bytes - 12 - metamako_tlv_bytes, metamako_tlv_bytes, ENC_NA);
    extensions_tree = proto_item_add_subtree(parent, ett_metamako_extensions);
    while (metamako_tlv_count > 0) {
      metamako_tlv_pos = captured_trailer_bytes - 16;
      i = metamako_tlv_count;
      do {
        /* Read TLV word and decode. */
        metamako_tlv_firstword = tvb_get_ntohl(tvb, metamako_tlv_pos);
        metamako_tlv_len = (metamako_tlv_firstword >> 6) & 0x3;
        metamako_tlv_bytes = (metamako_tlv_len * 4) + 3;
        metamako_tlv_tag = (metamako_tlv_firstword & 0x1F);

        /* If this is a Secondary Tag Header, decode the tag extensions. */
        if ((metamako_tlv_firstword & 0x1F) == 0x1F) {
          metamako_tlv_len = ((metamako_tlv_firstword >> 6) & 0x3FF) + 1;
          metamako_tlv_bytes = (metamako_tlv_len * 4);
          metamako_tlv_tag += ((metamako_tlv_firstword >> 16) & 0xFFFF);
        }

        /* Decrement TLV count. */
        i--;

        /* Skip over the data if this is not our destination. */
        if (i != 0)
          metamako_tlv_pos -= (metamako_tlv_len + 1) * 4;
      } while (i > 0);

      metamako_tlv_pos -= (metamako_tlv_len + 1) * 4;
      /* We've skipped to the i-th TLV, decode it. */
      switch (metamako_tlv_tag) {
      case 0x00:
        /* Ingress Sequence Number */
        proto_tree_add_item(extensions_tree, hf_metamako_seqnum, tvb, metamako_tlv_pos + 5, 2, ENC_BIG_ENDIAN);
        proto_item_append_text(parent, ", Sequence No: %d", tvb_get_ntohs(tvb, metamako_tlv_pos + 5));
        break;

      case 0x01:
        /* Sub-nanoseconds */
        proto_tree_add_item(extensions_tree, hf_metamako_fracns, tvb, metamako_tlv_pos + 4, 3, ENC_BIG_ENDIAN);
        proto_item_append_text(parent, ", Sub-nanoseconds: %1.9fns", ((double)(tvb_get_ntohl(tvb, metamako_tlv_pos + 3) & 0x00FFFFFF)) / (1ULL << 24));
        break;

      case 0x02:
        /* Deduplication CRC64 Hash */
        proto_tree_add_item(extensions_tree, hf_metamako_crchash, tvb, metamako_tlv_pos + 4, 8, ENC_BIG_ENDIAN);
        proto_item_append_text(parent, ", CRC64 ECMA Hash: 0x%" PRIx64, tvb_get_ntoh64(tvb, metamako_tlv_pos + 4));
        break;

      case 0x03:
        /* Egress Sequence Number */
        proto_tree_add_item(extensions_tree, hf_metamako_egress_seqnum, tvb, metamako_tlv_pos + 4, 3, ENC_BIG_ENDIAN);
        proto_item_append_text(parent, ", Egress Sequence No: %d", tvb_get_ntohl(tvb, metamako_tlv_pos + 3) & 0x000FFFFF);
        break;

      case 0x1F:
        /* Tag String */
        proto_tree_add_item(extensions_tree, hf_metamako_tagstring, tvb, metamako_tlv_pos + 4, metamako_tlv_len * 4, ENC_ASCII);
        break;

      default:
        /* Unknown tag: just print it's ID and Data. */
        item = proto_tree_add_item(extensions_tree, hf_metamako_unknownext, tvb, metamako_tlv_pos + 4, metamako_tlv_bytes, ENC_NA);
        /* Start with the Tag */
        proto_item_set_text(item, "Unknown Tag [0x%05" PRIx32 "]: ", metamako_tlv_tag);
        /* Iterate through the data appending as we go */
        for (j = 0; j < metamako_tlv_bytes; j++) {
          proto_item_append_text(item, "%02" PRIx8, tvb_get_guint8(tvb, metamako_tlv_pos + 4 + j));
          if ((28 + j * 2) >= ITEM_LABEL_LENGTH) {
            proto_item_append_text(item, "...");
            break;
          }
        }
        break;
      }

      /* Increment the offset by the Data + Tag size */
      offset += (metamako_tlv_len + 1) * 4;
      /* Decrement count as we've just decoded a TLV */
      metamako_tlv_count--;
    }
  }

  /* Timestamp */
  item = proto_tree_add_time(metamako_tree, hf_metamako_time_abs, tvb, offset, 8, &metamako_time);
  timestamp_tree = proto_item_add_subtree(item, ett_metamako_timestamp);

  tmp = localtime(&metamako_time.secs);
  if (tmp)
    proto_item_append_text(ti, ", Timestamp: %02d:%02d:%02d.%09ld",
      tmp->tm_hour, tmp->tm_min, tmp->tm_sec, (long)metamako_time.nsecs);
  else
    proto_item_append_text(ti, ", Timestamp: <Not representable>");

  /* [Timestamp in seconds] */
  item = proto_tree_add_time_item(timestamp_tree, hf_metamako_time_rel, tvb, offset, 8,
    ENC_BIG_ENDIAN, &time_rel, NULL, NULL);
  proto_item_set_generated(item);

  /* [Timestamp difference - capture timestamp minus trailer timestamp] */
  nstime_delta(&time_diff, &pinfo->abs_ts, &metamako_time);
  item = proto_tree_add_time(timestamp_tree, hf_metamako_time_diff, tvb, offset, 8, &time_diff);
  proto_item_set_generated(item);
  offset += 8;

  /* Flags */
  proto_tree_add_bitmask(metamako_tree, tvb, offset, hf_metamako_flags, ett_metamako_flags, flags, ENC_BIG_ENDIAN);
  offset++;

  /* Source device */
  metamako_srcdevice = tvb_get_ntohs(tvb, offset);
  proto_tree_add_item(metamako_tree, hf_metamako_src_device, tvb, offset, 2, ENC_BIG_ENDIAN);
  proto_item_append_text(ti, ", Source Device: %d", metamako_srcdevice);
  offset += 2;

  /* Source port */
  metamako_srcport = tvb_get_guint8(tvb, offset);
  proto_tree_add_item(metamako_tree, hf_metamako_src_port, tvb, offset, 1, ENC_BIG_ENDIAN);
  proto_item_append_text(ti, ", Source Port: %d", metamako_srcport);
  offset++;

  if (has_fcs) {
    guint32 sent_fcs = tvb_get_ntohl(tvb, offset);
    if (metamako_check_fcs) {
      tvbuff_t* parent_tvb = tvb_get_ds_tvb(tvb);
      guint32 fcs = crc32_802_tvb(parent_tvb, tvb_captured_length(parent_tvb) - 4);
      proto_tree_add_checksum(tree, tvb, offset, hf_metamako_fcs, hf_metamako_fcs_status, &ei_metamako_fcs_bad, pinfo, fcs, ENC_BIG_ENDIAN, PROTO_CHECKSUM_VERIFY);

      if (fcs != sent_fcs) {
        col_append_str(pinfo->cinfo, COL_INFO, " [ETHERNET FRAME CHECK SEQUENCE INCORRECT]");
      }
    }
    else {
      proto_tree_add_checksum(tree, tvb, offset, hf_metamako_fcs, hf_metamako_fcs_status, &ei_metamako_fcs_bad, pinfo, 0, ENC_BIG_ENDIAN, PROTO_CHECKSUM_NO_FLAGS);
    }
    offset += 4;
  }

  return offset;
}

void
proto_register_metamako(void)
{
  static hf_register_info hf[] = {
    { &hf_metamako_origfcs, {
        "Original FCS", "metamako.orig_fcs",
        FT_UINT32, BASE_HEX, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_trailerext, {
        "Trailer Extensions", "metamako.ext",
        FT_NONE, BASE_NONE, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_unknownext, {
        "Unknown Tag", "metamako.unknown",
        FT_BYTES, BASE_NONE, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_seqnum, {
        "Sequence Number", "metamako.seqnum",
        FT_UINT16, BASE_DEC, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_fracns, {
        "Sub-nanoseconds", "metamako.subns",
        FT_UINT24, BASE_CUSTOM, CF_FUNC(sub_nanos_base_custom), 0x0,
        NULL, HFILL }},

    { &hf_metamako_crchash, {
        "CRC64 ECMA Hash", "metamako.crchash",
        FT_UINT64, BASE_HEX, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_egress_seqnum, {
        "Egress Sequence Number", "metamako.egrseqnum",
        FT_UINT32, BASE_DEC, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_tagstring, {
        "Tag String", "metamako.tagstring",
        FT_STRING, BASE_NONE, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_time_abs, {
        "Timestamp", "metamako.time.abs",
        FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_time_rel, {
        "Timestamp", "metamako.time.rel",
        FT_RELATIVE_TIME, ENC_BIG_ENDIAN, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_time_diff, {
        "Time Difference", "metamako.time.diff",
        FT_RELATIVE_TIME, BASE_NONE, NULL, 0x0,
        "Capture timestamp minus trailer timestamp", HFILL }},

  {&hf_metamako_flags, {
        "Flags", "metamako.flags",
        FT_UINT8, BASE_HEX, NULL, 0x0,
        NULL, HFILL}},

    {&hf_metamako_reserved, {
        "Reserved", "metamako.reserved",
        FT_UINT8, BASE_HEX, NULL, 0xC8,
        NULL, HFILL}},

    {&hf_metamako_flags_control_block_type, {
        "Clause 49 BTF", "metamako.flags.pcs49_btf",
        FT_UINT8, BASE_HEX, VALS(tfs_pcs49_btf_vals), 0x20,
        NULL, HFILL}},

    {&hf_metamako_flags_ts_degraded, {
        "Timestamp degraded", "metamako.flags.ts_degraded",
        FT_BOOLEAN, 8, NULL, 0x10,
        NULL, HFILL}},

    {&hf_metamako_flags_duplicate, {
        "Duplicate Packet", "metamako.flags.is_duplicate",
        FT_BOOLEAN, 8, NULL, 0x04,
        NULL, HFILL}},

    {&hf_metamako_flags_has_ext, {
        "Has Trailer Extensions", "metamako.flags.has_extensions",
        FT_BOOLEAN, 8, NULL, 0x02,
        NULL, HFILL}},

    {&hf_metamako_flags_orig_fcs_vld, {
        "Original FCS Status", "metamako.flags.orig_fcs_status",
        FT_UINT8, BASE_HEX, VALS(tfs_orig_fcs_status_vals), 0x01,
        NULL, HFILL}},

    { &hf_metamako_src_device, {
        "Source Device ID", "metamako.src.device_id",
        FT_UINT16, BASE_DEC, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_src_port, {
        "Source Port", "metamako.src.port",
        FT_UINT16, BASE_DEC, NULL, 0x0,
        NULL, HFILL }},

    { &hf_metamako_fcs, {
        "Frame check sequence", "metamako.fcs",
        FT_UINT32, BASE_HEX, NULL, 0x0,
        "Ethernet checksum", HFILL }},

    { &hf_metamako_fcs_status, {
        "FCS Status", "metamako.fcs.status",
        FT_UINT8, BASE_NONE, VALS(proto_checksum_vals), 0x0,
        NULL, HFILL }},
  };

  static gint* ett[] = {
    &ett_metamako,
    &ett_metamako_extensions,
    &ett_metamako_timestamp,
    &ett_metamako_flags
  };

  static ei_register_info ei[] = {
    { &ei_metamako_fcs_bad, { "metamako.fcs_bad", PI_CHECKSUM, PI_ERROR, "Bad checksum", EXPFILL }},
  };

  module_t* metamako_module;

  /* Register the Metamako trailer. */
  proto_metamako = proto_register_protocol("Metamako ethernet trailer", "Metamako", "metamako");

  /* Register header fields. */
  proto_register_field_array(proto_metamako, hf, array_length(hf));

  /*  Register subtree types. */
  proto_register_subtree_array(ett, array_length(ett));

  /* Register the expert module. */
  expert_register_field_array(expert_register_protocol(proto_metamako), ei, array_length(ei));

  /* Register configuration preferences */
  metamako_module = prefs_register_protocol(proto_metamako, NULL);

  range_convert_str(wmem_epan_scope(), &metamako_trailer_secs_bounds, TRAILER_SECS_BOUNDS_DFLT, 0xffffffff);
  prefs_register_range_preference(metamako_module, "secs_bounds",
    "Heuristic: Bounds of the seconds value in the trailer timestamp",
    "If the trailer is found using heuristics, then the trailer may or may not be added "
    "and the FCS may or may not be captured. One of the heuristics is the timestamp seconds "
    "value being within specified bounds. "
    "Set ranges of valid seconds to adjust this particular heuristic.",
    &metamako_trailer_secs_bounds, 0xffffffff);

  prefs_register_uint_preference(metamako_module, "days_diff_limit",
    "Heuristic: Max. number of days difference between capture and trailer timestamps",
    "If the trailer is found using heuristics, then the trailer may or may not be added "
    "and the FCS may or may not be captured. One of the heuristics is the number of days "
    "difference between the capture (PCAP) timestamp and the Ethernet trailer timestamp. "
    "Set an upper bound (in days) to adjust this particular heuristic.",
    10, &metamako_trailer_days_diff_limit);

  prefs_register_enum_preference(metamako_module, "trailer_present",
    "Assume packets have a Metamako trailer",
    "This option can override the trailer detection heuristic so that the Metamako "
    "trailer is either never or always present.",
    &metamako_trailer_present, metamako_trailer_present_vals, FALSE);

  prefs_register_enum_preference(metamako_module, "fcs",
    "Assume packets have FCS",
    "Some Ethernet adapters and drivers include the FCS at the end of a packet, others do not.  "
    "Some capture file formats and protocols do not indicate whether or not the FCS is included. "
    "The Metamako dissector attempts to guess whether a captured packet has an FCS, "
    "but it cannot always guess correctly. This option can override that heuristic "
    "and assume that the FCS is either never or always present.",
    &metamako_fcs_len, metamako_fcs_vals, FALSE);

  prefs_register_bool_preference(metamako_module, "check_fcs",
    "Validate the Ethernet checksum if possible",
    "Whether to validate the Frame Check Sequence",
    &metamako_check_fcs);
}

void
proto_reg_handoff_metamako(void)
{
  heur_dissector_add("eth.trailer", dissect_metamako, "Metamako ethernet trailer", "metamako_eth", proto_metamako, HEURISTIC_DISABLE);
}

/*
 * Editor modelines  -  https://www.wireshark.org/tools/modelines.html
 *
 * Local Variables:
 * c-basic-offset: 2
 * tab-width: 8
 * indent-tabs-mode: nil
 * End:
 *
 * ex: set shiftwidth=2 tabstop=8 expandtab:
 * :indentSize=2:tabSize=8:noTabs=true:
 */