| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  ip_unix.cpp                                                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2022-01-03 21:27:34 +01:00
										 |  |  | /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "ip_unix.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-03 19:36:44 -03:00
										 |  |  | #if defined(UNIX_ENABLED) || defined(WINDOWS_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #ifdef WINDOWS_ENABLED
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2021-09-23 08:56:12 +02:00
										 |  |  | #define WIN32_LEAN_AND_MEAN
 | 
					
						
							| 
									
										
										
										
											2017-03-06 09:11:03 +01:00
										 |  |  | #include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2021-09-23 08:56:12 +02:00
										 |  |  | #include <winsock2.h>
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include <ws2tcpip.h>
 | 
					
						
							|  |  |  | #ifndef UWP_ENABLED
 | 
					
						
							|  |  |  | #include <iphlpapi.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-12-20 10:38:05 +01:00
										 |  |  | #else // UNIX
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include <netdb.h>
 | 
					
						
							|  |  |  | #ifdef ANDROID_ENABLED
 | 
					
						
							| 
									
										
										
										
											2018-12-20 10:38:05 +01:00
										 |  |  | // We could drop this file once we up our API level to 24,
 | 
					
						
							|  |  |  | // where the NDK's ifaddrs.h supports to needed getifaddrs.
 | 
					
						
							|  |  |  | #include "thirdparty/misc/ifaddrs-android.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  | #ifdef __FreeBSD__
 | 
					
						
							|  |  |  | #include <sys/types.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #include <ifaddrs.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #include <arpa/inet.h>
 | 
					
						
							|  |  |  | #include <sys/socket.h>
 | 
					
						
							|  |  |  | #ifdef __FreeBSD__
 | 
					
						
							|  |  |  | #include <netinet/in.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-06-28 17:13:38 +02:00
										 |  |  | #include <net/if.h> // Order is important on OpenBSD, leave as last
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 02:48:18 +02:00
										 |  |  | static IPAddress _sockaddr2ip(struct sockaddr *p_addr) { | 
					
						
							|  |  |  | 	IPAddress ip; | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 	if (p_addr->sa_family == AF_INET) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		struct sockaddr_in *addr = (struct sockaddr_in *)p_addr; | 
					
						
							| 
									
										
										
										
											2016-12-05 16:32:38 +01:00
										 |  |  | 		ip.set_ipv4((uint8_t *)&(addr->sin_addr)); | 
					
						
							| 
									
										
										
										
											2017-05-08 14:20:31 +02:00
										 |  |  | 	} else if (p_addr->sa_family == AF_INET6) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)p_addr; | 
					
						
							| 
									
										
										
										
											2016-12-05 16:32:38 +01:00
										 |  |  | 		ip.set_ipv6(addr6->sin6_addr.s6_addr); | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ip; | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-24 20:14:51 +07:00
										 |  |  | void IPUnix::_resolve_hostname(List<IPAddress> &r_addresses, const String &p_hostname, Type p_type) const { | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 	struct addrinfo hints; | 
					
						
							| 
									
										
										
										
											2020-11-23 17:38:46 +01:00
										 |  |  | 	struct addrinfo *result = nullptr; | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memset(&hints, 0, sizeof(struct addrinfo)); | 
					
						
							| 
									
										
										
										
											2016-12-01 06:34:05 +01:00
										 |  |  | 	if (p_type == TYPE_IPV4) { | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 		hints.ai_family = AF_INET; | 
					
						
							| 
									
										
										
										
											2016-12-01 06:34:05 +01:00
										 |  |  | 	} else if (p_type == TYPE_IPV6) { | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 		hints.ai_family = AF_INET6; | 
					
						
							| 
									
										
										
										
											2016-10-28 23:11:53 +02:00
										 |  |  | 		hints.ai_flags = 0; | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		hints.ai_family = AF_UNSPEC; | 
					
						
							| 
									
										
										
										
											2016-11-30 03:01:40 +01:00
										 |  |  | 		hints.ai_flags = AI_ADDRCONFIG; | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-04-19 23:20:26 +02:00
										 |  |  | 	hints.ai_flags &= ~AI_NUMERICHOST; | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	int s = getaddrinfo(p_hostname.utf8().get_data(), nullptr, &hints, &result); | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 	if (s != 0) { | 
					
						
							| 
									
										
										
										
											2018-04-20 16:25:06 +07:00
										 |  |  | 		ERR_PRINT("getaddrinfo failed! Cannot resolve hostname."); | 
					
						
							| 
									
										
										
										
											2021-05-24 20:14:51 +07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	if (result == nullptr || result->ai_addr == nullptr) { | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 		ERR_PRINT("Invalid response from getaddrinfo"); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (result) { | 
					
						
							| 
									
										
										
										
											2018-04-19 23:20:26 +02:00
										 |  |  | 			freeaddrinfo(result); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-05-24 20:14:51 +07:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-24 20:14:51 +07:00
										 |  |  | 	struct addrinfo *next = result; | 
					
						
							| 
									
										
										
										
											2016-10-18 18:53:18 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-24 20:14:51 +07:00
										 |  |  | 	do { | 
					
						
							| 
									
										
										
										
											2021-10-12 14:30:55 +07:00
										 |  |  | 		if (next->ai_addr == nullptr) { | 
					
						
							| 
									
										
										
										
											2021-05-24 20:14:51 +07:00
										 |  |  | 			next = next->ai_next; | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		IPAddress ip = _sockaddr2ip(next->ai_addr); | 
					
						
							| 
									
										
										
										
											2022-01-29 01:33:29 +01:00
										 |  |  | 		if (ip.is_valid() && !r_addresses.find(ip)) { | 
					
						
							| 
									
										
										
										
											2021-05-24 20:14:51 +07:00
										 |  |  | 			r_addresses.push_back(ip); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		next = next->ai_next; | 
					
						
							|  |  |  | 	} while (next); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-24 20:14:51 +07:00
										 |  |  | 	freeaddrinfo(result); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | #if defined(WINDOWS_ENABLED)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-02 18:57:35 -02:00
										 |  |  | #if defined(UWP_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 02:48:18 +02:00
										 |  |  | void IPUnix::get_local_interfaces(Map<String, Interface_Info> *r_interfaces) const { | 
					
						
							| 
									
										
										
										
											2016-09-03 19:36:44 -03:00
										 |  |  | 	using namespace Windows::Networking; | 
					
						
							|  |  |  | 	using namespace Windows::Networking::Connectivity; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 	// Returns addresses, not interfaces.
 | 
					
						
							| 
									
										
										
										
											2016-09-03 19:36:44 -03:00
										 |  |  | 	auto hostnames = NetworkInformation::GetHostNames(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (int i = 0; i < hostnames->Size; i++) { | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 		auto hostname = hostnames->GetAt(i); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 		if (hostname->Type != HostNameType::Ipv4 && hostname->Type != HostNameType::Ipv6) { | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-03 19:36:44 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 		String name = hostname->RawName->Data(); | 
					
						
							|  |  |  | 		Map<String, Interface_Info>::Element *E = r_interfaces->find(name); | 
					
						
							|  |  |  | 		if (!E) { | 
					
						
							|  |  |  | 			Interface_Info info; | 
					
						
							|  |  |  | 			info.name = name; | 
					
						
							|  |  |  | 			info.name_friendly = hostname->DisplayName->Data(); | 
					
						
							| 
									
										
										
										
											2019-10-02 13:38:00 +02:00
										 |  |  | 			info.index = String::num_uint64(0); | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 			E = r_interfaces->insert(name, info); | 
					
						
							|  |  |  | 			ERR_CONTINUE(!E); | 
					
						
							| 
									
										
										
										
											2016-09-03 19:36:44 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Interface_Info &info = E->get(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 02:48:18 +02:00
										 |  |  | 		IPAddress ip = IPAddress(hostname->CanonicalName->Data()); | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 		info.ip_addresses.push_front(ip); | 
					
						
							| 
									
										
										
										
											2016-09-03 19:36:44 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 02:48:18 +02:00
										 |  |  | void IPUnix::get_local_interfaces(Map<String, Interface_Info> *r_interfaces) const { | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 	ULONG buf_size = 1024; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	IP_ADAPTER_ADDRESSES *addrs; | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	while (true) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		addrs = (IP_ADAPTER_ADDRESSES *)memalloc(buf_size); | 
					
						
							| 
									
										
										
										
											2017-12-06 21:36:34 +01:00
										 |  |  | 		int err = GetAdaptersAddresses(AF_UNSPEC, GAA_FLAG_SKIP_ANYCAST | GAA_FLAG_SKIP_MULTICAST | GAA_FLAG_SKIP_DNS_SERVER | GAA_FLAG_SKIP_FRIENDLY_NAME, | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 				nullptr, addrs, &buf_size); | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 		if (err == NO_ERROR) { | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 		memfree(addrs); | 
					
						
							|  |  |  | 		if (err == ERROR_BUFFER_OVERFLOW) { | 
					
						
							|  |  |  | 			continue; // will go back and alloc the right size
 | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-14 20:57:49 -06:00
										 |  |  | 		ERR_FAIL_MSG("Call to GetAdaptersAddresses failed with error " + itos(err) + "."); | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	IP_ADAPTER_ADDRESSES *adapter = addrs; | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	while (adapter != nullptr) { | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 		Interface_Info info; | 
					
						
							|  |  |  | 		info.name = adapter->AdapterName; | 
					
						
							|  |  |  | 		info.name_friendly = adapter->FriendlyName; | 
					
						
							|  |  |  | 		info.index = String::num_uint64(adapter->IfIndex); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		IP_ADAPTER_UNICAST_ADDRESS *address = adapter->FirstUnicastAddress; | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		while (address != nullptr) { | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 			int family = address->Address.lpSockaddr->sa_family; | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 			if (family != AF_INET && family != AF_INET6) { | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 			info.ip_addresses.push_front(_sockaddr2ip(address->Address.lpSockaddr)); | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 			address = address->Next; | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 		adapter = adapter->Next; | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 		// Only add interface if it has at least one IP
 | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 		if (info.ip_addresses.size() > 0) { | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 			r_interfaces->insert(info.name, info); | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memfree(addrs); | 
					
						
							| 
									
										
										
										
											2022-02-16 13:56:32 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-20 10:38:05 +01:00
										 |  |  | #else // UNIX
 | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 02:48:18 +02:00
										 |  |  | void IPUnix::get_local_interfaces(Map<String, Interface_Info> *r_interfaces) const { | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	struct ifaddrs *ifAddrStruct = nullptr; | 
					
						
							|  |  |  | 	struct ifaddrs *ifa = nullptr; | 
					
						
							| 
									
										
										
										
											2017-05-08 14:20:31 +02:00
										 |  |  | 	int family; | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	getifaddrs(&ifAddrStruct); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	for (ifa = ifAddrStruct; ifa != nullptr; ifa = ifa->ifa_next) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!ifa->ifa_addr) { | 
					
						
							| 
									
										
										
										
											2014-06-11 10:41:03 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-08 14:20:31 +02:00
										 |  |  | 		family = ifa->ifa_addr->sa_family; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (family != AF_INET && family != AF_INET6) { | 
					
						
							| 
									
										
										
										
											2017-05-08 14:20:31 +02:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-05-08 14:20:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-07 10:17:00 +02:00
										 |  |  | 		Map<String, Interface_Info>::Element *E = r_interfaces->find(ifa->ifa_name); | 
					
						
							|  |  |  | 		if (!E) { | 
					
						
							|  |  |  | 			Interface_Info info; | 
					
						
							|  |  |  | 			info.name = ifa->ifa_name; | 
					
						
							|  |  |  | 			info.name_friendly = ifa->ifa_name; | 
					
						
							|  |  |  | 			info.index = String::num_uint64(if_nametoindex(ifa->ifa_name)); | 
					
						
							|  |  |  | 			E = r_interfaces->insert(ifa->ifa_name, info); | 
					
						
							|  |  |  | 			ERR_CONTINUE(!E); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Interface_Info &info = E->get(); | 
					
						
							|  |  |  | 		info.ip_addresses.push_front(_sockaddr2ip(ifa->ifa_addr)); | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (ifAddrStruct != nullptr) { | 
					
						
							| 
									
										
										
										
											2020-05-10 12:56:01 +02:00
										 |  |  | 		freeifaddrs(ifAddrStruct); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-05-24 01:35:47 -03:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 02:48:18 +02:00
										 |  |  | void IPUnix::make_default() { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_create = _create_unix; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 02:48:18 +02:00
										 |  |  | IP *IPUnix::_create_unix() { | 
					
						
							|  |  |  | 	return memnew(IPUnix); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 02:48:18 +02:00
										 |  |  | IPUnix::IPUnix() { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |