├── hostapd ├── CONTRIBUTIONS ├── COPYING ├── README ├── hostapd │ ├── Android.mk │ ├── ChangeLog │ ├── Makefile │ ├── README │ ├── README-WPS │ ├── android.config │ ├── config_file.c │ ├── config_file.h │ ├── ctrl_iface.c │ ├── ctrl_iface.h │ ├── defconfig │ ├── eap_register.c │ ├── eap_register.h │ ├── eap_testing.txt │ ├── hapd_module_tests.c │ ├── hlr_auc_gw.c │ ├── hlr_auc_gw.milenage_db │ ├── hlr_auc_gw.txt │ ├── hostapd.8 │ ├── hostapd.accept │ ├── hostapd.android.rc │ ├── hostapd.conf │ ├── hostapd.deny │ ├── hostapd.eap_user │ ├── hostapd.eap_user_sqlite │ ├── hostapd.radius_clients │ ├── hostapd.sim_db │ ├── hostapd.vlan │ ├── hostapd.wpa_psk │ ├── hostapd_cli.1 │ ├── hostapd_cli.c │ ├── logwatch │ │ ├── README │ │ ├── hostapd │ │ └── hostapd.conf │ ├── main.c │ ├── nt_password_hash.c │ ├── wired.conf │ └── wps-ap-nfc.py └── src │ ├── Makefile │ ├── ap │ ├── Makefile │ ├── accounting.c │ ├── accounting.h │ ├── acs.c │ ├── acs.h │ ├── ap_config.c │ ├── ap_config.h │ ├── ap_drv_ops.c │ ├── ap_drv_ops.h │ ├── ap_list.c │ ├── ap_list.h │ ├── ap_mlme.c │ ├── ap_mlme.h │ ├── authsrv.c │ ├── authsrv.h │ ├── beacon.c │ ├── beacon.h │ ├── bss_load.c │ ├── bss_load.h │ ├── ctrl_iface_ap.c │ ├── ctrl_iface_ap.h │ ├── dfs.c │ ├── dfs.h │ ├── dhcp_snoop.c │ ├── dhcp_snoop.h │ ├── dpp_hostapd.c │ ├── dpp_hostapd.h │ ├── drv_callbacks.c │ ├── eap_user_db.c │ ├── eth_p_oui.c │ ├── eth_p_oui.h │ ├── fils_hlp.c │ ├── fils_hlp.h │ ├── gas_query_ap.c │ ├── gas_query_ap.h │ ├── gas_serv.c │ ├── gas_serv.h │ ├── hostapd.c │ ├── hostapd.h │ ├── hs20.c │ ├── hs20.h │ ├── hw_features.c │ ├── hw_features.h │ ├── iapp.c │ ├── iapp.h │ ├── ieee802_11.c │ ├── ieee802_11.h │ ├── ieee802_11_auth.c │ ├── ieee802_11_auth.h │ ├── ieee802_11_he.c │ ├── ieee802_11_ht.c │ ├── ieee802_11_shared.c │ ├── ieee802_11_vht.c │ ├── ieee802_1x.c │ ├── ieee802_1x.h │ ├── mbo_ap.c │ ├── mbo_ap.h │ ├── ndisc_snoop.c │ ├── ndisc_snoop.h │ ├── neighbor_db.c │ ├── neighbor_db.h │ ├── p2p_hostapd.c │ ├── p2p_hostapd.h │ ├── pmksa_cache_auth.c │ ├── pmksa_cache_auth.h │ ├── preauth_auth.c │ ├── preauth_auth.h │ ├── rrm.c │ ├── rrm.h │ ├── sta_info.c │ ├── sta_info.h │ ├── taxonomy.c │ ├── taxonomy.h │ ├── tkip_countermeasures.c │ ├── tkip_countermeasures.h │ ├── utils.c │ ├── vlan.c │ ├── vlan.h │ ├── vlan_full.c │ ├── vlan_ifconfig.c │ ├── vlan_init.c │ ├── vlan_init.h │ ├── vlan_ioctl.c │ ├── vlan_util.c │ ├── vlan_util.h │ ├── wmm.c │ ├── wmm.h │ ├── wnm_ap.c │ ├── wnm_ap.h │ ├── wpa_auth.c │ ├── wpa_auth.h │ ├── wpa_auth_ft.c │ ├── wpa_auth_glue.c │ ├── wpa_auth_glue.h │ ├── wpa_auth_i.h │ ├── wpa_auth_ie.c │ ├── wpa_auth_ie.h │ ├── wps_hostapd.c │ ├── wps_hostapd.h │ ├── x_snoop.c │ └── x_snoop.h │ ├── common │ ├── Makefile │ ├── cli.c │ ├── cli.h │ ├── common_module_tests.c │ ├── ctrl_iface_common.c │ ├── ctrl_iface_common.h │ ├── defs.h │ ├── dhcp.h │ ├── dpp.c │ ├── dpp.h │ ├── eapol_common.h │ ├── gas.c │ ├── gas.h │ ├── gas_server.c │ ├── gas_server.h │ ├── hw_features_common.c │ ├── hw_features_common.h │ ├── ieee802_11_common.c │ ├── ieee802_11_common.h │ ├── ieee802_11_defs.h │ ├── ieee802_1x_defs.h │ ├── linux_bridge.h │ ├── linux_vlan.h │ ├── privsep_commands.h │ ├── qca-vendor-attr.h │ ├── qca-vendor.h │ ├── sae.c │ ├── sae.h │ ├── tnc.h │ ├── version.h │ ├── wpa_common.c │ ├── wpa_common.h │ ├── wpa_ctrl.c │ ├── wpa_ctrl.h │ ├── wpa_helpers.c │ └── wpa_helpers.h │ ├── crypto │ ├── .gitignore │ ├── Makefile │ ├── aes-cbc.c │ ├── aes-ccm.c │ ├── aes-ctr.c │ ├── aes-eax.c │ ├── aes-encblock.c │ ├── aes-gcm.c │ ├── aes-internal-dec.c │ ├── aes-internal-enc.c │ ├── aes-internal.c │ ├── aes-omac1.c │ ├── aes-siv.c │ ├── aes-unwrap.c │ ├── aes-wrap.c │ ├── aes.h │ ├── aes_i.h │ ├── aes_siv.h │ ├── aes_wrap.h │ ├── crypto.h │ ├── crypto_gnutls.c │ ├── crypto_internal-cipher.c │ ├── crypto_internal-modexp.c │ ├── crypto_internal-rsa.c │ ├── crypto_internal.c │ ├── crypto_libtomcrypt.c │ ├── crypto_linux.c │ ├── crypto_module_tests.c │ ├── crypto_nettle.c │ ├── crypto_none.c │ ├── crypto_openssl.c │ ├── crypto_wolfssl.c │ ├── des-internal.c │ ├── des_i.h │ ├── dh_group5.c │ ├── dh_group5.h │ ├── dh_groups.c │ ├── dh_groups.h │ ├── fips_prf_internal.c │ ├── fips_prf_openssl.c │ ├── fips_prf_wolfssl.c │ ├── md4-internal.c │ ├── md5-internal.c │ ├── md5.c │ ├── md5.h │ ├── md5_i.h │ ├── milenage.c │ ├── milenage.h │ ├── ms_funcs.c │ ├── ms_funcs.h │ ├── random.c │ ├── random.h │ ├── rc4.c │ ├── sha1-internal.c │ ├── sha1-pbkdf2.c │ ├── sha1-prf.c │ ├── sha1-tlsprf.c │ ├── sha1-tprf.c │ ├── sha1.c │ ├── sha1.h │ ├── sha1_i.h │ ├── sha256-internal.c │ ├── sha256-kdf.c │ ├── sha256-prf.c │ ├── sha256-tlsprf.c │ ├── sha256.c │ ├── sha256.h │ ├── sha256_i.h │ ├── sha384-internal.c │ ├── sha384-kdf.c │ ├── sha384-prf.c │ ├── sha384.c │ ├── sha384.h │ ├── sha384_i.h │ ├── sha512-internal.c │ ├── sha512-kdf.c │ ├── sha512-prf.c │ ├── sha512.h │ ├── sha512_i.h │ ├── tls.h │ ├── tls_gnutls.c │ ├── tls_internal.c │ ├── tls_none.c │ ├── tls_openssl.c │ ├── tls_openssl.h │ ├── tls_openssl_ocsp.c │ └── tls_wolfssl.c │ ├── drivers │ ├── .gitignore │ ├── Makefile │ ├── android_drv.h │ ├── driver.h │ ├── driver_atheros.c │ ├── driver_bsd.c │ ├── driver_common.c │ ├── driver_hostap.c │ ├── driver_hostap.h │ ├── driver_macsec_linux.c │ ├── driver_macsec_qca.c │ ├── driver_ndis.c │ ├── driver_ndis.h │ ├── driver_ndis_.c │ ├── driver_nl80211.c │ ├── driver_nl80211.h │ ├── driver_nl80211_android.c │ ├── driver_nl80211_capa.c │ ├── driver_nl80211_event.c │ ├── driver_nl80211_monitor.c │ ├── driver_nl80211_scan.c │ ├── driver_none.c │ ├── driver_openbsd.c │ ├── driver_privsep.c │ ├── driver_roboswitch.c │ ├── driver_wext.c │ ├── driver_wext.h │ ├── driver_wired.c │ ├── driver_wired_common.c │ ├── driver_wired_common.h │ ├── drivers.c │ ├── drivers.mak │ ├── drivers.mk │ ├── linux_defines.h │ ├── linux_ioctl.c │ ├── linux_ioctl.h │ ├── linux_wext.h │ ├── ndis_events.c │ ├── netlink.c │ ├── netlink.h │ ├── nl80211_copy.h │ ├── priv_netlink.h │ ├── rfkill.c │ └── rfkill.h │ ├── eap_common │ ├── Makefile │ ├── chap.c │ ├── chap.h │ ├── eap_common.c │ ├── eap_common.h │ ├── eap_defs.h │ ├── eap_eke_common.c │ ├── eap_eke_common.h │ ├── eap_fast_common.c │ ├── eap_fast_common.h │ ├── eap_gpsk_common.c │ ├── eap_gpsk_common.h │ ├── eap_ikev2_common.c │ ├── eap_ikev2_common.h │ ├── eap_pax_common.c │ ├── eap_pax_common.h │ ├── eap_peap_common.c │ ├── eap_peap_common.h │ ├── eap_psk_common.c │ ├── eap_psk_common.h │ ├── eap_pwd_common.c │ ├── eap_pwd_common.h │ ├── eap_sake_common.c │ ├── eap_sake_common.h │ ├── eap_sim_common.c │ ├── eap_sim_common.h │ ├── eap_tlv_common.h │ ├── eap_ttls.h │ ├── eap_wsc_common.c │ ├── eap_wsc_common.h │ ├── ikev2_common.c │ └── ikev2_common.h │ ├── eap_peer │ ├── Makefile │ ├── eap.c │ ├── eap.h │ ├── eap_aka.c │ ├── eap_config.h │ ├── eap_eke.c │ ├── eap_fast.c │ ├── eap_fast_pac.c │ ├── eap_fast_pac.h │ ├── eap_gpsk.c │ ├── eap_gtc.c │ ├── eap_i.h │ ├── eap_ikev2.c │ ├── eap_leap.c │ ├── eap_md5.c │ ├── eap_methods.c │ ├── eap_methods.h │ ├── eap_mschapv2.c │ ├── eap_otp.c │ ├── eap_pax.c │ ├── eap_peap.c │ ├── eap_proxy.h │ ├── eap_proxy_dummy.c │ ├── eap_psk.c │ ├── eap_pwd.c │ ├── eap_sake.c │ ├── eap_sim.c │ ├── eap_tls.c │ ├── eap_tls_common.c │ ├── eap_tls_common.h │ ├── eap_tnc.c │ ├── eap_ttls.c │ ├── eap_vendor_test.c │ ├── eap_wsc.c │ ├── ikev2.c │ ├── ikev2.h │ ├── mschapv2.c │ ├── mschapv2.h │ ├── tncc.c │ └── tncc.h │ ├── eap_server │ ├── Makefile │ ├── eap.h │ ├── eap_i.h │ ├── eap_methods.h │ ├── eap_server.c │ ├── eap_server_aka.c │ ├── eap_server_eke.c │ ├── eap_server_fast.c │ ├── eap_server_gpsk.c │ ├── eap_server_gtc.c │ ├── eap_server_identity.c │ ├── eap_server_ikev2.c │ ├── eap_server_md5.c │ ├── eap_server_methods.c │ ├── eap_server_mschapv2.c │ ├── eap_server_pax.c │ ├── eap_server_peap.c │ ├── eap_server_psk.c │ ├── eap_server_pwd.c │ ├── eap_server_sake.c │ ├── eap_server_sim.c │ ├── eap_server_tls.c │ ├── eap_server_tls_common.c │ ├── eap_server_tnc.c │ ├── eap_server_ttls.c │ ├── eap_server_vendor_test.c │ ├── eap_server_wsc.c │ ├── eap_sim_db.c │ ├── eap_sim_db.h │ ├── eap_tls_common.h │ ├── ikev2.c │ ├── ikev2.h │ ├── tncs.c │ └── tncs.h │ ├── eapol_auth │ ├── Makefile │ ├── eapol_auth_dump.c │ ├── eapol_auth_sm.c │ ├── eapol_auth_sm.h │ └── eapol_auth_sm_i.h │ ├── eapol_supp │ ├── Makefile │ ├── eapol_supp_sm.c │ └── eapol_supp_sm.h │ ├── fst │ ├── Makefile │ ├── fst.c │ ├── fst.h │ ├── fst_ctrl_aux.c │ ├── fst_ctrl_aux.h │ ├── fst_ctrl_defs.h │ ├── fst_ctrl_iface.c │ ├── fst_ctrl_iface.h │ ├── fst_defs.h │ ├── fst_group.c │ ├── fst_group.h │ ├── fst_iface.c │ ├── fst_iface.h │ ├── fst_internal.h │ ├── fst_session.c │ └── fst_session.h │ ├── l2_packet │ ├── Makefile │ ├── l2_packet.h │ ├── l2_packet_freebsd.c │ ├── l2_packet_linux.c │ ├── l2_packet_ndis.c │ ├── l2_packet_none.c │ ├── l2_packet_pcap.c │ ├── l2_packet_privsep.c │ └── l2_packet_winpcap.c │ ├── lib.rules │ ├── p2p │ ├── Makefile │ ├── p2p.c │ ├── p2p.h │ ├── p2p_build.c │ ├── p2p_dev_disc.c │ ├── p2p_go_neg.c │ ├── p2p_group.c │ ├── p2p_i.h │ ├── p2p_invitation.c │ ├── p2p_parse.c │ ├── p2p_pd.c │ ├── p2p_sd.c │ └── p2p_utils.c │ ├── pae │ ├── Makefile │ ├── ieee802_1x_cp.c │ ├── ieee802_1x_cp.h │ ├── ieee802_1x_kay.c │ ├── ieee802_1x_kay.h │ ├── ieee802_1x_kay_i.h │ ├── ieee802_1x_key.c │ ├── ieee802_1x_key.h │ ├── ieee802_1x_secy_ops.c │ └── ieee802_1x_secy_ops.h │ ├── radius │ ├── .gitignore │ ├── Makefile │ ├── radius.c │ ├── radius.h │ ├── radius_client.c │ ├── radius_client.h │ ├── radius_das.c │ ├── radius_das.h │ ├── radius_server.c │ └── radius_server.h │ ├── rsn_supp │ ├── Makefile │ ├── pmksa_cache.c │ ├── pmksa_cache.h │ ├── preauth.c │ ├── preauth.h │ ├── tdls.c │ ├── wpa.c │ ├── wpa.h │ ├── wpa_ft.c │ ├── wpa_i.h │ ├── wpa_ie.c │ └── wpa_ie.h │ ├── tls │ ├── .gitignore │ ├── Makefile │ ├── asn1.c │ ├── asn1.h │ ├── bignum.c │ ├── bignum.h │ ├── libtommath.c │ ├── pkcs1.c │ ├── pkcs1.h │ ├── pkcs5.c │ ├── pkcs5.h │ ├── pkcs8.c │ ├── pkcs8.h │ ├── rsa.c │ ├── rsa.h │ ├── tlsv1_client.c │ ├── tlsv1_client.h │ ├── tlsv1_client_i.h │ ├── tlsv1_client_ocsp.c │ ├── tlsv1_client_read.c │ ├── tlsv1_client_write.c │ ├── tlsv1_common.c │ ├── tlsv1_common.h │ ├── tlsv1_cred.c │ ├── tlsv1_cred.h │ ├── tlsv1_record.c │ ├── tlsv1_record.h │ ├── tlsv1_server.c │ ├── tlsv1_server.h │ ├── tlsv1_server_i.h │ ├── tlsv1_server_read.c │ ├── tlsv1_server_write.c │ ├── x509v3.c │ └── x509v3.h │ ├── utils │ ├── .gitignore │ ├── Makefile │ ├── base64.c │ ├── base64.h │ ├── bitfield.c │ ├── bitfield.h │ ├── browser-android.c │ ├── browser-system.c │ ├── browser-wpadebug.c │ ├── browser.c │ ├── browser.h │ ├── build_config.h │ ├── common.c │ ├── common.h │ ├── crc32.c │ ├── crc32.h │ ├── edit.c │ ├── edit.h │ ├── edit_readline.c │ ├── edit_simple.c │ ├── eloop.c │ ├── eloop.h │ ├── eloop_win.c │ ├── ext_password.c │ ├── ext_password.h │ ├── ext_password_i.h │ ├── ext_password_test.c │ ├── http-utils.h │ ├── http_curl.c │ ├── includes.h │ ├── ip_addr.c │ ├── ip_addr.h │ ├── json.c │ ├── json.h │ ├── list.h │ ├── module_tests.h │ ├── os.h │ ├── os_internal.c │ ├── os_none.c │ ├── os_unix.c │ ├── os_win32.c │ ├── pcsc_funcs.c │ ├── pcsc_funcs.h │ ├── platform.h │ ├── radiotap.c │ ├── radiotap.h │ ├── radiotap_iter.h │ ├── state_machine.h │ ├── trace.c │ ├── trace.h │ ├── utils_module_tests.c │ ├── uuid.c │ ├── uuid.h │ ├── wpa_debug.c │ ├── wpa_debug.h │ ├── wpabuf.c │ ├── wpabuf.h │ ├── xml-utils.c │ ├── xml-utils.h │ └── xml_libxml2.c │ └── wps │ ├── Makefile │ ├── http.h │ ├── http_client.c │ ├── http_client.h │ ├── http_server.c │ ├── http_server.h │ ├── httpread.c │ ├── httpread.h │ ├── ndef.c │ ├── upnp_xml.c │ ├── upnp_xml.h │ ├── wps.c │ ├── wps.h │ ├── wps_attr_build.c │ ├── wps_attr_parse.c │ ├── wps_attr_parse.h │ ├── wps_attr_process.c │ ├── wps_common.c │ ├── wps_defs.h │ ├── wps_dev_attr.c │ ├── wps_dev_attr.h │ ├── wps_enrollee.c │ ├── wps_er.c │ ├── wps_er.h │ ├── wps_er_ssdp.c │ ├── wps_i.h │ ├── wps_module_tests.c │ ├── wps_registrar.c │ ├── wps_upnp.c │ ├── wps_upnp.h │ ├── wps_upnp_ap.c │ ├── wps_upnp_event.c │ ├── wps_upnp_i.h │ ├── wps_upnp_ssdp.c │ ├── wps_upnp_web.c │ └── wps_validate.c └── wpa_supplicant ├── CONTRIBUTIONS ├── COPYING ├── README ├── hs20 └── client │ ├── Android.mk │ ├── Makefile │ ├── devdetail.xml │ ├── devinfo.xml │ ├── est.c │ ├── oma_dm_client.c │ ├── osu_client.c │ ├── osu_client.h │ └── spp_client.c ├── src ├── Makefile ├── ap │ ├── Makefile │ ├── accounting.c │ ├── accounting.h │ ├── acs.c │ ├── acs.h │ ├── ap_config.c │ ├── ap_config.h │ ├── ap_drv_ops.c │ ├── ap_drv_ops.h │ ├── ap_list.c │ ├── ap_list.h │ ├── ap_mlme.c │ ├── ap_mlme.h │ ├── authsrv.c │ ├── authsrv.h │ ├── beacon.c │ ├── beacon.h │ ├── bss_load.c │ ├── bss_load.h │ ├── ctrl_iface_ap.c │ ├── ctrl_iface_ap.h │ ├── dfs.c │ ├── dfs.h │ ├── dhcp_snoop.c │ ├── dhcp_snoop.h │ ├── dpp_hostapd.c │ ├── dpp_hostapd.h │ ├── drv_callbacks.c │ ├── eap_user_db.c │ ├── eth_p_oui.c │ ├── eth_p_oui.h │ ├── fils_hlp.c │ ├── fils_hlp.h │ ├── gas_query_ap.c │ ├── gas_query_ap.h │ ├── gas_serv.c │ ├── gas_serv.h │ ├── hostapd.c │ ├── hostapd.h │ ├── hs20.c │ ├── hs20.h │ ├── hw_features.c │ ├── hw_features.h │ ├── iapp.c │ ├── iapp.h │ ├── ieee802_11.c │ ├── ieee802_11.h │ ├── ieee802_11_auth.c │ ├── ieee802_11_auth.h │ ├── ieee802_11_he.c │ ├── ieee802_11_ht.c │ ├── ieee802_11_shared.c │ ├── ieee802_11_vht.c │ ├── ieee802_1x.c │ ├── ieee802_1x.h │ ├── mbo_ap.c │ ├── mbo_ap.h │ ├── ndisc_snoop.c │ ├── ndisc_snoop.h │ ├── neighbor_db.c │ ├── neighbor_db.h │ ├── p2p_hostapd.c │ ├── p2p_hostapd.h │ ├── pmksa_cache_auth.c │ ├── pmksa_cache_auth.h │ ├── preauth_auth.c │ ├── preauth_auth.h │ ├── rrm.c │ ├── rrm.h │ ├── sta_info.c │ ├── sta_info.h │ ├── taxonomy.c │ ├── taxonomy.h │ ├── tkip_countermeasures.c │ ├── tkip_countermeasures.h │ ├── utils.c │ ├── vlan.c │ ├── vlan.h │ ├── vlan_full.c │ ├── vlan_ifconfig.c │ ├── vlan_init.c │ ├── vlan_init.h │ ├── vlan_ioctl.c │ ├── vlan_util.c │ ├── vlan_util.h │ ├── wmm.c │ ├── wmm.h │ ├── wnm_ap.c │ ├── wnm_ap.h │ ├── wpa_auth.c │ ├── wpa_auth.h │ ├── wpa_auth_ft.c │ ├── wpa_auth_glue.c │ ├── wpa_auth_glue.h │ ├── wpa_auth_i.h │ ├── wpa_auth_ie.c │ ├── wpa_auth_ie.h │ ├── wps_hostapd.c │ ├── wps_hostapd.h │ ├── x_snoop.c │ └── x_snoop.h ├── common │ ├── Makefile │ ├── cli.c │ ├── cli.h │ ├── common_module_tests.c │ ├── ctrl_iface_common.c │ ├── ctrl_iface_common.h │ ├── defs.h │ ├── dhcp.h │ ├── dpp.c │ ├── dpp.h │ ├── eapol_common.h │ ├── gas.c │ ├── gas.h │ ├── gas_server.c │ ├── gas_server.h │ ├── hw_features_common.c │ ├── hw_features_common.h │ ├── ieee802_11_common.c │ ├── ieee802_11_common.h │ ├── ieee802_11_defs.h │ ├── ieee802_1x_defs.h │ ├── linux_bridge.h │ ├── linux_vlan.h │ ├── privsep_commands.h │ ├── qca-vendor-attr.h │ ├── qca-vendor.h │ ├── sae.c │ ├── sae.h │ ├── tnc.h │ ├── version.h │ ├── wpa_common.c │ ├── wpa_common.h │ ├── wpa_ctrl.c │ ├── wpa_ctrl.h │ ├── wpa_helpers.c │ └── wpa_helpers.h ├── crypto │ ├── .gitignore │ ├── Makefile │ ├── aes-cbc.c │ ├── aes-ccm.c │ ├── aes-ctr.c │ ├── aes-eax.c │ ├── aes-encblock.c │ ├── aes-gcm.c │ ├── aes-internal-dec.c │ ├── aes-internal-enc.c │ ├── aes-internal.c │ ├── aes-omac1.c │ ├── aes-siv.c │ ├── aes-unwrap.c │ ├── aes-wrap.c │ ├── aes.h │ ├── aes_i.h │ ├── aes_siv.h │ ├── aes_wrap.h │ ├── crypto.h │ ├── crypto_gnutls.c │ ├── crypto_internal-cipher.c │ ├── crypto_internal-modexp.c │ ├── crypto_internal-rsa.c │ ├── crypto_internal.c │ ├── crypto_libtomcrypt.c │ ├── crypto_linux.c │ ├── crypto_module_tests.c │ ├── crypto_nettle.c │ ├── crypto_none.c │ ├── crypto_openssl.c │ ├── crypto_wolfssl.c │ ├── des-internal.c │ ├── des_i.h │ ├── dh_group5.c │ ├── dh_group5.h │ ├── dh_groups.c │ ├── dh_groups.h │ ├── fips_prf_internal.c │ ├── fips_prf_openssl.c │ ├── fips_prf_wolfssl.c │ ├── md4-internal.c │ ├── md5-internal.c │ ├── md5.c │ ├── md5.h │ ├── md5_i.h │ ├── milenage.c │ ├── milenage.h │ ├── ms_funcs.c │ ├── ms_funcs.h │ ├── random.c │ ├── random.h │ ├── rc4.c │ ├── sha1-internal.c │ ├── sha1-pbkdf2.c │ ├── sha1-prf.c │ ├── sha1-tlsprf.c │ ├── sha1-tprf.c │ ├── sha1.c │ ├── sha1.h │ ├── sha1_i.h │ ├── sha256-internal.c │ ├── sha256-kdf.c │ ├── sha256-prf.c │ ├── sha256-tlsprf.c │ ├── sha256.c │ ├── sha256.h │ ├── sha256_i.h │ ├── sha384-internal.c │ ├── sha384-kdf.c │ ├── sha384-prf.c │ ├── sha384.c │ ├── sha384.h │ ├── sha384_i.h │ ├── sha512-internal.c │ ├── sha512-kdf.c │ ├── sha512-prf.c │ ├── sha512.h │ ├── sha512_i.h │ ├── tls.h │ ├── tls_gnutls.c │ ├── tls_internal.c │ ├── tls_none.c │ ├── tls_openssl.c │ ├── tls_openssl.h │ ├── tls_openssl_ocsp.c │ └── tls_wolfssl.c ├── drivers │ ├── .gitignore │ ├── Makefile │ ├── android_drv.h │ ├── driver.h │ ├── driver_atheros.c │ ├── driver_bsd.c │ ├── driver_common.c │ ├── driver_hostap.c │ ├── driver_hostap.h │ ├── driver_macsec_linux.c │ ├── driver_macsec_qca.c │ ├── driver_ndis.c │ ├── driver_ndis.h │ ├── driver_ndis_.c │ ├── driver_nl80211.c │ ├── driver_nl80211.h │ ├── driver_nl80211_android.c │ ├── driver_nl80211_capa.c │ ├── driver_nl80211_event.c │ ├── driver_nl80211_monitor.c │ ├── driver_nl80211_scan.c │ ├── driver_none.c │ ├── driver_openbsd.c │ ├── driver_privsep.c │ ├── driver_roboswitch.c │ ├── driver_wext.c │ ├── driver_wext.h │ ├── driver_wired.c │ ├── driver_wired_common.c │ ├── driver_wired_common.h │ ├── drivers.c │ ├── drivers.mak │ ├── drivers.mk │ ├── linux_defines.h │ ├── linux_ioctl.c │ ├── linux_ioctl.h │ ├── linux_wext.h │ ├── ndis_events.c │ ├── netlink.c │ ├── netlink.h │ ├── nl80211_copy.h │ ├── priv_netlink.h │ ├── rfkill.c │ └── rfkill.h ├── eap_common │ ├── Makefile │ ├── chap.c │ ├── chap.h │ ├── eap_common.c │ ├── eap_common.h │ ├── eap_defs.h │ ├── eap_eke_common.c │ ├── eap_eke_common.h │ ├── eap_fast_common.c │ ├── eap_fast_common.h │ ├── eap_gpsk_common.c │ ├── eap_gpsk_common.h │ ├── eap_ikev2_common.c │ ├── eap_ikev2_common.h │ ├── eap_pax_common.c │ ├── eap_pax_common.h │ ├── eap_peap_common.c │ ├── eap_peap_common.h │ ├── eap_psk_common.c │ ├── eap_psk_common.h │ ├── eap_pwd_common.c │ ├── eap_pwd_common.h │ ├── eap_sake_common.c │ ├── eap_sake_common.h │ ├── eap_sim_common.c │ ├── eap_sim_common.h │ ├── eap_tlv_common.h │ ├── eap_ttls.h │ ├── eap_wsc_common.c │ ├── eap_wsc_common.h │ ├── ikev2_common.c │ └── ikev2_common.h ├── eap_peer │ ├── Makefile │ ├── eap.c │ ├── eap.h │ ├── eap_aka.c │ ├── eap_config.h │ ├── eap_eke.c │ ├── eap_fast.c │ ├── eap_fast_pac.c │ ├── eap_fast_pac.h │ ├── eap_gpsk.c │ ├── eap_gtc.c │ ├── eap_i.h │ ├── eap_ikev2.c │ ├── eap_leap.c │ ├── eap_md5.c │ ├── eap_methods.c │ ├── eap_methods.h │ ├── eap_mschapv2.c │ ├── eap_otp.c │ ├── eap_pax.c │ ├── eap_peap.c │ ├── eap_proxy.h │ ├── eap_proxy_dummy.c │ ├── eap_psk.c │ ├── eap_pwd.c │ ├── eap_sake.c │ ├── eap_sim.c │ ├── eap_tls.c │ ├── eap_tls_common.c │ ├── eap_tls_common.h │ ├── eap_tnc.c │ ├── eap_ttls.c │ ├── eap_vendor_test.c │ ├── eap_wsc.c │ ├── ikev2.c │ ├── ikev2.h │ ├── mschapv2.c │ ├── mschapv2.h │ ├── tncc.c │ └── tncc.h ├── eap_server │ ├── Makefile │ ├── eap.h │ ├── eap_i.h │ ├── eap_methods.h │ ├── eap_server.c │ ├── eap_server_aka.c │ ├── eap_server_eke.c │ ├── eap_server_fast.c │ ├── eap_server_gpsk.c │ ├── eap_server_gtc.c │ ├── eap_server_identity.c │ ├── eap_server_ikev2.c │ ├── eap_server_md5.c │ ├── eap_server_methods.c │ ├── eap_server_mschapv2.c │ ├── eap_server_pax.c │ ├── eap_server_peap.c │ ├── eap_server_psk.c │ ├── eap_server_pwd.c │ ├── eap_server_sake.c │ ├── eap_server_sim.c │ ├── eap_server_tls.c │ ├── eap_server_tls_common.c │ ├── eap_server_tnc.c │ ├── eap_server_ttls.c │ ├── eap_server_vendor_test.c │ ├── eap_server_wsc.c │ ├── eap_sim_db.c │ ├── eap_sim_db.h │ ├── eap_tls_common.h │ ├── ikev2.c │ ├── ikev2.h │ ├── tncs.c │ └── tncs.h ├── eapol_auth │ ├── Makefile │ ├── eapol_auth_dump.c │ ├── eapol_auth_sm.c │ ├── eapol_auth_sm.h │ └── eapol_auth_sm_i.h ├── eapol_supp │ ├── Makefile │ ├── eapol_supp_sm.c │ └── eapol_supp_sm.h ├── fst │ ├── Makefile │ ├── fst.c │ ├── fst.h │ ├── fst_ctrl_aux.c │ ├── fst_ctrl_aux.h │ ├── fst_ctrl_defs.h │ ├── fst_ctrl_iface.c │ ├── fst_ctrl_iface.h │ ├── fst_defs.h │ ├── fst_group.c │ ├── fst_group.h │ ├── fst_iface.c │ ├── fst_iface.h │ ├── fst_internal.h │ ├── fst_session.c │ └── fst_session.h ├── l2_packet │ ├── Makefile │ ├── l2_packet.h │ ├── l2_packet_freebsd.c │ ├── l2_packet_linux.c │ ├── l2_packet_ndis.c │ ├── l2_packet_none.c │ ├── l2_packet_pcap.c │ ├── l2_packet_privsep.c │ └── l2_packet_winpcap.c ├── lib.rules ├── p2p │ ├── Makefile │ ├── p2p.c │ ├── p2p.h │ ├── p2p_build.c │ ├── p2p_dev_disc.c │ ├── p2p_go_neg.c │ ├── p2p_group.c │ ├── p2p_i.h │ ├── p2p_invitation.c │ ├── p2p_parse.c │ ├── p2p_pd.c │ ├── p2p_sd.c │ └── p2p_utils.c ├── pae │ ├── Makefile │ ├── ieee802_1x_cp.c │ ├── ieee802_1x_cp.h │ ├── ieee802_1x_kay.c │ ├── ieee802_1x_kay.h │ ├── ieee802_1x_kay_i.h │ ├── ieee802_1x_key.c │ ├── ieee802_1x_key.h │ ├── ieee802_1x_secy_ops.c │ └── ieee802_1x_secy_ops.h ├── radius │ ├── .gitignore │ ├── Makefile │ ├── radius.c │ ├── radius.h │ ├── radius_client.c │ ├── radius_client.h │ ├── radius_das.c │ ├── radius_das.h │ ├── radius_server.c │ └── radius_server.h ├── rsn_supp │ ├── Makefile │ ├── pmksa_cache.c │ ├── pmksa_cache.h │ ├── preauth.c │ ├── preauth.h │ ├── tdls.c │ ├── wpa.c │ ├── wpa.h │ ├── wpa_ft.c │ ├── wpa_i.h │ ├── wpa_ie.c │ └── wpa_ie.h ├── tls │ ├── .gitignore │ ├── Makefile │ ├── asn1.c │ ├── asn1.h │ ├── bignum.c │ ├── bignum.h │ ├── libtommath.c │ ├── pkcs1.c │ ├── pkcs1.h │ ├── pkcs5.c │ ├── pkcs5.h │ ├── pkcs8.c │ ├── pkcs8.h │ ├── rsa.c │ ├── rsa.h │ ├── tlsv1_client.c │ ├── tlsv1_client.h │ ├── tlsv1_client_i.h │ ├── tlsv1_client_ocsp.c │ ├── tlsv1_client_read.c │ ├── tlsv1_client_write.c │ ├── tlsv1_common.c │ ├── tlsv1_common.h │ ├── tlsv1_cred.c │ ├── tlsv1_cred.h │ ├── tlsv1_record.c │ ├── tlsv1_record.h │ ├── tlsv1_server.c │ ├── tlsv1_server.h │ ├── tlsv1_server_i.h │ ├── tlsv1_server_read.c │ ├── tlsv1_server_write.c │ ├── x509v3.c │ └── x509v3.h ├── utils │ ├── .gitignore │ ├── Makefile │ ├── base64.c │ ├── base64.h │ ├── bitfield.c │ ├── bitfield.h │ ├── browser-android.c │ ├── browser-system.c │ ├── browser-wpadebug.c │ ├── browser.c │ ├── browser.h │ ├── build_config.h │ ├── common.c │ ├── common.h │ ├── crc32.c │ ├── crc32.h │ ├── edit.c │ ├── edit.h │ ├── edit_readline.c │ ├── edit_simple.c │ ├── eloop.c │ ├── eloop.h │ ├── eloop_win.c │ ├── ext_password.c │ ├── ext_password.h │ ├── ext_password_i.h │ ├── ext_password_test.c │ ├── http-utils.h │ ├── http_curl.c │ ├── includes.h │ ├── ip_addr.c │ ├── ip_addr.h │ ├── json.c │ ├── json.h │ ├── list.h │ ├── module_tests.h │ ├── os.h │ ├── os_internal.c │ ├── os_none.c │ ├── os_unix.c │ ├── os_win32.c │ ├── pcsc_funcs.c │ ├── pcsc_funcs.h │ ├── platform.h │ ├── radiotap.c │ ├── radiotap.h │ ├── radiotap_iter.h │ ├── state_machine.h │ ├── trace.c │ ├── trace.h │ ├── utils_module_tests.c │ ├── uuid.c │ ├── uuid.h │ ├── wpa_debug.c │ ├── wpa_debug.h │ ├── wpabuf.c │ ├── wpabuf.h │ ├── xml-utils.c │ ├── xml-utils.h │ └── xml_libxml2.c └── wps │ ├── Makefile │ ├── http.h │ ├── http_client.c │ ├── http_client.h │ ├── http_server.c │ ├── http_server.h │ ├── httpread.c │ ├── httpread.h │ ├── ndef.c │ ├── upnp_xml.c │ ├── upnp_xml.h │ ├── wps.c │ ├── wps.h │ ├── wps_attr_build.c │ ├── wps_attr_parse.c │ ├── wps_attr_parse.h │ ├── wps_attr_process.c │ ├── wps_common.c │ ├── wps_defs.h │ ├── wps_dev_attr.c │ ├── wps_dev_attr.h │ ├── wps_enrollee.c │ ├── wps_er.c │ ├── wps_er.h │ ├── wps_er_ssdp.c │ ├── wps_i.h │ ├── wps_module_tests.c │ ├── wps_registrar.c │ ├── wps_upnp.c │ ├── wps_upnp.h │ ├── wps_upnp_ap.c │ ├── wps_upnp_event.c │ ├── wps_upnp_i.h │ ├── wps_upnp_ssdp.c │ ├── wps_upnp_web.c │ └── wps_validate.c └── wpa_supplicant ├── .gitignore ├── Android.mk ├── ChangeLog ├── Makefile ├── README ├── README-HS20 ├── README-P2P ├── README-WPS ├── README-Windows.txt ├── android.config ├── ap.c ├── ap.h ├── autoscan.c ├── autoscan.h ├── autoscan_exponential.c ├── autoscan_periodic.c ├── bgscan.c ├── bgscan.h ├── bgscan_learn.c ├── bgscan_simple.c ├── binder ├── .clang-format ├── binder.cpp ├── binder.h ├── binder_constants.cpp ├── binder_constants.h ├── binder_i.h ├── binder_manager.cpp ├── binder_manager.h ├── fi │ └── w1 │ │ └── wpa_supplicant │ │ ├── IIface.aidl │ │ ├── ISupplicant.aidl │ │ └── ISupplicantCallbacks.aidl ├── iface.cpp ├── iface.h ├── supplicant.cpp └── supplicant.h ├── blacklist.c ├── blacklist.h ├── bss.c ├── bss.h ├── config.c ├── config.h ├── config_file.c ├── config_none.c ├── config_ssid.h ├── config_winreg.c ├── ctrl_iface.c ├── ctrl_iface.h ├── ctrl_iface_named_pipe.c ├── ctrl_iface_udp.c ├── ctrl_iface_unix.c ├── dbus ├── .gitignore ├── Makefile ├── dbus-wpa_supplicant.conf ├── dbus_common.c ├── dbus_common.h ├── dbus_common_i.h ├── dbus_dict_helpers.c ├── dbus_dict_helpers.h ├── dbus_new.c ├── dbus_new.h ├── dbus_new_handlers.c ├── dbus_new_handlers.h ├── dbus_new_handlers_p2p.c ├── dbus_new_handlers_p2p.h ├── dbus_new_handlers_wps.c ├── dbus_new_helpers.c ├── dbus_new_helpers.h ├── dbus_new_introspect.c ├── dbus_old.c ├── dbus_old.h ├── dbus_old_handlers.c ├── dbus_old_handlers.h ├── dbus_old_handlers_wps.c ├── fi.epitest.hostap.WPASupplicant.service.in └── fi.w1.wpa_supplicant1.service.in ├── defconfig ├── doc └── docbook │ ├── .gitignore │ ├── Makefile │ ├── eapol_test.sgml │ ├── wpa_background.sgml │ ├── wpa_cli.sgml │ ├── wpa_gui.sgml │ ├── wpa_passphrase.sgml │ ├── wpa_priv.sgml │ ├── wpa_supplicant.conf.sgml │ └── wpa_supplicant.sgml ├── dpp_supplicant.c ├── dpp_supplicant.h ├── driver_i.h ├── eap_proxy_dummy.mak ├── eap_proxy_dummy.mk ├── eap_register.c ├── eap_testing.txt ├── eapol_test.c ├── eapol_test.py ├── events.c ├── examples ├── 60_wpa_supplicant ├── dbus-listen-preq.py ├── dpp-qrcode.py ├── ieee8021x.conf ├── openCryptoki.conf ├── p2p-action-udhcp.sh ├── p2p-action.sh ├── p2p-nfc.py ├── p2p │ ├── p2p_connect.py │ ├── p2p_disconnect.py │ ├── p2p_find.py │ ├── p2p_flush.py │ ├── p2p_group_add.py │ ├── p2p_invite.py │ ├── p2p_listen.py │ └── p2p_stop_find.py ├── plaintext.conf ├── udhcpd-p2p.conf ├── wep.conf ├── wpa-psk-tkip.conf ├── wpa2-eap-ccmp.conf ├── wpas-dbus-new-getall.py ├── wpas-dbus-new-signals.py ├── wpas-dbus-new-wps.py ├── wpas-dbus-new.py ├── wpas-test.py ├── wps-ap-cli └── wps-nfc.py ├── gas_query.c ├── gas_query.h ├── hs20_supplicant.c ├── hs20_supplicant.h ├── ibss_rsn.c ├── ibss_rsn.h ├── interworking.c ├── interworking.h ├── libwpa_test.c ├── main.c ├── main_none.c ├── main_winmain.c ├── main_winsvc.c ├── mbo.c ├── mesh.c ├── mesh.h ├── mesh_mpm.c ├── mesh_mpm.h ├── mesh_rsn.c ├── mesh_rsn.h ├── nfc_pw_token.c ├── nmake.mak ├── notify.c ├── notify.h ├── offchannel.c ├── offchannel.h ├── op_classes.c ├── p2p_supplicant.c ├── p2p_supplicant.h ├── p2p_supplicant_sd.c ├── preauth_test.c ├── rrm.c ├── scan.c ├── scan.h ├── sme.c ├── sme.h ├── systemd ├── wpa_supplicant-nl80211.service.arg.in ├── wpa_supplicant-wired.service.arg.in ├── wpa_supplicant.service.arg.in └── wpa_supplicant.service.in ├── todo.txt ├── utils └── log2pcap.py ├── vs2005 ├── eapol_test │ └── eapol_test.vcproj ├── win_if_list │ └── win_if_list.vcproj ├── wpa_cli │ └── wpa_cli.vcproj ├── wpa_passphrase │ └── wpa_passphrase.vcproj ├── wpa_supplicant.sln ├── wpa_supplicant │ └── wpa_supplicant.vcproj └── wpasvc │ └── wpasvc.vcproj ├── wifi_display.c ├── wifi_display.h ├── win_example.reg ├── win_if_list.c ├── wmm_ac.c ├── wmm_ac.h ├── wnm_sta.c ├── wnm_sta.h ├── wpa_cli.c ├── wpa_gui-qt4 ├── .gitignore ├── addinterface.cpp ├── addinterface.h ├── eventhistory.cpp ├── eventhistory.h ├── eventhistory.ui ├── icons.qrc ├── icons │ ├── Makefile │ ├── README │ ├── ap.svg │ ├── group.svg │ ├── invitation.svg │ ├── laptop.svg │ └── wpa_gui.svg ├── icons_png.qrc ├── lang │ ├── .gitignore │ └── wpa_gui_de.ts ├── main.cpp ├── networkconfig.cpp ├── networkconfig.h ├── networkconfig.ui ├── peers.cpp ├── peers.h ├── peers.ui ├── scanresults.cpp ├── scanresults.h ├── scanresults.ui ├── scanresultsitem.cpp ├── scanresultsitem.h ├── signalbar.cpp ├── signalbar.h ├── stringquery.cpp ├── stringquery.h ├── userdatarequest.cpp ├── userdatarequest.h ├── userdatarequest.ui ├── wpa_gui.desktop ├── wpa_gui.pro ├── wpagui.cpp ├── wpagui.h ├── wpagui.ui └── wpamsg.h ├── wpa_passphrase.c ├── wpa_priv.c ├── wpa_supplicant.c ├── wpa_supplicant.conf ├── wpa_supplicant_conf.mk ├── wpa_supplicant_conf.sh ├── wpa_supplicant_i.h ├── wpa_supplicant_template.conf ├── wpas_glue.c ├── wpas_glue.h ├── wpas_kay.c ├── wpas_kay.h ├── wpas_module_tests.c ├── wps_supplicant.c └── wps_supplicant.h /hostapd/COPYING: -------------------------------------------------------------------------------- 1 | wpa_supplicant and hostapd 2 | -------------------------- 3 | 4 | Copyright (c) 2002-2018, Jouni Malinen and contributors 5 | All Rights Reserved. 6 | 7 | 8 | See the README file for the current license terms. 9 | 10 | This software was previously distributed under BSD/GPL v2 dual license 11 | terms that allowed either of those license alternatives to be 12 | selected. As of February 11, 2012, the project has chosen to use only 13 | the BSD license option for future distribution. As such, the GPL v2 14 | license option is no longer used. It should be noted that the BSD 15 | license option (the one with advertisement clause removed) is compatible 16 | with GPL and as such, does not prevent use of this software in projects 17 | that use GPL. 18 | 19 | Some of the files may still include pointers to GPL version 2 license 20 | terms. However, such copyright and license notifications are maintained 21 | only for attribution purposes and any distribution of this software 22 | after February 11, 2012 is no longer under the GPL v2 option. 23 | -------------------------------------------------------------------------------- /hostapd/hostapd/config_file.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / Configuration file parser 3 | * Copyright (c) 2003-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef CONFIG_FILE_H 10 | #define CONFIG_FILE_H 11 | 12 | struct hostapd_config * hostapd_config_read(const char *fname); 13 | int hostapd_set_iface(struct hostapd_config *conf, 14 | struct hostapd_bss_config *bss, const char *field, 15 | char *value); 16 | int hostapd_acl_comp(const void *a, const void *b); 17 | int hostapd_add_acl_maclist(struct mac_acl_entry **acl, int *num, 18 | int vlan_id, const u8 *addr); 19 | void hostapd_remove_acl_mac(struct mac_acl_entry **acl, int *num, 20 | const u8 *addr); 21 | 22 | #endif /* CONFIG_FILE_H */ 23 | -------------------------------------------------------------------------------- /hostapd/hostapd/ctrl_iface.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / UNIX domain socket -based control interface 3 | * Copyright (c) 2004, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef CTRL_IFACE_H 10 | #define CTRL_IFACE_H 11 | 12 | #ifndef CONFIG_NO_CTRL_IFACE 13 | int hostapd_ctrl_iface_init(struct hostapd_data *hapd); 14 | void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd); 15 | int hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface); 16 | void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface); 17 | #else /* CONFIG_NO_CTRL_IFACE */ 18 | static inline int hostapd_ctrl_iface_init(struct hostapd_data *hapd) 19 | { 20 | return 0; 21 | } 22 | 23 | static inline void hostapd_ctrl_iface_deinit(struct hostapd_data *hapd) 24 | { 25 | } 26 | 27 | static inline int 28 | hostapd_global_ctrl_iface_init(struct hapd_interfaces *interface) 29 | { 30 | return 0; 31 | } 32 | 33 | static inline void 34 | hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interface) 35 | { 36 | } 37 | #endif /* CONFIG_NO_CTRL_IFACE */ 38 | 39 | #endif /* CTRL_IFACE_H */ 40 | -------------------------------------------------------------------------------- /hostapd/hostapd/eap_register.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP method registration 3 | * Copyright (c) 2004-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_REGISTER_H 10 | #define EAP_REGISTER_H 11 | 12 | int eap_server_register_methods(void); 13 | 14 | #endif /* EAP_REGISTER_H */ 15 | -------------------------------------------------------------------------------- /hostapd/hostapd/hapd_module_tests.c: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd module tests 3 | * Copyright (c) 2014, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "utils/includes.h" 10 | 11 | #include "utils/common.h" 12 | #include "utils/module_tests.h" 13 | 14 | int hapd_module_tests(void) 15 | { 16 | wpa_printf(MSG_INFO, "hostapd module tests"); 17 | return 0; 18 | } 19 | -------------------------------------------------------------------------------- /hostapd/hostapd/hlr_auc_gw.milenage_db: -------------------------------------------------------------------------------- 1 | # Parameters for Milenage (Example algorithms for AKA). 2 | # The example Ki, OPc, and AMF values here are from 3GPP TS 35.208 v6.0.0 3 | # 4.3.20 Test Set 20. SQN is the last used SQN value. 4 | # These values can be used for both UMTS (EAP-AKA) and GSM (EAP-SIM) 5 | # authentication. In case of GSM/EAP-SIM, AMF and SQN values are not used, but 6 | # dummy values will need to be included in this file. 7 | 8 | # IMSI Ki OPc AMF SQN [RES_len] 9 | 232010000000000 90dca4eda45b53cf0f12d7c9c3bc6a89 cb9cccc4b9258e6dca4760379fb82581 61df 000000000000 10 | # Example using truncated 32-bit RES instead of 64-bit default 11 | 232010000000001 90dca4eda45b53cf0f12d7c9c3bc6a89 cb9cccc4b9258e6dca4760379fb82581 61df 000000000000 4 12 | 13 | # These values are from Test Set 19 which has the AMF separation bit set to 1 14 | # and as such, is suitable for EAP-AKA' test. 15 | 555444333222111 5122250214c33e723a5dd523fc145fc0 981d464c7c52eb6e5036234984ad0bcf c3ab 16f3b3f70fc1 16 | -------------------------------------------------------------------------------- /hostapd/hostapd/hostapd.accept: -------------------------------------------------------------------------------- 1 | # List of MAC addresses that are allowed to authenticate (IEEE 802.11) 2 | # with the AP. Optional VLAN ID can be assigned for clients based on the 3 | # MAC address if dynamic VLANs (hostapd.conf dynamic_vlan option) are used. 4 | 00:11:22:33:44:55 5 | 00:66:77:88:99:aa 6 | 00:00:22:33:44:55 1 7 | -------------------------------------------------------------------------------- /hostapd/hostapd/hostapd.android.rc: -------------------------------------------------------------------------------- 1 | # 2 | # init.rc fragment for hostapd on Android 3 | # Copyright (c) 2002-2016, Jouni Malinen 4 | # 5 | # This software may be distributed under the terms of the BSD license. 6 | # See README for more details. 7 | # 8 | 9 | on post-fs-data 10 | mkdir /data/misc/wifi/hostapd 0770 wifi wifi 11 | 12 | service hostapd /vendor/bin/hostapd \ 13 | /data/misc/wifi/hostapd.conf 14 | class main 15 | user wifi 16 | writepid /data/misc/wifi/hostapd.pid 17 | group wifi 18 | disabled 19 | oneshot 20 | -------------------------------------------------------------------------------- /hostapd/hostapd/hostapd.deny: -------------------------------------------------------------------------------- 1 | # List of MAC addresses that are not allowed to authenticate (IEEE 802.11) 2 | # with the AP. 3 | 00:20:30:40:50:60 4 | 00:ab:cd:ef:12:34 5 | 00:00:30:40:50:60 6 | -------------------------------------------------------------------------------- /hostapd/hostapd/hostapd.eap_user_sqlite: -------------------------------------------------------------------------------- 1 | CREATE TABLE users( 2 | identity TEXT PRIMARY KEY, 3 | methods TEXT, 4 | password TEXT, 5 | remediation TEXT, 6 | phase2 INTEGER, 7 | t_c_timestamp INTEGER 8 | ); 9 | 10 | CREATE TABLE wildcards( 11 | identity TEXT PRIMARY KEY, 12 | methods TEXT 13 | ); 14 | 15 | INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1); 16 | INSERT INTO users(identity,methods,password,phase2) VALUES ('DOMAIN\mschapv2 user','TTLS-MSCHAPV2','password',1); 17 | 18 | INSERT INTO wildcards(identity,methods) VALUES ('','TTLS,TLS'); 19 | INSERT INTO wildcards(identity,methods) VALUES ('0','AKA'); 20 | 21 | CREATE TABLE authlog( 22 | timestamp TEXT, 23 | session TEXT, 24 | nas_ip TEXT, 25 | username TEXT, 26 | note TEXT 27 | ); 28 | 29 | CREATE TABLE pending_tc( 30 | mac_addr TEXT PRIMARY KEY, 31 | identity TEXT 32 | ); 33 | 34 | CREATE TABLE current_sessions( 35 | mac_addr TEXT PRIMARY KEY, 36 | identity TEXT, 37 | start_time TEXT, 38 | nas TEXT, 39 | hs20_t_c_filtering BOOLEAN, 40 | waiting_coa_ack BOOLEAN, 41 | coa_ack_received BOOLEAN 42 | ); 43 | -------------------------------------------------------------------------------- /hostapd/hostapd/hostapd.radius_clients: -------------------------------------------------------------------------------- 1 | # RADIUS client configuration for the RADIUS server 2 | 10.1.2.3 secret passphrase 3 | 192.168.1.0/24 another very secret passphrase 4 | 0.0.0.0/0 radius 5 | -------------------------------------------------------------------------------- /hostapd/hostapd/hostapd.sim_db: -------------------------------------------------------------------------------- 1 | # Example GSM authentication triplet file for EAP-SIM authenticator 2 | # IMSI:Kc:SRES:RAND 3 | # IMSI: ASCII string (numbers) 4 | # Kc: hex, 8 octets 5 | # SRES: hex, 4 octets 6 | # RAND: hex, 16 octets 7 | 234567898765432:A0A1A2A3A4A5A6A7:D1D2D3D4:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 8 | 234567898765432:B0B1B2B3B4B5B6B7:E1E2E3E4:BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB 9 | 234567898765432:C0C1C2C3C4C5C6C7:F1F2F3F4:CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC 10 | -------------------------------------------------------------------------------- /hostapd/hostapd/hostapd.vlan: -------------------------------------------------------------------------------- 1 | # VLAN ID to network interface mapping 2 | 1 vlan1 3 | 2 vlan2 4 | 3 vlan3 5 | 100 guest 6 | # Optional wildcard entry matching all VLAN IDs. The first # in the interface 7 | # name will be replaced with the VLAN ID. The network interfaces are created 8 | # (and removed) dynamically based on the use. 9 | * vlan# 10 | -------------------------------------------------------------------------------- /hostapd/hostapd/hostapd.wpa_psk: -------------------------------------------------------------------------------- 1 | # List of WPA PSKs. Each line, except for empty lines and lines starting 2 | # with #, must contain a MAC address and PSK separated with a space. 3 | # Special MAC address 00:00:00:00:00:00 can be used to configure PSKs that 4 | # anyone can use. PSK can be configured as an ASCII passphrase of 8..63 5 | # characters or as a 256-bit hex PSK (64 hex digits). 6 | 00:00:00:00:00:00 secret passphrase 7 | 00:11:22:33:44:55 another passphrase 8 | 00:22:33:44:55:66 0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef 9 | 00:00:00:00:00:00 another passphrase for all STAs 10 | -------------------------------------------------------------------------------- /hostapd/hostapd/logwatch/README: -------------------------------------------------------------------------------- 1 | Logwatch is a utility for analyzing system logs and provide a human 2 | readable summary. This directory has a configuration file and a log 3 | analyzer script for parsing hostapd system log entries for logwatch. 4 | These files can be installed by copying them to following locations: 5 | 6 | /etc/log.d/conf/services/hostapd.conf 7 | /etc/log.d/scripts/services/hostapd 8 | 9 | More information about logwatch is available from http://www.logwatch.org/ 10 | -------------------------------------------------------------------------------- /hostapd/hostapd/logwatch/hostapd.conf: -------------------------------------------------------------------------------- 1 | # Logwatch configuration for hostapd 2 | # 3 | # Copyright 2005 Henrik Brix Andersen 4 | # Distributed under the terms of the GNU General Public License v2 5 | # Alternatively, this file may be distributed under the terms of the BSD License 6 | 7 | Title = "hostapd" 8 | LogFile = messages 9 | *OnlyService = hostapd 10 | *RemoveHeaders 11 | -------------------------------------------------------------------------------- /hostapd/hostapd/nt_password_hash.c: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd - Plaintext password to NtPasswordHash 3 | * Copyright (c) 2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "crypto/ms_funcs.h" 13 | 14 | 15 | int main(int argc, char *argv[]) 16 | { 17 | unsigned char password_hash[16]; 18 | size_t i; 19 | char *password, buf[64], *pos; 20 | 21 | if (argc > 1) 22 | password = argv[1]; 23 | else { 24 | if (fgets(buf, sizeof(buf), stdin) == NULL) { 25 | printf("Failed to read password\n"); 26 | return 1; 27 | } 28 | buf[sizeof(buf) - 1] = '\0'; 29 | pos = buf; 30 | while (*pos != '\0') { 31 | if (*pos == '\r' || *pos == '\n') { 32 | *pos = '\0'; 33 | break; 34 | } 35 | pos++; 36 | } 37 | password = buf; 38 | } 39 | 40 | if (nt_password_hash((u8 *) password, strlen(password), password_hash)) 41 | return -1; 42 | for (i = 0; i < sizeof(password_hash); i++) 43 | printf("%02x", password_hash[i]); 44 | printf("\n"); 45 | 46 | return 0; 47 | } 48 | -------------------------------------------------------------------------------- /hostapd/src/Makefile: -------------------------------------------------------------------------------- 1 | SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p pae radius rsn_supp tls utils wps 2 | SUBDIRS += fst 3 | 4 | all: 5 | for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done 6 | 7 | clean: 8 | for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d clean; done 9 | rm -f *~ 10 | 11 | install: 12 | for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d install; done 13 | -------------------------------------------------------------------------------- /hostapd/src/ap/acs.h: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS - Automatic Channel Selection module 3 | * Copyright (c) 2011, Atheros Communications 4 | * Copyright (c) 2013, Qualcomm Atheros, Inc. 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef ACS_H 11 | #define ACS_H 12 | 13 | #ifdef CONFIG_ACS 14 | 15 | enum hostapd_chan_status acs_init(struct hostapd_iface *iface); 16 | void acs_cleanup(struct hostapd_iface *iface); 17 | 18 | #else /* CONFIG_ACS */ 19 | 20 | static inline enum hostapd_chan_status acs_init(struct hostapd_iface *iface) 21 | { 22 | wpa_printf(MSG_ERROR, "ACS was disabled on your build, rebuild hostapd with CONFIG_ACS=y or set channel"); 23 | return HOSTAPD_CHAN_INVALID; 24 | } 25 | 26 | static inline void acs_cleanup(struct hostapd_iface *iface) 27 | { 28 | } 29 | 30 | #endif /* CONFIG_ACS */ 31 | 32 | #endif /* ACS_H */ 33 | -------------------------------------------------------------------------------- /hostapd/src/ap/ap_mlme.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / IEEE 802.11 MLME 3 | * Copyright 2003, Jouni Malinen 4 | * Copyright 2003-2004, Instant802 Networks, Inc. 5 | * Copyright 2005-2006, Devicescape Software, Inc. 6 | * 7 | * This software may be distributed under the terms of the BSD license. 8 | * See README for more details. 9 | */ 10 | 11 | #ifndef MLME_H 12 | #define MLME_H 13 | 14 | void mlme_authenticate_indication(struct hostapd_data *hapd, 15 | struct sta_info *sta); 16 | 17 | void mlme_deauthenticate_indication(struct hostapd_data *hapd, 18 | struct sta_info *sta, u16 reason_code); 19 | 20 | void mlme_associate_indication(struct hostapd_data *hapd, 21 | struct sta_info *sta); 22 | 23 | void mlme_reassociate_indication(struct hostapd_data *hapd, 24 | struct sta_info *sta); 25 | 26 | void mlme_disassociate_indication(struct hostapd_data *hapd, 27 | struct sta_info *sta, u16 reason_code); 28 | 29 | void mlme_michaelmicfailure_indication(struct hostapd_data *hapd, 30 | const u8 *addr); 31 | 32 | void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta); 33 | 34 | #endif /* MLME_H */ 35 | -------------------------------------------------------------------------------- /hostapd/src/ap/authsrv.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Authentication server setup 3 | * Copyright (c) 2002-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef AUTHSRV_H 10 | #define AUTHSRV_H 11 | 12 | int authsrv_init(struct hostapd_data *hapd); 13 | void authsrv_deinit(struct hostapd_data *hapd); 14 | 15 | #endif /* AUTHSRV_H */ 16 | -------------------------------------------------------------------------------- /hostapd/src/ap/bss_load.h: -------------------------------------------------------------------------------- 1 | /* 2 | * BSS load update 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BSS_LOAD_UPDATE_H 10 | #define BSS_LOAD_UPDATE_H 11 | 12 | 13 | int bss_load_update_init(struct hostapd_data *hapd); 14 | void bss_load_update_deinit(struct hostapd_data *hapd); 15 | 16 | 17 | #endif /* BSS_LOAD_UPDATE_H */ 18 | -------------------------------------------------------------------------------- /hostapd/src/ap/dhcp_snoop.h: -------------------------------------------------------------------------------- 1 | /* 2 | * DHCP snooping for Proxy ARP 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DHCP_SNOOP_H 10 | #define DHCP_SNOOP_H 11 | 12 | #ifdef CONFIG_PROXYARP 13 | 14 | int dhcp_snoop_init(struct hostapd_data *hapd); 15 | void dhcp_snoop_deinit(struct hostapd_data *hapd); 16 | 17 | #else /* CONFIG_PROXYARP */ 18 | 19 | static inline int dhcp_snoop_init(struct hostapd_data *hapd) 20 | { 21 | return 0; 22 | } 23 | 24 | static inline void dhcp_snoop_deinit(struct hostapd_data *hapd) 25 | { 26 | } 27 | 28 | #endif /* CONFIG_PROXYARP */ 29 | 30 | #endif /* DHCP_SNOOP_H */ 31 | -------------------------------------------------------------------------------- /hostapd/src/ap/eth_p_oui.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / IEEE 802 OUI Extended Ethertype 3 | * Copyright (c) 2016, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef ETH_P_OUI_H 10 | #define ETH_P_OUI_H 11 | 12 | struct eth_p_oui_ctx; 13 | struct hostapd_data; 14 | 15 | /* rx_callback only gets payload after OUI passed as buf */ 16 | struct eth_p_oui_ctx * 17 | eth_p_oui_register(struct hostapd_data *hapd, const char *ifname, u8 oui_suffix, 18 | void (*rx_callback)(void *ctx, const u8 *src_addr, 19 | const u8 *dst_addr, u8 oui_suffix, 20 | const u8 *buf, size_t len), 21 | void *rx_callback_ctx); 22 | void eth_p_oui_unregister(struct eth_p_oui_ctx *eth_p_oui); 23 | int eth_p_oui_send(struct eth_p_oui_ctx *ctx, const u8 *src_addr, 24 | const u8 *dst_addr, const u8 *buf, size_t len); 25 | void eth_p_oui_deliver(struct eth_p_oui_ctx *ctx, const u8 *src_addr, 26 | const u8 *dst_addr, const u8 *buf, size_t len); 27 | 28 | #endif /* ETH_P_OUI_H */ 29 | -------------------------------------------------------------------------------- /hostapd/src/ap/fils_hlp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * FILS HLP request processing 3 | * Copyright (c) 2017, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef FILS_HLP_H 10 | #define FILS_HLP_H 11 | 12 | int fils_process_hlp(struct hostapd_data *hapd, struct sta_info *sta, 13 | const u8 *pos, int left); 14 | 15 | #ifdef CONFIG_FILS 16 | 17 | void fils_hlp_deinit(struct hostapd_data *hapd); 18 | 19 | #else /* CONFIG_FILS */ 20 | 21 | static inline void fils_hlp_deinit(struct hostapd_data *hapd) 22 | { 23 | } 24 | 25 | #endif /* CONFIG_FILS */ 26 | 27 | #endif /* FILS_HLP_H */ 28 | -------------------------------------------------------------------------------- /hostapd/src/ap/hs20.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Hotspot 2.0 AP ANQP processing 3 | * Copyright (c) 2011-2013, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef HS20_H 10 | #define HS20_H 11 | 12 | struct hostapd_data; 13 | 14 | u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid); 15 | u8 * hostapd_eid_osen(struct hostapd_data *hapd, u8 *eid); 16 | int hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr, 17 | u8 osu_method, const char *url); 18 | int hs20_send_wnm_notification_deauth_req(struct hostapd_data *hapd, 19 | const u8 *addr, 20 | const struct wpabuf *payload); 21 | int hs20_send_wnm_notification_t_c(struct hostapd_data *hapd, 22 | const u8 *addr, const char *url); 23 | void hs20_t_c_filtering(struct hostapd_data *hapd, struct sta_info *sta, 24 | int enabled); 25 | 26 | #endif /* HS20_H */ 27 | -------------------------------------------------------------------------------- /hostapd/src/ap/iapp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / IEEE 802.11F-2003 Inter-Access Point Protocol (IAPP) 3 | * Copyright (c) 2002-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef IAPP_H 10 | #define IAPP_H 11 | 12 | struct iapp_data; 13 | 14 | #ifdef CONFIG_IAPP 15 | 16 | void iapp_new_station(struct iapp_data *iapp, struct sta_info *sta); 17 | struct iapp_data * iapp_init(struct hostapd_data *hapd, const char *iface); 18 | void iapp_deinit(struct iapp_data *iapp); 19 | 20 | #else /* CONFIG_IAPP */ 21 | 22 | static inline void iapp_new_station(struct iapp_data *iapp, 23 | struct sta_info *sta) 24 | { 25 | } 26 | 27 | static inline struct iapp_data * iapp_init(struct hostapd_data *hapd, 28 | const char *iface) 29 | { 30 | return NULL; 31 | } 32 | 33 | static inline void iapp_deinit(struct iapp_data *iapp) 34 | { 35 | } 36 | 37 | #endif /* CONFIG_IAPP */ 38 | 39 | #endif /* IAPP_H */ 40 | -------------------------------------------------------------------------------- /hostapd/src/ap/ieee802_11_auth.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / IEEE 802.11 authentication (ACL) 3 | * Copyright (c) 2003-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef IEEE802_11_AUTH_H 10 | #define IEEE802_11_AUTH_H 11 | 12 | enum { 13 | HOSTAPD_ACL_REJECT = 0, 14 | HOSTAPD_ACL_ACCEPT = 1, 15 | HOSTAPD_ACL_PENDING = 2, 16 | HOSTAPD_ACL_ACCEPT_TIMEOUT = 3 17 | }; 18 | 19 | int hostapd_check_acl(struct hostapd_data *hapd, const u8 *addr, 20 | struct vlan_description *vlan_id); 21 | int hostapd_allowed_address(struct hostapd_data *hapd, const u8 *addr, 22 | const u8 *msg, size_t len, u32 *session_timeout, 23 | u32 *acct_interim_interval, 24 | struct vlan_description *vlan_id, 25 | struct hostapd_sta_wpa_psk_short **psk, 26 | char **identity, char **radius_cui, 27 | int is_probe_req); 28 | int hostapd_acl_init(struct hostapd_data *hapd); 29 | void hostapd_acl_deinit(struct hostapd_data *hapd); 30 | void hostapd_free_psk_list(struct hostapd_sta_wpa_psk_short *psk); 31 | void hostapd_acl_expire(struct hostapd_data *hapd); 32 | 33 | #endif /* IEEE802_11_AUTH_H */ 34 | -------------------------------------------------------------------------------- /hostapd/src/ap/ndisc_snoop.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Neighbor Discovery snooping for Proxy ARP 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef NDISC_SNOOP_H 10 | #define NDISC_SNOOP_H 11 | 12 | #if defined(CONFIG_PROXYARP) && defined(CONFIG_IPV6) 13 | 14 | int ndisc_snoop_init(struct hostapd_data *hapd); 15 | void ndisc_snoop_deinit(struct hostapd_data *hapd); 16 | void sta_ip6addr_del(struct hostapd_data *hapd, struct sta_info *sta); 17 | 18 | #else /* CONFIG_PROXYARP && CONFIG_IPV6 */ 19 | 20 | static inline int ndisc_snoop_init(struct hostapd_data *hapd) 21 | { 22 | return 0; 23 | } 24 | 25 | static inline void ndisc_snoop_deinit(struct hostapd_data *hapd) 26 | { 27 | } 28 | 29 | static inline void sta_ip6addr_del(struct hostapd_data *hapd, 30 | struct sta_info *sta) 31 | { 32 | } 33 | 34 | #endif /* CONFIG_PROXYARP && CONFIG_IPV6 */ 35 | 36 | #endif /* NDISC_SNOOP_H */ 37 | -------------------------------------------------------------------------------- /hostapd/src/ap/neighbor_db.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / Neighboring APs DB 3 | * Copyright(c) 2013 - 2016 Intel Mobile Communications GmbH. 4 | * Copyright(c) 2011 - 2016 Intel Corporation. All rights reserved. 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef NEIGHBOR_DB_H 11 | #define NEIGHBOR_DB_H 12 | 13 | struct hostapd_neighbor_entry * 14 | hostapd_neighbor_get(struct hostapd_data *hapd, const u8 *bssid, 15 | const struct wpa_ssid_value *ssid); 16 | int hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid, 17 | const struct wpa_ssid_value *ssid, 18 | const struct wpabuf *nr, const struct wpabuf *lci, 19 | const struct wpabuf *civic, int stationary); 20 | int hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid, 21 | const struct wpa_ssid_value *ssid); 22 | void hostpad_free_neighbor_db(struct hostapd_data *hapd); 23 | 24 | #endif /* NEIGHBOR_DB_H */ 25 | -------------------------------------------------------------------------------- /hostapd/src/ap/p2p_hostapd.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / P2P integration 3 | * Copyright (c) 2009-2010, Atheros Communications 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef P2P_HOSTAPD_H 10 | #define P2P_HOSTAPD_H 11 | 12 | #ifdef CONFIG_P2P 13 | 14 | int hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, 15 | char *buf, size_t buflen); 16 | int hostapd_p2p_set_noa(struct hostapd_data *hapd, u8 count, int start, 17 | int duration); 18 | void hostapd_p2p_non_p2p_sta_connected(struct hostapd_data *hapd); 19 | void hostapd_p2p_non_p2p_sta_disconnected(struct hostapd_data *hapd); 20 | 21 | 22 | #else /* CONFIG_P2P */ 23 | 24 | static inline int hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, 25 | struct sta_info *sta, 26 | char *buf, size_t buflen) 27 | { 28 | return 0; 29 | } 30 | 31 | #endif /* CONFIG_P2P */ 32 | 33 | u8 * hostapd_eid_p2p_manage(struct hostapd_data *hapd, u8 *eid); 34 | 35 | #endif /* P2P_HOSTAPD_H */ 36 | -------------------------------------------------------------------------------- /hostapd/src/ap/taxonomy.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / Station client taxonomy 3 | * Copyright (c) 2015 Google, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TAXONOMY_H 10 | #define TAXONOMY_H 11 | 12 | void taxonomy_sta_info_probe_req(const struct hostapd_data *hapd, 13 | struct sta_info *sta, 14 | const u8 *ie, size_t ie_len); 15 | void taxonomy_hostapd_sta_info_probe_req(const struct hostapd_data *hapd, 16 | struct hostapd_sta_info *sta, 17 | const u8 *ie, size_t ie_len); 18 | void taxonomy_sta_info_assoc_req(const struct hostapd_data *hapd, 19 | struct sta_info *sta, 20 | const u8 *ie, size_t ie_len); 21 | int retrieve_sta_taxonomy(const struct hostapd_data *hapd, 22 | struct sta_info *sta, char *buf, size_t buflen); 23 | 24 | #endif /* TAXONOMY_H */ 25 | -------------------------------------------------------------------------------- /hostapd/src/ap/tkip_countermeasures.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / TKIP countermeasures 3 | * Copyright (c) 2002-2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TKIP_COUNTERMEASURES_H 10 | #define TKIP_COUNTERMEASURES_H 11 | 12 | int michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local); 13 | void ieee80211_tkip_countermeasures_deinit(struct hostapd_data *hapd); 14 | 15 | #endif /* TKIP_COUNTERMEASURES_H */ 16 | -------------------------------------------------------------------------------- /hostapd/src/ap/vlan.c: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / VLAN definition 3 | * Copyright (c) 2016, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "utils/includes.h" 10 | 11 | #include "utils/common.h" 12 | #include "ap/vlan.h" 13 | 14 | /* compare the two arguments, NULL is treated as empty 15 | * return zero iff they are equal 16 | */ 17 | int vlan_compare(struct vlan_description *a, struct vlan_description *b) 18 | { 19 | int i; 20 | const int a_empty = !a || !a->notempty; 21 | const int b_empty = !b || !b->notempty; 22 | 23 | if (a_empty && b_empty) 24 | return 0; 25 | if (a_empty || b_empty) 26 | return 1; 27 | if (a->untagged != b->untagged) 28 | return 1; 29 | for (i = 0; i < MAX_NUM_TAGGED_VLAN; i++) { 30 | if (a->tagged[i] != b->tagged[i]) 31 | return 1; 32 | } 33 | return 0; 34 | } 35 | -------------------------------------------------------------------------------- /hostapd/src/ap/vlan.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / VLAN definition 3 | * Copyright (c) 2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef VLAN_H 10 | #define VLAN_H 11 | 12 | #define MAX_NUM_TAGGED_VLAN 32 13 | 14 | struct vlan_description { 15 | int notempty; /* 0 : no vlan information present, 1: else */ 16 | int untagged; /* >0 802.1q vid */ 17 | int tagged[MAX_NUM_TAGGED_VLAN]; /* first k items, ascending order */ 18 | }; 19 | 20 | #ifndef CONFIG_NO_VLAN 21 | int vlan_compare(struct vlan_description *a, struct vlan_description *b); 22 | #else /* CONFIG_NO_VLAN */ 23 | static inline int 24 | vlan_compare(struct vlan_description *a, struct vlan_description *b) 25 | { 26 | return 0; 27 | } 28 | #endif /* CONFIG_NO_VLAN */ 29 | 30 | #endif /* VLAN_H */ 31 | -------------------------------------------------------------------------------- /hostapd/src/ap/vlan_util.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / VLAN netlink/ioctl api 3 | * Copyright (c) 2012, Michael Braun 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef VLAN_UTIL_H 10 | #define VLAN_UTIL_H 11 | 12 | struct hostapd_data; 13 | struct hostapd_vlan; 14 | struct full_dynamic_vlan; 15 | 16 | int vlan_add(const char *if_name, int vid, const char *vlan_if_name); 17 | int vlan_rem(const char *if_name); 18 | int vlan_set_name_type(unsigned int name_type); 19 | 20 | int ifconfig_helper(const char *if_name, int up); 21 | int ifconfig_up(const char *if_name); 22 | int iface_exists(const char *ifname); 23 | int vlan_if_remove(struct hostapd_data *hapd, struct hostapd_vlan *vlan); 24 | 25 | struct full_dynamic_vlan * 26 | full_dynamic_vlan_init(struct hostapd_data *hapd); 27 | void full_dynamic_vlan_deinit(struct full_dynamic_vlan *priv); 28 | void vlan_newlink(const char *ifname, struct hostapd_data *hapd); 29 | void vlan_dellink(const char *ifname, struct hostapd_data *hapd); 30 | 31 | #endif /* VLAN_UTIL_H */ 32 | -------------------------------------------------------------------------------- /hostapd/src/ap/wmm.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / WMM (Wi-Fi Multimedia) 3 | * Copyright 2002-2003, Instant802 Networks, Inc. 4 | * Copyright 2005-2006, Devicescape Software, Inc. 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef WME_H 11 | #define WME_H 12 | 13 | struct ieee80211_mgmt; 14 | struct wmm_tspec_element; 15 | 16 | u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid); 17 | int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid, 18 | size_t len); 19 | void hostapd_wmm_action(struct hostapd_data *hapd, 20 | const struct ieee80211_mgmt *mgmt, size_t len); 21 | int wmm_process_tspec(struct wmm_tspec_element *tspec); 22 | 23 | #endif /* WME_H */ 24 | -------------------------------------------------------------------------------- /hostapd/src/ap/wnm_ap.h: -------------------------------------------------------------------------------- 1 | /* 2 | * IEEE 802.11v WNM related functions and structures 3 | * Copyright (c) 2011-2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef WNM_AP_H 10 | #define WNM_AP_H 11 | 12 | struct sta_info; 13 | 14 | int ieee802_11_rx_wnm_action_ap(struct hostapd_data *hapd, 15 | const struct ieee80211_mgmt *mgmt, size_t len); 16 | int wnm_send_disassoc_imminent(struct hostapd_data *hapd, 17 | struct sta_info *sta, int disassoc_timer); 18 | int wnm_send_ess_disassoc_imminent(struct hostapd_data *hapd, 19 | struct sta_info *sta, const char *url, 20 | int disassoc_timer); 21 | int wnm_send_bss_tm_req(struct hostapd_data *hapd, struct sta_info *sta, 22 | u8 req_mode, int disassoc_timer, u8 valid_int, 23 | const u8 *bss_term_dur, const char *url, 24 | const u8 *nei_rep, size_t nei_rep_len, 25 | const u8 *mbo_attrs, size_t mbo_len); 26 | void ap_sta_reset_steer_flag_timer(void *eloop_ctx, void *timeout_ctx); 27 | int wnm_send_coloc_intf_req(struct hostapd_data *hapd, struct sta_info *sta, 28 | unsigned int auto_report, unsigned int timeout); 29 | 30 | #endif /* WNM_AP_H */ 31 | -------------------------------------------------------------------------------- /hostapd/src/ap/wpa_auth_glue.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / WPA authenticator glue code 3 | * Copyright (c) 2002-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef WPA_AUTH_GLUE_H 10 | #define WPA_AUTH_GLUE_H 11 | 12 | int hostapd_setup_wpa(struct hostapd_data *hapd); 13 | void hostapd_reconfig_wpa(struct hostapd_data *hapd); 14 | void hostapd_deinit_wpa(struct hostapd_data *hapd); 15 | 16 | #endif /* WPA_AUTH_GLUE_H */ 17 | -------------------------------------------------------------------------------- /hostapd/src/common/Makefile: -------------------------------------------------------------------------------- 1 | all: libcommon.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libcommon.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_IEEE80211R 12 | CFLAGS += -DCONFIG_IEEE80211W 13 | CFLAGS += -DCONFIG_HS20 14 | CFLAGS += -DCONFIG_SAE 15 | CFLAGS += -DCONFIG_SUITE 16 | CFLAGS += -DCONFIG_SUITEB 17 | 18 | LIB_OBJS= \ 19 | gas.o \ 20 | hw_features_common.o \ 21 | ieee802_11_common.o \ 22 | sae.o \ 23 | wpa_common.o 24 | 25 | libcommon.a: $(LIB_OBJS) 26 | $(AR) crT $@ $? 27 | 28 | -include $(OBJS:%.o=%.d) 29 | -------------------------------------------------------------------------------- /hostapd/src/common/linux_bridge.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Linux bridge configuration kernel interface 3 | * Copyright (c) 2016, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef LINUX_BRIDGE_H 10 | #define LINUX_BRIDGE_H 11 | 12 | /* This interface is defined in linux/if_bridge.h */ 13 | 14 | #define BRCTL_GET_VERSION 0 15 | #define BRCTL_GET_BRIDGES 1 16 | #define BRCTL_ADD_BRIDGE 2 17 | #define BRCTL_DEL_BRIDGE 3 18 | #define BRCTL_ADD_IF 4 19 | #define BRCTL_DEL_IF 5 20 | #define BRCTL_GET_BRIDGE_INFO 6 21 | #define BRCTL_GET_PORT_LIST 7 22 | #define BRCTL_SET_BRIDGE_FORWARD_DELAY 8 23 | 24 | #endif /* LINUX_BRIDGE_H */ 25 | -------------------------------------------------------------------------------- /hostapd/src/common/qca-vendor-attr.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Qualcomm Atheros vendor specific attribute definitions 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef QCA_VENDOR_ATTR_H 10 | #define QCA_VENDOR_ATTR_H 11 | 12 | /* 13 | * This file defines some of the attributes used with Qualcomm Atheros OUI 14 | * 00:13:74 in a way that is not suitable for qca-vendor.h, e.g., due to 15 | * compiler dependencies. 16 | */ 17 | 18 | struct qca_avoid_freq_range { 19 | u32 start_freq; 20 | u32 end_freq; 21 | } __attribute__ ((packed)); 22 | 23 | struct qca_avoid_freq_list { 24 | u32 count; 25 | struct qca_avoid_freq_range range[0]; 26 | } __attribute__ ((packed)); 27 | 28 | #endif /* QCA_VENDOR_ATTR_H */ 29 | -------------------------------------------------------------------------------- /hostapd/src/common/version.h: -------------------------------------------------------------------------------- 1 | #ifndef VERSION_H 2 | #define VERSION_H 3 | 4 | #ifndef VERSION_STR_POSTFIX 5 | #define VERSION_STR_POSTFIX "" 6 | #endif /* VERSION_STR_POSTFIX */ 7 | 8 | #ifndef GIT_VERSION_STR_POSTFIX 9 | #define GIT_VERSION_STR_POSTFIX "" 10 | #endif /* GIT_VERSION_STR_POSTFIX */ 11 | 12 | #define VERSION_STR "2.7" VERSION_STR_POSTFIX GIT_VERSION_STR_POSTFIX 13 | 14 | #endif /* VERSION_H */ 15 | -------------------------------------------------------------------------------- /hostapd/src/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | libcrypto.a 2 | -------------------------------------------------------------------------------- /hostapd/src/crypto/aes-encblock.c: -------------------------------------------------------------------------------- 1 | /* 2 | * AES encrypt_block 3 | * 4 | * Copyright (c) 2003-2007, Jouni Malinen 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #include "includes.h" 11 | 12 | #include "common.h" 13 | #include "aes.h" 14 | #include "aes_wrap.h" 15 | 16 | /** 17 | * aes_128_encrypt_block - Perform one AES 128-bit block operation 18 | * @key: Key for AES 19 | * @in: Input data (16 bytes) 20 | * @out: Output of the AES block operation (16 bytes) 21 | * Returns: 0 on success, -1 on failure 22 | */ 23 | int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out) 24 | { 25 | void *ctx; 26 | ctx = aes_encrypt_init(key, 16); 27 | if (ctx == NULL) 28 | return -1; 29 | aes_encrypt(ctx, in, out); 30 | aes_encrypt_deinit(ctx); 31 | return 0; 32 | } 33 | -------------------------------------------------------------------------------- /hostapd/src/crypto/aes.h: -------------------------------------------------------------------------------- 1 | /* 2 | * AES functions 3 | * Copyright (c) 2003-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef AES_H 10 | #define AES_H 11 | 12 | #define AES_BLOCK_SIZE 16 13 | 14 | void * aes_encrypt_init(const u8 *key, size_t len); 15 | int aes_encrypt(void *ctx, const u8 *plain, u8 *crypt); 16 | void aes_encrypt_deinit(void *ctx); 17 | void * aes_decrypt_init(const u8 *key, size_t len); 18 | int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain); 19 | void aes_decrypt_deinit(void *ctx); 20 | 21 | #endif /* AES_H */ 22 | -------------------------------------------------------------------------------- /hostapd/src/crypto/aes_siv.h: -------------------------------------------------------------------------------- 1 | /* 2 | * AES SIV (RFC 5297) 3 | * Copyright (c) 2013 Cozybit, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef AES_SIV_H 10 | #define AES_SIV_H 11 | 12 | int aes_siv_encrypt(const u8 *key, size_t key_len, 13 | const u8 *pw, size_t pwlen, 14 | size_t num_elem, const u8 *addr[], const size_t *len, 15 | u8 *out); 16 | int aes_siv_decrypt(const u8 *key, size_t key_len, 17 | const u8 *iv_crypt, size_t iv_c_len, 18 | size_t num_elem, const u8 *addr[], const size_t *len, 19 | u8 *out); 20 | 21 | #endif /* AES_SIV_H */ 22 | -------------------------------------------------------------------------------- /hostapd/src/crypto/crypto_none.c: -------------------------------------------------------------------------------- 1 | /* 2 | * WPA Supplicant / Empty template functions for crypto wrapper 3 | * Copyright (c) 2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "crypto.h" 13 | 14 | 15 | int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) 16 | { 17 | return 0; 18 | } 19 | 20 | 21 | int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) 22 | { 23 | return 0; 24 | } 25 | -------------------------------------------------------------------------------- /hostapd/src/crypto/des_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * DES and 3DES-EDE ciphers 3 | * Copyright (c) 2006-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DES_I_H 10 | #define DES_I_H 11 | 12 | struct des3_key_s { 13 | u32 ek[3][32]; 14 | u32 dk[3][32]; 15 | }; 16 | 17 | void des_key_setup(const u8 *key, u32 *ek, u32 *dk); 18 | void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt); 19 | void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain); 20 | 21 | void des3_key_setup(const u8 *key, struct des3_key_s *dkey); 22 | void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt); 23 | void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain); 24 | 25 | #endif /* DES_I_H */ 26 | -------------------------------------------------------------------------------- /hostapd/src/crypto/dh_group5.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Diffie-Hellman group 5 operations 3 | * Copyright (c) 2009, 2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "dh_groups.h" 13 | #include "dh_group5.h" 14 | 15 | 16 | void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) 17 | { 18 | wpabuf_free(*publ); 19 | *publ = dh_init(dh_groups_get(5), priv); 20 | if (*publ == NULL) 21 | return NULL; 22 | return (void *) 1; 23 | } 24 | 25 | 26 | void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) 27 | { 28 | return (void *) 1; 29 | } 30 | 31 | 32 | struct wpabuf * dh5_derive_shared(void *ctx, const struct wpabuf *peer_public, 33 | const struct wpabuf *own_private) 34 | { 35 | return dh_derive_shared(peer_public, own_private, dh_groups_get(5)); 36 | } 37 | 38 | 39 | void dh5_free(void *ctx) 40 | { 41 | } 42 | -------------------------------------------------------------------------------- /hostapd/src/crypto/dh_group5.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Diffie-Hellman group 5 operations 3 | * Copyright (c) 2009, 2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DH_GROUP5_H 10 | #define DH_GROUP5_H 11 | 12 | void * dh5_init(struct wpabuf **priv, struct wpabuf **publ); 13 | void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ); 14 | struct wpabuf * dh5_derive_shared(void *ctx, const struct wpabuf *peer_public, 15 | const struct wpabuf *own_private); 16 | void dh5_free(void *ctx); 17 | 18 | #endif /* DH_GROUP5_H */ 19 | -------------------------------------------------------------------------------- /hostapd/src/crypto/dh_groups.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Diffie-Hellman groups 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DH_GROUPS_H 10 | #define DH_GROUPS_H 11 | 12 | struct dh_group { 13 | int id; 14 | const u8 *generator; 15 | size_t generator_len; 16 | const u8 *prime; 17 | size_t prime_len; 18 | const u8 *order; 19 | size_t order_len; 20 | unsigned int safe_prime:1; 21 | }; 22 | 23 | const struct dh_group * dh_groups_get(int id); 24 | struct wpabuf * dh_init(const struct dh_group *dh, struct wpabuf **priv); 25 | struct wpabuf * dh_derive_shared(const struct wpabuf *peer_public, 26 | const struct wpabuf *own_private, 27 | const struct dh_group *dh); 28 | 29 | #endif /* DH_GROUPS_H */ 30 | -------------------------------------------------------------------------------- /hostapd/src/crypto/md5.h: -------------------------------------------------------------------------------- 1 | /* 2 | * MD5 hash implementation and interface functions 3 | * Copyright (c) 2003-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MD5_H 10 | #define MD5_H 11 | 12 | #define MD5_MAC_LEN 16 13 | 14 | int hmac_md5_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_md5(const u8 *key, size_t key_len, const u8 *data, size_t data_len, 17 | u8 *mac); 18 | 19 | #endif /* MD5_H */ 20 | -------------------------------------------------------------------------------- /hostapd/src/crypto/md5_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * MD5 internal definitions 3 | * Copyright (c) 2003-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MD5_I_H 10 | #define MD5_I_H 11 | 12 | struct MD5Context { 13 | u32 buf[4]; 14 | u32 bits[2]; 15 | u8 in[64]; 16 | }; 17 | 18 | void MD5Init(struct MD5Context *context); 19 | void MD5Update(struct MD5Context *context, unsigned char const *buf, 20 | unsigned len); 21 | void MD5Final(unsigned char digest[16], struct MD5Context *context); 22 | 23 | #endif /* MD5_I_H */ 24 | -------------------------------------------------------------------------------- /hostapd/src/crypto/milenage.h: -------------------------------------------------------------------------------- 1 | /* 2 | * UMTS AKA - Milenage algorithm (3GPP TS 35.205, .206, .207, .208) 3 | * Copyright (c) 2006-2007 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MILENAGE_H 10 | #define MILENAGE_H 11 | 12 | void milenage_generate(const u8 *opc, const u8 *amf, const u8 *k, 13 | const u8 *sqn, const u8 *_rand, u8 *autn, u8 *ik, 14 | u8 *ck, u8 *res, size_t *res_len); 15 | int milenage_auts(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *auts, 16 | u8 *sqn); 17 | int gsm_milenage(const u8 *opc, const u8 *k, const u8 *_rand, u8 *sres, 18 | u8 *kc); 19 | int milenage_check(const u8 *opc, const u8 *k, const u8 *sqn, const u8 *_rand, 20 | const u8 *autn, u8 *ik, u8 *ck, u8 *res, size_t *res_len, 21 | u8 *auts); 22 | int milenage_f1(const u8 *opc, const u8 *k, const u8 *_rand, 23 | const u8 *sqn, const u8 *amf, u8 *mac_a, u8 *mac_s); 24 | int milenage_f2345(const u8 *opc, const u8 *k, const u8 *_rand, 25 | u8 *res, u8 *ck, u8 *ik, u8 *ak, u8 *akstar); 26 | 27 | #endif /* MILENAGE_H */ 28 | -------------------------------------------------------------------------------- /hostapd/src/crypto/random.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Random number generator 3 | * Copyright (c) 2010-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef RANDOM_H 10 | #define RANDOM_H 11 | 12 | #ifdef CONFIG_NO_RANDOM_POOL 13 | #define random_init(e) do { } while (0) 14 | #define random_deinit() do { } while (0) 15 | #define random_add_randomness(b, l) do { } while (0) 16 | #define random_get_bytes(b, l) os_get_random((b), (l)) 17 | #define random_pool_ready() 1 18 | #define random_mark_pool_ready() do { } while (0) 19 | #else /* CONFIG_NO_RANDOM_POOL */ 20 | void random_init(const char *entropy_file); 21 | void random_deinit(void); 22 | void random_add_randomness(const void *buf, size_t len); 23 | int random_get_bytes(void *buf, size_t len); 24 | int random_pool_ready(void); 25 | void random_mark_pool_ready(void); 26 | #endif /* CONFIG_NO_RANDOM_POOL */ 27 | 28 | #endif /* RANDOM_H */ 29 | -------------------------------------------------------------------------------- /hostapd/src/crypto/rc4.c: -------------------------------------------------------------------------------- 1 | /* 2 | * RC4 stream cipher 3 | * Copyright (c) 2002-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "crypto.h" 13 | 14 | #define S_SWAP(a,b) do { u8 t = S[a]; S[a] = S[b]; S[b] = t; } while(0) 15 | 16 | int rc4_skip(const u8 *key, size_t keylen, size_t skip, 17 | u8 *data, size_t data_len) 18 | { 19 | u32 i, j, k; 20 | u8 S[256], *pos; 21 | size_t kpos; 22 | 23 | /* Setup RC4 state */ 24 | for (i = 0; i < 256; i++) 25 | S[i] = i; 26 | j = 0; 27 | kpos = 0; 28 | for (i = 0; i < 256; i++) { 29 | j = (j + S[i] + key[kpos]) & 0xff; 30 | kpos++; 31 | if (kpos >= keylen) 32 | kpos = 0; 33 | S_SWAP(i, j); 34 | } 35 | 36 | /* Skip the start of the stream */ 37 | i = j = 0; 38 | for (k = 0; k < skip; k++) { 39 | i = (i + 1) & 0xff; 40 | j = (j + S[i]) & 0xff; 41 | S_SWAP(i, j); 42 | } 43 | 44 | /* Apply RC4 to data */ 45 | pos = data; 46 | for (k = 0; k < data_len; k++) { 47 | i = (i + 1) & 0xff; 48 | j = (j + S[i]) & 0xff; 49 | S_SWAP(i, j); 50 | *pos++ ^= S[(S[i] + S[j]) & 0xff]; 51 | } 52 | 53 | return 0; 54 | } 55 | -------------------------------------------------------------------------------- /hostapd/src/crypto/sha1.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA1 hash implementation and interface functions 3 | * Copyright (c) 2003-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA1_H 10 | #define SHA1_H 11 | 12 | #define SHA1_MAC_LEN 20 13 | 14 | int hmac_sha1_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_sha1(const u8 *key, size_t key_len, const u8 *data, size_t data_len, 17 | u8 *mac); 18 | int sha1_prf(const u8 *key, size_t key_len, const char *label, 19 | const u8 *data, size_t data_len, u8 *buf, size_t buf_len); 20 | int sha1_t_prf(const u8 *key, size_t key_len, const char *label, 21 | const u8 *seed, size_t seed_len, u8 *buf, size_t buf_len); 22 | int __must_check tls_prf_sha1_md5(const u8 *secret, size_t secret_len, 23 | const char *label, const u8 *seed, 24 | size_t seed_len, u8 *out, size_t outlen); 25 | int pbkdf2_sha1(const char *passphrase, const u8 *ssid, size_t ssid_len, 26 | int iterations, u8 *buf, size_t buflen); 27 | #endif /* SHA1_H */ 28 | -------------------------------------------------------------------------------- /hostapd/src/crypto/sha1_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA1 internal definitions 3 | * Copyright (c) 2003-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA1_I_H 10 | #define SHA1_I_H 11 | 12 | struct SHA1Context { 13 | u32 state[5]; 14 | u32 count[2]; 15 | unsigned char buffer[64]; 16 | }; 17 | 18 | void SHA1Init(struct SHA1Context *context); 19 | void SHA1Update(struct SHA1Context *context, const void *data, u32 len); 20 | void SHA1Final(unsigned char digest[20], struct SHA1Context *context); 21 | void SHA1Transform(u32 state[5], const unsigned char buffer[64]); 22 | 23 | #endif /* SHA1_I_H */ 24 | -------------------------------------------------------------------------------- /hostapd/src/crypto/sha256.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA256 hash implementation and interface functions 3 | * Copyright (c) 2003-2016, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA256_H 10 | #define SHA256_H 11 | 12 | #define SHA256_MAC_LEN 32 13 | 14 | int hmac_sha256_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_sha256(const u8 *key, size_t key_len, const u8 *data, 17 | size_t data_len, u8 *mac); 18 | int sha256_prf(const u8 *key, size_t key_len, const char *label, 19 | const u8 *data, size_t data_len, u8 *buf, size_t buf_len); 20 | int sha256_prf_bits(const u8 *key, size_t key_len, const char *label, 21 | const u8 *data, size_t data_len, u8 *buf, 22 | size_t buf_len_bits); 23 | void tls_prf_sha256(const u8 *secret, size_t secret_len, 24 | const char *label, const u8 *seed, size_t seed_len, 25 | u8 *out, size_t outlen); 26 | int hmac_sha256_kdf(const u8 *secret, size_t secret_len, 27 | const char *label, const u8 *seed, size_t seed_len, 28 | u8 *out, size_t outlen); 29 | 30 | #endif /* SHA256_H */ 31 | -------------------------------------------------------------------------------- /hostapd/src/crypto/sha256_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA-256 internal definitions 3 | * Copyright (c) 2003-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA256_I_H 10 | #define SHA256_I_H 11 | 12 | #define SHA256_BLOCK_SIZE 64 13 | 14 | struct sha256_state { 15 | u64 length; 16 | u32 state[8], curlen; 17 | u8 buf[SHA256_BLOCK_SIZE]; 18 | }; 19 | 20 | void sha256_init(struct sha256_state *md); 21 | int sha256_process(struct sha256_state *md, const unsigned char *in, 22 | unsigned long inlen); 23 | int sha256_done(struct sha256_state *md, unsigned char *out); 24 | 25 | #endif /* SHA256_I_H */ 26 | -------------------------------------------------------------------------------- /hostapd/src/crypto/sha384.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA384 hash implementation and interface functions 3 | * Copyright (c) 2015-2017, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA384_H 10 | #define SHA384_H 11 | 12 | #define SHA384_MAC_LEN 48 13 | 14 | int hmac_sha384_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_sha384(const u8 *key, size_t key_len, const u8 *data, 17 | size_t data_len, u8 *mac); 18 | int sha384_prf(const u8 *key, size_t key_len, const char *label, 19 | const u8 *data, size_t data_len, u8 *buf, size_t buf_len); 20 | int sha384_prf_bits(const u8 *key, size_t key_len, const char *label, 21 | const u8 *data, size_t data_len, u8 *buf, 22 | size_t buf_len_bits); 23 | int hmac_sha384_kdf(const u8 *secret, size_t secret_len, 24 | const char *label, const u8 *seed, size_t seed_len, 25 | u8 *out, size_t outlen); 26 | 27 | #endif /* SHA384_H */ 28 | -------------------------------------------------------------------------------- /hostapd/src/crypto/sha384_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA-384 internal definitions 3 | * Copyright (c) 2015, Pali Rohár 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA384_I_H 10 | #define SHA384_I_H 11 | 12 | #include "sha512_i.h" 13 | 14 | #define SHA384_BLOCK_SIZE SHA512_BLOCK_SIZE 15 | 16 | #define sha384_state sha512_state 17 | 18 | void sha384_init(struct sha384_state *md); 19 | int sha384_process(struct sha384_state *md, const unsigned char *in, 20 | unsigned long inlen); 21 | int sha384_done(struct sha384_state *md, unsigned char *out); 22 | 23 | #endif /* SHA384_I_H */ 24 | -------------------------------------------------------------------------------- /hostapd/src/crypto/sha512.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA512 hash implementation and interface functions 3 | * Copyright (c) 2015-2017, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA512_H 10 | #define SHA512_H 11 | 12 | #define SHA512_MAC_LEN 64 13 | 14 | int hmac_sha512_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_sha512(const u8 *key, size_t key_len, const u8 *data, 17 | size_t data_len, u8 *mac); 18 | int sha512_prf(const u8 *key, size_t key_len, const char *label, 19 | const u8 *data, size_t data_len, u8 *buf, size_t buf_len); 20 | int sha512_prf_bits(const u8 *key, size_t key_len, const char *label, 21 | const u8 *data, size_t data_len, u8 *buf, 22 | size_t buf_len_bits); 23 | int hmac_sha512_kdf(const u8 *secret, size_t secret_len, 24 | const char *label, const u8 *seed, size_t seed_len, 25 | u8 *out, size_t outlen); 26 | 27 | #endif /* SHA512_H */ 28 | -------------------------------------------------------------------------------- /hostapd/src/crypto/sha512_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA-512 internal definitions 3 | * Copyright (c) 2015, Pali Rohár 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA512_I_H 10 | #define SHA512_I_H 11 | 12 | #define SHA512_BLOCK_SIZE 128 13 | 14 | struct sha512_state { 15 | u64 length, state[8]; 16 | u32 curlen; 17 | u8 buf[SHA512_BLOCK_SIZE]; 18 | }; 19 | 20 | void sha512_init(struct sha512_state *md); 21 | int sha512_process(struct sha512_state *md, const unsigned char *in, 22 | unsigned long inlen); 23 | int sha512_done(struct sha512_state *md, unsigned char *out); 24 | 25 | #endif /* SHA512_I_H */ 26 | -------------------------------------------------------------------------------- /hostapd/src/crypto/tls_openssl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SSL/TLS interface functions for OpenSSL 3 | * Copyright (c) 2004-2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TLS_OPENSSL_H 10 | #define TLS_OPENSSL_H 11 | 12 | enum ocsp_result { 13 | OCSP_GOOD, OCSP_REVOKED, OCSP_NO_RESPONSE, OCSP_INVALID 14 | }; 15 | 16 | enum ocsp_result check_ocsp_resp(SSL_CTX *ssl_ctx, SSL *ssl, X509 *cert, 17 | X509 *issuer, X509 *issuer_issuer); 18 | 19 | #endif /* TLS_OPENSSL_H */ 20 | -------------------------------------------------------------------------------- /hostapd/src/drivers/.gitignore: -------------------------------------------------------------------------------- 1 | build.wpa_supplicant 2 | build.hostapd 3 | -------------------------------------------------------------------------------- /hostapd/src/drivers/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo Nothing to be made. 3 | 4 | clean: 5 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov 6 | rm -f build.wpa_supplicant build.hostapd 7 | 8 | install: 9 | @echo Nothing to be made. 10 | -------------------------------------------------------------------------------- /hostapd/src/drivers/driver_wired_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Common definitions for Wired Ethernet driver interfaces 3 | * Copyright (c) 2005-2009, Jouni Malinen 4 | * Copyright (c) 2004, Gunter Burchardt 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef DRIVER_WIRED_COMMON_H 11 | #define DRIVER_WIRED_COMMON_H 12 | 13 | struct driver_wired_common_data { 14 | char ifname[IFNAMSIZ + 1]; 15 | void *ctx; 16 | 17 | int sock; /* raw packet socket for driver access */ 18 | int pf_sock; 19 | int membership, multi, iff_allmulti, iff_up; 20 | }; 21 | 22 | static const u8 pae_group_addr[ETH_ALEN] = 23 | { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x03 }; 24 | 25 | int wired_multicast_membership(int sock, int ifindex, const u8 *addr, int add); 26 | int driver_wired_get_ssid(void *priv, u8 *ssid); 27 | int driver_wired_get_bssid(void *priv, u8 *bssid); 28 | int driver_wired_get_capa(void *priv, struct wpa_driver_capa *capa); 29 | 30 | int driver_wired_init_common(struct driver_wired_common_data *common, 31 | const char *ifname, void *ctx); 32 | void driver_wired_deinit_common(struct driver_wired_common_data *common); 33 | 34 | #endif /* DRIVER_WIRED_COMMON_H */ 35 | -------------------------------------------------------------------------------- /hostapd/src/drivers/linux_defines.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Linux defines for values that are not yet included in common C libraries 3 | * Copyright (c) 2014, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef LINUX_DEFINES_H 10 | #define LINUX_DEFINES_H 11 | 12 | #ifndef SO_WIFI_STATUS 13 | # if defined(__sparc__) 14 | # define SO_WIFI_STATUS 0x0025 15 | # elif defined(__parisc__) 16 | # define SO_WIFI_STATUS 0x4022 17 | # else 18 | # define SO_WIFI_STATUS 41 19 | # endif 20 | 21 | # define SCM_WIFI_STATUS SO_WIFI_STATUS 22 | #endif 23 | 24 | #ifndef SO_EE_ORIGIN_TXSTATUS 25 | #define SO_EE_ORIGIN_TXSTATUS 4 26 | #endif 27 | 28 | #ifndef PACKET_TX_TIMESTAMP 29 | #define PACKET_TX_TIMESTAMP 16 30 | #endif 31 | 32 | #ifndef IFF_LOWER_UP 33 | #define IFF_LOWER_UP 0x10000 /* driver signals L1 up */ 34 | #endif 35 | #ifndef IFF_DORMANT 36 | #define IFF_DORMANT 0x20000 /* driver signals dormant */ 37 | #endif 38 | 39 | #ifndef IF_OPER_DORMANT 40 | #define IF_OPER_DORMANT 5 41 | #endif 42 | #ifndef IF_OPER_UP 43 | #define IF_OPER_UP 6 44 | #endif 45 | 46 | #endif /* LINUX_DEFINES_H */ 47 | -------------------------------------------------------------------------------- /hostapd/src/drivers/linux_ioctl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Linux ioctl helper functions for driver wrappers 3 | * Copyright (c) 2002-2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef LINUX_IOCTL_H 10 | #define LINUX_IOCTL_H 11 | 12 | int linux_set_iface_flags(int sock, const char *ifname, int dev_up); 13 | int linux_iface_up(int sock, const char *ifname); 14 | int linux_get_ifhwaddr(int sock, const char *ifname, u8 *addr); 15 | int linux_set_ifhwaddr(int sock, const char *ifname, const u8 *addr); 16 | int linux_br_add(int sock, const char *brname); 17 | int linux_br_del(int sock, const char *brname); 18 | int linux_br_add_if(int sock, const char *brname, const char *ifname); 19 | int linux_br_del_if(int sock, const char *brname, const char *ifname); 20 | int linux_br_get(char *brname, const char *ifname); 21 | int linux_master_get(char *master_ifname, const char *ifname); 22 | 23 | #endif /* LINUX_IOCTL_H */ 24 | -------------------------------------------------------------------------------- /hostapd/src/drivers/linux_wext.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Driver interaction with generic Linux Wireless Extensions 3 | * Copyright (c) 2003-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef LINUX_WEXT_H 10 | #define LINUX_WEXT_H 11 | 12 | #ifndef ANDROID 13 | 14 | /* 15 | * Avoid including other kernel header to avoid conflicts with C library 16 | * headers. 17 | */ 18 | #define _LINUX_TYPES_H 19 | #define _LINUX_SOCKET_H 20 | #define _LINUX_IF_H 21 | 22 | #include 23 | #include 24 | typedef uint32_t __u32; 25 | typedef int32_t __s32; 26 | typedef uint16_t __u16; 27 | typedef int16_t __s16; 28 | typedef uint8_t __u8; 29 | #ifndef __user 30 | #define __user 31 | #endif /* __user */ 32 | 33 | #endif /* ANDROID */ 34 | 35 | #include 36 | 37 | #ifndef IW_ENCODE_ALG_PMK 38 | #define IW_ENCODE_ALG_PMK 4 39 | #endif 40 | 41 | #ifndef IW_ENC_CAPA_4WAY_HANDSHAKE 42 | #define IW_ENC_CAPA_4WAY_HANDSHAKE 0x00000010 43 | #endif 44 | 45 | #endif /* LINUX_WEXT_H */ 46 | -------------------------------------------------------------------------------- /hostapd/src/drivers/netlink.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Netlink helper functions for driver wrappers 3 | * Copyright (c) 2002-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef NETLINK_H 10 | #define NETLINK_H 11 | 12 | struct netlink_data; 13 | struct ifinfomsg; 14 | 15 | struct netlink_config { 16 | void *ctx; 17 | void (*newlink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf, 18 | size_t len); 19 | void (*dellink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf, 20 | size_t len); 21 | }; 22 | 23 | struct netlink_data * netlink_init(struct netlink_config *cfg); 24 | void netlink_deinit(struct netlink_data *netlink); 25 | int netlink_send_oper_ifla(struct netlink_data *netlink, int ifindex, 26 | int linkmode, int operstate); 27 | 28 | #endif /* NETLINK_H */ 29 | -------------------------------------------------------------------------------- /hostapd/src/drivers/rfkill.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Linux rfkill helper functions for driver wrappers 3 | * Copyright (c) 2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef RFKILL_H 10 | #define RFKILL_H 11 | 12 | struct rfkill_data; 13 | 14 | struct rfkill_config { 15 | void *ctx; 16 | char ifname[IFNAMSIZ]; 17 | void (*blocked_cb)(void *ctx); 18 | void (*unblocked_cb)(void *ctx); 19 | }; 20 | 21 | struct rfkill_data * rfkill_init(struct rfkill_config *cfg); 22 | void rfkill_deinit(struct rfkill_data *rfkill); 23 | int rfkill_is_blocked(struct rfkill_data *rfkill); 24 | 25 | #endif /* RFKILL_H */ 26 | -------------------------------------------------------------------------------- /hostapd/src/eap_common/Makefile: -------------------------------------------------------------------------------- 1 | all: libeap_common.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeap_common.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | LIB_OBJS= \ 12 | chap.o \ 13 | eap_common.o \ 14 | eap_eke_common.o \ 15 | eap_eke_common.o \ 16 | eap_fast_common.o \ 17 | eap_gpsk_common.o \ 18 | eap_ikev2_common.o \ 19 | eap_pax_common.o \ 20 | eap_peap_common.o \ 21 | eap_psk_common.o \ 22 | eap_pwd_common.o \ 23 | eap_sake_common.o \ 24 | eap_sim_common.o \ 25 | eap_wsc_common.o \ 26 | ikev2_common.o 27 | 28 | libeap_common.a: $(LIB_OBJS) 29 | $(AR) crT $@ $? 30 | 31 | -include $(OBJS:%.o=%.d) 32 | -------------------------------------------------------------------------------- /hostapd/src/eap_common/chap.c: -------------------------------------------------------------------------------- 1 | /* 2 | * CHAP-MD5 (RFC 1994) 3 | * Copyright (c) 2007-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "crypto/crypto.h" 13 | #include "chap.h" 14 | 15 | int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, 16 | size_t challenge_len, u8 *response) 17 | { 18 | const u8 *addr[3]; 19 | size_t len[3]; 20 | 21 | addr[0] = &id; 22 | len[0] = 1; 23 | addr[1] = secret; 24 | len[1] = secret_len; 25 | addr[2] = challenge; 26 | len[2] = challenge_len; 27 | return md5_vector(3, addr, len, response); 28 | } 29 | -------------------------------------------------------------------------------- /hostapd/src/eap_common/chap.h: -------------------------------------------------------------------------------- 1 | /* 2 | * CHAP-MD5 (RFC 1994) 3 | * Copyright (c) 2007-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef CHAP_H 10 | #define CHAP_H 11 | 12 | #define CHAP_MD5_LEN 16 13 | 14 | int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, 15 | size_t challenge_len, u8 *response); 16 | 17 | #endif /* CHAP_H */ 18 | -------------------------------------------------------------------------------- /hostapd/src/eap_common/eap_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP common peer/server definitions 3 | * Copyright (c) 2004-2014, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_COMMON_H 10 | #define EAP_COMMON_H 11 | 12 | #include "wpabuf.h" 13 | 14 | struct erp_tlvs { 15 | const u8 *keyname; 16 | const u8 *domain; 17 | 18 | u8 keyname_len; 19 | u8 domain_len; 20 | }; 21 | 22 | int eap_hdr_len_valid(const struct wpabuf *msg, size_t min_payload); 23 | const u8 * eap_hdr_validate(int vendor, EapType eap_type, 24 | const struct wpabuf *msg, size_t *plen); 25 | struct wpabuf * eap_msg_alloc(int vendor, EapType type, size_t payload_len, 26 | u8 code, u8 identifier); 27 | void eap_update_len(struct wpabuf *msg); 28 | u8 eap_get_id(const struct wpabuf *msg); 29 | EapType eap_get_type(const struct wpabuf *msg); 30 | int erp_parse_tlvs(const u8 *pos, const u8 *end, struct erp_tlvs *tlvs, 31 | int stop_at_keyname); 32 | 33 | #endif /* EAP_COMMON_H */ 34 | -------------------------------------------------------------------------------- /hostapd/src/eap_common/eap_ikev2_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-IKEv2 definitions 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_IKEV2_COMMON_H 10 | #define EAP_IKEV2_COMMON_H 11 | 12 | #define IKEV2_FLAGS_LENGTH_INCLUDED 0x80 13 | #define IKEV2_FLAGS_MORE_FRAGMENTS 0x40 14 | #define IKEV2_FLAGS_ICV_INCLUDED 0x20 15 | 16 | #define IKEV2_FRAGMENT_SIZE 1400 17 | 18 | struct ikev2_keys; 19 | 20 | int eap_ikev2_derive_keymat(int prf, struct ikev2_keys *keys, 21 | const u8 *i_nonce, size_t i_nonce_len, 22 | const u8 *r_nonce, size_t r_nonce_len, 23 | u8 *keymat); 24 | struct wpabuf * eap_ikev2_build_frag_ack(u8 id, u8 code); 25 | int eap_ikev2_validate_icv(int integ_alg, struct ikev2_keys *keys, 26 | int initiator, const struct wpabuf *msg, 27 | const u8 *pos, const u8 *end); 28 | 29 | #endif /* EAP_IKEV2_COMMON_H */ 30 | -------------------------------------------------------------------------------- /hostapd/src/eap_common/eap_peap_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-PEAP common routines 3 | * Copyright (c) 2008-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_PEAP_COMMON_H 10 | #define EAP_PEAP_COMMON_H 11 | 12 | int peap_prfplus(int version, const u8 *key, size_t key_len, 13 | const char *label, const u8 *seed, size_t seed_len, 14 | u8 *buf, size_t buf_len); 15 | 16 | #endif /* EAP_PEAP_COMMON_H */ 17 | -------------------------------------------------------------------------------- /hostapd/src/eap_common/eap_wsc_common.c: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-WSC common routines for Wi-Fi Protected Setup 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "eap_defs.h" 13 | #include "eap_common.h" 14 | #include "wps/wps.h" 15 | #include "eap_wsc_common.h" 16 | 17 | struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code) 18 | { 19 | struct wpabuf *msg; 20 | 21 | msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id); 22 | if (msg == NULL) { 23 | wpa_printf(MSG_ERROR, "EAP-WSC: Failed to allocate memory for " 24 | "FRAG_ACK"); 25 | return NULL; 26 | } 27 | 28 | wpa_printf(MSG_DEBUG, "EAP-WSC: Send WSC/FRAG_ACK"); 29 | wpabuf_put_u8(msg, WSC_FRAG_ACK); /* Op-Code */ 30 | wpabuf_put_u8(msg, 0); /* Flags */ 31 | 32 | return msg; 33 | } 34 | -------------------------------------------------------------------------------- /hostapd/src/eap_common/eap_wsc_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-WSC definitions for Wi-Fi Protected Setup 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_WSC_COMMON_H 10 | #define EAP_WSC_COMMON_H 11 | 12 | #define EAP_VENDOR_TYPE_WSC 1 13 | 14 | #define WSC_FLAGS_MF 0x01 15 | #define WSC_FLAGS_LF 0x02 16 | 17 | #define WSC_ID_REGISTRAR "WFA-SimpleConfig-Registrar-1-0" 18 | #define WSC_ID_REGISTRAR_LEN 30 19 | #define WSC_ID_ENROLLEE "WFA-SimpleConfig-Enrollee-1-0" 20 | #define WSC_ID_ENROLLEE_LEN 29 21 | 22 | #define WSC_FRAGMENT_SIZE 1400 23 | 24 | 25 | struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code); 26 | 27 | #endif /* EAP_WSC_COMMON_H */ 28 | -------------------------------------------------------------------------------- /hostapd/src/eap_peer/Makefile: -------------------------------------------------------------------------------- 1 | all: libeap_peer.a 2 | 3 | clean: 4 | rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov libeap_peer.a 5 | 6 | install: 7 | if ls *.so >/dev/null 2>&1; then \ 8 | install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \ 9 | cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \ 10 | ; fi 11 | 12 | include ../lib.rules 13 | 14 | CFLAGS += -DIEEE8021X_EAPOL 15 | 16 | LIB_OBJS= \ 17 | eap.o \ 18 | eap_methods.o 19 | 20 | libeap_peer.a: $(LIB_OBJS) 21 | $(AR) crT $@ $? 22 | 23 | -include $(OBJS:%.o=%.d) 24 | -------------------------------------------------------------------------------- /hostapd/src/eap_peer/mschapv2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * MSCHAPV2 (RFC 2759) 3 | * Copyright (c) 2004-2008, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MSCHAPV2_H 10 | #define MSCHAPV2_H 11 | 12 | #define MSCHAPV2_CHAL_LEN 16 13 | #define MSCHAPV2_NT_RESPONSE_LEN 24 14 | #define MSCHAPV2_AUTH_RESPONSE_LEN 20 15 | #define MSCHAPV2_MASTER_KEY_LEN 16 16 | 17 | const u8 * mschapv2_remove_domain(const u8 *username, size_t *len); 18 | int mschapv2_derive_response(const u8 *username, size_t username_len, 19 | const u8 *password, size_t password_len, 20 | int pwhash, 21 | const u8 *auth_challenge, 22 | const u8 *peer_challenge, 23 | u8 *nt_response, u8 *auth_response, 24 | u8 *master_key); 25 | int mschapv2_verify_auth_response(const u8 *auth_response, 26 | const u8 *buf, size_t buf_len); 27 | 28 | #endif /* MSCHAPV2_H */ 29 | -------------------------------------------------------------------------------- /hostapd/src/eap_peer/tncc.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-TNC - TNCC (IF-IMC and IF-TNCCS) 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TNCC_H 10 | #define TNCC_H 11 | 12 | struct tncc_data; 13 | 14 | struct tncc_data * tncc_init(void); 15 | void tncc_deinit(struct tncc_data *tncc); 16 | void tncc_init_connection(struct tncc_data *tncc); 17 | size_t tncc_total_send_len(struct tncc_data *tncc); 18 | u8 * tncc_copy_send_buf(struct tncc_data *tncc, u8 *pos); 19 | char * tncc_if_tnccs_start(struct tncc_data *tncc); 20 | char * tncc_if_tnccs_end(void); 21 | 22 | enum tncc_process_res { 23 | TNCCS_PROCESS_ERROR = -1, 24 | TNCCS_PROCESS_OK_NO_RECOMMENDATION = 0, 25 | TNCCS_RECOMMENDATION_ERROR, 26 | TNCCS_RECOMMENDATION_ALLOW, 27 | TNCCS_RECOMMENDATION_NONE, 28 | TNCCS_RECOMMENDATION_ISOLATE 29 | }; 30 | 31 | enum tncc_process_res tncc_process_if_tnccs(struct tncc_data *tncc, 32 | const u8 *msg, size_t len); 33 | 34 | struct wpabuf * tncc_process_soh_request(int ver, const u8 *data, size_t len); 35 | 36 | #endif /* TNCC_H */ 37 | -------------------------------------------------------------------------------- /hostapd/src/eap_server/Makefile: -------------------------------------------------------------------------------- 1 | all: libeap_server.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeap_server.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_HS20 12 | 13 | LIB_OBJS= \ 14 | eap_server.o \ 15 | eap_server_identity.o \ 16 | eap_server_methods.o 17 | 18 | libeap_server.a: $(LIB_OBJS) 19 | $(AR) crT $@ $? 20 | 21 | -include $(OBJS:%.o=%.d) 22 | -------------------------------------------------------------------------------- /hostapd/src/eapol_auth/Makefile: -------------------------------------------------------------------------------- 1 | all: libeapol_auth.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeapol_auth.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | LIB_OBJS = eapol_auth_sm.o eapol_auth_dump.o 12 | 13 | libeapol_auth.a: $(LIB_OBJS) 14 | $(AR) crT $@ $? 15 | 16 | -include $(OBJS:%.o=%.d) 17 | -------------------------------------------------------------------------------- /hostapd/src/eapol_supp/Makefile: -------------------------------------------------------------------------------- 1 | all: libeapol_supp.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeapol_supp.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DIEEE8021X_EAPOL 12 | 13 | LIB_OBJS = eapol_supp_sm.o 14 | 15 | libeapol_supp.a: $(LIB_OBJS) 16 | $(AR) crT $@ $? 17 | 18 | -include $(OBJS:%.o=%.d) 19 | -------------------------------------------------------------------------------- /hostapd/src/fst/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo Nothing to be made. 3 | 4 | clean: 5 | rm -f *~ *.o *.d 6 | 7 | install: 8 | @echo Nothing to be made. 9 | -------------------------------------------------------------------------------- /hostapd/src/l2_packet/Makefile: -------------------------------------------------------------------------------- 1 | all: libl2_packet.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libl2_packet.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | LIB_OBJS = l2_packet_linux.o 12 | 13 | libl2_packet.a: $(LIB_OBJS) 14 | $(AR) crT $@ $? 15 | 16 | -include $(OBJS:%.o=%.d) 17 | -------------------------------------------------------------------------------- /hostapd/src/lib.rules: -------------------------------------------------------------------------------- 1 | ifndef CC 2 | CC=gcc 3 | endif 4 | 5 | ifndef CFLAGS 6 | CFLAGS = -MMD -O2 -Wall -g 7 | endif 8 | 9 | CFLAGS += -I.. -I../utils 10 | 11 | 12 | Q=@ 13 | E=echo 14 | ifeq ($(V), 1) 15 | Q= 16 | E=true 17 | endif 18 | ifeq ($(QUIET), 1) 19 | Q=@ 20 | E=true 21 | endif 22 | 23 | %.o: %.c 24 | $(Q)$(CC) -c -o $@ $(CFLAGS) $< 25 | @$(E) " CC " $< 26 | -------------------------------------------------------------------------------- /hostapd/src/p2p/Makefile: -------------------------------------------------------------------------------- 1 | all: libp2p.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libp2p.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_WIFI_DISPLAY 12 | CFLAGS += -DCONFIG_WPS_NFC 13 | 14 | LIB_OBJS= \ 15 | p2p_build.o \ 16 | p2p.o \ 17 | p2p_dev_disc.o \ 18 | p2p_go_neg.o \ 19 | p2p_group.o \ 20 | p2p_invitation.o \ 21 | p2p_parse.o \ 22 | p2p_pd.o \ 23 | p2p_sd.o \ 24 | p2p_utils.o 25 | 26 | libp2p.a: $(LIB_OBJS) 27 | $(AR) crT $@ $? 28 | 29 | -include $(OBJS:%.o=%.d) 30 | -------------------------------------------------------------------------------- /hostapd/src/pae/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo Nothing to be made. 3 | 4 | clean: 5 | rm -f *~ *.o *.d 6 | 7 | install: 8 | @echo Nothing to be made. 9 | -------------------------------------------------------------------------------- /hostapd/src/pae/ieee802_1x_key.h: -------------------------------------------------------------------------------- 1 | /* 2 | * IEEE 802.1X-2010 Key Hierarchy 3 | * Copyright (c) 2013, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef IEEE802_1X_KEY_H 10 | #define IEEE802_1X_KEY_H 11 | 12 | int ieee802_1x_cak_128bits_aes_cmac(const u8 *msk, const u8 *mac1, 13 | const u8 *mac2, u8 *cak); 14 | int ieee802_1x_ckn_128bits_aes_cmac(const u8 *msk, const u8 *mac1, 15 | const u8 *mac2, const u8 *sid, 16 | size_t sid_bytes, u8 *ckn); 17 | int ieee802_1x_kek_128bits_aes_cmac(const u8 *cak, const u8 *ckn, 18 | size_t ckn_bytes, u8 *kek); 19 | int ieee802_1x_ick_128bits_aes_cmac(const u8 *cak, const u8 *ckn, 20 | size_t ckn_bytes, u8 *ick); 21 | int ieee802_1x_icv_128bits_aes_cmac(const u8 *ick, const u8 *msg, 22 | size_t msg_bytes, u8 *icv); 23 | int ieee802_1x_sak_128bits_aes_cmac(const u8 *cak, const u8 *ctx, 24 | size_t ctx_bytes, u8 *sak); 25 | 26 | #endif /* IEEE802_1X_KEY_H */ 27 | -------------------------------------------------------------------------------- /hostapd/src/radius/.gitignore: -------------------------------------------------------------------------------- 1 | libradius.a 2 | -------------------------------------------------------------------------------- /hostapd/src/radius/Makefile: -------------------------------------------------------------------------------- 1 | all: libradius.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libradius.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | 10 | include ../lib.rules 11 | 12 | CFLAGS += -DCONFIG_IPV6 13 | 14 | LIB_OBJS= \ 15 | radius.o \ 16 | radius_client.o \ 17 | radius_das.o \ 18 | radius_server.o 19 | 20 | libradius.a: $(LIB_OBJS) 21 | $(AR) crT $@ $? 22 | 23 | -include $(OBJS:%.o=%.d) 24 | -------------------------------------------------------------------------------- /hostapd/src/rsn_supp/Makefile: -------------------------------------------------------------------------------- 1 | all: librsn_supp.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov librsn_supp.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_IEEE80211W 12 | CFLAGS += -DCONFIG_IEEE80211R 13 | CFLAGS += -DCONFIG_TDLS 14 | CFLAGS += -DCONFIG_WNM 15 | CFLAGS += -DIEEE8021X_EAPOL 16 | 17 | LIB_OBJS= \ 18 | pmksa_cache.o \ 19 | wpa_ft.o \ 20 | tdls.o \ 21 | preauth.o \ 22 | wpa.o \ 23 | wpa_ie.o 24 | 25 | librsn_supp.a: $(LIB_OBJS) 26 | $(AR) crT $@ $? 27 | 28 | -include $(OBJS:%.o=%.d) 29 | -------------------------------------------------------------------------------- /hostapd/src/tls/.gitignore: -------------------------------------------------------------------------------- 1 | libtls.a 2 | -------------------------------------------------------------------------------- /hostapd/src/tls/Makefile: -------------------------------------------------------------------------------- 1 | all: libtls.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d libtls.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | 10 | include ../lib.rules 11 | 12 | CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH 13 | CFLAGS += -DCONFIG_CRYPTO_INTERNAL 14 | CFLAGS += -DCONFIG_TLSV11 15 | CFLAGS += -DCONFIG_TLSV12 16 | 17 | LIB_OBJS= \ 18 | asn1.o \ 19 | bignum.o \ 20 | pkcs1.o \ 21 | pkcs5.o \ 22 | pkcs8.o \ 23 | rsa.o \ 24 | tlsv1_client.o \ 25 | tlsv1_client_read.o \ 26 | tlsv1_client_write.o \ 27 | tlsv1_client_ocsp.o \ 28 | tlsv1_common.o \ 29 | tlsv1_cred.o \ 30 | tlsv1_record.o \ 31 | tlsv1_server.o \ 32 | tlsv1_server_read.o \ 33 | tlsv1_server_write.o \ 34 | x509v3.o 35 | 36 | 37 | libtls.a: $(LIB_OBJS) 38 | $(AR) crT $@ $? 39 | 40 | -include $(OBJS:%.o=%.d) 41 | -------------------------------------------------------------------------------- /hostapd/src/tls/pkcs1.h: -------------------------------------------------------------------------------- 1 | /* 2 | * PKCS #1 (RSA Encryption) 3 | * Copyright (c) 2006-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef PKCS1_H 10 | #define PKCS1_H 11 | 12 | struct crypto_public_key; 13 | struct asn1_oid; 14 | 15 | int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key, 16 | int use_private, const u8 *in, size_t inlen, 17 | u8 *out, size_t *outlen); 18 | int pkcs1_v15_private_key_decrypt(struct crypto_rsa_key *key, 19 | const u8 *in, size_t inlen, 20 | u8 *out, size_t *outlen); 21 | int pkcs1_decrypt_public_key(struct crypto_rsa_key *key, 22 | const u8 *crypt, size_t crypt_len, 23 | u8 *plain, size_t *plain_len); 24 | int pkcs1_v15_sig_ver(struct crypto_public_key *pk, 25 | const u8 *s, size_t s_len, 26 | const struct asn1_oid *hash_alg, 27 | const u8 *hash, size_t hash_len); 28 | 29 | #endif /* PKCS1_H */ 30 | -------------------------------------------------------------------------------- /hostapd/src/tls/pkcs5.h: -------------------------------------------------------------------------------- 1 | /* 2 | * PKCS #5 (Password-based Encryption) 3 | * Copyright (c) 2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef PKCS5_H 10 | #define PKCS5_H 11 | 12 | u8 * pkcs5_decrypt(const u8 *enc_alg, size_t enc_alg_len, 13 | const u8 *enc_data, size_t enc_data_len, 14 | const char *passwd, size_t *data_len); 15 | 16 | #endif /* PKCS5_H */ 17 | -------------------------------------------------------------------------------- /hostapd/src/tls/pkcs8.h: -------------------------------------------------------------------------------- 1 | /* 2 | * PKCS #8 (Private-key information syntax) 3 | * Copyright (c) 2006-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef PKCS8_H 10 | #define PKCS8_H 11 | 12 | struct crypto_private_key * pkcs8_key_import(const u8 *buf, size_t len); 13 | struct crypto_private_key * 14 | pkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd); 15 | 16 | #endif /* PKCS8_H */ 17 | -------------------------------------------------------------------------------- /hostapd/src/tls/rsa.h: -------------------------------------------------------------------------------- 1 | /* 2 | * RSA 3 | * Copyright (c) 2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef RSA_H 10 | #define RSA_H 11 | 12 | struct crypto_rsa_key; 13 | 14 | struct crypto_rsa_key * 15 | crypto_rsa_import_public_key(const u8 *buf, size_t len); 16 | struct crypto_rsa_key * 17 | crypto_rsa_import_public_key_parts(const u8 *n, size_t n_len, 18 | const u8 *e, size_t e_len); 19 | struct crypto_rsa_key * 20 | crypto_rsa_import_private_key(const u8 *buf, size_t len); 21 | size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key); 22 | int crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, 23 | struct crypto_rsa_key *key, int use_private); 24 | void crypto_rsa_free(struct crypto_rsa_key *key); 25 | 26 | #endif /* RSA_H */ 27 | -------------------------------------------------------------------------------- /hostapd/src/utils/.gitignore: -------------------------------------------------------------------------------- 1 | libutils.a 2 | -------------------------------------------------------------------------------- /hostapd/src/utils/Makefile: -------------------------------------------------------------------------------- 1 | all: libutils.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libutils.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | 10 | include ../lib.rules 11 | 12 | #CFLAGS += -DWPA_TRACE 13 | CFLAGS += -DCONFIG_IPV6 14 | CFLAGS += -DCONFIG_DEBUG_FILE 15 | 16 | LIB_OBJS= \ 17 | base64.o \ 18 | bitfield.o \ 19 | common.o \ 20 | crc32.o \ 21 | ip_addr.o \ 22 | radiotap.o \ 23 | trace.o \ 24 | uuid.o \ 25 | wpa_debug.o \ 26 | wpabuf.o 27 | 28 | # Pick correct OS wrapper implementation 29 | LIB_OBJS += os_unix.o 30 | 31 | # Pick correct event loop implementation 32 | LIB_OBJS += eloop.o 33 | 34 | # Pick correct edit implementation 35 | LIB_OBJS += edit.o 36 | 37 | #LIB_OBJS += pcsc_funcs.o 38 | 39 | libutils.a: $(LIB_OBJS) 40 | $(AR) crT $@ $? 41 | 42 | -include $(OBJS:%.o=%.d) 43 | -------------------------------------------------------------------------------- /hostapd/src/utils/base64.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Base64 encoding/decoding (RFC1341) 3 | * Copyright (c) 2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BASE64_H 10 | #define BASE64_H 11 | 12 | unsigned char * base64_encode(const unsigned char *src, size_t len, 13 | size_t *out_len); 14 | unsigned char * base64_decode(const unsigned char *src, size_t len, 15 | size_t *out_len); 16 | unsigned char * base64_url_encode(const unsigned char *src, size_t len, 17 | size_t *out_len, int add_pad); 18 | unsigned char * base64_url_decode(const unsigned char *src, size_t len, 19 | size_t *out_len); 20 | 21 | #endif /* BASE64_H */ 22 | -------------------------------------------------------------------------------- /hostapd/src/utils/bitfield.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Bitfield 3 | * Copyright (c) 2013, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BITFIELD_H 10 | #define BITFIELD_H 11 | 12 | struct bitfield; 13 | 14 | struct bitfield * bitfield_alloc(size_t max_bits); 15 | void bitfield_free(struct bitfield *bf); 16 | void bitfield_set(struct bitfield *bf, size_t bit); 17 | void bitfield_clear(struct bitfield *bf, size_t bit); 18 | int bitfield_is_set(struct bitfield *bf, size_t bit); 19 | int bitfield_get_first_zero(struct bitfield *bf); 20 | 21 | #endif /* BITFIELD_H */ 22 | -------------------------------------------------------------------------------- /hostapd/src/utils/browser.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Hotspot 2.0 client - Web browser 3 | * Copyright (c) 2013, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BROWSER_H 10 | #define BROWSER_H 11 | 12 | #ifdef CONFIG_NO_BROWSER 13 | static inline int hs20_web_browser(const char *url) 14 | { 15 | return -1; 16 | } 17 | #else /* CONFIG_NO_BROWSER */ 18 | int hs20_web_browser(const char *url); 19 | #endif /* CONFIG_NO_BROWSER */ 20 | 21 | #endif /* BROWSER_H */ 22 | -------------------------------------------------------------------------------- /hostapd/src/utils/crc32.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 32-bit CRC for FCS calculation 3 | * Copyright (c) 2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef CRC32_H 10 | #define CRC32_H 11 | 12 | u32 crc32(const u8 *frame, size_t frame_len); 13 | 14 | #endif /* CRC32_H */ 15 | -------------------------------------------------------------------------------- /hostapd/src/utils/edit.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Command line editing and history 3 | * Copyright (c) 2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EDIT_H 10 | #define EDIT_H 11 | 12 | int edit_init(void (*cmd_cb)(void *ctx, char *cmd), 13 | void (*eof_cb)(void *ctx), 14 | char ** (*completion_cb)(void *ctx, const char *cmd, int pos), 15 | void *ctx, const char *history_file, const char *ps); 16 | void edit_deinit(const char *history_file, 17 | int (*filter_cb)(void *ctx, const char *cmd)); 18 | void edit_clear_line(void); 19 | void edit_redraw(void); 20 | 21 | #endif /* EDIT_H */ 22 | -------------------------------------------------------------------------------- /hostapd/src/utils/ext_password.h: -------------------------------------------------------------------------------- 1 | /* 2 | * External password backend 3 | * Copyright (c) 2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EXT_PASSWORD_H 10 | #define EXT_PASSWORD_H 11 | 12 | struct ext_password_data; 13 | 14 | #ifdef CONFIG_EXT_PASSWORD 15 | 16 | struct ext_password_data * ext_password_init(const char *backend, 17 | const char *params); 18 | void ext_password_deinit(struct ext_password_data *data); 19 | 20 | struct wpabuf * ext_password_get(struct ext_password_data *data, 21 | const char *name); 22 | void ext_password_free(struct wpabuf *pw); 23 | 24 | #else /* CONFIG_EXT_PASSWORD */ 25 | 26 | #define ext_password_init(b, p) ((void *) 1) 27 | #define ext_password_deinit(d) do { } while (0) 28 | #define ext_password_get(d, n) (NULL) 29 | #define ext_password_free(p) do { } while (0) 30 | 31 | #endif /* CONFIG_EXT_PASSWORD */ 32 | 33 | #endif /* EXT_PASSWORD_H */ 34 | -------------------------------------------------------------------------------- /hostapd/src/utils/ext_password_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * External password backend - internal definitions 3 | * Copyright (c) 2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EXT_PASSWORD_I_H 10 | #define EXT_PASSWORD_I_H 11 | 12 | #include "ext_password.h" 13 | 14 | struct ext_password_backend { 15 | const char *name; 16 | void * (*init)(const char *params); 17 | void (*deinit)(void *ctx); 18 | struct wpabuf * (*get)(void *ctx, const char *name); 19 | }; 20 | 21 | struct wpabuf * ext_password_alloc(size_t len); 22 | 23 | /* Available ext_password backends */ 24 | 25 | #ifdef CONFIG_EXT_PASSWORD_TEST 26 | extern const struct ext_password_backend ext_password_test; 27 | #endif /* CONFIG_EXT_PASSWORD_TEST */ 28 | 29 | #endif /* EXT_PASSWORD_I_H */ 30 | -------------------------------------------------------------------------------- /hostapd/src/utils/ip_addr.h: -------------------------------------------------------------------------------- 1 | /* 2 | * IP address processing 3 | * Copyright (c) 2003-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef IP_ADDR_H 10 | #define IP_ADDR_H 11 | 12 | struct hostapd_ip_addr { 13 | int af; /* AF_INET / AF_INET6 */ 14 | union { 15 | struct in_addr v4; 16 | #ifdef CONFIG_IPV6 17 | struct in6_addr v6; 18 | #endif /* CONFIG_IPV6 */ 19 | u8 max_len[16]; 20 | } u; 21 | }; 22 | 23 | const char * hostapd_ip_txt(const struct hostapd_ip_addr *addr, char *buf, 24 | size_t buflen); 25 | int hostapd_parse_ip_addr(const char *txt, struct hostapd_ip_addr *addr); 26 | 27 | #endif /* IP_ADDR_H */ 28 | -------------------------------------------------------------------------------- /hostapd/src/utils/json.h: -------------------------------------------------------------------------------- 1 | /* 2 | * JavaScript Object Notation (JSON) parser (RFC7159) 3 | * Copyright (c) 2017, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef JSON_H 10 | #define JSON_H 11 | 12 | struct json_token { 13 | enum json_type { 14 | JSON_VALUE, 15 | JSON_OBJECT, 16 | JSON_ARRAY, 17 | JSON_STRING, 18 | JSON_NUMBER, 19 | JSON_BOOLEAN, 20 | JSON_NULL, 21 | } type; 22 | enum json_parsing_state { 23 | JSON_EMPTY, 24 | JSON_STARTED, 25 | JSON_WAITING_VALUE, 26 | JSON_COMPLETED, 27 | } state; 28 | char *name; 29 | char *string; 30 | int number; 31 | struct json_token *parent, *child, *sibling; 32 | }; 33 | 34 | void json_escape_string(char *txt, size_t maxlen, const char *data, size_t len); 35 | struct json_token * json_parse(const char *data, size_t data_len); 36 | void json_free(struct json_token *json); 37 | struct json_token * json_get_member(struct json_token *json, const char *name); 38 | struct wpabuf * json_get_member_base64url(struct json_token *json, 39 | const char *name); 40 | void json_print_tree(struct json_token *root, char *buf, size_t buflen); 41 | 42 | #endif /* JSON_H */ 43 | -------------------------------------------------------------------------------- /hostapd/src/utils/module_tests.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Module tests 3 | * Copyright (c) 2014-2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MODULE_TESTS_H 10 | #define MODULE_TESTS_H 11 | 12 | int wpas_module_tests(void); 13 | int hapd_module_tests(void); 14 | 15 | int utils_module_tests(void); 16 | int wps_module_tests(void); 17 | int common_module_tests(void); 18 | int crypto_module_tests(void); 19 | 20 | #endif /* MODULE_TESTS_H */ 21 | -------------------------------------------------------------------------------- /hostapd/src/utils/platform.h: -------------------------------------------------------------------------------- 1 | #ifndef PLATFORM_H 2 | #define PLATFORM_H 3 | 4 | #include "includes.h" 5 | #include "common.h" 6 | 7 | #define le16_to_cpu le_to_host16 8 | #define le32_to_cpu le_to_host32 9 | 10 | #define get_unaligned(p) \ 11 | ({ \ 12 | struct packed_dummy_struct { \ 13 | typeof(*(p)) __val; \ 14 | } __attribute__((packed)) *__ptr = (void *) (p); \ 15 | \ 16 | __ptr->__val; \ 17 | }) 18 | #define get_unaligned_le16(p) le16_to_cpu(get_unaligned((le16 *)(p))) 19 | #define get_unaligned_le32(p) le32_to_cpu(get_unaligned((le32 *)(p))) 20 | 21 | #endif /* PLATFORM_H */ 22 | -------------------------------------------------------------------------------- /hostapd/src/utils/uuid.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Universally Unique IDentifier (UUID) 3 | * Copyright (c) 2008, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef UUID_H 10 | #define UUID_H 11 | 12 | #define UUID_LEN 16 13 | 14 | int uuid_str2bin(const char *str, u8 *bin); 15 | int uuid_bin2str(const u8 *bin, char *str, size_t max_len); 16 | int is_nil_uuid(const u8 *uuid); 17 | int uuid_random(u8 *uuid); 18 | 19 | #endif /* UUID_H */ 20 | -------------------------------------------------------------------------------- /hostapd/src/wps/Makefile: -------------------------------------------------------------------------------- 1 | all: libwps.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libwps.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_P2P 12 | CFLAGS += -DCONFIG_WPS_OOB 13 | CFLAGS += -DCONFIG_WPS_NFC 14 | 15 | LIB_OBJS= \ 16 | http_client.o \ 17 | httpread.o \ 18 | http_server.o \ 19 | ndef.o \ 20 | upnp_xml.o \ 21 | wps_attr_build.o \ 22 | wps_attr_parse.o \ 23 | wps_attr_process.o \ 24 | wps.o \ 25 | wps_common.o \ 26 | wps_dev_attr.o \ 27 | wps_enrollee.o \ 28 | wps_er.o \ 29 | wps_er_ssdp.o \ 30 | wps_module_tests.o \ 31 | wps_registrar.o \ 32 | wps_upnp_ap.o \ 33 | wps_upnp.o \ 34 | wps_upnp_event.o \ 35 | wps_upnp_ssdp.o \ 36 | wps_upnp_web.o 37 | 38 | libwps.a: $(LIB_OBJS) 39 | $(AR) crT $@ $? 40 | 41 | -include $(OBJS:%.o=%.d) 42 | -------------------------------------------------------------------------------- /hostapd/src/wps/http.h: -------------------------------------------------------------------------------- 1 | /* 2 | * HTTP for WPS 3 | * Copyright (c) 2000-2003 Intel Corporation 4 | * Copyright (c) 2006-2007 Sony Corporation 5 | * Copyright (c) 2008-2009 Atheros Communications 6 | * Copyright (c) 2009, Jouni Malinen 7 | * 8 | * See wps_upnp.c for more details on licensing and code history. 9 | */ 10 | 11 | #ifndef HTTP_H 12 | #define HTTP_H 13 | 14 | enum http_reply_code { 15 | HTTP_OK = 200, 16 | HTTP_BAD_REQUEST = 400, 17 | UPNP_INVALID_ACTION = 401, 18 | UPNP_INVALID_ARGS = 402, 19 | HTTP_NOT_FOUND = 404, 20 | HTTP_PRECONDITION_FAILED = 412, 21 | HTTP_INTERNAL_SERVER_ERROR = 500, 22 | HTTP_UNIMPLEMENTED = 501, 23 | UPNP_ACTION_FAILED = 501, 24 | UPNP_ARG_VALUE_INVALID = 600, 25 | UPNP_ARG_VALUE_OUT_OF_RANGE = 601, 26 | UPNP_OUT_OF_MEMORY = 603 27 | }; 28 | 29 | #endif /* HTTP_H */ 30 | -------------------------------------------------------------------------------- /hostapd/src/wps/upnp_xml.h: -------------------------------------------------------------------------------- 1 | /* 2 | * UPnP XML helper routines 3 | * Copyright (c) 2000-2003 Intel Corporation 4 | * Copyright (c) 2006-2007 Sony Corporation 5 | * Copyright (c) 2008-2009 Atheros Communications 6 | * Copyright (c) 2009, Jouni Malinen 7 | * 8 | * See wps_upnp.c for more details on licensing and code history. 9 | */ 10 | 11 | #ifndef UPNP_XML_H 12 | #define UPNP_XML_H 13 | 14 | #include "http.h" 15 | 16 | void xml_data_encode(struct wpabuf *buf, const char *data, int len); 17 | void xml_add_tagged_data(struct wpabuf *buf, const char *tag, 18 | const char *data); 19 | int xml_next_tag(const char *in, const char **out, 20 | const char **out_tagname, const char **end); 21 | char * xml_get_first_item(const char *doc, const char *item); 22 | struct wpabuf * xml_get_base64_item(const char *data, const char *name, 23 | enum http_reply_code *ret); 24 | 25 | #endif /* UPNP_XML_H */ 26 | -------------------------------------------------------------------------------- /wpa_supplicant/COPYING: -------------------------------------------------------------------------------- 1 | wpa_supplicant and hostapd 2 | -------------------------- 3 | 4 | Copyright (c) 2002-2018, Jouni Malinen and contributors 5 | All Rights Reserved. 6 | 7 | 8 | See the README file for the current license terms. 9 | 10 | This software was previously distributed under BSD/GPL v2 dual license 11 | terms that allowed either of those license alternatives to be 12 | selected. As of February 11, 2012, the project has chosen to use only 13 | the BSD license option for future distribution. As such, the GPL v2 14 | license option is no longer used. It should be noted that the BSD 15 | license option (the one with advertisement clause removed) is compatible 16 | with GPL and as such, does not prevent use of this software in projects 17 | that use GPL. 18 | 19 | Some of the files may still include pointers to GPL version 2 license 20 | terms. However, such copyright and license notifications are maintained 21 | only for attribution purposes and any distribution of this software 22 | after February 11, 2012 is no longer under the GPL v2 option. 23 | -------------------------------------------------------------------------------- /wpa_supplicant/hs20/client/devinfo.xml: -------------------------------------------------------------------------------- 1 | 2 | urn:Example:HS20-station:123456 3 | Manufacturer 4 | HS20-station 5 | 1.2 6 | en 7 | 8 | -------------------------------------------------------------------------------- /wpa_supplicant/src/Makefile: -------------------------------------------------------------------------------- 1 | SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p pae radius rsn_supp tls utils wps 2 | SUBDIRS += fst 3 | 4 | all: 5 | for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d; done 6 | 7 | clean: 8 | for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d clean; done 9 | rm -f *~ 10 | 11 | install: 12 | for d in $(SUBDIRS); do [ -d $$d ] && $(MAKE) -C $$d install; done 13 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/acs.h: -------------------------------------------------------------------------------- 1 | /* 2 | * ACS - Automatic Channel Selection module 3 | * Copyright (c) 2011, Atheros Communications 4 | * Copyright (c) 2013, Qualcomm Atheros, Inc. 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef ACS_H 11 | #define ACS_H 12 | 13 | #ifdef CONFIG_ACS 14 | 15 | enum hostapd_chan_status acs_init(struct hostapd_iface *iface); 16 | void acs_cleanup(struct hostapd_iface *iface); 17 | 18 | #else /* CONFIG_ACS */ 19 | 20 | static inline enum hostapd_chan_status acs_init(struct hostapd_iface *iface) 21 | { 22 | wpa_printf(MSG_ERROR, "ACS was disabled on your build, rebuild hostapd with CONFIG_ACS=y or set channel"); 23 | return HOSTAPD_CHAN_INVALID; 24 | } 25 | 26 | static inline void acs_cleanup(struct hostapd_iface *iface) 27 | { 28 | } 29 | 30 | #endif /* CONFIG_ACS */ 31 | 32 | #endif /* ACS_H */ 33 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/ap_mlme.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / IEEE 802.11 MLME 3 | * Copyright 2003, Jouni Malinen 4 | * Copyright 2003-2004, Instant802 Networks, Inc. 5 | * Copyright 2005-2006, Devicescape Software, Inc. 6 | * 7 | * This software may be distributed under the terms of the BSD license. 8 | * See README for more details. 9 | */ 10 | 11 | #ifndef MLME_H 12 | #define MLME_H 13 | 14 | void mlme_authenticate_indication(struct hostapd_data *hapd, 15 | struct sta_info *sta); 16 | 17 | void mlme_deauthenticate_indication(struct hostapd_data *hapd, 18 | struct sta_info *sta, u16 reason_code); 19 | 20 | void mlme_associate_indication(struct hostapd_data *hapd, 21 | struct sta_info *sta); 22 | 23 | void mlme_reassociate_indication(struct hostapd_data *hapd, 24 | struct sta_info *sta); 25 | 26 | void mlme_disassociate_indication(struct hostapd_data *hapd, 27 | struct sta_info *sta, u16 reason_code); 28 | 29 | void mlme_michaelmicfailure_indication(struct hostapd_data *hapd, 30 | const u8 *addr); 31 | 32 | void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta); 33 | 34 | #endif /* MLME_H */ 35 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/authsrv.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Authentication server setup 3 | * Copyright (c) 2002-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef AUTHSRV_H 10 | #define AUTHSRV_H 11 | 12 | int authsrv_init(struct hostapd_data *hapd); 13 | void authsrv_deinit(struct hostapd_data *hapd); 14 | 15 | #endif /* AUTHSRV_H */ 16 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/bss_load.h: -------------------------------------------------------------------------------- 1 | /* 2 | * BSS load update 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BSS_LOAD_UPDATE_H 10 | #define BSS_LOAD_UPDATE_H 11 | 12 | 13 | int bss_load_update_init(struct hostapd_data *hapd); 14 | void bss_load_update_deinit(struct hostapd_data *hapd); 15 | 16 | 17 | #endif /* BSS_LOAD_UPDATE_H */ 18 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/dhcp_snoop.h: -------------------------------------------------------------------------------- 1 | /* 2 | * DHCP snooping for Proxy ARP 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DHCP_SNOOP_H 10 | #define DHCP_SNOOP_H 11 | 12 | #ifdef CONFIG_PROXYARP 13 | 14 | int dhcp_snoop_init(struct hostapd_data *hapd); 15 | void dhcp_snoop_deinit(struct hostapd_data *hapd); 16 | 17 | #else /* CONFIG_PROXYARP */ 18 | 19 | static inline int dhcp_snoop_init(struct hostapd_data *hapd) 20 | { 21 | return 0; 22 | } 23 | 24 | static inline void dhcp_snoop_deinit(struct hostapd_data *hapd) 25 | { 26 | } 27 | 28 | #endif /* CONFIG_PROXYARP */ 29 | 30 | #endif /* DHCP_SNOOP_H */ 31 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/eth_p_oui.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / IEEE 802 OUI Extended Ethertype 3 | * Copyright (c) 2016, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef ETH_P_OUI_H 10 | #define ETH_P_OUI_H 11 | 12 | struct eth_p_oui_ctx; 13 | struct hostapd_data; 14 | 15 | /* rx_callback only gets payload after OUI passed as buf */ 16 | struct eth_p_oui_ctx * 17 | eth_p_oui_register(struct hostapd_data *hapd, const char *ifname, u8 oui_suffix, 18 | void (*rx_callback)(void *ctx, const u8 *src_addr, 19 | const u8 *dst_addr, u8 oui_suffix, 20 | const u8 *buf, size_t len), 21 | void *rx_callback_ctx); 22 | void eth_p_oui_unregister(struct eth_p_oui_ctx *eth_p_oui); 23 | int eth_p_oui_send(struct eth_p_oui_ctx *ctx, const u8 *src_addr, 24 | const u8 *dst_addr, const u8 *buf, size_t len); 25 | void eth_p_oui_deliver(struct eth_p_oui_ctx *ctx, const u8 *src_addr, 26 | const u8 *dst_addr, const u8 *buf, size_t len); 27 | 28 | #endif /* ETH_P_OUI_H */ 29 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/fils_hlp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * FILS HLP request processing 3 | * Copyright (c) 2017, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef FILS_HLP_H 10 | #define FILS_HLP_H 11 | 12 | int fils_process_hlp(struct hostapd_data *hapd, struct sta_info *sta, 13 | const u8 *pos, int left); 14 | 15 | #ifdef CONFIG_FILS 16 | 17 | void fils_hlp_deinit(struct hostapd_data *hapd); 18 | 19 | #else /* CONFIG_FILS */ 20 | 21 | static inline void fils_hlp_deinit(struct hostapd_data *hapd) 22 | { 23 | } 24 | 25 | #endif /* CONFIG_FILS */ 26 | 27 | #endif /* FILS_HLP_H */ 28 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/hs20.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Hotspot 2.0 AP ANQP processing 3 | * Copyright (c) 2011-2013, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef HS20_H 10 | #define HS20_H 11 | 12 | struct hostapd_data; 13 | 14 | u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid); 15 | u8 * hostapd_eid_osen(struct hostapd_data *hapd, u8 *eid); 16 | int hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr, 17 | u8 osu_method, const char *url); 18 | int hs20_send_wnm_notification_deauth_req(struct hostapd_data *hapd, 19 | const u8 *addr, 20 | const struct wpabuf *payload); 21 | int hs20_send_wnm_notification_t_c(struct hostapd_data *hapd, 22 | const u8 *addr, const char *url); 23 | void hs20_t_c_filtering(struct hostapd_data *hapd, struct sta_info *sta, 24 | int enabled); 25 | 26 | #endif /* HS20_H */ 27 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/iapp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / IEEE 802.11F-2003 Inter-Access Point Protocol (IAPP) 3 | * Copyright (c) 2002-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef IAPP_H 10 | #define IAPP_H 11 | 12 | struct iapp_data; 13 | 14 | #ifdef CONFIG_IAPP 15 | 16 | void iapp_new_station(struct iapp_data *iapp, struct sta_info *sta); 17 | struct iapp_data * iapp_init(struct hostapd_data *hapd, const char *iface); 18 | void iapp_deinit(struct iapp_data *iapp); 19 | 20 | #else /* CONFIG_IAPP */ 21 | 22 | static inline void iapp_new_station(struct iapp_data *iapp, 23 | struct sta_info *sta) 24 | { 25 | } 26 | 27 | static inline struct iapp_data * iapp_init(struct hostapd_data *hapd, 28 | const char *iface) 29 | { 30 | return NULL; 31 | } 32 | 33 | static inline void iapp_deinit(struct iapp_data *iapp) 34 | { 35 | } 36 | 37 | #endif /* CONFIG_IAPP */ 38 | 39 | #endif /* IAPP_H */ 40 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/ieee802_11_auth.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / IEEE 802.11 authentication (ACL) 3 | * Copyright (c) 2003-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef IEEE802_11_AUTH_H 10 | #define IEEE802_11_AUTH_H 11 | 12 | enum { 13 | HOSTAPD_ACL_REJECT = 0, 14 | HOSTAPD_ACL_ACCEPT = 1, 15 | HOSTAPD_ACL_PENDING = 2, 16 | HOSTAPD_ACL_ACCEPT_TIMEOUT = 3 17 | }; 18 | 19 | int hostapd_check_acl(struct hostapd_data *hapd, const u8 *addr, 20 | struct vlan_description *vlan_id); 21 | int hostapd_allowed_address(struct hostapd_data *hapd, const u8 *addr, 22 | const u8 *msg, size_t len, u32 *session_timeout, 23 | u32 *acct_interim_interval, 24 | struct vlan_description *vlan_id, 25 | struct hostapd_sta_wpa_psk_short **psk, 26 | char **identity, char **radius_cui, 27 | int is_probe_req); 28 | int hostapd_acl_init(struct hostapd_data *hapd); 29 | void hostapd_acl_deinit(struct hostapd_data *hapd); 30 | void hostapd_free_psk_list(struct hostapd_sta_wpa_psk_short *psk); 31 | void hostapd_acl_expire(struct hostapd_data *hapd); 32 | 33 | #endif /* IEEE802_11_AUTH_H */ 34 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/ndisc_snoop.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Neighbor Discovery snooping for Proxy ARP 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef NDISC_SNOOP_H 10 | #define NDISC_SNOOP_H 11 | 12 | #if defined(CONFIG_PROXYARP) && defined(CONFIG_IPV6) 13 | 14 | int ndisc_snoop_init(struct hostapd_data *hapd); 15 | void ndisc_snoop_deinit(struct hostapd_data *hapd); 16 | void sta_ip6addr_del(struct hostapd_data *hapd, struct sta_info *sta); 17 | 18 | #else /* CONFIG_PROXYARP && CONFIG_IPV6 */ 19 | 20 | static inline int ndisc_snoop_init(struct hostapd_data *hapd) 21 | { 22 | return 0; 23 | } 24 | 25 | static inline void ndisc_snoop_deinit(struct hostapd_data *hapd) 26 | { 27 | } 28 | 29 | static inline void sta_ip6addr_del(struct hostapd_data *hapd, 30 | struct sta_info *sta) 31 | { 32 | } 33 | 34 | #endif /* CONFIG_PROXYARP && CONFIG_IPV6 */ 35 | 36 | #endif /* NDISC_SNOOP_H */ 37 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/neighbor_db.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / Neighboring APs DB 3 | * Copyright(c) 2013 - 2016 Intel Mobile Communications GmbH. 4 | * Copyright(c) 2011 - 2016 Intel Corporation. All rights reserved. 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef NEIGHBOR_DB_H 11 | #define NEIGHBOR_DB_H 12 | 13 | struct hostapd_neighbor_entry * 14 | hostapd_neighbor_get(struct hostapd_data *hapd, const u8 *bssid, 15 | const struct wpa_ssid_value *ssid); 16 | int hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid, 17 | const struct wpa_ssid_value *ssid, 18 | const struct wpabuf *nr, const struct wpabuf *lci, 19 | const struct wpabuf *civic, int stationary); 20 | int hostapd_neighbor_remove(struct hostapd_data *hapd, const u8 *bssid, 21 | const struct wpa_ssid_value *ssid); 22 | void hostpad_free_neighbor_db(struct hostapd_data *hapd); 23 | 24 | #endif /* NEIGHBOR_DB_H */ 25 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/p2p_hostapd.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / P2P integration 3 | * Copyright (c) 2009-2010, Atheros Communications 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef P2P_HOSTAPD_H 10 | #define P2P_HOSTAPD_H 11 | 12 | #ifdef CONFIG_P2P 13 | 14 | int hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, 15 | char *buf, size_t buflen); 16 | int hostapd_p2p_set_noa(struct hostapd_data *hapd, u8 count, int start, 17 | int duration); 18 | void hostapd_p2p_non_p2p_sta_connected(struct hostapd_data *hapd); 19 | void hostapd_p2p_non_p2p_sta_disconnected(struct hostapd_data *hapd); 20 | 21 | 22 | #else /* CONFIG_P2P */ 23 | 24 | static inline int hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, 25 | struct sta_info *sta, 26 | char *buf, size_t buflen) 27 | { 28 | return 0; 29 | } 30 | 31 | #endif /* CONFIG_P2P */ 32 | 33 | u8 * hostapd_eid_p2p_manage(struct hostapd_data *hapd, u8 *eid); 34 | 35 | #endif /* P2P_HOSTAPD_H */ 36 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/taxonomy.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / Station client taxonomy 3 | * Copyright (c) 2015 Google, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TAXONOMY_H 10 | #define TAXONOMY_H 11 | 12 | void taxonomy_sta_info_probe_req(const struct hostapd_data *hapd, 13 | struct sta_info *sta, 14 | const u8 *ie, size_t ie_len); 15 | void taxonomy_hostapd_sta_info_probe_req(const struct hostapd_data *hapd, 16 | struct hostapd_sta_info *sta, 17 | const u8 *ie, size_t ie_len); 18 | void taxonomy_sta_info_assoc_req(const struct hostapd_data *hapd, 19 | struct sta_info *sta, 20 | const u8 *ie, size_t ie_len); 21 | int retrieve_sta_taxonomy(const struct hostapd_data *hapd, 22 | struct sta_info *sta, char *buf, size_t buflen); 23 | 24 | #endif /* TAXONOMY_H */ 25 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/tkip_countermeasures.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / TKIP countermeasures 3 | * Copyright (c) 2002-2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TKIP_COUNTERMEASURES_H 10 | #define TKIP_COUNTERMEASURES_H 11 | 12 | int michael_mic_failure(struct hostapd_data *hapd, const u8 *addr, int local); 13 | void ieee80211_tkip_countermeasures_deinit(struct hostapd_data *hapd); 14 | 15 | #endif /* TKIP_COUNTERMEASURES_H */ 16 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/vlan.c: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / VLAN definition 3 | * Copyright (c) 2016, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "utils/includes.h" 10 | 11 | #include "utils/common.h" 12 | #include "ap/vlan.h" 13 | 14 | /* compare the two arguments, NULL is treated as empty 15 | * return zero iff they are equal 16 | */ 17 | int vlan_compare(struct vlan_description *a, struct vlan_description *b) 18 | { 19 | int i; 20 | const int a_empty = !a || !a->notempty; 21 | const int b_empty = !b || !b->notempty; 22 | 23 | if (a_empty && b_empty) 24 | return 0; 25 | if (a_empty || b_empty) 26 | return 1; 27 | if (a->untagged != b->untagged) 28 | return 1; 29 | for (i = 0; i < MAX_NUM_TAGGED_VLAN; i++) { 30 | if (a->tagged[i] != b->tagged[i]) 31 | return 1; 32 | } 33 | return 0; 34 | } 35 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/vlan.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / VLAN definition 3 | * Copyright (c) 2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef VLAN_H 10 | #define VLAN_H 11 | 12 | #define MAX_NUM_TAGGED_VLAN 32 13 | 14 | struct vlan_description { 15 | int notempty; /* 0 : no vlan information present, 1: else */ 16 | int untagged; /* >0 802.1q vid */ 17 | int tagged[MAX_NUM_TAGGED_VLAN]; /* first k items, ascending order */ 18 | }; 19 | 20 | #ifndef CONFIG_NO_VLAN 21 | int vlan_compare(struct vlan_description *a, struct vlan_description *b); 22 | #else /* CONFIG_NO_VLAN */ 23 | static inline int 24 | vlan_compare(struct vlan_description *a, struct vlan_description *b) 25 | { 26 | return 0; 27 | } 28 | #endif /* CONFIG_NO_VLAN */ 29 | 30 | #endif /* VLAN_H */ 31 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/vlan_util.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / VLAN netlink/ioctl api 3 | * Copyright (c) 2012, Michael Braun 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef VLAN_UTIL_H 10 | #define VLAN_UTIL_H 11 | 12 | struct hostapd_data; 13 | struct hostapd_vlan; 14 | struct full_dynamic_vlan; 15 | 16 | int vlan_add(const char *if_name, int vid, const char *vlan_if_name); 17 | int vlan_rem(const char *if_name); 18 | int vlan_set_name_type(unsigned int name_type); 19 | 20 | int ifconfig_helper(const char *if_name, int up); 21 | int ifconfig_up(const char *if_name); 22 | int iface_exists(const char *ifname); 23 | int vlan_if_remove(struct hostapd_data *hapd, struct hostapd_vlan *vlan); 24 | 25 | struct full_dynamic_vlan * 26 | full_dynamic_vlan_init(struct hostapd_data *hapd); 27 | void full_dynamic_vlan_deinit(struct full_dynamic_vlan *priv); 28 | void vlan_newlink(const char *ifname, struct hostapd_data *hapd); 29 | void vlan_dellink(const char *ifname, struct hostapd_data *hapd); 30 | 31 | #endif /* VLAN_UTIL_H */ 32 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/wmm.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / WMM (Wi-Fi Multimedia) 3 | * Copyright 2002-2003, Instant802 Networks, Inc. 4 | * Copyright 2005-2006, Devicescape Software, Inc. 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef WME_H 11 | #define WME_H 12 | 13 | struct ieee80211_mgmt; 14 | struct wmm_tspec_element; 15 | 16 | u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid); 17 | int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid, 18 | size_t len); 19 | void hostapd_wmm_action(struct hostapd_data *hapd, 20 | const struct ieee80211_mgmt *mgmt, size_t len); 21 | int wmm_process_tspec(struct wmm_tspec_element *tspec); 22 | 23 | #endif /* WME_H */ 24 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/wnm_ap.h: -------------------------------------------------------------------------------- 1 | /* 2 | * IEEE 802.11v WNM related functions and structures 3 | * Copyright (c) 2011-2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef WNM_AP_H 10 | #define WNM_AP_H 11 | 12 | struct sta_info; 13 | 14 | int ieee802_11_rx_wnm_action_ap(struct hostapd_data *hapd, 15 | const struct ieee80211_mgmt *mgmt, size_t len); 16 | int wnm_send_disassoc_imminent(struct hostapd_data *hapd, 17 | struct sta_info *sta, int disassoc_timer); 18 | int wnm_send_ess_disassoc_imminent(struct hostapd_data *hapd, 19 | struct sta_info *sta, const char *url, 20 | int disassoc_timer); 21 | int wnm_send_bss_tm_req(struct hostapd_data *hapd, struct sta_info *sta, 22 | u8 req_mode, int disassoc_timer, u8 valid_int, 23 | const u8 *bss_term_dur, const char *url, 24 | const u8 *nei_rep, size_t nei_rep_len, 25 | const u8 *mbo_attrs, size_t mbo_len); 26 | void ap_sta_reset_steer_flag_timer(void *eloop_ctx, void *timeout_ctx); 27 | int wnm_send_coloc_intf_req(struct hostapd_data *hapd, struct sta_info *sta, 28 | unsigned int auto_report, unsigned int timeout); 29 | 30 | #endif /* WNM_AP_H */ 31 | -------------------------------------------------------------------------------- /wpa_supplicant/src/ap/wpa_auth_glue.h: -------------------------------------------------------------------------------- 1 | /* 2 | * hostapd / WPA authenticator glue code 3 | * Copyright (c) 2002-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef WPA_AUTH_GLUE_H 10 | #define WPA_AUTH_GLUE_H 11 | 12 | int hostapd_setup_wpa(struct hostapd_data *hapd); 13 | void hostapd_reconfig_wpa(struct hostapd_data *hapd); 14 | void hostapd_deinit_wpa(struct hostapd_data *hapd); 15 | 16 | #endif /* WPA_AUTH_GLUE_H */ 17 | -------------------------------------------------------------------------------- /wpa_supplicant/src/common/Makefile: -------------------------------------------------------------------------------- 1 | all: libcommon.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libcommon.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_IEEE80211R 12 | CFLAGS += -DCONFIG_IEEE80211W 13 | CFLAGS += -DCONFIG_HS20 14 | CFLAGS += -DCONFIG_SAE 15 | CFLAGS += -DCONFIG_SUITE 16 | CFLAGS += -DCONFIG_SUITEB 17 | 18 | LIB_OBJS= \ 19 | gas.o \ 20 | hw_features_common.o \ 21 | ieee802_11_common.o \ 22 | sae.o \ 23 | wpa_common.o 24 | 25 | libcommon.a: $(LIB_OBJS) 26 | $(AR) crT $@ $? 27 | 28 | -include $(OBJS:%.o=%.d) 29 | -------------------------------------------------------------------------------- /wpa_supplicant/src/common/linux_bridge.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Linux bridge configuration kernel interface 3 | * Copyright (c) 2016, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef LINUX_BRIDGE_H 10 | #define LINUX_BRIDGE_H 11 | 12 | /* This interface is defined in linux/if_bridge.h */ 13 | 14 | #define BRCTL_GET_VERSION 0 15 | #define BRCTL_GET_BRIDGES 1 16 | #define BRCTL_ADD_BRIDGE 2 17 | #define BRCTL_DEL_BRIDGE 3 18 | #define BRCTL_ADD_IF 4 19 | #define BRCTL_DEL_IF 5 20 | #define BRCTL_GET_BRIDGE_INFO 6 21 | #define BRCTL_GET_PORT_LIST 7 22 | #define BRCTL_SET_BRIDGE_FORWARD_DELAY 8 23 | 24 | #endif /* LINUX_BRIDGE_H */ 25 | -------------------------------------------------------------------------------- /wpa_supplicant/src/common/qca-vendor-attr.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Qualcomm Atheros vendor specific attribute definitions 3 | * Copyright (c) 2014, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef QCA_VENDOR_ATTR_H 10 | #define QCA_VENDOR_ATTR_H 11 | 12 | /* 13 | * This file defines some of the attributes used with Qualcomm Atheros OUI 14 | * 00:13:74 in a way that is not suitable for qca-vendor.h, e.g., due to 15 | * compiler dependencies. 16 | */ 17 | 18 | struct qca_avoid_freq_range { 19 | u32 start_freq; 20 | u32 end_freq; 21 | } __attribute__ ((packed)); 22 | 23 | struct qca_avoid_freq_list { 24 | u32 count; 25 | struct qca_avoid_freq_range range[0]; 26 | } __attribute__ ((packed)); 27 | 28 | #endif /* QCA_VENDOR_ATTR_H */ 29 | -------------------------------------------------------------------------------- /wpa_supplicant/src/common/version.h: -------------------------------------------------------------------------------- 1 | #ifndef VERSION_H 2 | #define VERSION_H 3 | 4 | #ifndef VERSION_STR_POSTFIX 5 | #define VERSION_STR_POSTFIX "" 6 | #endif /* VERSION_STR_POSTFIX */ 7 | 8 | #ifndef GIT_VERSION_STR_POSTFIX 9 | #define GIT_VERSION_STR_POSTFIX "" 10 | #endif /* GIT_VERSION_STR_POSTFIX */ 11 | 12 | #define VERSION_STR "2.7" VERSION_STR_POSTFIX GIT_VERSION_STR_POSTFIX 13 | 14 | #endif /* VERSION_H */ 15 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | libcrypto.a 2 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/aes-encblock.c: -------------------------------------------------------------------------------- 1 | /* 2 | * AES encrypt_block 3 | * 4 | * Copyright (c) 2003-2007, Jouni Malinen 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #include "includes.h" 11 | 12 | #include "common.h" 13 | #include "aes.h" 14 | #include "aes_wrap.h" 15 | 16 | /** 17 | * aes_128_encrypt_block - Perform one AES 128-bit block operation 18 | * @key: Key for AES 19 | * @in: Input data (16 bytes) 20 | * @out: Output of the AES block operation (16 bytes) 21 | * Returns: 0 on success, -1 on failure 22 | */ 23 | int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out) 24 | { 25 | void *ctx; 26 | ctx = aes_encrypt_init(key, 16); 27 | if (ctx == NULL) 28 | return -1; 29 | aes_encrypt(ctx, in, out); 30 | aes_encrypt_deinit(ctx); 31 | return 0; 32 | } 33 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/aes.h: -------------------------------------------------------------------------------- 1 | /* 2 | * AES functions 3 | * Copyright (c) 2003-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef AES_H 10 | #define AES_H 11 | 12 | #define AES_BLOCK_SIZE 16 13 | 14 | void * aes_encrypt_init(const u8 *key, size_t len); 15 | int aes_encrypt(void *ctx, const u8 *plain, u8 *crypt); 16 | void aes_encrypt_deinit(void *ctx); 17 | void * aes_decrypt_init(const u8 *key, size_t len); 18 | int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain); 19 | void aes_decrypt_deinit(void *ctx); 20 | 21 | #endif /* AES_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/aes_siv.h: -------------------------------------------------------------------------------- 1 | /* 2 | * AES SIV (RFC 5297) 3 | * Copyright (c) 2013 Cozybit, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef AES_SIV_H 10 | #define AES_SIV_H 11 | 12 | int aes_siv_encrypt(const u8 *key, size_t key_len, 13 | const u8 *pw, size_t pwlen, 14 | size_t num_elem, const u8 *addr[], const size_t *len, 15 | u8 *out); 16 | int aes_siv_decrypt(const u8 *key, size_t key_len, 17 | const u8 *iv_crypt, size_t iv_c_len, 18 | size_t num_elem, const u8 *addr[], const size_t *len, 19 | u8 *out); 20 | 21 | #endif /* AES_SIV_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/crypto_none.c: -------------------------------------------------------------------------------- 1 | /* 2 | * WPA Supplicant / Empty template functions for crypto wrapper 3 | * Copyright (c) 2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "crypto.h" 13 | 14 | 15 | int md4_vector(size_t num_elem, const u8 *addr[], const size_t *len, u8 *mac) 16 | { 17 | return 0; 18 | } 19 | 20 | 21 | int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) 22 | { 23 | return 0; 24 | } 25 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/des_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * DES and 3DES-EDE ciphers 3 | * Copyright (c) 2006-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DES_I_H 10 | #define DES_I_H 11 | 12 | struct des3_key_s { 13 | u32 ek[3][32]; 14 | u32 dk[3][32]; 15 | }; 16 | 17 | void des_key_setup(const u8 *key, u32 *ek, u32 *dk); 18 | void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt); 19 | void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain); 20 | 21 | void des3_key_setup(const u8 *key, struct des3_key_s *dkey); 22 | void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt); 23 | void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain); 24 | 25 | #endif /* DES_I_H */ 26 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/dh_group5.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Diffie-Hellman group 5 operations 3 | * Copyright (c) 2009, 2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "dh_groups.h" 13 | #include "dh_group5.h" 14 | 15 | 16 | void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) 17 | { 18 | wpabuf_free(*publ); 19 | *publ = dh_init(dh_groups_get(5), priv); 20 | if (*publ == NULL) 21 | return NULL; 22 | return (void *) 1; 23 | } 24 | 25 | 26 | void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) 27 | { 28 | return (void *) 1; 29 | } 30 | 31 | 32 | struct wpabuf * dh5_derive_shared(void *ctx, const struct wpabuf *peer_public, 33 | const struct wpabuf *own_private) 34 | { 35 | return dh_derive_shared(peer_public, own_private, dh_groups_get(5)); 36 | } 37 | 38 | 39 | void dh5_free(void *ctx) 40 | { 41 | } 42 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/dh_group5.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Diffie-Hellman group 5 operations 3 | * Copyright (c) 2009, 2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DH_GROUP5_H 10 | #define DH_GROUP5_H 11 | 12 | void * dh5_init(struct wpabuf **priv, struct wpabuf **publ); 13 | void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ); 14 | struct wpabuf * dh5_derive_shared(void *ctx, const struct wpabuf *peer_public, 15 | const struct wpabuf *own_private); 16 | void dh5_free(void *ctx); 17 | 18 | #endif /* DH_GROUP5_H */ 19 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/dh_groups.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Diffie-Hellman groups 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef DH_GROUPS_H 10 | #define DH_GROUPS_H 11 | 12 | struct dh_group { 13 | int id; 14 | const u8 *generator; 15 | size_t generator_len; 16 | const u8 *prime; 17 | size_t prime_len; 18 | const u8 *order; 19 | size_t order_len; 20 | unsigned int safe_prime:1; 21 | }; 22 | 23 | const struct dh_group * dh_groups_get(int id); 24 | struct wpabuf * dh_init(const struct dh_group *dh, struct wpabuf **priv); 25 | struct wpabuf * dh_derive_shared(const struct wpabuf *peer_public, 26 | const struct wpabuf *own_private, 27 | const struct dh_group *dh); 28 | 29 | #endif /* DH_GROUPS_H */ 30 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/md5.h: -------------------------------------------------------------------------------- 1 | /* 2 | * MD5 hash implementation and interface functions 3 | * Copyright (c) 2003-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MD5_H 10 | #define MD5_H 11 | 12 | #define MD5_MAC_LEN 16 13 | 14 | int hmac_md5_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_md5(const u8 *key, size_t key_len, const u8 *data, size_t data_len, 17 | u8 *mac); 18 | 19 | #endif /* MD5_H */ 20 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/md5_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * MD5 internal definitions 3 | * Copyright (c) 2003-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MD5_I_H 10 | #define MD5_I_H 11 | 12 | struct MD5Context { 13 | u32 buf[4]; 14 | u32 bits[2]; 15 | u8 in[64]; 16 | }; 17 | 18 | void MD5Init(struct MD5Context *context); 19 | void MD5Update(struct MD5Context *context, unsigned char const *buf, 20 | unsigned len); 21 | void MD5Final(unsigned char digest[16], struct MD5Context *context); 22 | 23 | #endif /* MD5_I_H */ 24 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/milenage.h: -------------------------------------------------------------------------------- 1 | /* 2 | * UMTS AKA - Milenage algorithm (3GPP TS 35.205, .206, .207, .208) 3 | * Copyright (c) 2006-2007 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MILENAGE_H 10 | #define MILENAGE_H 11 | 12 | void milenage_generate(const u8 *opc, const u8 *amf, const u8 *k, 13 | const u8 *sqn, const u8 *_rand, u8 *autn, u8 *ik, 14 | u8 *ck, u8 *res, size_t *res_len); 15 | int milenage_auts(const u8 *opc, const u8 *k, const u8 *_rand, const u8 *auts, 16 | u8 *sqn); 17 | int gsm_milenage(const u8 *opc, const u8 *k, const u8 *_rand, u8 *sres, 18 | u8 *kc); 19 | int milenage_check(const u8 *opc, const u8 *k, const u8 *sqn, const u8 *_rand, 20 | const u8 *autn, u8 *ik, u8 *ck, u8 *res, size_t *res_len, 21 | u8 *auts); 22 | int milenage_f1(const u8 *opc, const u8 *k, const u8 *_rand, 23 | const u8 *sqn, const u8 *amf, u8 *mac_a, u8 *mac_s); 24 | int milenage_f2345(const u8 *opc, const u8 *k, const u8 *_rand, 25 | u8 *res, u8 *ck, u8 *ik, u8 *ak, u8 *akstar); 26 | 27 | #endif /* MILENAGE_H */ 28 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/random.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Random number generator 3 | * Copyright (c) 2010-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef RANDOM_H 10 | #define RANDOM_H 11 | 12 | #ifdef CONFIG_NO_RANDOM_POOL 13 | #define random_init(e) do { } while (0) 14 | #define random_deinit() do { } while (0) 15 | #define random_add_randomness(b, l) do { } while (0) 16 | #define random_get_bytes(b, l) os_get_random((b), (l)) 17 | #define random_pool_ready() 1 18 | #define random_mark_pool_ready() do { } while (0) 19 | #else /* CONFIG_NO_RANDOM_POOL */ 20 | void random_init(const char *entropy_file); 21 | void random_deinit(void); 22 | void random_add_randomness(const void *buf, size_t len); 23 | int random_get_bytes(void *buf, size_t len); 24 | int random_pool_ready(void); 25 | void random_mark_pool_ready(void); 26 | #endif /* CONFIG_NO_RANDOM_POOL */ 27 | 28 | #endif /* RANDOM_H */ 29 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/sha1.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA1 hash implementation and interface functions 3 | * Copyright (c) 2003-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA1_H 10 | #define SHA1_H 11 | 12 | #define SHA1_MAC_LEN 20 13 | 14 | int hmac_sha1_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_sha1(const u8 *key, size_t key_len, const u8 *data, size_t data_len, 17 | u8 *mac); 18 | int sha1_prf(const u8 *key, size_t key_len, const char *label, 19 | const u8 *data, size_t data_len, u8 *buf, size_t buf_len); 20 | int sha1_t_prf(const u8 *key, size_t key_len, const char *label, 21 | const u8 *seed, size_t seed_len, u8 *buf, size_t buf_len); 22 | int __must_check tls_prf_sha1_md5(const u8 *secret, size_t secret_len, 23 | const char *label, const u8 *seed, 24 | size_t seed_len, u8 *out, size_t outlen); 25 | int pbkdf2_sha1(const char *passphrase, const u8 *ssid, size_t ssid_len, 26 | int iterations, u8 *buf, size_t buflen); 27 | #endif /* SHA1_H */ 28 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/sha1_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA1 internal definitions 3 | * Copyright (c) 2003-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA1_I_H 10 | #define SHA1_I_H 11 | 12 | struct SHA1Context { 13 | u32 state[5]; 14 | u32 count[2]; 15 | unsigned char buffer[64]; 16 | }; 17 | 18 | void SHA1Init(struct SHA1Context *context); 19 | void SHA1Update(struct SHA1Context *context, const void *data, u32 len); 20 | void SHA1Final(unsigned char digest[20], struct SHA1Context *context); 21 | void SHA1Transform(u32 state[5], const unsigned char buffer[64]); 22 | 23 | #endif /* SHA1_I_H */ 24 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/sha256.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA256 hash implementation and interface functions 3 | * Copyright (c) 2003-2016, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA256_H 10 | #define SHA256_H 11 | 12 | #define SHA256_MAC_LEN 32 13 | 14 | int hmac_sha256_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_sha256(const u8 *key, size_t key_len, const u8 *data, 17 | size_t data_len, u8 *mac); 18 | int sha256_prf(const u8 *key, size_t key_len, const char *label, 19 | const u8 *data, size_t data_len, u8 *buf, size_t buf_len); 20 | int sha256_prf_bits(const u8 *key, size_t key_len, const char *label, 21 | const u8 *data, size_t data_len, u8 *buf, 22 | size_t buf_len_bits); 23 | void tls_prf_sha256(const u8 *secret, size_t secret_len, 24 | const char *label, const u8 *seed, size_t seed_len, 25 | u8 *out, size_t outlen); 26 | int hmac_sha256_kdf(const u8 *secret, size_t secret_len, 27 | const char *label, const u8 *seed, size_t seed_len, 28 | u8 *out, size_t outlen); 29 | 30 | #endif /* SHA256_H */ 31 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/sha256_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA-256 internal definitions 3 | * Copyright (c) 2003-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA256_I_H 10 | #define SHA256_I_H 11 | 12 | #define SHA256_BLOCK_SIZE 64 13 | 14 | struct sha256_state { 15 | u64 length; 16 | u32 state[8], curlen; 17 | u8 buf[SHA256_BLOCK_SIZE]; 18 | }; 19 | 20 | void sha256_init(struct sha256_state *md); 21 | int sha256_process(struct sha256_state *md, const unsigned char *in, 22 | unsigned long inlen); 23 | int sha256_done(struct sha256_state *md, unsigned char *out); 24 | 25 | #endif /* SHA256_I_H */ 26 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/sha384.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA384 hash implementation and interface functions 3 | * Copyright (c) 2015-2017, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA384_H 10 | #define SHA384_H 11 | 12 | #define SHA384_MAC_LEN 48 13 | 14 | int hmac_sha384_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_sha384(const u8 *key, size_t key_len, const u8 *data, 17 | size_t data_len, u8 *mac); 18 | int sha384_prf(const u8 *key, size_t key_len, const char *label, 19 | const u8 *data, size_t data_len, u8 *buf, size_t buf_len); 20 | int sha384_prf_bits(const u8 *key, size_t key_len, const char *label, 21 | const u8 *data, size_t data_len, u8 *buf, 22 | size_t buf_len_bits); 23 | int hmac_sha384_kdf(const u8 *secret, size_t secret_len, 24 | const char *label, const u8 *seed, size_t seed_len, 25 | u8 *out, size_t outlen); 26 | 27 | #endif /* SHA384_H */ 28 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/sha384_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA-384 internal definitions 3 | * Copyright (c) 2015, Pali Rohár 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA384_I_H 10 | #define SHA384_I_H 11 | 12 | #include "sha512_i.h" 13 | 14 | #define SHA384_BLOCK_SIZE SHA512_BLOCK_SIZE 15 | 16 | #define sha384_state sha512_state 17 | 18 | void sha384_init(struct sha384_state *md); 19 | int sha384_process(struct sha384_state *md, const unsigned char *in, 20 | unsigned long inlen); 21 | int sha384_done(struct sha384_state *md, unsigned char *out); 22 | 23 | #endif /* SHA384_I_H */ 24 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/sha512.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA512 hash implementation and interface functions 3 | * Copyright (c) 2015-2017, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA512_H 10 | #define SHA512_H 11 | 12 | #define SHA512_MAC_LEN 64 13 | 14 | int hmac_sha512_vector(const u8 *key, size_t key_len, size_t num_elem, 15 | const u8 *addr[], const size_t *len, u8 *mac); 16 | int hmac_sha512(const u8 *key, size_t key_len, const u8 *data, 17 | size_t data_len, u8 *mac); 18 | int sha512_prf(const u8 *key, size_t key_len, const char *label, 19 | const u8 *data, size_t data_len, u8 *buf, size_t buf_len); 20 | int sha512_prf_bits(const u8 *key, size_t key_len, const char *label, 21 | const u8 *data, size_t data_len, u8 *buf, 22 | size_t buf_len_bits); 23 | int hmac_sha512_kdf(const u8 *secret, size_t secret_len, 24 | const char *label, const u8 *seed, size_t seed_len, 25 | u8 *out, size_t outlen); 26 | 27 | #endif /* SHA512_H */ 28 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/sha512_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SHA-512 internal definitions 3 | * Copyright (c) 2015, Pali Rohár 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SHA512_I_H 10 | #define SHA512_I_H 11 | 12 | #define SHA512_BLOCK_SIZE 128 13 | 14 | struct sha512_state { 15 | u64 length, state[8]; 16 | u32 curlen; 17 | u8 buf[SHA512_BLOCK_SIZE]; 18 | }; 19 | 20 | void sha512_init(struct sha512_state *md); 21 | int sha512_process(struct sha512_state *md, const unsigned char *in, 22 | unsigned long inlen); 23 | int sha512_done(struct sha512_state *md, unsigned char *out); 24 | 25 | #endif /* SHA512_I_H */ 26 | -------------------------------------------------------------------------------- /wpa_supplicant/src/crypto/tls_openssl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * SSL/TLS interface functions for OpenSSL 3 | * Copyright (c) 2004-2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TLS_OPENSSL_H 10 | #define TLS_OPENSSL_H 11 | 12 | enum ocsp_result { 13 | OCSP_GOOD, OCSP_REVOKED, OCSP_NO_RESPONSE, OCSP_INVALID 14 | }; 15 | 16 | enum ocsp_result check_ocsp_resp(SSL_CTX *ssl_ctx, SSL *ssl, X509 *cert, 17 | X509 *issuer, X509 *issuer_issuer); 18 | 19 | #endif /* TLS_OPENSSL_H */ 20 | -------------------------------------------------------------------------------- /wpa_supplicant/src/drivers/.gitignore: -------------------------------------------------------------------------------- 1 | build.wpa_supplicant 2 | build.hostapd 3 | -------------------------------------------------------------------------------- /wpa_supplicant/src/drivers/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo Nothing to be made. 3 | 4 | clean: 5 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov 6 | rm -f build.wpa_supplicant build.hostapd 7 | 8 | install: 9 | @echo Nothing to be made. 10 | -------------------------------------------------------------------------------- /wpa_supplicant/src/drivers/driver_wired_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Common definitions for Wired Ethernet driver interfaces 3 | * Copyright (c) 2005-2009, Jouni Malinen 4 | * Copyright (c) 2004, Gunter Burchardt 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef DRIVER_WIRED_COMMON_H 11 | #define DRIVER_WIRED_COMMON_H 12 | 13 | struct driver_wired_common_data { 14 | char ifname[IFNAMSIZ + 1]; 15 | void *ctx; 16 | 17 | int sock; /* raw packet socket for driver access */ 18 | int pf_sock; 19 | int membership, multi, iff_allmulti, iff_up; 20 | }; 21 | 22 | static const u8 pae_group_addr[ETH_ALEN] = 23 | { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x03 }; 24 | 25 | int wired_multicast_membership(int sock, int ifindex, const u8 *addr, int add); 26 | int driver_wired_get_ssid(void *priv, u8 *ssid); 27 | int driver_wired_get_bssid(void *priv, u8 *bssid); 28 | int driver_wired_get_capa(void *priv, struct wpa_driver_capa *capa); 29 | 30 | int driver_wired_init_common(struct driver_wired_common_data *common, 31 | const char *ifname, void *ctx); 32 | void driver_wired_deinit_common(struct driver_wired_common_data *common); 33 | 34 | #endif /* DRIVER_WIRED_COMMON_H */ 35 | -------------------------------------------------------------------------------- /wpa_supplicant/src/drivers/linux_defines.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Linux defines for values that are not yet included in common C libraries 3 | * Copyright (c) 2014, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef LINUX_DEFINES_H 10 | #define LINUX_DEFINES_H 11 | 12 | #ifndef SO_WIFI_STATUS 13 | # if defined(__sparc__) 14 | # define SO_WIFI_STATUS 0x0025 15 | # elif defined(__parisc__) 16 | # define SO_WIFI_STATUS 0x4022 17 | # else 18 | # define SO_WIFI_STATUS 41 19 | # endif 20 | 21 | # define SCM_WIFI_STATUS SO_WIFI_STATUS 22 | #endif 23 | 24 | #ifndef SO_EE_ORIGIN_TXSTATUS 25 | #define SO_EE_ORIGIN_TXSTATUS 4 26 | #endif 27 | 28 | #ifndef PACKET_TX_TIMESTAMP 29 | #define PACKET_TX_TIMESTAMP 16 30 | #endif 31 | 32 | #ifndef IFF_LOWER_UP 33 | #define IFF_LOWER_UP 0x10000 /* driver signals L1 up */ 34 | #endif 35 | #ifndef IFF_DORMANT 36 | #define IFF_DORMANT 0x20000 /* driver signals dormant */ 37 | #endif 38 | 39 | #ifndef IF_OPER_DORMANT 40 | #define IF_OPER_DORMANT 5 41 | #endif 42 | #ifndef IF_OPER_UP 43 | #define IF_OPER_UP 6 44 | #endif 45 | 46 | #endif /* LINUX_DEFINES_H */ 47 | -------------------------------------------------------------------------------- /wpa_supplicant/src/drivers/linux_ioctl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Linux ioctl helper functions for driver wrappers 3 | * Copyright (c) 2002-2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef LINUX_IOCTL_H 10 | #define LINUX_IOCTL_H 11 | 12 | int linux_set_iface_flags(int sock, const char *ifname, int dev_up); 13 | int linux_iface_up(int sock, const char *ifname); 14 | int linux_get_ifhwaddr(int sock, const char *ifname, u8 *addr); 15 | int linux_set_ifhwaddr(int sock, const char *ifname, const u8 *addr); 16 | int linux_br_add(int sock, const char *brname); 17 | int linux_br_del(int sock, const char *brname); 18 | int linux_br_add_if(int sock, const char *brname, const char *ifname); 19 | int linux_br_del_if(int sock, const char *brname, const char *ifname); 20 | int linux_br_get(char *brname, const char *ifname); 21 | int linux_master_get(char *master_ifname, const char *ifname); 22 | 23 | #endif /* LINUX_IOCTL_H */ 24 | -------------------------------------------------------------------------------- /wpa_supplicant/src/drivers/linux_wext.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Driver interaction with generic Linux Wireless Extensions 3 | * Copyright (c) 2003-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef LINUX_WEXT_H 10 | #define LINUX_WEXT_H 11 | 12 | #ifndef ANDROID 13 | 14 | /* 15 | * Avoid including other kernel header to avoid conflicts with C library 16 | * headers. 17 | */ 18 | #define _LINUX_TYPES_H 19 | #define _LINUX_SOCKET_H 20 | #define _LINUX_IF_H 21 | 22 | #include 23 | #include 24 | typedef uint32_t __u32; 25 | typedef int32_t __s32; 26 | typedef uint16_t __u16; 27 | typedef int16_t __s16; 28 | typedef uint8_t __u8; 29 | #ifndef __user 30 | #define __user 31 | #endif /* __user */ 32 | 33 | #endif /* ANDROID */ 34 | 35 | #include 36 | 37 | #ifndef IW_ENCODE_ALG_PMK 38 | #define IW_ENCODE_ALG_PMK 4 39 | #endif 40 | 41 | #ifndef IW_ENC_CAPA_4WAY_HANDSHAKE 42 | #define IW_ENC_CAPA_4WAY_HANDSHAKE 0x00000010 43 | #endif 44 | 45 | #endif /* LINUX_WEXT_H */ 46 | -------------------------------------------------------------------------------- /wpa_supplicant/src/drivers/netlink.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Netlink helper functions for driver wrappers 3 | * Copyright (c) 2002-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef NETLINK_H 10 | #define NETLINK_H 11 | 12 | struct netlink_data; 13 | struct ifinfomsg; 14 | 15 | struct netlink_config { 16 | void *ctx; 17 | void (*newlink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf, 18 | size_t len); 19 | void (*dellink_cb)(void *ctx, struct ifinfomsg *ifi, u8 *buf, 20 | size_t len); 21 | }; 22 | 23 | struct netlink_data * netlink_init(struct netlink_config *cfg); 24 | void netlink_deinit(struct netlink_data *netlink); 25 | int netlink_send_oper_ifla(struct netlink_data *netlink, int ifindex, 26 | int linkmode, int operstate); 27 | 28 | #endif /* NETLINK_H */ 29 | -------------------------------------------------------------------------------- /wpa_supplicant/src/drivers/rfkill.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Linux rfkill helper functions for driver wrappers 3 | * Copyright (c) 2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef RFKILL_H 10 | #define RFKILL_H 11 | 12 | struct rfkill_data; 13 | 14 | struct rfkill_config { 15 | void *ctx; 16 | char ifname[IFNAMSIZ]; 17 | void (*blocked_cb)(void *ctx); 18 | void (*unblocked_cb)(void *ctx); 19 | }; 20 | 21 | struct rfkill_data * rfkill_init(struct rfkill_config *cfg); 22 | void rfkill_deinit(struct rfkill_data *rfkill); 23 | int rfkill_is_blocked(struct rfkill_data *rfkill); 24 | 25 | #endif /* RFKILL_H */ 26 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_common/Makefile: -------------------------------------------------------------------------------- 1 | all: libeap_common.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeap_common.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | LIB_OBJS= \ 12 | chap.o \ 13 | eap_common.o \ 14 | eap_eke_common.o \ 15 | eap_eke_common.o \ 16 | eap_fast_common.o \ 17 | eap_gpsk_common.o \ 18 | eap_ikev2_common.o \ 19 | eap_pax_common.o \ 20 | eap_peap_common.o \ 21 | eap_psk_common.o \ 22 | eap_pwd_common.o \ 23 | eap_sake_common.o \ 24 | eap_sim_common.o \ 25 | eap_wsc_common.o \ 26 | ikev2_common.o 27 | 28 | libeap_common.a: $(LIB_OBJS) 29 | $(AR) crT $@ $? 30 | 31 | -include $(OBJS:%.o=%.d) 32 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_common/chap.c: -------------------------------------------------------------------------------- 1 | /* 2 | * CHAP-MD5 (RFC 1994) 3 | * Copyright (c) 2007-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "crypto/crypto.h" 13 | #include "chap.h" 14 | 15 | int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, 16 | size_t challenge_len, u8 *response) 17 | { 18 | const u8 *addr[3]; 19 | size_t len[3]; 20 | 21 | addr[0] = &id; 22 | len[0] = 1; 23 | addr[1] = secret; 24 | len[1] = secret_len; 25 | addr[2] = challenge; 26 | len[2] = challenge_len; 27 | return md5_vector(3, addr, len, response); 28 | } 29 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_common/chap.h: -------------------------------------------------------------------------------- 1 | /* 2 | * CHAP-MD5 (RFC 1994) 3 | * Copyright (c) 2007-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef CHAP_H 10 | #define CHAP_H 11 | 12 | #define CHAP_MD5_LEN 16 13 | 14 | int chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, 15 | size_t challenge_len, u8 *response); 16 | 17 | #endif /* CHAP_H */ 18 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_common/eap_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP common peer/server definitions 3 | * Copyright (c) 2004-2014, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_COMMON_H 10 | #define EAP_COMMON_H 11 | 12 | #include "wpabuf.h" 13 | 14 | struct erp_tlvs { 15 | const u8 *keyname; 16 | const u8 *domain; 17 | 18 | u8 keyname_len; 19 | u8 domain_len; 20 | }; 21 | 22 | int eap_hdr_len_valid(const struct wpabuf *msg, size_t min_payload); 23 | const u8 * eap_hdr_validate(int vendor, EapType eap_type, 24 | const struct wpabuf *msg, size_t *plen); 25 | struct wpabuf * eap_msg_alloc(int vendor, EapType type, size_t payload_len, 26 | u8 code, u8 identifier); 27 | void eap_update_len(struct wpabuf *msg); 28 | u8 eap_get_id(const struct wpabuf *msg); 29 | EapType eap_get_type(const struct wpabuf *msg); 30 | int erp_parse_tlvs(const u8 *pos, const u8 *end, struct erp_tlvs *tlvs, 31 | int stop_at_keyname); 32 | 33 | #endif /* EAP_COMMON_H */ 34 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_common/eap_ikev2_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-IKEv2 definitions 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_IKEV2_COMMON_H 10 | #define EAP_IKEV2_COMMON_H 11 | 12 | #define IKEV2_FLAGS_LENGTH_INCLUDED 0x80 13 | #define IKEV2_FLAGS_MORE_FRAGMENTS 0x40 14 | #define IKEV2_FLAGS_ICV_INCLUDED 0x20 15 | 16 | #define IKEV2_FRAGMENT_SIZE 1400 17 | 18 | struct ikev2_keys; 19 | 20 | int eap_ikev2_derive_keymat(int prf, struct ikev2_keys *keys, 21 | const u8 *i_nonce, size_t i_nonce_len, 22 | const u8 *r_nonce, size_t r_nonce_len, 23 | u8 *keymat); 24 | struct wpabuf * eap_ikev2_build_frag_ack(u8 id, u8 code); 25 | int eap_ikev2_validate_icv(int integ_alg, struct ikev2_keys *keys, 26 | int initiator, const struct wpabuf *msg, 27 | const u8 *pos, const u8 *end); 28 | 29 | #endif /* EAP_IKEV2_COMMON_H */ 30 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_common/eap_peap_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-PEAP common routines 3 | * Copyright (c) 2008-2011, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_PEAP_COMMON_H 10 | #define EAP_PEAP_COMMON_H 11 | 12 | int peap_prfplus(int version, const u8 *key, size_t key_len, 13 | const char *label, const u8 *seed, size_t seed_len, 14 | u8 *buf, size_t buf_len); 15 | 16 | #endif /* EAP_PEAP_COMMON_H */ 17 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_common/eap_wsc_common.c: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-WSC common routines for Wi-Fi Protected Setup 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "eap_defs.h" 13 | #include "eap_common.h" 14 | #include "wps/wps.h" 15 | #include "eap_wsc_common.h" 16 | 17 | struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code) 18 | { 19 | struct wpabuf *msg; 20 | 21 | msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id); 22 | if (msg == NULL) { 23 | wpa_printf(MSG_ERROR, "EAP-WSC: Failed to allocate memory for " 24 | "FRAG_ACK"); 25 | return NULL; 26 | } 27 | 28 | wpa_printf(MSG_DEBUG, "EAP-WSC: Send WSC/FRAG_ACK"); 29 | wpabuf_put_u8(msg, WSC_FRAG_ACK); /* Op-Code */ 30 | wpabuf_put_u8(msg, 0); /* Flags */ 31 | 32 | return msg; 33 | } 34 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_common/eap_wsc_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-WSC definitions for Wi-Fi Protected Setup 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EAP_WSC_COMMON_H 10 | #define EAP_WSC_COMMON_H 11 | 12 | #define EAP_VENDOR_TYPE_WSC 1 13 | 14 | #define WSC_FLAGS_MF 0x01 15 | #define WSC_FLAGS_LF 0x02 16 | 17 | #define WSC_ID_REGISTRAR "WFA-SimpleConfig-Registrar-1-0" 18 | #define WSC_ID_REGISTRAR_LEN 30 19 | #define WSC_ID_ENROLLEE "WFA-SimpleConfig-Enrollee-1-0" 20 | #define WSC_ID_ENROLLEE_LEN 29 21 | 22 | #define WSC_FRAGMENT_SIZE 1400 23 | 24 | 25 | struct wpabuf * eap_wsc_build_frag_ack(u8 id, u8 code); 26 | 27 | #endif /* EAP_WSC_COMMON_H */ 28 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_peer/Makefile: -------------------------------------------------------------------------------- 1 | all: libeap_peer.a 2 | 3 | clean: 4 | rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov libeap_peer.a 5 | 6 | install: 7 | if ls *.so >/dev/null 2>&1; then \ 8 | install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \ 9 | cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \ 10 | ; fi 11 | 12 | include ../lib.rules 13 | 14 | CFLAGS += -DIEEE8021X_EAPOL 15 | 16 | LIB_OBJS= \ 17 | eap.o \ 18 | eap_methods.o 19 | 20 | libeap_peer.a: $(LIB_OBJS) 21 | $(AR) crT $@ $? 22 | 23 | -include $(OBJS:%.o=%.d) 24 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_peer/mschapv2.h: -------------------------------------------------------------------------------- 1 | /* 2 | * MSCHAPV2 (RFC 2759) 3 | * Copyright (c) 2004-2008, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MSCHAPV2_H 10 | #define MSCHAPV2_H 11 | 12 | #define MSCHAPV2_CHAL_LEN 16 13 | #define MSCHAPV2_NT_RESPONSE_LEN 24 14 | #define MSCHAPV2_AUTH_RESPONSE_LEN 20 15 | #define MSCHAPV2_MASTER_KEY_LEN 16 16 | 17 | const u8 * mschapv2_remove_domain(const u8 *username, size_t *len); 18 | int mschapv2_derive_response(const u8 *username, size_t username_len, 19 | const u8 *password, size_t password_len, 20 | int pwhash, 21 | const u8 *auth_challenge, 22 | const u8 *peer_challenge, 23 | u8 *nt_response, u8 *auth_response, 24 | u8 *master_key); 25 | int mschapv2_verify_auth_response(const u8 *auth_response, 26 | const u8 *buf, size_t buf_len); 27 | 28 | #endif /* MSCHAPV2_H */ 29 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_peer/tncc.h: -------------------------------------------------------------------------------- 1 | /* 2 | * EAP-TNC - TNCC (IF-IMC and IF-TNCCS) 3 | * Copyright (c) 2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef TNCC_H 10 | #define TNCC_H 11 | 12 | struct tncc_data; 13 | 14 | struct tncc_data * tncc_init(void); 15 | void tncc_deinit(struct tncc_data *tncc); 16 | void tncc_init_connection(struct tncc_data *tncc); 17 | size_t tncc_total_send_len(struct tncc_data *tncc); 18 | u8 * tncc_copy_send_buf(struct tncc_data *tncc, u8 *pos); 19 | char * tncc_if_tnccs_start(struct tncc_data *tncc); 20 | char * tncc_if_tnccs_end(void); 21 | 22 | enum tncc_process_res { 23 | TNCCS_PROCESS_ERROR = -1, 24 | TNCCS_PROCESS_OK_NO_RECOMMENDATION = 0, 25 | TNCCS_RECOMMENDATION_ERROR, 26 | TNCCS_RECOMMENDATION_ALLOW, 27 | TNCCS_RECOMMENDATION_NONE, 28 | TNCCS_RECOMMENDATION_ISOLATE 29 | }; 30 | 31 | enum tncc_process_res tncc_process_if_tnccs(struct tncc_data *tncc, 32 | const u8 *msg, size_t len); 33 | 34 | struct wpabuf * tncc_process_soh_request(int ver, const u8 *data, size_t len); 35 | 36 | #endif /* TNCC_H */ 37 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eap_server/Makefile: -------------------------------------------------------------------------------- 1 | all: libeap_server.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeap_server.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_HS20 12 | 13 | LIB_OBJS= \ 14 | eap_server.o \ 15 | eap_server_identity.o \ 16 | eap_server_methods.o 17 | 18 | libeap_server.a: $(LIB_OBJS) 19 | $(AR) crT $@ $? 20 | 21 | -include $(OBJS:%.o=%.d) 22 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eapol_auth/Makefile: -------------------------------------------------------------------------------- 1 | all: libeapol_auth.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeapol_auth.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | LIB_OBJS = eapol_auth_sm.o eapol_auth_dump.o 12 | 13 | libeapol_auth.a: $(LIB_OBJS) 14 | $(AR) crT $@ $? 15 | 16 | -include $(OBJS:%.o=%.d) 17 | -------------------------------------------------------------------------------- /wpa_supplicant/src/eapol_supp/Makefile: -------------------------------------------------------------------------------- 1 | all: libeapol_supp.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeapol_supp.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DIEEE8021X_EAPOL 12 | 13 | LIB_OBJS = eapol_supp_sm.o 14 | 15 | libeapol_supp.a: $(LIB_OBJS) 16 | $(AR) crT $@ $? 17 | 18 | -include $(OBJS:%.o=%.d) 19 | -------------------------------------------------------------------------------- /wpa_supplicant/src/fst/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo Nothing to be made. 3 | 4 | clean: 5 | rm -f *~ *.o *.d 6 | 7 | install: 8 | @echo Nothing to be made. 9 | -------------------------------------------------------------------------------- /wpa_supplicant/src/l2_packet/Makefile: -------------------------------------------------------------------------------- 1 | all: libl2_packet.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libl2_packet.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | LIB_OBJS = l2_packet_linux.o 12 | 13 | libl2_packet.a: $(LIB_OBJS) 14 | $(AR) crT $@ $? 15 | 16 | -include $(OBJS:%.o=%.d) 17 | -------------------------------------------------------------------------------- /wpa_supplicant/src/lib.rules: -------------------------------------------------------------------------------- 1 | ifndef CC 2 | CC=gcc 3 | endif 4 | 5 | ifndef CFLAGS 6 | CFLAGS = -MMD -O2 -Wall -g 7 | endif 8 | 9 | CFLAGS += -I.. -I../utils 10 | 11 | 12 | Q=@ 13 | E=echo 14 | ifeq ($(V), 1) 15 | Q= 16 | E=true 17 | endif 18 | ifeq ($(QUIET), 1) 19 | Q=@ 20 | E=true 21 | endif 22 | 23 | %.o: %.c 24 | $(Q)$(CC) -c -o $@ $(CFLAGS) $< 25 | @$(E) " CC " $< 26 | -------------------------------------------------------------------------------- /wpa_supplicant/src/p2p/Makefile: -------------------------------------------------------------------------------- 1 | all: libp2p.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libp2p.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_WIFI_DISPLAY 12 | CFLAGS += -DCONFIG_WPS_NFC 13 | 14 | LIB_OBJS= \ 15 | p2p_build.o \ 16 | p2p.o \ 17 | p2p_dev_disc.o \ 18 | p2p_go_neg.o \ 19 | p2p_group.o \ 20 | p2p_invitation.o \ 21 | p2p_parse.o \ 22 | p2p_pd.o \ 23 | p2p_sd.o \ 24 | p2p_utils.o 25 | 26 | libp2p.a: $(LIB_OBJS) 27 | $(AR) crT $@ $? 28 | 29 | -include $(OBJS:%.o=%.d) 30 | -------------------------------------------------------------------------------- /wpa_supplicant/src/pae/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo Nothing to be made. 3 | 4 | clean: 5 | rm -f *~ *.o *.d 6 | 7 | install: 8 | @echo Nothing to be made. 9 | -------------------------------------------------------------------------------- /wpa_supplicant/src/pae/ieee802_1x_key.h: -------------------------------------------------------------------------------- 1 | /* 2 | * IEEE 802.1X-2010 Key Hierarchy 3 | * Copyright (c) 2013, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef IEEE802_1X_KEY_H 10 | #define IEEE802_1X_KEY_H 11 | 12 | int ieee802_1x_cak_128bits_aes_cmac(const u8 *msk, const u8 *mac1, 13 | const u8 *mac2, u8 *cak); 14 | int ieee802_1x_ckn_128bits_aes_cmac(const u8 *msk, const u8 *mac1, 15 | const u8 *mac2, const u8 *sid, 16 | size_t sid_bytes, u8 *ckn); 17 | int ieee802_1x_kek_128bits_aes_cmac(const u8 *cak, const u8 *ckn, 18 | size_t ckn_bytes, u8 *kek); 19 | int ieee802_1x_ick_128bits_aes_cmac(const u8 *cak, const u8 *ckn, 20 | size_t ckn_bytes, u8 *ick); 21 | int ieee802_1x_icv_128bits_aes_cmac(const u8 *ick, const u8 *msg, 22 | size_t msg_bytes, u8 *icv); 23 | int ieee802_1x_sak_128bits_aes_cmac(const u8 *cak, const u8 *ctx, 24 | size_t ctx_bytes, u8 *sak); 25 | 26 | #endif /* IEEE802_1X_KEY_H */ 27 | -------------------------------------------------------------------------------- /wpa_supplicant/src/radius/.gitignore: -------------------------------------------------------------------------------- 1 | libradius.a 2 | -------------------------------------------------------------------------------- /wpa_supplicant/src/radius/Makefile: -------------------------------------------------------------------------------- 1 | all: libradius.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libradius.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | 10 | include ../lib.rules 11 | 12 | CFLAGS += -DCONFIG_IPV6 13 | 14 | LIB_OBJS= \ 15 | radius.o \ 16 | radius_client.o \ 17 | radius_das.o \ 18 | radius_server.o 19 | 20 | libradius.a: $(LIB_OBJS) 21 | $(AR) crT $@ $? 22 | 23 | -include $(OBJS:%.o=%.d) 24 | -------------------------------------------------------------------------------- /wpa_supplicant/src/rsn_supp/Makefile: -------------------------------------------------------------------------------- 1 | all: librsn_supp.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov librsn_supp.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_IEEE80211W 12 | CFLAGS += -DCONFIG_IEEE80211R 13 | CFLAGS += -DCONFIG_TDLS 14 | CFLAGS += -DCONFIG_WNM 15 | CFLAGS += -DIEEE8021X_EAPOL 16 | 17 | LIB_OBJS= \ 18 | pmksa_cache.o \ 19 | wpa_ft.o \ 20 | tdls.o \ 21 | preauth.o \ 22 | wpa.o \ 23 | wpa_ie.o 24 | 25 | librsn_supp.a: $(LIB_OBJS) 26 | $(AR) crT $@ $? 27 | 28 | -include $(OBJS:%.o=%.d) 29 | -------------------------------------------------------------------------------- /wpa_supplicant/src/tls/.gitignore: -------------------------------------------------------------------------------- 1 | libtls.a 2 | -------------------------------------------------------------------------------- /wpa_supplicant/src/tls/Makefile: -------------------------------------------------------------------------------- 1 | all: libtls.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d libtls.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | 10 | include ../lib.rules 11 | 12 | CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH 13 | CFLAGS += -DCONFIG_CRYPTO_INTERNAL 14 | CFLAGS += -DCONFIG_TLSV11 15 | CFLAGS += -DCONFIG_TLSV12 16 | 17 | LIB_OBJS= \ 18 | asn1.o \ 19 | bignum.o \ 20 | pkcs1.o \ 21 | pkcs5.o \ 22 | pkcs8.o \ 23 | rsa.o \ 24 | tlsv1_client.o \ 25 | tlsv1_client_read.o \ 26 | tlsv1_client_write.o \ 27 | tlsv1_client_ocsp.o \ 28 | tlsv1_common.o \ 29 | tlsv1_cred.o \ 30 | tlsv1_record.o \ 31 | tlsv1_server.o \ 32 | tlsv1_server_read.o \ 33 | tlsv1_server_write.o \ 34 | x509v3.o 35 | 36 | 37 | libtls.a: $(LIB_OBJS) 38 | $(AR) crT $@ $? 39 | 40 | -include $(OBJS:%.o=%.d) 41 | -------------------------------------------------------------------------------- /wpa_supplicant/src/tls/pkcs1.h: -------------------------------------------------------------------------------- 1 | /* 2 | * PKCS #1 (RSA Encryption) 3 | * Copyright (c) 2006-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef PKCS1_H 10 | #define PKCS1_H 11 | 12 | struct crypto_public_key; 13 | struct asn1_oid; 14 | 15 | int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key, 16 | int use_private, const u8 *in, size_t inlen, 17 | u8 *out, size_t *outlen); 18 | int pkcs1_v15_private_key_decrypt(struct crypto_rsa_key *key, 19 | const u8 *in, size_t inlen, 20 | u8 *out, size_t *outlen); 21 | int pkcs1_decrypt_public_key(struct crypto_rsa_key *key, 22 | const u8 *crypt, size_t crypt_len, 23 | u8 *plain, size_t *plain_len); 24 | int pkcs1_v15_sig_ver(struct crypto_public_key *pk, 25 | const u8 *s, size_t s_len, 26 | const struct asn1_oid *hash_alg, 27 | const u8 *hash, size_t hash_len); 28 | 29 | #endif /* PKCS1_H */ 30 | -------------------------------------------------------------------------------- /wpa_supplicant/src/tls/pkcs5.h: -------------------------------------------------------------------------------- 1 | /* 2 | * PKCS #5 (Password-based Encryption) 3 | * Copyright (c) 2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef PKCS5_H 10 | #define PKCS5_H 11 | 12 | u8 * pkcs5_decrypt(const u8 *enc_alg, size_t enc_alg_len, 13 | const u8 *enc_data, size_t enc_data_len, 14 | const char *passwd, size_t *data_len); 15 | 16 | #endif /* PKCS5_H */ 17 | -------------------------------------------------------------------------------- /wpa_supplicant/src/tls/pkcs8.h: -------------------------------------------------------------------------------- 1 | /* 2 | * PKCS #8 (Private-key information syntax) 3 | * Copyright (c) 2006-2009, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef PKCS8_H 10 | #define PKCS8_H 11 | 12 | struct crypto_private_key * pkcs8_key_import(const u8 *buf, size_t len); 13 | struct crypto_private_key * 14 | pkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd); 15 | 16 | #endif /* PKCS8_H */ 17 | -------------------------------------------------------------------------------- /wpa_supplicant/src/tls/rsa.h: -------------------------------------------------------------------------------- 1 | /* 2 | * RSA 3 | * Copyright (c) 2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef RSA_H 10 | #define RSA_H 11 | 12 | struct crypto_rsa_key; 13 | 14 | struct crypto_rsa_key * 15 | crypto_rsa_import_public_key(const u8 *buf, size_t len); 16 | struct crypto_rsa_key * 17 | crypto_rsa_import_public_key_parts(const u8 *n, size_t n_len, 18 | const u8 *e, size_t e_len); 19 | struct crypto_rsa_key * 20 | crypto_rsa_import_private_key(const u8 *buf, size_t len); 21 | size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key); 22 | int crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, 23 | struct crypto_rsa_key *key, int use_private); 24 | void crypto_rsa_free(struct crypto_rsa_key *key); 25 | 26 | #endif /* RSA_H */ 27 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/.gitignore: -------------------------------------------------------------------------------- 1 | libutils.a 2 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/Makefile: -------------------------------------------------------------------------------- 1 | all: libutils.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libutils.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | 10 | include ../lib.rules 11 | 12 | #CFLAGS += -DWPA_TRACE 13 | CFLAGS += -DCONFIG_IPV6 14 | CFLAGS += -DCONFIG_DEBUG_FILE 15 | 16 | LIB_OBJS= \ 17 | base64.o \ 18 | bitfield.o \ 19 | common.o \ 20 | crc32.o \ 21 | ip_addr.o \ 22 | radiotap.o \ 23 | trace.o \ 24 | uuid.o \ 25 | wpa_debug.o \ 26 | wpabuf.o 27 | 28 | # Pick correct OS wrapper implementation 29 | LIB_OBJS += os_unix.o 30 | 31 | # Pick correct event loop implementation 32 | LIB_OBJS += eloop.o 33 | 34 | # Pick correct edit implementation 35 | LIB_OBJS += edit.o 36 | 37 | #LIB_OBJS += pcsc_funcs.o 38 | 39 | libutils.a: $(LIB_OBJS) 40 | $(AR) crT $@ $? 41 | 42 | -include $(OBJS:%.o=%.d) 43 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/base64.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Base64 encoding/decoding (RFC1341) 3 | * Copyright (c) 2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BASE64_H 10 | #define BASE64_H 11 | 12 | unsigned char * base64_encode(const unsigned char *src, size_t len, 13 | size_t *out_len); 14 | unsigned char * base64_decode(const unsigned char *src, size_t len, 15 | size_t *out_len); 16 | unsigned char * base64_url_encode(const unsigned char *src, size_t len, 17 | size_t *out_len, int add_pad); 18 | unsigned char * base64_url_decode(const unsigned char *src, size_t len, 19 | size_t *out_len); 20 | 21 | #endif /* BASE64_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/bitfield.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Bitfield 3 | * Copyright (c) 2013, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BITFIELD_H 10 | #define BITFIELD_H 11 | 12 | struct bitfield; 13 | 14 | struct bitfield * bitfield_alloc(size_t max_bits); 15 | void bitfield_free(struct bitfield *bf); 16 | void bitfield_set(struct bitfield *bf, size_t bit); 17 | void bitfield_clear(struct bitfield *bf, size_t bit); 18 | int bitfield_is_set(struct bitfield *bf, size_t bit); 19 | int bitfield_get_first_zero(struct bitfield *bf); 20 | 21 | #endif /* BITFIELD_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/browser.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Hotspot 2.0 client - Web browser 3 | * Copyright (c) 2013, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BROWSER_H 10 | #define BROWSER_H 11 | 12 | #ifdef CONFIG_NO_BROWSER 13 | static inline int hs20_web_browser(const char *url) 14 | { 15 | return -1; 16 | } 17 | #else /* CONFIG_NO_BROWSER */ 18 | int hs20_web_browser(const char *url); 19 | #endif /* CONFIG_NO_BROWSER */ 20 | 21 | #endif /* BROWSER_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/crc32.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 32-bit CRC for FCS calculation 3 | * Copyright (c) 2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef CRC32_H 10 | #define CRC32_H 11 | 12 | u32 crc32(const u8 *frame, size_t frame_len); 13 | 14 | #endif /* CRC32_H */ 15 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/edit.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Command line editing and history 3 | * Copyright (c) 2010, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EDIT_H 10 | #define EDIT_H 11 | 12 | int edit_init(void (*cmd_cb)(void *ctx, char *cmd), 13 | void (*eof_cb)(void *ctx), 14 | char ** (*completion_cb)(void *ctx, const char *cmd, int pos), 15 | void *ctx, const char *history_file, const char *ps); 16 | void edit_deinit(const char *history_file, 17 | int (*filter_cb)(void *ctx, const char *cmd)); 18 | void edit_clear_line(void); 19 | void edit_redraw(void); 20 | 21 | #endif /* EDIT_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/ext_password.h: -------------------------------------------------------------------------------- 1 | /* 2 | * External password backend 3 | * Copyright (c) 2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EXT_PASSWORD_H 10 | #define EXT_PASSWORD_H 11 | 12 | struct ext_password_data; 13 | 14 | #ifdef CONFIG_EXT_PASSWORD 15 | 16 | struct ext_password_data * ext_password_init(const char *backend, 17 | const char *params); 18 | void ext_password_deinit(struct ext_password_data *data); 19 | 20 | struct wpabuf * ext_password_get(struct ext_password_data *data, 21 | const char *name); 22 | void ext_password_free(struct wpabuf *pw); 23 | 24 | #else /* CONFIG_EXT_PASSWORD */ 25 | 26 | #define ext_password_init(b, p) ((void *) 1) 27 | #define ext_password_deinit(d) do { } while (0) 28 | #define ext_password_get(d, n) (NULL) 29 | #define ext_password_free(p) do { } while (0) 30 | 31 | #endif /* CONFIG_EXT_PASSWORD */ 32 | 33 | #endif /* EXT_PASSWORD_H */ 34 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/ext_password_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * External password backend - internal definitions 3 | * Copyright (c) 2012, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef EXT_PASSWORD_I_H 10 | #define EXT_PASSWORD_I_H 11 | 12 | #include "ext_password.h" 13 | 14 | struct ext_password_backend { 15 | const char *name; 16 | void * (*init)(const char *params); 17 | void (*deinit)(void *ctx); 18 | struct wpabuf * (*get)(void *ctx, const char *name); 19 | }; 20 | 21 | struct wpabuf * ext_password_alloc(size_t len); 22 | 23 | /* Available ext_password backends */ 24 | 25 | #ifdef CONFIG_EXT_PASSWORD_TEST 26 | extern const struct ext_password_backend ext_password_test; 27 | #endif /* CONFIG_EXT_PASSWORD_TEST */ 28 | 29 | #endif /* EXT_PASSWORD_I_H */ 30 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/ip_addr.h: -------------------------------------------------------------------------------- 1 | /* 2 | * IP address processing 3 | * Copyright (c) 2003-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef IP_ADDR_H 10 | #define IP_ADDR_H 11 | 12 | struct hostapd_ip_addr { 13 | int af; /* AF_INET / AF_INET6 */ 14 | union { 15 | struct in_addr v4; 16 | #ifdef CONFIG_IPV6 17 | struct in6_addr v6; 18 | #endif /* CONFIG_IPV6 */ 19 | u8 max_len[16]; 20 | } u; 21 | }; 22 | 23 | const char * hostapd_ip_txt(const struct hostapd_ip_addr *addr, char *buf, 24 | size_t buflen); 25 | int hostapd_parse_ip_addr(const char *txt, struct hostapd_ip_addr *addr); 26 | 27 | #endif /* IP_ADDR_H */ 28 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/json.h: -------------------------------------------------------------------------------- 1 | /* 2 | * JavaScript Object Notation (JSON) parser (RFC7159) 3 | * Copyright (c) 2017, Qualcomm Atheros, Inc. 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef JSON_H 10 | #define JSON_H 11 | 12 | struct json_token { 13 | enum json_type { 14 | JSON_VALUE, 15 | JSON_OBJECT, 16 | JSON_ARRAY, 17 | JSON_STRING, 18 | JSON_NUMBER, 19 | JSON_BOOLEAN, 20 | JSON_NULL, 21 | } type; 22 | enum json_parsing_state { 23 | JSON_EMPTY, 24 | JSON_STARTED, 25 | JSON_WAITING_VALUE, 26 | JSON_COMPLETED, 27 | } state; 28 | char *name; 29 | char *string; 30 | int number; 31 | struct json_token *parent, *child, *sibling; 32 | }; 33 | 34 | void json_escape_string(char *txt, size_t maxlen, const char *data, size_t len); 35 | struct json_token * json_parse(const char *data, size_t data_len); 36 | void json_free(struct json_token *json); 37 | struct json_token * json_get_member(struct json_token *json, const char *name); 38 | struct wpabuf * json_get_member_base64url(struct json_token *json, 39 | const char *name); 40 | void json_print_tree(struct json_token *root, char *buf, size_t buflen); 41 | 42 | #endif /* JSON_H */ 43 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/module_tests.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Module tests 3 | * Copyright (c) 2014-2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef MODULE_TESTS_H 10 | #define MODULE_TESTS_H 11 | 12 | int wpas_module_tests(void); 13 | int hapd_module_tests(void); 14 | 15 | int utils_module_tests(void); 16 | int wps_module_tests(void); 17 | int common_module_tests(void); 18 | int crypto_module_tests(void); 19 | 20 | #endif /* MODULE_TESTS_H */ 21 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/platform.h: -------------------------------------------------------------------------------- 1 | #ifndef PLATFORM_H 2 | #define PLATFORM_H 3 | 4 | #include "includes.h" 5 | #include "common.h" 6 | 7 | #define le16_to_cpu le_to_host16 8 | #define le32_to_cpu le_to_host32 9 | 10 | #define get_unaligned(p) \ 11 | ({ \ 12 | struct packed_dummy_struct { \ 13 | typeof(*(p)) __val; \ 14 | } __attribute__((packed)) *__ptr = (void *) (p); \ 15 | \ 16 | __ptr->__val; \ 17 | }) 18 | #define get_unaligned_le16(p) le16_to_cpu(get_unaligned((le16 *)(p))) 19 | #define get_unaligned_le32(p) le32_to_cpu(get_unaligned((le32 *)(p))) 20 | 21 | #endif /* PLATFORM_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/src/utils/uuid.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Universally Unique IDentifier (UUID) 3 | * Copyright (c) 2008, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef UUID_H 10 | #define UUID_H 11 | 12 | #define UUID_LEN 16 13 | 14 | int uuid_str2bin(const char *str, u8 *bin); 15 | int uuid_bin2str(const u8 *bin, char *str, size_t max_len); 16 | int is_nil_uuid(const u8 *uuid); 17 | int uuid_random(u8 *uuid); 18 | 19 | #endif /* UUID_H */ 20 | -------------------------------------------------------------------------------- /wpa_supplicant/src/wps/Makefile: -------------------------------------------------------------------------------- 1 | all: libwps.a 2 | 3 | clean: 4 | rm -f *~ *.o *.d *.gcno *.gcda *.gcov libwps.a 5 | 6 | install: 7 | @echo Nothing to be made. 8 | 9 | include ../lib.rules 10 | 11 | CFLAGS += -DCONFIG_P2P 12 | CFLAGS += -DCONFIG_WPS_OOB 13 | CFLAGS += -DCONFIG_WPS_NFC 14 | 15 | LIB_OBJS= \ 16 | http_client.o \ 17 | httpread.o \ 18 | http_server.o \ 19 | ndef.o \ 20 | upnp_xml.o \ 21 | wps_attr_build.o \ 22 | wps_attr_parse.o \ 23 | wps_attr_process.o \ 24 | wps.o \ 25 | wps_common.o \ 26 | wps_dev_attr.o \ 27 | wps_enrollee.o \ 28 | wps_er.o \ 29 | wps_er_ssdp.o \ 30 | wps_module_tests.o \ 31 | wps_registrar.o \ 32 | wps_upnp_ap.o \ 33 | wps_upnp.o \ 34 | wps_upnp_event.o \ 35 | wps_upnp_ssdp.o \ 36 | wps_upnp_web.o 37 | 38 | libwps.a: $(LIB_OBJS) 39 | $(AR) crT $@ $? 40 | 41 | -include $(OBJS:%.o=%.d) 42 | -------------------------------------------------------------------------------- /wpa_supplicant/src/wps/http.h: -------------------------------------------------------------------------------- 1 | /* 2 | * HTTP for WPS 3 | * Copyright (c) 2000-2003 Intel Corporation 4 | * Copyright (c) 2006-2007 Sony Corporation 5 | * Copyright (c) 2008-2009 Atheros Communications 6 | * Copyright (c) 2009, Jouni Malinen 7 | * 8 | * See wps_upnp.c for more details on licensing and code history. 9 | */ 10 | 11 | #ifndef HTTP_H 12 | #define HTTP_H 13 | 14 | enum http_reply_code { 15 | HTTP_OK = 200, 16 | HTTP_BAD_REQUEST = 400, 17 | UPNP_INVALID_ACTION = 401, 18 | UPNP_INVALID_ARGS = 402, 19 | HTTP_NOT_FOUND = 404, 20 | HTTP_PRECONDITION_FAILED = 412, 21 | HTTP_INTERNAL_SERVER_ERROR = 500, 22 | HTTP_UNIMPLEMENTED = 501, 23 | UPNP_ACTION_FAILED = 501, 24 | UPNP_ARG_VALUE_INVALID = 600, 25 | UPNP_ARG_VALUE_OUT_OF_RANGE = 601, 26 | UPNP_OUT_OF_MEMORY = 603 27 | }; 28 | 29 | #endif /* HTTP_H */ 30 | -------------------------------------------------------------------------------- /wpa_supplicant/src/wps/upnp_xml.h: -------------------------------------------------------------------------------- 1 | /* 2 | * UPnP XML helper routines 3 | * Copyright (c) 2000-2003 Intel Corporation 4 | * Copyright (c) 2006-2007 Sony Corporation 5 | * Copyright (c) 2008-2009 Atheros Communications 6 | * Copyright (c) 2009, Jouni Malinen 7 | * 8 | * See wps_upnp.c for more details on licensing and code history. 9 | */ 10 | 11 | #ifndef UPNP_XML_H 12 | #define UPNP_XML_H 13 | 14 | #include "http.h" 15 | 16 | void xml_data_encode(struct wpabuf *buf, const char *data, int len); 17 | void xml_add_tagged_data(struct wpabuf *buf, const char *tag, 18 | const char *data); 19 | int xml_next_tag(const char *in, const char **out, 20 | const char **out_tagname, const char **end); 21 | char * xml_get_first_item(const char *doc, const char *item); 22 | struct wpabuf * xml_get_base64_item(const char *data, const char *name, 23 | enum http_reply_code *ret); 24 | 25 | #endif /* UPNP_XML_H */ 26 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/.gitignore: -------------------------------------------------------------------------------- 1 | *.service 2 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/binder/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | IndentWidth: 8 3 | UseTab: Always 4 | BreakBeforeBraces: Mozilla 5 | AllowShortIfStatementsOnASingleLine: false 6 | IndentCaseLabels: false 7 | AccessModifierOffset: -8 8 | AlignAfterOpenBracket: AlwaysBreak 9 | SortIncludes: false 10 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/binder/binder_constants.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #include "binder_constants.h" 11 | 12 | namespace wpa_supplicant_binder { 13 | namespace binder_constants { 14 | 15 | const char kServiceName[] = "wpa_supplicant"; 16 | 17 | } /* namespace binder_constants */ 18 | } /* namespace wpa_supplicant_binder */ 19 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/binder/binder_constants.h: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef WPA_SUPPLICANT_BINDER_BINDER_CONSTANTS_H 11 | #define WPA_SUPPLICANT_BINDER_BINDER_CONSTANTS_H 12 | 13 | namespace wpa_supplicant_binder { 14 | namespace binder_constants { 15 | 16 | extern const char kServiceName[]; 17 | 18 | } /* namespace binder_constants */ 19 | } /* namespace wpa_supplicant_binder */ 20 | 21 | #endif /* WPA_SUPPLICANT_BINDER_BINDER_CONSTANTS_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/binder/binder_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef BINDER_I_H 11 | #define BINDER_I_H 12 | 13 | #ifdef _cplusplus 14 | extern "C" { 15 | #endif // _cplusplus 16 | 17 | struct wpas_binder_priv 18 | { 19 | int binder_fd; 20 | struct wpa_global *global; 21 | void *binder_manager; 22 | }; 23 | 24 | #ifdef _cplusplus 25 | } 26 | #endif /* _cplusplus */ 27 | 28 | #endif /* BINDER_I_H */ 29 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/binder/fi/w1/wpa_supplicant/IIface.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | package fi.w1.wpa_supplicant; 11 | 12 | /** 13 | * Interface exposed by wpa_supplicant for each network interface it controls. 14 | */ 15 | interface IIface { 16 | } 17 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/binder/fi/w1/wpa_supplicant/ISupplicantCallbacks.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | package fi.w1.wpa_supplicant; 11 | 12 | import android.os.PersistableBundle; 13 | 14 | /** 15 | * Callback Interface exposed by the wpa_supplicant service. Clients need 16 | * to host an instance of this binder object and pass a reference of the object 17 | * to wpa_supplicant via the registerCallbacksObject method. 18 | */ 19 | interface ISupplicantCallbacks { 20 | } 21 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/binder/iface.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #include "iface.h" 11 | 12 | namespace wpa_supplicant_binder { 13 | 14 | Iface::Iface(struct wpa_supplicant *wpa_s) : wpa_s_(wpa_s) {} 15 | 16 | } /* namespace wpa_supplicant_binder */ 17 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/binder/iface.h: -------------------------------------------------------------------------------- 1 | /* 2 | * binder interface for wpa_supplicant daemon 3 | * Copyright (c) 2004-2016, Jouni Malinen 4 | * Copyright (c) 2004-2016, Roshan Pius 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef WPA_SUPPLICANT_BINDER_IFACE_H 11 | #define WPA_SUPPLICANT_BINDER_IFACE_H 12 | 13 | #include "fi/w1/wpa_supplicant/BnIface.h" 14 | 15 | extern "C" { 16 | #include "utils/common.h" 17 | #include "utils/includes.h" 18 | #include "../wpa_supplicant_i.h" 19 | } 20 | 21 | namespace wpa_supplicant_binder { 22 | 23 | /** 24 | * Implementation of Iface binder object. Each unique binder 25 | * object is used for control operations on a specific interface 26 | * controlled by wpa_supplicant. 27 | */ 28 | class Iface : public fi::w1::wpa_supplicant::BnIface 29 | { 30 | public: 31 | Iface(struct wpa_supplicant *wpa_s); 32 | virtual ~Iface() = default; 33 | 34 | private: 35 | /* Raw pointer to the structure maintained by the core for this 36 | * interface. */ 37 | struct wpa_supplicant *wpa_s_; 38 | }; 39 | 40 | } /* namespace wpa_supplicant_binder */ 41 | 42 | #endif /* WPA_SUPPLICANT_BINDER_IFACE_H */ 43 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/blacklist.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_supplicant - Temporary BSSID blacklist 3 | * Copyright (c) 2003-2007, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef BLACKLIST_H 10 | #define BLACKLIST_H 11 | 12 | struct wpa_blacklist { 13 | struct wpa_blacklist *next; 14 | u8 bssid[ETH_ALEN]; 15 | int count; 16 | }; 17 | 18 | struct wpa_blacklist * wpa_blacklist_get(struct wpa_supplicant *wpa_s, 19 | const u8 *bssid); 20 | int wpa_blacklist_add(struct wpa_supplicant *wpa_s, const u8 *bssid); 21 | int wpa_blacklist_del(struct wpa_supplicant *wpa_s, const u8 *bssid); 22 | void wpa_blacklist_clear(struct wpa_supplicant *wpa_s); 23 | 24 | #endif /* BLACKLIST_H */ 25 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/dbus/.gitignore: -------------------------------------------------------------------------------- 1 | libwpadbus.a 2 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/dbus/dbus-wpa_supplicant.conf: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/dbus/dbus_common.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_supplicant D-Bus control interface - common definitions 3 | * Copyright (c) 2006, Dan Williams and Red Hat, Inc. 4 | * Copyright (c) 2009, Witold Sowa 5 | * Copyright (c) 2009, Jouni Malinen 6 | * 7 | * This software may be distributed under the terms of the BSD license. 8 | * See README for more details. 9 | */ 10 | 11 | #ifndef DBUS_COMMON_H 12 | #define DBUS_COMMON_H 13 | 14 | struct wpas_dbus_priv; 15 | struct wpa_global; 16 | 17 | struct wpas_dbus_priv * wpas_dbus_init(struct wpa_global *global); 18 | void wpas_dbus_deinit(struct wpas_dbus_priv *priv); 19 | 20 | #endif /* DBUS_COMMON_H */ 21 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/dbus/dbus_common_i.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_supplicant D-Bus control interface - internal definitions 3 | * Copyright (c) 2006, Dan Williams and Red Hat, Inc. 4 | * Copyright (c) 2009, Witold Sowa 5 | * Copyright (c) 2009, Jouni Malinen 6 | * 7 | * This software may be distributed under the terms of the BSD license. 8 | * See README for more details. 9 | */ 10 | 11 | #ifndef DBUS_COMMON_I_H 12 | #define DBUS_COMMON_I_H 13 | 14 | #include 15 | 16 | struct wpa_dbus_property_desc; 17 | 18 | struct wpas_dbus_priv { 19 | DBusConnection *con; 20 | int should_dispatch; 21 | struct wpa_global *global; 22 | u32 next_objid; 23 | int dbus_new_initialized; 24 | 25 | #if defined(CONFIG_CTRL_IFACE_DBUS_NEW) 26 | struct wpa_dbus_property_desc *all_interface_properties; 27 | int globals_start; 28 | #if defined(CONFIG_AP) 29 | int dbus_noc_refcnt; 30 | #endif /* CONFIG_AP */ 31 | #endif /* CONFIG_CTRL_IFACE_DBUS_NEW */ 32 | }; 33 | 34 | #endif /* DBUS_COMMON_I_H */ 35 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=fi.epitest.hostap.WPASupplicant 3 | Exec=@BINDIR@/wpa_supplicant -u 4 | User=root 5 | SystemdService=wpa_supplicant.service 6 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service.in: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=fi.w1.wpa_supplicant1 3 | Exec=@BINDIR@/wpa_supplicant -u 4 | User=root 5 | SystemdService=wpa_supplicant.service 6 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/doc/docbook/.gitignore: -------------------------------------------------------------------------------- 1 | manpage.links 2 | manpage.refs 3 | *.8 4 | *.5 5 | *.html 6 | *.pdf 7 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/doc/docbook/Makefile: -------------------------------------------------------------------------------- 1 | all: man html pdf 2 | 3 | FILES += wpa_background 4 | FILES += wpa_cli 5 | FILES += wpa_gui 6 | FILES += wpa_passphrase 7 | FILES += wpa_priv 8 | FILES += wpa_supplicant.conf 9 | FILES += wpa_supplicant 10 | FILES += eapol_test 11 | 12 | man: 13 | for i in $(FILES); do docbook2man $$i.sgml; done 14 | 15 | html: 16 | for i in $(FILES); do docbook2html $$i.sgml && \ 17 | mv index.html $$i.html; done 18 | 19 | pdf: 20 | for i in $(FILES); do docbook2pdf $$i.sgml; done 21 | 22 | 23 | clean: 24 | rm -f wpa_background.8 wpa_cli.8 wpa_gui.8 wpa_passphrase.8 wpa_priv.8 wpa_supplicant.8 eapol_test.8 25 | rm -f wpa_supplicant.conf.5 26 | rm -f manpage.links manpage.refs 27 | rm -f $(FILES:%=%.pdf) 28 | rm -f $(FILES:%=%.html) 29 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/eap_proxy_dummy.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wpa3-vuln/cc7f54c0c3977d647bfd41437dabbe3d16cba7d6/wpa_supplicant/wpa_supplicant/eap_proxy_dummy.mak -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/eap_proxy_dummy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/wpa3-vuln/cc7f54c0c3977d647bfd41437dabbe3d16cba7d6/wpa_supplicant/wpa_supplicant/eap_proxy_dummy.mk -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/examples/60_wpa_supplicant: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # /etc/pm/sleep.d/60_wpa_supplicant 4 | # Action script to notify wpa_supplicant of pm-action events. 5 | 6 | PATH=/sbin:/usr/sbin:/bin:/usr/bin 7 | 8 | WPACLI=wpa_cli 9 | 10 | case "$1" in 11 | suspend|hibernate) 12 | $WPACLI suspend 13 | ;; 14 | resume|thaw) 15 | $WPACLI resume 16 | ;; 17 | esac 18 | 19 | exit 0 20 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/examples/ieee8021x.conf: -------------------------------------------------------------------------------- 1 | # IEEE 802.1X with dynamic WEP keys using EAP-PEAP/MSCHAPv2 2 | 3 | ctrl_interface=/var/run/wpa_supplicant 4 | 5 | network={ 6 | ssid="example 802.1x network" 7 | key_mgmt=IEEE8021X 8 | eap=PEAP 9 | phase2="auth=MSCHAPV2" 10 | identity="user name" 11 | password="password" 12 | ca_cert="/etc/cert/ca.pem" 13 | } 14 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/examples/plaintext.conf: -------------------------------------------------------------------------------- 1 | # Plaintext (no encryption) network 2 | 3 | ctrl_interface=/var/run/wpa_supplicant 4 | 5 | network={ 6 | ssid="example open network" 7 | key_mgmt=NONE 8 | } 9 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/examples/wep.conf: -------------------------------------------------------------------------------- 1 | # Static WEP keys 2 | 3 | ctrl_interface=/var/run/wpa_supplicant 4 | 5 | network={ 6 | ssid="example wep network" 7 | key_mgmt=NONE 8 | wep_key0="abcde" 9 | wep_key1=0102030405 10 | wep_tx_keyidx=0 11 | } 12 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/examples/wpa-psk-tkip.conf: -------------------------------------------------------------------------------- 1 | # WPA-PSK/TKIP 2 | 3 | ctrl_interface=/var/run/wpa_supplicant 4 | 5 | network={ 6 | ssid="example wpa-psk network" 7 | key_mgmt=WPA-PSK 8 | proto=WPA 9 | pairwise=TKIP 10 | group=TKIP 11 | psk="secret passphrase" 12 | } 13 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/examples/wpa2-eap-ccmp.conf: -------------------------------------------------------------------------------- 1 | # WPA2-EAP/CCMP using EAP-TLS 2 | 3 | ctrl_interface=/var/run/wpa_supplicant 4 | 5 | network={ 6 | ssid="example wpa2-eap network" 7 | key_mgmt=WPA-EAP 8 | proto=WPA2 9 | pairwise=CCMP 10 | group=CCMP 11 | eap=TLS 12 | ca_cert="/etc/cert/ca.pem" 13 | private_key="/etc/cert/user.p12" 14 | private_key_passwd="PKCS#12 passhrase" 15 | } 16 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/libwpa_test.c: -------------------------------------------------------------------------------- 1 | /* 2 | * libwpa_test - Test program for libwpa_client.* library linking 3 | * Copyright (c) 2015, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common/wpa_ctrl.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | struct wpa_ctrl *ctrl; 16 | 17 | ctrl = wpa_ctrl_open("foo"); 18 | if (!ctrl) 19 | return -1; 20 | if (wpa_ctrl_attach(ctrl) == 0) 21 | wpa_ctrl_detach(ctrl); 22 | if (wpa_ctrl_pending(ctrl)) { 23 | char buf[10]; 24 | size_t len; 25 | 26 | len = sizeof(buf); 27 | wpa_ctrl_recv(ctrl, buf, &len); 28 | } 29 | wpa_ctrl_close(ctrl); 30 | 31 | return 0; 32 | } 33 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/main_none.c: -------------------------------------------------------------------------------- 1 | /* 2 | * WPA Supplicant / Example program entrypoint 3 | * Copyright (c) 2003-2005, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "includes.h" 10 | 11 | #include "common.h" 12 | #include "wpa_supplicant_i.h" 13 | 14 | int main(int argc, char *argv[]) 15 | { 16 | struct wpa_interface iface; 17 | int exitcode = 0; 18 | struct wpa_params params; 19 | struct wpa_global *global; 20 | 21 | memset(¶ms, 0, sizeof(params)); 22 | params.wpa_debug_level = MSG_INFO; 23 | 24 | global = wpa_supplicant_init(¶ms); 25 | if (global == NULL) 26 | return -1; 27 | 28 | memset(&iface, 0, sizeof(iface)); 29 | /* TODO: set interface parameters */ 30 | 31 | if (wpa_supplicant_add_iface(global, &iface, NULL) == NULL) 32 | exitcode = -1; 33 | 34 | if (exitcode == 0) 35 | exitcode = wpa_supplicant_run(global); 36 | 37 | wpa_supplicant_deinit(global); 38 | 39 | return exitcode; 40 | } 41 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/systemd/wpa_supplicant-nl80211.service.arg.in: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=WPA supplicant daemon (interface- and nl80211 driver-specific version) 3 | Requires=sys-subsystem-net-devices-%i.device 4 | After=sys-subsystem-net-devices-%i.device 5 | Before=network.target 6 | Wants=network.target 7 | 8 | # NetworkManager users will probably want the dbus version instead. 9 | 10 | [Service] 11 | Type=simple 12 | ExecStart=@BINDIR@/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant-nl80211-%I.conf -Dnl80211 -i%I 13 | 14 | [Install] 15 | Alias=multi-user.target.wants/wpa_supplicant-nl80211@%i.service 16 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/systemd/wpa_supplicant-wired.service.arg.in: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=WPA supplicant daemon (interface- and wired driver-specific version) 3 | Requires=sys-subsystem-net-devices-%i.device 4 | After=sys-subsystem-net-devices-%i.device 5 | Before=network.target 6 | Wants=network.target 7 | 8 | # NetworkManager users will probably want the dbus version instead. 9 | 10 | [Service] 11 | Type=simple 12 | ExecStart=@BINDIR@/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant-wired-%I.conf -Dwired -i%I 13 | 14 | [Install] 15 | Alias=multi-user.target.wants/wpa_supplicant-wired@%i.service 16 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/systemd/wpa_supplicant.service.arg.in: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=WPA supplicant daemon (interface-specific version) 3 | Requires=sys-subsystem-net-devices-%i.device 4 | After=sys-subsystem-net-devices-%i.device 5 | Before=network.target 6 | Wants=network.target 7 | 8 | # NetworkManager users will probably want the dbus version instead. 9 | 10 | [Service] 11 | Type=simple 12 | ExecStart=@BINDIR@/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant-%I.conf -i%I 13 | 14 | [Install] 15 | Alias=multi-user.target.wants/wpa_supplicant@%i.service 16 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/systemd/wpa_supplicant.service.in: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=WPA supplicant 3 | Before=network.target 4 | Wants=network.target 5 | 6 | [Service] 7 | Type=dbus 8 | BusName=@DBUS_INTERFACE@ 9 | ExecStart=@BINDIR@/wpa_supplicant -u 10 | 11 | [Install] 12 | WantedBy=multi-user.target 13 | Alias=dbus-@DBUS_INTERFACE@.service 14 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wifi_display.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_supplicant - Wi-Fi Display 3 | * Copyright (c) 2011, Atheros Communications, Inc. 4 | * Copyright (c) 2011-2012, Qualcomm Atheros, Inc. 5 | * 6 | * This software may be distributed under the terms of the BSD license. 7 | * See README for more details. 8 | */ 9 | 10 | #ifndef WIFI_DISPLAY_H 11 | #define WIFI_DISPLAY_H 12 | 13 | int wifi_display_init(struct wpa_global *global); 14 | void wifi_display_deinit(struct wpa_global *global); 15 | void wifi_display_enable(struct wpa_global *global, int enabled); 16 | struct wpabuf *wifi_display_get_wfd_ie(struct wpa_global *global); 17 | int wifi_display_subelem_set(struct wpa_global *global, char *cmd); 18 | int wifi_display_subelem_set_from_ies(struct wpa_global *global, 19 | struct wpabuf *ie); 20 | int wifi_display_subelem_get(struct wpa_global *global, char *cmd, 21 | char *buf, size_t buflen); 22 | char * wifi_display_subelem_hex(const struct wpabuf *wfd_subelems, u8 id); 23 | 24 | #endif /* WIFI_DISPLAY_H */ 25 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/.gitignore: -------------------------------------------------------------------------------- 1 | .moc 2 | .obj 3 | .ui 4 | qrc_icons.cpp 5 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/addinterface.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - AddInterface class 3 | * Copyright (c) 2008, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef ADDINTERFACE_H 10 | #define ADDINTERFACE_H 11 | 12 | #include 13 | 14 | #include 15 | #include 16 | #include 17 | 18 | class WpaGui; 19 | 20 | class AddInterface : public QDialog 21 | { 22 | Q_OBJECT 23 | 24 | public: 25 | AddInterface(WpaGui *_wpagui, QWidget *parent = 0); 26 | 27 | public slots: 28 | virtual void interfaceSelected(QTreeWidgetItem *sel); 29 | 30 | private: 31 | void addInterfaces(); 32 | bool addRegistryInterface(const QString &ifname); 33 | 34 | QVBoxLayout *vboxLayout; 35 | QTreeWidget *interfaceWidget; 36 | WpaGui *wpagui; 37 | }; 38 | 39 | #endif /* ADDINTERFACE_H */ 40 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/icons.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | icons/wpa_gui.svg 4 | icons/ap.svg 5 | icons/laptop.svg 6 | icons/group.svg 7 | icons/invitation.svg 8 | 9 | 10 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/icons/Makefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | NAMES := wpa_gui ap laptop group invitation 4 | SIZES := 16x16 22x22 32x32 48x48 64x64 128x128 5 | ICONS := $(addsuffix .png, $(foreach name, $(NAMES), $(foreach size, $(SIZES), $(size)/$(name)))) 6 | ICONS += $(addsuffix .xpm, $(NAMES)) 7 | 8 | all: $(ICONS) 9 | 10 | %.png: 11 | mkdir -p hicolor/$(word 1, $(subst /, ,$(@)))/apps/ 12 | inkscape $(subst .png,.svg, $(word 2, $(subst /, , $(@)))) --without-gui \ 13 | --export-width=$(word 1, $(subst x, , $(@))) \ 14 | --export-height=$(word 2, $(subst x, , $(subst /, , $(@)))) \ 15 | --export-png=hicolor/$(word 1, $(subst /, ,$(@)))/apps/$(word 2, $(subst /, , $@)) 16 | 17 | %.xpm: 18 | mkdir -p pixmaps/ 19 | convert hicolor/16x16/apps/$(@:.xpm=.png) pixmaps/$(@:.xpm=-16.xpm) 20 | convert hicolor/32x32/apps/$(@:.xpm=.png) pixmaps/$@ 21 | 22 | clean: 23 | $(RM) -r pixmaps hicolor 24 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/icons_png.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | icons/hicolor/16x16/apps/wpa_gui.png 4 | icons/hicolor/32x32/apps/ap.png 5 | icons/hicolor/32x32/apps/laptop.png 6 | icons/hicolor/32x32/apps/group.png 7 | icons/hicolor/32x32/apps/invitation.png 8 | 9 | 10 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/lang/.gitignore: -------------------------------------------------------------------------------- 1 | *.qm 2 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/peers.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | Peers 4 | 5 | 6 | 7 | 0 8 | 0 9 | 400 10 | 300 11 | 12 | 13 | 14 | Peers 15 | 16 | 17 | 18 | 19 | 20 | 21 | 0 22 | 0 23 | 24 | 25 | 26 | true 27 | 28 | 29 | QAbstractItemView::NoEditTriggers 30 | 31 | 32 | QListView::IconMode 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/scanresults.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - ScanResults class 3 | * Copyright (c) 2005-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SCANRESULTS_H 10 | #define SCANRESULTS_H 11 | 12 | #include 13 | #include "ui_scanresults.h" 14 | 15 | class WpaGui; 16 | 17 | class ScanResults : public QDialog, public Ui::ScanResults 18 | { 19 | Q_OBJECT 20 | 21 | public: 22 | ScanResults(QWidget *parent = 0, const char *name = 0, 23 | bool modal = false, Qt::WindowFlags fl = 0); 24 | ~ScanResults(); 25 | 26 | public slots: 27 | virtual void setWpaGui(WpaGui *_wpagui); 28 | virtual void updateResults(); 29 | virtual void scanRequest(); 30 | virtual void getResults(); 31 | virtual void bssSelected(QTreeWidgetItem *sel); 32 | 33 | protected slots: 34 | virtual void languageChange(); 35 | 36 | private: 37 | WpaGui *wpagui; 38 | }; 39 | 40 | #endif /* SCANRESULTS_H */ 41 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/scanresultsitem.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - ScanResultsItem class 3 | * Copyright (c) 2015, Adrian Nowicki 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include "scanresultsitem.h" 10 | 11 | bool ScanResultsItem::operator< (const QTreeWidgetItem &other) const 12 | { 13 | int sortCol = treeWidget()->sortColumn(); 14 | if (sortCol == 2 || sortCol == 3) { 15 | return text(sortCol).toInt() < other.text(sortCol).toInt(); 16 | } 17 | return text(sortCol) < other.text(sortCol); 18 | } 19 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/scanresultsitem.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - ScanResultsItem class 3 | * Copyright (c) 2015, Adrian Nowicki 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SCANRESULTSITEM_H 10 | #define SCANRESULTSITEM_H 11 | 12 | #include 13 | 14 | class ScanResultsItem : public QTreeWidgetItem 15 | { 16 | public: 17 | ScanResultsItem(QTreeWidget *tree) : QTreeWidgetItem(tree) {} 18 | bool operator< (const QTreeWidgetItem &other) const; 19 | }; 20 | 21 | #endif /* SCANRESULTSITEM_H */ 22 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/signalbar.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - SignalBar class 3 | * Copyright (c) 2011, Kel Modderman 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef SIGNALBAR_H 10 | #define SIGNALBAR_H 11 | 12 | #include 13 | #include 14 | 15 | class SignalBar : public QStyledItemDelegate 16 | { 17 | Q_OBJECT 18 | 19 | public: 20 | SignalBar(QObject *parent = 0); 21 | ~SignalBar(); 22 | 23 | virtual void paint(QPainter *painter, 24 | const QStyleOptionViewItem &option, 25 | const QModelIndex &index) const ; 26 | }; 27 | 28 | #endif /* SIGNALBAR_H */ 29 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/stringquery.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - StringQuery class 3 | * Copyright (c) 2009, Atheros Communications 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #include 10 | #include 11 | 12 | #include "stringquery.h" 13 | 14 | 15 | StringQuery::StringQuery(QString label) 16 | { 17 | edit = new QLineEdit; 18 | edit->setFocus(); 19 | QGridLayout *layout = new QGridLayout; 20 | layout->addWidget(new QLabel(label), 0, 0); 21 | layout->addWidget(edit, 0, 1); 22 | setLayout(layout); 23 | 24 | connect(edit, SIGNAL(returnPressed()), this, SLOT(accept())); 25 | } 26 | 27 | 28 | QString StringQuery::get_string() 29 | { 30 | return edit->text(); 31 | } 32 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/stringquery.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - StringQuery class 3 | * Copyright (c) 2009, Atheros Communications 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef STRINGQUERY_H 10 | #define STRINGQUERY_H 11 | 12 | #include 13 | #include 14 | #include 15 | 16 | class StringQuery : public QDialog 17 | { 18 | Q_OBJECT 19 | 20 | public: 21 | StringQuery(QString label); 22 | QString get_string(); 23 | 24 | private: 25 | QLineEdit *edit; 26 | }; 27 | 28 | #endif /* STRINGQUERY_H */ 29 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/userdatarequest.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - UserDataRequest class 3 | * Copyright (c) 2005-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef USERDATAREQUEST_H 10 | #define USERDATAREQUEST_H 11 | 12 | #include 13 | #include "ui_userdatarequest.h" 14 | 15 | class WpaGui; 16 | 17 | class UserDataRequest : public QDialog, public Ui::UserDataRequest 18 | { 19 | Q_OBJECT 20 | 21 | public: 22 | UserDataRequest(QWidget *parent = 0, const char *name = 0, 23 | bool modal = false, Qt::WindowFlags fl = 0); 24 | ~UserDataRequest(); 25 | 26 | int setParams(WpaGui *_wpagui, const char *reqMsg); 27 | 28 | public slots: 29 | virtual void sendReply(); 30 | 31 | protected slots: 32 | virtual void languageChange(); 33 | 34 | private: 35 | WpaGui *wpagui; 36 | int networkid; 37 | QString field; 38 | }; 39 | 40 | #endif /* USERDATAREQUEST_H */ 41 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/wpa_gui.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Name=wpa_gui 4 | Comment=Graphical user interface for wpa_supplicant 5 | Exec=wpa_gui 6 | Icon=wpa_gui 7 | GenericName=wpa_supplicant user interface 8 | Terminal=false 9 | Type=Application 10 | Categories=Qt;Network; 11 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_gui-qt4/wpamsg.h: -------------------------------------------------------------------------------- 1 | /* 2 | * wpa_gui - WpaMsg class for storing event messages 3 | * Copyright (c) 2005-2006, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef WPAMSG_H 10 | #define WPAMSG_H 11 | 12 | #include 13 | #include 14 | 15 | class WpaMsg { 16 | public: 17 | WpaMsg(const QString &_msg, int _priority = 2) 18 | : msg(_msg), priority(_priority) 19 | { 20 | timestamp = QDateTime::currentDateTime(); 21 | } 22 | 23 | QString getMsg() const { return msg; } 24 | int getPriority() const { return priority; } 25 | QDateTime getTimestamp() const { return timestamp; } 26 | 27 | private: 28 | QString msg; 29 | int priority; 30 | QDateTime timestamp; 31 | }; 32 | 33 | typedef QLinkedList WpaMsgList; 34 | 35 | #endif /* WPAMSG_H */ 36 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_supplicant_conf.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Copyright (C) 2010 The Android Open Source Project 4 | # 5 | # This software may be distributed under the terms of the BSD license. 6 | # See README for more details. 7 | # 8 | 9 | # Generate a wpa_supplicant.conf from the template. 10 | # $1: the template file name 11 | if [ -n "$WIFI_DRIVER_SOCKET_IFACE" ] 12 | then 13 | sed -e 's/#.*$//' -e 's/[ \t]*$//' -e '/^$/d' < $1 | sed -e "s/wlan0/$WIFI_DRIVER_SOCKET_IFACE/" 14 | else 15 | sed -e 's/#.*$//' -e 's/[ \t]*$//' -e '/^$/d' < $1 16 | fi 17 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpa_supplicant_template.conf: -------------------------------------------------------------------------------- 1 | ##### wpa_supplicant configuration file template ##### 2 | update_config=1 3 | eapol_version=1 4 | ap_scan=1 5 | fast_reauth=1 6 | pmf=1 7 | p2p_add_cli_chan=1 8 | -------------------------------------------------------------------------------- /wpa_supplicant/wpa_supplicant/wpas_glue.h: -------------------------------------------------------------------------------- 1 | /* 2 | * WPA Supplicant - Glue code to setup EAPOL and RSN modules 3 | * Copyright (c) 2003-2008, Jouni Malinen 4 | * 5 | * This software may be distributed under the terms of the BSD license. 6 | * See README for more details. 7 | */ 8 | 9 | #ifndef WPAS_GLUE_H 10 | #define WPAS_GLUE_H 11 | 12 | enum wpa_ctrl_req_type; 13 | 14 | int wpa_supplicant_init_eapol(struct wpa_supplicant *wpa_s); 15 | int wpa_supplicant_init_wpa(struct wpa_supplicant *wpa_s); 16 | void wpa_supplicant_rsn_supp_set_config(struct wpa_supplicant *wpa_s, 17 | struct wpa_ssid *ssid); 18 | 19 | const char * wpa_supplicant_ctrl_req_to_string(enum wpa_ctrl_req_type field, 20 | const char *default_txt, 21 | const char **txt); 22 | 23 | enum wpa_ctrl_req_type wpa_supplicant_ctrl_req_from_string(const char *field); 24 | 25 | void wpas_send_ctrl_req(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid, 26 | const char *field_name, const char *txt); 27 | 28 | #endif /* WPAS_GLUE_H */ 29 | --------------------------------------------------------------------------------