FD.io VPP
v19.04.4-rc0-5-ge88582fac
Vector Packet Processing
lldp_node.h
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2011-2016 Cisco and/or its affiliates.
3
* Licensed under the Apache License, Version 2.0 (the "License");
4
* you may not use this file except in compliance with the License.
5
* You may obtain a copy of the License at:
6
*
7
* http://www.apache.org/licenses/LICENSE-2.0
8
*
9
* Unless required by applicable law or agreed to in writing, software
10
* distributed under the License is distributed on an "AS IS" BASIS,
11
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
* See the License for the specific language governing permissions and
13
* limitations under the License.
14
*/
15
/**
16
* @file
17
* @brief LLDP global declarations
18
*/
19
#ifndef __included_lldp_node_h__
20
#define __included_lldp_node_h__
21
22
#include <
vlib/vlib.h
>
23
#include <
vlib/unix/unix.h
>
24
#include <
vnet/snap/snap.h
>
25
#include <
vppinfra/format.h
>
26
#include <
vppinfra/hash.h
>
27
28
#include <
vnet/lldp/lldp_protocol.h
>
29
30
typedef
struct
lldp_intf
31
{
32
/* hw interface index */
33
u32
hw_if_index
;
34
35
/* Timers */
36
f64
last_heard
;
37
f64
last_sent
;
38
39
/* Info received from peer */
40
u8
*
chassis_id
;
41
u8
*
port_id
;
42
u16
ttl
;
43
lldp_port_id_subtype_t
port_id_subtype
;
44
lldp_chassis_id_subtype_t
chassis_id_subtype
;
45
46
/* Local info */
47
u8
*
port_desc
;
48
49
/* management ipv4 address */
50
u8
*
mgmt_ip4
;
51
52
/* management ipv6 address */
53
u8
*
mgmt_ip6
;
54
55
/* management object identifier */
56
u8
*
mgmt_oid
;
57
}
lldp_intf_t
;
58
59
typedef
struct
60
{
61
/* pool of lldp-enabled interface context data */
62
lldp_intf_t
*
intfs
;
63
64
/* rapidly find an interface by vlib hw interface index */
65
uword
*
intf_by_hw_if_index
;
66
67
/* Background process node index */
68
u32
lldp_process_node_index
;
69
70
/* interface idxs (into intfs pool) in the order of timing out */
71
u32
*
intfs_timeouts
;
72
73
/* index of the interface which will time out next */
74
u32
intfs_timeouts_idx
;
75
76
/* packet template for sending out packets */
77
vlib_packet_template_t
packet_template
;
78
79
/* convenience variables */
80
vlib_main_t
*
vlib_main
;
81
vnet_main_t
*
vnet_main
;
82
83
/* system name advertised over LLDP (default is none) */
84
u8
*
sys_name
;
85
86
/* IEEE Std 802.1AB-2009:
87
* 9.2.5.6 msgTxHold
88
* This variable is used, as a multiplier of msgTxInterval, to determine the
89
* value of txTTL that is carried in LLDP frames transmitted by the LLDP
90
* agent. The recommended default value of msgTxHold is 4; this value can
91
* be changed by management to any value in the range 1 through 100.
92
*/
93
u8
msg_tx_hold
;
94
95
/* IEEE Std 802.1AB-2009:
96
* 9.2.5.7 msgTxInterval
97
* This variable defines the time interval in timer ticks between
98
* transmissions during normal transmission periods (i.e., txFast is zero).
99
* The recommended default value for msgTxInterval is 30 s; this value can
100
* be changed by management to any value in the range 1 through 3600.
101
*/
102
u16
msg_tx_interval
;
103
}
lldp_main_t
;
104
105
#define LLDP_MIN_TX_HOLD (1)
106
#define LLDP_MAX_TX_HOLD (100)
107
#define LLDP_MIN_TX_INTERVAL (1)
108
#define LLDP_MAX_TX_INTERVAL (3600)
109
110
extern
lldp_main_t
lldp_main
;
111
112
/* Packet counters */
113
#define foreach_lldp_error(F) \
114
F(NONE, "good lldp packets (processed)") \
115
F(CACHE_HIT, "good lldp packets (cache hit)") \
116
F(BAD_TLV, "lldp packets with bad TLVs") \
117
F(DISABLED, "lldp packets received on disabled interfaces")
118
119
typedef
enum
120
{
121
#define F(sym, str) LLDP_ERROR_##sym,
122
foreach_lldp_error
(
F
)
123
#undef F
124
LLDP_N_ERROR,
125
}
lldp_error_t
;
126
127
/* lldp packet trace capture */
128
typedef
struct
129
{
130
u32
len
;
131
u8
data
[400];
132
}
lldp_input_trace_t
;
133
134
typedef
enum
135
{
136
LLDP_EVENT_RESCHEDULE
= 1,
137
}
lldp_process_event_t
;
138
139
lldp_intf_t
*
lldp_get_intf
(
lldp_main_t
* lm,
u32
hw_if_index
);
140
lldp_intf_t
*
lldp_create_intf
(
lldp_main_t
* lm,
u32
hw_if_index
);
141
void
lldp_delete_intf
(
lldp_main_t
* lm,
lldp_intf_t
* n);
142
lldp_error_t
lldp_input
(
vlib_main_t
*
vm
,
vlib_buffer_t
* b0,
u32
bi0);
143
u8
*
lldp_input_format_trace
(
u8
* s, va_list * args);
144
void
lldp_send_ethernet
(
lldp_main_t
* lm,
lldp_intf_t
* n,
int
shutdown);
145
void
lldp_schedule_intf
(
lldp_main_t
* lm,
lldp_intf_t
* n);
146
void
lldp_unschedule_intf
(
lldp_main_t
* lm,
lldp_intf_t
* n);
147
148
#endif
/* __included_lldp_node_h__ */
149
150
/*
151
* fd.io coding-style-patch-verification: ON
152
*
153
* Local Variables:
154
* eval: (c-set-style "gnu")
155
* End:
156
*/
lldp_main_t::vnet_main
vnet_main_t * vnet_main
Definition:
lldp_node.h:81
lldp_intf::mgmt_ip4
u8 * mgmt_ip4
Definition:
lldp_node.h:50
lldp_intf::hw_if_index
u32 hw_if_index
Definition:
lldp_node.h:33
lldp_chassis_id_subtype_t
lldp_chassis_id_subtype_t
Definition:
lldp_protocol.h:85
lldp_main_t::intfs_timeouts_idx
u32 intfs_timeouts_idx
Definition:
lldp_node.h:74
lldp_intf::chassis_id
u8 * chassis_id
Definition:
lldp_node.h:40
lldp_main_t::intfs
lldp_intf_t * intfs
Definition:
lldp_node.h:62
lldp_input_trace_t::len
u32 len
Definition:
lldp_node.h:130
lldp_intf::last_sent
f64 last_sent
Definition:
lldp_node.h:37
data
u8 data[128]
Definition:
ipsec.api:248
lldp_main_t::intfs_timeouts
u32 * intfs_timeouts
Definition:
lldp_node.h:71
lldp_intf::ttl
u16 ttl
Definition:
lldp_node.h:42
u8
unsigned char u8
Definition:
types.h:56
hash.h
f64
double f64
Definition:
types.h:142
lldp_unschedule_intf
void lldp_unschedule_intf(lldp_main_t *lm, lldp_intf_t *n)
Definition:
lldp_node.c:267
lldp_send_ethernet
void lldp_send_ethernet(lldp_main_t *lm, lldp_intf_t *n, int shutdown)
Definition:
lldp_output.c:199
lldp_main_t::msg_tx_hold
u8 msg_tx_hold
Definition:
lldp_node.h:93
lldp_main_t
Definition:
lldp_node.h:59
lldp_input_format_trace
u8 * lldp_input_format_trace(u8 *s, va_list *args)
Definition:
lldp_cli.c:696
lldp_intf::port_id
u8 * port_id
Definition:
lldp_node.h:41
lldp_input
lldp_error_t lldp_input(vlib_main_t *vm, vlib_buffer_t *b0, u32 bi0)
Definition:
lldp_input.c:249
vlib_packet_template_t
Definition:
buffer_funcs.h:1312
lldp_delete_intf
void lldp_delete_intf(lldp_main_t *lm, lldp_intf_t *n)
Definition:
lldp_output.c:250
u32
unsigned int u32
Definition:
types.h:88
LLDP_EVENT_RESCHEDULE
Definition:
lldp_node.h:136
lldp_error_t
lldp_error_t
Definition:
lldp_node.h:119
lldp_main_t::msg_tx_interval
u16 msg_tx_interval
Definition:
lldp_node.h:102
lldp_main_t::intf_by_hw_if_index
uword * intf_by_hw_if_index
Definition:
lldp_node.h:65
unix.h
u16
unsigned short u16
Definition:
types.h:57
lldp_main
lldp_main_t lldp_main
Definition:
lldp_input.c:117
format.h
lldp_schedule_intf
void lldp_schedule_intf(lldp_main_t *lm, lldp_intf_t *n)
Definition:
lldp_node.c:242
vm
vlib_main_t * vm
Definition:
buffer.c:312
lldp_intf::port_desc
u8 * port_desc
Definition:
lldp_node.h:47
lldp_get_intf
lldp_intf_t * lldp_get_intf(lldp_main_t *lm, u32 hw_if_index)
Definition:
lldp_input.c:212
lldp_protocol.h
LLDP protocol declarations.
lldp_process_event_t
lldp_process_event_t
Definition:
lldp_node.h:134
vlib.h
lldp_intf::mgmt_oid
u8 * mgmt_oid
Definition:
lldp_node.h:56
vnet_main_t
Definition:
vnet.h:51
lldp_intf::mgmt_ip6
u8 * mgmt_ip6
Definition:
lldp_node.h:53
foreach_lldp_error
#define foreach_lldp_error(F)
Definition:
lldp_node.h:113
lldp_main_t::lldp_process_node_index
u32 lldp_process_node_index
Definition:
lldp_node.h:68
lldp_port_id_subtype_t
lldp_port_id_subtype_t
Definition:
lldp_protocol.h:114
lldp_main_t::vlib_main
vlib_main_t * vlib_main
Definition:
lldp_node.h:80
lldp_intf_t
struct lldp_intf lldp_intf_t
lldp_intf::port_id_subtype
lldp_port_id_subtype_t port_id_subtype
Definition:
lldp_node.h:43
lldp_input_trace_t
Definition:
lldp_node.h:128
F
#define F(sym, str)
Definition:
lldp_node.h:121
lldp_intf
Definition:
lldp_node.h:30
vlib_main_t
Definition:
main.h:68
vlib_buffer_t
VLIB buffer representation.
Definition:
buffer.h:102
uword
u64 uword
Definition:
types.h:112
lldp_intf::chassis_id_subtype
lldp_chassis_id_subtype_t chassis_id_subtype
Definition:
lldp_node.h:44
lldp_create_intf
lldp_intf_t * lldp_create_intf(lldp_main_t *lm, u32 hw_if_index)
Definition:
lldp_input.c:224
lldp_main_t::packet_template
vlib_packet_template_t packet_template
Definition:
lldp_node.h:77
snap.h
lldp_main_t::sys_name
u8 * sys_name
Definition:
lldp_node.h:84
lldp_intf::last_heard
f64 last_heard
Definition:
lldp_node.h:36
src
vnet
lldp
lldp_node.h
Generated on Mon Jun 29 2020 14:37:05 for FD.io VPP by
1.8.13