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