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