src/liboping/liboping.c: Fix a problem with strict aliasing.
[collectd.git] / src / liboping / liboping.c
1 /**
2  * Object oriented C module to send ICMP and ICMPv6 `echo's.
3  * Copyright (C) 2006  Florian octo Forster <octo at verplant.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #if HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #if STDC_HEADERS
25 # include <stdlib.h>
26 # include <stdio.h>
27 # include <string.h>
28 # include <errno.h>
29 # include <assert.h>
30 #else
31 # error "You don't have the standard C99 header files installed"
32 #endif /* STDC_HEADERS */
33
34 #if HAVE_UNISTD_H
35 # include <unistd.h>
36 #endif
37
38 #if HAVE_FCNTL_H
39 # include <fcntl.h>
40 #endif
41 #if HAVE_SYS_TYPES_H
42 # include <sys/types.h>
43 #endif
44 #if HAVE_SYS_STAT_H
45 # include <sys/stat.h>
46 #endif
47
48 #if TIME_WITH_SYS_TIME
49 # include <sys/time.h>
50 # include <time.h>
51 #else
52 # if HAVE_SYS_TIME_H
53 #  include <sys/time.h>
54 # else
55 #  include <time.h>
56 # endif
57 #endif
58
59 #if HAVE_SYS_SOCKET_H
60 # include <sys/socket.h>
61 #endif
62 #if HAVE_NETDB_H
63 # include <netdb.h>
64 #endif
65
66 #if HAVE_NETINET_IN_SYSTM_H
67 # include <netinet/in_systm.h>
68 #endif
69 #if HAVE_NETINET_IN_H
70 # include <netinet/in.h>
71 #endif
72 #if HAVE_NETINET_IP_H
73 # include <netinet/ip.h>
74 #endif
75 #if HAVE_NETINET_IP_ICMP_H
76 # include <netinet/ip_icmp.h>
77 #endif
78 #ifdef HAVE_NETINET_IP_VAR_H
79 # include <netinet/ip_var.h>
80 #endif
81 #if HAVE_NETINET_IP6_H
82 # include <netinet/ip6.h>
83 #endif
84 #if HAVE_NETINET_ICMP6_H
85 # include <netinet/icmp6.h>
86 #endif
87
88 #include "oping.h"
89
90 #if WITH_DEBUG
91 # define dprintf(...) printf ("%s[%4i]: %-20s: ", __FILE__, __LINE__, __FUNCTION__); printf (__VA_ARGS__)
92 #else
93 # define dprintf(...) /**/
94 #endif
95
96 #define PING_ERRMSG_LEN 256
97
98 struct pinghost
99 {
100         char                    *hostname;
101         struct sockaddr_storage *addr;
102         socklen_t                addrlen;
103         int                      addrfamily;
104         int                      fd;
105         int                      ident;
106         int                      sequence;
107         struct timeval          *timer;
108         double                   latency;
109         char                    *data;
110
111         void                    *context;
112
113         struct pinghost         *next;
114 };
115
116 struct pingobj
117 {
118         double      timeout;
119         int         ttl;
120         int         addrfamily;
121         char       *data;
122
123         char        errmsg[PING_ERRMSG_LEN];
124
125         pinghost_t *head;
126 };
127
128 /*
129  * private (static) functions
130  */
131 static void ping_set_error (pingobj_t *obj, const char *function,
132                 const char *message)
133 {
134         snprintf (obj->errmsg, PING_ERRMSG_LEN, "%s: %s", function, message);
135         obj->errmsg[PING_ERRMSG_LEN - 1] = '\0';
136 }
137
138 static int ping_timeval_add (struct timeval *tv1, struct timeval *tv2,
139                 struct timeval *res)
140 {
141         res->tv_sec  = tv1->tv_sec  + tv2->tv_sec;
142         res->tv_usec = tv1->tv_usec + tv2->tv_usec;
143
144         while (res->tv_usec > 1000000)
145         {
146                 res->tv_usec -= 1000000;
147                 res->tv_sec++;
148         }
149
150         return (0);
151 }
152
153 static int ping_timeval_sub (struct timeval *tv1, struct timeval *tv2,
154                 struct timeval *res)
155 {
156
157         if ((tv1->tv_sec < tv2->tv_sec)
158                         || ((tv1->tv_sec == tv2->tv_sec)
159                                 && (tv1->tv_usec < tv2->tv_usec)))
160                 return (-1);
161
162         res->tv_sec  = tv1->tv_sec  - tv2->tv_sec;
163         res->tv_usec = tv1->tv_usec - tv2->tv_usec;
164
165         assert ((res->tv_sec > 0) || ((res->tv_sec == 0) && (res->tv_usec > 0)));
166
167         while (res->tv_usec < 0)
168         {
169                 res->tv_usec += 1000000;
170                 res->tv_sec--;
171         }
172
173         return (0);
174 }
175
176 static uint16_t ping_icmp4_checksum (char *buf, size_t len)
177 {
178         uint32_t sum = 0;
179         uint16_t ret = 0;
180
181         uint16_t *ptr;
182
183         for (ptr = (uint16_t *) buf; len > 1; ptr++, len -= 2)
184                 sum += *ptr;
185
186         if (len == 1)
187         {
188                 *(char *) &ret = *(char *) ptr;
189                 sum += ret;
190         }
191
192         /* Do this twice to get all possible carries.. */
193         sum = (sum >> 16) + (sum & 0xFFFF);
194         sum = (sum >> 16) + (sum & 0xFFFF);
195
196         ret = ~sum;
197
198         return (ret);
199 }
200
201 static pinghost_t *ping_receive_ipv4 (pinghost_t *ph, char *buffer, size_t buffer_len)
202 {
203         struct ip *ip_hdr;
204         struct icmp *icmp_hdr;
205
206         size_t ip_hdr_len;
207
208         uint16_t recv_checksum;
209         uint16_t calc_checksum;
210
211         uint16_t ident;
212         uint16_t seq;
213
214         pinghost_t *ptr;
215
216         if (buffer_len < sizeof (struct ip))
217                 return (NULL);
218
219         ip_hdr     = (struct ip *) buffer;
220         ip_hdr_len = ip_hdr->ip_hl << 2;
221
222         if (buffer_len < ip_hdr_len)
223                 return (NULL);
224
225         buffer     += ip_hdr_len;
226         buffer_len -= ip_hdr_len;
227
228         if (buffer_len < sizeof (struct icmp))
229                 return (NULL);
230
231         icmp_hdr = (struct icmp *) buffer;
232         buffer     += sizeof (struct icmp);
233         buffer_len -= sizeof (struct icmp);
234
235         if (icmp_hdr->icmp_type != ICMP_ECHOREPLY)
236         {
237                 dprintf ("Unexpected ICMP type: %i\n", icmp_hdr->icmp_type);
238                 return (NULL);
239         }
240
241         recv_checksum = icmp_hdr->icmp_cksum;
242         icmp_hdr->icmp_cksum = 0;
243         calc_checksum = ping_icmp4_checksum ((char *) icmp_hdr,
244                         sizeof (struct icmp) + buffer_len);
245
246         if (recv_checksum != calc_checksum)
247         {
248                 dprintf ("Checksum missmatch: Got 0x%04x, calculated 0x%04x\n",
249                                 recv_checksum, calc_checksum);
250                 return (NULL);
251         }
252
253         ident = ntohs (icmp_hdr->icmp_id);
254         seq   = ntohs (icmp_hdr->icmp_seq);
255
256         for (ptr = ph; ptr != NULL; ptr = ptr->next)
257         {
258                 dprintf ("hostname = %s, ident = 0x%04x, seq = %i\n",
259                                 ptr->hostname, ptr->ident, ((ptr->sequence - 1) & 0xFFFF));
260
261                 if (ptr->addrfamily != AF_INET)
262                         continue;
263
264                 if (!timerisset (ptr->timer))
265                         continue;
266
267                 if (ptr->ident != ident)
268                         continue;
269
270                 if (((ptr->sequence - 1) & 0xFFFF) != seq)
271                         continue;
272
273                 dprintf ("Match found: hostname = %s, ident = 0x%04x, seq = %i\n",
274                                 ptr->hostname, ident, seq);
275
276                 break;
277         }
278
279         if (ptr == NULL)
280         {
281                 dprintf ("No match found for ident = 0x%04x, seq = %i\n",
282                                 ident, seq);
283         }
284
285         return (ptr);
286 }
287
288 static pinghost_t *ping_receive_ipv6 (pinghost_t *ph, char *buffer, size_t buffer_len)
289 {
290         struct icmp6_hdr *icmp_hdr;
291
292         uint16_t ident;
293         uint16_t seq;
294
295         pinghost_t *ptr;
296
297         if (buffer_len < sizeof (struct icmp6_hdr))
298                 return (NULL);
299
300         icmp_hdr = (struct icmp6_hdr *) buffer;
301         buffer     += sizeof (struct icmp);
302         buffer_len -= sizeof (struct icmp);
303
304         if (icmp_hdr->icmp6_type != ICMP6_ECHO_REPLY)
305         {
306                 dprintf ("Unexpected ICMP type: %02x\n", icmp_hdr->icmp6_type);
307                 return (NULL);
308         }
309
310         if (icmp_hdr->icmp6_code != 0)
311         {
312                 dprintf ("Unexpected ICMP code: %02x\n", icmp_hdr->icmp6_code);
313                 return (NULL);
314         }
315
316         ident = ntohs (icmp_hdr->icmp6_id);
317         seq   = ntohs (icmp_hdr->icmp6_seq);
318
319         for (ptr = ph; ptr != NULL; ptr = ptr->next)
320         {
321                 dprintf ("hostname = %s, ident = 0x%04x, seq = %i\n",
322                                 ptr->hostname, ptr->ident, ((ptr->sequence - 1) & 0xFFFF));
323
324                 if (ptr->addrfamily != AF_INET6)
325                         continue;
326
327                 if (!timerisset (ptr->timer))
328                         continue;
329
330                 if (ptr->ident != ident)
331                         continue;
332
333                 if (((ptr->sequence - 1) & 0xFFFF) != seq)
334                         continue;
335
336                 dprintf ("Match found: hostname = %s, ident = 0x%04x, seq = %i\n",
337                                 ptr->hostname, ident, seq);
338
339                 break;
340         }
341
342         if (ptr == NULL)
343         {
344                 dprintf ("No match found for ident = 0x%04x, seq = %i\n",
345                                 ident, seq);
346         }
347
348         return (ptr);
349 }
350
351 static int ping_receive_one (int fd, pinghost_t *ph, struct timeval *now)
352 {
353         char   buffer[4096];
354         size_t buffer_len;
355
356         struct timeval diff;
357
358         pinghost_t *host = NULL;
359
360         struct sockaddr_storage sa;
361         socklen_t               sa_len;
362
363         sa_len = sizeof (sa);
364
365         buffer_len = recvfrom (fd, buffer, sizeof (buffer), 0,
366                         (struct sockaddr *) &sa, &sa_len);
367         if (buffer_len == -1)
368         {
369                 dprintf ("recvfrom: %s\n", strerror (errno));
370                 return (-1);
371         }
372
373         dprintf ("Read %u bytes from fd = %i\n", (unsigned int) buffer_len, fd);
374
375         if (sa.ss_family == AF_INET)
376         {
377                 if ((host = ping_receive_ipv4 (ph, buffer, buffer_len)) == NULL)
378                         return (-1);
379         }
380         else if (sa.ss_family == AF_INET6)
381         {
382                 if ((host = ping_receive_ipv6 (ph, buffer, buffer_len)) == NULL)
383                         return (-1);
384         }
385
386         dprintf ("rcvd: %12i.%06i\n",
387                         (int) now->tv_sec,
388                         (int) now->tv_usec);
389         dprintf ("sent: %12i.%06i\n",
390                         (int) host->timer->tv_sec,
391                         (int) host->timer->tv_usec);
392
393         if (ping_timeval_sub (now, host->timer, &diff) < 0)
394         {
395                 timerclear (host->timer);
396                 return (-1);
397         }
398
399         dprintf ("diff: %12i.%06i\n",
400                         (int) diff.tv_sec,
401                         (int) diff.tv_usec);
402
403         host->latency  = ((double) diff.tv_usec) / 1000.0;
404         host->latency += ((double) diff.tv_sec)  * 1000.0;
405
406         timerclear (host->timer);
407
408         return (0);
409 }
410
411 static int ping_receive_all (pingobj_t *obj)
412 {
413         fd_set readfds;
414         int num_readfds;
415         int max_readfds;
416
417         pinghost_t *ph;
418         pinghost_t *ptr;
419
420         struct timeval endtime;
421         struct timeval nowtime;
422         struct timeval timeout;
423         int status;
424
425         int ret;
426
427         ph = obj->head;
428         ret = 0;
429
430         for (ptr = ph; ptr != NULL; ptr = ptr->next)
431                 ptr->latency = -1.0;
432
433         if (gettimeofday (&nowtime, NULL) == -1)
434         {
435                 ping_set_error (obj, "gettimeofday", strerror (errno));
436                 return (-1);
437         }
438
439         /* Set up timeout */
440         timeout.tv_sec = (time_t) obj->timeout;
441         timeout.tv_usec = (suseconds_t) (1000000 * (obj->timeout - ((double) timeout.tv_sec)));
442
443         dprintf ("Set timeout to %i.%06i seconds\n",
444                         (int) timeout.tv_sec,
445                         (int) timeout.tv_usec);
446
447         ping_timeval_add (&nowtime, &timeout, &endtime);
448
449         while (1)
450         {
451                 FD_ZERO (&readfds);
452                 num_readfds =  0;
453                 max_readfds = -1;
454
455                 for (ptr = ph; ptr != NULL; ptr = ptr->next)
456                 {
457                         if (!timerisset (ptr->timer))
458                                 continue;
459
460                         FD_SET (ptr->fd, &readfds);
461                         num_readfds++;
462
463                         if (max_readfds < ptr->fd)
464                                 max_readfds = ptr->fd;
465                 }
466
467                 if (num_readfds == 0)
468                         break;
469
470                 if (gettimeofday (&nowtime, NULL) == -1)
471                 {
472                         ping_set_error (obj, "gettimeofday", strerror (errno));
473                         return (-1);
474                 }
475
476                 if (ping_timeval_sub (&endtime, &nowtime, &timeout) == -1)
477                         break;
478
479                 dprintf ("Waiting on %i sockets for %i.%06i seconds\n", num_readfds,
480                                 (int) timeout.tv_sec,
481                                 (int) timeout.tv_usec);
482
483                 status = select (max_readfds + 1, &readfds, NULL, NULL, &timeout);
484
485                 if (gettimeofday (&nowtime, NULL) == -1)
486                 {
487                         ping_set_error (obj, "gettimeofday", strerror (errno));
488                         return (-1);
489                 }
490                 
491                 if ((status == -1) && (errno == EINTR))
492                 {
493                         dprintf ("select was interrupted by signal..\n");
494                         continue;
495                 }
496                 else if (status < 0)
497                 {
498                         dprintf ("select: %s\n", strerror (errno));
499                         break;
500                 }
501                 else if (status == 0)
502                 {
503                         dprintf ("select timed out\n");
504                         break;
505                 }
506
507                 for (ptr = ph; ptr != NULL; ptr = ptr->next)
508                 {
509                         if (FD_ISSET (ptr->fd, &readfds))
510                                 if (ping_receive_one (ptr->fd, ph, &nowtime) == 0)
511                                         ret++;
512                 }
513         } /* while (1) */
514         
515         return (ret);
516 }
517
518 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
519  * Sending functions:                                                        *
520  *                                                                           *
521  * ping_send_all                                                             *
522  * +-> ping_send_one_ipv4                                                    *
523  * `-> ping_send_one_ipv6                                                    *
524  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
525 static ssize_t ping_sendto (pingobj_t *obj, pinghost_t *ph,
526                 const void *buf, size_t buflen)
527 {
528         ssize_t ret;
529
530         if (gettimeofday (ph->timer, NULL) == -1)
531         {
532                 timerclear (ph->timer);
533                 return (-1);
534         }
535
536         ret = sendto (ph->fd, buf, buflen, 0,
537                         (struct sockaddr *) ph->addr, ph->addrlen);
538
539         if (ret < 0)
540         {
541 #if defined(EHOSTUNREACH)
542                 if (errno == EHOSTUNREACH)
543                         return (0);
544 #endif
545 #if defined(ENETUNREACH)
546                 if (errno == ENETUNREACH)
547                         return (0);
548 #endif
549                 ping_set_error (obj, "sendto", strerror (errno));
550         }
551
552         return (ret);
553 }
554
555 static int ping_send_one_ipv4 (pingobj_t *obj, pinghost_t *ph)
556 {
557         struct icmp *icmp4;
558         int status;
559
560         char buf[4096];
561         int  buflen;
562
563         char *data;
564         int   datalen;
565
566         dprintf ("ph->hostname = %s\n", ph->hostname);
567
568         memset (buf, '\0', sizeof (buf));
569         icmp4 = (struct icmp *) buf;
570         data  = (char *) (icmp4 + 1);
571
572         icmp4->icmp_type  = ICMP_ECHO;
573         icmp4->icmp_code  = 0;
574         icmp4->icmp_cksum = 0;
575         icmp4->icmp_id    = htons (ph->ident);
576         icmp4->icmp_seq   = htons (ph->sequence);
577
578         buflen = 4096 - sizeof (struct icmp);
579         strncpy (data, ph->data, buflen);
580         datalen = strlen (data);
581
582         buflen = datalen + sizeof (struct icmp);
583
584         icmp4->icmp_cksum = ping_icmp4_checksum (buf, buflen);
585
586         dprintf ("Sending ICMPv4 package with ID 0x%04x\n", ph->ident);
587
588         status = ping_sendto (obj, ph, buf, buflen);
589         if (status < 0)
590         {
591                 perror ("ping_sendto");
592                 return (-1);
593         }
594
595         dprintf ("sendto: status = %i\n", status);
596
597         return (0);
598 }
599
600 static int ping_send_one_ipv6 (pingobj_t *obj, pinghost_t *ph)
601 {
602         struct icmp6_hdr *icmp6;
603         int status;
604
605         char buf[4096];
606         int  buflen;
607
608         char *data;
609         int   datalen;
610
611         dprintf ("ph->hostname = %s\n", ph->hostname);
612
613         memset (buf, '\0', sizeof (buf));
614         icmp6 = (struct icmp6_hdr *) buf;
615         data  = (char *) (icmp6 + 1);
616
617         icmp6->icmp6_type  = ICMP6_ECHO_REQUEST;
618         icmp6->icmp6_code  = 0;
619         /* The checksum will be calculated by the TCP/IP stack.  */
620         /* FIXME */
621         icmp6->icmp6_cksum = 0;
622         icmp6->icmp6_id    = htons (ph->ident);
623         icmp6->icmp6_seq   = htons (ph->sequence);
624
625         buflen = 4096 - sizeof (struct icmp6_hdr);
626         strncpy (data, ph->data, buflen);
627         datalen = strlen (data);
628
629         buflen = datalen + sizeof (struct icmp6_hdr);
630
631         dprintf ("Sending ICMPv6 package with ID 0x%04x\n", ph->ident);
632
633         status = ping_sendto (obj, ph, buf, buflen);
634         if (status < 0)
635         {
636                 perror ("ping_sendto");
637                 return (-1);
638         }
639
640         dprintf ("sendto: status = %i\n", status);
641
642         return (0);
643 }
644
645 static int ping_send_all (pingobj_t *obj)
646 {
647         pinghost_t *ph;
648         pinghost_t *ptr;
649
650         int ret;
651
652         ret = 0;
653         ph = obj->head;
654
655         for (ptr = ph; ptr != NULL; ptr = ptr->next)
656         {
657                 /* start timer.. The GNU `ping6' starts the timer before
658                  * sending the packet, so I will do that too */
659                 if (gettimeofday (ptr->timer, NULL) == -1)
660                 {
661                         dprintf ("gettimeofday: %s\n", strerror (errno));
662                         timerclear (ptr->timer);
663                         ret--;
664                         continue;
665                 }
666                 else
667                 {
668                         dprintf ("timer set for hostname = %s\n", ptr->hostname);
669                 }
670
671                 if (ptr->addrfamily == AF_INET6)
672                 {       
673                         dprintf ("Sending ICMPv6 echo request to `%s'\n", ptr->hostname);
674                         if (ping_send_one_ipv6 (obj, ptr) != 0)
675                         {
676                                 timerclear (ptr->timer);
677                                 ret--;
678                                 continue;
679                         }
680                 }
681                 else if (ptr->addrfamily == AF_INET)
682                 {
683                         dprintf ("Sending ICMPv4 echo request to `%s'\n", ptr->hostname);
684                         if (ping_send_one_ipv4 (obj, ptr) != 0)
685                         {
686                                 timerclear (ptr->timer);
687                                 ret--;
688                                 continue;
689                         }
690                 }
691                 else /* this should not happen */
692                 {
693                         dprintf ("Unknown address family: %i\n", ptr->addrfamily);
694                         timerclear (ptr->timer);
695                         ret--;
696                         continue;
697                 }
698
699                 ptr->sequence++;
700         }
701
702         return (ret);
703 }
704
705 /*
706  * Set the TTL of a socket protocol independently.
707  */
708 static int ping_set_ttl (pinghost_t *ph, int ttl)
709 {
710         int ret = -2;
711
712         if (ph->addrfamily == AF_INET)
713         {
714                 ret = setsockopt (ph->fd, IPPROTO_IP, IP_TTL, &ttl, sizeof (ttl));
715         }
716         else if (ph->addrfamily == AF_INET6)
717         {
718                 ret = setsockopt (ph->fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &ttl, sizeof (ttl));
719         }
720
721         return (ret);
722 }
723
724 static int ping_get_ident (void)
725 {
726         int fd;
727         static int did_seed = 0;
728
729         int retval;
730
731         if (did_seed == 0)
732         {
733                 if ((fd = open ("/dev/urandom", O_RDONLY)) != -1)
734                 {
735                         unsigned int seed;
736
737                         if (read (fd, &seed, sizeof (seed)) != -1)
738                         {
739                                 did_seed = 1;
740                                 dprintf ("Random seed: %i\n", seed);
741                                 srandom (seed);
742                         }
743
744                         close (fd);
745                 }
746                 else
747                 {
748                         dprintf ("open (/dev/urandom): %s\n", strerror (errno));
749                 }
750         }
751
752         retval = (int) random ();
753
754         dprintf ("Random number: %i\n", retval);
755         
756         return (retval);
757 }
758
759 static pinghost_t *ping_alloc (void)
760 {
761         pinghost_t *ph;
762         size_t      ph_size;
763
764         ph_size = sizeof (pinghost_t)
765                 + sizeof (struct sockaddr_storage)
766                 + sizeof (struct timeval);
767
768         ph = (pinghost_t *) malloc (ph_size);
769         if (ph == NULL)
770                 return (NULL);
771
772         memset (ph, '\0', ph_size);
773
774         ph->timer   = (struct timeval *) (ph + 1);
775         ph->addr    = (struct sockaddr_storage *) (ph->timer + 1);
776
777         ph->addrlen = sizeof (struct sockaddr_storage);
778         ph->latency = -1.0;
779         ph->ident   = ping_get_ident () & 0xFFFF;
780
781         return (ph);
782 }
783
784 static void ping_free (pinghost_t *ph)
785 {
786         if (ph->hostname != NULL)
787                 free (ph->hostname);
788
789         if (ph->data != NULL)
790                 free (ph->data);
791
792         free (ph);
793 }
794
795 /*
796  * public methods
797  */
798 const char *ping_get_error (pingobj_t *obj)
799 {
800         return (obj->errmsg);
801 }
802
803 pingobj_t *ping_construct (void)
804 {
805         pingobj_t *obj;
806
807         if ((obj = (pingobj_t *) malloc (sizeof (pingobj_t))) == NULL)
808                 return (NULL);
809         memset (obj, '\0', sizeof (pingobj_t));
810
811         obj->timeout    = PING_DEF_TIMEOUT;
812         obj->ttl        = PING_DEF_TTL;
813         obj->addrfamily = PING_DEF_AF;
814         obj->data       = strdup (PING_DEF_DATA);
815
816         return (obj);
817 }
818
819 void ping_destroy (pingobj_t *obj)
820 {
821         pinghost_t *current;
822         pinghost_t *next;
823
824         current = obj->head;
825         next = NULL;
826
827         while (current != NULL)
828         {
829                 next = current->next;
830                 ping_free (current);
831                 current = next;
832         }
833
834         if (obj->data != NULL)
835                 free (obj->data);
836
837         free (obj);
838
839         return;
840 }
841
842 int ping_setopt (pingobj_t *obj, int option, void *value)
843 {
844         int ret = 0;
845
846         switch (option)
847         {
848                 case PING_OPT_TIMEOUT:
849                         obj->timeout = *((double *) value);
850                         if (obj->timeout < 0.0)
851                         {
852                                 obj->timeout = PING_DEF_TIMEOUT;
853                                 ret = -1;
854                         }
855                         break;
856
857                 case PING_OPT_TTL:
858                         obj->ttl = *((int *) value);
859                         if ((obj->ttl < 1) || (obj->ttl > 255))
860                         {
861                                 obj->ttl = PING_DEF_TTL;
862                                 ret = -1;
863                         }
864                         break;
865
866                 case PING_OPT_AF:
867                         obj->addrfamily = *((int *) value);
868                         if ((obj->addrfamily != AF_UNSPEC)
869                                         && (obj->addrfamily != AF_INET)
870                                         && (obj->addrfamily != AF_INET6))
871                         {
872                                 obj->addrfamily = PING_DEF_AF;
873                                 ret = -1;
874                         }
875                         break;
876
877                 case PING_OPT_DATA:
878                         if (obj->data != NULL)
879                         {
880                                 free (obj->data);
881                                 obj->data = NULL;
882                         }
883                         obj->data = strdup ((const char *) value);
884                         break;
885
886                 default:
887                         ret = -2;
888         } /* switch (option) */
889
890         return (ret);
891 } /* int ping_setopt */
892
893
894 int ping_send (pingobj_t *obj)
895 {
896         int ret;
897
898         if (ping_send_all (obj) < 0)
899                 return (-1);
900
901         if ((ret = ping_receive_all (obj)) < 0)
902                 return (-2);
903
904         return (ret);
905 }
906
907 static pinghost_t *ping_host_search (pinghost_t *ph, const char *host)
908 {
909         while (ph != NULL)
910         {
911                 if (strcasecmp (ph->hostname, host) == 0)
912                         break;
913
914                 ph = ph->next;
915         }
916
917         return (ph);
918 }
919
920 int ping_host_add (pingobj_t *obj, const char *host)
921 {
922         pinghost_t *ph;
923
924         struct addrinfo  ai_hints;
925         struct addrinfo *ai_list, *ai_ptr;
926         int              ai_return;
927
928         dprintf ("host = %s\n", host);
929
930         if (ping_host_search (obj->head, host) != NULL)
931                 return (0);
932
933         memset (&ai_hints, '\0', sizeof (ai_hints));
934         ai_hints.ai_flags     = 0;
935 #ifdef AI_ADDRCONFIG
936         ai_hints.ai_flags    |= AI_ADDRCONFIG;
937 #endif
938         ai_hints.ai_family    = obj->addrfamily;
939         ai_hints.ai_socktype  = SOCK_RAW;
940
941         if ((ph = ping_alloc ()) == NULL)
942         {
943                 dprintf ("Out of memory!\n");
944                 return (-1);
945         }
946
947         if ((ph->hostname = strdup (host)) == NULL)
948         {
949                 dprintf ("Out of memory!\n");
950                 ping_set_error (obj, "strdup", strerror (errno));
951                 ping_free (ph);
952                 return (-1);
953         }
954
955         /* obj->data is not garuanteed to be != NULL */
956         if ((ph->data = strdup (obj->data == NULL ? PING_DEF_DATA : obj->data)) == NULL)
957         {
958                 dprintf ("Out of memory!\n");
959                 ping_set_error (obj, "strdup", strerror (errno));
960                 ping_free (ph);
961                 return (-1);
962         }
963
964         if ((ai_return = getaddrinfo (host, NULL, &ai_hints, &ai_list)) != 0)
965         {
966                 dprintf ("getaddrinfo failed\n");
967                 ping_set_error (obj, "getaddrinfo",
968                                 (ai_return == EAI_SYSTEM)
969                                 ? strerror (errno)
970                                 : gai_strerror (ai_return));
971                 ping_free (ph);
972                 return (-1);
973         }
974
975         if (ai_list == NULL)
976                 ping_set_error (obj, "getaddrinfo", "No hosts returned");
977
978         for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
979         {
980                 ph->fd = -1;
981
982                 if (ai_ptr->ai_family == AF_INET)
983                 {
984                         ai_ptr->ai_socktype = SOCK_RAW;
985                         ai_ptr->ai_protocol = IPPROTO_ICMP;
986                 }
987                 else if (ai_ptr->ai_family == AF_INET6)
988                 {
989                         ai_ptr->ai_socktype = SOCK_RAW;
990                         ai_ptr->ai_protocol = IPPROTO_ICMPV6;
991                 }
992                 else
993                 {
994                         char errmsg[PING_ERRMSG_LEN];
995
996                         snprintf (errmsg, PING_ERRMSG_LEN, "Unknown `ai_family': %i", ai_ptr->ai_family);
997                         errmsg[PING_ERRMSG_LEN - 1] = '\0';
998
999                         dprintf (errmsg);
1000                         ping_set_error (obj, "getaddrinfo", errmsg);
1001                         continue;
1002                 }
1003
1004                 /* TODO: Move this to a static function `ping_open_socket' and
1005                  * call it whenever the socket dies. */
1006                 ph->fd = socket (ai_ptr->ai_family, ai_ptr->ai_socktype, ai_ptr->ai_protocol);
1007                 if (ph->fd == -1)
1008                 {
1009                         dprintf ("socket: %s\n", strerror (errno));
1010                         ping_set_error (obj, "socket", strerror (errno));
1011                         continue;
1012                 }
1013
1014 /*
1015  * The majority vote of operating systems has decided that you don't need to
1016  * bind here. This code should be reactivated to bind to a specific address,
1017  * though. See the `-I' option of `ping(1)' (GNU).  -octo
1018  */
1019 #if 0
1020                 if (bind (ph->fd, (struct sockaddr *) &sockaddr, sockaddr_len) == -1)
1021                 {
1022                         dprintf ("bind: %s\n", strerror (errno));
1023                         ping_set_error (obj, "bind", strerror (errno));
1024                         close (ph->fd);
1025                         ph->fd = -1;
1026                         continue;
1027                 }
1028 #endif
1029
1030                 assert (sizeof (struct sockaddr_storage) >= ai_ptr->ai_addrlen);
1031                 memset (ph->addr, '\0', sizeof (struct sockaddr_storage));
1032                 memcpy (ph->addr, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
1033                 ph->addrlen = ai_ptr->ai_addrlen;
1034                 ph->addrfamily = ai_ptr->ai_family;
1035
1036                 break;
1037         }
1038
1039         freeaddrinfo (ai_list);
1040
1041         if (ph->fd < 0)
1042         {
1043                 free (ph->hostname);
1044                 free (ph);
1045                 return (-1);
1046         }
1047
1048         /*
1049          * Adding in the front is much easier, but then the iterator will
1050          * return the host that was added last as first host. That's just not
1051          * nice. -octo
1052          */
1053         if (obj->head == NULL)
1054         {
1055                 obj->head = ph;
1056         }
1057         else
1058         {
1059                 pinghost_t *hptr;
1060
1061                 hptr = obj->head;
1062                 while (hptr->next != NULL)
1063                         hptr = hptr->next;
1064
1065                 assert ((hptr != NULL) && (hptr->next == NULL));
1066                 hptr->next = ph;
1067         }
1068
1069         ping_set_ttl (ph, obj->ttl);
1070
1071         return (0);
1072 }
1073
1074 int ping_host_remove (pingobj_t *obj, const char *host)
1075 {
1076         pinghost_t *pre, *cur;
1077
1078         pre = NULL;
1079         cur = obj->head;
1080
1081         while (cur != NULL)
1082         {
1083                 if (strcasecmp (host, cur->hostname))
1084                         break;
1085
1086                 pre = cur;
1087                 cur = cur->next;
1088         }
1089
1090         if (cur == NULL)
1091         {
1092                 ping_set_error (obj, "ping_host_remove", "Host not found");
1093                 return (-1);
1094         }
1095
1096         if (pre == NULL)
1097                 obj->head = cur->next;
1098         else
1099                 pre->next = cur->next;
1100         
1101         if (cur->fd >= 0)
1102                 close (cur->fd);
1103
1104         ping_free (cur);
1105
1106         return (0);
1107 }
1108
1109 pingobj_iter_t *ping_iterator_get (pingobj_t *obj)
1110 {
1111         return ((pingobj_iter_t *) obj->head);
1112 }
1113
1114 pingobj_iter_t *ping_iterator_next (pingobj_iter_t *iter)
1115 {
1116         return ((pingobj_iter_t *) iter->next);
1117 }
1118
1119 int ping_iterator_get_info (pingobj_iter_t *iter, int info,
1120                 void *buffer, size_t *buffer_len)
1121 {
1122         int ret = EINVAL;
1123
1124         size_t orig_buffer_len = *buffer_len;
1125
1126         switch (info)
1127         {
1128                 case PING_INFO_HOSTNAME:
1129                         ret = ENOMEM;
1130                         *buffer_len = strlen (iter->hostname);
1131                         if (orig_buffer_len <= *buffer_len)
1132                                 break;
1133                         /* Since (orig_buffer_len > *buffer_len) `strncpy'
1134                          * will copy `*buffer_len' and pad the rest of
1135                          * `buffer' with null-bytes */
1136                         strncpy (buffer, iter->hostname, orig_buffer_len);
1137                         ret = 0;
1138                         break;
1139
1140                 case PING_INFO_ADDRESS:
1141                         ret = getnameinfo ((struct sockaddr *) iter->addr,
1142                                         iter->addrlen,
1143                                         (char *) buffer,
1144                                         *buffer_len,
1145                                         NULL, 0,
1146                                         NI_NUMERICHOST);
1147                         if (ret != 0)
1148                         {
1149                                 if ((ret == EAI_MEMORY)
1150 #ifdef EAI_OVERFLOW
1151                                                 || (ret == EAI_OVERFLOW)
1152 #endif
1153                                    )
1154                                         ret = ENOMEM;
1155                                 else if (ret == EAI_SYSTEM)
1156                                         /* XXX: Not thread-safe! */
1157                                         ret = errno;
1158                                 else
1159                                         ret = EINVAL;
1160                         }
1161                         break;
1162
1163                 case PING_INFO_FAMILY:
1164                         ret = ENOMEM;
1165                         *buffer_len = sizeof (int);
1166                         if (orig_buffer_len < sizeof (int))
1167                                 break;
1168                         *((int *) buffer) = iter->addrfamily;
1169                         ret = 0;
1170                         break;
1171
1172                 case PING_INFO_LATENCY:
1173                         ret = ENOMEM;
1174                         *buffer_len = sizeof (double);
1175                         if (orig_buffer_len < sizeof (double))
1176                                 break;
1177                         *((double *) buffer) = iter->latency;
1178                         ret = 0;
1179                         break;
1180
1181                 case PING_INFO_SEQUENCE:
1182                         ret = ENOMEM;
1183                         *buffer_len = sizeof (unsigned int);
1184                         if (orig_buffer_len < sizeof (unsigned int))
1185                                 break;
1186                         *((unsigned int *) buffer) = (unsigned int) iter->sequence;
1187                         ret = 0;
1188                         break;
1189
1190                 case PING_INFO_IDENT:
1191                         ret = ENOMEM;
1192                         *buffer_len = sizeof (uint16_t);
1193                         if (orig_buffer_len < sizeof (uint16_t))
1194                                 break;
1195                         *((uint16_t *) buffer) = (uint16_t) iter->ident;
1196                         ret = 0;
1197                         break;
1198
1199                 case PING_INFO_DATA:
1200                         ret = ENOMEM;
1201                         *buffer_len = strlen (iter->data);
1202                         if (orig_buffer_len < *buffer_len)
1203                                 break;
1204                         strncpy ((char *) buffer, iter->data, orig_buffer_len);
1205                         ret = 0;
1206                         break;
1207         }
1208
1209         return (ret);
1210 }
1211
1212 void *ping_iterator_get_context (pingobj_iter_t *iter)
1213 {
1214         return (iter->context);
1215 }
1216
1217 void ping_iterator_set_context (pingobj_iter_t *iter, void *context)
1218 {
1219         iter->context = context;
1220 }