Disable functionality in hostapd_deauth_all_stas for hostap driver only
[libeap.git] / hostapd / Makefile
1 ifndef CC
2 CC=gcc
3 endif
4
5 ifndef CFLAGS
6 CFLAGS = -MMD -O2 -Wall -g
7 endif
8
9 # define HOSTAPD_DUMP_STATE to include SIGUSR1 handler for dumping state to
10 # a file (undefine it, if you want to save in binary size)
11 CFLAGS += -DHOSTAPD_DUMP_STATE
12
13 CFLAGS += -I../src
14 CFLAGS += -I../src/crypto
15 CFLAGS += -I../src/utils
16 CFLAGS += -I../src/common
17
18 # Uncomment following line and set the path to your kernel tree include
19 # directory if your C library does not include all header files.
20 # CFLAGS += -DUSE_KERNEL_HEADERS -I/usr/src/linux/include
21
22 -include .config
23
24 ifndef CONFIG_OS
25 ifdef CONFIG_NATIVE_WINDOWS
26 CONFIG_OS=win32
27 else
28 CONFIG_OS=unix
29 endif
30 endif
31
32 ifeq ($(CONFIG_OS), internal)
33 CFLAGS += -DOS_NO_C_LIB_DEFINES
34 endif
35
36 ifdef CONFIG_NATIVE_WINDOWS
37 CFLAGS += -DCONFIG_NATIVE_WINDOWS
38 LIBS += -lws2_32
39 endif
40
41 OBJS =  hostapd.o ieee802_1x.o eapol_sm.o \
42         ieee802_11.o config.o ieee802_11_auth.o accounting.o \
43         sta_info.o wpa.o ctrl_iface.o \
44         drivers.o preauth.o pmksa_cache.o beacon.o \
45         hw_features.o wme.o ap_list.o reconfig.o \
46         mlme.o vlan_init.o ieee802_11h.o wpa_auth_ie.o
47
48 OBJS += ../src/utils/eloop.o
49 OBJS += ../src/utils/common.o
50 OBJS += ../src/utils/wpa_debug.o
51 OBJS += ../src/utils/wpabuf.o
52 OBJS += ../src/utils/os_$(CONFIG_OS).o
53 OBJS += ../src/utils/ip_addr.o
54
55 OBJS += ../src/common/wpa_common.o
56
57 OBJS += ../src/radius/radius.o
58 OBJS += ../src/radius/radius_client.o
59
60 OBJS += ../src/crypto/md5.o
61 OBJS += ../src/crypto/rc4.o
62 OBJS += ../src/crypto/md4.o
63 OBJS += ../src/crypto/sha1.o
64 OBJS += ../src/crypto/des.o
65 OBJS += ../src/crypto/aes_wrap.o
66 OBJS += ../src/crypto/aes.o
67
68 HOBJS=../src/hlr_auc_gw/hlr_auc_gw.o ../src/utils/common.o ../src/utils/wpa_debug.o ../src/utils/os_$(CONFIG_OS).o ../src/hlr_auc_gw/milenage.o ../src/crypto/aes_wrap.o ../src/crypto/aes.o
69
70 CFLAGS += -DCONFIG_CTRL_IFACE -DCONFIG_CTRL_IFACE_UNIX
71
72 ifdef CONFIG_IAPP
73 CFLAGS += -DCONFIG_IAPP
74 OBJS += iapp.o
75 endif
76
77 ifdef CONFIG_RSN_PREAUTH
78 CFLAGS += -DCONFIG_RSN_PREAUTH
79 CONFIG_L2_PACKET=y
80 endif
81
82 ifdef CONFIG_PEERKEY
83 CFLAGS += -DCONFIG_PEERKEY
84 OBJS += peerkey.o
85 endif
86
87 ifdef CONFIG_IEEE80211W
88 CFLAGS += -DCONFIG_IEEE80211W
89 NEED_SHA256=y
90 endif
91
92 ifdef CONFIG_IEEE80211R
93 CFLAGS += -DCONFIG_IEEE80211R
94 OBJS += wpa_ft.o
95 NEED_SHA256=y
96 endif
97
98 ifdef CONFIG_DRIVER_HOSTAP
99 CFLAGS += -DCONFIG_DRIVER_HOSTAP
100 OBJS += driver_hostap.o
101 endif
102
103 ifdef CONFIG_DRIVER_WIRED
104 CFLAGS += -DCONFIG_DRIVER_WIRED
105 OBJS += driver_wired.o
106 endif
107
108 ifdef CONFIG_DRIVER_MADWIFI
109 CFLAGS += -DCONFIG_DRIVER_MADWIFI
110 OBJS += driver_madwifi.o
111 CONFIG_L2_PACKET=y
112 endif
113
114 ifdef CONFIG_DRIVER_PRISM54
115 CFLAGS += -DCONFIG_DRIVER_PRISM54
116 OBJS += driver_prism54.o
117 endif
118
119 ifdef CONFIG_DRIVER_NL80211
120 CFLAGS += -DCONFIG_DRIVER_NL80211
121 OBJS += driver_nl80211.o radiotap.o
122 LIBS += -lnl
123 endif
124
125 ifdef CONFIG_DRIVER_BSD
126 CFLAGS += -DCONFIG_DRIVER_BSD
127 OBJS += driver_bsd.o
128 CONFIG_L2_PACKET=y
129 CONFIG_DNET_PCAP=y
130 CONFIG_L2_FREEBSD=y
131 endif
132
133 ifdef CONFIG_DRIVER_TEST
134 CFLAGS += -DCONFIG_DRIVER_TEST
135 OBJS += driver_test.o
136 endif
137
138 ifdef CONFIG_L2_PACKET
139 ifdef CONFIG_DNET_PCAP
140 ifdef CONFIG_L2_FREEBSD
141 LIBS += -lpcap
142 OBJS += ../src/l2_packet/l2_packet_freebsd.o
143 else
144 LIBS += -ldnet -lpcap
145 OBJS += ../src/l2_packet/l2_packet_pcap.o
146 endif
147 else
148 OBJS += ../src/l2_packet/l2_packet_linux.o
149 endif
150 endif
151
152
153 ifdef CONFIG_EAP_MD5
154 CFLAGS += -DEAP_MD5
155 OBJS += ../src/eap_server/eap_md5.o
156 CHAP=y
157 endif
158
159 ifdef CONFIG_EAP_TLS
160 CFLAGS += -DEAP_TLS
161 OBJS += ../src/eap_server/eap_tls.o
162 TLS_FUNCS=y
163 endif
164
165 ifdef CONFIG_EAP_PEAP
166 CFLAGS += -DEAP_PEAP
167 OBJS += ../src/eap_server/eap_peap.o
168 TLS_FUNCS=y
169 CONFIG_EAP_MSCHAPV2=y
170 endif
171
172 ifdef CONFIG_EAP_TTLS
173 CFLAGS += -DEAP_TTLS
174 OBJS += ../src/eap_server/eap_ttls.o
175 TLS_FUNCS=y
176 CHAP=y
177 endif
178
179 ifdef CONFIG_EAP_MSCHAPV2
180 CFLAGS += -DEAP_MSCHAPv2
181 OBJS += ../src/eap_server/eap_mschapv2.o
182 MS_FUNCS=y
183 endif
184
185 ifdef CONFIG_EAP_GTC
186 CFLAGS += -DEAP_GTC
187 OBJS += ../src/eap_server/eap_gtc.o
188 endif
189
190 ifdef CONFIG_EAP_SIM
191 CFLAGS += -DEAP_SIM
192 OBJS += ../src/eap_server/eap_sim.o
193 CONFIG_EAP_SIM_COMMON=y
194 endif
195
196 ifdef CONFIG_EAP_AKA
197 CFLAGS += -DEAP_AKA
198 OBJS += ../src/eap_server/eap_aka.o
199 CONFIG_EAP_SIM_COMMON=y
200 endif
201
202 ifdef CONFIG_EAP_SIM_COMMON
203 OBJS += ../src/eap_common/eap_sim_common.o
204 # Example EAP-SIM/AKA interface for GSM/UMTS authentication. This can be
205 # replaced with another file implementating the interface specified in
206 # eap_sim_db.h.
207 OBJS += ../src/eap_server/eap_sim_db.o
208 NEED_FIPS186_2_PRF=y
209 endif
210
211 ifdef CONFIG_EAP_PAX
212 CFLAGS += -DEAP_PAX
213 OBJS += ../src/eap_server/eap_pax.o ../src/eap_common/eap_pax_common.o
214 endif
215
216 ifdef CONFIG_EAP_PSK
217 CFLAGS += -DEAP_PSK
218 OBJS += ../src/eap_server/eap_psk.o ../src/eap_common/eap_psk_common.o
219 endif
220
221 ifdef CONFIG_EAP_SAKE
222 CFLAGS += -DEAP_SAKE
223 OBJS += ../src/eap_server/eap_sake.o ../src/eap_common/eap_sake_common.o
224 endif
225
226 ifdef CONFIG_EAP_GPSK
227 CFLAGS += -DEAP_GPSK
228 OBJS += ../src/eap_server/eap_gpsk.o ../src/eap_common/eap_gpsk_common.o
229 ifdef CONFIG_EAP_GPSK_SHA256
230 CFLAGS += -DEAP_GPSK_SHA256
231 endif
232 NEED_SHA256=y
233 endif
234
235 ifdef CONFIG_EAP_VENDOR_TEST
236 CFLAGS += -DEAP_VENDOR_TEST
237 OBJS += ../src/eap_server/eap_vendor_test.o
238 endif
239
240 ifdef CONFIG_EAP_FAST
241 CFLAGS += -DEAP_FAST
242 OBJS += ../src/eap_server/eap_fast.o
243 OBJS += ../src/eap_common/eap_fast_common.o
244 TLS_FUNCS=y
245 NEED_T_PRF=y
246 endif
247
248 ifdef CONFIG_EAP_IKEV2
249 CFLAGS += -DEAP_IKEV2
250 OBJS += ../src/eap_server/eap_ikev2.o ../src/eap_server/ikev2.o
251 OBJS += ../src/eap_common/eap_ikev2_common.o ../src/eap_common/ikev2_common.o
252 NEED_DH_GROUPS=y
253 endif
254
255 ifdef CONFIG_EAP_TNC
256 CFLAGS += -DEAP_TNC
257 OBJS += ../src/eap_server/eap_tnc.o
258 OBJS += ../src/eap_server/tncs.o
259 NEED_BASE64=y
260 endif
261
262 # Basic EAP functionality is needed for EAPOL
263 OBJS += ../src/eap_server/eap.o
264 OBJS += ../src/eap_common/eap_common.o
265 OBJS += ../src/eap_server/eap_methods.o
266 OBJS += ../src/eap_server/eap_identity.o
267
268 ifdef CONFIG_EAP
269 CFLAGS += -DEAP_SERVER
270 endif
271
272 ifndef CONFIG_TLS
273 CONFIG_TLS=openssl
274 endif
275
276 ifeq ($(CONFIG_TLS), internal)
277 ifndef CONFIG_CRYPTO
278 CONFIG_CRYPTO=internal
279 endif
280 endif
281 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
282 CFLAGS += -DCONFIG_INTERNAL_X509
283 endif
284 ifeq ($(CONFIG_CRYPTO), internal)
285 CFLAGS += -DCONFIG_INTERNAL_X509
286 endif
287
288
289 ifdef TLS_FUNCS
290 # Shared TLS functions (needed for EAP_TLS, EAP_PEAP, and EAP_TTLS)
291 CFLAGS += -DEAP_TLS_FUNCS
292 OBJS += ../src/eap_server/eap_tls_common.o
293 ifeq ($(CONFIG_TLS), openssl)
294 OBJS += ../src/crypto/tls_openssl.o
295 LIBS += -lssl -lcrypto
296 LIBS_p += -lcrypto
297 LIBS_h += -lcrypto
298 endif
299 ifeq ($(CONFIG_TLS), gnutls)
300 OBJS += ../src/crypto/tls_gnutls.o
301 LIBS += -lgnutls -lgcrypt -lgpg-error
302 LIBS_p += -lgcrypt
303 LIBS_h += -lgcrypt
304 endif
305 ifdef CONFIG_GNUTLS_EXTRA
306 CFLAGS += -DCONFIG_GNUTLS_EXTRA
307 LIBS += -lgnutls-extra
308 endif
309 ifeq ($(CONFIG_TLS), internal)
310 OBJS += ../src/crypto/tls_internal.o
311 OBJS += ../src/tls/tlsv1_common.o ../src/tls/tlsv1_record.o
312 OBJS += ../src/tls/tlsv1_cred.o ../src/tls/tlsv1_server.o
313 OBJS += ../src/tls/tlsv1_server_write.o ../src/tls/tlsv1_server_read.o
314 OBJS += ../src/tls/asn1.o ../src/tls/x509v3.o
315 OBJS_p += ../src/tls/asn1.o
316 OBJS_p += ../src/crypto/rc4.o ../src/crypto/aes_wrap.o ../src/crypto/aes.o
317 NEED_BASE64=y
318 CFLAGS += -DCONFIG_TLS_INTERNAL
319 CFLAGS += -DCONFIG_TLS_INTERNAL_SERVER
320 ifeq ($(CONFIG_CRYPTO), internal)
321 ifdef CONFIG_INTERNAL_LIBTOMMATH
322 CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH
323 else
324 LIBS += -ltommath
325 LIBS_p += -ltommath
326 endif
327 endif
328 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
329 LIBS += -ltomcrypt -ltfm
330 LIBS_p += -ltomcrypt -ltfm
331 endif
332 endif
333 NEED_CRYPTO=y
334 else
335 OBJS += ../src/crypto/tls_none.o
336 endif
337
338 ifdef CONFIG_PKCS12
339 CFLAGS += -DPKCS12_FUNCS
340 endif
341
342 ifdef MS_FUNCS
343 OBJS += ../src/crypto/ms_funcs.o
344 NEED_CRYPTO=y
345 endif
346
347 ifdef CHAP
348 OBJS += ../src/eap_common/chap.o
349 endif
350
351 ifdef NEED_CRYPTO
352 ifndef TLS_FUNCS
353 ifeq ($(CONFIG_TLS), openssl)
354 LIBS += -lcrypto
355 LIBS_p += -lcrypto
356 LIBS_h += -lcrypto
357 endif
358 ifeq ($(CONFIG_TLS), gnutls)
359 LIBS += -lgcrypt
360 LIBS_p += -lgcrypt
361 LIBS_h += -lgcrypt
362 endif
363 ifeq ($(CONFIG_TLS), internal)
364 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
365 LIBS += -ltomcrypt -ltfm
366 LIBS_p += -ltomcrypt -ltfm
367 endif
368 endif
369 endif
370 ifeq ($(CONFIG_TLS), openssl)
371 OBJS += ../src/crypto/crypto_openssl.o
372 OBJS_p += ../src/crypto/crypto_openssl.o
373 HOBJS += ../src/crypto/crypto_openssl.o
374 CONFIG_INTERNAL_SHA256=y
375 endif
376 ifeq ($(CONFIG_TLS), gnutls)
377 OBJS += ../src/crypto/crypto_gnutls.o
378 OBJS_p += ../src/crypto/crypto_gnutls.o
379 HOBJS += ../src/crypto/crypto_gnutls.o
380 CONFIG_INTERNAL_SHA256=y
381 endif
382 ifeq ($(CONFIG_TLS), internal)
383 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
384 OBJS += ../src/crypto/crypto_libtomcrypt.o
385 OBJS_p += ../src/crypto/crypto_libtomcrypt.o
386 CONFIG_INTERNAL_SHA256=y
387 endif
388 ifeq ($(CONFIG_CRYPTO), internal)
389 OBJS += ../src/crypto/crypto_internal.o ../src/tls/rsa.o ../src/tls/bignum.o
390 OBJS_p += ../src/crypto/crypto_internal.o ../src/tls/rsa.o ../src/tls/bignum.o
391 CFLAGS += -DCONFIG_CRYPTO_INTERNAL
392 CONFIG_INTERNAL_AES=y
393 CONFIG_INTERNAL_DES=y
394 CONFIG_INTERNAL_SHA1=y
395 CONFIG_INTERNAL_MD4=y
396 CONFIG_INTERNAL_MD5=y
397 CONFIG_INTERNAL_SHA256=y
398 endif
399 endif
400 else
401 CONFIG_INTERNAL_AES=y
402 CONFIG_INTERNAL_SHA1=y
403 CONFIG_INTERNAL_MD5=y
404 CONFIG_INTERNAL_SHA256=y
405 endif
406
407 ifdef CONFIG_INTERNAL_AES
408 CFLAGS += -DINTERNAL_AES
409 endif
410 ifdef CONFIG_INTERNAL_SHA1
411 CFLAGS += -DINTERNAL_SHA1
412 endif
413 ifdef CONFIG_INTERNAL_SHA256
414 CFLAGS += -DINTERNAL_SHA256
415 endif
416 ifdef CONFIG_INTERNAL_MD5
417 CFLAGS += -DINTERNAL_MD5
418 endif
419 ifdef CONFIG_INTERNAL_MD4
420 CFLAGS += -DINTERNAL_MD4
421 endif
422 ifdef CONFIG_INTERNAL_DES
423 CFLAGS += -DINTERNAL_DES
424 endif
425
426 ifdef NEED_SHA256
427 OBJS += ../src/crypto/sha256.o
428 endif
429
430 ifdef NEED_DH_GROUPS
431 OBJS += ../src/crypto/dh_groups.o
432 endif
433
434 ifndef NEED_FIPS186_2_PRF
435 CFLAGS += -DCONFIG_NO_FIPS186_2_PRF
436 endif
437
438 ifndef NEED_T_PRF
439 CFLAGS += -DCONFIG_NO_T_PRF
440 endif
441
442 ifdef CONFIG_RADIUS_SERVER
443 CFLAGS += -DRADIUS_SERVER
444 OBJS += ../src/radius/radius_server.o
445 endif
446
447 ifdef CONFIG_IPV6
448 CFLAGS += -DCONFIG_IPV6
449 endif
450
451 ifdef CONFIG_DRIVER_RADIUS_ACL
452 CFLAGS += -DCONFIG_DRIVER_RADIUS_ACL
453 endif
454
455 ifdef CONFIG_FULL_DYNAMIC_VLAN
456 # define CONFIG_FULL_DYNAMIC_VLAN to have hostapd manipulate bridges
457 # and vlan interfaces for the vlan feature.
458 CFLAGS += -DCONFIG_FULL_DYNAMIC_VLAN
459 endif
460
461 ifdef NEED_BASE64
462 OBJS += ../src/utils/base64.o
463 endif
464
465 ALL=hostapd hostapd_cli
466
467 all: verify_config $(ALL)
468
469 verify_config:
470         @if [ ! -r .config ]; then \
471                 echo 'Building hostapd requires a configuration file'; \
472                 echo '(.config). See README for more instructions. You can'; \
473                 echo 'run "cp defconfig .config" to create an example'; \
474                 echo 'configuration.'; \
475                 exit 1; \
476         fi
477
478 install: all
479         for i in $(ALL); do cp $$i /usr/local/bin/$$i; done
480
481 hostapd: $(OBJS)
482         $(CC) -o hostapd $(OBJS) $(LIBS)
483
484 OBJS_c = hostapd_cli.o ../src/common/wpa_ctrl.o ../src/utils/os_$(CONFIG_OS).o
485 hostapd_cli: $(OBJS_c)
486         $(CC) -o hostapd_cli $(OBJS_c)
487
488 NOBJS = nt_password_hash.o ../src/crypto/ms_funcs.o ../src/crypto/sha1.o ../src/crypto/rc4.o ../src/crypto/md5.o
489 NOBJS += ../src/crypto/crypto_openssl.o ../src/utils/os_$(CONFIG_OS).o
490 ifdef TLS_FUNCS
491 LIBS_n += -lcrypto
492 endif
493
494 nt_password_hash: $(NOBJS)
495         $(CC) -o nt_password_hash $(NOBJS) $(LIBS_n)
496
497 hlr_auc_gw: $(HOBJS)
498         $(CC) -o hlr_auc_gw $(HOBJS) $(LIBS_h)
499
500 clean:
501         $(MAKE) -C ../src clean
502         rm -f core *~ *.o hostapd hostapd_cli nt_password_hash hlr_auc_gw
503         rm -f *.d
504
505 %.eps: %.fig
506         fig2dev -L eps $*.fig $*.eps
507
508 %.png: %.fig
509         fig2dev -L png -m 3 $*.fig | pngtopnm | pnmscale 0.4 | pnmtopng \
510                 > $*.png
511
512 docs-pics: doc/hostapd.png doc/hostapd.eps
513
514 docs: docs-pics
515         doxygen doc/doxygen.full
516         $(MAKE) -C doc/latex
517         cp doc/latex/refman.pdf hostapd-devel.pdf
518
519 docs-fast: docs-pics
520         doxygen doc/doxygen.fast
521
522 clean-docs:
523         rm -rf doc/latex doc/html
524         rm -f doc/hosta.d{eps,png} hostapd-devel.pdf
525
526 TEST_SRC_MILENAGE = ../src/hlr_auc_gw/milenage.c ../src/crypto/aes_wrap.c ../src/crypto/aes.c ../src/utils/common.c ../src/utils/wpa_debug.o ../src/utils/os_$(CONFIG_OS).c
527 test-milenage: $(TEST_SRC_MILENAGE)
528         $(CC) -o test-milenage -Wall -Werror $(TEST_SRC_MILENAGE) \
529                 -DTEST_MAIN_MILENAGE -I. -DINTERNAL_AES \
530                 -I../src/crypto -I../src/utils
531         ./test-milenage
532         rm test-milenage
533
534 hostapd-sparse: $(OBJS)
535         @echo Sparse run completed
536
537 run-sparse:
538         CC="sparse -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -D__INT_MAX__=2147483647 -D__SHRT_MAX__=32767 -D__LONG_MAX__=2147483647 -D__SCHAR_MAX__=127 -Wbitwise" $(MAKE) hostapd-sparse
539
540 -include $(OBJS:%.o=%.d)