blob: 576c671155453ddd6e19812df92cc7478409deeb [file] [log] [blame]
developer4e0da232022-05-09 13:05:53 +08001--- a/hostapd/Makefile
2+++ b/hostapd/Makefile
3@@ -1,6 +1,7 @@
4 ALL=hostapd hostapd_cli
5 CONFIG_FILE = .config
6
7+-include $(if $(MULTICALL), ../wpa_supplicant/.config)
8 include ../src/build.rules
9
10 ifdef LIBS
11@@ -199,7 +200,8 @@ endif
12
13 ifdef CONFIG_NO_VLAN
14 CFLAGS += -DCONFIG_NO_VLAN
15-else
16+endif
17+ifneq ($(findstring CONFIG_NO_VLAN,$(CFLAGS)), CONFIG_NO_VLAN)
18 OBJS += ../src/ap/vlan_init.o
19 OBJS += ../src/ap/vlan_ifconfig.o
20 OBJS += ../src/ap/vlan.o
developer198585d2022-09-22 17:12:54 +080021@@ -357,10 +359,14 @@ CFLAGS += -DCONFIG_MBO
developer4e0da232022-05-09 13:05:53 +080022 OBJS += ../src/ap/mbo_ap.o
23 endif
24
25+ifndef MULTICALL
26+CFLAGS += -DNO_SUPPLICANT
27+endif
28+
29 include ../src/drivers/drivers.mak
30-OBJS += $(DRV_AP_OBJS)
31-CFLAGS += $(DRV_AP_CFLAGS)
32-LDFLAGS += $(DRV_AP_LDFLAGS)
33+OBJS += $(sort $(DRV_AP_OBJS) $(if $(MULTICALL),$(DRV_WPA_OBJS)))
34+CFLAGS += $(DRV_AP_CFLAGS) $(if $(MULTICALL),$(DRV_WPA_CFLAGS))
35+LDFLAGS += $(DRV_AP_LDFLAGS) $(if $(MULTICALL),$(DRV_WPA_LDFLAGS))
36 LIBS += $(DRV_AP_LIBS)
37
38 ifdef CONFIG_L2_PACKET
developer198585d2022-09-22 17:12:54 +080039@@ -1291,6 +1297,12 @@ install: $(addprefix $(DESTDIR)$(BINDIR)
developer4e0da232022-05-09 13:05:53 +080040 _OBJS_VAR := OBJS
41 include ../src/objs.mk
42
43+hostapd_multi.a: $(BCHECK) $(OBJS)
44+ $(Q)$(CC) -c -o hostapd_multi.o -Dmain=hostapd_main $(CFLAGS) main.c
45+ @$(E) " CC " $<
46+ @rm -f $@
47+ @$(AR) cr $@ hostapd_multi.o $(OBJS)
48+
49 hostapd: $(OBJS)
50 $(Q)$(CC) $(LDFLAGS) -o hostapd $(OBJS) $(LIBS)
51 @$(E) " LD " $@
developer198585d2022-09-22 17:12:54 +080052@@ -1365,6 +1377,12 @@ include ../src/objs.mk
developer4e0da232022-05-09 13:05:53 +080053 _OBJS_VAR := SOBJS
54 include ../src/objs.mk
55
56+dump_cflags:
57+ @printf "%s " "$(CFLAGS)"
58+
59+dump_ldflags:
60+ @printf "%s " "$(LDFLAGS) $(LIBS) $(EXTRALIBS)"
61+
62 nt_password_hash: $(NOBJS)
63 $(Q)$(CC) $(LDFLAGS) -o nt_password_hash $(NOBJS) $(LIBS_n)
64 @$(E) " LD " $@
65--- a/wpa_supplicant/Makefile
66+++ b/wpa_supplicant/Makefile
developer198585d2022-09-22 17:12:54 +080067@@ -10,6 +10,7 @@ ALL += dbus/fi.w1.wpa_supplicant1.servic
developer4e0da232022-05-09 13:05:53 +080068 EXTRA_TARGETS=dynamic_eap_methods
69
70 CONFIG_FILE=.config
71+-include $(if $(MULTICALL),../hostapd/.config)
72 include ../src/build.rules
73
developer198585d2022-09-22 17:12:54 +080074 ifdef CONFIG_BUILD_WPA_CLIENT_SO
75@@ -371,7 +372,9 @@ endif
developer4e0da232022-05-09 13:05:53 +080076 ifdef CONFIG_IBSS_RSN
77 NEED_RSN_AUTHENTICATOR=y
78 CFLAGS += -DCONFIG_IBSS_RSN
79+ifndef MULTICALL
80 CFLAGS += -DCONFIG_NO_VLAN
81+endif
82 OBJS += ibss_rsn.o
83 endif
84
developer198585d2022-09-22 17:12:54 +080085@@ -912,6 +915,10 @@ ifdef CONFIG_DYNAMIC_EAP_METHODS
developer4e0da232022-05-09 13:05:53 +080086 CFLAGS += -DCONFIG_DYNAMIC_EAP_METHODS
87 LIBS += -ldl -rdynamic
88 endif
89+else
90+ ifdef MULTICALL
91+ OBJS += ../src/eap_common/eap_common.o
92+ endif
93 endif
94
95 ifdef CONFIG_AP
developer198585d2022-09-22 17:12:54 +080096@@ -919,9 +926,11 @@ NEED_EAP_COMMON=y
developer4e0da232022-05-09 13:05:53 +080097 NEED_RSN_AUTHENTICATOR=y
98 CFLAGS += -DCONFIG_AP
99 OBJS += ap.o
100+ifndef MULTICALL
101 CFLAGS += -DCONFIG_NO_RADIUS
102 CFLAGS += -DCONFIG_NO_ACCOUNTING
103 CFLAGS += -DCONFIG_NO_VLAN
104+endif
105 OBJS += ../src/ap/hostapd.o
106 OBJS += ../src/ap/wpa_auth_glue.o
107 OBJS += ../src/ap/utils.o
developer198585d2022-09-22 17:12:54 +0800108@@ -1008,6 +1017,12 @@ endif
developer4e0da232022-05-09 13:05:53 +0800109 ifdef CONFIG_HS20
110 OBJS += ../src/ap/hs20.o
111 endif
112+else
113+ ifdef MULTICALL
114+ OBJS += ../src/eap_server/eap_server.o
115+ OBJS += ../src/eap_server/eap_server_identity.o
116+ OBJS += ../src/eap_server/eap_server_methods.o
117+ endif
118 endif
119
120 ifdef CONFIG_MBO
developer198585d2022-09-22 17:12:54 +0800121@@ -1016,7 +1031,9 @@ CFLAGS += -DCONFIG_MBO
developer4e0da232022-05-09 13:05:53 +0800122 endif
123
124 ifdef NEED_RSN_AUTHENTICATOR
125+ifndef MULTICALL
126 CFLAGS += -DCONFIG_NO_RADIUS
127+endif
128 NEED_AES_WRAP=y
129 OBJS += ../src/ap/wpa_auth.o
130 OBJS += ../src/ap/wpa_auth_ie.o
developer198585d2022-09-22 17:12:54 +0800131@@ -1920,6 +1937,12 @@ wpa_priv: $(BCHECK) $(OBJS_priv)
developer4e0da232022-05-09 13:05:53 +0800132
133 _OBJS_VAR := OBJS
134 include ../src/objs.mk
135+wpa_supplicant_multi.a: .config $(BCHECK) $(OBJS) $(EXTRA_progs)
136+ $(Q)$(CC) -c -o wpa_supplicant_multi.o -Dmain=wpa_supplicant_main $(CFLAGS) main.c
137+ @$(E) " CC " $<
138+ @rm -f $@
139+ @$(AR) cr $@ wpa_supplicant_multi.o $(OBJS)
140+
141 wpa_supplicant: $(BCHECK) $(OBJS) $(EXTRA_progs)
142 $(Q)$(LDO) $(LDFLAGS) -o wpa_supplicant $(OBJS) $(LIBS) $(EXTRALIBS)
143 @$(E) " LD " $@
developer198585d2022-09-22 17:12:54 +0800144@@ -2052,6 +2075,12 @@ eap_gpsk.so: $(SRC_EAP_GPSK)
developer4e0da232022-05-09 13:05:53 +0800145 $(Q)sed -e 's|\@BINDIR\@|$(BINDIR)|g' $< >$@
146 @$(E) " sed" $<
147
148+dump_cflags:
149+ @printf "%s " "$(CFLAGS)"
150+
151+dump_ldflags:
152+ @printf "%s " "$(LDFLAGS) $(LIBS) $(EXTRALIBS)"
153+
154 wpa_supplicant.exe: wpa_supplicant
155 mv -f $< $@
156 wpa_cli.exe: wpa_cli
157--- a/src/drivers/driver.h
158+++ b/src/drivers/driver.h
developer198585d2022-09-22 17:12:54 +0800159@@ -6171,8 +6171,8 @@ union wpa_event_data {
developer4e0da232022-05-09 13:05:53 +0800160 * Driver wrapper code should call this function whenever an event is received
161 * from the driver.
162 */
163-void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
164- union wpa_event_data *data);
165+extern void (*wpa_supplicant_event)(void *ctx, enum wpa_event_type event,
166+ union wpa_event_data *data);
167
168 /**
169 * wpa_supplicant_event_global - Report a driver event for wpa_supplicant
developer198585d2022-09-22 17:12:54 +0800170@@ -6184,7 +6184,7 @@ void wpa_supplicant_event(void *ctx, enu
developer4e0da232022-05-09 13:05:53 +0800171 * Same as wpa_supplicant_event(), but we search for the interface in
172 * wpa_global.
173 */
174-void wpa_supplicant_event_global(void *ctx, enum wpa_event_type event,
175+extern void (*wpa_supplicant_event_global)(void *ctx, enum wpa_event_type event,
176 union wpa_event_data *data);
177
178 /*
179--- a/src/ap/drv_callbacks.c
180+++ b/src/ap/drv_callbacks.c
developer198585d2022-09-22 17:12:54 +0800181@@ -1872,8 +1872,8 @@ err:
developer4e0da232022-05-09 13:05:53 +0800182 #endif /* CONFIG_OWE */
183
184
185-void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
186- union wpa_event_data *data)
187+void hostapd_wpa_event(void *ctx, enum wpa_event_type event,
188+ union wpa_event_data *data)
189 {
190 struct hostapd_data *hapd = ctx;
191 #ifndef CONFIG_NO_STDOUT_DEBUG
developer198585d2022-09-22 17:12:54 +0800192@@ -2145,7 +2145,7 @@ void wpa_supplicant_event(void *ctx, enu
developer4e0da232022-05-09 13:05:53 +0800193 }
194
195
196-void wpa_supplicant_event_global(void *ctx, enum wpa_event_type event,
197+void hostapd_wpa_event_global(void *ctx, enum wpa_event_type event,
198 union wpa_event_data *data)
199 {
200 struct hapd_interfaces *interfaces = ctx;
201--- a/wpa_supplicant/wpa_priv.c
202+++ b/wpa_supplicant/wpa_priv.c
203@@ -1038,8 +1038,8 @@ static void wpa_priv_send_ft_response(st
204 }
205
206
207-void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
208- union wpa_event_data *data)
209+static void supplicant_event(void *ctx, enum wpa_event_type event,
210+ union wpa_event_data *data)
211 {
212 struct wpa_priv_interface *iface = ctx;
213
214@@ -1102,7 +1102,7 @@ void wpa_supplicant_event(void *ctx, enu
215 }
216
217
218-void wpa_supplicant_event_global(void *ctx, enum wpa_event_type event,
219+void supplicant_event_global(void *ctx, enum wpa_event_type event,
220 union wpa_event_data *data)
221 {
222 struct wpa_priv_global *global = ctx;
developer198585d2022-09-22 17:12:54 +0800223@@ -1216,6 +1216,8 @@ int main(int argc, char *argv[])
developer4e0da232022-05-09 13:05:53 +0800224 if (os_program_init())
225 return -1;
226
227+ wpa_supplicant_event = supplicant_event;
228+ wpa_supplicant_event_global = supplicant_event_global;
229 wpa_priv_fd_workaround();
230
231 os_memset(&global, 0, sizeof(global));
232--- a/wpa_supplicant/events.c
233+++ b/wpa_supplicant/events.c
developer198585d2022-09-22 17:12:54 +0800234@@ -4953,8 +4953,8 @@ static void wpas_event_unprot_beacon(str
developer4e0da232022-05-09 13:05:53 +0800235 }
236
237
238-void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
239- union wpa_event_data *data)
240+void supplicant_event(void *ctx, enum wpa_event_type event,
241+ union wpa_event_data *data)
242 {
243 struct wpa_supplicant *wpa_s = ctx;
244 int resched;
developer198585d2022-09-22 17:12:54 +0800245@@ -5813,7 +5813,7 @@ void wpa_supplicant_event(void *ctx, enu
developer4e0da232022-05-09 13:05:53 +0800246 }
247
248
249-void wpa_supplicant_event_global(void *ctx, enum wpa_event_type event,
250+void supplicant_event_global(void *ctx, enum wpa_event_type event,
251 union wpa_event_data *data)
252 {
253 struct wpa_supplicant *wpa_s;
254--- a/wpa_supplicant/wpa_supplicant.c
255+++ b/wpa_supplicant/wpa_supplicant.c
developer198585d2022-09-22 17:12:54 +0800256@@ -7087,7 +7087,6 @@ struct wpa_interface * wpa_supplicant_ma
developer4e0da232022-05-09 13:05:53 +0800257 return NULL;
258 }
259
260-
261 /**
262 * wpa_supplicant_match_existing - Match existing interfaces
263 * @global: Pointer to global data from wpa_supplicant_init()
developer198585d2022-09-22 17:12:54 +0800264@@ -7122,6 +7121,11 @@ static int wpa_supplicant_match_existing
developer4e0da232022-05-09 13:05:53 +0800265
266 #endif /* CONFIG_MATCH_IFACE */
267
268+extern void supplicant_event(void *ctx, enum wpa_event_type event,
269+ union wpa_event_data *data);
270+
271+extern void supplicant_event_global(void *ctx, enum wpa_event_type event,
272+ union wpa_event_data *data);
273
274 /**
275 * wpa_supplicant_add_iface - Add a new network interface
developer198585d2022-09-22 17:12:54 +0800276@@ -7378,6 +7382,8 @@ struct wpa_global * wpa_supplicant_init(
developer4e0da232022-05-09 13:05:53 +0800277 #ifndef CONFIG_NO_WPA_MSG
278 wpa_msg_register_ifname_cb(wpa_supplicant_msg_ifname_cb);
279 #endif /* CONFIG_NO_WPA_MSG */
280+ wpa_supplicant_event = supplicant_event;
281+ wpa_supplicant_event_global = supplicant_event_global;
282
283 if (params->wpa_debug_file_path)
284 wpa_debug_open_file(params->wpa_debug_file_path);
285--- a/hostapd/main.c
286+++ b/hostapd/main.c
developer198585d2022-09-22 17:12:54 +0800287@@ -591,6 +591,11 @@ fail:
developer4e0da232022-05-09 13:05:53 +0800288 return -1;
289 }
290
291+void hostapd_wpa_event(void *ctx, enum wpa_event_type event,
292+ union wpa_event_data *data);
293+
294+void hostapd_wpa_event_global(void *ctx, enum wpa_event_type event,
295+ union wpa_event_data *data);
296
297 #ifdef CONFIG_WPS
298 static int gen_uuid(const char *txt_addr)
developer198585d2022-09-22 17:12:54 +0800299@@ -684,6 +689,8 @@ int main(int argc, char *argv[])
developer4e0da232022-05-09 13:05:53 +0800300 return -1;
301 #endif /* CONFIG_DPP */
302
303+ wpa_supplicant_event = hostapd_wpa_event;
304+ wpa_supplicant_event_global = hostapd_wpa_event_global;
305 for (;;) {
developer198585d2022-09-22 17:12:54 +0800306 c = getopt(argc, argv, "b:Bde:f:hi:KP:sSTtu:vg:G:q");
developer4e0da232022-05-09 13:05:53 +0800307 if (c < 0)
308--- a/src/drivers/drivers.c
309+++ b/src/drivers/drivers.c
310@@ -10,6 +10,10 @@
311 #include "utils/common.h"
312 #include "driver.h"
313
314+void (*wpa_supplicant_event)(void *ctx, enum wpa_event_type event,
315+ union wpa_event_data *data);
316+void (*wpa_supplicant_event_global)(void *ctx, enum wpa_event_type event,
317+ union wpa_event_data *data);
318
319 const struct wpa_driver_ops *const wpa_drivers[] =
320 {
321--- a/wpa_supplicant/eapol_test.c
322+++ b/wpa_supplicant/eapol_test.c
developer198585d2022-09-22 17:12:54 +0800323@@ -31,7 +31,12 @@
developer4e0da232022-05-09 13:05:53 +0800324 #include "ctrl_iface.h"
325 #include "pcsc_funcs.h"
326 #include "wpas_glue.h"
327+#include "drivers/driver.h"
328
329+void (*wpa_supplicant_event)(void *ctx, enum wpa_event_type event,
330+ union wpa_event_data *data);
331+void (*wpa_supplicant_event_global)(void *ctx, enum wpa_event_type event,
332+ union wpa_event_data *data);
333
334 const struct wpa_driver_ops *const wpa_drivers[] = { NULL };
335
developer198585d2022-09-22 17:12:54 +0800336@@ -1303,6 +1308,10 @@ static void usage(void)
developer4e0da232022-05-09 13:05:53 +0800337 "option several times.\n");
338 }
339
340+extern void supplicant_event(void *ctx, enum wpa_event_type event,
341+ union wpa_event_data *data);
342+extern void supplicant_event_global(void *ctx, enum wpa_event_type event,
343+ union wpa_event_data *data);
344
345 int main(int argc, char *argv[])
346 {
developer198585d2022-09-22 17:12:54 +0800347@@ -1323,6 +1332,8 @@ int main(int argc, char *argv[])
developer4e0da232022-05-09 13:05:53 +0800348 if (os_program_init())
349 return -1;
350
351+ wpa_supplicant_event = supplicant_event;
352+ wpa_supplicant_event_global = supplicant_event_global;
353 hostapd_logger_register_cb(hostapd_logger_cb);
354
355 os_memset(&eapol_test, 0, sizeof(eapol_test));