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