event.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * mac80211 - events
  9. */
  10. #include <net/iw_handler.h>
  11. #include "ieee80211_i.h"
  12. /*
  13. * indicate a failed Michael MIC to userspace; the passed packet
  14. * (in the variable hdr) must be long enough to extract the TKIP
  15. * fields like TSC
  16. */
  17. void mac80211_ev_michael_mic_failure(struct ieee80211_sub_if_data *sdata, int keyidx,
  18. struct ieee80211_hdr *hdr)
  19. {
  20. union iwreq_data wrqu;
  21. char *buf = kmalloc(128, GFP_ATOMIC);
  22. DECLARE_MAC_BUF(mac);
  23. if (buf) {
  24. /* TODO: needed parameters: count, key type, TSC */
  25. sprintf(buf, "MLME-MICHAELMICFAILURE.indication("
  26. "keyid=%d %scast addr=%s)",
  27. keyidx, hdr->addr1[0] & 0x01 ? "broad" : "uni",
  28. print_mac(mac, hdr->addr2));
  29. memset(&wrqu, 0, sizeof(wrqu));
  30. wrqu.data.length = strlen(buf);
  31. wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf);
  32. kfree(buf);
  33. }
  34. /*
  35. * TODO: re-add support for sending MIC failure indication
  36. * with all info via nl80211
  37. */
  38. }