ETHInterface_linux.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. */
  15. #include "interface/ETHInterface.h"
  16. #include "exception/Except.h"
  17. #include "memory/Allocator.h"
  18. #include "net/InterfaceController.h"
  19. #include "wire/Headers.h"
  20. #include "wire/Message.h"
  21. #include "wire/Error.h"
  22. #include "wire/Ethernet.h"
  23. #include "util/Assert.h"
  24. #include "util/platform/Socket.h"
  25. #include "util/events/Event.h"
  26. #include "util/Identity.h"
  27. #include "util/AddrTools.h"
  28. #include "util/version/Version.h"
  29. #include "util/events/Timeout.h"
  30. #include "util/CString.h"
  31. #include <string.h>
  32. #include <sys/socket.h>
  33. #include <linux/if_packet.h>
  34. #include <linux/if_ether.h>
  35. #include <linux/if_arp.h>
  36. #include <sys/types.h>
  37. #include <sys/ioctl.h>
  38. #include <unistd.h>
  39. #include <errno.h>
  40. #include <ifaddrs.h>
  41. #define MAX_PACKET_SIZE 1496
  42. #define MIN_PACKET_SIZE 46
  43. #define PADDING 512
  44. // 2 last 0x00 of .sll_addr are removed from original size (20)
  45. #define SOCKADDR_LL_LEN 18
  46. struct ETHInterface_pvt
  47. {
  48. struct ETHInterface pub;
  49. Iface_t iface;
  50. int socket;
  51. /** The unix interface index which is used to identify the eth device. */
  52. int ifindex;
  53. struct Log* logger;
  54. struct sockaddr_ll addrBase;
  55. String* ifName;
  56. Identity
  57. };
  58. static void sendMessageInternal(struct Message* message,
  59. struct sockaddr_ll* addr,
  60. struct ETHInterface_pvt* context)
  61. {
  62. /* Cut down on the noise
  63. uint8_t buff[sizeof(*addr) * 2 + 1] = {0};
  64. Hex_encode(buff, sizeof(buff), (uint8_t*)addr, sizeof(*addr));
  65. Log_debug(context->logger, "Sending ethernet frame to [%s]", buff);
  66. */
  67. if (sendto(context->socket,
  68. message->msgbytes,
  69. Message_getLength(message),
  70. 0,
  71. (struct sockaddr*) addr,
  72. sizeof(struct sockaddr_ll)) < 0)
  73. {
  74. switch (errno) {
  75. default:;
  76. Log_info(context->logger, "[%s] Got error sending to socket [%s]",
  77. context->ifName->bytes, strerror(errno));
  78. case EMSGSIZE:
  79. case ENOBUFS:
  80. case EAGAIN:;
  81. // todo: care
  82. }
  83. }
  84. return;
  85. }
  86. static Iface_DEFUN sendMessage(struct Message* msg, struct Iface* iface)
  87. {
  88. struct ETHInterface_pvt* ctx = Identity_containerOf(iface, struct ETHInterface_pvt, iface);
  89. struct Sockaddr* sa = (struct Sockaddr*) msg->msgbytes;
  90. Assert_true(Message_getLength(msg) >= Sockaddr_OVERHEAD);
  91. Assert_true(sa->addrLen <= ETHInterface_Sockaddr_SIZE);
  92. struct ETHInterface_Sockaddr sockaddr = { .generic = { .addrLen = 0 } };
  93. Er_assert(Message_epop(msg, &sockaddr, sa->addrLen));
  94. struct sockaddr_ll addr;
  95. Bits_memcpy(&addr, &ctx->addrBase, sizeof(struct sockaddr_ll));
  96. if (sockaddr.generic.flags & Sockaddr_flags_BCAST) {
  97. Bits_memset(addr.sll_addr, 0xff, 6);
  98. } else {
  99. Bits_memcpy(addr.sll_addr, sockaddr.mac, 6);
  100. }
  101. struct ETHInterface_Header hdr = {
  102. .version = ETHInterface_CURRENT_VERSION,
  103. .zero = 0,
  104. .length_be = Endian_hostToBigEndian16(Message_getLength(msg) + ETHInterface_Header_SIZE),
  105. .fc00_be = Endian_hostToBigEndian16(0xfc00)
  106. };
  107. Er_assert(Message_epush(msg, &hdr, ETHInterface_Header_SIZE));
  108. sendMessageInternal(msg, &addr, ctx);
  109. return NULL;
  110. }
  111. static void handleEvent2(struct ETHInterface_pvt* context, struct Allocator* messageAlloc)
  112. {
  113. struct Message* msg = Message_new(MAX_PACKET_SIZE, PADDING, messageAlloc);
  114. struct sockaddr_ll addr;
  115. uint32_t addrLen = sizeof(struct sockaddr_ll);
  116. // Knock it out of alignment by 2 bytes so that it will be
  117. // aligned when the idAndPadding is shifted off.
  118. Er_assert(Message_eshift(msg, 2));
  119. int rc = recvfrom(context->socket,
  120. msg->msgbytes,
  121. Message_getLength(msg),
  122. 0,
  123. (struct sockaddr*) &addr,
  124. &addrLen);
  125. if (rc < ETHInterface_Header_SIZE) {
  126. Log_debug(context->logger, "Failed to receive eth frame");
  127. return;
  128. }
  129. Er_assert(Message_truncate(msg, rc));
  130. //Assert_true(addrLen == SOCKADDR_LL_LEN);
  131. struct ETHInterface_Header hdr;
  132. Er_assert(Message_epop(msg, &hdr, ETHInterface_Header_SIZE));
  133. // here we could put a switch statement to handle different versions differently.
  134. if (hdr.version != ETHInterface_CURRENT_VERSION) {
  135. Log_debug(context->logger, "DROP unknown version");
  136. return;
  137. }
  138. uint16_t reportedLength = Endian_bigEndianToHost16(hdr.length_be);
  139. reportedLength -= ETHInterface_Header_SIZE;
  140. if (Message_getLength(msg) != reportedLength) {
  141. if (Message_getLength(msg) < reportedLength) {
  142. Log_debug(context->logger, "DROP size field is larger than frame");
  143. return;
  144. }
  145. Er_assert(Message_truncate(msg, reportedLength));
  146. }
  147. if (hdr.fc00_be != Endian_hostToBigEndian16(0xfc00)) {
  148. Log_debug(context->logger, "DROP bad magic");
  149. return;
  150. }
  151. struct ETHInterface_Sockaddr sockaddr = { .zero = 0 };
  152. Bits_memcpy(sockaddr.mac, addr.sll_addr, 6);
  153. sockaddr.generic.addrLen = ETHInterface_Sockaddr_SIZE;
  154. if (addr.sll_pkttype == PACKET_BROADCAST) {
  155. sockaddr.generic.flags |= Sockaddr_flags_BCAST;
  156. }
  157. Er_assert(Message_epush(msg, &sockaddr, ETHInterface_Sockaddr_SIZE));
  158. Assert_true(!((uintptr_t)msg->msgbytes % 4) && "Alignment fault");
  159. Iface_send(context->pub.generic.iface, msg);
  160. }
  161. static void handleEvent(void* vcontext)
  162. {
  163. struct ETHInterface_pvt* context = Identity_check((struct ETHInterface_pvt*) vcontext);
  164. struct Allocator* messageAlloc = Allocator_child(context->pub.generic.alloc);
  165. handleEvent2(context, messageAlloc);
  166. Allocator_free(messageAlloc);
  167. }
  168. Er_DEFUN(List* ETHInterface_listDevices(struct Allocator* alloc))
  169. {
  170. List* out = List_new(alloc);
  171. struct ifaddrs* ifaddr = NULL;
  172. if (getifaddrs(&ifaddr) || ifaddr == NULL) {
  173. Er_raise(alloc, "getifaddrs() -> errno:%d [%s]", errno, strerror(errno));
  174. }
  175. for (struct ifaddrs* ifa = ifaddr; ifa; ifa = ifa->ifa_next) {
  176. if (ifa->ifa_addr && ifa->ifa_addr->sa_family == AF_PACKET) {
  177. List_addString(out, String_new(ifa->ifa_name, alloc), alloc);
  178. }
  179. }
  180. freeifaddrs(ifaddr);
  181. Er_ret(out);
  182. }
  183. static int closeSocket(struct Allocator_OnFreeJob* j)
  184. {
  185. struct ETHInterface_pvt* ctx = Identity_check((struct ETHInterface_pvt*) j->userData);
  186. close(ctx->socket);
  187. return 0;
  188. }
  189. Er_DEFUN(struct ETHInterface* ETHInterface_new(struct EventBase* eventBase,
  190. const char* bindDevice,
  191. struct Allocator* alloc,
  192. struct Log* logger))
  193. {
  194. struct ETHInterface_pvt* ctx = Allocator_calloc(alloc, sizeof(struct ETHInterface_pvt), 1);
  195. Identity_set(ctx);
  196. ctx->iface.send = sendMessage;
  197. ctx->pub.generic.iface = &ctx->iface;
  198. ctx->pub.generic.alloc = alloc;
  199. ctx->logger = logger;
  200. struct ifreq ifr = { .ifr_ifindex = 0 };
  201. ctx->socket = socket(AF_PACKET, SOCK_DGRAM, Ethernet_TYPE_CJDNS);
  202. if (ctx->socket == -1) {
  203. Er_raise(alloc, "call to socket() failed. [%s]", strerror(errno));
  204. }
  205. Allocator_onFree(alloc, closeSocket, ctx);
  206. CString_safeStrncpy(ifr.ifr_name, bindDevice, IFNAMSIZ);
  207. ctx->ifName = String_new(bindDevice, alloc);
  208. if (ioctl(ctx->socket, SIOCGIFINDEX, &ifr) == -1) {
  209. Er_raise(alloc, "failed to find interface index [%s]", strerror(errno));
  210. }
  211. ctx->ifindex = ifr.ifr_ifindex;
  212. if (ioctl(ctx->socket, SIOCGIFFLAGS, &ifr) < 0) {
  213. Er_raise(alloc, "ioctl(SIOCGIFFLAGS) [%s]", strerror(errno));
  214. }
  215. if (!((ifr.ifr_flags & IFF_UP) && (ifr.ifr_flags & IFF_RUNNING))) {
  216. Log_info(logger, "Bringing up interface [%s]", ifr.ifr_name);
  217. ifr.ifr_flags |= IFF_UP | IFF_RUNNING;
  218. if (ioctl(ctx->socket, SIOCSIFFLAGS, &ifr) < 0) {
  219. Er_raise(alloc, "ioctl(SIOCSIFFLAGS) [%s]", strerror(errno));
  220. }
  221. }
  222. ctx->addrBase = (struct sockaddr_ll) {
  223. .sll_family = AF_PACKET,
  224. .sll_protocol = Ethernet_TYPE_CJDNS,
  225. .sll_ifindex = ctx->ifindex,
  226. .sll_hatype = ARPHRD_ETHER,
  227. .sll_pkttype = PACKET_OTHERHOST,
  228. .sll_halen = ETH_ALEN
  229. };
  230. if (bind(ctx->socket, (struct sockaddr*) &ctx->addrBase, sizeof(struct sockaddr_ll))) {
  231. Er_raise(alloc, "call to bind() failed [%s]", strerror(errno));
  232. }
  233. Socket_makeNonBlocking(ctx->socket);
  234. Event_socketRead(handleEvent, ctx, ctx->socket, eventBase, alloc);
  235. Er_ret(&ctx->pub);
  236. }