blob: c68b355922b4019ab9ca8999212368106d5dff45 [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
Pablo Camarillofb380952016-12-07 18:34:18 +010085/*
86 * sr_policy_add (ip6_address_t *bsid, ip6_address_t *segments,
Tetsuya Murakami70d8ef82019-12-04 18:57:46 -080087 * u32 weight, u8 behavior, u32 fib_table, u8 is_encap,
88 * u16 behavior, void *plugin_mem)
Pablo Camarillofb380952016-12-07 18:34:18 +010089 */
90 int rv = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +010091 rv = sr_policy_add (&bsid_addr,
Pablo Camarillofb380952016-12-07 18:34:18 +010092 segments,
Pablo Camarillo3337bd22018-06-19 15:49:02 +020093 ntohl (mp->sids.weight),
Jakub Grajciar0938eba2020-03-04 13:08:27 +010094 mp->is_spray, ntohl (mp->fib_table), mp->is_encap, 0,
95 NULL);
John Lod23d39c2018-09-13 15:08:08 -040096 vec_free (segments);
Pablo Camarillofb380952016-12-07 18:34:18 +010097
98 REPLY_MACRO (VL_API_SR_POLICY_ADD_REPLY);
99}
100
101static void
102vl_api_sr_policy_mod_t_handler (vl_api_sr_policy_mod_t * mp)
103{
104 vl_api_sr_policy_mod_reply_t *rmp;
Pablo Camarillofb380952016-12-07 18:34:18 +0100105 ip6_address_t *segments = 0, *seg;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100106 ip6_address_t bsid_addr;
Pablo Camarillofb380952016-12-07 18:34:18 +0100107
108 int i;
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200109 for (i = 0; i < mp->sids.num_sids; i++)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100110 {
Pablo Camarillofb380952016-12-07 18:34:18 +0100111 vec_add2 (segments, seg, 1);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100112 ip6_address_decode (mp->sids.sids[i], seg);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100113 }
114
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100115 ip6_address_decode (mp->bsid_addr, &bsid_addr);
116
Pablo Camarillofb380952016-12-07 18:34:18 +0100117 int rv = 0;
118/*
119 * int
120 * sr_policy_mod(ip6_address_t *bsid, u32 index, u32 fib_table,
121 * u8 operation, ip6_address_t *segments, u32 sl_index,
122 * u32 weight, u8 is_encap)
123 */
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100124 rv = sr_policy_mod (&bsid_addr,
Pablo Camarillofb380952016-12-07 18:34:18 +0100125 ntohl (mp->sr_policy_index),
126 ntohl (mp->fib_table),
127 mp->operation,
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200128 segments, ntohl (mp->sl_index),
129 ntohl (mp->sids.weight));
John Lod23d39c2018-09-13 15:08:08 -0400130 vec_free (segments);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100131
Pablo Camarillofb380952016-12-07 18:34:18 +0100132 REPLY_MACRO (VL_API_SR_POLICY_MOD_REPLY);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100133}
134
Pablo Camarillofb380952016-12-07 18:34:18 +0100135static void
136vl_api_sr_policy_del_t_handler (vl_api_sr_policy_del_t * mp)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100137{
Pablo Camarillofb380952016-12-07 18:34:18 +0100138 vl_api_sr_policy_del_reply_t *rmp;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100139 int rv = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100140 ip6_address_t bsid_addr;
Pablo Camarillofb380952016-12-07 18:34:18 +0100141/*
142 * int
143 * sr_policy_del (ip6_address_t *bsid, u32 index)
144 */
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100145 ip6_address_decode (mp->bsid_addr, &bsid_addr);
146 rv = sr_policy_del (&bsid_addr, ntohl (mp->sr_policy_index));
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100147
Pablo Camarillofb380952016-12-07 18:34:18 +0100148 REPLY_MACRO (VL_API_SR_POLICY_DEL_REPLY);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100149}
150
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100151static void
152vl_api_sr_set_encap_source_t_handler (vl_api_sr_set_encap_source_t * mp)
153{
154 vl_api_sr_set_encap_source_reply_t *rmp;
155 int rv = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100156 ip6_address_t encaps_source;
157
158 ip6_address_decode (mp->encaps_source, &encaps_source);
159 sr_set_source (&encaps_source);
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100160
Vratko Polak1096b462019-08-21 18:40:03 +0200161 REPLY_MACRO (VL_API_SR_SET_ENCAP_SOURCE_REPLY);
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100162}
163
Ignas Bačiuseeb5fb32019-10-03 17:15:38 +0300164static void
165vl_api_sr_set_encap_hop_limit_t_handler (vl_api_sr_set_encap_hop_limit_t * mp)
166{
167 vl_api_sr_set_encap_hop_limit_reply_t *rmp;
168 int rv = 0;
169
170 if (mp->hop_limit == 0)
171 rv = VNET_API_ERROR_INVALID_VALUE;
172 else
173 sr_set_hop_limit (mp->hop_limit);
174
175 REPLY_MACRO (VL_API_SR_SET_ENCAP_HOP_LIMIT_REPLY);
176}
177
Pablo Camarillofb380952016-12-07 18:34:18 +0100178static void vl_api_sr_steering_add_del_t_handler
179 (vl_api_sr_steering_add_del_t * mp)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100180{
Pablo Camarillofb380952016-12-07 18:34:18 +0100181 vl_api_sr_steering_add_del_reply_t *rmp;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100182 int rv = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100183 ip6_address_t bsid_addr;
184 ip46_address_t prefix_addr;
Pablo Camarillofb380952016-12-07 18:34:18 +0100185/*
186 * int
187 * sr_steering_policy(int is_del, ip6_address_t *bsid, u32 sr_policy_index,
188 * u32 table_id, ip46_address_t *prefix, u32 mask_width, u32 sw_if_index,
189 * u8 traffic_type)
190 */
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100191
192 ip6_address_decode (mp->bsid_addr, &bsid_addr);
193 ip_address_decode (&mp->prefix.address, &prefix_addr);
194
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200195 if (mp->traffic_type == SR_STEER_L2)
196 VALIDATE_SW_IF_INDEX (mp);
Chris Luke879ace32017-09-26 13:15:16 -0400197
Pablo Camarillofb380952016-12-07 18:34:18 +0100198 rv = sr_steering_policy (mp->is_del,
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100199 &bsid_addr,
Pablo Camarillofb380952016-12-07 18:34:18 +0100200 ntohl (mp->sr_policy_index),
201 ntohl (mp->table_id),
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100202 &prefix_addr,
Ignas Bacius483a3d82020-04-06 16:31:27 +0300203 mp->prefix.len,
Pablo Camarillofb380952016-12-07 18:34:18 +0100204 ntohl (mp->sw_if_index), mp->traffic_type);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100205
Chris Luke879ace32017-09-26 13:15:16 -0400206 BAD_SW_IF_INDEX_LABEL;
Pablo Camarillofb380952016-12-07 18:34:18 +0100207 REPLY_MACRO (VL_API_SR_STEERING_ADD_DEL_REPLY);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100208}
209
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100210static void send_sr_localsid_details
Florin Coras6c4dae22018-01-09 06:39:23 -0800211 (ip6_sr_localsid_t * t, vl_api_registration_t * reg, u32 context)
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100212{
213 vl_api_sr_localsids_details_t *rmp;
214
215 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400216 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlare2fc0032021-06-22 13:00:40 +0000217 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SR_LOCALSIDS_DETAILS);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100218 ip6_address_encode (&t->localsid, rmp->addr);
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100219 rmp->end_psp = t->end_psp;
220 rmp->behavior = htons (t->behavior);
221 rmp->fib_table = htonl (t->fib_table);
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200222 rmp->vlan_index = htonl (t->vlan_index);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100223 ip_address_encode (&t->next_hop, IP46_TYPE_ANY, &rmp->xconnect_nh_addr);
Ahmed Abdelsalam13e6fce2019-12-08 12:58:27 +0100224
225 if (t->behavior == SR_BEHAVIOR_T || t->behavior == SR_BEHAVIOR_DT6)
226 rmp->xconnect_iface_or_vrf_table =
227 htonl (fib_table_get_table_id (t->sw_if_index, FIB_PROTOCOL_IP6));
228 else if (t->behavior == SR_BEHAVIOR_DT4)
229 rmp->xconnect_iface_or_vrf_table =
230 htonl (fib_table_get_table_id (t->sw_if_index, FIB_PROTOCOL_IP4));
231 else
232 rmp->xconnect_iface_or_vrf_table = htonl (t->sw_if_index);
233
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100234 rmp->context = context;
235
Florin Coras6c4dae22018-01-09 06:39:23 -0800236 vl_api_send_msg (reg, (u8 *) rmp);
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100237}
238
239static void vl_api_sr_localsids_dump_t_handler
240 (vl_api_sr_localsids_dump_t * mp)
241{
Florin Coras6c4dae22018-01-09 06:39:23 -0800242 vl_api_registration_t *reg;
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100243 ip6_sr_main_t *sm = &sr_main;
244 ip6_sr_localsid_t *t;
245
Florin Coras6c4dae22018-01-09 06:39:23 -0800246 reg = vl_api_client_index_to_registration (mp->client_index);
247 if (!reg)
248 return;
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100249
250 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100251 pool_foreach (t, sm->localsids)
252 {
Florin Coras6c4dae22018-01-09 06:39:23 -0800253 send_sr_localsid_details(t, reg, mp->context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100254 }
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100255 /* *INDENT-ON* */
256}
257
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200258static void send_sr_policies_details
259 (ip6_sr_policy_t * t, vl_api_registration_t * reg, u32 context)
260{
261 vl_api_sr_policies_details_t *rmp;
262 ip6_sr_main_t *sm = &sr_main;
263
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100264 u32 *sl_index, slidx = 0;
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200265 ip6_sr_sl_t *segment_list = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100266 ip6_address_t *segment;
267 vl_api_srv6_sid_list_t *api_sid_list;
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200268
269 rmp = vl_msg_api_alloc (sizeof (*rmp) +
270 vec_len (t->segments_lists) *
271 sizeof (vl_api_srv6_sid_list_t));
Dave Barachb7b92992018-10-17 10:38:51 -0400272 clib_memset (rmp, 0,
273 (sizeof (*rmp) +
274 vec_len (t->segments_lists) *
275 sizeof (vl_api_srv6_sid_list_t)));
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200276
Filip Tehlare2fc0032021-06-22 13:00:40 +0000277 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SR_POLICIES_DETAILS);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100278 ip6_address_encode (&t->bsid, rmp->bsid);
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200279 rmp->is_encap = t->is_encap;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100280 rmp->is_spray = t->type;
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200281 rmp->fib_table = htonl (t->fib_table);
282 rmp->num_sid_lists = vec_len (t->segments_lists);
283
284 /* Fill in all the segments lists */
285 vec_foreach (sl_index, t->segments_lists)
286 {
287 segment_list = pool_elt_at_index (sm->sid_lists, *sl_index);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100288
289 api_sid_list = &rmp->sid_lists[sl_index - t->segments_lists];
290
291 api_sid_list->num_sids = vec_len (segment_list->segments);
292 api_sid_list->weight = htonl (segment_list->weight);
Chinmaya Agarwaledc2ea42020-06-23 12:38:23 +0000293 slidx = 0;
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100294 vec_foreach (segment, segment_list->segments)
295 {
296 ip6_address_encode (segment, api_sid_list->sids[slidx++]);
297 }
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200298 }
299
300 rmp->context = context;
301 vl_api_send_msg (reg, (u8 *) rmp);
302}
303
304static void
305vl_api_sr_policies_dump_t_handler (vl_api_sr_policies_dump_t * mp)
306{
307 vl_api_registration_t *reg;
308 ip6_sr_main_t *sm = &sr_main;
309 ip6_sr_policy_t *t;
310
311 reg = vl_api_client_index_to_registration (mp->client_index);
312 if (!reg)
313 return;
314
315 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100316 pool_foreach (t, sm->sr_policies)
317 {
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200318 send_sr_policies_details(t, reg, mp->context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100319 }
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200320 /* *INDENT-ON* */
321}
322
Chinmaya Agarwal30fa97d2020-07-13 22:34:12 +0530323
324
325static void send_sr_policies_details_with_sl_index
326 (ip6_sr_policy_t * t, vl_api_registration_t * reg, u32 context)
327{
328 vl_api_sr_policies_with_sl_index_details_t *rmp;
329 ip6_sr_main_t *sm = &sr_main;
330
331 u32 *sl_index, slidx = 0;
332 ip6_sr_sl_t *segment_list = 0;
333 ip6_address_t *segment;
334 vl_api_srv6_sid_list_with_sl_index_t *api_sid_list;
335
336 rmp = vl_msg_api_alloc (sizeof (*rmp) +
337 vec_len (t->segments_lists) *
338 sizeof (vl_api_srv6_sid_list_with_sl_index_t));
339 clib_memset (rmp, 0,
340 (sizeof (*rmp) +
341 vec_len (t->segments_lists) *
342 sizeof (vl_api_srv6_sid_list_with_sl_index_t)));
343
Filip Tehlare2fc0032021-06-22 13:00:40 +0000344 rmp->_vl_msg_id =
345 ntohs (REPLY_MSG_ID_BASE + VL_API_SR_POLICIES_WITH_SL_INDEX_DETAILS);
Chinmaya Agarwal30fa97d2020-07-13 22:34:12 +0530346 ip6_address_encode (&t->bsid, rmp->bsid);
347 rmp->is_encap = t->is_encap;
348 rmp->is_spray = t->type;
349 rmp->fib_table = htonl (t->fib_table);
350 rmp->num_sid_lists = vec_len (t->segments_lists);
351
352 /* Fill in all the segments lists */
353 vec_foreach (sl_index, t->segments_lists)
354 {
355 segment_list = pool_elt_at_index (sm->sid_lists, *sl_index);
356
357 api_sid_list = &rmp->sid_lists[sl_index - t->segments_lists];
358 api_sid_list->sl_index = htonl (*sl_index);
359 api_sid_list->num_sids = vec_len (segment_list->segments);
360 api_sid_list->weight = htonl (segment_list->weight);
361 slidx = 0;
362 vec_foreach (segment, segment_list->segments)
363 {
364 ip6_address_encode (segment, api_sid_list->sids[slidx++]);
365 }
366 }
367
368 rmp->context = context;
369 vl_api_send_msg (reg, (u8 *) rmp);
370}
371
372static void
373 vl_api_sr_policies_with_sl_index_dump_t_handler
374 (vl_api_sr_policies_with_sl_index_dump_t * mp)
375{
376 vl_api_registration_t *reg;
377 ip6_sr_main_t *sm = &sr_main;
378 ip6_sr_policy_t *t;
379
380 reg = vl_api_client_index_to_registration (mp->client_index);
381 if (!reg)
382 return;
383
384 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100385 pool_foreach (t, sm->sr_policies)
386 {
Chinmaya Agarwal30fa97d2020-07-13 22:34:12 +0530387 send_sr_policies_details_with_sl_index(t, reg, mp->context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100388 }
Chinmaya Agarwal30fa97d2020-07-13 22:34:12 +0530389 /* *INDENT-ON* */
390}
391
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200392static void send_sr_steering_pol_details
393 (ip6_sr_steering_policy_t * t, vl_api_registration_t * reg, u32 context)
394{
395 vl_api_sr_steering_pol_details_t *rmp;
396 ip6_sr_main_t *sm = &sr_main;
397
398 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400399 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlare2fc0032021-06-22 13:00:40 +0000400 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SR_STEERING_POL_DETAILS);
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200401
402 //Get the SR policy BSID
403 ip6_sr_policy_t *p;
404 p = pool_elt_at_index (sm->sr_policies, t->sr_policy);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100405 ip6_address_encode (&p->bsid, rmp->bsid);
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200406
407 //Get the steering
408 rmp->traffic_type = t->classify.traffic_type;
409 rmp->fib_table = htonl (t->classify.l3.fib_table);
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100410 ip_address_encode (&t->classify.l3.prefix, IP46_TYPE_ANY,
411 &rmp->prefix.address);
Ignas Bacius483a3d82020-04-06 16:31:27 +0300412 rmp->prefix.len = t->classify.l3.mask_width;
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200413
414 rmp->sw_if_index = htonl (t->classify.l2.sw_if_index);
415
416 rmp->context = context;
417 vl_api_send_msg (reg, (u8 *) rmp);
418}
419
420static void vl_api_sr_steering_pol_dump_t_handler
421 (vl_api_sr_policies_dump_t * mp)
422{
423 vl_api_registration_t *reg;
424 ip6_sr_main_t *sm = &sr_main;
425 ip6_sr_steering_policy_t *t;
426
427 reg = vl_api_client_index_to_registration (mp->client_index);
428 if (!reg)
429 return;
430
431 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +0100432 pool_foreach (t, sm->steer_policies)
433 {
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200434 send_sr_steering_pol_details(t, reg, mp->context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100435 }
Pablo Camarillo3337bd22018-06-19 15:49:02 +0200436 /* *INDENT-ON* */
437}
Pablo Camarillo1a5e3012017-11-16 16:02:50 +0100438
Filip Tehlare2fc0032021-06-22 13:00:40 +0000439#include <vnet/srv6/sr.api.c>
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100440static clib_error_t *
441sr_api_hookup (vlib_main_t * vm)
442{
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100443 /*
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100444 * Set up the (msg_name, crc, message-id) table
445 */
Filip Tehlare2fc0032021-06-22 13:00:40 +0000446 REPLY_MSG_ID_BASE = setup_message_id_table ();
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100447
448 return 0;
449}
450
451VLIB_API_INIT_FUNCTION (sr_api_hookup);
452
453/*
454 * fd.io coding-style-patch-verification: ON
455 *
456 * Local Variables:
457 * eval: (c-set-style "gnu")
458 * End:
459 */