s3:auth: only call secrets_fetch_domain_sid() once in finalize_local_nt_token()
[Samba.git] / ctdb / common / system_common.c
blob49afbf34469085c3a8815b894445dd0fd454777f
1 /*
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/>.
21 #include "replace.h"
22 #include "system/network.h"
24 #include "lib/util/debug.h"
26 #include "protocol/protocol.h"
28 #include "common/logging.h"
29 #include "common/system.h"
32 uint16 checksum for n bytes
34 uint32_t uint16_checksum(uint16_t *data, size_t n)
36 uint32_t sum=0;
37 while (n>=2) {
38 sum += (uint32_t)ntohs(*data);
39 data++;
40 n -= 2;
42 if (n == 1) {
43 sum += (uint32_t)ntohs(*(uint8_t *)data);
45 return sum;
49 see if we currently have an interface with the given IP
51 we try to bind to it, and if that fails then we don't have that IP
52 on an interface
54 bool ctdb_sys_have_ip(ctdb_sock_addr *_addr)
56 int s;
57 int ret;
58 ctdb_sock_addr __addr = *_addr;
59 ctdb_sock_addr *addr = &__addr;
60 socklen_t addrlen = 0;
62 switch (addr->sa.sa_family) {
63 case AF_INET:
64 addr->ip.sin_port = 0;
65 addrlen = sizeof(struct sockaddr_in);
66 break;
67 case AF_INET6:
68 addr->ip6.sin6_port = 0;
69 addrlen = sizeof(struct sockaddr_in6);
70 break;
73 s = socket(addr->sa.sa_family, SOCK_STREAM, IPPROTO_TCP);
74 if (s == -1) {
75 return false;
78 ret = bind(s, (struct sockaddr *)addr, addrlen);
80 close(s);
81 return ret == 0;