1e73906204e9286dc4026d27fbeea421598b197e
[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 OBJS += ../src/eap_common/eap_peap_common.o
169 TLS_FUNCS=y
170 CONFIG_EAP_MSCHAPV2=y
171 endif
172
173 ifdef CONFIG_EAP_TTLS
174 CFLAGS += -DEAP_TTLS
175 OBJS += ../src/eap_server/eap_ttls.o
176 TLS_FUNCS=y
177 CHAP=y
178 endif
179
180 ifdef CONFIG_EAP_MSCHAPV2
181 CFLAGS += -DEAP_MSCHAPv2
182 OBJS += ../src/eap_server/eap_mschapv2.o
183 MS_FUNCS=y
184 endif
185
186 ifdef CONFIG_EAP_GTC
187 CFLAGS += -DEAP_GTC
188 OBJS += ../src/eap_server/eap_gtc.o
189 endif
190
191 ifdef CONFIG_EAP_SIM
192 CFLAGS += -DEAP_SIM
193 OBJS += ../src/eap_server/eap_sim.o
194 CONFIG_EAP_SIM_COMMON=y
195 endif
196
197 ifdef CONFIG_EAP_AKA
198 CFLAGS += -DEAP_AKA
199 OBJS += ../src/eap_server/eap_aka.o
200 CONFIG_EAP_SIM_COMMON=y
201 endif
202
203 ifdef CONFIG_EAP_SIM_COMMON
204 OBJS += ../src/eap_common/eap_sim_common.o
205 # Example EAP-SIM/AKA interface for GSM/UMTS authentication. This can be
206 # replaced with another file implementating the interface specified in
207 # eap_sim_db.h.
208 OBJS += ../src/eap_server/eap_sim_db.o
209 NEED_FIPS186_2_PRF=y
210 endif
211
212 ifdef CONFIG_EAP_PAX
213 CFLAGS += -DEAP_PAX
214 OBJS += ../src/eap_server/eap_pax.o ../src/eap_common/eap_pax_common.o
215 endif
216
217 ifdef CONFIG_EAP_PSK
218 CFLAGS += -DEAP_PSK
219 OBJS += ../src/eap_server/eap_psk.o ../src/eap_common/eap_psk_common.o
220 endif
221
222 ifdef CONFIG_EAP_SAKE
223 CFLAGS += -DEAP_SAKE
224 OBJS += ../src/eap_server/eap_sake.o ../src/eap_common/eap_sake_common.o
225 endif
226
227 ifdef CONFIG_EAP_GPSK
228 CFLAGS += -DEAP_GPSK
229 OBJS += ../src/eap_server/eap_gpsk.o ../src/eap_common/eap_gpsk_common.o
230 ifdef CONFIG_EAP_GPSK_SHA256
231 CFLAGS += -DEAP_GPSK_SHA256
232 endif
233 NEED_SHA256=y
234 endif
235
236 ifdef CONFIG_EAP_VENDOR_TEST
237 CFLAGS += -DEAP_VENDOR_TEST
238 OBJS += ../src/eap_server/eap_vendor_test.o
239 endif
240
241 ifdef CONFIG_EAP_FAST
242 CFLAGS += -DEAP_FAST
243 OBJS += ../src/eap_server/eap_fast.o
244 OBJS += ../src/eap_common/eap_fast_common.o
245 TLS_FUNCS=y
246 NEED_T_PRF=y
247 endif
248
249 ifdef CONFIG_EAP_IKEV2
250 CFLAGS += -DEAP_IKEV2
251 OBJS += ../src/eap_server/eap_ikev2.o ../src/eap_server/ikev2.o
252 OBJS += ../src/eap_common/eap_ikev2_common.o ../src/eap_common/ikev2_common.o
253 NEED_DH_GROUPS=y
254 endif
255
256 ifdef CONFIG_EAP_TNC
257 CFLAGS += -DEAP_TNC
258 OBJS += ../src/eap_server/eap_tnc.o
259 OBJS += ../src/eap_server/tncs.o
260 NEED_BASE64=y
261 endif
262
263 # Basic EAP functionality is needed for EAPOL
264 OBJS += ../src/eap_server/eap.o
265 OBJS += ../src/eap_common/eap_common.o
266 OBJS += ../src/eap_server/eap_methods.o
267 OBJS += ../src/eap_server/eap_identity.o
268
269 ifdef CONFIG_EAP
270 CFLAGS += -DEAP_SERVER
271 endif
272
273 ifndef CONFIG_TLS
274 CONFIG_TLS=openssl
275 endif
276
277 ifeq ($(CONFIG_TLS), internal)
278 ifndef CONFIG_CRYPTO
279 CONFIG_CRYPTO=internal
280 endif
281 endif
282 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
283 CFLAGS += -DCONFIG_INTERNAL_X509
284 endif
285 ifeq ($(CONFIG_CRYPTO), internal)
286 CFLAGS += -DCONFIG_INTERNAL_X509
287 endif
288
289
290 ifdef TLS_FUNCS
291 # Shared TLS functions (needed for EAP_TLS, EAP_PEAP, and EAP_TTLS)
292 CFLAGS += -DEAP_TLS_FUNCS
293 OBJS += ../src/eap_server/eap_tls_common.o
294 ifeq ($(CONFIG_TLS), openssl)
295 OBJS += ../src/crypto/tls_openssl.o
296 LIBS += -lssl -lcrypto
297 LIBS_p += -lcrypto
298 LIBS_h += -lcrypto
299 endif
300 ifeq ($(CONFIG_TLS), gnutls)
301 OBJS += ../src/crypto/tls_gnutls.o
302 LIBS += -lgnutls -lgcrypt -lgpg-error
303 LIBS_p += -lgcrypt
304 LIBS_h += -lgcrypt
305 endif
306 ifdef CONFIG_GNUTLS_EXTRA
307 CFLAGS += -DCONFIG_GNUTLS_EXTRA
308 LIBS += -lgnutls-extra
309 endif
310 ifeq ($(CONFIG_TLS), internal)
311 OBJS += ../src/crypto/tls_internal.o
312 OBJS += ../src/tls/tlsv1_common.o ../src/tls/tlsv1_record.o
313 OBJS += ../src/tls/tlsv1_cred.o ../src/tls/tlsv1_server.o
314 OBJS += ../src/tls/tlsv1_server_write.o ../src/tls/tlsv1_server_read.o
315 OBJS += ../src/tls/asn1.o ../src/tls/x509v3.o
316 OBJS_p += ../src/tls/asn1.o
317 OBJS_p += ../src/crypto/rc4.o ../src/crypto/aes_wrap.o ../src/crypto/aes.o
318 NEED_BASE64=y
319 CFLAGS += -DCONFIG_TLS_INTERNAL
320 CFLAGS += -DCONFIG_TLS_INTERNAL_SERVER
321 ifeq ($(CONFIG_CRYPTO), internal)
322 ifdef CONFIG_INTERNAL_LIBTOMMATH
323 CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH
324 else
325 LIBS += -ltommath
326 LIBS_p += -ltommath
327 endif
328 endif
329 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
330 LIBS += -ltomcrypt -ltfm
331 LIBS_p += -ltomcrypt -ltfm
332 endif
333 endif
334 NEED_CRYPTO=y
335 else
336 OBJS += ../src/crypto/tls_none.o
337 endif
338
339 ifdef CONFIG_PKCS12
340 CFLAGS += -DPKCS12_FUNCS
341 endif
342
343 ifdef MS_FUNCS
344 OBJS += ../src/crypto/ms_funcs.o
345 NEED_CRYPTO=y
346 endif
347
348 ifdef CHAP
349 OBJS += ../src/eap_common/chap.o
350 endif
351
352 ifdef NEED_CRYPTO
353 ifndef TLS_FUNCS
354 ifeq ($(CONFIG_TLS), openssl)
355 LIBS += -lcrypto
356 LIBS_p += -lcrypto
357 LIBS_h += -lcrypto
358 endif
359 ifeq ($(CONFIG_TLS), gnutls)
360 LIBS += -lgcrypt
361 LIBS_p += -lgcrypt
362 LIBS_h += -lgcrypt
363 endif
364 ifeq ($(CONFIG_TLS), internal)
365 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
366 LIBS += -ltomcrypt -ltfm
367 LIBS_p += -ltomcrypt -ltfm
368 endif
369 endif
370 endif
371 ifeq ($(CONFIG_TLS), openssl)
372 OBJS += ../src/crypto/crypto_openssl.o
373 OBJS_p += ../src/crypto/crypto_openssl.o
374 HOBJS += ../src/crypto/crypto_openssl.o
375 CONFIG_INTERNAL_SHA256=y
376 endif
377 ifeq ($(CONFIG_TLS), gnutls)
378 OBJS += ../src/crypto/crypto_gnutls.o
379 OBJS_p += ../src/crypto/crypto_gnutls.o
380 HOBJS += ../src/crypto/crypto_gnutls.o
381 CONFIG_INTERNAL_SHA256=y
382 endif
383 ifeq ($(CONFIG_TLS), internal)
384 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
385 OBJS += ../src/crypto/crypto_libtomcrypt.o
386 OBJS_p += ../src/crypto/crypto_libtomcrypt.o
387 CONFIG_INTERNAL_SHA256=y
388 endif
389 ifeq ($(CONFIG_CRYPTO), internal)
390 OBJS += ../src/crypto/crypto_internal.o ../src/tls/rsa.o ../src/tls/bignum.o
391 OBJS_p += ../src/crypto/crypto_internal.o ../src/tls/rsa.o ../src/tls/bignum.o
392 CFLAGS += -DCONFIG_CRYPTO_INTERNAL
393 CONFIG_INTERNAL_AES=y
394 CONFIG_INTERNAL_DES=y
395 CONFIG_INTERNAL_SHA1=y
396 CONFIG_INTERNAL_MD4=y
397 CONFIG_INTERNAL_MD5=y
398 CONFIG_INTERNAL_SHA256=y
399 endif
400 endif
401 else
402 CONFIG_INTERNAL_AES=y
403 CONFIG_INTERNAL_SHA1=y
404 CONFIG_INTERNAL_MD5=y
405 CONFIG_INTERNAL_SHA256=y
406 endif
407
408 ifdef CONFIG_INTERNAL_AES
409 CFLAGS += -DINTERNAL_AES
410 endif
411 ifdef CONFIG_INTERNAL_SHA1
412 CFLAGS += -DINTERNAL_SHA1
413 endif
414 ifdef CONFIG_INTERNAL_SHA256
415 CFLAGS += -DINTERNAL_SHA256
416 endif
417 ifdef CONFIG_INTERNAL_MD5
418 CFLAGS += -DINTERNAL_MD5
419 endif
420 ifdef CONFIG_INTERNAL_MD4
421 CFLAGS += -DINTERNAL_MD4
422 endif
423 ifdef CONFIG_INTERNAL_DES
424 CFLAGS += -DINTERNAL_DES
425 endif
426
427 ifdef NEED_SHA256
428 OBJS += ../src/crypto/sha256.o
429 endif
430
431 ifdef NEED_DH_GROUPS
432 OBJS += ../src/crypto/dh_groups.o
433 endif
434
435 ifndef NEED_FIPS186_2_PRF
436 CFLAGS += -DCONFIG_NO_FIPS186_2_PRF
437 endif
438
439 ifndef NEED_T_PRF
440 CFLAGS += -DCONFIG_NO_T_PRF
441 endif
442
443 ifdef CONFIG_RADIUS_SERVER
444 CFLAGS += -DRADIUS_SERVER
445 OBJS += ../src/radius/radius_server.o
446 endif
447
448 ifdef CONFIG_IPV6
449 CFLAGS += -DCONFIG_IPV6
450 endif
451
452 ifdef CONFIG_DRIVER_RADIUS_ACL
453 CFLAGS += -DCONFIG_DRIVER_RADIUS_ACL
454 endif
455
456 ifdef CONFIG_FULL_DYNAMIC_VLAN
457 # define CONFIG_FULL_DYNAMIC_VLAN to have hostapd manipulate bridges
458 # and vlan interfaces for the vlan feature.
459 CFLAGS += -DCONFIG_FULL_DYNAMIC_VLAN
460 endif
461
462 ifdef NEED_BASE64
463 OBJS += ../src/utils/base64.o
464 endif
465
466 ALL=hostapd hostapd_cli
467
468 all: verify_config $(ALL)
469
470 verify_config:
471         @if [ ! -r .config ]; then \
472                 echo 'Building hostapd requires a configuration file'; \
473                 echo '(.config). See README for more instructions. You can'; \
474                 echo 'run "cp defconfig .config" to create an example'; \
475                 echo 'configuration.'; \
476                 exit 1; \
477         fi
478
479 install: all
480         for i in $(ALL); do cp $$i /usr/local/bin/$$i; done
481
482 hostapd: $(OBJS)
483         $(CC) -o hostapd $(OBJS) $(LIBS)
484
485 OBJS_c = hostapd_cli.o ../src/common/wpa_ctrl.o ../src/utils/os_$(CONFIG_OS).o
486 hostapd_cli: $(OBJS_c)
487         $(CC) -o hostapd_cli $(OBJS_c)
488
489 NOBJS = nt_password_hash.o ../src/crypto/ms_funcs.o ../src/crypto/sha1.o ../src/crypto/rc4.o ../src/crypto/md5.o
490 NOBJS += ../src/crypto/crypto_openssl.o ../src/utils/os_$(CONFIG_OS).o
491 ifdef TLS_FUNCS
492 LIBS_n += -lcrypto
493 endif
494
495 nt_password_hash: $(NOBJS)
496         $(CC) -o nt_password_hash $(NOBJS) $(LIBS_n)
497
498 hlr_auc_gw: $(HOBJS)
499         $(CC) -o hlr_auc_gw $(HOBJS) $(LIBS_h)
500
501 clean:
502         $(MAKE) -C ../src clean
503         rm -f core *~ *.o hostapd hostapd_cli nt_password_hash hlr_auc_gw
504         rm -f *.d
505
506 %.eps: %.fig
507         fig2dev -L eps $*.fig $*.eps
508
509 %.png: %.fig
510         fig2dev -L png -m 3 $*.fig | pngtopnm | pnmscale 0.4 | pnmtopng \
511                 > $*.png
512
513 docs-pics: doc/hostapd.png doc/hostapd.eps
514
515 docs: docs-pics
516         doxygen doc/doxygen.full
517         $(MAKE) -C doc/latex
518         cp doc/latex/refman.pdf hostapd-devel.pdf
519
520 docs-fast: docs-pics
521         doxygen doc/doxygen.fast
522
523 clean-docs:
524         rm -rf doc/latex doc/html
525         rm -f doc/hosta.d{eps,png} hostapd-devel.pdf
526
527 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
528 test-milenage: $(TEST_SRC_MILENAGE)
529         $(CC) -o test-milenage -Wall -Werror $(TEST_SRC_MILENAGE) \
530                 -DTEST_MAIN_MILENAGE -I. -DINTERNAL_AES \
531                 -I../src/crypto -I../src/utils
532         ./test-milenage
533         rm test-milenage
534
535 hostapd-sparse: $(OBJS)
536         @echo Sparse run completed
537
538 run-sparse:
539         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
540
541 -include $(OBJS:%.o=%.d)