Permalink
Cannot retrieve contributors at this time
187 lines (172 sloc)
5.13 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
dotnet-runtime/src/native/libs/System.Native/pal_networkchange.c
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Licensed to the .NET Foundation under one or more agreements. | |
| // The .NET Foundation licenses this file to you under the MIT license. | |
| #include "pal_config.h" | |
| #include "pal_errno.h" | |
| #include "pal_networkchange.h" | |
| #include "pal_types.h" | |
| #include "pal_utilities.h" | |
| #include <errno.h> | |
| #include <net/if.h> | |
| #include <stdlib.h> | |
| #include <sys/socket.h> | |
| #include <sys/types.h> | |
| #include <sys/uio.h> | |
| #include <unistd.h> | |
| #if HAVE_LINUX_RTNETLINK_H | |
| #include <linux/rtnetlink.h> | |
| #elif HAVE_RT_MSGHDR | |
| #if HAVE_IOS_NET_ROUTE_H | |
| #include "ios/net/route.h" | |
| #else | |
| #include <net/route.h> | |
| #endif | |
| #endif | |
| #pragma clang diagnostic ignored "-Wcast-align" // NLMSG_* macros trigger this | |
| Error SystemNative_CreateNetworkChangeListenerSocket(intptr_t* retSocket) | |
| { | |
| #if HAVE_LINUX_RTNETLINK_H | |
| struct sockaddr_nl sa; | |
| memset(&sa, 0, sizeof(struct sockaddr_nl)); | |
| sa.nl_family = AF_NETLINK; | |
| sa.nl_groups = RTMGRP_LINK | RTMGRP_IPV4_IFADDR | RTMGRP_IPV4_ROUTE | RTMGRP_IPV6_ROUTE; | |
| int32_t sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); | |
| #elif HAVE_RT_MSGHDR | |
| int32_t sock = socket(PF_ROUTE, SOCK_RAW, 0); | |
| #else | |
| /* Haiku has neither of the above */ | |
| int32_t sock = -1; | |
| return (Error)(SystemNative_ConvertErrorPlatformToPal(EOPNOTSUPP)); | |
| #endif | |
| if (sock == -1) | |
| { | |
| *retSocket = -1; | |
| return (Error)(SystemNative_ConvertErrorPlatformToPal(errno)); | |
| } | |
| #if HAVE_LINUX_RTNETLINK_H | |
| if (bind(sock, (struct sockaddr*)(&sa), sizeof(sa)) != 0) | |
| { | |
| *retSocket = -1; | |
| Error palError = (Error)(SystemNative_ConvertErrorPlatformToPal(errno)); | |
| close(sock); | |
| return palError; | |
| } | |
| #endif | |
| *retSocket = sock; | |
| return Error_SUCCESS; | |
| } | |
| #if HAVE_LINUX_RTNETLINK_H | |
| static NetworkChangeKind ReadNewLinkMessage(struct nlmsghdr* hdr) | |
| { | |
| assert(hdr != NULL); | |
| struct ifinfomsg* ifimsg; | |
| ifimsg = (struct ifinfomsg*)NLMSG_DATA(hdr); | |
| if (ifimsg->ifi_family == AF_UNSPEC) | |
| { | |
| return AvailabilityChanged; | |
| } | |
| return None; | |
| } | |
| Error SystemNative_ReadEvents(intptr_t sock, NetworkChangeEvent onNetworkChange) | |
| { | |
| char buffer[4096]; | |
| struct iovec iov = {buffer, sizeof(buffer)}; | |
| struct sockaddr_nl sanl; | |
| int fd = ToFileDescriptor(sock); | |
| struct msghdr msg = { .msg_name = (void*)(&sanl), .msg_namelen = sizeof(struct sockaddr_nl), .msg_iov = &iov, .msg_iovlen = 1 }; | |
| ssize_t len; | |
| while (CheckInterrupted(len = recvmsg(fd, &msg, 0))); | |
| if (len == 0) | |
| { | |
| return Error_ECONNABORTED; // EOF. | |
| } | |
| if (len == -1) | |
| { | |
| return (Error)(SystemNative_ConvertErrorPlatformToPal(errno)); | |
| } | |
| assert(len >= 0); | |
| for (struct nlmsghdr* hdr = (struct nlmsghdr*)buffer; NLMSG_OK(hdr, (size_t)len); NLMSG_NEXT(hdr, len)) | |
| { | |
| switch (hdr->nlmsg_type) | |
| { | |
| case NLMSG_DONE: | |
| return Error_SUCCESS; // End of a multi-part message; stop reading. | |
| case NLMSG_ERROR: | |
| return Error_SUCCESS; | |
| case RTM_NEWADDR: | |
| onNetworkChange(sock, AddressAdded); | |
| break; | |
| case RTM_DELADDR: | |
| onNetworkChange(sock, AddressRemoved); | |
| break; | |
| case RTM_NEWLINK: | |
| onNetworkChange(sock, ReadNewLinkMessage(hdr)); | |
| break; | |
| case RTM_NEWROUTE: | |
| case RTM_DELROUTE: | |
| { | |
| struct rtmsg* dataAsRtMsg = (struct rtmsg*)NLMSG_DATA(hdr); | |
| if (dataAsRtMsg->rtm_table == RT_TABLE_MAIN) | |
| { | |
| onNetworkChange(sock, AvailabilityChanged); | |
| return Error_SUCCESS; | |
| } | |
| break; | |
| } | |
| default: | |
| break; | |
| } | |
| } | |
| return Error_SUCCESS; | |
| } | |
| #elif HAVE_RT_MSGHDR | |
| Error SystemNative_ReadEvents(intptr_t sock, NetworkChangeEvent onNetworkChange) | |
| { | |
| char buffer[4096]; | |
| int fd = ToFileDescriptor(sock); | |
| ssize_t count = CheckInterrupted(read(fd, buffer, sizeof(buffer))); | |
| if (count == 0) | |
| { | |
| return Error_ECONNABORTED; // EOF. | |
| } | |
| if (count == -1) | |
| { | |
| return (Error)(SystemNative_ConvertErrorPlatformToPal(errno)); | |
| } | |
| struct rt_msghdr msghdr; | |
| for (char *ptr = buffer; (ptr + sizeof(struct rt_msghdr)) <= (buffer + count); ptr += msghdr.rtm_msglen) | |
| { | |
| memcpy(&msghdr, ptr, sizeof(msghdr)); | |
| if (msghdr.rtm_version != RTM_VERSION) | |
| { | |
| // version mismatch | |
| return Error_SUCCESS; | |
| } | |
| switch (msghdr.rtm_type) | |
| { | |
| case RTM_NEWADDR: | |
| onNetworkChange(sock, AddressAdded); | |
| break; | |
| case RTM_DELADDR: | |
| onNetworkChange(sock, AddressRemoved); | |
| break; | |
| case RTM_ADD: | |
| case RTM_DELETE: | |
| case RTM_REDIRECT: | |
| onNetworkChange(sock, AvailabilityChanged); | |
| return Error_SUCCESS; | |
| default: | |
| break; | |
| } | |
| } | |
| return Error_SUCCESS; | |
| } | |
| #else | |
| Error SystemNative_ReadEvents(intptr_t sock, NetworkChangeEvent onNetworkChange) | |
| { | |
| (void)sock; | |
| (void)onNetworkChange; | |
| // unreachable | |
| abort(); | |
| return Error_SUCCESS; | |
| } | |
| #endif |