blob: 5594fed44f64f10c0e133b18a1d84f4899a4fe2a [file] [log] [blame]
Pavel Kotucek0f971d82017-01-03 10:48:54 +01001/*
2 *------------------------------------------------------------------
3 * sr_api.c - ipv6 segment routing api
4 *
5 * Copyright (c) 2016 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 */
19
20#include <vnet/vnet.h>
Pablo Camarillo5d73eec2017-04-24 17:51:56 +020021#include <vnet/srv6/sr.h>
Pavel Kotucek0f971d82017-01-03 10:48:54 +010022#include <vlibmemory/api.h>
23
24#include <vnet/interface.h>
25#include <vnet/api_errno.h>
26#include <vnet/feature/feature.h>
Ahmed Abdelsalam13e6fce2019-12-08 12:58:27 +010027#include <vnet/fib/fib_table.h>
Jakub Grajciar0938eba2020-03-04 13:08:27 +010028#include <vnet/ip/ip_types_api.h>
29
Filip Tehlare2fc0032021-06-22 13:00:40 +000030#include <vnet/format_fns.h>
31#include <vnet/srv6/sr.api_enum.h>
32#include <vnet/srv6/sr.api_types.h>
Pavel Kotucek0f971d82017-01-03 10:48:54 +010033
Filip Tehlare2fc0032021-06-22 13:00:40 +000034#define REPLY_MSG_ID_BASE sr_main.msg_id_base
Pavel Kotucek0f971d82017-01-03 10:48:54 +010035#include <vlibapi/api_helper_macros.h>
36
Pablo Camarillofb380952016-12-07 18:34:18 +010037static void vl_api_sr_localsid_add_del_t_handler
38 (vl_api_sr_localsid_add_del_t * mp)
Pavel Kotucek0f971d82017-01-03 10:48:54 +010039{
Pablo Camarillofb380952016-12-07 18:34:18 +010040 vl_api_sr_localsid_add_del_reply_t *rmp;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010041 int rv = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +010042 ip46_address_t prefix;
43 ip6_address_t localsid;
Pablo Camarillofb380952016-12-07 18:34:18 +010044/*
45 * int sr_cli_localsid (char is_del, ip6_address_t *localsid_addr,
46 * char end_psp, u8 behavior, u32 sw_if_index, u32 vlan_index, u32 fib_table,
47 * ip46_address_t *nh_addr, void *ls_plugin_mem)
48 */
Pablo Camarillo3337bd22018-06-19 15:49:02 +020049 if (mp->behavior == SR_BEHAVIOR_X ||
50 mp->behavior == SR_BEHAVIOR_DX6 ||
51 mp->behavior == SR_BEHAVIOR_DX4 || mp->behavior == SR_BEHAVIOR_DX2)
52 VALIDATE_SW_IF_INDEX (mp);
Chris Luke879ace32017-09-26 13:15:16 -040053
Jakub Grajciar0938eba2020-03-04 13:08:27 +010054 ip6_address_decode (mp->localsid, &localsid);
55 ip_address_decode (&mp->nh_addr, &prefix);
Chris Luke879ace32017-09-26 13:15:16 -040056
Pablo Camarillofb380952016-12-07 18:34:18 +010057 rv = sr_cli_localsid (mp->is_del,
Jakub Grajciar0938eba2020-03-04 13:08:27 +010058 &localsid, 128,
Pablo Camarillofb380952016-12-07 18:34:18 +010059 mp->end_psp,
60 mp->behavior,
61 ntohl (mp->sw_if_index),
62 ntohl (mp->vlan_index),
Tetsuya Murakamiec9cb962020-03-23 16:10:28 -070063 ntohl (mp->fib_table), &prefix, 0, NULL);
Pablo Camarillofb380952016-12-07 18:34:18 +010064
Chris Luke879ace32017-09-26 13:15:16 -040065 BAD_SW_IF_INDEX_LABEL;
Pablo Camarillofb380952016-12-07 18:34:18 +010066 REPLY_MACRO (VL_API_SR_LOCALSID_ADD_DEL_REPLY);
67}
68
69static void
70vl_api_sr_policy_add_t_handler (vl_api_sr_policy_add_t * mp)
71{
72 vl_api_sr_policy_add_reply_t *rmp;
Pavel Kotucek0f971d82017-01-03 10:48:54 +010073 ip6_address_t *segments = 0, *seg;
Jakub Grajciar0938eba2020-03-04 13:08:27 +010074 ip6_address_t bsid_addr;
Pablo Camarillofb380952016-12-07 18:34:18 +010075
Pavel Kotucek0f971d82017-01-03 10:48:54 +010076 int i;
Pablo Camarillo3337bd22018-06-19 15:49:02 +020077 for (i = 0; i < mp->sids.num_sids; i++)
Pavel Kotucek0f971d82017-01-03 10:48:54 +010078 {
79 vec_add2 (segments, seg, 1);
Jakub Grajciar0938eba2020-03-04 13:08:27 +010080 ip6_address_decode (mp->sids.sids[i], seg);
Pavel Kotucek0f971d82017-01-03 10:48:54 +010081 }
Pablo Camarillofb380952016-12-07 18:34:18 +010082
Jakub Grajciar0938eba2020-03-04 13:08:27 +010083 ip6_address_decode (mp->bsid_addr, &bsid_addr);
84
Takeru Hayasakac4c205b2022-12-30 16:41:44 +090085 /*
86 * sr_policy_add (ip6_address_t *bsid, ip6_address_t *segments,
87 * ip6_address_t *encap_src,
88 * u32 weight, u8 behavior, u32 fib_table, u8 is_encap,
89 * u16 behavior, void *plugin_mem)
90 */
Pablo Camarillofb380952016-12-07 18:34:18 +010091 int rv = 0;
Takeru Hayasakac4c205b2022-12-30 16:41:44 +090092 rv =
93 sr_policy_add (&bsid_addr, segments, NULL, ntohl (mp->sids.weight),
94 mp->is_spray, ntohl (mp->fib_table), mp->is_encap, 0, NULL);
John Lod23d39c2018-09-13 15:08:08 -040095 vec_free (segments);
Pablo Camarillofb380952016-12-07 18:34:18 +010096
97 REPLY_MACRO (VL_API_SR_POLICY_ADD_REPLY);
98}
99
100static void
101vl_api_sr_policy_mod_t_handler (vl_api_sr_policy_mod_t * mp)
102{
103 vl_api_sr_policy_mod_reply_t *rmp;
Pablo Camarillofb380952016-12-07 18:34:18 +0100104 ip6_address_t *segments = 0, *seg;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100105 ip6_address_t bsid_addr;
Pablo Camarillofb380952016-12-07 18:34:18 +0100106
107 int i;
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200108 for (i = 0; i < mp->sids.num_sids; i++)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100109 {
Pablo Camarillofb380952016-12-07 18:34:18 +0100110 vec_add2 (segments, seg, 1);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100111 ip6_address_decode (mp->sids.sids[i], seg);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100112 }
113
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100114 ip6_address_decode (mp->bsid_addr, &bsid_addr);
115
Pablo Camarillofb380952016-12-07 18:34:18 +0100116 int rv = 0;
Takeru Hayasakac4c205b2022-12-30 16:41:44 +0900117 /*
118 * int
119 * sr_policy_mod(ip6_address_t *bsid, u32 index, u32 fib_table,
120 * u8 operation, ip6_address_t *segments,
121 * ip6_address_t *encap_src, u32 sl_index,
122 * u32 weight, u8 is_encap)
123 */
124 rv = sr_policy_mod (&bsid_addr, ntohl (mp->sr_policy_index),
125 ntohl (mp->fib_table), mp->operation, segments, NULL,
126 ntohl (mp->sl_index), ntohl (mp->sids.weight));
127 vec_free (segments);
128
129 REPLY_MACRO (VL_API_SR_POLICY_MOD_REPLY);
130}
131
132static void
133vl_api_sr_policy_add_v2_t_handler (vl_api_sr_policy_add_v2_t *mp)
134{
135 vl_api_sr_policy_add_v2_reply_t *rmp;
136 ip6_address_t *segments = 0, *seg;
137 ip6_address_t bsid_addr;
138 ip6_address_t encap_src;
139
140 int i;
141 for (i = 0; i < mp->sids.num_sids; i++)
142 {
143 vec_add2 (segments, seg, 1);
144 ip6_address_decode (mp->sids.sids[i], seg);
145 }
146
147 ip6_address_decode (mp->bsid_addr, &bsid_addr);
148 ip6_address_decode (mp->encap_src, &encap_src);
149
150 if (ip6_address_is_zero (&encap_src))
151 {
152 encap_src = *sr_get_encaps_source ();
153 }
154 /*
155 * sr_policy_add (ip6_address_t *bsid, ip6_address_t *segments,
156 * ip6_address_t *encap_src,
157 * u32 weight, u8 behavior, u32 fib_table, u8 is_encap,
158 * u16 behavior, void *plugin_mem)
159 */
160 int rv = 0;
161 rv =
162 sr_policy_add (&bsid_addr, segments, &encap_src, ntohl (mp->sids.weight),
163 mp->type, ntohl (mp->fib_table), mp->is_encap, 0, NULL);
164 vec_free (segments);
165
166 REPLY_MACRO (VL_API_SR_POLICY_ADD_REPLY);
167}
168
169static void
170vl_api_sr_policy_mod_v2_t_handler (vl_api_sr_policy_mod_v2_t *mp)
171{
172 vl_api_sr_policy_mod_v2_reply_t *rmp;
173 ip6_address_t *segments = 0, *seg;
174 ip6_address_t bsid_addr;
175 ip6_address_t encap_src;
176
177 int i;
178 for (i = 0; i < mp->sids.num_sids; i++)
179 {
180 vec_add2 (segments, seg, 1);
181 ip6_address_decode (mp->sids.sids[i], seg);
182 }
183
184 ip6_address_decode (mp->bsid_addr, &bsid_addr);
185 ip6_address_decode (mp->encap_src, &encap_src);
186
187 if (ip6_address_is_zero (&encap_src))
188 {
189 encap_src = *sr_get_encaps_source ();
190 }
191
192 int rv = 0;
193 /*
194 * int
195 * sr_policy_mod(ip6_address_t *bsid, u32 index, u32 fib_table,
196 * u8 operation, ip6_address_t *segments,
197 * ip6_address_t *encap_src, u32 sl_index,
198 * u32 weight, u8 is_encap)
199 */
200 rv =
201 sr_policy_mod (&bsid_addr, ntohl (mp->sr_policy_index),
202 ntohl (mp->fib_table), mp->operation, segments, &encap_src,
203 ntohl (mp->sl_index), ntohl (mp->sids.weight));
John Lod23d39c2018-09-13 15:08:08 -0400204 vec_free (segments);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100205
Pablo Camarillofb380952016-12-07 18:34:18 +0100206 REPLY_MACRO (VL_API_SR_POLICY_MOD_REPLY);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100207}
208
Pablo Camarillofb380952016-12-07 18:34:18 +0100209static void
210vl_api_sr_policy_del_t_handler (vl_api_sr_policy_del_t * mp)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100211{
Pablo Camarillofb380952016-12-07 18:34:18 +0100212 vl_api_sr_policy_del_reply_t *rmp;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100213 int rv = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100214 ip6_address_t bsid_addr;
Pablo Camarillofb380952016-12-07 18:34:18 +0100215/*
216 * int
217 * sr_policy_del (ip6_address_t *bsid, u32 index)
218 */
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100219 ip6_address_decode (mp->bsid_addr, &bsid_addr);
220 rv = sr_policy_del (&bsid_addr, ntohl (mp->sr_policy_index));
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100221
Pablo Camarillofb380952016-12-07 18:34:18 +0100222 REPLY_MACRO (VL_API_SR_POLICY_DEL_REPLY);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100223}
224
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100225static void
226vl_api_sr_set_encap_source_t_handler (vl_api_sr_set_encap_source_t * mp)
227{
228 vl_api_sr_set_encap_source_reply_t *rmp;
229 int rv = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100230 ip6_address_t encaps_source;
231
232 ip6_address_decode (mp->encaps_source, &encaps_source);
233 sr_set_source (&encaps_source);
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100234
Vratko Polak1096b462019-08-21 18:40:03 +0200235 REPLY_MACRO (VL_API_SR_SET_ENCAP_SOURCE_REPLY);
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100236}
237
Ignas Bačiuseeb5fb32019-10-03 17:15:38 +0300238static void
239vl_api_sr_set_encap_hop_limit_t_handler (vl_api_sr_set_encap_hop_limit_t * mp)
240{
241 vl_api_sr_set_encap_hop_limit_reply_t *rmp;
242 int rv = 0;
243
244 if (mp->hop_limit == 0)
245 rv = VNET_API_ERROR_INVALID_VALUE;
246 else
247 sr_set_hop_limit (mp->hop_limit);
248
249 REPLY_MACRO (VL_API_SR_SET_ENCAP_HOP_LIMIT_REPLY);
250}
251
Pablo Camarillofb380952016-12-07 18:34:18 +0100252static void vl_api_sr_steering_add_del_t_handler
253 (vl_api_sr_steering_add_del_t * mp)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100254{
Pablo Camarillofb380952016-12-07 18:34:18 +0100255 vl_api_sr_steering_add_del_reply_t *rmp;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100256 int rv = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100257 ip6_address_t bsid_addr;
258 ip46_address_t prefix_addr;
Pablo Camarillofb380952016-12-07 18:34:18 +0100259/*
260 * int
261 * sr_steering_policy(int is_del, ip6_address_t *bsid, u32 sr_policy_index,
262 * u32 table_id, ip46_address_t *prefix, u32 mask_width, u32 sw_if_index,
263 * u8 traffic_type)
264 */
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100265
266 ip6_address_decode (mp->bsid_addr, &bsid_addr);
267 ip_address_decode (&mp->prefix.address, &prefix_addr);
268
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200269 if (mp->traffic_type == SR_STEER_L2)
270 VALIDATE_SW_IF_INDEX (mp);
Chris Luke879ace32017-09-26 13:15:16 -0400271
Pablo Camarillofb380952016-12-07 18:34:18 +0100272 rv = sr_steering_policy (mp->is_del,
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100273 &bsid_addr,
Pablo Camarillofb380952016-12-07 18:34:18 +0100274 ntohl (mp->sr_policy_index),
275 ntohl (mp->table_id),
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100276 &prefix_addr,
Ignas Bacius483a3d82020-04-06 16:31:27 +0300277 mp->prefix.len,
Pablo Camarillofb380952016-12-07 18:34:18 +0100278 ntohl (mp->sw_if_index), mp->traffic_type);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100279
Chris Luke879ace32017-09-26 13:15:16 -0400280 BAD_SW_IF_INDEX_LABEL;
Pablo Camarillofb380952016-12-07 18:34:18 +0100281 REPLY_MACRO (VL_API_SR_STEERING_ADD_DEL_REPLY);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100282}
283
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100284static void send_sr_localsid_details
Florin Coras6c4dae22018-01-09 06:39:23 -0800285 (ip6_sr_localsid_t * t, vl_api_registration_t * reg, u32 context)
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100286{
287 vl_api_sr_localsids_details_t *rmp;
288
289 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400290 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlare2fc0032021-06-22 13:00:40 +0000291 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SR_LOCALSIDS_DETAILS);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100292 ip6_address_encode (&t->localsid, rmp->addr);
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100293 rmp->end_psp = t->end_psp;
Francesco Lombardo38659d82021-07-30 15:54:01 +0200294 rmp->behavior = t->behavior;
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100295 rmp->fib_table = htonl (t->fib_table);
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200296 rmp->vlan_index = htonl (t->vlan_index);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100297 ip_address_encode (&t->next_hop, IP46_TYPE_ANY, &rmp->xconnect_nh_addr);
Ahmed Abdelsalam13e6fce2019-12-08 12:58:27 +0100298
299 if (t->behavior == SR_BEHAVIOR_T || t->behavior == SR_BEHAVIOR_DT6)
300 rmp->xconnect_iface_or_vrf_table =
301 htonl (fib_table_get_table_id (t->sw_if_index, FIB_PROTOCOL_IP6));
302 else if (t->behavior == SR_BEHAVIOR_DT4)
303 rmp->xconnect_iface_or_vrf_table =
304 htonl (fib_table_get_table_id (t->sw_if_index, FIB_PROTOCOL_IP4));
305 else
306 rmp->xconnect_iface_or_vrf_table = htonl (t->sw_if_index);
307
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100308 rmp->context = context;
309
Florin Coras6c4dae22018-01-09 06:39:23 -0800310 vl_api_send_msg (reg, (u8 *) rmp);
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100311}
312
313static void vl_api_sr_localsids_dump_t_handler
314 (vl_api_sr_localsids_dump_t * mp)
315{
Florin Coras6c4dae22018-01-09 06:39:23 -0800316 vl_api_registration_t *reg;
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100317 ip6_sr_main_t *sm = &sr_main;
318 ip6_sr_localsid_t *t;
319
Florin Coras6c4dae22018-01-09 06:39:23 -0800320 reg = vl_api_client_index_to_registration (mp->client_index);
321 if (!reg)
322 return;
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100323
324 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100325 pool_foreach (t, sm->localsids)
326 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800327 send_sr_localsid_details(t, reg, mp->context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100328 }
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100329 /* *INDENT-ON* */
330}
331
ChinmayaAgarwal9503eb52022-09-27 12:25:22 +0530332static void
333send_sr_localsid_with_packet_stats_details (int local_sid_index,
334 ip6_sr_localsid_t *t,
335 vl_api_registration_t *reg,
336 u32 context)
337{
338 vl_api_sr_localsids_with_packet_stats_details_t *rmp;
339 vlib_counter_t good_traffic, bad_traffic;
340 ip6_sr_main_t *sm = &sr_main;
341
342 rmp = vl_msg_api_alloc (sizeof (*rmp));
343 clib_memset (rmp, 0, sizeof (*rmp));
344 rmp->_vl_msg_id =
345 ntohs (REPLY_MSG_ID_BASE + VL_API_SR_LOCALSIDS_WITH_PACKET_STATS_DETAILS);
346 ip6_address_encode (&t->localsid, rmp->addr);
347 rmp->end_psp = t->end_psp;
348 rmp->behavior = t->behavior;
349 rmp->fib_table = htonl (t->fib_table);
350 rmp->vlan_index = htonl (t->vlan_index);
351 ip_address_encode (&t->next_hop, IP46_TYPE_ANY, &rmp->xconnect_nh_addr);
352
353 if (t->behavior == SR_BEHAVIOR_T || t->behavior == SR_BEHAVIOR_DT6)
354 rmp->xconnect_iface_or_vrf_table =
355 htonl (fib_table_get_table_id (t->sw_if_index, FIB_PROTOCOL_IP6));
356 else if (t->behavior == SR_BEHAVIOR_DT4)
357 rmp->xconnect_iface_or_vrf_table =
358 htonl (fib_table_get_table_id (t->sw_if_index, FIB_PROTOCOL_IP4));
359 else
360 rmp->xconnect_iface_or_vrf_table = htonl (t->sw_if_index);
361
362 rmp->context = context;
363 vlib_get_combined_counter (&(sm->sr_ls_valid_counters), local_sid_index,
364 &good_traffic);
365 vlib_get_combined_counter (&(sm->sr_ls_invalid_counters), local_sid_index,
366 &bad_traffic);
367 rmp->good_traffic_bytes = clib_host_to_net_u64 (good_traffic.bytes);
368 rmp->good_traffic_pkt_count = clib_host_to_net_u64 (good_traffic.packets);
369 rmp->bad_traffic_bytes = clib_host_to_net_u64 (bad_traffic.bytes);
370 rmp->bad_traffic_pkt_count = clib_host_to_net_u64 (bad_traffic.packets);
371 vl_api_send_msg (reg, (u8 *) rmp);
372}
373
374static void
375vl_api_sr_localsids_with_packet_stats_dump_t_handler (
376 vl_api_sr_localsids_with_packet_stats_dump_t *mp)
377{
378 vl_api_registration_t *reg;
379 ip6_sr_main_t *sm = &sr_main;
380 ip6_sr_localsid_t **localsid_list = 0;
381 ip6_sr_localsid_t *t;
382 int i;
383
384 reg = vl_api_client_index_to_registration (mp->client_index);
385 if (!reg)
386 return;
387
388 pool_foreach (t, sm->localsids)
389 {
390 vec_add1 (localsid_list, t);
391 }
392 for (i = 0; i < vec_len (localsid_list); i++)
393 {
394 t = localsid_list[i];
395 send_sr_localsid_with_packet_stats_details (i, t, reg, mp->context);
396 }
397}
398
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200399static void send_sr_policies_details
400 (ip6_sr_policy_t * t, vl_api_registration_t * reg, u32 context)
401{
402 vl_api_sr_policies_details_t *rmp;
403 ip6_sr_main_t *sm = &sr_main;
404
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100405 u32 *sl_index, slidx = 0;
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200406 ip6_sr_sl_t *segment_list = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100407 ip6_address_t *segment;
408 vl_api_srv6_sid_list_t *api_sid_list;
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200409
410 rmp = vl_msg_api_alloc (sizeof (*rmp) +
411 vec_len (t->segments_lists) *
412 sizeof (vl_api_srv6_sid_list_t));
Dave Barachb7b92992018-10-17 10:38:51 -0400413 clib_memset (rmp, 0,
414 (sizeof (*rmp) +
415 vec_len (t->segments_lists) *
416 sizeof (vl_api_srv6_sid_list_t)));
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200417
Filip Tehlare2fc0032021-06-22 13:00:40 +0000418 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SR_POLICIES_DETAILS);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100419 ip6_address_encode (&t->bsid, rmp->bsid);
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200420 rmp->is_encap = t->is_encap;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100421 rmp->is_spray = t->type;
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200422 rmp->fib_table = htonl (t->fib_table);
423 rmp->num_sid_lists = vec_len (t->segments_lists);
424
425 /* Fill in all the segments lists */
426 vec_foreach (sl_index, t->segments_lists)
427 {
428 segment_list = pool_elt_at_index (sm->sid_lists, *sl_index);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100429
430 api_sid_list = &rmp->sid_lists[sl_index - t->segments_lists];
431
432 api_sid_list->num_sids = vec_len (segment_list->segments);
433 api_sid_list->weight = htonl (segment_list->weight);
Chinmaya Agarwaledc2ea42020-06-23 12:38:23 +0000434 slidx = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100435 vec_foreach (segment, segment_list->segments)
436 {
437 ip6_address_encode (segment, api_sid_list->sids[slidx++]);
438 }
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200439 }
440
441 rmp->context = context;
442 vl_api_send_msg (reg, (u8 *) rmp);
443}
444
445static void
446vl_api_sr_policies_dump_t_handler (vl_api_sr_policies_dump_t * mp)
447{
448 vl_api_registration_t *reg;
449 ip6_sr_main_t *sm = &sr_main;
450 ip6_sr_policy_t *t;
451
452 reg = vl_api_client_index_to_registration (mp->client_index);
453 if (!reg)
454 return;
455
456 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100457 pool_foreach (t, sm->sr_policies)
458 {
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200459 send_sr_policies_details(t, reg, mp->context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100460 }
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200461 /* *INDENT-ON* */
462}
463
Takeru Hayasakac4c205b2022-12-30 16:41:44 +0900464static void
465send_sr_policies_v2_details (ip6_sr_policy_t *t, vl_api_registration_t *reg,
466 u32 context)
467{
468 vl_api_sr_policies_v2_details_t *rmp;
469 ip6_sr_main_t *sm = &sr_main;
Chinmaya Agarwal30fa97d2020-07-13 22:34:12 +0530470
Takeru Hayasakac4c205b2022-12-30 16:41:44 +0900471 u32 *sl_index, slidx = 0;
472 ip6_sr_sl_t *segment_list = 0;
473 ip6_address_t *segment;
474 vl_api_srv6_sid_list_t *api_sid_list;
475
476 rmp = vl_msg_api_alloc (sizeof (*rmp) + vec_len (t->segments_lists) *
477 sizeof (vl_api_srv6_sid_list_t));
478 clib_memset (rmp, 0,
479 (sizeof (*rmp) + vec_len (t->segments_lists) *
480 sizeof (vl_api_srv6_sid_list_t)));
481
482 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SR_POLICIES_V2_DETAILS);
483 ip6_address_encode (&t->bsid, rmp->bsid);
484 ip6_address_encode (&t->encap_src, rmp->encap_src);
485 rmp->is_encap = t->is_encap;
486 rmp->type = t->type;
487 rmp->fib_table = htonl (t->fib_table);
488 rmp->num_sid_lists = vec_len (t->segments_lists);
489
490 /* Fill in all the segments lists */
491 vec_foreach (sl_index, t->segments_lists)
492 {
493 segment_list = pool_elt_at_index (sm->sid_lists, *sl_index);
494
495 api_sid_list = &rmp->sid_lists[sl_index - t->segments_lists];
496
497 api_sid_list->num_sids = vec_len (segment_list->segments);
498 api_sid_list->weight = htonl (segment_list->weight);
499 slidx = 0;
500 vec_foreach (segment, segment_list->segments)
501 {
502 ip6_address_encode (segment, api_sid_list->sids[slidx++]);
503 }
504 }
505
506 rmp->context = context;
507 vl_api_send_msg (reg, (u8 *) rmp);
508}
509
510static void
511vl_api_sr_policies_v2_dump_t_handler (vl_api_sr_policies_v2_dump_t *mp)
512{
513 vl_api_registration_t *reg;
514 ip6_sr_main_t *sm = &sr_main;
515 ip6_sr_policy_t *t;
516
517 reg = vl_api_client_index_to_registration (mp->client_index);
518 if (!reg)
519 return;
520
521 pool_foreach (t, sm->sr_policies)
522 {
523 send_sr_policies_v2_details (t, reg, mp->context);
524 }
525}
Chinmaya Agarwal30fa97d2020-07-13 22:34:12 +0530526
527static void send_sr_policies_details_with_sl_index
528 (ip6_sr_policy_t * t, vl_api_registration_t * reg, u32 context)
529{
530 vl_api_sr_policies_with_sl_index_details_t *rmp;
531 ip6_sr_main_t *sm = &sr_main;
532
533 u32 *sl_index, slidx = 0;
534 ip6_sr_sl_t *segment_list = 0;
535 ip6_address_t *segment;
536 vl_api_srv6_sid_list_with_sl_index_t *api_sid_list;
537
538 rmp = vl_msg_api_alloc (sizeof (*rmp) +
539 vec_len (t->segments_lists) *
540 sizeof (vl_api_srv6_sid_list_with_sl_index_t));
541 clib_memset (rmp, 0,
542 (sizeof (*rmp) +
543 vec_len (t->segments_lists) *
544 sizeof (vl_api_srv6_sid_list_with_sl_index_t)));
545
Filip Tehlare2fc0032021-06-22 13:00:40 +0000546 rmp->_vl_msg_id =
547 ntohs (REPLY_MSG_ID_BASE + VL_API_SR_POLICIES_WITH_SL_INDEX_DETAILS);
Chinmaya Agarwal30fa97d2020-07-13 22:34:12 +0530548 ip6_address_encode (&t->bsid, rmp->bsid);
549 rmp->is_encap = t->is_encap;
550 rmp->is_spray = t->type;
551 rmp->fib_table = htonl (t->fib_table);
552 rmp->num_sid_lists = vec_len (t->segments_lists);
553
554 /* Fill in all the segments lists */
555 vec_foreach (sl_index, t->segments_lists)
556 {
557 segment_list = pool_elt_at_index (sm->sid_lists, *sl_index);
558
559 api_sid_list = &rmp->sid_lists[sl_index - t->segments_lists];
560 api_sid_list->sl_index = htonl (*sl_index);
561 api_sid_list->num_sids = vec_len (segment_list->segments);
562 api_sid_list->weight = htonl (segment_list->weight);
563 slidx = 0;
564 vec_foreach (segment, segment_list->segments)
565 {
566 ip6_address_encode (segment, api_sid_list->sids[slidx++]);
567 }
568 }
569
570 rmp->context = context;
571 vl_api_send_msg (reg, (u8 *) rmp);
572}
573
574static void
575 vl_api_sr_policies_with_sl_index_dump_t_handler
576 (vl_api_sr_policies_with_sl_index_dump_t * mp)
577{
578 vl_api_registration_t *reg;
579 ip6_sr_main_t *sm = &sr_main;
580 ip6_sr_policy_t *t;
581
582 reg = vl_api_client_index_to_registration (mp->client_index);
583 if (!reg)
584 return;
585
586 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100587 pool_foreach (t, sm->sr_policies)
588 {
Chinmaya Agarwal30fa97d2020-07-13 22:34:12 +0530589 send_sr_policies_details_with_sl_index(t, reg, mp->context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100590 }
Chinmaya Agarwal30fa97d2020-07-13 22:34:12 +0530591 /* *INDENT-ON* */
592}
593
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200594static void send_sr_steering_pol_details
595 (ip6_sr_steering_policy_t * t, vl_api_registration_t * reg, u32 context)
596{
597 vl_api_sr_steering_pol_details_t *rmp;
598 ip6_sr_main_t *sm = &sr_main;
599
600 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400601 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlare2fc0032021-06-22 13:00:40 +0000602 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SR_STEERING_POL_DETAILS);
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200603
604 //Get the SR policy BSID
605 ip6_sr_policy_t *p;
606 p = pool_elt_at_index (sm->sr_policies, t->sr_policy);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100607 ip6_address_encode (&p->bsid, rmp->bsid);
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200608
609 //Get the steering
610 rmp->traffic_type = t->classify.traffic_type;
611 rmp->fib_table = htonl (t->classify.l3.fib_table);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100612 ip_address_encode (&t->classify.l3.prefix, IP46_TYPE_ANY,
613 &rmp->prefix.address);
Ignas Bacius483a3d82020-04-06 16:31:27 +0300614 rmp->prefix.len = t->classify.l3.mask_width;
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200615
616 rmp->sw_if_index = htonl (t->classify.l2.sw_if_index);
617
618 rmp->context = context;
619 vl_api_send_msg (reg, (u8 *) rmp);
620}
621
622static void vl_api_sr_steering_pol_dump_t_handler
623 (vl_api_sr_policies_dump_t * mp)
624{
625 vl_api_registration_t *reg;
626 ip6_sr_main_t *sm = &sr_main;
627 ip6_sr_steering_policy_t *t;
628
629 reg = vl_api_client_index_to_registration (mp->client_index);
630 if (!reg)
631 return;
632
633 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100634 pool_foreach (t, sm->steer_policies)
635 {
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200636 send_sr_steering_pol_details(t, reg, mp->context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100637 }
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200638 /* *INDENT-ON* */
639}
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100640
Filip Tehlare2fc0032021-06-22 13:00:40 +0000641#include <vnet/srv6/sr.api.c>
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100642static clib_error_t *
643sr_api_hookup (vlib_main_t * vm)
644{
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100645 /*
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100646 * Set up the (msg_name, crc, message-id) table
647 */
Filip Tehlare2fc0032021-06-22 13:00:40 +0000648 REPLY_MSG_ID_BASE = setup_message_id_table ();
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100649
650 return 0;
651}
652
653VLIB_API_INIT_FUNCTION (sr_api_hookup);
654
655/*
656 * fd.io coding-style-patch-verification: ON
657 *
658 * Local Variables:
659 * eval: (c-set-style "gnu")
660 * End:
661 */