2 ctdb system specific code to manage raw sockets on linux
4 Copyright (C) Ronnie Sahlberg 2007
5 Copyright (C) Andrew Tridgell 2007
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "system/network.h"
23 #include "system/filesys.h"
27 uint16 checksum for n bytes
29 uint32_t uint16_checksum(uint16_t *data
, size_t n
)
33 sum
+= (uint32_t)ntohs(*data
);
38 sum
+= (uint32_t)ntohs(*(uint8_t *)data
);
44 see if we currently have an interface with the given IP
46 we try to bind to it, and if that fails then we don't have that IP
49 bool ctdb_sys_have_ip(ctdb_sock_addr
*_addr
)
53 ctdb_sock_addr __addr
= *_addr
;
54 ctdb_sock_addr
*addr
= &__addr
;
55 socklen_t addrlen
= 0;
57 switch (addr
->sa
.sa_family
) {
59 addr
->ip
.sin_port
= 0;
60 addrlen
= sizeof(struct sockaddr_in
);
63 addr
->ip6
.sin6_port
= 0;
64 addrlen
= sizeof(struct sockaddr_in6
);
68 s
= socket(addr
->sa
.sa_family
, SOCK_STREAM
, IPPROTO_TCP
);
73 ret
= bind(s
, (struct sockaddr
*)addr
, addrlen
);
80 /* find which interface an ip address is currently assigned to */
81 char *ctdb_sys_find_ifname(ctdb_sock_addr
*addr
)
88 s
= socket(AF_INET
, SOCK_RAW
, htons(IPPROTO_RAW
));
90 DEBUG(DEBUG_CRIT
,(__location__
" failed to open raw socket (%s)\n",
96 size
= sizeof(struct ifreq
);
100 while(ifc
.ifc_len
> (size
- sizeof(struct ifreq
))) {
105 ifc
.ifc_buf
= malloc(size
);
106 memset(ifc
.ifc_buf
, 0, size
);
107 if (ioctl(s
, SIOCGIFCONF
, (caddr_t
)&ifc
) < 0) {
108 DEBUG(DEBUG_CRIT
,("Failed to read ifc buffer from socket\n"));
115 for (ptr
=(char *)ifc
.ifc_buf
; ptr
< ((char *)ifc
.ifc_buf
) + ifc
.ifc_len
; ) {
119 ifr
= (struct ifreq
*)ptr
;
121 #ifdef HAVE_SOCKADDR_LEN
122 if (ifr
->ifr_addr
.sa_len
> sizeof(struct sockaddr
)) {
123 ptr
+= sizeof(ifr
->ifr_name
) + ifr
->ifr_addr
.sa_len
;
125 ptr
+= sizeof(ifr
->ifr_name
) + sizeof(struct sockaddr
);
128 ptr
+= sizeof(struct ifreq
);
131 if (ifr
->ifr_addr
.sa_family
!= addr
->sa
.sa_family
) {
135 switch (addr
->sa
.sa_family
) {
139 if (memcmp(&addr
->ip
.sin_addr
, &((struct sockaddr_in
*)&ifr
->ifr_addr
)->sin_addr
, sizeof(addr
->ip
.sin_addr
))) {
144 if (memcmp(&addr
->ip6
.sin6_addr
, &((struct sockaddr_in6
*)&ifr
->ifr_addr
)->sin6_addr
, sizeof(addr
->ip6
.sin6_addr
))) {
150 ifname
= strdup(ifr
->ifr_name
);
163 int mkdir_p(const char *dir
, int mode
)
168 if (strcmp(dir
, "/") == 0) {
172 if (strcmp(dir
, ".") == 0) {
176 t
= talloc_strdup(NULL
, dir
);
180 ret
= mkdir_p(dirname(t
), mode
);
184 ret
= mkdir(dir
, mode
);
185 if ((ret
== -1) && (errno
== EEXIST
)) {