Merge remote-tracking branch 'github/pr/2059'
[collectd.git] / src / network.c
1 /**
2  * collectd - src/network.c
3  * Copyright (C) 2005-2013  Florian octo Forster
4  * Copyright (C) 2009       Aman Gupta
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; only version 2.1 of the License is
9  * applicable.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * Authors:
21  *   Florian octo Forster <octo at collectd.org>
22  *   Aman Gupta <aman at tmm1.net>
23  **/
24
25 #define _DEFAULT_SOURCE
26 #define _BSD_SOURCE /* For struct ip_mreq */
27
28 #include "collectd.h"
29
30 #include "common.h"
31 #include "plugin.h"
32 #include "utils_cache.h"
33 #include "utils_complain.h"
34 #include "utils_fbhash.h"
35
36 #include "network.h"
37
38 #if HAVE_NETDB_H
39 #include <netdb.h>
40 #endif
41 #if HAVE_NETINET_IN_H
42 #include <netinet/in.h>
43 #endif
44 #if HAVE_ARPA_INET_H
45 #include <arpa/inet.h>
46 #endif
47 #if HAVE_POLL_H
48 #include <poll.h>
49 #endif
50 #if HAVE_NET_IF_H
51 #include <net/if.h>
52 #endif
53
54 #if HAVE_GCRYPT_H
55 #if defined __APPLE__
56 /* default xcode compiler throws warnings even when deprecated functionality
57  * is not used. -Werror breaks the build because of erroneous warnings.
58  * http://stackoverflow.com/questions/10556299/compiler-warnings-with-libgcrypt-v1-5-0/12830209#12830209
59  */
60 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
61 #endif
62 /* FreeBSD's copy of libgcrypt extends the existing GCRYPT_NO_DEPRECATED
63  * to properly hide all deprecated functionality.
64  * http://svnweb.freebsd.org/ports/head/security/libgcrypt/files/patch-src__gcrypt.h.in
65  */
66 #define GCRYPT_NO_DEPRECATED
67 #include <gcrypt.h>
68 #if defined __APPLE__
69 /* Re enable deprecation warnings */
70 #pragma GCC diagnostic warning "-Wdeprecated-declarations"
71 #endif
72 #if GCRYPT_VERSION_NUMBER < 0x010600
73 GCRY_THREAD_OPTION_PTHREAD_IMPL;
74 #endif
75 #endif
76
77 #ifndef IPV6_ADD_MEMBERSHIP
78 #ifdef IPV6_JOIN_GROUP
79 #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
80 #else
81 #error "Neither IP_ADD_MEMBERSHIP nor IPV6_JOIN_GROUP is defined"
82 #endif
83 #endif /* !IP_ADD_MEMBERSHIP */
84
85 /*
86  * Maximum size required for encryption / signing:
87  *
88  *    42 bytes for the encryption header
89  * +  64 bytes for the username
90  * -----------
91  * = 106 bytes
92  */
93 #define BUFF_SIG_SIZE 106
94
95 /*
96  * Private data types
97  */
98 #define SECURITY_LEVEL_NONE 0
99 #if HAVE_GCRYPT_H
100 #define SECURITY_LEVEL_SIGN 1
101 #define SECURITY_LEVEL_ENCRYPT 2
102 #endif
103 struct sockent_client {
104   int fd;
105   struct sockaddr_storage *addr;
106   socklen_t addrlen;
107 #if HAVE_GCRYPT_H
108   int security_level;
109   char *username;
110   char *password;
111   gcry_cipher_hd_t cypher;
112   unsigned char password_hash[32];
113 #endif
114   cdtime_t next_resolve_reconnect;
115   cdtime_t resolve_interval;
116 };
117
118 struct sockent_server {
119   int *fd;
120   size_t fd_num;
121 #if HAVE_GCRYPT_H
122   int security_level;
123   char *auth_file;
124   fbhash_t *userdb;
125   gcry_cipher_hd_t cypher;
126 #endif
127 };
128
129 typedef struct sockent {
130 #define SOCKENT_TYPE_CLIENT 1
131 #define SOCKENT_TYPE_SERVER 2
132   int type;
133
134   char *node;
135   char *service;
136   int interface;
137
138   union {
139     struct sockent_client client;
140     struct sockent_server server;
141   } data;
142
143   struct sockent *next;
144 } sockent_t;
145
146 /*                      1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
147  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
148  * +-------+-----------------------+-------------------------------+
149  * ! Ver.  !                       ! Length                        !
150  * +-------+-----------------------+-------------------------------+
151  */
152 struct part_header_s {
153   uint16_t type;
154   uint16_t length;
155 };
156 typedef struct part_header_s part_header_t;
157
158 /*                      1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
159  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
160  * +-------------------------------+-------------------------------+
161  * ! Type                          ! Length                        !
162  * +-------------------------------+-------------------------------+
163  * : (Length - 4) Bytes                                            :
164  * +---------------------------------------------------------------+
165  */
166 struct part_string_s {
167   part_header_t *head;
168   char *value;
169 };
170 typedef struct part_string_s part_string_t;
171
172 /*                      1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
173  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
174  * +-------------------------------+-------------------------------+
175  * ! Type                          ! Length                        !
176  * +-------------------------------+-------------------------------+
177  * : (Length - 4 == 2 || 4 || 8) Bytes                             :
178  * +---------------------------------------------------------------+
179  */
180 struct part_number_s {
181   part_header_t *head;
182   uint64_t *value;
183 };
184 typedef struct part_number_s part_number_t;
185
186 /*                      1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
187  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
188  * +-------------------------------+-------------------------------+
189  * ! Type                          ! Length                        !
190  * +-------------------------------+---------------+---------------+
191  * ! Num of values                 ! Type0         ! Type1         !
192  * +-------------------------------+---------------+---------------+
193  * ! Value0                                                        !
194  * !                                                               !
195  * +---------------------------------------------------------------+
196  * ! Value1                                                        !
197  * !                                                               !
198  * +---------------------------------------------------------------+
199  */
200 struct part_values_s {
201   part_header_t *head;
202   uint16_t *num_values;
203   uint8_t *values_types;
204   value_t *values;
205 };
206 typedef struct part_values_s part_values_t;
207
208 /*                      1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
209  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
210  * +-------------------------------+-------------------------------+
211  * ! Type                          ! Length                        !
212  * +-------------------------------+-------------------------------+
213  * ! Hash (Bits   0 -  31)                                         !
214  * : :                                                             :
215  * ! Hash (Bits 224 - 255)                                         !
216  * +---------------------------------------------------------------+
217  */
218 /* Minimum size */
219 #define PART_SIGNATURE_SHA256_SIZE 36
220 struct part_signature_sha256_s {
221   part_header_t head;
222   unsigned char hash[32];
223   char *username;
224 };
225 typedef struct part_signature_sha256_s part_signature_sha256_t;
226
227 /*                      1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 3 3
228  *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
229  * +-------------------------------+-------------------------------+
230  * ! Type                          ! Length                        !
231  * +-------------------------------+-------------------------------+
232  * ! Original length               ! Padding (0 - 15 bytes)        !
233  * +-------------------------------+-------------------------------+
234  * ! Hash (Bits   0 -  31)                                         !
235  * : :                                                             :
236  * ! Hash (Bits 128 - 159)                                         !
237  * +---------------------------------------------------------------+
238  */
239 /* Minimum size */
240 #define PART_ENCRYPTION_AES256_SIZE 42
241 struct part_encryption_aes256_s {
242   part_header_t head;
243   uint16_t username_length;
244   char *username;
245   unsigned char iv[16];
246   /* <encrypted> */
247   unsigned char hash[20];
248   /*   <payload /> */
249   /* </encrypted> */
250 };
251 typedef struct part_encryption_aes256_s part_encryption_aes256_t;
252
253 struct receive_list_entry_s {
254   char *data;
255   int data_len;
256   int fd;
257   struct receive_list_entry_s *next;
258 };
259 typedef struct receive_list_entry_s receive_list_entry_t;
260
261 /*
262  * Private variables
263  */
264 static int network_config_ttl = 0;
265 /* Ethernet - (IPv6 + UDP) = 1500 - (40 + 8) = 1452 */
266 static size_t network_config_packet_size = 1452;
267 static _Bool network_config_forward = 0;
268 static _Bool network_config_stats = 0;
269
270 static sockent_t *sending_sockets = NULL;
271
272 static receive_list_entry_t *receive_list_head = NULL;
273 static receive_list_entry_t *receive_list_tail = NULL;
274 static pthread_mutex_t receive_list_lock = PTHREAD_MUTEX_INITIALIZER;
275 static pthread_cond_t receive_list_cond = PTHREAD_COND_INITIALIZER;
276 static uint64_t receive_list_length = 0;
277
278 static sockent_t *listen_sockets = NULL;
279 static struct pollfd *listen_sockets_pollfd = NULL;
280 static size_t listen_sockets_num = 0;
281
282 /* The receive and dispatch threads will run as long as `listen_loop' is set to
283  * zero. */
284 static int listen_loop = 0;
285 static int receive_thread_running = 0;
286 static pthread_t receive_thread_id;
287 static int dispatch_thread_running = 0;
288 static pthread_t dispatch_thread_id;
289
290 /* Buffer in which to-be-sent network packets are constructed. */
291 static char *send_buffer;
292 static char *send_buffer_ptr;
293 static int send_buffer_fill;
294 static cdtime_t send_buffer_last_update;
295 static value_list_t send_buffer_vl = VALUE_LIST_INIT;
296 static pthread_mutex_t send_buffer_lock = PTHREAD_MUTEX_INITIALIZER;
297
298 /* XXX: These counters are incremented from one place only. The spot in which
299  * the values are incremented is either only reachable by one thread (the
300  * dispatch thread, for example) or locked by some lock (send_buffer_lock for
301  * example). Only if neither is true, the stats_lock is acquired. The counters
302  * are always read without holding a lock in the hope that writing 8 bytes to
303  * memory is an atomic operation. */
304 static derive_t stats_octets_rx = 0;
305 static derive_t stats_octets_tx = 0;
306 static derive_t stats_packets_rx = 0;
307 static derive_t stats_packets_tx = 0;
308 static derive_t stats_values_dispatched = 0;
309 static derive_t stats_values_not_dispatched = 0;
310 static derive_t stats_values_sent = 0;
311 static derive_t stats_values_not_sent = 0;
312 static pthread_mutex_t stats_lock = PTHREAD_MUTEX_INITIALIZER;
313
314 /*
315  * Private functions
316  */
317 static _Bool check_receive_okay(const value_list_t *vl) /* {{{ */
318 {
319   uint64_t time_sent = 0;
320   int status;
321
322   status = uc_meta_data_get_unsigned_int(vl, "network:time_sent", &time_sent);
323
324   /* This is a value we already sent. Don't allow it to be received again in
325    * order to avoid looping. */
326   if ((status == 0) && (time_sent >= ((uint64_t)vl->time)))
327     return (0);
328
329   return (1);
330 } /* }}} _Bool check_receive_okay */
331
332 static _Bool check_send_okay(const value_list_t *vl) /* {{{ */
333 {
334   _Bool received = 0;
335   int status;
336
337   if (network_config_forward)
338     return (1);
339
340   if (vl->meta == NULL)
341     return (1);
342
343   status = meta_data_get_boolean(vl->meta, "network:received", &received);
344   if (status == -ENOENT)
345     return (1);
346   else if (status != 0) {
347     ERROR("network plugin: check_send_okay: meta_data_get_boolean failed "
348           "with status %i.",
349           status);
350     return (1);
351   }
352
353   /* By default, only *send* value lists that were not *received* by the
354    * network plugin. */
355   return (!received);
356 } /* }}} _Bool check_send_okay */
357
358 static _Bool check_notify_received(const notification_t *n) /* {{{ */
359 {
360   for (notification_meta_t *ptr = n->meta; ptr != NULL; ptr = ptr->next)
361     if ((strcmp("network:received", ptr->name) == 0) &&
362         (ptr->type == NM_TYPE_BOOLEAN))
363       return ((_Bool)ptr->nm_value.nm_boolean);
364
365   return (0);
366 } /* }}} _Bool check_notify_received */
367
368 static _Bool check_send_notify_okay(const notification_t *n) /* {{{ */
369 {
370   static c_complain_t complain_forwarding = C_COMPLAIN_INIT_STATIC;
371   _Bool received = 0;
372
373   if (n->meta == NULL)
374     return (1);
375
376   received = check_notify_received(n);
377
378   if (network_config_forward && received) {
379     c_complain_once(
380         LOG_ERR, &complain_forwarding,
381         "network plugin: A notification has been received via the network "
382         "and forwarding is enabled. Forwarding of notifications is currently "
383         "not supported, because there is not loop-deteciton available. "
384         "Please contact the collectd mailing list if you need this "
385         "feature.");
386   }
387
388   /* By default, only *send* value lists that were not *received* by the
389    * network plugin. */
390   return (!received);
391 } /* }}} _Bool check_send_notify_okay */
392
393 static int network_dispatch_values(value_list_t *vl, /* {{{ */
394                                    const char *username) {
395   int status;
396
397   if ((vl->time == 0) || (strlen(vl->host) == 0) || (strlen(vl->plugin) == 0) ||
398       (strlen(vl->type) == 0))
399     return (-EINVAL);
400
401   if (!check_receive_okay(vl)) {
402 #if COLLECT_DEBUG
403     char name[6 * DATA_MAX_NAME_LEN];
404     FORMAT_VL(name, sizeof(name), vl);
405     name[sizeof(name) - 1] = 0;
406     DEBUG("network plugin: network_dispatch_values: "
407           "NOT dispatching %s.",
408           name);
409 #endif
410     stats_values_not_dispatched++;
411     return (0);
412   }
413
414   assert(vl->meta == NULL);
415
416   vl->meta = meta_data_create();
417   if (vl->meta == NULL) {
418     ERROR("network plugin: meta_data_create failed.");
419     return (-ENOMEM);
420   }
421
422   status = meta_data_add_boolean(vl->meta, "network:received", 1);
423   if (status != 0) {
424     ERROR("network plugin: meta_data_add_boolean failed.");
425     meta_data_destroy(vl->meta);
426     vl->meta = NULL;
427     return (status);
428   }
429
430   if (username != NULL) {
431     status = meta_data_add_string(vl->meta, "network:username", username);
432     if (status != 0) {
433       ERROR("network plugin: meta_data_add_string failed.");
434       meta_data_destroy(vl->meta);
435       vl->meta = NULL;
436       return (status);
437     }
438   }
439
440   plugin_dispatch_values(vl);
441   stats_values_dispatched++;
442
443   meta_data_destroy(vl->meta);
444   vl->meta = NULL;
445
446   return (0);
447 } /* }}} int network_dispatch_values */
448
449 static int network_dispatch_notification(notification_t *n) /* {{{ */
450 {
451   int status;
452
453   assert(n->meta == NULL);
454
455   status = plugin_notification_meta_add_boolean(n, "network:received", 1);
456   if (status != 0) {
457     ERROR("network plugin: plugin_notification_meta_add_boolean failed.");
458     plugin_notification_meta_free(n->meta);
459     n->meta = NULL;
460     return (status);
461   }
462
463   status = plugin_dispatch_notification(n);
464
465   plugin_notification_meta_free(n->meta);
466   n->meta = NULL;
467
468   return (status);
469 } /* }}} int network_dispatch_notification */
470
471 #if HAVE_GCRYPT_H
472 static int network_init_gcrypt(void) /* {{{ */
473 {
474   gcry_error_t err;
475
476   /* http://lists.gnupg.org/pipermail/gcrypt-devel/2003-August/000458.html
477    * Because you can't know in a library whether another library has
478    * already initialized the library */
479   if (gcry_control(GCRYCTL_ANY_INITIALIZATION_P))
480     return (0);
481
482 /* http://www.gnupg.org/documentation/manuals/gcrypt/Multi_002dThreading.html
483  * To ensure thread-safety, it's important to set GCRYCTL_SET_THREAD_CBS
484  * *before* initalizing Libgcrypt with gcry_check_version(), which itself must
485  * be called before any other gcry_* function. GCRYCTL_ANY_INITIALIZATION_P
486  * above doesn't count, as it doesn't implicitly initalize Libgcrypt.
487  *
488  * tl;dr: keep all these gry_* statements in this exact order please. */
489 #if GCRYPT_VERSION_NUMBER < 0x010600
490   err = gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
491   if (err) {
492     ERROR("network plugin: gcry_control (GCRYCTL_SET_THREAD_CBS) failed: %s",
493           gcry_strerror(err));
494     return (-1);
495   }
496 #endif
497
498   gcry_check_version(NULL);
499
500   err = gcry_control(GCRYCTL_INIT_SECMEM, 32768);
501   if (err) {
502     ERROR("network plugin: gcry_control (GCRYCTL_INIT_SECMEM) failed: %s",
503           gcry_strerror(err));
504     return (-1);
505   }
506
507   gcry_control(GCRYCTL_INITIALIZATION_FINISHED);
508   return (0);
509 } /* }}} int network_init_gcrypt */
510
511 static gcry_cipher_hd_t network_get_aes256_cypher(sockent_t *se, /* {{{ */
512                                                   const void *iv,
513                                                   size_t iv_size,
514                                                   const char *username) {
515   gcry_error_t err;
516   gcry_cipher_hd_t *cyper_ptr;
517   unsigned char password_hash[32];
518
519   if (se->type == SOCKENT_TYPE_CLIENT) {
520     cyper_ptr = &se->data.client.cypher;
521     memcpy(password_hash, se->data.client.password_hash, sizeof(password_hash));
522   } else {
523     char *secret;
524
525     cyper_ptr = &se->data.server.cypher;
526
527     if (username == NULL)
528       return (NULL);
529
530     secret = fbh_get(se->data.server.userdb, username);
531     if (secret == NULL)
532       return (NULL);
533
534     gcry_md_hash_buffer(GCRY_MD_SHA256, password_hash, secret, strlen(secret));
535
536     sfree(secret);
537   }
538
539   if (*cyper_ptr == NULL) {
540     err = gcry_cipher_open(cyper_ptr, GCRY_CIPHER_AES256, GCRY_CIPHER_MODE_OFB,
541                            /* flags = */ 0);
542     if (err != 0) {
543       ERROR("network plugin: gcry_cipher_open returned: %s",
544             gcry_strerror(err));
545       *cyper_ptr = NULL;
546       return (NULL);
547     }
548   } else {
549     gcry_cipher_reset(*cyper_ptr);
550   }
551   assert(*cyper_ptr != NULL);
552
553   err = gcry_cipher_setkey(*cyper_ptr, password_hash, sizeof(password_hash));
554   if (err != 0) {
555     ERROR("network plugin: gcry_cipher_setkey returned: %s",
556           gcry_strerror(err));
557     gcry_cipher_close(*cyper_ptr);
558     *cyper_ptr = NULL;
559     return (NULL);
560   }
561
562   err = gcry_cipher_setiv(*cyper_ptr, iv, iv_size);
563   if (err != 0) {
564     ERROR("network plugin: gcry_cipher_setkey returned: %s",
565           gcry_strerror(err));
566     gcry_cipher_close(*cyper_ptr);
567     *cyper_ptr = NULL;
568     return (NULL);
569   }
570
571   return (*cyper_ptr);
572 } /* }}} int network_get_aes256_cypher */
573 #endif /* HAVE_GCRYPT_H */
574
575 static int write_part_values(char **ret_buffer, size_t *ret_buffer_len,
576                              const data_set_t *ds, const value_list_t *vl) {
577   char *packet_ptr;
578   size_t packet_len;
579   int num_values;
580
581   part_header_t pkg_ph;
582   uint16_t pkg_num_values;
583   uint8_t *pkg_values_types;
584   value_t *pkg_values;
585
586   size_t offset;
587
588   num_values = vl->values_len;
589   packet_len = sizeof(part_header_t) + sizeof(uint16_t) +
590                (num_values * sizeof(uint8_t)) + (num_values * sizeof(value_t));
591
592   if (*ret_buffer_len < packet_len)
593     return (-1);
594
595   pkg_values_types = malloc(num_values * sizeof(*pkg_values_types));
596   if (pkg_values_types == NULL) {
597     ERROR("network plugin: write_part_values: malloc failed.");
598     return (-1);
599   }
600
601   pkg_values = malloc(num_values * sizeof(*pkg_values));
602   if (pkg_values == NULL) {
603     free(pkg_values_types);
604     ERROR("network plugin: write_part_values: malloc failed.");
605     return (-1);
606   }
607
608   pkg_ph.type = htons(TYPE_VALUES);
609   pkg_ph.length = htons(packet_len);
610
611   pkg_num_values = htons((uint16_t)vl->values_len);
612
613   for (int i = 0; i < num_values; i++) {
614     pkg_values_types[i] = (uint8_t)ds->ds[i].type;
615     switch (ds->ds[i].type) {
616     case DS_TYPE_COUNTER:
617       pkg_values[i].counter = htonll(vl->values[i].counter);
618       break;
619
620     case DS_TYPE_GAUGE:
621       pkg_values[i].gauge = htond(vl->values[i].gauge);
622       break;
623
624     case DS_TYPE_DERIVE:
625       pkg_values[i].derive = htonll(vl->values[i].derive);
626       break;
627
628     case DS_TYPE_ABSOLUTE:
629       pkg_values[i].absolute = htonll(vl->values[i].absolute);
630       break;
631
632     default:
633       free(pkg_values_types);
634       free(pkg_values);
635       ERROR("network plugin: write_part_values: "
636             "Unknown data source type: %i",
637             ds->ds[i].type);
638       return (-1);
639     } /* switch (ds->ds[i].type) */
640   }   /* for (num_values) */
641
642   /*
643    * Use `memcpy' to write everything to the buffer, because the pointer
644    * may be unaligned and some architectures, such as SPARC, can't handle
645    * that.
646    */
647   packet_ptr = *ret_buffer;
648   offset = 0;
649   memcpy(packet_ptr + offset, &pkg_ph, sizeof(pkg_ph));
650   offset += sizeof(pkg_ph);
651   memcpy(packet_ptr + offset, &pkg_num_values, sizeof(pkg_num_values));
652   offset += sizeof(pkg_num_values);
653   memcpy(packet_ptr + offset, pkg_values_types, num_values * sizeof(uint8_t));
654   offset += num_values * sizeof(uint8_t);
655   memcpy(packet_ptr + offset, pkg_values, num_values * sizeof(value_t));
656   offset += num_values * sizeof(value_t);
657
658   assert(offset == packet_len);
659
660   *ret_buffer = packet_ptr + packet_len;
661   *ret_buffer_len -= packet_len;
662
663   free(pkg_values_types);
664   free(pkg_values);
665
666   return (0);
667 } /* int write_part_values */
668
669 static int write_part_number(char **ret_buffer, size_t *ret_buffer_len,
670                              int type, uint64_t value) {
671   char *packet_ptr;
672   size_t packet_len;
673
674   part_header_t pkg_head;
675   uint64_t pkg_value;
676
677   size_t offset;
678
679   packet_len = sizeof(pkg_head) + sizeof(pkg_value);
680
681   if (*ret_buffer_len < packet_len)
682     return (-1);
683
684   pkg_head.type = htons(type);
685   pkg_head.length = htons(packet_len);
686   pkg_value = htonll(value);
687
688   packet_ptr = *ret_buffer;
689   offset = 0;
690   memcpy(packet_ptr + offset, &pkg_head, sizeof(pkg_head));
691   offset += sizeof(pkg_head);
692   memcpy(packet_ptr + offset, &pkg_value, sizeof(pkg_value));
693   offset += sizeof(pkg_value);
694
695   assert(offset == packet_len);
696
697   *ret_buffer = packet_ptr + packet_len;
698   *ret_buffer_len -= packet_len;
699
700   return (0);
701 } /* int write_part_number */
702
703 static int write_part_string(char **ret_buffer, size_t *ret_buffer_len,
704                              int type, const char *str, size_t str_len) {
705   char *buffer;
706   size_t buffer_len;
707
708   uint16_t pkg_type;
709   uint16_t pkg_length;
710
711   size_t offset;
712
713   buffer_len = 2 * sizeof(uint16_t) + str_len + 1;
714   if (*ret_buffer_len < buffer_len)
715     return (-1);
716
717   pkg_type = htons(type);
718   pkg_length = htons(buffer_len);
719
720   buffer = *ret_buffer;
721   offset = 0;
722   memcpy(buffer + offset, (void *)&pkg_type, sizeof(pkg_type));
723   offset += sizeof(pkg_type);
724   memcpy(buffer + offset, (void *)&pkg_length, sizeof(pkg_length));
725   offset += sizeof(pkg_length);
726   memcpy(buffer + offset, str, str_len);
727   offset += str_len;
728   memset(buffer + offset, '\0', 1);
729   offset += 1;
730
731   assert(offset == buffer_len);
732
733   *ret_buffer = buffer + buffer_len;
734   *ret_buffer_len -= buffer_len;
735
736   return (0);
737 } /* int write_part_string */
738
739 static int parse_part_values(void **ret_buffer, size_t *ret_buffer_len,
740                              value_t **ret_values, size_t *ret_num_values) {
741   char *buffer = *ret_buffer;
742   size_t buffer_len = *ret_buffer_len;
743
744   uint16_t tmp16;
745   size_t exp_size;
746
747   uint16_t pkg_length;
748   uint16_t pkg_type;
749   size_t pkg_numval;
750
751   uint8_t *pkg_types;
752   value_t *pkg_values;
753
754   if (buffer_len < 15) {
755     NOTICE("network plugin: packet is too short: "
756            "buffer_len = %zu",
757            buffer_len);
758     return (-1);
759   }
760
761   memcpy((void *)&tmp16, buffer, sizeof(tmp16));
762   buffer += sizeof(tmp16);
763   pkg_type = ntohs(tmp16);
764
765   memcpy((void *)&tmp16, buffer, sizeof(tmp16));
766   buffer += sizeof(tmp16);
767   pkg_length = ntohs(tmp16);
768
769   memcpy((void *)&tmp16, buffer, sizeof(tmp16));
770   buffer += sizeof(tmp16);
771   pkg_numval = (size_t)ntohs(tmp16);
772
773   assert(pkg_type == TYPE_VALUES);
774
775   exp_size =
776       3 * sizeof(uint16_t) + pkg_numval * (sizeof(uint8_t) + sizeof(value_t));
777   if (buffer_len < exp_size) {
778     WARNING("network plugin: parse_part_values: "
779             "Packet too short: "
780             "Chunk of size %zu expected, "
781             "but buffer has only %zu bytes left.",
782             exp_size, buffer_len);
783     return (-1);
784   }
785   assert(pkg_numval <= ((buffer_len - 6) / 9));
786
787   if (pkg_length != exp_size) {
788     WARNING("network plugin: parse_part_values: "
789             "Length and number of values "
790             "in the packet don't match.");
791     return (-1);
792   }
793
794   pkg_types = calloc(pkg_numval, sizeof(*pkg_types));
795   pkg_values = calloc(pkg_numval, sizeof(*pkg_values));
796   if ((pkg_types == NULL) || (pkg_values == NULL)) {
797     sfree(pkg_types);
798     sfree(pkg_values);
799     ERROR("network plugin: parse_part_values: calloc failed.");
800     return (-1);
801   }
802
803   memcpy(pkg_types, buffer, pkg_numval * sizeof(*pkg_types));
804   buffer += pkg_numval * sizeof(*pkg_types);
805   memcpy(pkg_values, buffer, pkg_numval * sizeof(*pkg_values));
806   buffer += pkg_numval * sizeof(*pkg_values);
807
808   for (size_t i = 0; i < pkg_numval; i++) {
809     switch (pkg_types[i]) {
810     case DS_TYPE_COUNTER:
811       pkg_values[i].counter = (counter_t)ntohll(pkg_values[i].counter);
812       break;
813
814     case DS_TYPE_GAUGE:
815       pkg_values[i].gauge = (gauge_t)ntohd(pkg_values[i].gauge);
816       break;
817
818     case DS_TYPE_DERIVE:
819       pkg_values[i].derive = (derive_t)ntohll(pkg_values[i].derive);
820       break;
821
822     case DS_TYPE_ABSOLUTE:
823       pkg_values[i].absolute = (absolute_t)ntohll(pkg_values[i].absolute);
824       break;
825
826     default:
827       NOTICE("network plugin: parse_part_values: "
828              "Don't know how to handle data source type %" PRIu8,
829              pkg_types[i]);
830       sfree(pkg_types);
831       sfree(pkg_values);
832       return (-1);
833     } /* switch (pkg_types[i]) */
834   }
835
836   *ret_buffer = buffer;
837   *ret_buffer_len = buffer_len - pkg_length;
838   *ret_num_values = pkg_numval;
839   *ret_values = pkg_values;
840
841   sfree(pkg_types);
842
843   return (0);
844 } /* int parse_part_values */
845
846 static int parse_part_number(void **ret_buffer, size_t *ret_buffer_len,
847                              uint64_t *value) {
848   char *buffer = *ret_buffer;
849   size_t buffer_len = *ret_buffer_len;
850
851   uint16_t tmp16;
852   uint64_t tmp64;
853   size_t exp_size = 2 * sizeof(uint16_t) + sizeof(uint64_t);
854
855   uint16_t pkg_length;
856
857   if (buffer_len < exp_size) {
858     WARNING("network plugin: parse_part_number: "
859             "Packet too short: "
860             "Chunk of size %zu expected, "
861             "but buffer has only %zu bytes left.",
862             exp_size, buffer_len);
863     return (-1);
864   }
865
866   memcpy((void *)&tmp16, buffer, sizeof(tmp16));
867   buffer += sizeof(tmp16);
868   /* pkg_type = ntohs (tmp16); */
869
870   memcpy((void *)&tmp16, buffer, sizeof(tmp16));
871   buffer += sizeof(tmp16);
872   pkg_length = ntohs(tmp16);
873
874   memcpy((void *)&tmp64, buffer, sizeof(tmp64));
875   buffer += sizeof(tmp64);
876   *value = ntohll(tmp64);
877
878   *ret_buffer = buffer;
879   *ret_buffer_len = buffer_len - pkg_length;
880
881   return (0);
882 } /* int parse_part_number */
883
884 static int parse_part_string(void **ret_buffer, size_t *ret_buffer_len,
885                              char *output, size_t const output_len) {
886   char *buffer = *ret_buffer;
887   size_t buffer_len = *ret_buffer_len;
888
889   uint16_t tmp16;
890   size_t const header_size = 2 * sizeof(uint16_t);
891
892   uint16_t pkg_length;
893   size_t payload_size;
894
895   if (output_len == 0)
896     return (EINVAL);
897
898   if (buffer_len < header_size) {
899     WARNING("network plugin: parse_part_string: "
900             "Packet too short: "
901             "Chunk of at least size %zu expected, "
902             "but buffer has only %zu bytes left.",
903             header_size, buffer_len);
904     return (-1);
905   }
906
907   memcpy((void *)&tmp16, buffer, sizeof(tmp16));
908   buffer += sizeof(tmp16);
909   /* pkg_type = ntohs (tmp16); */
910
911   memcpy((void *)&tmp16, buffer, sizeof(tmp16));
912   buffer += sizeof(tmp16);
913   pkg_length = ntohs(tmp16);
914   payload_size = ((size_t)pkg_length) - header_size;
915
916   /* Check that packet fits in the input buffer */
917   if (pkg_length > buffer_len) {
918     WARNING("network plugin: parse_part_string: "
919             "Packet too big: "
920             "Chunk of size %" PRIu16 " received, "
921             "but buffer has only %zu bytes left.",
922             pkg_length, buffer_len);
923     return (-1);
924   }
925
926   /* Check that pkg_length is in the valid range */
927   if (pkg_length <= header_size) {
928     WARNING("network plugin: parse_part_string: "
929             "Packet too short: "
930             "Header claims this packet is only %hu "
931             "bytes long.",
932             pkg_length);
933     return (-1);
934   }
935
936   /* Check that the package data fits into the output buffer.
937    * The previous if-statement ensures that:
938    * `pkg_length > header_size' */
939   if (output_len < payload_size) {
940     WARNING("network plugin: parse_part_string: "
941             "Buffer too small: "
942             "Output buffer holds %zu bytes, "
943             "which is too small to hold the received "
944             "%zu byte string.",
945             output_len, payload_size);
946     return (-1);
947   }
948
949   /* All sanity checks successfull, let's copy the data over */
950   memcpy((void *)output, (void *)buffer, payload_size);
951   buffer += payload_size;
952
953   /* For some very weird reason '\0' doesn't do the trick on SPARC in
954    * this statement. */
955   if (output[payload_size - 1] != 0) {
956     WARNING("network plugin: parse_part_string: "
957             "Received string does not end "
958             "with a NULL-byte.");
959     return (-1);
960   }
961
962   *ret_buffer = buffer;
963   *ret_buffer_len = buffer_len - pkg_length;
964
965   return (0);
966 } /* int parse_part_string */
967
968 /* Forward declaration: parse_part_sign_sha256 and parse_part_encr_aes256 call
969  * parse_packet and vice versa. */
970 #define PP_SIGNED 0x01
971 #define PP_ENCRYPTED 0x02
972 static int parse_packet(sockent_t *se, void *buffer, size_t buffer_size,
973                         int flags, const char *username);
974
975 #define BUFFER_READ(p, s)                                                      \
976   do {                                                                         \
977     memcpy((p), buffer + buffer_offset, (s));                                  \
978     buffer_offset += (s);                                                      \
979   } while (0)
980
981 #if HAVE_GCRYPT_H
982 static int parse_part_sign_sha256(sockent_t *se, /* {{{ */
983                                   void **ret_buffer, size_t *ret_buffer_len,
984                                   int flags) {
985   static c_complain_t complain_no_users = C_COMPLAIN_INIT_STATIC;
986
987   char *buffer;
988   size_t buffer_len;
989   size_t buffer_offset;
990
991   size_t username_len;
992   char *secret;
993
994   part_signature_sha256_t pss;
995   uint16_t pss_head_length;
996   char hash[sizeof(pss.hash)];
997
998   gcry_md_hd_t hd;
999   gcry_error_t err;
1000   unsigned char *hash_ptr;
1001
1002   buffer = *ret_buffer;
1003   buffer_len = *ret_buffer_len;
1004   buffer_offset = 0;
1005
1006   if (se->data.server.userdb == NULL) {
1007     c_complain(
1008         LOG_NOTICE, &complain_no_users,
1009         "network plugin: Received signed network packet but can't verify it "
1010         "because no user DB has been configured. Will accept it.");
1011     return (0);
1012   }
1013
1014   /* Check if the buffer has enough data for this structure. */
1015   if (buffer_len <= PART_SIGNATURE_SHA256_SIZE)
1016     return (-ENOMEM);
1017
1018   /* Read type and length header */
1019   BUFFER_READ(&pss.head.type, sizeof(pss.head.type));
1020   BUFFER_READ(&pss.head.length, sizeof(pss.head.length));
1021   pss_head_length = ntohs(pss.head.length);
1022
1023   /* Check if the `pss_head_length' is within bounds. */
1024   if ((pss_head_length <= PART_SIGNATURE_SHA256_SIZE) ||
1025       (pss_head_length > buffer_len)) {
1026     ERROR("network plugin: HMAC-SHA-256 with invalid length received.");
1027     return (-1);
1028   }
1029
1030   /* Copy the hash. */
1031   BUFFER_READ(pss.hash, sizeof(pss.hash));
1032
1033   /* Calculate username length (without null byte) and allocate memory */
1034   username_len = pss_head_length - PART_SIGNATURE_SHA256_SIZE;
1035   pss.username = malloc(username_len + 1);
1036   if (pss.username == NULL)
1037     return (-ENOMEM);
1038
1039   /* Read the username */
1040   BUFFER_READ(pss.username, username_len);
1041   pss.username[username_len] = 0;
1042
1043   assert(buffer_offset == pss_head_length);
1044
1045   /* Query the password */
1046   secret = fbh_get(se->data.server.userdb, pss.username);
1047   if (secret == NULL) {
1048     ERROR("network plugin: Unknown user: %s", pss.username);
1049     sfree(pss.username);
1050     return (-ENOENT);
1051   }
1052
1053   /* Create a hash device and check the HMAC */
1054   hd = NULL;
1055   err = gcry_md_open(&hd, GCRY_MD_SHA256, GCRY_MD_FLAG_HMAC);
1056   if (err != 0) {
1057     ERROR("network plugin: Creating HMAC-SHA-256 object failed: %s",
1058           gcry_strerror(err));
1059     sfree(secret);
1060     sfree(pss.username);
1061     return (-1);
1062   }
1063
1064   err = gcry_md_setkey(hd, secret, strlen(secret));
1065   if (err != 0) {
1066     ERROR("network plugin: gcry_md_setkey failed: %s", gcry_strerror(err));
1067     gcry_md_close(hd);
1068     sfree(secret);
1069     sfree(pss.username);
1070     return (-1);
1071   }
1072
1073   gcry_md_write(hd, buffer + PART_SIGNATURE_SHA256_SIZE,
1074                 buffer_len - PART_SIGNATURE_SHA256_SIZE);
1075   hash_ptr = gcry_md_read(hd, GCRY_MD_SHA256);
1076   if (hash_ptr == NULL) {
1077     ERROR("network plugin: gcry_md_read failed.");
1078     gcry_md_close(hd);
1079     sfree(secret);
1080     sfree(pss.username);
1081     return (-1);
1082   }
1083   memcpy(hash, hash_ptr, sizeof(hash));
1084
1085   /* Clean up */
1086   gcry_md_close(hd);
1087   hd = NULL;
1088
1089   if (memcmp(pss.hash, hash, sizeof(pss.hash)) != 0) {
1090     WARNING("network plugin: Verifying HMAC-SHA-256 signature failed: "
1091             "Hash mismatch. Username: %s",
1092             pss.username);
1093   } else {
1094     parse_packet(se, buffer + buffer_offset, buffer_len - buffer_offset,
1095                  flags | PP_SIGNED, pss.username);
1096   }
1097
1098   sfree(secret);
1099   sfree(pss.username);
1100
1101   *ret_buffer = buffer + buffer_len;
1102   *ret_buffer_len = 0;
1103
1104   return (0);
1105 } /* }}} int parse_part_sign_sha256 */
1106 /* #endif HAVE_GCRYPT_H */
1107
1108 #else  /* if !HAVE_GCRYPT_H */
1109 static int parse_part_sign_sha256(sockent_t *se, /* {{{ */
1110                                   void **ret_buffer, size_t *ret_buffer_size,
1111                                   int flags) {
1112   static int warning_has_been_printed = 0;
1113
1114   char *buffer;
1115   size_t buffer_size;
1116   size_t buffer_offset;
1117   uint16_t part_len;
1118
1119   part_signature_sha256_t pss;
1120
1121   buffer = *ret_buffer;
1122   buffer_size = *ret_buffer_size;
1123   buffer_offset = 0;
1124
1125   if (buffer_size <= PART_SIGNATURE_SHA256_SIZE)
1126     return (-ENOMEM);
1127
1128   BUFFER_READ(&pss.head.type, sizeof(pss.head.type));
1129   BUFFER_READ(&pss.head.length, sizeof(pss.head.length));
1130   part_len = ntohs(pss.head.length);
1131
1132   if ((part_len <= PART_SIGNATURE_SHA256_SIZE) || (part_len > buffer_size))
1133     return (-EINVAL);
1134
1135   if (warning_has_been_printed == 0) {
1136     WARNING("network plugin: Received signed packet, but the network "
1137             "plugin was not linked with libgcrypt, so I cannot "
1138             "verify the signature. The packet will be accepted.");
1139     warning_has_been_printed = 1;
1140   }
1141
1142   parse_packet(se, buffer + part_len, buffer_size - part_len, flags,
1143                /* username = */ NULL);
1144
1145   *ret_buffer = buffer + buffer_size;
1146   *ret_buffer_size = 0;
1147
1148   return (0);
1149 } /* }}} int parse_part_sign_sha256 */
1150 #endif /* !HAVE_GCRYPT_H */
1151
1152 #if HAVE_GCRYPT_H
1153 static int parse_part_encr_aes256(sockent_t *se, /* {{{ */
1154                                   void **ret_buffer, size_t *ret_buffer_len,
1155                                   int flags) {
1156   char *buffer = *ret_buffer;
1157   size_t buffer_len = *ret_buffer_len;
1158   size_t payload_len;
1159   size_t part_size;
1160   size_t buffer_offset;
1161   uint16_t username_len;
1162   part_encryption_aes256_t pea;
1163   unsigned char hash[sizeof(pea.hash)] = {0};
1164
1165   gcry_cipher_hd_t cypher;
1166   gcry_error_t err;
1167
1168   /* Make sure at least the header if available. */
1169   if (buffer_len <= PART_ENCRYPTION_AES256_SIZE) {
1170     NOTICE("network plugin: parse_part_encr_aes256: "
1171            "Discarding short packet.");
1172     return (-1);
1173   }
1174
1175   buffer_offset = 0;
1176
1177   /* Copy the unencrypted information into `pea'. */
1178   BUFFER_READ(&pea.head.type, sizeof(pea.head.type));
1179   BUFFER_READ(&pea.head.length, sizeof(pea.head.length));
1180
1181   /* Check the `part size'. */
1182   part_size = ntohs(pea.head.length);
1183   if ((part_size <= PART_ENCRYPTION_AES256_SIZE) || (part_size > buffer_len)) {
1184     NOTICE("network plugin: parse_part_encr_aes256: "
1185            "Discarding part with invalid size.");
1186     return (-1);
1187   }
1188
1189   /* Read the username */
1190   BUFFER_READ(&username_len, sizeof(username_len));
1191   username_len = ntohs(username_len);
1192
1193   if ((username_len == 0) ||
1194       (username_len > (part_size - (PART_ENCRYPTION_AES256_SIZE + 1)))) {
1195     NOTICE("network plugin: parse_part_encr_aes256: "
1196            "Discarding part with invalid username length.");
1197     return (-1);
1198   }
1199
1200   assert(username_len > 0);
1201   pea.username = malloc(username_len + 1);
1202   if (pea.username == NULL)
1203     return (-ENOMEM);
1204   BUFFER_READ(pea.username, username_len);
1205   pea.username[username_len] = 0;
1206
1207   /* Last but not least, the initialization vector */
1208   BUFFER_READ(pea.iv, sizeof(pea.iv));
1209
1210   /* Make sure we are at the right position */
1211   assert(buffer_offset ==
1212          (username_len + PART_ENCRYPTION_AES256_SIZE - sizeof(pea.hash)));
1213
1214   cypher = network_get_aes256_cypher(se, pea.iv, sizeof(pea.iv), pea.username);
1215   if (cypher == NULL) {
1216     ERROR("network plugin: Failed to get cypher. Username: %s", pea.username);
1217     sfree(pea.username);
1218     return (-1);
1219   }
1220
1221   payload_len = part_size - (PART_ENCRYPTION_AES256_SIZE + username_len);
1222   assert(payload_len > 0);
1223
1224   /* Decrypt the packet in-place */
1225   err = gcry_cipher_decrypt(cypher, buffer + buffer_offset,
1226                             part_size - buffer_offset,
1227                             /* in = */ NULL, /* in len = */ 0);
1228   if (err != 0) {
1229     sfree(pea.username);
1230     ERROR("network plugin: gcry_cipher_decrypt returned: %s. Username: %s",
1231           gcry_strerror(err), pea.username);
1232     return (-1);
1233   }
1234
1235   /* Read the hash */
1236   BUFFER_READ(pea.hash, sizeof(pea.hash));
1237
1238   /* Make sure we're at the right position - again */
1239   assert(buffer_offset == (username_len + PART_ENCRYPTION_AES256_SIZE));
1240   assert(buffer_offset == (part_size - payload_len));
1241
1242   /* Check hash sum */
1243   gcry_md_hash_buffer(GCRY_MD_SHA1, hash, buffer + buffer_offset, payload_len);
1244   if (memcmp(hash, pea.hash, sizeof(hash)) != 0) {
1245     ERROR("network plugin: Checksum mismatch. Username: %s", pea.username);
1246     sfree(pea.username);
1247     return (-1);
1248   }
1249
1250   parse_packet(se, buffer + buffer_offset, payload_len, flags | PP_ENCRYPTED,
1251                pea.username);
1252
1253   /* XXX: Free pea.username?!? */
1254
1255   /* Update return values */
1256   *ret_buffer = buffer + part_size;
1257   *ret_buffer_len = buffer_len - part_size;
1258
1259   sfree(pea.username);
1260
1261   return (0);
1262 } /* }}} int parse_part_encr_aes256 */
1263 /* #endif HAVE_GCRYPT_H */
1264
1265 #else  /* if !HAVE_GCRYPT_H */
1266 static int parse_part_encr_aes256(sockent_t *se, /* {{{ */
1267                                   void **ret_buffer, size_t *ret_buffer_size,
1268                                   int flags) {
1269   static int warning_has_been_printed = 0;
1270
1271   char *buffer;
1272   size_t buffer_size;
1273   size_t buffer_offset;
1274
1275   part_header_t ph;
1276   size_t ph_length;
1277
1278   buffer = *ret_buffer;
1279   buffer_size = *ret_buffer_size;
1280   buffer_offset = 0;
1281
1282   /* parse_packet assures this minimum size. */
1283   assert(buffer_size >= (sizeof(ph.type) + sizeof(ph.length)));
1284
1285   BUFFER_READ(&ph.type, sizeof(ph.type));
1286   BUFFER_READ(&ph.length, sizeof(ph.length));
1287   ph_length = ntohs(ph.length);
1288
1289   if ((ph_length <= PART_ENCRYPTION_AES256_SIZE) || (ph_length > buffer_size)) {
1290     ERROR("network plugin: AES-256 encrypted part "
1291           "with invalid length received.");
1292     return (-1);
1293   }
1294
1295   if (warning_has_been_printed == 0) {
1296     WARNING("network plugin: Received encrypted packet, but the network "
1297             "plugin was not linked with libgcrypt, so I cannot "
1298             "decrypt it. The part will be discarded.");
1299     warning_has_been_printed = 1;
1300   }
1301
1302   *ret_buffer = (void *)(((char *)*ret_buffer) + ph_length);
1303   *ret_buffer_size -= ph_length;
1304
1305   return (0);
1306 } /* }}} int parse_part_encr_aes256 */
1307 #endif /* !HAVE_GCRYPT_H */
1308
1309 #undef BUFFER_READ
1310
1311 static int parse_packet(sockent_t *se, /* {{{ */
1312                         void *buffer, size_t buffer_size, int flags,
1313                         const char *username) {
1314   int status;
1315
1316   value_list_t vl = VALUE_LIST_INIT;
1317   notification_t n = {0};
1318
1319 #if HAVE_GCRYPT_H
1320   int packet_was_signed = (flags & PP_SIGNED);
1321   int packet_was_encrypted = (flags & PP_ENCRYPTED);
1322   int printed_ignore_warning = 0;
1323 #endif /* HAVE_GCRYPT_H */
1324
1325   memset(&vl, '\0', sizeof(vl));
1326   status = 0;
1327
1328   while ((status == 0) && (0 < buffer_size) &&
1329          ((unsigned int)buffer_size > sizeof(part_header_t))) {
1330     uint16_t pkg_length;
1331     uint16_t pkg_type;
1332
1333     memcpy((void *)&pkg_type, (void *)buffer, sizeof(pkg_type));
1334     memcpy((void *)&pkg_length, (void *)(((char *)buffer) + sizeof(pkg_type)),
1335            sizeof(pkg_length));
1336
1337     pkg_length = ntohs(pkg_length);
1338     pkg_type = ntohs(pkg_type);
1339
1340     if (pkg_length > buffer_size)
1341       break;
1342     /* Ensure that this loop terminates eventually */
1343     if (pkg_length < (2 * sizeof(uint16_t)))
1344       break;
1345
1346     if (pkg_type == TYPE_ENCR_AES256) {
1347       status = parse_part_encr_aes256(se, &buffer, &buffer_size, flags);
1348       if (status != 0) {
1349         ERROR("network plugin: Decrypting AES256 "
1350               "part failed "
1351               "with status %i.",
1352               status);
1353         break;
1354       }
1355     }
1356 #if HAVE_GCRYPT_H
1357     else if ((se->data.server.security_level == SECURITY_LEVEL_ENCRYPT) &&
1358              (packet_was_encrypted == 0)) {
1359       if (printed_ignore_warning == 0) {
1360         INFO("network plugin: Unencrypted packet or "
1361              "part has been ignored.");
1362         printed_ignore_warning = 1;
1363       }
1364       buffer = ((char *)buffer) + pkg_length;
1365       buffer_size -= (size_t)pkg_length;
1366       continue;
1367     }
1368 #endif /* HAVE_GCRYPT_H */
1369     else if (pkg_type == TYPE_SIGN_SHA256) {
1370       status = parse_part_sign_sha256(se, &buffer, &buffer_size, flags);
1371       if (status != 0) {
1372         ERROR("network plugin: Verifying HMAC-SHA-256 "
1373               "signature failed "
1374               "with status %i.",
1375               status);
1376         break;
1377       }
1378     }
1379 #if HAVE_GCRYPT_H
1380     else if ((se->data.server.security_level == SECURITY_LEVEL_SIGN) &&
1381              (packet_was_encrypted == 0) && (packet_was_signed == 0)) {
1382       if (printed_ignore_warning == 0) {
1383         INFO("network plugin: Unsigned packet or "
1384              "part has been ignored.");
1385         printed_ignore_warning = 1;
1386       }
1387       buffer = ((char *)buffer) + pkg_length;
1388       buffer_size -= (size_t)pkg_length;
1389       continue;
1390     }
1391 #endif /* HAVE_GCRYPT_H */
1392     else if (pkg_type == TYPE_VALUES) {
1393       status =
1394           parse_part_values(&buffer, &buffer_size, &vl.values, &vl.values_len);
1395       if (status != 0)
1396         break;
1397
1398       network_dispatch_values(&vl, username);
1399
1400       sfree(vl.values);
1401     } else if (pkg_type == TYPE_TIME) {
1402       uint64_t tmp = 0;
1403       status = parse_part_number(&buffer, &buffer_size, &tmp);
1404       if (status == 0) {
1405         vl.time = TIME_T_TO_CDTIME_T(tmp);
1406         n.time = TIME_T_TO_CDTIME_T(tmp);
1407       }
1408     } else if (pkg_type == TYPE_TIME_HR) {
1409       uint64_t tmp = 0;
1410       status = parse_part_number(&buffer, &buffer_size, &tmp);
1411       if (status == 0) {
1412         vl.time = (cdtime_t)tmp;
1413         n.time = (cdtime_t)tmp;
1414       }
1415     } else if (pkg_type == TYPE_INTERVAL) {
1416       uint64_t tmp = 0;
1417       status = parse_part_number(&buffer, &buffer_size, &tmp);
1418       if (status == 0)
1419         vl.interval = TIME_T_TO_CDTIME_T(tmp);
1420     } else if (pkg_type == TYPE_INTERVAL_HR) {
1421       uint64_t tmp = 0;
1422       status = parse_part_number(&buffer, &buffer_size, &tmp);
1423       if (status == 0)
1424         vl.interval = (cdtime_t)tmp;
1425     } else if (pkg_type == TYPE_HOST) {
1426       status =
1427           parse_part_string(&buffer, &buffer_size, vl.host, sizeof(vl.host));
1428       if (status == 0)
1429         sstrncpy(n.host, vl.host, sizeof(n.host));
1430     } else if (pkg_type == TYPE_PLUGIN) {
1431       status = parse_part_string(&buffer, &buffer_size, vl.plugin,
1432                                  sizeof(vl.plugin));
1433       if (status == 0)
1434         sstrncpy(n.plugin, vl.plugin, sizeof(n.plugin));
1435     } else if (pkg_type == TYPE_PLUGIN_INSTANCE) {
1436       status = parse_part_string(&buffer, &buffer_size, vl.plugin_instance,
1437                                  sizeof(vl.plugin_instance));
1438       if (status == 0)
1439         sstrncpy(n.plugin_instance, vl.plugin_instance,
1440                  sizeof(n.plugin_instance));
1441     } else if (pkg_type == TYPE_TYPE) {
1442       status =
1443           parse_part_string(&buffer, &buffer_size, vl.type, sizeof(vl.type));
1444       if (status == 0)
1445         sstrncpy(n.type, vl.type, sizeof(n.type));
1446     } else if (pkg_type == TYPE_TYPE_INSTANCE) {
1447       status = parse_part_string(&buffer, &buffer_size, vl.type_instance,
1448                                  sizeof(vl.type_instance));
1449       if (status == 0)
1450         sstrncpy(n.type_instance, vl.type_instance, sizeof(n.type_instance));
1451     } else if (pkg_type == TYPE_MESSAGE) {
1452       status = parse_part_string(&buffer, &buffer_size, n.message,
1453                                  sizeof(n.message));
1454
1455       if (status != 0) {
1456         /* do nothing */
1457       } else if ((n.severity != NOTIF_FAILURE) &&
1458                  (n.severity != NOTIF_WARNING) && (n.severity != NOTIF_OKAY)) {
1459         INFO("network plugin: "
1460              "Ignoring notification with "
1461              "unknown severity %i.",
1462              n.severity);
1463       } else if (n.time == 0) {
1464         INFO("network plugin: "
1465              "Ignoring notification with "
1466              "time == 0.");
1467       } else if (strlen(n.message) == 0) {
1468         INFO("network plugin: "
1469              "Ignoring notification with "
1470              "an empty message.");
1471       } else {
1472         network_dispatch_notification(&n);
1473       }
1474     } else if (pkg_type == TYPE_SEVERITY) {
1475       uint64_t tmp = 0;
1476       status = parse_part_number(&buffer, &buffer_size, &tmp);
1477       if (status == 0)
1478         n.severity = (int)tmp;
1479     } else {
1480       DEBUG("network plugin: parse_packet: Unknown part"
1481             " type: 0x%04hx",
1482             pkg_type);
1483       buffer = ((char *)buffer) + pkg_length;
1484       buffer_size -= (size_t)pkg_length;
1485     }
1486   } /* while (buffer_size > sizeof (part_header_t)) */
1487
1488   if (status == 0 && buffer_size > 0)
1489     WARNING("network plugin: parse_packet: Received truncated "
1490             "packet, try increasing `MaxPacketSize'");
1491
1492   return (status);
1493 } /* }}} int parse_packet */
1494
1495 static void free_sockent_client(struct sockent_client *sec) /* {{{ */
1496 {
1497   if (sec->fd >= 0) {
1498     close(sec->fd);
1499     sec->fd = -1;
1500   }
1501   sfree(sec->addr);
1502 #if HAVE_GCRYPT_H
1503   sfree(sec->username);
1504   sfree(sec->password);
1505   if (sec->cypher != NULL)
1506     gcry_cipher_close(sec->cypher);
1507 #endif
1508 } /* }}} void free_sockent_client */
1509
1510 static void free_sockent_server(struct sockent_server *ses) /* {{{ */
1511 {
1512   for (size_t i = 0; i < ses->fd_num; i++) {
1513     if (ses->fd[i] >= 0) {
1514       close(ses->fd[i]);
1515       ses->fd[i] = -1;
1516     }
1517   }
1518
1519   sfree(ses->fd);
1520 #if HAVE_GCRYPT_H
1521   sfree(ses->auth_file);
1522   fbh_destroy(ses->userdb);
1523   if (ses->cypher != NULL)
1524     gcry_cipher_close(ses->cypher);
1525 #endif
1526 } /* }}} void free_sockent_server */
1527
1528 static void sockent_destroy(sockent_t *se) /* {{{ */
1529 {
1530   sockent_t *next;
1531
1532   DEBUG("network plugin: sockent_destroy (se = %p);", (void *)se);
1533
1534   while (se != NULL) {
1535     next = se->next;
1536
1537     sfree(se->node);
1538     sfree(se->service);
1539
1540     if (se->type == SOCKENT_TYPE_CLIENT)
1541       free_sockent_client(&se->data.client);
1542     else
1543       free_sockent_server(&se->data.server);
1544
1545     sfree(se);
1546     se = next;
1547   }
1548 } /* }}} void sockent_destroy */
1549
1550 /*
1551  * int network_set_ttl
1552  *
1553  * Set the `IP_MULTICAST_TTL', `IP_TTL', `IPV6_MULTICAST_HOPS' or
1554  * `IPV6_UNICAST_HOPS', depending on which option is applicable.
1555  *
1556  * The `struct addrinfo' is used to destinguish between unicast and multicast
1557  * sockets.
1558  */
1559 static int network_set_ttl(const sockent_t *se, const struct addrinfo *ai) {
1560   DEBUG("network plugin: network_set_ttl: network_config_ttl = %i;",
1561         network_config_ttl);
1562
1563   assert(se->type == SOCKENT_TYPE_CLIENT);
1564
1565   if ((network_config_ttl < 1) || (network_config_ttl > 255))
1566     return (-1);
1567
1568   if (ai->ai_family == AF_INET) {
1569     struct sockaddr_in *addr = (struct sockaddr_in *)ai->ai_addr;
1570     int optname;
1571
1572     if (IN_MULTICAST(ntohl(addr->sin_addr.s_addr)))
1573       optname = IP_MULTICAST_TTL;
1574     else
1575       optname = IP_TTL;
1576
1577     if (setsockopt(se->data.client.fd, IPPROTO_IP, optname, &network_config_ttl,
1578                    sizeof(network_config_ttl)) != 0) {
1579       char errbuf[1024];
1580       ERROR("network plugin: setsockopt (ipv4-ttl): %s",
1581             sstrerror(errno, errbuf, sizeof(errbuf)));
1582       return (-1);
1583     }
1584   } else if (ai->ai_family == AF_INET6) {
1585     /* Useful example:
1586      * http://gsyc.escet.urjc.es/~eva/IPv6-web/examples/mcast.html */
1587     struct sockaddr_in6 *addr = (struct sockaddr_in6 *)ai->ai_addr;
1588     int optname;
1589
1590     if (IN6_IS_ADDR_MULTICAST(&addr->sin6_addr))
1591       optname = IPV6_MULTICAST_HOPS;
1592     else
1593       optname = IPV6_UNICAST_HOPS;
1594
1595     if (setsockopt(se->data.client.fd, IPPROTO_IPV6, optname,
1596                    &network_config_ttl, sizeof(network_config_ttl)) != 0) {
1597       char errbuf[1024];
1598       ERROR("network plugin: setsockopt(ipv6-ttl): %s",
1599             sstrerror(errno, errbuf, sizeof(errbuf)));
1600       return (-1);
1601     }
1602   }
1603
1604   return (0);
1605 } /* int network_set_ttl */
1606
1607 static int network_set_interface(const sockent_t *se,
1608                                  const struct addrinfo *ai) /* {{{ */
1609 {
1610   DEBUG("network plugin: network_set_interface: interface index = %i;",
1611         se->interface);
1612
1613   assert(se->type == SOCKENT_TYPE_CLIENT);
1614
1615   if (ai->ai_family == AF_INET) {
1616     struct sockaddr_in *addr = (struct sockaddr_in *)ai->ai_addr;
1617
1618     if (IN_MULTICAST(ntohl(addr->sin_addr.s_addr))) {
1619 #if HAVE_STRUCT_IP_MREQN_IMR_IFINDEX
1620       /* If possible, use the "ip_mreqn" structure which has
1621        * an "interface index" member. Using the interface
1622        * index is preferred here, because of its similarity
1623        * to the way IPv6 handles this. Unfortunately, it
1624        * appears not to be portable. */
1625       struct ip_mreqn mreq = {.imr_multiaddr.s_addr = addr->sin_addr.s_addr,
1626                               .imr_address.s_addr = ntohl(INADDR_ANY),
1627                               .imr_ifindex = se->interface};
1628 #else
1629       struct ip_mreq mreq = {.imr_multiaddr.s_addr = addr->sin_addr.s_addr,
1630                              .imr_interface.s_addr = ntohl(INADDR_ANY)};
1631 #endif
1632
1633       if (setsockopt(se->data.client.fd, IPPROTO_IP, IP_MULTICAST_IF, &mreq,
1634                      sizeof(mreq)) != 0) {
1635         char errbuf[1024];
1636         ERROR("network plugin: setsockopt (ipv4-multicast-if): %s",
1637               sstrerror(errno, errbuf, sizeof(errbuf)));
1638         return (-1);
1639       }
1640
1641       return (0);
1642     }
1643   } else if (ai->ai_family == AF_INET6) {
1644     struct sockaddr_in6 *addr = (struct sockaddr_in6 *)ai->ai_addr;
1645
1646     if (IN6_IS_ADDR_MULTICAST(&addr->sin6_addr)) {
1647       if (setsockopt(se->data.client.fd, IPPROTO_IPV6, IPV6_MULTICAST_IF,
1648                      &se->interface, sizeof(se->interface)) != 0) {
1649         char errbuf[1024];
1650         ERROR("network plugin: setsockopt (ipv6-multicast-if): %s",
1651               sstrerror(errno, errbuf, sizeof(errbuf)));
1652         return (-1);
1653       }
1654
1655       return (0);
1656     }
1657   }
1658
1659   /* else: Not a multicast interface. */
1660   if (se->interface != 0) {
1661 #if defined(HAVE_IF_INDEXTONAME) && HAVE_IF_INDEXTONAME &&                     \
1662     defined(SO_BINDTODEVICE)
1663     char interface_name[IFNAMSIZ];
1664
1665     if (if_indextoname(se->interface, interface_name) == NULL)
1666       return (-1);
1667
1668     DEBUG("network plugin: Binding socket to interface %s", interface_name);
1669
1670     if (setsockopt(se->data.client.fd, SOL_SOCKET, SO_BINDTODEVICE,
1671                    interface_name, sizeof(interface_name)) == -1) {
1672       char errbuf[1024];
1673       ERROR("network plugin: setsockopt (bind-if): %s",
1674             sstrerror(errno, errbuf, sizeof(errbuf)));
1675       return (-1);
1676     }
1677 /* #endif HAVE_IF_INDEXTONAME && SO_BINDTODEVICE */
1678
1679 #else
1680     WARNING("network plugin: Cannot set the interface on a unicast "
1681             "socket because "
1682 #if !defined(SO_BINDTODEVICE)
1683             "the \"SO_BINDTODEVICE\" socket option "
1684 #else
1685             "the \"if_indextoname\" function "
1686 #endif
1687             "is not available on your system.");
1688 #endif
1689   }
1690
1691   return (0);
1692 } /* }}} network_set_interface */
1693
1694 static int network_bind_socket(int fd, const struct addrinfo *ai,
1695                                const int interface_idx) {
1696 #if KERNEL_SOLARIS
1697   char loop = 0;
1698 #else
1699   int loop = 0;
1700 #endif
1701   int yes = 1;
1702
1703   /* allow multiple sockets to use the same PORT number */
1704   if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) == -1) {
1705     char errbuf[1024];
1706     ERROR("network plugin: setsockopt (reuseaddr): %s",
1707           sstrerror(errno, errbuf, sizeof(errbuf)));
1708     return (-1);
1709   }
1710
1711   DEBUG("fd = %i; calling `bind'", fd);
1712
1713   if (bind(fd, ai->ai_addr, ai->ai_addrlen) == -1) {
1714     char errbuf[1024];
1715     ERROR("bind: %s", sstrerror(errno, errbuf, sizeof(errbuf)));
1716     return (-1);
1717   }
1718
1719   if (ai->ai_family == AF_INET) {
1720     struct sockaddr_in *addr = (struct sockaddr_in *)ai->ai_addr;
1721     if (IN_MULTICAST(ntohl(addr->sin_addr.s_addr))) {
1722 #if HAVE_STRUCT_IP_MREQN_IMR_IFINDEX
1723       struct ip_mreqn mreq;
1724 #else
1725       struct ip_mreq mreq;
1726 #endif
1727
1728       DEBUG("fd = %i; IPv4 multicast address found", fd);
1729
1730       mreq.imr_multiaddr.s_addr = addr->sin_addr.s_addr;
1731 #if HAVE_STRUCT_IP_MREQN_IMR_IFINDEX
1732       /* Set the interface using the interface index if
1733        * possible (available). Unfortunately, the struct
1734        * ip_mreqn is not portable. */
1735       mreq.imr_address.s_addr = ntohl(INADDR_ANY);
1736       mreq.imr_ifindex = interface_idx;
1737 #else
1738       mreq.imr_interface.s_addr = ntohl(INADDR_ANY);
1739 #endif
1740
1741       if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop)) ==
1742           -1) {
1743         char errbuf[1024];
1744         ERROR("network plugin: setsockopt (multicast-loop): %s",
1745               sstrerror(errno, errbuf, sizeof(errbuf)));
1746         return (-1);
1747       }
1748
1749       if (setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq)) ==
1750           -1) {
1751         char errbuf[1024];
1752         ERROR("network plugin: setsockopt (add-membership): %s",
1753               sstrerror(errno, errbuf, sizeof(errbuf)));
1754         return (-1);
1755       }
1756
1757       return (0);
1758     }
1759   } else if (ai->ai_family == AF_INET6) {
1760     /* Useful example:
1761      * http://gsyc.escet.urjc.es/~eva/IPv6-web/examples/mcast.html */
1762     struct sockaddr_in6 *addr = (struct sockaddr_in6 *)ai->ai_addr;
1763     if (IN6_IS_ADDR_MULTICAST(&addr->sin6_addr)) {
1764       struct ipv6_mreq mreq;
1765
1766       DEBUG("fd = %i; IPv6 multicast address found", fd);
1767
1768       memcpy(&mreq.ipv6mr_multiaddr, &addr->sin6_addr, sizeof(addr->sin6_addr));
1769
1770       /* http://developer.apple.com/documentation/Darwin/Reference/ManPages/man4/ip6.4.html
1771        * ipv6mr_interface may be set to zeroes to
1772        * choose the default multicast interface or to
1773        * the index of a particular multicast-capable
1774        * interface if the host is multihomed.
1775        * Membership is associ-associated with a
1776        * single interface; programs running on
1777        * multihomed hosts may need to join the same
1778        * group on more than one interface.*/
1779       mreq.ipv6mr_interface = interface_idx;
1780
1781       if (setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &loop,
1782                      sizeof(loop)) == -1) {
1783         char errbuf[1024];
1784         ERROR("network plugin: setsockopt (ipv6-multicast-loop): %s",
1785               sstrerror(errno, errbuf, sizeof(errbuf)));
1786         return (-1);
1787       }
1788
1789       if (setsockopt(fd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, &mreq,
1790                      sizeof(mreq)) == -1) {
1791         char errbuf[1024];
1792         ERROR("network plugin: setsockopt (ipv6-add-membership): %s",
1793               sstrerror(errno, errbuf, sizeof(errbuf)));
1794         return (-1);
1795       }
1796
1797       return (0);
1798     }
1799   }
1800
1801 #if defined(HAVE_IF_INDEXTONAME) && HAVE_IF_INDEXTONAME &&                     \
1802     defined(SO_BINDTODEVICE)
1803   /* if a specific interface was set, bind the socket to it. But to avoid
1804    * possible problems with multicast routing, only do that for non-multicast
1805    * addresses */
1806   if (interface_idx != 0) {
1807     char interface_name[IFNAMSIZ];
1808
1809     if (if_indextoname(interface_idx, interface_name) == NULL)
1810       return (-1);
1811
1812     DEBUG("fd = %i; Binding socket to interface %s", fd, interface_name);
1813
1814     if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, interface_name,
1815                    sizeof(interface_name)) == -1) {
1816       char errbuf[1024];
1817       ERROR("network plugin: setsockopt (bind-if): %s",
1818             sstrerror(errno, errbuf, sizeof(errbuf)));
1819       return (-1);
1820     }
1821   }
1822 #endif /* HAVE_IF_INDEXTONAME && SO_BINDTODEVICE */
1823
1824   return (0);
1825 } /* int network_bind_socket */
1826
1827 /* Initialize a sockent structure. `type' must be either `SOCKENT_TYPE_CLIENT'
1828  * or `SOCKENT_TYPE_SERVER' */
1829 static sockent_t *sockent_create(int type) /* {{{ */
1830 {
1831   sockent_t *se;
1832
1833   if ((type != SOCKENT_TYPE_CLIENT) && (type != SOCKENT_TYPE_SERVER))
1834     return (NULL);
1835
1836   se = calloc(1, sizeof(*se));
1837   if (se == NULL)
1838     return (NULL);
1839
1840   se->type = type;
1841   se->node = NULL;
1842   se->service = NULL;
1843   se->interface = 0;
1844   se->next = NULL;
1845
1846   if (type == SOCKENT_TYPE_SERVER) {
1847     se->data.server.fd = NULL;
1848     se->data.server.fd_num = 0;
1849 #if HAVE_GCRYPT_H
1850     se->data.server.security_level = SECURITY_LEVEL_NONE;
1851     se->data.server.auth_file = NULL;
1852     se->data.server.userdb = NULL;
1853     se->data.server.cypher = NULL;
1854 #endif
1855   } else {
1856     se->data.client.fd = -1;
1857     se->data.client.addr = NULL;
1858     se->data.client.resolve_interval = 0;
1859     se->data.client.next_resolve_reconnect = 0;
1860 #if HAVE_GCRYPT_H
1861     se->data.client.security_level = SECURITY_LEVEL_NONE;
1862     se->data.client.username = NULL;
1863     se->data.client.password = NULL;
1864     se->data.client.cypher = NULL;
1865 #endif
1866   }
1867
1868   return (se);
1869 } /* }}} sockent_t *sockent_create */
1870
1871 static int sockent_init_crypto(sockent_t *se) /* {{{ */
1872 {
1873 #if HAVE_GCRYPT_H /* {{{ */
1874   if (se->type == SOCKENT_TYPE_CLIENT) {
1875     if (se->data.client.security_level > SECURITY_LEVEL_NONE) {
1876       if (network_init_gcrypt() < 0) {
1877         ERROR("network plugin: Cannot configure client socket with "
1878               "security: Failed to initialize crypto library.");
1879         return (-1);
1880       }
1881
1882       if ((se->data.client.username == NULL) ||
1883           (se->data.client.password == NULL)) {
1884         ERROR("network plugin: Client socket with "
1885               "security requested, but no "
1886               "credentials are configured.");
1887         return (-1);
1888       }
1889       gcry_md_hash_buffer(GCRY_MD_SHA256, se->data.client.password_hash,
1890                           se->data.client.password,
1891                           strlen(se->data.client.password));
1892     }
1893   } else /* (se->type == SOCKENT_TYPE_SERVER) */
1894   {
1895     if ((se->data.server.security_level > SECURITY_LEVEL_NONE) &&
1896         (se->data.server.auth_file == NULL)) {
1897       ERROR("network plugin: Server socket with security requested, "
1898             "but no \"AuthFile\" is configured.");
1899       return (-1);
1900     }
1901     if (se->data.server.auth_file != NULL) {
1902       if (network_init_gcrypt() < 0) {
1903         ERROR("network plugin: Cannot configure server socket with security: "
1904               "Failed to initialize crypto library.");
1905         return (-1);
1906       }
1907
1908       se->data.server.userdb = fbh_create(se->data.server.auth_file);
1909       if (se->data.server.userdb == NULL) {
1910         ERROR("network plugin: Reading password file \"%s\" failed.",
1911               se->data.server.auth_file);
1912         return (-1);
1913       }
1914     }
1915   }
1916 #endif /* }}} HAVE_GCRYPT_H */
1917
1918   return (0);
1919 } /* }}} int sockent_init_crypto */
1920
1921 static int sockent_client_disconnect(sockent_t *se) /* {{{ */
1922 {
1923   struct sockent_client *client;
1924
1925   if ((se == NULL) || (se->type != SOCKENT_TYPE_CLIENT))
1926     return (EINVAL);
1927
1928   client = &se->data.client;
1929   if (client->fd >= 0) /* connected */
1930   {
1931     close(client->fd);
1932     client->fd = -1;
1933   }
1934
1935   sfree(client->addr);
1936   client->addrlen = 0;
1937
1938   return (0);
1939 } /* }}} int sockent_client_disconnect */
1940
1941 static int sockent_client_connect(sockent_t *se) /* {{{ */
1942 {
1943   static c_complain_t complaint = C_COMPLAIN_INIT_STATIC;
1944
1945   struct sockent_client *client;
1946   struct addrinfo *ai_list;
1947   int status;
1948   _Bool reconnect = 0;
1949   cdtime_t now;
1950
1951   if ((se == NULL) || (se->type != SOCKENT_TYPE_CLIENT))
1952     return (EINVAL);
1953
1954   client = &se->data.client;
1955
1956   now = cdtime();
1957   if (client->resolve_interval != 0 && client->next_resolve_reconnect < now) {
1958     DEBUG("network plugin: Reconnecting socket, resolve_interval = %lf, "
1959           "next_resolve_reconnect = %lf",
1960           CDTIME_T_TO_DOUBLE(client->resolve_interval),
1961           CDTIME_T_TO_DOUBLE(client->next_resolve_reconnect));
1962     reconnect = 1;
1963   }
1964
1965   if (client->fd >= 0 && !reconnect) /* already connected and not stale*/
1966     return (0);
1967
1968   struct addrinfo ai_hints = {.ai_family = AF_UNSPEC,
1969                               .ai_flags = AI_ADDRCONFIG,
1970                               .ai_protocol = IPPROTO_UDP,
1971                               .ai_socktype = SOCK_DGRAM};
1972
1973   status = getaddrinfo(se->node,
1974                        (se->service != NULL) ? se->service : NET_DEFAULT_PORT,
1975                        &ai_hints, &ai_list);
1976   if (status != 0) {
1977     c_complain(
1978         LOG_ERR, &complaint, "network plugin: getaddrinfo (%s, %s) failed: %s",
1979         (se->node == NULL) ? "(null)" : se->node,
1980         (se->service == NULL) ? "(null)" : se->service, gai_strerror(status));
1981     return (-1);
1982   } else {
1983     c_release(LOG_NOTICE, &complaint,
1984               "network plugin: Successfully resolved \"%s\".", se->node);
1985   }
1986
1987   for (struct addrinfo *ai_ptr = ai_list; ai_ptr != NULL;
1988        ai_ptr = ai_ptr->ai_next) {
1989     if (client->fd >= 0) /* when we reconnect */
1990       sockent_client_disconnect(se);
1991
1992     client->fd =
1993         socket(ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
1994     if (client->fd < 0) {
1995       char errbuf[1024];
1996       ERROR("network plugin: socket(2) failed: %s",
1997             sstrerror(errno, errbuf, sizeof(errbuf)));
1998       continue;
1999     }
2000
2001     client->addr = calloc(1, sizeof(*client->addr));
2002     if (client->addr == NULL) {
2003       ERROR("network plugin: calloc failed.");
2004       close(client->fd);
2005       client->fd = -1;
2006       continue;
2007     }
2008
2009     assert(sizeof(*client->addr) >= ai_ptr->ai_addrlen);
2010     memcpy(client->addr, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
2011     client->addrlen = ai_ptr->ai_addrlen;
2012
2013     network_set_ttl(se, ai_ptr);
2014     network_set_interface(se, ai_ptr);
2015
2016     /* We don't open more than one write-socket per
2017      * node/service pair.. */
2018     break;
2019   }
2020
2021   freeaddrinfo(ai_list);
2022   if (client->fd < 0)
2023     return (-1);
2024
2025   if (client->resolve_interval > 0)
2026     client->next_resolve_reconnect = now + client->resolve_interval;
2027   return (0);
2028 } /* }}} int sockent_client_connect */
2029
2030 /* Open the file descriptors for a initialized sockent structure. */
2031 static int sockent_server_listen(sockent_t *se) /* {{{ */
2032 {
2033   struct addrinfo *ai_list;
2034   int status;
2035
2036   const char *node;
2037   const char *service;
2038
2039   if (se == NULL)
2040     return (-1);
2041
2042   assert(se->data.server.fd == NULL);
2043   assert(se->data.server.fd_num == 0);
2044
2045   node = se->node;
2046   service = se->service;
2047
2048   if (service == NULL)
2049     service = NET_DEFAULT_PORT;
2050
2051   DEBUG("network plugin: sockent_server_listen: node = %s; service = %s;", node,
2052         service);
2053
2054   struct addrinfo ai_hints = {.ai_family = AF_UNSPEC,
2055                               .ai_flags = AI_ADDRCONFIG | AI_PASSIVE,
2056                               .ai_protocol = IPPROTO_UDP,
2057                               .ai_socktype = SOCK_DGRAM};
2058
2059   status = getaddrinfo(node, service, &ai_hints, &ai_list);
2060   if (status != 0) {
2061     ERROR("network plugin: getaddrinfo (%s, %s) failed: %s",
2062           (se->node == NULL) ? "(null)" : se->node,
2063           (se->service == NULL) ? "(null)" : se->service, gai_strerror(status));
2064     return (-1);
2065   }
2066
2067   for (struct addrinfo *ai_ptr = ai_list; ai_ptr != NULL;
2068        ai_ptr = ai_ptr->ai_next) {
2069     int *tmp;
2070
2071     tmp = realloc(se->data.server.fd,
2072                   sizeof(*tmp) * (se->data.server.fd_num + 1));
2073     if (tmp == NULL) {
2074       ERROR("network plugin: realloc failed.");
2075       continue;
2076     }
2077     se->data.server.fd = tmp;
2078     tmp = se->data.server.fd + se->data.server.fd_num;
2079
2080     *tmp = socket(ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
2081     if (*tmp < 0) {
2082       char errbuf[1024];
2083       ERROR("network plugin: socket(2) failed: %s",
2084             sstrerror(errno, errbuf, sizeof(errbuf)));
2085       continue;
2086     }
2087
2088     status = network_bind_socket(*tmp, ai_ptr, se->interface);
2089     if (status != 0) {
2090       close(*tmp);
2091       *tmp = -1;
2092       continue;
2093     }
2094
2095     se->data.server.fd_num++;
2096     continue;
2097   } /* for (ai_list) */
2098
2099   freeaddrinfo(ai_list);
2100
2101   if (se->data.server.fd_num == 0)
2102     return (-1);
2103   return (0);
2104 } /* }}} int sockent_server_listen */
2105
2106 /* Add a sockent to the global list of sockets */
2107 static int sockent_add(sockent_t *se) /* {{{ */
2108 {
2109   sockent_t *last_ptr;
2110
2111   if (se == NULL)
2112     return (-1);
2113
2114   if (se->type == SOCKENT_TYPE_SERVER) {
2115     struct pollfd *tmp;
2116
2117     tmp = realloc(listen_sockets_pollfd,
2118                   sizeof(*tmp) * (listen_sockets_num + se->data.server.fd_num));
2119     if (tmp == NULL) {
2120       ERROR("network plugin: realloc failed.");
2121       return (-1);
2122     }
2123     listen_sockets_pollfd = tmp;
2124     tmp = listen_sockets_pollfd + listen_sockets_num;
2125
2126     for (size_t i = 0; i < se->data.server.fd_num; i++) {
2127       memset(tmp + i, 0, sizeof(*tmp));
2128       tmp[i].fd = se->data.server.fd[i];
2129       tmp[i].events = POLLIN | POLLPRI;
2130       tmp[i].revents = 0;
2131     }
2132
2133     listen_sockets_num += se->data.server.fd_num;
2134
2135     if (listen_sockets == NULL) {
2136       listen_sockets = se;
2137       return (0);
2138     }
2139     last_ptr = listen_sockets;
2140   } else /* if (se->type == SOCKENT_TYPE_CLIENT) */
2141   {
2142     if (sending_sockets == NULL) {
2143       sending_sockets = se;
2144       return (0);
2145     }
2146     last_ptr = sending_sockets;
2147   }
2148
2149   while (last_ptr->next != NULL)
2150     last_ptr = last_ptr->next;
2151   last_ptr->next = se;
2152
2153   return (0);
2154 } /* }}} int sockent_add */
2155
2156 static void *dispatch_thread(void __attribute__((unused)) * arg) /* {{{ */
2157 {
2158   while (42) {
2159     receive_list_entry_t *ent;
2160     sockent_t *se;
2161
2162     /* Lock and wait for more data to come in */
2163     pthread_mutex_lock(&receive_list_lock);
2164     while ((listen_loop == 0) && (receive_list_head == NULL))
2165       pthread_cond_wait(&receive_list_cond, &receive_list_lock);
2166
2167     /* Remove the head entry and unlock */
2168     ent = receive_list_head;
2169     if (ent != NULL)
2170       receive_list_head = ent->next;
2171     receive_list_length--;
2172     pthread_mutex_unlock(&receive_list_lock);
2173
2174     /* Check whether we are supposed to exit. We do NOT check `listen_loop'
2175      * because we dispatch all missing packets before shutting down. */
2176     if (ent == NULL)
2177       break;
2178
2179     /* Look for the correct `sockent_t' */
2180     se = listen_sockets;
2181     while (se != NULL) {
2182       size_t i;
2183
2184       for (i = 0; i < se->data.server.fd_num; i++)
2185         if (se->data.server.fd[i] == ent->fd)
2186           break;
2187
2188       if (i < se->data.server.fd_num)
2189         break;
2190
2191       se = se->next;
2192     }
2193
2194     if (se == NULL) {
2195       ERROR("network plugin: Got packet from FD %i, but can't "
2196             "find an appropriate socket entry.",
2197             ent->fd);
2198       sfree(ent->data);
2199       sfree(ent);
2200       continue;
2201     }
2202
2203     parse_packet(se, ent->data, ent->data_len, /* flags = */ 0,
2204                  /* username = */ NULL);
2205     sfree(ent->data);
2206     sfree(ent);
2207   } /* while (42) */
2208
2209   return (NULL);
2210 } /* }}} void *dispatch_thread */
2211
2212 static int network_receive(void) /* {{{ */
2213 {
2214   char buffer[network_config_packet_size];
2215   int buffer_len;
2216
2217   int status = 0;
2218
2219   receive_list_entry_t *private_list_head;
2220   receive_list_entry_t *private_list_tail;
2221   uint64_t private_list_length;
2222
2223   assert(listen_sockets_num > 0);
2224
2225   private_list_head = NULL;
2226   private_list_tail = NULL;
2227   private_list_length = 0;
2228
2229   while (listen_loop == 0) {
2230     status = poll(listen_sockets_pollfd, listen_sockets_num, -1);
2231     if (status <= 0) {
2232       char errbuf[1024];
2233       if (errno == EINTR)
2234         continue;
2235       ERROR("network plugin: poll(2) failed: %s",
2236             sstrerror(errno, errbuf, sizeof(errbuf)));
2237       break;
2238     }
2239
2240     for (size_t i = 0; (i < listen_sockets_num) && (status > 0); i++) {
2241       receive_list_entry_t *ent;
2242
2243       if ((listen_sockets_pollfd[i].revents & (POLLIN | POLLPRI)) == 0)
2244         continue;
2245       status--;
2246
2247       buffer_len = recv(listen_sockets_pollfd[i].fd, buffer, sizeof(buffer),
2248                         0 /* no flags */);
2249       if (buffer_len < 0) {
2250         char errbuf[1024];
2251         status = (errno != 0) ? errno : -1;
2252         ERROR("network plugin: recv(2) failed: %s",
2253               sstrerror(errno, errbuf, sizeof(errbuf)));
2254         break;
2255       }
2256
2257       stats_octets_rx += ((uint64_t)buffer_len);
2258       stats_packets_rx++;
2259
2260       /* TODO: Possible performance enhancement: Do not free
2261        * these entries in the dispatch thread but put them in
2262        * another list, so we don't have to allocate more and
2263        * more of these structures. */
2264       ent = calloc(1, sizeof(*ent));
2265       if (ent == NULL) {
2266         ERROR("network plugin: calloc failed.");
2267         status = ENOMEM;
2268         break;
2269       }
2270
2271       ent->data = malloc(network_config_packet_size);
2272       if (ent->data == NULL) {
2273         sfree(ent);
2274         ERROR("network plugin: malloc failed.");
2275         status = ENOMEM;
2276         break;
2277       }
2278       ent->fd = listen_sockets_pollfd[i].fd;
2279       ent->next = NULL;
2280
2281       memcpy(ent->data, buffer, buffer_len);
2282       ent->data_len = buffer_len;
2283
2284       if (private_list_head == NULL)
2285         private_list_head = ent;
2286       else
2287         private_list_tail->next = ent;
2288       private_list_tail = ent;
2289       private_list_length++;
2290
2291       /* Do not block here. Blocking here has led to
2292        * insufficient performance in the past. */
2293       if (pthread_mutex_trylock(&receive_list_lock) == 0) {
2294         assert(((receive_list_head == NULL) && (receive_list_length == 0)) ||
2295                ((receive_list_head != NULL) && (receive_list_length != 0)));
2296
2297         if (receive_list_head == NULL)
2298           receive_list_head = private_list_head;
2299         else
2300           receive_list_tail->next = private_list_head;
2301         receive_list_tail = private_list_tail;
2302         receive_list_length += private_list_length;
2303
2304         pthread_cond_signal(&receive_list_cond);
2305         pthread_mutex_unlock(&receive_list_lock);
2306
2307         private_list_head = NULL;
2308         private_list_tail = NULL;
2309         private_list_length = 0;
2310       }
2311
2312       status = 0;
2313     } /* for (listen_sockets_pollfd) */
2314
2315     if (status != 0)
2316       break;
2317   } /* while (listen_loop == 0) */
2318
2319   /* Make sure everything is dispatched before exiting. */
2320   if (private_list_head != NULL) {
2321     pthread_mutex_lock(&receive_list_lock);
2322
2323     if (receive_list_head == NULL)
2324       receive_list_head = private_list_head;
2325     else
2326       receive_list_tail->next = private_list_head;
2327     receive_list_tail = private_list_tail;
2328     receive_list_length += private_list_length;
2329
2330     pthread_cond_signal(&receive_list_cond);
2331     pthread_mutex_unlock(&receive_list_lock);
2332   }
2333
2334   return (status);
2335 } /* }}} int network_receive */
2336
2337 static void *receive_thread(void __attribute__((unused)) * arg) {
2338   return (network_receive() ? (void *)1 : (void *)0);
2339 } /* void *receive_thread */
2340
2341 static void network_init_buffer(void) {
2342   memset(send_buffer, 0, network_config_packet_size);
2343   send_buffer_ptr = send_buffer;
2344   send_buffer_fill = 0;
2345   send_buffer_last_update = 0;
2346
2347   memset(&send_buffer_vl, 0, sizeof(send_buffer_vl));
2348 } /* int network_init_buffer */
2349
2350 static void network_send_buffer_plain(sockent_t *se, /* {{{ */
2351                                       const char *buffer, size_t buffer_size) {
2352   int status;
2353
2354   while (42) {
2355     status = sockent_client_connect(se);
2356     if (status != 0)
2357       return;
2358
2359     status = sendto(se->data.client.fd, buffer, buffer_size,
2360                     /* flags = */ 0, (struct sockaddr *)se->data.client.addr,
2361                     se->data.client.addrlen);
2362     if (status < 0) {
2363       char errbuf[1024];
2364
2365       if ((errno == EINTR) || (errno == EAGAIN))
2366         continue;
2367
2368       ERROR("network plugin: sendto failed: %s. Closing sending socket.",
2369             sstrerror(errno, errbuf, sizeof(errbuf)));
2370       sockent_client_disconnect(se);
2371       return;
2372     }
2373
2374     break;
2375   } /* while (42) */
2376 } /* }}} void network_send_buffer_plain */
2377
2378 #if HAVE_GCRYPT_H
2379 #define BUFFER_ADD(p, s)                                                       \
2380   do {                                                                         \
2381     memcpy(buffer + buffer_offset, (p), (s));                                  \
2382     buffer_offset += (s);                                                      \
2383   } while (0)
2384
2385 static void network_send_buffer_signed(sockent_t *se, /* {{{ */
2386                                        const char *in_buffer,
2387                                        size_t in_buffer_size) {
2388   char buffer[BUFF_SIG_SIZE + in_buffer_size];
2389   size_t buffer_offset;
2390   size_t username_len;
2391
2392   gcry_md_hd_t hd;
2393   gcry_error_t err;
2394   unsigned char *hash;
2395
2396   hd = NULL;
2397   err = gcry_md_open(&hd, GCRY_MD_SHA256, GCRY_MD_FLAG_HMAC);
2398   if (err != 0) {
2399     ERROR("network plugin: Creating HMAC object failed: %s",
2400           gcry_strerror(err));
2401     return;
2402   }
2403
2404   err = gcry_md_setkey(hd, se->data.client.password,
2405                        strlen(se->data.client.password));
2406   if (err != 0) {
2407     ERROR("network plugin: gcry_md_setkey failed: %s", gcry_strerror(err));
2408     gcry_md_close(hd);
2409     return;
2410   }
2411
2412   username_len = strlen(se->data.client.username);
2413   if (username_len > (BUFF_SIG_SIZE - PART_SIGNATURE_SHA256_SIZE)) {
2414     ERROR("network plugin: Username too long: %s", se->data.client.username);
2415     return;
2416   }
2417
2418   memcpy(buffer + PART_SIGNATURE_SHA256_SIZE, se->data.client.username,
2419          username_len);
2420   memcpy(buffer + PART_SIGNATURE_SHA256_SIZE + username_len, in_buffer,
2421          in_buffer_size);
2422
2423   /* Initialize the `ps' structure. */
2424   part_signature_sha256_t ps = {
2425       .head.type = htons(TYPE_SIGN_SHA256),
2426       .head.length = htons(PART_SIGNATURE_SHA256_SIZE + username_len)};
2427
2428   /* Calculate the hash value. */
2429   gcry_md_write(hd, buffer + PART_SIGNATURE_SHA256_SIZE,
2430                 username_len + in_buffer_size);
2431   hash = gcry_md_read(hd, GCRY_MD_SHA256);
2432   if (hash == NULL) {
2433     ERROR("network plugin: gcry_md_read failed.");
2434     gcry_md_close(hd);
2435     return;
2436   }
2437   memcpy(ps.hash, hash, sizeof(ps.hash));
2438
2439   /* Add the header */
2440   buffer_offset = 0;
2441
2442   BUFFER_ADD(&ps.head.type, sizeof(ps.head.type));
2443   BUFFER_ADD(&ps.head.length, sizeof(ps.head.length));
2444   BUFFER_ADD(ps.hash, sizeof(ps.hash));
2445
2446   assert(buffer_offset == PART_SIGNATURE_SHA256_SIZE);
2447
2448   gcry_md_close(hd);
2449   hd = NULL;
2450
2451   buffer_offset = PART_SIGNATURE_SHA256_SIZE + username_len + in_buffer_size;
2452   network_send_buffer_plain(se, buffer, buffer_offset);
2453 } /* }}} void network_send_buffer_signed */
2454
2455 static void network_send_buffer_encrypted(sockent_t *se, /* {{{ */
2456                                           const char *in_buffer,
2457                                           size_t in_buffer_size) {
2458   char buffer[BUFF_SIG_SIZE + in_buffer_size];
2459   size_t buffer_size;
2460   size_t buffer_offset;
2461   size_t header_size;
2462   size_t username_len;
2463   gcry_error_t err;
2464   gcry_cipher_hd_t cypher;
2465
2466   /* Initialize the header fields */
2467   part_encryption_aes256_t pea = {.head.type = htons(TYPE_ENCR_AES256),
2468                                   .username = se->data.client.username};
2469
2470   username_len = strlen(pea.username);
2471   if ((PART_ENCRYPTION_AES256_SIZE + username_len) > BUFF_SIG_SIZE) {
2472     ERROR("network plugin: Username too long: %s", pea.username);
2473     return;
2474   }
2475
2476   buffer_size = PART_ENCRYPTION_AES256_SIZE + username_len + in_buffer_size;
2477   header_size = PART_ENCRYPTION_AES256_SIZE + username_len - sizeof(pea.hash);
2478
2479   assert(buffer_size <= sizeof(buffer));
2480   DEBUG("network plugin: network_send_buffer_encrypted: "
2481         "buffer_size = %zu;",
2482         buffer_size);
2483
2484   pea.head.length = htons(
2485       (uint16_t)(PART_ENCRYPTION_AES256_SIZE + username_len + in_buffer_size));
2486   pea.username_length = htons((uint16_t)username_len);
2487
2488   /* Chose a random initialization vector. */
2489   gcry_randomize((void *)&pea.iv, sizeof(pea.iv), GCRY_STRONG_RANDOM);
2490
2491   /* Create hash of the payload */
2492   gcry_md_hash_buffer(GCRY_MD_SHA1, pea.hash, in_buffer, in_buffer_size);
2493
2494   /* Initialize the buffer */
2495   buffer_offset = 0;
2496   memset(buffer, 0, sizeof(buffer));
2497
2498   BUFFER_ADD(&pea.head.type, sizeof(pea.head.type));
2499   BUFFER_ADD(&pea.head.length, sizeof(pea.head.length));
2500   BUFFER_ADD(&pea.username_length, sizeof(pea.username_length));
2501   BUFFER_ADD(pea.username, username_len);
2502   BUFFER_ADD(pea.iv, sizeof(pea.iv));
2503   assert(buffer_offset == header_size);
2504   BUFFER_ADD(pea.hash, sizeof(pea.hash));
2505   BUFFER_ADD(in_buffer, in_buffer_size);
2506
2507   assert(buffer_offset == buffer_size);
2508
2509   cypher = network_get_aes256_cypher(se, pea.iv, sizeof(pea.iv),
2510                                      se->data.client.password);
2511   if (cypher == NULL)
2512     return;
2513
2514   /* Encrypt the buffer in-place */
2515   err = gcry_cipher_encrypt(cypher, buffer + header_size,
2516                             buffer_size - header_size,
2517                             /* in = */ NULL, /* in len = */ 0);
2518   if (err != 0) {
2519     ERROR("network plugin: gcry_cipher_encrypt returned: %s",
2520           gcry_strerror(err));
2521     return;
2522   }
2523
2524   /* Send it out without further modifications */
2525   network_send_buffer_plain(se, buffer, buffer_size);
2526 } /* }}} void network_send_buffer_encrypted */
2527 #undef BUFFER_ADD
2528 #endif /* HAVE_GCRYPT_H */
2529
2530 static void network_send_buffer(char *buffer, size_t buffer_len) /* {{{ */
2531 {
2532   DEBUG("network plugin: network_send_buffer: buffer_len = %zu", buffer_len);
2533
2534   for (sockent_t *se = sending_sockets; se != NULL; se = se->next) {
2535 #if HAVE_GCRYPT_H
2536     if (se->data.client.security_level == SECURITY_LEVEL_ENCRYPT)
2537       network_send_buffer_encrypted(se, buffer, buffer_len);
2538     else if (se->data.client.security_level == SECURITY_LEVEL_SIGN)
2539       network_send_buffer_signed(se, buffer, buffer_len);
2540     else /* if (se->data.client.security_level == SECURITY_LEVEL_NONE) */
2541 #endif   /* HAVE_GCRYPT_H */
2542       network_send_buffer_plain(se, buffer, buffer_len);
2543   } /* for (sending_sockets) */
2544 } /* }}} void network_send_buffer */
2545
2546 static int add_to_buffer(char *buffer, size_t buffer_size, /* {{{ */
2547                          value_list_t *vl_def, const data_set_t *ds,
2548                          const value_list_t *vl) {
2549   char *buffer_orig = buffer;
2550
2551   if (strcmp(vl_def->host, vl->host) != 0) {
2552     if (write_part_string(&buffer, &buffer_size, TYPE_HOST, vl->host,
2553                           strlen(vl->host)) != 0)
2554       return (-1);
2555     sstrncpy(vl_def->host, vl->host, sizeof(vl_def->host));
2556   }
2557
2558   if (vl_def->time != vl->time) {
2559     if (write_part_number(&buffer, &buffer_size, TYPE_TIME_HR,
2560                           (uint64_t)vl->time))
2561       return (-1);
2562     vl_def->time = vl->time;
2563   }
2564
2565   if (vl_def->interval != vl->interval) {
2566     if (write_part_number(&buffer, &buffer_size, TYPE_INTERVAL_HR,
2567                           (uint64_t)vl->interval))
2568       return (-1);
2569     vl_def->interval = vl->interval;
2570   }
2571
2572   if (strcmp(vl_def->plugin, vl->plugin) != 0) {
2573     if (write_part_string(&buffer, &buffer_size, TYPE_PLUGIN, vl->plugin,
2574                           strlen(vl->plugin)) != 0)
2575       return (-1);
2576     sstrncpy(vl_def->plugin, vl->plugin, sizeof(vl_def->plugin));
2577   }
2578
2579   if (strcmp(vl_def->plugin_instance, vl->plugin_instance) != 0) {
2580     if (write_part_string(&buffer, &buffer_size, TYPE_PLUGIN_INSTANCE,
2581                           vl->plugin_instance,
2582                           strlen(vl->plugin_instance)) != 0)
2583       return (-1);
2584     sstrncpy(vl_def->plugin_instance, vl->plugin_instance,
2585              sizeof(vl_def->plugin_instance));
2586   }
2587
2588   if (strcmp(vl_def->type, vl->type) != 0) {
2589     if (write_part_string(&buffer, &buffer_size, TYPE_TYPE, vl->type,
2590                           strlen(vl->type)) != 0)
2591       return (-1);
2592     sstrncpy(vl_def->type, ds->type, sizeof(vl_def->type));
2593   }
2594
2595   if (strcmp(vl_def->type_instance, vl->type_instance) != 0) {
2596     if (write_part_string(&buffer, &buffer_size, TYPE_TYPE_INSTANCE,
2597                           vl->type_instance, strlen(vl->type_instance)) != 0)
2598       return (-1);
2599     sstrncpy(vl_def->type_instance, vl->type_instance,
2600              sizeof(vl_def->type_instance));
2601   }
2602
2603   if (write_part_values(&buffer, &buffer_size, ds, vl) != 0)
2604     return (-1);
2605
2606   return (buffer - buffer_orig);
2607 } /* }}} int add_to_buffer */
2608
2609 static void flush_buffer(void) {
2610   DEBUG("network plugin: flush_buffer: send_buffer_fill = %i",
2611         send_buffer_fill);
2612
2613   network_send_buffer(send_buffer, (size_t)send_buffer_fill);
2614
2615   stats_octets_tx += ((uint64_t)send_buffer_fill);
2616   stats_packets_tx++;
2617
2618   network_init_buffer();
2619 }
2620
2621 static int network_write(const data_set_t *ds, const value_list_t *vl,
2622                          user_data_t __attribute__((unused)) * user_data) {
2623   int status;
2624
2625   /* listen_loop is set to non-zero in the shutdown callback, which is
2626    * guaranteed to be called *after* all the write threads have been shut
2627    * down. */
2628   assert(listen_loop == 0);
2629
2630   if (!check_send_okay(vl)) {
2631 #if COLLECT_DEBUG
2632     char name[6 * DATA_MAX_NAME_LEN];
2633     FORMAT_VL(name, sizeof(name), vl);
2634     name[sizeof(name) - 1] = 0;
2635     DEBUG("network plugin: network_write: "
2636           "NOT sending %s.",
2637           name);
2638 #endif
2639     /* Counter is not protected by another lock and may be reached by
2640      * multiple threads */
2641     pthread_mutex_lock(&stats_lock);
2642     stats_values_not_sent++;
2643     pthread_mutex_unlock(&stats_lock);
2644     return (0);
2645   }
2646
2647   uc_meta_data_add_unsigned_int(vl, "network:time_sent", (uint64_t)vl->time);
2648
2649   pthread_mutex_lock(&send_buffer_lock);
2650
2651   status =
2652       add_to_buffer(send_buffer_ptr, network_config_packet_size -
2653                                          (send_buffer_fill + BUFF_SIG_SIZE),
2654                     &send_buffer_vl, ds, vl);
2655   if (status >= 0) {
2656     /* status == bytes added to the buffer */
2657     send_buffer_fill += status;
2658     send_buffer_ptr += status;
2659     send_buffer_last_update = cdtime();
2660
2661     stats_values_sent++;
2662   } else {
2663     flush_buffer();
2664
2665     status =
2666         add_to_buffer(send_buffer_ptr, network_config_packet_size -
2667                                            (send_buffer_fill + BUFF_SIG_SIZE),
2668                       &send_buffer_vl, ds, vl);
2669
2670     if (status >= 0) {
2671       send_buffer_fill += status;
2672       send_buffer_ptr += status;
2673
2674       stats_values_sent++;
2675     }
2676   }
2677
2678   if (status < 0) {
2679     ERROR("network plugin: Unable to append to the "
2680           "buffer for some weird reason");
2681   } else if ((network_config_packet_size - send_buffer_fill) < 15) {
2682     flush_buffer();
2683   }
2684
2685   pthread_mutex_unlock(&send_buffer_lock);
2686
2687   return ((status < 0) ? -1 : 0);
2688 } /* int network_write */
2689
2690 static int network_config_set_ttl(const oconfig_item_t *ci) /* {{{ */
2691 {
2692   int tmp = 0;
2693
2694   if (cf_util_get_int(ci, &tmp) != 0)
2695     return (-1);
2696   else if ((tmp > 0) && (tmp <= 255))
2697     network_config_ttl = tmp;
2698   else {
2699     WARNING("network plugin: The `TimeToLive' must be between 1 and 255.");
2700     return (-1);
2701   }
2702
2703   return (0);
2704 } /* }}} int network_config_set_ttl */
2705
2706 static int network_config_set_interface(const oconfig_item_t *ci, /* {{{ */
2707                                         int *interface) {
2708   char if_name[256];
2709
2710   if (cf_util_get_string_buffer(ci, if_name, sizeof(if_name)) != 0)
2711     return (-1);
2712
2713   *interface = if_nametoindex(if_name);
2714   return (0);
2715 } /* }}} int network_config_set_interface */
2716
2717 static int network_config_set_buffer_size(const oconfig_item_t *ci) /* {{{ */
2718 {
2719   int tmp = 0;
2720
2721   if (cf_util_get_int(ci, &tmp) != 0)
2722     return (-1);
2723   else if ((tmp >= 1024) && (tmp <= 65535))
2724     network_config_packet_size = tmp;
2725   else {
2726     WARNING(
2727         "network plugin: The `MaxPacketSize' must be between 1024 and 65535.");
2728     return (-1);
2729   }
2730
2731   return (0);
2732 } /* }}} int network_config_set_buffer_size */
2733
2734 #if HAVE_GCRYPT_H
2735 static int network_config_set_security_level(oconfig_item_t *ci, /* {{{ */
2736                                              int *retval) {
2737   char *str;
2738   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
2739     WARNING("network plugin: The `SecurityLevel' config option needs exactly "
2740             "one string argument.");
2741     return (-1);
2742   }
2743
2744   str = ci->values[0].value.string;
2745   if (strcasecmp("Encrypt", str) == 0)
2746     *retval = SECURITY_LEVEL_ENCRYPT;
2747   else if (strcasecmp("Sign", str) == 0)
2748     *retval = SECURITY_LEVEL_SIGN;
2749   else if (strcasecmp("None", str) == 0)
2750     *retval = SECURITY_LEVEL_NONE;
2751   else {
2752     WARNING("network plugin: Unknown security level: %s.", str);
2753     return (-1);
2754   }
2755
2756   return (0);
2757 } /* }}} int network_config_set_security_level */
2758 #endif /* HAVE_GCRYPT_H */
2759
2760 static int network_config_add_listen(const oconfig_item_t *ci) /* {{{ */
2761 {
2762   sockent_t *se;
2763   int status;
2764
2765   if ((ci->values_num < 1) || (ci->values_num > 2) ||
2766       (ci->values[0].type != OCONFIG_TYPE_STRING) ||
2767       ((ci->values_num > 1) && (ci->values[1].type != OCONFIG_TYPE_STRING))) {
2768     ERROR("network plugin: The `%s' config option needs "
2769           "one or two string arguments.",
2770           ci->key);
2771     return (-1);
2772   }
2773
2774   se = sockent_create(SOCKENT_TYPE_SERVER);
2775   if (se == NULL) {
2776     ERROR("network plugin: sockent_create failed.");
2777     return (-1);
2778   }
2779
2780   se->node = strdup(ci->values[0].value.string);
2781   if (ci->values_num >= 2)
2782     se->service = strdup(ci->values[1].value.string);
2783
2784   for (int i = 0; i < ci->children_num; i++) {
2785     oconfig_item_t *child = ci->children + i;
2786
2787 #if HAVE_GCRYPT_H
2788     if (strcasecmp("AuthFile", child->key) == 0)
2789       cf_util_get_string(child, &se->data.server.auth_file);
2790     else if (strcasecmp("SecurityLevel", child->key) == 0)
2791       network_config_set_security_level(child, &se->data.server.security_level);
2792     else
2793 #endif /* HAVE_GCRYPT_H */
2794         if (strcasecmp("Interface", child->key) == 0)
2795       network_config_set_interface(child, &se->interface);
2796     else {
2797       WARNING("network plugin: Option `%s' is not allowed here.", child->key);
2798     }
2799   }
2800
2801 #if HAVE_GCRYPT_H
2802   if ((se->data.server.security_level > SECURITY_LEVEL_NONE) &&
2803       (se->data.server.auth_file == NULL)) {
2804     ERROR("network plugin: A security level higher than `none' was "
2805           "requested, but no AuthFile option was given. Cowardly refusing to "
2806           "open this socket!");
2807     sockent_destroy(se);
2808     return (-1);
2809   }
2810 #endif /* HAVE_GCRYPT_H */
2811
2812   status = sockent_init_crypto(se);
2813   if (status != 0) {
2814     ERROR("network plugin: network_config_add_listen: sockent_init_crypto() "
2815           "failed.");
2816     sockent_destroy(se);
2817     return (-1);
2818   }
2819
2820   status = sockent_server_listen(se);
2821   if (status != 0) {
2822     ERROR("network plugin: network_config_add_listen: sockent_server_listen "
2823           "failed.");
2824     sockent_destroy(se);
2825     return (-1);
2826   }
2827
2828   status = sockent_add(se);
2829   if (status != 0) {
2830     ERROR("network plugin: network_config_add_listen: sockent_add failed.");
2831     sockent_destroy(se);
2832     return (-1);
2833   }
2834
2835   return (0);
2836 } /* }}} int network_config_add_listen */
2837
2838 static int network_config_add_server(const oconfig_item_t *ci) /* {{{ */
2839 {
2840   sockent_t *se;
2841   int status;
2842
2843   if ((ci->values_num < 1) || (ci->values_num > 2) ||
2844       (ci->values[0].type != OCONFIG_TYPE_STRING) ||
2845       ((ci->values_num > 1) && (ci->values[1].type != OCONFIG_TYPE_STRING))) {
2846     ERROR("network plugin: The `%s' config option needs "
2847           "one or two string arguments.",
2848           ci->key);
2849     return (-1);
2850   }
2851
2852   se = sockent_create(SOCKENT_TYPE_CLIENT);
2853   if (se == NULL) {
2854     ERROR("network plugin: sockent_create failed.");
2855     return (-1);
2856   }
2857
2858   se->node = strdup(ci->values[0].value.string);
2859   if (ci->values_num >= 2)
2860     se->service = strdup(ci->values[1].value.string);
2861
2862   for (int i = 0; i < ci->children_num; i++) {
2863     oconfig_item_t *child = ci->children + i;
2864
2865 #if HAVE_GCRYPT_H
2866     if (strcasecmp("Username", child->key) == 0)
2867       cf_util_get_string(child, &se->data.client.username);
2868     else if (strcasecmp("Password", child->key) == 0)
2869       cf_util_get_string(child, &se->data.client.password);
2870     else if (strcasecmp("SecurityLevel", child->key) == 0)
2871       network_config_set_security_level(child, &se->data.client.security_level);
2872     else
2873 #endif /* HAVE_GCRYPT_H */
2874         if (strcasecmp("Interface", child->key) == 0)
2875       network_config_set_interface(child, &se->interface);
2876     else if (strcasecmp("ResolveInterval", child->key) == 0)
2877       cf_util_get_cdtime(child, &se->data.client.resolve_interval);
2878     else {
2879       WARNING("network plugin: Option `%s' is not allowed here.", child->key);
2880     }
2881   }
2882
2883 #if HAVE_GCRYPT_H
2884   if ((se->data.client.security_level > SECURITY_LEVEL_NONE) &&
2885       ((se->data.client.username == NULL) ||
2886        (se->data.client.password == NULL))) {
2887     ERROR("network plugin: A security level higher than `none' was "
2888           "requested, but no Username or Password option was given. "
2889           "Cowardly refusing to open this socket!");
2890     sockent_destroy(se);
2891     return (-1);
2892   }
2893 #endif /* HAVE_GCRYPT_H */
2894
2895   status = sockent_init_crypto(se);
2896   if (status != 0) {
2897     ERROR("network plugin: network_config_add_server: sockent_init_crypto() "
2898           "failed.");
2899     sockent_destroy(se);
2900     return (-1);
2901   }
2902
2903   /* No call to sockent_client_connect() here -- it is called from
2904    * network_send_buffer_plain(). */
2905
2906   status = sockent_add(se);
2907   if (status != 0) {
2908     ERROR("network plugin: network_config_add_server: sockent_add failed.");
2909     sockent_destroy(se);
2910     return (-1);
2911   }
2912
2913   return (0);
2914 } /* }}} int network_config_add_server */
2915
2916 static int network_config(oconfig_item_t *ci) /* {{{ */
2917 {
2918   /* The options need to be applied first */
2919   for (int i = 0; i < ci->children_num; i++) {
2920     oconfig_item_t *child = ci->children + i;
2921     if (strcasecmp("TimeToLive", child->key) == 0)
2922       network_config_set_ttl(child);
2923   }
2924
2925   for (int i = 0; i < ci->children_num; i++) {
2926     oconfig_item_t *child = ci->children + i;
2927
2928     if (strcasecmp("Listen", child->key) == 0)
2929       network_config_add_listen(child);
2930     else if (strcasecmp("Server", child->key) == 0)
2931       network_config_add_server(child);
2932     else if (strcasecmp("TimeToLive", child->key) == 0) {
2933       /* Handled earlier */
2934     } else if (strcasecmp("MaxPacketSize", child->key) == 0)
2935       network_config_set_buffer_size(child);
2936     else if (strcasecmp("Forward", child->key) == 0)
2937       cf_util_get_boolean(child, &network_config_forward);
2938     else if (strcasecmp("ReportStats", child->key) == 0)
2939       cf_util_get_boolean(child, &network_config_stats);
2940     else {
2941       WARNING("network plugin: Option `%s' is not allowed here.", child->key);
2942     }
2943   }
2944
2945   return (0);
2946 } /* }}} int network_config */
2947
2948 static int network_notification(const notification_t *n,
2949                                 user_data_t __attribute__((unused)) *
2950                                     user_data) {
2951   char buffer[network_config_packet_size];
2952   char *buffer_ptr = buffer;
2953   size_t buffer_free = sizeof(buffer);
2954   int status;
2955
2956   if (!check_send_notify_okay(n))
2957     return (0);
2958
2959   memset(buffer, 0, sizeof(buffer));
2960
2961   status = write_part_number(&buffer_ptr, &buffer_free, TYPE_TIME_HR,
2962                              (uint64_t)n->time);
2963   if (status != 0)
2964     return (-1);
2965
2966   status = write_part_number(&buffer_ptr, &buffer_free, TYPE_SEVERITY,
2967                              (uint64_t)n->severity);
2968   if (status != 0)
2969     return (-1);
2970
2971   if (strlen(n->host) > 0) {
2972     status = write_part_string(&buffer_ptr, &buffer_free, TYPE_HOST, n->host,
2973                                strlen(n->host));
2974     if (status != 0)
2975       return (-1);
2976   }
2977
2978   if (strlen(n->plugin) > 0) {
2979     status = write_part_string(&buffer_ptr, &buffer_free, TYPE_PLUGIN,
2980                                n->plugin, strlen(n->plugin));
2981     if (status != 0)
2982       return (-1);
2983   }
2984
2985   if (strlen(n->plugin_instance) > 0) {
2986     status = write_part_string(&buffer_ptr, &buffer_free, TYPE_PLUGIN_INSTANCE,
2987                                n->plugin_instance, strlen(n->plugin_instance));
2988     if (status != 0)
2989       return (-1);
2990   }
2991
2992   if (strlen(n->type) > 0) {
2993     status = write_part_string(&buffer_ptr, &buffer_free, TYPE_TYPE, n->type,
2994                                strlen(n->type));
2995     if (status != 0)
2996       return (-1);
2997   }
2998
2999   if (strlen(n->type_instance) > 0) {
3000     status = write_part_string(&buffer_ptr, &buffer_free, TYPE_TYPE_INSTANCE,
3001                                n->type_instance, strlen(n->type_instance));
3002     if (status != 0)
3003       return (-1);
3004   }
3005
3006   status = write_part_string(&buffer_ptr, &buffer_free, TYPE_MESSAGE,
3007                              n->message, strlen(n->message));
3008   if (status != 0)
3009     return (-1);
3010
3011   network_send_buffer(buffer, sizeof(buffer) - buffer_free);
3012
3013   return (0);
3014 } /* int network_notification */
3015
3016 static int network_shutdown(void) {
3017   listen_loop++;
3018
3019   /* Kill the listening thread */
3020   if (receive_thread_running != 0) {
3021     INFO("network plugin: Stopping receive thread.");
3022     pthread_kill(receive_thread_id, SIGTERM);
3023     pthread_join(receive_thread_id, NULL /* no return value */);
3024     memset(&receive_thread_id, 0, sizeof(receive_thread_id));
3025     receive_thread_running = 0;
3026   }
3027
3028   /* Shutdown the dispatching thread */
3029   if (dispatch_thread_running != 0) {
3030     INFO("network plugin: Stopping dispatch thread.");
3031     pthread_mutex_lock(&receive_list_lock);
3032     pthread_cond_broadcast(&receive_list_cond);
3033     pthread_mutex_unlock(&receive_list_lock);
3034     pthread_join(dispatch_thread_id, /* ret = */ NULL);
3035     dispatch_thread_running = 0;
3036   }
3037
3038   sockent_destroy(listen_sockets);
3039
3040   if (send_buffer_fill > 0)
3041     flush_buffer();
3042
3043   sfree(send_buffer);
3044
3045   for (sockent_t *se = sending_sockets; se != NULL; se = se->next)
3046     sockent_client_disconnect(se);
3047   sockent_destroy(sending_sockets);
3048
3049   plugin_unregister_config("network");
3050   plugin_unregister_init("network");
3051   plugin_unregister_write("network");
3052   plugin_unregister_shutdown("network");
3053
3054   return (0);
3055 } /* int network_shutdown */
3056
3057 static int network_stats_read(void) /* {{{ */
3058 {
3059   derive_t copy_octets_rx;
3060   derive_t copy_octets_tx;
3061   derive_t copy_packets_rx;
3062   derive_t copy_packets_tx;
3063   derive_t copy_values_dispatched;
3064   derive_t copy_values_not_dispatched;
3065   derive_t copy_values_sent;
3066   derive_t copy_values_not_sent;
3067   derive_t copy_receive_list_length;
3068   value_list_t vl = VALUE_LIST_INIT;
3069   value_t values[2];
3070
3071   copy_octets_rx = stats_octets_rx;
3072   copy_octets_tx = stats_octets_tx;
3073   copy_packets_rx = stats_packets_rx;
3074   copy_packets_tx = stats_packets_tx;
3075   copy_values_dispatched = stats_values_dispatched;
3076   copy_values_not_dispatched = stats_values_not_dispatched;
3077   copy_values_sent = stats_values_sent;
3078   copy_values_not_sent = stats_values_not_sent;
3079   copy_receive_list_length = receive_list_length;
3080
3081   /* Initialize `vl' */
3082   vl.values = values;
3083   vl.values_len = 2;
3084   vl.time = 0;
3085   sstrncpy(vl.plugin, "network", sizeof(vl.plugin));
3086
3087   /* Octets received / sent */
3088   vl.values[0].derive = (derive_t)copy_octets_rx;
3089   vl.values[1].derive = (derive_t)copy_octets_tx;
3090   sstrncpy(vl.type, "if_octets", sizeof(vl.type));
3091   plugin_dispatch_values(&vl);
3092
3093   /* Packets received / send */
3094   vl.values[0].derive = (derive_t)copy_packets_rx;
3095   vl.values[1].derive = (derive_t)copy_packets_tx;
3096   sstrncpy(vl.type, "if_packets", sizeof(vl.type));
3097   plugin_dispatch_values(&vl);
3098
3099   /* Values (not) dispatched and (not) send */
3100   sstrncpy(vl.type, "total_values", sizeof(vl.type));
3101   vl.values_len = 1;
3102
3103   vl.values[0].derive = (derive_t)copy_values_dispatched;
3104   sstrncpy(vl.type_instance, "dispatch-accepted", sizeof(vl.type_instance));
3105   plugin_dispatch_values(&vl);
3106
3107   vl.values[0].derive = (derive_t)copy_values_not_dispatched;
3108   sstrncpy(vl.type_instance, "dispatch-rejected", sizeof(vl.type_instance));
3109   plugin_dispatch_values(&vl);
3110
3111   vl.values[0].derive = (derive_t)copy_values_sent;
3112   sstrncpy(vl.type_instance, "send-accepted", sizeof(vl.type_instance));
3113   plugin_dispatch_values(&vl);
3114
3115   vl.values[0].derive = (derive_t)copy_values_not_sent;
3116   sstrncpy(vl.type_instance, "send-rejected", sizeof(vl.type_instance));
3117   plugin_dispatch_values(&vl);
3118
3119   /* Receive queue length */
3120   vl.values[0].gauge = (gauge_t)copy_receive_list_length;
3121   sstrncpy(vl.type, "queue_length", sizeof(vl.type));
3122   vl.type_instance[0] = 0;
3123   plugin_dispatch_values(&vl);
3124
3125   return (0);
3126 } /* }}} int network_stats_read */
3127
3128 static int network_init(void) {
3129   static _Bool have_init = 0;
3130
3131   /* Check if we were already initialized. If so, just return - there's
3132    * nothing more to do (for now, that is). */
3133   if (have_init)
3134     return (0);
3135   have_init = 1;
3136
3137   if (network_config_stats)
3138     plugin_register_read("network", network_stats_read);
3139
3140   plugin_register_shutdown("network", network_shutdown);
3141
3142   send_buffer = malloc(network_config_packet_size);
3143   if (send_buffer == NULL) {
3144     ERROR("network plugin: malloc failed.");
3145     return (-1);
3146   }
3147   network_init_buffer();
3148
3149   /* setup socket(s) and so on */
3150   if (sending_sockets != NULL) {
3151     plugin_register_write("network", network_write,
3152                           /* user_data = */ NULL);
3153     plugin_register_notification("network", network_notification,
3154                                  /* user_data = */ NULL);
3155   }
3156
3157   /* If no threads need to be started, return here. */
3158   if ((listen_sockets_num == 0) ||
3159       ((dispatch_thread_running != 0) && (receive_thread_running != 0)))
3160     return (0);
3161
3162   if (dispatch_thread_running == 0) {
3163     int status;
3164     status = plugin_thread_create(&dispatch_thread_id, NULL /* no attributes */,
3165                                   dispatch_thread, NULL /* no argument */,
3166                                   "network disp");
3167     if (status != 0) {
3168       char errbuf[1024];
3169       ERROR("network: pthread_create failed: %s",
3170             sstrerror(errno, errbuf, sizeof(errbuf)));
3171     } else {
3172       dispatch_thread_running = 1;
3173     }
3174   }
3175
3176   if (receive_thread_running == 0) {
3177     int status;
3178     status = plugin_thread_create(&receive_thread_id, NULL /* no attributes */,
3179                                   receive_thread, NULL /* no argument */,
3180                                   "network recv");
3181     if (status != 0) {
3182       char errbuf[1024];
3183       ERROR("network: pthread_create failed: %s",
3184             sstrerror(errno, errbuf, sizeof(errbuf)));
3185     } else {
3186       receive_thread_running = 1;
3187     }
3188   }
3189
3190   return (0);
3191 } /* int network_init */
3192
3193 /*
3194  * The flush option of the network plugin cannot flush individual identifiers.
3195  * All the values are added to a buffer and sent when the buffer is full, the
3196  * requested value may or may not be in there, it's not worth finding out. We
3197  * just send the buffer if `flush'  is called - if the requested value was in
3198  * there, good. If not, well, then there is nothing to flush.. -octo
3199  */
3200 static int network_flush(cdtime_t timeout,
3201                          __attribute__((unused)) const char *identifier,
3202                          __attribute__((unused)) user_data_t *user_data) {
3203   pthread_mutex_lock(&send_buffer_lock);
3204
3205   if (send_buffer_fill > 0) {
3206     if (timeout > 0) {
3207       cdtime_t now = cdtime();
3208       if ((send_buffer_last_update + timeout) > now) {
3209         pthread_mutex_unlock(&send_buffer_lock);
3210         return (0);
3211       }
3212     }
3213     flush_buffer();
3214   }
3215   pthread_mutex_unlock(&send_buffer_lock);
3216
3217   return (0);
3218 } /* int network_flush */
3219
3220 void module_register(void) {
3221   plugin_register_complex_config("network", network_config);
3222   plugin_register_init("network", network_init);
3223   plugin_register_flush("network", network_flush,
3224                         /* user_data = */ NULL);
3225 } /* void module_register */