Merge branch 'collectd-5.7' into collectd-5.8
[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   /* Check if the buffer has enough data for this structure. */
1007   if (buffer_len <= PART_SIGNATURE_SHA256_SIZE)
1008     return -ENOMEM;
1009
1010   /* Read type and length header */
1011   BUFFER_READ(&pss.head.type, sizeof(pss.head.type));
1012   BUFFER_READ(&pss.head.length, sizeof(pss.head.length));
1013   pss_head_length = ntohs(pss.head.length);
1014
1015   /* Check if the `pss_head_length' is within bounds. */
1016   if ((pss_head_length <= PART_SIGNATURE_SHA256_SIZE) ||
1017       (pss_head_length > buffer_len)) {
1018     ERROR("network plugin: HMAC-SHA-256 with invalid length received.");
1019     return -1;
1020   }
1021
1022   if (se->data.server.userdb == NULL) {
1023     c_complain(
1024         LOG_NOTICE, &complain_no_users,
1025         "network plugin: Received signed network packet but can't verify it "
1026         "because no user DB has been configured. Will accept it.");
1027
1028     *ret_buffer = buffer + pss_head_length;
1029     *ret_buffer_len -= pss_head_length;
1030
1031     return 0;
1032   }
1033
1034   /* Copy the hash. */
1035   BUFFER_READ(pss.hash, sizeof(pss.hash));
1036
1037   /* Calculate username length (without null byte) and allocate memory */
1038   username_len = pss_head_length - PART_SIGNATURE_SHA256_SIZE;
1039   pss.username = malloc(username_len + 1);
1040   if (pss.username == NULL)
1041     return -ENOMEM;
1042
1043   /* Read the username */
1044   BUFFER_READ(pss.username, username_len);
1045   pss.username[username_len] = 0;
1046
1047   assert(buffer_offset == pss_head_length);
1048
1049   /* Query the password */
1050   secret = fbh_get(se->data.server.userdb, pss.username);
1051   if (secret == NULL) {
1052     ERROR("network plugin: Unknown user: %s", pss.username);
1053     sfree(pss.username);
1054     return -ENOENT;
1055   }
1056
1057   /* Create a hash device and check the HMAC */
1058   hd = NULL;
1059   err = gcry_md_open(&hd, GCRY_MD_SHA256, GCRY_MD_FLAG_HMAC);
1060   if (err != 0) {
1061     ERROR("network plugin: Creating HMAC-SHA-256 object failed: %s",
1062           gcry_strerror(err));
1063     sfree(secret);
1064     sfree(pss.username);
1065     return -1;
1066   }
1067
1068   err = gcry_md_setkey(hd, secret, strlen(secret));
1069   if (err != 0) {
1070     ERROR("network plugin: gcry_md_setkey failed: %s", gcry_strerror(err));
1071     gcry_md_close(hd);
1072     sfree(secret);
1073     sfree(pss.username);
1074     return -1;
1075   }
1076
1077   gcry_md_write(hd, buffer + PART_SIGNATURE_SHA256_SIZE,
1078                 buffer_len - PART_SIGNATURE_SHA256_SIZE);
1079   hash_ptr = gcry_md_read(hd, GCRY_MD_SHA256);
1080   if (hash_ptr == NULL) {
1081     ERROR("network plugin: gcry_md_read failed.");
1082     gcry_md_close(hd);
1083     sfree(secret);
1084     sfree(pss.username);
1085     return -1;
1086   }
1087   memcpy(hash, hash_ptr, sizeof(hash));
1088
1089   /* Clean up */
1090   gcry_md_close(hd);
1091   hd = NULL;
1092
1093   if (memcmp(pss.hash, hash, sizeof(pss.hash)) != 0) {
1094     WARNING("network plugin: Verifying HMAC-SHA-256 signature failed: "
1095             "Hash mismatch. Username: %s",
1096             pss.username);
1097   } else {
1098     parse_packet(se, buffer + buffer_offset, buffer_len - buffer_offset,
1099                  flags | PP_SIGNED, pss.username);
1100   }
1101
1102   sfree(secret);
1103   sfree(pss.username);
1104
1105   *ret_buffer = buffer + buffer_len;
1106   *ret_buffer_len = 0;
1107
1108   return 0;
1109 } /* }}} int parse_part_sign_sha256 */
1110 /* #endif HAVE_GCRYPT_H */
1111
1112 #else  /* if !HAVE_GCRYPT_H */
1113 static int parse_part_sign_sha256(sockent_t *se, /* {{{ */
1114                                   void **ret_buffer, size_t *ret_buffer_size,
1115                                   int flags) {
1116   static int warning_has_been_printed = 0;
1117
1118   char *buffer;
1119   size_t buffer_size;
1120   size_t buffer_offset;
1121   uint16_t part_len;
1122
1123   part_signature_sha256_t pss;
1124
1125   buffer = *ret_buffer;
1126   buffer_size = *ret_buffer_size;
1127   buffer_offset = 0;
1128
1129   if (buffer_size <= PART_SIGNATURE_SHA256_SIZE)
1130     return -ENOMEM;
1131
1132   BUFFER_READ(&pss.head.type, sizeof(pss.head.type));
1133   BUFFER_READ(&pss.head.length, sizeof(pss.head.length));
1134   part_len = ntohs(pss.head.length);
1135
1136   if ((part_len <= PART_SIGNATURE_SHA256_SIZE) || (part_len > buffer_size))
1137     return -EINVAL;
1138
1139   if (warning_has_been_printed == 0) {
1140     WARNING("network plugin: Received signed packet, but the network "
1141             "plugin was not linked with libgcrypt, so I cannot "
1142             "verify the signature. The packet will be accepted.");
1143     warning_has_been_printed = 1;
1144   }
1145
1146   parse_packet(se, buffer + part_len, buffer_size - part_len, flags,
1147                /* username = */ NULL);
1148
1149   *ret_buffer = buffer + buffer_size;
1150   *ret_buffer_size = 0;
1151
1152   return 0;
1153 } /* }}} int parse_part_sign_sha256 */
1154 #endif /* !HAVE_GCRYPT_H */
1155
1156 #if HAVE_GCRYPT_H
1157 static int parse_part_encr_aes256(sockent_t *se, /* {{{ */
1158                                   void **ret_buffer, size_t *ret_buffer_len,
1159                                   int flags) {
1160   char *buffer = *ret_buffer;
1161   size_t buffer_len = *ret_buffer_len;
1162   size_t payload_len;
1163   size_t part_size;
1164   size_t buffer_offset;
1165   uint16_t username_len;
1166   part_encryption_aes256_t pea;
1167   unsigned char hash[sizeof(pea.hash)] = {0};
1168
1169   gcry_cipher_hd_t cypher;
1170   gcry_error_t err;
1171
1172   /* Make sure at least the header if available. */
1173   if (buffer_len <= PART_ENCRYPTION_AES256_SIZE) {
1174     NOTICE("network plugin: parse_part_encr_aes256: "
1175            "Discarding short packet.");
1176     return -1;
1177   }
1178
1179   buffer_offset = 0;
1180
1181   /* Copy the unencrypted information into `pea'. */
1182   BUFFER_READ(&pea.head.type, sizeof(pea.head.type));
1183   BUFFER_READ(&pea.head.length, sizeof(pea.head.length));
1184
1185   /* Check the `part size'. */
1186   part_size = ntohs(pea.head.length);
1187   if ((part_size <= PART_ENCRYPTION_AES256_SIZE) || (part_size > buffer_len)) {
1188     NOTICE("network plugin: parse_part_encr_aes256: "
1189            "Discarding part with invalid size.");
1190     return -1;
1191   }
1192
1193   /* Read the username */
1194   BUFFER_READ(&username_len, sizeof(username_len));
1195   username_len = ntohs(username_len);
1196
1197   if ((username_len == 0) ||
1198       (username_len > (part_size - (PART_ENCRYPTION_AES256_SIZE + 1)))) {
1199     NOTICE("network plugin: parse_part_encr_aes256: "
1200            "Discarding part with invalid username length.");
1201     return -1;
1202   }
1203
1204   assert(username_len > 0);
1205   pea.username = malloc(username_len + 1);
1206   if (pea.username == NULL)
1207     return -ENOMEM;
1208   BUFFER_READ(pea.username, username_len);
1209   pea.username[username_len] = 0;
1210
1211   /* Last but not least, the initialization vector */
1212   BUFFER_READ(pea.iv, sizeof(pea.iv));
1213
1214   /* Make sure we are at the right position */
1215   assert(buffer_offset ==
1216          (username_len + PART_ENCRYPTION_AES256_SIZE - sizeof(pea.hash)));
1217
1218   cypher = network_get_aes256_cypher(se, pea.iv, sizeof(pea.iv), pea.username);
1219   if (cypher == NULL) {
1220     ERROR("network plugin: Failed to get cypher. Username: %s", pea.username);
1221     sfree(pea.username);
1222     return -1;
1223   }
1224
1225   payload_len = part_size - (PART_ENCRYPTION_AES256_SIZE + username_len);
1226   assert(payload_len > 0);
1227
1228   /* Decrypt the packet in-place */
1229   err = gcry_cipher_decrypt(cypher, buffer + buffer_offset,
1230                             part_size - buffer_offset,
1231                             /* in = */ NULL, /* in len = */ 0);
1232   if (err != 0) {
1233     ERROR("network plugin: gcry_cipher_decrypt returned: %s. Username: %s",
1234           gcry_strerror(err), pea.username);
1235     sfree(pea.username);
1236     return -1;
1237   }
1238
1239   /* Read the hash */
1240   BUFFER_READ(pea.hash, sizeof(pea.hash));
1241
1242   /* Make sure we're at the right position - again */
1243   assert(buffer_offset == (username_len + PART_ENCRYPTION_AES256_SIZE));
1244   assert(buffer_offset == (part_size - payload_len));
1245
1246   /* Check hash sum */
1247   gcry_md_hash_buffer(GCRY_MD_SHA1, hash, buffer + buffer_offset, payload_len);
1248   if (memcmp(hash, pea.hash, sizeof(hash)) != 0) {
1249     ERROR("network plugin: Checksum mismatch. Username: %s", pea.username);
1250     sfree(pea.username);
1251     return -1;
1252   }
1253
1254   parse_packet(se, buffer + buffer_offset, payload_len, flags | PP_ENCRYPTED,
1255                pea.username);
1256
1257   /* Update return values */
1258   *ret_buffer = buffer + part_size;
1259   *ret_buffer_len = buffer_len - part_size;
1260
1261   sfree(pea.username);
1262
1263   return 0;
1264 } /* }}} int parse_part_encr_aes256 */
1265 /* #endif HAVE_GCRYPT_H */
1266
1267 #else  /* if !HAVE_GCRYPT_H */
1268 static int parse_part_encr_aes256(sockent_t *se, /* {{{ */
1269                                   void **ret_buffer, size_t *ret_buffer_size,
1270                                   int flags) {
1271   static int warning_has_been_printed = 0;
1272
1273   char *buffer;
1274   size_t buffer_size;
1275   size_t buffer_offset;
1276
1277   part_header_t ph;
1278   size_t ph_length;
1279
1280   buffer = *ret_buffer;
1281   buffer_size = *ret_buffer_size;
1282   buffer_offset = 0;
1283
1284   /* parse_packet assures this minimum size. */
1285   assert(buffer_size >= (sizeof(ph.type) + sizeof(ph.length)));
1286
1287   BUFFER_READ(&ph.type, sizeof(ph.type));
1288   BUFFER_READ(&ph.length, sizeof(ph.length));
1289   ph_length = ntohs(ph.length);
1290
1291   if ((ph_length <= PART_ENCRYPTION_AES256_SIZE) || (ph_length > buffer_size)) {
1292     ERROR("network plugin: AES-256 encrypted part "
1293           "with invalid length received.");
1294     return -1;
1295   }
1296
1297   if (warning_has_been_printed == 0) {
1298     WARNING("network plugin: Received encrypted packet, but the network "
1299             "plugin was not linked with libgcrypt, so I cannot "
1300             "decrypt it. The part will be discarded.");
1301     warning_has_been_printed = 1;
1302   }
1303
1304   *ret_buffer = (void *)(((char *)*ret_buffer) + ph_length);
1305   *ret_buffer_size -= ph_length;
1306
1307   return 0;
1308 } /* }}} int parse_part_encr_aes256 */
1309 #endif /* !HAVE_GCRYPT_H */
1310
1311 #undef BUFFER_READ
1312
1313 static int parse_packet(sockent_t *se, /* {{{ */
1314                         void *buffer, size_t buffer_size, int flags,
1315                         const char *username) {
1316   int status;
1317
1318   value_list_t vl = VALUE_LIST_INIT;
1319   notification_t n = {0};
1320
1321 #if HAVE_GCRYPT_H
1322   int packet_was_signed = (flags & PP_SIGNED);
1323   int packet_was_encrypted = (flags & PP_ENCRYPTED);
1324   int printed_ignore_warning = 0;
1325 #endif /* HAVE_GCRYPT_H */
1326
1327   memset(&vl, '\0', sizeof(vl));
1328   status = 0;
1329
1330   while ((status == 0) && (0 < buffer_size) &&
1331          ((unsigned int)buffer_size > sizeof(part_header_t))) {
1332     uint16_t pkg_length;
1333     uint16_t pkg_type;
1334
1335     memcpy((void *)&pkg_type, (void *)buffer, sizeof(pkg_type));
1336     memcpy((void *)&pkg_length, (void *)(((char *)buffer) + sizeof(pkg_type)),
1337            sizeof(pkg_length));
1338
1339     pkg_length = ntohs(pkg_length);
1340     pkg_type = ntohs(pkg_type);
1341
1342     if (pkg_length > buffer_size)
1343       break;
1344     /* Ensure that this loop terminates eventually */
1345     if (pkg_length < (2 * sizeof(uint16_t)))
1346       break;
1347
1348     if (pkg_type == TYPE_ENCR_AES256) {
1349       status = parse_part_encr_aes256(se, &buffer, &buffer_size, flags);
1350       if (status != 0) {
1351         ERROR("network plugin: Decrypting AES256 "
1352               "part failed "
1353               "with status %i.",
1354               status);
1355         break;
1356       }
1357     }
1358 #if HAVE_GCRYPT_H
1359     else if ((se->data.server.security_level == SECURITY_LEVEL_ENCRYPT) &&
1360              (packet_was_encrypted == 0)) {
1361       if (printed_ignore_warning == 0) {
1362         INFO("network plugin: Unencrypted packet or "
1363              "part has been ignored.");
1364         printed_ignore_warning = 1;
1365       }
1366       buffer = ((char *)buffer) + pkg_length;
1367       buffer_size -= (size_t)pkg_length;
1368       continue;
1369     }
1370 #endif /* HAVE_GCRYPT_H */
1371     else if (pkg_type == TYPE_SIGN_SHA256) {
1372       status = parse_part_sign_sha256(se, &buffer, &buffer_size, flags);
1373       if (status != 0) {
1374         ERROR("network plugin: Verifying HMAC-SHA-256 "
1375               "signature failed "
1376               "with status %i.",
1377               status);
1378         break;
1379       }
1380     }
1381 #if HAVE_GCRYPT_H
1382     else if ((se->data.server.security_level == SECURITY_LEVEL_SIGN) &&
1383              (packet_was_encrypted == 0) && (packet_was_signed == 0)) {
1384       if (printed_ignore_warning == 0) {
1385         INFO("network plugin: Unsigned packet or "
1386              "part has been ignored.");
1387         printed_ignore_warning = 1;
1388       }
1389       buffer = ((char *)buffer) + pkg_length;
1390       buffer_size -= (size_t)pkg_length;
1391       continue;
1392     }
1393 #endif /* HAVE_GCRYPT_H */
1394     else if (pkg_type == TYPE_VALUES) {
1395       status =
1396           parse_part_values(&buffer, &buffer_size, &vl.values, &vl.values_len);
1397       if (status != 0)
1398         break;
1399
1400       network_dispatch_values(&vl, username);
1401
1402       sfree(vl.values);
1403     } else if (pkg_type == TYPE_TIME) {
1404       uint64_t tmp = 0;
1405       status = parse_part_number(&buffer, &buffer_size, &tmp);
1406       if (status == 0) {
1407         vl.time = TIME_T_TO_CDTIME_T(tmp);
1408         n.time = TIME_T_TO_CDTIME_T(tmp);
1409       }
1410     } else if (pkg_type == TYPE_TIME_HR) {
1411       uint64_t tmp = 0;
1412       status = parse_part_number(&buffer, &buffer_size, &tmp);
1413       if (status == 0) {
1414         vl.time = (cdtime_t)tmp;
1415         n.time = (cdtime_t)tmp;
1416       }
1417     } else if (pkg_type == TYPE_INTERVAL) {
1418       uint64_t tmp = 0;
1419       status = parse_part_number(&buffer, &buffer_size, &tmp);
1420       if (status == 0)
1421         vl.interval = TIME_T_TO_CDTIME_T(tmp);
1422     } else if (pkg_type == TYPE_INTERVAL_HR) {
1423       uint64_t tmp = 0;
1424       status = parse_part_number(&buffer, &buffer_size, &tmp);
1425       if (status == 0)
1426         vl.interval = (cdtime_t)tmp;
1427     } else if (pkg_type == TYPE_HOST) {
1428       status =
1429           parse_part_string(&buffer, &buffer_size, vl.host, sizeof(vl.host));
1430       if (status == 0)
1431         sstrncpy(n.host, vl.host, sizeof(n.host));
1432     } else if (pkg_type == TYPE_PLUGIN) {
1433       status = parse_part_string(&buffer, &buffer_size, vl.plugin,
1434                                  sizeof(vl.plugin));
1435       if (status == 0)
1436         sstrncpy(n.plugin, vl.plugin, sizeof(n.plugin));
1437     } else if (pkg_type == TYPE_PLUGIN_INSTANCE) {
1438       status = parse_part_string(&buffer, &buffer_size, vl.plugin_instance,
1439                                  sizeof(vl.plugin_instance));
1440       if (status == 0)
1441         sstrncpy(n.plugin_instance, vl.plugin_instance,
1442                  sizeof(n.plugin_instance));
1443     } else if (pkg_type == TYPE_TYPE) {
1444       status =
1445           parse_part_string(&buffer, &buffer_size, vl.type, sizeof(vl.type));
1446       if (status == 0)
1447         sstrncpy(n.type, vl.type, sizeof(n.type));
1448     } else if (pkg_type == TYPE_TYPE_INSTANCE) {
1449       status = parse_part_string(&buffer, &buffer_size, vl.type_instance,
1450                                  sizeof(vl.type_instance));
1451       if (status == 0)
1452         sstrncpy(n.type_instance, vl.type_instance, sizeof(n.type_instance));
1453     } else if (pkg_type == TYPE_MESSAGE) {
1454       status = parse_part_string(&buffer, &buffer_size, n.message,
1455                                  sizeof(n.message));
1456
1457       if (status != 0) {
1458         /* do nothing */
1459       } else if ((n.severity != NOTIF_FAILURE) &&
1460                  (n.severity != NOTIF_WARNING) && (n.severity != NOTIF_OKAY)) {
1461         INFO("network plugin: "
1462              "Ignoring notification with "
1463              "unknown severity %i.",
1464              n.severity);
1465       } else if (n.time == 0) {
1466         INFO("network plugin: "
1467              "Ignoring notification with "
1468              "time == 0.");
1469       } else if (strlen(n.message) == 0) {
1470         INFO("network plugin: "
1471              "Ignoring notification with "
1472              "an empty message.");
1473       } else {
1474         network_dispatch_notification(&n);
1475       }
1476     } else if (pkg_type == TYPE_SEVERITY) {
1477       uint64_t tmp = 0;
1478       status = parse_part_number(&buffer, &buffer_size, &tmp);
1479       if (status == 0)
1480         n.severity = (int)tmp;
1481     } else {
1482       DEBUG("network plugin: parse_packet: Unknown part"
1483             " type: 0x%04hx",
1484             pkg_type);
1485       buffer = ((char *)buffer) + pkg_length;
1486       buffer_size -= (size_t)pkg_length;
1487     }
1488   } /* while (buffer_size > sizeof (part_header_t)) */
1489
1490   if (status == 0 && buffer_size > 0)
1491     WARNING("network plugin: parse_packet: Received truncated "
1492             "packet, try increasing `MaxPacketSize'");
1493
1494   return status;
1495 } /* }}} int parse_packet */
1496
1497 static void free_sockent_client(struct sockent_client *sec) /* {{{ */
1498 {
1499   if (sec->fd >= 0) {
1500     close(sec->fd);
1501     sec->fd = -1;
1502   }
1503   sfree(sec->addr);
1504 #if HAVE_GCRYPT_H
1505   sfree(sec->username);
1506   sfree(sec->password);
1507   if (sec->cypher != NULL)
1508     gcry_cipher_close(sec->cypher);
1509 #endif
1510 } /* }}} void free_sockent_client */
1511
1512 static void free_sockent_server(struct sockent_server *ses) /* {{{ */
1513 {
1514   for (size_t i = 0; i < ses->fd_num; i++) {
1515     if (ses->fd[i] >= 0) {
1516       close(ses->fd[i]);
1517       ses->fd[i] = -1;
1518     }
1519   }
1520
1521   sfree(ses->fd);
1522 #if HAVE_GCRYPT_H
1523   sfree(ses->auth_file);
1524   fbh_destroy(ses->userdb);
1525   if (ses->cypher != NULL)
1526     gcry_cipher_close(ses->cypher);
1527 #endif
1528 } /* }}} void free_sockent_server */
1529
1530 static void sockent_destroy(sockent_t *se) /* {{{ */
1531 {
1532   sockent_t *next;
1533
1534   DEBUG("network plugin: sockent_destroy (se = %p);", (void *)se);
1535
1536   while (se != NULL) {
1537     next = se->next;
1538
1539     sfree(se->node);
1540     sfree(se->service);
1541
1542     if (se->type == SOCKENT_TYPE_CLIENT)
1543       free_sockent_client(&se->data.client);
1544     else
1545       free_sockent_server(&se->data.server);
1546
1547     sfree(se);
1548     se = next;
1549   }
1550 } /* }}} void sockent_destroy */
1551
1552 /*
1553  * int network_set_ttl
1554  *
1555  * Set the `IP_MULTICAST_TTL', `IP_TTL', `IPV6_MULTICAST_HOPS' or
1556  * `IPV6_UNICAST_HOPS', depending on which option is applicable.
1557  *
1558  * The `struct addrinfo' is used to destinguish between unicast and multicast
1559  * sockets.
1560  */
1561 static int network_set_ttl(const sockent_t *se, const struct addrinfo *ai) {
1562   DEBUG("network plugin: network_set_ttl: network_config_ttl = %i;",
1563         network_config_ttl);
1564
1565   assert(se->type == SOCKENT_TYPE_CLIENT);
1566
1567   if ((network_config_ttl < 1) || (network_config_ttl > 255))
1568     return -1;
1569
1570   if (ai->ai_family == AF_INET) {
1571     struct sockaddr_in *addr = (struct sockaddr_in *)ai->ai_addr;
1572     int optname;
1573
1574     if (IN_MULTICAST(ntohl(addr->sin_addr.s_addr)))
1575       optname = IP_MULTICAST_TTL;
1576     else
1577       optname = IP_TTL;
1578
1579     if (setsockopt(se->data.client.fd, IPPROTO_IP, optname, &network_config_ttl,
1580                    sizeof(network_config_ttl)) != 0) {
1581       char errbuf[1024];
1582       ERROR("network plugin: setsockopt (ipv4-ttl): %s",
1583             sstrerror(errno, errbuf, sizeof(errbuf)));
1584       return -1;
1585     }
1586   } else if (ai->ai_family == AF_INET6) {
1587     /* Useful example:
1588      * http://gsyc.escet.urjc.es/~eva/IPv6-web/examples/mcast.html */
1589     struct sockaddr_in6 *addr = (struct sockaddr_in6 *)ai->ai_addr;
1590     int optname;
1591
1592     if (IN6_IS_ADDR_MULTICAST(&addr->sin6_addr))
1593       optname = IPV6_MULTICAST_HOPS;
1594     else
1595       optname = IPV6_UNICAST_HOPS;
1596
1597     if (setsockopt(se->data.client.fd, IPPROTO_IPV6, optname,
1598                    &network_config_ttl, sizeof(network_config_ttl)) != 0) {
1599       char errbuf[1024];
1600       ERROR("network plugin: setsockopt(ipv6-ttl): %s",
1601             sstrerror(errno, errbuf, sizeof(errbuf)));
1602       return -1;
1603     }
1604   }
1605
1606   return 0;
1607 } /* int network_set_ttl */
1608
1609 static int network_set_interface(const sockent_t *se,
1610                                  const struct addrinfo *ai) /* {{{ */
1611 {
1612   DEBUG("network plugin: network_set_interface: interface index = %i;",
1613         se->interface);
1614
1615   assert(se->type == SOCKENT_TYPE_CLIENT);
1616
1617   if (ai->ai_family == AF_INET) {
1618     struct sockaddr_in *addr = (struct sockaddr_in *)ai->ai_addr;
1619
1620     if (IN_MULTICAST(ntohl(addr->sin_addr.s_addr))) {
1621 #if HAVE_STRUCT_IP_MREQN_IMR_IFINDEX
1622       /* If possible, use the "ip_mreqn" structure which has
1623        * an "interface index" member. Using the interface
1624        * index is preferred here, because of its similarity
1625        * to the way IPv6 handles this. Unfortunately, it
1626        * appears not to be portable. */
1627       struct ip_mreqn mreq = {.imr_multiaddr.s_addr = addr->sin_addr.s_addr,
1628                               .imr_address.s_addr = ntohl(INADDR_ANY),
1629                               .imr_ifindex = se->interface};
1630 #else
1631       struct ip_mreq mreq = {.imr_multiaddr.s_addr = addr->sin_addr.s_addr,
1632                              .imr_interface.s_addr = ntohl(INADDR_ANY)};
1633 #endif
1634
1635       if (setsockopt(se->data.client.fd, IPPROTO_IP, IP_MULTICAST_IF, &mreq,
1636                      sizeof(mreq)) != 0) {
1637         char errbuf[1024];
1638         ERROR("network plugin: setsockopt (ipv4-multicast-if): %s",
1639               sstrerror(errno, errbuf, sizeof(errbuf)));
1640         return -1;
1641       }
1642
1643       return 0;
1644     }
1645   } else if (ai->ai_family == AF_INET6) {
1646     struct sockaddr_in6 *addr = (struct sockaddr_in6 *)ai->ai_addr;
1647
1648     if (IN6_IS_ADDR_MULTICAST(&addr->sin6_addr)) {
1649       if (setsockopt(se->data.client.fd, IPPROTO_IPV6, IPV6_MULTICAST_IF,
1650                      &se->interface, sizeof(se->interface)) != 0) {
1651         char errbuf[1024];
1652         ERROR("network plugin: setsockopt (ipv6-multicast-if): %s",
1653               sstrerror(errno, errbuf, sizeof(errbuf)));
1654         return -1;
1655       }
1656
1657       return 0;
1658     }
1659   }
1660
1661   /* else: Not a multicast interface. */
1662   if (se->interface != 0) {
1663 #if defined(HAVE_IF_INDEXTONAME) && HAVE_IF_INDEXTONAME &&                     \
1664     defined(SO_BINDTODEVICE)
1665     char interface_name[IFNAMSIZ];
1666
1667     if (if_indextoname(se->interface, interface_name) == NULL)
1668       return -1;
1669
1670     DEBUG("network plugin: Binding socket to interface %s", interface_name);
1671
1672     if (setsockopt(se->data.client.fd, SOL_SOCKET, SO_BINDTODEVICE,
1673                    interface_name, sizeof(interface_name)) == -1) {
1674       char errbuf[1024];
1675       ERROR("network plugin: setsockopt (bind-if): %s",
1676             sstrerror(errno, errbuf, sizeof(errbuf)));
1677       return -1;
1678     }
1679 /* #endif HAVE_IF_INDEXTONAME && SO_BINDTODEVICE */
1680
1681 #else
1682     WARNING("network plugin: Cannot set the interface on a unicast "
1683             "socket because "
1684 #if !defined(SO_BINDTODEVICE)
1685             "the \"SO_BINDTODEVICE\" socket option "
1686 #else
1687             "the \"if_indextoname\" function "
1688 #endif
1689             "is not available on your system.");
1690 #endif
1691   }
1692
1693   return 0;
1694 } /* }}} network_set_interface */
1695
1696 static int network_bind_socket(int fd, const struct addrinfo *ai,
1697                                const int interface_idx) {
1698 #if KERNEL_SOLARIS
1699   char loop = 0;
1700 #else
1701   int loop = 0;
1702 #endif
1703   int yes = 1;
1704
1705   /* allow multiple sockets to use the same PORT number */
1706   if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) == -1) {
1707     char errbuf[1024];
1708     ERROR("network plugin: setsockopt (reuseaddr): %s",
1709           sstrerror(errno, errbuf, sizeof(errbuf)));
1710     return -1;
1711   }
1712
1713   DEBUG("fd = %i; calling `bind'", fd);
1714
1715   if (bind(fd, ai->ai_addr, ai->ai_addrlen) == -1) {
1716     char errbuf[1024];
1717     ERROR("bind: %s", sstrerror(errno, errbuf, sizeof(errbuf)));
1718     return -1;
1719   }
1720
1721   if (ai->ai_family == AF_INET) {
1722     struct sockaddr_in *addr = (struct sockaddr_in *)ai->ai_addr;
1723     if (IN_MULTICAST(ntohl(addr->sin_addr.s_addr))) {
1724 #if HAVE_STRUCT_IP_MREQN_IMR_IFINDEX
1725       struct ip_mreqn mreq;
1726 #else
1727       struct ip_mreq mreq;
1728 #endif
1729
1730       DEBUG("fd = %i; IPv4 multicast address found", fd);
1731
1732       mreq.imr_multiaddr.s_addr = addr->sin_addr.s_addr;
1733 #if HAVE_STRUCT_IP_MREQN_IMR_IFINDEX
1734       /* Set the interface using the interface index if
1735        * possible (available). Unfortunately, the struct
1736        * ip_mreqn is not portable. */
1737       mreq.imr_address.s_addr = ntohl(INADDR_ANY);
1738       mreq.imr_ifindex = interface_idx;
1739 #else
1740       mreq.imr_interface.s_addr = ntohl(INADDR_ANY);
1741 #endif
1742
1743       if (setsockopt(fd, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop)) ==
1744           -1) {
1745         char errbuf[1024];
1746         ERROR("network plugin: setsockopt (multicast-loop): %s",
1747               sstrerror(errno, errbuf, sizeof(errbuf)));
1748         return -1;
1749       }
1750
1751       if (setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq)) ==
1752           -1) {
1753         char errbuf[1024];
1754         ERROR("network plugin: setsockopt (add-membership): %s",
1755               sstrerror(errno, errbuf, sizeof(errbuf)));
1756         return -1;
1757       }
1758
1759       return 0;
1760     }
1761   } else if (ai->ai_family == AF_INET6) {
1762     /* Useful example:
1763      * http://gsyc.escet.urjc.es/~eva/IPv6-web/examples/mcast.html */
1764     struct sockaddr_in6 *addr = (struct sockaddr_in6 *)ai->ai_addr;
1765     if (IN6_IS_ADDR_MULTICAST(&addr->sin6_addr)) {
1766       struct ipv6_mreq mreq;
1767
1768       DEBUG("fd = %i; IPv6 multicast address found", fd);
1769
1770       memcpy(&mreq.ipv6mr_multiaddr, &addr->sin6_addr, sizeof(addr->sin6_addr));
1771
1772       /* http://developer.apple.com/documentation/Darwin/Reference/ManPages/man4/ip6.4.html
1773        * ipv6mr_interface may be set to zeroes to
1774        * choose the default multicast interface or to
1775        * the index of a particular multicast-capable
1776        * interface if the host is multihomed.
1777        * Membership is associ-associated with a
1778        * single interface; programs running on
1779        * multihomed hosts may need to join the same
1780        * group on more than one interface.*/
1781       mreq.ipv6mr_interface = interface_idx;
1782
1783       if (setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &loop,
1784                      sizeof(loop)) == -1) {
1785         char errbuf[1024];
1786         ERROR("network plugin: setsockopt (ipv6-multicast-loop): %s",
1787               sstrerror(errno, errbuf, sizeof(errbuf)));
1788         return -1;
1789       }
1790
1791       if (setsockopt(fd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, &mreq,
1792                      sizeof(mreq)) == -1) {
1793         char errbuf[1024];
1794         ERROR("network plugin: setsockopt (ipv6-add-membership): %s",
1795               sstrerror(errno, errbuf, sizeof(errbuf)));
1796         return -1;
1797       }
1798
1799       return 0;
1800     }
1801   }
1802
1803 #if defined(HAVE_IF_INDEXTONAME) && HAVE_IF_INDEXTONAME &&                     \
1804     defined(SO_BINDTODEVICE)
1805   /* if a specific interface was set, bind the socket to it. But to avoid
1806    * possible problems with multicast routing, only do that for non-multicast
1807    * addresses */
1808   if (interface_idx != 0) {
1809     char interface_name[IFNAMSIZ];
1810
1811     if (if_indextoname(interface_idx, interface_name) == NULL)
1812       return -1;
1813
1814     DEBUG("fd = %i; Binding socket to interface %s", fd, interface_name);
1815
1816     if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, interface_name,
1817                    sizeof(interface_name)) == -1) {
1818       char errbuf[1024];
1819       ERROR("network plugin: setsockopt (bind-if): %s",
1820             sstrerror(errno, errbuf, sizeof(errbuf)));
1821       return -1;
1822     }
1823   }
1824 #endif /* HAVE_IF_INDEXTONAME && SO_BINDTODEVICE */
1825
1826   return 0;
1827 } /* int network_bind_socket */
1828
1829 /* Initialize a sockent structure. `type' must be either `SOCKENT_TYPE_CLIENT'
1830  * or `SOCKENT_TYPE_SERVER' */
1831 static sockent_t *sockent_create(int type) /* {{{ */
1832 {
1833   sockent_t *se;
1834
1835   if ((type != SOCKENT_TYPE_CLIENT) && (type != SOCKENT_TYPE_SERVER))
1836     return NULL;
1837
1838   se = calloc(1, sizeof(*se));
1839   if (se == NULL)
1840     return NULL;
1841
1842   se->type = type;
1843   se->node = NULL;
1844   se->service = NULL;
1845   se->interface = 0;
1846   se->next = NULL;
1847
1848   if (type == SOCKENT_TYPE_SERVER) {
1849     se->data.server.fd = NULL;
1850     se->data.server.fd_num = 0;
1851 #if HAVE_GCRYPT_H
1852     se->data.server.security_level = SECURITY_LEVEL_NONE;
1853     se->data.server.auth_file = NULL;
1854     se->data.server.userdb = NULL;
1855     se->data.server.cypher = NULL;
1856 #endif
1857   } else {
1858     se->data.client.fd = -1;
1859     se->data.client.addr = NULL;
1860     se->data.client.resolve_interval = 0;
1861     se->data.client.next_resolve_reconnect = 0;
1862 #if HAVE_GCRYPT_H
1863     se->data.client.security_level = SECURITY_LEVEL_NONE;
1864     se->data.client.username = NULL;
1865     se->data.client.password = NULL;
1866     se->data.client.cypher = NULL;
1867 #endif
1868   }
1869
1870   return se;
1871 } /* }}} sockent_t *sockent_create */
1872
1873 static int sockent_init_crypto(sockent_t *se) /* {{{ */
1874 {
1875 #if HAVE_GCRYPT_H /* {{{ */
1876   if (se->type == SOCKENT_TYPE_CLIENT) {
1877     if (se->data.client.security_level > SECURITY_LEVEL_NONE) {
1878       if (network_init_gcrypt() < 0) {
1879         ERROR("network plugin: Cannot configure client socket with "
1880               "security: Failed to initialize crypto library.");
1881         return -1;
1882       }
1883
1884       if ((se->data.client.username == NULL) ||
1885           (se->data.client.password == NULL)) {
1886         ERROR("network plugin: Client socket with "
1887               "security requested, but no "
1888               "credentials are configured.");
1889         return -1;
1890       }
1891       gcry_md_hash_buffer(GCRY_MD_SHA256, se->data.client.password_hash,
1892                           se->data.client.password,
1893                           strlen(se->data.client.password));
1894     }
1895   } else /* (se->type == SOCKENT_TYPE_SERVER) */
1896   {
1897     if ((se->data.server.security_level > SECURITY_LEVEL_NONE) &&
1898         (se->data.server.auth_file == NULL)) {
1899       ERROR("network plugin: Server socket with security requested, "
1900             "but no \"AuthFile\" is configured.");
1901       return -1;
1902     }
1903     if (se->data.server.auth_file != NULL) {
1904       if (network_init_gcrypt() < 0) {
1905         ERROR("network plugin: Cannot configure server socket with security: "
1906               "Failed to initialize crypto library.");
1907         return -1;
1908       }
1909
1910       se->data.server.userdb = fbh_create(se->data.server.auth_file);
1911       if (se->data.server.userdb == NULL) {
1912         ERROR("network plugin: Reading password file \"%s\" failed.",
1913               se->data.server.auth_file);
1914         return -1;
1915       }
1916     }
1917   }
1918 #endif /* }}} HAVE_GCRYPT_H */
1919
1920   return 0;
1921 } /* }}} int sockent_init_crypto */
1922
1923 static int sockent_client_disconnect(sockent_t *se) /* {{{ */
1924 {
1925   struct sockent_client *client;
1926
1927   if ((se == NULL) || (se->type != SOCKENT_TYPE_CLIENT))
1928     return EINVAL;
1929
1930   client = &se->data.client;
1931   if (client->fd >= 0) /* connected */
1932   {
1933     close(client->fd);
1934     client->fd = -1;
1935   }
1936
1937   sfree(client->addr);
1938   client->addrlen = 0;
1939
1940   return 0;
1941 } /* }}} int sockent_client_disconnect */
1942
1943 static int sockent_client_connect(sockent_t *se) /* {{{ */
1944 {
1945   static c_complain_t complaint = C_COMPLAIN_INIT_STATIC;
1946
1947   struct sockent_client *client;
1948   struct addrinfo *ai_list;
1949   int status;
1950   _Bool reconnect = 0;
1951   cdtime_t now;
1952
1953   if ((se == NULL) || (se->type != SOCKENT_TYPE_CLIENT))
1954     return EINVAL;
1955
1956   client = &se->data.client;
1957
1958   now = cdtime();
1959   if (client->resolve_interval != 0 && client->next_resolve_reconnect < now) {
1960     DEBUG("network plugin: Reconnecting socket, resolve_interval = %lf, "
1961           "next_resolve_reconnect = %lf",
1962           CDTIME_T_TO_DOUBLE(client->resolve_interval),
1963           CDTIME_T_TO_DOUBLE(client->next_resolve_reconnect));
1964     reconnect = 1;
1965   }
1966
1967   if (client->fd >= 0 && !reconnect) /* already connected and not stale*/
1968     return 0;
1969
1970   struct addrinfo ai_hints = {.ai_family = AF_UNSPEC,
1971                               .ai_flags = AI_ADDRCONFIG,
1972                               .ai_protocol = IPPROTO_UDP,
1973                               .ai_socktype = SOCK_DGRAM};
1974
1975   status = getaddrinfo(se->node,
1976                        (se->service != NULL) ? se->service : NET_DEFAULT_PORT,
1977                        &ai_hints, &ai_list);
1978   if (status != 0) {
1979     c_complain(
1980         LOG_ERR, &complaint, "network plugin: getaddrinfo (%s, %s) failed: %s",
1981         (se->node == NULL) ? "(null)" : se->node,
1982         (se->service == NULL) ? "(null)" : se->service, gai_strerror(status));
1983     return -1;
1984   } else {
1985     c_release(LOG_NOTICE, &complaint,
1986               "network plugin: Successfully resolved \"%s\".", se->node);
1987   }
1988
1989   for (struct addrinfo *ai_ptr = ai_list; ai_ptr != NULL;
1990        ai_ptr = ai_ptr->ai_next) {
1991     if (client->fd >= 0) /* when we reconnect */
1992       sockent_client_disconnect(se);
1993
1994     client->fd =
1995         socket(ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
1996     if (client->fd < 0) {
1997       char errbuf[1024];
1998       ERROR("network plugin: socket(2) failed: %s",
1999             sstrerror(errno, errbuf, sizeof(errbuf)));
2000       continue;
2001     }
2002
2003     client->addr = calloc(1, sizeof(*client->addr));
2004     if (client->addr == NULL) {
2005       ERROR("network plugin: calloc failed.");
2006       close(client->fd);
2007       client->fd = -1;
2008       continue;
2009     }
2010
2011     assert(sizeof(*client->addr) >= ai_ptr->ai_addrlen);
2012     memcpy(client->addr, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
2013     client->addrlen = ai_ptr->ai_addrlen;
2014
2015     network_set_ttl(se, ai_ptr);
2016     network_set_interface(se, ai_ptr);
2017
2018     /* We don't open more than one write-socket per
2019      * node/service pair.. */
2020     break;
2021   }
2022
2023   freeaddrinfo(ai_list);
2024   if (client->fd < 0)
2025     return -1;
2026
2027   if (client->resolve_interval > 0)
2028     client->next_resolve_reconnect = now + client->resolve_interval;
2029   return 0;
2030 } /* }}} int sockent_client_connect */
2031
2032 /* Open the file descriptors for a initialized sockent structure. */
2033 static int sockent_server_listen(sockent_t *se) /* {{{ */
2034 {
2035   struct addrinfo *ai_list;
2036   int status;
2037
2038   const char *node;
2039   const char *service;
2040
2041   if (se == NULL)
2042     return -1;
2043
2044   assert(se->data.server.fd == NULL);
2045   assert(se->data.server.fd_num == 0);
2046
2047   node = se->node;
2048   service = se->service;
2049
2050   if (service == NULL)
2051     service = NET_DEFAULT_PORT;
2052
2053   DEBUG("network plugin: sockent_server_listen: node = %s; service = %s;", node,
2054         service);
2055
2056   struct addrinfo ai_hints = {.ai_family = AF_UNSPEC,
2057                               .ai_flags = AI_ADDRCONFIG | AI_PASSIVE,
2058                               .ai_protocol = IPPROTO_UDP,
2059                               .ai_socktype = SOCK_DGRAM};
2060
2061   status = getaddrinfo(node, service, &ai_hints, &ai_list);
2062   if (status != 0) {
2063     ERROR("network plugin: getaddrinfo (%s, %s) failed: %s",
2064           (se->node == NULL) ? "(null)" : se->node,
2065           (se->service == NULL) ? "(null)" : se->service, gai_strerror(status));
2066     return -1;
2067   }
2068
2069   for (struct addrinfo *ai_ptr = ai_list; ai_ptr != NULL;
2070        ai_ptr = ai_ptr->ai_next) {
2071     int *tmp;
2072
2073     tmp = realloc(se->data.server.fd,
2074                   sizeof(*tmp) * (se->data.server.fd_num + 1));
2075     if (tmp == NULL) {
2076       ERROR("network plugin: realloc failed.");
2077       continue;
2078     }
2079     se->data.server.fd = tmp;
2080     tmp = se->data.server.fd + se->data.server.fd_num;
2081
2082     *tmp = socket(ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
2083     if (*tmp < 0) {
2084       char errbuf[1024];
2085       ERROR("network plugin: socket(2) failed: %s",
2086             sstrerror(errno, errbuf, sizeof(errbuf)));
2087       continue;
2088     }
2089
2090     status = network_bind_socket(*tmp, ai_ptr, se->interface);
2091     if (status != 0) {
2092       close(*tmp);
2093       *tmp = -1;
2094       continue;
2095     }
2096
2097     se->data.server.fd_num++;
2098     continue;
2099   } /* for (ai_list) */
2100
2101   freeaddrinfo(ai_list);
2102
2103   if (se->data.server.fd_num == 0)
2104     return -1;
2105   return 0;
2106 } /* }}} int sockent_server_listen */
2107
2108 /* Add a sockent to the global list of sockets */
2109 static int sockent_add(sockent_t *se) /* {{{ */
2110 {
2111   sockent_t *last_ptr;
2112
2113   if (se == NULL)
2114     return -1;
2115
2116   if (se->type == SOCKENT_TYPE_SERVER) {
2117     struct pollfd *tmp;
2118
2119     tmp = realloc(listen_sockets_pollfd,
2120                   sizeof(*tmp) * (listen_sockets_num + se->data.server.fd_num));
2121     if (tmp == NULL) {
2122       ERROR("network plugin: realloc failed.");
2123       return -1;
2124     }
2125     listen_sockets_pollfd = tmp;
2126     tmp = listen_sockets_pollfd + listen_sockets_num;
2127
2128     for (size_t i = 0; i < se->data.server.fd_num; i++) {
2129       memset(tmp + i, 0, sizeof(*tmp));
2130       tmp[i].fd = se->data.server.fd[i];
2131       tmp[i].events = POLLIN | POLLPRI;
2132       tmp[i].revents = 0;
2133     }
2134
2135     listen_sockets_num += se->data.server.fd_num;
2136
2137     if (listen_sockets == NULL) {
2138       listen_sockets = se;
2139       return 0;
2140     }
2141     last_ptr = listen_sockets;
2142   } else /* if (se->type == SOCKENT_TYPE_CLIENT) */
2143   {
2144     if (sending_sockets == NULL) {
2145       sending_sockets = se;
2146       return 0;
2147     }
2148     last_ptr = sending_sockets;
2149   }
2150
2151   while (last_ptr->next != NULL)
2152     last_ptr = last_ptr->next;
2153   last_ptr->next = se;
2154
2155   return 0;
2156 } /* }}} int sockent_add */
2157
2158 static void *dispatch_thread(void __attribute__((unused)) * arg) /* {{{ */
2159 {
2160   while (42) {
2161     receive_list_entry_t *ent;
2162     sockent_t *se;
2163
2164     /* Lock and wait for more data to come in */
2165     pthread_mutex_lock(&receive_list_lock);
2166     while ((listen_loop == 0) && (receive_list_head == NULL))
2167       pthread_cond_wait(&receive_list_cond, &receive_list_lock);
2168
2169     /* Remove the head entry and unlock */
2170     ent = receive_list_head;
2171     if (ent != NULL)
2172       receive_list_head = ent->next;
2173     receive_list_length--;
2174     pthread_mutex_unlock(&receive_list_lock);
2175
2176     /* Check whether we are supposed to exit. We do NOT check `listen_loop'
2177      * because we dispatch all missing packets before shutting down. */
2178     if (ent == NULL)
2179       break;
2180
2181     /* Look for the correct `sockent_t' */
2182     se = listen_sockets;
2183     while (se != NULL) {
2184       size_t i;
2185
2186       for (i = 0; i < se->data.server.fd_num; i++)
2187         if (se->data.server.fd[i] == ent->fd)
2188           break;
2189
2190       if (i < se->data.server.fd_num)
2191         break;
2192
2193       se = se->next;
2194     }
2195
2196     if (se == NULL) {
2197       ERROR("network plugin: Got packet from FD %i, but can't "
2198             "find an appropriate socket entry.",
2199             ent->fd);
2200       sfree(ent->data);
2201       sfree(ent);
2202       continue;
2203     }
2204
2205     parse_packet(se, ent->data, ent->data_len, /* flags = */ 0,
2206                  /* username = */ NULL);
2207     sfree(ent->data);
2208     sfree(ent);
2209   } /* while (42) */
2210
2211   return NULL;
2212 } /* }}} void *dispatch_thread */
2213
2214 static int network_receive(void) /* {{{ */
2215 {
2216   char buffer[network_config_packet_size];
2217   int buffer_len;
2218
2219   int status = 0;
2220
2221   receive_list_entry_t *private_list_head;
2222   receive_list_entry_t *private_list_tail;
2223   uint64_t private_list_length;
2224
2225   assert(listen_sockets_num > 0);
2226
2227   private_list_head = NULL;
2228   private_list_tail = NULL;
2229   private_list_length = 0;
2230
2231   while (listen_loop == 0) {
2232     status = poll(listen_sockets_pollfd, listen_sockets_num, -1);
2233     if (status <= 0) {
2234       char errbuf[1024];
2235       if (errno == EINTR)
2236         continue;
2237       ERROR("network plugin: poll(2) failed: %s",
2238             sstrerror(errno, errbuf, sizeof(errbuf)));
2239       break;
2240     }
2241
2242     for (size_t i = 0; (i < listen_sockets_num) && (status > 0); i++) {
2243       receive_list_entry_t *ent;
2244
2245       if ((listen_sockets_pollfd[i].revents & (POLLIN | POLLPRI)) == 0)
2246         continue;
2247       status--;
2248
2249       buffer_len = recv(listen_sockets_pollfd[i].fd, buffer, sizeof(buffer),
2250                         0 /* no flags */);
2251       if (buffer_len < 0) {
2252         char errbuf[1024];
2253         status = (errno != 0) ? errno : -1;
2254         ERROR("network plugin: recv(2) failed: %s",
2255               sstrerror(errno, errbuf, sizeof(errbuf)));
2256         break;
2257       }
2258
2259       stats_octets_rx += ((uint64_t)buffer_len);
2260       stats_packets_rx++;
2261
2262       /* TODO: Possible performance enhancement: Do not free
2263        * these entries in the dispatch thread but put them in
2264        * another list, so we don't have to allocate more and
2265        * more of these structures. */
2266       ent = calloc(1, sizeof(*ent));
2267       if (ent == NULL) {
2268         ERROR("network plugin: calloc failed.");
2269         status = ENOMEM;
2270         break;
2271       }
2272
2273       ent->data = malloc(network_config_packet_size);
2274       if (ent->data == NULL) {
2275         sfree(ent);
2276         ERROR("network plugin: malloc failed.");
2277         status = ENOMEM;
2278         break;
2279       }
2280       ent->fd = listen_sockets_pollfd[i].fd;
2281       ent->next = NULL;
2282
2283       memcpy(ent->data, buffer, buffer_len);
2284       ent->data_len = buffer_len;
2285
2286       if (private_list_head == NULL)
2287         private_list_head = ent;
2288       else
2289         private_list_tail->next = ent;
2290       private_list_tail = ent;
2291       private_list_length++;
2292
2293       /* Do not block here. Blocking here has led to
2294        * insufficient performance in the past. */
2295       if (pthread_mutex_trylock(&receive_list_lock) == 0) {
2296         assert(((receive_list_head == NULL) && (receive_list_length == 0)) ||
2297                ((receive_list_head != NULL) && (receive_list_length != 0)));
2298
2299         if (receive_list_head == NULL)
2300           receive_list_head = private_list_head;
2301         else
2302           receive_list_tail->next = private_list_head;
2303         receive_list_tail = private_list_tail;
2304         receive_list_length += private_list_length;
2305
2306         pthread_cond_signal(&receive_list_cond);
2307         pthread_mutex_unlock(&receive_list_lock);
2308
2309         private_list_head = NULL;
2310         private_list_tail = NULL;
2311         private_list_length = 0;
2312       }
2313
2314       status = 0;
2315     } /* for (listen_sockets_pollfd) */
2316
2317     if (status != 0)
2318       break;
2319   } /* while (listen_loop == 0) */
2320
2321   /* Make sure everything is dispatched before exiting. */
2322   if (private_list_head != NULL) {
2323     pthread_mutex_lock(&receive_list_lock);
2324
2325     if (receive_list_head == NULL)
2326       receive_list_head = private_list_head;
2327     else
2328       receive_list_tail->next = private_list_head;
2329     receive_list_tail = private_list_tail;
2330     receive_list_length += private_list_length;
2331
2332     pthread_cond_signal(&receive_list_cond);
2333     pthread_mutex_unlock(&receive_list_lock);
2334   }
2335
2336   return status;
2337 } /* }}} int network_receive */
2338
2339 static void *receive_thread(void __attribute__((unused)) * arg) {
2340   return network_receive() ? (void *)1 : (void *)0;
2341 } /* void *receive_thread */
2342
2343 static void network_init_buffer(void) {
2344   memset(send_buffer, 0, network_config_packet_size);
2345   send_buffer_ptr = send_buffer;
2346   send_buffer_fill = 0;
2347   send_buffer_last_update = 0;
2348
2349   memset(&send_buffer_vl, 0, sizeof(send_buffer_vl));
2350 } /* int network_init_buffer */
2351
2352 static void network_send_buffer_plain(sockent_t *se, /* {{{ */
2353                                       const char *buffer, size_t buffer_size) {
2354   int status;
2355
2356   while (42) {
2357     status = sockent_client_connect(se);
2358     if (status != 0)
2359       return;
2360
2361     status = sendto(se->data.client.fd, buffer, buffer_size,
2362                     /* flags = */ 0, (struct sockaddr *)se->data.client.addr,
2363                     se->data.client.addrlen);
2364     if (status < 0) {
2365       char errbuf[1024];
2366
2367       if ((errno == EINTR) || (errno == EAGAIN))
2368         continue;
2369
2370       ERROR("network plugin: sendto failed: %s. Closing sending socket.",
2371             sstrerror(errno, errbuf, sizeof(errbuf)));
2372       sockent_client_disconnect(se);
2373       return;
2374     }
2375
2376     break;
2377   } /* while (42) */
2378 } /* }}} void network_send_buffer_plain */
2379
2380 #if HAVE_GCRYPT_H
2381 #define BUFFER_ADD(p, s)                                                       \
2382   do {                                                                         \
2383     memcpy(buffer + buffer_offset, (p), (s));                                  \
2384     buffer_offset += (s);                                                      \
2385   } while (0)
2386
2387 static void network_send_buffer_signed(sockent_t *se, /* {{{ */
2388                                        const char *in_buffer,
2389                                        size_t in_buffer_size) {
2390   char buffer[BUFF_SIG_SIZE + in_buffer_size];
2391   size_t buffer_offset;
2392   size_t username_len;
2393
2394   gcry_md_hd_t hd;
2395   gcry_error_t err;
2396   unsigned char *hash;
2397
2398   hd = NULL;
2399   err = gcry_md_open(&hd, GCRY_MD_SHA256, GCRY_MD_FLAG_HMAC);
2400   if (err != 0) {
2401     ERROR("network plugin: Creating HMAC object failed: %s",
2402           gcry_strerror(err));
2403     return;
2404   }
2405
2406   err = gcry_md_setkey(hd, se->data.client.password,
2407                        strlen(se->data.client.password));
2408   if (err != 0) {
2409     ERROR("network plugin: gcry_md_setkey failed: %s", gcry_strerror(err));
2410     gcry_md_close(hd);
2411     return;
2412   }
2413
2414   username_len = strlen(se->data.client.username);
2415   if (username_len > (BUFF_SIG_SIZE - PART_SIGNATURE_SHA256_SIZE)) {
2416     ERROR("network plugin: Username too long: %s", se->data.client.username);
2417     return;
2418   }
2419
2420   memcpy(buffer + PART_SIGNATURE_SHA256_SIZE, se->data.client.username,
2421          username_len);
2422   memcpy(buffer + PART_SIGNATURE_SHA256_SIZE + username_len, in_buffer,
2423          in_buffer_size);
2424
2425   /* Initialize the `ps' structure. */
2426   part_signature_sha256_t ps = {
2427       .head.type = htons(TYPE_SIGN_SHA256),
2428       .head.length = htons(PART_SIGNATURE_SHA256_SIZE + username_len)};
2429
2430   /* Calculate the hash value. */
2431   gcry_md_write(hd, buffer + PART_SIGNATURE_SHA256_SIZE,
2432                 username_len + in_buffer_size);
2433   hash = gcry_md_read(hd, GCRY_MD_SHA256);
2434   if (hash == NULL) {
2435     ERROR("network plugin: gcry_md_read failed.");
2436     gcry_md_close(hd);
2437     return;
2438   }
2439   memcpy(ps.hash, hash, sizeof(ps.hash));
2440
2441   /* Add the header */
2442   buffer_offset = 0;
2443
2444   BUFFER_ADD(&ps.head.type, sizeof(ps.head.type));
2445   BUFFER_ADD(&ps.head.length, sizeof(ps.head.length));
2446   BUFFER_ADD(ps.hash, sizeof(ps.hash));
2447
2448   assert(buffer_offset == PART_SIGNATURE_SHA256_SIZE);
2449
2450   gcry_md_close(hd);
2451   hd = NULL;
2452
2453   buffer_offset = PART_SIGNATURE_SHA256_SIZE + username_len + in_buffer_size;
2454   network_send_buffer_plain(se, buffer, buffer_offset);
2455 } /* }}} void network_send_buffer_signed */
2456
2457 static void network_send_buffer_encrypted(sockent_t *se, /* {{{ */
2458                                           const char *in_buffer,
2459                                           size_t in_buffer_size) {
2460   char buffer[BUFF_SIG_SIZE + in_buffer_size];
2461   size_t buffer_size;
2462   size_t buffer_offset;
2463   size_t header_size;
2464   size_t username_len;
2465   gcry_error_t err;
2466   gcry_cipher_hd_t cypher;
2467
2468   /* Initialize the header fields */
2469   part_encryption_aes256_t pea = {.head.type = htons(TYPE_ENCR_AES256),
2470                                   .username = se->data.client.username};
2471
2472   username_len = strlen(pea.username);
2473   if ((PART_ENCRYPTION_AES256_SIZE + username_len) > BUFF_SIG_SIZE) {
2474     ERROR("network plugin: Username too long: %s", pea.username);
2475     return;
2476   }
2477
2478   buffer_size = PART_ENCRYPTION_AES256_SIZE + username_len + in_buffer_size;
2479   header_size = PART_ENCRYPTION_AES256_SIZE + username_len - sizeof(pea.hash);
2480
2481   assert(buffer_size <= sizeof(buffer));
2482   DEBUG("network plugin: network_send_buffer_encrypted: "
2483         "buffer_size = %zu;",
2484         buffer_size);
2485
2486   pea.head.length = htons(
2487       (uint16_t)(PART_ENCRYPTION_AES256_SIZE + username_len + in_buffer_size));
2488   pea.username_length = htons((uint16_t)username_len);
2489
2490   /* Chose a random initialization vector. */
2491   gcry_randomize((void *)&pea.iv, sizeof(pea.iv), GCRY_STRONG_RANDOM);
2492
2493   /* Create hash of the payload */
2494   gcry_md_hash_buffer(GCRY_MD_SHA1, pea.hash, in_buffer, in_buffer_size);
2495
2496   /* Initialize the buffer */
2497   buffer_offset = 0;
2498   memset(buffer, 0, sizeof(buffer));
2499
2500   BUFFER_ADD(&pea.head.type, sizeof(pea.head.type));
2501   BUFFER_ADD(&pea.head.length, sizeof(pea.head.length));
2502   BUFFER_ADD(&pea.username_length, sizeof(pea.username_length));
2503   BUFFER_ADD(pea.username, username_len);
2504   BUFFER_ADD(pea.iv, sizeof(pea.iv));
2505   assert(buffer_offset == header_size);
2506   BUFFER_ADD(pea.hash, sizeof(pea.hash));
2507   BUFFER_ADD(in_buffer, in_buffer_size);
2508
2509   assert(buffer_offset == buffer_size);
2510
2511   cypher = network_get_aes256_cypher(se, pea.iv, sizeof(pea.iv),
2512                                      se->data.client.password);
2513   if (cypher == NULL)
2514     return;
2515
2516   /* Encrypt the buffer in-place */
2517   err = gcry_cipher_encrypt(cypher, buffer + header_size,
2518                             buffer_size - header_size,
2519                             /* in = */ NULL, /* in len = */ 0);
2520   if (err != 0) {
2521     ERROR("network plugin: gcry_cipher_encrypt returned: %s",
2522           gcry_strerror(err));
2523     return;
2524   }
2525
2526   /* Send it out without further modifications */
2527   network_send_buffer_plain(se, buffer, buffer_size);
2528 } /* }}} void network_send_buffer_encrypted */
2529 #undef BUFFER_ADD
2530 #endif /* HAVE_GCRYPT_H */
2531
2532 static void network_send_buffer(char *buffer, size_t buffer_len) /* {{{ */
2533 {
2534   DEBUG("network plugin: network_send_buffer: buffer_len = %zu", buffer_len);
2535
2536   for (sockent_t *se = sending_sockets; se != NULL; se = se->next) {
2537 #if HAVE_GCRYPT_H
2538     if (se->data.client.security_level == SECURITY_LEVEL_ENCRYPT)
2539       network_send_buffer_encrypted(se, buffer, buffer_len);
2540     else if (se->data.client.security_level == SECURITY_LEVEL_SIGN)
2541       network_send_buffer_signed(se, buffer, buffer_len);
2542     else /* if (se->data.client.security_level == SECURITY_LEVEL_NONE) */
2543 #endif   /* HAVE_GCRYPT_H */
2544       network_send_buffer_plain(se, buffer, buffer_len);
2545   } /* for (sending_sockets) */
2546 } /* }}} void network_send_buffer */
2547
2548 static int add_to_buffer(char *buffer, size_t buffer_size, /* {{{ */
2549                          value_list_t *vl_def, const data_set_t *ds,
2550                          const value_list_t *vl) {
2551   char *buffer_orig = buffer;
2552
2553   if (strcmp(vl_def->host, vl->host) != 0) {
2554     if (write_part_string(&buffer, &buffer_size, TYPE_HOST, vl->host,
2555                           strlen(vl->host)) != 0)
2556       return -1;
2557     sstrncpy(vl_def->host, vl->host, sizeof(vl_def->host));
2558   }
2559
2560   if (vl_def->time != vl->time) {
2561     if (write_part_number(&buffer, &buffer_size, TYPE_TIME_HR,
2562                           (uint64_t)vl->time))
2563       return -1;
2564     vl_def->time = vl->time;
2565   }
2566
2567   if (vl_def->interval != vl->interval) {
2568     if (write_part_number(&buffer, &buffer_size, TYPE_INTERVAL_HR,
2569                           (uint64_t)vl->interval))
2570       return -1;
2571     vl_def->interval = vl->interval;
2572   }
2573
2574   if (strcmp(vl_def->plugin, vl->plugin) != 0) {
2575     if (write_part_string(&buffer, &buffer_size, TYPE_PLUGIN, vl->plugin,
2576                           strlen(vl->plugin)) != 0)
2577       return -1;
2578     sstrncpy(vl_def->plugin, vl->plugin, sizeof(vl_def->plugin));
2579   }
2580
2581   if (strcmp(vl_def->plugin_instance, vl->plugin_instance) != 0) {
2582     if (write_part_string(&buffer, &buffer_size, TYPE_PLUGIN_INSTANCE,
2583                           vl->plugin_instance,
2584                           strlen(vl->plugin_instance)) != 0)
2585       return -1;
2586     sstrncpy(vl_def->plugin_instance, vl->plugin_instance,
2587              sizeof(vl_def->plugin_instance));
2588   }
2589
2590   if (strcmp(vl_def->type, vl->type) != 0) {
2591     if (write_part_string(&buffer, &buffer_size, TYPE_TYPE, vl->type,
2592                           strlen(vl->type)) != 0)
2593       return -1;
2594     sstrncpy(vl_def->type, ds->type, sizeof(vl_def->type));
2595   }
2596
2597   if (strcmp(vl_def->type_instance, vl->type_instance) != 0) {
2598     if (write_part_string(&buffer, &buffer_size, TYPE_TYPE_INSTANCE,
2599                           vl->type_instance, strlen(vl->type_instance)) != 0)
2600       return -1;
2601     sstrncpy(vl_def->type_instance, vl->type_instance,
2602              sizeof(vl_def->type_instance));
2603   }
2604
2605   if (write_part_values(&buffer, &buffer_size, ds, vl) != 0)
2606     return -1;
2607
2608   return buffer - buffer_orig;
2609 } /* }}} int add_to_buffer */
2610
2611 static void flush_buffer(void) {
2612   DEBUG("network plugin: flush_buffer: send_buffer_fill = %i",
2613         send_buffer_fill);
2614
2615   network_send_buffer(send_buffer, (size_t)send_buffer_fill);
2616
2617   stats_octets_tx += ((uint64_t)send_buffer_fill);
2618   stats_packets_tx++;
2619
2620   network_init_buffer();
2621 }
2622
2623 static int network_write(const data_set_t *ds, const value_list_t *vl,
2624                          user_data_t __attribute__((unused)) * user_data) {
2625   int status;
2626
2627   /* listen_loop is set to non-zero in the shutdown callback, which is
2628    * guaranteed to be called *after* all the write threads have been shut
2629    * down. */
2630   assert(listen_loop == 0);
2631
2632   if (!check_send_okay(vl)) {
2633 #if COLLECT_DEBUG
2634     char name[6 * DATA_MAX_NAME_LEN];
2635     FORMAT_VL(name, sizeof(name), vl);
2636     name[sizeof(name) - 1] = 0;
2637     DEBUG("network plugin: network_write: "
2638           "NOT sending %s.",
2639           name);
2640 #endif
2641     /* Counter is not protected by another lock and may be reached by
2642      * multiple threads */
2643     pthread_mutex_lock(&stats_lock);
2644     stats_values_not_sent++;
2645     pthread_mutex_unlock(&stats_lock);
2646     return 0;
2647   }
2648
2649   uc_meta_data_add_unsigned_int(vl, "network:time_sent", (uint64_t)vl->time);
2650
2651   pthread_mutex_lock(&send_buffer_lock);
2652
2653   status =
2654       add_to_buffer(send_buffer_ptr, network_config_packet_size -
2655                                          (send_buffer_fill + BUFF_SIG_SIZE),
2656                     &send_buffer_vl, ds, vl);
2657   if (status >= 0) {
2658     /* status == bytes added to the buffer */
2659     send_buffer_fill += status;
2660     send_buffer_ptr += status;
2661     send_buffer_last_update = cdtime();
2662
2663     stats_values_sent++;
2664   } else {
2665     flush_buffer();
2666
2667     status =
2668         add_to_buffer(send_buffer_ptr, network_config_packet_size -
2669                                            (send_buffer_fill + BUFF_SIG_SIZE),
2670                       &send_buffer_vl, ds, vl);
2671
2672     if (status >= 0) {
2673       send_buffer_fill += status;
2674       send_buffer_ptr += status;
2675
2676       stats_values_sent++;
2677     }
2678   }
2679
2680   if (status < 0) {
2681     ERROR("network plugin: Unable to append to the "
2682           "buffer for some weird reason");
2683   } else if ((network_config_packet_size - send_buffer_fill) < 15) {
2684     flush_buffer();
2685   }
2686
2687   pthread_mutex_unlock(&send_buffer_lock);
2688
2689   return (status < 0) ? -1 : 0;
2690 } /* int network_write */
2691
2692 static int network_config_set_ttl(const oconfig_item_t *ci) /* {{{ */
2693 {
2694   int tmp = 0;
2695
2696   if (cf_util_get_int(ci, &tmp) != 0)
2697     return -1;
2698   else if ((tmp > 0) && (tmp <= 255))
2699     network_config_ttl = tmp;
2700   else {
2701     WARNING("network plugin: The `TimeToLive' must be between 1 and 255.");
2702     return -1;
2703   }
2704
2705   return 0;
2706 } /* }}} int network_config_set_ttl */
2707
2708 static int network_config_set_interface(const oconfig_item_t *ci, /* {{{ */
2709                                         int *interface) {
2710   char if_name[256];
2711
2712   if (cf_util_get_string_buffer(ci, if_name, sizeof(if_name)) != 0)
2713     return -1;
2714
2715   *interface = if_nametoindex(if_name);
2716   return 0;
2717 } /* }}} int network_config_set_interface */
2718
2719 static int network_config_set_buffer_size(const oconfig_item_t *ci) /* {{{ */
2720 {
2721   int tmp = 0;
2722
2723   if (cf_util_get_int(ci, &tmp) != 0)
2724     return -1;
2725   else if ((tmp >= 1024) && (tmp <= 65535))
2726     network_config_packet_size = tmp;
2727   else {
2728     WARNING(
2729         "network plugin: The `MaxPacketSize' must be between 1024 and 65535.");
2730     return -1;
2731   }
2732
2733   return 0;
2734 } /* }}} int network_config_set_buffer_size */
2735
2736 #if HAVE_GCRYPT_H
2737 static int network_config_set_security_level(oconfig_item_t *ci, /* {{{ */
2738                                              int *retval) {
2739   char *str;
2740   if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) {
2741     WARNING("network plugin: The `SecurityLevel' config option needs exactly "
2742             "one string argument.");
2743     return -1;
2744   }
2745
2746   str = ci->values[0].value.string;
2747   if (strcasecmp("Encrypt", str) == 0)
2748     *retval = SECURITY_LEVEL_ENCRYPT;
2749   else if (strcasecmp("Sign", str) == 0)
2750     *retval = SECURITY_LEVEL_SIGN;
2751   else if (strcasecmp("None", str) == 0)
2752     *retval = SECURITY_LEVEL_NONE;
2753   else {
2754     WARNING("network plugin: Unknown security level: %s.", str);
2755     return -1;
2756   }
2757
2758   return 0;
2759 } /* }}} int network_config_set_security_level */
2760 #endif /* HAVE_GCRYPT_H */
2761
2762 static int network_config_add_listen(const oconfig_item_t *ci) /* {{{ */
2763 {
2764   sockent_t *se;
2765   int status;
2766
2767   if ((ci->values_num < 1) || (ci->values_num > 2) ||
2768       (ci->values[0].type != OCONFIG_TYPE_STRING) ||
2769       ((ci->values_num > 1) && (ci->values[1].type != OCONFIG_TYPE_STRING))) {
2770     ERROR("network plugin: The `%s' config option needs "
2771           "one or two string arguments.",
2772           ci->key);
2773     return -1;
2774   }
2775
2776   se = sockent_create(SOCKENT_TYPE_SERVER);
2777   if (se == NULL) {
2778     ERROR("network plugin: sockent_create failed.");
2779     return -1;
2780   }
2781
2782   se->node = strdup(ci->values[0].value.string);
2783   if (ci->values_num >= 2)
2784     se->service = strdup(ci->values[1].value.string);
2785
2786   for (int i = 0; i < ci->children_num; i++) {
2787     oconfig_item_t *child = ci->children + i;
2788
2789 #if HAVE_GCRYPT_H
2790     if (strcasecmp("AuthFile", child->key) == 0)
2791       cf_util_get_string(child, &se->data.server.auth_file);
2792     else if (strcasecmp("SecurityLevel", child->key) == 0)
2793       network_config_set_security_level(child, &se->data.server.security_level);
2794     else
2795 #endif /* HAVE_GCRYPT_H */
2796         if (strcasecmp("Interface", child->key) == 0)
2797       network_config_set_interface(child, &se->interface);
2798     else {
2799       WARNING("network plugin: Option `%s' is not allowed here.", child->key);
2800     }
2801   }
2802
2803 #if HAVE_GCRYPT_H
2804   if ((se->data.server.security_level > SECURITY_LEVEL_NONE) &&
2805       (se->data.server.auth_file == NULL)) {
2806     ERROR("network plugin: A security level higher than `none' was "
2807           "requested, but no AuthFile option was given. Cowardly refusing to "
2808           "open this socket!");
2809     sockent_destroy(se);
2810     return -1;
2811   }
2812 #endif /* HAVE_GCRYPT_H */
2813
2814   status = sockent_init_crypto(se);
2815   if (status != 0) {
2816     ERROR("network plugin: network_config_add_listen: sockent_init_crypto() "
2817           "failed.");
2818     sockent_destroy(se);
2819     return -1;
2820   }
2821
2822   status = sockent_server_listen(se);
2823   if (status != 0) {
2824     ERROR("network plugin: network_config_add_listen: sockent_server_listen "
2825           "failed.");
2826     sockent_destroy(se);
2827     return -1;
2828   }
2829
2830   status = sockent_add(se);
2831   if (status != 0) {
2832     ERROR("network plugin: network_config_add_listen: sockent_add failed.");
2833     sockent_destroy(se);
2834     return -1;
2835   }
2836
2837   return 0;
2838 } /* }}} int network_config_add_listen */
2839
2840 static int network_config_add_server(const oconfig_item_t *ci) /* {{{ */
2841 {
2842   sockent_t *se;
2843   int status;
2844
2845   if ((ci->values_num < 1) || (ci->values_num > 2) ||
2846       (ci->values[0].type != OCONFIG_TYPE_STRING) ||
2847       ((ci->values_num > 1) && (ci->values[1].type != OCONFIG_TYPE_STRING))) {
2848     ERROR("network plugin: The `%s' config option needs "
2849           "one or two string arguments.",
2850           ci->key);
2851     return -1;
2852   }
2853
2854   se = sockent_create(SOCKENT_TYPE_CLIENT);
2855   if (se == NULL) {
2856     ERROR("network plugin: sockent_create failed.");
2857     return -1;
2858   }
2859
2860   se->node = strdup(ci->values[0].value.string);
2861   if (ci->values_num >= 2)
2862     se->service = strdup(ci->values[1].value.string);
2863
2864   for (int i = 0; i < ci->children_num; i++) {
2865     oconfig_item_t *child = ci->children + i;
2866
2867 #if HAVE_GCRYPT_H
2868     if (strcasecmp("Username", child->key) == 0)
2869       cf_util_get_string(child, &se->data.client.username);
2870     else if (strcasecmp("Password", child->key) == 0)
2871       cf_util_get_string(child, &se->data.client.password);
2872     else if (strcasecmp("SecurityLevel", child->key) == 0)
2873       network_config_set_security_level(child, &se->data.client.security_level);
2874     else
2875 #endif /* HAVE_GCRYPT_H */
2876         if (strcasecmp("Interface", child->key) == 0)
2877       network_config_set_interface(child, &se->interface);
2878     else if (strcasecmp("ResolveInterval", child->key) == 0)
2879       cf_util_get_cdtime(child, &se->data.client.resolve_interval);
2880     else {
2881       WARNING("network plugin: Option `%s' is not allowed here.", child->key);
2882     }
2883   }
2884
2885 #if HAVE_GCRYPT_H
2886   if ((se->data.client.security_level > SECURITY_LEVEL_NONE) &&
2887       ((se->data.client.username == NULL) ||
2888        (se->data.client.password == NULL))) {
2889     ERROR("network plugin: A security level higher than `none' was "
2890           "requested, but no Username or Password option was given. "
2891           "Cowardly refusing to open this socket!");
2892     sockent_destroy(se);
2893     return -1;
2894   }
2895 #endif /* HAVE_GCRYPT_H */
2896
2897   status = sockent_init_crypto(se);
2898   if (status != 0) {
2899     ERROR("network plugin: network_config_add_server: sockent_init_crypto() "
2900           "failed.");
2901     sockent_destroy(se);
2902     return -1;
2903   }
2904
2905   /* No call to sockent_client_connect() here -- it is called from
2906    * network_send_buffer_plain(). */
2907
2908   status = sockent_add(se);
2909   if (status != 0) {
2910     ERROR("network plugin: network_config_add_server: sockent_add failed.");
2911     sockent_destroy(se);
2912     return -1;
2913   }
2914
2915   return 0;
2916 } /* }}} int network_config_add_server */
2917
2918 static int network_config(oconfig_item_t *ci) /* {{{ */
2919 {
2920   /* The options need to be applied first */
2921   for (int i = 0; i < ci->children_num; i++) {
2922     oconfig_item_t *child = ci->children + i;
2923     if (strcasecmp("TimeToLive", child->key) == 0)
2924       network_config_set_ttl(child);
2925   }
2926
2927   for (int i = 0; i < ci->children_num; i++) {
2928     oconfig_item_t *child = ci->children + i;
2929
2930     if (strcasecmp("Listen", child->key) == 0)
2931       network_config_add_listen(child);
2932     else if (strcasecmp("Server", child->key) == 0)
2933       network_config_add_server(child);
2934     else if (strcasecmp("TimeToLive", child->key) == 0) {
2935       /* Handled earlier */
2936     } else if (strcasecmp("MaxPacketSize", child->key) == 0)
2937       network_config_set_buffer_size(child);
2938     else if (strcasecmp("Forward", child->key) == 0)
2939       cf_util_get_boolean(child, &network_config_forward);
2940     else if (strcasecmp("ReportStats", child->key) == 0)
2941       cf_util_get_boolean(child, &network_config_stats);
2942     else {
2943       WARNING("network plugin: Option `%s' is not allowed here.", child->key);
2944     }
2945   }
2946
2947   return 0;
2948 } /* }}} int network_config */
2949
2950 static int network_notification(const notification_t *n,
2951                                 user_data_t __attribute__((unused)) *
2952                                     user_data) {
2953   char buffer[network_config_packet_size];
2954   char *buffer_ptr = buffer;
2955   size_t buffer_free = sizeof(buffer);
2956   int status;
2957
2958   if (!check_send_notify_okay(n))
2959     return 0;
2960
2961   memset(buffer, 0, sizeof(buffer));
2962
2963   status = write_part_number(&buffer_ptr, &buffer_free, TYPE_TIME_HR,
2964                              (uint64_t)n->time);
2965   if (status != 0)
2966     return -1;
2967
2968   status = write_part_number(&buffer_ptr, &buffer_free, TYPE_SEVERITY,
2969                              (uint64_t)n->severity);
2970   if (status != 0)
2971     return -1;
2972
2973   if (strlen(n->host) > 0) {
2974     status = write_part_string(&buffer_ptr, &buffer_free, TYPE_HOST, n->host,
2975                                strlen(n->host));
2976     if (status != 0)
2977       return -1;
2978   }
2979
2980   if (strlen(n->plugin) > 0) {
2981     status = write_part_string(&buffer_ptr, &buffer_free, TYPE_PLUGIN,
2982                                n->plugin, strlen(n->plugin));
2983     if (status != 0)
2984       return -1;
2985   }
2986
2987   if (strlen(n->plugin_instance) > 0) {
2988     status = write_part_string(&buffer_ptr, &buffer_free, TYPE_PLUGIN_INSTANCE,
2989                                n->plugin_instance, strlen(n->plugin_instance));
2990     if (status != 0)
2991       return -1;
2992   }
2993
2994   if (strlen(n->type) > 0) {
2995     status = write_part_string(&buffer_ptr, &buffer_free, TYPE_TYPE, n->type,
2996                                strlen(n->type));
2997     if (status != 0)
2998       return -1;
2999   }
3000
3001   if (strlen(n->type_instance) > 0) {
3002     status = write_part_string(&buffer_ptr, &buffer_free, TYPE_TYPE_INSTANCE,
3003                                n->type_instance, strlen(n->type_instance));
3004     if (status != 0)
3005       return -1;
3006   }
3007
3008   status = write_part_string(&buffer_ptr, &buffer_free, TYPE_MESSAGE,
3009                              n->message, strlen(n->message));
3010   if (status != 0)
3011     return -1;
3012
3013   network_send_buffer(buffer, sizeof(buffer) - buffer_free);
3014
3015   return 0;
3016 } /* int network_notification */
3017
3018 static int network_shutdown(void) {
3019   listen_loop++;
3020
3021   /* Kill the listening thread */
3022   if (receive_thread_running != 0) {
3023     INFO("network plugin: Stopping receive thread.");
3024     pthread_kill(receive_thread_id, SIGTERM);
3025     pthread_join(receive_thread_id, NULL /* no return value */);
3026     memset(&receive_thread_id, 0, sizeof(receive_thread_id));
3027     receive_thread_running = 0;
3028   }
3029
3030   /* Shutdown the dispatching thread */
3031   if (dispatch_thread_running != 0) {
3032     INFO("network plugin: Stopping dispatch thread.");
3033     pthread_mutex_lock(&receive_list_lock);
3034     pthread_cond_broadcast(&receive_list_cond);
3035     pthread_mutex_unlock(&receive_list_lock);
3036     pthread_join(dispatch_thread_id, /* ret = */ NULL);
3037     dispatch_thread_running = 0;
3038   }
3039
3040   sockent_destroy(listen_sockets);
3041
3042   if (send_buffer_fill > 0)
3043     flush_buffer();
3044
3045   sfree(send_buffer);
3046
3047   for (sockent_t *se = sending_sockets; se != NULL; se = se->next)
3048     sockent_client_disconnect(se);
3049   sockent_destroy(sending_sockets);
3050
3051   plugin_unregister_config("network");
3052   plugin_unregister_init("network");
3053   plugin_unregister_write("network");
3054   plugin_unregister_shutdown("network");
3055
3056   return 0;
3057 } /* int network_shutdown */
3058
3059 static int network_stats_read(void) /* {{{ */
3060 {
3061   derive_t copy_octets_rx;
3062   derive_t copy_octets_tx;
3063   derive_t copy_packets_rx;
3064   derive_t copy_packets_tx;
3065   derive_t copy_values_dispatched;
3066   derive_t copy_values_not_dispatched;
3067   derive_t copy_values_sent;
3068   derive_t copy_values_not_sent;
3069   derive_t copy_receive_list_length;
3070   value_list_t vl = VALUE_LIST_INIT;
3071   value_t values[2];
3072
3073   copy_octets_rx = stats_octets_rx;
3074   copy_octets_tx = stats_octets_tx;
3075   copy_packets_rx = stats_packets_rx;
3076   copy_packets_tx = stats_packets_tx;
3077   copy_values_dispatched = stats_values_dispatched;
3078   copy_values_not_dispatched = stats_values_not_dispatched;
3079   copy_values_sent = stats_values_sent;
3080   copy_values_not_sent = stats_values_not_sent;
3081   copy_receive_list_length = receive_list_length;
3082
3083   /* Initialize `vl' */
3084   vl.values = values;
3085   vl.values_len = 2;
3086   vl.time = 0;
3087   sstrncpy(vl.plugin, "network", sizeof(vl.plugin));
3088
3089   /* Octets received / sent */
3090   vl.values[0].derive = (derive_t)copy_octets_rx;
3091   vl.values[1].derive = (derive_t)copy_octets_tx;
3092   sstrncpy(vl.type, "if_octets", sizeof(vl.type));
3093   plugin_dispatch_values(&vl);
3094
3095   /* Packets received / send */
3096   vl.values[0].derive = (derive_t)copy_packets_rx;
3097   vl.values[1].derive = (derive_t)copy_packets_tx;
3098   sstrncpy(vl.type, "if_packets", sizeof(vl.type));
3099   plugin_dispatch_values(&vl);
3100
3101   /* Values (not) dispatched and (not) send */
3102   sstrncpy(vl.type, "total_values", sizeof(vl.type));
3103   vl.values_len = 1;
3104
3105   vl.values[0].derive = (derive_t)copy_values_dispatched;
3106   sstrncpy(vl.type_instance, "dispatch-accepted", sizeof(vl.type_instance));
3107   plugin_dispatch_values(&vl);
3108
3109   vl.values[0].derive = (derive_t)copy_values_not_dispatched;
3110   sstrncpy(vl.type_instance, "dispatch-rejected", sizeof(vl.type_instance));
3111   plugin_dispatch_values(&vl);
3112
3113   vl.values[0].derive = (derive_t)copy_values_sent;
3114   sstrncpy(vl.type_instance, "send-accepted", sizeof(vl.type_instance));
3115   plugin_dispatch_values(&vl);
3116
3117   vl.values[0].derive = (derive_t)copy_values_not_sent;
3118   sstrncpy(vl.type_instance, "send-rejected", sizeof(vl.type_instance));
3119   plugin_dispatch_values(&vl);
3120
3121   /* Receive queue length */
3122   vl.values[0].gauge = (gauge_t)copy_receive_list_length;
3123   sstrncpy(vl.type, "queue_length", sizeof(vl.type));
3124   vl.type_instance[0] = 0;
3125   plugin_dispatch_values(&vl);
3126
3127   return 0;
3128 } /* }}} int network_stats_read */
3129
3130 static int network_init(void) {
3131   static _Bool have_init = 0;
3132
3133   /* Check if we were already initialized. If so, just return - there's
3134    * nothing more to do (for now, that is). */
3135   if (have_init)
3136     return 0;
3137   have_init = 1;
3138
3139   if (network_config_stats)
3140     plugin_register_read("network", network_stats_read);
3141
3142   plugin_register_shutdown("network", network_shutdown);
3143
3144   send_buffer = malloc(network_config_packet_size);
3145   if (send_buffer == NULL) {
3146     ERROR("network plugin: malloc failed.");
3147     return -1;
3148   }
3149   network_init_buffer();
3150
3151   /* setup socket(s) and so on */
3152   if (sending_sockets != NULL) {
3153     plugin_register_write("network", network_write,
3154                           /* user_data = */ NULL);
3155     plugin_register_notification("network", network_notification,
3156                                  /* user_data = */ NULL);
3157   }
3158
3159   /* If no threads need to be started, return here. */
3160   if ((listen_sockets_num == 0) ||
3161       ((dispatch_thread_running != 0) && (receive_thread_running != 0)))
3162     return 0;
3163
3164   if (dispatch_thread_running == 0) {
3165     int status;
3166     status = plugin_thread_create(&dispatch_thread_id, NULL /* no attributes */,
3167                                   dispatch_thread, NULL /* no argument */,
3168                                   "network disp");
3169     if (status != 0) {
3170       char errbuf[1024];
3171       ERROR("network: pthread_create failed: %s",
3172             sstrerror(errno, errbuf, sizeof(errbuf)));
3173     } else {
3174       dispatch_thread_running = 1;
3175     }
3176   }
3177
3178   if (receive_thread_running == 0) {
3179     int status;
3180     status = plugin_thread_create(&receive_thread_id, NULL /* no attributes */,
3181                                   receive_thread, NULL /* no argument */,
3182                                   "network recv");
3183     if (status != 0) {
3184       char errbuf[1024];
3185       ERROR("network: pthread_create failed: %s",
3186             sstrerror(errno, errbuf, sizeof(errbuf)));
3187     } else {
3188       receive_thread_running = 1;
3189     }
3190   }
3191
3192   return 0;
3193 } /* int network_init */
3194
3195 /*
3196  * The flush option of the network plugin cannot flush individual identifiers.
3197  * All the values are added to a buffer and sent when the buffer is full, the
3198  * requested value may or may not be in there, it's not worth finding out. We
3199  * just send the buffer if `flush'  is called - if the requested value was in
3200  * there, good. If not, well, then there is nothing to flush.. -octo
3201  */
3202 static int network_flush(cdtime_t timeout,
3203                          __attribute__((unused)) const char *identifier,
3204                          __attribute__((unused)) user_data_t *user_data) {
3205   pthread_mutex_lock(&send_buffer_lock);
3206
3207   if (send_buffer_fill > 0) {
3208     if (timeout > 0) {
3209       cdtime_t now = cdtime();
3210       if ((send_buffer_last_update + timeout) > now) {
3211         pthread_mutex_unlock(&send_buffer_lock);
3212         return 0;
3213       }
3214     }
3215     flush_buffer();
3216   }
3217   pthread_mutex_unlock(&send_buffer_lock);
3218
3219   return 0;
3220 } /* int network_flush */
3221
3222 void module_register(void) {
3223   plugin_register_complex_config("network", network_config);
3224   plugin_register_init("network", network_init);
3225   plugin_register_flush("network", network_flush,
3226                         /* user_data = */ NULL);
3227 } /* void module_register */