c0b68e05ac2265cde15e8013fa3e94642cf0efde
[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_TLV=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_TLV
242 CFLAGS += -DEAP_TLV
243 OBJS += ../src/eap_server/eap_tlv.o
244 endif
245
246 ifdef CONFIG_EAP_FAST
247 CFLAGS += -DEAP_FAST
248 OBJS += ../src/eap_server/eap_fast.o
249 OBJS += ../src/eap_common/eap_fast_common.o
250 TLS_FUNCS=y
251 NEED_T_PRF=y
252 endif
253
254 ifdef CONFIG_EAP_IKEV2
255 CFLAGS += -DEAP_IKEV2
256 OBJS += ../src/eap_server/eap_ikev2.o ../src/eap_server/ikev2.o
257 OBJS += ../src/eap_common/eap_ikev2_common.o ../src/eap_common/ikev2_common.o
258 NEED_DH_GROUPS=y
259 endif
260
261 # Basic EAP functionality is needed for EAPOL
262 OBJS += ../src/eap_server/eap.o
263 OBJS += ../src/eap_common/eap_common.o
264 OBJS += ../src/eap_server/eap_methods.o
265 OBJS += ../src/eap_server/eap_identity.o
266
267 ifdef CONFIG_EAP
268 CFLAGS += -DEAP_SERVER
269 endif
270
271 ifndef CONFIG_TLS
272 CONFIG_TLS=openssl
273 endif
274
275 ifeq ($(CONFIG_TLS), internal)
276 ifndef CONFIG_CRYPTO
277 CONFIG_CRYPTO=internal
278 endif
279 endif
280 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
281 CFLAGS += -DCONFIG_INTERNAL_X509
282 endif
283 ifeq ($(CONFIG_CRYPTO), internal)
284 CFLAGS += -DCONFIG_INTERNAL_X509
285 endif
286
287
288 ifdef TLS_FUNCS
289 # Shared TLS functions (needed for EAP_TLS, EAP_PEAP, and EAP_TTLS)
290 CFLAGS += -DEAP_TLS_FUNCS
291 OBJS += ../src/eap_server/eap_tls_common.o
292 ifeq ($(CONFIG_TLS), openssl)
293 OBJS += ../src/crypto/tls_openssl.o
294 LIBS += -lssl -lcrypto
295 LIBS_p += -lcrypto
296 LIBS_h += -lcrypto
297 endif
298 ifeq ($(CONFIG_TLS), gnutls)
299 OBJS += ../src/crypto/tls_gnutls.o
300 LIBS += -lgnutls -lgcrypt -lgpg-error
301 LIBS_p += -lgcrypt
302 LIBS_h += -lgcrypt
303 endif
304 ifdef CONFIG_GNUTLS_EXTRA
305 CFLAGS += -DCONFIG_GNUTLS_EXTRA
306 LIBS += -lgnutls-extra
307 endif
308 ifeq ($(CONFIG_TLS), internal)
309 OBJS += ../src/crypto/tls_internal.o
310 OBJS += ../src/tls/tlsv1_common.o ../src/tls/tlsv1_record.o
311 OBJS += ../src/tls/tlsv1_cred.o ../src/tls/tlsv1_server.o
312 OBJS += ../src/tls/tlsv1_server_write.o ../src/tls/tlsv1_server_read.o
313 OBJS += ../src/tls/asn1.o ../src/tls/x509v3.o
314 OBJS_p += ../src/tls/asn1.o
315 OBJS_p += ../src/crypto/rc4.o ../src/crypto/aes_wrap.o ../src/crypto/aes.o
316 NEED_BASE64=y
317 CFLAGS += -DCONFIG_TLS_INTERNAL
318 CFLAGS += -DCONFIG_TLS_INTERNAL_SERVER
319 ifeq ($(CONFIG_CRYPTO), internal)
320 ifdef CONFIG_INTERNAL_LIBTOMMATH
321 CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH
322 else
323 LIBS += -ltommath
324 LIBS_p += -ltommath
325 endif
326 endif
327 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
328 LIBS += -ltomcrypt -ltfm
329 LIBS_p += -ltomcrypt -ltfm
330 endif
331 endif
332 NEED_CRYPTO=y
333 else
334 OBJS += ../src/crypto/tls_none.o
335 endif
336
337 ifdef CONFIG_PKCS12
338 CFLAGS += -DPKCS12_FUNCS
339 endif
340
341 ifdef MS_FUNCS
342 OBJS += ../src/crypto/ms_funcs.o
343 NEED_CRYPTO=y
344 endif
345
346 ifdef CHAP
347 OBJS += ../src/eap_common/chap.o
348 endif
349
350 ifdef NEED_CRYPTO
351 ifndef TLS_FUNCS
352 ifeq ($(CONFIG_TLS), openssl)
353 LIBS += -lcrypto
354 LIBS_p += -lcrypto
355 LIBS_h += -lcrypto
356 endif
357 ifeq ($(CONFIG_TLS), gnutls)
358 LIBS += -lgcrypt
359 LIBS_p += -lgcrypt
360 LIBS_h += -lgcrypt
361 endif
362 ifeq ($(CONFIG_TLS), internal)
363 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
364 LIBS += -ltomcrypt -ltfm
365 LIBS_p += -ltomcrypt -ltfm
366 endif
367 endif
368 endif
369 ifeq ($(CONFIG_TLS), openssl)
370 OBJS += ../src/crypto/crypto_openssl.o
371 OBJS_p += ../src/crypto/crypto_openssl.o
372 HOBJS += ../src/crypto/crypto_openssl.o
373 CONFIG_INTERNAL_SHA256=y
374 endif
375 ifeq ($(CONFIG_TLS), gnutls)
376 OBJS += ../src/crypto/crypto_gnutls.o
377 OBJS_p += ../src/crypto/crypto_gnutls.o
378 HOBJS += ../src/crypto/crypto_gnutls.o
379 CONFIG_INTERNAL_SHA256=y
380 endif
381 ifeq ($(CONFIG_TLS), internal)
382 ifeq ($(CONFIG_CRYPTO), libtomcrypt)
383 OBJS += ../src/crypto/crypto_libtomcrypt.o
384 OBJS_p += ../src/crypto/crypto_libtomcrypt.o
385 CONFIG_INTERNAL_SHA256=y
386 endif
387 ifeq ($(CONFIG_CRYPTO), internal)
388 OBJS += ../src/crypto/crypto_internal.o ../src/tls/rsa.o ../src/tls/bignum.o
389 OBJS_p += ../src/crypto/crypto_internal.o ../src/tls/rsa.o ../src/tls/bignum.o
390 CFLAGS += -DCONFIG_CRYPTO_INTERNAL
391 CONFIG_INTERNAL_AES=y
392 CONFIG_INTERNAL_DES=y
393 CONFIG_INTERNAL_SHA1=y
394 CONFIG_INTERNAL_MD4=y
395 CONFIG_INTERNAL_MD5=y
396 CONFIG_INTERNAL_SHA256=y
397 endif
398 endif
399 else
400 CONFIG_INTERNAL_AES=y
401 CONFIG_INTERNAL_SHA1=y
402 CONFIG_INTERNAL_MD5=y
403 CONFIG_INTERNAL_SHA256=y
404 endif
405
406 ifdef CONFIG_INTERNAL_AES
407 CFLAGS += -DINTERNAL_AES
408 endif
409 ifdef CONFIG_INTERNAL_SHA1
410 CFLAGS += -DINTERNAL_SHA1
411 endif
412 ifdef CONFIG_INTERNAL_SHA256
413 CFLAGS += -DINTERNAL_SHA256
414 endif
415 ifdef CONFIG_INTERNAL_MD5
416 CFLAGS += -DINTERNAL_MD5
417 endif
418 ifdef CONFIG_INTERNAL_MD4
419 CFLAGS += -DINTERNAL_MD4
420 endif
421 ifdef CONFIG_INTERNAL_DES
422 CFLAGS += -DINTERNAL_DES
423 endif
424
425 ifdef NEED_SHA256
426 OBJS += ../src/crypto/sha256.o
427 endif
428
429 ifdef NEED_DH_GROUPS
430 OBJS += ../src/crypto/dh_groups.o
431 endif
432
433 ifndef NEED_FIPS186_2_PRF
434 CFLAGS += -DCONFIG_NO_FIPS186_2_PRF
435 endif
436
437 ifndef NEED_T_PRF
438 CFLAGS += -DCONFIG_NO_T_PRF
439 endif
440
441 ifdef CONFIG_RADIUS_SERVER
442 CFLAGS += -DRADIUS_SERVER
443 OBJS += ../src/radius/radius_server.o
444 endif
445
446 ifdef CONFIG_IPV6
447 CFLAGS += -DCONFIG_IPV6
448 endif
449
450 ifdef CONFIG_FULL_DYNAMIC_VLAN
451 # define CONFIG_FULL_DYNAMIC_VLAN to have hostapd manipulate bridges
452 # and vlan interfaces for the vlan feature.
453 CFLAGS += -DCONFIG_FULL_DYNAMIC_VLAN
454 endif
455
456 ifdef NEED_BASE64
457 OBJS += ../src/utils/base64.o
458 endif
459
460 ALL=hostapd hostapd_cli
461
462 all: verify_config $(ALL)
463
464 verify_config:
465         @if [ ! -r .config ]; then \
466                 echo 'Building hostapd requires a configuration file'; \
467                 echo '(.config). See README for more instructions. You can'; \
468                 echo 'run "cp defconfig .config" to create an example'; \
469                 echo 'configuration.'; \
470                 exit 1; \
471         fi
472
473 install: all
474         for i in $(ALL); do cp $$i /usr/local/bin/$$i; done
475
476 hostapd: $(OBJS)
477         $(CC) -o hostapd $(OBJS) $(LIBS)
478
479 OBJS_c = hostapd_cli.o ../src/common/wpa_ctrl.o ../src/utils/os_$(CONFIG_OS).o
480 hostapd_cli: $(OBJS_c)
481         $(CC) -o hostapd_cli $(OBJS_c)
482
483 NOBJS = nt_password_hash.o ../src/crypto/ms_funcs.o ../src/crypto/sha1.o ../src/crypto/rc4.o ../src/crypto/md5.o
484 NOBJS += ../src/crypto/crypto_openssl.o ../src/utils/os_$(CONFIG_OS).o
485 ifdef TLS_FUNCS
486 LIBS_n += -lcrypto
487 endif
488
489 nt_password_hash: $(NOBJS)
490         $(CC) -o nt_password_hash $(NOBJS) $(LIBS_n)
491
492 hlr_auc_gw: $(HOBJS)
493         $(CC) -o hlr_auc_gw $(HOBJS) $(LIBS_h)
494
495 clean:
496         $(MAKE) -C ../src clean
497         rm -f core *~ *.o hostapd hostapd_cli nt_password_hash hlr_auc_gw
498         rm -f *.d
499
500 %.eps: %.fig
501         fig2dev -L eps $*.fig $*.eps
502
503 %.png: %.fig
504         fig2dev -L png -m 3 $*.fig | pngtopnm | pnmscale 0.4 | pnmtopng \
505                 > $*.png
506
507 docs-pics: doc/hostapd.png doc/hostapd.eps
508
509 docs: docs-pics
510         doxygen doc/doxygen.full
511         $(MAKE) -C doc/latex
512         cp doc/latex/refman.pdf hostapd-devel.pdf
513
514 docs-fast: docs-pics
515         doxygen doc/doxygen.fast
516
517 clean-docs:
518         rm -rf doc/latex doc/html
519         rm -f doc/hosta.d{eps,png} hostapd-devel.pdf
520
521 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
522 test-milenage: $(TEST_SRC_MILENAGE)
523         $(CC) -o test-milenage -Wall -Werror $(TEST_SRC_MILENAGE) \
524                 -DTEST_MAIN_MILENAGE -I. -DINTERNAL_AES \
525                 -I../src/crypto -I../src/utils
526         ./test-milenage
527         rm test-milenage
528
529 hostapd-sparse: $(OBJS)
530         @echo Sparse run completed
531
532 run-sparse:
533         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
534
535 -include $(OBJS:%.o=%.d)