netlink.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /*
  2. * Netlink helper functions for driver wrappers
  3. * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "eloop.h"
  17. #include "priv_netlink.h"
  18. #include "netlink.h"
  19. struct netlink_data {
  20. struct netlink_config *cfg;
  21. int sock;
  22. };
  23. static void netlink_receive_link(struct netlink_data *netlink,
  24. void (*cb)(void *ctx, struct ifinfomsg *ifi,
  25. u8 *buf, size_t len),
  26. struct nlmsghdr *h)
  27. {
  28. if (cb == NULL || NLMSG_PAYLOAD(h, 0) < sizeof(struct ifinfomsg))
  29. return;
  30. cb(netlink->cfg->ctx, NLMSG_DATA(h),
  31. NLMSG_DATA(h) + NLMSG_ALIGN(sizeof(struct ifinfomsg)),
  32. NLMSG_PAYLOAD(h, sizeof(struct ifinfomsg)));
  33. }
  34. static void netlink_receive(int sock, void *eloop_ctx, void *sock_ctx)
  35. {
  36. struct netlink_data *netlink = eloop_ctx;
  37. char buf[8192];
  38. int left;
  39. struct sockaddr_nl from;
  40. socklen_t fromlen;
  41. struct nlmsghdr *h;
  42. int max_events = 10;
  43. try_again:
  44. fromlen = sizeof(from);
  45. left = recvfrom(sock, buf, sizeof(buf), MSG_DONTWAIT,
  46. (struct sockaddr *) &from, &fromlen);
  47. if (left < 0) {
  48. if (errno != EINTR && errno != EAGAIN)
  49. wpa_printf(MSG_INFO, "netlink: recvfrom failed: %s",
  50. strerror(errno));
  51. return;
  52. }
  53. h = (struct nlmsghdr *) buf;
  54. while (NLMSG_OK(h, left)) {
  55. switch (h->nlmsg_type) {
  56. case RTM_NEWLINK:
  57. netlink_receive_link(netlink, netlink->cfg->newlink_cb,
  58. h);
  59. break;
  60. case RTM_DELLINK:
  61. netlink_receive_link(netlink, netlink->cfg->dellink_cb,
  62. h);
  63. break;
  64. }
  65. h = NLMSG_NEXT(h, left);
  66. }
  67. if (left > 0) {
  68. wpa_printf(MSG_DEBUG, "netlink: %d extra bytes in the end of "
  69. "netlink message", left);
  70. }
  71. if (--max_events > 0) {
  72. /*
  73. * Try to receive all events in one eloop call in order to
  74. * limit race condition on cases where AssocInfo event, Assoc
  75. * event, and EAPOL frames are received more or less at the
  76. * same time. We want to process the event messages first
  77. * before starting EAPOL processing.
  78. */
  79. goto try_again;
  80. }
  81. }
  82. struct netlink_data * netlink_init(struct netlink_config *cfg)
  83. {
  84. struct netlink_data *netlink;
  85. struct sockaddr_nl local;
  86. netlink = os_zalloc(sizeof(*netlink));
  87. if (netlink == NULL)
  88. return NULL;
  89. netlink->cfg = cfg;
  90. netlink->sock = socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
  91. if (netlink->sock < 0) {
  92. wpa_printf(MSG_ERROR, "netlink: Failed to open netlink "
  93. "socket: %s", strerror(errno));
  94. netlink_deinit(netlink);
  95. return NULL;
  96. }
  97. os_memset(&local, 0, sizeof(local));
  98. local.nl_family = AF_NETLINK;
  99. local.nl_groups = RTMGRP_LINK;
  100. if (bind(netlink->sock, (struct sockaddr *) &local, sizeof(local)) < 0)
  101. {
  102. wpa_printf(MSG_ERROR, "netlink: Failed to bind netlink "
  103. "socket: %s", strerror(errno));
  104. netlink_deinit(netlink);
  105. return NULL;
  106. }
  107. eloop_register_read_sock(netlink->sock, netlink_receive, netlink,
  108. NULL);
  109. return netlink;
  110. }
  111. void netlink_deinit(struct netlink_data *netlink)
  112. {
  113. if (netlink == NULL)
  114. return;
  115. if (netlink->sock >= 0) {
  116. eloop_unregister_read_sock(netlink->sock);
  117. close(netlink->sock);
  118. }
  119. os_free(netlink->cfg);
  120. os_free(netlink);
  121. }
  122. int netlink_send_oper_ifla(struct netlink_data *netlink, int ifindex,
  123. int linkmode, int operstate)
  124. {
  125. struct {
  126. struct nlmsghdr hdr;
  127. struct ifinfomsg ifinfo;
  128. char opts[16];
  129. } req;
  130. struct rtattr *rta;
  131. static int nl_seq;
  132. ssize_t ret;
  133. os_memset(&req, 0, sizeof(req));
  134. req.hdr.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
  135. req.hdr.nlmsg_type = RTM_SETLINK;
  136. req.hdr.nlmsg_flags = NLM_F_REQUEST;
  137. req.hdr.nlmsg_seq = ++nl_seq;
  138. req.hdr.nlmsg_pid = 0;
  139. req.ifinfo.ifi_family = AF_UNSPEC;
  140. req.ifinfo.ifi_type = 0;
  141. req.ifinfo.ifi_index = ifindex;
  142. req.ifinfo.ifi_flags = 0;
  143. req.ifinfo.ifi_change = 0;
  144. if (linkmode != -1) {
  145. rta = aliasing_hide_typecast(
  146. ((char *) &req + NLMSG_ALIGN(req.hdr.nlmsg_len)),
  147. struct rtattr);
  148. rta->rta_type = IFLA_LINKMODE;
  149. rta->rta_len = RTA_LENGTH(sizeof(char));
  150. *((char *) RTA_DATA(rta)) = linkmode;
  151. req.hdr.nlmsg_len = NLMSG_ALIGN(req.hdr.nlmsg_len) +
  152. RTA_LENGTH(sizeof(char));
  153. }
  154. if (operstate != -1) {
  155. rta = aliasing_hide_typecast(
  156. ((char *) &req + NLMSG_ALIGN(req.hdr.nlmsg_len)),
  157. struct rtattr);
  158. rta->rta_type = IFLA_OPERSTATE;
  159. rta->rta_len = RTA_LENGTH(sizeof(char));
  160. *((char *) RTA_DATA(rta)) = operstate;
  161. req.hdr.nlmsg_len = NLMSG_ALIGN(req.hdr.nlmsg_len) +
  162. RTA_LENGTH(sizeof(char));
  163. }
  164. wpa_printf(MSG_DEBUG, "netlink: Operstate: linkmode=%d, operstate=%d",
  165. linkmode, operstate);
  166. ret = send(netlink->sock, &req, req.hdr.nlmsg_len, 0);
  167. if (ret < 0) {
  168. wpa_printf(MSG_DEBUG, "netlink: Sending operstate IFLA "
  169. "failed: %s (assume operstate is not supported)",
  170. strerror(errno));
  171. }
  172. return ret < 0 ? -1 : 0;
  173. }