123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 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 <http://www.gnu.org/licenses/>.
- */
- #include "util/platform/Sockaddr.h"
- #include "util/log/Log.h"
- #include "exception/Except.h"
- #include "memory/Allocator.h"
- #include "memory/BufferAllocator.h"
- #include "util/platform/netdev/NetDev.h"
- #include "util/platform/netdev/NetPlatform.h"
- static void checkAddressAndPrefix(struct Sockaddr* sa,
- int* addrFam,
- char** printedAddr,
- void** addr,
- struct Allocator* alloc,
- struct Except* eh)
- {
- *printedAddr = Sockaddr_print(sa, alloc);
- *addrFam = Sockaddr_getFamily(sa);
- if (*addrFam != Sockaddr_AF_INET && *addrFam != Sockaddr_AF_INET6) {
- Except_throw(eh, "Unknown address type for address [%s]", *printedAddr);
- }
- int prefixMax = (*addrFam == Sockaddr_AF_INET6) ? 128 : 32;
- if (!(sa->flags & Sockaddr_flags_PREFIX)) {
- sa->prefix = prefixMax;
- }
- if (sa->prefix > prefixMax) {
- Except_throw(eh, "prefix [%u] must be less than %d", sa->prefix, prefixMax);
- }
- int len = Sockaddr_getAddress(sa, addr);
- if (len < 0 || len != prefixMax / 8) {
- Except_throw(eh, "Invalid sockaddr [%s]", *printedAddr);
- }
- }
- void NetDev_addAddress(const char* ifName,
- struct Sockaddr* sa,
- struct Log* logger,
- struct Except* eh)
- {
- int addrFam;
- char* printedAddr;
- void* addr;
- struct Allocator* alloc;
- BufferAllocator_STACK(alloc, 4096);
- checkAddressAndPrefix(sa, &addrFam, &printedAddr, &addr, alloc, eh);
- Log_info(logger, "Setting IP address [%s/%d] on interface [%s]",
- printedAddr, sa->prefix, ifName);
- NetPlatform_addAddress(ifName, addr, sa->prefix, addrFam, logger, alloc, eh);
- }
- void NetDev_setMTU(const char* interfaceName,
- uint32_t mtu,
- struct Log* logger,
- struct Except* eh)
- {
- NetPlatform_setMTU(interfaceName, mtu, logger, eh);
- }
- void NetDev_flushAddresses(const char* deviceName, struct Except* eh)
- {
- #ifdef win32
- NetPlatform_flushAddresses(deviceName, eh);
- #endif
- }
- /*
- void NetDev_addRoute(const char* ifName,
- struct Sockaddr* sa,
- int prefixLen,
- struct Log* logger,
- struct Except* eh)
- {
- int addrFam;
- char* printedAddr;
- void* addr;
- struct Allocator* alloc;
- BufferAllocator_STACK(alloc, 4096);
- checkAddressAndPrefix(sa, prefixLen, &addrFam, &printedAddr, &addr, alloc, eh);
- Log_info(logger, "Setting route [%s/%d on interface [%s]",
- printedAddr, prefixLen, ifName);
- NetPlatform_addRoute(ifName, addr, prefixLen, addrFam, logger, eh);
- }*/
- void NetDev_setRoutes(const char* ifName,
- struct Sockaddr** prefixSet,
- int prefixCount,
- struct Log* logger,
- struct Allocator* tempAlloc,
- struct Except* eh)
- {
- for (int i = 0; i < prefixCount; i++) {
- struct Allocator* alloc = Allocator_child(tempAlloc);
- int addrFam;
- char* printedAddr;
- void* addr;
- checkAddressAndPrefix(prefixSet[i], &addrFam, &printedAddr, &addr, alloc, eh);
- Allocator_free(alloc);
- }
- NetPlatform_setRoutes(ifName, prefixSet, prefixCount, logger, tempAlloc, eh);
- }
|