ETHInterface_linux.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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. #ifndef Cjdns_android
  41. #include <ifaddrs.h>
  42. #endif
  43. #define MAX_PACKET_SIZE 1496
  44. #define MIN_PACKET_SIZE 46
  45. #define PADDING 512
  46. // 2 last 0x00 of .sll_addr are removed from original size (20)
  47. #define SOCKADDR_LL_LEN 18
  48. struct ETHInterface_pvt
  49. {
  50. struct ETHInterface pub;
  51. Socket socket;
  52. /** The unix interface index which is used to identify the eth device. */
  53. int ifindex;
  54. struct Log* logger;
  55. struct sockaddr_ll addrBase;
  56. String* ifName;
  57. Identity
  58. };
  59. static void sendMessageInternal(struct Message* message,
  60. struct sockaddr_ll* addr,
  61. struct ETHInterface_pvt* context)
  62. {
  63. /* Cut down on the noise
  64. uint8_t buff[sizeof(*addr) * 2 + 1] = {0};
  65. Hex_encode(buff, sizeof(buff), (uint8_t*)addr, sizeof(*addr));
  66. Log_debug(context->logger, "Sending ethernet frame to [%s]", buff);
  67. */
  68. if (sendto(context->socket,
  69. message->msgbytes,
  70. Message_getLength(message),
  71. 0,
  72. (struct sockaddr*) addr,
  73. sizeof(struct sockaddr_ll)) < 0)
  74. {
  75. switch (errno) {
  76. default:;
  77. Log_info(context->logger, "[%s] Got error sending to socket [%s]",
  78. context->ifName->bytes, strerror(errno));
  79. case EMSGSIZE:
  80. case ENOBUFS:
  81. case EAGAIN:;
  82. // todo: care
  83. }
  84. }
  85. return;
  86. }
  87. static Iface_DEFUN sendMessage(struct Message* msg, struct Iface* iface)
  88. {
  89. struct ETHInterface_pvt* ctx =
  90. Identity_containerOf(iface, struct ETHInterface_pvt, pub.generic.iface);
  91. struct Sockaddr* sa = (struct Sockaddr*) msg->msgbytes;
  92. Assert_true(Message_getLength(msg) >= Sockaddr_OVERHEAD);
  93. Assert_true(sa->addrLen <= ETHInterface_Sockaddr_SIZE);
  94. struct ETHInterface_Sockaddr sockaddr = { .generic = { .addrLen = 0 } };
  95. Er_assert(Message_epop(msg, &sockaddr, sa->addrLen));
  96. struct sockaddr_ll addr;
  97. Bits_memcpy(&addr, &ctx->addrBase, sizeof(struct sockaddr_ll));
  98. if (sockaddr.generic.flags & Sockaddr_flags_BCAST) {
  99. Bits_memset(addr.sll_addr, 0xff, 6);
  100. } else {
  101. Bits_memcpy(addr.sll_addr, sockaddr.mac, 6);
  102. }
  103. struct ETHInterface_Header hdr = {
  104. .version = ETHInterface_CURRENT_VERSION,
  105. .zero = 0,
  106. .length_be = Endian_hostToBigEndian16(Message_getLength(msg) + ETHInterface_Header_SIZE),
  107. .fc00_be = Endian_hostToBigEndian16(0xfc00)
  108. };
  109. Er_assert(Message_epush(msg, &hdr, ETHInterface_Header_SIZE));
  110. sendMessageInternal(msg, &addr, ctx);
  111. return NULL;
  112. }
  113. static void handleEvent2(struct ETHInterface_pvt* context, struct Allocator* messageAlloc)
  114. {
  115. struct Message* msg = Message_new(MAX_PACKET_SIZE, PADDING, messageAlloc);
  116. struct sockaddr_ll addr;
  117. uint32_t addrLen = sizeof(struct sockaddr_ll);
  118. // Knock it out of alignment by 2 bytes so that it will be
  119. // aligned when the idAndPadding is shifted off.
  120. Er_assert(Message_eshift(msg, 2));
  121. int rc = recvfrom(context->socket,
  122. msg->msgbytes,
  123. Message_getLength(msg),
  124. 0,
  125. (struct sockaddr*) &addr,
  126. &addrLen);
  127. if (rc < ETHInterface_Header_SIZE) {
  128. Log_debug(context->logger, "Failed to receive eth frame");
  129. return;
  130. }
  131. Er_assert(Message_truncate(msg, rc));
  132. //Assert_true(addrLen == SOCKADDR_LL_LEN);
  133. struct ETHInterface_Header hdr;
  134. Er_assert(Message_epop(msg, &hdr, ETHInterface_Header_SIZE));
  135. // here we could put a switch statement to handle different versions differently.
  136. if (hdr.version != ETHInterface_CURRENT_VERSION) {
  137. Log_debug(context->logger, "DROP unknown version");
  138. return;
  139. }
  140. uint16_t reportedLength = Endian_bigEndianToHost16(hdr.length_be);
  141. reportedLength -= ETHInterface_Header_SIZE;
  142. if (Message_getLength(msg) != reportedLength) {
  143. if (Message_getLength(msg) < reportedLength) {
  144. Log_debug(context->logger, "DROP size field is larger than frame");
  145. return;
  146. }
  147. Er_assert(Message_truncate(msg, reportedLength));
  148. }
  149. if (hdr.fc00_be != Endian_hostToBigEndian16(0xfc00)) {
  150. Log_debug(context->logger, "DROP bad magic");
  151. return;
  152. }
  153. struct ETHInterface_Sockaddr sockaddr = { .zero = 0 };
  154. Bits_memcpy(sockaddr.mac, addr.sll_addr, 6);
  155. sockaddr.generic.addrLen = ETHInterface_Sockaddr_SIZE;
  156. if (addr.sll_pkttype == PACKET_BROADCAST) {
  157. sockaddr.generic.flags |= Sockaddr_flags_BCAST;
  158. }
  159. Er_assert(Message_epush(msg, &sockaddr, ETHInterface_Sockaddr_SIZE));
  160. Assert_true(!((uintptr_t)msg->msgbytes % 4) && "Alignment fault");
  161. Iface_send(&context->pub.generic.iface, msg);
  162. }
  163. static void handleEvent(void* vcontext)
  164. {
  165. struct ETHInterface_pvt* context = Identity_check((struct ETHInterface_pvt*) vcontext);
  166. struct Allocator* messageAlloc = Allocator_child(context->pub.generic.alloc);
  167. handleEvent2(context, messageAlloc);
  168. Allocator_free(messageAlloc);
  169. }
  170. Er_DEFUN(List* ETHInterface_listDevices(struct Allocator* alloc))
  171. {
  172. List* out = List_new(alloc);
  173. #ifndef Cjdns_android
  174. struct ifaddrs* ifaddr = NULL;
  175. if (getifaddrs(&ifaddr) || ifaddr == NULL) {
  176. Er_raise(alloc, "getifaddrs() -> errno:%d [%s]", errno, strerror(errno));
  177. }
  178. for (struct ifaddrs* ifa = ifaddr; ifa; ifa = ifa->ifa_next) {
  179. if (ifa->ifa_addr && ifa->ifa_addr->sa_family == AF_PACKET) {
  180. List_addString(out, String_new(ifa->ifa_name, alloc), alloc);
  181. }
  182. }
  183. freeifaddrs(ifaddr);
  184. #endif
  185. Er_ret(out);
  186. }
  187. static int closeSocket(struct Allocator_OnFreeJob* j)
  188. {
  189. struct ETHInterface_pvt* ctx = Identity_check((struct ETHInterface_pvt*) j->userData);
  190. close(ctx->socket);
  191. return 0;
  192. }
  193. Er_DEFUN(struct ETHInterface* ETHInterface_new(struct EventBase* eventBase,
  194. const char* bindDevice,
  195. struct Allocator* alloc,
  196. struct Log* logger))
  197. {
  198. struct ETHInterface_pvt* ctx = Allocator_calloc(alloc, sizeof(struct ETHInterface_pvt), 1);
  199. Identity_set(ctx);
  200. ctx->pub.generic.iface.send = sendMessage;
  201. ctx->pub.generic.alloc = alloc;
  202. ctx->logger = logger;
  203. struct ifreq ifr = { .ifr_ifindex = 0 };
  204. ctx->socket = socket(AF_PACKET, SOCK_DGRAM, Ethernet_TYPE_CJDNS);
  205. if (ctx->socket == -1) {
  206. Er_raise(alloc, "call to socket() failed. [%s]", strerror(errno));
  207. }
  208. Allocator_onFree(alloc, closeSocket, ctx);
  209. CString_safeStrncpy(ifr.ifr_name, bindDevice, IFNAMSIZ);
  210. ctx->ifName = String_new(bindDevice, alloc);
  211. if (ioctl(ctx->socket, SIOCGIFINDEX, &ifr) == -1) {
  212. Er_raise(alloc, "failed to find interface index [%s]", strerror(errno));
  213. }
  214. ctx->ifindex = ifr.ifr_ifindex;
  215. if (ioctl(ctx->socket, SIOCGIFFLAGS, &ifr) < 0) {
  216. Er_raise(alloc, "ioctl(SIOCGIFFLAGS) [%s]", strerror(errno));
  217. }
  218. if (!((ifr.ifr_flags & IFF_UP) && (ifr.ifr_flags & IFF_RUNNING))) {
  219. Log_info(logger, "Bringing up interface [%s]", ifr.ifr_name);
  220. ifr.ifr_flags |= IFF_UP | IFF_RUNNING;
  221. if (ioctl(ctx->socket, SIOCSIFFLAGS, &ifr) < 0) {
  222. Er_raise(alloc, "ioctl(SIOCSIFFLAGS) [%s]", strerror(errno));
  223. }
  224. }
  225. ctx->addrBase = (struct sockaddr_ll) {
  226. .sll_family = AF_PACKET,
  227. .sll_protocol = Ethernet_TYPE_CJDNS,
  228. .sll_ifindex = ctx->ifindex,
  229. .sll_hatype = ARPHRD_ETHER,
  230. .sll_pkttype = PACKET_OTHERHOST,
  231. .sll_halen = ETH_ALEN
  232. };
  233. if (bind(ctx->socket, (struct sockaddr*) &ctx->addrBase, sizeof(struct sockaddr_ll))) {
  234. Er_raise(alloc, "call to bind() failed [%s]", strerror(errno));
  235. }
  236. Socket_makeNonBlocking(ctx->socket);
  237. Event_socketRead(handleEvent, ctx, ctx->socket, eventBase, alloc);
  238. Er_ret(&ctx->pub);
  239. }