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