1
2
3
4
5
6
7
8
9
10
11#include <linux/netdevice.h>
12#include <net/iw_handler.h>
13#include "ieee80211_i.h"
14
15
16
17
18
19
20void mac80211_ev_michael_mic_failure(struct net_device *dev, int keyidx,
21 struct ieee80211_hdr *hdr)
22{
23 union iwreq_data wrqu;
24 char *buf = kmalloc(128, GFP_ATOMIC);
25 DECLARE_MAC_BUF(mac);
26
27 if (buf) {
28
29 sprintf(buf, "MLME-MICHAELMICFAILURE.indication("
30 "keyid=%d %scast addr=%s)",
31 keyidx, hdr->addr1[0] & 0x01 ? "broad" : "uni",
32 print_mac(mac, hdr->addr2));
33 memset(&wrqu, 0, sizeof(wrqu));
34 wrqu.data.length = strlen(buf);
35 wireless_send_event(dev, IWEVCUSTOM, &wrqu, buf);
36 kfree(buf);
37 }
38
39
40
41
42
43}
44