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