blob: 3929ac23701dd084e7425ea06c46124477627e05 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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 */
Ray Kinsella583dc8d2017-06-08 15:54:19 +010015/**
16 * @file
17 * @brief Sample Plugin, plugin API / trace / CLI handling.
Ed Warnickecb9cada2015-12-08 15:45:58 -070018 */
19
20#include <vnet/vnet.h>
21#include <vnet/plugin/plugin.h>
22#include <sample/sample.h>
23
24#include <vlibapi/api.h>
25#include <vlibmemory/api.h>
26#include <vlibsocket/api.h>
27
28/* define message IDs */
29#include <sample/sample_msg_enum.h>
30
31/* define message structures */
32#define vl_typedefs
33#include <sample/sample_all_api_h.h>
34#undef vl_typedefs
35
36/* define generated endian-swappers */
37#define vl_endianfun
38#include <sample/sample_all_api_h.h>
39#undef vl_endianfun
40
41/* instantiate all the print functions we know about */
42#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
43#define vl_printfun
44#include <sample/sample_all_api_h.h>
45#undef vl_printfun
46
47/* Get the API version number */
48#define vl_api_version(n,v) static u32 api_version=(v);
49#include <sample/sample_all_api_h.h>
50#undef vl_api_version
51
Eyal Barib614d082017-03-16 10:02:57 +020052#define REPLY_MSG_ID_BASE sm->msg_id_base
53#include <vlibapi/api_helper_macros.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
55/* List of message types that this plugin understands */
56
57#define foreach_sample_plugin_api_msg \
58_(SAMPLE_MACSWAP_ENABLE_DISABLE, sample_macswap_enable_disable)
59
Anlu Yana4cb12b2017-02-14 18:07:40 -080060/* *INDENT-OFF* */
61VLIB_PLUGIN_REGISTER () = {
62 .version = SAMPLE_PLUGIN_BUILD_VER,
Damjan Marion1bfb0dd2017-03-22 11:08:39 +010063 .description = "Sample of VPP Plugin",
Anlu Yana4cb12b2017-02-14 18:07:40 -080064};
65/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070066
Ray Kinsella583dc8d2017-06-08 15:54:19 +010067/**
68 * @brief Enable/disable the macswap plugin.
69 *
70 * Action function shared between message handler and debug CLI.
71 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070072
73int sample_macswap_enable_disable (sample_main_t * sm, u32 sw_if_index,
74 int enable_disable)
75{
76 vnet_sw_interface_t * sw;
Dave Barachb7e2f3d2016-11-08 16:47:34 -050077 int rv = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070078
79 /* Utterly wrong? */
80 if (pool_is_free_index (sm->vnet_main->interface_main.sw_interfaces,
81 sw_if_index))
82 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
83
84 /* Not a physical port? */
85 sw = vnet_get_sw_interface (sm->vnet_main, sw_if_index);
86 if (sw->type != VNET_SW_INTERFACE_TYPE_HARDWARE)
87 return VNET_API_ERROR_INVALID_SW_IF_INDEX;
88
Dave Barachb7e2f3d2016-11-08 16:47:34 -050089 vnet_feature_enable_disable ("device-input", "sample",
90 sw_if_index, enable_disable, 0, 0);
91
Ed Warnickecb9cada2015-12-08 15:45:58 -070092 return rv;
93}
94
95static clib_error_t *
96macswap_enable_disable_command_fn (vlib_main_t * vm,
97 unformat_input_t * input,
98 vlib_cli_command_t * cmd)
99{
100 sample_main_t * sm = &sample_main;
101 u32 sw_if_index = ~0;
102 int enable_disable = 1;
103
104 int rv;
105
106 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) {
107 if (unformat (input, "disable"))
108 enable_disable = 0;
109 else if (unformat (input, "%U", unformat_vnet_sw_interface,
110 sm->vnet_main, &sw_if_index))
111 ;
112 else
113 break;
114 }
115
116 if (sw_if_index == ~0)
117 return clib_error_return (0, "Please specify an interface...");
118
119 rv = sample_macswap_enable_disable (sm, sw_if_index, enable_disable);
120
121 switch(rv) {
122 case 0:
123 break;
124
125 case VNET_API_ERROR_INVALID_SW_IF_INDEX:
126 return clib_error_return
127 (0, "Invalid interface, only works on physical ports");
128 break;
129
130 case VNET_API_ERROR_UNIMPLEMENTED:
131 return clib_error_return (0, "Device driver doesn't support redirection");
132 break;
133
134 default:
135 return clib_error_return (0, "sample_macswap_enable_disable returned %d",
136 rv);
137 }
138 return 0;
139}
140
Ray Kinsella583dc8d2017-06-08 15:54:19 +0100141/**
142 * @brief CLI command to enable/disable the sample macswap plugin.
143 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144VLIB_CLI_COMMAND (sr_content_command, static) = {
145 .path = "sample macswap",
146 .short_help =
147 "sample macswap <interface-name> [disable]",
148 .function = macswap_enable_disable_command_fn,
149};
150
Ray Kinsella583dc8d2017-06-08 15:54:19 +0100151/**
152 * @brief Plugin API message handler.
153 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154static void vl_api_sample_macswap_enable_disable_t_handler
155(vl_api_sample_macswap_enable_disable_t * mp)
156{
157 vl_api_sample_macswap_enable_disable_reply_t * rmp;
158 sample_main_t * sm = &sample_main;
159 int rv;
160
161 rv = sample_macswap_enable_disable (sm, ntohl(mp->sw_if_index),
162 (int) (mp->enable_disable));
163
164 REPLY_MACRO(VL_API_SAMPLE_MACSWAP_ENABLE_DISABLE_REPLY);
165}
166
Ray Kinsella583dc8d2017-06-08 15:54:19 +0100167/**
168 * @brief Set up the API message handling tables.
169 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170static clib_error_t *
171sample_plugin_api_hookup (vlib_main_t *vm)
172{
173 sample_main_t * sm = &sample_main;
174#define _(N,n) \
175 vl_msg_api_set_handlers((VL_API_##N + sm->msg_id_base), \
176 #n, \
177 vl_api_##n##_t_handler, \
178 vl_noop_handler, \
179 vl_api_##n##_t_endian, \
180 vl_api_##n##_t_print, \
181 sizeof(vl_api_##n##_t), 1);
182 foreach_sample_plugin_api_msg;
183#undef _
184
185 return 0;
186}
187
Dave Barach557d1282016-11-10 14:22:49 -0500188#define vl_msg_name_crc_list
189#include <sample/sample_all_api_h.h>
190#undef vl_msg_name_crc_list
191
192static void
193setup_message_id_table (sample_main_t * sm, api_main_t *am)
194{
195#define _(id,n,crc) \
196 vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + sm->msg_id_base);
197 foreach_vl_msg_name_crc_sample;
198#undef _
199}
200
Ray Kinsella583dc8d2017-06-08 15:54:19 +0100201/**
202 * @brief Initialize the sample plugin.
203 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204static clib_error_t * sample_init (vlib_main_t * vm)
205{
206 sample_main_t * sm = &sample_main;
207 clib_error_t * error = 0;
208 u8 * name;
209
Anlu Yana4cb12b2017-02-14 18:07:40 -0800210 sm->vnet_main = vnet_get_main ();
211
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212 name = format (0, "sample_%08x%c", api_version, 0);
213
214 /* Ask for a correctly-sized block of API message decode slots */
215 sm->msg_id_base = vl_msg_api_get_msg_ids
216 ((char *) name, VL_MSG_FIRST_AVAILABLE);
217
218 error = sample_plugin_api_hookup (vm);
219
Dave Barach557d1282016-11-10 14:22:49 -0500220 /* Add our API messages to the global name_crc hash table */
221 setup_message_id_table (sm, &api_main);
222
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 vec_free(name);
224
225 return error;
226}
227
228VLIB_INIT_FUNCTION (sample_init);
229
Ray Kinsella583dc8d2017-06-08 15:54:19 +0100230/**
231 * @brief Hook the sample plugin into the VPP graph hierarchy.
232 */
Dave Barachb7e2f3d2016-11-08 16:47:34 -0500233VNET_FEATURE_INIT (sample, static) =
234{
235 .arc_name = "device-input",
236 .node_name = "sample",
237 .runs_before = VNET_FEATURES ("ethernet-input"),
238};