ioam: remove api boilerplate
[vpp.git] / src / plugins / ioam / udp-ping / udp_ping_api.c
1 /*
2  * Copyright (c) 2017 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  * udp_ping_api.c - UDP Ping related APIs to create
18  *             and maintain ping flows
19  *------------------------------------------------------------------
20  */
21
22 #include <vnet/vnet.h>
23 #include <vnet/ip/ip.h>
24 #include <ioam/udp-ping/udp_ping.h>
25
26 #include <vlibapi/api.h>
27 #include <vlibmemory/api.h>
28
29
30 /* define message IDs */
31 #include <ioam/udp-ping/udp_ping.api_enum.h>
32 #include <ioam/udp-ping/udp_ping.api_types.h>
33
34 #define REPLY_MSG_ID_BASE sm->msg_id_base
35 #include <vlibapi/api_helper_macros.h>
36
37 static void
38 vl_api_udp_ping_add_del_t_handler (vl_api_udp_ping_add_del_t * mp)
39 {
40   ip46_address_t dst, src;
41   int rv = 0;
42   udp_ping_main_t *sm = &udp_ping_main;
43   vl_api_udp_ping_add_del_reply_t *rmp;
44
45   if (mp->is_ipv4)
46     {
47       rv = -1;                  //Not supported
48       goto ERROROUT;
49     }
50
51   clib_memcpy ((void *) &src.ip6, (void *) mp->src_ip_address,
52                sizeof (ip6_address_t));
53   clib_memcpy ((void *) &dst.ip6, (void *) mp->dst_ip_address,
54                sizeof (ip6_address_t));
55
56   ip46_udp_ping_set_flow (src, dst,
57                           ntohs (mp->start_src_port),
58                           ntohs (mp->end_src_port),
59                           ntohs (mp->start_dst_port),
60                           ntohs (mp->end_dst_port),
61                           ntohs (mp->interval), mp->fault_det, mp->dis);
62   rv = 0;                       //FIXME
63
64 ERROROUT:
65   REPLY_MACRO (VL_API_UDP_PING_ADD_DEL_REPLY);
66 }
67
68 static void
69 vl_api_udp_ping_export_t_handler (vl_api_udp_ping_export_t * mp)
70 {
71   udp_ping_main_t *sm = &udp_ping_main;
72   int rv = 0;
73   vl_api_udp_ping_export_reply_t *rmp;
74
75   (void) udp_ping_flow_create (!mp->enable);
76   rv = 0;                       //FIXME
77
78   REPLY_MACRO (VL_API_UDP_PING_EXPORT_REPLY);
79 }
80
81 #include <ioam/udp-ping/udp_ping.api.c>
82 static clib_error_t *
83 udp_ping_api_init (vlib_main_t * vm)
84 {
85   udp_ping_main_t *sm = &udp_ping_main;
86
87   /* Ask for a correctly-sized block of API message decode slots */
88   sm->msg_id_base = setup_message_id_table ();
89
90   return 0;
91 }
92
93 VLIB_INIT_FUNCTION (udp_ping_api_init);
94
95 /*
96  * fd.io coding-style-patch-verification: ON
97  *
98  * Local Variables:
99  * eval: (c-set-style "gnu")
100  * End:
101  */