blob: b4565663eb9966b50c8184fdb656e9edd62af52d [file] [log] [blame]
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +01001/*
2 *------------------------------------------------------------------
3 * span_api.c - span mirroring 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 <vlibmemory/api.h>
22
23#include <vnet/interface.h>
24#include <vnet/api_errno.h>
25#include <vnet/span/span.h>
26
27#include <vnet/vnet_msg_enum.h>
28
29#define vl_typedefs /* define message structures */
30#include <vnet/vnet_all_api_h.h>
31#undef vl_typedefs
32
33#define vl_endianfun /* define message structures */
34#include <vnet/vnet_all_api_h.h>
35#undef vl_endianfun
36
37/* instantiate all the print functions we know about */
38#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
39#define vl_printfun
40#include <vnet/vnet_all_api_h.h>
41#undef vl_printfun
42
43#include <vlibapi/api_helper_macros.h>
44
45#define foreach_vpe_api_msg \
46_(SW_INTERFACE_SPAN_ENABLE_DISABLE, sw_interface_span_enable_disable) \
47_(SW_INTERFACE_SPAN_DUMP, sw_interface_span_dump) \
48
49static void
50 vl_api_sw_interface_span_enable_disable_t_handler
51 (vl_api_sw_interface_span_enable_disable_t * mp)
52{
53 vl_api_sw_interface_span_enable_disable_reply_t *rmp;
54 int rv;
55
56 vlib_main_t *vm = vlib_get_main ();
57
58 rv = span_add_delete_entry (vm, ntohl (mp->sw_if_index_from),
59 ntohl (mp->sw_if_index_to), mp->state);
60
61 REPLY_MACRO (VL_API_SW_INTERFACE_SPAN_ENABLE_DISABLE_REPLY);
62}
63
64static void
65vl_api_sw_interface_span_dump_t_handler (vl_api_sw_interface_span_dump_t * mp)
66{
67
68 unix_shared_memory_queue_t *q;
69 span_interface_t *si;
70 vl_api_sw_interface_span_details_t *rmp;
71 span_main_t *sm = &span_main;
72
73 q = vl_api_client_index_to_input_queue (mp->client_index);
74 if (!q)
75 return;
76
77 /* *INDENT-OFF* */
78 vec_foreach (si, sm->interfaces)
79 if (si->num_rx_mirror_ports || si->num_tx_mirror_ports)
80 {
81 clib_bitmap_t *b;
82 u32 i;
83 b = clib_bitmap_dup_or (si->rx_mirror_ports, si->tx_mirror_ports);
84 clib_bitmap_foreach (i, b, (
85 {
86 rmp = vl_msg_api_alloc (sizeof (*rmp));
87 memset (rmp, 0, sizeof (*rmp));
88 rmp->_vl_msg_id = ntohs (VL_API_SW_INTERFACE_SPAN_DETAILS);
89 rmp->context = mp->context;
90
91 rmp->sw_if_index_from = htonl (si - sm->interfaces);
92 rmp->sw_if_index_to = htonl (i);
93 rmp->state = (u8) (clib_bitmap_get (si->rx_mirror_ports, i) +
94 clib_bitmap_get (si->tx_mirror_ports, i) * 2);
95
96 vl_msg_api_send_shmem (q, (u8 *) & rmp);
97 }));
98 clib_bitmap_free (b);
99 }
100 /* *INDENT-ON* */
101}
102
103/*
104 * vpe_api_hookup
105 * Add vpe's API message handlers to the table.
106 * vlib has alread mapped shared memory and
107 * added the client registration handlers.
108 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
109 */
110#define vl_msg_name_crc_list
111#include <vnet/vnet_all_api_h.h>
112#undef vl_msg_name_crc_list
113
114static void
115setup_message_id_table (api_main_t * am)
116{
117#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
Ole Troan399ca1c2016-12-06 23:00:38 +0100118 foreach_vl_msg_name_crc_span;
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +0100119#undef _
120}
121
122static clib_error_t *
123span_api_hookup (vlib_main_t * vm)
124{
125 api_main_t *am = &api_main;
126
127#define _(N,n) \
128 vl_msg_api_set_handlers(VL_API_##N, #n, \
129 vl_api_##n##_t_handler, \
130 vl_noop_handler, \
131 vl_api_##n##_t_endian, \
132 vl_api_##n##_t_print, \
133 sizeof(vl_api_##n##_t), 1);
134 foreach_vpe_api_msg;
135#undef _
136
137 /*
138 * Set up the (msg_name, crc, message-id) table
139 */
140 setup_message_id_table (am);
141
142 return 0;
143}
144
145VLIB_API_INIT_FUNCTION (span_api_hookup);
146
147/*
148 * fd.io coding-style-patch-verification: ON
149 *
150 * Local Variables:
151 * eval: (c-set-style "gnu")
152 * End:
153 */