FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
srp.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 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  * srp.h: types/functions for srp.
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39 
40 #ifndef included_srp_h
41 #define included_srp_h
42 
43 #include <vnet/vnet.h>
44 #include <vnet/srp/packet.h>
45 #include <vnet/ethernet/ethernet.h>
46 
48 
49 /* See RFC 2892. */
50 #define foreach_srp_ips_state \
51  _ (idle) \
52  _ (pass_thru) \
53  _ (wrapped)
54 
55 typedef enum {
56 #define _(f) SRP_IPS_STATE_##f,
58 #undef _
61 
62 typedef enum {
66  SRP_SIDE_A = SRP_RING_OUTER, /* outer rx, inner tx */
67  SRP_SIDE_B = SRP_RING_INNER, /* inner rx, outer tx */
70 
71 typedef struct {
73 
74  /* Hardware interface for this ring/side. */
76 
77  /* Software interface corresponding to hardware interface. */
79 
80  /* Mac address of neighbor on RX fiber. */
81  u8 rx_neighbor_address[6];
82 
84 
85  /* True if we are waiting to restore signal. */
87 
88  /* Time stamp when signal became valid. */
91 
92 struct srp_interface_t;
93 typedef void (srp_hw_wrap_function_t) (u32 hw_if_index, u32 wrap_enable);
94 typedef void (srp_hw_enable_function_t) (struct srp_interface_t * si, u32 wrap_enable);
95 
96 typedef struct {
97  /* Delay between wait to restore event and entering idle state in seconds. */
99 
100  /* Number of seconds between sending ips messages to neighbors. */
103 
104 typedef struct srp_interface_t {
105  /* Current IPS state. */
107 
108  /* Address for this interface. */
110 
111  /* Enable IPS process handling for this interface. */
113 
115 
116  /* Configurable parameters. */
118 
120 
123 
124 typedef struct {
126 
127  /* Pool of SRP interfaces. */
129 
131 
132  /* TTL to use for outgoing data packets. */
134 
136 
138 } srp_main_t;
139 
140 /* Registers sides A/B hardware interface as being SRP capable. */
141 void srp_register_interface (u32 * hw_if_indices);
142 
143 /* Enable sending IPS messages for interface implied by given vlib hardware interface. */
144 void srp_interface_enable_ips (u32 hw_if_index);
145 
146 /* Set function to wrap hardware side of SRP interface. */
148 
150 
152 
153 /* Called when an IPS control packet is received on given interface. */
155 
156 /* Preform local IPS request on given interface. */
158 
159 always_inline void
161 {
163  link_is_up
164  ? SRP_IPS_REQUEST_wait_to_restore
165  : SRP_IPS_REQUEST_signal_fail);
166 }
167 
170 
171 extern srp_main_t srp_main;
172 
175 {
176  srp_main_t * sm = &srp_main;
177  uword * p = hash_get (sm->interface_index_by_hw_if_index, hw_if_index);
178  return p ? pool_elt_at_index (sm->interface_pool, p[0]) : 0;
179 }
180 
181 u8 * format_srp_header (u8 * s, va_list * args);
182 u8 * format_srp_header_with_length (u8 * s, va_list * args);
183 u8 * format_srp_device (u8 * s, va_list * args);
184 
185 /* Parse srp header. */
186 uword
187 unformat_srp_header (unformat_input_t * input, va_list * args);
188 
189 uword unformat_pg_srp_header (unformat_input_t * input, va_list * args);
190 
191 #define foreach_srp_error \
192  _ (NONE, "no error") \
193  _ (UNKNOWN_MODE, "unknown mode in SRP header") \
194  _ (KEEP_ALIVE_DROPPED, "v1 keep alive mode in SRP header") \
195  _ (CONTROL_PACKETS_PROCESSED, "control packets processed") \
196  _ (IPS_PACKETS_PROCESSED, "IPS packets processed") \
197  _ (UNKNOWN_CONTROL, "unknown control packet") \
198  _ (CONTROL_VERSION_NON_ZERO, "control packet with non-zero version") \
199  _ (CONTROL_BAD_CHECKSUM, "control packet with bad checksum") \
200  _ (TOPOLOGY_BAD_LENGTH, "topology packet with bad length")
201 
202 typedef enum {
203 #define _(n,s) SRP_ERROR_##n,
205 #undef _
207 } srp_error_t;
208 
210 
211 #endif /* included_srp_h */
srp_interface_t::rings
srp_interface_ring_t rings[SRP_N_RING]
Definition: srp.h:114
srp_interface_set_hw_enable_function
void srp_interface_set_hw_enable_function(u32 hw_if_index, srp_hw_enable_function_t *f)
Definition: interface.c:162
srp_ring_type_t
srp_ring_type_t
Definition: srp.h:62
foreach_srp_ips_state
#define foreach_srp_ips_state
Definition: srp.h:50
srp_main_t
Definition: srp.h:124
format_srp_header
u8 * format_srp_header(u8 *s, va_list *args)
Definition: format.c:104
srp_main_t::vlib_main
vlib_main_t * vlib_main
Definition: srp.h:125
f
vlib_frame_t * f
Definition: interface_output.c:1098
pool_elt_at_index
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:549
srp_main_t::interface_index_by_hw_if_index
uword * interface_index_by_hw_if_index
Definition: srp.h:130
srp_ips_rx_packet
void srp_ips_rx_packet(u32 sw_if_index, srp_ips_header_t *ips_packet)
Definition: node.c:668
serialize_function_t
void() serialize_function_t(serialize_main_t *m, va_list *va)
Definition: serialize.h:168
srp_interface_ring_t::sw_if_index
u32 sw_if_index
Definition: srp.h:78
srp_ips_header_t
Definition: packet.h:178
srp_interface_t
struct srp_interface_t srp_interface_t
SRP_RING_OUTER
@ SRP_RING_OUTER
Definition: srp.h:63
unformat_pg_srp_header
uword unformat_pg_srp_header(unformat_input_t *input, va_list *args)
Definition: pg.c:78
unformat_input_t
struct _unformat_input_t unformat_input_t
srp_main_t::default_data_ttl
u32 default_data_ttl
Definition: srp.h:133
srp_interface_t::hw_wrap_function
srp_hw_wrap_function_t * hw_wrap_function
Definition: srp.h:119
unformat_srp_header
uword unformat_srp_header(unformat_input_t *input, va_list *args)
Definition: format.c:111
srp_interface_t::current_ips_state
srp_ips_state_t current_ips_state
Definition: srp.h:106
srp_main_t::interface_pool
srp_interface_t * interface_pool
Definition: srp.h:128
srp_interface_ring_t::hw_if_index
u32 hw_if_index
Definition: srp.h:75
srp_get_interface_from_vnet_hw_interface
static srp_interface_t * srp_get_interface_from_vnet_hw_interface(u32 hw_if_index)
Definition: srp.h:174
ethernet.h
srp_interface_t::config
srp_interface_config_t config
Definition: srp.h:117
packet.h
srp_main_t::srp_register_interface_waiting_process_pool
vlib_one_time_waiting_process_t * srp_register_interface_waiting_process_pool
Definition: srp.h:135
srp_interface_t::hw_enable_function
srp_hw_enable_function_t * hw_enable_function
Definition: srp.h:121
srp_interface_ring_t::rx_neighbor_address_valid
u8 rx_neighbor_address_valid
Definition: srp.h:83
SRP_N_ERROR
@ SRP_N_ERROR
Definition: srp.h:206
srp_hw_enable_function_t
void() srp_hw_enable_function_t(struct srp_interface_t *si, u32 wrap_enable)
Definition: srp.h:94
srp_interface_ring_t::wait_to_restore_start_time
f64 wait_to_restore_start_time
Definition: srp.h:89
SRP_N_RING
@ SRP_N_RING
Definition: srp.h:65
srp_interface_config_t::wait_to_restore_idle_delay
f64 wait_to_restore_idle_delay
Definition: srp.h:98
srp_interface_set_hw_wrap_function
void srp_interface_set_hw_wrap_function(u32 hw_if_index, srp_hw_wrap_function_t *f)
Definition: interface.c:156
hash_get
#define hash_get(h, key)
Definition: hash.h:249
srp_register_interface
void srp_register_interface(u32 *hw_if_indices)
Definition: interface.c:151
c
svmdb_client_t * c
Definition: vpp_get_metrics.c:48
srp_error_t
srp_error_t
Definition: srp.h:202
srp_interface_config_t
Definition: srp.h:96
uword
u64 uword
Definition: types.h:112
srp_hw_interface_class
vnet_hw_interface_class_t srp_hw_interface_class
serialize_srp_main
serialize_function_t serialize_srp_main
Definition: srp.h:209
unserialize_srp_main
serialize_function_t unserialize_srp_main
Definition: srp.h:209
f64
double f64
Definition: types.h:142
foreach_srp_error
#define foreach_srp_error
Definition: srp.h:191
srp_ips_state_t
srp_ips_state_t
Definition: srp.h:55
srp_ips_local_request
void srp_ips_local_request(u32 sw_if_index, srp_ips_request_type_t request)
Definition: node.c:751
srp_interface_enable_ips
void srp_interface_enable_ips(u32 hw_if_index)
Definition: interface.c:168
srp_interface_t::my_address
u8 my_address[6]
Definition: srp.h:109
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
SRP_N_SIDE
@ SRP_N_SIDE
Definition: srp.h:68
srp_interface_config_t::ips_tx_interval
f64 ips_tx_interval
Definition: srp.h:101
srp_interface_t
Definition: srp.h:104
request
vhost_user_req_t request
Definition: vhost_user.h:123
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
srp_interface_ring_t::ring
srp_ring_type_t ring
Definition: srp.h:72
srp_ips_request_type_t
srp_ips_request_type_t
Definition: packet.h:162
srp_ips_link_change
static void srp_ips_link_change(u32 sw_if_index, u32 link_is_up)
Definition: srp.h:160
u32
unsigned int u32
Definition: types.h:88
srp_interface_ring_t
Definition: srp.h:71
srp_hw_wrap_function_t
void() srp_hw_wrap_function_t(u32 hw_if_index, u32 wrap_enable)
Definition: srp.h:93
SRP_N_IPS_STATE
@ SRP_N_IPS_STATE
Definition: srp.h:59
si
vnet_sw_interface_t * si
Definition: interface_output.c:418
srp_interface_t::ips_process_enable
u8 ips_process_enable
Definition: srp.h:112
srp_interface_get_interface_config
void srp_interface_get_interface_config(u32 hw_if_index, srp_interface_config_t *c)
Definition: interface.c:252
srp_ips_process_node
vlib_node_registration_t srp_ips_process_node
Definition: node.c:858
srp_main_t::srp_register_interface_waiting_process_pool_index_by_hw_if_index
uword * srp_register_interface_waiting_process_pool_index_by_hw_if_index
Definition: srp.h:137
vlib_main_t
Definition: main.h:102
u8
unsigned char u8
Definition: types.h:56
SRP_RING_INNER
@ SRP_RING_INNER
Definition: srp.h:64
vlib_one_time_waiting_process_t
Definition: node.h:602
format_srp_device
u8 * format_srp_device(u8 *s, va_list *args)
Definition: node.c:554
SRP_SIDE_B
@ SRP_SIDE_B
Definition: srp.h:67
srp_interface_ring_t::waiting_to_restore
u8 waiting_to_restore
Definition: srp.h:86
vnet.h
srp_interface_set_interface_config
void srp_interface_set_interface_config(u32 hw_if_index, srp_interface_config_t *c)
Definition: interface.c:259
SRP_SIDE_A
@ SRP_SIDE_A
Definition: srp.h:66
srp_main
srp_main_t srp_main
Definition: node.c:45
sw_if_index
vl_api_interface_index_t sw_if_index
Definition: wireguard.api:34
vnet_hw_interface_class_t
struct _vnet_hw_interface_class vnet_hw_interface_class_t
format_srp_header_with_length
u8 * format_srp_header_with_length(u8 *s, va_list *args)
Definition: format.c:63