/* Copyright 2016, Ableton AG, Berlin. All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * If you would like to incorporate Link into a proprietary software application, * please contact . */ #pragma once #include #include #include #include #include #include #include namespace ableton { namespace platforms { namespace posix { namespace detail { // RAII type to make [get,free]ifaddrs function pairs exception safe class GetIfAddrs { public: GetIfAddrs() { if (getifaddrs(&interfaces)) // returns 0 on success { interfaces = NULL; } } ~GetIfAddrs() { if (interfaces) freeifaddrs(interfaces); } // RAII must not copy GetIfAddrs(GetIfAddrs&) = delete; GetIfAddrs& operator=(GetIfAddrs&) = delete; template void withIfAddrs(Function f) { if (interfaces) f(*interfaces); } private: struct ifaddrs* interfaces = NULL; }; } // namespace detail // Posix implementation of ip interface address scanner struct ScanIpIfAddrs { // Scan active network interfaces and return corresponding addresses // for all ip-based interfaces. std::vector operator()() { std::vector addrs; std::map IpInterfaceNames; detail::GetIfAddrs getIfAddrs; getIfAddrs.withIfAddrs([&addrs, &IpInterfaceNames](const struct ifaddrs& interfaces) { const struct ifaddrs* interface; for (interface = &interfaces; interface; interface = interface->ifa_next) { auto addr = reinterpret_cast(interface->ifa_addr); if (addr && interface->ifa_flags & IFF_RUNNING && addr->sin_family == AF_INET) { auto bytes = reinterpret_cast(&addr->sin_addr); auto address = discovery::makeAddress(bytes); addrs.emplace_back(std::move(address)); IpInterfaceNames.insert(std::make_pair(interface->ifa_name, address)); } } }); getIfAddrs.withIfAddrs([&addrs, &IpInterfaceNames](const struct ifaddrs& interfaces) { const struct ifaddrs* interface; for (interface = &interfaces; interface; interface = interface->ifa_next) { auto addr = reinterpret_cast(interface->ifa_addr); if (addr && interface->ifa_flags & IFF_RUNNING && addr->sin_family == AF_INET6) { auto addr6 = reinterpret_cast(addr); auto bytes = reinterpret_cast(&addr6->sin6_addr); auto scopeId = addr6->sin6_scope_id; auto address = discovery::makeAddress(bytes, scopeId); if (IpInterfaceNames.find(interface->ifa_name) != IpInterfaceNames.end() && !address.is_loopback() && address.is_link_local()) { addrs.emplace_back(std::move(address)); } } } }); return addrs; }; }; } // namespace posix } // namespace platforms } // namespace ableton