blob: 8de60de70bc9bffa32a4fea6dc3b7641f139c563 [file] [log] [blame]
Johannes Bergeb063c12007-08-28 17:01:53 -04001/*
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
Johannes Bergeb063c12007-08-28 17:01:53 -040011#include <net/iw_handler.h>
12#include "ieee80211_i.h"
13
14/*
15 * indicate a failed Michael MIC to userspace; the passed packet
16 * (in the variable hdr) must be long enough to extract the TKIP
17 * fields like TSC
18 */
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120019void mac80211_ev_michael_mic_failure(struct ieee80211_sub_if_data *sdata, int keyidx,
Johannes Bergeb063c12007-08-28 17:01:53 -040020 struct ieee80211_hdr *hdr)
21{
22 union iwreq_data wrqu;
23 char *buf = kmalloc(128, GFP_ATOMIC);
Joe Perches0795af52007-10-03 17:59:30 -070024 DECLARE_MAC_BUF(mac);
Johannes Bergeb063c12007-08-28 17:01:53 -040025
26 if (buf) {
27 /* TODO: needed parameters: count, key type, TSC */
28 sprintf(buf, "MLME-MICHAELMICFAILURE.indication("
Joe Perches0795af52007-10-03 17:59:30 -070029 "keyid=%d %scast addr=%s)",
Johannes Bergeb063c12007-08-28 17:01:53 -040030 keyidx, hdr->addr1[0] & 0x01 ? "broad" : "uni",
Joe Perches0795af52007-10-03 17:59:30 -070031 print_mac(mac, hdr->addr2));
Johannes Bergeb063c12007-08-28 17:01:53 -040032 memset(&wrqu, 0, sizeof(wrqu));
33 wrqu.data.length = strlen(buf);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +120034 wireless_send_event(sdata->dev, IWEVCUSTOM, &wrqu, buf);
Johannes Bergeb063c12007-08-28 17:01:53 -040035 kfree(buf);
36 }
37
38 /*
39 * TODO: re-add support for sending MIC failure indication
40 * with all info via nl80211
41 */
42}