monitor.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Linux packet socket monitor
  3. * Copyright (c) 2010, 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 "utils/includes.h"
  15. #include <net/if.h>
  16. #include <netpacket/packet.h>
  17. #include "utils/common.h"
  18. #include "utils/eloop.h"
  19. #include "wlantest.h"
  20. static void monitor_read(int sock, void *eloop_ctx, void *sock_ctx)
  21. {
  22. struct wlantest *wt = eloop_ctx;
  23. u8 buf[3000];
  24. int len;
  25. len = recv(sock, buf, sizeof(buf), 0);
  26. if (len < 0) {
  27. wpa_printf(MSG_INFO, "recv(PACKET): %s", strerror(errno));
  28. return;
  29. }
  30. wlantest_process(wt, buf, len);
  31. }
  32. int monitor_init(struct wlantest *wt, const char *ifname)
  33. {
  34. struct sockaddr_ll ll;
  35. os_memset(&ll, 0, sizeof(ll));
  36. ll.sll_family = AF_PACKET;
  37. ll.sll_ifindex = if_nametoindex(ifname);
  38. if (ll.sll_ifindex == 0) {
  39. wpa_printf(MSG_ERROR, "Monitor interface '%s' does not exist",
  40. ifname);
  41. return -1;
  42. }
  43. wt->monitor_sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
  44. if (wt->monitor_sock < 0) {
  45. wpa_printf(MSG_ERROR, "socket(PF_PACKET,SOCK_RAW): %s",
  46. strerror(errno));
  47. return -1;
  48. }
  49. if (bind(wt->monitor_sock, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
  50. wpa_printf(MSG_ERROR, "bind(PACKET): %s", strerror(errno));
  51. close(wt->monitor_sock);
  52. wt->monitor_sock = -1;
  53. return -1;
  54. }
  55. if (eloop_register_read_sock(wt->monitor_sock, monitor_read, wt, NULL))
  56. {
  57. wpa_printf(MSG_ERROR, "Could not register monitor read "
  58. "socket");
  59. close(wt->monitor_sock);
  60. wt->monitor_sock = -1;
  61. return -1;
  62. }
  63. return 0;
  64. }
  65. void monitor_deinit(struct wlantest *wt)
  66. {
  67. if (wt->monitor_sock >= 0) {
  68. eloop_unregister_read_sock(wt->monitor_sock);
  69. close(wt->monitor_sock);
  70. wt->monitor_sock = -1;
  71. }
  72. }