arping: add arping command
[vpp.git] / src / plugins / arping / arping_api.c
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2021 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #include <vlib/vlib.h>
19 #include <vlib/unix/unix.h>
20 #include <vlib/pci/pci.h>
21 #include <vnet/ethernet/ethernet.h>
22 #include <vnet/format_fns.h>
23 #include <vnet/ip/ip_types_api.h>
24
25 #include <arping/arping.h>
26
27 #include <vlibapi/api.h>
28 #include <vlibmemory/api.h>
29
30 /* define message IDs */
31 #include <arping/arping.api_enum.h>
32 #include <arping/arping.api_types.h>
33
34 #include <vlibapi/api_helper_macros.h>
35
36 static void
37 vl_api_arping_t_handler (vl_api_arping_t *mp)
38 {
39   vlib_main_t *vm = vlib_get_main ();
40   arping_main_t *am = &arping_main;
41   vl_api_arping_reply_t *rmp;
42   arping_args_t args = { 0 };
43   int rv;
44
45   if (mp->sw_if_index != ~0)
46     VALIDATE_SW_IF_INDEX (mp);
47
48   ip_address_decode2 (&mp->address, &args.address);
49   args.interval = clib_net_to_host_f64 (mp->interval);
50   args.repeat = ntohl (mp->repeat);
51   args.is_garp = mp->is_garp;
52   args.sw_if_index = ntohl (mp->sw_if_index);
53   args.silence = 1;
54
55   arping_run_command (vm, &args);
56   rv = args.rv;
57
58   BAD_SW_IF_INDEX_LABEL;
59
60   REPLY_MACRO2 (VL_API_ARPING_REPLY + am->msg_id_base,
61                 ({ rmp->reply_count = ntohl (args.reply_count); }));
62 }
63
64 /* set tup the API message handling tables */
65 #include <arping/arping.api.c>
66 clib_error_t *
67 arping_plugin_api_hookup (vlib_main_t *vm)
68 {
69   arping_main_t *am = &arping_main;
70   api_main_t *vam = vlibapi_get_main ();
71
72   /* ask for a correctly-sized block of API message decode slots */
73   am->msg_id_base = setup_message_id_table ();
74
75   /* Mark API as mp safe */
76   vam->is_mp_safe[am->msg_id_base + VL_API_ARPING] = 1;
77
78   return 0;
79 }
80
81 /*
82  * fd.io coding-style-patch-verification: ON
83  *
84  * Local Variables:
85  * eval: (c-set-style "gnu")
86  * End:
87  */