blob: 8f59e064c8bb64ae68a8f6c3cbb19414c4b6c260 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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#include <vnet/pg/pg.h>
47
48extern vnet_hw_interface_class_t srp_hw_interface_class;
49
50/* See RFC 2892. */
51#define foreach_srp_ips_state \
52 _ (idle) \
53 _ (pass_thru) \
54 _ (wrapped)
55
56typedef enum {
57#define _(f) SRP_IPS_STATE_##f,
58 foreach_srp_ips_state
59#undef _
60 SRP_N_IPS_STATE,
61} srp_ips_state_t;
62
63typedef enum {
64 SRP_RING_OUTER,
65 SRP_RING_INNER,
66 SRP_N_RING = 2,
67 SRP_SIDE_A = SRP_RING_OUTER, /* outer rx, inner tx */
68 SRP_SIDE_B = SRP_RING_INNER, /* inner rx, outer tx */
69 SRP_N_SIDE = 2,
70} srp_ring_type_t;
71
72typedef struct {
73 srp_ring_type_t ring;
74
75 /* Hardware interface for this ring/side. */
76 u32 hw_if_index;
77
78 /* Software interface corresponding to hardware interface. */
79 u32 sw_if_index;
80
81 /* Mac address of neighbor on RX fiber. */
82 u8 rx_neighbor_address[6];
83
84 u8 rx_neighbor_address_valid;
85
86 /* True if we are waiting to restore signal. */
87 u8 waiting_to_restore;
88
89 /* Time stamp when signal became valid. */
90 f64 wait_to_restore_start_time;
91} srp_interface_ring_t;
92
93struct srp_interface_t;
94typedef void (srp_hw_wrap_function_t) (u32 hw_if_index, u32 wrap_enable);
95typedef void (srp_hw_enable_function_t) (struct srp_interface_t * si, u32 wrap_enable);
96
97typedef struct {
98 /* Delay between wait to restore event and entering idle state in seconds. */
99 f64 wait_to_restore_idle_delay;
100
101 /* Number of seconds between sending ips messages to neighbors. */
102 f64 ips_tx_interval;
103} srp_interface_config_t;
104
105typedef struct srp_interface_t {
106 /* Current IPS state. */
107 srp_ips_state_t current_ips_state;
108
109 /* Address for this interface. */
110 u8 my_address[6];
111
112 /* Enable IPS process handling for this interface. */
113 u8 ips_process_enable;
114
115 srp_interface_ring_t rings[SRP_N_RING];
116
117 /* Configurable parameters. */
118 srp_interface_config_t config;
119
120 srp_hw_wrap_function_t * hw_wrap_function;
121
122 srp_hw_enable_function_t * hw_enable_function;
123} srp_interface_t;
124
125typedef struct {
126 vlib_main_t * vlib_main;
127
128 /* Pool of SRP interfaces. */
129 srp_interface_t * interface_pool;
130
131 uword * interface_index_by_hw_if_index;
132
133 /* TTL to use for outgoing data packets. */
134 u32 default_data_ttl;
135
136 vlib_one_time_waiting_process_t * srp_register_interface_waiting_process_pool;
137
138 uword * srp_register_interface_waiting_process_pool_index_by_hw_if_index;
139} srp_main_t;
140
141/* Registers sides A/B hardware interface as being SRP capable. */
142void srp_register_interface (u32 * hw_if_indices);
143
144/* Enable sending IPS messages for interface implied by given vlib hardware interface. */
145void srp_interface_enable_ips (u32 hw_if_index);
146
147/* Set function to wrap hardware side of SRP interface. */
148void srp_interface_set_hw_wrap_function (u32 hw_if_index, srp_hw_wrap_function_t * f);
149
150void srp_interface_set_hw_enable_function (u32 hw_if_index, srp_hw_enable_function_t * f);
151
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100152extern vlib_node_registration_t srp_ips_process_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153
154/* Called when an IPS control packet is received on given interface. */
155void srp_ips_rx_packet (u32 sw_if_index, srp_ips_header_t * ips_packet);
156
157/* Preform local IPS request on given interface. */
158void srp_ips_local_request (u32 sw_if_index, srp_ips_request_type_t request);
159
160always_inline void
161srp_ips_link_change (u32 sw_if_index, u32 link_is_up)
162{
163 srp_ips_local_request (sw_if_index,
164 link_is_up
165 ? SRP_IPS_REQUEST_wait_to_restore
166 : SRP_IPS_REQUEST_signal_fail);
167}
168
169void srp_interface_get_interface_config (u32 hw_if_index, srp_interface_config_t * c);
170void srp_interface_set_interface_config (u32 hw_if_index, srp_interface_config_t * c);
171
Dave Wallace71612d62017-10-24 01:32:41 -0400172extern srp_main_t srp_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173
174always_inline srp_interface_t *
175srp_get_interface_from_vnet_hw_interface (u32 hw_if_index)
176{
177 srp_main_t * sm = &srp_main;
178 uword * p = hash_get (sm->interface_index_by_hw_if_index, hw_if_index);
179 return p ? pool_elt_at_index (sm->interface_pool, p[0]) : 0;
180}
181
182u8 * format_srp_header (u8 * s, va_list * args);
183u8 * format_srp_header_with_length (u8 * s, va_list * args);
184u8 * format_srp_device (u8 * s, va_list * args);
185
186/* Parse srp header. */
187uword
188unformat_srp_header (unformat_input_t * input, va_list * args);
189
190uword unformat_pg_srp_header (unformat_input_t * input, va_list * args);
191
192always_inline void
193srp_setup_node (vlib_main_t * vm, u32 node_index)
194{
195 vlib_node_t * n = vlib_get_node (vm, node_index);
196 pg_node_t * pn = pg_get_node (node_index);
197 n->format_buffer = format_srp_header_with_length;
198 n->unformat_buffer = unformat_srp_header;
199 pn->unformat_edit = unformat_pg_srp_header;
200}
201
202#define foreach_srp_error \
203 _ (NONE, "no error") \
204 _ (UNKNOWN_MODE, "unknown mode in SRP header") \
205 _ (KEEP_ALIVE_DROPPED, "v1 keep alive mode in SRP header") \
206 _ (CONTROL_PACKETS_PROCESSED, "control packets processed") \
207 _ (IPS_PACKETS_PROCESSED, "IPS packets processed") \
208 _ (UNKNOWN_CONTROL, "unknown control packet") \
209 _ (CONTROL_VERSION_NON_ZERO, "control packet with non-zero version") \
210 _ (CONTROL_BAD_CHECKSUM, "control packet with bad checksum") \
211 _ (TOPOLOGY_BAD_LENGTH, "topology packet with bad length")
212
213typedef enum {
214#define _(n,s) SRP_ERROR_##n,
215 foreach_srp_error
216#undef _
217 SRP_N_ERROR,
218} srp_error_t;
219
220serialize_function_t serialize_srp_main, unserialize_srp_main;
221
222#endif /* included_srp_h */