FD.io VPP  v21.06-3-gbb25fbf28
Vector Packet Processing
cdp.h
Go to the documentation of this file.
1 
2 /*
3  * cdp.h - cdp protocol plug-in
4  *
5  * Copyright (c) 2011-2018 by Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18 #ifndef __included_cdp_h__
19 #define __included_cdp_h__
20 
21 #include <vlib/vlib.h>
22 #include <vlib/unix/unix.h>
23 
24 #include <vnet/snap/snap.h>
25 #include <vnet/hdlc/hdlc.h>
26 #include <vnet/hdlc/packet.h>
27 
28 #include <vppinfra/format.h>
29 #include <vppinfra/hash.h>
30 
31 #include "cdp_protocol.h"
32 
33 typedef enum
34 {
40 
41 typedef struct
42 {
43  /* neighbor's vlib software interface index */
45 
46  /* Timers */
49 
50  /* Neighbor time-to-live (usually 180s) */
52 
53  /* "no cdp run" or similar */
55 
56  /* tx packet template id for this neighbor */
58 
59  /* Jenkins hash optimization: avoid tlv scan, send short keepalive msg */
62 
63  /* Info we actually keep about each neighbor */
68 
69  /* last received packet, for the J-hash optimization */
72 
73 #define foreach_neighbor_string_field \
74 _(device_name) \
75 _(version) \
76 _(port_id) \
77 _(platform)
78 
79 typedef struct
80 {
81  /* pool of cdp neighbors */
83 
84  /* plugin message id base */
86 
87  /* tx pcap debug enable */
89 
90  /* rapidly find a neighbor by vlib software interface index */
92 
93  /* Background process node index */
95 
96  /* top-level state */
97  int enabled;
99 
100  /* Packet templates for different encap types */
102 
103  /* convenience variables */
106 } cdp_main_t;
107 
108 extern cdp_main_t cdp_main;
110 
111 /* Packet counters */
112 #define foreach_cdp_error \
113 _ (NONE, "good cdp packets (processed)") \
114 _ (CACHE_HIT, "good cdp packets (cache hit)") \
115 _ (BAD_TLV, "cdp packets with bad TLVs") \
116 _ (PROTOCOL_VERSION, "cdp packets with bad protocol versions") \
117 _ (CHECKSUM, "cdp packets with bad checksums") \
118 _ (DISABLED, "cdp packets received on disabled interfaces")
119 
120 typedef enum
121 {
122 #define _(sym,str) CDP_ERROR_##sym,
124 #undef _
126 } cdp_error_t;
127 
128 /* cdp packet trace capture */
129 typedef struct
130 {
132  u8 data[400];
134 
135 typedef enum
136 {
140 
142 void cdp_periodic (vlib_main_t * vm);
144 u16 cdp_checksum (void *p, int count);
145 u8 *cdp_input_format_trace (u8 * s, va_list * args);
147 
148 #endif /* __included_cdp_h__ */
149 
150 /*
151  * fd.io coding-style-patch-verification: ON
152  *
153  * Local Variables:
154  * eval: (c-set-style "gnu")
155  * End:
156  */
cdp_main_t::neighbors
cdp_neighbor_t * neighbors
Definition: cdp.h:82
vlib.h
cdp_process_event_t
cdp_process_event_t
Definition: cdp.h:135
vlib_packet_template_t
Definition: buffer_funcs.h:1436
cdp_main_t::vnet_main
vnet_main_t * vnet_main
Definition: cdp.h:105
cdp_main_t::cdp_process_node_index
u32 cdp_process_node_index
Definition: cdp.h:94
cdp_main_t::msg_id_base
u16 msg_id_base
Definition: cdp.h:85
cdp_neighbor_t::ttl_in_seconds
u8 ttl_in_seconds
Definition: cdp.h:51
foreach_cdp_error
#define foreach_cdp_error
Definition: cdp.h:112
CDP_PACKET_TEMPLATE_SRP
@ CDP_PACKET_TEMPLATE_SRP
Definition: cdp.h:37
cdp_neighbor_t::device_name
u8 * device_name
Definition: cdp.h:64
hdlc.h
packet.h
cdp_neighbor_t::last_packet_signature
uword last_packet_signature
Definition: cdp.h:61
u16
unsigned short u16
Definition: types.h:57
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
cdp_main
cdp_main_t cdp_main
Definition: cdp_input.c:17
cdp_input
cdp_error_t cdp_input(vlib_main_t *vm, vlib_buffer_t *b0, u32 bi0)
Definition: cdp_input.c:323
cdp_neighbor_t::last_packet_signature_valid
u8 last_packet_signature_valid
Definition: cdp.h:60
snap.h
cdp_neighbor_t
Definition: cdp.h:41
cdp_input_trace_t::len
u32 len
Definition: cdp.h:131
count
u8 count
Definition: dhcp.api:208
CDP_EVENT_ENABLE
@ CDP_EVENT_ENABLE
Definition: cdp.h:137
CDP_PACKET_TEMPLATE_HDLC
@ CDP_PACKET_TEMPLATE_HDLC
Definition: cdp.h:36
cdp_neighbor_t::platform
u8 * platform
Definition: cdp.h:67
cdp_periodic
void cdp_periodic(vlib_main_t *vm)
Definition: cdp_periodic.c:350
cdp_main_t::tx_pcap_debug
u8 tx_pcap_debug
Definition: cdp.h:88
cdp_error_t
cdp_error_t
Definition: cdp.h:120
uword
u64 uword
Definition: types.h:112
CDP_EVENT_DISABLE
@ CDP_EVENT_DISABLE
Definition: cdp.h:138
cdp_neighbor_t::version
u8 * version
Definition: cdp.h:65
cdp_neighbor_t::last_sent
f64 last_sent
Definition: cdp.h:48
f64
double f64
Definition: types.h:142
cm
vnet_feature_config_main_t * cm
Definition: nat44_ei_hairpinning.c:591
cdp_main_t::cdp_protocol_registered
int cdp_protocol_registered
Definition: cdp.h:98
format.h
cdp_neighbor_t::last_heard
f64 last_heard
Definition: cdp.h:47
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
cdp_process_node
vlib_node_registration_t cdp_process_node
data
u8 data[128]
Definition: ipsec_types.api:92
cdp_main_t::enabled
int enabled
Definition: cdp.h:97
vnet_main_t
Definition: vnet.h:76
cdp_neighbor_t::disabled
u8 disabled
Definition: cdp.h:54
cdp_neighbor_t::sw_if_index
u32 sw_if_index
Definition: cdp.h:44
cdp_neighbor_t::port_id
u8 * port_id
Definition: cdp.h:66
u32
unsigned int u32
Definition: types.h:88
CDP_N_PACKET_TEMPLATES
@ CDP_N_PACKET_TEMPLATES
Definition: cdp.h:38
cdp_neighbor_t::packet_template_index
u8 packet_template_index
Definition: cdp.h:57
cdp_main_t::neighbor_by_sw_if_index
uword * neighbor_by_sw_if_index
Definition: cdp.h:91
vlib_main_t
Definition: main.h:102
hash.h
cdp_main_t::vlib_main
vlib_main_t * vlib_main
Definition: cdp.h:104
u8
unsigned char u8
Definition: types.h:56
unix.h
cdp_keepalive
void cdp_keepalive(cdp_main_t *cm, cdp_neighbor_t *n)
cdp_input_format_trace
u8 * cdp_input_format_trace(u8 *s, va_list *args)
Definition: cdp_input.c:484
cdp_input_trace_t
Definition: cdp.h:129
CDP_PACKET_TEMPLATE_ETHERNET
@ CDP_PACKET_TEMPLATE_ETHERNET
Definition: cdp.h:35
cdp_checksum
u16 cdp_checksum(void *p, int count)
Definition: cdp_input.c:26
cdp_neighbor_t::last_rx_pkt
u8 * last_rx_pkt
Definition: cdp.h:70
vnet_cdp_create_periodic_process
void vnet_cdp_create_periodic_process(cdp_main_t *cmp)
Definition: cdp_node.c:201
cdp_packet_template_id_t
cdp_packet_template_id_t
Definition: cdp.h:33
cdp_main_t
Definition: cdp.h:79
CDP_N_ERROR
@ CDP_N_ERROR
Definition: cdp.h:125
cdp_protocol.h
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111