]> git.meshlink.io Git - catta/blob - src/iface-windows.c
729e3c4635617bad29ec6b7618054f6348f4e1ad
[catta] / src / iface-windows.c
1 /***
2   This file is part of catta.
3
4   catta is free software; you can redistribute it and/or modify it
5   under the terms of the GNU Lesser General Public License as
6   published by the Free Software Foundation; either version 2.1 of the
7   License, or (at your option) any later version.
8
9   catta is distributed in the hope that it will be useful, but WITHOUT
10   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
12   Public License for more details.
13
14   You should have received a copy of the GNU Lesser General Public
15   License along with catta; if not, write to the Free Software
16   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17   USA.
18 ***/
19
20 #include "iface-windows.h"
21 #include "iface.h"
22
23 #include <stdlib.h> // wcstombs
24 #include <catta/malloc.h>
25 #include <catta/log.h>
26 #include <iphlpapi.h>
27 #include "hashmap.h"
28 #include "util.h"   // catta_format_mac_address
29
30
31 // integrate the information from an IP_ADAPTER_UNICAST_ADDRESS structure for
32 // given CattaHwInterface into the CattaInterfaceMonitor
33 static void ip_adapter_unicast_address(CattaInterfaceMonitor *m,
34                                        CattaHwInterface *hw,
35                                        IP_ADAPTER_UNICAST_ADDRESS *a)
36 {
37     CattaInterface *iface;
38     CattaAddress addr;
39     CattaInterfaceAddress *ifaddr;
40     struct sockaddr *sa = a->Address.lpSockaddr;
41
42     // skip transient addresses; to quote MSDN: "The IP address is a cluster
43     // address and should not be used by most applications."
44     // http://msdn.microsoft.com/en-us/library/windows/desktop/aa366066(v=vs.85).aspx
45     if(a->Flags & IP_ADAPTER_ADDRESS_TRANSIENT)
46         return;
47
48     // fill addr struct for address lookup
49     switch(sa->sa_family) {
50     case AF_INET:
51         memcpy(addr.data.data, &((struct sockaddr_in *)sa)->sin_addr, sizeof(struct in_addr));
52         break;
53     case AF_INET6:
54         memcpy(addr.data.data, &((struct sockaddr_in6 *)sa)->sin6_addr, sizeof(struct in6_addr));
55         break;
56     default:
57         catta_log_debug("unexpected address family on interface %d: %u", hw->index, sa->sa_family);
58         return;
59     }
60     addr.proto = catta_af_to_proto(sa->sa_family);
61
62     // get protocol-specific CattaInterface object
63     if(!(iface = catta_interface_monitor_get_interface(m, hw->index, addr.proto))) {
64         catta_log_error("CattaInterface (index %d, proto %d) not found", hw->index, addr.proto);
65         return;
66     }
67
68     // find or allocate a CattaInterfaceAddress struct for this address
69     if(!(ifaddr = catta_interface_monitor_get_address(m, iface, &addr))) {
70         if(!(ifaddr = catta_interface_address_new(m, iface, &addr, a->OnLinkPrefixLength))) {
71             catta_log_error("out of memory in ip_adapter_unicast_address");
72             return;
73         }
74     }
75
76     // set global scope flag
77     if(addr.proto == CATTA_PROTO_INET6)
78         ifaddr->global_scope = !(IN6_IS_ADDR_LINKLOCAL((struct in6_addr *)addr.data.data)
79                                  || IN6_IS_ADDR_MULTICAST((struct in6_addr *)addr.data.data));
80     else
81         ifaddr->global_scope = 1;
82
83     // XXX debugging, remove
84     {
85         char s[CATTA_ADDRESS_STR_MAX];
86         catta_log_debug(" address: %s\n"
87                         "   global_scope: %d\n"
88                         "   flags: 0x%.4x",
89             catta_address_snprint(s, sizeof(s), &addr),
90             ifaddr->global_scope,
91             (unsigned int)a->Flags);
92     }
93 }
94
95 // integrate the information from an IP_ADAPTER_ADDRESSES structure
96 // as returned by GetAdaptersAddresses into the CattaInterfaceMonitor
97 static void ip_adapter(CattaInterfaceMonitor *m, IP_ADAPTER_ADDRESSES *p)
98 {
99     IP_ADAPTER_UNICAST_ADDRESS *a;
100     CattaIfIndex idx;
101     CattaHwInterface *hw;
102     size_t n;
103
104     // we want an index specific to the hardware interface, but Windows
105     // has one for IPv4 and one for IPv6. it seems like these are always the
106     // same unless one of the protocols is not available. let's have a bunch of
107     // checks...
108     if(!p->IfIndex && !p->Ipv6IfIndex) {
109         return; // no usable protocols
110     } else if(!p->IfIndex) {
111         idx = p->Ipv6IfIndex;   // IPv6 but no IPv4 (huh!)
112     } else if(!p->Ipv6IfIndex) {
113         idx = p->IfIndex;       // IPv4 but no IPv6
114     } else if(p->IfIndex == p->Ipv6IfIndex) {
115         idx = p->IfIndex;       // same index for both protocols
116     } else {
117         // both indexes valid but not equal
118         catta_log_error("unsupported interface: %ls (IfIndex and Ipv6IfIndex differ: %u/%u)",
119             p->FriendlyName, (unsigned int)p->IfIndex, (unsigned int)p->Ipv6IfIndex);
120         return;
121     }
122
123     // find the CattaHwInterface by index or allocate a new one
124     if((hw = catta_interface_monitor_get_hw_interface(m, idx)) == NULL) {
125         if((hw = catta_hw_interface_new(m, idx)) == NULL) {
126             catta_log_error("catta_hw_interface_new failed in ip_adapter_address");
127             return;
128         }
129     }
130
131     // fill the CattaHwInterface struct with data
132     hw->flags_ok =
133         (p->OperStatus == IfOperStatusUp) &&
134         !(p->IfType == IF_TYPE_SOFTWARE_LOOPBACK) &&
135         !(p->Flags & IP_ADAPTER_NO_MULTICAST) &&
136         (m->server->config.allow_point_to_point || !(p->IfType == IF_TYPE_PPP));
137             // XXX what about IF_TYPE_TUNNEL?
138
139     n = wcstombs(NULL, p->FriendlyName, 0) + 1;
140     catta_free(hw->name);
141     hw->name = catta_new(char, n);
142     wcstombs(hw->name, p->FriendlyName, n);
143
144     hw->mtu = p->Mtu;
145
146     hw->mac_address_size = p->PhysicalAddressLength;
147     if(hw->mac_address_size > CATTA_MAC_ADDRESS_MAX)
148         hw->mac_address_size = CATTA_MAC_ADDRESS_MAX;
149     memcpy(hw->mac_address, p->PhysicalAddress, hw->mac_address_size);
150
151     // XXX debugging, remove
152     {
153         char mac[256];
154         catta_log_debug(" name: %s\n"
155                         " index: %d\n"
156                         "   IfIndex: %u\n"
157                         "   Ipv6IfIndex: %u\n"
158                         " mtu: %d\n"
159                         " mac: %s\n"
160                         " flags_ok: %d\n"
161                         "   type: %u\n"
162                         "   status: %u\n"
163                         "   multicast: %d\n"
164                         "   flags: 0x%.4x",
165             hw->name, hw->index,
166             (unsigned int)p->IfIndex, (unsigned int)p->Ipv6IfIndex,
167             hw->mtu,
168             catta_format_mac_address(mac, sizeof(mac), hw->mac_address, hw->mac_address_size),
169             hw->flags_ok,
170             (unsigned int)p->IfType,
171             (unsigned int)p->OperStatus,
172             !(p->Flags & IP_ADAPTER_NO_MULTICAST),
173             (unsigned int)p->Flags);
174     }
175
176     // process addresses
177     // XXX remove addresses that are no longer in the list
178     for(a=p->FirstUnicastAddress; a; a=a->Next)
179         ip_adapter_unicast_address(m, hw, a);
180     catta_log_debug("=====");
181 }
182
183
184 int catta_interface_monitor_init_osdep(CattaInterfaceMonitor *m)
185 {
186     (void)*m;   // silence "unused paramter" warning
187
188     // XXX register callbacks to get notified of interface/address changes
189
190     return 0;
191 }
192
193 void catta_interface_monitor_free_osdep(CattaInterfaceMonitor *m)
194 {
195     (void)*m;   // silence "unused paramter" warning
196 }
197
198 void catta_interface_monitor_sync(CattaInterfaceMonitor *m)
199 {
200     IP_ADAPTER_ADDRESSES *buf = NULL;
201     IP_ADAPTER_ADDRESSES *p;
202     ULONG bufsize = 15000;
203     ULONG r;
204
205     // allocate a buffer and call GetAdaptersAddresses
206     // retry with the correct size if the buffer was too small
207     do {
208         catta_free(buf);    // no-op on first iteration
209         if((buf = catta_malloc(bufsize)) == NULL) {
210             catta_log_error("malloc failed in catta_interface_monitor_sync");
211             return;
212         }
213
214         r = GetAdaptersAddresses(AF_UNSPEC, 0, NULL, buf, &bufsize);
215     } while(r == ERROR_BUFFER_OVERFLOW);
216
217     if(r != NO_ERROR) {
218         catta_log_error("GetAdaptersAddresses failed: %u", (unsigned int)r);
219         return;
220     }
221
222     // XXX remove interfaces for adapters that are no longer in the list
223
224     // create 'CattaInterface's for every adapter
225     for(p=buf; p; p=p->Next)
226         ip_adapter(m, p);
227
228     catta_free(buf);
229
230     m->list_complete = 1;
231     catta_interface_monitor_check_relevant(m);
232     catta_interface_monitor_update_rrs(m, 0);
233     catta_log_info("Network interface enumeration completed.");
234 }