flowprobe: use explicit types in api
[vpp.git] / src / plugins / flowprobe / flowprobe_test.c
1 /*
2  * flowprobe.c - skeleton vpp-api-test plug-in
3  *
4  * Copyright (c) <current-year> <your-organization>
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 #include <vat/vat.h>
18 #include <vlibapi/api.h>
19 #include <vlibmemory/api.h>
20 #include <vppinfra/error.h>
21 #include <flowprobe/flowprobe.h>
22
23 #define __plugin_msg_base flowprobe_test_main.msg_id_base
24 #include <vlibapi/vat_helper_macros.h>
25
26 /**
27  * @file vpp_api_test plugin
28  */
29
30 uword unformat_sw_if_index (unformat_input_t * input, va_list * args);
31
32 /* Declare message IDs */
33 #include <flowprobe/flowprobe.api_enum.h>
34 #include <flowprobe/flowprobe.api_types.h>
35
36 typedef struct
37 {
38     /** API message ID base */
39   u16 msg_id_base;
40     /** vat_main_t pointer */
41   vat_main_t *vat_main;
42 } flowprobe_test_main_t;
43
44 flowprobe_test_main_t flowprobe_test_main;
45
46 static int
47 api_flowprobe_tx_interface_add_del (vat_main_t * vam)
48 {
49   unformat_input_t *i = vam->input;
50   int enable_disable = 1;
51   u8 which = FLOW_VARIANT_IP4;
52   u32 sw_if_index = ~0;
53   vl_api_flowprobe_tx_interface_add_del_t *mp;
54   int ret;
55
56   /* Parse args required to build the message */
57   while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
58     {
59       if (unformat (i, "%U", unformat_sw_if_index, vam, &sw_if_index))
60         ;
61       else if (unformat (i, "sw_if_index %d", &sw_if_index))
62         ;
63       else if (unformat (i, "disable"))
64         enable_disable = 0;
65       else if (unformat (i, "ip4"))
66         which = FLOW_VARIANT_IP4;
67       else if (unformat (i, "ip6"))
68         which = FLOW_VARIANT_IP6;
69       else if (unformat (i, "l2"))
70         which = FLOW_VARIANT_L2;
71       else
72         break;
73     }
74
75   if (sw_if_index == ~0)
76     {
77       errmsg ("missing interface name / explicit sw_if_index number \n");
78       return -99;
79     }
80
81   /* Construct the API message */
82   M (FLOWPROBE_TX_INTERFACE_ADD_DEL, mp);
83   mp->sw_if_index = ntohl (sw_if_index);
84   mp->is_add = enable_disable;
85   mp->which = which;
86
87   /* send it... */
88   S (mp);
89
90   /* Wait for a reply... */
91   W (ret);
92   return ret;
93 }
94
95 static int
96 api_flowprobe_params (vat_main_t * vam)
97 {
98   unformat_input_t *i = vam->input;
99   u32 active_timer = ~0;
100   u32 passive_timer = ~0;
101   vl_api_flowprobe_params_t *mp;
102   int ret;
103   u8 record_flags = 0;
104
105   while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
106     {
107       if (unformat (i, "active %d", &active_timer))
108         ;
109       else if (unformat (i, "passive %d", &passive_timer))
110         ;
111       else if (unformat (i, "record"))
112         while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT)
113           {
114             if (unformat (i, "l2"))
115               record_flags |= FLOWPROBE_RECORD_FLAG_L2;
116             else if (unformat (i, "l3"))
117               record_flags |= FLOWPROBE_RECORD_FLAG_L3;
118             else if (unformat (i, "l4"))
119               record_flags |= FLOWPROBE_RECORD_FLAG_L4;
120             else
121               break;
122           }
123       else
124         break;
125     }
126
127   if (passive_timer > 0 && active_timer > passive_timer)
128     {
129       errmsg ("Passive timer has to be greater than active one...\n");
130       return -99;
131     }
132
133   /* Construct the API message */
134   M (FLOWPROBE_PARAMS, mp);
135   mp->record_flags = record_flags;
136   mp->active_timer = ntohl (active_timer);
137   mp->passive_timer = ntohl (passive_timer);
138
139   /* send it... */
140   S (mp);
141
142   /* Wait for a reply... */
143   W (ret);
144
145   return ret;
146 }
147
148 /*
149  * List of messages that the api test plugin sends,
150  * and that the data plane plugin processes
151  */
152 #include <flowprobe/flowprobe.api_test.c>
153
154 /*
155  * fd.io coding-style-patch-verification: ON
156  *
157  * Local Variables:
158  * eval: (c-set-style "gnu")
159  * End:
160  */