wafsamba: fix pidl dependencies to rebuild on pidl changes
[Samba.git] / ctdb / common / system_socket.c
blob668c04546199dec003d2fb3fc55712dc7ed373e4
1 /*
2 ctdb system specific code to manage raw sockets on linux
4 Copyright (C) Ronnie Sahlberg 2007
5 Copyright (C) Andrew Tridgell 2007
6 Copyright (C) Marc Dequènes (Duck) 2009
7 Copyright (C) Volker Lendecke 2012
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, see <http://www.gnu.org/licenses/>.
23 #include "replace.h"
26 * Use BSD struct tcphdr field names for portability. Modern glibc
27 * makes them available by default via <netinet/tcp.h> but older glibc
28 * requires __FAVOR_BSD to be defined.
30 * __FAVOR_BSD is normally defined in <features.h> if _DEFAULT_SOURCE
31 * (new) or _BSD_SOURCE (now deprecated) is set and _GNU_SOURCE is not
32 * set. Including "replace.h" above causes <features.h> to be
33 * indirectly included and this will not set __FAVOR_BSD because
34 * _GNU_SOURCE is set in Samba's "config.h" (which is included by
35 * "replace.h").
37 * Therefore, set __FAVOR_BSD by hand below.
39 #define __FAVOR_BSD 1
40 #include "system/network.h"
42 #ifdef HAVE_NETINET_IF_ETHER_H
43 #include <netinet/if_ether.h>
44 #endif
45 #ifdef HAVE_NETINET_IP6_H
46 #include <netinet/ip6.h>
47 #endif
48 #ifdef HAVE_NETINET_ICMP6_H
49 #include <netinet/icmp6.h>
50 #endif
51 #ifdef HAVE_LINUX_IF_PACKET_H
52 #include <linux/if_packet.h>
53 #endif
55 #ifndef ETHERTYPE_IP6
56 #define ETHERTYPE_IP6 0x86dd
57 #endif
59 #include "lib/util/debug.h"
60 #include "lib/util/blocking.h"
62 #include "protocol/protocol.h"
64 #include "common/logging.h"
65 #include "common/system_socket.h"
68 uint16 checksum for n bytes
70 static uint32_t uint16_checksum(uint16_t *data, size_t n)
72 uint32_t sum=0;
73 while (n>=2) {
74 sum += (uint32_t)ntohs(*data);
75 data++;
76 n -= 2;
78 if (n == 1) {
79 sum += (uint32_t)ntohs(*(uint8_t *)data);
81 return sum;
85 * See if the given IP is currently on an interface
87 bool ctdb_sys_have_ip(ctdb_sock_addr *_addr)
89 int s;
90 int ret;
91 ctdb_sock_addr __addr = *_addr;
92 ctdb_sock_addr *addr = &__addr;
93 socklen_t addrlen = 0;
95 switch (addr->sa.sa_family) {
96 case AF_INET:
97 addr->ip.sin_port = 0;
98 addrlen = sizeof(struct sockaddr_in);
99 break;
100 case AF_INET6:
101 addr->ip6.sin6_port = 0;
102 addrlen = sizeof(struct sockaddr_in6);
103 break;
106 s = socket(addr->sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
107 if (s == -1) {
108 return false;
111 ret = bind(s, (struct sockaddr *)addr, addrlen);
113 close(s);
114 return ret == 0;
118 * simple TCP checksum - assumes data is multiple of 2 bytes long
120 static uint16_t ip_checksum(uint16_t *data, size_t n, struct ip *ip)
122 uint32_t sum = uint16_checksum(data, n);
123 uint16_t sum2;
125 sum += uint16_checksum((uint16_t *)&ip->ip_src, sizeof(ip->ip_src));
126 sum += uint16_checksum((uint16_t *)&ip->ip_dst, sizeof(ip->ip_dst));
127 sum += ip->ip_p + n;
128 sum = (sum & 0xFFFF) + (sum >> 16);
129 sum = (sum & 0xFFFF) + (sum >> 16);
130 sum2 = htons(sum);
131 sum2 = ~sum2;
132 if (sum2 == 0) {
133 return 0xFFFF;
135 return sum2;
138 static uint16_t ip6_checksum(uint16_t *data, size_t n, struct ip6_hdr *ip6)
140 uint16_t phdr[3];
141 uint32_t sum = 0;
142 uint16_t sum2;
143 uint32_t len;
145 sum += uint16_checksum((uint16_t *)(void *)&ip6->ip6_src, 16);
146 sum += uint16_checksum((uint16_t *)(void *)&ip6->ip6_dst, 16);
148 len = htonl(n);
149 phdr[0] = len & UINT16_MAX;
150 phdr[1] = (len >> 16) & UINT16_MAX;
151 /* ip6_nxt is only 8 bits, so fits comfortably into a uint16_t */
152 phdr[2] = htons(ip6->ip6_nxt);
153 sum += uint16_checksum(phdr, sizeof(phdr));
155 sum += uint16_checksum(data, n);
157 sum = (sum & 0xFFFF) + (sum >> 16);
158 sum = (sum & 0xFFFF) + (sum >> 16);
159 sum2 = htons(sum);
160 sum2 = ~sum2;
161 if (sum2 == 0) {
162 return 0xFFFF;
164 return sum2;
168 * Send gratuitous ARP request/reply or IPv6 neighbor advertisement
171 #ifdef HAVE_PACKETSOCKET
174 * Create IPv4 ARP requests/replies or IPv6 neighbour advertisement
175 * packets
178 #define ARP_STRUCT_SIZE sizeof(struct ether_header) + \
179 sizeof(struct ether_arp)
181 #define IP6_NA_STRUCT_SIZE sizeof(struct ether_header) + \
182 sizeof(struct ip6_hdr) + \
183 sizeof(struct nd_neighbor_advert) + \
184 sizeof(struct nd_opt_hdr) + \
185 sizeof(struct ether_addr)
187 #define ARP_BUFFER_SIZE MAX(ARP_STRUCT_SIZE, 64)
189 #define IP6_NA_BUFFER_SIZE MAX(IP6_NA_STRUCT_SIZE, 64)
191 static int arp_build(uint8_t *buffer,
192 size_t buflen,
193 const struct sockaddr_in *addr,
194 const struct ether_addr *hwaddr,
195 bool reply,
196 struct ether_addr **ether_dhost,
197 size_t *len)
199 size_t l = ARP_BUFFER_SIZE;
200 struct ether_header *eh;
201 struct ether_arp *ea;
202 struct arphdr *ah;
204 if (addr->sin_family != AF_INET) {
205 return EINVAL;
208 if (buflen < l) {
209 return EMSGSIZE;
212 memset(buffer, 0 , l);
214 eh = (struct ether_header *)buffer;
215 memset(eh->ether_dhost, 0xff, ETH_ALEN);
216 memcpy(eh->ether_shost, hwaddr, ETH_ALEN);
217 eh->ether_type = htons(ETHERTYPE_ARP);
219 ea = (struct ether_arp *)(buffer + sizeof(struct ether_header));
220 ah = &ea->ea_hdr;
221 ah->ar_hrd = htons(ARPHRD_ETHER);
222 ah->ar_pro = htons(ETH_P_IP);
223 ah->ar_hln = ETH_ALEN;
224 ah->ar_pln = sizeof(ea->arp_spa);
226 if (! reply) {
227 ah->ar_op = htons(ARPOP_REQUEST);
228 memcpy(ea->arp_sha, hwaddr, ETH_ALEN);
229 memcpy(ea->arp_spa, &addr->sin_addr, sizeof(ea->arp_spa));
230 memset(ea->arp_tha, 0, ETH_ALEN);
231 memcpy(ea->arp_tpa, &addr->sin_addr, sizeof(ea->arp_tpa));
232 } else {
233 ah->ar_op = htons(ARPOP_REPLY);
234 memcpy(ea->arp_sha, hwaddr, ETH_ALEN);
235 memcpy(ea->arp_spa, &addr->sin_addr, sizeof(ea->arp_spa));
236 memcpy(ea->arp_tha, hwaddr, ETH_ALEN);
237 memcpy(ea->arp_tpa, &addr->sin_addr, sizeof(ea->arp_tpa));
240 *ether_dhost = (struct ether_addr *)eh->ether_dhost;
241 *len = l;
242 return 0;
245 static int ip6_na_build(uint8_t *buffer,
246 size_t buflen,
247 const struct sockaddr_in6 *addr,
248 const struct ether_addr *hwaddr,
249 struct ether_addr **ether_dhost,
250 size_t *len)
252 size_t l = IP6_NA_BUFFER_SIZE;
253 struct ether_header *eh;
254 struct ip6_hdr *ip6;
255 struct nd_neighbor_advert *nd_na;
256 struct nd_opt_hdr *nd_oh;
257 struct ether_addr *ea;
258 int ret;
260 if (addr->sin6_family != AF_INET6) {
261 return EINVAL;
264 if (buflen < l) {
265 return EMSGSIZE;
268 memset(buffer, 0 , l);
270 eh = (struct ether_header *)buffer;
272 * Ethernet multicast: 33:33:00:00:00:01 (see RFC2464,
273 * section 7) - note memset 0 above!
275 eh->ether_dhost[0] = 0x33;
276 eh->ether_dhost[1] = 0x33;
277 eh->ether_dhost[5] = 0x01;
278 memcpy(eh->ether_shost, hwaddr, ETH_ALEN);
279 eh->ether_type = htons(ETHERTYPE_IP6);
281 ip6 = (struct ip6_hdr *)(buffer + sizeof(struct ether_header));
282 ip6->ip6_vfc = 6 << 4;
283 ip6->ip6_plen = htons(sizeof(struct nd_neighbor_advert) +
284 sizeof(struct nd_opt_hdr) +
285 ETH_ALEN);
286 ip6->ip6_nxt = IPPROTO_ICMPV6;
287 ip6->ip6_hlim = 255;
288 ip6->ip6_src = addr->sin6_addr;
289 /* all-nodes multicast */
291 ret = inet_pton(AF_INET6, "ff02::1", &ip6->ip6_dst);
292 if (ret != 1) {
293 return EIO;
296 nd_na = (struct nd_neighbor_advert *)(buffer +
297 sizeof(struct ether_header) +
298 sizeof(struct ip6_hdr));
299 nd_na->nd_na_type = ND_NEIGHBOR_ADVERT;
300 nd_na->nd_na_code = 0;
301 nd_na->nd_na_flags_reserved = ND_NA_FLAG_OVERRIDE;
302 nd_na->nd_na_target = addr->sin6_addr;
304 /* Option: Target link-layer address */
305 nd_oh = (struct nd_opt_hdr *)(buffer +
306 sizeof(struct ether_header) +
307 sizeof(struct ip6_hdr) +
308 sizeof(struct nd_neighbor_advert));
309 nd_oh->nd_opt_type = ND_OPT_TARGET_LINKADDR;
310 nd_oh->nd_opt_len = 1; /* multiple of 8 octets */
312 ea = (struct ether_addr *)(buffer +
313 sizeof(struct ether_header) +
314 sizeof(struct ip6_hdr) +
315 sizeof(struct nd_neighbor_advert) +
316 sizeof(struct nd_opt_hdr));
317 memcpy(ea, hwaddr, ETH_ALEN);
319 nd_na->nd_na_cksum = ip6_checksum((uint16_t *)nd_na,
320 ntohs(ip6->ip6_plen),
321 ip6);
323 *ether_dhost = (struct ether_addr *)eh->ether_dhost;
324 *len = l;
325 return 0;
328 int ctdb_sys_send_arp(const ctdb_sock_addr *addr, const char *iface)
330 int s;
331 struct sockaddr_ll sall = {0};
332 struct ifreq if_hwaddr = {{{0}}};
333 uint8_t buffer[MAX(ARP_BUFFER_SIZE, IP6_NA_BUFFER_SIZE)];
334 struct ifreq ifr = {{{0}}};
335 struct ether_addr *hwaddr = NULL;
336 struct ether_addr *ether_dhost = NULL;
337 size_t len = 0;
338 int ret = 0;
340 s = socket(AF_PACKET, SOCK_RAW, 0);
341 if (s == -1) {
342 ret = errno;
343 DBG_ERR("Failed to open raw socket\n");
344 return ret;
346 DBG_DEBUG("Created SOCKET FD:%d for sending arp\n", s);
348 /* Find interface */
349 strlcpy(ifr.ifr_name, iface, sizeof(ifr.ifr_name));
350 if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
351 ret = errno;
352 DBG_ERR("Interface '%s' not found\n", iface);
353 goto fail;
356 /* Get MAC address */
357 strlcpy(if_hwaddr.ifr_name, iface, sizeof(if_hwaddr.ifr_name));
358 ret = ioctl(s, SIOCGIFHWADDR, &if_hwaddr);
359 if ( ret < 0 ) {
360 ret = errno;
361 DBG_ERR("ioctl failed\n");
362 goto fail;
364 if (ARPHRD_LOOPBACK == if_hwaddr.ifr_hwaddr.sa_family) {
365 ret = 0;
366 D_DEBUG("Ignoring loopback arp request\n");
367 goto fail;
369 if (if_hwaddr.ifr_hwaddr.sa_family != ARPHRD_ETHER) {
370 ret = EINVAL;
371 DBG_ERR("Not an ethernet address family (0x%x)\n",
372 if_hwaddr.ifr_hwaddr.sa_family);
373 goto fail;;
376 /* Set up most of destination address structure */
377 sall.sll_family = AF_PACKET;
378 sall.sll_halen = sizeof(struct ether_addr);
379 sall.sll_protocol = htons(ETH_P_ALL);
380 sall.sll_ifindex = ifr.ifr_ifindex;
382 /* For clarity */
383 hwaddr = (struct ether_addr *)if_hwaddr.ifr_hwaddr.sa_data;
385 switch (addr->ip.sin_family) {
386 case AF_INET:
387 /* Send gratuitous ARP */
388 ret = arp_build(buffer,
389 sizeof(buffer),
390 &addr->ip,
391 hwaddr,
392 false,
393 &ether_dhost,
394 &len);
395 if (ret != 0) {
396 DBG_ERR("Failed to build ARP request\n");
397 goto fail;
400 memcpy(&sall.sll_addr[0], ether_dhost, sall.sll_halen);
402 ret = sendto(s,
403 buffer,
404 len,
406 (struct sockaddr *)&sall,
407 sizeof(sall));
408 if (ret < 0 ) {
409 ret = errno;
410 DBG_ERR("Failed sendto\n");
411 goto fail;
414 /* Send unsolicited ARP reply */
415 ret = arp_build(buffer,
416 sizeof(buffer),
417 &addr->ip,
418 hwaddr,
419 true,
420 &ether_dhost,
421 &len);
422 if (ret != 0) {
423 DBG_ERR("Failed to build ARP reply\n");
424 goto fail;
427 memcpy(&sall.sll_addr[0], ether_dhost, sall.sll_halen);
429 ret = sendto(s,
430 buffer,
431 len,
433 (struct sockaddr *)&sall,
434 sizeof(sall));
435 if (ret < 0 ) {
436 ret = errno;
437 DBG_ERR("Failed sendto\n");
438 goto fail;
441 close(s);
442 break;
444 case AF_INET6:
445 ret = ip6_na_build(buffer,
446 sizeof(buffer),
447 &addr->ip6,
448 hwaddr,
449 &ether_dhost,
450 &len);
451 if (ret != 0) {
452 DBG_ERR("Failed to build IPv6 neighbor advertisment\n");
453 goto fail;
456 memcpy(&sall.sll_addr[0], ether_dhost, sall.sll_halen);
458 ret = sendto(s,
459 buffer,
460 len,
462 (struct sockaddr *)&sall,
463 sizeof(sall));
464 if (ret < 0 ) {
465 ret = errno;
466 DBG_ERR("Failed sendto\n");
467 goto fail;
470 close(s);
471 break;
473 default:
474 ret = EINVAL;
475 DBG_ERR("Not an ipv4/ipv6 address (family is %u)\n",
476 addr->ip.sin_family);
477 goto fail;
480 return 0;
482 fail:
483 close(s);
484 return ret;
487 #else /* HAVE_PACKETSOCKET */
489 int ctdb_sys_send_arp(const ctdb_sock_addr *addr, const char *iface)
491 /* Not implemented */
492 return ENOSYS;
495 #endif /* HAVE_PACKETSOCKET */
498 #define IP4_TCP_BUFFER_SIZE sizeof(struct ip) + \
499 sizeof(struct tcphdr)
501 #define IP6_TCP_BUFFER_SIZE sizeof(struct ip6_hdr) + \
502 sizeof(struct tcphdr)
504 static int tcp4_build(uint8_t *buf,
505 size_t buflen,
506 const struct sockaddr_in *src,
507 const struct sockaddr_in *dst,
508 uint32_t seq,
509 uint32_t ack,
510 int rst,
511 size_t *len)
513 size_t l = IP4_TCP_BUFFER_SIZE;
514 struct {
515 struct ip ip;
516 struct tcphdr tcp;
517 } *ip4pkt;
519 if (l != sizeof(*ip4pkt)) {
520 return EMSGSIZE;
523 if (buflen < l) {
524 return EMSGSIZE;
527 ip4pkt = (void *)buf;
528 memset(ip4pkt, 0, l);
530 ip4pkt->ip.ip_v = 4;
531 ip4pkt->ip.ip_hl = sizeof(ip4pkt->ip)/sizeof(uint32_t);
532 ip4pkt->ip.ip_len = htons(sizeof(ip4pkt));
533 ip4pkt->ip.ip_ttl = 255;
534 ip4pkt->ip.ip_p = IPPROTO_TCP;
535 ip4pkt->ip.ip_src.s_addr = src->sin_addr.s_addr;
536 ip4pkt->ip.ip_dst.s_addr = dst->sin_addr.s_addr;
537 ip4pkt->ip.ip_sum = 0;
539 ip4pkt->tcp.th_sport = src->sin_port;
540 ip4pkt->tcp.th_dport = dst->sin_port;
541 ip4pkt->tcp.th_seq = seq;
542 ip4pkt->tcp.th_ack = ack;
543 ip4pkt->tcp.th_flags = 0;
544 ip4pkt->tcp.th_flags |= TH_ACK;
545 if (rst) {
546 ip4pkt->tcp.th_flags |= TH_RST;
548 ip4pkt->tcp.th_off = sizeof(ip4pkt->tcp)/sizeof(uint32_t);
549 /* this makes it easier to spot in a sniffer */
550 ip4pkt->tcp.th_win = htons(1234);
551 ip4pkt->tcp.th_sum = ip_checksum((uint16_t *)&ip4pkt->tcp,
552 sizeof(ip4pkt->tcp),
553 &ip4pkt->ip);
555 *len = l;
556 return 0;
559 static int tcp6_build(uint8_t *buf,
560 size_t buflen,
561 const struct sockaddr_in6 *src,
562 const struct sockaddr_in6 *dst,
563 uint32_t seq,
564 uint32_t ack,
565 int rst,
566 size_t *len)
568 size_t l = IP6_TCP_BUFFER_SIZE;
569 struct {
570 struct ip6_hdr ip6;
571 struct tcphdr tcp;
572 } *ip6pkt;
574 if (l != sizeof(*ip6pkt)) {
575 return EMSGSIZE;
578 if (buflen < l) {
579 return EMSGSIZE;
582 ip6pkt = (void *)buf;
583 memset(ip6pkt, 0, l);
585 ip6pkt->ip6.ip6_vfc = 6 << 4;
586 ip6pkt->ip6.ip6_plen = htons(sizeof(struct tcphdr));
587 ip6pkt->ip6.ip6_nxt = IPPROTO_TCP;
588 ip6pkt->ip6.ip6_hlim = 64;
589 ip6pkt->ip6.ip6_src = src->sin6_addr;
590 ip6pkt->ip6.ip6_dst = dst->sin6_addr;
592 ip6pkt->tcp.th_sport = src->sin6_port;
593 ip6pkt->tcp.th_dport = dst->sin6_port;
594 ip6pkt->tcp.th_seq = seq;
595 ip6pkt->tcp.th_ack = ack;
596 ip6pkt->tcp.th_flags = 0;
597 ip6pkt->tcp.th_flags |= TH_ACK;
598 if (rst) {
599 ip6pkt->tcp.th_flags |= TH_RST;
601 ip6pkt->tcp.th_off = sizeof(ip6pkt->tcp)/sizeof(uint32_t);
602 /* this makes it easier to spot in a sniffer */
603 ip6pkt->tcp.th_win = htons(1234);
604 ip6pkt->tcp.th_sum = ip6_checksum((uint16_t *)&ip6pkt->tcp,
605 sizeof(ip6pkt->tcp),
606 &ip6pkt->ip6);
608 *len = l;
609 return 0;
613 * Send tcp segment from the specified IP/port to the specified
614 * destination IP/port.
616 * This is used to trigger the receiving host into sending its own ACK,
617 * which should trigger early detection of TCP reset by the client
618 * after IP takeover
620 * This can also be used to send RST segments (if rst is true) and also
621 * if correct seq and ack numbers are provided.
623 int ctdb_sys_send_tcp(const ctdb_sock_addr *dest,
624 const ctdb_sock_addr *src,
625 uint32_t seq,
626 uint32_t ack,
627 int rst)
629 uint8_t buf[MAX(IP4_TCP_BUFFER_SIZE, IP6_TCP_BUFFER_SIZE)];
630 size_t len = 0;
631 int ret;
632 int s;
633 uint32_t one = 1;
634 struct sockaddr_in6 tmpdest = { 0 };
635 int saved_errno;
637 switch (src->ip.sin_family) {
638 case AF_INET:
639 ret = tcp4_build(buf,
640 sizeof(buf),
641 &src->ip,
642 &dest->ip,
643 seq,
644 ack,
645 rst,
646 &len);
647 if (ret != 0) {
648 DBG_ERR("Failed to build TCP packet (%d)\n", ret);
649 return ret;
652 /* open a raw socket to send this segment from */
653 s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
654 if (s == -1) {
655 DBG_ERR("Failed to open raw socket (%s)\n",
656 strerror(errno));
657 return -1;
660 ret = setsockopt(s, IPPROTO_IP, IP_HDRINCL, &one, sizeof(one));
661 if (ret != 0) {
662 DBG_ERR("Failed to setup IP headers (%s)\n",
663 strerror(errno));
664 close(s);
665 return -1;
668 ret = sendto(s,
669 buf,
670 len,
672 (const struct sockaddr *)&dest->ip,
673 sizeof(dest->ip));
674 saved_errno = errno;
675 close(s);
676 if (ret != len) {
677 D_ERR("Failed sendto (%s)\n", strerror(saved_errno));
678 return -1;
680 break;
682 case AF_INET6:
683 ret = tcp6_build(buf,
684 sizeof(buf),
685 &src->ip6,
686 &dest->ip6,
687 seq,
688 ack,
689 rst,
690 &len);
691 if (ret != 0) {
692 DBG_ERR("Failed to build TCP packet (%d)\n", ret);
693 return ret;
696 s = socket(AF_INET6, SOCK_RAW, IPPROTO_RAW);
697 if (s == -1) {
698 DBG_ERR("Failed to open sending socket\n");
699 return -1;
703 * sendto() on an IPv6 raw socket requires the port to
704 * be either 0 or a protocol value
706 tmpdest = dest->ip6;
707 tmpdest.sin6_port = 0;
709 ret = sendto(s,
710 buf,
711 len,
713 (const struct sockaddr *)&tmpdest,
714 sizeof(tmpdest));
715 saved_errno = errno;
716 close(s);
718 if (ret != len) {
719 D_ERR("Failed sendto (%s)\n", strerror(saved_errno));
720 return -1;
722 break;
724 default:
725 DBG_ERR("Not an ipv4/v6 address\n");
726 return -1;
729 return 0;
733 * Packet capture
735 * If AF_PACKET is available then use a raw socket otherwise use pcap.
736 * wscript has checked to make sure that pcap is available if needed.
739 static int tcp4_extract(const uint8_t *ip_pkt,
740 size_t pktlen,
741 struct sockaddr_in *src,
742 struct sockaddr_in *dst,
743 uint32_t *ack_seq,
744 uint32_t *seq,
745 int *rst,
746 uint16_t *window)
748 const struct ip *ip;
749 const struct tcphdr *tcp;
751 if (pktlen < sizeof(struct ip)) {
752 return EMSGSIZE;
755 ip = (const struct ip *)ip_pkt;
757 /* IPv4 only */
758 if (ip->ip_v != 4) {
759 return ENOMSG;
761 /* Don't look at fragments */
762 if ((ntohs(ip->ip_off)&0x1fff) != 0) {
763 return ENOMSG;
765 /* TCP only */
766 if (ip->ip_p != IPPROTO_TCP) {
767 return ENOMSG;
770 /* Ensure there is enough of the packet to gather required fields */
771 if (pktlen <
772 (ip->ip_hl * sizeof(uint32_t)) + offsetof(struct tcphdr, th_sum)) {
773 return EMSGSIZE;
776 tcp = (const struct tcphdr *)(ip_pkt + (ip->ip_hl * sizeof(uint32_t)));
778 src->sin_family = AF_INET;
779 src->sin_addr.s_addr = ip->ip_src.s_addr;
780 src->sin_port = tcp->th_sport;
782 dst->sin_family = AF_INET;
783 dst->sin_addr.s_addr = ip->ip_dst.s_addr;
784 dst->sin_port = tcp->th_dport;
786 *ack_seq = tcp->th_ack;
787 *seq = tcp->th_seq;
788 if (window != NULL) {
789 *window = tcp->th_win;
791 if (rst != NULL) {
792 *rst = tcp->th_flags & TH_RST;
795 return 0;
798 static int tcp6_extract(const uint8_t *ip_pkt,
799 size_t pktlen,
800 struct sockaddr_in6 *src,
801 struct sockaddr_in6 *dst,
802 uint32_t *ack_seq,
803 uint32_t *seq,
804 int *rst,
805 uint16_t *window)
807 const struct ip6_hdr *ip6;
808 const struct tcphdr *tcp;
810 /* Ensure there is enough of the packet to gather required fields */
811 if (pktlen < sizeof(struct ip6_hdr) + offsetof(struct tcphdr, th_sum)) {
812 return EMSGSIZE;
815 ip6 = (const struct ip6_hdr *)ip_pkt;
817 /* IPv6 only */
818 if ((ip6->ip6_vfc >> 4) != 6){
819 return ENOMSG;
822 /* TCP only */
823 if (ip6->ip6_nxt != IPPROTO_TCP) {
824 return ENOMSG;
827 tcp = (const struct tcphdr *)(ip_pkt + sizeof(struct ip6_hdr));
829 src->sin6_family = AF_INET6;
830 src->sin6_port = tcp->th_sport;
831 src->sin6_addr = ip6->ip6_src;
833 dst->sin6_family = AF_INET6;
834 dst->sin6_port = tcp->th_dport;
835 dst->sin6_addr = ip6->ip6_dst;
837 *ack_seq = tcp->th_ack;
838 *seq = tcp->th_seq;
839 if (window != NULL) {
840 *window = tcp->th_win;
842 if (rst != NULL) {
843 *rst = tcp->th_flags & TH_RST;
846 return 0;
850 #ifdef HAVE_AF_PACKET
853 * This function is used to open a raw socket to capture from
855 int ctdb_sys_open_capture_socket(const char *iface, void **private_data)
857 int s, ret;
859 /* Open a socket to capture all traffic */
860 s = socket(AF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
861 if (s == -1) {
862 DBG_ERR("Failed to open raw socket\n");
863 return -1;
866 DBG_DEBUG("Created RAW SOCKET FD:%d for tcp tickle\n", s);
868 ret = set_blocking(s, false);
869 if (ret != 0) {
870 DBG_ERR("Failed to set socket non-blocking (%s)\n",
871 strerror(errno));
872 close(s);
873 return -1;
876 set_close_on_exec(s);
878 return s;
882 * This function is used to do any additional cleanup required when closing
883 * a capture socket.
884 * Note that the socket itself is closed automatically in the caller.
886 int ctdb_sys_close_capture_socket(void *private_data)
888 return 0;
893 * called when the raw socket becomes readable
895 int ctdb_sys_read_tcp_packet(int s, void *private_data,
896 ctdb_sock_addr *src,
897 ctdb_sock_addr *dst,
898 uint32_t *ack_seq,
899 uint32_t *seq,
900 int *rst,
901 uint16_t *window)
903 ssize_t nread;
904 uint8_t pkt[100]; /* Large enough for simple ACK/RST packets */
905 struct ether_header *eth;
906 int ret;
908 nread = recv(s, pkt, sizeof(pkt), MSG_TRUNC);
909 if (nread < sizeof(*eth)) {
910 return EMSGSIZE;
913 ZERO_STRUCTP(src);
914 ZERO_STRUCTP(dst);
916 /* Ethernet */
917 eth = (struct ether_header *)pkt;
919 /* we want either IPv4 or IPv6 */
920 if (ntohs(eth->ether_type) == ETHERTYPE_IP) {
921 ret = tcp4_extract(pkt + sizeof(struct ether_header),
922 (size_t)nread - sizeof(struct ether_header),
923 &src->ip,
924 &dst->ip,
925 ack_seq,
926 seq,
927 rst,
928 window);
929 return ret;
931 } else if (ntohs(eth->ether_type) == ETHERTYPE_IP6) {
932 ret = tcp6_extract(pkt + sizeof(struct ether_header),
933 (size_t)nread - sizeof(struct ether_header),
934 &src->ip6,
935 &dst->ip6,
936 ack_seq,
937 seq,
938 rst,
939 window);
940 return ret;
943 return ENOMSG;
946 #else /* HAVE_AF_PACKET */
948 #include <pcap.h>
950 int ctdb_sys_open_capture_socket(const char *iface, void **private_data)
952 pcap_t *pt;
954 pt=pcap_open_live(iface, 100, 0, 0, NULL);
955 if (pt == NULL) {
956 DBG_ERR("Failed to open capture device %s\n", iface);
957 return -1;
959 *((pcap_t **)private_data) = pt;
961 return pcap_fileno(pt);
964 int ctdb_sys_close_capture_socket(void *private_data)
966 pcap_t *pt = (pcap_t *)private_data;
967 pcap_close(pt);
968 return 0;
971 int ctdb_sys_read_tcp_packet(int s,
972 void *private_data,
973 ctdb_sock_addr *src,
974 ctdb_sock_addr *dst,
975 uint32_t *ack_seq,
976 uint32_t *seq,
977 int *rst,
978 uint16_t *window)
980 int ret;
981 struct ether_header *eth;
982 struct pcap_pkthdr pkthdr;
983 const u_char *buffer;
984 pcap_t *pt = (pcap_t *)private_data;
986 buffer=pcap_next(pt, &pkthdr);
987 if (buffer==NULL) {
988 return ENOMSG;
991 ZERO_STRUCTP(src);
992 ZERO_STRUCTP(dst);
994 /* Ethernet */
995 eth = (struct ether_header *)buffer;
997 /* we want either IPv4 or IPv6 */
998 if (eth->ether_type == htons(ETHERTYPE_IP)) {
999 ret = tcp4_extract(buffer + sizeof(struct ether_header),
1000 (size_t)(pkthdr.caplen -
1001 sizeof(struct ether_header)),
1002 &src->ip,
1003 &dst->ip,
1004 ack_seq,
1005 seq,
1006 rst,
1007 window);
1008 return ret;
1010 } else if (eth->ether_type == htons(ETHERTYPE_IP6)) {
1011 ret = tcp6_extract(buffer + sizeof(struct ether_header),
1012 (size_t)(pkthdr.caplen -
1013 sizeof(struct ether_header)),
1014 &src->ip6,
1015 &dst->ip6,
1016 ack_seq,
1017 seq,
1018 rst,
1019 window);
1020 return ret;
1023 return ENOMSG;
1026 #endif /* HAVE_AF_PACKET */