blob: e70124d3a5717b6ee6159b1d10f8dbd3265d414e [file] [log] [blame]
Dave Barach371e4e12016-07-08 09:38:52 -04001/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002 *------------------------------------------------------------------
3 * socksvr_vlib.c
4 *
5 * Copyright (c) 2009 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
Dave Barach371e4e12016-07-08 09:38:52 -040020#include <sys/types.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070021#include <sys/socket.h>
22#include <netinet/in.h>
23#include <sys/ioctl.h>
24#include <vppinfra/byte_order.h>
25
26#include <fcntl.h>
27#include <sys/stat.h>
28
29#include <vlibsocket/api.h>
30#include <vlibmemory/api.h>
31
Dave Barach371e4e12016-07-08 09:38:52 -040032#include <vlibsocket/vl_socket_msg_enum.h> /* enumerate all vlib messages */
Ed Warnickecb9cada2015-12-08 15:45:58 -070033
Dave Barach371e4e12016-07-08 09:38:52 -040034#define vl_typedefs /* define message structures */
35#include <vlibsocket/vl_socket_api_h.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070036#undef vl_typedefs
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
Dave Barach371e4e12016-07-08 09:38:52 -040041#include <vlibsocket/vl_socket_api_h.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070042#undef vl_printfun
43
44/* instantiate all the endian swap functions we know about */
45#define vl_endianfun
Dave Barach371e4e12016-07-08 09:38:52 -040046#include <vlibsocket/vl_socket_api_h.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070047#undef vl_endianfun
48
49socket_main_t socket_main;
50
Dave Barach371e4e12016-07-08 09:38:52 -040051void
52dump_socket_clients (vlib_main_t * vm, api_main_t * am)
Ed Warnickecb9cada2015-12-08 15:45:58 -070053{
Dave Barach371e4e12016-07-08 09:38:52 -040054 vl_api_registration_t *reg;
55 socket_main_t *sm = &socket_main;
56 unix_main_t *um = &unix_main;
57 unix_file_t *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
Dave Barach371e4e12016-07-08 09:38:52 -040059 /*
60 * Must have at least one active client, not counting the
61 * REGISTRATION_TYPE_SOCKET_LISTEN bind/accept socket
62 */
63 if (pool_elts (sm->registration_pool) < 2)
64 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -070065
Dave Barach371e4e12016-07-08 09:38:52 -040066 vlib_cli_output (vm, "TCP socket clients");
67 vlib_cli_output (vm, "%16s %8s", "Name", "Fildesc");
68 /* *INDENT-OFF* */
69 pool_foreach (reg, sm->registration_pool,
Ed Warnickecb9cada2015-12-08 15:45:58 -070070 ({
71 if (reg->registration_type == REGISTRATION_TYPE_SOCKET_SERVER) {
72 f = pool_elt_at_index (um->file_pool, reg->unix_file_index);
73 vlib_cli_output (vm, "%16s %8d",
74 reg->name, f->file_descriptor);
75 }
76 }));
Dave Barach371e4e12016-07-08 09:38:52 -040077/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070078}
79
Dave Barach371e4e12016-07-08 09:38:52 -040080void
81vl_socket_api_send (vl_api_registration_t * rp, u8 * elem)
Ed Warnickecb9cada2015-12-08 15:45:58 -070082{
Dave Barach371e4e12016-07-08 09:38:52 -040083 u32 nbytes = 4; /* for the length... */
84 u16 msg_id = ntohs (*(u16 *) elem);
85 u32 msg_length;
86 u32 tmp;
87 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
Dave Barach371e4e12016-07-08 09:38:52 -040089 ASSERT (rp->registration_type > REGISTRATION_TYPE_SHMEM);
Ed Warnickecb9cada2015-12-08 15:45:58 -070090
Dave Barach371e4e12016-07-08 09:38:52 -040091 if (msg_id >= vec_len (am->api_trace_cfg))
92 {
93 clib_warning ("id out of range: %d", msg_id);
94 vl_msg_api_free ((void *) elem);
95 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -070096 }
97
Dave Barach371e4e12016-07-08 09:38:52 -040098 msg_length = am->api_trace_cfg[msg_id].size;
99 nbytes += msg_length;
100 tmp = clib_host_to_net_u32 (nbytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
Dave Barach371e4e12016-07-08 09:38:52 -0400102 vl_socket_add_pending_output (rp->unix_file_index
103 + unix_main.file_pool,
104 rp->vl_api_registration_pool_index
105 + socket_main.registration_pool,
106 (u8 *) & tmp, sizeof (tmp));
107 vl_socket_add_pending_output (rp->unix_file_index
108 + unix_main.file_pool,
109 rp->vl_api_registration_pool_index
110 + socket_main.registration_pool,
111 elem, msg_length);
112 vl_msg_api_free ((void *) elem);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113}
114
Dave Barach371e4e12016-07-08 09:38:52 -0400115void
116vl_socket_api_send_with_data (vl_api_registration_t * rp,
117 u8 * elem, u8 * data_vector)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118{
Dave Barach371e4e12016-07-08 09:38:52 -0400119 u32 nbytes = 4; /* for the length... */
120 u16 msg_id = ntohs (*(u16 *) elem);
121 u32 msg_length;
122 u32 tmp;
123 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Dave Barach371e4e12016-07-08 09:38:52 -0400125 ASSERT (rp->registration_type > REGISTRATION_TYPE_SHMEM);
126
127 if (msg_id >= vec_len (am->api_trace_cfg))
128 {
129 clib_warning ("id out of range: %d", msg_id);
130 vec_free (data_vector);
131 vl_msg_api_free ((void *) elem);
132 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133 }
134
Dave Barach371e4e12016-07-08 09:38:52 -0400135 msg_length = am->api_trace_cfg[msg_id].size;
136 nbytes += msg_length;
137 nbytes += vec_len (data_vector);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138
Dave Barach371e4e12016-07-08 09:38:52 -0400139 /* Length in network byte order */
140 tmp = clib_host_to_net_u32 (nbytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
Dave Barach371e4e12016-07-08 09:38:52 -0400142 vl_socket_add_pending_output (rp->unix_file_index
143 + unix_main.file_pool,
144 rp->vl_api_registration_pool_index
145 + socket_main.registration_pool,
146 (u8 *) & tmp, sizeof (tmp));
147 vl_socket_add_pending_output (rp->unix_file_index
148 + unix_main.file_pool,
149 rp->vl_api_registration_pool_index
150 + socket_main.registration_pool,
151 elem, msg_length);
152 vl_socket_add_pending_output (rp->unix_file_index
153 + unix_main.file_pool,
154 rp->vl_api_registration_pool_index
155 + socket_main.registration_pool,
156 data_vector, vec_len (data_vector));
157 vl_msg_api_free ((void *) elem);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158}
159
160static inline void
Dave Barach371e4e12016-07-08 09:38:52 -0400161vl_socket_api_send_with_length_internal (vl_api_registration_t * rp,
162 u8 * elem, u32 msg_length, int free)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163{
Dave Barach371e4e12016-07-08 09:38:52 -0400164 u32 nbytes = 4; /* for the length... */
165 u16 msg_id = ntohs (*(u16 *) elem);
166 u32 tmp;
167 api_main_t *am = &api_main;
168
169 ASSERT (rp->registration_type > REGISTRATION_TYPE_SHMEM);
170
171 if (msg_id >= vec_len (am->api_trace_cfg))
172 {
173 clib_warning ("id out of range: %d", msg_id);
174 if (free)
175 vl_msg_api_free ((void *) elem);
176 return;
177 }
178
179 nbytes += msg_length;
180
181 /* Length in network byte order */
182 tmp = clib_host_to_net_u32 (nbytes);
183
184 vl_socket_add_pending_output (rp->unix_file_index
185 + unix_main.file_pool,
186 rp->vl_api_registration_pool_index
187 + socket_main.registration_pool,
188 (u8 *) & tmp, sizeof (tmp));
189 vl_socket_add_pending_output (rp->unix_file_index
190 + unix_main.file_pool,
191 rp->vl_api_registration_pool_index
192 + socket_main.registration_pool,
193 elem, msg_length);
194 if (free)
195 vl_msg_api_free ((void *) elem);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196}
197
Dave Barach371e4e12016-07-08 09:38:52 -0400198void
199vl_socket_api_send_with_length (vl_api_registration_t * rp,
200 u8 * elem, u32 msg_length)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201{
Dave Barach371e4e12016-07-08 09:38:52 -0400202 vl_socket_api_send_with_length_internal (rp, elem, msg_length,
203 1 /* free */ );
204}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700205
Dave Barach371e4e12016-07-08 09:38:52 -0400206void
207vl_socket_api_send_with_length_no_free (vl_api_registration_t * rp,
208 u8 * elem, u32 msg_length)
209{
210 vl_socket_api_send_with_length_internal (rp, elem, msg_length,
211 0 /* free */ );
212}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213
Dave Barach371e4e12016-07-08 09:38:52 -0400214void
215vl_free_socket_registration_index (u32 pool_index)
216{
217 vl_api_registration_t *rp;
218 if (pool_is_free_index (socket_main.registration_pool, pool_index))
219 {
220 clib_warning ("main pool index %d already free", pool_index);
221 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222 }
Dave Barach371e4e12016-07-08 09:38:52 -0400223 rp = pool_elt_at_index (socket_main.registration_pool, pool_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700224
Dave Barach371e4e12016-07-08 09:38:52 -0400225 ASSERT (rp->registration_type != REGISTRATION_TYPE_FREE);
226 vec_free (rp->name);
227 vec_free (rp->unprocessed_input);
228 vec_free (rp->output_vector);
229 rp->registration_type = REGISTRATION_TYPE_FREE;
230 pool_put (socket_main.registration_pool, rp);
231}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232
Dave Barach371e4e12016-07-08 09:38:52 -0400233static inline void
234socket_process_msg (unix_file_t * uf, vl_api_registration_t * rp,
235 i8 * input_v)
236{
237 u8 *the_msg = (u8 *) (input_v + sizeof (u32));
238 socket_main.current_uf = uf;
239 socket_main.current_rp = rp;
240 vl_msg_api_socket_handler (the_msg);
241 socket_main.current_uf = 0;
242 socket_main.current_rp = 0;
243}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244
Dave Barach371e4e12016-07-08 09:38:52 -0400245clib_error_t *
246vl_socket_read_ready (unix_file_t * uf)
247{
248 unix_main_t *um = &unix_main;
249 vl_api_registration_t *rp;
250 int n;
251 i8 *msg_buffer = 0;
252 u32 msg_len;
253 u32 save_input_buffer_length = vec_len (socket_main.input_buffer);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254
Dave Barach371e4e12016-07-08 09:38:52 -0400255 rp = pool_elt_at_index (socket_main.registration_pool, uf->private_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256
Dave Barach371e4e12016-07-08 09:38:52 -0400257 n = read (uf->file_descriptor, socket_main.input_buffer,
258 vec_len (socket_main.input_buffer));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259
Dave Barach371e4e12016-07-08 09:38:52 -0400260 if (n <= 0 && errno != EAGAIN)
261 {
262 unix_file_del (um, uf);
263
264 if (!pool_is_free (socket_main.registration_pool, rp))
265 {
266 u32 index = rp - socket_main.registration_pool;
267 vl_free_socket_registration_index (index);
268 }
269 else
270 {
271 clib_warning ("client index %d already free?",
272 rp->vl_api_registration_pool_index);
273 }
274 return 0;
275 }
276
277 _vec_len (socket_main.input_buffer) = n;
278
279 /*
280 * Look for bugs here. This code is tricky because
281 * data read from a stream socket does honor message
282 * boundaries. In the case of a long message (>4K bytes)
283 * we have to do (at least) 2 reads, etc.
284 */
285 do
286 {
287 if (vec_len (rp->unprocessed_input))
288 {
289 vec_append (rp->unprocessed_input, socket_main.input_buffer);
290 msg_buffer = rp->unprocessed_input;
291 msg_len = rp->unprocessed_msg_length;
292 }
293 else
294 {
295 msg_buffer = socket_main.input_buffer;
296 msg_len = 0;
297 }
298
299 if (msg_len == 0)
300 {
301 /* Length may be split across two reads */
302 if (vec_len (msg_buffer) < sizeof (u32))
303 goto save_and_split;
304
305 /* total length, including msg_len itself, in network byte order */
306 msg_len = clib_net_to_host_u32 (*((u32 *) msg_buffer));
307 }
308
309 /* Happens if the client sent msg_len == 0 */
310 if (msg_len == 0)
311 {
312 clib_warning ("msg_len == 0");
313 goto turf_it;
314 }
315
316 /* We don't have the entire message yet. */
317 if (msg_len > vec_len (msg_buffer))
318 {
319 save_and_split:
320 /*
321 * if we were using the shared input buffer,
322 * save the fragment.
323 */
324 if (msg_buffer == socket_main.input_buffer)
325 {
326 ASSERT (vec_len (rp->unprocessed_input) == 0);
327 vec_validate (rp->unprocessed_input, vec_len (msg_buffer) - 1);
328 clib_memcpy (rp->unprocessed_input, msg_buffer,
329 vec_len (msg_buffer));
330 _vec_len (rp->unprocessed_input) = vec_len (msg_buffer);
331 }
332 _vec_len (socket_main.input_buffer) = save_input_buffer_length;
333 rp->unprocessed_msg_length = msg_len;
334 return 0;
335 }
336
337 socket_process_msg (uf, rp, msg_buffer);
338 if (n > msg_len)
339 vec_delete (msg_buffer, msg_len, 0);
340 else
341 _vec_len (msg_buffer) = 0;
342 n -= msg_len;
343 msg_len = 0;
344 rp->unprocessed_msg_length = 0;
345 }
346 while (n > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347
348turf_it:
Dave Barach371e4e12016-07-08 09:38:52 -0400349 _vec_len (socket_main.input_buffer) = save_input_buffer_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350
Dave Barach371e4e12016-07-08 09:38:52 -0400351 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352}
353
354void
355vl_socket_add_pending_output (unix_file_t * uf,
Dave Barach371e4e12016-07-08 09:38:52 -0400356 vl_api_registration_t * rp,
357 u8 * buffer, uword buffer_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358{
Dave Barach371e4e12016-07-08 09:38:52 -0400359 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360
Dave Barach371e4e12016-07-08 09:38:52 -0400361 vec_add (rp->output_vector, buffer, buffer_bytes);
362 if (vec_len (rp->output_vector) > 0)
363 {
364 int skip_update = 0 != (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE);
365 uf->flags |= UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
366 if (!skip_update)
367 um->file_update (uf, UNIX_FILE_UPDATE_MODIFY);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368 }
369}
370
371static void
372socket_del_pending_output (unix_file_t * uf,
Dave Barach371e4e12016-07-08 09:38:52 -0400373 vl_api_registration_t * rp, uword n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700374{
Dave Barach371e4e12016-07-08 09:38:52 -0400375 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700376
Dave Barach371e4e12016-07-08 09:38:52 -0400377 vec_delete (rp->output_vector, n_bytes, 0);
378 if (vec_len (rp->output_vector) <= 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379 {
Dave Barach371e4e12016-07-08 09:38:52 -0400380 int skip_update = 0 == (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE);
381 uf->flags &= ~UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
382 if (!skip_update)
383 um->file_update (uf, UNIX_FILE_UPDATE_MODIFY);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700384 }
385}
386
Dave Barach371e4e12016-07-08 09:38:52 -0400387clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -0700388vl_socket_write_ready (unix_file_t * uf)
389{
Dave Barach371e4e12016-07-08 09:38:52 -0400390 unix_main_t *um = &unix_main;
391 vl_api_registration_t *rp;
392 int n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700393
Dave Barach371e4e12016-07-08 09:38:52 -0400394 rp = pool_elt_at_index (socket_main.registration_pool, uf->private_data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395
Dave Barach371e4e12016-07-08 09:38:52 -0400396 /* Flush output vector. */
397 n = write (uf->file_descriptor,
398 rp->output_vector, vec_len (rp->output_vector));
399
400 if (n < 0)
401 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700402#if DEBUG > 2
Dave Barach371e4e12016-07-08 09:38:52 -0400403 clib_warning ("write error, close the file...\n");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700404#endif
Dave Barach371e4e12016-07-08 09:38:52 -0400405 unix_file_del (um, uf);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700406
Dave Barach371e4e12016-07-08 09:38:52 -0400407 vl_free_socket_registration_index (rp - socket_main.registration_pool);
408 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700409 }
410
Dave Barach371e4e12016-07-08 09:38:52 -0400411 else if (n > 0)
412 socket_del_pending_output (uf, rp, n);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413
Dave Barach371e4e12016-07-08 09:38:52 -0400414 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415}
416
Dave Barach371e4e12016-07-08 09:38:52 -0400417clib_error_t *
418vl_socket_error_ready (unix_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700419{
Dave Barach371e4e12016-07-08 09:38:52 -0400420 vl_api_registration_t *rp;
421 unix_main_t *um = &unix_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700422
Dave Barach371e4e12016-07-08 09:38:52 -0400423 rp = pool_elt_at_index (socket_main.registration_pool, uf->private_data);
424 unix_file_del (um, uf);
425 vl_free_socket_registration_index (rp - socket_main.registration_pool);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426
Dave Barach371e4e12016-07-08 09:38:52 -0400427 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428}
429
Dave Barach371e4e12016-07-08 09:38:52 -0400430void
431socksvr_file_add (unix_main_t * um, int fd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700432{
Dave Barach371e4e12016-07-08 09:38:52 -0400433 vl_api_registration_t *rp;
434 unix_file_t template = { 0 };
435
436 pool_get (socket_main.registration_pool, rp);
437 memset (rp, 0, sizeof (*rp));
438
439 template.read_function = vl_socket_read_ready;
440 template.write_function = vl_socket_write_ready;
441 template.error_function = vl_socket_error_ready;
442 template.file_descriptor = fd;
443 template.private_data = rp - socket_main.registration_pool;
444
445 rp->registration_type = REGISTRATION_TYPE_SOCKET_SERVER;
446 rp->vl_api_registration_pool_index = rp - socket_main.registration_pool;
447 rp->unix_file_index = unix_file_add (um, &template);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448}
449
Dave Barach371e4e12016-07-08 09:38:52 -0400450static clib_error_t *
451socksvr_accept_ready (unix_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452{
Dave Barach371e4e12016-07-08 09:38:52 -0400453 unix_main_t *um = &unix_main;
454 struct sockaddr_in client_addr;
455 int client_fd;
456 int client_len;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457
Dave Barach371e4e12016-07-08 09:38:52 -0400458 client_len = sizeof (client_addr);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459
Dave Barach371e4e12016-07-08 09:38:52 -0400460 /*
461 * Supposedly acquires the non-blocking attrib from the
462 * server socket.
463 */
464 client_fd = accept (uf->file_descriptor,
465 (struct sockaddr *) &client_addr,
466 (socklen_t *) & client_len);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467
Dave Barach371e4e12016-07-08 09:38:52 -0400468 if (client_fd < 0)
469 return clib_error_return_unix (0, "socksvr_accept_ready: accept");
470
471 socksvr_file_add (um, client_fd);
472 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700473}
474
Dave Barach371e4e12016-07-08 09:38:52 -0400475static clib_error_t *
476socksvr_bogus_write (unix_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700477{
Dave Barach371e4e12016-07-08 09:38:52 -0400478 clib_warning ("why am I here?");
479 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700480}
481
482/*
483 * vl_api_sockclnt_create_t_handler
484 */
Dave Barach371e4e12016-07-08 09:38:52 -0400485void
486vl_api_sockclnt_create_t_handler (vl_api_sockclnt_create_t * mp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487{
Dave Barach371e4e12016-07-08 09:38:52 -0400488 vl_api_registration_t *regp;
489 vl_api_sockclnt_create_reply_t *rp;
490 int rv = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
Dave Barach371e4e12016-07-08 09:38:52 -0400492 regp = socket_main.current_rp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700493
Dave Barach371e4e12016-07-08 09:38:52 -0400494 ASSERT (regp->registration_type == REGISTRATION_TYPE_SOCKET_SERVER);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495
Dave Barach371e4e12016-07-08 09:38:52 -0400496 regp->name = format (0, "%s%c", mp->name, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497
Dave Barach371e4e12016-07-08 09:38:52 -0400498 rp = vl_msg_api_alloc (sizeof (*rp));
499 rp->_vl_msg_id = htons (VL_API_SOCKCLNT_CREATE_REPLY);
500 rp->handle = (uword) regp;
501 rp->index = (uword) regp->vl_api_registration_pool_index;
502 rp->context = mp->context;
503 rp->response = htonl (rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700504
Dave Barach371e4e12016-07-08 09:38:52 -0400505 vl_msg_api_send (regp, (u8 *) rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700506}
507
508/*
509 * vl_api_sockclnt_delete_t_handler
510 */
Dave Barach371e4e12016-07-08 09:38:52 -0400511void
512vl_api_sockclnt_delete_t_handler (vl_api_sockclnt_delete_t * mp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513{
Dave Barach371e4e12016-07-08 09:38:52 -0400514 vl_api_registration_t *regp;
515 vl_api_sockclnt_delete_reply_t *rp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700516
Dave Barach371e4e12016-07-08 09:38:52 -0400517 if (!pool_is_free_index (socket_main.registration_pool, mp->index))
518 {
519 regp = pool_elt_at_index (socket_main.registration_pool, mp->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520
Dave Barach371e4e12016-07-08 09:38:52 -0400521 rp = vl_msg_api_alloc (sizeof (*rp));
522 rp->_vl_msg_id = htons (VL_API_SOCKCLNT_DELETE_REPLY);
523 rp->handle = mp->handle;
524 rp->response = htonl (1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525
Dave Barach371e4e12016-07-08 09:38:52 -0400526 vl_msg_api_send (regp, (u8 *) rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527
Dave Barach371e4e12016-07-08 09:38:52 -0400528 unix_file_del (&unix_main, unix_main.file_pool + regp->unix_file_index);
529
530 vl_free_socket_registration_index (mp->index);
531 }
532 else
533 {
534 clib_warning ("unknown client ID %d", mp->index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700535 }
536}
537
538#define foreach_vlib_api_msg \
539_(SOCKCLNT_CREATE, sockclnt_create) \
Dave Barach371e4e12016-07-08 09:38:52 -0400540_(SOCKCLNT_DELETE, sockclnt_delete)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541
Dave Barach371e4e12016-07-08 09:38:52 -0400542static clib_error_t *
543socksvr_api_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700544{
Dave Barach371e4e12016-07-08 09:38:52 -0400545 unix_main_t *um = &unix_main;
546 unix_file_t template = { 0 };
547 int sockfd;
548 int one = 1;
549 int rv;
550 struct sockaddr_in serv_addr;
551 vl_api_registration_t *rp;
552 u16 portno;
553 u32 bind_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700554
555#define _(N,n) \
556 vl_msg_api_set_handlers(VL_API_##N, #n, \
557 vl_api_##n##_t_handler, \
558 vl_noop_handler, \
559 vl_api_##n##_t_endian, \
560 vl_api_##n##_t_print, \
Dave Barach371e4e12016-07-08 09:38:52 -0400561 sizeof(vl_api_##n##_t), 1);
562 foreach_vlib_api_msg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563#undef _
564
Dave Barach371e4e12016-07-08 09:38:52 -0400565 vec_resize (socket_main.input_buffer, 4096);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566
Dave Barach371e4e12016-07-08 09:38:52 -0400567 /* Set up non-blocking server socket on CLIENT_API_SERVER_PORT */
568 sockfd = socket (AF_INET, SOCK_STREAM, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700569
Dave Barach371e4e12016-07-08 09:38:52 -0400570 if (sockfd < 0)
571 {
572 return clib_error_return_unix (0, "socket");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700573 }
574
Dave Barach371e4e12016-07-08 09:38:52 -0400575 rv = ioctl (sockfd, FIONBIO, &one);
576 if (rv < 0)
577 {
578 return clib_error_return_unix (0, "FIONBIO");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579 }
580
Dave Barach371e4e12016-07-08 09:38:52 -0400581 rv = setsockopt (sockfd, SOL_SOCKET, SO_REUSEADDR, &one, sizeof (one));
582 if (rv < 0)
583 {
584 return clib_error_return_unix (0, "SO_REUSEADDR");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585 }
586
Dave Barach371e4e12016-07-08 09:38:52 -0400587 bzero ((char *) &serv_addr, sizeof (serv_addr));
588 serv_addr.sin_family = AF_INET;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589
Dave Barach371e4e12016-07-08 09:38:52 -0400590 if (socket_main.bind_address)
591 bind_address = socket_main.bind_address;
592 else
593 bind_address = INADDR_LOOPBACK;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594
Dave Barach371e4e12016-07-08 09:38:52 -0400595 if (socket_main.portno)
596 portno = socket_main.portno;
597 else
598 portno = SOCKSVR_DEFAULT_PORT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599
Dave Barach371e4e12016-07-08 09:38:52 -0400600 serv_addr.sin_port = clib_host_to_net_u16 (portno);
601 serv_addr.sin_addr.s_addr = clib_host_to_net_u32 (bind_address);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602
Dave Barach371e4e12016-07-08 09:38:52 -0400603 if (bind (sockfd, (struct sockaddr *) &serv_addr, sizeof (serv_addr)) < 0)
604 {
605 return clib_error_return_unix (0, "bind");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606 }
607
Dave Barach371e4e12016-07-08 09:38:52 -0400608 rv = listen (sockfd, 5);
609 if (rv < 0)
610 {
611 return clib_error_return_unix (0, "listen");
612 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613
Dave Barach371e4e12016-07-08 09:38:52 -0400614 pool_get (socket_main.registration_pool, rp);
615 memset (rp, 0, sizeof (*rp));
616
617 rp->registration_type = REGISTRATION_TYPE_SOCKET_LISTEN;
618
619 template.read_function = socksvr_accept_ready;
620 template.write_function = socksvr_bogus_write;
621 template.file_descriptor = sockfd;
622 template.private_data = rp - socket_main.registration_pool;
623
624 rp->unix_file_index = unix_file_add (um, &template);
625 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626}
627
628static clib_error_t *
629socket_exit (vlib_main_t * vm)
630{
Dave Barach371e4e12016-07-08 09:38:52 -0400631 unix_main_t *um = &unix_main;
632 vl_api_registration_t *rp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700633
Dave Barach371e4e12016-07-08 09:38:52 -0400634 /* Defensive driving in case something wipes out early */
635 if (socket_main.registration_pool)
636 {
637 u32 index;
638 /* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639 pool_foreach (rp, socket_main.registration_pool, ({
640 unix_file_del (um, um->file_pool + rp->unix_file_index);
641 index = rp->vl_api_registration_pool_index;
642 vl_free_socket_registration_index (index);
643 }));
Dave Barach371e4e12016-07-08 09:38:52 -0400644/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700645 }
646
Dave Barach371e4e12016-07-08 09:38:52 -0400647 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700648}
649
650VLIB_MAIN_LOOP_EXIT_FUNCTION (socket_exit);
651
652static clib_error_t *
653socksvr_config (vlib_main_t * vm, unformat_input_t * input)
654{
Dave Barach371e4e12016-07-08 09:38:52 -0400655 int portno;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700656
Dave Barach371e4e12016-07-08 09:38:52 -0400657 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700658 {
Dave Barach371e4e12016-07-08 09:38:52 -0400659 if (unformat (input, "port %d", &portno))
660 {
661 socket_main.portno = portno;
662 }
663 else
664 {
665 return clib_error_return (0, "unknown input '%U'",
666 format_unformat_error, input);
667 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668 }
Dave Barach371e4e12016-07-08 09:38:52 -0400669 return socksvr_api_init (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700670}
671
672VLIB_CONFIG_FUNCTION (socksvr_config, "socksvr");
673
674/* argument in host byte order */
Dave Barach371e4e12016-07-08 09:38:52 -0400675void
676socksvr_set_port (u16 port)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700677{
Dave Barach371e4e12016-07-08 09:38:52 -0400678 socket_main.portno = port;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700679}
680
681/* argument in host byte order */
Dave Barach371e4e12016-07-08 09:38:52 -0400682void
683socksvr_set_bind_address (u32 bind_address)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700684{
Dave Barach371e4e12016-07-08 09:38:52 -0400685 socket_main.bind_address = bind_address;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686}
687
688clib_error_t *
689vlibsocket_init (vlib_main_t * vm)
690{
Dave Barach371e4e12016-07-08 09:38:52 -0400691 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700692}
693
694VLIB_INIT_FUNCTION (vlibsocket_init);
Dave Barach371e4e12016-07-08 09:38:52 -0400695
696/*
697 * fd.io coding-style-patch-verification: ON
698 *
699 * Local Variables:
700 * eval: (c-set-style "gnu")
701 * End:
702 */