2008-06-06 15:55:42 +02:00
|
|
|
/*
|
|
|
|
* WPA Supplicant - driver interaction with Linux nl80211/cfg80211
|
|
|
|
* Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
|
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
#include <net/if_arp.h>
|
|
|
|
#include <netlink/genl/genl.h>
|
|
|
|
#include <netlink/genl/family.h>
|
|
|
|
#include <netlink/genl/ctrl.h>
|
2008-12-08 10:04:13 +01:00
|
|
|
#include "nl80211_copy.h"
|
2008-06-06 15:55:42 +02:00
|
|
|
#include "wireless_copy.h"
|
2009-03-20 21:31:24 +01:00
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
#include "common.h"
|
|
|
|
#include "driver.h"
|
|
|
|
#include "eloop.h"
|
|
|
|
#include "ieee802_11_defs.h"
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
|
|
|
|
|
struct wpa_driver_nl80211_data {
|
|
|
|
void *ctx;
|
2009-03-31 13:14:16 +02:00
|
|
|
int link_event_sock;
|
2008-06-06 15:55:42 +02:00
|
|
|
int ioctl_sock;
|
|
|
|
char ifname[IFNAMSIZ + 1];
|
|
|
|
int ifindex;
|
2008-08-15 16:55:16 +02:00
|
|
|
int if_removed;
|
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;
|
|
|
|
struct nl_cache *nl_cache;
|
|
|
|
struct nl_cb *nl_cb;
|
|
|
|
struct genl_family *nl80211;
|
2008-08-15 21:14:49 +02:00
|
|
|
|
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;
|
2008-06-06 15:55:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void wpa_driver_nl80211_scan_timeout(void *eloop_ctx,
|
|
|
|
void *timeout_ctx);
|
2009-03-24 19:06:02 +01:00
|
|
|
static int wpa_driver_nl80211_set_mode(struct wpa_driver_nl80211_data *drv,
|
|
|
|
int mode);
|
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);
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
struct nl_cb *cb;
|
|
|
|
int err = -ENOMEM;
|
|
|
|
|
|
|
|
cb = nl_cb_clone(drv->nl_cb);
|
|
|
|
if (!cb)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
err = nl_send_auto_complete(drv->nl_handle, msg);
|
|
|
|
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)
|
|
|
|
nl_recvmsgs(drv->nl_handle, cb);
|
|
|
|
out:
|
|
|
|
nl_cb_put(cb);
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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_send_oper_ifla(
|
|
|
|
struct wpa_driver_nl80211_data *drv,
|
|
|
|
int linkmode, int operstate)
|
|
|
|
{
|
|
|
|
struct {
|
|
|
|
struct nlmsghdr hdr;
|
|
|
|
struct ifinfomsg ifinfo;
|
|
|
|
char opts[16];
|
|
|
|
} req;
|
|
|
|
struct rtattr *rta;
|
|
|
|
static int nl_seq;
|
|
|
|
ssize_t ret;
|
|
|
|
|
|
|
|
os_memset(&req, 0, sizeof(req));
|
|
|
|
|
|
|
|
req.hdr.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
|
|
|
|
req.hdr.nlmsg_type = RTM_SETLINK;
|
|
|
|
req.hdr.nlmsg_flags = NLM_F_REQUEST;
|
|
|
|
req.hdr.nlmsg_seq = ++nl_seq;
|
|
|
|
req.hdr.nlmsg_pid = 0;
|
|
|
|
|
|
|
|
req.ifinfo.ifi_family = AF_UNSPEC;
|
|
|
|
req.ifinfo.ifi_type = 0;
|
|
|
|
req.ifinfo.ifi_index = drv->ifindex;
|
|
|
|
req.ifinfo.ifi_flags = 0;
|
|
|
|
req.ifinfo.ifi_change = 0;
|
|
|
|
|
|
|
|
if (linkmode != -1) {
|
|
|
|
rta = (struct rtattr *)
|
|
|
|
((char *) &req + NLMSG_ALIGN(req.hdr.nlmsg_len));
|
|
|
|
rta->rta_type = IFLA_LINKMODE;
|
|
|
|
rta->rta_len = RTA_LENGTH(sizeof(char));
|
|
|
|
*((char *) RTA_DATA(rta)) = linkmode;
|
|
|
|
req.hdr.nlmsg_len = NLMSG_ALIGN(req.hdr.nlmsg_len) +
|
|
|
|
RTA_LENGTH(sizeof(char));
|
|
|
|
}
|
|
|
|
if (operstate != -1) {
|
|
|
|
rta = (struct rtattr *)
|
|
|
|
((char *) &req + NLMSG_ALIGN(req.hdr.nlmsg_len));
|
|
|
|
rta->rta_type = IFLA_OPERSTATE;
|
|
|
|
rta->rta_len = RTA_LENGTH(sizeof(char));
|
|
|
|
*((char *) RTA_DATA(rta)) = operstate;
|
|
|
|
req.hdr.nlmsg_len = NLMSG_ALIGN(req.hdr.nlmsg_len) +
|
|
|
|
RTA_LENGTH(sizeof(char));
|
|
|
|
}
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "WEXT: Operstate: linkmode=%d, operstate=%d",
|
|
|
|
linkmode, operstate);
|
|
|
|
|
2009-03-31 13:14:16 +02:00
|
|
|
ret = send(drv->link_event_sock, &req, req.hdr.nlmsg_len, 0);
|
2008-06-06 15:55:42 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WEXT: Sending operstate IFLA failed: "
|
|
|
|
"%s (assume operstate is not supported)",
|
|
|
|
strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret < 0 ? -1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_set_auth_param(
|
|
|
|
struct wpa_driver_nl80211_data *drv, int idx, u32 value)
|
|
|
|
{
|
|
|
|
struct iwreq iwr;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
os_memset(&iwr, 0, sizeof(iwr));
|
|
|
|
os_strlcpy(iwr.ifr_name, drv->ifname, IFNAMSIZ);
|
|
|
|
iwr.u.param.flags = idx & IW_AUTH_INDEX;
|
|
|
|
iwr.u.param.value = value;
|
|
|
|
|
|
|
|
if (ioctl(drv->ioctl_sock, SIOCSIWAUTH, &iwr) < 0) {
|
|
|
|
if (errno != EOPNOTSUPP) {
|
|
|
|
wpa_printf(MSG_DEBUG, "WEXT: SIOCSIWAUTH(param %d "
|
|
|
|
"value 0x%x) failed: %s)",
|
|
|
|
idx, value, strerror(errno));
|
|
|
|
}
|
|
|
|
ret = errno == EOPNOTSUPP ? -2 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_get_bssid(void *priv, u8 *bssid)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
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)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
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,
|
|
|
|
void *ctx, 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");
|
|
|
|
|
2008-08-15 16:55:16 +02:00
|
|
|
if (os_strcmp(drv->ifname, event.interface_status.ifname) == 0) {
|
|
|
|
if (del)
|
|
|
|
drv->if_removed = 1;
|
|
|
|
else
|
|
|
|
drv->if_removed = 0;
|
|
|
|
}
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
wpa_supplicant_event(ctx, EVENT_INTERFACE_STATUS, &event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-15 16:55:16 +02:00
|
|
|
static int wpa_driver_nl80211_own_ifname(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct nlmsghdr *h)
|
|
|
|
{
|
|
|
|
struct ifinfomsg *ifi;
|
|
|
|
int attrlen, _nlmsg_len, rta_len;
|
|
|
|
struct rtattr *attr;
|
|
|
|
|
|
|
|
ifi = NLMSG_DATA(h);
|
|
|
|
|
|
|
|
_nlmsg_len = NLMSG_ALIGN(sizeof(struct ifinfomsg));
|
|
|
|
|
|
|
|
attrlen = h->nlmsg_len - _nlmsg_len;
|
|
|
|
if (attrlen < 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
attr = (struct rtattr *) (((char *) ifi) + _nlmsg_len);
|
|
|
|
|
|
|
|
rta_len = RTA_ALIGN(sizeof(struct rtattr));
|
|
|
|
while (RTA_OK(attr, attrlen)) {
|
|
|
|
if (attr->rta_type == IFLA_IFNAME) {
|
|
|
|
if (os_strcmp(((char *) attr) + rta_len, drv->ifname)
|
|
|
|
== 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,
|
|
|
|
int ifindex, struct nlmsghdr *h)
|
|
|
|
{
|
|
|
|
if (drv->ifindex == ifindex)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (drv->if_removed && wpa_driver_nl80211_own_ifname(drv, h)) {
|
|
|
|
drv->ifindex = if_nametoindex(drv->ifname);
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Update ifindex for a removed "
|
|
|
|
"interface");
|
|
|
|
wpa_driver_nl80211_finish_drv_init(drv);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
static void wpa_driver_nl80211_event_rtm_newlink(struct wpa_driver_nl80211_data *drv,
|
|
|
|
void *ctx, struct nlmsghdr *h,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
struct ifinfomsg *ifi;
|
|
|
|
int attrlen, _nlmsg_len, rta_len;
|
|
|
|
struct rtattr * attr;
|
|
|
|
|
|
|
|
if (len < sizeof(*ifi))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ifi = NLMSG_DATA(h);
|
|
|
|
|
2008-08-15 16:55:16 +02:00
|
|
|
if (!wpa_driver_nl80211_own_ifindex(drv, ifi->ifi_index, h)) {
|
2008-06-06 15:55:42 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "Ignore event for foreign ifindex %d",
|
|
|
|
ifi->ifi_index);
|
|
|
|
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]" : "");
|
|
|
|
/*
|
|
|
|
* 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))
|
|
|
|
wpa_driver_nl80211_send_oper_ifla(drv, -1, IF_OPER_UP);
|
|
|
|
|
|
|
|
_nlmsg_len = NLMSG_ALIGN(sizeof(struct ifinfomsg));
|
|
|
|
|
|
|
|
attrlen = h->nlmsg_len - _nlmsg_len;
|
|
|
|
if (attrlen < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
attr = (struct rtattr *) (((char *) ifi) + _nlmsg_len);
|
|
|
|
|
|
|
|
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(
|
|
|
|
drv, ctx,
|
|
|
|
((char *) attr) + rta_len,
|
|
|
|
attr->rta_len - rta_len, 0);
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
attr = RTA_NEXT(attr, attrlen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void wpa_driver_nl80211_event_rtm_dellink(struct wpa_driver_nl80211_data *drv,
|
|
|
|
void *ctx, struct nlmsghdr *h,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
struct ifinfomsg *ifi;
|
|
|
|
int attrlen, _nlmsg_len, rta_len;
|
|
|
|
struct rtattr * attr;
|
|
|
|
|
|
|
|
if (len < sizeof(*ifi))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ifi = NLMSG_DATA(h);
|
|
|
|
|
|
|
|
_nlmsg_len = NLMSG_ALIGN(sizeof(struct ifinfomsg));
|
|
|
|
|
|
|
|
attrlen = h->nlmsg_len - _nlmsg_len;
|
|
|
|
if (attrlen < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
attr = (struct rtattr *) (((char *) ifi) + _nlmsg_len);
|
|
|
|
|
|
|
|
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(
|
|
|
|
drv, ctx,
|
|
|
|
((char *) attr) + rta_len,
|
|
|
|
attr->rta_len - rta_len, 1);
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
attr = RTA_NEXT(attr, attrlen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-31 13:14:16 +02:00
|
|
|
static void wpa_driver_nl80211_event_receive_link(int sock, void *eloop_ctx,
|
2009-02-12 19:11:43 +01:00
|
|
|
void *sock_ctx)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
|
|
|
char buf[8192];
|
|
|
|
int left;
|
|
|
|
struct sockaddr_nl from;
|
|
|
|
socklen_t fromlen;
|
|
|
|
struct nlmsghdr *h;
|
|
|
|
int max_events = 10;
|
|
|
|
|
|
|
|
try_again:
|
|
|
|
fromlen = sizeof(from);
|
|
|
|
left = recvfrom(sock, buf, sizeof(buf), MSG_DONTWAIT,
|
|
|
|
(struct sockaddr *) &from, &fromlen);
|
|
|
|
if (left < 0) {
|
|
|
|
if (errno != EINTR && errno != EAGAIN)
|
|
|
|
perror("recvfrom(netlink)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
h = (struct nlmsghdr *) buf;
|
|
|
|
while (left >= (int) sizeof(*h)) {
|
|
|
|
int len, plen;
|
|
|
|
|
|
|
|
len = h->nlmsg_len;
|
|
|
|
plen = len - sizeof(*h);
|
|
|
|
if (len > left || plen < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "Malformed netlink message: "
|
|
|
|
"len=%d left=%d plen=%d",
|
|
|
|
len, left, plen);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (h->nlmsg_type) {
|
|
|
|
case RTM_NEWLINK:
|
|
|
|
wpa_driver_nl80211_event_rtm_newlink(eloop_ctx, sock_ctx,
|
|
|
|
h, plen);
|
|
|
|
break;
|
|
|
|
case RTM_DELLINK:
|
|
|
|
wpa_driver_nl80211_event_rtm_dellink(eloop_ctx, sock_ctx,
|
|
|
|
h, plen);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = NLMSG_ALIGN(len);
|
|
|
|
left -= len;
|
|
|
|
h = (struct nlmsghdr *) ((char *) h + len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (left > 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "%d extra bytes in the end of netlink "
|
|
|
|
"message", left);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (--max_events > 0) {
|
|
|
|
/*
|
|
|
|
* Try to receive all events in one eloop call in order to
|
|
|
|
* limit race condition on cases where AssocInfo event, Assoc
|
|
|
|
* event, and EAPOL frames are received more or less at the
|
|
|
|
* same time. We want to process the event messages first
|
|
|
|
* before starting EAPOL processing.
|
|
|
|
*/
|
|
|
|
goto try_again;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-12 19:11:43 +01:00
|
|
|
static int no_seq_check(struct nl_msg *msg, void *arg)
|
|
|
|
{
|
|
|
|
return NL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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));
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void mlme_event(struct wpa_driver_nl80211_data *drv,
|
|
|
|
enum nl80211_commands cmd, struct nlattr *frame)
|
|
|
|
{
|
|
|
|
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:
|
|
|
|
drv->associated = 0;
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_DEAUTH, NULL);
|
|
|
|
break;
|
|
|
|
case NL80211_CMD_DISASSOCIATE:
|
|
|
|
drv->associated = 0;
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_DISASSOC, NULL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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]);
|
|
|
|
if (ifindex != drv->ifindex) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Ignored event (cmd=%d)"
|
|
|
|
" for foreign interface (ifindex %d)",
|
|
|
|
gnlh->cmd, ifindex);
|
|
|
|
return NL_SKIP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (gnlh->cmd) {
|
|
|
|
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);
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_SCAN_RESULTS, NULL);
|
|
|
|
break;
|
|
|
|
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);
|
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_SCAN_RESULTS, NULL);
|
|
|
|
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:
|
|
|
|
mlme_event(drv, gnlh->cmd, tb[NL80211_ATTR_FRAME]);
|
|
|
|
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,
|
|
|
|
void *sock_ctx)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
nl_recvmsgs(drv->nl_handle, cb);
|
|
|
|
nl_cb_put(cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
static int wpa_driver_nl80211_get_ifflags_ifname(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const char *ifname, int *flags)
|
|
|
|
{
|
|
|
|
struct ifreq ifr;
|
|
|
|
|
|
|
|
os_memset(&ifr, 0, sizeof(ifr));
|
|
|
|
os_strlcpy(ifr.ifr_name, ifname, IFNAMSIZ);
|
|
|
|
if (ioctl(drv->ioctl_sock, SIOCGIFFLAGS, (caddr_t) &ifr) < 0) {
|
|
|
|
perror("ioctl[SIOCGIFFLAGS]");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
*flags = ifr.ifr_flags & 0xffff;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wpa_driver_nl80211_get_ifflags - Get interface flags (SIOCGIFFLAGS)
|
|
|
|
* @drv: driver_nl80211 private data
|
|
|
|
* @flags: Pointer to returned flags value
|
|
|
|
* Returns: 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
static int wpa_driver_nl80211_get_ifflags(struct wpa_driver_nl80211_data *drv,
|
|
|
|
int *flags)
|
|
|
|
{
|
|
|
|
return wpa_driver_nl80211_get_ifflags_ifname(drv, drv->ifname, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_set_ifflags_ifname(
|
|
|
|
struct wpa_driver_nl80211_data *drv,
|
|
|
|
const char *ifname, int flags)
|
|
|
|
{
|
|
|
|
struct ifreq ifr;
|
|
|
|
|
|
|
|
os_memset(&ifr, 0, sizeof(ifr));
|
|
|
|
os_strlcpy(ifr.ifr_name, ifname, IFNAMSIZ);
|
|
|
|
ifr.ifr_flags = flags & 0xffff;
|
|
|
|
if (ioctl(drv->ioctl_sock, SIOCSIFFLAGS, (caddr_t) &ifr) < 0) {
|
|
|
|
perror("SIOCSIFFLAGS");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wpa_driver_nl80211_set_ifflags - Set interface flags (SIOCSIFFLAGS)
|
|
|
|
* @drv: driver_nl80211 private data
|
|
|
|
* @flags: New value for flags
|
|
|
|
* Returns: 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
static int wpa_driver_nl80211_set_ifflags(struct wpa_driver_nl80211_data *drv,
|
|
|
|
int flags)
|
|
|
|
{
|
|
|
|
return wpa_driver_nl80211_set_ifflags_ifname(drv, drv->ifname, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
|
|
|
char alpha2[3];
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
goto nla_put_failure;
|
|
|
|
|
|
|
|
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;
|
2009-03-25 10:38:47 +01:00
|
|
|
int ap_supported;
|
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;
|
|
|
|
|
|
|
|
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]);
|
|
|
|
|
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) {
|
|
|
|
if (nl_mode->nla_type == NL80211_IFTYPE_AP) {
|
|
|
|
info->ap_supported = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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));
|
|
|
|
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);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
|
|
|
if (send_and_recv_msgs(drv, msg, wiphy_info_handler, info) == 0)
|
|
|
|
return 0;
|
|
|
|
msg = NULL;
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void wpa_driver_nl80211_capa(struct wpa_driver_nl80211_data *drv)
|
|
|
|
{
|
|
|
|
struct wiphy_info_data info;
|
|
|
|
if (wpa_driver_nl80211_get_info(drv, &info))
|
|
|
|
return;
|
|
|
|
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;
|
|
|
|
|
2009-02-12 20:49:57 +01:00
|
|
|
drv->capa.max_scan_ssids = info.max_scan_ssids;
|
2009-03-25 10:38:47 +01:00
|
|
|
if (info.ap_supported)
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_AP;
|
2009-02-12 20:49:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
/**
|
2009-01-03 19:38:42 +01:00
|
|
|
* wpa_driver_nl80211_init - Initialize nl80211 driver interface
|
2008-06-06 15:55:42 +02:00
|
|
|
* @ctx: context to be used when calling wpa_supplicant functions,
|
|
|
|
* e.g., wpa_supplicant_event()
|
|
|
|
* @ifname: interface name, e.g., wlan0
|
|
|
|
* Returns: Pointer to private data, %NULL on failure
|
|
|
|
*/
|
2009-01-03 19:38:42 +01:00
|
|
|
static void * wpa_driver_nl80211_init(void *ctx, const char *ifname)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
2009-02-12 19:11:43 +01:00
|
|
|
int s, ret;
|
2008-06-06 15:55:42 +02:00
|
|
|
struct sockaddr_nl local;
|
|
|
|
struct wpa_driver_nl80211_data *drv;
|
|
|
|
|
|
|
|
drv = os_zalloc(sizeof(*drv));
|
|
|
|
if (drv == NULL)
|
|
|
|
return NULL;
|
|
|
|
drv->ctx = ctx;
|
|
|
|
os_strlcpy(drv->ifname, ifname, sizeof(drv->ifname));
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
drv->nl_handle = nl_handle_alloc_cb(drv->nl_cb);
|
|
|
|
if (drv->nl_handle == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to allocate netlink "
|
|
|
|
"callbacks");
|
|
|
|
goto err2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (genl_connect(drv->nl_handle)) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to connect to generic "
|
|
|
|
"netlink");
|
|
|
|
goto err3;
|
|
|
|
}
|
|
|
|
|
|
|
|
drv->nl_cache = genl_ctrl_alloc_cache(drv->nl_handle);
|
|
|
|
if (drv->nl_cache == NULL) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to allocate generic "
|
|
|
|
"netlink cache");
|
|
|
|
goto err3;
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
ret = nl_socket_add_membership(drv->nl_handle, ret);
|
|
|
|
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)
|
|
|
|
ret = nl_socket_add_membership(drv->nl_handle, ret);
|
|
|
|
if (ret < 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
|
|
|
|
"membership for mlme events: %d (%s)",
|
|
|
|
ret, strerror(-ret));
|
|
|
|
goto err4;
|
|
|
|
}
|
|
|
|
drv->capa.flags |= WPA_DRIVER_FLAGS_SME;
|
|
|
|
|
2009-02-12 19:11:43 +01:00
|
|
|
eloop_register_read_sock(nl_socket_get_fd(drv->nl_handle),
|
|
|
|
wpa_driver_nl80211_event_receive, drv, ctx);
|
|
|
|
|
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)");
|
|
|
|
goto err5;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
|
|
|
|
if (s < 0) {
|
|
|
|
perror("socket(PF_NETLINK,SOCK_RAW,NETLINK_ROUTE)");
|
|
|
|
goto err6;
|
|
|
|
}
|
|
|
|
|
|
|
|
os_memset(&local, 0, sizeof(local));
|
|
|
|
local.nl_family = AF_NETLINK;
|
|
|
|
local.nl_groups = RTMGRP_LINK;
|
|
|
|
if (bind(s, (struct sockaddr *) &local, sizeof(local)) < 0) {
|
|
|
|
perror("bind(netlink)");
|
|
|
|
close(s);
|
|
|
|
goto err6;
|
|
|
|
}
|
|
|
|
|
2009-03-31 13:14:16 +02:00
|
|
|
eloop_register_read_sock(s, wpa_driver_nl80211_event_receive_link, drv,
|
2008-06-06 15:55:42 +02:00
|
|
|
ctx);
|
2009-03-31 13:14:16 +02:00
|
|
|
drv->link_event_sock = s;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-02-14 15:43:43 +01:00
|
|
|
if (wpa_driver_nl80211_finish_drv_init(drv))
|
|
|
|
goto err7;
|
2008-08-15 16:55:16 +02:00
|
|
|
|
|
|
|
return drv;
|
|
|
|
|
2009-02-14 15:43:43 +01:00
|
|
|
err7:
|
2009-03-31 13:14:16 +02:00
|
|
|
eloop_unregister_read_sock(drv->link_event_sock);
|
|
|
|
close(drv->link_event_sock);
|
2008-08-15 16:55:16 +02:00
|
|
|
err6:
|
|
|
|
close(drv->ioctl_sock);
|
|
|
|
err5:
|
|
|
|
genl_family_put(drv->nl80211);
|
|
|
|
err4:
|
|
|
|
nl_cache_free(drv->nl_cache);
|
|
|
|
err3:
|
|
|
|
nl_handle_destroy(drv->nl_handle);
|
|
|
|
err2:
|
|
|
|
nl_cb_put(drv->nl_cb);
|
|
|
|
err1:
|
|
|
|
os_free(drv);
|
|
|
|
return 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)
|
|
|
|
{
|
|
|
|
int flags;
|
|
|
|
|
2009-03-24 19:50:40 +01:00
|
|
|
drv->ifindex = if_nametoindex(drv->ifname);
|
|
|
|
|
|
|
|
if (wpa_driver_nl80211_set_mode(drv, 0) < 0) {
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Could not configure driver to "
|
|
|
|
"use managed mode");
|
|
|
|
}
|
|
|
|
|
2009-02-14 15:43:43 +01:00
|
|
|
if (wpa_driver_nl80211_get_ifflags(drv, &flags) != 0) {
|
|
|
|
wpa_printf(MSG_ERROR, "Could not get interface '%s' flags",
|
|
|
|
drv->ifname);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!(flags & IFF_UP)) {
|
2008-06-06 15:55:42 +02:00
|
|
|
if (wpa_driver_nl80211_set_ifflags(drv, flags | IFF_UP) != 0) {
|
2009-02-14 15:43:43 +01:00
|
|
|
wpa_printf(MSG_ERROR, "Could not set interface '%s' "
|
|
|
|
"UP", drv->ifname);
|
|
|
|
return -1;
|
2008-06-06 15:55:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-12 20:49:57 +01:00
|
|
|
wpa_driver_nl80211_capa(drv);
|
|
|
|
|
2008-06-06 15:55:42 +02:00
|
|
|
wpa_driver_nl80211_send_oper_ifla(drv, 1, IF_OPER_DORMANT);
|
2009-02-14 15:43:43 +01:00
|
|
|
|
|
|
|
return 0;
|
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
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
|
|
|
|
|
2009-03-24 19:06:02 +01:00
|
|
|
wpa_driver_nl80211_set_auth_param(drv, IW_AUTH_DROP_UNENCRYPTED, 0);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
wpa_driver_nl80211_send_oper_ifla(priv, 0, IF_OPER_UP);
|
|
|
|
|
2009-03-31 13:14:16 +02:00
|
|
|
eloop_unregister_read_sock(drv->link_event_sock);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
if (wpa_driver_nl80211_get_ifflags(drv, &flags) == 0)
|
|
|
|
(void) wpa_driver_nl80211_set_ifflags(drv, flags & ~IFF_UP);
|
2009-03-25 10:38:47 +01:00
|
|
|
wpa_driver_nl80211_set_mode(drv, 0);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-03-31 13:14:16 +02:00
|
|
|
close(drv->link_event_sock);
|
2008-06-06 15:55:42 +02:00
|
|
|
close(drv->ioctl_sock);
|
|
|
|
|
2009-02-12 19:11:43 +01:00
|
|
|
eloop_unregister_read_sock(nl_socket_get_fd(drv->nl_handle));
|
2008-06-06 15:55:42 +02:00
|
|
|
genl_family_put(drv->nl80211);
|
|
|
|
nl_cache_free(drv->nl_cache);
|
|
|
|
nl_handle_destroy(drv->nl_handle);
|
|
|
|
nl_cb_put(drv->nl_cb);
|
|
|
|
|
|
|
|
os_free(drv);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wpa_driver_nl80211_scan_timeout - Scan timeout to report scan completion
|
|
|
|
* @eloop_ctx: Unused
|
|
|
|
* @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)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
* @priv: Pointer to private wext 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
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
|
|
|
int ret = 0, timeout;
|
2009-03-26 20:55:01 +01:00
|
|
|
struct nl_msg *msg, *ssids, *freqs;
|
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();
|
|
|
|
if (!msg || !ssids || !freqs) {
|
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);
|
2008-06-06 15:55:42 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
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++) {
|
|
|
|
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) {
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE, params->extra_ies_len,
|
|
|
|
params->extra_ies);
|
|
|
|
}
|
|
|
|
|
2009-03-26 20:55:01 +01:00
|
|
|
if (params->freqs) {
|
|
|
|
for (i = 0; params->freqs[i]; i++)
|
|
|
|
NLA_PUT_U32(freqs, i + 1, params->freqs[i]);
|
|
|
|
nla_put_nested(msg, NL80211_ATTR_SCAN_FREQUENCIES, freqs);
|
|
|
|
}
|
|
|
|
|
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));
|
|
|
|
goto nla_put_failure;
|
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);
|
2008-06-06 15:55:42 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 },
|
|
|
|
};
|
|
|
|
struct wpa_scan_results *res = arg;
|
2008-06-06 15:55:42 +02:00
|
|
|
struct wpa_scan_res **tmp;
|
|
|
|
struct wpa_scan_res *r;
|
2009-02-12 16:12:58 +01:00
|
|
|
const u8 *ie;
|
|
|
|
size_t ie_len;
|
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;
|
|
|
|
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;
|
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2009-02-12 16:12:58 +01:00
|
|
|
r = os_zalloc(sizeof(*r) + 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]);
|
|
|
|
r->ie_len = ie_len;
|
|
|
|
if (ie)
|
|
|
|
os_memcpy(r + 1, ie, ie_len);
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2009-01-03 19:38:42 +01:00
|
|
|
static struct wpa_scan_results *
|
|
|
|
wpa_driver_nl80211_get_scan_results(void *priv)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
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;
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
res = os_zalloc(sizeof(*res));
|
2009-02-12 16:12:58 +01:00
|
|
|
if (res == NULL)
|
|
|
|
return 0;
|
|
|
|
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
|
|
|
|
2009-02-12 16:12:58 +01:00
|
|
|
ret = send_and_recv_msgs(drv, msg, bss_info_handler, res);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_set_key(void *priv, wpa_alg alg,
|
|
|
|
const u8 *addr, int key_idx,
|
|
|
|
int set_tx, const u8 *seq,
|
|
|
|
size_t seq_len,
|
|
|
|
const u8 *key, size_t key_len)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
2008-09-30 15:46:22 +02:00
|
|
|
int err;
|
2008-06-06 15:55:42 +02:00
|
|
|
struct nl_msg *msg;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "%s: alg=%d addr=%p key_idx=%d set_tx=%d "
|
|
|
|
"seq_len=%lu key_len=%lu",
|
|
|
|
__func__, alg, addr, key_idx, set_tx,
|
|
|
|
(unsigned long) seq_len, (unsigned long) key_len);
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (msg == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (alg == WPA_ALG_NONE) {
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_DEL_KEY, 0);
|
|
|
|
} else {
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_NEW_KEY, 0);
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_KEY_DATA, key_len, key);
|
|
|
|
switch (alg) {
|
|
|
|
case WPA_ALG_WEP:
|
|
|
|
if (key_len == 5)
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
|
|
|
|
0x000FAC01);
|
|
|
|
else
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
|
|
|
|
0x000FAC05);
|
|
|
|
break;
|
|
|
|
case WPA_ALG_TKIP:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER, 0x000FAC02);
|
|
|
|
break;
|
|
|
|
case WPA_ALG_CCMP:
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER, 0x000FAC04);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (addr && os_memcmp(addr, "\xff\xff\xff\xff\xff\xff", ETH_ALEN) != 0)
|
|
|
|
{
|
|
|
|
wpa_printf(MSG_DEBUG, " addr=" MACSTR, MAC2STR(addr));
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
|
|
|
|
}
|
|
|
|
NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
2008-09-30 15:46:22 +02:00
|
|
|
err = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (err) {
|
2008-06-06 15:55:42 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: set_key failed; err=%d", err);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (set_tx && alg != WPA_ALG_NONE) {
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (msg == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
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, drv->ifindex);
|
|
|
|
NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT);
|
|
|
|
|
2008-09-30 15:46:22 +02:00
|
|
|
err = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (err) {
|
2008-06-06 15:55:42 +02:00
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: set default key "
|
|
|
|
"failed; err=%d", err);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-30 15:46:22 +02:00
|
|
|
return 0;
|
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-03-20 21:26:41 +01:00
|
|
|
static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv,
|
|
|
|
const u8 *addr, int cmd, u16 reason_code)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "%s", __func__);
|
|
|
|
return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DEAUTHENTICATE,
|
|
|
|
reason_code);
|
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
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
2009-03-20 21:26:41 +01:00
|
|
|
wpa_printf(MSG_DEBUG, "%s", __func__);
|
|
|
|
return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DISASSOCIATE,
|
|
|
|
reason_code);
|
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)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
|
|
|
int ret = -1;
|
|
|
|
struct nl_msg *msg;
|
|
|
|
enum nl80211_auth_type type;
|
|
|
|
|
|
|
|
drv->associated = 0;
|
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Authenticate (ifindex=%d)",
|
|
|
|
drv->ifindex);
|
|
|
|
genlmsg_put(msg, 0, 0, genl_family_get_id(drv->nl80211), 0, 0,
|
|
|
|
NL80211_CMD_AUTHENTICATE, 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);
|
|
|
|
}
|
|
|
|
wpa_hexdump(MSG_DEBUG, " * IEs", params->ie, params->ie_len);
|
|
|
|
if (params->ie)
|
|
|
|
NLA_PUT(msg, NL80211_ATTR_IE, params->ie_len, params->ie);
|
|
|
|
/*
|
|
|
|
* TODO: if multiple auth_alg options enabled, try them one by one if
|
|
|
|
* the AP rejects authentication due to unknown auth alg
|
|
|
|
*/
|
|
|
|
if (params->auth_alg & AUTH_ALG_OPEN_SYSTEM)
|
|
|
|
type = NL80211_AUTHTYPE_OPEN_SYSTEM;
|
|
|
|
else if (params->auth_alg & AUTH_ALG_SHARED_KEY)
|
|
|
|
type = NL80211_AUTHTYPE_SHARED_KEY;
|
|
|
|
else if (params->auth_alg & AUTH_ALG_LEAP)
|
|
|
|
type = NL80211_AUTHTYPE_NETWORK_EAP;
|
|
|
|
else if (params->auth_alg & AUTH_ALG_FT)
|
|
|
|
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);
|
|
|
|
|
|
|
|
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;
|
|
|
|
wpa_printf(MSG_DEBUG, "nl80211: Authentication request send "
|
|
|
|
"successfully");
|
|
|
|
|
|
|
|
nla_put_failure:
|
|
|
|
nlmsg_free(msg);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-25 10:38:47 +01:00
|
|
|
#ifdef CONFIG_AP
|
|
|
|
static int wpa_driver_nl80211_set_freq2(
|
|
|
|
struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct wpa_driver_associate_params *params)
|
|
|
|
{
|
|
|
|
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_SET_WIPHY, 0);
|
|
|
|
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
|
|
|
|
|
|
|
|
/* TODO: proper channel configuration */
|
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, 2437);
|
|
|
|
|
|
|
|
if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
|
|
|
|
return 0;
|
|
|
|
nla_put_failure:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_ap(struct wpa_driver_nl80211_data *drv,
|
|
|
|
struct wpa_driver_associate_params *params)
|
|
|
|
{
|
|
|
|
if (wpa_driver_nl80211_set_mode(drv, params->mode) ||
|
|
|
|
wpa_driver_nl80211_set_freq2(drv, params))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* TODO: setup monitor interface (and add code somewhere to remove this
|
|
|
|
* when AP mode is stopped; associate with mode != 2 or drv_deinit) */
|
|
|
|
/* TODO: setup beacon */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_AP */
|
|
|
|
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
static int wpa_driver_nl80211_associate(
|
|
|
|
void *priv, struct wpa_driver_associate_params *params)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
|
|
|
int ret = -1;
|
|
|
|
struct nl_msg *msg;
|
|
|
|
|
2009-03-25 10:38:47 +01:00
|
|
|
#ifdef CONFIG_AP
|
|
|
|
if (params->mode == 2)
|
|
|
|
return wpa_driver_nl80211_ap(drv, params);
|
|
|
|
#endif /* CONFIG_AP */
|
|
|
|
|
2009-03-24 19:06:02 +01:00
|
|
|
wpa_driver_nl80211_set_auth_param(drv, IW_AUTH_DROP_UNENCRYPTED,
|
|
|
|
params->drop_unencrypted);
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
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);
|
|
|
|
|
|
|
|
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;
|
|
|
|
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-03-31 14:25:10 +02:00
|
|
|
* wpa_driver_nl80211_set_mode - Set wireless mode (infra/adhoc)
|
2009-03-24 19:06:02 +01:00
|
|
|
* @drv: Pointer to private driver data from wpa_driver_nl80211_init()
|
2008-06-06 15:55:42 +02:00
|
|
|
* @mode: 0 = infra/BSS (associate with an AP), 1 = adhoc/IBSS
|
|
|
|
* Returns: 0 on success, -1 on failure
|
|
|
|
*/
|
2009-03-24 19:06:02 +01:00
|
|
|
static int wpa_driver_nl80211_set_mode(struct wpa_driver_nl80211_data *drv,
|
|
|
|
int mode)
|
2008-06-06 15:55:42 +02:00
|
|
|
{
|
|
|
|
int ret = -1, flags;
|
|
|
|
struct nl_msg *msg;
|
2009-03-25 10:38:47 +01:00
|
|
|
int nlmode;
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case 0:
|
|
|
|
nlmode = NL80211_IFTYPE_STATION;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
nlmode = NL80211_IFTYPE_ADHOC;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
nlmode = NL80211_IFTYPE_AP;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
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, drv->ifindex);
|
2009-03-25 10:38:47 +01:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, nlmode);
|
2008-06-06 15:55:42 +02:00
|
|
|
|
2008-09-30 15:46:22 +02:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (!ret)
|
|
|
|
return 0;
|
|
|
|
else
|
2008-06-06 15:55:42 +02:00
|
|
|
goto try_again;
|
|
|
|
|
|
|
|
nla_put_failure:
|
2009-03-24 19:50:40 +01:00
|
|
|
wpa_printf(MSG_ERROR, "nl80211: Failed to set interface mode: %d (%s)",
|
|
|
|
ret, strerror(-ret));
|
2008-06-06 15:55:42 +02:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
try_again:
|
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
if (wpa_driver_nl80211_get_ifflags(drv, &flags) == 0) {
|
|
|
|
(void) wpa_driver_nl80211_set_ifflags(drv, flags & ~IFF_UP);
|
|
|
|
|
|
|
|
/* Try to set the mode again while the interface is down */
|
2008-09-30 15:46:22 +02:00
|
|
|
msg = nlmsg_alloc();
|
|
|
|
if (!msg)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
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, drv->ifindex);
|
2009-03-25 10:38:47 +01:00
|
|
|
NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, nlmode);
|
2008-09-30 15:46:22 +02:00
|
|
|
ret = send_and_recv_msgs(drv, msg, NULL, NULL);
|
|
|
|
if (ret) {
|
2008-06-06 15:55:42 +02:00
|
|
|
wpa_printf(MSG_ERROR, "Failed to set interface %s "
|
2009-03-24 19:50:40 +01:00
|
|
|
"mode(try_again): %d (%s)",
|
|
|
|
drv->ifname, ret, strerror(-ret));
|
2008-09-30 15:46:22 +02:00
|
|
|
}
|
2008-06-06 15:55:42 +02:00
|
|
|
|
|
|
|
/* Ignore return value of get_ifflags to ensure that the device
|
|
|
|
* is always up like it was before this function was called.
|
|
|
|
*/
|
|
|
|
(void) wpa_driver_nl80211_get_ifflags(drv, &flags);
|
|
|
|
(void) wpa_driver_nl80211_set_ifflags(drv, flags | IFF_UP);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int wpa_driver_nl80211_get_capa(void *priv,
|
|
|
|
struct wpa_driver_capa *capa)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
struct wpa_driver_nl80211_data *drv = priv;
|
|
|
|
|
|
|
|
wpa_printf(MSG_DEBUG, "%s: operstate %d->%d (%s)",
|
|
|
|
__func__, drv->operstate, state, state ? "UP" : "DORMANT");
|
|
|
|
drv->operstate = state;
|
|
|
|
return wpa_driver_nl80211_send_oper_ifla(
|
|
|
|
drv, -1, state ? IF_OPER_UP : IF_OPER_DORMANT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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,
|
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,
|
|
|
|
.init = wpa_driver_nl80211_init,
|
|
|
|
.deinit = wpa_driver_nl80211_deinit,
|
|
|
|
.get_capa = wpa_driver_nl80211_get_capa,
|
|
|
|
.set_operstate = wpa_driver_nl80211_set_operstate,
|
2008-12-09 21:11:14 +01:00
|
|
|
.set_country = wpa_driver_nl80211_set_country,
|
2008-06-06 15:55:42 +02:00
|
|
|
};
|