API:replaced all REPLY_MACRO's with api_helper_macros.h
[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 #include <vlibsocket/api.h>
29
30 /* define message IDs */
31 #include <ioam/udp-ping/udp_ping_msg_enum.h>
32
33 /* define message structures */
34 #define vl_typedefs
35 #include <ioam/udp-ping/udp_ping_all_api_h.h>
36 #undef vl_typedefs
37
38 /* define generated endian-swappers */
39 #define vl_endianfun
40 #include <ioam/udp-ping/udp_ping_all_api_h.h>
41 #undef vl_endianfun
42
43 /* instantiate all the print functions we know about */
44 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
45 #define vl_printfun
46 #include <ioam/udp-ping/udp_ping_all_api_h.h>
47 #undef vl_printfun
48
49 /* Get the API version number */
50 #define vl_api_version(n,v) static u32 api_version=(v);
51 #include <ioam/udp-ping/udp_ping_all_api_h.h>
52 #undef vl_api_version
53
54 #define REPLY_MSG_ID_BASE sm->msg_id_base
55 #include <vlibapi/api_helper_macros.h>
56
57 /* List of message types that this module understands */
58 #define foreach_udp_ping_api_msg                                      \
59     _(UDP_PING_ADD_DEL_REQ, udp_ping_add_del_req)                                     \
60     _(UDP_PING_EXPORT_REQ, udp_ping_export_req)                                     \
61
62 static void vl_api_udp_ping_add_del_req_t_handler
63   (vl_api_udp_ping_add_del_req_t * mp)
64 {
65   ip46_address_t dst, src;
66   int rv = 0;
67   udp_ping_main_t *sm = &udp_ping_main;
68   vl_api_udp_ping_add_del_reply_t *rmp;
69
70   if (mp->is_ipv4)
71     {
72       rv = -1;                  //Not supported
73       goto ERROROUT;
74     }
75
76   clib_memcpy ((void *) &src.ip6, (void *) mp->src_ip_address,
77                sizeof (ip6_address_t));
78   clib_memcpy ((void *) &dst.ip6, (void *) mp->dst_ip_address,
79                sizeof (ip6_address_t));
80
81   ip46_udp_ping_set_flow (src, dst,
82                           ntohs (mp->start_src_port),
83                           ntohs (mp->end_src_port),
84                           ntohs (mp->start_dst_port),
85                           ntohs (mp->end_dst_port),
86                           ntohs (mp->interval), mp->fault_det, mp->dis);
87   rv = 0;                       //FIXME
88
89 ERROROUT:
90   REPLY_MACRO (VL_API_UDP_PING_ADD_DEL_REPLY);
91 }
92
93 static void vl_api_udp_ping_export_req_t_handler
94   (vl_api_udp_ping_export_req_t * mp)
95 {
96   udp_ping_main_t *sm = &udp_ping_main;
97   int rv = 0;
98   vl_api_udp_ping_export_reply_t *rmp;
99
100   (void) udp_ping_flow_create (!mp->enable);
101   rv = 0;                       //FIXME
102
103   REPLY_MACRO (VL_API_UDP_PING_EXPORT_REPLY);
104 }
105
106 /* Set up the API message handling tables */
107 static clib_error_t *
108 udp_ping_api_hookup (vlib_main_t * vm)
109 {
110   udp_ping_main_t *sm = &udp_ping_main;
111 #define _(N,n)                                                  \
112     vl_msg_api_set_handlers((VL_API_##N + sm->msg_id_base),     \
113                             #n,                                 \
114                             vl_api_##n##_t_handler,              \
115                             vl_noop_handler,                     \
116                             vl_api_##n##_t_endian,               \
117                             vl_api_##n##_t_print,                \
118                             sizeof(vl_api_##n##_t), 1);
119   foreach_udp_ping_api_msg;
120 #undef _
121
122   return 0;
123 }
124
125 static clib_error_t *
126 udp_ping_api_init (vlib_main_t * vm)
127 {
128   udp_ping_main_t *sm = &udp_ping_main;
129   clib_error_t *error = 0;
130   u8 *name;
131
132   name = format (0, "udp_ping_%08x%c", api_version, 0);
133
134   /* Ask for a correctly-sized block of API message decode slots */
135   sm->msg_id_base = vl_msg_api_get_msg_ids
136     ((char *) name, VL_MSG_FIRST_AVAILABLE);
137
138   error = udp_ping_api_hookup (vm);
139
140   vec_free (name);
141
142   return error;
143 }
144
145 VLIB_INIT_FUNCTION (udp_ping_api_init);
146
147 /*
148  * fd.io coding-style-patch-verification: ON
149  *
150  * Local Variables:
151  * eval: (c-set-style "gnu")
152  * End:
153  */