sr: new messages created to return packet statistics in sr localsid details
[vpp.git] / src / vnet / srv6 / sr_api.c
1 /*
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>
21 #include <vnet/srv6/sr.h>
22 #include <vlibmemory/api.h>
23
24 #include <vnet/interface.h>
25 #include <vnet/api_errno.h>
26 #include <vnet/feature/feature.h>
27 #include <vnet/fib/fib_table.h>
28 #include <vnet/ip/ip_types_api.h>
29
30 #include <vnet/format_fns.h>
31 #include <vnet/srv6/sr.api_enum.h>
32 #include <vnet/srv6/sr.api_types.h>
33
34 #define REPLY_MSG_ID_BASE sr_main.msg_id_base
35 #include <vlibapi/api_helper_macros.h>
36
37 static void vl_api_sr_localsid_add_del_t_handler
38   (vl_api_sr_localsid_add_del_t * mp)
39 {
40   vl_api_sr_localsid_add_del_reply_t *rmp;
41   int rv = 0;
42   ip46_address_t prefix;
43   ip6_address_t localsid;
44 /*
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  */
49   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);
53
54   ip6_address_decode (mp->localsid, &localsid);
55   ip_address_decode (&mp->nh_addr, &prefix);
56
57   rv = sr_cli_localsid (mp->is_del,
58                         &localsid, 128,
59                         mp->end_psp,
60                         mp->behavior,
61                         ntohl (mp->sw_if_index),
62                         ntohl (mp->vlan_index),
63                         ntohl (mp->fib_table), &prefix, 0, NULL);
64
65   BAD_SW_IF_INDEX_LABEL;
66   REPLY_MACRO (VL_API_SR_LOCALSID_ADD_DEL_REPLY);
67 }
68
69 static void
70 vl_api_sr_policy_add_t_handler (vl_api_sr_policy_add_t * mp)
71 {
72   vl_api_sr_policy_add_reply_t *rmp;
73   ip6_address_t *segments = 0, *seg;
74   ip6_address_t bsid_addr;
75
76   int i;
77   for (i = 0; i < mp->sids.num_sids; i++)
78     {
79       vec_add2 (segments, seg, 1);
80       ip6_address_decode (mp->sids.sids[i], seg);
81     }
82
83   ip6_address_decode (mp->bsid_addr, &bsid_addr);
84
85 /*
86  * sr_policy_add (ip6_address_t *bsid, ip6_address_t *segments,
87  *                u32 weight, u8 behavior, u32 fib_table, u8 is_encap,
88  *                u16 behavior, void *plugin_mem)
89  */
90   int rv = 0;
91   rv = sr_policy_add (&bsid_addr,
92                       segments,
93                       ntohl (mp->sids.weight),
94                       mp->is_spray, ntohl (mp->fib_table), mp->is_encap, 0,
95                       NULL);
96   vec_free (segments);
97
98   REPLY_MACRO (VL_API_SR_POLICY_ADD_REPLY);
99 }
100
101 static void
102 vl_api_sr_policy_mod_t_handler (vl_api_sr_policy_mod_t * mp)
103 {
104   vl_api_sr_policy_mod_reply_t *rmp;
105   ip6_address_t *segments = 0, *seg;
106   ip6_address_t bsid_addr;
107
108   int i;
109   for (i = 0; i < mp->sids.num_sids; i++)
110     {
111       vec_add2 (segments, seg, 1);
112       ip6_address_decode (mp->sids.sids[i], seg);
113     }
114
115   ip6_address_decode (mp->bsid_addr, &bsid_addr);
116
117   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  */
124   rv = sr_policy_mod (&bsid_addr,
125                       ntohl (mp->sr_policy_index),
126                       ntohl (mp->fib_table),
127                       mp->operation,
128                       segments, ntohl (mp->sl_index),
129                       ntohl (mp->sids.weight));
130   vec_free (segments);
131
132   REPLY_MACRO (VL_API_SR_POLICY_MOD_REPLY);
133 }
134
135 static void
136 vl_api_sr_policy_del_t_handler (vl_api_sr_policy_del_t * mp)
137 {
138   vl_api_sr_policy_del_reply_t *rmp;
139   int rv = 0;
140   ip6_address_t bsid_addr;
141 /*
142  * int
143  * sr_policy_del (ip6_address_t *bsid, u32 index)
144  */
145   ip6_address_decode (mp->bsid_addr, &bsid_addr);
146   rv = sr_policy_del (&bsid_addr, ntohl (mp->sr_policy_index));
147
148   REPLY_MACRO (VL_API_SR_POLICY_DEL_REPLY);
149 }
150
151 static void
152 vl_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;
156   ip6_address_t encaps_source;
157
158   ip6_address_decode (mp->encaps_source, &encaps_source);
159   sr_set_source (&encaps_source);
160
161   REPLY_MACRO (VL_API_SR_SET_ENCAP_SOURCE_REPLY);
162 }
163
164 static void
165 vl_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
178 static void vl_api_sr_steering_add_del_t_handler
179   (vl_api_sr_steering_add_del_t * mp)
180 {
181   vl_api_sr_steering_add_del_reply_t *rmp;
182   int rv = 0;
183   ip6_address_t bsid_addr;
184   ip46_address_t prefix_addr;
185 /*
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  */
191
192   ip6_address_decode (mp->bsid_addr, &bsid_addr);
193   ip_address_decode (&mp->prefix.address, &prefix_addr);
194
195   if (mp->traffic_type == SR_STEER_L2)
196     VALIDATE_SW_IF_INDEX (mp);
197
198   rv = sr_steering_policy (mp->is_del,
199                            &bsid_addr,
200                            ntohl (mp->sr_policy_index),
201                            ntohl (mp->table_id),
202                            &prefix_addr,
203                            mp->prefix.len,
204                            ntohl (mp->sw_if_index), mp->traffic_type);
205
206   BAD_SW_IF_INDEX_LABEL;
207   REPLY_MACRO (VL_API_SR_STEERING_ADD_DEL_REPLY);
208 }
209
210 static void send_sr_localsid_details
211   (ip6_sr_localsid_t * t, vl_api_registration_t * reg, u32 context)
212 {
213   vl_api_sr_localsids_details_t *rmp;
214
215   rmp = vl_msg_api_alloc (sizeof (*rmp));
216   clib_memset (rmp, 0, sizeof (*rmp));
217   rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SR_LOCALSIDS_DETAILS);
218   ip6_address_encode (&t->localsid, rmp->addr);
219   rmp->end_psp = t->end_psp;
220   rmp->behavior = t->behavior;
221   rmp->fib_table = htonl (t->fib_table);
222   rmp->vlan_index = htonl (t->vlan_index);
223   ip_address_encode (&t->next_hop, IP46_TYPE_ANY, &rmp->xconnect_nh_addr);
224
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
234   rmp->context = context;
235
236   vl_api_send_msg (reg, (u8 *) rmp);
237 }
238
239 static void vl_api_sr_localsids_dump_t_handler
240   (vl_api_sr_localsids_dump_t * mp)
241 {
242   vl_api_registration_t *reg;
243   ip6_sr_main_t *sm = &sr_main;
244   ip6_sr_localsid_t *t;
245
246   reg = vl_api_client_index_to_registration (mp->client_index);
247   if (!reg)
248     return;
249
250   /* *INDENT-OFF* */
251   pool_foreach (t, sm->localsids)
252    {
253     send_sr_localsid_details(t, reg, mp->context);
254   }
255   /* *INDENT-ON* */
256 }
257
258 static void
259 send_sr_localsid_with_packet_stats_details (int local_sid_index,
260                                             ip6_sr_localsid_t *t,
261                                             vl_api_registration_t *reg,
262                                             u32 context)
263 {
264   vl_api_sr_localsids_with_packet_stats_details_t *rmp;
265   vlib_counter_t good_traffic, bad_traffic;
266   ip6_sr_main_t *sm = &sr_main;
267
268   rmp = vl_msg_api_alloc (sizeof (*rmp));
269   clib_memset (rmp, 0, sizeof (*rmp));
270   rmp->_vl_msg_id =
271     ntohs (REPLY_MSG_ID_BASE + VL_API_SR_LOCALSIDS_WITH_PACKET_STATS_DETAILS);
272   ip6_address_encode (&t->localsid, rmp->addr);
273   rmp->end_psp = t->end_psp;
274   rmp->behavior = t->behavior;
275   rmp->fib_table = htonl (t->fib_table);
276   rmp->vlan_index = htonl (t->vlan_index);
277   ip_address_encode (&t->next_hop, IP46_TYPE_ANY, &rmp->xconnect_nh_addr);
278
279   if (t->behavior == SR_BEHAVIOR_T || t->behavior == SR_BEHAVIOR_DT6)
280     rmp->xconnect_iface_or_vrf_table =
281       htonl (fib_table_get_table_id (t->sw_if_index, FIB_PROTOCOL_IP6));
282   else if (t->behavior == SR_BEHAVIOR_DT4)
283     rmp->xconnect_iface_or_vrf_table =
284       htonl (fib_table_get_table_id (t->sw_if_index, FIB_PROTOCOL_IP4));
285   else
286     rmp->xconnect_iface_or_vrf_table = htonl (t->sw_if_index);
287
288   rmp->context = context;
289   vlib_get_combined_counter (&(sm->sr_ls_valid_counters), local_sid_index,
290                              &good_traffic);
291   vlib_get_combined_counter (&(sm->sr_ls_invalid_counters), local_sid_index,
292                              &bad_traffic);
293   rmp->good_traffic_bytes = clib_host_to_net_u64 (good_traffic.bytes);
294   rmp->good_traffic_pkt_count = clib_host_to_net_u64 (good_traffic.packets);
295   rmp->bad_traffic_bytes = clib_host_to_net_u64 (bad_traffic.bytes);
296   rmp->bad_traffic_pkt_count = clib_host_to_net_u64 (bad_traffic.packets);
297   vl_api_send_msg (reg, (u8 *) rmp);
298 }
299
300 static void
301 vl_api_sr_localsids_with_packet_stats_dump_t_handler (
302   vl_api_sr_localsids_with_packet_stats_dump_t *mp)
303 {
304   vl_api_registration_t *reg;
305   ip6_sr_main_t *sm = &sr_main;
306   ip6_sr_localsid_t **localsid_list = 0;
307   ip6_sr_localsid_t *t;
308   int i;
309
310   reg = vl_api_client_index_to_registration (mp->client_index);
311   if (!reg)
312     return;
313
314   pool_foreach (t, sm->localsids)
315     {
316       vec_add1 (localsid_list, t);
317     }
318   for (i = 0; i < vec_len (localsid_list); i++)
319     {
320       t = localsid_list[i];
321       send_sr_localsid_with_packet_stats_details (i, t, reg, mp->context);
322     }
323 }
324
325 static void send_sr_policies_details
326   (ip6_sr_policy_t * t, vl_api_registration_t * reg, u32 context)
327 {
328   vl_api_sr_policies_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_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_t));
339   clib_memset (rmp, 0,
340                (sizeof (*rmp) +
341                 vec_len (t->segments_lists) *
342                 sizeof (vl_api_srv6_sid_list_t)));
343
344   rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SR_POLICIES_DETAILS);
345   ip6_address_encode (&t->bsid, rmp->bsid);
346   rmp->is_encap = t->is_encap;
347   rmp->is_spray = t->type;
348   rmp->fib_table = htonl (t->fib_table);
349   rmp->num_sid_lists = vec_len (t->segments_lists);
350
351   /* Fill in all the segments lists */
352   vec_foreach (sl_index, t->segments_lists)
353   {
354     segment_list = pool_elt_at_index (sm->sid_lists, *sl_index);
355
356     api_sid_list = &rmp->sid_lists[sl_index - t->segments_lists];
357
358     api_sid_list->num_sids = vec_len (segment_list->segments);
359     api_sid_list->weight = htonl (segment_list->weight);
360     slidx = 0;
361     vec_foreach (segment, segment_list->segments)
362     {
363       ip6_address_encode (segment, api_sid_list->sids[slidx++]);
364     }
365   }
366
367   rmp->context = context;
368   vl_api_send_msg (reg, (u8 *) rmp);
369 }
370
371 static void
372 vl_api_sr_policies_dump_t_handler (vl_api_sr_policies_dump_t * mp)
373 {
374   vl_api_registration_t *reg;
375   ip6_sr_main_t *sm = &sr_main;
376   ip6_sr_policy_t *t;
377
378   reg = vl_api_client_index_to_registration (mp->client_index);
379   if (!reg)
380     return;
381
382   /* *INDENT-OFF* */
383   pool_foreach (t, sm->sr_policies)
384    {
385     send_sr_policies_details(t, reg, mp->context);
386   }
387   /* *INDENT-ON* */
388 }
389
390
391
392 static void send_sr_policies_details_with_sl_index
393   (ip6_sr_policy_t * t, vl_api_registration_t * reg, u32 context)
394 {
395   vl_api_sr_policies_with_sl_index_details_t *rmp;
396   ip6_sr_main_t *sm = &sr_main;
397
398   u32 *sl_index, slidx = 0;
399   ip6_sr_sl_t *segment_list = 0;
400   ip6_address_t *segment;
401   vl_api_srv6_sid_list_with_sl_index_t *api_sid_list;
402
403   rmp = vl_msg_api_alloc (sizeof (*rmp) +
404                           vec_len (t->segments_lists) *
405                           sizeof (vl_api_srv6_sid_list_with_sl_index_t));
406   clib_memset (rmp, 0,
407                (sizeof (*rmp) +
408                 vec_len (t->segments_lists) *
409                 sizeof (vl_api_srv6_sid_list_with_sl_index_t)));
410
411   rmp->_vl_msg_id =
412     ntohs (REPLY_MSG_ID_BASE + VL_API_SR_POLICIES_WITH_SL_INDEX_DETAILS);
413   ip6_address_encode (&t->bsid, rmp->bsid);
414   rmp->is_encap = t->is_encap;
415   rmp->is_spray = t->type;
416   rmp->fib_table = htonl (t->fib_table);
417   rmp->num_sid_lists = vec_len (t->segments_lists);
418
419   /* Fill in all the segments lists */
420   vec_foreach (sl_index, t->segments_lists)
421   {
422     segment_list = pool_elt_at_index (sm->sid_lists, *sl_index);
423
424     api_sid_list = &rmp->sid_lists[sl_index - t->segments_lists];
425     api_sid_list->sl_index = htonl (*sl_index);
426     api_sid_list->num_sids = vec_len (segment_list->segments);
427     api_sid_list->weight = htonl (segment_list->weight);
428     slidx = 0;
429     vec_foreach (segment, segment_list->segments)
430     {
431       ip6_address_encode (segment, api_sid_list->sids[slidx++]);
432     }
433   }
434
435   rmp->context = context;
436   vl_api_send_msg (reg, (u8 *) rmp);
437 }
438
439 static void
440   vl_api_sr_policies_with_sl_index_dump_t_handler
441   (vl_api_sr_policies_with_sl_index_dump_t * mp)
442 {
443   vl_api_registration_t *reg;
444   ip6_sr_main_t *sm = &sr_main;
445   ip6_sr_policy_t *t;
446
447   reg = vl_api_client_index_to_registration (mp->client_index);
448   if (!reg)
449     return;
450
451   /* *INDENT-OFF* */
452   pool_foreach (t, sm->sr_policies)
453    {
454     send_sr_policies_details_with_sl_index(t, reg, mp->context);
455   }
456   /* *INDENT-ON* */
457 }
458
459 static void send_sr_steering_pol_details
460   (ip6_sr_steering_policy_t * t, vl_api_registration_t * reg, u32 context)
461 {
462   vl_api_sr_steering_pol_details_t *rmp;
463   ip6_sr_main_t *sm = &sr_main;
464
465   rmp = vl_msg_api_alloc (sizeof (*rmp));
466   clib_memset (rmp, 0, sizeof (*rmp));
467   rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SR_STEERING_POL_DETAILS);
468
469   //Get the SR policy BSID
470   ip6_sr_policy_t *p;
471   p = pool_elt_at_index (sm->sr_policies, t->sr_policy);
472   ip6_address_encode (&p->bsid, rmp->bsid);
473
474   //Get the steering
475   rmp->traffic_type = t->classify.traffic_type;
476   rmp->fib_table = htonl (t->classify.l3.fib_table);
477   ip_address_encode (&t->classify.l3.prefix, IP46_TYPE_ANY,
478                      &rmp->prefix.address);
479   rmp->prefix.len = t->classify.l3.mask_width;
480
481   rmp->sw_if_index = htonl (t->classify.l2.sw_if_index);
482
483   rmp->context = context;
484   vl_api_send_msg (reg, (u8 *) rmp);
485 }
486
487 static void vl_api_sr_steering_pol_dump_t_handler
488   (vl_api_sr_policies_dump_t * mp)
489 {
490   vl_api_registration_t *reg;
491   ip6_sr_main_t *sm = &sr_main;
492   ip6_sr_steering_policy_t *t;
493
494   reg = vl_api_client_index_to_registration (mp->client_index);
495   if (!reg)
496     return;
497
498   /* *INDENT-OFF* */
499   pool_foreach (t, sm->steer_policies)
500    {
501     send_sr_steering_pol_details(t, reg, mp->context);
502   }
503   /* *INDENT-ON* */
504 }
505
506 #include <vnet/srv6/sr.api.c>
507 static clib_error_t *
508 sr_api_hookup (vlib_main_t * vm)
509 {
510   /*
511    * Set up the (msg_name, crc, message-id) table
512    */
513   REPLY_MSG_ID_BASE = setup_message_id_table ();
514
515   return 0;
516 }
517
518 VLIB_API_INIT_FUNCTION (sr_api_hookup);
519
520 /*
521  * fd.io coding-style-patch-verification: ON
522  *
523  * Local Variables:
524  * eval: (c-set-style "gnu")
525  * End:
526  */