Code

5f9aa7419c5ab8127002a3783d161361499150bb
[collectd.git] / src / network.c
1 /**
2  * collectd - src/network.c
3  * Copyright (C) 2006  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; either version 2 of the License, or (at your
8  * option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  * Authors:
20  *   Florian octo Forster <octo at verplant.org>
21  **/
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <netdb.h>
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
31 #include <syslog.h>
32 #include <errno.h>
34 #include "network.h"
35 #include "common.h"
36 #include "configfile.h"
37 #include "utils_debug.h"
39 /* 1500 - 40 - 8  =  Ethernet packet - IPv6 header - UDP header */
40 /* #define BUFF_SIZE 1452 */
42 #define BUFF_SIZE 4096
44 #ifdef HAVE_LIBRRD
45 extern int operating_mode;
46 #else
47 static int operating_mode = MODE_CLIENT;
48 #endif
50 typedef struct sockent
51 {
52         int                      fd;
53         int                      mode;
54         struct sockaddr_storage *addr;
55         socklen_t                addrlen;
56         struct sockent          *next;
57 } sockent_t;
59 static sockent_t *socklist_head = NULL;
61 static int network_set_ttl (const sockent_t *se, const struct addrinfo *ai)
62 {
63         char *ttl_str;
64         int   ttl_int;
66         ttl_str = cf_get_option ("TimeToLive", NULL);
67         if (ttl_str == NULL)
68                 return (-1);
70         ttl_int = atoi (ttl_str);
71         if ((ttl_int < 1) || (ttl_int > 255))
72         {
73                 syslog (LOG_WARNING, "A TTL value of %i is invalid.", ttl_int);
74                 return (-1);
75         }
77         DBG ("ttl = %i", ttl_int);
79         if (ai->ai_family == AF_INET)
80         {
81                 struct sockaddr_in *addr = (struct sockaddr_in *) ai->ai_addr;
82                 int optname;
84                 if (IN_MULTICAST (ntohl (addr->sin_addr.s_addr)))
85                         optname = IP_MULTICAST_TTL;
86                 else
87                         optname = IP_TTL;
89                 if (setsockopt (se->fd, IPPROTO_IP, optname,
90                                         &ttl_int, sizeof (ttl_int)) == -1)
91                 {
92                         syslog (LOG_ERR, "setsockopt: %s", strerror (errno));
93                         return (-1);
94                 }
95         }
96         else if (ai->ai_family == AF_INET6)
97         {
98                 /* Useful example: http://gsyc.escet.urjc.es/~eva/IPv6-web/examples/mcast.html */
99                 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) ai->ai_addr;
100                 int optname;
102                 if (IN6_IS_ADDR_MULTICAST (&addr->sin6_addr))
103                         optname = IPV6_MULTICAST_HOPS;
104                 else
105                         optname = IPV6_UNICAST_HOPS;
107                 if (setsockopt (se->fd, IPPROTO_IPV6, optname,
108                                         &ttl_int, sizeof (ttl_int)) == -1)
109                 {
110                         syslog (LOG_ERR, "setsockopt: %s", strerror (errno));
111                         return (-1);
112                 }
113         }
115         return (0);
118 static int network_bind_socket (const sockent_t *se, const struct addrinfo *ai)
120         int loop = 1;
122         DBG ("fd = %i; calling `bind'", se->fd);
124         if (bind (se->fd, ai->ai_addr, ai->ai_addrlen) == -1)
125         {
126                 syslog (LOG_ERR, "bind: %s", strerror (errno));
127                 return (-1);
128         }
130         if (ai->ai_family == AF_INET)
131         {
132                 struct sockaddr_in *addr = (struct sockaddr_in *) ai->ai_addr;
133                 if (IN_MULTICAST (ntohl (addr->sin_addr.s_addr)))
134                 {
135                         struct ip_mreq mreq;
137                         DBG ("fd = %i; IPv4 multicast address found", se->fd);
139                         mreq.imr_multiaddr.s_addr = addr->sin_addr.s_addr;
140                         mreq.imr_interface.s_addr = htonl (INADDR_ANY);
142                         if (setsockopt (se->fd, IPPROTO_IP, IP_MULTICAST_LOOP,
143                                                 &loop, sizeof (loop)) == -1)
144                         {
145                                 syslog (LOG_ERR, "setsockopt: %s", strerror (errno));
146                                 return (-1);
147                         }
149                         if (setsockopt (se->fd, IPPROTO_IP, IP_ADD_MEMBERSHIP,
150                                                 &mreq, sizeof (mreq)) == -1)
151                         {
152                                 syslog (LOG_ERR, "setsockopt: %s", strerror (errno));
153                                 return (-1);
154                         }
155                 }
156         }
157         else if (ai->ai_family == AF_INET6)
158         {
159                 /* Useful example: http://gsyc.escet.urjc.es/~eva/IPv6-web/examples/mcast.html */
160                 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) ai->ai_addr;
161                 if (IN6_IS_ADDR_MULTICAST (&addr->sin6_addr))
162                 {
163                         struct ipv6_mreq mreq;
165                         DBG ("fd = %i; IPv6 multicast address found", se->fd);
167                         memcpy (&mreq.ipv6mr_multiaddr,
168                                         &addr->sin6_addr,
169                                         sizeof (addr->sin6_addr));
171                         /* http://developer.apple.com/documentation/Darwin/Reference/ManPages/man4/ip6.4.html
172                          * ipv6mr_interface may be set to zeroes to
173                          * choose the default multicast interface or to
174                          * the index of a particular multicast-capable
175                          * interface if the host is multihomed.
176                          * Membership is associ-associated with a
177                          * single interface; programs running on
178                          * multihomed hosts may need to join the same
179                          * group on more than one interface.*/
180                         mreq.ipv6mr_interface = 0;
182                         if (setsockopt (se->fd, IPPROTO_IPV6, IPV6_MULTICAST_LOOP,
183                                                 &loop, sizeof (loop)) == -1)
184                         {
185                                 syslog (LOG_ERR, "setsockopt: %s", strerror (errno));
186                                 return (-1);
187                         }
189                         if (setsockopt (se->fd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP,
190                                                 &mreq, sizeof (mreq)) == -1)
191                         {
192                                 syslog (LOG_ERR, "setsockopt: %s", strerror (errno));
193                                 return (-1);
194                         }
195                 }
196         }
198         return (0);
201 int network_create_socket (const char *node, const char *service)
203         sockent_t *socklist_tail;
205         struct addrinfo  ai_hints;
206         struct addrinfo *ai_list, *ai_ptr;
207         int              ai_return;
209         int num_added = 0;
211         DBG ("node = %s, service = %s", node, service);
213         if (operating_mode == MODE_LOCAL)
214                 return (-1);
216         socklist_tail = socklist_head;
217         while ((socklist_tail != NULL) && (socklist_tail->next != NULL))
218                 socklist_tail = socklist_tail->next;
220         memset (&ai_hints, '\0', sizeof (ai_hints));
221         ai_hints.ai_flags    = AI_PASSIVE | AI_ADDRCONFIG;
222         ai_hints.ai_family   = PF_UNSPEC;
223         ai_hints.ai_socktype = SOCK_DGRAM;
224         ai_hints.ai_protocol = IPPROTO_UDP;
226         if ((ai_return = getaddrinfo (node, service, &ai_hints, &ai_list)) != 0)
227         {
228                 syslog (LOG_ERR, "getaddrinfo (%s, %s): %s",
229                                 node == NULL ? "(null)" : node,
230                                 service == NULL ? "(null)" : service,
231                                 ai_return == EAI_SYSTEM ? strerror (errno) : gai_strerror (ai_return));
232                 return (-1);
233         }
235         for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
236         {
237                 sockent_t *se;
239                 if ((se = (sockent_t *) malloc (sizeof (sockent_t))) == NULL)
240                 {
241                         syslog (LOG_EMERG, "malloc: %s", strerror (errno));
242                         continue;
243                 }
245                 if ((se->addr = (struct sockaddr_storage *) malloc (sizeof (struct sockaddr_storage))) == NULL)
246                 {
247                         syslog (LOG_EMERG, "malloc: %s", strerror (errno));
248                         free (se);
249                         continue;
250                 }
252                 assert (sizeof (struct sockaddr_storage) >= ai_ptr->ai_addrlen);
253                 memset (se->addr, '\0', sizeof (struct sockaddr_storage));
254                 memcpy (se->addr, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
255                 se->addrlen = ai_ptr->ai_addrlen;
257                 se->mode = operating_mode;
258                 se->fd   = socket (ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
259                 se->next = NULL;
261                 if (se->fd == -1)
262                 {
263                         syslog (LOG_ERR, "socket: %s", strerror (errno));
264                         free (se->addr);
265                         free (se);
266                         continue;
267                 }
269                 if (operating_mode == MODE_SERVER)
270                 {
271                         if (network_bind_socket (se, ai_ptr) != 0)
272                         {
273                                 free (se->addr);
274                                 free (se);
275                                 continue;
276                         }
277                 }
278                 else if (operating_mode == MODE_CLIENT)
279                 {
280                         network_set_ttl (se, ai_ptr);
281                 }
283                 if (socklist_tail == NULL)
284                 {
285                         socklist_head = se;
286                         socklist_tail = se;
287                 }
288                 else
289                 {
290                         socklist_tail->next = se;
291                         socklist_tail = se;
292                 }
294                 num_added++;
296                 /* We don't open more than one write-socket per node/service pair.. */
297                 if (operating_mode == MODE_CLIENT)
298                         break;
299         }
301         freeaddrinfo (ai_list);
303         return (num_added);
306 static int network_connect_default (void)
308         int ret;
310         if (socklist_head != NULL)
311                 return (0);
313         DBG ("socklist_head is NULL");
315         ret = 0;
317         if (network_create_socket (NET_DEFAULT_V6_ADDR, NET_DEFAULT_PORT) > 0)
318                 ret++;
320         /* Don't use IPv4 and IPv6 in parallel by default.. */
321         if ((operating_mode == MODE_CLIENT) && (ret != 0))
322                 return (ret);
324         if (network_create_socket (NET_DEFAULT_V4_ADDR, NET_DEFAULT_PORT) > 0)
325                 ret++;
327         if (ret == 0)
328                 ret = -1;
330         return (ret);
333 static int network_get_listen_socket (void)
335         int fd;
336         int max_fd;
337         int status;
339         fd_set readfds;
340         sockent_t *se;
342         if (socklist_head == NULL)
343                 network_connect_default ();
345         FD_ZERO (&readfds);
346         max_fd = -1;
347         for (se = socklist_head; se != NULL; se = se->next)
348         {
349                 if (se->mode != operating_mode)
350                         continue;
352                 FD_SET (se->fd, &readfds);
353                 if (se->fd >= max_fd)
354                         max_fd = se->fd + 1;
355         }
357         if (max_fd == -1)
358         {
359                 syslog (LOG_WARNING, "No listen sockets found!");
360                 return (-1);
361         }
363         status = select (max_fd, &readfds, NULL, NULL, NULL);
365         if (status == -1)
366         {
367                 if (errno != EINTR)
368                         syslog (LOG_ERR, "select: %s", strerror (errno));
369                 return (-1);
370         }
372         fd = -1;
373         for (se = socklist_head; se != NULL; se = se->next)
374         {
375                 if (se->mode != operating_mode)
376                         continue;
378                 if (FD_ISSET (se->fd, &readfds))
379                 {
380                         fd = se->fd;
381                         break;
382                 }
383         }
385         if (fd == -1)
386                 syslog (LOG_WARNING, "No socket ready..?");
388         DBG ("fd = %i", fd);
389         return (fd);
392 int network_receive (char **host, char **type, char **inst, char **value)
394         int fd;
395         char buffer[BUFF_SIZE];
397         struct sockaddr_storage addr;
398         socklen_t               addrlen;
399         int status;
401         char *fields[4];
403         assert (operating_mode == MODE_SERVER);
405         *host  = NULL;
406         *type  = NULL;
407         *inst  = NULL;
408         *value = NULL;
410         if ((fd = network_get_listen_socket ()) < 0)
411                 return (-1);
413         addrlen = sizeof (addr);
414         if (recvfrom (fd, buffer, BUFF_SIZE, 0, (struct sockaddr *) &addr, &addrlen) == -1)
415         {
416                 syslog (LOG_ERR, "recvfrom: %s", strerror (errno));
417                 return (-1);
418         }
420         if ((*host = (char *) malloc (BUFF_SIZE)) == NULL)
421         {
422                 syslog (LOG_EMERG, "malloc: %s", strerror (errno));
423                 return (-1);
424         }
426         status = getnameinfo ((struct sockaddr *) &addr, addrlen,
427                         *host, BUFF_SIZE, NULL, 0, 0);
428         if (status != 0)
429         {
430                 free (*host); *host = NULL;
431                 syslog (LOG_ERR, "getnameinfo: %s",
432                                 status == EAI_SYSTEM ? strerror (errno) : gai_strerror (status));
433                 return (-1);
434         }
436         if (strsplit (buffer, fields, 4) != 3)
437         {
438                 syslog (LOG_WARNING, "Invalid message from `%s'", *host);
439                 free (*host); *host = NULL;
440                 return (-1);
441         }
443         if ((*type = strdup (fields[0])) == NULL)
444         {
445                 syslog (LOG_EMERG, "strdup: %s", strerror (errno));
446                 free (*host); *host = NULL;
447                 return (-1);
448         }
450         if ((*inst = strdup (fields[1])) == NULL)
451         {
452                 syslog (LOG_EMERG, "strdup: %s", strerror (errno));
453                 free (*host); *host = NULL;
454                 free (*type); *type = NULL;
455                 return (-1);
456         }
458         if ((*value = strdup (fields[2])) == NULL)
459         {
460                 syslog (LOG_EMERG, "strdup: %s", strerror (errno));
461                 free (*host); *host = NULL;
462                 free (*type); *type = NULL;
463                 free (*inst); *inst = NULL;
464                 return (-1);
465         }
467         DBG ("host = %s, type = %s, inst = %s, value = %s",
468                         *host, *type, *inst, *value);
470         return (0);
473 int network_send (char *type, char *inst, char *value)
475         char buf[BUFF_SIZE];
476         int buflen;
478         sockent_t *se;
480         int ret;
481         int status;
483         DBG ("type = %s, inst = %s, value = %s", type, inst, value);
485         assert (operating_mode == MODE_CLIENT);
487         buflen = snprintf (buf, BUFF_SIZE, "%s %s %s", type, inst, value);
488         if ((buflen >= BUFF_SIZE) || (buflen < 1))
489         {
490                 syslog (LOG_WARNING, "network_send: snprintf failed..");
491                 return (-1);
492         }
493         buf[buflen] = '\0';
494         buflen++;
496         if (socklist_head == NULL)
497                 network_connect_default ();
499         ret = 0;
500         for (se = socklist_head; se != NULL; se = se->next)
501         {
502                 if (se->mode != operating_mode)
503                         continue;
505                 DBG ("fd = %i", se->fd);
507                 while (1)
508                 {
509                         status = sendto (se->fd, buf, buflen, 0,
510                                         (struct sockaddr *) se->addr, se->addrlen);
512                         if (status == -1)
513                         {
514                                 if (errno == EINTR)
515                                 {
516                                         DBG ("sendto was interrupted");
517                                         continue;
518                                 }
519                                 else
520                                 {
521                                         syslog (LOG_ERR, "sendto: %s", strerror (errno));
522                                         ret = -1;
523                                         break;
524                                 }
525                         }
526                         else if (ret >= 0)
527                                 ret++;
528                         break;
529                 }
530         }
532         if (ret == 0)
533                 syslog (LOG_WARNING, "Message wasn't sent to anybody..");
535         return (ret);