Clean up binary api message handler registration issues
[vpp.git] / src / vnet / dhcp / dhcp_api.c
1 /*
2  *------------------------------------------------------------------
3  * dhcp_api.c - dhcp api
4  *
5  * Copyright (c) 2016 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19
20 #include <vnet/vnet.h>
21 #include <vlibmemory/api.h>
22
23 #include <vnet/interface.h>
24 #include <vnet/api_errno.h>
25 #include <vnet/dhcp/dhcp_proxy.h>
26 #include <vnet/dhcp/client.h>
27
28 #include <vnet/vnet_msg_enum.h>
29
30 #define vl_typedefs             /* define message structures */
31 #include <vnet/vnet_all_api_h.h>
32 #undef vl_typedefs
33
34 #define vl_endianfun            /* define message structures */
35 #include <vnet/vnet_all_api_h.h>
36 #undef vl_endianfun
37
38 /* instantiate all the print functions we know about */
39 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
40 #define vl_printfun
41 #include <vnet/vnet_all_api_h.h>
42 #undef vl_printfun
43
44 #include <vlibapi/api_helper_macros.h>
45
46 #define foreach_vpe_api_msg                       \
47 _(DHCP_PROXY_CONFIG,dhcp_proxy_config)            \
48 _(DHCP_PROXY_DUMP,dhcp_proxy_dump)                \
49 _(DHCP_PROXY_SET_VSS,dhcp_proxy_set_vss)          \
50 _(DHCP_CLIENT_CONFIG, dhcp_client_config)
51
52
53 static void
54 vl_api_dhcp_proxy_set_vss_t_handler (vl_api_dhcp_proxy_set_vss_t * mp)
55 {
56   vl_api_dhcp_proxy_set_vss_reply_t *rmp;
57   int rv;
58
59   rv = dhcp_proxy_set_vss ((mp->is_ipv6 ?
60                             FIB_PROTOCOL_IP6 :
61                             FIB_PROTOCOL_IP4),
62                            ntohl (mp->tbl_id),
63                            ntohl (mp->oui),
64                            ntohl (mp->fib_id), (int) mp->is_add == 0);
65
66   REPLY_MACRO (VL_API_DHCP_PROXY_SET_VSS_REPLY);
67 }
68
69
70 static void vl_api_dhcp_proxy_config_t_handler
71   (vl_api_dhcp_proxy_config_t * mp)
72 {
73   vl_api_dhcp_proxy_set_vss_reply_t *rmp;
74   ip46_address_t src, server;
75   int rv = -1;
76
77   if (mp->is_ipv6)
78     {
79       clib_memcpy (&src.ip6, mp->dhcp_src_address, sizeof (src.ip6));
80       clib_memcpy (&server.ip6, mp->dhcp_server, sizeof (server.ip6));
81
82       rv = dhcp6_proxy_set_server (&server,
83                                    &src,
84                                    (u32) ntohl (mp->rx_vrf_id),
85                                    (u32) ntohl (mp->server_vrf_id),
86                                    (int) (mp->is_add == 0));
87     }
88   else
89     {
90       ip46_address_reset (&src);
91       ip46_address_reset (&server);
92
93       clib_memcpy (&src.ip4, mp->dhcp_src_address, sizeof (src.ip4));
94       clib_memcpy (&server.ip4, mp->dhcp_server, sizeof (server.ip4));
95
96       rv = dhcp4_proxy_set_server (&server,
97                                    &src,
98                                    (u32) ntohl (mp->rx_vrf_id),
99                                    (u32) ntohl (mp->server_vrf_id),
100                                    (int) (mp->is_add == 0));
101     }
102
103
104   REPLY_MACRO (VL_API_DHCP_PROXY_CONFIG_REPLY);
105 }
106
107 static void
108 vl_api_dhcp_proxy_dump_t_handler (vl_api_dhcp_proxy_dump_t * mp)
109 {
110   unix_shared_memory_queue_t *q;
111
112   q = vl_api_client_index_to_input_queue (mp->client_index);
113   if (q == 0)
114     return;
115
116   dhcp_proxy_dump ((mp->is_ip6 == 0 ?
117                     FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4), q, mp->context);
118 }
119
120 void
121 dhcp_send_details (fib_protocol_t proto,
122                    void *opaque,
123                    u32 context,
124                    const ip46_address_t * server,
125                    const ip46_address_t * src,
126                    u32 server_fib_id,
127                    u32 rx_fib_id, u32 vss_fib_id, u32 vss_oui)
128 {
129   vl_api_dhcp_proxy_details_t *mp;
130   unix_shared_memory_queue_t *q = opaque;
131
132   mp = vl_msg_api_alloc (sizeof (*mp));
133   if (!mp)
134     return;
135   memset (mp, 0, sizeof (*mp));
136   mp->_vl_msg_id = ntohs (VL_API_DHCP_PROXY_DETAILS);
137   mp->context = context;
138
139   mp->rx_vrf_id = htonl (rx_fib_id);
140   mp->server_vrf_id = htonl (server_fib_id);
141   mp->vss_oui = htonl (vss_oui);
142   mp->vss_fib_id = htonl (vss_fib_id);
143
144   mp->is_ipv6 = (proto == FIB_PROTOCOL_IP6);
145
146   if (mp->is_ipv6)
147     {
148       memcpy (mp->dhcp_server, server, 16);
149       memcpy (mp->dhcp_src_address, src, 16);
150     }
151   else
152     {
153       /* put the address in the first bytes */
154       memcpy (mp->dhcp_server, &server->ip4, 4);
155       memcpy (mp->dhcp_src_address, &src->ip4, 4);
156     }
157   vl_msg_api_send_shmem (q, (u8 *) & mp);
158 }
159
160 void
161 dhcp_compl_event_callback (u32 client_index, u32 pid, u8 * hostname,
162                            u8 is_ipv6, u8 * host_address, u8 * router_address,
163                            u8 * host_mac)
164 {
165   unix_shared_memory_queue_t *q;
166   vl_api_dhcp_compl_event_t *mp;
167
168   q = vl_api_client_index_to_input_queue (client_index);
169   if (!q)
170     return;
171
172   mp = vl_msg_api_alloc (sizeof (*mp));
173   mp->client_index = client_index;
174   mp->pid = pid;
175   mp->is_ipv6 = is_ipv6;
176   clib_memcpy (&mp->hostname, hostname, vec_len (hostname));
177   mp->hostname[vec_len (hostname) + 1] = '\n';
178   clib_memcpy (&mp->host_address[0], host_address, 16);
179   clib_memcpy (&mp->router_address[0], router_address, 16);
180
181   if (NULL != host_mac)
182     clib_memcpy (&mp->host_mac[0], host_mac, 6);
183
184   mp->_vl_msg_id = ntohs (VL_API_DHCP_COMPL_EVENT);
185
186   vl_msg_api_send_shmem (q, (u8 *) & mp);
187 }
188
189 static void vl_api_dhcp_client_config_t_handler
190   (vl_api_dhcp_client_config_t * mp)
191 {
192   vlib_main_t *vm = vlib_get_main ();
193   vl_api_dhcp_client_config_reply_t *rmp;
194   int rv = 0;
195
196   VALIDATE_SW_IF_INDEX (mp);
197
198   rv = dhcp_client_config (vm, ntohl (mp->sw_if_index),
199                            mp->hostname, mp->is_add, mp->client_index,
200                            mp->want_dhcp_event ? dhcp_compl_event_callback :
201                            NULL, mp->pid);
202
203   BAD_SW_IF_INDEX_LABEL;
204
205   REPLY_MACRO (VL_API_DHCP_CLIENT_CONFIG_REPLY);
206 }
207
208 /*
209  * dhcp_api_hookup
210  * Add vpe's API message handlers to the table.
211  * vlib has alread mapped shared memory and
212  * added the client registration handlers.
213  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
214  */
215 #define vl_msg_name_crc_list
216 #include <vnet/vnet_all_api_h.h>
217 #undef vl_msg_name_crc_list
218
219 static void
220 setup_message_id_table (api_main_t * am)
221 {
222 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
223   foreach_vl_msg_name_crc_dhcp;
224 #undef _
225 }
226
227 static clib_error_t *
228 dhcp_api_hookup (vlib_main_t * vm)
229 {
230   api_main_t *am = &api_main;
231
232 #define _(N,n)                                                  \
233     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
234                            vl_api_##n##_t_handler,              \
235                            vl_noop_handler,                     \
236                            vl_api_##n##_t_endian,               \
237                            vl_api_##n##_t_print,                \
238                            sizeof(vl_api_##n##_t), 1);
239   foreach_vpe_api_msg;
240 #undef _
241
242   /*
243    * Set up the (msg_name, crc, message-id) table
244    */
245   setup_message_id_table (am);
246
247   return 0;
248 }
249
250 VLIB_API_INIT_FUNCTION (dhcp_api_hookup);
251
252 /*
253  * fd.io coding-style-patch-verification: ON
254  *
255  * Local Variables:
256  * eval: (c-set-style "gnu")
257  * End:
258  */