fix udp_ping api naming error
[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_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, udp_ping_add_del)                                     \
60     _(UDP_PING_EXPORT, udp_ping_export)                                     \
61
62 static void
63 vl_api_udp_ping_add_del_t_handler (vl_api_udp_ping_add_del_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
94 vl_api_udp_ping_export_t_handler (vl_api_udp_ping_export_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 #define vl_msg_name_crc_list
126 #include <ioam/udp-ping/udp_ping_all_api_h.h>
127 #undef vl_msg_name_crc_list
128
129 static void
130 setup_message_id_table (udp_ping_main_t * sm, api_main_t * am)
131 {
132 #define _(id,n,crc) \
133   vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + sm->msg_id_base);
134   foreach_vl_msg_name_crc_udp_ping;
135 #undef _
136 }
137
138 static clib_error_t *
139 udp_ping_api_init (vlib_main_t * vm)
140 {
141   udp_ping_main_t *sm = &udp_ping_main;
142   clib_error_t *error = 0;
143   u8 *name;
144
145   name = format (0, "udp_ping_%08x%c", api_version, 0);
146
147   /* Ask for a correctly-sized block of API message decode slots */
148   sm->msg_id_base = vl_msg_api_get_msg_ids
149     ((char *) name, VL_MSG_FIRST_AVAILABLE);
150
151   error = udp_ping_api_hookup (vm);
152
153   /* Add our API messages to the global name_crc hash table */
154   setup_message_id_table (sm, &api_main);
155
156   vec_free (name);
157
158   return error;
159 }
160
161 VLIB_INIT_FUNCTION (udp_ping_api_init);
162
163 /*
164  * fd.io coding-style-patch-verification: ON
165  *
166  * Local Variables:
167  * eval: (c-set-style "gnu")
168  * End:
169  */