blob: 9e49771e7a4ab8aec3cbcc52d594297942ef3dc2 [file] [log] [blame]
Jakub Grajciar7c5c40d2017-08-30 10:13:25 +02001/*
2 *------------------------------------------------------------------
3 * Copyright (c) 2017 Cisco and/or its affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *------------------------------------------------------------------
16 */
17
18#include <stdlib.h>
19#include <stdint.h>
20#include <net/if.h>
21#include <sys/types.h>
22#include <fcntl.h>
23#include <sys/ioctl.h>
24#include <sys/socket.h>
25#include <sys/un.h>
26#include <sys/uio.h>
27#include <sys/mman.h>
28#include <sys/prctl.h>
29#include <inttypes.h>
30#include <string.h>
31#include <stdio.h>
32#include <netdb.h>
33#include <linux/ip.h>
34#include <linux/icmp.h>
35#include <arpa/inet.h>
36#include <stdlib.h>
37#include <netinet/if_ether.h>
38#include <net/if_arp.h>
39#include <asm/byteorder.h>
40#include <byteswap.h>
41#include <string.h>
42#include <sys/epoll.h>
43#include <errno.h>
44#include <unistd.h>
45#include <signal.h>
46
47#include <libmemif.h>
48#include <icmp_proto.h>
49
50#define APP_NAME "ICMP_Responder"
51#define IF_NAME "memif_connection"
52
53
54#ifdef ICMP_DBG
55#define DBG(...) do { \
56 printf (APP_NAME":%s:%d: ", __func__, __LINE__); \
57 printf (__VA_ARGS__); \
58 printf ("\n"); \
59 } while (0)
60#else
61#define DBG(...)
62#endif
63
64#define INFO(...) do { \
65 printf ("INFO: "__VA_ARGS__); \
66 printf ("\n"); \
67 } while (0)
68
69/* maximum tx/rx memif buffers */
70#define MAX_MEMIF_BUFS 256
71
72typedef struct
73{
74 uint16_t index;
75 /* memif conenction handle */
76 memif_conn_handle_t conn;
77 /* transmit queue id */
78 uint16_t tx_qid;
79 /* tx buffers */
80 memif_buffer_t *tx_bufs;
81 /* allocated tx buffers counter */
82 /* number of tx buffers pointing to shared memory */
83 uint16_t tx_buf_num;
84 /* rx buffers */
85 memif_buffer_t *rx_bufs;
86 /* allcoated rx buffers counter */
87 /* number of rx buffers pointing to shared memory */
88 uint16_t rx_buf_num;
89 /* interface ip address */
90 uint8_t ip_addr[4];
91} memif_connection_t;
92
93memif_connection_t memif_connection;
94int epfd;
95
96static void
97print_memif_details ()
98{
99 memif_connection_t *c = &memif_connection;
100 printf ("MEMIF DETAILS\n");
101 printf ("==============================\n");
102
103
104 memif_details_t md;
105 memset (&md, 0, sizeof (md));
106 ssize_t buflen = 2048;
107 char *buf = malloc (buflen);
108 memset (buf, 0, buflen);
109 int err, e;
110
111 err = memif_get_details (c->conn, &md, buf, buflen);
112 if (err != MEMIF_ERR_SUCCESS)
113 {
114 INFO ("%s", memif_strerror (err));
115 if (err == MEMIF_ERR_NOCONN)
116 {
117 free (buf);
118 return;
119 }
120 }
121
122 printf ("\tinterface name: %s\n", (char *) md.if_name);
123 printf ("\tapp name: %s\n", (char *) md.inst_name);
124 printf ("\tremote interface name: %s\n", (char *) md.remote_if_name);
125 printf ("\tremote app name: %s\n", (char *) md.remote_inst_name);
126 printf ("\tid: %u\n", md.id);
127 printf ("\tsecret: %s\n", (char *) md.secret);
128 printf ("\trole: ");
129 if (md.role)
130 printf ("slave\n");
131 else
132 printf ("master\n");
133 printf ("\tmode: ");
134 switch (md.mode)
135 {
136 case 0:
137 printf ("ethernet\n");
138 break;
139 case 1:
140 printf ("ip\n");
141 break;
142 case 2:
143 printf ("punt/inject\n");
144 break;
145 default:
146 printf ("unknown\n");
147 break;
148 }
149 printf ("\tsocket filename: %s\n", (char *) md.socket_filename);
150 printf ("\tsocket filename: %s\n", (char *) md.socket_filename);
151 printf ("\trx queues:\n");
152 for (e = 0; e < md.rx_queues_num; e++)
153 {
154 printf ("\t\tqueue id: %u\n", md.rx_queues[e].qid);
155 printf ("\t\tring size: %u\n", md.rx_queues[e].ring_size);
156 printf ("\t\tbuffer size: %u\n", md.rx_queues[e].buffer_size);
157 }
158 printf ("\ttx queues:\n");
159 for (e = 0; e < md.tx_queues_num; e++)
160 {
161 printf ("\t\tqueue id: %u\n", md.tx_queues[e].qid);
162 printf ("\t\tring size: %u\n", md.tx_queues[e].ring_size);
163 printf ("\t\tbuffer size: %u\n", md.tx_queues[e].buffer_size);
164 }
165 printf ("\tlink: ");
166 if (md.link_up_down)
167 printf ("up\n");
168 else
169 printf ("down\n");
170
171 free (buf);
172}
173
174/* informs user about connected status. private_ctx is used by user to identify connection
175 (multiple connections WIP) */
176int
177on_connect (memif_conn_handle_t conn, void *private_ctx)
178{
179 INFO ("memif connected!");
180 return 0;
181}
182
183/* informs user about disconnected status. private_ctx is used by user to identify connection
184 (multiple connections WIP) */
185int
186on_disconnect (memif_conn_handle_t conn, void *private_ctx)
187{
188 INFO ("memif disconnected!");
189 return 0;
190}
191
192int
193icmpr_memif_delete ()
194{
195 int err;
196 /* disconenct then delete memif connection */
197 err = memif_delete (&(&memif_connection)->conn);
198 if (err != MEMIF_ERR_SUCCESS)
199 INFO ("memif_delete: %s", memif_strerror (err));
200 return 0;
201}
202
203void
204print_help ()
205{
206 printf ("LIBMEMIF EXAMPLE APP: %s", APP_NAME);
207#ifdef ICMP_DBG
208 printf (" (debug)");
209#endif
210 printf ("\n");
211 printf ("==============================\n");
212 printf ("libmemif version: %s", LIBMEMIF_VERSION);
213#ifdef MEMIF_DBG
214 printf (" (debug)");
215#endif
216 printf ("\n");
217 printf ("memif version: %d\n", MEMIF_VERSION);
218 printf ("\tuse CTRL+C to exit\n");
219}
220
221int
222icmpr_buffer_alloc (long n, uint16_t qid)
223{
224 memif_connection_t *c = &memif_connection;
225 int err;
226 uint16_t r;
227 /* set data pointer to shared memory and set buffer_len to shared mmeory buffer len */
Jakub Grajciarb467b2a2017-09-14 14:12:10 +0200228 err = memif_buffer_alloc (c->conn, qid, c->tx_bufs, n, &r, 0);
Jakub Grajciar7c5c40d2017-08-30 10:13:25 +0200229 if (err != MEMIF_ERR_SUCCESS)
230 {
231 INFO ("memif_buffer_alloc: %s", memif_strerror (err));
232 c->tx_buf_num += r;
233 return -1;
234 }
235 c->tx_buf_num += r;
236 DBG ("allocated %d/%ld buffers, %u free buffers", r, n,
237 MAX_MEMIF_BUFS - c->tx_buf_num);
238 return 0;
239}
240
241int
242icmpr_tx_burst (uint16_t qid)
243{
244 memif_connection_t *c = &memif_connection;
245 int err;
246 uint16_t r;
247 /* inform peer memif interface about data in shared memory buffers */
248 /* mark memif buffers as free */
249 err = memif_tx_burst (c->conn, qid, c->tx_bufs, c->tx_buf_num, &r);
250 if (err != MEMIF_ERR_SUCCESS)
251 INFO ("memif_tx_burst: %s", memif_strerror (err));
252 DBG ("tx: %d/%u", r, c->tx_buf_num);
253 c->tx_buf_num -= r;
254 return 0;
255}
256
257int
258icmpr_free ()
259{
260 /* application cleanup */
261 int err;
262 memif_connection_t *c = &memif_connection;
263 free (c->tx_bufs);
264 c->tx_bufs = NULL;
265 free (c->rx_bufs);
266 c->rx_bufs = NULL;
267
268 err = memif_cleanup ();
269 if (err != MEMIF_ERR_SUCCESS)
270 INFO ("memif_delete: %s", memif_strerror (err));
271
272 return 0;
273}
274
275void
276icmpr_exit (int sig)
277{
278 printf ("\n");
279 icmpr_memif_delete ();
280 icmpr_free ();
281 exit (EXIT_SUCCESS);
282}
283
284/* called when event is polled on interrupt file descriptor.
285 there are packets in shared memory ready to be received */
286int
287on_interrupt (memif_conn_handle_t conn, void *private_ctx, uint16_t qid)
288{
289 DBG ("interrupted");
290 memif_connection_t *c = &memif_connection;
291 int err;
292 uint16_t rx;
293 /* receive data from shared memory buffers */
294 err = memif_rx_burst (c->conn, qid, c->rx_bufs, MAX_MEMIF_BUFS, &rx);
295 c->rx_buf_num += rx;
296
297 DBG ("received %d buffers. %u/%u alloc/free buffers",
298 rx, c->rx_buf_num, MAX_MEMIF_BUFS - c->rx_buf_num);
299
300 if (icmpr_buffer_alloc (rx, c->tx_qid) < 0)
301 {
302 INFO ("buffer_alloc error");
303 goto error;
304 }
305 int i;
306 for (i = 0; i < rx; i++)
307 {
308 resolve_packet ((void *) (c->rx_bufs + i)->data,
309 (c->rx_bufs + i)->data_len,
310 (void *) (c->tx_bufs + i)->data,
311 &(c->tx_bufs + i)->data_len, c->ip_addr);
312 }
313
314 uint16_t fb;
315 /* mark memif buffers and shared memory buffers as free */
316 err = memif_buffer_free (c->conn, qid, c->rx_bufs, rx, &fb);
317 c->rx_buf_num -= fb;
318
319 DBG ("freed %d buffers. %u/%u alloc/free buffers",
320 fb, c->rx_buf_num, MAX_MEMIF_BUFS - c->rx_buf_num);
321
322 icmpr_tx_burst (c->tx_qid);
323
324 return 0;
325
326error:
327 err = memif_buffer_free (c->conn, qid, c->rx_bufs, rx, &fb);
328 if (err != MEMIF_ERR_SUCCESS)
329 INFO ("memif_buffer_free: %s", memif_strerror (err));
330 c->rx_buf_num -= fb;
331 DBG ("freed %d buffers. %u/%u alloc/free buffers",
332 fb, c->rx_buf_num, MAX_MEMIF_BUFS - c->rx_buf_num);
333 return 0;
334}
335
336int
337icmpr_memif_create (int is_master)
338{
339 /* setting memif connection arguments */
340 memif_conn_args_t args;
341 int fd = -1;
342 memset (&args, 0, sizeof (args));
343 args.is_master = is_master;
344 args.log2_ring_size = 10;
345 args.buffer_size = 2048;
346 args.num_s2m_rings = 2;
347 args.num_m2s_rings = 2;
348 strncpy ((char *) args.interface_name, IF_NAME, strlen (IF_NAME));
349 strncpy ((char *) args.instance_name, APP_NAME, strlen (APP_NAME));
350 args.mode = 0;
351 /* socket filename is not specified, because this app is supposed to
352 connect to VPP over memif. so default socket filename will be used */
353 /* default socketfile = /run/vpp/memif.sock */
354
355 args.interface_id = 0;
356 /* last argument for memif_create (void * private_ctx) is used by user
357 to identify connection. this context is returned with callbacks */
358 int err = memif_create (&(&memif_connection)->conn,
359 &args, on_connect, on_disconnect, on_interrupt,
360 NULL);
361 if (err != MEMIF_ERR_SUCCESS)
362 INFO ("memif_create: %s", memif_strerror (err));
363 return 0;
364}
365
366int
367main (int argc, char *argv[])
368{
369 memif_connection_t *c = &memif_connection;
370
371 signal (SIGINT, icmpr_exit);
372
373 /* initialize global memif connection handle */
374 c->conn = NULL;
375 if (argc == 1)
376 c->tx_qid = 0;
377 else
378 {
379 char *end;
380 c->tx_qid = strtol (argv[1], &end, 10);
381 }
382 INFO ("tx qid: %u", c->tx_qid);
383 /* alloc memif buffers */
384 c->rx_buf_num = 0;
385 c->rx_bufs =
386 (memif_buffer_t *) malloc (sizeof (memif_buffer_t) * MAX_MEMIF_BUFS);
387 c->tx_buf_num = 0;
388 c->tx_bufs =
389 (memif_buffer_t *) malloc (sizeof (memif_buffer_t) * MAX_MEMIF_BUFS);
390 c->ip_addr[0] = 192;
391 c->ip_addr[1] = 168;
392 c->ip_addr[2] = 1;
393 c->ip_addr[3] = 2;
394 /* initialize memory interface */
395 int err;
396 /* if valid callback is passed as argument, fd event polling will be done by user
397 all file descriptors and events will be passed to user in this callback */
398 /* if callback is set to NULL libmemif will handle fd event polling */
399 err = memif_init (NULL, APP_NAME);
400 if (err != MEMIF_ERR_SUCCESS)
401 INFO ("memif_init: %s", memif_strerror (err));
402
403 print_help ();
404
405 icmpr_memif_create (0);
406 print_memif_details ();
407
408 /* main loop */
409 while (1)
410 {
411 if (memif_poll_event (-1) < 0)
412 {
413 DBG ("poll_event error!");
414 }
415 }
416}