06634baaf4b954385e61179507e90910d7d58bd8
[vpp.git] / src / plugins / ioam / export / ioam_export.c
1 /*
2  * Copyright (c) 2016 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  *------------------------------------------------------------------
17  * ioam_export.c - ioam export API / debug CLI handling
18  *------------------------------------------------------------------
19  */
20
21 #include <vnet/vnet.h>
22 #include <vnet/plugin/plugin.h>
23 #include <ioam/export-common/ioam_export.h>
24
25 #include <vlibapi/api.h>
26 #include <vlibmemory/api.h>
27 #include <vlibsocket/api.h>
28 #include <vnet/ip/ip6_hop_by_hop.h>
29
30
31 /* define message IDs */
32 #include <ioam/export/ioam_export_msg_enum.h>
33
34 /* define message structures */
35 #define vl_typedefs
36 #include <ioam/export/ioam_export_all_api_h.h>
37 #undef vl_typedefs
38
39 /* define generated endian-swappers */
40 #define vl_endianfun
41 #include <ioam/export/ioam_export_all_api_h.h>
42 #undef vl_endianfun
43
44 /* instantiate all the print functions we know about */
45 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
46 #define vl_printfun
47 #include <ioam/export/ioam_export_all_api_h.h>
48 #undef vl_printfun
49
50 /* Get the API version number */
51 #define vl_api_version(n,v) static u32 api_version=(v);
52 #include <ioam/export/ioam_export_all_api_h.h>
53 #undef vl_api_version
54
55 /*
56  * A handy macro to set up a message reply.
57  * Assumes that the following variables are available:
58  * mp - pointer to request message
59  * rmp - pointer to reply message type
60  * rv - return value
61  */
62
63 #define REPLY_MACRO(t)                                          \
64 do {                                                            \
65     unix_shared_memory_queue_t * q =                            \
66     vl_api_client_index_to_input_queue (mp->client_index);      \
67     if (!q)                                                     \
68         return;                                                 \
69                                                                 \
70     rmp = vl_msg_api_alloc (sizeof (*rmp));                     \
71     rmp->_vl_msg_id = ntohs((t)+sm->msg_id_base);               \
72     rmp->context = mp->context;                                 \
73     rmp->retval = ntohl(rv);                                    \
74                                                                 \
75     vl_msg_api_send_shmem (q, (u8 *)&rmp);                      \
76 } while(0);
77
78
79 /* List of message types that this plugin understands */
80
81 #define foreach_ioam_export_plugin_api_msg                        \
82 _(IOAM_EXPORT_IP6_ENABLE_DISABLE, ioam_export_ip6_enable_disable)
83
84 /* Action function shared between message handler and debug CLI */
85
86 int
87 ioam_export_ip6_enable_disable (ioam_export_main_t * em,
88                                 u8 is_disable,
89                                 ip4_address_t * collector_address,
90                                 ip4_address_t * src_address)
91 {
92   vlib_main_t *vm = em->vlib_main;
93
94   if (is_disable == 0)
95     {
96       if (1 == ioam_export_header_create (em, collector_address, src_address))
97         {
98           ioam_export_thread_buffer_init (em, vm);
99           ip6_hbh_set_next_override (em->my_hbh_slot);
100           /* Turn on the export buffer check process */
101           vlib_process_signal_event (vm, em->export_process_node_index, 1, 0);
102
103         }
104       else
105         {
106           return (-2);
107         }
108     }
109   else
110     {
111       ip6_hbh_set_next_override (IP6_LOOKUP_NEXT_POP_HOP_BY_HOP);
112       ioam_export_header_cleanup (em, collector_address, src_address);
113       ioam_export_thread_buffer_free (em);
114       /* Turn off the export buffer check process */
115       vlib_process_signal_event (vm, em->export_process_node_index, 2, 0);
116
117     }
118
119   return 0;
120 }
121
122 /* API message handler */
123 static void vl_api_ioam_export_ip6_enable_disable_t_handler
124   (vl_api_ioam_export_ip6_enable_disable_t * mp)
125 {
126   vl_api_ioam_export_ip6_enable_disable_reply_t *rmp;
127   ioam_export_main_t *sm = &ioam_export_main;
128   int rv;
129
130   rv = ioam_export_ip6_enable_disable (sm, (int) (mp->is_disable),
131                                        (ip4_address_t *)
132                                        mp->collector_address,
133                                        (ip4_address_t *) mp->src_address);
134
135   REPLY_MACRO (VL_API_IOAM_EXPORT_IP6_ENABLE_DISABLE_REPLY);
136 }
137
138 /* Set up the API message handling tables */
139 static clib_error_t *
140 ioam_export_plugin_api_hookup (vlib_main_t * vm)
141 {
142   ioam_export_main_t *sm = &ioam_export_main;
143 #define _(N,n)                                                  \
144     vl_msg_api_set_handlers((VL_API_##N + sm->msg_id_base),     \
145                            #n,                                  \
146                            vl_api_##n##_t_handler,              \
147                            vl_noop_handler,                     \
148                            vl_api_##n##_t_endian,               \
149                            vl_api_##n##_t_print,                \
150                            sizeof(vl_api_##n##_t), 1);
151   foreach_ioam_export_plugin_api_msg;
152 #undef _
153
154   return 0;
155 }
156
157 #define vl_msg_name_crc_list
158 #include <ioam/export/ioam_export_all_api_h.h>
159 #undef vl_msg_name_crc_list
160
161 static void
162 setup_message_id_table (ioam_export_main_t * sm, api_main_t * am)
163 {
164 #define _(id,n,crc) \
165   vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + sm->msg_id_base);
166   foreach_vl_msg_name_crc_ioam_export;
167 #undef _
168 }
169
170 static clib_error_t *
171 set_ioam_export_ipfix_command_fn (vlib_main_t * vm,
172                                   unformat_input_t * input,
173                                   vlib_cli_command_t * cmd)
174 {
175   ioam_export_main_t *em = &ioam_export_main;
176   ip4_address_t collector, src;
177   u8 is_disable = 0;
178
179   collector.as_u32 = 0;
180   src.as_u32 = 0;
181
182   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
183     {
184       if (unformat (input, "collector %U", unformat_ip4_address, &collector))
185         ;
186       else if (unformat (input, "src %U", unformat_ip4_address, &src))
187         ;
188       else if (unformat (input, "disable"))
189         is_disable = 1;
190       else
191         break;
192     }
193
194   if (collector.as_u32 == 0)
195     return clib_error_return (0, "collector address required");
196
197   if (src.as_u32 == 0)
198     return clib_error_return (0, "src address required");
199
200   em->ipfix_collector.as_u32 = collector.as_u32;
201   em->src_address.as_u32 = src.as_u32;
202
203   vlib_cli_output (vm, "Collector %U, src address %U",
204                    format_ip4_address, &em->ipfix_collector,
205                    format_ip4_address, &em->src_address);
206
207   /* Turn on the export timer process */
208   // vlib_process_signal_event (vm, flow_report_process_node.index,
209   //1, 0);
210   ioam_export_ip6_enable_disable (em, is_disable, &collector, &src);
211
212   return 0;
213 }
214
215 /* *INDENT-OFF* */
216 VLIB_CLI_COMMAND (set_ipfix_command, static) =
217 {
218 .path = "set ioam export ipfix",.short_help =
219     "set ioam export ipfix collector <ip4-address> src <ip4-address>",.
220     function = set_ioam_export_ipfix_command_fn,};
221 /* *INDENT-ON* */
222
223
224 static clib_error_t *
225 ioam_export_init (vlib_main_t * vm)
226 {
227   ioam_export_main_t *em = &ioam_export_main;
228   clib_error_t *error = 0;
229   u8 *name;
230   u32 node_index = export_node.index;
231   vlib_node_t *ip6_hbyh_node = NULL;
232
233   em->vlib_main = vm;
234   em->vnet_main = vnet_get_main ();
235
236   name = format (0, "ioam_export_%08x%c", api_version, 0);
237
238   /* Ask for a correctly-sized block of API message decode slots */
239   em->msg_id_base = vl_msg_api_get_msg_ids
240     ((char *) name, VL_MSG_FIRST_AVAILABLE);
241   em->unix_time_0 = (u32) time (0);     /* Store starting time */
242   em->vlib_time_0 = vlib_time_now (vm);
243
244   error = ioam_export_plugin_api_hookup (vm);
245
246   /* Add our API messages to the global name_crc hash table */
247   setup_message_id_table (em, &api_main);
248
249   /* Hook this export node to ip6-hop-by-hop */
250   ip6_hbyh_node = vlib_get_node_by_name (vm, (u8 *) "ip6-hop-by-hop");
251   em->my_hbh_slot = vlib_node_add_next (vm, ip6_hbyh_node->index, node_index);
252   vec_free (name);
253
254   return error;
255 }
256
257 VLIB_INIT_FUNCTION (ioam_export_init);
258
259 /*
260  * fd.io coding-style-patch-verification: ON
261  *
262  * Local Variables:
263  * eval: (c-set-style "gnu")
264  * End:
265  */