dpdkstat: refactored pipe error checking
[collectd.git] / src / dpdkstat.c
1 /*-
2  * collectd - src/dpdkstat.c
3  * MIT License
4  *
5  * Copyright(c) 2016 Intel Corporation. All rights reserved.
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a copy of
8  * this software and associated documentation files (the "Software"), to deal in
9  * the Software without restriction, including without limitation the rights to
10  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
11  * of the Software, and to permit persons to whom the Software is furnished to do
12  * so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in all
15  * copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  *
25  * Authors:
26  *   Maryam Tahhan <maryam.tahhan@intel.com>
27  *   Harry van Haaren <harry.van.haaren@intel.com>
28  */
29
30 #include "collectd.h"
31 #include "common.h" /* auxiliary functions */
32 #include "plugin.h" /* plugin_register_*, plugin_dispatch_values */
33 #include "utils_time.h"
34
35 #include <getopt.h>
36 #include <semaphore.h>
37 #include <sys/mman.h>
38 #include <sys/queue.h>
39 #include <poll.h>
40
41 #include <rte_config.h>
42 #include <rte_eal.h>
43 #include <rte_ethdev.h>
44 #include <rte_common.h>
45 #include <rte_debug.h>
46 #include <rte_malloc.h>
47 #include <rte_memory.h>
48 #include <rte_memzone.h>
49 #include <rte_launch.h>
50 #include <rte_tailq.h>
51 #include <rte_lcore.h>
52 #include <rte_per_lcore.h>
53 #include <rte_debug.h>
54 #include <rte_log.h>
55 #include <rte_atomic.h>
56 #include <rte_branch_prediction.h>
57 #include <rte_string_fns.h>
58
59 #define DPDKSTAT_MAX_BUFFER_SIZE (4096*4)
60 #define DPDK_SHM_NAME "dpdk_collectd_stats_shm"
61 #define REINIT_SHM 1
62 #define RESET 1
63 #define NO_RESET 0
64
65 enum DPDK_HELPER_ACTION {
66   DPDK_HELPER_ACTION_COUNT_STATS,
67   DPDK_HELPER_ACTION_SEND_STATS,
68 };
69
70 enum DPDK_HELPER_STATUS {
71   DPDK_HELPER_NOT_INITIALIZED = 0,
72   DPDK_HELPER_WAITING_ON_PRIMARY,
73   DPDK_HELPER_INITIALIZING_EAL,
74   DPDK_HELPER_ALIVE_SENDING_STATS,
75   DPDK_HELPER_GRACEFUL_QUIT,
76 };
77
78 struct dpdk_config_s {
79   /* General DPDK params */
80   char coremask[DATA_MAX_NAME_LEN];
81   char memory_channels[DATA_MAX_NAME_LEN];
82   char socket_memory[DATA_MAX_NAME_LEN];
83   char process_type[DATA_MAX_NAME_LEN];
84   char file_prefix[DATA_MAX_NAME_LEN];
85   cdtime_t interval;
86   uint32_t eal_initialized;
87   uint32_t enabled_port_mask;
88   uint32_t eal_argc;
89   /* Helper info */
90   int   collectd_reinit_shm;
91   pid_t helper_pid;
92   sem_t sema_helper_get_stats;
93   sem_t sema_stats_in_shm;
94   int   helper_pipes[2];
95   enum DPDK_HELPER_STATUS helper_status;
96   enum DPDK_HELPER_ACTION helper_action;
97   /* xstats info */
98   uint32_t num_ports;
99   uint32_t num_xstats;
100   cdtime_t port_read_time[RTE_MAX_ETHPORTS];
101   uint32_t num_stats_in_port[RTE_MAX_ETHPORTS];
102   struct rte_eth_link link_status[RTE_MAX_ETHPORTS];
103   struct rte_eth_xstats xstats;
104   /* rte_eth_xstats from here on until the end of the SHM */
105 };
106 typedef struct dpdk_config_s dpdk_config_t;
107
108 static int g_configured;
109 static dpdk_config_t *g_configuration;
110
111 static void dpdk_config_init_default(void);
112 static int dpdk_config(oconfig_item_t *ci);
113 static int dpdk_helper_init_eal(void);
114 static int dpdk_helper_run(void);
115 static int dpdk_helper_spawn(enum DPDK_HELPER_ACTION action);
116 static int dpdk_init(void);
117 static int dpdk_read(user_data_t *ud);
118 static int dpdk_shm_cleanup(void);
119 static int dpdk_shm_init(size_t size);
120
121 /* Write the default configuration to the g_configuration instances */
122 static void dpdk_config_init_default(void)
123 {
124     g_configuration->interval = plugin_get_interval();
125     WARNING("dpdkstat: No time interval was configured, default value %lu ms is set\n",
126              CDTIME_T_TO_MS(g_configuration->interval));
127     g_configuration->enabled_port_mask = 0;
128     g_configuration->eal_argc = 2;
129     g_configuration->eal_initialized = 0;
130     ssnprintf(g_configuration->coremask, DATA_MAX_NAME_LEN, "%s", "0xf");
131     ssnprintf(g_configuration->memory_channels, DATA_MAX_NAME_LEN, "%s", "1");
132     ssnprintf(g_configuration->process_type, DATA_MAX_NAME_LEN, "%s", "secondary");
133     ssnprintf(g_configuration->file_prefix, DATA_MAX_NAME_LEN, "%s",
134              "/var/run/.rte_config");
135 }
136
137 static int dpdk_config(oconfig_item_t *ci)
138 {
139   int i = 0;
140
141   /* Initialize a POSIX SHared Memory (SHM) object. */
142   int err = dpdk_shm_init(sizeof(dpdk_config_t));
143   if (err) {
144     DEBUG("dpdkstat: error in shm_init, %s", strerror(errno));
145     return -1;
146   }
147
148   /* Set defaults for config, overwritten by loop if config item exists */
149   dpdk_config_init_default();
150
151   for (i = 0; i < ci->children_num; i++) {
152     oconfig_item_t *child = ci->children + i;
153
154     if (strcasecmp("Interval", child->key) == 0) {
155       g_configuration->interval =
156             DOUBLE_TO_CDTIME_T (child->values[0].value.number);
157       DEBUG("dpdkstat: Plugin Read Interval %lu milliseconds\n",
158             CDTIME_T_TO_MS(g_configuration->interval));
159     } else if (strcasecmp("Coremask", child->key) == 0) {
160       ssnprintf(g_configuration->coremask, DATA_MAX_NAME_LEN, "%s",
161                child->values[0].value.string);
162       DEBUG("dpdkstat:COREMASK %s \n", g_configuration->coremask);
163       g_configuration->eal_argc+=1;
164     } else if (strcasecmp("MemoryChannels", child->key) == 0) {
165       ssnprintf(g_configuration->memory_channels, DATA_MAX_NAME_LEN, "%s",
166                child->values[0].value.string);
167       DEBUG("dpdkstat:Memory Channels %s \n", g_configuration->memory_channels);
168       g_configuration->eal_argc+=1;
169     } else if (strcasecmp("SocketMemory", child->key) == 0) {
170       ssnprintf(g_configuration->socket_memory, DATA_MAX_NAME_LEN, "%s",
171                child->values[0].value.string);
172       DEBUG("dpdkstat: socket mem %s \n", g_configuration->socket_memory);
173       g_configuration->eal_argc+=1;
174     } else if (strcasecmp("ProcessType", child->key) == 0) {
175       ssnprintf(g_configuration->process_type, DATA_MAX_NAME_LEN, "%s",
176                child->values[0].value.string);
177       DEBUG("dpdkstat: proc type %s \n", g_configuration->process_type);
178       g_configuration->eal_argc+=1;
179     } else if (strcasecmp("FilePrefix", child->key) == 0) {
180       ssnprintf(g_configuration->file_prefix, DATA_MAX_NAME_LEN, "/var/run/.%s_config",
181                child->values[0].value.string);
182       DEBUG("dpdkstat: file prefix %s \n", g_configuration->file_prefix);
183       if (strcasecmp(g_configuration->file_prefix, "/var/run/.rte_config") != 0) {
184         g_configuration->eal_argc+=1;
185       }
186     } else {
187       WARNING ("dpdkstat: The config option \"%s\" is unknown.",
188                child->key);
189     }
190   } /* End for (i = 0; i < ci->children_num; i++)*/
191   g_configured = 1; /* Bypass configuration in dpdk_shm_init(). */
192
193   return 0;
194 }
195
196 /* Initialize SHared Memory (SHM) for config and helper process */
197 static int dpdk_shm_init(size_t size)
198 {
199   /*
200    * Check if SHM is already configured: when config items are provided, the
201    * config function initializes SHM. If there is no config, then init() will
202    * just return.
203    */
204   if(g_configuration)
205     return 0;
206
207   /* Create and open a new object, or open an existing object. */
208   int fd = shm_open(DPDK_SHM_NAME, O_CREAT | O_TRUNC | O_RDWR, 0666);
209   if (fd < 0) {
210     WARNING("dpdkstat:Failed to open %s as SHM:%s\n", DPDK_SHM_NAME,
211             strerror(errno));
212     goto fail;
213   }
214   /* Set the size of the shared memory object. */
215   int ret = ftruncate(fd, size);
216   if (ret != 0) {
217     WARNING("dpdkstat:Failed to resize SHM:%s\n", strerror(errno));
218     goto fail_close;
219   }
220   /* Map the shared memory object into this process' virtual address space. */
221   g_configuration = mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
222   if (g_configuration == MAP_FAILED) {
223     WARNING("dpdkstat:Failed to mmap SHM:%s\n", strerror(errno));
224     goto fail_close;
225   }
226   /*
227    * Close the file descriptor, the shared memory object still exists
228    * and can only be removed by calling shm_unlink().
229    */
230   close(fd);
231
232   /* Initialize g_configuration. */
233   memset(g_configuration, 0, size);
234
235   /* Initialize the semaphores for SHM use */
236   int err = sem_init(&g_configuration->sema_helper_get_stats, 1, 0);
237   if(err) {
238     ERROR("dpdkstat semaphore init failed: %s\n", strerror(errno));
239     goto fail_close;
240   }
241   err = sem_init(&g_configuration->sema_stats_in_shm, 1, 0);
242   if(err) {
243     ERROR("dpdkstat semaphore init failed: %s\n", strerror(errno));
244     goto fail_close;
245   }
246
247   return 0;
248
249 fail_close:
250   close(fd);
251 fail:
252   /* Reset to zero, as it was set to MAP_FAILED aka: (void *)-1. Avoid
253    * an issue if collectd attempts to run this plugin failure.
254    */
255   g_configuration = 0;
256   return -1;
257 }
258
259 static int dpdk_re_init_shm()
260 {
261   dpdk_config_t temp_config;
262   memcpy(&temp_config, g_configuration, sizeof(dpdk_config_t));
263   DEBUG("dpdkstat: %s: ports %d, xstats %d\n", __func__, temp_config.num_ports,
264         temp_config.num_xstats);
265
266   int shm_xstats_size = sizeof(dpdk_config_t) + (sizeof(struct rte_eth_xstats) *
267                         g_configuration->num_xstats);
268   DEBUG("=== SHM new size for %d xstats\n", g_configuration->num_xstats);
269
270   int err = dpdk_shm_cleanup();
271   if (err)
272     ERROR("dpdkstat: Error in shm_cleanup in %s\n", __func__);
273
274   err = dpdk_shm_init(shm_xstats_size);
275   if (err)
276     ERROR("dpdkstat: Error in shm_init in %s\n", __func__);
277
278   /* If the XML config() function has been run, dont re-initialize defaults */
279   if(!g_configured)
280     dpdk_config_init_default();
281
282   memcpy(g_configuration, &temp_config, sizeof(dpdk_config_t));
283   g_configuration->collectd_reinit_shm = 0;
284
285   return 0;
286 }
287
288 static int dpdk_init (void)
289 {
290   int err = dpdk_shm_init(sizeof(dpdk_config_t));
291   if (err)
292     ERROR("dpdkstat: %s : error %d in shm_init()", __func__, err);
293
294   /* If the XML config() function has been run, dont re-initialize defaults */
295   if(!g_configured) {
296     dpdk_config_init_default();
297   }
298
299   plugin_register_complex_read (NULL, "dpdkstat", dpdk_read,
300                                 g_configuration->interval, NULL);
301   return 0;
302 }
303
304 static int dpdk_helper_exit(int reset)
305 {
306   g_configuration->helper_status = DPDK_HELPER_GRACEFUL_QUIT;
307   if (reset) {
308     g_configuration->eal_initialized = 0;
309     g_configuration->num_ports = 0;
310     memset(&g_configuration->xstats, 0, g_configuration->num_xstats* sizeof(struct rte_eth_xstats));
311     g_configuration->num_xstats = 0;
312     int i = 0;
313     for (; i < RTE_MAX_ETHPORTS; i++)
314       g_configuration->num_stats_in_port[i] = 0;
315   }
316   close(g_configuration->helper_pipes[1]);
317   int err = kill(g_configuration->helper_pid, SIGKILL);
318   if (err) {
319     ERROR("dpdkstat: error sending kill to helper: %s\n", strerror(errno));
320   }
321
322   return 0;
323 }
324
325 static int dpdk_helper_spawn(enum DPDK_HELPER_ACTION action)
326 {
327   g_configuration->eal_initialized = 0;
328   g_configuration->helper_action = action;
329   /*
330    * Create a pipe for helper stdout back to collectd. This is necessary for
331    * logging EAL failures, as rte_eal_init() calls rte_panic().
332    */
333   if (g_configuration->helper_pipes[1]) {
334     DEBUG("dpdkstat: collectd closing helper pipe %d\n",
335           g_configuration->helper_pipes[1]);
336   } else {
337     DEBUG("dpdkstat: collectd helper pipe %d, not closing\n",
338           g_configuration->helper_pipes[1]);
339   }
340   if(pipe(g_configuration->helper_pipes) != 0) {
341     DEBUG("dpdkstat: Could not create helper pipe: %s\n", strerror(errno));
342     return -1;
343   }
344
345   int pipe0_flags = fcntl(g_configuration->helper_pipes[0], F_GETFL, 0);
346   int pipe1_flags = fcntl(g_configuration->helper_pipes[1], F_GETFL, 0);
347   if (pipe0_flags == -1 || pipe1_flags == -1) {
348     ERROR("dpdkstat: error setting up pipe flags: %s\n", strerror(errno));
349   }
350   int  pipe0_err = fcntl(g_configuration->helper_pipes[0], F_SETFL, pipe1_flags
351                          | O_NONBLOCK);
352   int  pipe1_err = fcntl(g_configuration->helper_pipes[1], F_SETFL, pipe0_flags
353                          | O_NONBLOCK);
354   if (pipe0_err == -1 || pipe1_err == -1) {
355     ERROR("dpdkstat: error setting up pipes: %s\n", strerror(errno));
356   }
357
358   pid_t pid = fork();
359   if (pid > 0) {
360     close(g_configuration->helper_pipes[1]);
361     g_configuration->helper_pid = pid;
362     DEBUG("dpdkstat: helper pid %u\n", g_configuration->helper_pid);
363     /* Kick helper once its alive to have it start processing */
364     sem_post(&g_configuration->sema_helper_get_stats);
365   } else if (pid == 0) {
366     /* Replace stdout with a pipe to collectd. */
367     close(g_configuration->helper_pipes[0]);
368     close(STDOUT_FILENO);
369     dup2(g_configuration->helper_pipes[1], STDOUT_FILENO);
370     dpdk_helper_run();
371   } else {
372     ERROR("dpdkstat: Failed to fork helper process: %s\n", strerror(errno));
373     return -1;
374   }
375   return 0;
376 }
377
378 /*
379  * Initialize the DPDK EAL, if this returns, EAL is successfully initialized.
380  * On failure, the EAL prints an error message, and the helper process exits.
381  */
382 static int dpdk_helper_init_eal(void)
383 {
384   g_configuration->helper_status = DPDK_HELPER_INITIALIZING_EAL;
385   char *argp[(g_configuration->eal_argc) + 1];
386   int i = 0;
387
388   argp[i++] = "collectd-dpdk";
389   if (strcasecmp(g_configuration->coremask, "") != 0) {
390     argp[i++] = "-c";
391     argp[i++] = g_configuration->coremask;
392   }
393   if (strcasecmp(g_configuration->memory_channels, "") != 0) {
394     argp[i++] = "-n";
395     argp[i++] = g_configuration->memory_channels;
396   }
397   if (strcasecmp(g_configuration->socket_memory, "") != 0) {
398     argp[i++] = "--socket-mem";
399     argp[i++] = g_configuration->socket_memory;
400   }
401   if (strcasecmp(g_configuration->file_prefix, "") != 0 &&
402      strcasecmp(g_configuration->file_prefix, "/var/run/.rte_config") != 0) {
403     argp[i++] = "--file-prefix";
404     argp[i++] = g_configuration->file_prefix;
405   }
406   if (strcasecmp(g_configuration->process_type, "") != 0) {
407     argp[i++] = "--proc-type";
408     argp[i++] = g_configuration->process_type;
409   }
410   g_configuration->eal_argc = i;
411
412   g_configuration->eal_initialized = 1;
413   int ret = rte_eal_init(g_configuration->eal_argc, argp);
414   if (ret < 0) {
415     g_configuration->eal_initialized = 0;
416     printf("dpdkstat: ERROR initializing EAL ret = %d\n", ret);
417     printf("dpdkstat: EAL arguments: ");
418     for (i=0; i< g_configuration->eal_argc; i++) {
419       printf("%s ", argp[i]);
420     }
421     printf("\n");
422     return ret;
423   }
424   return 0;
425 }
426
427 static int dpdk_helper_run (void)
428 {
429   pid_t ppid = getppid();
430   g_configuration->helper_status = DPDK_HELPER_WAITING_ON_PRIMARY;
431
432    while (1) {
433     /* sem_timedwait() to avoid blocking forever */
434     struct timespec ts;
435     cdtime_t now = cdtime();
436     cdtime_t half_sec = MS_TO_CDTIME_T(1500);
437     CDTIME_T_TO_TIMESPEC(now + half_sec + g_configuration->interval *2, &ts);
438     int ret = sem_timedwait(&g_configuration->sema_helper_get_stats, &ts);
439
440     if (ret == -1 && errno == ETIMEDOUT) {
441       ERROR("dpdkstat-helper: sem timedwait()"
442              " timeout, did collectd terminate?\n");
443       dpdk_helper_exit(RESET);
444     }
445     /* Parent PID change means collectd died so quit the helper process. */
446     if (ppid != getppid()) {
447       WARNING("dpdkstat-helper: parent PID changed, quitting.\n");
448       dpdk_helper_exit(RESET);
449     }
450
451     /* Checking for DPDK primary process. */
452     if (!rte_eal_primary_proc_alive(g_configuration->file_prefix)) {
453       if(g_configuration->eal_initialized) {
454         WARNING("dpdkstat-helper: no primary alive but EAL initialized:"
455               " quitting.\n");
456         dpdk_helper_exit(RESET);
457       }
458       g_configuration->helper_status = DPDK_HELPER_WAITING_ON_PRIMARY;
459       /* Back to start of while() - waiting for primary process */
460       continue;
461     }
462
463     if (!g_configuration->eal_initialized) {
464       /* Initialize EAL. */
465       int ret = dpdk_helper_init_eal();
466       if(ret != 0) {
467         WARNING("ERROR INITIALIZING EAL\n");
468         dpdk_helper_exit(RESET);
469       }
470     }
471
472     g_configuration->helper_status = DPDK_HELPER_ALIVE_SENDING_STATS;
473
474     uint8_t nb_ports = rte_eth_dev_count();
475     if (nb_ports == 0) {
476       DEBUG("dpdkstat-helper: No DPDK ports available. "
477               "Check bound devices to DPDK driver.\n");
478       return 0;
479     }
480
481     if (nb_ports > RTE_MAX_ETHPORTS)
482       nb_ports = RTE_MAX_ETHPORTS;
483     /* If no port mask was specified enable all ports*/
484     if (g_configuration->enabled_port_mask == 0)
485       g_configuration->enabled_port_mask = 0xffff;
486
487     int len = 0, enabled_port_count = 0, num_xstats = 0, i = 0;
488     for (; i < nb_ports; i++) {
489       if (g_configuration->enabled_port_mask & (1 << i)) {
490         if(g_configuration->helper_action == DPDK_HELPER_ACTION_COUNT_STATS) {
491           len = rte_eth_xstats_get(i, NULL, 0);
492           if (len < 0) {
493             ERROR("dpdkstat-helper: Cannot get xstats count\n");
494             return -1;
495           }
496           num_xstats += len;
497           g_configuration->num_stats_in_port[enabled_port_count] = len;
498           enabled_port_count++;
499           continue;
500         } else {
501           len = g_configuration->num_stats_in_port[enabled_port_count];
502           g_configuration->port_read_time[enabled_port_count] = cdtime();
503           ret = rte_eth_xstats_get(i, &g_configuration->xstats + num_xstats,
504                                    g_configuration->num_stats_in_port[enabled_port_count]);
505           if (ret < 0 || ret != len) {
506             DEBUG("dpdkstat-helper: Error reading xstats on port %d len = %d\n",
507                   i, len);
508             return -1;
509           }
510           num_xstats += g_configuration->num_stats_in_port[enabled_port_count];
511           enabled_port_count++;
512         }
513       } /* if (enabled_port_mask) */
514     } /* for (nb_ports) */
515
516     if (g_configuration->helper_action == DPDK_HELPER_ACTION_COUNT_STATS) {
517       g_configuration->num_ports  = enabled_port_count;
518       g_configuration->num_xstats = num_xstats;
519       DEBUG("dpdkstat-helper ports: %d, num stats: %d\n",
520             g_configuration->num_ports, g_configuration->num_xstats);
521       /* Exit, allowing collectd to re-init SHM to the right size */
522       g_configuration->collectd_reinit_shm = REINIT_SHM;
523       dpdk_helper_exit(NO_RESET);
524     }
525     /* Now kick collectd send thread to send the stats */
526     int err = sem_post(&g_configuration->sema_stats_in_shm);
527     if (err)
528       ERROR("dpdkstat: error posting semaphore to helper %s\n", strerror(errno));
529   } /* while(1) */
530
531   return 0;
532 }
533
534 static int dpdk_read (user_data_t *ud)
535 {
536   int ret = 0;
537
538   /*
539    * Check if SHM flag is set to be re-initialized. AKA DPDK ports have been
540    * counted, so re-init SHM to be large enough to fit all the statistics.
541    */
542   if (g_configuration->collectd_reinit_shm) {
543     DEBUG("dpdkstat: read() now reinit SHM then launching send-thread\n");
544     dpdk_re_init_shm();
545   }
546
547   /*
548    * Check if DPDK proc is alive, and has already counted port / stats. This
549    * must be done in dpdk_read(), because the DPDK primary process may not be
550    * alive at dpdk_init() time.
551    */
552   if (g_configuration->helper_status == DPDK_HELPER_NOT_INITIALIZED ||
553      g_configuration->helper_status == DPDK_HELPER_GRACEFUL_QUIT) {
554       int action = DPDK_HELPER_ACTION_SEND_STATS;
555       if(g_configuration->num_xstats == 0)
556         action = DPDK_HELPER_ACTION_COUNT_STATS;
557       /* Spawn the helper thread to count stats or to read stats. */
558       int err = dpdk_helper_spawn(action);
559       if (err) {
560         ERROR("dpdkstat: error spawning helper %s\n", strerror(errno));
561         return -1;
562       }
563     }
564
565   int exit_status;
566   pid_t ws = waitpid(g_configuration->helper_pid, &exit_status, WNOHANG);
567   /*
568    * Conditions under which to respawn helper:
569    *  waitpid() fails, helper process died (or quit), so respawn
570    */
571   int respawn_helper = 0;
572   if (ws != 0) {
573     respawn_helper = 1;
574   }
575
576   char buf[DPDKSTAT_MAX_BUFFER_SIZE];
577   char out[DPDKSTAT_MAX_BUFFER_SIZE];
578
579   /* non blocking check on helper logging pipe */
580   struct pollfd fds;
581   fds.fd = g_configuration->helper_pipes[0];
582   fds.events = POLLIN;
583   int data_avail = poll(&fds, 1, 0);
584   while (data_avail) {
585     int nbytes = read(g_configuration->helper_pipes[0], buf, sizeof(buf));
586     if (nbytes <= 0)
587       break;
588     ssnprintf( out, nbytes, "%s", buf);
589     DEBUG("dpdkstat: helper-proc: %s\n", out);
590   }
591
592   if (respawn_helper) {
593     if (g_configuration->helper_pid)
594       dpdk_helper_exit(RESET);
595     dpdk_helper_spawn(DPDK_HELPER_ACTION_COUNT_STATS);
596   }
597
598   struct timespec helper_kick_time;
599   clock_gettime(CLOCK_REALTIME, &helper_kick_time);
600   /* Kick helper process through SHM */
601   sem_post(&g_configuration->sema_helper_get_stats);
602
603   struct timespec ts;
604   cdtime_t now = cdtime();
605   CDTIME_T_TO_TIMESPEC(now + g_configuration->interval, &ts);
606   ret = sem_timedwait(&g_configuration->sema_stats_in_shm, &ts);
607   if (ret == -1 && errno == ETIMEDOUT) {
608     DEBUG("dpdkstat: timeout in collectd thread: is a DPDK Primary running? \n");
609     return 0;
610   }
611
612   /* Dispatch the stats.*/
613   int count = 0, i = 0;
614
615   for (; i < g_configuration->num_ports; i++) {
616     cdtime_t time = g_configuration->port_read_time[i];
617     char dev_name[64];
618     int len = g_configuration->num_stats_in_port[i];
619     ssnprintf(dev_name, sizeof(dev_name), "port.%d", i);
620     struct rte_eth_xstats *xstats = (&g_configuration->xstats);
621     xstats += count; /* pointer arithmetic to jump to each stats struct */
622     int j = 0;
623     for (; j < len; j++) {
624       value_t dpdkstat_values[1];
625       value_list_t dpdkstat_vl = VALUE_LIST_INIT;
626
627       dpdkstat_values[0].counter = xstats[j].value;
628       dpdkstat_vl.values = dpdkstat_values;
629       dpdkstat_vl.values_len = 1; /* Submit stats one at a time */
630       dpdkstat_vl.time = time;
631       sstrncpy (dpdkstat_vl.host, hostname_g, sizeof (dpdkstat_vl.host));
632       sstrncpy (dpdkstat_vl.plugin, "dpdkstat", sizeof (dpdkstat_vl.plugin));
633       sstrncpy (dpdkstat_vl.plugin_instance, dev_name,
634                 sizeof (dpdkstat_vl.plugin_instance));
635       sstrncpy (dpdkstat_vl.type, "counter",
636                 sizeof (dpdkstat_vl.type));
637       sstrncpy (dpdkstat_vl.type_instance, xstats[j].name,
638                 sizeof (dpdkstat_vl.type_instance));
639       plugin_dispatch_values (&dpdkstat_vl);
640     }
641     count += len;
642   } /* for each port */
643   return 0;
644 }
645
646 static int dpdk_shm_cleanup(void)
647 {
648   int ret = munmap(g_configuration, sizeof(dpdk_config_t));
649   g_configuration = 0;
650   if (ret) {
651     WARNING("dpdkstat: munmap returned %d\n", ret);
652     return ret;
653   }
654   ret = shm_unlink(DPDK_SHM_NAME);
655   if (ret) {
656     WARNING("dpdkstat: shm_unlink returned %d\n", ret);
657     return ret;
658   }
659   return 0;
660 }
661
662 static int dpdk_shutdown (void)
663 {
664   int ret = 0;
665   close(g_configuration->helper_pipes[1]);
666   int err = kill(g_configuration->helper_pid, SIGKILL);
667   if (err) {
668     ERROR("dpdkstat: error sending sigkill to helper %s\n", strerror(errno));
669     ret = -1;
670   }
671   err = dpdk_shm_cleanup();
672   if (err) {
673     ERROR("dpdkstat: error cleaning up SHM: %s\n", strerror(errno));
674     ret = -1;
675   }
676
677   return ret;
678 }
679
680 void module_register (void)
681 {
682   plugin_register_complex_config ("dpdkstat", dpdk_config);
683   plugin_register_init ("dpdkstat", dpdk_init);
684   plugin_register_shutdown ("dpdkstat", dpdk_shutdown);
685 }