123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131 |
- /*
- * hostapd / UNIX domain socket -based control interface
- * Copyright (c) 2004-2010, 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 "utils/includes.h"
-
- #ifndef CONFIG_NATIVE_WINDOWS
-
- #include <sys/un.h>
- #include <sys/stat.h>
- #include <stddef.h>
-
- #include "utils/common.h"
- #include "utils/eloop.h"
- #include "common/version.h"
- #include "common/ieee802_11_defs.h"
- #include "drivers/driver.h"
- #include "radius/radius_client.h"
- #include "ap/hostapd.h"
- #include "ap/ap_config.h"
- #include "ap/ieee802_1x.h"
- #include "ap/wpa_auth.h"
- #include "ap/ieee802_11.h"
- #include "ap/sta_info.h"
- #include "ap/accounting.h"
- #include "ap/wps_hostapd.h"
- #include "ap/ctrl_iface_ap.h"
- #include "ap/ap_drv_ops.h"
- #include "wps/wps_defs.h"
- #include "wps/wps.h"
- #include "ctrl_iface.h"
-
-
- struct wpa_ctrl_dst {
- struct wpa_ctrl_dst *next;
- struct sockaddr_un addr;
- socklen_t addrlen;
- int debug_level;
- int errors;
- };
-
-
- static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
- const char *buf, size_t len);
-
-
- static int hostapd_ctrl_iface_attach(struct hostapd_data *hapd,
- struct sockaddr_un *from,
- socklen_t fromlen)
- {
- struct wpa_ctrl_dst *dst;
-
- dst = os_zalloc(sizeof(*dst));
- if (dst == NULL)
- return -1;
- os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un));
- dst->addrlen = fromlen;
- dst->debug_level = MSG_INFO;
- dst->next = hapd->ctrl_dst;
- hapd->ctrl_dst = dst;
- wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor attached",
- (u8 *) from->sun_path,
- fromlen - offsetof(struct sockaddr_un, sun_path));
- return 0;
- }
-
-
- static int hostapd_ctrl_iface_detach(struct hostapd_data *hapd,
- struct sockaddr_un *from,
- socklen_t fromlen)
- {
- struct wpa_ctrl_dst *dst, *prev = NULL;
-
- dst = hapd->ctrl_dst;
- while (dst) {
- if (fromlen == dst->addrlen &&
- os_memcmp(from->sun_path, dst->addr.sun_path,
- fromlen - offsetof(struct sockaddr_un, sun_path))
- == 0) {
- if (prev == NULL)
- hapd->ctrl_dst = dst->next;
- else
- prev->next = dst->next;
- os_free(dst);
- wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor detached",
- (u8 *) from->sun_path,
- fromlen -
- offsetof(struct sockaddr_un, sun_path));
- return 0;
- }
- prev = dst;
- dst = dst->next;
- }
- return -1;
- }
-
-
- static int hostapd_ctrl_iface_level(struct hostapd_data *hapd,
- struct sockaddr_un *from,
- socklen_t fromlen,
- char *level)
- {
- struct wpa_ctrl_dst *dst;
-
- wpa_printf(MSG_DEBUG, "CTRL_IFACE LEVEL %s", level);
-
- dst = hapd->ctrl_dst;
- while (dst) {
- if (fromlen == dst->addrlen &&
- os_memcmp(from->sun_path, dst->addr.sun_path,
- fromlen - offsetof(struct sockaddr_un, sun_path))
- == 0) {
- wpa_hexdump(MSG_DEBUG, "CTRL_IFACE changed monitor "
- "level", (u8 *) from->sun_path, fromlen -
- offsetof(struct sockaddr_un, sun_path));
- dst->debug_level = atoi(level);
- return 0;
- }
- dst = dst->next;
- }
-
- return -1;
- }
-
-
- static int hostapd_ctrl_iface_new_sta(struct hostapd_data *hapd,
- const char *txtaddr)
- {
- u8 addr[ETH_ALEN];
- struct sta_info *sta;
-
- wpa_printf(MSG_DEBUG, "CTRL_IFACE NEW_STA %s", txtaddr);
-
- if (hwaddr_aton(txtaddr, addr))
- return -1;
-
- sta = ap_get_sta(hapd, addr);
- if (sta)
- return 0;
-
- wpa_printf(MSG_DEBUG, "Add new STA " MACSTR " based on ctrl_iface "
- "notification", MAC2STR(addr));
- sta = ap_sta_add(hapd, addr);
- if (sta == NULL)
- return -1;
-
- hostapd_new_assoc_sta(hapd, sta, 0);
- return 0;
- }
-
-
- #ifdef CONFIG_P2P_MANAGER
- static int p2p_manager_disconnect(struct hostapd_data *hapd, u16 stype,
- u8 minor_reason_code, const u8 *addr)
- {
- struct ieee80211_mgmt *mgmt;
- int ret;
- u8 *pos;
-
- if (hapd->driver->send_frame == NULL)
- return -1;
-
- mgmt = os_zalloc(sizeof(*mgmt) + 100);
- if (mgmt == NULL)
- return -1;
-
- wpa_printf(MSG_DEBUG, "P2P: Disconnect STA " MACSTR " with minor "
- "reason code %u (stype=%u)",
- MAC2STR(addr), minor_reason_code, stype);
-
- mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT, stype);
- os_memcpy(mgmt->da, addr, ETH_ALEN);
- os_memcpy(mgmt->sa, hapd->own_addr, ETH_ALEN);
- os_memcpy(mgmt->bssid, hapd->own_addr, ETH_ALEN);
- if (stype == WLAN_FC_STYPE_DEAUTH) {
- mgmt->u.deauth.reason_code =
- host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
- pos = (u8 *) (&mgmt->u.deauth.reason_code + 1);
- } else {
- mgmt->u.disassoc.reason_code =
- host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
- pos = (u8 *) (&mgmt->u.disassoc.reason_code + 1);
- }
-
- *pos++ = WLAN_EID_VENDOR_SPECIFIC;
- *pos++ = 4 + 3 + 1;
- WPA_PUT_BE24(pos, OUI_WFA);
- pos += 3;
- *pos++ = P2P_OUI_TYPE;
-
- *pos++ = P2P_ATTR_MINOR_REASON_CODE;
- WPA_PUT_LE16(pos, 1);
- pos += 2;
- *pos++ = minor_reason_code;
-
- ret = hapd->driver->send_frame(hapd->drv_priv, (u8 *) mgmt,
- pos - (u8 *) mgmt, 1);
- os_free(mgmt);
-
- return ret < 0 ? -1 : 0;
- }
- #endif /* CONFIG_P2P_MANAGER */
-
-
- static int hostapd_ctrl_iface_deauthenticate(struct hostapd_data *hapd,
- const char *txtaddr)
- {
- u8 addr[ETH_ALEN];
- struct sta_info *sta;
- const char *pos;
-
- wpa_printf(MSG_DEBUG, "CTRL_IFACE DEAUTHENTICATE %s", txtaddr);
-
- if (hwaddr_aton(txtaddr, addr))
- return -1;
-
- pos = os_strstr(txtaddr, " test=");
- if (pos) {
- struct ieee80211_mgmt mgmt;
- int encrypt;
- if (hapd->driver->send_frame == NULL)
- return -1;
- pos += 6;
- encrypt = atoi(pos);
- os_memset(&mgmt, 0, sizeof(mgmt));
- mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
- WLAN_FC_STYPE_DEAUTH);
- os_memcpy(mgmt.da, addr, ETH_ALEN);
- os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
- os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
- mgmt.u.deauth.reason_code =
- host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
- if (hapd->driver->send_frame(hapd->drv_priv, (u8 *) &mgmt,
- IEEE80211_HDRLEN +
- sizeof(mgmt.u.deauth),
- encrypt) < 0)
- return -1;
- return 0;
- }
-
- #ifdef CONFIG_P2P_MANAGER
- pos = os_strstr(txtaddr, " p2p=");
- if (pos) {
- return p2p_manager_disconnect(hapd, WLAN_FC_STYPE_DEAUTH,
- atoi(pos + 5), addr);
- }
- #endif /* CONFIG_P2P_MANAGER */
-
- hostapd_drv_sta_deauth(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
- sta = ap_get_sta(hapd, addr);
- if (sta)
- ap_sta_deauthenticate(hapd, sta,
- WLAN_REASON_PREV_AUTH_NOT_VALID);
- else if (addr[0] == 0xff)
- hostapd_free_stas(hapd);
-
- return 0;
- }
-
-
- static int hostapd_ctrl_iface_disassociate(struct hostapd_data *hapd,
- const char *txtaddr)
- {
- u8 addr[ETH_ALEN];
- struct sta_info *sta;
- const char *pos;
-
- wpa_printf(MSG_DEBUG, "CTRL_IFACE DISASSOCIATE %s", txtaddr);
-
- if (hwaddr_aton(txtaddr, addr))
- return -1;
-
- pos = os_strstr(txtaddr, " test=");
- if (pos) {
- struct ieee80211_mgmt mgmt;
- int encrypt;
- if (hapd->driver->send_frame == NULL)
- return -1;
- pos += 6;
- encrypt = atoi(pos);
- os_memset(&mgmt, 0, sizeof(mgmt));
- mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
- WLAN_FC_STYPE_DISASSOC);
- os_memcpy(mgmt.da, addr, ETH_ALEN);
- os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
- os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
- mgmt.u.disassoc.reason_code =
- host_to_le16(WLAN_REASON_PREV_AUTH_NOT_VALID);
- if (hapd->driver->send_frame(hapd->drv_priv, (u8 *) &mgmt,
- IEEE80211_HDRLEN +
- sizeof(mgmt.u.deauth),
- encrypt) < 0)
- return -1;
- return 0;
- }
-
- #ifdef CONFIG_P2P_MANAGER
- pos = os_strstr(txtaddr, " p2p=");
- if (pos) {
- return p2p_manager_disconnect(hapd, WLAN_FC_STYPE_DISASSOC,
- atoi(pos + 5), addr);
- }
- #endif /* CONFIG_P2P_MANAGER */
-
- hostapd_drv_sta_disassoc(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
- sta = ap_get_sta(hapd, addr);
- if (sta)
- ap_sta_disassociate(hapd, sta,
- WLAN_REASON_PREV_AUTH_NOT_VALID);
- else if (addr[0] == 0xff)
- hostapd_free_stas(hapd);
-
- return 0;
- }
-
-
- #ifdef CONFIG_IEEE80211W
- #ifdef NEED_AP_MLME
- static int hostapd_ctrl_iface_sa_query(struct hostapd_data *hapd,
- const char *txtaddr)
- {
- u8 addr[ETH_ALEN];
- u8 trans_id[WLAN_SA_QUERY_TR_ID_LEN];
-
- wpa_printf(MSG_DEBUG, "CTRL_IFACE SA_QUERY %s", txtaddr);
-
- if (hwaddr_aton(txtaddr, addr) ||
- os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0)
- return -1;
-
- ieee802_11_send_sa_query_req(hapd, addr, trans_id);
-
- return 0;
- }
- #endif /* NEED_AP_MLME */
- #endif /* CONFIG_IEEE80211W */
-
-
- #ifdef CONFIG_WPS
- static int hostapd_ctrl_iface_wps_pin(struct hostapd_data *hapd, char *txt)
- {
- char *pin = os_strchr(txt, ' ');
- char *timeout_txt;
- int timeout;
- u8 addr_buf[ETH_ALEN], *addr = NULL;
- char *pos;
-
- if (pin == NULL)
- return -1;
- *pin++ = '\0';
-
- timeout_txt = os_strchr(pin, ' ');
- if (timeout_txt) {
- *timeout_txt++ = '\0';
- timeout = atoi(timeout_txt);
- pos = os_strchr(timeout_txt, ' ');
- if (pos) {
- *pos++ = '\0';
- if (hwaddr_aton(pos, addr_buf) == 0)
- addr = addr_buf;
- }
- } else
- timeout = 0;
-
- return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
- }
-
-
- static int hostapd_ctrl_iface_wps_check_pin(
- struct hostapd_data *hapd, char *cmd, char *buf, size_t buflen)
- {
- char pin[9];
- size_t len;
- char *pos;
- int ret;
-
- wpa_hexdump_ascii_key(MSG_DEBUG, "WPS_CHECK_PIN",
- (u8 *) cmd, os_strlen(cmd));
- for (pos = cmd, len = 0; *pos != '\0'; pos++) {
- if (*pos < '0' || *pos > '9')
- continue;
- pin[len++] = *pos;
- if (len == 9) {
- wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
- return -1;
- }
- }
- if (len != 4 && len != 8) {
- wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
- return -1;
- }
- pin[len] = '\0';
-
- if (len == 8) {
- unsigned int pin_val;
- pin_val = atoi(pin);
- if (!wps_pin_valid(pin_val)) {
- wpa_printf(MSG_DEBUG, "WPS: Invalid checksum digit");
- ret = os_snprintf(buf, buflen, "FAIL-CHECKSUM\n");
- if (ret < 0 || (size_t) ret >= buflen)
- return -1;
- return ret;
- }
- }
-
- ret = os_snprintf(buf, buflen, "%s", pin);
- if (ret < 0 || (size_t) ret >= buflen)
- return -1;
-
- return ret;
- }
-
-
- #ifdef CONFIG_WPS_OOB
- static int hostapd_ctrl_iface_wps_oob(struct hostapd_data *hapd, char *txt)
- {
- char *path, *method, *name;
-
- path = os_strchr(txt, ' ');
- if (path == NULL)
- return -1;
- *path++ = '\0';
-
- method = os_strchr(path, ' ');
- if (method == NULL)
- return -1;
- *method++ = '\0';
-
- name = os_strchr(method, ' ');
- if (name != NULL)
- *name++ = '\0';
-
- return hostapd_wps_start_oob(hapd, txt, path, method, name);
- }
- #endif /* CONFIG_WPS_OOB */
-
-
- static int hostapd_ctrl_iface_wps_ap_pin(struct hostapd_data *hapd, char *txt,
- char *buf, size_t buflen)
- {
- int timeout = 300;
- char *pos;
- const char *pin_txt;
-
- pos = os_strchr(txt, ' ');
- if (pos)
- *pos++ = '\0';
-
- if (os_strcmp(txt, "disable") == 0) {
- hostapd_wps_ap_pin_disable(hapd);
- return os_snprintf(buf, buflen, "OK\n");
- }
-
- if (os_strcmp(txt, "random") == 0) {
- if (pos)
- timeout = atoi(pos);
- pin_txt = hostapd_wps_ap_pin_random(hapd, timeout);
- if (pin_txt == NULL)
- return -1;
- return os_snprintf(buf, buflen, "%s", pin_txt);
- }
-
- if (os_strcmp(txt, "get") == 0) {
- pin_txt = hostapd_wps_ap_pin_get(hapd);
- if (pin_txt == NULL)
- return -1;
- return os_snprintf(buf, buflen, "%s", pin_txt);
- }
-
- if (os_strcmp(txt, "set") == 0) {
- char *pin;
- if (pos == NULL)
- return -1;
- pin = pos;
- pos = os_strchr(pos, ' ');
- if (pos) {
- *pos++ = '\0';
- timeout = atoi(pos);
- }
- if (os_strlen(pin) > buflen)
- return -1;
- if (hostapd_wps_ap_pin_set(hapd, pin, timeout) < 0)
- return -1;
- return os_snprintf(buf, buflen, "%s", pin);
- }
-
- return -1;
- }
-
-
- static int hostapd_ctrl_iface_wps_config(struct hostapd_data *hapd, char *txt)
- {
- char *pos;
- char *ssid, *auth, *encr = NULL, *key = NULL;
-
- ssid = txt;
- pos = os_strchr(txt, ' ');
- if (!pos)
- return -1;
- *pos++ = '\0';
-
- auth = pos;
- pos = os_strchr(pos, ' ');
- if (pos) {
- *pos++ = '\0';
- encr = pos;
- pos = os_strchr(pos, ' ');
- if (pos) {
- *pos++ = '\0';
- key = pos;
- }
- }
-
- return hostapd_wps_config_ap(hapd, ssid, auth, encr, key);
- }
- #endif /* CONFIG_WPS */
-
-
- static int hostapd_ctrl_iface_get_config(struct hostapd_data *hapd,
- char *buf, size_t buflen)
- {
- int ret;
- char *pos, *end;
-
- pos = buf;
- end = buf + buflen;
-
- ret = os_snprintf(pos, end - pos, "bssid=" MACSTR "\n"
- "ssid=%s\n",
- MAC2STR(hapd->own_addr),
- hapd->conf->ssid.ssid);
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
-
- #ifdef CONFIG_WPS
- ret = os_snprintf(pos, end - pos, "wps_state=%s\n",
- hapd->conf->wps_state == 0 ? "disabled" :
- (hapd->conf->wps_state == 1 ? "not configured" :
- "configured"));
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
-
- if (hapd->conf->wps_state && hapd->conf->wpa &&
- hapd->conf->ssid.wpa_passphrase) {
- ret = os_snprintf(pos, end - pos, "passphrase=%s\n",
- hapd->conf->ssid.wpa_passphrase);
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
-
- if (hapd->conf->wps_state && hapd->conf->wpa &&
- hapd->conf->ssid.wpa_psk &&
- hapd->conf->ssid.wpa_psk->group) {
- char hex[PMK_LEN * 2 + 1];
- wpa_snprintf_hex(hex, sizeof(hex),
- hapd->conf->ssid.wpa_psk->psk, PMK_LEN);
- ret = os_snprintf(pos, end - pos, "psk=%s\n", hex);
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
- #endif /* CONFIG_WPS */
-
- if (hapd->conf->wpa && hapd->conf->wpa_key_mgmt) {
- ret = os_snprintf(pos, end - pos, "key_mgmt=");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
-
- if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK) {
- ret = os_snprintf(pos, end - pos, "WPA-PSK ");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
- if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
- ret = os_snprintf(pos, end - pos, "WPA-EAP ");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
- #ifdef CONFIG_IEEE80211R
- if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_PSK) {
- ret = os_snprintf(pos, end - pos, "FT-PSK ");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
- if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
- ret = os_snprintf(pos, end - pos, "FT-EAP ");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
- #endif /* CONFIG_IEEE80211R */
- #ifdef CONFIG_IEEE80211W
- if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
- ret = os_snprintf(pos, end - pos, "WPA-PSK-SHA256 ");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
- if (hapd->conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
- ret = os_snprintf(pos, end - pos, "WPA-EAP-SHA256 ");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
- #endif /* CONFIG_IEEE80211W */
-
- ret = os_snprintf(pos, end - pos, "\n");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
-
- if (hapd->conf->wpa && hapd->conf->wpa_group == WPA_CIPHER_CCMP) {
- ret = os_snprintf(pos, end - pos, "group_cipher=CCMP\n");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- } else if (hapd->conf->wpa &&
- hapd->conf->wpa_group == WPA_CIPHER_TKIP) {
- ret = os_snprintf(pos, end - pos, "group_cipher=TKIP\n");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
-
- if ((hapd->conf->wpa & WPA_PROTO_RSN) && hapd->conf->rsn_pairwise) {
- ret = os_snprintf(pos, end - pos, "rsn_pairwise_cipher=");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
-
- if (hapd->conf->rsn_pairwise & WPA_CIPHER_CCMP) {
- ret = os_snprintf(pos, end - pos, "CCMP ");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
- if (hapd->conf->rsn_pairwise & WPA_CIPHER_TKIP) {
- ret = os_snprintf(pos, end - pos, "TKIP ");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
-
- ret = os_snprintf(pos, end - pos, "\n");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
-
- if ((hapd->conf->wpa & WPA_PROTO_WPA) && hapd->conf->wpa_pairwise) {
- ret = os_snprintf(pos, end - pos, "wpa_pairwise_cipher=");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
-
- if (hapd->conf->wpa_pairwise & WPA_CIPHER_CCMP) {
- ret = os_snprintf(pos, end - pos, "CCMP ");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
- if (hapd->conf->wpa_pairwise & WPA_CIPHER_TKIP) {
- ret = os_snprintf(pos, end - pos, "TKIP ");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
-
- ret = os_snprintf(pos, end - pos, "\n");
- if (ret < 0 || ret >= end - pos)
- return pos - buf;
- pos += ret;
- }
-
- return pos - buf;
- }
-
-
- static int hostapd_ctrl_iface_set(struct hostapd_data *hapd, char *cmd)
- {
- char *value;
- int ret = 0;
-
- value = os_strchr(cmd, ' ');
- if (value == NULL)
- return -1;
- *value++ = '\0';
-
- wpa_printf(MSG_DEBUG, "CTRL_IFACE SET '%s'='%s'", cmd, value);
- if (0) {
- #ifdef CONFIG_WPS_TESTING
- } else if (os_strcasecmp(cmd, "wps_version_number") == 0) {
- long int val;
- val = strtol(value, NULL, 0);
- if (val < 0 || val > 0xff) {
- ret = -1;
- wpa_printf(MSG_DEBUG, "WPS: Invalid "
- "wps_version_number %ld", val);
- } else {
- wps_version_number = val;
- wpa_printf(MSG_DEBUG, "WPS: Testing - force WPS "
- "version %u.%u",
- (wps_version_number & 0xf0) >> 4,
- wps_version_number & 0x0f);
- hostapd_wps_update_ie(hapd);
- }
- } else if (os_strcasecmp(cmd, "wps_testing_dummy_cred") == 0) {
- wps_testing_dummy_cred = atoi(value);
- wpa_printf(MSG_DEBUG, "WPS: Testing - dummy_cred=%d",
- wps_testing_dummy_cred);
- #endif /* CONFIG_WPS_TESTING */
- } else {
- ret = -1;
- }
-
- return ret;
- }
-
-
- static int hostapd_ctrl_iface_get(struct hostapd_data *hapd, char *cmd,
- char *buf, size_t buflen)
- {
- int res;
-
- wpa_printf(MSG_DEBUG, "CTRL_IFACE GET '%s'", cmd);
-
- if (os_strcmp(cmd, "version") == 0) {
- res = os_snprintf(buf, buflen, "%s", VERSION_STR);
- if (res < 0 || (unsigned int) res >= buflen)
- return -1;
- return res;
- }
-
- return -1;
- }
-
-
- static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
- void *sock_ctx)
- {
- struct hostapd_data *hapd = eloop_ctx;
- char buf[256];
- int res;
- struct sockaddr_un from;
- socklen_t fromlen = sizeof(from);
- char *reply;
- const int reply_size = 4096;
- int reply_len;
- int level = MSG_DEBUG;
-
- res = recvfrom(sock, buf, sizeof(buf) - 1, 0,
- (struct sockaddr *) &from, &fromlen);
- if (res < 0) {
- perror("recvfrom(ctrl_iface)");
- return;
- }
- buf[res] = '\0';
- if (os_strcmp(buf, "PING") == 0)
- level = MSG_EXCESSIVE;
- wpa_hexdump_ascii(level, "RX ctrl_iface", (u8 *) buf, res);
-
- reply = os_malloc(reply_size);
- if (reply == NULL) {
- sendto(sock, "FAIL\n", 5, 0, (struct sockaddr *) &from,
- fromlen);
- return;
- }
-
- os_memcpy(reply, "OK\n", 3);
- reply_len = 3;
-
- if (os_strcmp(buf, "PING") == 0) {
- os_memcpy(reply, "PONG\n", 5);
- reply_len = 5;
- } else if (os_strncmp(buf, "RELOG", 5) == 0) {
- if (wpa_debug_reopen_file() < 0)
- reply_len = -1;
- } else if (os_strcmp(buf, "MIB") == 0) {
- reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
- if (reply_len >= 0) {
- res = wpa_get_mib(hapd->wpa_auth, reply + reply_len,
- reply_size - reply_len);
- if (res < 0)
- reply_len = -1;
- else
- reply_len += res;
- }
- if (reply_len >= 0) {
- res = ieee802_1x_get_mib(hapd, reply + reply_len,
- reply_size - reply_len);
- if (res < 0)
- reply_len = -1;
- else
- reply_len += res;
- }
- #ifndef CONFIG_NO_RADIUS
- if (reply_len >= 0) {
- res = radius_client_get_mib(hapd->radius,
- reply + reply_len,
- reply_size - reply_len);
- if (res < 0)
- reply_len = -1;
- else
- reply_len += res;
- }
- #endif /* CONFIG_NO_RADIUS */
- } else if (os_strcmp(buf, "STA-FIRST") == 0) {
- reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,
- reply_size);
- } else if (os_strncmp(buf, "STA ", 4) == 0) {
- reply_len = hostapd_ctrl_iface_sta(hapd, buf + 4, reply,
- reply_size);
- } else if (os_strncmp(buf, "STA-NEXT ", 9) == 0) {
- reply_len = hostapd_ctrl_iface_sta_next(hapd, buf + 9, reply,
- reply_size);
- } else if (os_strcmp(buf, "ATTACH") == 0) {
- if (hostapd_ctrl_iface_attach(hapd, &from, fromlen))
- reply_len = -1;
- } else if (os_strcmp(buf, "DETACH") == 0) {
- if (hostapd_ctrl_iface_detach(hapd, &from, fromlen))
- reply_len = -1;
- } else if (os_strncmp(buf, "LEVEL ", 6) == 0) {
- if (hostapd_ctrl_iface_level(hapd, &from, fromlen,
- buf + 6))
- reply_len = -1;
- } else if (os_strncmp(buf, "NEW_STA ", 8) == 0) {
- if (hostapd_ctrl_iface_new_sta(hapd, buf + 8))
- reply_len = -1;
- } else if (os_strncmp(buf, "DEAUTHENTICATE ", 15) == 0) {
- if (hostapd_ctrl_iface_deauthenticate(hapd, buf + 15))
- reply_len = -1;
- } else if (os_strncmp(buf, "DISASSOCIATE ", 13) == 0) {
- if (hostapd_ctrl_iface_disassociate(hapd, buf + 13))
- reply_len = -1;
- #ifdef CONFIG_IEEE80211W
- #ifdef NEED_AP_MLME
- } else if (os_strncmp(buf, "SA_QUERY ", 9) == 0) {
- if (hostapd_ctrl_iface_sa_query(hapd, buf + 9))
- reply_len = -1;
- #endif /* NEED_AP_MLME */
- #endif /* CONFIG_IEEE80211W */
- #ifdef CONFIG_WPS
- } else if (os_strncmp(buf, "WPS_PIN ", 8) == 0) {
- if (hostapd_ctrl_iface_wps_pin(hapd, buf + 8))
- reply_len = -1;
- } else if (os_strncmp(buf, "WPS_CHECK_PIN ", 14) == 0) {
- reply_len = hostapd_ctrl_iface_wps_check_pin(
- hapd, buf + 14, reply, reply_size);
- } else if (os_strcmp(buf, "WPS_PBC") == 0) {
- if (hostapd_wps_button_pushed(hapd, NULL))
- reply_len = -1;
- #ifdef CONFIG_WPS_OOB
- } else if (os_strncmp(buf, "WPS_OOB ", 8) == 0) {
- if (hostapd_ctrl_iface_wps_oob(hapd, buf + 8))
- reply_len = -1;
- #endif /* CONFIG_WPS_OOB */
- } else if (os_strncmp(buf, "WPS_AP_PIN ", 11) == 0) {
- reply_len = hostapd_ctrl_iface_wps_ap_pin(hapd, buf + 11,
- reply, reply_size);
- } else if (os_strncmp(buf, "WPS_CONFIG ", 11) == 0) {
- if (hostapd_ctrl_iface_wps_config(hapd, buf + 11) < 0)
- reply_len = -1;
- #endif /* CONFIG_WPS */
- } else if (os_strcmp(buf, "GET_CONFIG") == 0) {
- reply_len = hostapd_ctrl_iface_get_config(hapd, reply,
- reply_size);
- } else if (os_strncmp(buf, "SET ", 4) == 0) {
- if (hostapd_ctrl_iface_set(hapd, buf + 4))
- reply_len = -1;
- } else if (os_strncmp(buf, "GET ", 4) == 0) {
- reply_len = hostapd_ctrl_iface_get(hapd, buf + 4, reply,
- reply_size);
- } else {
- os_memcpy(reply, "UNKNOWN COMMAND\n", 16);
- reply_len = 16;
- }
-
- if (reply_len < 0) {
- os_memcpy(reply, "FAIL\n", 5);
- reply_len = 5;
- }
- sendto(sock, reply, reply_len, 0, (struct sockaddr *) &from, fromlen);
- os_free(reply);
- }
-
-
- static char * hostapd_ctrl_iface_path(struct hostapd_data *hapd)
- {
- char *buf;
- size_t len;
-
- if (hapd->conf->ctrl_interface == NULL)
- return NULL;
-
- len = os_strlen(hapd->conf->ctrl_interface) +
- os_strlen(hapd->conf->iface) + 2;
- buf = os_malloc(len);
- if (buf == NULL)
- return NULL;
-
- os_snprintf(buf, len, "%s/%s",
- hapd->conf->ctrl_interface, hapd->conf->iface);
- buf[len - 1] = '\0';
- return buf;
- }
-
-
- static void hostapd_ctrl_iface_msg_cb(void *ctx, int level,
- const char *txt, size_t len)
- {
- struct hostapd_data *hapd = ctx;
- if (hapd == NULL)
- return;
- hostapd_ctrl_iface_send(hapd, level, txt, len);
- }
-
-
- int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
- {
- struct sockaddr_un addr;
- int s = -1;
- char *fname = NULL;
-
- hapd->ctrl_sock = -1;
-
- if (hapd->conf->ctrl_interface == NULL)
- return 0;
-
- if (mkdir(hapd->conf->ctrl_interface, S_IRWXU | S_IRWXG) < 0) {
- if (errno == EEXIST) {
- wpa_printf(MSG_DEBUG, "Using existing control "
- "interface directory.");
- } else {
- perror("mkdir[ctrl_interface]");
- goto fail;
- }
- }
-
- if (hapd->conf->ctrl_interface_gid_set &&
- chown(hapd->conf->ctrl_interface, 0,
- hapd->conf->ctrl_interface_gid) < 0) {
- perror("chown[ctrl_interface]");
- return -1;
- }
-
- if (os_strlen(hapd->conf->ctrl_interface) + 1 +
- os_strlen(hapd->conf->iface) >= sizeof(addr.sun_path))
- goto fail;
-
- s = socket(PF_UNIX, SOCK_DGRAM, 0);
- if (s < 0) {
- perror("socket(PF_UNIX)");
- goto fail;
- }
-
- os_memset(&addr, 0, sizeof(addr));
- #ifdef __FreeBSD__
- addr.sun_len = sizeof(addr);
- #endif /* __FreeBSD__ */
- addr.sun_family = AF_UNIX;
- fname = hostapd_ctrl_iface_path(hapd);
- if (fname == NULL)
- goto fail;
- os_strlcpy(addr.sun_path, fname, sizeof(addr.sun_path));
- if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
- wpa_printf(MSG_DEBUG, "ctrl_iface bind(PF_UNIX) failed: %s",
- strerror(errno));
- if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
- wpa_printf(MSG_DEBUG, "ctrl_iface exists, but does not"
- " allow connections - assuming it was left"
- "over from forced program termination");
- if (unlink(fname) < 0) {
- perror("unlink[ctrl_iface]");
- wpa_printf(MSG_ERROR, "Could not unlink "
- "existing ctrl_iface socket '%s'",
- fname);
- goto fail;
- }
- if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) <
- 0) {
- perror("bind(PF_UNIX)");
- goto fail;
- }
- wpa_printf(MSG_DEBUG, "Successfully replaced leftover "
- "ctrl_iface socket '%s'", fname);
- } else {
- wpa_printf(MSG_INFO, "ctrl_iface exists and seems to "
- "be in use - cannot override it");
- wpa_printf(MSG_INFO, "Delete '%s' manually if it is "
- "not used anymore", fname);
- os_free(fname);
- fname = NULL;
- goto fail;
- }
- }
-
- if (hapd->conf->ctrl_interface_gid_set &&
- chown(fname, 0, hapd->conf->ctrl_interface_gid) < 0) {
- perror("chown[ctrl_interface/ifname]");
- goto fail;
- }
-
- if (chmod(fname, S_IRWXU | S_IRWXG) < 0) {
- perror("chmod[ctrl_interface/ifname]");
- goto fail;
- }
- os_free(fname);
-
- hapd->ctrl_sock = s;
- eloop_register_read_sock(s, hostapd_ctrl_iface_receive, hapd,
- NULL);
- hapd->msg_ctx = hapd;
- wpa_msg_register_cb(hostapd_ctrl_iface_msg_cb);
-
- return 0;
-
- fail:
- if (s >= 0)
- close(s);
- if (fname) {
- unlink(fname);
- os_free(fname);
- }
- return -1;
- }
-
-
- void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd)
- {
- struct wpa_ctrl_dst *dst, *prev;
-
- if (hapd->ctrl_sock > -1) {
- char *fname;
- eloop_unregister_read_sock(hapd->ctrl_sock);
- close(hapd->ctrl_sock);
- hapd->ctrl_sock = -1;
- fname = hostapd_ctrl_iface_path(hapd);
- if (fname)
- unlink(fname);
- os_free(fname);
-
- if (hapd->conf->ctrl_interface &&
- rmdir(hapd->conf->ctrl_interface) < 0) {
- if (errno == ENOTEMPTY) {
- wpa_printf(MSG_DEBUG, "Control interface "
- "directory not empty - leaving it "
- "behind");
- } else {
- perror("rmdir[ctrl_interface]");
- }
- }
- }
-
- dst = hapd->ctrl_dst;
- while (dst) {
- prev = dst;
- dst = dst->next;
- os_free(prev);
- }
- }
-
-
- static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
- const char *buf, size_t len)
- {
- struct wpa_ctrl_dst *dst, *next;
- struct msghdr msg;
- int idx;
- struct iovec io[2];
- char levelstr[10];
-
- dst = hapd->ctrl_dst;
- if (hapd->ctrl_sock < 0 || dst == NULL)
- return;
-
- os_snprintf(levelstr, sizeof(levelstr), "<%d>", level);
- io[0].iov_base = levelstr;
- io[0].iov_len = os_strlen(levelstr);
- io[1].iov_base = (char *) buf;
- io[1].iov_len = len;
- os_memset(&msg, 0, sizeof(msg));
- msg.msg_iov = io;
- msg.msg_iovlen = 2;
-
- idx = 0;
- while (dst) {
- next = dst->next;
- if (level >= dst->debug_level) {
- wpa_hexdump(MSG_DEBUG, "CTRL_IFACE monitor send",
- (u8 *) dst->addr.sun_path, dst->addrlen -
- offsetof(struct sockaddr_un, sun_path));
- msg.msg_name = &dst->addr;
- msg.msg_namelen = dst->addrlen;
- if (sendmsg(hapd->ctrl_sock, &msg, 0) < 0) {
- int _errno = errno;
- wpa_printf(MSG_INFO, "CTRL_IFACE monitor[%d]: "
- "%d - %s",
- idx, errno, strerror(errno));
- dst->errors++;
- if (dst->errors > 10 || _errno == ENOENT) {
- hostapd_ctrl_iface_detach(
- hapd, &dst->addr,
- dst->addrlen);
- }
- } else
- dst->errors = 0;
- }
- idx++;
- dst = next;
- }
- }
-
- #endif /* CONFIG_NATIVE_WINDOWS */
|