c2f4d7c6f0005fec6c5278cc7f0369837865fe0b
[openwrt/svn-archive/archive.git] / package / hostapd / patches / 453-ap_sta_support.patch
1 --- a/wpa_supplicant/wpa_supplicant_i.h
2 +++ b/wpa_supplicant/wpa_supplicant_i.h
3 @@ -98,6 +98,8 @@ struct wpa_interface {
4 * receiving of EAPOL frames from an additional interface.
5 */
6 const char *bridge_ifname;
7 +
8 + const char *hostapd_ctrl;
9 };
10
11 /**
12 @@ -316,6 +318,8 @@ struct wpa_supplicant {
13 #endif /* CONFIG_CTRL_IFACE_DBUS_NEW */
14 char bridge_ifname[16];
15
16 + struct wpa_ctrl *hostapd;
17 +
18 char *confname;
19 struct wpa_config *conf;
20 int countermeasures;
21 --- a/wpa_supplicant/Makefile
22 +++ b/wpa_supplicant/Makefile
23 @@ -51,6 +51,11 @@ OBJS_p += ../src/utils/wpa_debug.o
24 OBJS_p += ../src/utils/wpabuf.o
25 OBJS_c = wpa_cli.o ../src/common/wpa_ctrl.o
26
27 +ifdef MULTICALL
28 +OBJS += ../src/common/wpa_ctrl.o
29 +CFLAGS += -DMULTICALL
30 +endif
31 +
32 -include .config
33 -include $(if $(MULTICALL),../hostapd/.config)
34
35 --- a/wpa_supplicant/wpa_supplicant.c
36 +++ b/wpa_supplicant/wpa_supplicant.c
37 @@ -120,6 +120,55 @@ extern int wpa_debug_show_keys;
38 extern int wpa_debug_timestamp;
39 extern struct wpa_driver_ops *wpa_drivers[];
40
41 +#ifdef MULTICALL
42 +static int hostapd_stop(struct wpa_supplicant *wpa_s)
43 +{
44 + const char *cmd = "DOWN";
45 + char buf[256];
46 + int len = sizeof(buf);
47 +
48 + if (wpa_ctrl_request(wpa_s->hostapd, cmd, os_strlen(cmd), buf, &len, NULL) < 0) {
49 + wpa_printf(MSG_ERROR, "\nFailed to stop hostapd AP interfaces\n");
50 + return -1;
51 + }
52 + return 0;
53 +}
54 +
55 +static int hostapd_reload(struct wpa_supplicant *wpa_s, struct wpa_bss *bss)
56 +{
57 + char *cmd = NULL;
58 + char buf[256];
59 + int len = sizeof(buf);
60 + int channel, hw_mode;
61 + int ret;
62 +
63 + if (!bss)
64 + return;
65 +
66 + if (bss->freq < 4000) {
67 + hw_mode = HOSTAPD_MODE_IEEE80211G;
68 + channel = (bss->freq - 2407) / 5;
69 + } else {
70 + hw_mode = HOSTAPD_MODE_IEEE80211A;
71 + channel = (bss->freq - 5000) / 5;
72 + }
73 +
74 + if (asprintf(&cmd, "RELOAD channel=%d sec_chan=0 hw_mode=%d ht_capab_mask=%d ieee80211n=%d",
75 + channel, hw_mode, bss->ht_capab, !!bss->ht_capab) < 0) {
76 + return -1;
77 + }
78 +
79 + ret = wpa_ctrl_request(wpa_s->hostapd, cmd, os_strlen(cmd), buf, &len, NULL);
80 + free(cmd);
81 +
82 + if (ret < 0) {
83 + wpa_printf(MSG_ERROR, "\nFailed to reload hostapd AP interfaces\n");
84 + return -1;
85 + }
86 + return 0;
87 +}
88 +#endif
89 +
90 /* Configure default/group WEP keys for static WEP */
91 int wpa_set_wep_keys(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid)
92 {
93 @@ -548,6 +597,10 @@ void wpa_supplicant_set_state(struct wpa
94 #ifndef IEEE8021X_EAPOL
95 wpa_drv_set_supp_port(wpa_s, 1);
96 #endif
97 +#ifdef MULTICALL
98 + if (wpa_s->hostapd)
99 + hostapd_reload(wpa_s, wpa_s->current_bss);
100 +#endif
101 } else if (state == WPA_DISCONNECTED || state == WPA_ASSOCIATING ||
102 state == WPA_ASSOCIATED) {
103 wpa_s->new_connection = 1;
104 @@ -1957,6 +2010,21 @@ static int wpa_supplicant_init_iface(str
105 os_strlcpy(wpa_s->bridge_ifname, iface->bridge_ifname,
106 sizeof(wpa_s->bridge_ifname));
107 }
108 +#ifdef MULTICALL
109 + if (iface->hostapd_ctrl) {
110 + char *cmd = "DOWN";
111 + char buf[256];
112 + int len = sizeof(buf);
113 +
114 + wpa_s->hostapd = wpa_ctrl_open(iface->hostapd_ctrl);
115 + if (!wpa_s->hostapd) {
116 + wpa_printf(MSG_ERROR, "\nFailed to connect to hostapd\n");
117 + return -1;
118 + }
119 + if (hostapd_stop(wpa_s) < 0)
120 + return -1;
121 + }
122 +#endif
123
124 /* RSNA Supplicant Key Management - INITIALIZE */
125 eapol_sm_notify_portEnabled(wpa_s->eapol, FALSE);
126 --- a/wpa_supplicant/bss.c
127 +++ b/wpa_supplicant/bss.c
128 @@ -17,6 +17,7 @@
129 #include "utils/common.h"
130 #include "utils/eloop.h"
131 #include "common/ieee802_11_defs.h"
132 +#include "common/ieee802_11_common.h"
133 #include "drivers/driver.h"
134 #include "wpa_supplicant_i.h"
135 #include "config.h"
136 @@ -89,6 +90,8 @@ struct wpa_bss * wpa_bss_get(struct wpa_
137
138 static void wpa_bss_copy_res(struct wpa_bss *dst, struct wpa_scan_res *src)
139 {
140 + struct ieee80211_ht_capabilities *capab;
141 + struct ieee802_11_elems elems;
142 os_time_t usec;
143
144 dst->flags = src->flags;
145 @@ -101,6 +104,12 @@ static void wpa_bss_copy_res(struct wpa_
146 dst->level = src->level;
147 dst->tsf = src->tsf;
148
149 + memset(&elems, 0, sizeof(elems));
150 + ieee802_11_parse_elems((u8 *) (src + 1), src->ie_len, &elems, 0);
151 + capab = (struct ieee80211_ht_capabilities *) elems.ht_capabilities;
152 + if (capab)
153 + dst->ht_capab = le_to_host16(capab->ht_capabilities_info);
154 +
155 os_get_time(&dst->last_update);
156 dst->last_update.sec -= src->age / 1000;
157 usec = (src->age % 1000) * 1000;
158 --- a/wpa_supplicant/bss.h
159 +++ b/wpa_supplicant/bss.h
160 @@ -56,6 +56,7 @@ struct wpa_bss {
161 unsigned int flags;
162 u8 bssid[ETH_ALEN];
163 u8 ssid[32];
164 + u16 ht_capab;
165 size_t ssid_len;
166 int freq;
167 u16 beacon_int;
168 --- a/wpa_supplicant/main.c
169 +++ b/wpa_supplicant/main.c
170 @@ -31,7 +31,7 @@ static void usage(void)
171 "usage:\n"
172 " wpa_supplicant [-BddhKLqqstuvW] [-P<pid file>] "
173 "[-g<global ctrl>] \\\n"
174 - " -i<ifname> -c<config file> [-C<ctrl>] [-D<driver>] "
175 + " -i<ifname> -c<config file> [-C<ctrl>] [-D<driver>] [-H<hostapd path>]"
176 "[-p<driver_param>] \\\n"
177 " [-b<br_ifname>] [-f<debug file>] \\\n"
178 " [-o<override driver>] [-O<override ctrl>] \\\n"
179 @@ -67,6 +67,7 @@ static void usage(void)
180 #endif /* CONFIG_DEBUG_SYSLOG */
181 printf(" -t = include timestamp in debug messages\n"
182 " -h = show this help text\n"
183 + " -H = connect to a hostapd instance to manage state changes\n"
184 " -L = show license (GPL and BSD)\n"
185 " -o = override driver parameter for new interfaces\n"
186 " -O = override ctrl_interface parameter for new interfaces\n"
187 @@ -143,7 +144,7 @@ int main(int argc, char *argv[])
188 wpa_supplicant_fd_workaround();
189
190 for (;;) {
191 - c = getopt(argc, argv, "b:Bc:C:D:df:g:hi:KLNo:O:p:P:qstuvW");
192 + c = getopt(argc, argv, "b:Bc:C:D:df:g:hH:i:KLNo:O:p:P:qstuvW");
193 if (c < 0)
194 break;
195 switch (c) {
196 @@ -184,6 +185,9 @@ int main(int argc, char *argv[])
197 usage();
198 exitcode = 0;
199 goto out;
200 + case 'H':
201 + iface->hostapd_ctrl = optarg;
202 + break;
203 case 'i':
204 iface->ifname = optarg;
205 break;