Home | History | Annotate | Line # | Download | only in dist
print-slow.c revision 1.1.1.4
      1      1.1  christos /*
      2      1.1  christos  * Copyright (c) 1998-2006 The TCPDUMP project
      3      1.1  christos  *
      4      1.1  christos  * Redistribution and use in source and binary forms, with or without
      5      1.1  christos  * modification, are permitted provided that: (1) source code
      6      1.1  christos  * distributions retain the above copyright notice and this paragraph
      7      1.1  christos  * in its entirety, and (2) distributions including binary code include
      8      1.1  christos  * the above copyright notice and this paragraph in its entirety in
      9      1.1  christos  * the documentation or other materials provided with the distribution.
     10      1.1  christos  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND
     11      1.1  christos  * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
     12      1.1  christos  * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
     13      1.1  christos  * FOR A PARTICULAR PURPOSE.
     14      1.1  christos  *
     15      1.1  christos  * support for the IEEE "slow protocols" LACP, MARKER as per 802.3ad
     16      1.1  christos  *                                       OAM as per 802.3ah
     17      1.1  christos  *
     18      1.1  christos  * Original code by Hannes Gredler (hannes (at) juniper.net)
     19      1.1  christos  */
     20      1.1  christos 
     21  1.1.1.3  christos #define NETDISSECT_REWORKED
     22      1.1  christos #ifdef HAVE_CONFIG_H
     23      1.1  christos #include "config.h"
     24      1.1  christos #endif
     25      1.1  christos 
     26      1.1  christos #include <tcpdump-stdinc.h>
     27      1.1  christos 
     28      1.1  christos #include "interface.h"
     29      1.1  christos #include "extract.h"
     30      1.1  christos #include "addrtoname.h"
     31      1.1  christos #include "ether.h"
     32      1.1  christos #include "oui.h"
     33      1.1  christos 
     34      1.1  christos struct slow_common_header_t {
     35  1.1.1.3  christos     uint8_t proto_subtype;
     36  1.1.1.3  christos     uint8_t version;
     37      1.1  christos };
     38      1.1  christos 
     39      1.1  christos #define	SLOW_PROTO_LACP                     1
     40      1.1  christos #define	SLOW_PROTO_MARKER                   2
     41      1.1  christos #define SLOW_PROTO_OAM                      3
     42      1.1  christos 
     43      1.1  christos #define	LACP_VERSION                        1
     44      1.1  christos #define	MARKER_VERSION                      1
     45      1.1  christos 
     46      1.1  christos static const struct tok slow_proto_values[] = {
     47      1.1  christos     { SLOW_PROTO_LACP, "LACP" },
     48      1.1  christos     { SLOW_PROTO_MARKER, "MARKER" },
     49      1.1  christos     { SLOW_PROTO_OAM, "OAM" },
     50      1.1  christos     { 0, NULL}
     51      1.1  christos };
     52      1.1  christos 
     53      1.1  christos static const struct tok slow_oam_flag_values[] = {
     54      1.1  christos     { 0x0001, "Link Fault" },
     55      1.1  christos     { 0x0002, "Dying Gasp" },
     56      1.1  christos     { 0x0004, "Critical Event" },
     57      1.1  christos     { 0x0008, "Local Evaluating" },
     58      1.1  christos     { 0x0010, "Local Stable" },
     59      1.1  christos     { 0x0020, "Remote Evaluating" },
     60      1.1  christos     { 0x0040, "Remote Stable" },
     61      1.1  christos     { 0, NULL}
     62  1.1.1.3  christos };
     63      1.1  christos 
     64      1.1  christos #define SLOW_OAM_CODE_INFO          0x00
     65      1.1  christos #define SLOW_OAM_CODE_EVENT_NOTIF   0x01
     66      1.1  christos #define SLOW_OAM_CODE_VAR_REQUEST   0x02
     67      1.1  christos #define SLOW_OAM_CODE_VAR_RESPONSE  0x03
     68      1.1  christos #define SLOW_OAM_CODE_LOOPBACK_CTRL 0x04
     69      1.1  christos #define SLOW_OAM_CODE_PRIVATE       0xfe
     70      1.1  christos 
     71      1.1  christos static const struct tok slow_oam_code_values[] = {
     72      1.1  christos     { SLOW_OAM_CODE_INFO, "Information" },
     73      1.1  christos     { SLOW_OAM_CODE_EVENT_NOTIF, "Event Notification" },
     74      1.1  christos     { SLOW_OAM_CODE_VAR_REQUEST, "Variable Request" },
     75      1.1  christos     { SLOW_OAM_CODE_VAR_RESPONSE, "Variable Response" },
     76      1.1  christos     { SLOW_OAM_CODE_LOOPBACK_CTRL, "Loopback Control" },
     77      1.1  christos     { SLOW_OAM_CODE_PRIVATE, "Vendor Private" },
     78      1.1  christos     { 0, NULL}
     79      1.1  christos };
     80      1.1  christos 
     81      1.1  christos struct slow_oam_info_t {
     82  1.1.1.3  christos     uint8_t info_type;
     83  1.1.1.3  christos     uint8_t info_length;
     84  1.1.1.3  christos     uint8_t oam_version;
     85  1.1.1.3  christos     uint8_t revision[2];
     86  1.1.1.3  christos     uint8_t state;
     87  1.1.1.3  christos     uint8_t oam_config;
     88  1.1.1.3  christos     uint8_t oam_pdu_config[2];
     89  1.1.1.3  christos     uint8_t oui[3];
     90  1.1.1.3  christos     uint8_t vendor_private[4];
     91      1.1  christos };
     92      1.1  christos 
     93      1.1  christos #define SLOW_OAM_INFO_TYPE_END_OF_TLV 0x00
     94      1.1  christos #define SLOW_OAM_INFO_TYPE_LOCAL 0x01
     95      1.1  christos #define SLOW_OAM_INFO_TYPE_REMOTE 0x02
     96      1.1  christos #define SLOW_OAM_INFO_TYPE_ORG_SPECIFIC 0xfe
     97      1.1  christos 
     98      1.1  christos static const struct tok slow_oam_info_type_values[] = {
     99      1.1  christos     { SLOW_OAM_INFO_TYPE_END_OF_TLV, "End of TLV marker" },
    100      1.1  christos     { SLOW_OAM_INFO_TYPE_LOCAL, "Local" },
    101      1.1  christos     { SLOW_OAM_INFO_TYPE_REMOTE, "Remote" },
    102      1.1  christos     { SLOW_OAM_INFO_TYPE_ORG_SPECIFIC, "Organization specific" },
    103      1.1  christos     { 0, NULL}
    104      1.1  christos };
    105      1.1  christos 
    106      1.1  christos #define OAM_INFO_TYPE_PARSER_MASK 0x3
    107      1.1  christos static const struct tok slow_oam_info_type_state_parser_values[] = {
    108      1.1  christos     { 0x00, "forwarding" },
    109      1.1  christos     { 0x01, "looping back" },
    110      1.1  christos     { 0x02, "discarding" },
    111      1.1  christos     { 0x03, "reserved" },
    112      1.1  christos     { 0, NULL}
    113      1.1  christos };
    114      1.1  christos 
    115      1.1  christos #define OAM_INFO_TYPE_MUX_MASK 0x4
    116      1.1  christos static const struct tok slow_oam_info_type_state_mux_values[] = {
    117      1.1  christos     { 0x00, "forwarding" },
    118      1.1  christos     { 0x04, "discarding" },
    119      1.1  christos     { 0, NULL}
    120      1.1  christos };
    121      1.1  christos 
    122      1.1  christos static const struct tok slow_oam_info_type_oam_config_values[] = {
    123      1.1  christos     { 0x01, "Active" },
    124      1.1  christos     { 0x02, "Unidirectional" },
    125      1.1  christos     { 0x04, "Remote-Loopback" },
    126      1.1  christos     { 0x08, "Link-Events" },
    127      1.1  christos     { 0x10, "Variable-Retrieval" },
    128      1.1  christos     { 0, NULL}
    129      1.1  christos };
    130      1.1  christos 
    131      1.1  christos /* 11 Bits */
    132      1.1  christos #define OAM_INFO_TYPE_PDU_SIZE_MASK 0x7ff
    133      1.1  christos 
    134      1.1  christos #define SLOW_OAM_LINK_EVENT_END_OF_TLV 0x00
    135      1.1  christos #define SLOW_OAM_LINK_EVENT_ERR_SYM_PER 0x01
    136      1.1  christos #define SLOW_OAM_LINK_EVENT_ERR_FRM 0x02
    137      1.1  christos #define SLOW_OAM_LINK_EVENT_ERR_FRM_PER 0x03
    138      1.1  christos #define SLOW_OAM_LINK_EVENT_ERR_FRM_SUMM 0x04
    139      1.1  christos #define SLOW_OAM_LINK_EVENT_ORG_SPECIFIC 0xfe
    140      1.1  christos 
    141      1.1  christos static const struct tok slow_oam_link_event_values[] = {
    142      1.1  christos     { SLOW_OAM_LINK_EVENT_END_OF_TLV, "End of TLV marker" },
    143      1.1  christos     { SLOW_OAM_LINK_EVENT_ERR_SYM_PER, "Errored Symbol Period Event" },
    144      1.1  christos     { SLOW_OAM_LINK_EVENT_ERR_FRM, "Errored Frame Event" },
    145      1.1  christos     { SLOW_OAM_LINK_EVENT_ERR_FRM_PER, "Errored Frame Period Event" },
    146      1.1  christos     { SLOW_OAM_LINK_EVENT_ERR_FRM_SUMM, "Errored Frame Seconds Summary Event" },
    147      1.1  christos     { SLOW_OAM_LINK_EVENT_ORG_SPECIFIC, "Organization specific" },
    148      1.1  christos     { 0, NULL}
    149      1.1  christos };
    150      1.1  christos 
    151      1.1  christos struct slow_oam_link_event_t {
    152  1.1.1.3  christos     uint8_t event_type;
    153  1.1.1.3  christos     uint8_t event_length;
    154  1.1.1.3  christos     uint8_t time_stamp[2];
    155  1.1.1.3  christos     uint8_t window[8];
    156  1.1.1.3  christos     uint8_t threshold[8];
    157  1.1.1.3  christos     uint8_t errors[8];
    158  1.1.1.3  christos     uint8_t errors_running_total[8];
    159  1.1.1.3  christos     uint8_t event_running_total[4];
    160      1.1  christos };
    161      1.1  christos 
    162      1.1  christos struct slow_oam_variablerequest_t {
    163  1.1.1.3  christos     uint8_t branch;
    164  1.1.1.3  christos     uint8_t leaf[2];
    165      1.1  christos };
    166      1.1  christos 
    167      1.1  christos struct slow_oam_variableresponse_t {
    168  1.1.1.3  christos     uint8_t branch;
    169  1.1.1.3  christos     uint8_t leaf[2];
    170  1.1.1.3  christos     uint8_t length;
    171      1.1  christos };
    172      1.1  christos 
    173      1.1  christos struct slow_oam_loopbackctrl_t {
    174  1.1.1.3  christos     uint8_t command;
    175      1.1  christos };
    176      1.1  christos 
    177      1.1  christos static const struct tok slow_oam_loopbackctrl_cmd_values[] = {
    178      1.1  christos     { 0x01, "Enable OAM Remote Loopback" },
    179      1.1  christos     { 0x02, "Disable OAM Remote Loopback" },
    180      1.1  christos     { 0, NULL}
    181      1.1  christos };
    182      1.1  christos 
    183      1.1  christos struct tlv_header_t {
    184  1.1.1.3  christos     uint8_t type;
    185  1.1.1.3  christos     uint8_t length;
    186      1.1  christos };
    187      1.1  christos 
    188      1.1  christos #define LACP_TLV_TERMINATOR     0x00
    189      1.1  christos #define LACP_TLV_ACTOR_INFO     0x01
    190      1.1  christos #define LACP_TLV_PARTNER_INFO   0x02
    191      1.1  christos #define LACP_TLV_COLLECTOR_INFO 0x03
    192      1.1  christos 
    193      1.1  christos #define MARKER_TLV_TERMINATOR   0x00
    194      1.1  christos #define MARKER_TLV_MARKER_INFO  0x01
    195      1.1  christos 
    196      1.1  christos static const struct tok slow_tlv_values[] = {
    197      1.1  christos     { (SLOW_PROTO_LACP << 8) + LACP_TLV_TERMINATOR, "Terminator"},
    198      1.1  christos     { (SLOW_PROTO_LACP << 8) + LACP_TLV_ACTOR_INFO, "Actor Information"},
    199      1.1  christos     { (SLOW_PROTO_LACP << 8) + LACP_TLV_PARTNER_INFO, "Partner Information"},
    200      1.1  christos     { (SLOW_PROTO_LACP << 8) + LACP_TLV_COLLECTOR_INFO, "Collector Information"},
    201      1.1  christos 
    202      1.1  christos     { (SLOW_PROTO_MARKER << 8) + MARKER_TLV_TERMINATOR, "Terminator"},
    203      1.1  christos     { (SLOW_PROTO_MARKER << 8) + MARKER_TLV_MARKER_INFO, "Marker Information"},
    204      1.1  christos     { 0, NULL}
    205      1.1  christos };
    206      1.1  christos 
    207      1.1  christos struct lacp_tlv_actor_partner_info_t {
    208  1.1.1.3  christos     uint8_t sys_pri[2];
    209  1.1.1.3  christos     uint8_t sys[ETHER_ADDR_LEN];
    210  1.1.1.3  christos     uint8_t key[2];
    211  1.1.1.3  christos     uint8_t port_pri[2];
    212  1.1.1.3  christos     uint8_t port[2];
    213  1.1.1.3  christos     uint8_t state;
    214  1.1.1.3  christos     uint8_t pad[3];
    215  1.1.1.3  christos };
    216      1.1  christos 
    217      1.1  christos static const struct tok lacp_tlv_actor_partner_info_state_values[] = {
    218      1.1  christos     { 0x01, "Activity"},
    219      1.1  christos     { 0x02, "Timeout"},
    220      1.1  christos     { 0x04, "Aggregation"},
    221      1.1  christos     { 0x08, "Synchronization"},
    222      1.1  christos     { 0x10, "Collecting"},
    223      1.1  christos     { 0x20, "Distributing"},
    224      1.1  christos     { 0x40, "Default"},
    225      1.1  christos     { 0x80, "Expired"},
    226      1.1  christos     { 0, NULL}
    227      1.1  christos };
    228      1.1  christos 
    229      1.1  christos struct lacp_tlv_collector_info_t {
    230  1.1.1.3  christos     uint8_t max_delay[2];
    231  1.1.1.3  christos     uint8_t pad[12];
    232  1.1.1.3  christos };
    233      1.1  christos 
    234      1.1  christos struct marker_tlv_marker_info_t {
    235  1.1.1.3  christos     uint8_t req_port[2];
    236  1.1.1.3  christos     uint8_t req_sys[ETHER_ADDR_LEN];
    237  1.1.1.3  christos     uint8_t req_trans_id[4];
    238  1.1.1.3  christos     uint8_t pad[2];
    239  1.1.1.3  christos };
    240      1.1  christos 
    241      1.1  christos struct lacp_marker_tlv_terminator_t {
    242  1.1.1.3  christos     uint8_t pad[50];
    243  1.1.1.3  christos };
    244      1.1  christos 
    245  1.1.1.3  christos static void slow_marker_lacp_print(netdissect_options *, register const u_char *, register u_int);
    246  1.1.1.3  christos static void slow_oam_print(netdissect_options *, register const u_char *, register u_int);
    247      1.1  christos 
    248      1.1  christos const struct slow_common_header_t *slow_com_header;
    249      1.1  christos 
    250      1.1  christos void
    251  1.1.1.3  christos slow_print(netdissect_options *ndo,
    252  1.1.1.4  christos            register const u_char *pptr, register u_int len)
    253  1.1.1.4  christos {
    254      1.1  christos     int print_version;
    255      1.1  christos 
    256      1.1  christos     slow_com_header = (const struct slow_common_header_t *)pptr;
    257  1.1.1.3  christos     ND_TCHECK(*slow_com_header);
    258      1.1  christos 
    259      1.1  christos     /*
    260      1.1  christos      * Sanity checking of the header.
    261      1.1  christos      */
    262      1.1  christos     switch (slow_com_header->proto_subtype) {
    263      1.1  christos     case SLOW_PROTO_LACP:
    264      1.1  christos         if (slow_com_header->version != LACP_VERSION) {
    265  1.1.1.3  christos             ND_PRINT((ndo, "LACP version %u packet not supported",slow_com_header->version));
    266      1.1  christos             return;
    267      1.1  christos         }
    268      1.1  christos         print_version = 1;
    269      1.1  christos         break;
    270      1.1  christos 
    271      1.1  christos     case SLOW_PROTO_MARKER:
    272      1.1  christos         if (slow_com_header->version != MARKER_VERSION) {
    273  1.1.1.3  christos             ND_PRINT((ndo, "MARKER version %u packet not supported",slow_com_header->version));
    274      1.1  christos             return;
    275      1.1  christos         }
    276      1.1  christos         print_version = 1;
    277      1.1  christos         break;
    278      1.1  christos 
    279      1.1  christos     case SLOW_PROTO_OAM: /* fall through */
    280      1.1  christos         print_version = 0;
    281      1.1  christos         break;
    282      1.1  christos 
    283      1.1  christos     default:
    284      1.1  christos         /* print basic information and exit */
    285      1.1  christos         print_version = -1;
    286      1.1  christos         break;
    287      1.1  christos     }
    288      1.1  christos 
    289      1.1  christos     if (print_version) {
    290  1.1.1.3  christos         ND_PRINT((ndo, "%sv%u, length %u",
    291      1.1  christos                tok2str(slow_proto_values, "unknown (%u)",slow_com_header->proto_subtype),
    292      1.1  christos                slow_com_header->version,
    293  1.1.1.3  christos                len));
    294      1.1  christos     } else {
    295      1.1  christos         /* some slow protos don't have a version number in the header */
    296  1.1.1.3  christos         ND_PRINT((ndo, "%s, length %u",
    297      1.1  christos                tok2str(slow_proto_values, "unknown (%u)",slow_com_header->proto_subtype),
    298  1.1.1.3  christos                len));
    299      1.1  christos     }
    300      1.1  christos 
    301      1.1  christos     /* unrecognized subtype */
    302      1.1  christos     if (print_version == -1) {
    303  1.1.1.3  christos         print_unknown_data(ndo, pptr, "\n\t", len);
    304      1.1  christos         return;
    305      1.1  christos     }
    306      1.1  christos 
    307  1.1.1.3  christos     if (!ndo->ndo_vflag)
    308      1.1  christos         return;
    309      1.1  christos 
    310      1.1  christos     switch (slow_com_header->proto_subtype) {
    311      1.1  christos     default: /* should not happen */
    312      1.1  christos         break;
    313      1.1  christos 
    314      1.1  christos     case SLOW_PROTO_OAM:
    315      1.1  christos         /* skip proto_subtype */
    316  1.1.1.3  christos         slow_oam_print(ndo, pptr+1, len-1);
    317      1.1  christos         break;
    318      1.1  christos 
    319      1.1  christos     case SLOW_PROTO_LACP:   /* LACP and MARKER share the same semantics */
    320      1.1  christos     case SLOW_PROTO_MARKER:
    321      1.1  christos         /* skip slow_common_header */
    322      1.1  christos         len -= sizeof(const struct slow_common_header_t);
    323      1.1  christos         pptr += sizeof(const struct slow_common_header_t);
    324  1.1.1.3  christos         slow_marker_lacp_print(ndo, pptr, len);
    325      1.1  christos         break;
    326      1.1  christos     }
    327      1.1  christos     return;
    328      1.1  christos 
    329      1.1  christos trunc:
    330  1.1.1.3  christos     ND_PRINT((ndo, "\n\t\t packet exceeded snapshot"));
    331      1.1  christos }
    332      1.1  christos 
    333  1.1.1.3  christos static void
    334  1.1.1.3  christos slow_marker_lacp_print(netdissect_options *ndo,
    335  1.1.1.4  christos                        register const u_char *tptr, register u_int tlen)
    336  1.1.1.4  christos {
    337      1.1  christos     const struct tlv_header_t *tlv_header;
    338      1.1  christos     const u_char *tlv_tptr;
    339      1.1  christos     u_int tlv_len, tlv_tlen;
    340      1.1  christos 
    341      1.1  christos     union {
    342      1.1  christos         const struct lacp_marker_tlv_terminator_t *lacp_marker_tlv_terminator;
    343      1.1  christos         const struct lacp_tlv_actor_partner_info_t *lacp_tlv_actor_partner_info;
    344      1.1  christos         const struct lacp_tlv_collector_info_t *lacp_tlv_collector_info;
    345      1.1  christos         const struct marker_tlv_marker_info_t *marker_tlv_marker_info;
    346      1.1  christos     } tlv_ptr;
    347  1.1.1.3  christos 
    348      1.1  christos     while(tlen>0) {
    349      1.1  christos         /* did we capture enough for fully decoding the tlv header ? */
    350  1.1.1.3  christos         ND_TCHECK2(*tptr, sizeof(struct tlv_header_t));
    351      1.1  christos         tlv_header = (const struct tlv_header_t *)tptr;
    352      1.1  christos         tlv_len = tlv_header->length;
    353      1.1  christos 
    354  1.1.1.3  christos         ND_PRINT((ndo, "\n\t%s TLV (0x%02x), length %u",
    355      1.1  christos                tok2str(slow_tlv_values,
    356      1.1  christos                        "Unknown",
    357      1.1  christos                        (slow_com_header->proto_subtype << 8) + tlv_header->type),
    358      1.1  christos                tlv_header->type,
    359  1.1.1.3  christos                tlv_len));
    360      1.1  christos 
    361      1.1  christos         if ((tlv_len < sizeof(struct tlv_header_t) ||
    362      1.1  christos             tlv_len > tlen) &&
    363      1.1  christos             tlv_header->type != LACP_TLV_TERMINATOR &&
    364      1.1  christos             tlv_header->type != MARKER_TLV_TERMINATOR) {
    365  1.1.1.3  christos             ND_PRINT((ndo, "\n\t-----trailing data-----"));
    366  1.1.1.3  christos             print_unknown_data(ndo, tptr+sizeof(struct tlv_header_t), "\n\t  ", tlen);
    367      1.1  christos             return;
    368      1.1  christos         }
    369      1.1  christos 
    370      1.1  christos         tlv_tptr=tptr+sizeof(struct tlv_header_t);
    371      1.1  christos         tlv_tlen=tlv_len-sizeof(struct tlv_header_t);
    372      1.1  christos 
    373      1.1  christos         /* did we capture enough for fully decoding the tlv ? */
    374  1.1.1.3  christos         ND_TCHECK2(*tptr, tlv_len);
    375      1.1  christos 
    376      1.1  christos         switch((slow_com_header->proto_subtype << 8) + tlv_header->type) {
    377      1.1  christos 
    378      1.1  christos             /* those two TLVs have the same structure -> fall through */
    379      1.1  christos         case ((SLOW_PROTO_LACP << 8) + LACP_TLV_ACTOR_INFO):
    380      1.1  christos         case ((SLOW_PROTO_LACP << 8) + LACP_TLV_PARTNER_INFO):
    381      1.1  christos             tlv_ptr.lacp_tlv_actor_partner_info = (const struct lacp_tlv_actor_partner_info_t *)tlv_tptr;
    382      1.1  christos 
    383  1.1.1.3  christos             ND_PRINT((ndo, "\n\t  System %s, System Priority %u, Key %u" \
    384      1.1  christos                    ", Port %u, Port Priority %u\n\t  State Flags [%s]",
    385  1.1.1.3  christos                    etheraddr_string(ndo, tlv_ptr.lacp_tlv_actor_partner_info->sys),
    386      1.1  christos                    EXTRACT_16BITS(tlv_ptr.lacp_tlv_actor_partner_info->sys_pri),
    387      1.1  christos                    EXTRACT_16BITS(tlv_ptr.lacp_tlv_actor_partner_info->key),
    388      1.1  christos                    EXTRACT_16BITS(tlv_ptr.lacp_tlv_actor_partner_info->port),
    389      1.1  christos                    EXTRACT_16BITS(tlv_ptr.lacp_tlv_actor_partner_info->port_pri),
    390      1.1  christos                    bittok2str(lacp_tlv_actor_partner_info_state_values,
    391      1.1  christos                               "none",
    392  1.1.1.3  christos                               tlv_ptr.lacp_tlv_actor_partner_info->state)));
    393      1.1  christos 
    394      1.1  christos             break;
    395      1.1  christos 
    396      1.1  christos         case ((SLOW_PROTO_LACP << 8) + LACP_TLV_COLLECTOR_INFO):
    397      1.1  christos             tlv_ptr.lacp_tlv_collector_info = (const struct lacp_tlv_collector_info_t *)tlv_tptr;
    398      1.1  christos 
    399  1.1.1.3  christos             ND_PRINT((ndo, "\n\t  Max Delay %u",
    400  1.1.1.3  christos                    EXTRACT_16BITS(tlv_ptr.lacp_tlv_collector_info->max_delay)));
    401      1.1  christos 
    402      1.1  christos             break;
    403      1.1  christos 
    404      1.1  christos         case ((SLOW_PROTO_MARKER << 8) + MARKER_TLV_MARKER_INFO):
    405      1.1  christos             tlv_ptr.marker_tlv_marker_info = (const struct marker_tlv_marker_info_t *)tlv_tptr;
    406      1.1  christos 
    407  1.1.1.3  christos             ND_PRINT((ndo, "\n\t  Request System %s, Request Port %u, Request Transaction ID 0x%08x",
    408  1.1.1.3  christos                    etheraddr_string(ndo, tlv_ptr.marker_tlv_marker_info->req_sys),
    409      1.1  christos                    EXTRACT_16BITS(tlv_ptr.marker_tlv_marker_info->req_port),
    410  1.1.1.3  christos                    EXTRACT_32BITS(tlv_ptr.marker_tlv_marker_info->req_trans_id)));
    411      1.1  christos 
    412      1.1  christos             break;
    413      1.1  christos 
    414      1.1  christos             /* those two TLVs have the same structure -> fall through */
    415      1.1  christos         case ((SLOW_PROTO_LACP << 8) + LACP_TLV_TERMINATOR):
    416      1.1  christos         case ((SLOW_PROTO_MARKER << 8) + LACP_TLV_TERMINATOR):
    417      1.1  christos             tlv_ptr.lacp_marker_tlv_terminator = (const struct lacp_marker_tlv_terminator_t *)tlv_tptr;
    418      1.1  christos             if (tlv_len == 0) {
    419      1.1  christos                 tlv_len = sizeof(tlv_ptr.lacp_marker_tlv_terminator->pad) +
    420      1.1  christos                     sizeof(struct tlv_header_t);
    421      1.1  christos                 /* tell the user that we modified the length field  */
    422  1.1.1.3  christos                 if (ndo->ndo_vflag>1)
    423  1.1.1.3  christos                     ND_PRINT((ndo, " (=%u)", tlv_len));
    424      1.1  christos                 /* we have messed around with the length field - now we need to check
    425      1.1  christos                  * again if there are enough bytes on the wire for the hexdump */
    426  1.1.1.3  christos                 ND_TCHECK2(tlv_ptr.lacp_marker_tlv_terminator->pad[0],
    427      1.1  christos                         sizeof(tlv_ptr.lacp_marker_tlv_terminator->pad));
    428      1.1  christos             }
    429      1.1  christos 
    430      1.1  christos             break;
    431      1.1  christos 
    432      1.1  christos         default:
    433  1.1.1.3  christos             if (ndo->ndo_vflag <= 1)
    434  1.1.1.3  christos                 print_unknown_data(ndo, tlv_tptr, "\n\t  ", tlv_tlen);
    435      1.1  christos             break;
    436      1.1  christos         }
    437      1.1  christos         /* do we want to see an additional hexdump ? */
    438  1.1.1.3  christos         if (ndo->ndo_vflag > 1) {
    439  1.1.1.3  christos             print_unknown_data(ndo, tptr+sizeof(struct tlv_header_t), "\n\t  ",
    440      1.1  christos                                tlv_len-sizeof(struct tlv_header_t));
    441      1.1  christos         }
    442      1.1  christos 
    443      1.1  christos         tptr+=tlv_len;
    444      1.1  christos         tlen-=tlv_len;
    445      1.1  christos     }
    446      1.1  christos     return;
    447      1.1  christos trunc:
    448  1.1.1.3  christos     ND_PRINT((ndo, "\n\t\t packet exceeded snapshot"));
    449      1.1  christos }
    450      1.1  christos 
    451  1.1.1.3  christos static void
    452  1.1.1.3  christos slow_oam_print(netdissect_options *ndo,
    453  1.1.1.4  christos                register const u_char *tptr, register u_int tlen)
    454  1.1.1.4  christos {
    455      1.1  christos     u_int hexdump;
    456      1.1  christos 
    457      1.1  christos     struct slow_oam_common_header_t {
    458  1.1.1.3  christos         uint8_t flags[2];
    459  1.1.1.3  christos         uint8_t code;
    460      1.1  christos     };
    461      1.1  christos 
    462      1.1  christos     struct slow_oam_tlv_header_t {
    463  1.1.1.3  christos         uint8_t type;
    464  1.1.1.3  christos         uint8_t length;
    465      1.1  christos     };
    466      1.1  christos 
    467      1.1  christos     union {
    468      1.1  christos         const struct slow_oam_common_header_t *slow_oam_common_header;
    469      1.1  christos         const struct slow_oam_tlv_header_t *slow_oam_tlv_header;
    470      1.1  christos     } ptr;
    471      1.1  christos 
    472      1.1  christos     union {
    473      1.1  christos 	const struct slow_oam_info_t *slow_oam_info;
    474      1.1  christos         const struct slow_oam_link_event_t *slow_oam_link_event;
    475      1.1  christos         const struct slow_oam_variablerequest_t *slow_oam_variablerequest;
    476      1.1  christos         const struct slow_oam_variableresponse_t *slow_oam_variableresponse;
    477      1.1  christos         const struct slow_oam_loopbackctrl_t *slow_oam_loopbackctrl;
    478      1.1  christos     } tlv;
    479  1.1.1.3  christos 
    480      1.1  christos     ptr.slow_oam_common_header = (struct slow_oam_common_header_t *)tptr;
    481      1.1  christos     tptr += sizeof(struct slow_oam_common_header_t);
    482      1.1  christos     tlen -= sizeof(struct slow_oam_common_header_t);
    483      1.1  christos 
    484  1.1.1.3  christos     ND_PRINT((ndo, "\n\tCode %s OAM PDU, Flags [%s]",
    485      1.1  christos            tok2str(slow_oam_code_values, "Unknown (%u)", ptr.slow_oam_common_header->code),
    486      1.1  christos            bittok2str(slow_oam_flag_values,
    487      1.1  christos                       "none",
    488  1.1.1.3  christos                       EXTRACT_16BITS(&ptr.slow_oam_common_header->flags))));
    489      1.1  christos 
    490      1.1  christos     switch (ptr.slow_oam_common_header->code) {
    491      1.1  christos     case SLOW_OAM_CODE_INFO:
    492      1.1  christos         while (tlen > 0) {
    493      1.1  christos             ptr.slow_oam_tlv_header = (const struct slow_oam_tlv_header_t *)tptr;
    494  1.1.1.3  christos             ND_PRINT((ndo, "\n\t  %s Information Type (%u), length %u",
    495      1.1  christos                    tok2str(slow_oam_info_type_values, "Reserved",
    496      1.1  christos                            ptr.slow_oam_tlv_header->type),
    497      1.1  christos                    ptr.slow_oam_tlv_header->type,
    498  1.1.1.3  christos                    ptr.slow_oam_tlv_header->length));
    499      1.1  christos 
    500      1.1  christos             hexdump = FALSE;
    501      1.1  christos             switch (ptr.slow_oam_tlv_header->type) {
    502      1.1  christos             case SLOW_OAM_INFO_TYPE_END_OF_TLV:
    503      1.1  christos                 if (ptr.slow_oam_tlv_header->length != 0) {
    504  1.1.1.3  christos                     ND_PRINT((ndo, "\n\t    ERROR: illegal length - should be 0"));
    505      1.1  christos                 }
    506      1.1  christos                 return;
    507  1.1.1.3  christos 
    508      1.1  christos             case SLOW_OAM_INFO_TYPE_LOCAL: /* identical format - fall through */
    509      1.1  christos             case SLOW_OAM_INFO_TYPE_REMOTE:
    510      1.1  christos                 tlv.slow_oam_info = (const struct slow_oam_info_t *)tptr;
    511  1.1.1.3  christos 
    512      1.1  christos                 if (tlv.slow_oam_info->info_length !=
    513      1.1  christos                     sizeof(struct slow_oam_info_t)) {
    514  1.1.1.3  christos                     ND_PRINT((ndo, "\n\t    ERROR: illegal length - should be %lu",
    515  1.1.1.3  christos                            (unsigned long) sizeof(struct slow_oam_info_t)));
    516      1.1  christos                     return;
    517      1.1  christos                 }
    518      1.1  christos 
    519  1.1.1.3  christos                 ND_PRINT((ndo, "\n\t    OAM-Version %u, Revision %u",
    520      1.1  christos                        tlv.slow_oam_info->oam_version,
    521  1.1.1.3  christos                        EXTRACT_16BITS(&tlv.slow_oam_info->revision)));
    522      1.1  christos 
    523  1.1.1.3  christos                 ND_PRINT((ndo, "\n\t    State-Parser-Action %s, State-MUX-Action %s",
    524      1.1  christos                        tok2str(slow_oam_info_type_state_parser_values, "Reserved",
    525      1.1  christos                                tlv.slow_oam_info->state & OAM_INFO_TYPE_PARSER_MASK),
    526      1.1  christos                        tok2str(slow_oam_info_type_state_mux_values, "Reserved",
    527  1.1.1.3  christos                                tlv.slow_oam_info->state & OAM_INFO_TYPE_MUX_MASK)));
    528  1.1.1.3  christos                 ND_PRINT((ndo, "\n\t    OAM-Config Flags [%s], OAM-PDU-Config max-PDU size %u",
    529      1.1  christos                        bittok2str(slow_oam_info_type_oam_config_values, "none",
    530      1.1  christos                                   tlv.slow_oam_info->oam_config),
    531      1.1  christos                        EXTRACT_16BITS(&tlv.slow_oam_info->oam_pdu_config) &
    532  1.1.1.3  christos                        OAM_INFO_TYPE_PDU_SIZE_MASK));
    533  1.1.1.3  christos                 ND_PRINT((ndo, "\n\t    OUI %s (0x%06x), Vendor-Private 0x%08x",
    534      1.1  christos                        tok2str(oui_values, "Unknown",
    535      1.1  christos                                EXTRACT_24BITS(&tlv.slow_oam_info->oui)),
    536      1.1  christos                        EXTRACT_24BITS(&tlv.slow_oam_info->oui),
    537  1.1.1.3  christos                        EXTRACT_32BITS(&tlv.slow_oam_info->vendor_private)));
    538      1.1  christos                 break;
    539  1.1.1.3  christos 
    540      1.1  christos             case SLOW_OAM_INFO_TYPE_ORG_SPECIFIC:
    541      1.1  christos                 hexdump = TRUE;
    542      1.1  christos                 break;
    543  1.1.1.3  christos 
    544      1.1  christos             default:
    545      1.1  christos                 hexdump = TRUE;
    546      1.1  christos                 break;
    547      1.1  christos             }
    548      1.1  christos 
    549      1.1  christos             /* infinite loop check */
    550      1.1  christos             if (!ptr.slow_oam_tlv_header->length) {
    551      1.1  christos                 return;
    552      1.1  christos             }
    553      1.1  christos 
    554      1.1  christos             /* do we also want to see a hex dump ? */
    555  1.1.1.3  christos             if (ndo->ndo_vflag > 1 || hexdump==TRUE) {
    556  1.1.1.3  christos                 print_unknown_data(ndo, tptr, "\n\t  ",
    557      1.1  christos                                    ptr.slow_oam_tlv_header->length);
    558      1.1  christos             }
    559      1.1  christos 
    560      1.1  christos             tlen -= ptr.slow_oam_tlv_header->length;
    561      1.1  christos             tptr += ptr.slow_oam_tlv_header->length;
    562      1.1  christos         }
    563      1.1  christos         break;
    564      1.1  christos 
    565      1.1  christos     case SLOW_OAM_CODE_EVENT_NOTIF:
    566      1.1  christos         while (tlen > 0) {
    567      1.1  christos             ptr.slow_oam_tlv_header = (const struct slow_oam_tlv_header_t *)tptr;
    568  1.1.1.3  christos             ND_PRINT((ndo, "\n\t  %s Link Event Type (%u), length %u",
    569      1.1  christos                    tok2str(slow_oam_link_event_values, "Reserved",
    570      1.1  christos                            ptr.slow_oam_tlv_header->type),
    571      1.1  christos                    ptr.slow_oam_tlv_header->type,
    572  1.1.1.3  christos                    ptr.slow_oam_tlv_header->length));
    573      1.1  christos 
    574      1.1  christos             hexdump = FALSE;
    575      1.1  christos             switch (ptr.slow_oam_tlv_header->type) {
    576      1.1  christos             case SLOW_OAM_LINK_EVENT_END_OF_TLV:
    577      1.1  christos                 if (ptr.slow_oam_tlv_header->length != 0) {
    578  1.1.1.3  christos                     ND_PRINT((ndo, "\n\t    ERROR: illegal length - should be 0"));
    579      1.1  christos                 }
    580      1.1  christos                 return;
    581  1.1.1.3  christos 
    582      1.1  christos             case SLOW_OAM_LINK_EVENT_ERR_SYM_PER: /* identical format - fall through */
    583      1.1  christos             case SLOW_OAM_LINK_EVENT_ERR_FRM:
    584      1.1  christos             case SLOW_OAM_LINK_EVENT_ERR_FRM_PER:
    585      1.1  christos             case SLOW_OAM_LINK_EVENT_ERR_FRM_SUMM:
    586      1.1  christos                 tlv.slow_oam_link_event = (const struct slow_oam_link_event_t *)tptr;
    587  1.1.1.3  christos 
    588      1.1  christos                 if (tlv.slow_oam_link_event->event_length !=
    589      1.1  christos                     sizeof(struct slow_oam_link_event_t)) {
    590  1.1.1.3  christos                     ND_PRINT((ndo, "\n\t    ERROR: illegal length - should be %lu",
    591  1.1.1.3  christos                            (unsigned long) sizeof(struct slow_oam_link_event_t)));
    592      1.1  christos                     return;
    593      1.1  christos                 }
    594      1.1  christos 
    595  1.1.1.3  christos                 ND_PRINT((ndo, "\n\t    Timestamp %u ms, Errored Window %" PRIu64
    596      1.1  christos                        "\n\t    Errored Threshold %" PRIu64
    597      1.1  christos                        "\n\t    Errors %" PRIu64
    598      1.1  christos                        "\n\t    Error Running Total %" PRIu64
    599      1.1  christos                        "\n\t    Event Running Total %u",
    600      1.1  christos                        EXTRACT_16BITS(&tlv.slow_oam_link_event->time_stamp)*100,
    601      1.1  christos                        EXTRACT_64BITS(&tlv.slow_oam_link_event->window),
    602      1.1  christos                        EXTRACT_64BITS(&tlv.slow_oam_link_event->threshold),
    603      1.1  christos                        EXTRACT_64BITS(&tlv.slow_oam_link_event->errors),
    604      1.1  christos                        EXTRACT_64BITS(&tlv.slow_oam_link_event->errors_running_total),
    605  1.1.1.3  christos                        EXTRACT_32BITS(&tlv.slow_oam_link_event->event_running_total)));
    606      1.1  christos                 break;
    607  1.1.1.3  christos 
    608      1.1  christos             case SLOW_OAM_LINK_EVENT_ORG_SPECIFIC:
    609      1.1  christos                 hexdump = TRUE;
    610      1.1  christos                 break;
    611  1.1.1.3  christos 
    612      1.1  christos             default:
    613      1.1  christos                 hexdump = TRUE;
    614      1.1  christos                 break;
    615      1.1  christos             }
    616      1.1  christos 
    617      1.1  christos             /* infinite loop check */
    618      1.1  christos             if (!ptr.slow_oam_tlv_header->length) {
    619      1.1  christos                 return;
    620      1.1  christos             }
    621      1.1  christos 
    622      1.1  christos             /* do we also want to see a hex dump ? */
    623  1.1.1.3  christos             if (ndo->ndo_vflag > 1 || hexdump==TRUE) {
    624  1.1.1.3  christos                 print_unknown_data(ndo, tptr, "\n\t  ",
    625      1.1  christos                                    ptr.slow_oam_tlv_header->length);
    626      1.1  christos             }
    627      1.1  christos 
    628      1.1  christos             tlen -= ptr.slow_oam_tlv_header->length;
    629      1.1  christos             tptr += ptr.slow_oam_tlv_header->length;
    630      1.1  christos         }
    631      1.1  christos         break;
    632  1.1.1.3  christos 
    633      1.1  christos     case SLOW_OAM_CODE_LOOPBACK_CTRL:
    634      1.1  christos         tlv.slow_oam_loopbackctrl = (const struct slow_oam_loopbackctrl_t *)tptr;
    635  1.1.1.3  christos         ND_PRINT((ndo, "\n\t  Command %s (%u)",
    636      1.1  christos                tok2str(slow_oam_loopbackctrl_cmd_values,
    637      1.1  christos                        "Unknown",
    638      1.1  christos                        tlv.slow_oam_loopbackctrl->command),
    639  1.1.1.3  christos                tlv.slow_oam_loopbackctrl->command));
    640      1.1  christos                tptr ++;
    641      1.1  christos                tlen --;
    642      1.1  christos         break;
    643      1.1  christos 
    644      1.1  christos         /*
    645      1.1  christos          * FIXME those are the defined codes that lack a decoder
    646      1.1  christos          * you are welcome to contribute code ;-)
    647      1.1  christos          */
    648      1.1  christos     case SLOW_OAM_CODE_VAR_REQUEST:
    649      1.1  christos     case SLOW_OAM_CODE_VAR_RESPONSE:
    650      1.1  christos     case SLOW_OAM_CODE_PRIVATE:
    651      1.1  christos     default:
    652  1.1.1.3  christos         if (ndo->ndo_vflag <= 1) {
    653  1.1.1.3  christos             print_unknown_data(ndo, tptr, "\n\t  ", tlen);
    654      1.1  christos         }
    655      1.1  christos         break;
    656      1.1  christos     }
    657      1.1  christos     return;
    658      1.1  christos }
    659