event.c 1.3 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. If the caller knows the TSC of
  14. * the frame that generated the MIC failure (i.e., if it was provided by the
  15. * driver or is still in the frame), it should provide that information.
  16. */
  17. void mac80211_ev_michael_mic_failure(struct ieee80211_sub_if_data *sdata, int keyidx,
  18. struct ieee80211_hdr *hdr, const u8 *tsc)
  19. {
  20. union iwreq_data wrqu;
  21. char *buf = kmalloc(128, GFP_ATOMIC);
  22. if (buf) {
  23. /* TODO: needed parameters: count, key type, TSC */
  24. sprintf(buf, "MLME-MICHAELMICFAILURE.indication("
  25. "keyid=%d %scast addr=%pM)",
  26. keyidx, hdr->addr1[0] & 0x01 ? "broad" : "uni",
  27. hdr->addr2);
  28. memset(&wrqu, 0, sizeof(wrqu));
  29. wrqu.data.length = strlen(buf);
  30. wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf);
  31. kfree(buf);
  32. }
  33. cfg80211_michael_mic_failure(sdata->dev, hdr->addr2,
  34. (hdr->addr1[0] & 0x01) ?
  35. NL80211_KEYTYPE_GROUP :
  36. NL80211_KEYTYPE_PAIRWISE,
  37. keyidx, tsc);
  38. }