2008-06-06 15:55:42 +02:00
|
|
|
/*
|
2009-04-09 12:40:12 +02:00
|
|
|
* Driver interaction with Linux nl80211/cfg80211
|
2010-01-02 12:57:44 +01:00
|
|
|
* Copyright (c) 2002-2010, Jouni Malinen <j@w1.fi>
|
2009-04-09 19:20:21 +02:00
|
|
|
* Copyright (c) 2003-2004, Instant802 Networks, Inc.
|
|
|
|
* Copyright (c) 2005-2006, Devicescape Software, Inc.
|
|
|
|
* Copyright (c) 2007, Johannes Berg <johannes@sipsolutions.net>
|
2010-02-16 18:41:49 +01:00
|
|
|
* Copyright (c) 2009-2010, Atheros Communications
|
2008-06-06 15:55:42 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of BSD
|
|
|
|
* license.
|
|
|
|
*
|
|
|
|
* See README and COPYING for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
#include <sys/ioctl.h>
|
2010-11-26 20:46:30 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2009-04-16 15:36:03 +02:00
|
|
|
#include <net/if.h>
|
2008-06-06 15:55:42 +02:00
|
|
|
#include <netlink/genl/genl.h>
|
|
|
|
#include <netlink/genl/family.h>
|
|
|
|
#include <netlink/genl/ctrl.h>
|
2010-09-30 06:52:51 +02:00
|
|
|
#include <linux/rtnetlink.h>
|
2009-12-13 20:49:53 +01:00
|
|
|
#include <netpacket/packet.h>
|
|
|
|
#include <linux/filter.h>
|
2008-12-08 10:04:13 +01:00
|
|
|
#include "nl80211_copy.h"
|
2009-03-20 21:31:24 +01:00
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
#include "common.h"
|
2009-12-13 20:49:53 +01:00
|
|
|
#include "eloop.h"
|
2010-11-26 17:14:51 +01:00
|
|
|
#include "utils/list.h"
|
2009-12-13 20:49:53 +01:00
|
|
|
#include "common/ieee802_11_defs.h"
|
2011-10-20 20:51:32 +02:00
|
|
|
#include "common/ieee802_11_common.h"
|
2011-08-09 13:04:53 +02:00
|
|
|
#include "l2_packet/l2_packet.h"
|
2009-12-18 15:35:33 +01:00
|
|
|
#include "netlink.h"
|
2010-01-03 21:08:26 +01:00
|
|
|
#include "linux_ioctl.h"
|
2009-12-18 15:35:33 +01:00
|
|
|
#include "radiotap.h"
|
|
|
|
#include "radiotap_iter.h"
|
2010-05-23 09:27:32 +02:00
|
|
|
#include "rfkill.h"
|
2009-12-13 20:49:53 +01:00
|
|
|
#include "driver.h"
|
2009-04-02 20:59:14 +02:00
|
|
|
|
2009-04-09 12:40:12 +02:00
|
|
|
#ifdef CONFIG_LIBNL20
|
|
|
|
/* libnl 2.0 compatibility code */
|
2009-07-25 16:21:52 +02:00
|
|
|
#define nl_handle nl_sock
|
2010-10-10 16:47:15 +02:00
|
|
|
#define nl80211_handle_alloc nl_socket_alloc_cb
|
|
|
|
#define nl80211_handle_destroy nl_socket_free
|
|
|
|
#else
|
|
|
|
/*
|
|
|
|
* libnl 1.1 has a bug, it tries to allocate socket numbers densely
|
|
|
|
* but when you free a socket again it will mess up its bitmap and
|
|
|
|
* and use the wrong number the next time it needs a socket ID.
|
|
|
|
* Therefore, we wrap the handle alloc/destroy and add our own pid
|
|
|
|
* accounting.
|
|
|
|
*/
|
|
|
|
static uint32_t port_bitmap[32] = { 0 };
|
|
|
|
|
|
|
|
static struct nl_handle *nl80211_handle_alloc(void *cb)
|
|
|
|
{
|
|
|
|
struct nl_handle *handle;
|
|
|
|
uint32_t pid = getpid() & 0x3FFFFF;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
handle = nl_handle_alloc_cb(cb);
|
|
|
|
|
|
|
|
for (i = 0; i < 1024; i++) {
|
|
|
|
if (port_bitmap[i / 32] & (1 << (i % 32)))
|
|
|
|
continue;
|
|
|
|
port_bitmap[i / 32] |= 1 << (i % 32);
|
|
|
|
pid += i << 22;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
nl_socket_set_local_port(handle, pid);
|
|
|
|
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nl80211_handle_destroy(struct nl_handle *handle)
|
|
|
|
{
|
|
|
|
uint32_t port = nl_socket_get_local_port(handle);
|
|
|
|
|
|
|
|
port >>= 22;
|
|
|
|
port_bitmap[port / 32] &= ~(1 << (port % 32));
|
|
|
|
|
|
|
|
nl_handle_destroy(handle);
|
|
|
|
}
|
2011-10-20 20:08:26 +02:00
|
|
|
|
|
|
|
static inline int __genl_ctrl_alloc_cache(struct nl_handle *h,
|
|
|
|
struct nl_cache **cache)
|
|
|
|
{
|
|
|
|
struct nl_cache *tmp = genl_ctrl_alloc_cache(h);
|
|
|
|
if (!tmp)
|
|
|
|
return -ENOMEM;
|
|
|
|
*cache = tmp;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#define genl_ctrl_alloc_cache __genl_ctrl_alloc_cache
|
2009-04-09 12:40:12 +02:00
|
|
|
#endif /* CONFIG_LIBNL20 */
|
|
|
|
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
#ifndef IFF_LOWER_UP
|
|
|
|
#define IFF_LOWER_UP 0x10000 /* driver signals L1 up */
|
|
|
|
#endif
|
|
|
|
#ifndef IFF_DORMANT
|
|
|
|
#define IFF_DORMANT 0x20000 /* driver signals dormant */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef IF_OPER_DORMANT
|
|
|
|
#define IF_OPER_DORMANT 5
|
|
|
|
#endif
|
|
|
|
#ifndef IF_OPER_UP
|
|
|
|
#define IF_OPER_UP 6
|
|
|
|
#endif
|
|
|
|
|
2010-11-26 17:14:51 +01:00
|
|
|
struct nl80211_global {
|
|
|
|
struct dl_list interfaces;
|
2011-07-17 19:03:25 +02:00
|
|
|
int if_add_ifindex;
|
2010-11-26 17:14:51 +01:00
|
|
|
};
|
|
|
|
|
2009-04-09 12:40:12 +02:00
|
|
|
struct i802_bss {
|
2010-03-06 21:22:56 +01:00
|
|
|
struct wpa_driver_nl80211_data *drv;
|
2009-04-09 12:40:12 +02:00
|
|
|
struct i802_bss *next;
|
2009-04-09 22:44:39 +02:00
|
|
|
int ifindex;
|
2010-03-06 21:22:56 +01:00
|
|
|
char ifname[IFNAMSIZ + 1];
|
2011-03-15 12:02:49 +01:00
|
|
|
char brname[IFNAMSIZ];
|
2009-04-09 12:40:12 +02:00
|
|
|
unsigned int beacon_set:1;
|
2011-03-15 12:02:49 +01:00
|
|
|
unsigned int added_if_into_bridge:1;
|
|
|
|
unsigned int added_bridge:1;
|
2009-04-09 12:40:12 +02:00
|
|
|
};
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
struct wpa_driver_nl80211_data {
|
2010-11-26 17:14:51 +01:00
|
|
|
struct nl80211_global *global;
|
|
|
|
struct dl_list list;
|
|
|
|
u8 addr[ETH_ALEN];
|
2010-11-26 20:46:30 +01:00
|
|
|
char phyname[32];
|
2008-06-06 15:55:42 +02:00
|
|
|
void *ctx;
|
2009-12-18 16:11:54 +01:00
|
|
|
struct netlink_data *netlink;
|
2009-04-09 12:40:12 +02:00
|
|
|
int ioctl_sock; /* socket for ioctl() use */
|
2008-06-06 15:55:42 +02:00
|
|
|
int ifindex;
|
2008-08-15 16:55:16 +02:00
|
|
|
int if_removed;
|
2010-05-31 17:00:27 +02:00
|
|
|
int if_disabled;
|
2011-07-17 12:56:34 +02:00
|
|
|
int ignore_if_down_event;
|
2010-05-23 09:27:32 +02:00
|
|
|
struct rfkill_data *rfkill;
|
2009-03-20 21:26:41 +01:00
|
|
|
struct wpa_driver_capa capa;
|
|
|
|
int has_capability;
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
int operstate;
|
|
|
|
|
|
|
|
int scan_complete_events;
|
|
|
|
|
|
|
|
struct nl_handle *nl_handle;
|
2009-08-26 11:10:50 +02:00
|
|
|
struct nl_handle *nl_handle_event;
|
2010-10-10 17:10:37 +02:00
|
|
|
struct nl_handle *nl_handle_preq;
|
2008-06-06 15:55:42 +02:00
|
|
|
struct nl_cache *nl_cache;
|
2009-08-26 11:10:50 +02:00
|
|
|
struct nl_cache *nl_cache_event;
|
2010-10-10 17:10:37 +02:00
|
|
|
struct nl_cache *nl_cache_preq;
|
2008-06-06 15:55:42 +02:00
|
|
|
struct nl_cb *nl_cb;
|
|
|
|
struct genl_family *nl80211;
|
2008-08-15 21:14:49 +02:00
|
|
|
|
2009-12-02 15:45:31 +01:00
|
|
|
u8 auth_bssid[ETH_ALEN];
|
2009-03-20 21:26:41 +01:00
|
|
|
u8 bssid[ETH_ALEN];
|
|
|
|
int associated;
|
2009-03-20 22:03:18 +01:00
|
|
|
u8 ssid[32];
|
|
|
|
size_t ssid_len;
|
2011-07-17 19:22:11 +02:00
|
|
|
enum nl80211_iftype nlmode;
|
|
|
|
enum nl80211_iftype ap_scan_as_station;
|
2009-12-28 12:23:13 +01:00
|
|
|
unsigned int assoc_freq;
|
2009-04-02 15:09:48 +02:00
|
|
|
|
2009-04-02 20:59:14 +02:00
|
|
|
int monitor_sock;
|
|
|
|
int monitor_ifidx;
|
2011-06-28 20:59:44 +02:00
|
|
|
int no_monitor_iface_capab;
|
2010-01-16 11:11:19 +01:00
|
|
|
int disable_11b_rates;
|
2009-04-14 14:35:03 +02:00
|
|
|
|
2010-01-03 12:57:51 +01:00
|
|
|
unsigned int pending_remain_on_chan:1;
|
|
|
|
|
|
|
|
u64 remain_on_chan_cookie;
|
2010-02-16 18:41:49 +01:00
|
|
|
u64 send_action_cookie;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2010-10-10 17:10:37 +02:00
|
|
|
unsigned int last_mgmt_freq;
|
2011-08-29 13:26:55 +02:00
|
|
|
unsigned int ap_oper_freq;
|
2010-10-10 17:10:37 +02:00
|
|
|
|
2010-03-05 20:42:06 +01:00
|
|
|
struct wpa_driver_scan_filter *filter_ssids;
|
|
|
|
size_t num_filter_ssids;
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss first_bss;
|
|
|
|
|
2011-08-09 13:04:53 +02:00
|
|
|
#ifdef CONFIG_AP
|
|
|
|
struct l2_packet_data *l2;
|
|
|
|
#endif /* CONFIG_AP */
|
|
|
|
|
2009-04-09 12:40:12 +02:00
|
|
|
#ifdef HOSTAPD
|
|
|
|
int eapol_sock; /* socket for EAPOL frames */
|
|
|
|
|
|
|
|
int default_if_indices[16];
|
|
|
|
int *if_indices;
|
|
|
|
int num_if_indices;
|
|
|
|
|
|
|
|
int last_freq;
|
|
|
|
int last_freq_ht;
|
|
|
|
#endif /* HOSTAPD */
|
2008-06-06 15:55:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void wpa_driver_nl80211_scan_timeout(void *eloop_ctx,
|
|
|
|
void *timeout_ctx);
|
2011-07-17 19:22:11 +02:00
|
|
|
static int wpa_driver_nl80211_set_mode(struct i802_bss *bss,
|
|
|
|
enum nl80211_iftype nlmode);
|
2009-02-14 15:43:43 +01:00
|
|
|
static int
|
2008-08-15 16:55:16 +02:00
|
|
|
wpa_driver_nl80211_finish_drv_init(struct wpa_driver_nl80211_data *drv);
|
2009-12-02 16:54:57 +01:00
|
|
|
static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv,
|
2010-04-08 10:31:37 +02:00
|
|
|
const u8 *addr, int cmd, u16 reason_code,
|
|
|
|
int local_state_change);
|
2009-04-17 15:27:38 +02:00
|
|
|
static void nl80211_remove_monitor_interface(
|
|
|
|
struct wpa_driver_nl80211_data *drv);
|
2010-10-10 17:10:37 +02:00
|
|
|
static int nl80211_send_frame_cmd(struct wpa_driver_nl80211_data *drv,
|
2010-12-29 13:05:34 +01:00
|
|
|
unsigned int freq, unsigned int wait,
|
|
|
|
const u8 *buf, size_t buf_len, u64 *cookie);
|
2010-10-10 17:10:37 +02:00
|
|
|
static int wpa_driver_nl80211_probe_req_report(void *priv, int report);
|
2009-04-02 20:59:14 +02:00
|
|
|
|
2009-04-09 19:20:21 +02:00
|
|
|
#ifdef HOSTAPD
|
2009-04-09 19:41:21 +02:00
|
|
|
static void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx);
|
|
|
|
static void del_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx);
|
2010-04-15 23:36:33 +02:00
|
|
|
static int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx);
|
2009-12-24 10:46:22 +01:00
|
|
|
static int wpa_driver_nl80211_if_remove(void *priv,
|
|
|
|
enum wpa_driver_if_type type,
|
|
|
|
const char *ifname);
|
2010-04-16 13:13:27 +02:00
|
|
|
#else /* HOSTAPD */
|
|
|
|
static int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2009-04-09 19:20:21 +02:00
|
|
|
#endif /* HOSTAPD */
|
|
|
|
|
2010-04-11 19:36:16 +02:00
|
|
|
static int i802_set_freq(void *priv, struct hostapd_freq_params *freq);
|
2010-01-16 11:11:19 +01:00
|
|
|
static int nl80211_disable_11b_rates(struct wpa_driver_nl80211_data *drv,
|
|
|
|
int ifindex, int disabled);
|
2010-01-03 12:30:22 +01:00
|
|
|
|
2011-03-23 20:15:22 +01:00
|
|
|
static int nl80211_leave_ibss(struct wpa_driver_nl80211_data *drv);
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2011-07-17 19:22:11 +02:00
|
|
|
static int is_ap_interface(enum nl80211_iftype nlmode)
|
|
|
|
{
|
|
|
|
return (nlmode == NL80211_IFTYPE_AP ||
|
|
|
|
nlmode == NL80211_IFTYPE_P2P_GO);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int is_sta_interface(enum nl80211_iftype nlmode)
|
|
|
|
{
|
|
|
|
return (nlmode == NL80211_IFTYPE_STATION ||
|
|
|
|
nlmode == NL80211_IFTYPE_P2P_CLIENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-16 17:35:42 +02:00
|
|
|
struct nl80211_bss_info_arg {
|
|
|
|
struct wpa_driver_nl80211_data *drv;
|
|
|
|
struct wpa_scan_results *res;
|
|
|
|
unsigned int assoc_freq;
|
2011-09-18 20:26:55 +02:00
|
|
|
u8 assoc_bssid[ETH_ALEN];
|
2011-05-16 17:35:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static int bss_info_handler(struct nl_msg *msg, void *arg);
|
|
|
|
|
|
|
|
|
2008-09-30 15:46:22 +02:00
|
|
|
/* nl80211 code */
|
|
|
|
static int ack_handler(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
int *err = arg;
|
|
|
|
*err = 0;
|
|
|
|
return NL_STOP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int finish_handler(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
2008-10-29 18:28:35 +01:00
|
|
|
int *ret = arg;
|
|
|
|
*ret = 0;
|
2008-09-30 15:46:22 +02:00
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int error_handler(struct sockaddr_nl *nla, struct nlmsgerr *err,
|
|
|
|
void *arg)
|
|
|
|
{
|
|
|
|
int *ret = arg;
|
|
|
|
*ret = err->error;
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
2009-04-09 16:10:22 +02:00
|
|
|
|
|
|
|
static int no_seq_check(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
return NL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-16 18:41:49 +01:00
|
|
|
static int send_and_recv(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nl_handle *nl_handle, struct nl_msg *msg,
|
|
|
|
int (*valid_handler)(struct nl_msg *, void *),
|
|
|
|
void *valid_data)
|
2008-09-30 15:46:22 +02:00
|
|
|
{
|
|
|
|
struct nl_cb *cb;
|
|
|
|
int err = -ENOMEM;
|
|
|
|
|
|
|
|
cb = nl_cb_clone(drv->nl_cb);
|
|
|
|
if (!cb)
|
|
|
|
goto out;
|
|
|
|
|
2010-02-16 18:41:49 +01:00
|
|
|
err = nl_send_auto_complete(nl_handle, msg);
|
2008-09-30 15:46:22 +02:00
|
|
|
if (err < 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
err = 1;
|
|
|
|
|
|
|
|
nl_cb_err(cb, NL_CB_CUSTOM, error_handler, &err);
|
2008-10-29 18:28:35 +01:00
|
|
|
nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, finish_handler, &err);
|
2008-09-30 15:46:22 +02:00
|
|
|
nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, ack_handler, &err);
|
|
|
|
|
|
|
|
if (valid_handler)
|
|
|
|
nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM,
|
|
|
|
valid_handler, valid_data);
|
|
|
|
|
|
|
|
while (err > 0)
|
2010-02-16 18:41:49 +01:00
|
|
|
nl_recvmsgs(nl_handle, cb);
|
2008-09-30 15:46:22 +02:00
|
|
|
out:
|
|
|
|
nl_cb_put(cb);
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-16 18:41:49 +01:00
|
|
|
static int send_and_recv_msgs(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nl_msg *msg,
|
|
|
|
int (*valid_handler)(struct nl_msg *, void *),
|
|
|
|
void *valid_data)
|
|
|
|
{
|
|
|
|
return send_and_recv(drv, drv->nl_handle, msg, valid_handler,
|
|
|
|
valid_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-12 19:11:43 +01:00
|
|
|
struct family_data {
|
|
|
|
const char *group;
|
|
|
|
int id;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int family_handler(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
struct family_data *res = arg;
|
|
|
|
struct nlattr *tb[CTRL_ATTR_MAX + 1];
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
struct nlattr *mcgrp;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
nla_parse(tb, CTRL_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
if (!tb[CTRL_ATTR_MCAST_GROUPS])
|
|
|
|
return NL_SKIP;
|
|
|
|
|
|
|
|
nla_for_each_nested(mcgrp, tb[CTRL_ATTR_MCAST_GROUPS], i) {
|
|
|
|
struct nlattr *tb2[CTRL_ATTR_MCAST_GRP_MAX + 1];
|
|
|
|
nla_parse(tb2, CTRL_ATTR_MCAST_GRP_MAX, nla_data(mcgrp),
|
|
|
|
nla_len(mcgrp), NULL);
|
|
|
|
if (!tb2[CTRL_ATTR_MCAST_GRP_NAME] ||
|
|
|
|
!tb2[CTRL_ATTR_MCAST_GRP_ID] ||
|
|
|
|
os_strncmp(nla_data(tb2[CTRL_ATTR_MCAST_GRP_NAME]),
|
|
|
|
res->group,
|
|
|
|
nla_len(tb2[CTRL_ATTR_MCAST_GRP_NAME])) != 0)
|
|
|
|
continue;
|
|
|
|
res->id = nla_get_u32(tb2[CTRL_ATTR_MCAST_GRP_ID]);
|
|
|
|
break;
|
|
|
|
};
|
|
|
|
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl_get_multicast_id(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const char *family, const char *group)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret = -1;
|
|
|
|
struct family_data res = { group, -ENOENT };
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
genlmsg_put(msg, 0, 0, genl_ctrl_resolve(drv->nl_handle, "nlctrl"),
|
|
|
|
0, 0, CTRL_CMD_GETFAMILY, 0);
|
|
|
|
NLA_PUT_STRING(msg, CTRL_ATTR_FAMILY_NAME, family);
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, family_handler, &res);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret == 0)
|
|
|
|
ret = res.id;
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
static int wpa_driver_nl80211_get_bssid(void *priv, u8 *bssid)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-03-20 21:26:41 +01:00
|
|
|
if (!drv->associated)
|
|
|
|
return -1;
|
|
|
|
os_memcpy(bssid, drv->bssid, ETH_ALEN);
|
|
|
|
return 0;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_get_ssid(void *priv, u8 *ssid)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-03-20 22:03:18 +01:00
|
|
|
if (!drv->associated)
|
|
|
|
return -1;
|
|
|
|
os_memcpy(ssid, drv->ssid, drv->ssid_len);
|
|
|
|
return drv->ssid_len;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-15 16:55:16 +02:00
|
|
|
static void wpa_driver_nl80211_event_link(struct wpa_driver_nl80211_data *drv,
|
2009-12-18 16:11:54 +01:00
|
|
|
char *buf, size_t len, int del)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
|
|
|
union wpa_event_data event;
|
|
|
|
|
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
if (len > sizeof(event.interface_status.ifname))
|
|
|
|
len = sizeof(event.interface_status.ifname) - 1;
|
|
|
|
os_memcpy(event.interface_status.ifname, buf, len);
|
|
|
|
event.interface_status.ievent = del ? EVENT_INTERFACE_REMOVED :
|
|
|
|
EVENT_INTERFACE_ADDED;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "RTM_%sLINK, IFLA_IFNAME: Interface '%s' %s",
|
|
|
|
del ? "DEL" : "NEW",
|
|
|
|
event.interface_status.ifname,
|
|
|
|
del ? "removed" : "added");
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
if (os_strcmp(drv->first_bss.ifname, event.interface_status.ifname) == 0) {
|
2008-08-15 16:55:16 +02:00
|
|
|
if (del)
|
|
|
|
drv->if_removed = 1;
|
|
|
|
else
|
|
|
|
drv->if_removed = 0;
|
|
|
|
}
|
|
|
|
|
2009-12-18 16:11:54 +01:00
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_STATUS, &event);
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-15 16:55:16 +02:00
|
|
|
static int wpa_driver_nl80211_own_ifname(struct wpa_driver_nl80211_data *drv,
|
2009-12-18 16:49:07 +01:00
|
|
|
u8 *buf, size_t len)
|
2008-08-15 16:55:16 +02:00
|
|
|
{
|
2009-12-18 16:49:07 +01:00
|
|
|
int attrlen, rta_len;
|
2008-08-15 16:55:16 +02:00
|
|
|
struct rtattr *attr;
|
|
|
|
|
2009-12-18 16:49:07 +01:00
|
|
|
attrlen = len;
|
|
|
|
attr = (struct rtattr *) buf;
|
2008-08-15 16:55:16 +02:00
|
|
|
|
|
|
|
rta_len = RTA_ALIGN(sizeof(struct rtattr));
|
|
|
|
while (RTA_OK(attr, attrlen)) {
|
|
|
|
if (attr->rta_type == IFLA_IFNAME) {
|
2010-03-06 21:22:56 +01:00
|
|
|
if (os_strcmp(((char *) attr) + rta_len, drv->first_bss.ifname)
|
2008-08-15 16:55:16 +02:00
|
|
|
== 0)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
attr = RTA_NEXT(attr, attrlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_own_ifindex(struct wpa_driver_nl80211_data *drv,
|
2009-12-18 16:49:07 +01:00
|
|
|
int ifindex, u8 *buf, size_t len)
|
2008-08-15 16:55:16 +02:00
|
|
|
{
|
|
|
|
if (drv->ifindex == ifindex)
|
|
|
|
return 1;
|
|
|
|
|
2009-12-18 16:49:07 +01:00
|
|
|
if (drv->if_removed && wpa_driver_nl80211_own_ifname(drv, buf, len)) {
|
2010-03-06 21:22:56 +01:00
|
|
|
drv->first_bss.ifindex = if_nametoindex(drv->first_bss.ifname);
|
2008-08-15 16:55:16 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Update ifindex for a removed "
|
|
|
|
"interface");
|
|
|
|
wpa_driver_nl80211_finish_drv_init(drv);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-18 16:49:07 +01:00
|
|
|
static void wpa_driver_nl80211_event_rtm_newlink(void *ctx,
|
|
|
|
struct ifinfomsg *ifi,
|
|
|
|
u8 *buf, size_t len)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2009-12-18 16:11:54 +01:00
|
|
|
struct wpa_driver_nl80211_data *drv = ctx;
|
2009-12-18 16:49:07 +01:00
|
|
|
int attrlen, rta_len;
|
|
|
|
struct rtattr *attr;
|
2010-04-15 23:36:33 +02:00
|
|
|
u32 brid = 0;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2010-04-15 23:36:33 +02:00
|
|
|
if (!wpa_driver_nl80211_own_ifindex(drv, ifi->ifi_index, buf, len) &&
|
|
|
|
!have_ifidx(drv, ifi->ifi_index)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Ignore event for foreign "
|
|
|
|
"ifindex %d", ifi->ifi_index);
|
2008-06-06 15:55:42 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "RTM_NEWLINK: operstate=%d ifi_flags=0x%x "
|
|
|
|
"(%s%s%s%s)",
|
|
|
|
drv->operstate, ifi->ifi_flags,
|
|
|
|
(ifi->ifi_flags & IFF_UP) ? "[UP]" : "",
|
|
|
|
(ifi->ifi_flags & IFF_RUNNING) ? "[RUNNING]" : "",
|
|
|
|
(ifi->ifi_flags & IFF_LOWER_UP) ? "[LOWER_UP]" : "",
|
|
|
|
(ifi->ifi_flags & IFF_DORMANT) ? "[DORMANT]" : "");
|
2010-05-31 17:00:27 +02:00
|
|
|
|
|
|
|
if (!drv->if_disabled && !(ifi->ifi_flags & IFF_UP)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Interface down");
|
2011-07-17 12:56:34 +02:00
|
|
|
if (drv->ignore_if_down_event) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Ignore interface down "
|
|
|
|
"event generated by mode change");
|
|
|
|
drv->ignore_if_down_event = 0;
|
|
|
|
} else {
|
|
|
|
drv->if_disabled = 1;
|
|
|
|
wpa_supplicant_event(drv->ctx,
|
|
|
|
EVENT_INTERFACE_DISABLED, NULL);
|
|
|
|
}
|
2010-05-31 17:00:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (drv->if_disabled && (ifi->ifi_flags & IFF_UP)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Interface up");
|
|
|
|
drv->if_disabled = 0;
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_ENABLED, NULL);
|
|
|
|
}
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
/*
|
|
|
|
* Some drivers send the association event before the operup event--in
|
|
|
|
* this case, lifting operstate in wpa_driver_nl80211_set_operstate()
|
|
|
|
* fails. This will hit us when wpa_supplicant does not need to do
|
|
|
|
* IEEE 802.1X authentication
|
|
|
|
*/
|
|
|
|
if (drv->operstate == 1 &&
|
|
|
|
(ifi->ifi_flags & (IFF_LOWER_UP | IFF_DORMANT)) == IFF_LOWER_UP &&
|
|
|
|
!(ifi->ifi_flags & IFF_RUNNING))
|
2009-12-18 16:11:54 +01:00
|
|
|
netlink_send_oper_ifla(drv->netlink, drv->ifindex,
|
2009-12-18 15:35:33 +01:00
|
|
|
-1, IF_OPER_UP);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-12-18 16:49:07 +01:00
|
|
|
attrlen = len;
|
|
|
|
attr = (struct rtattr *) buf;
|
2008-06-06 15:55:42 +02:00
|
|
|
rta_len = RTA_ALIGN(sizeof(struct rtattr));
|
|
|
|
while (RTA_OK(attr, attrlen)) {
|
2009-03-31 13:14:16 +02:00
|
|
|
if (attr->rta_type == IFLA_IFNAME) {
|
2008-08-15 16:55:16 +02:00
|
|
|
wpa_driver_nl80211_event_link(
|
2009-12-18 16:11:54 +01:00
|
|
|
drv,
|
2008-08-15 16:55:16 +02:00
|
|
|
((char *) attr) + rta_len,
|
|
|
|
attr->rta_len - rta_len, 0);
|
2010-04-15 23:36:33 +02:00
|
|
|
} else if (attr->rta_type == IFLA_MASTER)
|
|
|
|
brid = nla_get_u32((struct nlattr *) attr);
|
2008-06-06 15:55:42 +02:00
|
|
|
attr = RTA_NEXT(attr, attrlen);
|
|
|
|
}
|
2010-04-15 23:36:33 +02:00
|
|
|
|
2010-04-16 13:13:27 +02:00
|
|
|
#ifdef HOSTAPD
|
2010-04-15 23:36:33 +02:00
|
|
|
if (ifi->ifi_family == AF_BRIDGE && brid) {
|
|
|
|
/* device has been added to bridge */
|
|
|
|
char namebuf[IFNAMSIZ];
|
|
|
|
if_indextoname(brid, namebuf);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Add ifindex %u for bridge %s",
|
|
|
|
brid, namebuf);
|
|
|
|
add_ifidx(drv, brid);
|
|
|
|
}
|
2010-04-16 13:13:27 +02:00
|
|
|
#endif /* HOSTAPD */
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-18 16:49:07 +01:00
|
|
|
static void wpa_driver_nl80211_event_rtm_dellink(void *ctx,
|
|
|
|
struct ifinfomsg *ifi,
|
|
|
|
u8 *buf, size_t len)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2009-12-18 16:11:54 +01:00
|
|
|
struct wpa_driver_nl80211_data *drv = ctx;
|
2009-12-18 16:49:07 +01:00
|
|
|
int attrlen, rta_len;
|
|
|
|
struct rtattr *attr;
|
2010-04-15 23:36:33 +02:00
|
|
|
u32 brid = 0;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-12-18 16:49:07 +01:00
|
|
|
attrlen = len;
|
|
|
|
attr = (struct rtattr *) buf;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
rta_len = RTA_ALIGN(sizeof(struct rtattr));
|
|
|
|
while (RTA_OK(attr, attrlen)) {
|
|
|
|
if (attr->rta_type == IFLA_IFNAME) {
|
2008-08-15 16:55:16 +02:00
|
|
|
wpa_driver_nl80211_event_link(
|
2009-12-18 16:11:54 +01:00
|
|
|
drv,
|
2008-08-15 16:55:16 +02:00
|
|
|
((char *) attr) + rta_len,
|
|
|
|
attr->rta_len - rta_len, 1);
|
2010-04-15 23:36:33 +02:00
|
|
|
} else if (attr->rta_type == IFLA_MASTER)
|
|
|
|
brid = nla_get_u32((struct nlattr *) attr);
|
2008-06-06 15:55:42 +02:00
|
|
|
attr = RTA_NEXT(attr, attrlen);
|
|
|
|
}
|
2010-04-15 23:36:33 +02:00
|
|
|
|
2010-04-16 13:13:27 +02:00
|
|
|
#ifdef HOSTAPD
|
2010-04-15 23:36:33 +02:00
|
|
|
if (ifi->ifi_family == AF_BRIDGE && brid) {
|
|
|
|
/* device has been removed from bridge */
|
|
|
|
char namebuf[IFNAMSIZ];
|
|
|
|
if_indextoname(brid, namebuf);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Remove ifindex %u for bridge "
|
|
|
|
"%s", brid, namebuf);
|
|
|
|
del_ifidx(drv, brid);
|
|
|
|
}
|
2010-04-16 13:13:27 +02:00
|
|
|
#endif /* HOSTAPD */
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
static void mlme_event_auth(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const u8 *frame, size_t len)
|
|
|
|
{
|
|
|
|
const struct ieee80211_mgmt *mgmt;
|
|
|
|
union wpa_event_data event;
|
|
|
|
|
|
|
|
mgmt = (const struct ieee80211_mgmt *) frame;
|
|
|
|
if (len < 24 + sizeof(mgmt->u.auth)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
|
|
|
|
"frame");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-02 15:45:31 +01:00
|
|
|
os_memcpy(drv->auth_bssid, mgmt->sa, ETH_ALEN);
|
2009-03-20 21:26:41 +01:00
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
os_memcpy(event.auth.peer, mgmt->sa, ETH_ALEN);
|
|
|
|
event.auth.auth_type = le_to_host16(mgmt->u.auth.auth_alg);
|
|
|
|
event.auth.status_code = le_to_host16(mgmt->u.auth.status_code);
|
|
|
|
if (len > 24 + sizeof(mgmt->u.auth)) {
|
|
|
|
event.auth.ies = mgmt->u.auth.variable;
|
|
|
|
event.auth.ies_len = len - 24 - sizeof(mgmt->u.auth);
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_AUTH, &event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-16 17:35:42 +02:00
|
|
|
static unsigned int nl80211_get_assoc_freq(struct wpa_driver_nl80211_data *drv)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret;
|
|
|
|
struct nl80211_bss_info_arg arg;
|
|
|
|
|
|
|
|
os_memset(&arg, 0, sizeof(arg));
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, NLM_F_DUMP,
|
|
|
|
NL80211_CMD_GET_SCAN, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
|
|
|
arg.drv = drv;
|
|
|
|
ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Operating frequency for the "
|
|
|
|
"associated BSS from scan results: %u MHz",
|
|
|
|
arg.assoc_freq);
|
|
|
|
return arg.assoc_freq ? arg.assoc_freq : drv->assoc_freq;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return drv->assoc_freq;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
static void mlme_event_assoc(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const u8 *frame, size_t len)
|
|
|
|
{
|
|
|
|
const struct ieee80211_mgmt *mgmt;
|
|
|
|
union wpa_event_data event;
|
|
|
|
u16 status;
|
|
|
|
|
|
|
|
mgmt = (const struct ieee80211_mgmt *) frame;
|
|
|
|
if (len < 24 + sizeof(mgmt->u.assoc_resp)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
|
|
|
|
"frame");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = le_to_host16(mgmt->u.assoc_resp.status_code);
|
|
|
|
if (status != WLAN_STATUS_SUCCESS) {
|
2009-04-01 16:10:36 +02:00
|
|
|
os_memset(&event, 0, sizeof(event));
|
2010-10-27 19:27:39 +02:00
|
|
|
event.assoc_reject.bssid = mgmt->bssid;
|
2009-04-01 16:10:36 +02:00
|
|
|
if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
|
|
|
|
event.assoc_reject.resp_ies =
|
|
|
|
(u8 *) mgmt->u.assoc_resp.variable;
|
|
|
|
event.assoc_reject.resp_ies_len =
|
|
|
|
len - 24 - sizeof(mgmt->u.assoc_resp);
|
|
|
|
}
|
|
|
|
event.assoc_reject.status_code = status;
|
|
|
|
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
|
2009-03-20 21:26:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
drv->associated = 1;
|
|
|
|
os_memcpy(drv->bssid, mgmt->sa, ETH_ALEN);
|
|
|
|
|
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
|
|
|
|
event.assoc_info.resp_ies = (u8 *) mgmt->u.assoc_resp.variable;
|
|
|
|
event.assoc_info.resp_ies_len =
|
2009-04-01 16:10:36 +02:00
|
|
|
len - 24 - sizeof(mgmt->u.assoc_resp);
|
2009-03-20 21:26:41 +01:00
|
|
|
}
|
|
|
|
|
2009-12-28 12:23:13 +01:00
|
|
|
event.assoc_info.freq = drv->assoc_freq;
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
|
|
|
|
}
|
|
|
|
|
2009-11-23 14:40:29 +01:00
|
|
|
|
2009-09-03 19:39:59 +02:00
|
|
|
static void mlme_event_connect(struct wpa_driver_nl80211_data *drv,
|
|
|
|
enum nl80211_commands cmd, struct nlattr *status,
|
|
|
|
struct nlattr *addr, struct nlattr *req_ie,
|
|
|
|
struct nlattr *resp_ie)
|
|
|
|
{
|
|
|
|
union wpa_event_data event;
|
|
|
|
|
2009-09-04 15:39:41 +02:00
|
|
|
if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
|
|
|
|
/*
|
|
|
|
* Avoid reporting two association events that would confuse
|
|
|
|
* the core code.
|
|
|
|
*/
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Ignore connect event (cmd=%d) "
|
|
|
|
"when using userspace SME", cmd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-03 19:39:59 +02:00
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
if (cmd == NL80211_CMD_CONNECT &&
|
|
|
|
nla_get_u16(status) != WLAN_STATUS_SUCCESS) {
|
2010-11-26 16:40:10 +01:00
|
|
|
if (addr)
|
|
|
|
event.assoc_reject.bssid = nla_data(addr);
|
2009-09-03 19:39:59 +02:00
|
|
|
if (resp_ie) {
|
|
|
|
event.assoc_reject.resp_ies = nla_data(resp_ie);
|
|
|
|
event.assoc_reject.resp_ies_len = nla_len(resp_ie);
|
|
|
|
}
|
|
|
|
event.assoc_reject.status_code = nla_get_u16(status);
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
drv->associated = 1;
|
|
|
|
if (addr)
|
|
|
|
os_memcpy(drv->bssid, nla_data(addr), ETH_ALEN);
|
|
|
|
|
|
|
|
if (req_ie) {
|
|
|
|
event.assoc_info.req_ies = nla_data(req_ie);
|
|
|
|
event.assoc_info.req_ies_len = nla_len(req_ie);
|
|
|
|
}
|
|
|
|
if (resp_ie) {
|
|
|
|
event.assoc_info.resp_ies = nla_data(resp_ie);
|
|
|
|
event.assoc_info.resp_ies_len = nla_len(resp_ie);
|
|
|
|
}
|
|
|
|
|
2011-05-16 17:35:42 +02:00
|
|
|
event.assoc_info.freq = nl80211_get_assoc_freq(drv);
|
|
|
|
|
2009-09-03 19:39:59 +02:00
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
|
|
|
|
}
|
2009-03-20 21:26:41 +01:00
|
|
|
|
2009-11-23 14:40:29 +01:00
|
|
|
|
2011-09-18 20:26:55 +02:00
|
|
|
static void mlme_event_disconnect(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlattr *reason, struct nlattr *addr)
|
|
|
|
{
|
|
|
|
union wpa_event_data data;
|
|
|
|
|
|
|
|
if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
|
|
|
|
/*
|
|
|
|
* Avoid reporting two disassociation events that could
|
|
|
|
* confuse the core code.
|
|
|
|
*/
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Ignore disconnect "
|
|
|
|
"event when using userspace SME");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
drv->associated = 0;
|
|
|
|
os_memset(&data, 0, sizeof(data));
|
|
|
|
if (reason)
|
|
|
|
data.disassoc_info.reason_code = nla_get_u16(reason);
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_DISASSOC, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-23 23:08:24 +02:00
|
|
|
static void mlme_timeout_event(struct wpa_driver_nl80211_data *drv,
|
|
|
|
enum nl80211_commands cmd, struct nlattr *addr)
|
|
|
|
{
|
|
|
|
union wpa_event_data event;
|
|
|
|
enum wpa_event_type ev;
|
|
|
|
|
|
|
|
if (nla_len(addr) != ETH_ALEN)
|
|
|
|
return;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: MLME event %d; timeout with " MACSTR,
|
|
|
|
cmd, MAC2STR((u8 *) nla_data(addr)));
|
|
|
|
|
|
|
|
if (cmd == NL80211_CMD_AUTHENTICATE)
|
|
|
|
ev = EVENT_AUTH_TIMED_OUT;
|
|
|
|
else if (cmd == NL80211_CMD_ASSOCIATE)
|
|
|
|
ev = EVENT_ASSOC_TIMED_OUT;
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
os_memcpy(event.timeout_event.addr, nla_data(addr), ETH_ALEN);
|
|
|
|
wpa_supplicant_event(drv->ctx, ev, &event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-10 17:10:37 +02:00
|
|
|
static void mlme_event_mgmt(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlattr *freq, const u8 *frame, size_t len)
|
2010-02-16 18:41:49 +01:00
|
|
|
{
|
|
|
|
const struct ieee80211_mgmt *mgmt;
|
|
|
|
union wpa_event_data event;
|
|
|
|
u16 fc, stype;
|
|
|
|
|
|
|
|
mgmt = (const struct ieee80211_mgmt *) frame;
|
|
|
|
if (len < 24) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Too short action frame");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fc = le_to_host16(mgmt->frame_control);
|
|
|
|
stype = WLAN_FC_GET_STYPE(fc);
|
|
|
|
|
|
|
|
os_memset(&event, 0, sizeof(event));
|
2010-10-10 17:10:37 +02:00
|
|
|
if (freq) {
|
2010-02-16 18:41:49 +01:00
|
|
|
event.rx_action.freq = nla_get_u32(freq);
|
2010-10-10 17:10:37 +02:00
|
|
|
drv->last_mgmt_freq = event.rx_action.freq;
|
|
|
|
}
|
|
|
|
if (stype == WLAN_FC_STYPE_ACTION) {
|
|
|
|
event.rx_action.da = mgmt->da;
|
|
|
|
event.rx_action.sa = mgmt->sa;
|
|
|
|
event.rx_action.bssid = mgmt->bssid;
|
|
|
|
event.rx_action.category = mgmt->u.action.category;
|
|
|
|
event.rx_action.data = &mgmt->u.action.category + 1;
|
|
|
|
event.rx_action.len = frame + len - event.rx_action.data;
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_RX_ACTION, &event);
|
|
|
|
} else {
|
|
|
|
event.rx_mgmt.frame = frame;
|
|
|
|
event.rx_mgmt.frame_len = len;
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
|
|
|
|
}
|
2010-02-16 18:41:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void mlme_event_action_tx_status(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlattr *cookie, const u8 *frame,
|
|
|
|
size_t len, struct nlattr *ack)
|
|
|
|
{
|
|
|
|
union wpa_event_data event;
|
|
|
|
const struct ieee80211_hdr *hdr;
|
|
|
|
u16 fc;
|
|
|
|
u64 cookie_val;
|
|
|
|
|
|
|
|
if (!cookie)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cookie_val = nla_get_u64(cookie);
|
2010-07-18 05:17:43 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Action TX status: cookie=0%llx%s "
|
|
|
|
"(ack=%d)",
|
2010-02-16 18:41:49 +01:00
|
|
|
(long long unsigned int) cookie_val,
|
|
|
|
cookie_val == drv->send_action_cookie ?
|
2010-07-18 05:17:43 +02:00
|
|
|
" (match)" : " (unknown)", ack != NULL);
|
2010-02-16 18:41:49 +01:00
|
|
|
if (cookie_val != drv->send_action_cookie)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hdr = (const struct ieee80211_hdr *) frame;
|
|
|
|
fc = le_to_host16(hdr->frame_control);
|
|
|
|
|
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
event.tx_status.type = WLAN_FC_GET_TYPE(fc);
|
|
|
|
event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
|
|
|
|
event.tx_status.dst = hdr->addr1;
|
|
|
|
event.tx_status.data = frame;
|
|
|
|
event.tx_status.data_len = len;
|
|
|
|
event.tx_status.ack = ack != NULL;
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_TX_STATUS, &event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-11 20:25:15 +02:00
|
|
|
static void mlme_event_deauth_disassoc(struct wpa_driver_nl80211_data *drv,
|
|
|
|
enum wpa_event_type type,
|
|
|
|
const u8 *frame, size_t len)
|
|
|
|
{
|
|
|
|
const struct ieee80211_mgmt *mgmt;
|
|
|
|
union wpa_event_data event;
|
|
|
|
const u8 *bssid = NULL;
|
|
|
|
u16 reason_code = 0;
|
|
|
|
|
2010-08-16 20:27:26 +02:00
|
|
|
mgmt = (const struct ieee80211_mgmt *) frame;
|
|
|
|
if (len >= 24) {
|
|
|
|
bssid = mgmt->bssid;
|
|
|
|
|
|
|
|
if (drv->associated != 0 &&
|
|
|
|
os_memcmp(bssid, drv->bssid, ETH_ALEN) != 0 &&
|
|
|
|
os_memcmp(bssid, drv->auth_bssid, ETH_ALEN) != 0) {
|
|
|
|
/*
|
|
|
|
* We have presumably received this deauth as a
|
|
|
|
* response to a clear_state_mismatch() outgoing
|
|
|
|
* deauth. Don't let it take us offline!
|
|
|
|
*/
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Deauth received "
|
|
|
|
"from Unknown BSSID " MACSTR " -- ignoring",
|
|
|
|
MAC2STR(bssid));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-11 20:25:15 +02:00
|
|
|
drv->associated = 0;
|
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
|
|
|
|
/* Note: Same offset for Reason Code in both frame subtypes */
|
|
|
|
if (len >= 24 + sizeof(mgmt->u.deauth))
|
|
|
|
reason_code = le_to_host16(mgmt->u.deauth.reason_code);
|
|
|
|
|
|
|
|
if (type == EVENT_DISASSOC) {
|
|
|
|
event.disassoc_info.addr = bssid;
|
|
|
|
event.disassoc_info.reason_code = reason_code;
|
2010-07-18 23:30:25 +02:00
|
|
|
if (frame + len > mgmt->u.disassoc.variable) {
|
|
|
|
event.disassoc_info.ie = mgmt->u.disassoc.variable;
|
|
|
|
event.disassoc_info.ie_len = frame + len -
|
|
|
|
mgmt->u.disassoc.variable;
|
|
|
|
}
|
2010-04-11 20:25:15 +02:00
|
|
|
} else {
|
|
|
|
event.deauth_info.addr = bssid;
|
|
|
|
event.deauth_info.reason_code = reason_code;
|
2010-07-18 23:30:25 +02:00
|
|
|
if (frame + len > mgmt->u.deauth.variable) {
|
|
|
|
event.deauth_info.ie = mgmt->u.deauth.variable;
|
|
|
|
event.deauth_info.ie_len = frame + len -
|
|
|
|
mgmt->u.deauth.variable;
|
|
|
|
}
|
2010-04-11 20:25:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
wpa_supplicant_event(drv->ctx, type, &event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-19 10:58:00 +01:00
|
|
|
static void mlme_event_unprot_disconnect(struct wpa_driver_nl80211_data *drv,
|
|
|
|
enum wpa_event_type type,
|
|
|
|
const u8 *frame, size_t len)
|
|
|
|
{
|
|
|
|
const struct ieee80211_mgmt *mgmt;
|
|
|
|
union wpa_event_data event;
|
|
|
|
u16 reason_code = 0;
|
|
|
|
|
|
|
|
if (len < 24)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mgmt = (const struct ieee80211_mgmt *) frame;
|
|
|
|
|
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
/* Note: Same offset for Reason Code in both frame subtypes */
|
|
|
|
if (len >= 24 + sizeof(mgmt->u.deauth))
|
|
|
|
reason_code = le_to_host16(mgmt->u.deauth.reason_code);
|
|
|
|
|
|
|
|
if (type == EVENT_UNPROT_DISASSOC) {
|
|
|
|
event.unprot_disassoc.sa = mgmt->sa;
|
|
|
|
event.unprot_disassoc.da = mgmt->da;
|
|
|
|
event.unprot_disassoc.reason_code = reason_code;
|
|
|
|
} else {
|
|
|
|
event.unprot_deauth.sa = mgmt->sa;
|
|
|
|
event.unprot_deauth.da = mgmt->da;
|
|
|
|
event.unprot_deauth.reason_code = reason_code;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_supplicant_event(drv->ctx, type, &event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
static void mlme_event(struct wpa_driver_nl80211_data *drv,
|
2009-04-23 23:08:24 +02:00
|
|
|
enum nl80211_commands cmd, struct nlattr *frame,
|
2010-02-16 18:41:49 +01:00
|
|
|
struct nlattr *addr, struct nlattr *timed_out,
|
|
|
|
struct nlattr *freq, struct nlattr *ack,
|
|
|
|
struct nlattr *cookie)
|
2009-03-20 21:26:41 +01:00
|
|
|
{
|
2009-04-23 23:08:24 +02:00
|
|
|
if (timed_out && addr) {
|
|
|
|
mlme_timeout_event(drv, cmd, addr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
if (frame == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: MLME event %d without frame "
|
|
|
|
"data", cmd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: MLME event %d", cmd);
|
|
|
|
wpa_hexdump(MSG_MSGDUMP, "nl80211: MLME event frame",
|
|
|
|
nla_data(frame), nla_len(frame));
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case NL80211_CMD_AUTHENTICATE:
|
|
|
|
mlme_event_auth(drv, nla_data(frame), nla_len(frame));
|
|
|
|
break;
|
|
|
|
case NL80211_CMD_ASSOCIATE:
|
|
|
|
mlme_event_assoc(drv, nla_data(frame), nla_len(frame));
|
|
|
|
break;
|
|
|
|
case NL80211_CMD_DEAUTHENTICATE:
|
2010-04-11 20:25:15 +02:00
|
|
|
mlme_event_deauth_disassoc(drv, EVENT_DEAUTH,
|
|
|
|
nla_data(frame), nla_len(frame));
|
2009-03-20 21:26:41 +01:00
|
|
|
break;
|
|
|
|
case NL80211_CMD_DISASSOCIATE:
|
2010-04-11 20:25:15 +02:00
|
|
|
mlme_event_deauth_disassoc(drv, EVENT_DISASSOC,
|
|
|
|
nla_data(frame), nla_len(frame));
|
2009-03-20 21:26:41 +01:00
|
|
|
break;
|
2010-10-10 16:55:18 +02:00
|
|
|
case NL80211_CMD_FRAME:
|
2010-10-10 17:10:37 +02:00
|
|
|
mlme_event_mgmt(drv, freq, nla_data(frame), nla_len(frame));
|
2010-02-16 18:41:49 +01:00
|
|
|
break;
|
2010-10-10 16:55:18 +02:00
|
|
|
case NL80211_CMD_FRAME_TX_STATUS:
|
2010-02-16 18:41:49 +01:00
|
|
|
mlme_event_action_tx_status(drv, cookie, nla_data(frame),
|
|
|
|
nla_len(frame), ack);
|
|
|
|
break;
|
2010-12-19 10:58:00 +01:00
|
|
|
case NL80211_CMD_UNPROT_DEAUTHENTICATE:
|
|
|
|
mlme_event_unprot_disconnect(drv, EVENT_UNPROT_DEAUTH,
|
|
|
|
nla_data(frame), nla_len(frame));
|
|
|
|
break;
|
|
|
|
case NL80211_CMD_UNPROT_DISASSOCIATE:
|
|
|
|
mlme_event_unprot_disconnect(drv, EVENT_UNPROT_DISASSOC,
|
|
|
|
nla_data(frame), nla_len(frame));
|
|
|
|
break;
|
2009-03-20 21:26:41 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-09 15:50:48 +02:00
|
|
|
static void mlme_event_michael_mic_failure(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlattr *tb[])
|
|
|
|
{
|
|
|
|
union wpa_event_data data;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: MLME event Michael MIC failure");
|
|
|
|
os_memset(&data, 0, sizeof(data));
|
|
|
|
if (tb[NL80211_ATTR_MAC]) {
|
|
|
|
wpa_hexdump(MSG_DEBUG, "nl80211: Source MAC address",
|
|
|
|
nla_data(tb[NL80211_ATTR_MAC]),
|
|
|
|
nla_len(tb[NL80211_ATTR_MAC]));
|
2009-04-16 15:22:40 +02:00
|
|
|
data.michael_mic_failure.src = nla_data(tb[NL80211_ATTR_MAC]);
|
2009-04-09 15:50:48 +02:00
|
|
|
}
|
|
|
|
if (tb[NL80211_ATTR_KEY_SEQ]) {
|
|
|
|
wpa_hexdump(MSG_DEBUG, "nl80211: TSC",
|
|
|
|
nla_data(tb[NL80211_ATTR_KEY_SEQ]),
|
|
|
|
nla_len(tb[NL80211_ATTR_KEY_SEQ]));
|
|
|
|
}
|
|
|
|
if (tb[NL80211_ATTR_KEY_TYPE]) {
|
|
|
|
enum nl80211_key_type key_type =
|
|
|
|
nla_get_u32(tb[NL80211_ATTR_KEY_TYPE]);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Key Type %d", key_type);
|
|
|
|
if (key_type == NL80211_KEYTYPE_PAIRWISE)
|
|
|
|
data.michael_mic_failure.unicast = 1;
|
|
|
|
} else
|
|
|
|
data.michael_mic_failure.unicast = 1;
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_KEY_IDX]) {
|
|
|
|
u8 key_id = nla_get_u8(tb[NL80211_ATTR_KEY_IDX]);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Key Id %d", key_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_MICHAEL_MIC_FAILURE, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-03 23:15:32 +01:00
|
|
|
static void mlme_event_join_ibss(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlattr *tb[])
|
|
|
|
{
|
|
|
|
if (tb[NL80211_ATTR_MAC] == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: No address in IBSS joined "
|
|
|
|
"event");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
os_memcpy(drv->bssid, nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
|
|
|
|
drv->associated = 1;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: IBSS " MACSTR " joined",
|
|
|
|
MAC2STR(drv->bssid));
|
|
|
|
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_ASSOC, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-03 12:57:51 +01:00
|
|
|
static void mlme_event_remain_on_channel(struct wpa_driver_nl80211_data *drv,
|
|
|
|
int cancel_event, struct nlattr *tb[])
|
|
|
|
{
|
|
|
|
unsigned int freq, chan_type, duration;
|
|
|
|
union wpa_event_data data;
|
|
|
|
u64 cookie;
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_WIPHY_FREQ])
|
|
|
|
freq = nla_get_u32(tb[NL80211_ATTR_WIPHY_FREQ]);
|
|
|
|
else
|
|
|
|
freq = 0;
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE])
|
|
|
|
chan_type = nla_get_u32(tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
|
|
|
|
else
|
|
|
|
chan_type = 0;
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_DURATION])
|
|
|
|
duration = nla_get_u32(tb[NL80211_ATTR_DURATION]);
|
|
|
|
else
|
|
|
|
duration = 0;
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_COOKIE])
|
|
|
|
cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
|
|
|
|
else
|
|
|
|
cookie = 0;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel event (cancel=%d "
|
|
|
|
"freq=%u channel_type=%u duration=%u cookie=0x%llx (%s))",
|
|
|
|
cancel_event, freq, chan_type, duration,
|
|
|
|
(long long unsigned int) cookie,
|
|
|
|
cookie == drv->remain_on_chan_cookie ? "match" : "unknown");
|
|
|
|
|
|
|
|
if (cookie != drv->remain_on_chan_cookie)
|
|
|
|
return; /* not for us */
|
|
|
|
|
2011-09-10 21:57:41 +02:00
|
|
|
if (cancel_event)
|
|
|
|
drv->pending_remain_on_chan = 0;
|
2010-01-03 12:57:51 +01:00
|
|
|
|
|
|
|
os_memset(&data, 0, sizeof(data));
|
|
|
|
data.remain_on_channel.freq = freq;
|
|
|
|
data.remain_on_channel.duration = duration;
|
|
|
|
wpa_supplicant_event(drv->ctx, cancel_event ?
|
|
|
|
EVENT_CANCEL_REMAIN_ON_CHANNEL :
|
|
|
|
EVENT_REMAIN_ON_CHANNEL, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-02 12:57:44 +01:00
|
|
|
static void send_scan_event(struct wpa_driver_nl80211_data *drv, int aborted,
|
|
|
|
struct nlattr *tb[])
|
|
|
|
{
|
|
|
|
union wpa_event_data event;
|
|
|
|
struct nlattr *nl;
|
|
|
|
int rem;
|
|
|
|
struct scan_info *info;
|
|
|
|
#define MAX_REPORT_FREQS 50
|
|
|
|
int freqs[MAX_REPORT_FREQS];
|
|
|
|
int num_freqs = 0;
|
|
|
|
|
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
info = &event.scan_info;
|
|
|
|
info->aborted = aborted;
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_SCAN_SSIDS]) {
|
|
|
|
nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_SSIDS], rem) {
|
|
|
|
struct wpa_driver_scan_ssid *s =
|
|
|
|
&info->ssids[info->num_ssids];
|
|
|
|
s->ssid = nla_data(nl);
|
|
|
|
s->ssid_len = nla_len(nl);
|
|
|
|
info->num_ssids++;
|
|
|
|
if (info->num_ssids == WPAS_MAX_SCAN_SSIDS)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tb[NL80211_ATTR_SCAN_FREQUENCIES]) {
|
|
|
|
nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_FREQUENCIES], rem)
|
|
|
|
{
|
|
|
|
freqs[num_freqs] = nla_get_u32(nl);
|
|
|
|
num_freqs++;
|
|
|
|
if (num_freqs == MAX_REPORT_FREQS - 1)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
info->freqs = freqs;
|
|
|
|
info->num_freqs = num_freqs;
|
|
|
|
}
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_SCAN_RESULTS, &event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-27 15:58:06 +02:00
|
|
|
static int get_link_signal(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
struct nlattr *tb[NL80211_ATTR_MAX + 1];
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
struct nlattr *sinfo[NL80211_STA_INFO_MAX + 1];
|
|
|
|
static struct nla_policy policy[NL80211_STA_INFO_MAX + 1] = {
|
|
|
|
[NL80211_STA_INFO_SIGNAL] = { .type = NLA_U8 },
|
|
|
|
};
|
2010-10-12 19:01:50 +02:00
|
|
|
struct nlattr *rinfo[NL80211_RATE_INFO_MAX + 1];
|
|
|
|
static struct nla_policy rate_policy[NL80211_RATE_INFO_MAX + 1] = {
|
|
|
|
[NL80211_RATE_INFO_BITRATE] = { .type = NLA_U16 },
|
|
|
|
[NL80211_RATE_INFO_MCS] = { .type = NLA_U8 },
|
|
|
|
[NL80211_RATE_INFO_40_MHZ_WIDTH] = { .type = NLA_FLAG },
|
|
|
|
[NL80211_RATE_INFO_SHORT_GI] = { .type = NLA_FLAG },
|
|
|
|
};
|
2011-03-31 16:56:48 +02:00
|
|
|
struct wpa_signal_info *sig_change = arg;
|
2010-08-27 15:58:06 +02:00
|
|
|
|
|
|
|
nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
if (!tb[NL80211_ATTR_STA_INFO] ||
|
|
|
|
nla_parse_nested(sinfo, NL80211_STA_INFO_MAX,
|
|
|
|
tb[NL80211_ATTR_STA_INFO], policy))
|
|
|
|
return NL_SKIP;
|
|
|
|
if (!sinfo[NL80211_STA_INFO_SIGNAL])
|
|
|
|
return NL_SKIP;
|
|
|
|
|
2010-10-12 19:01:50 +02:00
|
|
|
sig_change->current_signal =
|
|
|
|
(s8) nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL]);
|
|
|
|
|
|
|
|
if (sinfo[NL80211_STA_INFO_TX_BITRATE]) {
|
|
|
|
if (nla_parse_nested(rinfo, NL80211_RATE_INFO_MAX,
|
|
|
|
sinfo[NL80211_STA_INFO_TX_BITRATE],
|
|
|
|
rate_policy)) {
|
|
|
|
sig_change->current_txrate = 0;
|
|
|
|
} else {
|
|
|
|
if (rinfo[NL80211_RATE_INFO_BITRATE]) {
|
|
|
|
sig_change->current_txrate =
|
|
|
|
nla_get_u16(rinfo[
|
|
|
|
NL80211_RATE_INFO_BITRATE]) * 100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-27 15:58:06 +02:00
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl80211_get_link_signal(struct wpa_driver_nl80211_data *drv,
|
2011-03-31 16:56:48 +02:00
|
|
|
struct wpa_signal_info *sig)
|
2010-08-27 15:58:06 +02:00
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
2010-10-12 19:01:50 +02:00
|
|
|
sig->current_signal = -9999;
|
|
|
|
sig->current_txrate = 0;
|
2010-08-27 15:58:06 +02:00
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_GET_STATION, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
|
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, get_link_signal, sig);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-12 19:01:50 +02:00
|
|
|
static int get_link_noise(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
struct nlattr *tb[NL80211_ATTR_MAX + 1];
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
|
|
|
|
static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
|
|
|
|
[NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
|
|
|
|
[NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
|
|
|
|
};
|
2011-03-31 16:56:48 +02:00
|
|
|
struct wpa_signal_info *sig_change = arg;
|
2010-10-12 19:01:50 +02:00
|
|
|
|
|
|
|
nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
|
|
|
|
if (!tb[NL80211_ATTR_SURVEY_INFO]) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: survey data missing!");
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
|
|
|
|
tb[NL80211_ATTR_SURVEY_INFO],
|
|
|
|
survey_policy)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: failed to parse nested "
|
|
|
|
"attributes!");
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY])
|
|
|
|
return NL_SKIP;
|
|
|
|
|
|
|
|
if (nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]) !=
|
|
|
|
sig_change->frequency)
|
|
|
|
return NL_SKIP;
|
|
|
|
|
|
|
|
if (!sinfo[NL80211_SURVEY_INFO_NOISE])
|
|
|
|
return NL_SKIP;
|
|
|
|
|
|
|
|
sig_change->current_noise =
|
|
|
|
(s8) nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
|
|
|
|
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl80211_get_link_noise(struct wpa_driver_nl80211_data *drv,
|
2011-03-31 16:56:48 +02:00
|
|
|
struct wpa_signal_info *sig_change)
|
2010-10-12 19:01:50 +02:00
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
sig_change->current_noise = 9999;
|
|
|
|
sig_change->frequency = drv->assoc_freq;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
NLM_F_DUMP, NL80211_CMD_GET_SURVEY, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, get_link_noise, sig_change);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-28 22:56:40 +02:00
|
|
|
static void nl80211_cqm_event(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlattr *tb[])
|
|
|
|
{
|
|
|
|
static struct nla_policy cqm_policy[NL80211_ATTR_CQM_MAX + 1] = {
|
|
|
|
[NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
|
|
|
|
[NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U8 },
|
|
|
|
[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
|
2010-12-28 16:15:01 +01:00
|
|
|
[NL80211_ATTR_CQM_PKT_LOSS_EVENT] = { .type = NLA_U32 },
|
2010-03-28 22:56:40 +02:00
|
|
|
};
|
|
|
|
struct nlattr *cqm[NL80211_ATTR_CQM_MAX + 1];
|
|
|
|
enum nl80211_cqm_rssi_threshold_event event;
|
2010-03-29 00:31:04 +02:00
|
|
|
union wpa_event_data ed;
|
2011-03-31 16:56:48 +02:00
|
|
|
struct wpa_signal_info sig;
|
2010-10-12 19:01:50 +02:00
|
|
|
int res;
|
2010-03-28 22:56:40 +02:00
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_CQM] == NULL ||
|
|
|
|
nla_parse_nested(cqm, NL80211_ATTR_CQM_MAX, tb[NL80211_ATTR_CQM],
|
|
|
|
cqm_policy)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Ignore invalid CQM event");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-12-28 16:15:01 +01:00
|
|
|
os_memset(&ed, 0, sizeof(ed));
|
|
|
|
|
|
|
|
if (cqm[NL80211_ATTR_CQM_PKT_LOSS_EVENT]) {
|
|
|
|
if (!tb[NL80211_ATTR_MAC])
|
|
|
|
return;
|
|
|
|
os_memcpy(ed.low_ack.addr, nla_data(tb[NL80211_ATTR_MAC]),
|
|
|
|
ETH_ALEN);
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_STATION_LOW_ACK, &ed);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-03-28 22:56:40 +02:00
|
|
|
if (cqm[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] == NULL)
|
|
|
|
return;
|
|
|
|
event = nla_get_u32(cqm[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT]);
|
2010-03-29 00:31:04 +02:00
|
|
|
|
2010-03-28 22:56:40 +02:00
|
|
|
if (event == NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Connection quality monitor "
|
|
|
|
"event: RSSI high");
|
2010-03-29 00:31:04 +02:00
|
|
|
ed.signal_change.above_threshold = 1;
|
2010-03-28 22:56:40 +02:00
|
|
|
} else if (event == NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Connection quality monitor "
|
|
|
|
"event: RSSI low");
|
2010-03-29 00:31:04 +02:00
|
|
|
ed.signal_change.above_threshold = 0;
|
|
|
|
} else
|
|
|
|
return;
|
|
|
|
|
2010-08-27 15:58:06 +02:00
|
|
|
res = nl80211_get_link_signal(drv, &sig);
|
|
|
|
if (res == 0) {
|
2010-10-12 19:01:50 +02:00
|
|
|
ed.signal_change.current_signal = sig.current_signal;
|
|
|
|
ed.signal_change.current_txrate = sig.current_txrate;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Signal: %d dBm txrate: %d",
|
|
|
|
sig.current_signal, sig.current_txrate);
|
|
|
|
}
|
|
|
|
|
|
|
|
res = nl80211_get_link_noise(drv, &sig);
|
|
|
|
if (res == 0) {
|
|
|
|
ed.signal_change.current_noise = sig.current_noise;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Noise: %d dBm",
|
|
|
|
sig.current_noise);
|
2010-08-27 15:58:06 +02:00
|
|
|
}
|
|
|
|
|
2010-03-29 00:31:04 +02:00
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_SIGNAL_CHANGE, &ed);
|
2010-03-28 22:56:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-05 03:17:58 +01:00
|
|
|
static void nl80211_new_station_event(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlattr **tb)
|
|
|
|
{
|
|
|
|
u8 *addr;
|
|
|
|
union wpa_event_data data;
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_MAC] == NULL)
|
|
|
|
return;
|
|
|
|
addr = nla_data(tb[NL80211_ATTR_MAC]);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: New station " MACSTR, MAC2STR(addr));
|
2011-07-01 17:44:09 +02:00
|
|
|
|
2011-08-29 13:26:55 +02:00
|
|
|
if (is_ap_interface(drv->nlmode) && drv->no_monitor_iface_capab) {
|
2011-07-01 17:44:09 +02:00
|
|
|
u8 *ies = NULL;
|
|
|
|
size_t ies_len = 0;
|
|
|
|
if (tb[NL80211_ATTR_IE]) {
|
|
|
|
ies = nla_data(tb[NL80211_ATTR_IE]);
|
|
|
|
ies_len = nla_len(tb[NL80211_ATTR_IE]);
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, "nl80211: Assoc Req IEs", ies, ies_len);
|
|
|
|
drv_event_assoc(drv->ctx, addr, ies, ies_len, 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-12-05 03:17:58 +01:00
|
|
|
if (drv->nlmode != NL80211_IFTYPE_ADHOC)
|
|
|
|
return;
|
|
|
|
|
|
|
|
os_memset(&data, 0, sizeof(data));
|
|
|
|
os_memcpy(data.ibss_rsn_start.peer, addr, ETH_ALEN);
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_IBSS_RSN_START, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-23 14:32:55 +01:00
|
|
|
static void nl80211_del_station_event(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlattr **tb)
|
|
|
|
{
|
|
|
|
u8 *addr;
|
|
|
|
union wpa_event_data data;
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_MAC] == NULL)
|
|
|
|
return;
|
|
|
|
addr = nla_data(tb[NL80211_ATTR_MAC]);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Delete station " MACSTR,
|
|
|
|
MAC2STR(addr));
|
2011-07-01 17:44:09 +02:00
|
|
|
|
2011-08-29 13:26:55 +02:00
|
|
|
if (is_ap_interface(drv->nlmode) && drv->no_monitor_iface_capab) {
|
2011-07-01 17:44:09 +02:00
|
|
|
drv_event_disassoc(drv->ctx, addr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-23 14:32:55 +01:00
|
|
|
if (drv->nlmode != NL80211_IFTYPE_ADHOC)
|
|
|
|
return;
|
|
|
|
|
|
|
|
os_memset(&data, 0, sizeof(data));
|
|
|
|
os_memcpy(data.ibss_peer_lost.peer, addr, ETH_ALEN);
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_IBSS_PEER_LOST, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-12 20:22:51 +02:00
|
|
|
static void nl80211_rekey_offload_event(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlattr **tb)
|
|
|
|
{
|
|
|
|
struct nlattr *rekey_info[NUM_NL80211_REKEY_DATA];
|
|
|
|
static struct nla_policy rekey_policy[NUM_NL80211_REKEY_DATA] = {
|
|
|
|
[NL80211_REKEY_DATA_KEK] = {
|
|
|
|
.minlen = NL80211_KEK_LEN,
|
|
|
|
.maxlen = NL80211_KEK_LEN,
|
|
|
|
},
|
|
|
|
[NL80211_REKEY_DATA_KCK] = {
|
|
|
|
.minlen = NL80211_KCK_LEN,
|
|
|
|
.maxlen = NL80211_KCK_LEN,
|
|
|
|
},
|
|
|
|
[NL80211_REKEY_DATA_REPLAY_CTR] = {
|
|
|
|
.minlen = NL80211_REPLAY_CTR_LEN,
|
|
|
|
.maxlen = NL80211_REPLAY_CTR_LEN,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
union wpa_event_data data;
|
|
|
|
|
|
|
|
if (!tb[NL80211_ATTR_MAC])
|
|
|
|
return;
|
|
|
|
if (!tb[NL80211_ATTR_REKEY_DATA])
|
|
|
|
return;
|
|
|
|
if (nla_parse_nested(rekey_info, MAX_NL80211_REKEY_DATA,
|
|
|
|
tb[NL80211_ATTR_REKEY_DATA], rekey_policy))
|
|
|
|
return;
|
|
|
|
if (!rekey_info[NL80211_REKEY_DATA_REPLAY_CTR])
|
|
|
|
return;
|
|
|
|
|
|
|
|
os_memset(&data, 0, sizeof(data));
|
|
|
|
data.driver_gtk_rekey.bssid = nla_data(tb[NL80211_ATTR_MAC]);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Rekey offload event for BSSID " MACSTR,
|
|
|
|
MAC2STR(data.driver_gtk_rekey.bssid));
|
|
|
|
data.driver_gtk_rekey.replay_ctr =
|
|
|
|
nla_data(rekey_info[NL80211_REKEY_DATA_REPLAY_CTR]);
|
|
|
|
wpa_hexdump(MSG_DEBUG, "nl80211: Rekey offload - Replay Counter",
|
|
|
|
data.driver_gtk_rekey.replay_ctr, NL80211_REPLAY_CTR_LEN);
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_DRIVER_GTK_REKEY, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-21 15:14:41 +02:00
|
|
|
static void nl80211_pmksa_candidate_event(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlattr **tb)
|
|
|
|
{
|
|
|
|
struct nlattr *cand[NUM_NL80211_PMKSA_CANDIDATE];
|
|
|
|
static struct nla_policy cand_policy[NUM_NL80211_PMKSA_CANDIDATE] = {
|
|
|
|
[NL80211_PMKSA_CANDIDATE_INDEX] = { .type = NLA_U32 },
|
|
|
|
[NL80211_PMKSA_CANDIDATE_BSSID] = {
|
|
|
|
.minlen = ETH_ALEN,
|
|
|
|
.maxlen = ETH_ALEN,
|
|
|
|
},
|
|
|
|
[NL80211_PMKSA_CANDIDATE_PREAUTH] = { .type = NLA_FLAG },
|
|
|
|
};
|
|
|
|
union wpa_event_data data;
|
|
|
|
|
|
|
|
if (!tb[NL80211_ATTR_PMKSA_CANDIDATE])
|
|
|
|
return;
|
|
|
|
if (nla_parse_nested(cand, MAX_NL80211_PMKSA_CANDIDATE,
|
|
|
|
tb[NL80211_ATTR_PMKSA_CANDIDATE], cand_policy))
|
|
|
|
return;
|
|
|
|
if (!cand[NL80211_PMKSA_CANDIDATE_INDEX] ||
|
|
|
|
!cand[NL80211_PMKSA_CANDIDATE_BSSID])
|
|
|
|
return;
|
|
|
|
|
|
|
|
os_memset(&data, 0, sizeof(data));
|
|
|
|
os_memcpy(data.pmkid_candidate.bssid,
|
|
|
|
nla_data(cand[NL80211_PMKSA_CANDIDATE_BSSID]), ETH_ALEN);
|
|
|
|
data.pmkid_candidate.index =
|
|
|
|
nla_get_u32(cand[NL80211_PMKSA_CANDIDATE_INDEX]);
|
|
|
|
data.pmkid_candidate.preauth =
|
|
|
|
cand[NL80211_PMKSA_CANDIDATE_PREAUTH] != NULL;
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_PMKID_CANDIDATE, &data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-12 19:11:43 +01:00
|
|
|
static int process_event(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = arg;
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
struct nlattr *tb[NL80211_ATTR_MAX + 1];
|
|
|
|
|
|
|
|
nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_IFINDEX]) {
|
|
|
|
int ifindex = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
|
2010-04-15 23:36:33 +02:00
|
|
|
if (ifindex != drv->ifindex && !have_ifidx(drv, ifindex)) {
|
2009-02-12 19:11:43 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Ignored event (cmd=%d)"
|
|
|
|
" for foreign interface (ifindex %d)",
|
|
|
|
gnlh->cmd, ifindex);
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-17 19:22:11 +02:00
|
|
|
if (drv->ap_scan_as_station != NL80211_IFTYPE_UNSPECIFIED &&
|
2009-04-16 15:22:40 +02:00
|
|
|
(gnlh->cmd == NL80211_CMD_NEW_SCAN_RESULTS ||
|
|
|
|
gnlh->cmd == NL80211_CMD_SCAN_ABORTED)) {
|
2010-03-06 21:22:56 +01:00
|
|
|
wpa_driver_nl80211_set_mode(&drv->first_bss,
|
2011-07-17 19:22:11 +02:00
|
|
|
drv->ap_scan_as_station);
|
|
|
|
drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
|
2009-04-16 15:22:40 +02:00
|
|
|
}
|
|
|
|
|
2009-02-12 19:11:43 +01:00
|
|
|
switch (gnlh->cmd) {
|
2009-10-01 12:58:17 +02:00
|
|
|
case NL80211_CMD_TRIGGER_SCAN:
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Scan trigger");
|
|
|
|
break;
|
2011-09-27 21:21:30 +02:00
|
|
|
case NL80211_CMD_START_SCHED_SCAN:
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Sched scan started");
|
|
|
|
break;
|
|
|
|
case NL80211_CMD_SCHED_SCAN_STOPPED:
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Sched scan stopped");
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_SCHED_SCAN_STOPPED, NULL);
|
|
|
|
break;
|
2009-02-12 19:11:43 +01:00
|
|
|
case NL80211_CMD_NEW_SCAN_RESULTS:
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: New scan results available");
|
|
|
|
drv->scan_complete_events = 1;
|
|
|
|
eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
|
|
|
|
drv->ctx);
|
2010-01-02 12:57:44 +01:00
|
|
|
send_scan_event(drv, 0, tb);
|
2009-02-12 19:11:43 +01:00
|
|
|
break;
|
2011-09-27 21:21:30 +02:00
|
|
|
case NL80211_CMD_SCHED_SCAN_RESULTS:
|
|
|
|
wpa_printf(MSG_DEBUG,
|
|
|
|
"nl80211: New sched scan results available");
|
|
|
|
send_scan_event(drv, 0, tb);
|
|
|
|
break;
|
2009-02-12 19:11:43 +01:00
|
|
|
case NL80211_CMD_SCAN_ABORTED:
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Scan aborted");
|
|
|
|
/*
|
|
|
|
* Need to indicate that scan results are available in order
|
|
|
|
* not to make wpa_supplicant stop its scanning.
|
|
|
|
*/
|
|
|
|
eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
|
|
|
|
drv->ctx);
|
2010-01-02 12:57:44 +01:00
|
|
|
send_scan_event(drv, 1, tb);
|
2009-02-12 19:11:43 +01:00
|
|
|
break;
|
2009-03-20 21:26:41 +01:00
|
|
|
case NL80211_CMD_AUTHENTICATE:
|
|
|
|
case NL80211_CMD_ASSOCIATE:
|
|
|
|
case NL80211_CMD_DEAUTHENTICATE:
|
|
|
|
case NL80211_CMD_DISASSOCIATE:
|
2010-10-10 16:55:18 +02:00
|
|
|
case NL80211_CMD_FRAME:
|
|
|
|
case NL80211_CMD_FRAME_TX_STATUS:
|
2010-12-19 10:58:00 +01:00
|
|
|
case NL80211_CMD_UNPROT_DEAUTHENTICATE:
|
|
|
|
case NL80211_CMD_UNPROT_DISASSOCIATE:
|
2009-04-23 23:08:24 +02:00
|
|
|
mlme_event(drv, gnlh->cmd, tb[NL80211_ATTR_FRAME],
|
2010-02-16 18:41:49 +01:00
|
|
|
tb[NL80211_ATTR_MAC], tb[NL80211_ATTR_TIMED_OUT],
|
|
|
|
tb[NL80211_ATTR_WIPHY_FREQ], tb[NL80211_ATTR_ACK],
|
|
|
|
tb[NL80211_ATTR_COOKIE]);
|
2009-03-20 21:26:41 +01:00
|
|
|
break;
|
2009-09-03 19:39:59 +02:00
|
|
|
case NL80211_CMD_CONNECT:
|
|
|
|
case NL80211_CMD_ROAM:
|
|
|
|
mlme_event_connect(drv, gnlh->cmd,
|
|
|
|
tb[NL80211_ATTR_STATUS_CODE],
|
|
|
|
tb[NL80211_ATTR_MAC],
|
|
|
|
tb[NL80211_ATTR_REQ_IE],
|
|
|
|
tb[NL80211_ATTR_RESP_IE]);
|
|
|
|
break;
|
|
|
|
case NL80211_CMD_DISCONNECT:
|
2011-09-18 20:26:55 +02:00
|
|
|
mlme_event_disconnect(drv, tb[NL80211_ATTR_REASON_CODE],
|
|
|
|
tb[NL80211_ATTR_MAC]);
|
2009-09-03 19:39:59 +02:00
|
|
|
break;
|
2009-04-09 15:50:48 +02:00
|
|
|
case NL80211_CMD_MICHAEL_MIC_FAILURE:
|
|
|
|
mlme_event_michael_mic_failure(drv, tb);
|
|
|
|
break;
|
2009-12-03 23:15:32 +01:00
|
|
|
case NL80211_CMD_JOIN_IBSS:
|
|
|
|
mlme_event_join_ibss(drv, tb);
|
|
|
|
break;
|
2010-01-03 12:57:51 +01:00
|
|
|
case NL80211_CMD_REMAIN_ON_CHANNEL:
|
|
|
|
mlme_event_remain_on_channel(drv, 0, tb);
|
|
|
|
break;
|
|
|
|
case NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL:
|
|
|
|
mlme_event_remain_on_channel(drv, 1, tb);
|
|
|
|
break;
|
2010-03-28 22:56:40 +02:00
|
|
|
case NL80211_CMD_NOTIFY_CQM:
|
|
|
|
nl80211_cqm_event(drv, tb);
|
|
|
|
break;
|
2010-10-15 17:56:36 +02:00
|
|
|
case NL80211_CMD_REG_CHANGE:
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Regulatory domain change");
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
|
|
|
|
NULL);
|
|
|
|
break;
|
|
|
|
case NL80211_CMD_REG_BEACON_HINT:
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Regulatory beacon hint");
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
|
|
|
|
NULL);
|
|
|
|
break;
|
2010-12-05 03:17:58 +01:00
|
|
|
case NL80211_CMD_NEW_STATION:
|
|
|
|
nl80211_new_station_event(drv, tb);
|
|
|
|
break;
|
2011-03-23 14:32:55 +01:00
|
|
|
case NL80211_CMD_DEL_STATION:
|
|
|
|
nl80211_del_station_event(drv, tb);
|
|
|
|
break;
|
2011-07-12 20:22:51 +02:00
|
|
|
case NL80211_CMD_SET_REKEY_OFFLOAD:
|
|
|
|
nl80211_rekey_offload_event(drv, tb);
|
|
|
|
break;
|
2011-09-21 15:14:41 +02:00
|
|
|
case NL80211_CMD_PMKSA_CANDIDATE:
|
|
|
|
nl80211_pmksa_candidate_event(drv, tb);
|
|
|
|
break;
|
2009-02-12 19:11:43 +01:00
|
|
|
default:
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Ignored unknown event "
|
|
|
|
"(cmd=%d)", gnlh->cmd);
|
2009-02-12 19:11:43 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void wpa_driver_nl80211_event_receive(int sock, void *eloop_ctx,
|
2010-10-10 17:10:37 +02:00
|
|
|
void *handle)
|
2009-02-12 19:11:43 +01:00
|
|
|
{
|
|
|
|
struct nl_cb *cb;
|
|
|
|
struct wpa_driver_nl80211_data *drv = eloop_ctx;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Event message available");
|
|
|
|
|
|
|
|
cb = nl_cb_clone(drv->nl_cb);
|
|
|
|
if (!cb)
|
|
|
|
return;
|
|
|
|
nl_cb_set(cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM, no_seq_check, NULL);
|
|
|
|
nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, process_event, drv);
|
2010-10-10 17:10:37 +02:00
|
|
|
nl_recvmsgs(handle, cb);
|
2009-02-12 19:11:43 +01:00
|
|
|
nl_cb_put(cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-09 21:11:14 +01:00
|
|
|
/**
|
|
|
|
* wpa_driver_nl80211_set_country - ask nl80211 to set the regulatory domain
|
|
|
|
* @priv: driver_nl80211 private data
|
|
|
|
* @alpha2_arg: country to which to switch to
|
|
|
|
* Returns: 0 on success, -1 on failure
|
|
|
|
*
|
|
|
|
* This asks nl80211 to set the regulatory domain for given
|
|
|
|
* country ISO / IEC alpha2.
|
|
|
|
*/
|
|
|
|
static int wpa_driver_nl80211_set_country(void *priv, const char *alpha2_arg)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2008-12-09 21:11:14 +01:00
|
|
|
char alpha2[3];
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
2009-04-09 19:01:25 +02:00
|
|
|
return -ENOMEM;
|
2008-12-09 21:11:14 +01:00
|
|
|
|
|
|
|
alpha2[0] = alpha2_arg[0];
|
|
|
|
alpha2[1] = alpha2_arg[1];
|
|
|
|
alpha2[2] = '\0';
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_REQ_SET_REG, 0);
|
|
|
|
|
|
|
|
NLA_PUT_STRING(msg, NL80211_ATTR_REG_ALPHA2, alpha2);
|
|
|
|
if (send_and_recv_msgs(drv, msg, NULL, NULL))
|
|
|
|
return -EINVAL;
|
|
|
|
return 0;
|
|
|
|
nla_put_failure:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-12 20:49:57 +01:00
|
|
|
struct wiphy_info_data {
|
|
|
|
int max_scan_ssids;
|
2011-09-27 21:21:30 +02:00
|
|
|
int max_sched_scan_ssids;
|
2009-03-25 10:38:47 +01:00
|
|
|
int ap_supported;
|
2011-01-31 20:49:48 +01:00
|
|
|
int p2p_supported;
|
2011-09-10 20:52:21 +02:00
|
|
|
int p2p_concurrent;
|
2009-09-03 19:36:09 +02:00
|
|
|
int auth_supported;
|
|
|
|
int connect_supported;
|
2010-12-29 13:05:34 +01:00
|
|
|
int offchan_tx_supported;
|
2011-02-01 17:18:32 +01:00
|
|
|
int max_remain_on_chan;
|
2011-09-26 13:26:55 +02:00
|
|
|
int firmware_roam;
|
2011-09-27 21:21:30 +02:00
|
|
|
int sched_scan_supported;
|
2011-09-27 21:21:36 +02:00
|
|
|
int max_match_sets;
|
2009-02-12 20:49:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int wiphy_info_handler(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
struct nlattr *tb[NL80211_ATTR_MAX + 1];
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
struct wiphy_info_data *info = arg;
|
2011-01-31 20:49:48 +01:00
|
|
|
int p2p_go_supported = 0, p2p_client_supported = 0;
|
2011-09-10 20:52:21 +02:00
|
|
|
static struct nla_policy
|
|
|
|
iface_combination_policy[NUM_NL80211_IFACE_COMB] = {
|
|
|
|
[NL80211_IFACE_COMB_LIMITS] = { .type = NLA_NESTED },
|
|
|
|
[NL80211_IFACE_COMB_MAXNUM] = { .type = NLA_U32 },
|
|
|
|
[NL80211_IFACE_COMB_STA_AP_BI_MATCH] = { .type = NLA_FLAG },
|
|
|
|
[NL80211_IFACE_COMB_NUM_CHANNELS] = { .type = NLA_U32 },
|
|
|
|
},
|
|
|
|
iface_limit_policy[NUM_NL80211_IFACE_LIMIT] = {
|
|
|
|
[NL80211_IFACE_LIMIT_TYPES] = { .type = NLA_NESTED },
|
|
|
|
[NL80211_IFACE_LIMIT_MAX] = { .type = NLA_U32 },
|
|
|
|
};
|
2009-02-12 20:49:57 +01:00
|
|
|
|
|
|
|
nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS])
|
|
|
|
info->max_scan_ssids =
|
|
|
|
nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS]);
|
|
|
|
|
2011-09-27 21:21:30 +02:00
|
|
|
if (tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS])
|
|
|
|
info->max_sched_scan_ssids =
|
|
|
|
nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS]);
|
|
|
|
|
2011-09-27 21:21:36 +02:00
|
|
|
if (tb[NL80211_ATTR_MAX_MATCH_SETS])
|
|
|
|
info->max_match_sets =
|
|
|
|
nla_get_u8(tb[NL80211_ATTR_MAX_MATCH_SETS]);
|
|
|
|
|
2009-03-25 10:38:47 +01:00
|
|
|
if (tb[NL80211_ATTR_SUPPORTED_IFTYPES]) {
|
|
|
|
struct nlattr *nl_mode;
|
|
|
|
int i;
|
|
|
|
nla_for_each_nested(nl_mode,
|
|
|
|
tb[NL80211_ATTR_SUPPORTED_IFTYPES], i) {
|
2011-02-22 20:48:49 +01:00
|
|
|
switch (nla_type(nl_mode)) {
|
2011-01-31 20:49:48 +01:00
|
|
|
case NL80211_IFTYPE_AP:
|
2009-03-25 10:38:47 +01:00
|
|
|
info->ap_supported = 1;
|
|
|
|
break;
|
2011-01-31 20:49:48 +01:00
|
|
|
case NL80211_IFTYPE_P2P_GO:
|
|
|
|
p2p_go_supported = 1;
|
|
|
|
break;
|
|
|
|
case NL80211_IFTYPE_P2P_CLIENT:
|
|
|
|
p2p_client_supported = 1;
|
|
|
|
break;
|
2009-03-25 10:38:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-10 20:52:21 +02:00
|
|
|
if (tb[NL80211_ATTR_INTERFACE_COMBINATIONS]) {
|
|
|
|
struct nlattr *nl_combi;
|
|
|
|
int rem_combi;
|
|
|
|
|
|
|
|
nla_for_each_nested(nl_combi,
|
|
|
|
tb[NL80211_ATTR_INTERFACE_COMBINATIONS],
|
|
|
|
rem_combi) {
|
|
|
|
struct nlattr *tb_comb[NUM_NL80211_IFACE_COMB];
|
|
|
|
struct nlattr *tb_limit[NUM_NL80211_IFACE_LIMIT];
|
|
|
|
struct nlattr *nl_limit, *nl_mode;
|
|
|
|
int err, rem_limit, rem_mode;
|
|
|
|
int combination_has_p2p = 0, combination_has_mgd = 0;
|
|
|
|
|
|
|
|
err = nla_parse_nested(tb_comb, MAX_NL80211_IFACE_COMB,
|
|
|
|
nl_combi,
|
|
|
|
iface_combination_policy);
|
|
|
|
if (err || !tb_comb[NL80211_IFACE_COMB_LIMITS] ||
|
|
|
|
!tb_comb[NL80211_IFACE_COMB_MAXNUM] ||
|
|
|
|
!tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS])
|
|
|
|
goto broken_combination;
|
|
|
|
|
|
|
|
nla_for_each_nested(nl_limit,
|
|
|
|
tb_comb[NL80211_IFACE_COMB_LIMITS],
|
|
|
|
rem_limit) {
|
|
|
|
err = nla_parse_nested(tb_limit,
|
|
|
|
MAX_NL80211_IFACE_LIMIT,
|
|
|
|
nl_limit,
|
|
|
|
iface_limit_policy);
|
|
|
|
if (err ||
|
|
|
|
!tb_limit[NL80211_IFACE_LIMIT_TYPES])
|
|
|
|
goto broken_combination;
|
|
|
|
|
|
|
|
nla_for_each_nested(
|
|
|
|
nl_mode,
|
|
|
|
tb_limit[NL80211_IFACE_LIMIT_TYPES],
|
|
|
|
rem_mode) {
|
|
|
|
int ift = nla_type(nl_mode);
|
|
|
|
if (ift == NL80211_IFTYPE_P2P_GO ||
|
|
|
|
ift == NL80211_IFTYPE_P2P_CLIENT)
|
|
|
|
combination_has_p2p = 1;
|
|
|
|
if (ift == NL80211_IFTYPE_STATION)
|
|
|
|
combination_has_mgd = 1;
|
|
|
|
}
|
|
|
|
if (combination_has_p2p && combination_has_mgd)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (combination_has_p2p && combination_has_mgd) {
|
|
|
|
info->p2p_concurrent = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
broken_combination:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-31 20:49:48 +01:00
|
|
|
info->p2p_supported = p2p_go_supported && p2p_client_supported;
|
|
|
|
|
2009-09-03 19:36:09 +02:00
|
|
|
if (tb[NL80211_ATTR_SUPPORTED_COMMANDS]) {
|
|
|
|
struct nlattr *nl_cmd;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
nla_for_each_nested(nl_cmd,
|
|
|
|
tb[NL80211_ATTR_SUPPORTED_COMMANDS], i) {
|
|
|
|
u32 cmd = nla_get_u32(nl_cmd);
|
|
|
|
if (cmd == NL80211_CMD_AUTHENTICATE)
|
|
|
|
info->auth_supported = 1;
|
|
|
|
else if (cmd == NL80211_CMD_CONNECT)
|
|
|
|
info->connect_supported = 1;
|
2011-09-27 21:21:30 +02:00
|
|
|
else if (cmd == NL80211_CMD_START_SCHED_SCAN)
|
|
|
|
info->sched_scan_supported = 1;
|
2009-09-03 19:36:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-29 13:05:34 +01:00
|
|
|
if (tb[NL80211_ATTR_OFFCHANNEL_TX_OK])
|
|
|
|
info->offchan_tx_supported = 1;
|
|
|
|
|
2011-09-26 13:26:55 +02:00
|
|
|
if (tb[NL80211_ATTR_ROAM_SUPPORT])
|
|
|
|
info->firmware_roam = 1;
|
|
|
|
|
2011-02-01 17:18:32 +01:00
|
|
|
if (tb[NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION])
|
|
|
|
info->max_remain_on_chan =
|
|
|
|
nla_get_u32(tb[NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION]);
|
|
|
|
|
2009-02-12 20:49:57 +01:00
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_get_info(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct wiphy_info_data *info)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
os_memset(info, 0, sizeof(*info));
|
2011-02-01 17:18:32 +01:00
|
|
|
|
|
|
|
/* default to 5000 since early versions of mac80211 don't set it */
|
|
|
|
info->max_remain_on_chan = 5000;
|
|
|
|
|
2009-02-12 20:49:57 +01:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_GET_WIPHY, 0);
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->first_bss.ifindex);
|
2009-02-12 20:49:57 +01:00
|
|
|
|
|
|
|
if (send_and_recv_msgs(drv, msg, wiphy_info_handler, info) == 0)
|
|
|
|
return 0;
|
|
|
|
msg = NULL;
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-03 19:36:09 +02:00
|
|
|
static int wpa_driver_nl80211_capa(struct wpa_driver_nl80211_data *drv)
|
2009-02-12 20:49:57 +01:00
|
|
|
{
|
|
|
|
struct wiphy_info_data info;
|
|
|
|
if (wpa_driver_nl80211_get_info(drv, &info))
|
2009-09-03 19:36:09 +02:00
|
|
|
return -1;
|
2009-02-12 20:49:57 +01:00
|
|
|
drv->has_capability = 1;
|
2009-03-31 13:25:15 +02:00
|
|
|
/* For now, assume TKIP, CCMP, WPA, WPA2 are supported */
|
|
|
|
drv->capa.key_mgmt = WPA_DRIVER_CAPA_KEY_MGMT_WPA |
|
|
|
|
WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
|
|
|
|
WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
|
|
|
|
WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK;
|
|
|
|
drv->capa.enc = WPA_DRIVER_CAPA_ENC_WEP40 |
|
|
|
|
WPA_DRIVER_CAPA_ENC_WEP104 |
|
|
|
|
WPA_DRIVER_CAPA_ENC_TKIP |
|
|
|
|
WPA_DRIVER_CAPA_ENC_CCMP;
|
2010-01-01 20:41:19 +01:00
|
|
|
drv->capa.auth = WPA_DRIVER_AUTH_OPEN |
|
|
|
|
WPA_DRIVER_AUTH_SHARED |
|
|
|
|
WPA_DRIVER_AUTH_LEAP;
|
2009-03-31 13:25:15 +02:00
|
|
|
|
2009-02-12 20:49:57 +01:00
|
|
|
drv->capa.max_scan_ssids = info.max_scan_ssids;
|
2011-09-27 21:21:30 +02:00
|
|
|
drv->capa.max_sched_scan_ssids = info.max_sched_scan_ssids;
|
|
|
|
drv->capa.sched_scan_supported = info.sched_scan_supported;
|
2011-09-27 21:21:36 +02:00
|
|
|
drv->capa.max_match_sets = info.max_match_sets;
|
2011-09-27 21:21:30 +02:00
|
|
|
|
2009-03-25 10:38:47 +01:00
|
|
|
if (info.ap_supported)
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_AP;
|
2009-09-03 19:36:09 +02:00
|
|
|
|
|
|
|
if (info.auth_supported)
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_SME;
|
|
|
|
else if (!info.connect_supported) {
|
|
|
|
wpa_printf(MSG_INFO, "nl80211: Driver does not support "
|
|
|
|
"authentication/association or connect commands");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-12-29 13:05:34 +01:00
|
|
|
if (info.offchan_tx_supported) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Using driver-based "
|
|
|
|
"off-channel TX");
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_OFFCHANNEL_TX;
|
|
|
|
}
|
|
|
|
|
2011-09-26 13:26:55 +02:00
|
|
|
if (info.firmware_roam) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Using driver-based roaming");
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_BSS_SELECTION;
|
|
|
|
}
|
|
|
|
|
2010-11-26 16:41:21 +01:00
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_SANE_ERROR_CODES;
|
2009-09-15 09:48:30 +02:00
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE;
|
2011-01-31 20:49:48 +01:00
|
|
|
if (info.p2p_supported)
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CAPABLE;
|
2011-09-10 20:52:21 +02:00
|
|
|
if (info.p2p_concurrent) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
|
|
|
|
"interface (driver advertised support)");
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
|
|
|
|
}
|
2011-03-29 16:36:06 +02:00
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
|
2011-08-28 22:07:02 +02:00
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS;
|
2011-02-01 17:18:32 +01:00
|
|
|
drv->capa.max_remain_on_chan = info.max_remain_on_chan;
|
2009-09-15 09:48:30 +02:00
|
|
|
|
2009-09-03 19:36:09 +02:00
|
|
|
return 0;
|
2009-02-12 20:49:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-11 11:55:51 +02:00
|
|
|
static int wpa_driver_nl80211_init_nl(struct wpa_driver_nl80211_data *drv)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2009-04-14 14:52:05 +02:00
|
|
|
int ret;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-04-14 14:52:05 +02:00
|
|
|
/* Initialize generic netlink and nl80211 */
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
drv->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
|
|
|
|
if (drv->nl_cb == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to allocate netlink "
|
|
|
|
"callbacks");
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
|
2010-10-10 16:47:15 +02:00
|
|
|
drv->nl_handle = nl80211_handle_alloc(drv->nl_cb);
|
2008-06-06 15:55:42 +02:00
|
|
|
if (drv->nl_handle == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to allocate netlink "
|
|
|
|
"callbacks");
|
|
|
|
goto err2;
|
|
|
|
}
|
|
|
|
|
2010-10-10 16:47:15 +02:00
|
|
|
drv->nl_handle_event = nl80211_handle_alloc(drv->nl_cb);
|
2009-08-26 11:10:50 +02:00
|
|
|
if (drv->nl_handle_event == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to allocate netlink "
|
|
|
|
"callbacks (event)");
|
|
|
|
goto err2b;
|
|
|
|
}
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
if (genl_connect(drv->nl_handle)) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to connect to generic "
|
|
|
|
"netlink");
|
|
|
|
goto err3;
|
|
|
|
}
|
|
|
|
|
2009-08-26 11:10:50 +02:00
|
|
|
if (genl_connect(drv->nl_handle_event)) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to connect to generic "
|
|
|
|
"netlink (event)");
|
|
|
|
goto err3;
|
|
|
|
}
|
|
|
|
|
2009-04-14 14:52:05 +02:00
|
|
|
if (genl_ctrl_alloc_cache(drv->nl_handle, &drv->nl_cache) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to allocate generic "
|
|
|
|
"netlink cache");
|
|
|
|
goto err3;
|
|
|
|
}
|
2009-08-26 11:10:50 +02:00
|
|
|
if (genl_ctrl_alloc_cache(drv->nl_handle_event, &drv->nl_cache_event) <
|
|
|
|
0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to allocate generic "
|
|
|
|
"netlink cache (event)");
|
|
|
|
goto err3b;
|
|
|
|
}
|
2009-04-14 14:52:05 +02:00
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
drv->nl80211 = genl_ctrl_search_by_name(drv->nl_cache, "nl80211");
|
|
|
|
if (drv->nl80211 == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: 'nl80211' generic netlink not "
|
|
|
|
"found");
|
|
|
|
goto err4;
|
|
|
|
}
|
|
|
|
|
2009-02-12 19:11:43 +01:00
|
|
|
ret = nl_get_multicast_id(drv, "nl80211", "scan");
|
|
|
|
if (ret >= 0)
|
2009-08-26 11:10:50 +02:00
|
|
|
ret = nl_socket_add_membership(drv->nl_handle_event, ret);
|
2009-02-12 19:11:43 +01:00
|
|
|
if (ret < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
|
|
|
|
"membership for scan events: %d (%s)",
|
|
|
|
ret, strerror(-ret));
|
|
|
|
goto err4;
|
|
|
|
}
|
2009-03-20 21:26:41 +01:00
|
|
|
|
|
|
|
ret = nl_get_multicast_id(drv, "nl80211", "mlme");
|
|
|
|
if (ret >= 0)
|
2009-08-26 11:10:50 +02:00
|
|
|
ret = nl_socket_add_membership(drv->nl_handle_event, ret);
|
2009-03-20 21:26:41 +01:00
|
|
|
if (ret < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
|
|
|
|
"membership for mlme events: %d (%s)",
|
|
|
|
ret, strerror(-ret));
|
|
|
|
goto err4;
|
|
|
|
}
|
|
|
|
|
2010-10-15 17:56:36 +02:00
|
|
|
ret = nl_get_multicast_id(drv, "nl80211", "regulatory");
|
|
|
|
if (ret >= 0)
|
|
|
|
ret = nl_socket_add_membership(drv->nl_handle_event, ret);
|
|
|
|
if (ret < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Could not add multicast "
|
|
|
|
"membership for regulatory events: %d (%s)",
|
|
|
|
ret, strerror(-ret));
|
|
|
|
/* Continue without regulatory events */
|
|
|
|
}
|
|
|
|
|
2009-08-26 11:10:50 +02:00
|
|
|
eloop_register_read_sock(nl_socket_get_fd(drv->nl_handle_event),
|
2010-10-10 17:10:37 +02:00
|
|
|
wpa_driver_nl80211_event_receive, drv,
|
|
|
|
drv->nl_handle_event);
|
2009-02-12 19:11:43 +01:00
|
|
|
|
2009-04-14 14:52:05 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err4:
|
2009-08-26 11:10:50 +02:00
|
|
|
nl_cache_free(drv->nl_cache_event);
|
|
|
|
err3b:
|
2009-04-14 14:52:05 +02:00
|
|
|
nl_cache_free(drv->nl_cache);
|
|
|
|
err3:
|
2010-10-10 16:47:15 +02:00
|
|
|
nl80211_handle_destroy(drv->nl_handle_event);
|
2009-08-26 11:10:50 +02:00
|
|
|
err2b:
|
2010-10-10 16:47:15 +02:00
|
|
|
nl80211_handle_destroy(drv->nl_handle);
|
2009-04-14 14:52:05 +02:00
|
|
|
err2:
|
|
|
|
nl_cb_put(drv->nl_cb);
|
|
|
|
err1:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-23 09:27:32 +02:00
|
|
|
static void wpa_driver_nl80211_rfkill_blocked(void *ctx)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: RFKILL blocked");
|
2010-05-31 17:00:27 +02:00
|
|
|
/*
|
|
|
|
* This may be for any interface; use ifdown event to disable
|
|
|
|
* interface.
|
|
|
|
*/
|
2010-05-23 09:27:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void wpa_driver_nl80211_rfkill_unblocked(void *ctx)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = ctx;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: RFKILL unblocked");
|
|
|
|
if (linux_set_iface_flags(drv->ioctl_sock, drv->first_bss.ifname, 1)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Could not set interface UP "
|
|
|
|
"after rfkill unblock");
|
|
|
|
return;
|
|
|
|
}
|
2010-05-31 17:00:27 +02:00
|
|
|
/* rtnetlink ifup handler will report interface as enabled */
|
2010-05-23 09:27:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-26 20:46:30 +01:00
|
|
|
static void nl80211_get_phy_name(struct wpa_driver_nl80211_data *drv)
|
|
|
|
{
|
|
|
|
/* Find phy (radio) to which this interface belongs */
|
|
|
|
char buf[90], *pos;
|
|
|
|
int f, rv;
|
|
|
|
|
|
|
|
drv->phyname[0] = '\0';
|
|
|
|
snprintf(buf, sizeof(buf) - 1, "/sys/class/net/%s/phy80211/name",
|
|
|
|
drv->first_bss.ifname);
|
|
|
|
f = open(buf, O_RDONLY);
|
|
|
|
if (f < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Could not open file %s: %s",
|
|
|
|
buf, strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = read(f, drv->phyname, sizeof(drv->phyname) - 1);
|
|
|
|
close(f);
|
|
|
|
if (rv < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Could not read file %s: %s",
|
|
|
|
buf, strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
drv->phyname[rv] = '\0';
|
|
|
|
pos = os_strchr(drv->phyname, '\n');
|
|
|
|
if (pos)
|
|
|
|
*pos = '\0';
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: interface %s in phy %s",
|
|
|
|
drv->first_bss.ifname, drv->phyname);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-09 13:04:53 +02:00
|
|
|
#ifdef CONFIG_AP
|
|
|
|
static void nl80211_l2_read(void *ctx, const u8 *src_addr, const u8 *buf,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: l2_packet read %u",
|
|
|
|
(unsigned int) len);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_AP */
|
|
|
|
|
|
|
|
|
2009-04-14 14:52:05 +02:00
|
|
|
/**
|
|
|
|
* wpa_driver_nl80211_init - Initialize nl80211 driver interface
|
|
|
|
* @ctx: context to be used when calling wpa_supplicant functions,
|
|
|
|
* e.g., wpa_supplicant_event()
|
|
|
|
* @ifname: interface name, e.g., wlan0
|
2010-11-26 17:14:51 +01:00
|
|
|
* @global_priv: private driver global data from global_init()
|
2009-04-14 14:52:05 +02:00
|
|
|
* Returns: Pointer to private data, %NULL on failure
|
|
|
|
*/
|
2010-11-26 17:14:51 +01:00
|
|
|
static void * wpa_driver_nl80211_init(void *ctx, const char *ifname,
|
|
|
|
void *global_priv)
|
2009-04-14 14:52:05 +02:00
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv;
|
2009-12-18 16:11:54 +01:00
|
|
|
struct netlink_config *cfg;
|
2010-05-23 09:27:32 +02:00
|
|
|
struct rfkill_config *rcfg;
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss;
|
2009-04-14 14:52:05 +02:00
|
|
|
|
|
|
|
drv = os_zalloc(sizeof(*drv));
|
|
|
|
if (drv == NULL)
|
|
|
|
return NULL;
|
2010-11-26 17:14:51 +01:00
|
|
|
drv->global = global_priv;
|
2009-04-14 14:52:05 +02:00
|
|
|
drv->ctx = ctx;
|
2010-03-06 21:22:56 +01:00
|
|
|
bss = &drv->first_bss;
|
|
|
|
bss->drv = drv;
|
|
|
|
os_strlcpy(bss->ifname, ifname, sizeof(bss->ifname));
|
2009-04-14 14:52:05 +02:00
|
|
|
drv->monitor_ifidx = -1;
|
|
|
|
drv->monitor_sock = -1;
|
2009-04-16 16:16:41 +02:00
|
|
|
drv->ioctl_sock = -1;
|
2011-07-17 19:22:11 +02:00
|
|
|
drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
|
2009-04-14 14:52:05 +02:00
|
|
|
|
2010-08-11 11:55:51 +02:00
|
|
|
if (wpa_driver_nl80211_init_nl(drv)) {
|
2009-04-16 16:16:41 +02:00
|
|
|
os_free(drv);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-04-14 14:52:05 +02:00
|
|
|
|
2010-11-26 20:46:30 +01:00
|
|
|
nl80211_get_phy_name(drv);
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
drv->ioctl_sock = socket(PF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (drv->ioctl_sock < 0) {
|
|
|
|
perror("socket(PF_INET,SOCK_DGRAM)");
|
2009-04-16 16:16:41 +02:00
|
|
|
goto failed;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
2009-12-18 16:11:54 +01:00
|
|
|
cfg = os_zalloc(sizeof(*cfg));
|
|
|
|
if (cfg == NULL)
|
|
|
|
goto failed;
|
|
|
|
cfg->ctx = drv;
|
|
|
|
cfg->newlink_cb = wpa_driver_nl80211_event_rtm_newlink;
|
|
|
|
cfg->dellink_cb = wpa_driver_nl80211_event_rtm_dellink;
|
|
|
|
drv->netlink = netlink_init(cfg);
|
|
|
|
if (drv->netlink == NULL) {
|
|
|
|
os_free(cfg);
|
|
|
|
goto failed;
|
|
|
|
}
|
2010-05-23 09:27:32 +02:00
|
|
|
|
|
|
|
rcfg = os_zalloc(sizeof(*rcfg));
|
|
|
|
if (rcfg == NULL)
|
|
|
|
goto failed;
|
|
|
|
rcfg->ctx = drv;
|
|
|
|
os_strlcpy(rcfg->ifname, ifname, sizeof(rcfg->ifname));
|
|
|
|
rcfg->blocked_cb = wpa_driver_nl80211_rfkill_blocked;
|
|
|
|
rcfg->unblocked_cb = wpa_driver_nl80211_rfkill_unblocked;
|
|
|
|
drv->rfkill = rfkill_init(rcfg);
|
2010-05-25 11:06:25 +02:00
|
|
|
if (drv->rfkill == NULL) {
|
2010-05-23 09:27:32 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: RFKILL status not available");
|
2010-05-25 11:06:25 +02:00
|
|
|
os_free(rcfg);
|
|
|
|
}
|
2010-05-23 09:27:32 +02:00
|
|
|
|
2009-12-18 16:11:54 +01:00
|
|
|
if (wpa_driver_nl80211_finish_drv_init(drv))
|
2009-04-16 16:16:41 +02:00
|
|
|
goto failed;
|
2008-08-15 16:55:16 +02:00
|
|
|
|
2011-08-09 13:04:53 +02:00
|
|
|
#ifdef CONFIG_AP
|
|
|
|
drv->l2 = l2_packet_init(ifname, NULL, ETH_P_EAPOL,
|
|
|
|
nl80211_l2_read, drv, 0);
|
|
|
|
#endif /* CONFIG_AP */
|
|
|
|
|
2011-03-22 14:52:04 +01:00
|
|
|
if (drv->global)
|
|
|
|
dl_list_add(&drv->global->interfaces, &drv->list);
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
return bss;
|
2008-08-15 16:55:16 +02:00
|
|
|
|
2009-04-16 16:16:41 +02:00
|
|
|
failed:
|
2010-05-23 09:27:32 +02:00
|
|
|
rfkill_deinit(drv->rfkill);
|
2009-12-18 16:11:54 +01:00
|
|
|
netlink_deinit(drv->netlink);
|
2009-04-16 16:16:41 +02:00
|
|
|
if (drv->ioctl_sock >= 0)
|
|
|
|
close(drv->ioctl_sock);
|
|
|
|
|
2008-08-15 16:55:16 +02:00
|
|
|
genl_family_put(drv->nl80211);
|
|
|
|
nl_cache_free(drv->nl_cache);
|
2010-10-10 16:47:15 +02:00
|
|
|
nl80211_handle_destroy(drv->nl_handle);
|
2008-08-15 16:55:16 +02:00
|
|
|
nl_cb_put(drv->nl_cb);
|
2010-03-06 21:37:48 +01:00
|
|
|
eloop_unregister_read_sock(nl_socket_get_fd(drv->nl_handle_event));
|
2009-04-16 16:16:41 +02:00
|
|
|
|
2008-08-15 16:55:16 +02:00
|
|
|
os_free(drv);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-10 16:55:18 +02:00
|
|
|
static int nl80211_register_frame(struct wpa_driver_nl80211_data *drv,
|
2010-10-10 17:10:37 +02:00
|
|
|
struct nl_handle *nl_handle,
|
2010-10-10 16:55:18 +02:00
|
|
|
u16 type, const u8 *match, size_t match_len)
|
2010-02-16 18:41:49 +01:00
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_REGISTER_ACTION, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
2010-10-10 16:55:18 +02:00
|
|
|
NLA_PUT_U16(msg, NL80211_ATTR_FRAME_TYPE, type);
|
2010-02-16 18:41:49 +01:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_FRAME_MATCH, match_len, match);
|
|
|
|
|
2010-10-10 17:10:37 +02:00
|
|
|
ret = send_and_recv(drv, nl_handle, msg, NULL, NULL);
|
2010-02-16 18:41:49 +01:00
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
2010-10-10 17:10:37 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Register frame command "
|
|
|
|
"failed (type=%u): ret=%d (%s)",
|
|
|
|
type, ret, strerror(-ret));
|
|
|
|
wpa_hexdump(MSG_DEBUG, "nl80211: Register frame match",
|
2010-02-16 18:41:49 +01:00
|
|
|
match, match_len);
|
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-10 16:55:18 +02:00
|
|
|
static int nl80211_register_action_frame(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const u8 *match, size_t match_len)
|
|
|
|
{
|
|
|
|
u16 type = (WLAN_FC_TYPE_MGMT << 2) | (WLAN_FC_STYPE_ACTION << 4);
|
2010-10-10 17:10:37 +02:00
|
|
|
return nl80211_register_frame(drv, drv->nl_handle_event,
|
|
|
|
type, match, match_len);
|
2010-10-10 16:55:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-16 18:41:49 +01:00
|
|
|
static int nl80211_register_action_frames(struct wpa_driver_nl80211_data *drv)
|
|
|
|
{
|
2011-09-08 19:52:23 +02:00
|
|
|
#if defined(CONFIG_P2P) || defined(CONFIG_INTERWORKING)
|
2010-07-18 23:30:25 +02:00
|
|
|
/* GAS Initial Request */
|
|
|
|
if (nl80211_register_action_frame(drv, (u8 *) "\x04\x0a", 2) < 0)
|
|
|
|
return -1;
|
|
|
|
/* GAS Initial Response */
|
|
|
|
if (nl80211_register_action_frame(drv, (u8 *) "\x04\x0b", 2) < 0)
|
|
|
|
return -1;
|
2010-06-28 18:24:17 +02:00
|
|
|
/* GAS Comeback Request */
|
|
|
|
if (nl80211_register_action_frame(drv, (u8 *) "\x04\x0c", 2) < 0)
|
|
|
|
return -1;
|
|
|
|
/* GAS Comeback Response */
|
|
|
|
if (nl80211_register_action_frame(drv, (u8 *) "\x04\x0d", 2) < 0)
|
|
|
|
return -1;
|
2011-09-08 19:52:23 +02:00
|
|
|
#endif /* CONFIG_P2P || CONFIG_INTERWORKING */
|
|
|
|
#ifdef CONFIG_P2P
|
2010-07-18 23:30:25 +02:00
|
|
|
/* P2P Public Action */
|
|
|
|
if (nl80211_register_action_frame(drv,
|
|
|
|
(u8 *) "\x04\x09\x50\x6f\x9a\x09",
|
|
|
|
6) < 0)
|
|
|
|
return -1;
|
|
|
|
/* P2P Action */
|
|
|
|
if (nl80211_register_action_frame(drv,
|
|
|
|
(u8 *) "\x7f\x50\x6f\x9a\x09",
|
|
|
|
5) < 0)
|
|
|
|
return -1;
|
|
|
|
#endif /* CONFIG_P2P */
|
2010-12-19 10:58:00 +01:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
/* SA Query Response */
|
|
|
|
if (nl80211_register_action_frame(drv, (u8 *) "\x08\x01", 2) < 0)
|
|
|
|
return -1;
|
|
|
|
#endif /* CONFIG_IEEE80211W */
|
2010-07-18 23:30:25 +02:00
|
|
|
|
2010-03-07 21:47:39 +01:00
|
|
|
/* FT Action frames */
|
|
|
|
if (nl80211_register_action_frame(drv, (u8 *) "\x06", 1) < 0)
|
|
|
|
return -1;
|
|
|
|
else
|
|
|
|
drv->capa.key_mgmt |= WPA_DRIVER_CAPA_KEY_MGMT_FT |
|
|
|
|
WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK;
|
|
|
|
|
2011-10-07 12:33:04 +02:00
|
|
|
/* WNM - BSS Transition Management Request */
|
|
|
|
if (nl80211_register_action_frame(drv, (u8 *) "\x0a\x07", 2) < 0)
|
|
|
|
return -1;
|
|
|
|
|
2010-02-16 18:41:49 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-05-23 09:27:32 +02:00
|
|
|
static void wpa_driver_nl80211_send_rfkill(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
|
|
|
wpa_supplicant_event(timeout_ctx, EVENT_INTERFACE_DISABLED, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-14 15:43:43 +01:00
|
|
|
static int
|
2008-08-15 16:55:16 +02:00
|
|
|
wpa_driver_nl80211_finish_drv_init(struct wpa_driver_nl80211_data *drv)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = &drv->first_bss;
|
2010-05-23 09:27:32 +02:00
|
|
|
int send_rfkill_event = 0;
|
2010-03-06 21:22:56 +01:00
|
|
|
|
|
|
|
drv->ifindex = if_nametoindex(bss->ifname);
|
|
|
|
drv->first_bss.ifindex = drv->ifindex;
|
2009-03-24 19:50:40 +01:00
|
|
|
|
2009-04-16 16:16:41 +02:00
|
|
|
#ifndef HOSTAPD
|
2011-07-17 19:03:25 +02:00
|
|
|
/*
|
|
|
|
* Make sure the interface starts up in station mode unless this is a
|
|
|
|
* dynamically added interface (e.g., P2P) that was already configured
|
|
|
|
* with proper iftype.
|
|
|
|
*/
|
|
|
|
if ((drv->global == NULL ||
|
|
|
|
drv->ifindex != drv->global->if_add_ifindex) &&
|
2011-07-17 19:22:11 +02:00
|
|
|
wpa_driver_nl80211_set_mode(bss, NL80211_IFTYPE_STATION) < 0) {
|
2011-10-20 20:36:36 +02:00
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Could not configure driver to "
|
2009-03-24 19:50:40 +01:00
|
|
|
"use managed mode");
|
2011-10-20 20:36:36 +02:00
|
|
|
return -1;
|
2009-03-24 19:50:40 +01:00
|
|
|
}
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
if (linux_set_iface_flags(drv->ioctl_sock, bss->ifname, 1)) {
|
2010-05-23 09:27:32 +02:00
|
|
|
if (rfkill_is_blocked(drv->rfkill)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Could not yet enable "
|
|
|
|
"interface '%s' due to rfkill",
|
|
|
|
bss->ifname);
|
2010-05-31 17:00:27 +02:00
|
|
|
drv->if_disabled = 1;
|
2010-05-23 09:27:32 +02:00
|
|
|
send_rfkill_event = 1;
|
|
|
|
} else {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Could not set "
|
|
|
|
"interface '%s' UP", bss->ifname);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-02-14 15:43:43 +01:00
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-12-18 16:11:54 +01:00
|
|
|
netlink_send_oper_ifla(drv->netlink, drv->ifindex,
|
2009-12-18 15:35:33 +01:00
|
|
|
1, IF_OPER_DORMANT);
|
2009-04-16 16:16:41 +02:00
|
|
|
#endif /* HOSTAPD */
|
2009-02-14 15:43:43 +01:00
|
|
|
|
2011-03-29 16:36:06 +02:00
|
|
|
if (wpa_driver_nl80211_capa(drv))
|
|
|
|
return -1;
|
|
|
|
|
2010-12-17 12:55:13 +01:00
|
|
|
if (linux_get_ifhwaddr(drv->ioctl_sock, bss->ifname, drv->addr))
|
|
|
|
return -1;
|
2010-11-26 17:14:51 +01:00
|
|
|
|
2010-03-07 21:47:39 +01:00
|
|
|
if (nl80211_register_action_frames(drv) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to register Action "
|
|
|
|
"frame processing - ignore for now");
|
|
|
|
/*
|
|
|
|
* Older kernel versions did not support this, so ignore the
|
|
|
|
* error for now. Some functionality may not be available
|
|
|
|
* because of this.
|
|
|
|
*/
|
|
|
|
}
|
2010-02-16 18:41:49 +01:00
|
|
|
|
2010-05-23 09:27:32 +02:00
|
|
|
if (send_rfkill_event) {
|
|
|
|
eloop_register_timeout(0, 0, wpa_driver_nl80211_send_rfkill,
|
|
|
|
drv, drv->ctx);
|
|
|
|
}
|
|
|
|
|
2009-02-14 15:43:43 +01:00
|
|
|
return 0;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-17 15:06:12 +02:00
|
|
|
static int wpa_driver_nl80211_del_beacon(struct wpa_driver_nl80211_data *drv)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_DEL_BEACON, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
/**
|
2009-01-03 19:38:42 +01:00
|
|
|
* wpa_driver_nl80211_deinit - Deinitialize nl80211 driver interface
|
|
|
|
* @priv: Pointer to private nl80211 data from wpa_driver_nl80211_init()
|
2008-06-06 15:55:42 +02:00
|
|
|
*
|
|
|
|
* Shut down driver interface and processing of driver events. Free
|
|
|
|
* private data buffer if one was allocated in wpa_driver_nl80211_init().
|
|
|
|
*/
|
2009-01-03 19:38:42 +01:00
|
|
|
static void wpa_driver_nl80211_deinit(void *priv)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2011-08-09 13:04:53 +02:00
|
|
|
#ifdef CONFIG_AP
|
|
|
|
if (drv->l2)
|
|
|
|
l2_packet_deinit(drv->l2);
|
|
|
|
#endif /* CONFIG_AP */
|
|
|
|
|
2010-10-10 17:10:37 +02:00
|
|
|
if (drv->nl_handle_preq)
|
|
|
|
wpa_driver_nl80211_probe_req_report(bss, 0);
|
2011-03-15 12:02:49 +01:00
|
|
|
if (bss->added_if_into_bridge) {
|
|
|
|
if (linux_br_del_if(drv->ioctl_sock, bss->brname, bss->ifname)
|
2010-01-16 14:19:58 +01:00
|
|
|
< 0)
|
|
|
|
wpa_printf(MSG_INFO, "nl80211: Failed to remove "
|
|
|
|
"interface %s from bridge %s: %s",
|
2011-03-15 12:02:49 +01:00
|
|
|
bss->ifname, bss->brname, strerror(errno));
|
2010-01-16 14:19:58 +01:00
|
|
|
}
|
2011-03-15 12:02:49 +01:00
|
|
|
if (bss->added_bridge) {
|
|
|
|
if (linux_br_del(drv->ioctl_sock, bss->brname) < 0)
|
2010-01-16 14:19:58 +01:00
|
|
|
wpa_printf(MSG_INFO, "nl80211: Failed to remove "
|
|
|
|
"bridge %s: %s",
|
2011-03-15 12:02:49 +01:00
|
|
|
bss->brname, strerror(errno));
|
2010-01-16 14:19:58 +01:00
|
|
|
}
|
|
|
|
|
2009-04-17 15:27:38 +02:00
|
|
|
nl80211_remove_monitor_interface(drv);
|
2009-04-17 15:06:12 +02:00
|
|
|
|
2011-07-17 19:22:11 +02:00
|
|
|
if (is_ap_interface(drv->nlmode))
|
2009-04-17 15:06:12 +02:00
|
|
|
wpa_driver_nl80211_del_beacon(drv);
|
2009-04-02 20:59:14 +02:00
|
|
|
|
2009-04-16 16:16:41 +02:00
|
|
|
#ifdef HOSTAPD
|
|
|
|
if (drv->last_freq_ht) {
|
|
|
|
/* Clear HT flags from the driver */
|
|
|
|
struct hostapd_freq_params freq;
|
|
|
|
os_memset(&freq, 0, sizeof(freq));
|
|
|
|
freq.freq = drv->last_freq;
|
|
|
|
i802_set_freq(priv, &freq);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (drv->eapol_sock >= 0) {
|
|
|
|
eloop_unregister_read_sock(drv->eapol_sock);
|
|
|
|
close(drv->eapol_sock);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (drv->if_indices != drv->default_if_indices)
|
|
|
|
os_free(drv->if_indices);
|
2009-12-13 20:49:53 +01:00
|
|
|
#endif /* HOSTAPD */
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2010-01-16 11:11:19 +01:00
|
|
|
if (drv->disable_11b_rates)
|
|
|
|
nl80211_disable_11b_rates(drv, drv->ifindex, 0);
|
|
|
|
|
2009-12-18 16:11:54 +01:00
|
|
|
netlink_send_oper_ifla(drv->netlink, drv->ifindex, 0, IF_OPER_UP);
|
|
|
|
netlink_deinit(drv->netlink);
|
2010-05-23 09:27:32 +02:00
|
|
|
rfkill_deinit(drv->rfkill);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-04-16 16:16:41 +02:00
|
|
|
eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
(void) linux_set_iface_flags(drv->ioctl_sock, bss->ifname, 0);
|
2011-07-17 19:22:11 +02:00
|
|
|
wpa_driver_nl80211_set_mode(bss, NL80211_IFTYPE_STATION);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-04-16 16:16:41 +02:00
|
|
|
if (drv->ioctl_sock >= 0)
|
|
|
|
close(drv->ioctl_sock);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-08-26 11:10:50 +02:00
|
|
|
eloop_unregister_read_sock(nl_socket_get_fd(drv->nl_handle_event));
|
2008-06-06 15:55:42 +02:00
|
|
|
genl_family_put(drv->nl80211);
|
|
|
|
nl_cache_free(drv->nl_cache);
|
2009-08-26 11:10:50 +02:00
|
|
|
nl_cache_free(drv->nl_cache_event);
|
2010-10-10 16:47:15 +02:00
|
|
|
nl80211_handle_destroy(drv->nl_handle);
|
|
|
|
nl80211_handle_destroy(drv->nl_handle_event);
|
2008-06-06 15:55:42 +02:00
|
|
|
nl_cb_put(drv->nl_cb);
|
|
|
|
|
2010-03-05 20:42:06 +01:00
|
|
|
os_free(drv->filter_ssids);
|
|
|
|
|
2010-11-26 17:14:51 +01:00
|
|
|
if (drv->global)
|
|
|
|
dl_list_del(&drv->list);
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
os_free(drv);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wpa_driver_nl80211_scan_timeout - Scan timeout to report scan completion
|
2009-04-16 15:22:40 +02:00
|
|
|
* @eloop_ctx: Driver private data
|
2008-06-06 15:55:42 +02:00
|
|
|
* @timeout_ctx: ctx argument given to wpa_driver_nl80211_init()
|
|
|
|
*
|
|
|
|
* This function can be used as registered timeout when starting a scan to
|
|
|
|
* generate a scan completed event if the driver does not report this.
|
|
|
|
*/
|
|
|
|
static void wpa_driver_nl80211_scan_timeout(void *eloop_ctx, void *timeout_ctx)
|
|
|
|
{
|
2009-04-16 15:22:40 +02:00
|
|
|
struct wpa_driver_nl80211_data *drv = eloop_ctx;
|
2011-07-17 19:22:11 +02:00
|
|
|
if (drv->ap_scan_as_station != NL80211_IFTYPE_UNSPECIFIED) {
|
2010-03-06 21:22:56 +01:00
|
|
|
wpa_driver_nl80211_set_mode(&drv->first_bss,
|
2011-07-17 19:22:11 +02:00
|
|
|
drv->ap_scan_as_station);
|
|
|
|
drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
|
2009-04-16 15:22:40 +02:00
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "Scan timeout - try to get results");
|
|
|
|
wpa_supplicant_event(timeout_ctx, EVENT_SCAN_RESULTS, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wpa_driver_nl80211_scan - Request the driver to initiate scan
|
2009-04-16 15:22:40 +02:00
|
|
|
* @priv: Pointer to private driver data from wpa_driver_nl80211_init()
|
2009-02-14 20:17:46 +01:00
|
|
|
* @params: Scan parameters
|
2008-06-06 15:55:42 +02:00
|
|
|
* Returns: 0 on success, -1 on failure
|
|
|
|
*/
|
2009-02-14 20:17:46 +01:00
|
|
|
static int wpa_driver_nl80211_scan(void *priv,
|
|
|
|
struct wpa_driver_scan_params *params)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2008-06-06 15:55:42 +02:00
|
|
|
int ret = 0, timeout;
|
2011-09-10 21:40:30 +02:00
|
|
|
struct nl_msg *msg, *ssids, *freqs, *rates;
|
2009-02-14 20:17:46 +01:00
|
|
|
size_t i;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-02-12 15:20:22 +01:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
ssids = nlmsg_alloc();
|
2009-03-26 20:55:01 +01:00
|
|
|
freqs = nlmsg_alloc();
|
2011-09-10 21:40:30 +02:00
|
|
|
rates = nlmsg_alloc();
|
|
|
|
if (!msg || !ssids || !freqs || !rates) {
|
2009-02-12 15:20:22 +01:00
|
|
|
nlmsg_free(msg);
|
|
|
|
nlmsg_free(ssids);
|
2009-03-26 20:55:01 +01:00
|
|
|
nlmsg_free(freqs);
|
2011-09-10 21:40:30 +02:00
|
|
|
nlmsg_free(rates);
|
2008-06-06 15:55:42 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-03-05 20:42:06 +01:00
|
|
|
os_free(drv->filter_ssids);
|
|
|
|
drv->filter_ssids = params->filter_ssids;
|
|
|
|
params->filter_ssids = NULL;
|
|
|
|
drv->num_filter_ssids = params->num_filter_ssids;
|
|
|
|
|
2009-02-12 15:20:22 +01:00
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_TRIGGER_SCAN, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-02-14 20:17:46 +01:00
|
|
|
for (i = 0; i < params->num_ssids; i++) {
|
2010-03-27 06:22:38 +01:00
|
|
|
wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Scan SSID",
|
|
|
|
params->ssids[i].ssid,
|
|
|
|
params->ssids[i].ssid_len);
|
2009-02-14 20:17:46 +01:00
|
|
|
NLA_PUT(ssids, i + 1, params->ssids[i].ssid_len,
|
|
|
|
params->ssids[i].ssid);
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
2009-02-14 20:17:46 +01:00
|
|
|
if (params->num_ssids)
|
|
|
|
nla_put_nested(msg, NL80211_ATTR_SCAN_SSIDS, ssids);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-02-18 11:49:25 +01:00
|
|
|
if (params->extra_ies) {
|
2010-03-27 06:22:38 +01:00
|
|
|
wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Scan extra IEs",
|
|
|
|
params->extra_ies, params->extra_ies_len);
|
2009-02-18 11:49:25 +01:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE, params->extra_ies_len,
|
|
|
|
params->extra_ies);
|
|
|
|
}
|
|
|
|
|
2009-03-26 20:55:01 +01:00
|
|
|
if (params->freqs) {
|
2010-03-27 06:22:38 +01:00
|
|
|
for (i = 0; params->freqs[i]; i++) {
|
|
|
|
wpa_printf(MSG_MSGDUMP, "nl80211: Scan frequency %u "
|
|
|
|
"MHz", params->freqs[i]);
|
2009-03-26 20:55:01 +01:00
|
|
|
NLA_PUT_U32(freqs, i + 1, params->freqs[i]);
|
2010-03-27 06:22:38 +01:00
|
|
|
}
|
2009-03-26 20:55:01 +01:00
|
|
|
nla_put_nested(msg, NL80211_ATTR_SCAN_FREQUENCIES, freqs);
|
|
|
|
}
|
|
|
|
|
2011-09-10 21:40:30 +02:00
|
|
|
if (params->p2p_probe) {
|
|
|
|
/*
|
|
|
|
* Remove 2.4 GHz rates 1, 2, 5.5, 11 Mbps from supported rates
|
|
|
|
* by masking out everything else apart from the OFDM rates 6,
|
|
|
|
* 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS rates. All 5 GHz
|
|
|
|
* rates are left enabled.
|
|
|
|
*/
|
|
|
|
NLA_PUT(rates, NL80211_BAND_2GHZ, 8,
|
|
|
|
"\x0c\x12\x18\x24\x30\x48\x60\x6c");
|
|
|
|
nla_put_nested(msg, NL80211_ATTR_SCAN_SUPP_RATES, rates);
|
|
|
|
}
|
|
|
|
|
2009-02-12 15:20:22 +01:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Scan trigger failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
2009-04-16 15:22:40 +02:00
|
|
|
#ifdef HOSTAPD
|
2011-07-17 19:22:11 +02:00
|
|
|
if (is_ap_interface(drv->nlmode)) {
|
2009-04-16 15:22:40 +02:00
|
|
|
/*
|
|
|
|
* mac80211 does not allow scan requests in AP mode, so
|
|
|
|
* try to do this in station mode.
|
|
|
|
*/
|
2011-07-17 19:22:11 +02:00
|
|
|
if (wpa_driver_nl80211_set_mode(
|
|
|
|
bss, NL80211_IFTYPE_STATION))
|
2009-04-16 15:22:40 +02:00
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
if (wpa_driver_nl80211_scan(drv, params)) {
|
2011-07-17 19:22:11 +02:00
|
|
|
wpa_driver_nl80211_set_mode(bss, drv->nlmode);
|
2009-04-16 15:22:40 +02:00
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Restore AP mode when processing scan results */
|
2011-07-17 19:22:11 +02:00
|
|
|
drv->ap_scan_as_station = drv->nlmode;
|
2009-04-16 15:22:40 +02:00
|
|
|
ret = 0;
|
|
|
|
} else
|
|
|
|
goto nla_put_failure;
|
|
|
|
#else /* HOSTAPD */
|
2009-02-12 15:20:22 +01:00
|
|
|
goto nla_put_failure;
|
2009-04-16 15:22:40 +02:00
|
|
|
#endif /* HOSTAPD */
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Not all drivers generate "scan completed" wireless event, so try to
|
|
|
|
* read results after a timeout. */
|
2009-02-12 15:20:22 +01:00
|
|
|
timeout = 10;
|
2008-06-06 15:55:42 +02:00
|
|
|
if (drv->scan_complete_events) {
|
|
|
|
/*
|
2009-02-18 11:49:25 +01:00
|
|
|
* The driver seems to deliver events to notify when scan is
|
|
|
|
* complete, so use longer timeout to avoid race conditions
|
|
|
|
* with scanning and following association request.
|
2008-06-06 15:55:42 +02:00
|
|
|
*/
|
|
|
|
timeout = 30;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "Scan requested (ret=%d) - scan timeout %d "
|
|
|
|
"seconds", ret, timeout);
|
|
|
|
eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
|
2009-02-12 15:20:22 +01:00
|
|
|
eloop_register_timeout(timeout, 0, wpa_driver_nl80211_scan_timeout,
|
|
|
|
drv, drv->ctx);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-02-12 15:20:22 +01:00
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(ssids);
|
|
|
|
nlmsg_free(msg);
|
2009-03-26 20:55:01 +01:00
|
|
|
nlmsg_free(freqs);
|
2011-09-10 21:40:30 +02:00
|
|
|
nlmsg_free(rates);
|
2008-06-06 15:55:42 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-27 21:21:30 +02:00
|
|
|
/**
|
|
|
|
* wpa_driver_nl80211_sched_scan - Initiate a scheduled scan
|
|
|
|
* @priv: Pointer to private driver data from wpa_driver_nl80211_init()
|
|
|
|
* @params: Scan parameters
|
|
|
|
* @interval: Interval between scan cycles in milliseconds
|
|
|
|
* Returns: 0 on success, -1 on failure or if not supported
|
|
|
|
*/
|
|
|
|
static int wpa_driver_nl80211_sched_scan(void *priv,
|
|
|
|
struct wpa_driver_scan_params *params,
|
|
|
|
u32 interval)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
int ret = 0;
|
2011-09-27 21:21:36 +02:00
|
|
|
struct nl_msg *msg, *ssids, *freqs, *match_set_ssid, *match_sets;
|
2011-09-27 21:21:30 +02:00
|
|
|
size_t i;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
ssids = nlmsg_alloc();
|
|
|
|
freqs = nlmsg_alloc();
|
|
|
|
if (!msg || !ssids || !freqs) {
|
|
|
|
nlmsg_free(msg);
|
|
|
|
nlmsg_free(ssids);
|
|
|
|
nlmsg_free(freqs);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_free(drv->filter_ssids);
|
|
|
|
drv->filter_ssids = params->filter_ssids;
|
|
|
|
params->filter_ssids = NULL;
|
|
|
|
drv->num_filter_ssids = params->num_filter_ssids;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_START_SCHED_SCAN, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_SCHED_SCAN_INTERVAL, interval);
|
|
|
|
|
2011-09-27 21:21:36 +02:00
|
|
|
if (drv->num_filter_ssids) {
|
|
|
|
match_sets = nlmsg_alloc();
|
|
|
|
|
|
|
|
for (i = 0; i < drv->num_filter_ssids; i++) {
|
|
|
|
wpa_hexdump_ascii(MSG_MSGDUMP,
|
|
|
|
"nl80211: Sched scan filter SSID",
|
|
|
|
drv->filter_ssids[i].ssid,
|
|
|
|
drv->filter_ssids[i].ssid_len);
|
|
|
|
|
|
|
|
match_set_ssid = nlmsg_alloc();
|
|
|
|
nla_put(match_set_ssid,
|
|
|
|
NL80211_ATTR_SCHED_SCAN_MATCH_SSID,
|
|
|
|
drv->filter_ssids[i].ssid_len,
|
|
|
|
drv->filter_ssids[i].ssid);
|
|
|
|
|
|
|
|
nla_put_nested(match_sets, i + 1, match_set_ssid);
|
|
|
|
|
|
|
|
nlmsg_free(match_set_ssid);
|
|
|
|
}
|
|
|
|
|
|
|
|
nla_put_nested(msg, NL80211_ATTR_SCHED_SCAN_MATCH,
|
|
|
|
match_sets);
|
|
|
|
nlmsg_free(match_sets);
|
|
|
|
}
|
|
|
|
|
2011-09-27 21:21:30 +02:00
|
|
|
for (i = 0; i < params->num_ssids; i++) {
|
|
|
|
wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Sched scan SSID",
|
|
|
|
params->ssids[i].ssid,
|
|
|
|
params->ssids[i].ssid_len);
|
|
|
|
NLA_PUT(ssids, i + 1, params->ssids[i].ssid_len,
|
|
|
|
params->ssids[i].ssid);
|
|
|
|
}
|
|
|
|
if (params->num_ssids)
|
|
|
|
nla_put_nested(msg, NL80211_ATTR_SCAN_SSIDS, ssids);
|
|
|
|
|
|
|
|
if (params->extra_ies) {
|
|
|
|
wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Sched scan extra IEs",
|
|
|
|
params->extra_ies, params->extra_ies_len);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE, params->extra_ies_len,
|
|
|
|
params->extra_ies);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params->freqs) {
|
|
|
|
for (i = 0; params->freqs[i]; i++) {
|
|
|
|
wpa_printf(MSG_MSGDUMP, "nl80211: Scan frequency %u "
|
|
|
|
"MHz", params->freqs[i]);
|
|
|
|
NLA_PUT_U32(freqs, i + 1, params->freqs[i]);
|
|
|
|
}
|
|
|
|
nla_put_nested(msg, NL80211_ATTR_SCAN_FREQUENCIES, freqs);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
|
|
|
|
/* TODO: if we get an error here, we should fall back to normal scan */
|
|
|
|
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Sched scan start failed: "
|
|
|
|
"ret=%d (%s)", ret, strerror(-ret));
|
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Sched scan requested (ret=%d) - "
|
|
|
|
"scan interval %d msec", ret, interval);
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(ssids);
|
|
|
|
nlmsg_free(msg);
|
|
|
|
nlmsg_free(freqs);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wpa_driver_nl80211_stop_sched_scan - Stop a scheduled scan
|
|
|
|
* @priv: Pointer to private driver data from wpa_driver_nl80211_init()
|
|
|
|
* Returns: 0 on success, -1 on failure or if not supported
|
|
|
|
*/
|
|
|
|
static int wpa_driver_nl80211_stop_sched_scan(void *priv)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
int ret = 0;
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_STOP_SCHED_SCAN, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop failed: "
|
|
|
|
"ret=%d (%s)", ret, strerror(-ret));
|
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop sent (ret=%d)", ret);
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-05 20:42:06 +01:00
|
|
|
static const u8 * nl80211_get_ie(const u8 *ies, size_t ies_len, u8 ie)
|
|
|
|
{
|
|
|
|
const u8 *end, *pos;
|
|
|
|
|
|
|
|
if (ies == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
pos = ies;
|
|
|
|
end = ies + ies_len;
|
|
|
|
|
|
|
|
while (pos + 1 < end) {
|
|
|
|
if (pos + 2 + pos[1] > end)
|
|
|
|
break;
|
|
|
|
if (pos[0] == ie)
|
|
|
|
return pos;
|
|
|
|
pos += 2 + pos[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl80211_scan_filtered(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const u8 *ie, size_t ie_len)
|
|
|
|
{
|
|
|
|
const u8 *ssid;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (drv->filter_ssids == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ssid = nl80211_get_ie(ie, ie_len, WLAN_EID_SSID);
|
|
|
|
if (ssid == NULL)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
for (i = 0; i < drv->num_filter_ssids; i++) {
|
|
|
|
if (ssid[1] == drv->filter_ssids[i].ssid_len &&
|
|
|
|
os_memcmp(ssid + 2, drv->filter_ssids[i].ssid, ssid[1]) ==
|
|
|
|
0)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-12 16:12:58 +01:00
|
|
|
static int bss_info_handler(struct nl_msg *msg, void *arg)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2009-02-12 16:12:58 +01:00
|
|
|
struct nlattr *tb[NL80211_ATTR_MAX + 1];
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
struct nlattr *bss[NL80211_BSS_MAX + 1];
|
|
|
|
static struct nla_policy bss_policy[NL80211_BSS_MAX + 1] = {
|
|
|
|
[NL80211_BSS_BSSID] = { .type = NLA_UNSPEC },
|
|
|
|
[NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
|
|
|
|
[NL80211_BSS_TSF] = { .type = NLA_U64 },
|
|
|
|
[NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 },
|
|
|
|
[NL80211_BSS_CAPABILITY] = { .type = NLA_U16 },
|
|
|
|
[NL80211_BSS_INFORMATION_ELEMENTS] = { .type = NLA_UNSPEC },
|
|
|
|
[NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 },
|
|
|
|
[NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 },
|
2009-12-02 15:45:31 +01:00
|
|
|
[NL80211_BSS_STATUS] = { .type = NLA_U32 },
|
2009-10-01 16:53:22 +02:00
|
|
|
[NL80211_BSS_SEEN_MS_AGO] = { .type = NLA_U32 },
|
2010-01-16 15:11:05 +01:00
|
|
|
[NL80211_BSS_BEACON_IES] = { .type = NLA_UNSPEC },
|
2009-02-12 16:12:58 +01:00
|
|
|
};
|
2010-03-05 20:42:06 +01:00
|
|
|
struct nl80211_bss_info_arg *_arg = arg;
|
|
|
|
struct wpa_scan_results *res = _arg->res;
|
2008-06-06 15:55:42 +02:00
|
|
|
struct wpa_scan_res **tmp;
|
|
|
|
struct wpa_scan_res *r;
|
2010-01-16 15:11:05 +01:00
|
|
|
const u8 *ie, *beacon_ie;
|
|
|
|
size_t ie_len, beacon_ie_len;
|
|
|
|
u8 *pos;
|
2011-05-16 18:18:42 +02:00
|
|
|
size_t i;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-02-12 16:12:58 +01:00
|
|
|
nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
if (!tb[NL80211_ATTR_BSS])
|
|
|
|
return NL_SKIP;
|
|
|
|
if (nla_parse_nested(bss, NL80211_BSS_MAX, tb[NL80211_ATTR_BSS],
|
|
|
|
bss_policy))
|
|
|
|
return NL_SKIP;
|
2011-05-16 17:35:42 +02:00
|
|
|
if (bss[NL80211_BSS_STATUS]) {
|
|
|
|
enum nl80211_bss_status status;
|
|
|
|
status = nla_get_u32(bss[NL80211_BSS_STATUS]);
|
|
|
|
if (status == NL80211_BSS_STATUS_ASSOCIATED &&
|
|
|
|
bss[NL80211_BSS_FREQUENCY]) {
|
|
|
|
_arg->assoc_freq =
|
|
|
|
nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Associated on %u MHz",
|
|
|
|
_arg->assoc_freq);
|
|
|
|
}
|
2011-09-18 20:26:55 +02:00
|
|
|
if (status == NL80211_BSS_STATUS_ASSOCIATED &&
|
|
|
|
bss[NL80211_BSS_BSSID]) {
|
|
|
|
os_memcpy(_arg->assoc_bssid,
|
|
|
|
nla_data(bss[NL80211_BSS_BSSID]), ETH_ALEN);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Associated with "
|
|
|
|
MACSTR, MAC2STR(_arg->assoc_bssid));
|
|
|
|
}
|
2011-05-16 17:35:42 +02:00
|
|
|
}
|
|
|
|
if (!res)
|
|
|
|
return NL_SKIP;
|
2009-02-12 16:12:58 +01:00
|
|
|
if (bss[NL80211_BSS_INFORMATION_ELEMENTS]) {
|
|
|
|
ie = nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
|
|
|
|
ie_len = nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
|
|
|
|
} else {
|
|
|
|
ie = NULL;
|
|
|
|
ie_len = 0;
|
|
|
|
}
|
2010-01-16 15:11:05 +01:00
|
|
|
if (bss[NL80211_BSS_BEACON_IES]) {
|
|
|
|
beacon_ie = nla_data(bss[NL80211_BSS_BEACON_IES]);
|
|
|
|
beacon_ie_len = nla_len(bss[NL80211_BSS_BEACON_IES]);
|
|
|
|
} else {
|
|
|
|
beacon_ie = NULL;
|
|
|
|
beacon_ie_len = 0;
|
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2010-03-05 20:42:06 +01:00
|
|
|
if (nl80211_scan_filtered(_arg->drv, ie ? ie : beacon_ie,
|
|
|
|
ie ? ie_len : beacon_ie_len))
|
|
|
|
return NL_SKIP;
|
|
|
|
|
2010-01-16 15:11:05 +01:00
|
|
|
r = os_zalloc(sizeof(*r) + ie_len + beacon_ie_len);
|
2008-06-06 15:55:42 +02:00
|
|
|
if (r == NULL)
|
2009-02-12 16:12:58 +01:00
|
|
|
return NL_SKIP;
|
|
|
|
if (bss[NL80211_BSS_BSSID])
|
|
|
|
os_memcpy(r->bssid, nla_data(bss[NL80211_BSS_BSSID]),
|
|
|
|
ETH_ALEN);
|
|
|
|
if (bss[NL80211_BSS_FREQUENCY])
|
|
|
|
r->freq = nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
|
|
|
|
if (bss[NL80211_BSS_BEACON_INTERVAL])
|
|
|
|
r->beacon_int = nla_get_u16(bss[NL80211_BSS_BEACON_INTERVAL]);
|
|
|
|
if (bss[NL80211_BSS_CAPABILITY])
|
|
|
|
r->caps = nla_get_u16(bss[NL80211_BSS_CAPABILITY]);
|
2009-02-18 12:40:38 +01:00
|
|
|
r->flags |= WPA_SCAN_NOISE_INVALID;
|
|
|
|
if (bss[NL80211_BSS_SIGNAL_MBM]) {
|
2009-02-12 16:12:58 +01:00
|
|
|
r->level = nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM]);
|
2009-02-18 12:40:38 +01:00
|
|
|
r->level /= 100; /* mBm to dBm */
|
|
|
|
r->flags |= WPA_SCAN_LEVEL_DBM | WPA_SCAN_QUAL_INVALID;
|
|
|
|
} else if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
|
|
|
|
r->level = nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]);
|
|
|
|
r->flags |= WPA_SCAN_LEVEL_INVALID;
|
|
|
|
} else
|
|
|
|
r->flags |= WPA_SCAN_LEVEL_INVALID | WPA_SCAN_QUAL_INVALID;
|
2009-02-12 16:12:58 +01:00
|
|
|
if (bss[NL80211_BSS_TSF])
|
|
|
|
r->tsf = nla_get_u64(bss[NL80211_BSS_TSF]);
|
2009-10-01 16:53:22 +02:00
|
|
|
if (bss[NL80211_BSS_SEEN_MS_AGO])
|
|
|
|
r->age = nla_get_u32(bss[NL80211_BSS_SEEN_MS_AGO]);
|
2009-02-12 16:12:58 +01:00
|
|
|
r->ie_len = ie_len;
|
2010-01-16 15:11:05 +01:00
|
|
|
pos = (u8 *) (r + 1);
|
|
|
|
if (ie) {
|
|
|
|
os_memcpy(pos, ie, ie_len);
|
|
|
|
pos += ie_len;
|
|
|
|
}
|
|
|
|
r->beacon_ie_len = beacon_ie_len;
|
|
|
|
if (beacon_ie)
|
|
|
|
os_memcpy(pos, beacon_ie, beacon_ie_len);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-12-02 15:45:31 +01:00
|
|
|
if (bss[NL80211_BSS_STATUS]) {
|
|
|
|
enum nl80211_bss_status status;
|
|
|
|
status = nla_get_u32(bss[NL80211_BSS_STATUS]);
|
|
|
|
switch (status) {
|
|
|
|
case NL80211_BSS_STATUS_AUTHENTICATED:
|
|
|
|
r->flags |= WPA_SCAN_AUTHENTICATED;
|
|
|
|
break;
|
|
|
|
case NL80211_BSS_STATUS_ASSOCIATED:
|
|
|
|
r->flags |= WPA_SCAN_ASSOCIATED;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-16 18:18:42 +02:00
|
|
|
/*
|
|
|
|
* cfg80211 maintains separate BSS table entries for APs if the same
|
|
|
|
* BSSID,SSID pair is seen on multiple channels. wpa_supplicant does
|
|
|
|
* not use frequency as a separate key in the BSS table, so filter out
|
|
|
|
* duplicated entries. Prefer associated BSS entry in such a case in
|
|
|
|
* order to get the correct frequency into the BSS table.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < res->num; i++) {
|
|
|
|
const u8 *s1, *s2;
|
|
|
|
if (os_memcmp(res->res[i]->bssid, r->bssid, ETH_ALEN) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
s1 = nl80211_get_ie((u8 *) (res->res[i] + 1),
|
|
|
|
res->res[i]->ie_len, WLAN_EID_SSID);
|
|
|
|
s2 = nl80211_get_ie((u8 *) (r + 1), r->ie_len, WLAN_EID_SSID);
|
|
|
|
if (s1 == NULL || s2 == NULL || s1[1] != s2[1] ||
|
|
|
|
os_memcmp(s1, s2, 2 + s1[1]) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Same BSSID,SSID was already included in scan results */
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Remove duplicated scan result "
|
|
|
|
"for " MACSTR, MAC2STR(r->bssid));
|
|
|
|
|
|
|
|
if ((r->flags & WPA_SCAN_ASSOCIATED) &&
|
|
|
|
!(res->res[i]->flags & WPA_SCAN_ASSOCIATED)) {
|
|
|
|
os_free(res->res[i]);
|
|
|
|
res->res[i] = r;
|
|
|
|
} else
|
|
|
|
os_free(r);
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
tmp = os_realloc(res->res,
|
|
|
|
(res->num + 1) * sizeof(struct wpa_scan_res *));
|
|
|
|
if (tmp == NULL) {
|
|
|
|
os_free(r);
|
2009-02-12 16:12:58 +01:00
|
|
|
return NL_SKIP;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
tmp[res->num++] = r;
|
|
|
|
res->res = tmp;
|
2009-02-12 16:12:58 +01:00
|
|
|
|
|
|
|
return NL_SKIP;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
2009-02-12 16:12:58 +01:00
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-12-02 16:54:57 +01:00
|
|
|
static void clear_state_mismatch(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const u8 *addr)
|
|
|
|
{
|
|
|
|
if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Clear possible state "
|
2010-01-25 03:07:34 +01:00
|
|
|
"mismatch (" MACSTR ")", MAC2STR(addr));
|
2009-12-02 16:54:57 +01:00
|
|
|
wpa_driver_nl80211_mlme(drv, addr,
|
|
|
|
NL80211_CMD_DEAUTHENTICATE,
|
2010-04-08 10:31:37 +02:00
|
|
|
WLAN_REASON_PREV_AUTH_NOT_VALID, 1);
|
2009-12-02 16:54:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-02 15:45:31 +01:00
|
|
|
static void wpa_driver_nl80211_check_bss_status(
|
|
|
|
struct wpa_driver_nl80211_data *drv, struct wpa_scan_results *res)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < res->num; i++) {
|
|
|
|
struct wpa_scan_res *r = res->res[i];
|
|
|
|
if (r->flags & WPA_SCAN_AUTHENTICATED) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Scan results "
|
|
|
|
"indicates BSS status with " MACSTR
|
|
|
|
" as authenticated",
|
|
|
|
MAC2STR(r->bssid));
|
2011-07-17 19:22:11 +02:00
|
|
|
if (is_sta_interface(drv->nlmode) &&
|
2009-12-02 15:45:31 +01:00
|
|
|
os_memcmp(r->bssid, drv->bssid, ETH_ALEN) != 0 &&
|
|
|
|
os_memcmp(r->bssid, drv->auth_bssid, ETH_ALEN) !=
|
|
|
|
0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Unknown BSSID"
|
|
|
|
" in local state (auth=" MACSTR
|
|
|
|
" assoc=" MACSTR ")",
|
|
|
|
MAC2STR(drv->auth_bssid),
|
|
|
|
MAC2STR(drv->bssid));
|
2010-01-25 03:07:34 +01:00
|
|
|
clear_state_mismatch(drv, r->bssid);
|
2009-12-02 15:45:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r->flags & WPA_SCAN_ASSOCIATED) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Scan results "
|
|
|
|
"indicate BSS status with " MACSTR
|
|
|
|
" as associated",
|
|
|
|
MAC2STR(r->bssid));
|
2011-07-17 19:22:11 +02:00
|
|
|
if (is_sta_interface(drv->nlmode) &&
|
2009-12-02 15:45:31 +01:00
|
|
|
!drv->associated) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Local state "
|
|
|
|
"(not associated) does not match "
|
|
|
|
"with BSS state");
|
2009-12-02 16:54:57 +01:00
|
|
|
clear_state_mismatch(drv, r->bssid);
|
2011-07-17 19:22:11 +02:00
|
|
|
} else if (is_sta_interface(drv->nlmode) &&
|
2009-12-02 15:45:31 +01:00
|
|
|
os_memcmp(drv->bssid, r->bssid, ETH_ALEN) !=
|
|
|
|
0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Local state "
|
|
|
|
"(associated with " MACSTR ") does "
|
|
|
|
"not match with BSS state",
|
2009-12-02 16:54:57 +01:00
|
|
|
MAC2STR(drv->bssid));
|
|
|
|
clear_state_mismatch(drv, r->bssid);
|
|
|
|
clear_state_mismatch(drv, drv->bssid);
|
2009-12-02 15:45:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-03 19:27:32 +01:00
|
|
|
static void wpa_scan_results_free(struct wpa_scan_results *res)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (res == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < res->num; i++)
|
|
|
|
os_free(res->res[i]);
|
|
|
|
os_free(res->res);
|
|
|
|
os_free(res);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-03 19:38:42 +01:00
|
|
|
static struct wpa_scan_results *
|
2010-01-25 03:11:30 +01:00
|
|
|
nl80211_get_scan_results(struct wpa_driver_nl80211_data *drv)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2009-02-12 16:12:58 +01:00
|
|
|
struct nl_msg *msg;
|
2008-06-06 15:55:42 +02:00
|
|
|
struct wpa_scan_results *res;
|
2009-02-12 16:12:58 +01:00
|
|
|
int ret;
|
2010-03-05 20:42:06 +01:00
|
|
|
struct nl80211_bss_info_arg arg;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
res = os_zalloc(sizeof(*res));
|
2009-02-12 16:12:58 +01:00
|
|
|
if (res == NULL)
|
2009-11-24 23:57:00 +01:00
|
|
|
return NULL;
|
2009-02-12 16:12:58 +01:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
goto nla_put_failure;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-02-12 16:12:58 +01:00
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, NLM_F_DUMP,
|
|
|
|
NL80211_CMD_GET_SCAN, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2010-03-05 20:42:06 +01:00
|
|
|
arg.drv = drv;
|
|
|
|
arg.res = res;
|
|
|
|
ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
|
2009-02-12 16:12:58 +01:00
|
|
|
msg = NULL;
|
|
|
|
if (ret == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Received scan results (%lu BSSes)",
|
|
|
|
(unsigned long) res->num);
|
|
|
|
return res;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
2009-02-12 16:12:58 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
wpa_scan_results_free(res);
|
|
|
|
return NULL;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-25 03:11:30 +01:00
|
|
|
/**
|
|
|
|
* wpa_driver_nl80211_get_scan_results - Fetch the latest scan results
|
|
|
|
* @priv: Pointer to private wext data from wpa_driver_nl80211_init()
|
|
|
|
* Returns: Scan results on success, -1 on failure
|
|
|
|
*/
|
|
|
|
static struct wpa_scan_results *
|
|
|
|
wpa_driver_nl80211_get_scan_results(void *priv)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2010-01-25 03:11:30 +01:00
|
|
|
struct wpa_scan_results *res;
|
|
|
|
|
|
|
|
res = nl80211_get_scan_results(drv);
|
|
|
|
if (res)
|
|
|
|
wpa_driver_nl80211_check_bss_status(drv, res);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void nl80211_dump_scan(struct wpa_driver_nl80211_data *drv)
|
|
|
|
{
|
|
|
|
struct wpa_scan_results *res;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
res = nl80211_get_scan_results(drv);
|
|
|
|
if (res == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to get scan results");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Scan result dump");
|
|
|
|
for (i = 0; i < res->num; i++) {
|
|
|
|
struct wpa_scan_res *r = res->res[i];
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: %d/%d " MACSTR "%s%s",
|
|
|
|
(int) i, (int) res->num, MAC2STR(r->bssid),
|
|
|
|
r->flags & WPA_SCAN_AUTHENTICATED ? " [auth]" : "",
|
|
|
|
r->flags & WPA_SCAN_ASSOCIATED ? " [assoc]" : "");
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_scan_results_free(res);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-23 15:58:32 +01:00
|
|
|
static int wpa_driver_nl80211_set_key(const char *ifname, void *priv,
|
2009-12-26 09:35:08 +01:00
|
|
|
enum wpa_alg alg, const u8 *addr,
|
|
|
|
int key_idx, int set_tx,
|
2009-11-23 15:58:32 +01:00
|
|
|
const u8 *seq, size_t seq_len,
|
|
|
|
const u8 *key, size_t key_len)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-11-23 15:58:32 +01:00
|
|
|
int ifindex = if_nametoindex(ifname);
|
2008-06-06 15:55:42 +02:00
|
|
|
struct nl_msg *msg;
|
2009-04-09 15:31:11 +02:00
|
|
|
int ret;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-04-09 15:31:11 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "%s: ifindex=%d alg=%d addr=%p key_idx=%d "
|
|
|
|
"set_tx=%d seq_len=%lu key_len=%lu",
|
|
|
|
__func__, ifindex, alg, addr, key_idx, set_tx,
|
2008-06-06 15:55:42 +02:00
|
|
|
(unsigned long) seq_len, (unsigned long) key_len);
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
2009-04-09 15:31:11 +02:00
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
if (alg == WPA_ALG_NONE) {
|
2009-04-09 15:31:11 +02:00
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_DEL_KEY, 0);
|
2008-06-06 15:55:42 +02:00
|
|
|
} else {
|
2009-04-09 15:31:11 +02:00
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_NEW_KEY, 0);
|
2008-06-06 15:55:42 +02:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_KEY_DATA, key_len, key);
|
2009-09-15 10:21:25 +02:00
|
|
|
switch (alg) {
|
|
|
|
case WPA_ALG_WEP:
|
|
|
|
if (key_len == 5)
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
|
|
|
|
WLAN_CIPHER_SUITE_WEP40);
|
|
|
|
else
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
|
|
|
|
WLAN_CIPHER_SUITE_WEP104);
|
|
|
|
break;
|
|
|
|
case WPA_ALG_TKIP:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
|
|
|
|
WLAN_CIPHER_SUITE_TKIP);
|
|
|
|
break;
|
|
|
|
case WPA_ALG_CCMP:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
|
|
|
|
WLAN_CIPHER_SUITE_CCMP);
|
|
|
|
break;
|
|
|
|
case WPA_ALG_IGTK:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
|
|
|
|
WLAN_CIPHER_SUITE_AES_CMAC);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wpa_printf(MSG_ERROR, "%s: Unsupported encryption "
|
|
|
|
"algorithm %d", __func__, alg);
|
2008-06-06 15:55:42 +02:00
|
|
|
nlmsg_free(msg);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-26 20:22:55 +02:00
|
|
|
if (seq && seq_len)
|
2009-04-09 15:31:11 +02:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_KEY_SEQ, seq_len, seq);
|
|
|
|
|
2011-01-09 18:44:28 +01:00
|
|
|
if (addr && !is_broadcast_ether_addr(addr)) {
|
2008-06-06 15:55:42 +02:00
|
|
|
wpa_printf(MSG_DEBUG, " addr=" MACSTR, MAC2STR(addr));
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
2010-12-05 05:31:22 +01:00
|
|
|
|
|
|
|
if (alg != WPA_ALG_WEP && key_idx && !set_tx) {
|
|
|
|
wpa_printf(MSG_DEBUG, " RSN IBSS RX GTK");
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_TYPE,
|
|
|
|
NL80211_KEYTYPE_GROUP);
|
|
|
|
}
|
2011-01-09 18:54:50 +01:00
|
|
|
} else if (addr && is_broadcast_ether_addr(addr)) {
|
|
|
|
struct nl_msg *types;
|
|
|
|
int err;
|
|
|
|
wpa_printf(MSG_DEBUG, " broadcast key");
|
|
|
|
types = nlmsg_alloc();
|
|
|
|
if (!types)
|
|
|
|
goto nla_put_failure;
|
|
|
|
NLA_PUT_FLAG(types, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
|
|
|
|
err = nla_put_nested(msg, NL80211_ATTR_KEY_DEFAULT_TYPES,
|
|
|
|
types);
|
|
|
|
nlmsg_free(types);
|
|
|
|
if (err)
|
|
|
|
goto nla_put_failure;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
|
2009-04-09 15:31:11 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-04-09 15:31:11 +02:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
2010-03-27 05:58:31 +01:00
|
|
|
if ((ret == -ENOENT || ret == -ENOLINK) && alg == WPA_ALG_NONE)
|
2009-04-09 15:31:11 +02:00
|
|
|
ret = 0;
|
|
|
|
if (ret)
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: set_key failed; err=%d %s)",
|
|
|
|
ret, strerror(-ret));
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-04-09 15:31:11 +02:00
|
|
|
/*
|
|
|
|
* If we failed or don't need to set the default TX key (below),
|
|
|
|
* we're done here.
|
|
|
|
*/
|
|
|
|
if (ret || !set_tx || alg == WPA_ALG_NONE)
|
|
|
|
return ret;
|
2011-07-17 19:22:11 +02:00
|
|
|
if (is_ap_interface(drv->nlmode) && addr &&
|
2011-01-09 18:44:28 +01:00
|
|
|
!is_broadcast_ether_addr(addr))
|
2010-04-11 18:35:24 +02:00
|
|
|
return ret;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-04-09 15:31:11 +02:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-04-09 15:31:11 +02:00
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_SET_KEY, 0);
|
|
|
|
NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
|
|
|
|
if (alg == WPA_ALG_IGTK)
|
|
|
|
NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT_MGMT);
|
|
|
|
else
|
|
|
|
NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT);
|
2011-01-09 18:54:50 +01:00
|
|
|
if (addr && is_broadcast_ether_addr(addr)) {
|
|
|
|
struct nl_msg *types;
|
|
|
|
int err;
|
|
|
|
types = nlmsg_alloc();
|
|
|
|
if (!types)
|
|
|
|
goto nla_put_failure;
|
|
|
|
NLA_PUT_FLAG(types, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
|
|
|
|
err = nla_put_nested(msg, NL80211_ATTR_KEY_DEFAULT_TYPES,
|
|
|
|
types);
|
|
|
|
nlmsg_free(types);
|
|
|
|
if (err)
|
|
|
|
goto nla_put_failure;
|
|
|
|
} else if (addr) {
|
|
|
|
struct nl_msg *types;
|
|
|
|
int err;
|
|
|
|
types = nlmsg_alloc();
|
|
|
|
if (!types)
|
|
|
|
goto nla_put_failure;
|
|
|
|
NLA_PUT_FLAG(types, NL80211_KEY_DEFAULT_TYPE_UNICAST);
|
|
|
|
err = nla_put_nested(msg, NL80211_ATTR_KEY_DEFAULT_TYPES,
|
|
|
|
types);
|
|
|
|
nlmsg_free(types);
|
|
|
|
if (err)
|
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-04-09 15:31:11 +02:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (ret == -ENOENT)
|
|
|
|
ret = 0;
|
|
|
|
if (ret)
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: set_key default failed; "
|
|
|
|
"err=%d %s)", ret, strerror(-ret));
|
|
|
|
return ret;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
nla_put_failure:
|
2008-09-30 15:46:22 +02:00
|
|
|
return -ENOBUFS;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-26 09:35:08 +01:00
|
|
|
static int nl_add_key(struct nl_msg *msg, enum wpa_alg alg,
|
2009-09-15 09:48:30 +02:00
|
|
|
int key_idx, int defkey,
|
|
|
|
const u8 *seq, size_t seq_len,
|
|
|
|
const u8 *key, size_t key_len)
|
|
|
|
{
|
|
|
|
struct nlattr *key_attr = nla_nest_start(msg, NL80211_ATTR_KEY);
|
|
|
|
if (!key_attr)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (defkey && alg == WPA_ALG_IGTK)
|
|
|
|
NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_MGMT);
|
|
|
|
else if (defkey)
|
|
|
|
NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
|
|
|
|
|
|
|
|
NLA_PUT_U8(msg, NL80211_KEY_IDX, key_idx);
|
|
|
|
|
2009-09-15 10:21:25 +02:00
|
|
|
switch (alg) {
|
|
|
|
case WPA_ALG_WEP:
|
|
|
|
if (key_len == 5)
|
2009-09-15 10:23:48 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
|
|
|
|
WLAN_CIPHER_SUITE_WEP40);
|
2009-09-15 10:21:25 +02:00
|
|
|
else
|
2009-09-15 10:23:48 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
|
|
|
|
WLAN_CIPHER_SUITE_WEP104);
|
2009-09-15 10:21:25 +02:00
|
|
|
break;
|
|
|
|
case WPA_ALG_TKIP:
|
2009-09-15 10:23:48 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_KEY_CIPHER, WLAN_CIPHER_SUITE_TKIP);
|
2009-09-15 10:21:25 +02:00
|
|
|
break;
|
|
|
|
case WPA_ALG_CCMP:
|
2009-09-15 10:23:48 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_KEY_CIPHER, WLAN_CIPHER_SUITE_CCMP);
|
2009-09-15 10:21:25 +02:00
|
|
|
break;
|
|
|
|
case WPA_ALG_IGTK:
|
2009-09-15 10:23:48 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
|
|
|
|
WLAN_CIPHER_SUITE_AES_CMAC);
|
2009-09-15 10:21:25 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wpa_printf(MSG_ERROR, "%s: Unsupported encryption "
|
|
|
|
"algorithm %d", __func__, alg);
|
2009-09-15 09:48:30 +02:00
|
|
|
return -1;
|
2009-09-15 10:21:25 +02:00
|
|
|
}
|
2009-09-15 09:48:30 +02:00
|
|
|
|
|
|
|
if (seq && seq_len)
|
|
|
|
NLA_PUT(msg, NL80211_KEY_SEQ, seq_len, seq);
|
|
|
|
|
|
|
|
NLA_PUT(msg, NL80211_KEY_DATA, key_len, key);
|
|
|
|
|
|
|
|
nla_nest_end(msg, key_attr);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
nla_put_failure:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-04-17 14:36:06 +02:00
|
|
|
|
2009-09-03 20:31:29 +02:00
|
|
|
static int nl80211_set_conn_keys(struct wpa_driver_associate_params *params,
|
|
|
|
struct nl_msg *msg)
|
|
|
|
{
|
|
|
|
int i, privacy = 0;
|
|
|
|
struct nlattr *nl_keys, *nl_key;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
if (!params->wep_key[i])
|
|
|
|
continue;
|
|
|
|
privacy = 1;
|
|
|
|
break;
|
|
|
|
}
|
2010-11-26 16:39:31 +01:00
|
|
|
if (params->wps == WPS_MODE_PRIVACY)
|
|
|
|
privacy = 1;
|
|
|
|
if (params->pairwise_suite &&
|
|
|
|
params->pairwise_suite != WPA_CIPHER_NONE)
|
|
|
|
privacy = 1;
|
|
|
|
|
2009-09-03 20:31:29 +02:00
|
|
|
if (!privacy)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
|
|
|
|
|
|
|
|
nl_keys = nla_nest_start(msg, NL80211_ATTR_KEYS);
|
|
|
|
if (!nl_keys)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
if (!params->wep_key[i])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
nl_key = nla_nest_start(msg, i);
|
|
|
|
if (!nl_key)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
NLA_PUT(msg, NL80211_KEY_DATA, params->wep_key_len[i],
|
|
|
|
params->wep_key[i]);
|
|
|
|
if (params->wep_key_len[i] == 5)
|
|
|
|
NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
|
|
|
|
WLAN_CIPHER_SUITE_WEP40);
|
|
|
|
else
|
|
|
|
NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
|
|
|
|
WLAN_CIPHER_SUITE_WEP104);
|
|
|
|
|
|
|
|
NLA_PUT_U8(msg, NL80211_KEY_IDX, i);
|
|
|
|
|
|
|
|
if (i == params->wep_tx_keyidx)
|
|
|
|
NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
|
|
|
|
|
|
|
|
nla_nest_end(msg, nl_key);
|
|
|
|
}
|
|
|
|
nla_nest_end(msg, nl_keys);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv,
|
2010-04-08 10:31:37 +02:00
|
|
|
const u8 *addr, int cmd, u16 reason_code,
|
|
|
|
int local_state_change)
|
2009-03-20 21:26:41 +01:00
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0, cmd, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
NLA_PUT_U16(msg, NL80211_ATTR_REASON_CODE, reason_code);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
2010-04-08 10:31:37 +02:00
|
|
|
if (local_state_change)
|
|
|
|
NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
|
2009-03-20 21:26:41 +01:00
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: MLME command failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
|
2009-09-03 20:31:29 +02:00
|
|
|
static int wpa_driver_nl80211_disconnect(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const u8 *addr, int reason_code)
|
|
|
|
{
|
2010-08-17 20:04:38 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "%s(addr=" MACSTR " reason_code=%d)",
|
|
|
|
__func__, MAC2STR(addr), reason_code);
|
2009-09-03 20:31:29 +02:00
|
|
|
drv->associated = 0;
|
|
|
|
return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DISCONNECT,
|
2010-04-08 10:31:37 +02:00
|
|
|
reason_code, 0);
|
2009-09-03 20:31:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
static int wpa_driver_nl80211_deauthenticate(void *priv, const u8 *addr,
|
2009-03-20 21:26:41 +01:00
|
|
|
int reason_code)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-09-03 20:31:29 +02:00
|
|
|
if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME))
|
|
|
|
return wpa_driver_nl80211_disconnect(drv, addr, reason_code);
|
2010-08-17 20:04:38 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "%s(addr=" MACSTR " reason_code=%d)",
|
|
|
|
__func__, MAC2STR(addr), reason_code);
|
2009-04-20 10:37:35 +02:00
|
|
|
drv->associated = 0;
|
2011-03-23 20:15:22 +01:00
|
|
|
if (drv->nlmode == NL80211_IFTYPE_ADHOC)
|
|
|
|
return nl80211_leave_ibss(drv);
|
2009-03-20 21:26:41 +01:00
|
|
|
return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DEAUTHENTICATE,
|
2010-04-08 10:31:37 +02:00
|
|
|
reason_code, 0);
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_disassociate(void *priv, const u8 *addr,
|
2009-03-20 21:26:41 +01:00
|
|
|
int reason_code)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-09-03 20:31:29 +02:00
|
|
|
if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME))
|
|
|
|
return wpa_driver_nl80211_disconnect(drv, addr, reason_code);
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "%s", __func__);
|
2009-04-20 10:37:35 +02:00
|
|
|
drv->associated = 0;
|
2009-03-20 21:26:41 +01:00
|
|
|
return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DISASSOCIATE,
|
2010-04-08 10:31:37 +02:00
|
|
|
reason_code, 0);
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
static int wpa_driver_nl80211_authenticate(
|
|
|
|
void *priv, struct wpa_driver_auth_params *params)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-04 15:58:16 +02:00
|
|
|
int ret = -1, i;
|
2009-03-20 21:26:41 +01:00
|
|
|
struct nl_msg *msg;
|
|
|
|
enum nl80211_auth_type type;
|
2011-07-17 19:25:58 +02:00
|
|
|
enum nl80211_iftype nlmode;
|
2009-10-12 08:39:55 +02:00
|
|
|
int count = 0;
|
2009-03-20 21:26:41 +01:00
|
|
|
|
|
|
|
drv->associated = 0;
|
2009-12-02 15:45:31 +01:00
|
|
|
os_memset(drv->auth_bssid, 0, ETH_ALEN);
|
2010-01-16 11:20:51 +01:00
|
|
|
/* FIX: IBSS mode */
|
2011-07-17 19:25:58 +02:00
|
|
|
nlmode = params->p2p ?
|
|
|
|
NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
|
|
|
|
if (drv->nlmode != nlmode &&
|
|
|
|
wpa_driver_nl80211_set_mode(priv, nlmode) < 0)
|
2009-11-23 19:22:38 +01:00
|
|
|
return -1;
|
|
|
|
|
2009-10-12 08:39:55 +02:00
|
|
|
retry:
|
2009-03-20 21:26:41 +01:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Authenticate (ifindex=%d)",
|
|
|
|
drv->ifindex);
|
2009-04-04 15:58:16 +02:00
|
|
|
|
2009-09-15 09:48:30 +02:00
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_AUTHENTICATE, 0);
|
|
|
|
|
2009-04-04 15:58:16 +02:00
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
if (!params->wep_key[i])
|
|
|
|
continue;
|
2010-03-28 07:22:17 +02:00
|
|
|
wpa_driver_nl80211_set_key(bss->ifname, priv, WPA_ALG_WEP,
|
|
|
|
NULL, i,
|
2009-04-04 15:58:16 +02:00
|
|
|
i == params->wep_tx_keyidx, NULL, 0,
|
|
|
|
params->wep_key[i],
|
|
|
|
params->wep_key_len[i]);
|
2009-09-15 09:48:30 +02:00
|
|
|
if (params->wep_tx_keyidx != i)
|
|
|
|
continue;
|
|
|
|
if (nl_add_key(msg, WPA_ALG_WEP, i, 1, NULL, 0,
|
|
|
|
params->wep_key[i], params->wep_key_len[i])) {
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-04-04 15:58:16 +02:00
|
|
|
}
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
if (params->bssid) {
|
|
|
|
wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
|
|
|
|
MAC2STR(params->bssid));
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
|
|
|
|
}
|
|
|
|
if (params->freq) {
|
|
|
|
wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
|
|
|
|
}
|
|
|
|
if (params->ssid) {
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
|
|
|
|
params->ssid, params->ssid_len);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
|
|
|
|
params->ssid);
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, " * IEs", params->ie, params->ie_len);
|
|
|
|
if (params->ie)
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE, params->ie_len, params->ie);
|
2010-01-03 20:14:40 +01:00
|
|
|
if (params->auth_alg & WPA_AUTH_ALG_OPEN)
|
2009-03-20 21:26:41 +01:00
|
|
|
type = NL80211_AUTHTYPE_OPEN_SYSTEM;
|
2010-01-03 20:14:40 +01:00
|
|
|
else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
|
2009-03-20 21:26:41 +01:00
|
|
|
type = NL80211_AUTHTYPE_SHARED_KEY;
|
2010-01-03 20:14:40 +01:00
|
|
|
else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
|
2009-03-20 21:26:41 +01:00
|
|
|
type = NL80211_AUTHTYPE_NETWORK_EAP;
|
2010-01-03 20:14:40 +01:00
|
|
|
else if (params->auth_alg & WPA_AUTH_ALG_FT)
|
2009-03-20 21:26:41 +01:00
|
|
|
type = NL80211_AUTHTYPE_FT;
|
|
|
|
else
|
|
|
|
goto nla_put_failure;
|
|
|
|
wpa_printf(MSG_DEBUG, " * Auth Type %d", type);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
|
2010-04-08 10:31:37 +02:00
|
|
|
if (params->local_state_change) {
|
|
|
|
wpa_printf(MSG_DEBUG, " * Local state change only");
|
|
|
|
NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
|
|
|
|
}
|
2009-03-20 21:26:41 +01:00
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: MLME command failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
2009-10-12 08:39:55 +02:00
|
|
|
count++;
|
2010-04-08 10:31:37 +02:00
|
|
|
if (ret == -EALREADY && count == 1 && params->bssid &&
|
|
|
|
!params->local_state_change) {
|
2009-10-12 08:39:55 +02:00
|
|
|
/*
|
|
|
|
* mac80211 does not currently accept new
|
|
|
|
* authentication if we are already authenticated. As a
|
|
|
|
* workaround, force deauthentication and try again.
|
|
|
|
*/
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Retry authentication "
|
|
|
|
"after forced deauthentication");
|
|
|
|
wpa_driver_nl80211_deauthenticate(
|
2010-03-07 20:29:34 +01:00
|
|
|
bss, params->bssid,
|
2009-10-12 08:39:55 +02:00
|
|
|
WLAN_REASON_PREV_AUTH_NOT_VALID);
|
|
|
|
nlmsg_free(msg);
|
|
|
|
goto retry;
|
|
|
|
}
|
2009-03-20 21:26:41 +01:00
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Authentication request send "
|
|
|
|
"successfully");
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-03 18:11:22 +02:00
|
|
|
struct phy_info_arg {
|
|
|
|
u16 *num_modes;
|
|
|
|
struct hostapd_hw_modes *modes;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int phy_info_handler(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
struct phy_info_arg *phy_info = arg;
|
|
|
|
|
|
|
|
struct nlattr *tb_band[NL80211_BAND_ATTR_MAX + 1];
|
|
|
|
|
|
|
|
struct nlattr *tb_freq[NL80211_FREQUENCY_ATTR_MAX + 1];
|
|
|
|
static struct nla_policy freq_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
|
|
|
|
[NL80211_FREQUENCY_ATTR_FREQ] = { .type = NLA_U32 },
|
|
|
|
[NL80211_FREQUENCY_ATTR_DISABLED] = { .type = NLA_FLAG },
|
|
|
|
[NL80211_FREQUENCY_ATTR_PASSIVE_SCAN] = { .type = NLA_FLAG },
|
|
|
|
[NL80211_FREQUENCY_ATTR_NO_IBSS] = { .type = NLA_FLAG },
|
|
|
|
[NL80211_FREQUENCY_ATTR_RADAR] = { .type = NLA_FLAG },
|
|
|
|
[NL80211_FREQUENCY_ATTR_MAX_TX_POWER] = { .type = NLA_U32 },
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nlattr *tb_rate[NL80211_BITRATE_ATTR_MAX + 1];
|
|
|
|
static struct nla_policy rate_policy[NL80211_BITRATE_ATTR_MAX + 1] = {
|
|
|
|
[NL80211_BITRATE_ATTR_RATE] = { .type = NLA_U32 },
|
|
|
|
[NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE] = { .type = NLA_FLAG },
|
|
|
|
};
|
|
|
|
|
|
|
|
struct nlattr *nl_band;
|
|
|
|
struct nlattr *nl_freq;
|
|
|
|
struct nlattr *nl_rate;
|
|
|
|
int rem_band, rem_freq, rem_rate;
|
|
|
|
struct hostapd_hw_modes *mode;
|
|
|
|
int idx, mode_is_set;
|
|
|
|
|
|
|
|
nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
|
|
|
|
if (!tb_msg[NL80211_ATTR_WIPHY_BANDS])
|
|
|
|
return NL_SKIP;
|
|
|
|
|
|
|
|
nla_for_each_nested(nl_band, tb_msg[NL80211_ATTR_WIPHY_BANDS], rem_band) {
|
2009-12-21 21:21:10 +01:00
|
|
|
mode = os_realloc(phy_info->modes, (*phy_info->num_modes + 1) * sizeof(*mode));
|
2009-04-03 18:11:22 +02:00
|
|
|
if (!mode)
|
|
|
|
return NL_SKIP;
|
|
|
|
phy_info->modes = mode;
|
|
|
|
|
|
|
|
mode_is_set = 0;
|
|
|
|
|
|
|
|
mode = &phy_info->modes[*(phy_info->num_modes)];
|
|
|
|
memset(mode, 0, sizeof(*mode));
|
|
|
|
*(phy_info->num_modes) += 1;
|
|
|
|
|
|
|
|
nla_parse(tb_band, NL80211_BAND_ATTR_MAX, nla_data(nl_band),
|
|
|
|
nla_len(nl_band), NULL);
|
|
|
|
|
|
|
|
if (tb_band[NL80211_BAND_ATTR_HT_CAPA]) {
|
|
|
|
mode->ht_capab = nla_get_u16(
|
|
|
|
tb_band[NL80211_BAND_ATTR_HT_CAPA]);
|
|
|
|
}
|
|
|
|
|
2009-11-29 11:21:26 +01:00
|
|
|
if (tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR]) {
|
|
|
|
mode->a_mpdu_params |= nla_get_u8(
|
|
|
|
tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR]) &
|
|
|
|
0x03;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY]) {
|
|
|
|
mode->a_mpdu_params |= nla_get_u8(
|
|
|
|
tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY]) <<
|
|
|
|
2;
|
|
|
|
}
|
|
|
|
|
2009-11-05 11:38:47 +01:00
|
|
|
if (tb_band[NL80211_BAND_ATTR_HT_MCS_SET] &&
|
|
|
|
nla_len(tb_band[NL80211_BAND_ATTR_HT_MCS_SET])) {
|
|
|
|
u8 *mcs;
|
|
|
|
mcs = nla_data(tb_band[NL80211_BAND_ATTR_HT_MCS_SET]);
|
|
|
|
os_memcpy(mode->mcs_set, mcs, 16);
|
|
|
|
}
|
|
|
|
|
2009-04-03 18:11:22 +02:00
|
|
|
nla_for_each_nested(nl_freq, tb_band[NL80211_BAND_ATTR_FREQS], rem_freq) {
|
|
|
|
nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX, nla_data(nl_freq),
|
|
|
|
nla_len(nl_freq), freq_policy);
|
|
|
|
if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
|
|
|
|
continue;
|
|
|
|
mode->num_channels++;
|
|
|
|
}
|
|
|
|
|
2009-12-21 21:21:10 +01:00
|
|
|
mode->channels = os_zalloc(mode->num_channels * sizeof(struct hostapd_channel_data));
|
2009-04-03 18:11:22 +02:00
|
|
|
if (!mode->channels)
|
|
|
|
return NL_SKIP;
|
|
|
|
|
|
|
|
idx = 0;
|
|
|
|
|
|
|
|
nla_for_each_nested(nl_freq, tb_band[NL80211_BAND_ATTR_FREQS], rem_freq) {
|
|
|
|
nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX, nla_data(nl_freq),
|
|
|
|
nla_len(nl_freq), freq_policy);
|
|
|
|
if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
mode->channels[idx].freq = nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_FREQ]);
|
|
|
|
mode->channels[idx].flag = 0;
|
|
|
|
|
|
|
|
if (!mode_is_set) {
|
|
|
|
/* crude heuristic */
|
|
|
|
if (mode->channels[idx].freq < 4000)
|
|
|
|
mode->mode = HOSTAPD_MODE_IEEE80211B;
|
|
|
|
else
|
|
|
|
mode->mode = HOSTAPD_MODE_IEEE80211A;
|
|
|
|
mode_is_set = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* crude heuristic */
|
|
|
|
if (mode->channels[idx].freq < 4000)
|
2009-04-09 13:51:31 +02:00
|
|
|
if (mode->channels[idx].freq == 2484)
|
2009-04-03 18:11:22 +02:00
|
|
|
mode->channels[idx].chan = 14;
|
|
|
|
else
|
|
|
|
mode->channels[idx].chan = (mode->channels[idx].freq - 2407) / 5;
|
|
|
|
else
|
|
|
|
mode->channels[idx].chan = mode->channels[idx].freq/5 - 1000;
|
|
|
|
|
|
|
|
if (tb_freq[NL80211_FREQUENCY_ATTR_DISABLED])
|
|
|
|
mode->channels[idx].flag |=
|
|
|
|
HOSTAPD_CHAN_DISABLED;
|
|
|
|
if (tb_freq[NL80211_FREQUENCY_ATTR_PASSIVE_SCAN])
|
|
|
|
mode->channels[idx].flag |=
|
|
|
|
HOSTAPD_CHAN_PASSIVE_SCAN;
|
|
|
|
if (tb_freq[NL80211_FREQUENCY_ATTR_NO_IBSS])
|
|
|
|
mode->channels[idx].flag |=
|
|
|
|
HOSTAPD_CHAN_NO_IBSS;
|
|
|
|
if (tb_freq[NL80211_FREQUENCY_ATTR_RADAR])
|
|
|
|
mode->channels[idx].flag |=
|
|
|
|
HOSTAPD_CHAN_RADAR;
|
|
|
|
|
|
|
|
if (tb_freq[NL80211_FREQUENCY_ATTR_MAX_TX_POWER] &&
|
|
|
|
!tb_freq[NL80211_FREQUENCY_ATTR_DISABLED])
|
|
|
|
mode->channels[idx].max_tx_power =
|
|
|
|
nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_MAX_TX_POWER]) / 100;
|
|
|
|
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
nla_for_each_nested(nl_rate, tb_band[NL80211_BAND_ATTR_RATES], rem_rate) {
|
|
|
|
nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX, nla_data(nl_rate),
|
|
|
|
nla_len(nl_rate), rate_policy);
|
|
|
|
if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
|
|
|
|
continue;
|
|
|
|
mode->num_rates++;
|
|
|
|
}
|
|
|
|
|
2009-12-21 21:21:10 +01:00
|
|
|
mode->rates = os_zalloc(mode->num_rates * sizeof(int));
|
2009-04-03 18:11:22 +02:00
|
|
|
if (!mode->rates)
|
|
|
|
return NL_SKIP;
|
|
|
|
|
|
|
|
idx = 0;
|
|
|
|
|
|
|
|
nla_for_each_nested(nl_rate, tb_band[NL80211_BAND_ATTR_RATES], rem_rate) {
|
|
|
|
nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX, nla_data(nl_rate),
|
|
|
|
nla_len(nl_rate), rate_policy);
|
|
|
|
if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
|
|
|
|
continue;
|
2009-12-09 20:57:50 +01:00
|
|
|
mode->rates[idx] = nla_get_u32(tb_rate[NL80211_BITRATE_ATTR_RATE]);
|
2009-04-03 18:11:22 +02:00
|
|
|
|
|
|
|
/* crude heuristic */
|
|
|
|
if (mode->mode == HOSTAPD_MODE_IEEE80211B &&
|
2009-12-09 20:57:50 +01:00
|
|
|
mode->rates[idx] > 200)
|
2009-04-03 18:11:22 +02:00
|
|
|
mode->mode = HOSTAPD_MODE_IEEE80211G;
|
|
|
|
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct hostapd_hw_modes *
|
|
|
|
wpa_driver_nl80211_add_11b(struct hostapd_hw_modes *modes, u16 *num_modes)
|
|
|
|
{
|
|
|
|
u16 m;
|
|
|
|
struct hostapd_hw_modes *mode11g = NULL, *nmodes, *mode;
|
|
|
|
int i, mode11g_idx = -1;
|
|
|
|
|
|
|
|
/* If only 802.11g mode is included, use it to construct matching
|
|
|
|
* 802.11b mode data. */
|
|
|
|
|
|
|
|
for (m = 0; m < *num_modes; m++) {
|
|
|
|
if (modes[m].mode == HOSTAPD_MODE_IEEE80211B)
|
|
|
|
return modes; /* 802.11b already included */
|
|
|
|
if (modes[m].mode == HOSTAPD_MODE_IEEE80211G)
|
|
|
|
mode11g_idx = m;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode11g_idx < 0)
|
|
|
|
return modes; /* 2.4 GHz band not supported at all */
|
|
|
|
|
|
|
|
nmodes = os_realloc(modes, (*num_modes + 1) * sizeof(*nmodes));
|
|
|
|
if (nmodes == NULL)
|
|
|
|
return modes; /* Could not add 802.11b mode */
|
|
|
|
|
|
|
|
mode = &nmodes[*num_modes];
|
|
|
|
os_memset(mode, 0, sizeof(*mode));
|
|
|
|
(*num_modes)++;
|
|
|
|
modes = nmodes;
|
|
|
|
|
|
|
|
mode->mode = HOSTAPD_MODE_IEEE80211B;
|
|
|
|
|
|
|
|
mode11g = &modes[mode11g_idx];
|
|
|
|
mode->num_channels = mode11g->num_channels;
|
|
|
|
mode->channels = os_malloc(mode11g->num_channels *
|
|
|
|
sizeof(struct hostapd_channel_data));
|
|
|
|
if (mode->channels == NULL) {
|
|
|
|
(*num_modes)--;
|
|
|
|
return modes; /* Could not add 802.11b mode */
|
|
|
|
}
|
|
|
|
os_memcpy(mode->channels, mode11g->channels,
|
|
|
|
mode11g->num_channels * sizeof(struct hostapd_channel_data));
|
|
|
|
|
|
|
|
mode->num_rates = 0;
|
2009-12-09 20:57:50 +01:00
|
|
|
mode->rates = os_malloc(4 * sizeof(int));
|
2009-04-03 18:11:22 +02:00
|
|
|
if (mode->rates == NULL) {
|
|
|
|
os_free(mode->channels);
|
|
|
|
(*num_modes)--;
|
|
|
|
return modes; /* Could not add 802.11b mode */
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < mode11g->num_rates; i++) {
|
2009-12-09 20:57:50 +01:00
|
|
|
if (mode11g->rates[i] != 10 && mode11g->rates[i] != 20 &&
|
|
|
|
mode11g->rates[i] != 55 && mode11g->rates[i] != 110)
|
2009-04-03 18:11:22 +02:00
|
|
|
continue;
|
|
|
|
mode->rates[mode->num_rates] = mode11g->rates[i];
|
|
|
|
mode->num_rates++;
|
|
|
|
if (mode->num_rates == 4)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode->num_rates == 0) {
|
|
|
|
os_free(mode->channels);
|
|
|
|
os_free(mode->rates);
|
|
|
|
(*num_modes)--;
|
|
|
|
return modes; /* No 802.11b rates */
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Added 802.11b mode based on 802.11g "
|
|
|
|
"information");
|
|
|
|
|
|
|
|
return modes;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-12 17:13:37 +01:00
|
|
|
static void nl80211_set_ht40_mode(struct hostapd_hw_modes *mode, int start,
|
|
|
|
int end)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
|
|
|
for (c = 0; c < mode->num_channels; c++) {
|
|
|
|
struct hostapd_channel_data *chan = &mode->channels[c];
|
|
|
|
if (chan->freq - 10 >= start && chan->freq + 10 <= end)
|
|
|
|
chan->flag |= HOSTAPD_CHAN_HT40;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void nl80211_set_ht40_mode_sec(struct hostapd_hw_modes *mode, int start,
|
|
|
|
int end)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
|
|
|
|
for (c = 0; c < mode->num_channels; c++) {
|
|
|
|
struct hostapd_channel_data *chan = &mode->channels[c];
|
|
|
|
if (!(chan->flag & HOSTAPD_CHAN_HT40))
|
|
|
|
continue;
|
|
|
|
if (chan->freq - 30 >= start && chan->freq - 10 <= end)
|
|
|
|
chan->flag |= HOSTAPD_CHAN_HT40MINUS;
|
|
|
|
if (chan->freq + 10 >= start && chan->freq + 30 <= end)
|
|
|
|
chan->flag |= HOSTAPD_CHAN_HT40PLUS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void nl80211_reg_rule_ht40(struct nlattr *tb[],
|
|
|
|
struct phy_info_arg *results)
|
|
|
|
{
|
|
|
|
u32 start, end, max_bw;
|
|
|
|
u16 m;
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
|
|
|
|
tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
|
|
|
|
tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
|
|
|
|
end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
|
|
|
|
max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: %u-%u @ %u MHz",
|
|
|
|
start, end, max_bw);
|
|
|
|
if (max_bw < 40)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (m = 0; m < *results->num_modes; m++) {
|
|
|
|
if (!(results->modes[m].ht_capab &
|
|
|
|
HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
|
|
|
|
continue;
|
|
|
|
nl80211_set_ht40_mode(&results->modes[m], start, end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void nl80211_reg_rule_sec(struct nlattr *tb[],
|
|
|
|
struct phy_info_arg *results)
|
|
|
|
{
|
|
|
|
u32 start, end, max_bw;
|
|
|
|
u16 m;
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
|
|
|
|
tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
|
|
|
|
tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
|
|
|
|
end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
|
|
|
|
max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
|
|
|
|
|
|
|
|
if (max_bw < 20)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (m = 0; m < *results->num_modes; m++) {
|
|
|
|
if (!(results->modes[m].ht_capab &
|
|
|
|
HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
|
|
|
|
continue;
|
|
|
|
nl80211_set_ht40_mode_sec(&results->modes[m], start, end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl80211_get_reg(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
struct phy_info_arg *results = arg;
|
|
|
|
struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
struct nlattr *nl_rule;
|
|
|
|
struct nlattr *tb_rule[NL80211_FREQUENCY_ATTR_MAX + 1];
|
|
|
|
int rem_rule;
|
|
|
|
static struct nla_policy reg_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
|
|
|
|
[NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
|
|
|
|
[NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
|
|
|
|
[NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
|
|
|
|
[NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
|
|
|
|
[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
|
|
|
|
[NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
|
|
|
|
};
|
|
|
|
|
|
|
|
nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
if (!tb_msg[NL80211_ATTR_REG_ALPHA2] ||
|
|
|
|
!tb_msg[NL80211_ATTR_REG_RULES]) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: No regulatory information "
|
|
|
|
"available");
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Regulatory information - country=%s",
|
|
|
|
(char *) nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]));
|
|
|
|
|
|
|
|
nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
|
|
|
|
{
|
|
|
|
nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
|
|
|
|
nla_data(nl_rule), nla_len(nl_rule), reg_policy);
|
|
|
|
nl80211_reg_rule_ht40(tb_rule, results);
|
|
|
|
}
|
|
|
|
|
|
|
|
nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
|
|
|
|
{
|
|
|
|
nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
|
|
|
|
nla_data(nl_rule), nla_len(nl_rule), reg_policy);
|
|
|
|
nl80211_reg_rule_sec(tb_rule, results);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl80211_set_ht40_flags(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct phy_info_arg *results)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_GET_REG, 0);
|
|
|
|
return send_and_recv_msgs(drv, msg, nl80211_get_reg, results);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-03 18:11:22 +02:00
|
|
|
static struct hostapd_hw_modes *
|
|
|
|
wpa_driver_nl80211_get_hw_feature_data(void *priv, u16 *num_modes, u16 *flags)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-03 18:11:22 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
struct phy_info_arg result = {
|
|
|
|
.num_modes = num_modes,
|
|
|
|
.modes = NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
*num_modes = 0;
|
|
|
|
*flags = 0;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_GET_WIPHY, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
2010-11-12 17:13:37 +01:00
|
|
|
if (send_and_recv_msgs(drv, msg, phy_info_handler, &result) == 0) {
|
|
|
|
nl80211_set_ht40_flags(drv, &result);
|
2009-04-03 18:11:22 +02:00
|
|
|
return wpa_driver_nl80211_add_11b(result.modes, num_modes);
|
2010-11-12 17:13:37 +01:00
|
|
|
}
|
2009-04-03 18:11:22 +02:00
|
|
|
nla_put_failure:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-03 15:45:09 +02:00
|
|
|
static int wpa_driver_nl80211_send_frame(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const void *data, size_t len,
|
|
|
|
int encrypt)
|
|
|
|
{
|
|
|
|
__u8 rtap_hdr[] = {
|
|
|
|
0x00, 0x00, /* radiotap version */
|
|
|
|
0x0e, 0x00, /* radiotap length */
|
|
|
|
0x02, 0xc0, 0x00, 0x00, /* bmap: flags, tx and rx flags */
|
|
|
|
IEEE80211_RADIOTAP_F_FRAG, /* F_FRAG (fragment if required) */
|
|
|
|
0x00, /* padding */
|
|
|
|
0x00, 0x00, /* RX and TX flags to indicate that */
|
|
|
|
0x00, 0x00, /* this is the injected frame directly */
|
|
|
|
};
|
|
|
|
struct iovec iov[2] = {
|
|
|
|
{
|
|
|
|
.iov_base = &rtap_hdr,
|
|
|
|
.iov_len = sizeof(rtap_hdr),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.iov_base = (void *) data,
|
|
|
|
.iov_len = len,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
struct msghdr msg = {
|
|
|
|
.msg_name = NULL,
|
|
|
|
.msg_namelen = 0,
|
|
|
|
.msg_iov = iov,
|
|
|
|
.msg_iovlen = 2,
|
|
|
|
.msg_control = NULL,
|
|
|
|
.msg_controllen = 0,
|
|
|
|
.msg_flags = 0,
|
|
|
|
};
|
2010-11-24 13:58:58 +01:00
|
|
|
int res;
|
2009-04-03 15:45:09 +02:00
|
|
|
|
|
|
|
if (encrypt)
|
|
|
|
rtap_hdr[8] |= IEEE80211_RADIOTAP_F_WEP;
|
|
|
|
|
2011-06-28 20:59:44 +02:00
|
|
|
if (drv->monitor_sock < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: No monitor socket available "
|
|
|
|
"for %s", __func__);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-11-24 13:58:58 +01:00
|
|
|
res = sendmsg(drv->monitor_sock, &msg, 0);
|
|
|
|
if (res < 0) {
|
|
|
|
wpa_printf(MSG_INFO, "nl80211: sendmsg: %s", strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
2009-04-03 15:45:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_send_mlme(void *priv, const u8 *data,
|
|
|
|
size_t data_len)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-03 15:45:09 +02:00
|
|
|
struct ieee80211_mgmt *mgmt;
|
2009-07-26 20:15:47 +02:00
|
|
|
int encrypt = 1;
|
2009-04-03 15:45:09 +02:00
|
|
|
u16 fc;
|
|
|
|
|
|
|
|
mgmt = (struct ieee80211_mgmt *) data;
|
|
|
|
fc = le_to_host16(mgmt->frame_control);
|
|
|
|
|
2011-07-17 19:22:11 +02:00
|
|
|
if (is_sta_interface(drv->nlmode) &&
|
2010-10-10 17:10:37 +02:00
|
|
|
WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
|
|
|
|
WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_PROBE_RESP) {
|
|
|
|
/*
|
|
|
|
* The use of last_mgmt_freq is a bit of a hack,
|
|
|
|
* but it works due to the single-threaded nature
|
|
|
|
* of wpa_supplicant.
|
|
|
|
*/
|
2010-12-29 13:05:34 +01:00
|
|
|
return nl80211_send_frame_cmd(drv, drv->last_mgmt_freq, 0,
|
2010-10-10 17:10:37 +02:00
|
|
|
data, data_len, NULL);
|
|
|
|
}
|
|
|
|
|
2011-08-29 13:26:55 +02:00
|
|
|
if (drv->no_monitor_iface_capab && is_ap_interface(drv->nlmode)) {
|
|
|
|
return nl80211_send_frame_cmd(drv, drv->ap_oper_freq, 0,
|
|
|
|
data, data_len, NULL);
|
|
|
|
}
|
|
|
|
|
2009-04-03 15:45:09 +02:00
|
|
|
if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
|
|
|
|
WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_AUTH) {
|
|
|
|
/*
|
|
|
|
* Only one of the authentication frame types is encrypted.
|
|
|
|
* In order for static WEP encryption to work properly (i.e.,
|
|
|
|
* to not encrypt the frame), we need to tell mac80211 about
|
|
|
|
* the frames that must not be encrypted.
|
|
|
|
*/
|
|
|
|
u16 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
|
|
|
|
u16 auth_trans = le_to_host16(mgmt->u.auth.auth_transaction);
|
2009-07-26 20:15:47 +02:00
|
|
|
if (auth_alg != WLAN_AUTH_SHARED_KEY || auth_trans != 3)
|
|
|
|
encrypt = 0;
|
2009-04-03 15:45:09 +02:00
|
|
|
}
|
|
|
|
|
2009-07-26 20:15:47 +02:00
|
|
|
return wpa_driver_nl80211_send_frame(drv, data, data_len, encrypt);
|
2009-04-03 15:45:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-17 17:58:46 +02:00
|
|
|
static int nl80211_set_ap_isolate(struct i802_bss *bss, int enabled)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_SET_BSS, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
|
|
|
|
NLA_PUT_U8(msg, NL80211_ATTR_AP_ISOLATE, enabled);
|
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-17 18:31:33 +02:00
|
|
|
static int nl80211_set_bss(struct i802_bss *bss, int cts, int preamble,
|
|
|
|
int slot, int ht_opmode)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_SET_BSS, 0);
|
|
|
|
|
|
|
|
if (cts >= 0)
|
|
|
|
NLA_PUT_U8(msg, NL80211_ATTR_BSS_CTS_PROT, cts);
|
|
|
|
if (preamble >= 0)
|
|
|
|
NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_PREAMBLE, preamble);
|
|
|
|
if (slot >= 0)
|
|
|
|
NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_SLOT_TIME, slot);
|
|
|
|
if (ht_opmode >= 0)
|
|
|
|
NLA_PUT_U16(msg, NL80211_ATTR_BSS_HT_OPMODE, ht_opmode);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
|
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-10 12:22:37 +02:00
|
|
|
static int wpa_driver_nl80211_set_ap(void *priv,
|
|
|
|
struct wpa_driver_ap_params *params)
|
2009-04-02 15:09:48 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-02 15:09:48 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
u8 cmd = NL80211_CMD_NEW_BEACON;
|
|
|
|
int ret;
|
2009-04-09 22:44:39 +02:00
|
|
|
int beacon_set;
|
2010-03-06 21:36:40 +01:00
|
|
|
int ifindex = if_nametoindex(bss->ifname);
|
2011-08-26 20:11:42 +02:00
|
|
|
int num_suites;
|
|
|
|
u32 suites[10];
|
|
|
|
u32 ver;
|
2009-04-09 22:44:39 +02:00
|
|
|
|
|
|
|
beacon_set = bss->beacon_set;
|
2009-04-02 15:09:48 +02:00
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Set beacon (beacon_set=%d)",
|
2009-04-09 22:44:39 +02:00
|
|
|
beacon_set);
|
|
|
|
if (beacon_set)
|
2009-04-02 15:09:48 +02:00
|
|
|
cmd = NL80211_CMD_SET_BEACON;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, cmd, 0);
|
2011-08-10 12:22:37 +02:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_BEACON_HEAD, params->head_len, params->head);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_BEACON_TAIL, params->tail_len, params->tail);
|
2009-04-09 22:44:39 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
|
2011-08-10 12:22:37 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_BEACON_INTERVAL, params->beacon_int);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_DTIM_PERIOD, params->dtim_period);
|
2011-08-10 12:29:32 +02:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
|
|
|
|
params->ssid);
|
2011-08-26 20:12:47 +02:00
|
|
|
switch (params->hide_ssid) {
|
|
|
|
case NO_SSID_HIDING:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
|
|
|
|
NL80211_HIDDEN_SSID_NOT_IN_USE);
|
|
|
|
break;
|
|
|
|
case HIDDEN_SSID_ZERO_LEN:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
|
|
|
|
NL80211_HIDDEN_SSID_ZERO_LEN);
|
|
|
|
break;
|
|
|
|
case HIDDEN_SSID_ZERO_CONTENTS:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
|
|
|
|
NL80211_HIDDEN_SSID_ZERO_CONTENTS);
|
|
|
|
break;
|
|
|
|
}
|
2011-08-26 20:11:42 +02:00
|
|
|
if (params->privacy)
|
|
|
|
NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
|
|
|
|
if ((params->auth_algs & (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) ==
|
|
|
|
(WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) {
|
|
|
|
/* Leave out the attribute */
|
|
|
|
} else if (params->auth_algs & WPA_AUTH_ALG_SHARED)
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
|
|
|
|
NL80211_AUTHTYPE_SHARED_KEY);
|
|
|
|
else
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
|
|
|
|
NL80211_AUTHTYPE_OPEN_SYSTEM);
|
|
|
|
|
|
|
|
ver = 0;
|
|
|
|
if (params->wpa_version & WPA_PROTO_WPA)
|
|
|
|
ver |= NL80211_WPA_VERSION_1;
|
|
|
|
if (params->wpa_version & WPA_PROTO_RSN)
|
|
|
|
ver |= NL80211_WPA_VERSION_2;
|
|
|
|
if (ver)
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
|
|
|
|
|
|
|
|
num_suites = 0;
|
|
|
|
if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X)
|
|
|
|
suites[num_suites++] = WLAN_AKM_SUITE_8021X;
|
|
|
|
if (params->key_mgmt_suites & WPA_KEY_MGMT_PSK)
|
|
|
|
suites[num_suites++] = WLAN_AKM_SUITE_PSK;
|
|
|
|
if (num_suites) {
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_AKM_SUITES,
|
|
|
|
num_suites * sizeof(u32), suites);
|
|
|
|
}
|
|
|
|
|
|
|
|
num_suites = 0;
|
|
|
|
if (params->pairwise_ciphers & WPA_CIPHER_CCMP)
|
|
|
|
suites[num_suites++] = WLAN_CIPHER_SUITE_CCMP;
|
|
|
|
if (params->pairwise_ciphers & WPA_CIPHER_TKIP)
|
|
|
|
suites[num_suites++] = WLAN_CIPHER_SUITE_TKIP;
|
|
|
|
if (params->pairwise_ciphers & WPA_CIPHER_WEP104)
|
|
|
|
suites[num_suites++] = WLAN_CIPHER_SUITE_WEP104;
|
|
|
|
if (params->pairwise_ciphers & WPA_CIPHER_WEP40)
|
|
|
|
suites[num_suites++] = WLAN_CIPHER_SUITE_WEP40;
|
|
|
|
if (num_suites) {
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE,
|
|
|
|
num_suites * sizeof(u32), suites);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (params->group_cipher) {
|
|
|
|
case WPA_CIPHER_CCMP:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
|
|
|
|
WLAN_CIPHER_SUITE_CCMP);
|
|
|
|
break;
|
|
|
|
case WPA_CIPHER_TKIP:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
|
|
|
|
WLAN_CIPHER_SUITE_TKIP);
|
|
|
|
break;
|
|
|
|
case WPA_CIPHER_WEP104:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
|
|
|
|
WLAN_CIPHER_SUITE_WEP104);
|
|
|
|
break;
|
|
|
|
case WPA_CIPHER_WEP40:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
|
|
|
|
WLAN_CIPHER_SUITE_WEP40);
|
|
|
|
break;
|
|
|
|
}
|
2009-04-02 15:09:48 +02:00
|
|
|
|
2011-08-26 20:14:25 +02:00
|
|
|
if (params->beacon_ies) {
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE, wpabuf_len(params->beacon_ies),
|
|
|
|
wpabuf_head(params->beacon_ies));
|
|
|
|
}
|
|
|
|
if (params->proberesp_ies) {
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE_PROBE_RESP,
|
|
|
|
wpabuf_len(params->proberesp_ies),
|
|
|
|
wpabuf_head(params->proberesp_ies));
|
|
|
|
}
|
|
|
|
if (params->assocresp_ies) {
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE_ASSOC_RESP,
|
|
|
|
wpabuf_len(params->assocresp_ies),
|
|
|
|
wpabuf_head(params->assocresp_ies));
|
|
|
|
}
|
|
|
|
|
2009-04-02 15:09:48 +02:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Beacon set failed: %d (%s)",
|
|
|
|
ret, strerror(-ret));
|
2009-04-09 22:44:39 +02:00
|
|
|
} else {
|
|
|
|
bss->beacon_set = 1;
|
2011-10-17 17:58:46 +02:00
|
|
|
ret = nl80211_set_ap_isolate(bss, params->isolate);
|
|
|
|
if (!params->isolate && ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Ignore AP isolation "
|
|
|
|
"configuration error since isolation is "
|
|
|
|
"not used");
|
|
|
|
ret = 0;
|
|
|
|
}
|
2011-10-17 18:31:33 +02:00
|
|
|
|
|
|
|
nl80211_set_bss(bss, params->cts_protect, params->preamble,
|
|
|
|
params->short_slot_time, params->ht_opmode);
|
2009-04-09 22:44:39 +02:00
|
|
|
}
|
2009-04-02 15:09:48 +02:00
|
|
|
return ret;
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-14 14:15:33 +02:00
|
|
|
static int wpa_driver_nl80211_set_freq(struct wpa_driver_nl80211_data *drv,
|
|
|
|
int freq, int ht_enabled,
|
|
|
|
int sec_channel_offset)
|
2009-03-25 10:38:47 +01:00
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
2009-04-02 15:09:48 +02:00
|
|
|
int ret;
|
2009-03-25 10:38:47 +01:00
|
|
|
|
2011-10-15 12:29:56 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Set freq %d (ht_enabled=%d "
|
|
|
|
"sec_channel_offset=%d)",
|
|
|
|
freq, ht_enabled, sec_channel_offset);
|
2009-03-25 10:38:47 +01:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_SET_WIPHY, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
2009-04-14 14:15:33 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
|
|
|
|
if (ht_enabled) {
|
|
|
|
switch (sec_channel_offset) {
|
|
|
|
case -1:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
|
|
|
|
NL80211_CHAN_HT40MINUS);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
|
|
|
|
NL80211_CHAN_HT40PLUS);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
|
|
|
|
NL80211_CHAN_HT20);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-03-25 10:38:47 +01:00
|
|
|
|
2009-04-02 15:09:48 +02:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (ret == 0)
|
2009-03-25 10:38:47 +01:00
|
|
|
return 0;
|
2009-04-14 14:15:33 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to set channel (freq=%d): "
|
|
|
|
"%d (%s)", freq, ret, strerror(-ret));
|
2009-03-25 10:38:47 +01:00
|
|
|
nla_put_failure:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-04-17 19:09:20 +02:00
|
|
|
|
2011-07-12 19:28:31 +02:00
|
|
|
static u32 sta_flags_nl80211(int flags)
|
|
|
|
{
|
|
|
|
u32 f = 0;
|
|
|
|
|
|
|
|
if (flags & WPA_STA_AUTHORIZED)
|
|
|
|
f |= BIT(NL80211_STA_FLAG_AUTHORIZED);
|
|
|
|
if (flags & WPA_STA_WMM)
|
|
|
|
f |= BIT(NL80211_STA_FLAG_WME);
|
|
|
|
if (flags & WPA_STA_SHORT_PREAMBLE)
|
|
|
|
f |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
|
|
|
|
if (flags & WPA_STA_MFP)
|
|
|
|
f |= BIT(NL80211_STA_FLAG_MFP);
|
|
|
|
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-07 10:42:41 +01:00
|
|
|
static int wpa_driver_nl80211_sta_add(void *priv,
|
2009-04-17 19:09:20 +02:00
|
|
|
struct hostapd_sta_add_params *params)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-17 19:09:20 +02:00
|
|
|
struct nl_msg *msg;
|
2011-07-12 19:28:31 +02:00
|
|
|
struct nl80211_sta_flag_update upd;
|
2009-04-17 19:09:20 +02:00
|
|
|
int ret = -ENOBUFS;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_NEW_STATION, 0);
|
|
|
|
|
2010-03-07 10:42:41 +01:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
|
2009-04-17 19:09:20 +02:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->addr);
|
|
|
|
NLA_PUT_U16(msg, NL80211_ATTR_STA_AID, params->aid);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_STA_SUPPORTED_RATES, params->supp_rates_len,
|
|
|
|
params->supp_rates);
|
|
|
|
NLA_PUT_U16(msg, NL80211_ATTR_STA_LISTEN_INTERVAL,
|
|
|
|
params->listen_interval);
|
|
|
|
if (params->ht_capabilities) {
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY,
|
2009-11-29 12:04:21 +01:00
|
|
|
sizeof(*params->ht_capabilities),
|
|
|
|
params->ht_capabilities);
|
2009-04-17 19:09:20 +02:00
|
|
|
}
|
|
|
|
|
2011-07-12 19:28:31 +02:00
|
|
|
os_memset(&upd, 0, sizeof(upd));
|
|
|
|
upd.mask = sta_flags_nl80211(params->flags);
|
|
|
|
upd.set = upd.mask;
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
|
|
|
|
|
2009-04-17 19:09:20 +02:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (ret)
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: NL80211_CMD_NEW_STATION "
|
|
|
|
"result: %d (%s)", ret, strerror(-ret));
|
|
|
|
if (ret == -EEXIST)
|
|
|
|
ret = 0;
|
|
|
|
nla_put_failure:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_sta_remove(void *priv, const u8 *addr)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-17 19:09:20 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_DEL_STATION, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
|
2010-03-06 21:22:56 +01:00
|
|
|
if_nametoindex(bss->ifname));
|
2009-04-17 19:09:20 +02:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (ret == -ENOENT)
|
|
|
|
return 0;
|
|
|
|
return ret;
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
2009-03-25 10:38:47 +01:00
|
|
|
|
2009-04-02 20:59:14 +02:00
|
|
|
static void nl80211_remove_iface(struct wpa_driver_nl80211_data *drv,
|
|
|
|
int ifidx)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
2009-12-28 12:25:17 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Remove interface ifindex=%d", ifidx);
|
|
|
|
|
2009-04-09 19:41:21 +02:00
|
|
|
#ifdef HOSTAPD
|
|
|
|
/* stop listening for EAPOL on this interface */
|
|
|
|
del_ifidx(drv, ifidx);
|
|
|
|
#endif /* HOSTAPD */
|
|
|
|
|
2009-04-02 20:59:14 +02:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_DEL_INTERFACE, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifidx);
|
|
|
|
|
|
|
|
if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
|
|
|
|
return;
|
|
|
|
nla_put_failure:
|
2010-02-10 10:29:53 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Failed to remove interface (ifidx=%d)", ifidx);
|
2009-04-02 20:59:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-17 18:47:41 +02:00
|
|
|
static const char * nl80211_iftype_str(enum nl80211_iftype mode)
|
|
|
|
{
|
|
|
|
switch (mode) {
|
|
|
|
case NL80211_IFTYPE_ADHOC:
|
|
|
|
return "ADHOC";
|
|
|
|
case NL80211_IFTYPE_STATION:
|
|
|
|
return "STATION";
|
|
|
|
case NL80211_IFTYPE_AP:
|
|
|
|
return "AP";
|
|
|
|
case NL80211_IFTYPE_MONITOR:
|
|
|
|
return "MONITOR";
|
|
|
|
case NL80211_IFTYPE_P2P_CLIENT:
|
|
|
|
return "P2P_CLIENT";
|
|
|
|
case NL80211_IFTYPE_P2P_GO:
|
|
|
|
return "P2P_GO";
|
|
|
|
default:
|
|
|
|
return "unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-29 20:48:19 +02:00
|
|
|
static int nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const char *ifname,
|
|
|
|
enum nl80211_iftype iftype,
|
2009-12-24 10:46:22 +01:00
|
|
|
const u8 *addr, int wds)
|
2009-04-02 20:59:14 +02:00
|
|
|
{
|
|
|
|
struct nl_msg *msg, *flags = NULL;
|
|
|
|
int ifidx;
|
|
|
|
int ret = -ENOBUFS;
|
|
|
|
|
2011-07-17 18:47:41 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Create interface iftype %d (%s)",
|
|
|
|
iftype, nl80211_iftype_str(iftype));
|
|
|
|
|
2009-04-02 20:59:14 +02:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_NEW_INTERFACE, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
NLA_PUT_STRING(msg, NL80211_ATTR_IFNAME, ifname);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, iftype);
|
|
|
|
|
|
|
|
if (iftype == NL80211_IFTYPE_MONITOR) {
|
|
|
|
int err;
|
|
|
|
|
|
|
|
flags = nlmsg_alloc();
|
|
|
|
if (!flags)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
NLA_PUT_FLAG(flags, NL80211_MNTR_FLAG_COOK_FRAMES);
|
|
|
|
|
|
|
|
err = nla_put_nested(msg, NL80211_ATTR_MNTR_FLAGS, flags);
|
|
|
|
|
|
|
|
nlmsg_free(flags);
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
goto nla_put_failure;
|
2009-12-24 10:46:22 +01:00
|
|
|
} else if (wds) {
|
|
|
|
NLA_PUT_U8(msg, NL80211_ATTR_4ADDR, wds);
|
2009-04-02 20:59:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (ret) {
|
|
|
|
nla_put_failure:
|
2009-05-29 20:48:19 +02:00
|
|
|
wpa_printf(MSG_ERROR, "Failed to create interface %s: %d (%s)",
|
|
|
|
ifname, ret, strerror(-ret));
|
2009-04-02 20:59:14 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ifidx = if_nametoindex(ifname);
|
2009-12-28 12:25:17 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: New interface %s created: ifindex=%d",
|
|
|
|
ifname, ifidx);
|
2009-04-02 20:59:14 +02:00
|
|
|
|
|
|
|
if (ifidx <= 0)
|
|
|
|
return -1;
|
|
|
|
|
2009-04-09 19:41:21 +02:00
|
|
|
#ifdef HOSTAPD
|
|
|
|
/* start listening for EAPOL on this interface */
|
|
|
|
add_ifidx(drv, ifidx);
|
2010-01-03 12:42:06 +01:00
|
|
|
#endif /* HOSTAPD */
|
2009-04-09 19:41:21 +02:00
|
|
|
|
2010-01-03 12:42:06 +01:00
|
|
|
if (addr && iftype != NL80211_IFTYPE_MONITOR &&
|
2010-01-03 21:17:08 +01:00
|
|
|
linux_set_ifhwaddr(drv->ioctl_sock, ifname, addr)) {
|
2009-04-17 10:22:16 +02:00
|
|
|
nl80211_remove_iface(drv, ifidx);
|
|
|
|
return -1;
|
2009-04-09 19:41:21 +02:00
|
|
|
}
|
|
|
|
|
2009-04-02 20:59:14 +02:00
|
|
|
return ifidx;
|
|
|
|
}
|
2009-12-09 15:49:28 +01:00
|
|
|
|
|
|
|
|
2009-05-29 20:48:19 +02:00
|
|
|
static int nl80211_create_iface(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const char *ifname, enum nl80211_iftype iftype,
|
2009-12-24 10:46:22 +01:00
|
|
|
const u8 *addr, int wds)
|
2009-05-29 20:48:19 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2009-12-24 10:46:22 +01:00
|
|
|
ret = nl80211_create_iface_once(drv, ifname, iftype, addr, wds);
|
2009-05-29 20:48:19 +02:00
|
|
|
|
2011-09-21 23:43:59 +02:00
|
|
|
/* if error occurred and interface exists already */
|
2009-05-29 20:48:19 +02:00
|
|
|
if (ret == -ENFILE && if_nametoindex(ifname)) {
|
|
|
|
wpa_printf(MSG_INFO, "Try to remove and re-create %s", ifname);
|
|
|
|
|
|
|
|
/* Try to remove the interface that was already there. */
|
|
|
|
nl80211_remove_iface(drv, if_nametoindex(ifname));
|
|
|
|
|
|
|
|
/* Try to create the interface again */
|
2009-12-24 10:46:22 +01:00
|
|
|
ret = nl80211_create_iface_once(drv, ifname, iftype, addr,
|
|
|
|
wds);
|
2009-05-29 20:48:19 +02:00
|
|
|
}
|
|
|
|
|
2010-01-16 11:11:19 +01:00
|
|
|
if (ret >= 0 && drv->disable_11b_rates)
|
|
|
|
nl80211_disable_11b_rates(drv, ret, 1);
|
|
|
|
|
2009-05-29 20:48:19 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2009-04-02 20:59:14 +02:00
|
|
|
|
2009-04-09 19:41:21 +02:00
|
|
|
|
2009-04-02 20:59:14 +02:00
|
|
|
static void handle_tx_callback(void *ctx, u8 *buf, size_t len, int ok)
|
|
|
|
{
|
|
|
|
struct ieee80211_hdr *hdr;
|
2009-12-13 22:05:39 +01:00
|
|
|
u16 fc;
|
|
|
|
union wpa_event_data event;
|
2009-04-02 20:59:14 +02:00
|
|
|
|
|
|
|
hdr = (struct ieee80211_hdr *) buf;
|
|
|
|
fc = le_to_host16(hdr->frame_control);
|
|
|
|
|
2009-12-13 22:05:39 +01:00
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
event.tx_status.type = WLAN_FC_GET_TYPE(fc);
|
|
|
|
event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
|
|
|
|
event.tx_status.dst = hdr->addr1;
|
|
|
|
event.tx_status.data = buf;
|
|
|
|
event.tx_status.data_len = len;
|
|
|
|
event.tx_status.ack = ok;
|
|
|
|
wpa_supplicant_event(ctx, EVENT_TX_STATUS, &event);
|
2009-04-02 20:59:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-17 12:29:29 +02:00
|
|
|
static void from_unknown_sta(struct wpa_driver_nl80211_data *drv,
|
2010-01-03 11:17:20 +01:00
|
|
|
u8 *buf, size_t len)
|
2009-04-02 20:59:14 +02:00
|
|
|
{
|
2011-10-20 20:51:32 +02:00
|
|
|
struct ieee80211_hdr *hdr = (void *)buf;
|
|
|
|
u16 fc;
|
2009-12-13 22:05:39 +01:00
|
|
|
union wpa_event_data event;
|
2011-10-20 20:51:32 +02:00
|
|
|
|
|
|
|
if (len < sizeof(*hdr))
|
|
|
|
return;
|
|
|
|
|
|
|
|
fc = le_to_host16(hdr->frame_control);
|
|
|
|
|
2009-12-13 22:05:39 +01:00
|
|
|
os_memset(&event, 0, sizeof(event));
|
2011-10-20 20:51:32 +02:00
|
|
|
event.rx_from_unknown.bssid = get_hdr_bssid(hdr, len);
|
|
|
|
event.rx_from_unknown.addr = hdr->addr2;
|
|
|
|
event.rx_from_unknown.wds = (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) ==
|
|
|
|
(WLAN_FC_FROMDS | WLAN_FC_TODS);
|
2009-12-13 22:05:39 +01:00
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_RX_FROM_UNKNOWN, &event);
|
2009-04-17 12:29:29 +02:00
|
|
|
}
|
2009-04-02 20:59:14 +02:00
|
|
|
|
2009-04-17 12:29:29 +02:00
|
|
|
|
|
|
|
static void handle_frame(struct wpa_driver_nl80211_data *drv,
|
2010-01-03 11:37:02 +01:00
|
|
|
u8 *buf, size_t len, int datarate, int ssi_signal)
|
2009-04-17 12:29:29 +02:00
|
|
|
{
|
|
|
|
struct ieee80211_hdr *hdr;
|
2009-12-13 22:05:39 +01:00
|
|
|
u16 fc;
|
|
|
|
union wpa_event_data event;
|
2009-04-02 20:59:14 +02:00
|
|
|
|
|
|
|
hdr = (struct ieee80211_hdr *) buf;
|
|
|
|
fc = le_to_host16(hdr->frame_control);
|
|
|
|
|
2009-04-17 12:29:29 +02:00
|
|
|
switch (WLAN_FC_GET_TYPE(fc)) {
|
2009-04-02 20:59:14 +02:00
|
|
|
case WLAN_FC_TYPE_MGMT:
|
2009-12-13 22:05:39 +01:00
|
|
|
os_memset(&event, 0, sizeof(event));
|
|
|
|
event.rx_mgmt.frame = buf;
|
|
|
|
event.rx_mgmt.frame_len = len;
|
2010-01-03 11:37:02 +01:00
|
|
|
event.rx_mgmt.datarate = datarate;
|
|
|
|
event.rx_mgmt.ssi_signal = ssi_signal;
|
2009-12-13 22:05:39 +01:00
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
|
2009-04-02 20:59:14 +02:00
|
|
|
break;
|
|
|
|
case WLAN_FC_TYPE_CTRL:
|
|
|
|
/* can only get here with PS-Poll frames */
|
|
|
|
wpa_printf(MSG_DEBUG, "CTRL");
|
2010-01-03 11:17:20 +01:00
|
|
|
from_unknown_sta(drv, buf, len);
|
2009-04-02 20:59:14 +02:00
|
|
|
break;
|
|
|
|
case WLAN_FC_TYPE_DATA:
|
2010-01-03 11:17:20 +01:00
|
|
|
from_unknown_sta(drv, buf, len);
|
2009-04-02 20:59:14 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void handle_monitor_read(int sock, void *eloop_ctx, void *sock_ctx)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = eloop_ctx;
|
|
|
|
int len;
|
|
|
|
unsigned char buf[3000];
|
|
|
|
struct ieee80211_radiotap_iterator iter;
|
|
|
|
int ret;
|
2010-01-03 11:37:02 +01:00
|
|
|
int datarate = 0, ssi_signal = 0;
|
2009-04-17 12:29:29 +02:00
|
|
|
int injected = 0, failed = 0, rxflags = 0;
|
2009-04-02 20:59:14 +02:00
|
|
|
|
|
|
|
len = recv(sock, buf, sizeof(buf), 0);
|
|
|
|
if (len < 0) {
|
|
|
|
perror("recv");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ieee80211_radiotap_iterator_init(&iter, (void*)buf, len)) {
|
|
|
|
printf("received invalid radiotap frame\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
ret = ieee80211_radiotap_iterator_next(&iter);
|
|
|
|
if (ret == -ENOENT)
|
|
|
|
break;
|
|
|
|
if (ret) {
|
|
|
|
printf("received invalid radiotap frame (%d)\n", ret);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
switch (iter.this_arg_index) {
|
|
|
|
case IEEE80211_RADIOTAP_FLAGS:
|
|
|
|
if (*iter.this_arg & IEEE80211_RADIOTAP_F_FCS)
|
|
|
|
len -= 4;
|
|
|
|
break;
|
|
|
|
case IEEE80211_RADIOTAP_RX_FLAGS:
|
|
|
|
rxflags = 1;
|
|
|
|
break;
|
|
|
|
case IEEE80211_RADIOTAP_TX_FLAGS:
|
|
|
|
injected = 1;
|
|
|
|
failed = le_to_host16((*(uint16_t *) iter.this_arg)) &
|
|
|
|
IEEE80211_RADIOTAP_F_TX_FAIL;
|
|
|
|
break;
|
|
|
|
case IEEE80211_RADIOTAP_DATA_RETRIES:
|
|
|
|
break;
|
|
|
|
case IEEE80211_RADIOTAP_CHANNEL:
|
2010-01-03 11:37:02 +01:00
|
|
|
/* TODO: convert from freq/flags to channel number */
|
2009-04-02 20:59:14 +02:00
|
|
|
break;
|
|
|
|
case IEEE80211_RADIOTAP_RATE:
|
2010-01-03 11:37:02 +01:00
|
|
|
datarate = *iter.this_arg * 5;
|
2009-04-02 20:59:14 +02:00
|
|
|
break;
|
|
|
|
case IEEE80211_RADIOTAP_DB_ANTSIGNAL:
|
2010-01-03 11:37:02 +01:00
|
|
|
ssi_signal = *iter.this_arg;
|
2009-04-02 20:59:14 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rxflags && injected)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!injected)
|
2009-04-17 12:29:29 +02:00
|
|
|
handle_frame(drv, buf + iter.max_length,
|
2010-01-03 11:37:02 +01:00
|
|
|
len - iter.max_length, datarate, ssi_signal);
|
2009-04-02 20:59:14 +02:00
|
|
|
else
|
2009-04-17 12:29:29 +02:00
|
|
|
handle_tx_callback(drv->ctx, buf + iter.max_length,
|
|
|
|
len - iter.max_length, !failed);
|
2009-04-02 20:59:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* we post-process the filter code later and rewrite
|
|
|
|
* this to the offset to the last instruction
|
|
|
|
*/
|
|
|
|
#define PASS 0xFF
|
|
|
|
#define FAIL 0xFE
|
|
|
|
|
|
|
|
static struct sock_filter msock_filter_insns[] = {
|
|
|
|
/*
|
|
|
|
* do a little-endian load of the radiotap length field
|
|
|
|
*/
|
|
|
|
/* load lower byte into A */
|
|
|
|
BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 2),
|
|
|
|
/* put it into X (== index register) */
|
|
|
|
BPF_STMT(BPF_MISC| BPF_TAX, 0),
|
|
|
|
/* load upper byte into A */
|
|
|
|
BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 3),
|
|
|
|
/* left-shift it by 8 */
|
|
|
|
BPF_STMT(BPF_ALU | BPF_LSH | BPF_K, 8),
|
|
|
|
/* or with X */
|
|
|
|
BPF_STMT(BPF_ALU | BPF_OR | BPF_X, 0),
|
|
|
|
/* put result into X */
|
|
|
|
BPF_STMT(BPF_MISC| BPF_TAX, 0),
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allow management frames through, this also gives us those
|
|
|
|
* management frames that we sent ourselves with status
|
|
|
|
*/
|
|
|
|
/* load the lower byte of the IEEE 802.11 frame control field */
|
|
|
|
BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
|
|
|
|
/* mask off frame type and version */
|
|
|
|
BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0xF),
|
|
|
|
/* accept frame if it's both 0, fall through otherwise */
|
|
|
|
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0, PASS, 0),
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: add a bit to radiotap RX flags that indicates
|
|
|
|
* that the sending station is not associated, then
|
|
|
|
* add a filter here that filters on our DA and that flag
|
|
|
|
* to allow us to deauth frames to that bad station.
|
|
|
|
*
|
2010-10-31 20:36:43 +01:00
|
|
|
* For now allow all To DS data frames through.
|
2009-04-02 20:59:14 +02:00
|
|
|
*/
|
2010-10-31 20:36:43 +01:00
|
|
|
/* load the IEEE 802.11 frame control field */
|
|
|
|
BPF_STMT(BPF_LD | BPF_H | BPF_IND, 0),
|
|
|
|
/* mask off frame type, version and DS status */
|
|
|
|
BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0F03),
|
|
|
|
/* accept frame if version 0, type 2 and To DS, fall through otherwise
|
|
|
|
*/
|
|
|
|
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0801, PASS, 0),
|
2009-04-02 20:59:14 +02:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
/*
|
2009-12-24 10:46:22 +01:00
|
|
|
* drop non-data frames
|
2009-04-02 20:59:14 +02:00
|
|
|
*/
|
|
|
|
/* load the lower byte of the frame control field */
|
|
|
|
BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
|
|
|
|
/* mask off QoS bit */
|
|
|
|
BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0c),
|
|
|
|
/* drop non-data frames */
|
|
|
|
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 8, 0, FAIL),
|
2009-12-24 10:46:22 +01:00
|
|
|
#endif
|
2009-04-02 20:59:14 +02:00
|
|
|
/* load the upper byte of the frame control field */
|
2009-12-24 10:46:22 +01:00
|
|
|
BPF_STMT(BPF_LD | BPF_B | BPF_IND, 1),
|
2009-04-02 20:59:14 +02:00
|
|
|
/* mask off toDS/fromDS */
|
|
|
|
BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x03),
|
2009-12-24 10:46:22 +01:00
|
|
|
/* accept WDS frames */
|
|
|
|
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 3, PASS, 0),
|
2009-04-02 20:59:14 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* add header length to index
|
|
|
|
*/
|
|
|
|
/* load the lower byte of the frame control field */
|
|
|
|
BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
|
|
|
|
/* mask off QoS bit */
|
|
|
|
BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x80),
|
|
|
|
/* right shift it by 6 to give 0 or 2 */
|
|
|
|
BPF_STMT(BPF_ALU | BPF_RSH | BPF_K, 6),
|
|
|
|
/* add data frame header length */
|
|
|
|
BPF_STMT(BPF_ALU | BPF_ADD | BPF_K, 24),
|
|
|
|
/* add index, was start of 802.11 header */
|
|
|
|
BPF_STMT(BPF_ALU | BPF_ADD | BPF_X, 0),
|
|
|
|
/* move to index, now start of LL header */
|
|
|
|
BPF_STMT(BPF_MISC | BPF_TAX, 0),
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Accept empty data frames, we use those for
|
|
|
|
* polling activity.
|
|
|
|
*/
|
|
|
|
BPF_STMT(BPF_LD | BPF_W | BPF_LEN, 0),
|
|
|
|
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_X, 0, PASS, 0),
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Accept EAPOL frames
|
|
|
|
*/
|
|
|
|
BPF_STMT(BPF_LD | BPF_W | BPF_IND, 0),
|
|
|
|
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0xAAAA0300, 0, FAIL),
|
|
|
|
BPF_STMT(BPF_LD | BPF_W | BPF_IND, 4),
|
|
|
|
BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0000888E, PASS, FAIL),
|
|
|
|
|
|
|
|
/* keep these last two statements or change the code below */
|
|
|
|
/* return 0 == "DROP" */
|
|
|
|
BPF_STMT(BPF_RET | BPF_K, 0),
|
|
|
|
/* return ~0 == "keep all" */
|
|
|
|
BPF_STMT(BPF_RET | BPF_K, ~0),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct sock_fprog msock_filter = {
|
|
|
|
.len = sizeof(msock_filter_insns)/sizeof(msock_filter_insns[0]),
|
|
|
|
.filter = msock_filter_insns,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int add_monitor_filter(int s)
|
|
|
|
{
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
/* rewrite all PASS/FAIL jump offsets */
|
|
|
|
for (idx = 0; idx < msock_filter.len; idx++) {
|
|
|
|
struct sock_filter *insn = &msock_filter_insns[idx];
|
|
|
|
|
|
|
|
if (BPF_CLASS(insn->code) == BPF_JMP) {
|
|
|
|
if (insn->code == (BPF_JMP|BPF_JA)) {
|
|
|
|
if (insn->k == PASS)
|
|
|
|
insn->k = msock_filter.len - idx - 2;
|
|
|
|
else if (insn->k == FAIL)
|
|
|
|
insn->k = msock_filter.len - idx - 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (insn->jt == PASS)
|
|
|
|
insn->jt = msock_filter.len - idx - 2;
|
|
|
|
else if (insn->jt == FAIL)
|
|
|
|
insn->jt = msock_filter.len - idx - 3;
|
|
|
|
|
|
|
|
if (insn->jf == PASS)
|
|
|
|
insn->jf = msock_filter.len - idx - 2;
|
|
|
|
else if (insn->jf == FAIL)
|
|
|
|
insn->jf = msock_filter.len - idx - 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setsockopt(s, SOL_SOCKET, SO_ATTACH_FILTER,
|
|
|
|
&msock_filter, sizeof(msock_filter))) {
|
|
|
|
perror("SO_ATTACH_FILTER");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-17 15:27:38 +02:00
|
|
|
static void nl80211_remove_monitor_interface(
|
|
|
|
struct wpa_driver_nl80211_data *drv)
|
|
|
|
{
|
|
|
|
if (drv->monitor_ifidx >= 0) {
|
|
|
|
nl80211_remove_iface(drv, drv->monitor_ifidx);
|
|
|
|
drv->monitor_ifidx = -1;
|
|
|
|
}
|
2010-01-03 12:30:22 +01:00
|
|
|
if (drv->monitor_sock >= 0) {
|
|
|
|
eloop_unregister_read_sock(drv->monitor_sock);
|
|
|
|
close(drv->monitor_sock);
|
|
|
|
drv->monitor_sock = -1;
|
|
|
|
}
|
2009-04-17 15:27:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-02 20:59:14 +02:00
|
|
|
static int
|
|
|
|
nl80211_create_monitor_interface(struct wpa_driver_nl80211_data *drv)
|
|
|
|
{
|
|
|
|
char buf[IFNAMSIZ];
|
|
|
|
struct sockaddr_ll ll;
|
|
|
|
int optval;
|
|
|
|
socklen_t optlen;
|
|
|
|
|
2011-10-15 12:07:30 +02:00
|
|
|
if (os_strncmp(drv->first_bss.ifname, "p2p-", 4) == 0) {
|
|
|
|
/*
|
|
|
|
* P2P interface name is of the format p2p-%s-%d. For monitor
|
|
|
|
* interface name corresponding to P2P GO, replace "p2p-" with
|
|
|
|
* "mon-" to retain the same interface name length and to
|
|
|
|
* indicate that it is a monitor interface.
|
|
|
|
*/
|
|
|
|
snprintf(buf, IFNAMSIZ, "mon-%s", drv->first_bss.ifname + 4);
|
|
|
|
} else {
|
|
|
|
/* Non-P2P interface with AP functionality. */
|
|
|
|
snprintf(buf, IFNAMSIZ, "mon.%s", drv->first_bss.ifname);
|
|
|
|
}
|
|
|
|
|
2009-04-02 20:59:14 +02:00
|
|
|
buf[IFNAMSIZ - 1] = '\0';
|
|
|
|
|
|
|
|
drv->monitor_ifidx =
|
2009-12-24 10:46:22 +01:00
|
|
|
nl80211_create_iface(drv, buf, NL80211_IFTYPE_MONITOR, NULL,
|
|
|
|
0);
|
2009-04-02 20:59:14 +02:00
|
|
|
|
2011-06-28 20:59:44 +02:00
|
|
|
if (drv->monitor_ifidx == -EOPNOTSUPP) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Driver does not support "
|
|
|
|
"monitor interface type - try to run without it");
|
|
|
|
drv->no_monitor_iface_capab = 1;
|
|
|
|
}
|
|
|
|
|
2009-04-02 20:59:14 +02:00
|
|
|
if (drv->monitor_ifidx < 0)
|
|
|
|
return -1;
|
|
|
|
|
2010-01-03 21:08:26 +01:00
|
|
|
if (linux_set_iface_flags(drv->ioctl_sock, buf, 1))
|
2009-04-02 20:59:14 +02:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
memset(&ll, 0, sizeof(ll));
|
|
|
|
ll.sll_family = AF_PACKET;
|
|
|
|
ll.sll_ifindex = drv->monitor_ifidx;
|
|
|
|
drv->monitor_sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
|
|
|
|
if (drv->monitor_sock < 0) {
|
|
|
|
perror("socket[PF_PACKET,SOCK_RAW]");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (add_monitor_filter(drv->monitor_sock)) {
|
|
|
|
wpa_printf(MSG_INFO, "Failed to set socket filter for monitor "
|
|
|
|
"interface; do filtering in user space");
|
|
|
|
/* This works, but will cost in performance. */
|
|
|
|
}
|
|
|
|
|
2009-04-09 19:41:21 +02:00
|
|
|
if (bind(drv->monitor_sock, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
|
2009-04-02 20:59:14 +02:00
|
|
|
perror("monitor socket bind");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
optlen = sizeof(optval);
|
|
|
|
optval = 20;
|
|
|
|
if (setsockopt
|
|
|
|
(drv->monitor_sock, SOL_SOCKET, SO_PRIORITY, &optval, optlen)) {
|
|
|
|
perror("Failed to set socket priority");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (eloop_register_read_sock(drv->monitor_sock, handle_monitor_read,
|
|
|
|
drv, NULL)) {
|
|
|
|
printf("Could not register monitor read socket\n");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
error:
|
2009-04-17 15:27:38 +02:00
|
|
|
nl80211_remove_monitor_interface(drv);
|
2009-04-02 20:59:14 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-04-20 15:27:45 +02:00
|
|
|
|
2011-08-09 22:32:26 +02:00
|
|
|
#ifdef CONFIG_AP
|
2011-08-09 13:04:53 +02:00
|
|
|
static int nl80211_send_eapol_data(struct i802_bss *bss,
|
|
|
|
const u8 *addr, const u8 *data,
|
|
|
|
size_t data_len, const u8 *own_addr)
|
|
|
|
{
|
|
|
|
if (bss->drv->l2 == NULL) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: No l2_packet to send EAPOL");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l2_packet_send(bss->drv->l2, addr, ETH_P_EAPOL, data, data_len) <
|
|
|
|
0)
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
2011-08-09 22:32:26 +02:00
|
|
|
#endif /* CONFIG_AP */
|
|
|
|
|
2011-08-09 13:04:53 +02:00
|
|
|
|
2009-04-20 15:27:45 +02:00
|
|
|
static const u8 rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_hapd_send_eapol(
|
|
|
|
void *priv, const u8 *addr, const u8 *data,
|
2011-04-02 21:03:05 +02:00
|
|
|
size_t data_len, int encrypt, const u8 *own_addr, u32 flags)
|
2009-04-20 15:27:45 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-20 15:27:45 +02:00
|
|
|
struct ieee80211_hdr *hdr;
|
|
|
|
size_t len;
|
|
|
|
u8 *pos;
|
|
|
|
int res;
|
2011-04-02 21:03:05 +02:00
|
|
|
int qos = flags & WPA_STA_WMM;
|
2009-04-20 15:27:45 +02:00
|
|
|
|
2011-08-09 22:32:26 +02:00
|
|
|
#ifdef CONFIG_AP
|
2011-08-09 13:04:53 +02:00
|
|
|
if (drv->no_monitor_iface_capab)
|
|
|
|
return nl80211_send_eapol_data(bss, addr, data, data_len,
|
|
|
|
own_addr);
|
2011-08-09 22:32:26 +02:00
|
|
|
#endif /* CONFIG_AP */
|
2011-08-09 13:04:53 +02:00
|
|
|
|
2009-04-20 15:27:45 +02:00
|
|
|
len = sizeof(*hdr) + (qos ? 2 : 0) + sizeof(rfc1042_header) + 2 +
|
|
|
|
data_len;
|
|
|
|
hdr = os_zalloc(len);
|
|
|
|
if (hdr == NULL) {
|
|
|
|
printf("malloc() failed for i802_send_data(len=%lu)\n",
|
|
|
|
(unsigned long) len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
hdr->frame_control =
|
|
|
|
IEEE80211_FC(WLAN_FC_TYPE_DATA, WLAN_FC_STYPE_DATA);
|
|
|
|
hdr->frame_control |= host_to_le16(WLAN_FC_FROMDS);
|
|
|
|
if (encrypt)
|
|
|
|
hdr->frame_control |= host_to_le16(WLAN_FC_ISWEP);
|
|
|
|
if (qos) {
|
|
|
|
hdr->frame_control |=
|
|
|
|
host_to_le16(WLAN_FC_STYPE_QOS_DATA << 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(hdr->IEEE80211_DA_FROMDS, addr, ETH_ALEN);
|
|
|
|
memcpy(hdr->IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
|
|
|
|
memcpy(hdr->IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
|
|
|
|
pos = (u8 *) (hdr + 1);
|
|
|
|
|
|
|
|
if (qos) {
|
|
|
|
/* add an empty QoS header if needed */
|
|
|
|
pos[0] = 0;
|
|
|
|
pos[1] = 0;
|
|
|
|
pos += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(pos, rfc1042_header, sizeof(rfc1042_header));
|
|
|
|
pos += sizeof(rfc1042_header);
|
|
|
|
WPA_PUT_BE16(pos, ETH_P_PAE);
|
|
|
|
pos += 2;
|
|
|
|
memcpy(pos, data, data_len);
|
|
|
|
|
|
|
|
res = wpa_driver_nl80211_send_frame(drv, (u8 *) hdr, len, encrypt);
|
|
|
|
if (res < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "i802_send_eapol - packet len: %lu - "
|
|
|
|
"failed: %d (%s)",
|
|
|
|
(unsigned long) len, errno, strerror(errno));
|
|
|
|
}
|
2009-12-21 21:32:59 +01:00
|
|
|
os_free(hdr);
|
2009-04-20 15:27:45 +02:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2009-04-20 15:33:13 +02:00
|
|
|
|
2010-03-07 10:45:41 +01:00
|
|
|
static int wpa_driver_nl80211_sta_set_flags(void *priv, const u8 *addr,
|
|
|
|
int total_flags,
|
2010-03-06 19:44:31 +01:00
|
|
|
int flags_or, int flags_and)
|
2009-04-20 15:33:13 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-20 15:33:13 +02:00
|
|
|
struct nl_msg *msg, *flags = NULL;
|
2009-05-14 20:53:21 +02:00
|
|
|
struct nl80211_sta_flag_update upd;
|
2009-04-20 15:33:13 +02:00
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
flags = nlmsg_alloc();
|
|
|
|
if (!flags) {
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_SET_STATION, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
|
2010-03-07 10:45:41 +01:00
|
|
|
if_nametoindex(bss->ifname));
|
2009-04-20 15:33:13 +02:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
|
|
|
|
2009-05-14 20:53:21 +02:00
|
|
|
/*
|
|
|
|
* Backwards compatibility version using NL80211_ATTR_STA_FLAGS. This
|
|
|
|
* can be removed eventually.
|
|
|
|
*/
|
2009-12-13 10:35:39 +01:00
|
|
|
if (total_flags & WPA_STA_AUTHORIZED)
|
2009-04-20 15:33:13 +02:00
|
|
|
NLA_PUT_FLAG(flags, NL80211_STA_FLAG_AUTHORIZED);
|
|
|
|
|
2009-12-13 10:35:39 +01:00
|
|
|
if (total_flags & WPA_STA_WMM)
|
2009-04-20 15:33:13 +02:00
|
|
|
NLA_PUT_FLAG(flags, NL80211_STA_FLAG_WME);
|
|
|
|
|
2009-12-13 10:35:39 +01:00
|
|
|
if (total_flags & WPA_STA_SHORT_PREAMBLE)
|
2009-04-20 15:33:13 +02:00
|
|
|
NLA_PUT_FLAG(flags, NL80211_STA_FLAG_SHORT_PREAMBLE);
|
|
|
|
|
2009-12-13 10:35:39 +01:00
|
|
|
if (total_flags & WPA_STA_MFP)
|
2009-04-20 15:33:13 +02:00
|
|
|
NLA_PUT_FLAG(flags, NL80211_STA_FLAG_MFP);
|
|
|
|
|
|
|
|
if (nla_put_nested(msg, NL80211_ATTR_STA_FLAGS, flags))
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
2009-05-14 20:53:21 +02:00
|
|
|
os_memset(&upd, 0, sizeof(upd));
|
|
|
|
upd.mask = sta_flags_nl80211(flags_or | ~flags_and);
|
|
|
|
upd.set = sta_flags_nl80211(flags_or);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
|
|
|
|
|
2009-04-20 15:33:13 +02:00
|
|
|
nlmsg_free(flags);
|
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(flags);
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
2009-04-02 20:59:14 +02:00
|
|
|
|
2009-03-25 10:38:47 +01:00
|
|
|
static int wpa_driver_nl80211_ap(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct wpa_driver_associate_params *params)
|
|
|
|
{
|
2011-07-17 19:22:11 +02:00
|
|
|
enum nl80211_iftype nlmode;
|
|
|
|
|
|
|
|
if (params->p2p) {
|
2010-07-18 23:30:25 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Setup AP operations for P2P "
|
|
|
|
"group (GO)");
|
2011-07-17 19:22:11 +02:00
|
|
|
nlmode = NL80211_IFTYPE_P2P_GO;
|
|
|
|
} else
|
|
|
|
nlmode = NL80211_IFTYPE_AP;
|
|
|
|
|
|
|
|
if (wpa_driver_nl80211_set_mode(&drv->first_bss, nlmode) ||
|
2009-04-14 14:15:33 +02:00
|
|
|
wpa_driver_nl80211_set_freq(drv, params->freq, 0, 0)) {
|
2009-04-17 15:27:38 +02:00
|
|
|
nl80211_remove_monitor_interface(drv);
|
2009-03-25 10:38:47 +01:00
|
|
|
return -1;
|
2009-04-02 20:59:14 +02:00
|
|
|
}
|
2009-03-25 10:38:47 +01:00
|
|
|
|
2011-08-29 13:26:55 +02:00
|
|
|
if (drv->no_monitor_iface_capab) {
|
|
|
|
if (wpa_driver_nl80211_probe_req_report(&drv->first_bss, 1) < 0)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to enable "
|
|
|
|
"Probe Request frame reporting in AP mode");
|
|
|
|
/* Try to survive without this */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
drv->ap_oper_freq = params->freq;
|
2009-03-25 10:38:47 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-03 23:15:32 +01:00
|
|
|
static int nl80211_leave_ibss(struct wpa_driver_nl80211_data *drv)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_LEAVE_IBSS, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS request sent successfully");
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_ibss(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct wpa_driver_associate_params *params)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret = -1;
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Join IBSS (ifindex=%d)", drv->ifindex);
|
|
|
|
|
2011-07-17 19:22:11 +02:00
|
|
|
if (wpa_driver_nl80211_set_mode(&drv->first_bss,
|
|
|
|
NL80211_IFTYPE_ADHOC)) {
|
2009-12-03 23:15:32 +01:00
|
|
|
wpa_printf(MSG_INFO, "nl80211: Failed to set interface into "
|
|
|
|
"IBSS mode");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
retry:
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_JOIN_IBSS, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
|
|
|
if (params->ssid == NULL || params->ssid_len > sizeof(drv->ssid))
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
|
|
|
|
params->ssid, params->ssid_len);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
|
|
|
|
params->ssid);
|
|
|
|
os_memcpy(drv->ssid, params->ssid, params->ssid_len);
|
|
|
|
drv->ssid_len = params->ssid_len;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
|
|
|
|
|
|
|
|
ret = nl80211_set_conn_keys(params, msg);
|
|
|
|
if (ret)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
2009-12-04 21:20:59 +01:00
|
|
|
if (params->wpa_ie) {
|
|
|
|
wpa_hexdump(MSG_DEBUG,
|
|
|
|
" * Extra IEs for Beacon/Probe Response frames",
|
|
|
|
params->wpa_ie, params->wpa_ie_len);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
|
|
|
|
params->wpa_ie);
|
|
|
|
}
|
|
|
|
|
2009-12-03 23:15:32 +01:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Join IBSS failed: ret=%d (%s)",
|
|
|
|
ret, strerror(-ret));
|
|
|
|
count++;
|
|
|
|
if (ret == -EALREADY && count == 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Retry IBSS join after "
|
|
|
|
"forced leave");
|
|
|
|
nl80211_leave_ibss(drv);
|
|
|
|
nlmsg_free(msg);
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Join IBSS request sent successfully");
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-18 20:26:55 +02:00
|
|
|
static unsigned int nl80211_get_assoc_bssid(struct wpa_driver_nl80211_data *drv,
|
|
|
|
u8 *bssid)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret;
|
|
|
|
struct nl80211_bss_info_arg arg;
|
|
|
|
|
|
|
|
os_memset(&arg, 0, sizeof(arg));
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, NLM_F_DUMP,
|
|
|
|
NL80211_CMD_GET_SCAN, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
|
|
|
arg.drv = drv;
|
|
|
|
ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret == 0) {
|
|
|
|
if (is_zero_ether_addr(arg.assoc_bssid))
|
|
|
|
return -ENOTCONN;
|
|
|
|
os_memcpy(bssid, arg.assoc_bssid, ETH_ALEN);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return drv->assoc_freq;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl80211_disconnect(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const u8 *bssid)
|
|
|
|
{
|
|
|
|
u8 addr[ETH_ALEN];
|
|
|
|
|
|
|
|
if (bssid == NULL) {
|
|
|
|
int res = nl80211_get_assoc_bssid(drv, addr);
|
|
|
|
if (res)
|
|
|
|
return res;
|
|
|
|
bssid = addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return wpa_driver_nl80211_disconnect(drv, bssid,
|
|
|
|
WLAN_REASON_PREV_AUTH_NOT_VALID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-03 20:31:29 +02:00
|
|
|
static int wpa_driver_nl80211_connect(
|
|
|
|
struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct wpa_driver_associate_params *params)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
enum nl80211_auth_type type;
|
|
|
|
int ret = 0;
|
2011-04-07 13:53:40 +02:00
|
|
|
int algs;
|
2009-09-03 20:31:29 +02:00
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Connect (ifindex=%d)", drv->ifindex);
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_CONNECT, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
if (params->bssid) {
|
|
|
|
wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
|
|
|
|
MAC2STR(params->bssid));
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
|
|
|
|
}
|
|
|
|
if (params->freq) {
|
|
|
|
wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
|
|
|
|
}
|
|
|
|
if (params->ssid) {
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
|
|
|
|
params->ssid, params->ssid_len);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
|
|
|
|
params->ssid);
|
|
|
|
if (params->ssid_len > sizeof(drv->ssid))
|
|
|
|
goto nla_put_failure;
|
|
|
|
os_memcpy(drv->ssid, params->ssid, params->ssid_len);
|
|
|
|
drv->ssid_len = params->ssid_len;
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, " * IEs", params->wpa_ie, params->wpa_ie_len);
|
|
|
|
if (params->wpa_ie)
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
|
|
|
|
params->wpa_ie);
|
|
|
|
|
2011-04-07 13:53:40 +02:00
|
|
|
algs = 0;
|
|
|
|
if (params->auth_alg & WPA_AUTH_ALG_OPEN)
|
|
|
|
algs++;
|
|
|
|
if (params->auth_alg & WPA_AUTH_ALG_SHARED)
|
|
|
|
algs++;
|
|
|
|
if (params->auth_alg & WPA_AUTH_ALG_LEAP)
|
|
|
|
algs++;
|
|
|
|
if (algs > 1) {
|
|
|
|
wpa_printf(MSG_DEBUG, " * Leave out Auth Type for automatic "
|
|
|
|
"selection");
|
|
|
|
goto skip_auth_type;
|
|
|
|
}
|
|
|
|
|
2010-01-03 20:14:40 +01:00
|
|
|
if (params->auth_alg & WPA_AUTH_ALG_OPEN)
|
2009-09-03 20:31:29 +02:00
|
|
|
type = NL80211_AUTHTYPE_OPEN_SYSTEM;
|
2010-01-03 20:14:40 +01:00
|
|
|
else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
|
2009-09-03 20:31:29 +02:00
|
|
|
type = NL80211_AUTHTYPE_SHARED_KEY;
|
2010-01-03 20:14:40 +01:00
|
|
|
else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
|
2009-09-03 20:31:29 +02:00
|
|
|
type = NL80211_AUTHTYPE_NETWORK_EAP;
|
2010-01-03 20:14:40 +01:00
|
|
|
else if (params->auth_alg & WPA_AUTH_ALG_FT)
|
2009-09-03 20:31:29 +02:00
|
|
|
type = NL80211_AUTHTYPE_FT;
|
|
|
|
else
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, " * Auth Type %d", type);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
|
|
|
|
|
2011-04-07 13:53:40 +02:00
|
|
|
skip_auth_type:
|
2011-09-02 19:40:23 +02:00
|
|
|
if (params->wpa_proto) {
|
|
|
|
enum nl80211_wpa_versions ver = 0;
|
2009-09-03 20:31:29 +02:00
|
|
|
|
2011-09-02 19:40:23 +02:00
|
|
|
if (params->wpa_proto & WPA_PROTO_WPA)
|
|
|
|
ver |= NL80211_WPA_VERSION_1;
|
|
|
|
if (params->wpa_proto & WPA_PROTO_RSN)
|
|
|
|
ver |= NL80211_WPA_VERSION_2;
|
2009-09-03 20:31:29 +02:00
|
|
|
|
2011-09-02 19:40:23 +02:00
|
|
|
wpa_printf(MSG_DEBUG, " * WPA Versions 0x%x", ver);
|
2009-09-03 20:31:29 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params->pairwise_suite != CIPHER_NONE) {
|
2009-11-23 14:40:29 +01:00
|
|
|
int cipher;
|
2009-09-03 20:31:29 +02:00
|
|
|
|
|
|
|
switch (params->pairwise_suite) {
|
|
|
|
case CIPHER_WEP40:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_WEP40;
|
|
|
|
break;
|
|
|
|
case CIPHER_WEP104:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_WEP104;
|
|
|
|
break;
|
|
|
|
case CIPHER_CCMP:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_CCMP;
|
|
|
|
break;
|
|
|
|
case CIPHER_TKIP:
|
|
|
|
default:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_TKIP;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE, cipher);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params->group_suite != CIPHER_NONE) {
|
2009-11-23 14:40:29 +01:00
|
|
|
int cipher;
|
2009-09-03 20:31:29 +02:00
|
|
|
|
|
|
|
switch (params->group_suite) {
|
|
|
|
case CIPHER_WEP40:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_WEP40;
|
|
|
|
break;
|
|
|
|
case CIPHER_WEP104:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_WEP104;
|
|
|
|
break;
|
|
|
|
case CIPHER_CCMP:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_CCMP;
|
|
|
|
break;
|
|
|
|
case CIPHER_TKIP:
|
|
|
|
default:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_TKIP;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params->key_mgmt_suite == KEY_MGMT_802_1X ||
|
|
|
|
params->key_mgmt_suite == KEY_MGMT_PSK) {
|
|
|
|
int mgmt = WLAN_AKM_SUITE_PSK;
|
|
|
|
|
|
|
|
switch (params->key_mgmt_suite) {
|
|
|
|
case KEY_MGMT_802_1X:
|
|
|
|
mgmt = WLAN_AKM_SUITE_8021X;
|
|
|
|
break;
|
|
|
|
case KEY_MGMT_PSK:
|
|
|
|
default:
|
|
|
|
mgmt = WLAN_AKM_SUITE_PSK;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_AKM_SUITES, mgmt);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = nl80211_set_conn_keys(params, msg);
|
|
|
|
if (ret)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: MLME connect failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
2011-09-18 20:26:55 +02:00
|
|
|
/*
|
|
|
|
* cfg80211 does not currently accept new connection if we are
|
|
|
|
* already connected. As a workaround, force disconnection and
|
|
|
|
* try again once the driver indicates it completed
|
|
|
|
* disconnection.
|
|
|
|
*/
|
|
|
|
if (ret == -EALREADY)
|
|
|
|
nl80211_disconnect(drv, params->bssid);
|
2009-09-03 20:31:29 +02:00
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Connect request send successfully");
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
static int wpa_driver_nl80211_associate(
|
|
|
|
void *priv, struct wpa_driver_associate_params *params)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-03-20 21:26:41 +01:00
|
|
|
int ret = -1;
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
2009-12-03 23:15:32 +01:00
|
|
|
if (params->mode == IEEE80211_MODE_AP)
|
2009-03-25 10:38:47 +01:00
|
|
|
return wpa_driver_nl80211_ap(drv, params);
|
|
|
|
|
2009-12-03 23:15:32 +01:00
|
|
|
if (params->mode == IEEE80211_MODE_IBSS)
|
|
|
|
return wpa_driver_nl80211_ibss(drv, params);
|
|
|
|
|
2009-11-23 19:22:38 +01:00
|
|
|
if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME)) {
|
2011-07-17 19:22:11 +02:00
|
|
|
enum nl80211_iftype nlmode = params->p2p ?
|
|
|
|
NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
|
|
|
|
|
|
|
|
if (wpa_driver_nl80211_set_mode(priv, nlmode) < 0)
|
2009-11-23 19:22:38 +01:00
|
|
|
return -1;
|
2009-09-03 20:31:29 +02:00
|
|
|
return wpa_driver_nl80211_connect(drv, params);
|
2009-11-23 19:22:38 +01:00
|
|
|
}
|
2009-09-03 20:31:29 +02:00
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
drv->associated = 0;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Associate (ifindex=%d)",
|
|
|
|
drv->ifindex);
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_ASSOCIATE, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
if (params->bssid) {
|
|
|
|
wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
|
|
|
|
MAC2STR(params->bssid));
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
|
|
|
|
}
|
|
|
|
if (params->freq) {
|
|
|
|
wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
|
2009-12-28 12:23:13 +01:00
|
|
|
drv->assoc_freq = params->freq;
|
|
|
|
} else
|
|
|
|
drv->assoc_freq = 0;
|
2009-03-20 21:26:41 +01:00
|
|
|
if (params->ssid) {
|
|
|
|
wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
|
|
|
|
params->ssid, params->ssid_len);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
|
|
|
|
params->ssid);
|
2009-03-20 22:03:18 +01:00
|
|
|
if (params->ssid_len > sizeof(drv->ssid))
|
|
|
|
goto nla_put_failure;
|
|
|
|
os_memcpy(drv->ssid, params->ssid, params->ssid_len);
|
|
|
|
drv->ssid_len = params->ssid_len;
|
2009-03-20 21:26:41 +01:00
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, " * IEs", params->wpa_ie, params->wpa_ie_len);
|
|
|
|
if (params->wpa_ie)
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
|
|
|
|
params->wpa_ie);
|
|
|
|
|
2010-12-13 20:08:53 +01:00
|
|
|
if (params->pairwise_suite != CIPHER_NONE) {
|
|
|
|
int cipher;
|
|
|
|
|
|
|
|
switch (params->pairwise_suite) {
|
|
|
|
case CIPHER_WEP40:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_WEP40;
|
|
|
|
break;
|
|
|
|
case CIPHER_WEP104:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_WEP104;
|
|
|
|
break;
|
|
|
|
case CIPHER_CCMP:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_CCMP;
|
|
|
|
break;
|
|
|
|
case CIPHER_TKIP:
|
|
|
|
default:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_TKIP;
|
|
|
|
break;
|
|
|
|
}
|
2010-12-19 11:00:24 +01:00
|
|
|
wpa_printf(MSG_DEBUG, " * pairwise=0x%x", cipher);
|
2010-12-13 20:08:53 +01:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE, cipher);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (params->group_suite != CIPHER_NONE) {
|
|
|
|
int cipher;
|
|
|
|
|
|
|
|
switch (params->group_suite) {
|
|
|
|
case CIPHER_WEP40:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_WEP40;
|
|
|
|
break;
|
|
|
|
case CIPHER_WEP104:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_WEP104;
|
|
|
|
break;
|
|
|
|
case CIPHER_CCMP:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_CCMP;
|
|
|
|
break;
|
|
|
|
case CIPHER_TKIP:
|
|
|
|
default:
|
|
|
|
cipher = WLAN_CIPHER_SUITE_TKIP;
|
|
|
|
break;
|
|
|
|
}
|
2010-12-19 11:00:24 +01:00
|
|
|
wpa_printf(MSG_DEBUG, " * group=0x%x", cipher);
|
2010-12-13 20:08:53 +01:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
|
|
|
|
}
|
|
|
|
|
2009-05-12 10:55:18 +02:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
if (params->mgmt_frame_protection == MGMT_FRAME_PROTECTION_REQUIRED)
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_USE_MFP, NL80211_MFP_REQUIRED);
|
|
|
|
#endif /* CONFIG_IEEE80211W */
|
|
|
|
|
2009-05-14 20:54:47 +02:00
|
|
|
NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
|
|
|
|
|
2009-11-17 18:25:05 +01:00
|
|
|
if (params->prev_bssid) {
|
|
|
|
wpa_printf(MSG_DEBUG, " * prev_bssid=" MACSTR,
|
|
|
|
MAC2STR(params->prev_bssid));
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_PREV_BSSID, ETH_ALEN,
|
|
|
|
params->prev_bssid);
|
|
|
|
}
|
|
|
|
|
2010-07-18 23:30:25 +02:00
|
|
|
if (params->p2p)
|
|
|
|
wpa_printf(MSG_DEBUG, " * P2P group");
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: MLME command failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
2010-01-25 03:11:30 +01:00
|
|
|
nl80211_dump_scan(drv);
|
2009-03-20 21:26:41 +01:00
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Association request send "
|
|
|
|
"successfully");
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
|
2009-04-16 15:22:40 +02:00
|
|
|
static int nl80211_set_mode(struct wpa_driver_nl80211_data *drv,
|
2011-07-17 18:47:41 +02:00
|
|
|
int ifindex, enum nl80211_iftype mode)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
2009-04-16 15:22:40 +02:00
|
|
|
int ret = -ENOBUFS;
|
|
|
|
|
2011-07-17 18:47:41 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Set mode ifindex %d iftype %d (%s)",
|
|
|
|
ifindex, mode, nl80211_iftype_str(mode));
|
|
|
|
|
2009-04-16 15:22:40 +02:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_SET_INTERFACE, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, mode);
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (!ret)
|
|
|
|
return 0;
|
|
|
|
nla_put_failure:
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface %d to mode %d:"
|
|
|
|
" %d (%s)", ifindex, mode, ret, strerror(-ret));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-17 19:22:11 +02:00
|
|
|
static int wpa_driver_nl80211_set_mode(struct i802_bss *bss,
|
|
|
|
enum nl80211_iftype nlmode)
|
2009-04-16 15:22:40 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-16 15:22:40 +02:00
|
|
|
int ret = -1;
|
2010-07-18 23:30:24 +02:00
|
|
|
int i;
|
2011-08-29 13:26:55 +02:00
|
|
|
int was_ap = is_ap_interface(drv->nlmode);
|
2009-03-25 10:38:47 +01:00
|
|
|
|
2009-04-16 15:22:40 +02:00
|
|
|
if (nl80211_set_mode(drv, drv->ifindex, nlmode) == 0) {
|
|
|
|
drv->nlmode = nlmode;
|
2009-04-17 15:27:38 +02:00
|
|
|
ret = 0;
|
|
|
|
goto done;
|
2009-04-16 15:22:40 +02:00
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-04-17 15:27:38 +02:00
|
|
|
if (nlmode == drv->nlmode) {
|
2009-12-28 12:25:17 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Interface already in "
|
|
|
|
"requested mode - ignore error");
|
2009-04-17 15:27:38 +02:00
|
|
|
ret = 0;
|
|
|
|
goto done; /* Already in the requested mode */
|
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
/* mac80211 doesn't allow mode changes while the device is up, so
|
|
|
|
* take the device down, try to set the mode again, and bring the
|
|
|
|
* device back up.
|
|
|
|
*/
|
2010-07-18 23:30:24 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Try mode change after setting "
|
|
|
|
"interface down");
|
|
|
|
for (i = 0; i < 10; i++) {
|
2011-10-20 20:36:36 +02:00
|
|
|
int res;
|
|
|
|
res = linux_set_iface_flags(drv->ioctl_sock, bss->ifname, 0);
|
|
|
|
if (res == -EACCES || res == -ENODEV)
|
|
|
|
break;
|
|
|
|
if (res == 0) {
|
2010-07-18 23:30:24 +02:00
|
|
|
/* Try to set the mode again while the interface is
|
|
|
|
* down */
|
|
|
|
ret = nl80211_set_mode(drv, drv->ifindex, nlmode);
|
2011-10-20 20:36:36 +02:00
|
|
|
if (ret == -EACCES)
|
|
|
|
break;
|
|
|
|
res = linux_set_iface_flags(drv->ioctl_sock,
|
|
|
|
bss->ifname, 1);
|
|
|
|
if (res && !ret)
|
2010-07-18 23:30:24 +02:00
|
|
|
ret = -1;
|
2011-10-20 20:36:36 +02:00
|
|
|
else if (ret != -EBUSY)
|
2010-07-18 23:30:24 +02:00
|
|
|
break;
|
|
|
|
} else
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to set "
|
|
|
|
"interface down");
|
|
|
|
os_sleep(0, 100000);
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
2009-12-28 12:25:17 +01:00
|
|
|
if (!ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Mode change succeeded while "
|
|
|
|
"interface is down");
|
2009-04-16 15:22:40 +02:00
|
|
|
drv->nlmode = nlmode;
|
2011-07-17 12:56:34 +02:00
|
|
|
drv->ignore_if_down_event = 1;
|
2009-12-28 12:25:17 +01:00
|
|
|
}
|
2009-04-16 15:22:40 +02:00
|
|
|
|
2009-04-17 15:27:38 +02:00
|
|
|
done:
|
2011-07-17 19:22:11 +02:00
|
|
|
if (!ret && is_ap_interface(nlmode)) {
|
2009-04-17 15:27:38 +02:00
|
|
|
/* Setup additional AP mode functionality if needed */
|
2011-06-28 20:59:44 +02:00
|
|
|
if (!drv->no_monitor_iface_capab && drv->monitor_ifidx < 0 &&
|
|
|
|
nl80211_create_monitor_interface(drv) &&
|
|
|
|
!drv->no_monitor_iface_capab)
|
2009-04-17 15:27:38 +02:00
|
|
|
return -1;
|
2011-07-17 19:22:11 +02:00
|
|
|
} else if (!ret && !is_ap_interface(nlmode)) {
|
2009-04-17 15:27:38 +02:00
|
|
|
/* Remove additional AP mode functionality */
|
2011-08-29 13:26:55 +02:00
|
|
|
if (was_ap && drv->no_monitor_iface_capab)
|
|
|
|
wpa_driver_nl80211_probe_req_report(bss, 0);
|
2009-04-17 15:27:38 +02:00
|
|
|
nl80211_remove_monitor_interface(drv);
|
2010-03-06 21:22:56 +01:00
|
|
|
bss->beacon_set = 0;
|
2009-04-17 15:27:38 +02:00
|
|
|
}
|
|
|
|
|
2009-12-28 12:25:17 +01:00
|
|
|
if (ret)
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Interface mode change to %d "
|
|
|
|
"from %d failed", nlmode, drv->nlmode);
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_get_capa(void *priv,
|
|
|
|
struct wpa_driver_capa *capa)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2008-06-06 15:55:42 +02:00
|
|
|
if (!drv->has_capability)
|
|
|
|
return -1;
|
|
|
|
os_memcpy(capa, &drv->capa, sizeof(*capa));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_set_operstate(void *priv, int state)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "%s: operstate %d->%d (%s)",
|
|
|
|
__func__, drv->operstate, state, state ? "UP" : "DORMANT");
|
|
|
|
drv->operstate = state;
|
2009-12-18 16:11:54 +01:00
|
|
|
return netlink_send_oper_ifla(drv->netlink, drv->ifindex, -1,
|
2009-12-18 15:35:33 +01:00
|
|
|
state ? IF_OPER_UP : IF_OPER_DORMANT);
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
|
2009-05-14 20:54:47 +02:00
|
|
|
|
|
|
|
static int wpa_driver_nl80211_set_supp_port(void *priv, int authorized)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-05-14 20:54:47 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
struct nl80211_sta_flag_update upd;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_SET_STATION, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
|
2010-03-06 21:22:56 +01:00
|
|
|
if_nametoindex(bss->ifname));
|
2009-05-14 20:54:47 +02:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
|
|
|
|
|
|
|
|
os_memset(&upd, 0, sizeof(upd));
|
|
|
|
upd.mask = BIT(NL80211_STA_FLAG_AUTHORIZED);
|
|
|
|
if (authorized)
|
|
|
|
upd.set = BIT(NL80211_STA_FLAG_AUTHORIZED);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
|
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2011-05-27 18:02:04 +02:00
|
|
|
/* Set kernel driver on given frequency (MHz) */
|
|
|
|
static int i802_set_freq(void *priv, struct hostapd_freq_params *freq)
|
2009-04-09 12:40:12 +02:00
|
|
|
{
|
2011-05-27 18:02:04 +02:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
return wpa_driver_nl80211_set_freq(drv, freq->freq, freq->ht_enabled,
|
|
|
|
freq->sec_channel_offset);
|
2009-04-09 12:40:12 +02:00
|
|
|
}
|
|
|
|
|
2011-05-27 17:54:36 +02:00
|
|
|
|
|
|
|
#if defined(HOSTAPD) || defined(CONFIG_AP)
|
2009-04-09 12:40:12 +02:00
|
|
|
|
|
|
|
static inline int min_int(int a, int b)
|
|
|
|
{
|
|
|
|
if (a < b)
|
|
|
|
return a;
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int get_key_handler(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
struct nlattr *tb[NL80211_ATTR_MAX + 1];
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
|
|
|
|
nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: validate the key index and mac address!
|
|
|
|
* Otherwise, there's a race condition as soon as
|
|
|
|
* the kernel starts sending key notifications.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (tb[NL80211_ATTR_KEY_SEQ])
|
|
|
|
memcpy(arg, nla_data(tb[NL80211_ATTR_KEY_SEQ]),
|
|
|
|
min_int(nla_len(tb[NL80211_ATTR_KEY_SEQ]), 6));
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int i802_get_seqnum(const char *iface, void *priv, const u8 *addr,
|
|
|
|
int idx, u8 *seq)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-09 12:40:12 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_GET_KEY, 0);
|
|
|
|
|
|
|
|
if (addr)
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
|
|
|
NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, idx);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(iface));
|
|
|
|
|
|
|
|
memset(seq, 0, 6);
|
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, get_key_handler, seq);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int i802_set_rate_sets(void *priv, int *supp_rates, int *basic_rates,
|
|
|
|
int mode)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-09 12:40:12 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
u8 rates[NL80211_MAX_SUPP_RATES];
|
|
|
|
u8 rates_len = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_SET_BSS, 0);
|
|
|
|
|
|
|
|
for (i = 0; i < NL80211_MAX_SUPP_RATES && basic_rates[i] >= 0; i++)
|
|
|
|
rates[rates_len++] = basic_rates[i] / 5;
|
|
|
|
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_BSS_BASIC_RATES, rates_len, rates);
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
|
2009-04-09 12:40:12 +02:00
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
2010-04-11 19:36:16 +02:00
|
|
|
|
2009-04-09 12:40:12 +02:00
|
|
|
static int i802_set_rts(void *priv, int rts)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-21 17:11:07 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret = -ENOBUFS;
|
|
|
|
u32 val;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2009-04-21 17:11:07 +02:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2009-04-21 17:11:07 +02:00
|
|
|
if (rts >= 2347)
|
|
|
|
val = (u32) -1;
|
|
|
|
else
|
|
|
|
val = rts;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2009-04-21 17:11:07 +02:00
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_SET_WIPHY, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD, val);
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (!ret)
|
|
|
|
return 0;
|
|
|
|
nla_put_failure:
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to set RTS threshold %d: "
|
|
|
|
"%d (%s)", rts, ret, strerror(-ret));
|
|
|
|
return ret;
|
2009-04-09 12:40:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int i802_set_frag(void *priv, int frag)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-21 17:11:07 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret = -ENOBUFS;
|
|
|
|
u32 val;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2009-04-21 17:11:07 +02:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2009-04-21 17:11:07 +02:00
|
|
|
if (frag >= 2346)
|
|
|
|
val = (u32) -1;
|
|
|
|
else
|
|
|
|
val = frag;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2009-04-21 17:11:07 +02:00
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_SET_WIPHY, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD, val);
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (!ret)
|
|
|
|
return 0;
|
|
|
|
nla_put_failure:
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to set fragmentation threshold "
|
|
|
|
"%d: %d (%s)", frag, ret, strerror(-ret));
|
|
|
|
return ret;
|
2009-04-09 12:40:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int i802_flush(void *priv)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-09 12:40:12 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_DEL_STATION, 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX: FIX! this needs to flush all VLANs too
|
|
|
|
*/
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
|
2010-03-06 21:22:56 +01:00
|
|
|
if_nametoindex(bss->ifname));
|
2009-04-09 12:40:12 +02:00
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int get_sta_handler(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
struct nlattr *tb[NL80211_ATTR_MAX + 1];
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
struct hostap_sta_driver_data *data = arg;
|
|
|
|
struct nlattr *stats[NL80211_STA_INFO_MAX + 1];
|
|
|
|
static struct nla_policy stats_policy[NL80211_STA_INFO_MAX + 1] = {
|
|
|
|
[NL80211_STA_INFO_INACTIVE_TIME] = { .type = NLA_U32 },
|
|
|
|
[NL80211_STA_INFO_RX_BYTES] = { .type = NLA_U32 },
|
|
|
|
[NL80211_STA_INFO_TX_BYTES] = { .type = NLA_U32 },
|
|
|
|
[NL80211_STA_INFO_RX_PACKETS] = { .type = NLA_U32 },
|
|
|
|
[NL80211_STA_INFO_TX_PACKETS] = { .type = NLA_U32 },
|
|
|
|
};
|
|
|
|
|
|
|
|
nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: validate the interface and mac address!
|
|
|
|
* Otherwise, there's a race condition as soon as
|
|
|
|
* the kernel starts sending station notifications.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!tb[NL80211_ATTR_STA_INFO]) {
|
|
|
|
wpa_printf(MSG_DEBUG, "sta stats missing!");
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
if (nla_parse_nested(stats, NL80211_STA_INFO_MAX,
|
|
|
|
tb[NL80211_ATTR_STA_INFO],
|
|
|
|
stats_policy)) {
|
|
|
|
wpa_printf(MSG_DEBUG, "failed to parse nested attributes!");
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stats[NL80211_STA_INFO_INACTIVE_TIME])
|
|
|
|
data->inactive_msec =
|
|
|
|
nla_get_u32(stats[NL80211_STA_INFO_INACTIVE_TIME]);
|
|
|
|
if (stats[NL80211_STA_INFO_RX_BYTES])
|
|
|
|
data->rx_bytes = nla_get_u32(stats[NL80211_STA_INFO_RX_BYTES]);
|
|
|
|
if (stats[NL80211_STA_INFO_TX_BYTES])
|
|
|
|
data->tx_bytes = nla_get_u32(stats[NL80211_STA_INFO_TX_BYTES]);
|
|
|
|
if (stats[NL80211_STA_INFO_RX_PACKETS])
|
|
|
|
data->rx_packets =
|
|
|
|
nla_get_u32(stats[NL80211_STA_INFO_RX_PACKETS]);
|
|
|
|
if (stats[NL80211_STA_INFO_TX_PACKETS])
|
|
|
|
data->tx_packets =
|
|
|
|
nla_get_u32(stats[NL80211_STA_INFO_TX_PACKETS]);
|
|
|
|
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i802_read_sta_data(void *priv, struct hostap_sta_driver_data *data,
|
|
|
|
const u8 *addr)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-09 12:40:12 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
os_memset(data, 0, sizeof(*data));
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_GET_STATION, 0);
|
|
|
|
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
2010-03-06 21:22:56 +01:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
|
2009-04-09 12:40:12 +02:00
|
|
|
|
|
|
|
return send_and_recv_msgs(drv, msg, get_sta_handler, data);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int i802_set_tx_queue_params(void *priv, int queue, int aifs,
|
|
|
|
int cw_min, int cw_max, int burst_time)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-09 12:40:12 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
struct nlattr *txq, *params;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_SET_WIPHY, 0);
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
|
2009-04-09 12:40:12 +02:00
|
|
|
|
|
|
|
txq = nla_nest_start(msg, NL80211_ATTR_WIPHY_TXQ_PARAMS);
|
|
|
|
if (!txq)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
/* We are only sending parameters for a single TXQ at a time */
|
|
|
|
params = nla_nest_start(msg, 1);
|
|
|
|
if (!params)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
2010-11-05 00:23:17 +01:00
|
|
|
switch (queue) {
|
|
|
|
case 0:
|
|
|
|
NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VO);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VI);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BE);
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BK);
|
|
|
|
break;
|
|
|
|
}
|
2009-04-09 12:40:12 +02:00
|
|
|
/* Burst time is configured in units of 0.1 msec and TXOP parameter in
|
|
|
|
* 32 usec, so need to convert the value here. */
|
|
|
|
NLA_PUT_U16(msg, NL80211_TXQ_ATTR_TXOP, (burst_time * 100 + 16) / 32);
|
|
|
|
NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMIN, cw_min);
|
|
|
|
NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMAX, cw_max);
|
|
|
|
NLA_PUT_U8(msg, NL80211_TXQ_ATTR_AIFS, aifs);
|
|
|
|
|
|
|
|
nla_nest_end(msg, params);
|
|
|
|
|
|
|
|
nla_nest_end(msg, txq);
|
|
|
|
|
|
|
|
if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
|
|
|
|
return 0;
|
|
|
|
nla_put_failure:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int i802_set_sta_vlan(void *priv, const u8 *addr,
|
|
|
|
const char *ifname, int vlan_id)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-04-09 12:40:12 +02:00
|
|
|
struct nl_msg *msg;
|
2010-04-15 22:46:49 +02:00
|
|
|
int ret = -ENOBUFS;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_SET_STATION, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
|
2010-03-06 21:22:56 +01:00
|
|
|
if_nametoindex(bss->ifname));
|
2009-04-09 12:40:12 +02:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
2009-09-30 18:23:52 +02:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_STA_VLAN,
|
2009-04-09 12:40:12 +02:00
|
|
|
if_nametoindex(ifname));
|
|
|
|
|
2010-04-15 22:46:49 +02:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (ret < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: NL80211_ATTR_STA_VLAN (addr="
|
|
|
|
MACSTR " ifname=%s vlan_id=%d) failed: %d (%s)",
|
|
|
|
MAC2STR(addr), ifname, vlan_id, ret,
|
|
|
|
strerror(-ret));
|
|
|
|
}
|
2009-04-09 12:40:12 +02:00
|
|
|
nla_put_failure:
|
2010-04-15 22:46:49 +02:00
|
|
|
return ret;
|
2009-04-09 12:40:12 +02:00
|
|
|
}
|
|
|
|
|
2009-12-24 10:46:22 +01:00
|
|
|
|
2009-04-09 12:40:12 +02:00
|
|
|
static int i802_get_inact_sec(void *priv, const u8 *addr)
|
|
|
|
{
|
|
|
|
struct hostap_sta_driver_data data;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
data.inactive_msec = (unsigned long) -1;
|
|
|
|
ret = i802_read_sta_data(priv, &data, addr);
|
|
|
|
if (ret || data.inactive_msec == (unsigned long) -1)
|
|
|
|
return -1;
|
|
|
|
return data.inactive_msec / 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int i802_sta_clear_stats(void *priv, const u8 *addr)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
/* TODO */
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-17 10:37:22 +02:00
|
|
|
static int i802_sta_deauth(void *priv, const u8 *own_addr, const u8 *addr,
|
|
|
|
int reason)
|
2009-04-09 12:40:12 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
2009-04-09 12:40:12 +02:00
|
|
|
struct ieee80211_mgmt mgmt;
|
|
|
|
|
|
|
|
memset(&mgmt, 0, sizeof(mgmt));
|
|
|
|
mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
|
|
|
|
WLAN_FC_STYPE_DEAUTH);
|
|
|
|
memcpy(mgmt.da, addr, ETH_ALEN);
|
2009-04-17 10:37:22 +02:00
|
|
|
memcpy(mgmt.sa, own_addr, ETH_ALEN);
|
|
|
|
memcpy(mgmt.bssid, own_addr, ETH_ALEN);
|
2009-04-09 12:40:12 +02:00
|
|
|
mgmt.u.deauth.reason_code = host_to_le16(reason);
|
2010-03-06 21:22:56 +01:00
|
|
|
return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
|
2009-04-09 18:57:20 +02:00
|
|
|
IEEE80211_HDRLEN +
|
|
|
|
sizeof(mgmt.u.deauth));
|
2009-04-09 12:40:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-17 10:37:22 +02:00
|
|
|
static int i802_sta_disassoc(void *priv, const u8 *own_addr, const u8 *addr,
|
|
|
|
int reason)
|
2009-04-09 12:40:12 +02:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
2009-04-09 12:40:12 +02:00
|
|
|
struct ieee80211_mgmt mgmt;
|
|
|
|
|
|
|
|
memset(&mgmt, 0, sizeof(mgmt));
|
|
|
|
mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
|
|
|
|
WLAN_FC_STYPE_DISASSOC);
|
|
|
|
memcpy(mgmt.da, addr, ETH_ALEN);
|
2009-04-17 10:37:22 +02:00
|
|
|
memcpy(mgmt.sa, own_addr, ETH_ALEN);
|
|
|
|
memcpy(mgmt.bssid, own_addr, ETH_ALEN);
|
2009-04-09 12:40:12 +02:00
|
|
|
mgmt.u.disassoc.reason_code = host_to_le16(reason);
|
2010-03-06 21:22:56 +01:00
|
|
|
return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
|
2009-04-09 18:57:20 +02:00
|
|
|
IEEE80211_HDRLEN +
|
|
|
|
sizeof(mgmt.u.disassoc));
|
2009-04-09 12:40:12 +02:00
|
|
|
}
|
|
|
|
|
2011-03-16 15:11:05 +01:00
|
|
|
#endif /* HOSTAPD || CONFIG_AP */
|
|
|
|
|
|
|
|
#ifdef HOSTAPD
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2011-05-27 18:02:04 +02:00
|
|
|
static void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int *old;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Add own interface ifindex %d",
|
|
|
|
ifidx);
|
|
|
|
for (i = 0; i < drv->num_if_indices; i++) {
|
|
|
|
if (drv->if_indices[i] == 0) {
|
|
|
|
drv->if_indices[i] = ifidx;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (drv->if_indices != drv->default_if_indices)
|
|
|
|
old = drv->if_indices;
|
|
|
|
else
|
|
|
|
old = NULL;
|
|
|
|
|
|
|
|
drv->if_indices = os_realloc(old,
|
|
|
|
sizeof(int) * (drv->num_if_indices + 1));
|
|
|
|
if (!drv->if_indices) {
|
|
|
|
if (!old)
|
|
|
|
drv->if_indices = drv->default_if_indices;
|
|
|
|
else
|
|
|
|
drv->if_indices = old;
|
|
|
|
wpa_printf(MSG_ERROR, "Failed to reallocate memory for "
|
|
|
|
"interfaces");
|
|
|
|
wpa_printf(MSG_ERROR, "Ignoring EAPOL on interface %d", ifidx);
|
|
|
|
return;
|
|
|
|
} else if (!old)
|
|
|
|
os_memcpy(drv->if_indices, drv->default_if_indices,
|
|
|
|
sizeof(drv->default_if_indices));
|
|
|
|
drv->if_indices[drv->num_if_indices] = ifidx;
|
|
|
|
drv->num_if_indices++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void del_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < drv->num_if_indices; i++) {
|
|
|
|
if (drv->if_indices[i] == ifidx) {
|
|
|
|
drv->if_indices[i] = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < drv->num_if_indices; i++)
|
|
|
|
if (drv->if_indices[i] == ifidx)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int i802_set_wds_sta(void *priv, const u8 *addr, int aid, int val,
|
|
|
|
const char *bridge_ifname)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
char name[IFNAMSIZ + 1];
|
|
|
|
|
|
|
|
os_snprintf(name, sizeof(name), "%s.sta%d", bss->ifname, aid);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Set WDS STA addr=" MACSTR
|
|
|
|
" aid=%d val=%d name=%s", MAC2STR(addr), aid, val, name);
|
|
|
|
if (val) {
|
|
|
|
if (!if_nametoindex(name)) {
|
|
|
|
if (nl80211_create_iface(drv, name,
|
|
|
|
NL80211_IFTYPE_AP_VLAN,
|
|
|
|
NULL, 1) < 0)
|
|
|
|
return -1;
|
|
|
|
if (bridge_ifname &&
|
|
|
|
linux_br_add_if(drv->ioctl_sock, bridge_ifname,
|
|
|
|
name) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
linux_set_iface_flags(drv->ioctl_sock, name, 1);
|
|
|
|
return i802_set_sta_vlan(priv, addr, name, 0);
|
|
|
|
} else {
|
|
|
|
i802_set_sta_vlan(priv, addr, bss->ifname, 0);
|
|
|
|
return wpa_driver_nl80211_if_remove(priv, WPA_IF_AP_VLAN,
|
|
|
|
name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void handle_eapol(int sock, void *eloop_ctx, void *sock_ctx)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = eloop_ctx;
|
|
|
|
struct sockaddr_ll lladdr;
|
|
|
|
unsigned char buf[3000];
|
|
|
|
int len;
|
|
|
|
socklen_t fromlen = sizeof(lladdr);
|
|
|
|
|
|
|
|
len = recvfrom(sock, buf, sizeof(buf), 0,
|
|
|
|
(struct sockaddr *)&lladdr, &fromlen);
|
|
|
|
if (len < 0) {
|
|
|
|
perror("recv");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (have_ifidx(drv, lladdr.sll_ifindex))
|
|
|
|
drv_event_eapol_rx(drv->ctx, lladdr.sll_addr, buf, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-16 14:19:58 +01:00
|
|
|
static int i802_check_bridge(struct wpa_driver_nl80211_data *drv,
|
2011-03-15 12:02:49 +01:00
|
|
|
struct i802_bss *bss,
|
2010-01-16 14:19:58 +01:00
|
|
|
const char *brname, const char *ifname)
|
|
|
|
{
|
|
|
|
int ifindex;
|
|
|
|
char in_br[IFNAMSIZ];
|
|
|
|
|
2011-03-15 12:02:49 +01:00
|
|
|
os_strlcpy(bss->brname, brname, IFNAMSIZ);
|
2010-01-16 14:19:58 +01:00
|
|
|
ifindex = if_nametoindex(brname);
|
|
|
|
if (ifindex == 0) {
|
|
|
|
/*
|
|
|
|
* Bridge was configured, but the bridge device does
|
|
|
|
* not exist. Try to add it now.
|
|
|
|
*/
|
|
|
|
if (linux_br_add(drv->ioctl_sock, brname) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to add the "
|
|
|
|
"bridge interface %s: %s",
|
|
|
|
brname, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2011-03-15 12:02:49 +01:00
|
|
|
bss->added_bridge = 1;
|
2010-01-16 14:19:58 +01:00
|
|
|
add_ifidx(drv, if_nametoindex(brname));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (linux_br_get(in_br, ifname) == 0) {
|
|
|
|
if (os_strcmp(in_br, brname) == 0)
|
|
|
|
return 0; /* already in the bridge */
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Removing interface %s from "
|
|
|
|
"bridge %s", ifname, in_br);
|
|
|
|
if (linux_br_del_if(drv->ioctl_sock, in_br, ifname) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to "
|
|
|
|
"remove interface %s from bridge "
|
|
|
|
"%s: %s",
|
|
|
|
ifname, brname, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Adding interface %s into bridge %s",
|
|
|
|
ifname, brname);
|
|
|
|
if (linux_br_add_if(drv->ioctl_sock, brname, ifname) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to add interface %s "
|
|
|
|
"into bridge %s: %s",
|
|
|
|
ifname, brname, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
2011-03-15 12:02:49 +01:00
|
|
|
bss->added_if_into_bridge = 1;
|
2010-01-16 14:19:58 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-09 22:28:21 +02:00
|
|
|
static void *i802_init(struct hostapd_data *hapd,
|
|
|
|
struct wpa_init_params *params)
|
2009-04-09 12:40:12 +02:00
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv;
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss;
|
2009-04-09 12:40:12 +02:00
|
|
|
size_t i;
|
2010-01-16 14:19:58 +01:00
|
|
|
char brname[IFNAMSIZ];
|
|
|
|
int ifindex, br_ifindex;
|
|
|
|
int br_added = 0;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2010-11-26 17:14:51 +01:00
|
|
|
bss = wpa_driver_nl80211_init(hapd, params->ifname, NULL);
|
2010-03-06 21:22:56 +01:00
|
|
|
if (bss == NULL)
|
2009-04-09 12:40:12 +02:00
|
|
|
return NULL;
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
drv = bss->drv;
|
2011-01-09 18:44:28 +01:00
|
|
|
drv->nlmode = NL80211_IFTYPE_AP;
|
2010-01-16 14:19:58 +01:00
|
|
|
if (linux_br_get(brname, params->ifname) == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Interface %s is in bridge %s",
|
|
|
|
params->ifname, brname);
|
|
|
|
br_ifindex = if_nametoindex(brname);
|
|
|
|
} else {
|
|
|
|
brname[0] = '\0';
|
|
|
|
br_ifindex = 0;
|
|
|
|
}
|
|
|
|
|
2009-04-09 12:40:12 +02:00
|
|
|
drv->num_if_indices = sizeof(drv->default_if_indices) / sizeof(int);
|
|
|
|
drv->if_indices = drv->default_if_indices;
|
2009-04-09 22:28:21 +02:00
|
|
|
for (i = 0; i < params->num_bridge; i++) {
|
2010-01-16 14:19:58 +01:00
|
|
|
if (params->bridge[i]) {
|
|
|
|
ifindex = if_nametoindex(params->bridge[i]);
|
|
|
|
if (ifindex)
|
|
|
|
add_ifidx(drv, ifindex);
|
|
|
|
if (ifindex == br_ifindex)
|
|
|
|
br_added = 1;
|
|
|
|
}
|
2009-04-09 12:40:12 +02:00
|
|
|
}
|
2010-01-16 14:19:58 +01:00
|
|
|
if (!br_added && br_ifindex &&
|
|
|
|
(params->num_bridge == 0 || !params->bridge[0]))
|
|
|
|
add_ifidx(drv, br_ifindex);
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2009-04-16 15:22:40 +02:00
|
|
|
/* start listening for EAPOL on the default AP interface */
|
|
|
|
add_ifidx(drv, drv->ifindex);
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
if (linux_set_iface_flags(drv->ioctl_sock, bss->ifname, 0))
|
2009-11-11 15:47:01 +01:00
|
|
|
goto failed;
|
2009-04-16 15:22:40 +02:00
|
|
|
|
2009-11-11 15:47:01 +01:00
|
|
|
if (params->bssid) {
|
2010-03-06 21:22:56 +01:00
|
|
|
if (linux_set_ifhwaddr(drv->ioctl_sock, bss->ifname,
|
2010-01-03 21:17:08 +01:00
|
|
|
params->bssid))
|
2009-04-17 15:27:38 +02:00
|
|
|
goto failed;
|
|
|
|
}
|
2009-04-16 15:22:40 +02:00
|
|
|
|
2011-07-17 19:22:11 +02:00
|
|
|
if (wpa_driver_nl80211_set_mode(bss, drv->nlmode)) {
|
2009-04-16 15:22:40 +02:00
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to set interface %s "
|
2010-03-06 21:22:56 +01:00
|
|
|
"into AP mode", bss->ifname);
|
2009-04-16 16:16:41 +02:00
|
|
|
goto failed;
|
2009-04-16 15:22:40 +02:00
|
|
|
}
|
|
|
|
|
2010-01-16 14:19:58 +01:00
|
|
|
if (params->num_bridge && params->bridge[0] &&
|
2011-03-15 12:02:49 +01:00
|
|
|
i802_check_bridge(drv, bss, params->bridge[0], params->ifname) < 0)
|
2010-01-16 14:19:58 +01:00
|
|
|
goto failed;
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
if (linux_set_iface_flags(drv->ioctl_sock, bss->ifname, 1))
|
2009-04-16 16:16:41 +02:00
|
|
|
goto failed;
|
2009-04-16 15:22:40 +02:00
|
|
|
|
|
|
|
drv->eapol_sock = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_PAE));
|
|
|
|
if (drv->eapol_sock < 0) {
|
|
|
|
perror("socket(PF_PACKET, SOCK_DGRAM, ETH_P_PAE)");
|
2009-04-16 16:16:41 +02:00
|
|
|
goto failed;
|
2009-04-16 15:22:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (eloop_register_read_sock(drv->eapol_sock, handle_eapol, drv, NULL))
|
|
|
|
{
|
|
|
|
printf("Could not register read socket for eapol\n");
|
2009-04-09 12:40:12 +02:00
|
|
|
goto failed;
|
2009-04-16 15:22:40 +02:00
|
|
|
}
|
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
if (linux_get_ifhwaddr(drv->ioctl_sock, bss->ifname, params->own_addr))
|
2009-04-16 16:16:41 +02:00
|
|
|
goto failed;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2010-03-06 21:22:56 +01:00
|
|
|
return bss;
|
2009-04-09 12:40:12 +02:00
|
|
|
|
|
|
|
failed:
|
2009-04-17 15:27:38 +02:00
|
|
|
nl80211_remove_monitor_interface(drv);
|
2010-12-17 12:49:38 +01:00
|
|
|
rfkill_deinit(drv->rfkill);
|
|
|
|
netlink_deinit(drv->netlink);
|
2009-04-09 12:40:12 +02:00
|
|
|
if (drv->ioctl_sock >= 0)
|
|
|
|
close(drv->ioctl_sock);
|
|
|
|
|
|
|
|
genl_family_put(drv->nl80211);
|
|
|
|
nl_cache_free(drv->nl_cache);
|
2010-10-10 16:47:15 +02:00
|
|
|
nl80211_handle_destroy(drv->nl_handle);
|
2009-04-09 12:40:12 +02:00
|
|
|
nl_cb_put(drv->nl_cb);
|
2010-12-17 12:49:38 +01:00
|
|
|
eloop_unregister_read_sock(nl_socket_get_fd(drv->nl_handle_event));
|
2009-04-09 12:40:12 +02:00
|
|
|
|
2009-04-16 16:16:41 +02:00
|
|
|
os_free(drv);
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-04-09 12:40:12 +02:00
|
|
|
|
|
|
|
|
2009-04-16 16:16:41 +02:00
|
|
|
static void i802_deinit(void *priv)
|
|
|
|
{
|
|
|
|
wpa_driver_nl80211_deinit(priv);
|
2009-04-09 12:40:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HOSTAPD */
|
|
|
|
|
|
|
|
|
2009-12-09 15:49:28 +01:00
|
|
|
static enum nl80211_iftype wpa_driver_nl80211_if_type(
|
|
|
|
enum wpa_driver_if_type type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case WPA_IF_STATION:
|
2011-01-31 20:49:48 +01:00
|
|
|
return NL80211_IFTYPE_STATION;
|
2010-07-18 23:30:24 +02:00
|
|
|
case WPA_IF_P2P_CLIENT:
|
|
|
|
case WPA_IF_P2P_GROUP:
|
2011-01-31 20:49:48 +01:00
|
|
|
return NL80211_IFTYPE_P2P_CLIENT;
|
2009-12-09 15:49:28 +01:00
|
|
|
case WPA_IF_AP_VLAN:
|
|
|
|
return NL80211_IFTYPE_AP_VLAN;
|
|
|
|
case WPA_IF_AP_BSS:
|
|
|
|
return NL80211_IFTYPE_AP;
|
2011-01-31 20:49:48 +01:00
|
|
|
case WPA_IF_P2P_GO:
|
|
|
|
return NL80211_IFTYPE_P2P_GO;
|
2009-12-09 15:49:28 +01:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-27 12:05:37 +01:00
|
|
|
#ifdef CONFIG_P2P
|
|
|
|
|
2010-11-26 17:14:51 +01:00
|
|
|
static int nl80211_addr_in_use(struct nl80211_global *global, const u8 *addr)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv;
|
|
|
|
dl_list_for_each(drv, &global->interfaces,
|
|
|
|
struct wpa_driver_nl80211_data, list) {
|
|
|
|
if (os_memcmp(addr, drv->addr, ETH_ALEN) == 0)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl80211_p2p_interface_addr(struct wpa_driver_nl80211_data *drv,
|
|
|
|
u8 *new_addr)
|
|
|
|
{
|
|
|
|
unsigned int idx;
|
|
|
|
|
|
|
|
if (!drv->global)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
os_memcpy(new_addr, drv->addr, ETH_ALEN);
|
|
|
|
for (idx = 0; idx < 64; idx++) {
|
|
|
|
new_addr[0] = drv->addr[0] | 0x02;
|
|
|
|
new_addr[0] ^= idx << 2;
|
|
|
|
if (!nl80211_addr_in_use(drv->global, new_addr))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (idx == 64)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Assigned new P2P Interface Address "
|
|
|
|
MACSTR, MAC2STR(new_addr));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-11-27 12:05:37 +01:00
|
|
|
#endif /* CONFIG_P2P */
|
|
|
|
|
2010-11-26 17:14:51 +01:00
|
|
|
|
2010-03-07 09:05:05 +01:00
|
|
|
static int wpa_driver_nl80211_if_add(void *priv, enum wpa_driver_if_type type,
|
2009-12-13 17:54:11 +01:00
|
|
|
const char *ifname, const u8 *addr,
|
2010-04-11 18:23:09 +02:00
|
|
|
void *bss_ctx, void **drv_priv,
|
2011-03-15 12:02:49 +01:00
|
|
|
char *force_ifname, u8 *if_addr,
|
|
|
|
const char *bridge)
|
2009-12-09 15:49:28 +01:00
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-12-09 15:49:28 +01:00
|
|
|
int ifidx;
|
|
|
|
#ifdef HOSTAPD
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *new_bss = NULL;
|
2009-12-09 15:49:28 +01:00
|
|
|
|
|
|
|
if (type == WPA_IF_AP_BSS) {
|
2010-03-06 21:22:56 +01:00
|
|
|
new_bss = os_zalloc(sizeof(*new_bss));
|
|
|
|
if (new_bss == NULL)
|
2009-12-09 15:49:28 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif /* HOSTAPD */
|
|
|
|
|
2010-04-11 18:23:09 +02:00
|
|
|
if (addr)
|
|
|
|
os_memcpy(if_addr, addr, ETH_ALEN);
|
2009-12-09 15:49:28 +01:00
|
|
|
ifidx = nl80211_create_iface(drv, ifname,
|
2009-12-24 10:46:22 +01:00
|
|
|
wpa_driver_nl80211_if_type(type), addr,
|
|
|
|
0);
|
2009-12-09 15:49:28 +01:00
|
|
|
if (ifidx < 0) {
|
|
|
|
#ifdef HOSTAPD
|
2010-03-06 21:22:56 +01:00
|
|
|
os_free(new_bss);
|
2009-12-09 15:49:28 +01:00
|
|
|
#endif /* HOSTAPD */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-04-11 18:23:09 +02:00
|
|
|
if (!addr &&
|
2010-11-26 14:54:53 +01:00
|
|
|
linux_get_ifhwaddr(drv->ioctl_sock, bss->ifname, if_addr) < 0) {
|
|
|
|
nl80211_remove_iface(drv, ifidx);
|
2010-04-11 18:23:09 +02:00
|
|
|
return -1;
|
2010-11-26 14:54:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_P2P
|
|
|
|
if (!addr &&
|
|
|
|
(type == WPA_IF_P2P_CLIENT || type == WPA_IF_P2P_GROUP ||
|
|
|
|
type == WPA_IF_P2P_GO)) {
|
|
|
|
/* Enforce unique P2P Interface Address */
|
|
|
|
u8 new_addr[ETH_ALEN], own_addr[ETH_ALEN];
|
|
|
|
|
|
|
|
if (linux_get_ifhwaddr(drv->ioctl_sock, bss->ifname, own_addr)
|
|
|
|
< 0 ||
|
|
|
|
linux_get_ifhwaddr(drv->ioctl_sock, ifname, new_addr) < 0)
|
|
|
|
{
|
|
|
|
nl80211_remove_iface(drv, ifidx);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (os_memcmp(own_addr, new_addr, ETH_ALEN) == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Allocate new address "
|
|
|
|
"for P2P group interface");
|
2010-11-26 17:14:51 +01:00
|
|
|
if (nl80211_p2p_interface_addr(drv, new_addr) < 0) {
|
2010-11-26 14:54:53 +01:00
|
|
|
nl80211_remove_iface(drv, ifidx);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (linux_set_ifhwaddr(drv->ioctl_sock, ifname,
|
|
|
|
new_addr) < 0) {
|
|
|
|
nl80211_remove_iface(drv, ifidx);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2011-07-15 11:05:19 +02:00
|
|
|
os_memcpy(if_addr, new_addr, ETH_ALEN);
|
2010-11-26 14:54:53 +01:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_P2P */
|
2010-04-11 18:23:09 +02:00
|
|
|
|
2009-12-09 15:49:28 +01:00
|
|
|
#ifdef HOSTAPD
|
2011-03-15 12:02:49 +01:00
|
|
|
if (bridge &&
|
|
|
|
i802_check_bridge(drv, new_bss, bridge, ifname) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to add the new "
|
|
|
|
"interface %s to a bridge %s", ifname, bridge);
|
|
|
|
nl80211_remove_iface(drv, ifidx);
|
|
|
|
os_free(new_bss);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-12-09 15:49:28 +01:00
|
|
|
if (type == WPA_IF_AP_BSS) {
|
2010-01-03 21:08:26 +01:00
|
|
|
if (linux_set_iface_flags(drv->ioctl_sock, ifname, 1)) {
|
|
|
|
nl80211_remove_iface(drv, ifidx);
|
2010-03-07 08:59:22 +01:00
|
|
|
os_free(new_bss);
|
2009-12-09 15:49:28 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2010-03-06 21:22:56 +01:00
|
|
|
os_strlcpy(new_bss->ifname, ifname, IFNAMSIZ);
|
|
|
|
new_bss->ifindex = ifidx;
|
|
|
|
new_bss->drv = drv;
|
|
|
|
new_bss->next = drv->first_bss.next;
|
|
|
|
drv->first_bss.next = new_bss;
|
|
|
|
if (drv_priv)
|
|
|
|
*drv_priv = new_bss;
|
2009-12-09 15:49:28 +01:00
|
|
|
}
|
|
|
|
#endif /* HOSTAPD */
|
|
|
|
|
2011-07-17 19:03:25 +02:00
|
|
|
if (drv->global)
|
|
|
|
drv->global->if_add_ifindex = ifidx;
|
|
|
|
|
2009-12-09 15:49:28 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_if_remove(void *priv,
|
|
|
|
enum wpa_driver_if_type type,
|
|
|
|
const char *ifname)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2009-12-09 15:49:28 +01:00
|
|
|
int ifindex = if_nametoindex(ifname);
|
|
|
|
|
2010-02-10 10:29:53 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: %s(type=%d ifname=%s) ifindex=%d",
|
|
|
|
__func__, type, ifname, ifindex);
|
|
|
|
if (ifindex <= 0)
|
|
|
|
return -1;
|
2011-03-15 12:02:49 +01:00
|
|
|
|
|
|
|
#ifdef HOSTAPD
|
|
|
|
if (bss->added_if_into_bridge) {
|
|
|
|
if (linux_br_del_if(drv->ioctl_sock, bss->brname, bss->ifname)
|
|
|
|
< 0)
|
|
|
|
wpa_printf(MSG_INFO, "nl80211: Failed to remove "
|
|
|
|
"interface %s from bridge %s: %s",
|
|
|
|
bss->ifname, bss->brname, strerror(errno));
|
|
|
|
}
|
|
|
|
if (bss->added_bridge) {
|
|
|
|
if (linux_br_del(drv->ioctl_sock, bss->brname) < 0)
|
|
|
|
wpa_printf(MSG_INFO, "nl80211: Failed to remove "
|
|
|
|
"bridge %s: %s",
|
|
|
|
bss->brname, strerror(errno));
|
|
|
|
}
|
|
|
|
#endif /* HOSTAPD */
|
|
|
|
|
2009-12-09 15:49:28 +01:00
|
|
|
nl80211_remove_iface(drv, ifindex);
|
|
|
|
|
|
|
|
#ifdef HOSTAPD
|
2010-03-06 21:22:56 +01:00
|
|
|
if (type != WPA_IF_AP_BSS)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (bss != &drv->first_bss) {
|
2011-01-09 18:18:50 +01:00
|
|
|
struct i802_bss *tbss;
|
2010-03-06 21:22:56 +01:00
|
|
|
|
2011-01-09 18:18:50 +01:00
|
|
|
for (tbss = &drv->first_bss; tbss; tbss = tbss->next) {
|
|
|
|
if (tbss->next == bss) {
|
|
|
|
tbss->next = bss->next;
|
|
|
|
os_free(bss);
|
|
|
|
bss = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2009-12-09 15:49:28 +01:00
|
|
|
}
|
2011-01-09 18:18:50 +01:00
|
|
|
if (bss)
|
|
|
|
wpa_printf(MSG_INFO, "nl80211: %s - could not find "
|
|
|
|
"BSS %p in the list", __func__, bss);
|
2009-12-09 15:49:28 +01:00
|
|
|
}
|
|
|
|
#endif /* HOSTAPD */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-03 12:57:51 +01:00
|
|
|
static int cookie_handler(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
struct nlattr *tb[NL80211_ATTR_MAX + 1];
|
|
|
|
struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
|
|
|
|
u64 *cookie = arg;
|
|
|
|
nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
|
|
|
|
genlmsg_attrlen(gnlh, 0), NULL);
|
|
|
|
if (tb[NL80211_ATTR_COOKIE])
|
|
|
|
*cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-10 17:00:25 +02:00
|
|
|
static int nl80211_send_frame_cmd(struct wpa_driver_nl80211_data *drv,
|
2010-12-29 13:05:34 +01:00
|
|
|
unsigned int freq, unsigned int wait,
|
|
|
|
const u8 *buf, size_t buf_len,
|
|
|
|
u64 *cookie_out)
|
2010-10-10 17:00:25 +02:00
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
u64 cookie;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_FRAME, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
|
2011-08-09 13:01:31 +02:00
|
|
|
if (wait)
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_DURATION, wait);
|
2010-12-29 13:05:34 +01:00
|
|
|
NLA_PUT_FLAG(msg, NL80211_ATTR_OFFCHANNEL_TX_OK);
|
2010-10-10 17:00:25 +02:00
|
|
|
NLA_PUT(msg, NL80211_ATTR_FRAME, buf_len, buf);
|
|
|
|
|
|
|
|
cookie = 0;
|
|
|
|
ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Frame command failed: ret=%d "
|
2011-08-09 12:59:12 +02:00
|
|
|
"(%s) (freq=%u wait=%u)", ret, strerror(-ret),
|
|
|
|
freq, wait);
|
2010-10-10 17:00:25 +02:00
|
|
|
goto nla_put_failure;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Frame TX command accepted; "
|
|
|
|
"cookie 0x%llx", (long long unsigned int) cookie);
|
|
|
|
|
|
|
|
if (cookie_out)
|
|
|
|
*cookie_out = cookie;
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-16 18:41:49 +01:00
|
|
|
static int wpa_driver_nl80211_send_action(void *priv, unsigned int freq,
|
2010-12-29 12:59:17 +01:00
|
|
|
unsigned int wait_time,
|
2010-02-16 18:41:49 +01:00
|
|
|
const u8 *dst, const u8 *src,
|
|
|
|
const u8 *bssid,
|
|
|
|
const u8 *data, size_t data_len)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2010-02-16 18:41:49 +01:00
|
|
|
int ret = -1;
|
|
|
|
u8 *buf;
|
|
|
|
struct ieee80211_hdr *hdr;
|
|
|
|
|
2010-12-29 13:05:34 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Send Action frame (ifindex=%d, "
|
|
|
|
"wait=%d ms)", drv->ifindex, wait_time);
|
2010-02-16 18:41:49 +01:00
|
|
|
|
|
|
|
buf = os_zalloc(24 + data_len);
|
|
|
|
if (buf == NULL)
|
|
|
|
return ret;
|
|
|
|
os_memcpy(buf + 24, data, data_len);
|
|
|
|
hdr = (struct ieee80211_hdr *) buf;
|
|
|
|
hdr->frame_control =
|
|
|
|
IEEE80211_FC(WLAN_FC_TYPE_MGMT, WLAN_FC_STYPE_ACTION);
|
|
|
|
os_memcpy(hdr->addr1, dst, ETH_ALEN);
|
|
|
|
os_memcpy(hdr->addr2, src, ETH_ALEN);
|
|
|
|
os_memcpy(hdr->addr3, bssid, ETH_ALEN);
|
|
|
|
|
2011-07-17 19:22:11 +02:00
|
|
|
if (is_ap_interface(drv->nlmode))
|
2010-02-16 18:41:49 +01:00
|
|
|
ret = wpa_driver_nl80211_send_mlme(priv, buf, 24 + data_len);
|
2010-10-10 17:00:25 +02:00
|
|
|
else
|
2010-12-29 13:05:34 +01:00
|
|
|
ret = nl80211_send_frame_cmd(drv, freq, wait_time, buf,
|
|
|
|
24 + data_len,
|
2010-10-10 17:00:25 +02:00
|
|
|
&drv->send_action_cookie);
|
2010-02-16 18:41:49 +01:00
|
|
|
|
2010-04-11 11:29:16 +02:00
|
|
|
os_free(buf);
|
2010-02-16 18:41:49 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-29 13:05:34 +01:00
|
|
|
static void wpa_driver_nl80211_send_action_cancel_wait(void *priv)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_FRAME_WAIT_CANCEL, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->send_action_cookie);
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret)
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: wait cancel failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-03 12:57:51 +01:00
|
|
|
static int wpa_driver_nl80211_remain_on_channel(void *priv, unsigned int freq,
|
|
|
|
unsigned int duration)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2010-01-03 12:57:51 +01:00
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret;
|
|
|
|
u64 cookie;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_REMAIN_ON_CHANNEL, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_DURATION, duration);
|
|
|
|
|
|
|
|
cookie = 0;
|
|
|
|
ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
|
|
|
|
if (ret == 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel cookie "
|
|
|
|
"0x%llx for freq=%u MHz duration=%u",
|
|
|
|
(long long unsigned int) cookie, freq, duration);
|
|
|
|
drv->remain_on_chan_cookie = cookie;
|
2011-09-10 21:57:41 +02:00
|
|
|
drv->pending_remain_on_chan = 1;
|
2010-01-03 12:57:51 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to request remain-on-channel "
|
2010-07-18 23:30:24 +02:00
|
|
|
"(freq=%d duration=%u): %d (%s)",
|
|
|
|
freq, duration, ret, strerror(-ret));
|
2010-01-03 12:57:51 +01:00
|
|
|
nla_put_failure:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_cancel_remain_on_channel(void *priv)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2010-01-03 12:57:51 +01:00
|
|
|
struct nl_msg *msg;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!drv->pending_remain_on_chan) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: No pending remain-on-channel "
|
|
|
|
"to cancel");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Cancel remain-on-channel with cookie "
|
|
|
|
"0x%llx",
|
|
|
|
(long long unsigned int) drv->remain_on_chan_cookie);
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->remain_on_chan_cookie);
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (ret == 0)
|
|
|
|
return 0;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to cancel remain-on-channel: "
|
|
|
|
"%d (%s)", ret, strerror(-ret));
|
|
|
|
nla_put_failure:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-03 12:30:22 +01:00
|
|
|
static int wpa_driver_nl80211_probe_req_report(void *priv, int report)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2010-01-03 12:30:22 +01:00
|
|
|
|
2010-10-10 17:10:37 +02:00
|
|
|
if (!report) {
|
|
|
|
if (drv->nl_handle_preq) {
|
|
|
|
eloop_unregister_read_sock(
|
|
|
|
nl_socket_get_fd(drv->nl_handle_preq));
|
|
|
|
nl_cache_free(drv->nl_cache_preq);
|
|
|
|
nl80211_handle_destroy(drv->nl_handle_preq);
|
|
|
|
drv->nl_handle_preq = NULL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (drv->nl_handle_preq) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Probe Request reporting "
|
|
|
|
"already on!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
drv->nl_handle_preq = nl80211_handle_alloc(drv->nl_cb);
|
|
|
|
if (drv->nl_handle_preq == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to allocate "
|
|
|
|
"netlink callbacks (preq)");
|
|
|
|
goto out_err1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (genl_connect(drv->nl_handle_preq)) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to connect to "
|
|
|
|
"generic netlink (preq)");
|
|
|
|
goto out_err2;
|
|
|
|
return -1;
|
2010-01-03 12:30:22 +01:00
|
|
|
}
|
|
|
|
|
2010-10-10 17:10:37 +02:00
|
|
|
if (genl_ctrl_alloc_cache(drv->nl_handle_preq,
|
|
|
|
&drv->nl_cache_preq) < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to allocate generic "
|
|
|
|
"netlink cache (preq)");
|
|
|
|
goto out_err2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nl80211_register_frame(drv, drv->nl_handle_preq,
|
|
|
|
(WLAN_FC_TYPE_MGMT << 2) |
|
|
|
|
(WLAN_FC_STYPE_PROBE_REQ << 4),
|
|
|
|
NULL, 0) < 0) {
|
|
|
|
goto out_err3;
|
|
|
|
}
|
|
|
|
|
|
|
|
eloop_register_read_sock(nl_socket_get_fd(drv->nl_handle_preq),
|
|
|
|
wpa_driver_nl80211_event_receive, drv,
|
|
|
|
drv->nl_handle_preq);
|
|
|
|
|
2010-01-03 12:30:22 +01:00
|
|
|
return 0;
|
2010-10-10 17:10:37 +02:00
|
|
|
|
|
|
|
out_err3:
|
|
|
|
nl_cache_free(drv->nl_cache_preq);
|
|
|
|
out_err2:
|
|
|
|
nl80211_handle_destroy(drv->nl_handle_preq);
|
|
|
|
drv->nl_handle_preq = NULL;
|
|
|
|
out_err1:
|
|
|
|
return -1;
|
2010-01-03 12:30:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-16 11:11:19 +01:00
|
|
|
static int nl80211_disable_11b_rates(struct wpa_driver_nl80211_data *drv,
|
|
|
|
int ifindex, int disabled)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
struct nlattr *bands, *band;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_SET_TX_BITRATE_MASK, 0);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
|
|
|
|
|
|
|
|
bands = nla_nest_start(msg, NL80211_ATTR_TX_RATES);
|
|
|
|
if (!bands)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Disable 2 GHz rates 1, 2, 5.5, 11 Mbps by masking out everything
|
|
|
|
* else apart from 6, 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS
|
|
|
|
* rates. All 5 GHz rates are left enabled.
|
|
|
|
*/
|
|
|
|
band = nla_nest_start(msg, NL80211_BAND_2GHZ);
|
|
|
|
if (!band)
|
|
|
|
goto nla_put_failure;
|
|
|
|
NLA_PUT(msg, NL80211_TXRATE_LEGACY, 8,
|
|
|
|
"\x0c\x12\x18\x24\x30\x48\x60\x6c");
|
|
|
|
nla_nest_end(msg, band);
|
|
|
|
|
|
|
|
nla_nest_end(msg, bands);
|
|
|
|
|
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
msg = NULL;
|
|
|
|
if (ret) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Set TX rates failed: ret=%d "
|
|
|
|
"(%s)", ret, strerror(-ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_disable_11b_rates(void *priv, int disabled)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2010-01-16 11:11:19 +01:00
|
|
|
drv->disable_11b_rates = disabled;
|
|
|
|
return nl80211_disable_11b_rates(drv, drv->ifindex, disabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-16 11:20:51 +01:00
|
|
|
static int wpa_driver_nl80211_deinit_ap(void *priv)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
2011-07-17 19:22:11 +02:00
|
|
|
if (!is_ap_interface(drv->nlmode))
|
2010-01-16 11:20:51 +01:00
|
|
|
return -1;
|
|
|
|
wpa_driver_nl80211_del_beacon(drv);
|
2011-07-17 19:22:11 +02:00
|
|
|
return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
|
2010-01-16 11:20:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-27 17:46:02 +01:00
|
|
|
static void wpa_driver_nl80211_resume(void *priv)
|
|
|
|
{
|
2010-03-06 21:22:56 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
if (linux_set_iface_flags(drv->ioctl_sock, bss->ifname, 1)) {
|
2010-02-27 17:46:02 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface up on "
|
|
|
|
"resume event");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-07 21:47:39 +01:00
|
|
|
static int nl80211_send_ft_action(void *priv, u8 action, const u8 *target_ap,
|
|
|
|
const u8 *ies, size_t ies_len)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
int ret;
|
|
|
|
u8 *data, *pos;
|
|
|
|
size_t data_len;
|
|
|
|
u8 own_addr[ETH_ALEN];
|
|
|
|
|
|
|
|
if (linux_get_ifhwaddr(drv->ioctl_sock, bss->ifname, own_addr) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (action != 1) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Unsupported send_ft_action "
|
|
|
|
"action %d", action);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Action frame payload:
|
|
|
|
* Category[1] = 6 (Fast BSS Transition)
|
|
|
|
* Action[1] = 1 (Fast BSS Transition Request)
|
|
|
|
* STA Address
|
|
|
|
* Target AP Address
|
|
|
|
* FT IEs
|
|
|
|
*/
|
|
|
|
|
2010-03-11 23:41:03 +01:00
|
|
|
data_len = 2 + 2 * ETH_ALEN + ies_len;
|
|
|
|
data = os_malloc(data_len);
|
2010-03-07 21:47:39 +01:00
|
|
|
if (data == NULL)
|
|
|
|
return -1;
|
|
|
|
pos = data;
|
|
|
|
*pos++ = 0x06; /* FT Action category */
|
|
|
|
*pos++ = action;
|
|
|
|
os_memcpy(pos, own_addr, ETH_ALEN);
|
|
|
|
pos += ETH_ALEN;
|
|
|
|
os_memcpy(pos, target_ap, ETH_ALEN);
|
|
|
|
pos += ETH_ALEN;
|
|
|
|
os_memcpy(pos, ies, ies_len);
|
|
|
|
|
2010-12-29 12:59:17 +01:00
|
|
|
ret = wpa_driver_nl80211_send_action(bss, drv->assoc_freq, 0,
|
|
|
|
drv->bssid, own_addr, drv->bssid,
|
2010-03-07 21:47:39 +01:00
|
|
|
data, data_len);
|
|
|
|
os_free(data);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 00:31:04 +02:00
|
|
|
static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
struct nl_msg *msg, *cqm = NULL;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Signal monitor threshold=%d "
|
|
|
|
"hysteresis=%d", threshold, hysteresis);
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0,
|
|
|
|
0, NL80211_CMD_SET_CQM, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
|
|
|
|
|
|
|
|
cqm = nlmsg_alloc();
|
|
|
|
if (cqm == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
NLA_PUT_U32(cqm, NL80211_ATTR_CQM_RSSI_THOLD, threshold);
|
|
|
|
NLA_PUT_U32(cqm, NL80211_ATTR_CQM_RSSI_HYST, hysteresis);
|
|
|
|
nla_put_nested(msg, NL80211_ATTR_CQM, cqm);
|
|
|
|
|
|
|
|
if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
|
|
|
|
return 0;
|
|
|
|
msg = NULL;
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
if (cqm)
|
|
|
|
nlmsg_free(cqm);
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-31 16:56:48 +02:00
|
|
|
static int nl80211_signal_poll(void *priv, struct wpa_signal_info *si)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
os_memset(si, 0, sizeof(*si));
|
|
|
|
res = nl80211_get_link_signal(drv, si);
|
|
|
|
if (res != 0)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
return nl80211_get_link_noise(drv, si);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-29 21:01:40 +02:00
|
|
|
static int nl80211_send_frame(void *priv, const u8 *data, size_t data_len,
|
|
|
|
int encrypt)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
return wpa_driver_nl80211_send_frame(drv, data, data_len, encrypt);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-26 14:54:53 +01:00
|
|
|
static int nl80211_set_param(void *priv, const char *param)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: driver param='%s'", param);
|
|
|
|
if (param == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
#ifdef CONFIG_P2P
|
|
|
|
if (os_strstr(param, "use_p2p_group_interface=1")) {
|
2010-11-27 12:05:37 +01:00
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
|
2010-11-26 14:54:53 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
|
|
|
|
"interface");
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_P2P */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-26 17:14:51 +01:00
|
|
|
static void * nl80211_global_init(void)
|
|
|
|
{
|
|
|
|
struct nl80211_global *global;
|
|
|
|
global = os_zalloc(sizeof(*global));
|
|
|
|
if (global == NULL)
|
|
|
|
return NULL;
|
|
|
|
dl_list_init(&global->interfaces);
|
2011-07-17 19:03:25 +02:00
|
|
|
global->if_add_ifindex = -1;
|
2010-11-26 17:14:51 +01:00
|
|
|
return global;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void nl80211_global_deinit(void *priv)
|
|
|
|
{
|
|
|
|
struct nl80211_global *global = priv;
|
|
|
|
if (global == NULL)
|
|
|
|
return;
|
|
|
|
if (!dl_list_empty(&global->interfaces)) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: %u interface(s) remain at "
|
|
|
|
"nl80211_global_deinit",
|
|
|
|
dl_list_len(&global->interfaces));
|
|
|
|
}
|
|
|
|
os_free(global);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-26 20:46:30 +01:00
|
|
|
static const char * nl80211_get_radio_name(void *priv)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
return drv->phyname;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-20 09:17:33 +02:00
|
|
|
static int nl80211_pmkid(struct i802_bss *bss, int cmd, const u8 *bssid,
|
|
|
|
const u8 *pmkid)
|
|
|
|
{
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(bss->drv->nl80211), 0, 0,
|
|
|
|
cmd, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
|
|
|
|
if (pmkid)
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_PMKID, 16, pmkid);
|
|
|
|
if (bssid)
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid);
|
|
|
|
|
|
|
|
return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
|
|
|
|
nla_put_failure:
|
|
|
|
return -ENOBUFS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl80211_add_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Add PMKID for " MACSTR, MAC2STR(bssid));
|
|
|
|
return nl80211_pmkid(bss, NL80211_CMD_SET_PMKSA, bssid, pmkid);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl80211_remove_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Delete PMKID for " MACSTR,
|
|
|
|
MAC2STR(bssid));
|
|
|
|
return nl80211_pmkid(bss, NL80211_CMD_DEL_PMKSA, bssid, pmkid);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int nl80211_flush_pmkid(void *priv)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Flush PMKIDs");
|
|
|
|
return nl80211_pmkid(bss, NL80211_CMD_FLUSH_PMKSA, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-12 20:22:51 +02:00
|
|
|
static void nl80211_set_rekey_info(void *priv, const u8 *kek, const u8 *kck,
|
|
|
|
const u8 *replay_ctr)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
|
|
|
struct nlattr *replay_nested;
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return;
|
|
|
|
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_SET_REKEY_OFFLOAD, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
|
|
|
|
|
|
|
|
replay_nested = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
|
|
|
|
if (!replay_nested)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
NLA_PUT(msg, NL80211_REKEY_DATA_KEK, NL80211_KEK_LEN, kek);
|
|
|
|
NLA_PUT(msg, NL80211_REKEY_DATA_KCK, NL80211_KCK_LEN, kck);
|
|
|
|
NLA_PUT(msg, NL80211_REKEY_DATA_REPLAY_CTR, NL80211_REPLAY_CTR_LEN,
|
|
|
|
replay_ctr);
|
|
|
|
|
|
|
|
nla_nest_end(msg, replay_nested);
|
|
|
|
|
|
|
|
send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
return;
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-20 20:03:08 +02:00
|
|
|
static void nl80211_poll_client(void *priv, const u8 *own_addr, const u8 *addr,
|
|
|
|
int qos)
|
|
|
|
{
|
|
|
|
struct i802_bss *bss = priv;
|
|
|
|
struct {
|
|
|
|
struct ieee80211_hdr hdr;
|
|
|
|
u16 qos_ctl;
|
|
|
|
} STRUCT_PACKED nulldata;
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
/* Send data frame to poll STA and check whether this frame is ACKed */
|
|
|
|
|
|
|
|
os_memset(&nulldata, 0, sizeof(nulldata));
|
|
|
|
|
|
|
|
if (qos) {
|
|
|
|
nulldata.hdr.frame_control =
|
|
|
|
IEEE80211_FC(WLAN_FC_TYPE_DATA,
|
|
|
|
WLAN_FC_STYPE_QOS_NULL);
|
|
|
|
size = sizeof(nulldata);
|
|
|
|
} else {
|
|
|
|
nulldata.hdr.frame_control =
|
|
|
|
IEEE80211_FC(WLAN_FC_TYPE_DATA,
|
|
|
|
WLAN_FC_STYPE_NULLFUNC);
|
|
|
|
size = sizeof(struct ieee80211_hdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
nulldata.hdr.frame_control |= host_to_le16(WLAN_FC_FROMDS);
|
|
|
|
os_memcpy(nulldata.hdr.IEEE80211_DA_FROMDS, addr, ETH_ALEN);
|
|
|
|
os_memcpy(nulldata.hdr.IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
|
|
|
|
os_memcpy(nulldata.hdr.IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
|
|
|
|
|
|
|
|
if (wpa_driver_nl80211_send_mlme(bss, (u8 *) &nulldata, size) < 0)
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211_send_null_frame: Failed to "
|
|
|
|
"send poll frame");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
const struct wpa_driver_ops wpa_driver_nl80211_ops = {
|
|
|
|
.name = "nl80211",
|
|
|
|
.desc = "Linux nl80211/cfg80211",
|
|
|
|
.get_bssid = wpa_driver_nl80211_get_bssid,
|
|
|
|
.get_ssid = wpa_driver_nl80211_get_ssid,
|
|
|
|
.set_key = wpa_driver_nl80211_set_key,
|
2009-02-14 20:17:46 +01:00
|
|
|
.scan2 = wpa_driver_nl80211_scan,
|
2011-09-27 21:21:30 +02:00
|
|
|
.sched_scan = wpa_driver_nl80211_sched_scan,
|
|
|
|
.stop_sched_scan = wpa_driver_nl80211_stop_sched_scan,
|
2008-06-06 15:55:42 +02:00
|
|
|
.get_scan_results2 = wpa_driver_nl80211_get_scan_results,
|
|
|
|
.deauthenticate = wpa_driver_nl80211_deauthenticate,
|
|
|
|
.disassociate = wpa_driver_nl80211_disassociate,
|
2009-03-20 21:26:41 +01:00
|
|
|
.authenticate = wpa_driver_nl80211_authenticate,
|
2008-06-06 15:55:42 +02:00
|
|
|
.associate = wpa_driver_nl80211_associate,
|
2010-11-26 17:14:51 +01:00
|
|
|
.global_init = nl80211_global_init,
|
|
|
|
.global_deinit = nl80211_global_deinit,
|
|
|
|
.init2 = wpa_driver_nl80211_init,
|
2008-06-06 15:55:42 +02:00
|
|
|
.deinit = wpa_driver_nl80211_deinit,
|
|
|
|
.get_capa = wpa_driver_nl80211_get_capa,
|
|
|
|
.set_operstate = wpa_driver_nl80211_set_operstate,
|
2009-05-14 20:54:47 +02:00
|
|
|
.set_supp_port = wpa_driver_nl80211_set_supp_port,
|
2008-12-09 21:11:14 +01:00
|
|
|
.set_country = wpa_driver_nl80211_set_country,
|
2011-08-10 12:22:37 +02:00
|
|
|
.set_ap = wpa_driver_nl80211_set_ap,
|
2009-12-09 15:49:28 +01:00
|
|
|
.if_add = wpa_driver_nl80211_if_add,
|
|
|
|
.if_remove = wpa_driver_nl80211_if_remove,
|
2009-04-14 12:12:58 +02:00
|
|
|
.send_mlme = wpa_driver_nl80211_send_mlme,
|
2009-04-09 13:11:39 +02:00
|
|
|
.get_hw_feature_data = wpa_driver_nl80211_get_hw_feature_data,
|
2009-04-17 19:09:20 +02:00
|
|
|
.sta_add = wpa_driver_nl80211_sta_add,
|
|
|
|
.sta_remove = wpa_driver_nl80211_sta_remove,
|
2009-04-20 15:27:45 +02:00
|
|
|
.hapd_send_eapol = wpa_driver_nl80211_hapd_send_eapol,
|
2009-04-20 15:33:13 +02:00
|
|
|
.sta_set_flags = wpa_driver_nl80211_sta_set_flags,
|
2009-04-09 12:40:12 +02:00
|
|
|
#ifdef HOSTAPD
|
|
|
|
.hapd_init = i802_init,
|
|
|
|
.hapd_deinit = i802_deinit,
|
2011-05-27 17:54:36 +02:00
|
|
|
.set_wds_sta = i802_set_wds_sta,
|
|
|
|
#endif /* HOSTAPD */
|
|
|
|
#if defined(HOSTAPD) || defined(CONFIG_AP)
|
2009-04-09 12:40:12 +02:00
|
|
|
.get_seqnum = i802_get_seqnum,
|
|
|
|
.flush = i802_flush,
|
|
|
|
.read_sta_data = i802_read_sta_data,
|
|
|
|
.get_inact_sec = i802_get_inact_sec,
|
|
|
|
.sta_clear_stats = i802_sta_clear_stats,
|
|
|
|
.set_rts = i802_set_rts,
|
|
|
|
.set_frag = i802_set_frag,
|
|
|
|
.set_tx_queue_params = i802_set_tx_queue_params,
|
|
|
|
.set_sta_vlan = i802_set_sta_vlan,
|
2011-05-27 17:41:46 +02:00
|
|
|
.set_rate_sets = i802_set_rate_sets,
|
2011-03-16 15:11:05 +01:00
|
|
|
.sta_deauth = i802_sta_deauth,
|
|
|
|
.sta_disassoc = i802_sta_disassoc,
|
|
|
|
#endif /* HOSTAPD || CONFIG_AP */
|
2010-04-11 19:36:16 +02:00
|
|
|
.set_freq = i802_set_freq,
|
2010-02-16 18:41:49 +01:00
|
|
|
.send_action = wpa_driver_nl80211_send_action,
|
2010-12-29 13:05:34 +01:00
|
|
|
.send_action_cancel_wait = wpa_driver_nl80211_send_action_cancel_wait,
|
2010-01-03 12:57:51 +01:00
|
|
|
.remain_on_channel = wpa_driver_nl80211_remain_on_channel,
|
|
|
|
.cancel_remain_on_channel =
|
|
|
|
wpa_driver_nl80211_cancel_remain_on_channel,
|
2010-01-03 12:30:22 +01:00
|
|
|
.probe_req_report = wpa_driver_nl80211_probe_req_report,
|
2010-01-16 11:11:19 +01:00
|
|
|
.disable_11b_rates = wpa_driver_nl80211_disable_11b_rates,
|
2010-01-16 11:20:51 +01:00
|
|
|
.deinit_ap = wpa_driver_nl80211_deinit_ap,
|
2010-02-27 17:46:02 +01:00
|
|
|
.resume = wpa_driver_nl80211_resume,
|
2010-03-07 21:47:39 +01:00
|
|
|
.send_ft_action = nl80211_send_ft_action,
|
2010-03-29 00:31:04 +02:00
|
|
|
.signal_monitor = nl80211_signal_monitor,
|
2011-03-31 16:56:48 +02:00
|
|
|
.signal_poll = nl80211_signal_poll,
|
2010-03-29 21:01:40 +02:00
|
|
|
.send_frame = nl80211_send_frame,
|
2010-11-26 14:54:53 +01:00
|
|
|
.set_param = nl80211_set_param,
|
2010-11-26 20:46:30 +01:00
|
|
|
.get_radio_name = nl80211_get_radio_name,
|
2011-06-20 09:17:33 +02:00
|
|
|
.add_pmkid = nl80211_add_pmkid,
|
|
|
|
.remove_pmkid = nl80211_remove_pmkid,
|
|
|
|
.flush_pmkid = nl80211_flush_pmkid,
|
2011-07-12 20:22:51 +02:00
|
|
|
.set_rekey_info = nl80211_set_rekey_info,
|
2011-10-20 20:03:08 +02:00
|
|
|
.poll_client = nl80211_poll_client,
|
2008-06-06 15:55:42 +02:00
|
|
|
};
|