diff options
20 files changed, 420 insertions, 2446 deletions
diff --git a/meta/packages/wpa-supplicant/files/wpa-supplicant.sh b/meta/packages/wpa-supplicant/files/wpa-supplicant.sh new file mode 100644 index 0000000000..5c9e5d33a7 --- /dev/null +++ b/meta/packages/wpa-supplicant/files/wpa-supplicant.sh | |||
| @@ -0,0 +1,85 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | |||
| 4 | WPA_SUP_BIN="/usr/sbin/wpa_supplicant" | ||
| 5 | WPA_SUP_PNAME="wpa_supplicant" | ||
| 6 | WPA_SUP_PIDFILE="/var/run/wpa_supplicant.$IFACE.pid" | ||
| 7 | WPA_SUP_OPTIONS="-B -P $WPA_SUP_PIDFILE -i $IFACE" | ||
| 8 | |||
| 9 | VERBOSITY=0 | ||
| 10 | |||
| 11 | |||
| 12 | if [ -s "$IF_WPA_CONF" ]; then | ||
| 13 | WPA_SUP_CONF="-c $IF_WPA_CONF" | ||
| 14 | else | ||
| 15 | exit 0 | ||
| 16 | fi | ||
| 17 | |||
| 18 | if [ ! -x "$WPA_SUP_BIN" ]; then | ||
| 19 | |||
| 20 | if [ "$VERBOSITY" = "1" ]; then | ||
| 21 | echo "$WPA_SUP_PNAME: binaries not executable or missing from $WPA_SUP_BIN" | ||
| 22 | fi | ||
| 23 | |||
| 24 | exit 1 | ||
| 25 | fi | ||
| 26 | |||
| 27 | if [ "$MODE" = "start" ] ; then | ||
| 28 | # driver type of interface, defaults to wext when undefined | ||
| 29 | if [ -s "/etc/wpa_supplicant/driver.$IFACE" ]; then | ||
| 30 | IF_WPA_DRIVER=$(cat "/etc/wpa_supplicant/driver.$IFACE") | ||
| 31 | elif [ -z "$IF_WPA_DRIVER" ]; then | ||
| 32 | |||
| 33 | if [ "$VERBOSITY" = "1" ]; then | ||
| 34 | echo "$WPA_SUP_PNAME: wpa-driver not provided, using \"wext\"" | ||
| 35 | fi | ||
| 36 | |||
| 37 | IF_WPA_DRIVER="wext" | ||
| 38 | fi | ||
| 39 | |||
| 40 | # if we have passed the criteria, start wpa_supplicant | ||
| 41 | if [ -n "$WPA_SUP_CONF" ]; then | ||
| 42 | |||
| 43 | if [ "$VERBOSITY" = "1" ]; then | ||
| 44 | echo "$WPA_SUP_PNAME: $WPA_SUP_BIN $WPA_SUP_OPTIONS $WPA_SUP_CONF -D $IF_WPA_DRIVER" | ||
| 45 | fi | ||
| 46 | |||
| 47 | start-stop-daemon --start --quiet \ | ||
| 48 | --name $WPA_SUP_PNAME --startas $WPA_SUP_BIN --pidfile $WPA_SUP_PIDFILE \ | ||
| 49 | -- $WPA_SUP_OPTIONS $WPA_SUP_CONF -D $IF_WPA_DRIVER | ||
| 50 | fi | ||
| 51 | |||
| 52 | # if the interface socket exists, then wpa_supplicant was invoked successfully | ||
| 53 | if [ -S "$WPA_COMMON_CTRL_IFACE/$IFACE" ]; then | ||
| 54 | |||
| 55 | if [ "$VERBOSITY" = "1" ]; then | ||
| 56 | echo "$WPA_SUP_PNAME: ctrl_interface socket located at $WPA_COMMON_CTRL_IFACE/$IFACE" | ||
| 57 | fi | ||
| 58 | |||
| 59 | exit 0 | ||
| 60 | |||
| 61 | fi | ||
| 62 | |||
| 63 | elif [ "$MODE" = "stop" ]; then | ||
| 64 | |||
| 65 | if [ -f "$WPA_SUP_PIDFILE" ]; then | ||
| 66 | |||
| 67 | if [ "$VERBOSITY" = "1" ]; then | ||
| 68 | echo "$WPA_SUP_PNAME: terminating $WPA_SUP_PNAME daemon" | ||
| 69 | fi | ||
| 70 | |||
| 71 | start-stop-daemon --stop --quiet \ | ||
| 72 | --name $WPA_SUP_PNAME --pidfile $WPA_SUP_PIDFILE | ||
| 73 | |||
| 74 | if [ -S "$WPA_COMMON_CTRL_IFACE/$IFACE" ]; then | ||
| 75 | rm -f $WPA_COMMON_CTRL_IFACE/$IFACE | ||
| 76 | fi | ||
| 77 | |||
| 78 | if [ -f "$WPA_SUP_PIDFILE" ]; then | ||
| 79 | rm -f $WPA_SUP_PIDFILE | ||
| 80 | fi | ||
| 81 | fi | ||
| 82 | |||
| 83 | fi | ||
| 84 | |||
| 85 | exit 0 | ||
diff --git a/meta/packages/wpa-supplicant/files/wpa_supplicant.conf b/meta/packages/wpa-supplicant/files/wpa_supplicant.conf index da407b5ef3..f0c993d195 100644 --- a/meta/packages/wpa-supplicant/files/wpa_supplicant.conf +++ b/meta/packages/wpa-supplicant/files/wpa_supplicant.conf | |||
| @@ -1,21 +1,46 @@ | |||
| 1 | ##### Example wpa_supplicant configuration file ############################### | 1 | ##### Example wpa_supplicant configuration file ############################### |
| 2 | # | ||
| 3 | # This file describes configuration file format and lists all available option. | ||
| 4 | # Please also take a look at simpler configuration examples in 'examples' | ||
| 5 | # subdirectory. | ||
| 6 | # | ||
| 2 | # Empty lines and lines starting with # are ignored | 7 | # Empty lines and lines starting with # are ignored |
| 3 | 8 | ||
| 4 | # NOTE! This file may contain password information and should probably be made | 9 | # NOTE! This file may contain password information and should probably be made |
| 5 | # readable only by root user on multiuser systems. | 10 | # readable only by root user on multiuser systems. |
| 6 | 11 | ||
| 12 | # Note: All file paths in this configuration file should use full (absolute, | ||
| 13 | # not relative to working directory) path in order to allow working directory | ||
| 14 | # to be changed. This can happen if wpa_supplicant is run in the background. | ||
| 15 | |||
| 16 | # Whether to allow wpa_supplicant to update (overwrite) configuration | ||
| 17 | # | ||
| 18 | # This option can be used to allow wpa_supplicant to overwrite configuration | ||
| 19 | # file whenever configuration is changed (e.g., new network block is added with | ||
| 20 | # wpa_cli or wpa_gui, or a password is changed). This is required for | ||
| 21 | # wpa_cli/wpa_gui to be able to store the configuration changes permanently. | ||
| 22 | # Please note that overwriting configuration file will remove the comments from | ||
| 23 | # it. | ||
| 24 | #update_config=1 | ||
| 25 | |||
| 7 | # global configuration (shared by all network blocks) | 26 | # global configuration (shared by all network blocks) |
| 8 | # | 27 | # |
| 9 | # Interface for separate control program. If this is specified, wpa_supplicant | 28 | # Parameters for the control interface. If this is specified, wpa_supplicant |
| 10 | # will create this directory and a UNIX domain socket for listening to requests | 29 | # will open a control interface that is available for external programs to |
| 11 | # from external programs (CLI/GUI, etc.) for status information and | 30 | # manage wpa_supplicant. The meaning of this string depends on which control |
| 12 | # configuration. The socket file will be named based on the interface name, so | 31 | # interface mechanism is used. For all cases, the existance of this parameter |
| 13 | # multiple wpa_supplicant processes can be run at the same time if more than | 32 | # in configuration is used to determine whether the control interface is |
| 14 | # one interface is used. | 33 | # enabled. |
| 34 | # | ||
| 35 | # For UNIX domain sockets (default on Linux and BSD): This is a directory that | ||
| 36 | # will be created for UNIX domain sockets for listening to requests from | ||
| 37 | # external programs (CLI/GUI, etc.) for status information and configuration. | ||
| 38 | # The socket file will be named based on the interface name, so multiple | ||
| 39 | # wpa_supplicant processes can be run at the same time if more than one | ||
| 40 | # interface is used. | ||
| 15 | # /var/run/wpa_supplicant is the recommended directory for sockets and by | 41 | # /var/run/wpa_supplicant is the recommended directory for sockets and by |
| 16 | # default, wpa_cli will use it when trying to connect with wpa_supplicant. | 42 | # default, wpa_cli will use it when trying to connect with wpa_supplicant. |
| 17 | ctrl_interface=/var/run/wpa_supplicant | 43 | # |
| 18 | |||
| 19 | # Access control for the control interface can be configured by setting the | 44 | # Access control for the control interface can be configured by setting the |
| 20 | # directory to allow only members of a group to use sockets. This way, it is | 45 | # directory to allow only members of a group to use sockets. This way, it is |
| 21 | # possible to run wpa_supplicant as root (since it needs to change network | 46 | # possible to run wpa_supplicant as root (since it needs to change network |
| @@ -29,12 +54,28 @@ ctrl_interface=/var/run/wpa_supplicant | |||
| 29 | # not included in the configuration file, group will not be changed from the | 54 | # not included in the configuration file, group will not be changed from the |
| 30 | # value it got by default when the directory or socket was created. | 55 | # value it got by default when the directory or socket was created. |
| 31 | # | 56 | # |
| 32 | # This variable can be a group name or gid. | 57 | # When configuring both the directory and group, use following format: |
| 33 | #ctrl_interface_group=wheel | 58 | # DIR=/var/run/wpa_supplicant GROUP=wheel |
| 34 | ctrl_interface_group=0 | 59 | # DIR=/var/run/wpa_supplicant GROUP=0 |
| 60 | # (group can be either group name or gid) | ||
| 61 | # | ||
| 62 | # For UDP connections (default on Windows): The value will be ignored. This | ||
| 63 | # variable is just used to select that the control interface is to be created. | ||
| 64 | # The value can be set to, e.g., udp (ctrl_interface=udp) | ||
| 65 | # | ||
| 66 | # For Windows Named Pipe: This value can be used to set the security descriptor | ||
| 67 | # for controlling access to the control interface. Security descriptor can be | ||
| 68 | # set using Security Descriptor String Format (see http://msdn.microsoft.com/ | ||
| 69 | # library/default.asp?url=/library/en-us/secauthz/security/ | ||
| 70 | # security_descriptor_string_format.asp). The descriptor string needs to be | ||
| 71 | # prefixed with SDDL=. For example, ctrl_interface=SDDL=D: would set an empty | ||
| 72 | # DACL (which will reject all connections). See README-Windows.txt for more | ||
| 73 | # information about SDDL string format. | ||
| 74 | # | ||
| 75 | ctrl_interface=/var/run/wpa_supplicant | ||
| 35 | 76 | ||
| 36 | # IEEE 802.1X/EAPOL version | 77 | # IEEE 802.1X/EAPOL version |
| 37 | # wpa_supplicant was implemented based on IEEE 802-1X-REV-d8 which defines | 78 | # wpa_supplicant is implemented based on IEEE Std 802.1X-2004 which defines |
| 38 | # EAPOL version 2. However, there are many APs that do not handle the new | 79 | # EAPOL version 2. However, there are many APs that do not handle the new |
| 39 | # version number correctly (they seem to drop the frames completely). In order | 80 | # version number correctly (they seem to drop the frames completely). In order |
| 40 | # to make wpa_supplicant interoperate with these APs, the version number is set | 81 | # to make wpa_supplicant interoperate with these APs, the version number is set |
| @@ -52,13 +93,15 @@ eapol_version=1 | |||
| 52 | # 0: driver takes care of scanning, AP selection, and IEEE 802.11 association | 93 | # 0: driver takes care of scanning, AP selection, and IEEE 802.11 association |
| 53 | # parameters (e.g., WPA IE generation); this mode can also be used with | 94 | # parameters (e.g., WPA IE generation); this mode can also be used with |
| 54 | # non-WPA drivers when using IEEE 802.1X mode; do not try to associate with | 95 | # non-WPA drivers when using IEEE 802.1X mode; do not try to associate with |
| 55 | # APs (i.e., external program needs to control association) | 96 | # APs (i.e., external program needs to control association). This mode must |
| 97 | # also be used when using wired Ethernet drivers. | ||
| 56 | # 2: like 0, but associate with APs using security policy and SSID (but not | 98 | # 2: like 0, but associate with APs using security policy and SSID (but not |
| 57 | # BSSID); this can be used, e.g., with ndiswrapper and NDIS driver to | 99 | # BSSID); this can be used, e.g., with ndiswrapper and NDIS drivers to |
| 58 | # enable operation with hidden SSIDs and optimized roaming; in this mode, | 100 | # enable operation with hidden SSIDs and optimized roaming; in this mode, |
| 59 | # only the first network block in the configuration file is used and this | 101 | # the network blocks in the configuration file are tried one by one until |
| 60 | # configuration should have explicit security policy (i.e., only one option | 102 | # the driver reports successful association; each network block should have |
| 61 | # in the lists) for key_mgmt, pairwise, group, proto variables | 103 | # explicit security policy (i.e., only one option in the lists) for |
| 104 | # key_mgmt, pairwise, group, proto variables | ||
| 62 | ap_scan=1 | 105 | ap_scan=1 |
| 63 | 106 | ||
| 64 | # EAP fast re-authentication | 107 | # EAP fast re-authentication |
| @@ -67,6 +110,38 @@ ap_scan=1 | |||
| 67 | # Normally, there is no need to disable this. | 110 | # Normally, there is no need to disable this. |
| 68 | fast_reauth=1 | 111 | fast_reauth=1 |
| 69 | 112 | ||
| 113 | # OpenSSL Engine support | ||
| 114 | # These options can be used to load OpenSSL engines. | ||
| 115 | # The two engines that are supported currently are shown below: | ||
| 116 | # They are both from the opensc project (http://www.opensc.org/) | ||
| 117 | # By default no engines are loaded. | ||
| 118 | # make the opensc engine available | ||
| 119 | #opensc_engine_path=/usr/lib/opensc/engine_opensc.so | ||
| 120 | # make the pkcs11 engine available | ||
| 121 | #pkcs11_engine_path=/usr/lib/opensc/engine_pkcs11.so | ||
| 122 | # configure the path to the pkcs11 module required by the pkcs11 engine | ||
| 123 | #pkcs11_module_path=/usr/lib/pkcs11/opensc-pkcs11.so | ||
| 124 | |||
| 125 | # Dynamic EAP methods | ||
| 126 | # If EAP methods were built dynamically as shared object files, they need to be | ||
| 127 | # loaded here before being used in the network blocks. By default, EAP methods | ||
| 128 | # are included statically in the build, so these lines are not needed | ||
| 129 | #load_dynamic_eap=/usr/lib/wpa_supplicant/eap_tls.so | ||
| 130 | #load_dynamic_eap=/usr/lib/wpa_supplicant/eap_md5.so | ||
| 131 | |||
| 132 | # Driver interface parameters | ||
| 133 | # This field can be used to configure arbitrary driver interace parameters. The | ||
| 134 | # format is specific to the selected driver interface. This field is not used | ||
| 135 | # in most cases. | ||
| 136 | #driver_param="field=value" | ||
| 137 | |||
| 138 | # Maximum lifetime for PMKSA in seconds; default 43200 | ||
| 139 | #dot11RSNAConfigPMKLifetime=43200 | ||
| 140 | # Threshold for reauthentication (percentage of PMK lifetime); default 70 | ||
| 141 | #dot11RSNAConfigPMKReauthThreshold=70 | ||
| 142 | # Timeout for security association negotiation in seconds; default 60 | ||
| 143 | #dot11RSNAConfigSATimeout=60 | ||
| 144 | |||
| 70 | # network block | 145 | # network block |
| 71 | # | 146 | # |
| 72 | # Each network (usually AP's sharing the same SSID) is configured as a separate | 147 | # Each network (usually AP's sharing the same SSID) is configured as a separate |
| @@ -75,6 +150,15 @@ fast_reauth=1 | |||
| 75 | # | 150 | # |
| 76 | # network block fields: | 151 | # network block fields: |
| 77 | # | 152 | # |
| 153 | # disabled: | ||
| 154 | # 0 = this network can be used (default) | ||
| 155 | # 1 = this network block is disabled (can be enabled through ctrl_iface, | ||
| 156 | # e.g., with wpa_cli or wpa_gui) | ||
| 157 | # | ||
| 158 | # id_str: Network identifier string for external scripts. This value is passed | ||
| 159 | # to external action script through wpa_cli as WPA_ID_STR environment | ||
| 160 | # variable to make it easier to do network specific configuration. | ||
| 161 | # | ||
| 78 | # ssid: SSID (mandatory); either as an ASCII string with double quotation or | 162 | # ssid: SSID (mandatory); either as an ASCII string with double quotation or |
| 79 | # as hex string; network name | 163 | # as hex string; network name |
| 80 | # | 164 | # |
| @@ -95,9 +179,9 @@ fast_reauth=1 | |||
| 95 | # priority value, the sooner the network is matched against the scan results). | 179 | # priority value, the sooner the network is matched against the scan results). |
| 96 | # Within each priority group, networks will be selected based on security | 180 | # Within each priority group, networks will be selected based on security |
| 97 | # policy, signal strength, etc. | 181 | # policy, signal strength, etc. |
| 98 | # Please note that AP scanning with scan_ssid=1 is not using this priority to | 182 | # Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are not |
| 99 | # select the order for scanning. Instead, it uses the order the networks are in | 183 | # using this priority to select the order for scanning. Instead, they try the |
| 100 | # the configuration file. | 184 | # networks in the order that used in the configuration file. |
| 101 | # | 185 | # |
| 102 | # mode: IEEE 802.11 operation mode | 186 | # mode: IEEE 802.11 operation mode |
| 103 | # 0 = infrastructure (Managed) mode, i.e., associate with an AP (default) | 187 | # 0 = infrastructure (Managed) mode, i.e., associate with an AP (default) |
| @@ -155,10 +239,27 @@ fast_reauth=1 | |||
| 155 | # only when the passphrase or SSID has actually changed. | 239 | # only when the passphrase or SSID has actually changed. |
| 156 | # | 240 | # |
| 157 | # eapol_flags: IEEE 802.1X/EAPOL options (bit field) | 241 | # eapol_flags: IEEE 802.1X/EAPOL options (bit field) |
| 158 | # Dynamic WEP key require for non-WPA mode | 242 | # Dynamic WEP key required for non-WPA mode |
| 159 | # bit0 (1): require dynamically generated unicast WEP key | 243 | # bit0 (1): require dynamically generated unicast WEP key |
| 160 | # bit1 (2): require dynamically generated broadcast WEP key | 244 | # bit1 (2): require dynamically generated broadcast WEP key |
| 161 | # (3 = require both keys; default) | 245 | # (3 = require both keys; default) |
| 246 | # Note: When using wired authentication, eapol_flags must be set to 0 for the | ||
| 247 | # authentication to be completed successfully. | ||
| 248 | # | ||
| 249 | # proactive_key_caching: | ||
| 250 | # Enable/disable opportunistic PMKSA caching for WPA2. | ||
| 251 | # 0 = disabled (default) | ||
| 252 | # 1 = enabled | ||
| 253 | # | ||
| 254 | # wep_key0..3: Static WEP key (ASCII in double quotation, e.g. "abcde" or | ||
| 255 | # hex without quotation, e.g., 0102030405) | ||
| 256 | # wep_tx_keyidx: Default WEP key index (TX) (0..3) | ||
| 257 | # | ||
| 258 | # peerkey: Whether PeerKey negotiation for direct links (IEEE 802.11e DLS) is | ||
| 259 | # allowed. This is only used with RSN/WPA2. | ||
| 260 | # 0 = disabled (default) | ||
| 261 | # 1 = enabled | ||
| 262 | #peerkey=1 | ||
| 162 | # | 263 | # |
| 163 | # Following fields are only used with internal EAP implementation. | 264 | # Following fields are only used with internal EAP implementation. |
| 164 | # eap: space-separated list of accepted EAP methods | 265 | # eap: space-separated list of accepted EAP methods |
| @@ -182,16 +283,46 @@ fast_reauth=1 | |||
| 182 | # unencrypted identity with EAP types that support different tunnelled | 283 | # unencrypted identity with EAP types that support different tunnelled |
| 183 | # identity, e.g., EAP-TTLS) | 284 | # identity, e.g., EAP-TTLS) |
| 184 | # password: Password string for EAP | 285 | # password: Password string for EAP |
| 185 | # ca_cert: File path to CA certificate file. This file can have one or more | 286 | # ca_cert: File path to CA certificate file (PEM/DER). This file can have one |
| 186 | # trusted CA certificates. If ca_cert is not included, server certificate | 287 | # or more trusted CA certificates. If ca_cert and ca_path are not |
| 187 | # will not be verified. This is insecure and the CA file should always be | 288 | # included, server certificate will not be verified. This is insecure and |
| 188 | # configured. | 289 | # a trusted CA certificate should always be configured when using |
| 290 | # EAP-TLS/TTLS/PEAP. Full path should be used since working directory may | ||
| 291 | # change when wpa_supplicant is run in the background. | ||
| 292 | # On Windows, trusted CA certificates can be loaded from the system | ||
| 293 | # certificate store by setting this to cert_store://<name>, e.g., | ||
| 294 | # ca_cert="cert_store://CA" or ca_cert="cert_store://ROOT". | ||
| 295 | # Note that when running wpa_supplicant as an application, the user | ||
| 296 | # certificate store (My user account) is used, whereas computer store | ||
| 297 | # (Computer account) is used when running wpasvc as a service. | ||
| 298 | # ca_path: Directory path for CA certificate files (PEM). This path may | ||
| 299 | # contain multiple CA certificates in OpenSSL format. Common use for this | ||
| 300 | # is to point to system trusted CA list which is often installed into | ||
| 301 | # directory like /etc/ssl/certs. If configured, these certificates are | ||
| 302 | # added to the list of trusted CAs. ca_cert may also be included in that | ||
| 303 | # case, but it is not required. | ||
| 189 | # client_cert: File path to client certificate file (PEM/DER) | 304 | # client_cert: File path to client certificate file (PEM/DER) |
| 305 | # Full path should be used since working directory may change when | ||
| 306 | # wpa_supplicant is run in the background. | ||
| 307 | # Alternatively, a named configuration blob can be used by setting this | ||
| 308 | # to blob://<blob name>. | ||
| 190 | # private_key: File path to client private key file (PEM/DER/PFX) | 309 | # private_key: File path to client private key file (PEM/DER/PFX) |
| 191 | # When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be | 310 | # When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be |
| 192 | # commented out. Both the private key and certificate will be read from | 311 | # commented out. Both the private key and certificate will be read from |
| 193 | # the PKCS#12 file in this case. | 312 | # the PKCS#12 file in this case. Full path should be used since working |
| 194 | # private_key_passwd: Password for private key file | 313 | # directory may change when wpa_supplicant is run in the background. |
| 314 | # Windows certificate store can be used by leaving client_cert out and | ||
| 315 | # configuring private_key in one of the following formats: | ||
| 316 | # cert://substring_to_match | ||
| 317 | # hash://certificate_thumbprint_in_hex | ||
| 318 | # for example: private_key="hash://63093aa9c47f56ae88334c7b65a4" | ||
| 319 | # Note that when running wpa_supplicant as an application, the user | ||
| 320 | # certificate store (My user account) is used, whereas computer store | ||
| 321 | # (Computer account) is used when running wpasvc as a service. | ||
| 322 | # Alternatively, a named configuration blob can be used by setting this | ||
| 323 | # to blob://<blob name>. | ||
| 324 | # private_key_passwd: Password for private key file (if left out, this will be | ||
| 325 | # asked through control interface) | ||
| 195 | # dh_file: File path to DH/DSA parameters file (in PEM format) | 326 | # dh_file: File path to DH/DSA parameters file (in PEM format) |
| 196 | # This is an optional configuration file for setting parameters for an | 327 | # This is an optional configuration file for setting parameters for an |
| 197 | # ephemeral DH key exchange. In most cases, the default RSA | 328 | # ephemeral DH key exchange. In most cases, the default RSA |
| @@ -205,6 +336,14 @@ fast_reauth=1 | |||
| 205 | # sertificate is only accepted if it contains this string in the subject. | 336 | # sertificate is only accepted if it contains this string in the subject. |
| 206 | # The subject string is in following format: | 337 | # The subject string is in following format: |
| 207 | # /C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@example.com | 338 | # /C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@example.com |
| 339 | # altsubject_match: Semicolon separated string of entries to be matched against | ||
| 340 | # the alternative subject name of the authentication server certificate. | ||
| 341 | # If this string is set, the server sertificate is only accepted if it | ||
| 342 | # contains one of the entries in an alternative subject name extension. | ||
| 343 | # altSubjectName string is in following format: TYPE:VALUE | ||
| 344 | # Example: EMAIL:server@example.com | ||
| 345 | # Example: DNS:server.example.com;DNS:server2.example.com | ||
| 346 | # Following types are supported: EMAIL, DNS, URI | ||
| 208 | # phase1: Phase1 (outer authentication, i.e., TLS tunnel) parameters | 347 | # phase1: Phase1 (outer authentication, i.e., TLS tunnel) parameters |
| 209 | # (string with field-value pairs, e.g., "peapver=0" or | 348 | # (string with field-value pairs, e.g., "peapver=0" or |
| 210 | # "peapver=1 peaplabel=1") | 349 | # "peapver=1 peaplabel=1") |
| @@ -219,6 +358,9 @@ fast_reauth=1 | |||
| 219 | # tunneled EAP-Success. This is required with some RADIUS servers that | 358 | # tunneled EAP-Success. This is required with some RADIUS servers that |
| 220 | # implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g., | 359 | # implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g., |
| 221 | # Lucent NavisRadius v4.4.0 with PEAP in "IETF Draft 5" mode) | 360 | # Lucent NavisRadius v4.4.0 with PEAP in "IETF Draft 5" mode) |
| 361 | # include_tls_length=1 can be used to force wpa_supplicant to include | ||
| 362 | # TLS Message Length field in all TLS messages even if they are not | ||
| 363 | # fragmented. | ||
| 222 | # sim_min_num_chal=3 can be used to configure EAP-SIM to require three | 364 | # sim_min_num_chal=3 can be used to configure EAP-SIM to require three |
| 223 | # challenges (by default, it accepts 2 or 3) | 365 | # challenges (by default, it accepts 2 or 3) |
| 224 | # phase2: Phase2 (inner authentication with TLS tunnel) parameters | 366 | # phase2: Phase2 (inner authentication with TLS tunnel) parameters |
| @@ -227,25 +369,49 @@ fast_reauth=1 | |||
| 227 | # Following certificate/private key fields are used in inner Phase2 | 369 | # Following certificate/private key fields are used in inner Phase2 |
| 228 | # authentication when using EAP-TTLS or EAP-PEAP. | 370 | # authentication when using EAP-TTLS or EAP-PEAP. |
| 229 | # ca_cert2: File path to CA certificate file. This file can have one or more | 371 | # ca_cert2: File path to CA certificate file. This file can have one or more |
| 230 | # trusted CA certificates. If ca_cert2 is not included, server | 372 | # trusted CA certificates. If ca_cert2 and ca_path2 are not included, |
| 231 | # certificate will not be verified. This is insecure and the CA file | 373 | # server certificate will not be verified. This is insecure and a trusted |
| 232 | # should always be configured. | 374 | # CA certificate should always be configured. |
| 375 | # ca_path2: Directory path for CA certificate files (PEM) | ||
| 233 | # client_cert2: File path to client certificate file | 376 | # client_cert2: File path to client certificate file |
| 234 | # private_key2: File path to client private key file | 377 | # private_key2: File path to client private key file |
| 235 | # private_key2_passwd: Password for private key file | 378 | # private_key2_passwd: Password for private key file |
| 236 | # dh_file2: File path to DH/DSA parameters file (in PEM format) | 379 | # dh_file2: File path to DH/DSA parameters file (in PEM format) |
| 237 | # subject_match2: Substring to be matched against the subject of the | 380 | # subject_match2: Substring to be matched against the subject of the |
| 238 | # authentication server certificate. | 381 | # authentication server certificate. |
| 382 | # altsubject_match2: Substring to be matched against the alternative subject | ||
| 383 | # name of the authentication server certificate. | ||
| 384 | # | ||
| 385 | # fragment_size: Maximum EAP fragment size in bytes (default 1398). | ||
| 386 | # This value limits the fragment size for EAP methods that support | ||
| 387 | # fragmentation (e.g., EAP-TLS and EAP-PEAP). This value should be set | ||
| 388 | # small enough to make the EAP messages fit in MTU of the network | ||
| 389 | # interface used for EAPOL. The default value is suitable for most | ||
| 390 | # cases. | ||
| 239 | # | 391 | # |
| 240 | # EAP-PSK variables: | 392 | # EAP-PSK variables: |
| 241 | # eappsk: 16-byte (128-bit, 32 hex digits) pre-shared key in hex format | 393 | # eappsk: 16-byte (128-bit, 32 hex digits) pre-shared key in hex format |
| 242 | # nai: user NAI | 394 | # nai: user NAI |
| 243 | # server_nai: authentication server NAI | 395 | # |
| 396 | # EAP-PAX variables: | ||
| 397 | # eappsk: 16-byte (128-bit, 32 hex digits) pre-shared key in hex format | ||
| 398 | # | ||
| 399 | # EAP-SAKE variables: | ||
| 400 | # eappsk: 32-byte (256-bit, 64 hex digits) pre-shared key in hex format | ||
| 401 | # (this is concatenation of Root-Secret-A and Root-Secret-B) | ||
| 402 | # nai: user NAI (PEERID) | ||
| 403 | # | ||
| 404 | # EAP-GPSK variables: | ||
| 405 | # eappsk: Pre-shared key in hex format (at least 128 bits, i.e., 32 hex digits) | ||
| 406 | # nai: user NAI (ID_Client) | ||
| 244 | # | 407 | # |
| 245 | # EAP-FAST variables: | 408 | # EAP-FAST variables: |
| 246 | # pac_file: File path for the PAC entries. wpa_supplicant will need to be able | 409 | # pac_file: File path for the PAC entries. wpa_supplicant will need to be able |
| 247 | # to create this file and write updates to it when PAC is being | 410 | # to create this file and write updates to it when PAC is being |
| 248 | # provisioned or refreshed. | 411 | # provisioned or refreshed. Full path to the file should be used since |
| 412 | # working directory may change when wpa_supplicant is run in the | ||
| 413 | # background. Alternatively, a named configuration blob can be used by | ||
| 414 | # setting this to blob://<blob name> | ||
| 249 | # phase1: fast_provisioning=1 option enables in-line provisioning of EAP-FAST | 415 | # phase1: fast_provisioning=1 option enables in-line provisioning of EAP-FAST |
| 250 | # credentials (PAC) | 416 | # credentials (PAC) |
| 251 | # | 417 | # |
| @@ -379,28 +545,6 @@ network={ | |||
| 379 | } | 545 | } |
| 380 | 546 | ||
| 381 | 547 | ||
| 382 | # EAP-SIM with a GSM SIM or USIM | ||
| 383 | network={ | ||
| 384 | ssid="eap-sim-test" | ||
| 385 | key_mgmt=WPA-EAP | ||
| 386 | eap=SIM | ||
| 387 | pin="1234" | ||
| 388 | pcsc="" | ||
| 389 | } | ||
| 390 | |||
| 391 | |||
| 392 | # EAP-PSK | ||
| 393 | network={ | ||
| 394 | ssid="eap-psk-test" | ||
| 395 | key_mgmt=WPA-EAP | ||
| 396 | eap=PSK | ||
| 397 | identity="eap_psk_user" | ||
| 398 | eappsk=06b4be19da289f475aa46a33cb793029 | ||
| 399 | nai="eap_psk_user@example.com" | ||
| 400 | server_nai="as@example.com" | ||
| 401 | } | ||
| 402 | |||
| 403 | |||
| 404 | # IEEE 802.1X/EAPOL with dynamically generated WEP keys (i.e., no WPA) using | 548 | # IEEE 802.1X/EAPOL with dynamically generated WEP keys (i.e., no WPA) using |
| 405 | # EAP-TLS for authentication and key generation; require both unicast and | 549 | # EAP-TLS for authentication and key generation; require both unicast and |
| 406 | # broadcast WEP keys. | 550 | # broadcast WEP keys. |
| @@ -426,18 +570,6 @@ network={ | |||
| 426 | password="foobar" | 570 | password="foobar" |
| 427 | } | 571 | } |
| 428 | 572 | ||
| 429 | # EAP-FAST with WPA (WPA or WPA2) | ||
| 430 | network={ | ||
| 431 | ssid="eap-fast-test" | ||
| 432 | key_mgmt=WPA-EAP | ||
| 433 | eap=FAST | ||
| 434 | anonymous_identity="FAST-000102030405" | ||
| 435 | identity="username" | ||
| 436 | password="password" | ||
| 437 | phase1="fast_provisioning=1" | ||
| 438 | pac_file="/etc/wpa_supplicant.eap-fast-pac" | ||
| 439 | } | ||
| 440 | |||
| 441 | # Plaintext connection (no WPA, no IEEE 802.1X) | 573 | # Plaintext connection (no WPA, no IEEE 802.1X) |
| 442 | network={ | 574 | network={ |
| 443 | ssid="plaintext-test" | 575 | ssid="plaintext-test" |
| @@ -500,3 +632,59 @@ network={ | |||
| 500 | private_key_passwd="password" | 632 | private_key_passwd="password" |
| 501 | phase1="peaplabel=0" | 633 | phase1="peaplabel=0" |
| 502 | } | 634 | } |
| 635 | |||
| 636 | # Example of EAP-TLS with smartcard (openssl engine) | ||
| 637 | network={ | ||
| 638 | ssid="example" | ||
| 639 | key_mgmt=WPA-EAP | ||
| 640 | eap=TLS | ||
| 641 | proto=RSN | ||
| 642 | pairwise=CCMP TKIP | ||
| 643 | group=CCMP TKIP | ||
| 644 | identity="user@example.com" | ||
| 645 | ca_cert="/etc/cert/ca.pem" | ||
| 646 | client_cert="/etc/cert/user.pem" | ||
| 647 | |||
| 648 | engine=1 | ||
| 649 | |||
| 650 | # The engine configured here must be available. Look at | ||
| 651 | # OpenSSL engine support in the global section. | ||
| 652 | # The key available through the engine must be the private key | ||
| 653 | # matching the client certificate configured above. | ||
| 654 | |||
| 655 | # use the opensc engine | ||
| 656 | #engine_id="opensc" | ||
| 657 | #key_id="45" | ||
| 658 | |||
| 659 | # use the pkcs11 engine | ||
| 660 | engine_id="pkcs11" | ||
| 661 | key_id="id_45" | ||
| 662 | |||
| 663 | # Optional PIN configuration; this can be left out and PIN will be | ||
| 664 | # asked through the control interface | ||
| 665 | pin="1234" | ||
| 666 | } | ||
| 667 | |||
| 668 | # Example configuration showing how to use an inlined blob as a CA certificate | ||
| 669 | # data instead of using external file | ||
| 670 | network={ | ||
| 671 | ssid="example" | ||
| 672 | key_mgmt=WPA-EAP | ||
| 673 | eap=TTLS | ||
| 674 | identity="user@example.com" | ||
| 675 | anonymous_identity="anonymous@example.com" | ||
| 676 | password="foobar" | ||
| 677 | ca_cert="blob://exampleblob" | ||
| 678 | priority=20 | ||
| 679 | } | ||
| 680 | |||
| 681 | blob-base64-exampleblob={ | ||
| 682 | SGVsbG8gV29ybGQhCg== | ||
| 683 | } | ||
| 684 | |||
| 685 | |||
| 686 | # Wildcard match for SSID (plaintext APs only). This example select any | ||
| 687 | # open AP regardless of its SSID. | ||
| 688 | network={ | ||
| 689 | key_mgmt=NONE | ||
| 690 | } | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/defconfig b/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/defconfig deleted file mode 100644 index 0e45d01b88..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/defconfig +++ /dev/null | |||
| @@ -1,160 +0,0 @@ | |||
| 1 | # This file lists the configuration options that are used when building the | ||
| 2 | # hostapd binary. All lines starting with # are ignored. Configuration option | ||
| 3 | # lines must be commented out complete, if they are not to be included, i.e., | ||
| 4 | # just setting VARIABLE=n is not disabling that variable. | ||
| 5 | # | ||
| 6 | # This file is included in Makefile, so variables like CFLAGS and LIBS can also | ||
| 7 | # be modified from here. In most cass, these lines should use += in order not | ||
| 8 | # to override previous values of the variables. | ||
| 9 | |||
| 10 | CFLAGS = $(TARGET_CFLAGS) -I../hostapd -I../utils -I../driver/modules -Wall -MMD | ||
| 11 | |||
| 12 | # for wpa_supplicant, wpa_cli | ||
| 13 | LIBS = $(TARGET_LDFLAGS) | ||
| 14 | |||
| 15 | # for wpa_passphrase: | ||
| 16 | LIBS_p = $(TARGET_LDFLAGS) | ||
| 17 | |||
| 18 | |||
| 19 | # Uncomment following two lines and fix the paths if you have installed openssl | ||
| 20 | # in non-default location | ||
| 21 | #CFLAGS += -I/usr/local/openssl/include | ||
| 22 | #LIBS += -L/usr/local/openssl/lib | ||
| 23 | |||
| 24 | # Example configuration for various cross-compilation platforms | ||
| 25 | |||
| 26 | #### sveasoft (e.g., for Linksys WRT54G) ###################################### | ||
| 27 | #CC=mipsel-uclibc-gcc | ||
| 28 | #CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc | ||
| 29 | #CFLAGS += -Os | ||
| 30 | #CPPFLAGS += -I../src/include -I../../src/router/openssl/include | ||
| 31 | #LIBS += -L/opt/brcm/hndtools-mipsel-uclibc-0.9.19/lib -lssl | ||
| 32 | ############################################################################### | ||
| 33 | |||
| 34 | #### openwrt (e.g., for Linksys WRT54G) ####################################### | ||
| 35 | #CC=mipsel-uclibc-gcc | ||
| 36 | #CC=/opt/brcm/hndtools-mipsel-uclibc/bin/mipsel-uclibc-gcc | ||
| 37 | #CFLAGS += -Os | ||
| 38 | #CPPFLAGS=-I../src/include -I../openssl-0.9.7d/include \ | ||
| 39 | # -I../WRT54GS/release/src/include | ||
| 40 | #LIBS = -lssl | ||
| 41 | ############################################################################### | ||
| 42 | |||
| 43 | |||
| 44 | # Driver interface for Host AP driver | ||
| 45 | #CONFIG_DRIVER_HOSTAP=y | ||
| 46 | |||
| 47 | # Driver interface for Agere driver | ||
| 48 | #CONFIG_DRIVER_HERMES=y | ||
| 49 | |||
| 50 | # Driver interface for madwifi driver | ||
| 51 | #CONFIG_DRIVER_MADWIFI=y | ||
| 52 | # Change include directories to match with the local setup | ||
| 53 | #CFLAGS += -I../madwifi/wpa | ||
| 54 | |||
| 55 | # Driver interface for Prism54 driver | ||
| 56 | #CONFIG_DRIVER_PRISM54=y | ||
| 57 | |||
| 58 | # Driver interface for ndiswrapper | ||
| 59 | #CONFIG_DRIVER_NDISWRAPPER=y | ||
| 60 | |||
| 61 | # Driver interface for Atmel driver | ||
| 62 | #CONFIG_DRIVER_ATMEL=y | ||
| 63 | |||
| 64 | # Driver interface for Broadcom driver | ||
| 65 | #CONFIG_DRIVER_BROADCOM=y | ||
| 66 | # Example path for wlioctl.h; change to match your configuration | ||
| 67 | #CFLAGS += -I/opt/WRT54GS/release/src/include | ||
| 68 | |||
| 69 | # Driver interface for Intel ipw2100 driver | ||
| 70 | #CONFIG_DRIVER_IPW2100=y | ||
| 71 | |||
| 72 | # Driver interface for the Zydas zd1211 driver | ||
| 73 | CONFIG_DRIVER_ZD1211=y | ||
| 74 | |||
| 75 | # Driver interface for generic Linux wireless extensions | ||
| 76 | CONFIG_DRIVER_WEXT=y | ||
| 77 | |||
| 78 | # Driver interface for FreeBSD net80211 layer (e.g., Atheros driver) | ||
| 79 | #CONFIG_DRIVER_BSD=y | ||
| 80 | #CFLAGS += -I/usr/local/include | ||
| 81 | #LIBS += -L/usr/local/lib | ||
| 82 | |||
| 83 | # Driver interface for Windows NDIS | ||
| 84 | #CONFIG_DRIVER_NDIS=y | ||
| 85 | #CFLAGS += -I/usr/include/w32api/ddk | ||
| 86 | #LIBS += -L/usr/local/lib | ||
| 87 | # For native build using mingw | ||
| 88 | #CONFIG_NATIVE_WINDOWS=y | ||
| 89 | # Additional directories for cross-compilation on Linux host for mingw target | ||
| 90 | #CFLAGS += -I/opt/mingw/mingw32/include/ddk | ||
| 91 | #LIBS += -L/opt/mingw/mingw32/lib | ||
| 92 | #CC=mingw32-gcc | ||
| 93 | |||
| 94 | # Driver interface for development testing | ||
| 95 | #CONFIG_DRIVER_TEST=y | ||
| 96 | |||
| 97 | # Enable IEEE 802.1X Supplicant (automatically included if any EAP method is | ||
| 98 | # included) | ||
| 99 | CONFIG_IEEE8021X_EAPOL=y | ||
| 100 | |||
| 101 | # EAP-MD5 (automatically included if EAP-TTLS is enabled) | ||
| 102 | CONFIG_EAP_MD5=y | ||
| 103 | |||
| 104 | # EAP-MSCHAPv2 (automatically included if EAP-PEAP is enabled) | ||
| 105 | CONFIG_EAP_MSCHAPV2=y | ||
| 106 | |||
| 107 | # EAP-TLS | ||
| 108 | CONFIG_EAP_TLS=y | ||
| 109 | |||
| 110 | # EAL-PEAP | ||
| 111 | CONFIG_EAP_PEAP=y | ||
| 112 | |||
| 113 | # EAP-TTLS | ||
| 114 | CONFIG_EAP_TTLS=y | ||
| 115 | |||
| 116 | # EAP-GTC | ||
| 117 | CONFIG_EAP_GTC=y | ||
| 118 | |||
| 119 | # EAP-OTP | ||
| 120 | CONFIG_EAP_OTP=y | ||
| 121 | |||
| 122 | # EAP-SIM (enable CONFIG_PCSC, if EAP-SIM is used) | ||
| 123 | #CONFIG_EAP_SIM=y | ||
| 124 | |||
| 125 | # EAP-PSK (experimental; this is _not_ needed for WPA-PSK) | ||
| 126 | #CONFIG_EAP_PSK=y | ||
| 127 | |||
| 128 | # LEAP | ||
| 129 | CONFIG_EAP_LEAP=y | ||
| 130 | |||
| 131 | # EAP-AKA (enable CONFIG_PCSC, if EAP-AKA is used) | ||
| 132 | #CONFIG_EAP_AKA=y | ||
| 133 | |||
| 134 | # PKCS#12 (PFX) support (used to read private key and certificate file from | ||
| 135 | # a file that usually has extension .p12 or .pfx) | ||
| 136 | CONFIG_PKCS12=y | ||
| 137 | |||
| 138 | # PC/SC interface for smartcards (USIM, GSM SIM) | ||
| 139 | # Enable this if EAP-SIM or EAP-AKA is included | ||
| 140 | #CONFIG_PCSC=y | ||
| 141 | |||
| 142 | # Development testing | ||
| 143 | #CONFIG_EAPOL_TEST=y | ||
| 144 | |||
| 145 | # Replace native Linux implementation of packet sockets with libdnet/libpcap. | ||
| 146 | # This will be automatically set for non-Linux OS. | ||
| 147 | #CONFIG_DNET_PCAP=y | ||
| 148 | |||
| 149 | # Include control interface for external programs, e.g, wpa_cli | ||
| 150 | CONFIG_CTRL_IFACE=y | ||
| 151 | |||
| 152 | # Include interface for using external supplicant (Xsupplicant) for EAP | ||
| 153 | # authentication | ||
| 154 | #CONFIG_XSUPPLICANT_IFACE=y | ||
| 155 | |||
| 156 | # Include support for GNU Readline and History Libraries in wpa_cli. | ||
| 157 | # When building a wpa_cli binary for distribution, please note that these | ||
| 158 | # libraries are licensed under GPL and as such, BSD license may not apply for | ||
| 159 | # the resulting binary. | ||
| 160 | #CONFIG_READLINE=y | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/driver-hermes.patch b/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/driver-hermes.patch deleted file mode 100644 index 4044835e1c..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/driver-hermes.patch +++ /dev/null | |||
| @@ -1,884 +0,0 @@ | |||
| 1 | --- /dev/null | ||
| 2 | +++ wpa_supplicant-0.4.7/driver_hermes.c | ||
| 3 | @@ -0,0 +1,705 @@ | ||
| 4 | +/* | ||
| 5 | + * WPA Supplicant - testing driver interface | ||
| 6 | + * Copyright (c) 2004-2005, Jouni Malinen <jkmaline@cc.hut.fi> | ||
| 7 | + * | ||
| 8 | + * This program is free software; you can redistribute it and/or modify | ||
| 9 | + * it under the terms of the GNU General Public License version 2 as | ||
| 10 | + * published by the Free Software Foundation. | ||
| 11 | + * | ||
| 12 | + * Alternatively, this software may be distributed under the terms of BSD | ||
| 13 | + * license. | ||
| 14 | + * | ||
| 15 | + * See README and COPYING for more details. | ||
| 16 | + */ | ||
| 17 | + | ||
| 18 | +#include <stdlib.h> | ||
| 19 | +#include <stdio.h> | ||
| 20 | +#include <unistd.h> | ||
| 21 | +#include <string.h> | ||
| 22 | +#include <sys/ioctl.h> | ||
| 23 | +#include <errno.h> | ||
| 24 | +#include <net/if_arp.h> | ||
| 25 | + | ||
| 26 | +#include "wireless_copy.h" | ||
| 27 | +#include "common.h" | ||
| 28 | +#include "driver.h" | ||
| 29 | + | ||
| 30 | +#include "eloop.h" | ||
| 31 | +#include "wpa_supplicant.h" | ||
| 32 | +#include "priv_netlink.h" | ||
| 33 | + | ||
| 34 | +#include "hostap_common.h" | ||
| 35 | +#include "driver_wext.h" | ||
| 36 | +#include "driver_hermes.h" | ||
| 37 | + | ||
| 38 | + | ||
| 39 | + | ||
| 40 | +/* Enumeration for supported Hermes Types */ | ||
| 41 | +enum | ||
| 42 | +{ | ||
| 43 | + WL_HERMES_UNKNOWN = 0, | ||
| 44 | + WL_HERMES_1 = 1, | ||
| 45 | + WL_HERMES_2 = 2, | ||
| 46 | + WL_HERMES_25 = 3 | ||
| 47 | +}; | ||
| 48 | + | ||
| 49 | + | ||
| 50 | + | ||
| 51 | + | ||
| 52 | +struct wpa_driver_hermes_data { | ||
| 53 | + void *wext; /* private data for driver_wext */ | ||
| 54 | + void *ctx; | ||
| 55 | + char ifname[IFNAMSIZ + 1]; | ||
| 56 | + int sock; | ||
| 57 | + int type; | ||
| 58 | +}; | ||
| 59 | + | ||
| 60 | + | ||
| 61 | + | ||
| 62 | +/****************************************************************************/ | ||
| 63 | +/* */ | ||
| 64 | +/* Routines for basic device access to Agere Hermes-I/Hermes-II via the UIL */ | ||
| 65 | +/* */ | ||
| 66 | +/****************************************************************************/ | ||
| 67 | + | ||
| 68 | +IFBP _connect(void *priv) | ||
| 69 | +{ | ||
| 70 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 71 | + int result = 0; | ||
| 72 | + IFBP ifbp = NULL; | ||
| 73 | + struct uilreq urq; | ||
| 74 | + | ||
| 75 | + //wpa_printf(MSG_DEBUG, "%s: %s %d", __FUNCTION__, drv->ifname, drv->sock); | ||
| 76 | + | ||
| 77 | + memset(&urq, 0, sizeof(urq)); | ||
| 78 | + | ||
| 79 | + strcpy(urq.ifr_name, drv->ifname); | ||
| 80 | + urq.command = UIL_FUN_CONNECT; | ||
| 81 | + | ||
| 82 | + result = ioctl(drv->sock, WVLAN2_IOCTL_UIL, &urq); | ||
| 83 | + if (result == 0 && urq.result == UIL_SUCCESS) { | ||
| 84 | + ifbp = urq.hcfCtx; | ||
| 85 | + } else { | ||
| 86 | + wpa_printf(MSG_DEBUG, "%s: could not set IFBP, result %d", __FUNCTION__, result); | ||
| 87 | + } | ||
| 88 | + | ||
| 89 | + return ifbp; | ||
| 90 | +} | ||
| 91 | + | ||
| 92 | + | ||
| 93 | +void _disconnect(void *priv, IFBP ifbp) | ||
| 94 | +{ | ||
| 95 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 96 | + int result = 0; | ||
| 97 | + struct uilreq urq; | ||
| 98 | + | ||
| 99 | + //wpa_printf(MSG_DEBUG, "%s: %s", __FUNCTION__, drv->ifname); | ||
| 100 | + | ||
| 101 | + if (ifbp != NULL) { | ||
| 102 | + memset(&urq, 0, sizeof(struct uilreq)); | ||
| 103 | + | ||
| 104 | + strcpy(urq.ifr_name, drv->ifname); | ||
| 105 | + urq.command = UIL_FUN_DISCONNECT; | ||
| 106 | + urq.hcfCtx = ifbp; | ||
| 107 | + | ||
| 108 | + result = ioctl(drv->sock, WVLAN2_IOCTL_UIL, &urq); | ||
| 109 | + | ||
| 110 | + if (result != 0 || urq.result != UIL_SUCCESS) { | ||
| 111 | + wpa_printf( MSG_WARNING, "wl_disconnect(): ioctl() failed, errno: %d", errno ); | ||
| 112 | + wpa_printf( MSG_WARNING, "wl_disconnect(): urq.result: %d", urq.result ); | ||
| 113 | + } | ||
| 114 | + } else { | ||
| 115 | + wpa_printf(MSG_WARNING, "wl_disconnect(): called with NULL ifbp"); | ||
| 116 | + } | ||
| 117 | + | ||
| 118 | + return; | ||
| 119 | +} | ||
| 120 | + | ||
| 121 | +int _get_info(void *priv, ltv_t *ltv) | ||
| 122 | +{ | ||
| 123 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 124 | + int result = 0; | ||
| 125 | + IFBP ifbp = NULL; | ||
| 126 | + struct uilreq urq; | ||
| 127 | + | ||
| 128 | + //wpa_printf(MSG_DEBUG, "%s: %s", __FUNCTION__, drv->ifname); | ||
| 129 | + | ||
| 130 | + /* First, connect to the device */ | ||
| 131 | + ifbp = _connect(priv); | ||
| 132 | + if (ifbp != NULL && ltv != NULL) { | ||
| 133 | + memset(&urq, 0, sizeof(struct uilreq)); | ||
| 134 | + | ||
| 135 | + strcpy(urq.ifr_name, drv->ifname); | ||
| 136 | + urq.hcfCtx = ifbp; | ||
| 137 | + urq.command = UIL_FUN_GET_INFO; | ||
| 138 | + urq.len = sizeof(ltv_t); | ||
| 139 | + urq.data = ltv; | ||
| 140 | + | ||
| 141 | + result = ioctl(drv->sock, WVLAN2_IOCTL_UIL, &urq); | ||
| 142 | + | ||
| 143 | + if (result != 0 || urq.result != UIL_SUCCESS) { | ||
| 144 | + wpa_printf(MSG_WARNING, "wl_disconnect(): ioctl() failed, errno: %d", errno); | ||
| 145 | + wpa_printf(MSG_WARNING, "wl_disconnect(): urq.result: %d", urq.result); | ||
| 146 | + } | ||
| 147 | + _disconnect(priv, ifbp); | ||
| 148 | + } else { | ||
| 149 | + wpa_printf( MSG_WARNING, "Could not connect to the device, or LTV NULL"); | ||
| 150 | + result = -1; | ||
| 151 | + } | ||
| 152 | + | ||
| 153 | + return result; | ||
| 154 | +} | ||
| 155 | + | ||
| 156 | +int _put_info(void *priv, ltv_t *ltv) | ||
| 157 | +{ | ||
| 158 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 159 | + int result = 0; | ||
| 160 | + IFBP ifbp = NULL; | ||
| 161 | + struct uilreq urq; | ||
| 162 | + | ||
| 163 | + //wpa_printf(MSG_DEBUG, "%s: %s", __FUNCTION__, drv->ifname); | ||
| 164 | + | ||
| 165 | + /* First, connect to the device */ | ||
| 166 | + ifbp = _connect(priv); | ||
| 167 | + if (ifbp != NULL && ltv != NULL) { | ||
| 168 | + memset(&urq, 0, sizeof(struct uilreq)); | ||
| 169 | + | ||
| 170 | + strcpy(urq.ifr_name, drv->ifname); | ||
| 171 | + urq.hcfCtx = ifbp; | ||
| 172 | + urq.command = UIL_FUN_PUT_INFO; | ||
| 173 | + urq.len = sizeof( ltv_t ); | ||
| 174 | + urq.data = ltv; | ||
| 175 | + | ||
| 176 | + result = ioctl(drv->sock, WVLAN2_IOCTL_UIL, &urq); | ||
| 177 | + | ||
| 178 | + if (result != 0 || urq.result != UIL_SUCCESS) { | ||
| 179 | + wpa_printf(MSG_WARNING, "_put_info(): ioctl() failed, errno: %d", errno); | ||
| 180 | + wpa_printf(MSG_WARNING, "_put_info(): urq.result: %d", urq.result); | ||
| 181 | + } | ||
| 182 | + | ||
| 183 | + _disconnect(priv, ifbp); | ||
| 184 | + } else { | ||
| 185 | + wpa_printf(MSG_WARNING, "%s: could not connect to the device, or LTV NULL", __FUNCTION__ ); | ||
| 186 | + result = -1; | ||
| 187 | + } | ||
| 188 | + | ||
| 189 | + return result; | ||
| 190 | +} | ||
| 191 | + | ||
| 192 | + | ||
| 193 | +static void _detect_hermes_type(void *priv) | ||
| 194 | +{ | ||
| 195 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 196 | + CFG_FW_IDENTITY_STRCT *fw_id; | ||
| 197 | + ltv_t ltv; | ||
| 198 | + int result; | ||
| 199 | + | ||
| 200 | + //wpa_printf(MSG_DEBUG, "%s", __FUNCTION__); | ||
| 201 | + | ||
| 202 | + drv->type = WL_HERMES_UNKNOWN; | ||
| 203 | + | ||
| 204 | + if (drv->sock >= 0) { | ||
| 205 | + fw_id = (CFG_FW_IDENTITY_STRCT *)<v; | ||
| 206 | + fw_id->len = ( sizeof(CFG_FW_IDENTITY_STRCT) / sizeof( hcf_16 )) - 1; | ||
| 207 | + fw_id->typ = CFG_FW_IDENTITY; | ||
| 208 | + | ||
| 209 | + result = _get_info(priv, (ltv_t *)fw_id); | ||
| 210 | + if (result == HCF_SUCCESS) { | ||
| 211 | + //wpa_printf(MSG_DEBUG, "PRI CompID : %d", fw_id->comp_id); | ||
| 212 | + //wpa_printf(MSG_DEBUG, "PRI Variant : %d", fw_id->variant); | ||
| 213 | + //wpa_printf(MSG_DEBUG, "PRI Version : %d.%02d", fw_id->version_major, fw_id->version_minor); | ||
| 214 | + | ||
| 215 | + switch(fw_id->comp_id) { | ||
| 216 | + case COMP_ID_FW_STA: | ||
| 217 | + switch (fw_id->variant) { | ||
| 218 | + case 1: | ||
| 219 | + case 2: | ||
| 220 | + wpa_printf(MSG_DEBUG, "found Hermes 1 STA"); | ||
| 221 | + drv->type = WL_HERMES_1; | ||
| 222 | + break; | ||
| 223 | + | ||
| 224 | + case 3: | ||
| 225 | + wpa_printf(MSG_DEBUG, "found Hermes 2 STA"); | ||
| 226 | + drv->type = WL_HERMES_2; | ||
| 227 | + break; | ||
| 228 | + case 4: | ||
| 229 | + wpa_printf(MSG_DEBUG, "found Hermes 2.5 STA"); | ||
| 230 | + drv->type = WL_HERMES_25; | ||
| 231 | + break; | ||
| 232 | + } | ||
| 233 | + break; | ||
| 234 | + | ||
| 235 | + case COMP_ID_FW_AP: | ||
| 236 | + switch (fw_id->variant) { | ||
| 237 | + case 1: | ||
| 238 | + wpa_printf(MSG_DEBUG, "found Hermes 1 AP"); | ||
| 239 | + drv->type = WL_HERMES_1; | ||
| 240 | + break; | ||
| 241 | + | ||
| 242 | + case 2: | ||
| 243 | + wpa_printf(MSG_DEBUG, "found Hermes 2 AP" ); | ||
| 244 | + drv->type = WL_HERMES_2; | ||
| 245 | + break; | ||
| 246 | + } | ||
| 247 | + break; | ||
| 248 | + | ||
| 249 | + default: | ||
| 250 | + wpa_printf(MSG_WARNING, "could not detect Hermes type!"); | ||
| 251 | + break; | ||
| 252 | + } | ||
| 253 | + } | ||
| 254 | + } | ||
| 255 | +} | ||
| 256 | + | ||
| 257 | + | ||
| 258 | + | ||
| 259 | +/****************************************************************************/ | ||
| 260 | + | ||
| 261 | + | ||
| 262 | +static int wpa_driver_hermes_set_wpa_ie(void *priv, const char *wpa_ie, | ||
| 263 | + size_t wpa_ie_len) | ||
| 264 | +{ | ||
| 265 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 266 | + ltv_t ltv; | ||
| 267 | + | ||
| 268 | + wpa_printf(MSG_DEBUG, "%s", __FUNCTION__); | ||
| 269 | + | ||
| 270 | + ltv.len = 2; | ||
| 271 | + ltv.typ = CFG_SET_WPA_AUTH_KEY_MGMT_SUITE; | ||
| 272 | + | ||
| 273 | + switch(drv->type) { | ||
| 274 | + case WL_HERMES_1: | ||
| 275 | + ltv.u.u16[0] = 2; | ||
| 276 | + break; | ||
| 277 | + | ||
| 278 | + case WL_HERMES_2: | ||
| 279 | + case WL_HERMES_25: | ||
| 280 | + ltv.u.u16[0] = 4; | ||
| 281 | + break; | ||
| 282 | + | ||
| 283 | + default: | ||
| 284 | + ltv.u.u16[0] = 0; | ||
| 285 | + break; | ||
| 286 | + } | ||
| 287 | + | ||
| 288 | + return _put_info(priv, <v); | ||
| 289 | +} | ||
| 290 | + | ||
| 291 | + | ||
| 292 | +static int wpa_driver_hermes_set_wpa(void *priv, int enabled) | ||
| 293 | +{ | ||
| 294 | + ltv_t ltv; | ||
| 295 | + | ||
| 296 | + wpa_printf(MSG_DEBUG, "%s: enabled=%d", __func__, enabled); | ||
| 297 | + | ||
| 298 | + ltv.len = 2; | ||
| 299 | + ltv.typ = CFG_CNF_ENCRYPTION; | ||
| 300 | + ltv.u.u16[0] = enabled ? 2 : 0; /* Setting CFG_CNF_ENCRYPTION to 2 sets WPA: TKIP or better */ | ||
| 301 | + | ||
| 302 | + return _put_info(priv, <v); | ||
| 303 | +} | ||
| 304 | + | ||
| 305 | + | ||
| 306 | +static int wpa_driver_hermes_set_key(void *priv, wpa_alg alg, | ||
| 307 | + const u8 *addr, int key_idx, | ||
| 308 | + int set_tx, const u8 *seq, size_t seq_len, | ||
| 309 | + const u8 *key, size_t key_len) | ||
| 310 | +{ | ||
| 311 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 312 | + int ret = 0; | ||
| 313 | + char *alg_name; | ||
| 314 | + ltv_t ltv; | ||
| 315 | + int count = 0; | ||
| 316 | + int buf_idx = 0; | ||
| 317 | + hcf_8 tsc[] = { 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00 }; | ||
| 318 | + hcf_8 rsc[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; | ||
| 319 | + | ||
| 320 | + | ||
| 321 | + switch (alg) { | ||
| 322 | + case WPA_ALG_NONE: | ||
| 323 | + alg_name = "none"; | ||
| 324 | + break; | ||
| 325 | + case WPA_ALG_WEP: | ||
| 326 | + alg_name = "WEP"; | ||
| 327 | + break; | ||
| 328 | + case WPA_ALG_TKIP: | ||
| 329 | + alg_name = "TKIP"; | ||
| 330 | + break; | ||
| 331 | + case WPA_ALG_CCMP: | ||
| 332 | + alg_name = "CCMP"; | ||
| 333 | + break; | ||
| 334 | + default: | ||
| 335 | + return -1; | ||
| 336 | + } | ||
| 337 | + | ||
| 338 | + wpa_printf(MSG_DEBUG, "%s: alg=%s key_idx=%d set_tx=%d seq_len=%d " | ||
| 339 | + "key_len=%d", __FUNCTION__, alg_name, key_idx, set_tx, | ||
| 340 | + seq_len, key_len); | ||
| 341 | + | ||
| 342 | + if (seq_len > IW_ENCODE_SEQ_MAX_SIZE) { | ||
| 343 | + wpa_printf(MSG_DEBUG, "%s: Invalid seq_len %lu", __FUNCTION__, (unsigned long) seq_len); | ||
| 344 | + return -2; | ||
| 345 | + } | ||
| 346 | + | ||
| 347 | + /* Check the key index here; if 0, load as Pairwise Key, otherwise, load as | ||
| 348 | + a group key. Note that for the Hermes, the RIDs for group/pairwise keys | ||
| 349 | + are different from each other and different than the default WEP keys as | ||
| 350 | + well. */ | ||
| 351 | + switch (alg) { | ||
| 352 | + case WPA_ALG_TKIP: | ||
| 353 | + /* Make sure that there is no data queued up in the firmware before | ||
| 354 | + setting the TKIP keys. If this check is not performed, some data | ||
| 355 | + may be sent out with incorrect MIC and cause synchronizarion | ||
| 356 | + errors with the AP */ | ||
| 357 | + /* Check every 1ms for 100ms */ | ||
| 358 | + for (count = 0; count < 100; count++) { | ||
| 359 | + usleep(1000); | ||
| 360 | + | ||
| 361 | + ltv.len = 2; | ||
| 362 | + ltv.typ = 0xFD91; // This RID not defined in HCF yet!!! | ||
| 363 | + ltv.u.u16[0] = 0; | ||
| 364 | + | ||
| 365 | + _get_info( priv, <v); | ||
| 366 | + | ||
| 367 | + if (ltv.u.u16[0] == 0) | ||
| 368 | + break; | ||
| 369 | + } | ||
| 370 | + | ||
| 371 | + if (count == 100) | ||
| 372 | + wpa_printf(MSG_DEBUG, "%s: Timed out waiting for TxQ!", __FUNCTION__); | ||
| 373 | + | ||
| 374 | + | ||
| 375 | + switch (key_idx) { | ||
| 376 | + case 0: | ||
| 377 | + /* Only load key as pairwise key for Hermes-II and II.5. For Hermes-I, | ||
| 378 | + fall through to the next case and load the pairwise key as | ||
| 379 | + a Group Key at index 0. */ | ||
| 380 | + if (drv->type == WL_HERMES_2 || drv->type == WL_HERMES_25) { | ||
| 381 | + ltv.len = 28; | ||
| 382 | + ltv.typ = CFG_ADD_TKIP_MAPPED_KEY; | ||
| 383 | + | ||
| 384 | + /* Load the BSSID */ | ||
| 385 | + memcpy(<v.u.u8[buf_idx], addr, ETH_ALEN); | ||
| 386 | + buf_idx += ETH_ALEN; | ||
| 387 | + | ||
| 388 | + /* Load the TKIP key */ | ||
| 389 | + memcpy(<v.u.u8[buf_idx], &key[0], 16); | ||
| 390 | + buf_idx += 16; | ||
| 391 | + | ||
| 392 | + /* Load the TSC */ | ||
| 393 | + memcpy(<v.u.u8[buf_idx], tsc, 8); | ||
| 394 | + buf_idx += 8; | ||
| 395 | + | ||
| 396 | + /* Load the RSC */ | ||
| 397 | + /* Copy the RSC from the supplicant to a local buffer, because | ||
| 398 | + the RSC doesn't always contain the padding needed */ | ||
| 399 | + memcpy(rsc, seq, seq_len); | ||
| 400 | + memcpy(<v.u.u8[buf_idx], rsc, 8); | ||
| 401 | + buf_idx += 8; | ||
| 402 | + | ||
| 403 | + /* Load the TxMIC key */ | ||
| 404 | + memcpy(<v.u.u8[buf_idx], &key[16], 8); | ||
| 405 | + buf_idx += 8; | ||
| 406 | + | ||
| 407 | + /* Load the RxMIC key */ | ||
| 408 | + memcpy(<v.u.u8[buf_idx], &key[24], 8); | ||
| 409 | + | ||
| 410 | + /* Send the request to the Hermes */ | ||
| 411 | + _put_info(priv, <v); | ||
| 412 | + break; | ||
| 413 | + } | ||
| 414 | + | ||
| 415 | + case 1: | ||
| 416 | + case 2: | ||
| 417 | + case 3: | ||
| 418 | + ltv.len = 26; | ||
| 419 | + ltv.typ = CFG_ADD_TKIP_DEFAULT_KEY; | ||
| 420 | + | ||
| 421 | + /* Load the key Index */ | ||
| 422 | + ltv.u.u16[buf_idx] = key_idx; | ||
| 423 | + | ||
| 424 | + /* If this is a Tx Key, set bit 8000 */ | ||
| 425 | + if (set_tx) | ||
| 426 | + ltv.u.u16[buf_idx] |= 0x8000; | ||
| 427 | + | ||
| 428 | + buf_idx += 2; | ||
| 429 | + | ||
| 430 | + /* Load the RSC */ | ||
| 431 | + /* Copy the RSC from the supplicant to a local buffer, because | ||
| 432 | + the RSC doesn't always contain the padding needed */ | ||
| 433 | + memcpy(rsc, seq, seq_len); | ||
| 434 | + memcpy(<v.u.u8[buf_idx], rsc, 8); | ||
| 435 | + buf_idx += 8; | ||
| 436 | + | ||
| 437 | + /* Load the TKIP, TxMIC, and RxMIC keys in one shot, because in | ||
| 438 | + CFG_ADD_TKIP_DEFAULT_KEY they are back-to-back */ | ||
| 439 | + memcpy(<v.u.u8[buf_idx], key, key_len); | ||
| 440 | + buf_idx += key_len; | ||
| 441 | + | ||
| 442 | + /* Load the TSC */ | ||
| 443 | + memcpy(<v.u.u8[buf_idx], tsc, 8); | ||
| 444 | + | ||
| 445 | + /* Send the request to the Hermes */ | ||
| 446 | + _put_info(priv, <v); | ||
| 447 | + break; | ||
| 448 | + | ||
| 449 | + default: | ||
| 450 | + break; | ||
| 451 | + } | ||
| 452 | + | ||
| 453 | + break; | ||
| 454 | + | ||
| 455 | + case WPA_ALG_WEP: | ||
| 456 | + case WPA_ALG_CCMP: | ||
| 457 | + break; | ||
| 458 | + | ||
| 459 | + case WPA_ALG_NONE: | ||
| 460 | + switch (key_idx) { | ||
| 461 | + case 0: | ||
| 462 | + if (drv->type == WL_HERMES_2 || drv->type == WL_HERMES_25) { | ||
| 463 | + /* Only clear a pairwise key for Hermes-II. For Hermes-I, | ||
| 464 | + fall through to the next case and clear the key as a | ||
| 465 | + Group Key at index 0. */ | ||
| 466 | + if (addr) { | ||
| 467 | + ltv.len = 7; | ||
| 468 | + ltv.typ = CFG_REMOVE_TKIP_MAPPED_KEY; | ||
| 469 | + | ||
| 470 | + memcpy(<v.u.u8[0], addr, ETH_ALEN); | ||
| 471 | + | ||
| 472 | + _put_info(priv, <v); | ||
| 473 | + } | ||
| 474 | + break; | ||
| 475 | + } | ||
| 476 | + | ||
| 477 | + case 1: | ||
| 478 | + case 2: | ||
| 479 | + case 3: | ||
| 480 | + /* Clear the Group TKIP keys by index */ | ||
| 481 | + ltv.len = 2; | ||
| 482 | + ltv.typ = CFG_REMOVE_TKIP_DEFAULT_KEY; | ||
| 483 | + | ||
| 484 | + ltv.u.u16[0] = key_idx; | ||
| 485 | + | ||
| 486 | + _put_info(priv, <v); | ||
| 487 | + break; | ||
| 488 | + | ||
| 489 | + default: | ||
| 490 | + break; | ||
| 491 | + } | ||
| 492 | + break; | ||
| 493 | + | ||
| 494 | + default: | ||
| 495 | + break; | ||
| 496 | + } | ||
| 497 | + | ||
| 498 | + return ret; | ||
| 499 | +} | ||
| 500 | + | ||
| 501 | + | ||
| 502 | +static int wpa_driver_hermes_set_countermeasures(void *priv, int enabled) | ||
| 503 | +{ | ||
| 504 | + ltv_t ltv; | ||
| 505 | + | ||
| 506 | + /* The supplicant handles all the timers related to MIC failure and | ||
| 507 | + countermeasures. When countermeasures are enabled, shut down the card; | ||
| 508 | + when disable, re-enable the card. Make sure that the EAPOL message | ||
| 509 | + is getting out before card disable */ | ||
| 510 | + | ||
| 511 | + wpa_printf(MSG_DEBUG, "%s: enabled=%d", __FUNCTION__, enabled); | ||
| 512 | + | ||
| 513 | + ltv.len = 2; | ||
| 514 | + ltv.typ = CFG_DRIVER_ENABLE; | ||
| 515 | + ltv.u.u16[0] = enabled ? 0 : 1; | ||
| 516 | + | ||
| 517 | + return _put_info(priv, <v); | ||
| 518 | +} | ||
| 519 | + | ||
| 520 | + | ||
| 521 | +static int wpa_driver_hermes_set_drop_unencrypted(void *priv, int enabled) | ||
| 522 | +{ | ||
| 523 | + ltv_t ltv; | ||
| 524 | + | ||
| 525 | + wpa_printf(MSG_DEBUG, "%s: enabled=%d", __FUNCTION__, enabled); | ||
| 526 | + | ||
| 527 | + ltv.len = 2; | ||
| 528 | + ltv.typ = CFG_CNF_EXCL_UNENCRYPTED; | ||
| 529 | + ltv.u.u16[0] = enabled; | ||
| 530 | + | ||
| 531 | + return _put_info(priv, <v); | ||
| 532 | +} | ||
| 533 | + | ||
| 534 | + | ||
| 535 | +static int wpa_driver_hermes_deauthenticate(void *priv, const u8 *addr, | ||
| 536 | + int reason_code) | ||
| 537 | +{ | ||
| 538 | + wpa_printf(MSG_DEBUG, "%s: *DUMMY* %d", __FUNCTION__, reason_code); | ||
| 539 | + | ||
| 540 | + return 0; | ||
| 541 | +} | ||
| 542 | + | ||
| 543 | + | ||
| 544 | +static int wpa_driver_hermes_disassociate(void *priv, const u8 *addr, int reason_code) | ||
| 545 | +{ | ||
| 546 | + ltv_t ltv; | ||
| 547 | + | ||
| 548 | + wpa_printf(MSG_DEBUG, "%s: reason=%d", __FUNCTION__, reason_code); | ||
| 549 | + | ||
| 550 | + ltv.len = 2; | ||
| 551 | + ltv.typ = 0xFCC8; // This RID not defined in HCF yet!!! | ||
| 552 | + memcpy( <v.u.u8[0], addr, ETH_ALEN ); | ||
| 553 | + ltv.u.u16[ETH_ALEN / 2] = reason_code; | ||
| 554 | + | ||
| 555 | + return _put_info( priv, <v); | ||
| 556 | +} | ||
| 557 | + | ||
| 558 | + | ||
| 559 | +static int wpa_driver_hermes_associate( | ||
| 560 | + void *priv, struct wpa_driver_associate_params *params) | ||
| 561 | +{ | ||
| 562 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 563 | + | ||
| 564 | +#if 0 | ||
| 565 | + wpa_printf(MSG_DEBUG, "%s", __FUNCTION__); | ||
| 566 | +#else | ||
| 567 | + wpa_printf(MSG_DEBUG, "%s: priv=%p freq=%d pairwise_suite=%d " | ||
| 568 | + "group_suite=%d key_mgmt_suite=%d auth_alg=%d mode=%d", | ||
| 569 | + __func__, priv, params->freq, params->pairwise_suite, | ||
| 570 | + params->group_suite, params->key_mgmt_suite, | ||
| 571 | + params->auth_alg, params->mode); | ||
| 572 | + if (params->bssid) { | ||
| 573 | + wpa_printf(MSG_DEBUG, " bssid=" MACSTR, | ||
| 574 | + MAC2STR(params->bssid)); | ||
| 575 | + } | ||
| 576 | + if (params->ssid) { | ||
| 577 | + wpa_hexdump_ascii(MSG_DEBUG, " ssid", | ||
| 578 | + params->ssid, params->ssid_len); | ||
| 579 | + } | ||
| 580 | + if (params->wpa_ie) { | ||
| 581 | + wpa_hexdump(MSG_DEBUG, " wpa_ie", | ||
| 582 | + params->wpa_ie, params->wpa_ie_len); | ||
| 583 | + } | ||
| 584 | +#endif | ||
| 585 | + | ||
| 586 | + if (wpa_driver_hermes_set_wpa_ie(priv, params->wpa_ie, params->wpa_ie_len) < 0) | ||
| 587 | + return -1; | ||
| 588 | + if (wpa_driver_wext_set_freq(drv->wext, params->freq) < 0) | ||
| 589 | + return -1; | ||
| 590 | + if (wpa_driver_wext_set_ssid(drv->wext, params->ssid, params->ssid_len) < 0) | ||
| 591 | + return -1; | ||
| 592 | +#ifdef UNSUPPORTED_IN_HERMES_DRIVER | ||
| 593 | + if (wpa_driver_wext_hermes_bssid(drv->wext, params->bssid) < 0) | ||
| 594 | + return -1; | ||
| 595 | +#endif | ||
| 596 | + | ||
| 597 | + return 0; | ||
| 598 | +} | ||
| 599 | + | ||
| 600 | + | ||
| 601 | +static int wpa_driver_hermes_get_bssid(void *priv, u8 *bssid) | ||
| 602 | +{ | ||
| 603 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 604 | + return wpa_driver_wext_get_bssid(drv->wext, bssid); | ||
| 605 | +} | ||
| 606 | + | ||
| 607 | + | ||
| 608 | +static int wpa_driver_hermes_get_ssid(void *priv, u8 *ssid) | ||
| 609 | +{ | ||
| 610 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 611 | + return wpa_driver_wext_get_ssid(drv->wext, ssid); | ||
| 612 | +} | ||
| 613 | + | ||
| 614 | + | ||
| 615 | +static int wpa_driver_hermes_scan(void *priv, const u8 *ssid, size_t ssid_len) | ||
| 616 | +{ | ||
| 617 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 618 | + return wpa_driver_wext_scan(drv->wext, ssid, ssid_len); | ||
| 619 | +} | ||
| 620 | + | ||
| 621 | + | ||
| 622 | +static int wpa_driver_hermes_get_scan_results(void *priv, | ||
| 623 | + struct wpa_scan_result *results, | ||
| 624 | + size_t max_size) | ||
| 625 | +{ | ||
| 626 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 627 | + return wpa_driver_wext_get_scan_results(drv->wext, results, max_size); | ||
| 628 | +} | ||
| 629 | + | ||
| 630 | + | ||
| 631 | +static void * wpa_driver_hermes_init(void *ctx, const char *ifname) | ||
| 632 | +{ | ||
| 633 | + struct wpa_driver_hermes_data *drv; | ||
| 634 | + | ||
| 635 | + wpa_printf(MSG_DEBUG, "%s: %s", __FUNCTION__, ifname); | ||
| 636 | + | ||
| 637 | + drv = malloc(sizeof(*drv)); | ||
| 638 | + if (drv == NULL) | ||
| 639 | + return NULL; | ||
| 640 | + memset(drv, 0, sizeof(*drv)); | ||
| 641 | + | ||
| 642 | + /* Initialize wireless context */ | ||
| 643 | + drv->wext = wpa_driver_wext_init(ctx, ifname); | ||
| 644 | + if (drv->wext == NULL) { | ||
| 645 | + perror("no wext context"); | ||
| 646 | + goto no_wext; | ||
| 647 | + } | ||
| 648 | + | ||
| 649 | + drv->ctx = ctx; | ||
| 650 | + strncpy(drv->ifname, ifname, sizeof(drv->ifname)); | ||
| 651 | + | ||
| 652 | + drv->sock = socket(PF_INET, SOCK_DGRAM, 0); | ||
| 653 | + if (drv->sock < 0) { | ||
| 654 | + perror("socket(PF_INET,SOCK_DGRAM)"); | ||
| 655 | + goto no_sock; | ||
| 656 | + } | ||
| 657 | + | ||
| 658 | + _detect_hermes_type(drv); | ||
| 659 | + | ||
| 660 | + return drv; | ||
| 661 | + | ||
| 662 | +no_sock: | ||
| 663 | + wpa_driver_wext_deinit(drv->wext); | ||
| 664 | +no_wext: | ||
| 665 | + free(drv); | ||
| 666 | + return NULL; | ||
| 667 | +} | ||
| 668 | + | ||
| 669 | + | ||
| 670 | +static void wpa_driver_hermes_deinit(void *priv) | ||
| 671 | +{ | ||
| 672 | + struct wpa_driver_hermes_data *drv = priv; | ||
| 673 | + wpa_driver_wext_deinit(drv->wext); | ||
| 674 | + close(drv->sock); | ||
| 675 | + free(drv); | ||
| 676 | +} | ||
| 677 | + | ||
| 678 | + | ||
| 679 | + | ||
| 680 | + | ||
| 681 | +struct wpa_driver_ops wpa_driver_hermes_ops = { | ||
| 682 | + .name = "hermes", | ||
| 683 | + .desc = "wpa_supplicant hermes driver", | ||
| 684 | + | ||
| 685 | + .init = wpa_driver_hermes_init, | ||
| 686 | + .deinit = wpa_driver_hermes_deinit, | ||
| 687 | + | ||
| 688 | + // from old driver_hermes.c: | ||
| 689 | + .get_bssid = wpa_driver_hermes_get_bssid, | ||
| 690 | + .get_ssid = wpa_driver_hermes_get_ssid, | ||
| 691 | + .set_wpa = wpa_driver_hermes_set_wpa, | ||
| 692 | + .set_key = wpa_driver_hermes_set_key, | ||
| 693 | + //.events_init = wpa_driver_wext_events_init, | ||
| 694 | + //.events_deinit = wpa_driver_wext_events_deinit, | ||
| 695 | + .set_countermeasures = wpa_driver_hermes_set_countermeasures, | ||
| 696 | + .set_drop_unencrypted = wpa_driver_hermes_set_drop_unencrypted, | ||
| 697 | + .scan = wpa_driver_hermes_scan, | ||
| 698 | + .get_scan_results = wpa_driver_hermes_get_scan_results, | ||
| 699 | + .deauthenticate = wpa_driver_hermes_deauthenticate, | ||
| 700 | + .disassociate = wpa_driver_hermes_disassociate, | ||
| 701 | + .associate = wpa_driver_hermes_associate, | ||
| 702 | + | ||
| 703 | + | ||
| 704 | +#if 0 | ||
| 705 | + /* Not possible with current Hermes driver: | ||
| 706 | + .set_auth_alg = wpa_driver_hermes_set_auth_alg, */ | ||
| 707 | +#endif | ||
| 708 | +}; | ||
| 709 | --- /dev/null | ||
| 710 | +++ wpa_supplicant-0.4.7/driver_hermes.h | ||
| 711 | @@ -0,0 +1,173 @@ | ||
| 712 | +#ifndef HERMES_DRIVER_H | ||
| 713 | +#define HERMES_DRIVER_H | ||
| 714 | + | ||
| 715 | +typedef unsigned char hcf_8; | ||
| 716 | +typedef unsigned short hcf_16; | ||
| 717 | +typedef unsigned long hcf_32; | ||
| 718 | +typedef hcf_16 hcf_io; | ||
| 719 | +typedef hcf_8 *wci_bufp; | ||
| 720 | + | ||
| 721 | +typedef struct { | ||
| 722 | + hcf_16 len; | ||
| 723 | + hcf_16 typ; | ||
| 724 | + unsigned short * bufp; | ||
| 725 | +} RID_LOG_STRCT; | ||
| 726 | +typedef RID_LOG_STRCT *RID_LOGP; | ||
| 727 | + | ||
| 728 | +typedef struct { | ||
| 729 | + hcf_16 len; | ||
| 730 | + hcf_16 typ; | ||
| 731 | + hcf_16 comp_id; | ||
| 732 | + hcf_16 variant; | ||
| 733 | + hcf_16 version_major; | ||
| 734 | + hcf_16 version_minor; | ||
| 735 | +} CFG_FW_IDENTITY_STRCT; | ||
| 736 | + | ||
| 737 | +typedef struct { | ||
| 738 | + hcf_32 TxUnicastFrames; | ||
| 739 | + hcf_32 TxMulticastFrames; | ||
| 740 | + hcf_32 TxFragments; | ||
| 741 | + hcf_32 TxUnicastOctets; | ||
| 742 | + hcf_32 TxMulticastOctets; | ||
| 743 | + hcf_32 TxDeferredTransmissions; | ||
| 744 | + hcf_32 TxSingleRetryFrames; | ||
| 745 | + hcf_32 TxMultipleRetryFrames; | ||
| 746 | + hcf_32 TxRetryLimitExceeded; | ||
| 747 | + hcf_32 TxDiscards; | ||
| 748 | + hcf_32 RxUnicastFrames; | ||
| 749 | + hcf_32 RxMulticastFrames; | ||
| 750 | + hcf_32 RxFragments; | ||
| 751 | + hcf_32 RxUnicastOctets; | ||
| 752 | + hcf_32 RxMulticastOctets; | ||
| 753 | + hcf_32 RxFCSErrors; | ||
| 754 | + hcf_32 RxDiscardsNoBuffer; | ||
| 755 | + hcf_32 TxDiscardsWrongSA; | ||
| 756 | + hcf_32 RxWEPUndecryptable; | ||
| 757 | + hcf_32 RxMsgInMsgFragments; | ||
| 758 | + hcf_32 RxMsgInBadMsgFragments; | ||
| 759 | + hcf_32 RxDiscardsWEPICVError; | ||
| 760 | + hcf_32 RxDiscardsWEPExcluded; | ||
| 761 | +} CFG_HERMES_TALLIES_STRCT; | ||
| 762 | + | ||
| 763 | +typedef struct { | ||
| 764 | + hcf_32 not_used_NoBufInq; | ||
| 765 | + hcf_32 NoBufInfo; | ||
| 766 | + hcf_32 NoBufMB; | ||
| 767 | + hcf_32 MiscErr; | ||
| 768 | + hcf_32 EngCnt; | ||
| 769 | +} CFG_HCF_TALLIES_STRCT; | ||
| 770 | + | ||
| 771 | +typedef struct { | ||
| 772 | + hcf_io IFB_IOBase; | ||
| 773 | + hcf_16 IFB_IORange; | ||
| 774 | + | ||
| 775 | + hcf_32 IFB_TickIni; | ||
| 776 | + | ||
| 777 | + hcf_16 IFB_Version; | ||
| 778 | + hcf_16 IFB_CardStat; | ||
| 779 | + hcf_16 IFB_TraceLvl; | ||
| 780 | + hcf_16 *IFB_MBp; | ||
| 781 | + hcf_16 IFB_MBSize; | ||
| 782 | + hcf_16 IFB_MBWp; | ||
| 783 | + hcf_16 IFB_MBRp; | ||
| 784 | + hcf_16 IFB_MBInfoLen; | ||
| 785 | + | ||
| 786 | + hcf_16 IFB_DLMode; | ||
| 787 | + hcf_16 IFB_Magic; | ||
| 788 | + hcf_16 IFB_Cmd; | ||
| 789 | + hcf_16 IFB_RxFID; | ||
| 790 | + RID_LOGP IFB_RIDLogp; | ||
| 791 | + hcf_16 IFB_Monitor; | ||
| 792 | + hcf_16 IFB_TxFid; | ||
| 793 | + hcf_16 IFB_RxLen; | ||
| 794 | + hcf_16 IFB_DefunctStat; | ||
| 795 | + | ||
| 796 | + hcf_16 IFB_ErrCmd; | ||
| 797 | + hcf_16 IFB_ErrQualifier; | ||
| 798 | + hcf_16 IFB_lal; | ||
| 799 | + wci_bufp IFB_lap; | ||
| 800 | + hcf_16 IFB_LinkStat; | ||
| 801 | + | ||
| 802 | + void (*IFB_MICRxRtn)( hcf_32*, hcf_32 ); | ||
| 803 | + void (*IFB_MICTxRtn)( hcf_32*, hcf_32 ); | ||
| 804 | + hcf_16 IFB_rx_tlen; | ||
| 805 | + hcf_16 IFB_tx_tlen; | ||
| 806 | + hcf_8 IFB_rx_32[4]; | ||
| 807 | + hcf_8 IFB_tx_32[4]; | ||
| 808 | + hcf_16 IFB_RscInd; | ||
| 809 | + hcf_16 IFB_MB_FID; | ||
| 810 | + hcf_16 IFB_DLTarget[2]; | ||
| 811 | + | ||
| 812 | + hcf_16 IFB_DLPage; | ||
| 813 | + hcf_16 IFB_DLOffset; | ||
| 814 | + hcf_16 IFB_DLLen; | ||
| 815 | + | ||
| 816 | + hcf_16 volatile IFB_IntOffCnt; | ||
| 817 | + hcf_16 IFB_IntEnMask; | ||
| 818 | + | ||
| 819 | + CFG_FW_IDENTITY_STRCT IFB_FWIdentity; | ||
| 820 | + hcf_16 IFB_Tally; | ||
| 821 | + hcf_16 IFB_TallyTyp; | ||
| 822 | + | ||
| 823 | + CFG_HERMES_TALLIES_STRCT IFB_NIC_Tallies; | ||
| 824 | + CFG_HCF_TALLIES_STRCT IFB_HCF_Tallies; | ||
| 825 | + | ||
| 826 | + void *IFB_MSFSup; | ||
| 827 | +} IFB_STRCT; | ||
| 828 | + | ||
| 829 | +typedef IFB_STRCT* IFBP; | ||
| 830 | + | ||
| 831 | +struct uilreq | ||
| 832 | +{ | ||
| 833 | + union | ||
| 834 | + { | ||
| 835 | + char ifrn_name[16]; | ||
| 836 | + } ifr_ifrn; | ||
| 837 | + | ||
| 838 | + IFBP hcfCtx; | ||
| 839 | + __u8 command; | ||
| 840 | + __u8 result; | ||
| 841 | + __u16 len; | ||
| 842 | + void *data; | ||
| 843 | +}; | ||
| 844 | + | ||
| 845 | +typedef struct | ||
| 846 | +{ | ||
| 847 | + hcf_16 len; | ||
| 848 | + hcf_16 typ; | ||
| 849 | + union | ||
| 850 | + { | ||
| 851 | + hcf_8 u8[(512 - (sizeof(hcf_16) * 2)) / sizeof(hcf_8)]; | ||
| 852 | + hcf_16 u16[(512 - (sizeof(hcf_16) * 2)) / sizeof(hcf_16)]; | ||
| 853 | + hcf_32 u32[(512 - (sizeof(hcf_16) * 2)) / sizeof(hcf_32)]; | ||
| 854 | + } u; | ||
| 855 | +} ltv_t; | ||
| 856 | + | ||
| 857 | + | ||
| 858 | +#define UIL_FUN_CONNECT 0x00 | ||
| 859 | +#define UIL_FUN_DISCONNECT 0x01 | ||
| 860 | +#define UIL_FUN_GET_INFO 0x04 | ||
| 861 | +#define UIL_FUN_PUT_INFO 0x05 | ||
| 862 | + | ||
| 863 | +#define GENERIC_INFO_ELEM 0xdd | ||
| 864 | +#define RSN_INFO_ELEM 0x30 | ||
| 865 | + | ||
| 866 | +#define CFG_DRIVER_ENABLE 0x0902 | ||
| 867 | +#define CFG_CNF_ENCRYPTION 0xFC20 | ||
| 868 | +#define CFG_ADD_TKIP_DEFAULT_KEY 0xFCB4 | ||
| 869 | +#define CFG_SET_WPA_AUTH_KEY_MGMT_SUITE 0xFCB5 | ||
| 870 | +#define CFG_REMOVE_TKIP_DEFAULT_KEY 0xFCB6 | ||
| 871 | +#define CFG_ADD_TKIP_MAPPED_KEY 0xFCB7 | ||
| 872 | +#define CFG_REMOVE_TKIP_MAPPED_KEY 0xFCB8 | ||
| 873 | +#define CFG_FW_IDENTITY 0xFD20 | ||
| 874 | +#define CFG_CNF_EXCL_UNENCRYPTED 0xFC22 | ||
| 875 | + | ||
| 876 | +#define HCF_SUCCESS 0x00 | ||
| 877 | +#define UIL_SUCCESS 0x00 | ||
| 878 | + | ||
| 879 | +#define COMP_ID_FW_STA 31 | ||
| 880 | +#define COMP_ID_FW_AP 32 | ||
| 881 | + | ||
| 882 | +#define WVLAN2_IOCTL_UIL SIOCDEVPRIVATE | ||
| 883 | + | ||
| 884 | +#endif | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/driver-zd1211.patch b/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/driver-zd1211.patch deleted file mode 100644 index 3c731c1256..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/driver-zd1211.patch +++ /dev/null | |||
| @@ -1,535 +0,0 @@ | |||
| 1 | diff -Nur wpa_supplicant-0.4.7/defconfig wpa_supplicant-0.4.7.new/defconfig | ||
| 2 | --- wpa_supplicant-0.4.7/defconfig 2005-09-24 20:30:43.000000000 +0200 | ||
| 3 | +++ wpa_supplicant-0.4.7.new/defconfig 2005-12-26 19:18:14.000000000 +0100 | ||
| 4 | @@ -68,6 +68,9 @@ | ||
| 5 | # Driver interface for Intel ipw2100/2200 driver | ||
| 6 | #CONFIG_DRIVER_IPW=y | ||
| 7 | |||
| 8 | +# Driver interface for Zydas zd1211 driver | ||
| 9 | +#CONFIG_DRIVER_ZD1211=y | ||
| 10 | + | ||
| 11 | # Driver interface for generic Linux wireless extensions | ||
| 12 | CONFIG_DRIVER_WEXT=y | ||
| 13 | |||
| 14 | diff -Nur wpa_supplicant-0.4.7/drivers.c wpa_supplicant-0.4.7.new/drivers.c | ||
| 15 | --- wpa_supplicant-0.4.7/drivers.c 2005-02-20 01:15:54.000000000 +0100 | ||
| 16 | +++ wpa_supplicant-0.4.7.new/drivers.c 2005-12-26 19:19:16.000000000 +0100 | ||
| 17 | @@ -55,6 +55,9 @@ | ||
| 18 | #ifdef CONFIG_DRIVER_TEST | ||
| 19 | extern struct wpa_driver_ops wpa_driver_test_ops; /* driver_test.c */ | ||
| 20 | #endif /* CONFIG_DRIVER_TEST */ | ||
| 21 | +#ifdef CONFIG_DRIVER_ZD1211 | ||
| 22 | +extern struct wpa_driver_ops wpa_driver_zd1211_ops; /* driver_zd1211.c */ | ||
| 23 | +#endif /* CONFIG_DRIVER_ZD1211 */ | ||
| 24 | |||
| 25 | |||
| 26 | struct wpa_driver_ops *wpa_supplicant_drivers[] = | ||
| 27 | @@ -98,5 +101,8 @@ | ||
| 28 | #ifdef CONFIG_DRIVER_TEST | ||
| 29 | &wpa_driver_test_ops, | ||
| 30 | #endif /* CONFIG_DRIVER_TEST */ | ||
| 31 | +#ifdef CONFIG_DRIVER_ZD1211 | ||
| 32 | + &wpa_driver_zd1211_ops, | ||
| 33 | +#endif /* CONFIG_DRIVER_ZD1211 */ | ||
| 34 | NULL | ||
| 35 | }; | ||
| 36 | diff -Nur wpa_supplicant-0.4.7/driver_zd1211.c wpa_supplicant-0.4.7.new/driver_zd1211.c | ||
| 37 | --- wpa_supplicant-0.4.7/driver_zd1211.c 1970-01-01 01:00:00.000000000 +0100 | ||
| 38 | +++ wpa_supplicant-0.4.7.new/driver_zd1211.c 2005-12-27 16:28:46.000000000 +0100 | ||
| 39 | @@ -0,0 +1,408 @@ | ||
| 40 | +#include <stdlib.h> | ||
| 41 | +#include <stdio.h> | ||
| 42 | +#include <unistd.h> | ||
| 43 | +#include <string.h> | ||
| 44 | +#include <sys/ioctl.h> | ||
| 45 | +#include <errno.h> | ||
| 46 | + | ||
| 47 | +#include "common.h" | ||
| 48 | +#include "driver.h" | ||
| 49 | +#include "driver_wext.h" | ||
| 50 | +#include "eloop.h" | ||
| 51 | +#include "wireless_copy.h" | ||
| 52 | +#include "wpa_supplicant.h" | ||
| 53 | + | ||
| 54 | +#include "zd1211_common.h" | ||
| 55 | + | ||
| 56 | + | ||
| 57 | +struct wpa_driver_zd1211_data { | ||
| 58 | + void *ctx; | ||
| 59 | + void *wext; /* private data for driver_wext */ | ||
| 60 | + char ifname[IFNAMSIZ + 1]; | ||
| 61 | + int sock; | ||
| 62 | +}; | ||
| 63 | + | ||
| 64 | + | ||
| 65 | +static int zd1211_ioctl(struct wpa_driver_zd1211_data *zd1211_drv, struct zd1211_wlan_param *param, int len, int show_err) { | ||
| 66 | + struct iwreq iwr; | ||
| 67 | + | ||
| 68 | + memset(&iwr, 0, sizeof(iwr)); | ||
| 69 | + strncpy(iwr.ifr_name, zd1211_drv->ifname, IFNAMSIZ); | ||
| 70 | + iwr.u.data.pointer = (caddr_t) param; | ||
| 71 | + iwr.u.data.length = len; | ||
| 72 | + | ||
| 73 | + if (ioctl(zd1211_drv->sock, ZD_IOCTL_WPA, &iwr) < 0) { | ||
| 74 | + int ret; | ||
| 75 | + | ||
| 76 | + ret = errno; | ||
| 77 | + if (show_err) | ||
| 78 | + perror("ioctl[ZD_IOCTL_WPA]"); | ||
| 79 | + return ret; | ||
| 80 | + } | ||
| 81 | + | ||
| 82 | + return 0; | ||
| 83 | +} | ||
| 84 | + | ||
| 85 | + | ||
| 86 | +static int zd1211_set_param(struct wpa_driver_zd1211_data *zd1211_drv, int op, int arg, int show_err) { | ||
| 87 | + struct iwreq iwr; | ||
| 88 | + int *i, ret = 0; | ||
| 89 | + | ||
| 90 | + memset(&iwr, 0, sizeof(iwr)); | ||
| 91 | + strncpy(iwr.ifr_name, zd1211_drv->ifname, IFNAMSIZ); | ||
| 92 | + i = (int *) iwr.u.name; | ||
| 93 | + *i++ = op; | ||
| 94 | + *i++ = arg; | ||
| 95 | + | ||
| 96 | + if (ioctl(zd1211_drv->sock, ZD_IOCTL_PARAM, &iwr) < 0) { | ||
| 97 | + perror("ioctl[ZD_IOCTL_PARAM]"); | ||
| 98 | + ret = -1; | ||
| 99 | + } | ||
| 100 | + | ||
| 101 | + return ret; | ||
| 102 | +} | ||
| 103 | + | ||
| 104 | + | ||
| 105 | +static int wpa_driver_zd1211_get_scan_results(void *priv, struct wpa_scan_result *results, size_t max_size) { | ||
| 106 | + struct wpa_driver_zd1211_data *zd1211_drv; | ||
| 107 | + | ||
| 108 | + zd1211_drv = priv; | ||
| 109 | + return wpa_driver_wext_get_scan_results(zd1211_drv->wext, results, max_size); | ||
| 110 | +} | ||
| 111 | + | ||
| 112 | + | ||
| 113 | +static int wpa_driver_zd1211_get_bssid(void *priv, u8 *bssid) { | ||
| 114 | + struct wpa_driver_zd1211_data *zd1211_drv; | ||
| 115 | + | ||
| 116 | + zd1211_drv = priv; | ||
| 117 | + return wpa_driver_wext_get_bssid(zd1211_drv->wext, bssid); | ||
| 118 | +} | ||
| 119 | + | ||
| 120 | + | ||
| 121 | +static int wpa_driver_zd1211_get_ssid(void *priv, u8 *ssid) { | ||
| 122 | + struct wpa_driver_zd1211_data *zd1211_drv; | ||
| 123 | + | ||
| 124 | + zd1211_drv = priv; | ||
| 125 | + return wpa_driver_wext_get_ssid(zd1211_drv->wext, ssid); | ||
| 126 | +} | ||
| 127 | + | ||
| 128 | + | ||
| 129 | +static int wpa_driver_zd1211_set_auth_alg(void *priv, int auth_alg) { | ||
| 130 | + struct wpa_driver_zd1211_data *zd1211_drv = priv; | ||
| 131 | + int algs = 0; | ||
| 132 | + | ||
| 133 | + if (auth_alg & AUTH_ALG_OPEN_SYSTEM) | ||
| 134 | + algs = 0; | ||
| 135 | + if (auth_alg & AUTH_ALG_SHARED_KEY) | ||
| 136 | + algs = 1; | ||
| 137 | + | ||
| 138 | + return zd1211_set_param(zd1211_drv, ZD_PARAM_AUTH_ALGS, algs, 1); | ||
| 139 | +} | ||
| 140 | + | ||
| 141 | + | ||
| 142 | +static int wpa_driver_zd1211_set_countermeasures(void *priv, int enabled) { | ||
| 143 | + struct wpa_driver_zd1211_data *zd1211_drv = priv; | ||
| 144 | + | ||
| 145 | + /* Enable the countermeasure */ | ||
| 146 | + wpa_printf(MSG_DEBUG, "%s: enabled=%d", __FUNCTION__, enabled); | ||
| 147 | + return zd1211_set_param(zd1211_drv, ZD_PARAM_COUNTERMEASURES, enabled, 1); | ||
| 148 | +} | ||
| 149 | + | ||
| 150 | + | ||
| 151 | +static int wpa_driver_zd1211_set_drop_unencrypted(void *priv, int enabled) { | ||
| 152 | + struct wpa_driver_zd1211_data *zd1211_drv = priv; | ||
| 153 | + | ||
| 154 | + /* Enable the countermeasure */ | ||
| 155 | + wpa_printf(MSG_DEBUG, "%s: enabled=%d", __FUNCTION__, enabled); | ||
| 156 | + return zd1211_set_param(zd1211_drv, ZD_PARAM_DROPUNENCRYPTED, enabled, 1); | ||
| 157 | +} | ||
| 158 | + | ||
| 159 | + | ||
| 160 | +static int wpa_driver_zd1211_set_key(void *priv, wpa_alg alg, | ||
| 161 | + const u8 *addr, int key_idx, | ||
| 162 | + int set_tx, const u8 *seq, size_t seq_len, | ||
| 163 | + const u8 *key, size_t key_len) { | ||
| 164 | + struct wpa_driver_zd1211_data *zd1211_drv = priv; | ||
| 165 | + struct zd1211_wlan_param *param; | ||
| 166 | + u8 *buf; | ||
| 167 | + size_t blen; | ||
| 168 | + int ret = 0; | ||
| 169 | + char *alg_name; | ||
| 170 | + | ||
| 171 | + switch (alg) { | ||
| 172 | + case WPA_ALG_NONE: | ||
| 173 | + alg_name = "NONE"; | ||
| 174 | + break; | ||
| 175 | + case WPA_ALG_WEP: | ||
| 176 | + alg_name = "WEP"; | ||
| 177 | + break; | ||
| 178 | + case WPA_ALG_TKIP: | ||
| 179 | + alg_name = "TKIP"; | ||
| 180 | + break; | ||
| 181 | + case WPA_ALG_CCMP: | ||
| 182 | + alg_name = "CCMP"; | ||
| 183 | + break; | ||
| 184 | + default: | ||
| 185 | + return -1; | ||
| 186 | + } | ||
| 187 | + | ||
| 188 | + wpa_printf(MSG_DEBUG, "%s: alg=%s key_idx=%d set_tx=%d seq_len=%d " | ||
| 189 | + "key_len=%d", __FUNCTION__, alg_name, key_idx, set_tx, | ||
| 190 | + seq_len, key_len); | ||
| 191 | + | ||
| 192 | + if (seq_len > 8) | ||
| 193 | + return -2; | ||
| 194 | + | ||
| 195 | + blen = sizeof(*param) + key_len; | ||
| 196 | + buf = malloc(blen); | ||
| 197 | + if (buf == NULL) | ||
| 198 | + return -1; | ||
| 199 | + memset(buf, 0, blen); | ||
| 200 | + | ||
| 201 | + param = (struct zd1211_wlan_param *) buf; | ||
| 202 | + param->cmd = ZD_CMD_SET_ENCRYPT_KEY; | ||
| 203 | + /* TODO: In theory, STA in client mode can use five keys; four default | ||
| 204 | + * keys for receiving (with keyidx 0..3) and one individual key for | ||
| 205 | + * both transmitting and receiving (keyidx 0) _unicast_ packets. Now, | ||
| 206 | + * keyidx 0 is reserved for this unicast use and default keys can only | ||
| 207 | + * use keyidx 1..3 (i.e., default key with keyidx 0 is not supported). | ||
| 208 | + * This should be fine for more or less all cases, but for completeness | ||
| 209 | + * sake, the driver could be enhanced to support the missing key. */ | ||
| 210 | +#if 0 | ||
| 211 | + if (addr == NULL) | ||
| 212 | + memset(param->sta_addr, 0xff, ETH_ALEN); | ||
| 213 | + else | ||
| 214 | + memcpy(param->sta_addr, addr, ETH_ALEN); | ||
| 215 | +#else | ||
| 216 | + memset(param->sta_addr, 0xff, ETH_ALEN); | ||
| 217 | +#endif | ||
| 218 | + strncpy(param->u.crypt.alg, alg_name, ZD_CRYPT_ALG_NAME_LEN); | ||
| 219 | + param->u.crypt.flags = set_tx ? ZD_FLAG_SET_TX_KEY : 0; | ||
| 220 | + param->u.crypt.idx = key_idx; | ||
| 221 | + memcpy(param->u.crypt.seq, seq, seq_len); | ||
| 222 | + param->u.crypt.key_len = key_len; | ||
| 223 | + memcpy((u8 *) param->u.crypt.key, key, key_len); | ||
| 224 | + | ||
| 225 | + /* Dump key context */ | ||
| 226 | + if(alg == WPA_ALG_TKIP) { | ||
| 227 | + int ii; | ||
| 228 | + | ||
| 229 | + wpa_printf(MSG_DEBUG, "Key Context:"); | ||
| 230 | + for(ii = 0; ii < key_len; ) { | ||
| 231 | + printf("0x%02x ", key[ii]); | ||
| 232 | + | ||
| 233 | + if((++ii % 16) == 0) | ||
| 234 | + printf("\n"); | ||
| 235 | + } | ||
| 236 | + | ||
| 237 | + printf("\n"); | ||
| 238 | + } | ||
| 239 | + | ||
| 240 | + if (zd1211_ioctl(zd1211_drv, param, blen, 1)) { | ||
| 241 | + wpa_printf(MSG_WARNING, "Failed to set encryption."); | ||
| 242 | + //show_set_key_error(param); | ||
| 243 | + ret = -1; | ||
| 244 | + } | ||
| 245 | + free(buf); | ||
| 246 | + | ||
| 247 | + return ret; | ||
| 248 | +} | ||
| 249 | + | ||
| 250 | + | ||
| 251 | +static int wpa_driver_zd1211_set_wpa_ie(struct wpa_driver_zd1211_data *zd1211_drv, const u8 *wpa_ie, size_t wpa_ie_len) { | ||
| 252 | + int res; | ||
| 253 | + struct zd1211_wlan_param *param; | ||
| 254 | + size_t blen = ZD_GENERIC_ELEMENT_HDR_LEN + wpa_ie_len; | ||
| 255 | + | ||
| 256 | + if (blen < sizeof(*param)) | ||
| 257 | + blen = sizeof(*param); | ||
| 258 | + | ||
| 259 | + param = (struct zd1211_wlan_param *) malloc(blen); | ||
| 260 | + if (param == NULL) | ||
| 261 | + return -1; | ||
| 262 | + | ||
| 263 | + memset(param, 0, blen); | ||
| 264 | + param->cmd = ZD_CMD_SET_GENERIC_ELEMENT; | ||
| 265 | + param->u.generic_elem.len = wpa_ie_len; | ||
| 266 | + memcpy(param->u.generic_elem.data, wpa_ie, wpa_ie_len); | ||
| 267 | + res = zd1211_ioctl(zd1211_drv, param, blen, 1); | ||
| 268 | + | ||
| 269 | + free(param); | ||
| 270 | + | ||
| 271 | + return res; | ||
| 272 | +} | ||
| 273 | + | ||
| 274 | + | ||
| 275 | +static int wpa_driver_zd1211_set_wpa(void *priv, int enabled) { | ||
| 276 | + struct wpa_driver_zd1211_data *zd1211_drv = priv; | ||
| 277 | + int ret = 0; | ||
| 278 | + | ||
| 279 | + wpa_printf(MSG_DEBUG, "%s: enabled=%d", __FUNCTION__, enabled); | ||
| 280 | + | ||
| 281 | + if (!enabled && wpa_driver_zd1211_set_wpa_ie(zd1211_drv, NULL, 0) < 0) | ||
| 282 | + ret = -1; | ||
| 283 | + if (zd1211_set_param(zd1211_drv, ZD_PARAM_ROAMING, enabled, 1) < 0) | ||
| 284 | + ret = -1; | ||
| 285 | + if (zd1211_set_param(zd1211_drv, ZD_PARAM_PRIVACY, enabled, 1) < 0) | ||
| 286 | + ret = -1; | ||
| 287 | + if (zd1211_set_param(zd1211_drv, ZD_PARAM_WPA, enabled, 1) < 0) | ||
| 288 | + ret = -1; | ||
| 289 | + | ||
| 290 | + return ret; | ||
| 291 | +} | ||
| 292 | + | ||
| 293 | + | ||
| 294 | +static int wpa_driver_zd1211_associate(void *priv, struct wpa_driver_associate_params *params) { | ||
| 295 | + struct wpa_driver_zd1211_data *zd1211_drv = priv; | ||
| 296 | + int ret = 0; | ||
| 297 | + | ||
| 298 | + wpa_printf(MSG_DEBUG, "%s", __FUNCTION__); | ||
| 299 | + | ||
| 300 | + /* Because there might be the case, two or more APs with the same | ||
| 301 | + * SSID, in order to identify them, we need to set the BSSID. */ | ||
| 302 | + if (wpa_driver_zd1211_set_wpa_ie(zd1211_drv, params->wpa_ie, params->wpa_ie_len) < 0) | ||
| 303 | + ret = -1; | ||
| 304 | + if (wpa_driver_wext_set_ssid(zd1211_drv->wext, params->ssid, params->ssid_len) < 0) | ||
| 305 | + ret = -1; | ||
| 306 | + | ||
| 307 | + // Mark for test | ||
| 308 | + //if (wpa_driver_wext_set_bssid(ifname, bssid) < 0) | ||
| 309 | + // ret = -1; | ||
| 310 | + | ||
| 311 | +#if 0 | ||
| 312 | + /* Allow unencrypted EAPOL messages even if pairwise keys are set when | ||
| 313 | + * not using WPA. IEEE 802.1X specifies that these frames are not | ||
| 314 | + * encrypted, but WPA encrypts them when pairwise keys are in use. */ | ||
| 315 | + if (key_mgmt_suite == KEY_MGMT_802_1X || | ||
| 316 | + key_mgmt_suite == KEY_MGMT_PSK) | ||
| 317 | + allow_unencrypted_eapol = 0; | ||
| 318 | + else | ||
| 319 | + allow_unencrypted_eapol = 1; | ||
| 320 | + | ||
| 321 | + if (prism2param(ifname, PRISM2_PARAM_IEEE_802_1X, | ||
| 322 | + allow_unencrypted_eapol) < 0) { | ||
| 323 | + wpa_printf(MSG_DEBUG, "hostap: Failed to configure " | ||
| 324 | + "ieee_802_1x param"); | ||
| 325 | + /* Ignore this error.. driver_hostap.c can also be used with | ||
| 326 | + * other drivers that do not support this prism2_param. */ | ||
| 327 | + } | ||
| 328 | +#endif | ||
| 329 | + | ||
| 330 | + return ret; | ||
| 331 | +} | ||
| 332 | + | ||
| 333 | + | ||
| 334 | +static int wpa_driver_zd1211_deauthenticate(void *priv, const u8 *addr, int reason_code) { | ||
| 335 | + struct zd1211_wlan_param *param; | ||
| 336 | + struct wpa_driver_zd1211_data *zd1211_drv = priv; | ||
| 337 | + int blen; | ||
| 338 | + int ret; | ||
| 339 | + | ||
| 340 | + wpa_printf(MSG_DEBUG, "%s", __FUNCTION__); | ||
| 341 | + | ||
| 342 | + blen = sizeof(*param); | ||
| 343 | + param = (struct zd1211_wlan_param *) malloc(blen); | ||
| 344 | + if (param == NULL) | ||
| 345 | + return -1; | ||
| 346 | + | ||
| 347 | + memset(param, 0, blen); | ||
| 348 | + param->cmd = ZD_CMD_SET_MLME; | ||
| 349 | + param->u.mlme.cmd = MLME_STA_DEAUTH; | ||
| 350 | + param->u.mlme.reason_code = reason_code; | ||
| 351 | + memcpy(param->sta_addr, addr, ETH_ALEN); | ||
| 352 | + ret = zd1211_ioctl(zd1211_drv, param, blen, 1); | ||
| 353 | + usleep(100000); | ||
| 354 | + free(param); | ||
| 355 | + return ret; | ||
| 356 | +} | ||
| 357 | + | ||
| 358 | + | ||
| 359 | +static int wpa_driver_zd1211_disassociate(void *priv, const u8 *addr, int reason_code) { | ||
| 360 | + struct zd1211_wlan_param *param; | ||
| 361 | + struct wpa_driver_zd1211_data *zd1211_drv = priv; | ||
| 362 | + int blen; | ||
| 363 | + int ret; | ||
| 364 | + | ||
| 365 | + wpa_printf(MSG_DEBUG, "%s", __FUNCTION__); | ||
| 366 | + | ||
| 367 | + blen = sizeof(*param); | ||
| 368 | + param = (struct zd1211_wlan_param *) malloc(blen); | ||
| 369 | + if (param == NULL) | ||
| 370 | + return -1; | ||
| 371 | + | ||
| 372 | + memset(param, 0, blen); | ||
| 373 | + param->cmd = ZD_CMD_SET_MLME; | ||
| 374 | + param->u.mlme.cmd = MLME_STA_DISASSOC; | ||
| 375 | + param->u.mlme.reason_code = reason_code; | ||
| 376 | + memcpy(param->sta_addr, addr, ETH_ALEN); | ||
| 377 | + ret = zd1211_ioctl(zd1211_drv, param, blen, 1); | ||
| 378 | + free(param); | ||
| 379 | + return ret; | ||
| 380 | +} | ||
| 381 | + | ||
| 382 | + | ||
| 383 | +static int wpa_driver_zd1211_scan(void *priv, const u8 *ssid, size_t ssid_len) { | ||
| 384 | + struct wpa_driver_zd1211_data *zd1211_drv; | ||
| 385 | + | ||
| 386 | + zd1211_drv = priv; | ||
| 387 | + return wpa_driver_wext_scan(zd1211_drv->wext, ssid, ssid_len); | ||
| 388 | +} | ||
| 389 | + | ||
| 390 | + | ||
| 391 | +static void * wpa_driver_zd1211_init(void *ctx, const char *ifname) { | ||
| 392 | + struct wpa_driver_zd1211_data *zd1211_drv; | ||
| 393 | + | ||
| 394 | + zd1211_drv = malloc(sizeof(*zd1211_drv)); | ||
| 395 | + if (zd1211_drv == NULL) | ||
| 396 | + return NULL; | ||
| 397 | + memset(zd1211_drv, 0, sizeof(*zd1211_drv)); | ||
| 398 | + | ||
| 399 | + zd1211_drv->wext = wpa_driver_wext_init(ctx, ifname); | ||
| 400 | + if (zd1211_drv->wext == NULL) | ||
| 401 | + goto exit_no_wext; | ||
| 402 | + | ||
| 403 | + zd1211_drv->ctx = ctx; | ||
| 404 | + strncpy(zd1211_drv->ifname, ifname, sizeof(zd1211_drv->ifname)); | ||
| 405 | + | ||
| 406 | + zd1211_drv->sock = socket(PF_INET, SOCK_DGRAM, 0); | ||
| 407 | + if (zd1211_drv->sock < 0) | ||
| 408 | + goto exit_no_socket; | ||
| 409 | + | ||
| 410 | + return zd1211_drv; | ||
| 411 | + | ||
| 412 | +exit_no_socket: | ||
| 413 | + wpa_driver_wext_deinit(zd1211_drv->wext); | ||
| 414 | +exit_no_wext: | ||
| 415 | + free(zd1211_drv); | ||
| 416 | + return NULL; | ||
| 417 | +} | ||
| 418 | + | ||
| 419 | + | ||
| 420 | +static void wpa_driver_zd1211_deinit(void *ctx) { | ||
| 421 | + struct wpa_driver_zd1211_data *zd1211_drv = ctx; | ||
| 422 | + | ||
| 423 | + wpa_driver_wext_deinit(zd1211_drv->wext); | ||
| 424 | + close(zd1211_drv->sock); | ||
| 425 | + free(zd1211_drv); | ||
| 426 | +} | ||
| 427 | + | ||
| 428 | + | ||
| 429 | +struct wpa_driver_ops wpa_driver_zd1211_ops = { | ||
| 430 | + .name = "zd1211", | ||
| 431 | + .desc = "Zydas zd1211 drivers", | ||
| 432 | + .init = wpa_driver_zd1211_init, | ||
| 433 | + .deinit = wpa_driver_zd1211_deinit, | ||
| 434 | + .associate = wpa_driver_zd1211_associate, | ||
| 435 | + .deauthenticate = wpa_driver_zd1211_deauthenticate, | ||
| 436 | + .disassociate = wpa_driver_zd1211_disassociate, | ||
| 437 | + .get_bssid = wpa_driver_zd1211_get_bssid, | ||
| 438 | + .get_scan_results = wpa_driver_zd1211_get_scan_results, | ||
| 439 | + .get_ssid = wpa_driver_zd1211_get_ssid, | ||
| 440 | +// .get_capa = wpa_driver_zd1211_get_capa, | ||
| 441 | + .scan = wpa_driver_zd1211_scan, | ||
| 442 | + .set_auth_alg = wpa_driver_zd1211_set_auth_alg, | ||
| 443 | + .set_countermeasures = wpa_driver_zd1211_set_countermeasures, | ||
| 444 | + .set_drop_unencrypted = wpa_driver_zd1211_set_drop_unencrypted, | ||
| 445 | + .set_key = wpa_driver_zd1211_set_key, | ||
| 446 | + .set_wpa = wpa_driver_zd1211_set_wpa, | ||
| 447 | +}; | ||
| 448 | diff -Nur wpa_supplicant-0.4.7/Makefile wpa_supplicant-0.4.7.new/Makefile | ||
| 449 | --- wpa_supplicant-0.4.7/Makefile 2005-11-21 02:42:12.000000000 +0100 | ||
| 450 | +++ wpa_supplicant-0.4.7.new/Makefile 2005-12-26 19:17:14.000000000 +0100 | ||
| 451 | @@ -107,6 +107,12 @@ | ||
| 452 | CONFIG_WIRELESS_EXTENSION=y | ||
| 453 | endif | ||
| 454 | |||
| 455 | +ifdef CONFIG_DRIVER_ZD1211 | ||
| 456 | +CFLAGS += -DCONFIG_DRIVER_ZD1211 | ||
| 457 | +OBJS_d += driver_zd1211.o | ||
| 458 | +CONFIG_WIRELESS_EXTENSION=y | ||
| 459 | +endif | ||
| 460 | + | ||
| 461 | ifdef CONFIG_DRIVER_BSD | ||
| 462 | CFLAGS += -DCONFIG_DRIVER_BSD | ||
| 463 | OBJS_d += driver_bsd.o | ||
| 464 | diff -Nur wpa_supplicant-0.4.7/zd1211_common.h wpa_supplicant-0.4.7.new/zd1211_common.h | ||
| 465 | --- wpa_supplicant-0.4.7/zd1211_common.h 1970-01-01 01:00:00.000000000 +0100 | ||
| 466 | +++ wpa_supplicant-0.4.7.new/zd1211_common.h 2005-12-27 16:00:36.000000000 +0100 | ||
| 467 | @@ -0,0 +1,68 @@ | ||
| 468 | +#ifndef ZD1211_COMMON_H | ||
| 469 | +#define ZD1211_COMMON_H | ||
| 470 | + | ||
| 471 | + | ||
| 472 | +#define ZD_IOCTL_WPA (SIOCDEVPRIVATE + 1) | ||
| 473 | +#define ZD_IOCTL_PARAM (SIOCDEVPRIVATE + 2) | ||
| 474 | + | ||
| 475 | +#define ZD_PARAM_ROAMING 0x0001 | ||
| 476 | +#define ZD_PARAM_PRIVACY 0x0002 | ||
| 477 | +#define ZD_PARAM_WPA 0x0003 | ||
| 478 | +#define ZD_PARAM_COUNTERMEASURES 0x0004 | ||
| 479 | +#define ZD_PARAM_DROPUNENCRYPTED 0x0005 | ||
| 480 | +#define ZD_PARAM_AUTH_ALGS 0x0006 | ||
| 481 | + | ||
| 482 | +#define ZD_CMD_SET_ENCRYPT_KEY 0x0001 | ||
| 483 | +#define ZD_CMD_SET_MLME 0x0002 | ||
| 484 | +//#define ZD_CMD_SCAN_REQ 0x0003 | ||
| 485 | +#define ZD_CMD_SET_GENERIC_ELEMENT 0x0004 | ||
| 486 | + | ||
| 487 | +#define ZD_FLAG_SET_TX_KEY 0x0001 | ||
| 488 | + | ||
| 489 | +#define ZD_GENERIC_ELEMENT_HDR_LEN \ | ||
| 490 | +((int) (&((struct zd1211_wlan_param *) 0)->u.generic_elem.data)) | ||
| 491 | + | ||
| 492 | +#define ZD_CRYPT_ALG_NAME_LEN 16 | ||
| 493 | +#define ZD_MAX_KEY_SIZE 32 | ||
| 494 | +#define ZD_MAX_GENERIC_SIZE 64 | ||
| 495 | + | ||
| 496 | +/* structure definition */ | ||
| 497 | + | ||
| 498 | +struct zd1211_wlan_param { | ||
| 499 | + u32 cmd; | ||
| 500 | + u8 sta_addr[ETH_ALEN]; | ||
| 501 | + union { | ||
| 502 | + struct { | ||
| 503 | + u8 alg[ZD_CRYPT_ALG_NAME_LEN]; | ||
| 504 | + u32 flags; | ||
| 505 | + u32 err; | ||
| 506 | + u8 idx; | ||
| 507 | + u8 seq[8]; /* sequence counter (set: RX, get: TX) */ | ||
| 508 | + u16 key_len; | ||
| 509 | + u8 key[ZD_MAX_KEY_SIZE]; | ||
| 510 | + } crypt; | ||
| 511 | +/* | ||
| 512 | + struct { | ||
| 513 | + u32 flags_and; | ||
| 514 | + u32 flags_or; | ||
| 515 | + } set_flags_sta; | ||
| 516 | +*/ | ||
| 517 | + struct { | ||
| 518 | + u8 len; | ||
| 519 | + u8 data[ZD_MAX_GENERIC_SIZE]; | ||
| 520 | + } generic_elem; | ||
| 521 | + struct { | ||
| 522 | +#define MLME_STA_DEAUTH 0 | ||
| 523 | +#define MLME_STA_DISASSOC 1 | ||
| 524 | + u16 cmd; | ||
| 525 | + u16 reason_code; | ||
| 526 | + } mlme; | ||
| 527 | + struct { | ||
| 528 | + u8 ssid_len; | ||
| 529 | + u8 ssid[32]; | ||
| 530 | + } scan_req; | ||
| 531 | + } u; | ||
| 532 | +}; | ||
| 533 | + | ||
| 534 | + | ||
| 535 | +#endif | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/madwifi-bsd-fix.diff b/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/madwifi-bsd-fix.diff deleted file mode 100644 index 974eb39627..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/madwifi-bsd-fix.diff +++ /dev/null | |||
| @@ -1,12 +0,0 @@ | |||
| 1 | --- driver_madwifi.c.orig 2005-03-18 15:12:53.392793216 +0100 | ||
| 2 | +++ driver_madwifi.c 2005-03-18 15:13:09.246383104 +0100 | ||
| 3 | @@ -25,7 +25,8 @@ | ||
| 4 | #include "eloop.h" | ||
| 5 | #include "wpa_supplicant.h" | ||
| 6 | |||
| 7 | -#include <include/compat.h> | ||
| 8 | +#include <net80211/compat.h> | ||
| 9 | +#include <net80211/_ieee80211.h> | ||
| 10 | #include <net80211/ieee80211.h> | ||
| 11 | #include <net80211/ieee80211_crypto.h> | ||
| 12 | #include <net80211/ieee80211_ioctl.h> | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/wpa_supplicant.conf b/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/wpa_supplicant.conf deleted file mode 100644 index da407b5ef3..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant-0.4.7/wpa_supplicant.conf +++ /dev/null | |||
| @@ -1,502 +0,0 @@ | |||
| 1 | ##### Example wpa_supplicant configuration file ############################### | ||
| 2 | # Empty lines and lines starting with # are ignored | ||
| 3 | |||
| 4 | # NOTE! This file may contain password information and should probably be made | ||
| 5 | # readable only by root user on multiuser systems. | ||
| 6 | |||
| 7 | # global configuration (shared by all network blocks) | ||
| 8 | # | ||
| 9 | # Interface for separate control program. If this is specified, wpa_supplicant | ||
| 10 | # will create this directory and a UNIX domain socket for listening to requests | ||
| 11 | # from external programs (CLI/GUI, etc.) for status information and | ||
| 12 | # configuration. The socket file will be named based on the interface name, so | ||
| 13 | # multiple wpa_supplicant processes can be run at the same time if more than | ||
| 14 | # one interface is used. | ||
| 15 | # /var/run/wpa_supplicant is the recommended directory for sockets and by | ||
| 16 | # default, wpa_cli will use it when trying to connect with wpa_supplicant. | ||
| 17 | ctrl_interface=/var/run/wpa_supplicant | ||
| 18 | |||
| 19 | # Access control for the control interface can be configured by setting the | ||
| 20 | # directory to allow only members of a group to use sockets. This way, it is | ||
| 21 | # possible to run wpa_supplicant as root (since it needs to change network | ||
| 22 | # configuration and open raw sockets) and still allow GUI/CLI components to be | ||
| 23 | # run as non-root users. However, since the control interface can be used to | ||
| 24 | # change the network configuration, this access needs to be protected in many | ||
| 25 | # cases. By default, wpa_supplicant is configured to use gid 0 (root). If you | ||
| 26 | # want to allow non-root users to use the control interface, add a new group | ||
| 27 | # and change this value to match with that group. Add users that should have | ||
| 28 | # control interface access to this group. If this variable is commented out or | ||
| 29 | # not included in the configuration file, group will not be changed from the | ||
| 30 | # value it got by default when the directory or socket was created. | ||
| 31 | # | ||
| 32 | # This variable can be a group name or gid. | ||
| 33 | #ctrl_interface_group=wheel | ||
| 34 | ctrl_interface_group=0 | ||
| 35 | |||
| 36 | # IEEE 802.1X/EAPOL version | ||
| 37 | # wpa_supplicant was implemented based on IEEE 802-1X-REV-d8 which defines | ||
| 38 | # EAPOL version 2. However, there are many APs that do not handle the new | ||
| 39 | # version number correctly (they seem to drop the frames completely). In order | ||
| 40 | # to make wpa_supplicant interoperate with these APs, the version number is set | ||
| 41 | # to 1 by default. This configuration value can be used to set it to the new | ||
| 42 | # version (2). | ||
| 43 | eapol_version=1 | ||
| 44 | |||
| 45 | # AP scanning/selection | ||
| 46 | # By default, wpa_supplicant requests driver to perform AP scanning and then | ||
| 47 | # uses the scan results to select a suitable AP. Another alternative is to | ||
| 48 | # allow the driver to take care of AP scanning and selection and use | ||
| 49 | # wpa_supplicant just to process EAPOL frames based on IEEE 802.11 association | ||
| 50 | # information from the driver. | ||
| 51 | # 1: wpa_supplicant initiates scanning and AP selection | ||
| 52 | # 0: driver takes care of scanning, AP selection, and IEEE 802.11 association | ||
| 53 | # parameters (e.g., WPA IE generation); this mode can also be used with | ||
| 54 | # non-WPA drivers when using IEEE 802.1X mode; do not try to associate with | ||
| 55 | # APs (i.e., external program needs to control association) | ||
| 56 | # 2: like 0, but associate with APs using security policy and SSID (but not | ||
| 57 | # BSSID); this can be used, e.g., with ndiswrapper and NDIS driver to | ||
| 58 | # enable operation with hidden SSIDs and optimized roaming; in this mode, | ||
| 59 | # only the first network block in the configuration file is used and this | ||
| 60 | # configuration should have explicit security policy (i.e., only one option | ||
| 61 | # in the lists) for key_mgmt, pairwise, group, proto variables | ||
| 62 | ap_scan=1 | ||
| 63 | |||
| 64 | # EAP fast re-authentication | ||
| 65 | # By default, fast re-authentication is enabled for all EAP methods that | ||
| 66 | # support it. This variable can be used to disable fast re-authentication. | ||
| 67 | # Normally, there is no need to disable this. | ||
| 68 | fast_reauth=1 | ||
| 69 | |||
| 70 | # network block | ||
| 71 | # | ||
| 72 | # Each network (usually AP's sharing the same SSID) is configured as a separate | ||
| 73 | # block in this configuration file. The network blocks are in preference order | ||
| 74 | # (the first match is used). | ||
| 75 | # | ||
| 76 | # network block fields: | ||
| 77 | # | ||
| 78 | # ssid: SSID (mandatory); either as an ASCII string with double quotation or | ||
| 79 | # as hex string; network name | ||
| 80 | # | ||
| 81 | # scan_ssid: | ||
| 82 | # 0 = do not scan this SSID with specific Probe Request frames (default) | ||
| 83 | # 1 = scan with SSID-specific Probe Request frames (this can be used to | ||
| 84 | # find APs that do not accept broadcast SSID or use multiple SSIDs; | ||
| 85 | # this will add latency to scanning, so enable this only when needed) | ||
| 86 | # | ||
| 87 | # bssid: BSSID (optional); if set, this network block is used only when | ||
| 88 | # associating with the AP using the configured BSSID | ||
| 89 | # | ||
| 90 | # priority: priority group (integer) | ||
| 91 | # By default, all networks will get same priority group (0). If some of the | ||
| 92 | # networks are more desirable, this field can be used to change the order in | ||
| 93 | # which wpa_supplicant goes through the networks when selecting a BSS. The | ||
| 94 | # priority groups will be iterated in decreasing priority (i.e., the larger the | ||
| 95 | # priority value, the sooner the network is matched against the scan results). | ||
| 96 | # Within each priority group, networks will be selected based on security | ||
| 97 | # policy, signal strength, etc. | ||
| 98 | # Please note that AP scanning with scan_ssid=1 is not using this priority to | ||
| 99 | # select the order for scanning. Instead, it uses the order the networks are in | ||
| 100 | # the configuration file. | ||
| 101 | # | ||
| 102 | # mode: IEEE 802.11 operation mode | ||
| 103 | # 0 = infrastructure (Managed) mode, i.e., associate with an AP (default) | ||
| 104 | # 1 = IBSS (ad-hoc, peer-to-peer) | ||
| 105 | # Note: IBSS can only be used with key_mgmt NONE (plaintext and static WEP) | ||
| 106 | # and key_mgmt=WPA-NONE (fixed group key TKIP/CCMP). In addition, ap_scan has | ||
| 107 | # to be set to 2 for IBSS. WPA-None requires following network block options: | ||
| 108 | # proto=WPA, key_mgmt=WPA-NONE, pairwise=NONE, group=TKIP (or CCMP, but not | ||
| 109 | # both), and psk must also be set. | ||
| 110 | # | ||
| 111 | # proto: list of accepted protocols | ||
| 112 | # WPA = WPA/IEEE 802.11i/D3.0 | ||
| 113 | # RSN = WPA2/IEEE 802.11i (also WPA2 can be used as an alias for RSN) | ||
| 114 | # If not set, this defaults to: WPA RSN | ||
| 115 | # | ||
| 116 | # key_mgmt: list of accepted authenticated key management protocols | ||
| 117 | # WPA-PSK = WPA pre-shared key (this requires 'psk' field) | ||
| 118 | # WPA-EAP = WPA using EAP authentication (this can use an external | ||
| 119 | # program, e.g., Xsupplicant, for IEEE 802.1X EAP Authentication | ||
| 120 | # IEEE8021X = IEEE 802.1X using EAP authentication and (optionally) dynamically | ||
| 121 | # generated WEP keys | ||
| 122 | # NONE = WPA is not used; plaintext or static WEP could be used | ||
| 123 | # If not set, this defaults to: WPA-PSK WPA-EAP | ||
| 124 | # | ||
| 125 | # auth_alg: list of allowed IEEE 802.11 authentication algorithms | ||
| 126 | # OPEN = Open System authentication (required for WPA/WPA2) | ||
| 127 | # SHARED = Shared Key authentication (requires static WEP keys) | ||
| 128 | # LEAP = LEAP/Network EAP (only used with LEAP) | ||
| 129 | # If not set, automatic selection is used (Open System with LEAP enabled if | ||
| 130 | # LEAP is allowed as one of the EAP methods). | ||
| 131 | # | ||
| 132 | # pairwise: list of accepted pairwise (unicast) ciphers for WPA | ||
| 133 | # CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0] | ||
| 134 | # TKIP = Temporal Key Integrity Protocol [IEEE 802.11i/D7.0] | ||
| 135 | # NONE = Use only Group Keys (deprecated, should not be included if APs support | ||
| 136 | # pairwise keys) | ||
| 137 | # If not set, this defaults to: CCMP TKIP | ||
| 138 | # | ||
| 139 | # group: list of accepted group (broadcast/multicast) ciphers for WPA | ||
| 140 | # CCMP = AES in Counter mode with CBC-MAC [RFC 3610, IEEE 802.11i/D7.0] | ||
| 141 | # TKIP = Temporal Key Integrity Protocol [IEEE 802.11i/D7.0] | ||
| 142 | # WEP104 = WEP (Wired Equivalent Privacy) with 104-bit key | ||
| 143 | # WEP40 = WEP (Wired Equivalent Privacy) with 40-bit key [IEEE 802.11] | ||
| 144 | # If not set, this defaults to: CCMP TKIP WEP104 WEP40 | ||
| 145 | # | ||
| 146 | # psk: WPA preshared key; 256-bit pre-shared key | ||
| 147 | # The key used in WPA-PSK mode can be entered either as 64 hex-digits, i.e., | ||
| 148 | # 32 bytes or as an ASCII passphrase (in which case, the real PSK will be | ||
| 149 | # generated using the passphrase and SSID). ASCII passphrase must be between | ||
| 150 | # 8 and 63 characters (inclusive). | ||
| 151 | # This field is not needed, if WPA-EAP is used. | ||
| 152 | # Note: Separate tool, wpa_passphrase, can be used to generate 256-bit keys | ||
| 153 | # from ASCII passphrase. This process uses lot of CPU and wpa_supplicant | ||
| 154 | # startup and reconfiguration time can be optimized by generating the PSK only | ||
| 155 | # only when the passphrase or SSID has actually changed. | ||
| 156 | # | ||
| 157 | # eapol_flags: IEEE 802.1X/EAPOL options (bit field) | ||
| 158 | # Dynamic WEP key require for non-WPA mode | ||
| 159 | # bit0 (1): require dynamically generated unicast WEP key | ||
| 160 | # bit1 (2): require dynamically generated broadcast WEP key | ||
| 161 | # (3 = require both keys; default) | ||
| 162 | # | ||
| 163 | # Following fields are only used with internal EAP implementation. | ||
| 164 | # eap: space-separated list of accepted EAP methods | ||
| 165 | # MD5 = EAP-MD5 (unsecure and does not generate keying material -> | ||
| 166 | # cannot be used with WPA; to be used as a Phase 2 method | ||
| 167 | # with EAP-PEAP or EAP-TTLS) | ||
| 168 | # MSCHAPV2 = EAP-MSCHAPv2 (cannot be used separately with WPA; to be used | ||
| 169 | # as a Phase 2 method with EAP-PEAP or EAP-TTLS) | ||
| 170 | # OTP = EAP-OTP (cannot be used separately with WPA; to be used | ||
| 171 | # as a Phase 2 method with EAP-PEAP or EAP-TTLS) | ||
| 172 | # GTC = EAP-GTC (cannot be used separately with WPA; to be used | ||
| 173 | # as a Phase 2 method with EAP-PEAP or EAP-TTLS) | ||
| 174 | # TLS = EAP-TLS (client and server certificate) | ||
| 175 | # PEAP = EAP-PEAP (with tunnelled EAP authentication) | ||
| 176 | # TTLS = EAP-TTLS (with tunnelled EAP or PAP/CHAP/MSCHAP/MSCHAPV2 | ||
| 177 | # authentication) | ||
| 178 | # If not set, all compiled in methods are allowed. | ||
| 179 | # | ||
| 180 | # identity: Identity string for EAP | ||
| 181 | # anonymous_identity: Anonymous identity string for EAP (to be used as the | ||
| 182 | # unencrypted identity with EAP types that support different tunnelled | ||
| 183 | # identity, e.g., EAP-TTLS) | ||
| 184 | # password: Password string for EAP | ||
| 185 | # ca_cert: File path to CA certificate file. This file can have one or more | ||
| 186 | # trusted CA certificates. If ca_cert is not included, server certificate | ||
| 187 | # will not be verified. This is insecure and the CA file should always be | ||
| 188 | # configured. | ||
| 189 | # client_cert: File path to client certificate file (PEM/DER) | ||
| 190 | # private_key: File path to client private key file (PEM/DER/PFX) | ||
| 191 | # When PKCS#12/PFX file (.p12/.pfx) is used, client_cert should be | ||
| 192 | # commented out. Both the private key and certificate will be read from | ||
| 193 | # the PKCS#12 file in this case. | ||
| 194 | # private_key_passwd: Password for private key file | ||
| 195 | # dh_file: File path to DH/DSA parameters file (in PEM format) | ||
| 196 | # This is an optional configuration file for setting parameters for an | ||
| 197 | # ephemeral DH key exchange. In most cases, the default RSA | ||
| 198 | # authentication does not use this configuration. However, it is possible | ||
| 199 | # setup RSA to use ephemeral DH key exchange. In addition, ciphers with | ||
| 200 | # DSA keys always use ephemeral DH keys. This can be used to achieve | ||
| 201 | # forward secrecy. If the file is in DSA parameters format, it will be | ||
| 202 | # automatically converted into DH params. | ||
| 203 | # subject_match: Substring to be matched against the subject of the | ||
| 204 | # authentication server certificate. If this string is set, the server | ||
| 205 | # sertificate is only accepted if it contains this string in the subject. | ||
| 206 | # The subject string is in following format: | ||
| 207 | # /C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@example.com | ||
| 208 | # phase1: Phase1 (outer authentication, i.e., TLS tunnel) parameters | ||
| 209 | # (string with field-value pairs, e.g., "peapver=0" or | ||
| 210 | # "peapver=1 peaplabel=1") | ||
| 211 | # 'peapver' can be used to force which PEAP version (0 or 1) is used. | ||
| 212 | # 'peaplabel=1' can be used to force new label, "client PEAP encryption", | ||
| 213 | # to be used during key derivation when PEAPv1 or newer. Most existing | ||
| 214 | # PEAPv1 implementation seem to be using the old label, "client EAP | ||
| 215 | # encryption", and wpa_supplicant is now using that as the default value. | ||
| 216 | # Some servers, e.g., Radiator, may require peaplabel=1 configuration to | ||
| 217 | # interoperate with PEAPv1; see eap_testing.txt for more details. | ||
| 218 | # 'peap_outer_success=0' can be used to terminate PEAP authentication on | ||
| 219 | # tunneled EAP-Success. This is required with some RADIUS servers that | ||
| 220 | # implement draft-josefsson-pppext-eap-tls-eap-05.txt (e.g., | ||
| 221 | # Lucent NavisRadius v4.4.0 with PEAP in "IETF Draft 5" mode) | ||
| 222 | # sim_min_num_chal=3 can be used to configure EAP-SIM to require three | ||
| 223 | # challenges (by default, it accepts 2 or 3) | ||
| 224 | # phase2: Phase2 (inner authentication with TLS tunnel) parameters | ||
| 225 | # (string with field-value pairs, e.g., "auth=MSCHAPV2" for EAP-PEAP or | ||
| 226 | # "autheap=MSCHAPV2 autheap=MD5" for EAP-TTLS) | ||
| 227 | # Following certificate/private key fields are used in inner Phase2 | ||
| 228 | # authentication when using EAP-TTLS or EAP-PEAP. | ||
| 229 | # ca_cert2: File path to CA certificate file. This file can have one or more | ||
| 230 | # trusted CA certificates. If ca_cert2 is not included, server | ||
| 231 | # certificate will not be verified. This is insecure and the CA file | ||
| 232 | # should always be configured. | ||
| 233 | # client_cert2: File path to client certificate file | ||
| 234 | # private_key2: File path to client private key file | ||
| 235 | # private_key2_passwd: Password for private key file | ||
| 236 | # dh_file2: File path to DH/DSA parameters file (in PEM format) | ||
| 237 | # subject_match2: Substring to be matched against the subject of the | ||
| 238 | # authentication server certificate. | ||
| 239 | # | ||
| 240 | # EAP-PSK variables: | ||
| 241 | # eappsk: 16-byte (128-bit, 32 hex digits) pre-shared key in hex format | ||
| 242 | # nai: user NAI | ||
| 243 | # server_nai: authentication server NAI | ||
| 244 | # | ||
| 245 | # EAP-FAST variables: | ||
| 246 | # pac_file: File path for the PAC entries. wpa_supplicant will need to be able | ||
| 247 | # to create this file and write updates to it when PAC is being | ||
| 248 | # provisioned or refreshed. | ||
| 249 | # phase1: fast_provisioning=1 option enables in-line provisioning of EAP-FAST | ||
| 250 | # credentials (PAC) | ||
| 251 | # | ||
| 252 | # wpa_supplicant supports number of "EAP workarounds" to work around | ||
| 253 | # interoperability issues with incorrectly behaving authentication servers. | ||
| 254 | # These are enabled by default because some of the issues are present in large | ||
| 255 | # number of authentication servers. Strict EAP conformance mode can be | ||
| 256 | # configured by disabling workarounds with eap_workaround=0. | ||
| 257 | |||
| 258 | # Example blocks: | ||
| 259 | |||
| 260 | # Simple case: WPA-PSK, PSK as an ASCII passphrase, allow all valid ciphers | ||
| 261 | network={ | ||
| 262 | ssid="simple" | ||
| 263 | psk="very secret passphrase" | ||
| 264 | priority=5 | ||
| 265 | } | ||
| 266 | |||
| 267 | # Same as previous, but request SSID-specific scanning (for APs that reject | ||
| 268 | # broadcast SSID) | ||
| 269 | network={ | ||
| 270 | ssid="second ssid" | ||
| 271 | scan_ssid=1 | ||
| 272 | psk="very secret passphrase" | ||
| 273 | priority=2 | ||
| 274 | } | ||
| 275 | |||
| 276 | # Only WPA-PSK is used. Any valid cipher combination is accepted. | ||
| 277 | network={ | ||
| 278 | ssid="example" | ||
| 279 | proto=WPA | ||
| 280 | key_mgmt=WPA-PSK | ||
| 281 | pairwise=CCMP TKIP | ||
| 282 | group=CCMP TKIP WEP104 WEP40 | ||
| 283 | psk=06b4be19da289f475aa46a33cb793029d4ab3db7a23ee92382eb0106c72ac7bb | ||
| 284 | priority=2 | ||
| 285 | } | ||
| 286 | |||
| 287 | # Only WPA-EAP is used. Both CCMP and TKIP is accepted. An AP that used WEP104 | ||
| 288 | # or WEP40 as the group cipher will not be accepted. | ||
| 289 | network={ | ||
| 290 | ssid="example" | ||
| 291 | proto=RSN | ||
| 292 | key_mgmt=WPA-EAP | ||
| 293 | pairwise=CCMP TKIP | ||
| 294 | group=CCMP TKIP | ||
| 295 | eap=TLS | ||
| 296 | identity="user@example.com" | ||
| 297 | ca_cert="/etc/cert/ca.pem" | ||
| 298 | client_cert="/etc/cert/user.pem" | ||
| 299 | private_key="/etc/cert/user.prv" | ||
| 300 | private_key_passwd="password" | ||
| 301 | priority=1 | ||
| 302 | } | ||
| 303 | |||
| 304 | # EAP-PEAP/MSCHAPv2 configuration for RADIUS servers that use the new peaplabel | ||
| 305 | # (e.g., Radiator) | ||
| 306 | network={ | ||
| 307 | ssid="example" | ||
| 308 | key_mgmt=WPA-EAP | ||
| 309 | eap=PEAP | ||
| 310 | identity="user@example.com" | ||
| 311 | password="foobar" | ||
| 312 | ca_cert="/etc/cert/ca.pem" | ||
| 313 | phase1="peaplabel=1" | ||
| 314 | phase2="auth=MSCHAPV2" | ||
| 315 | priority=10 | ||
| 316 | } | ||
| 317 | |||
| 318 | # EAP-TTLS/EAP-MD5-Challenge configuration with anonymous identity for the | ||
| 319 | # unencrypted use. Real identity is sent only within an encrypted TLS tunnel. | ||
| 320 | network={ | ||
| 321 | ssid="example" | ||
| 322 | key_mgmt=WPA-EAP | ||
| 323 | eap=TTLS | ||
| 324 | identity="user@example.com" | ||
| 325 | anonymous_identity="anonymous@example.com" | ||
| 326 | password="foobar" | ||
| 327 | ca_cert="/etc/cert/ca.pem" | ||
| 328 | priority=2 | ||
| 329 | } | ||
| 330 | |||
| 331 | # EAP-TTLS/MSCHAPv2 configuration with anonymous identity for the unencrypted | ||
| 332 | # use. Real identity is sent only within an encrypted TLS tunnel. | ||
| 333 | network={ | ||
| 334 | ssid="example" | ||
| 335 | key_mgmt=WPA-EAP | ||
| 336 | eap=TTLS | ||
| 337 | identity="user@example.com" | ||
| 338 | anonymous_identity="anonymous@example.com" | ||
| 339 | password="foobar" | ||
| 340 | ca_cert="/etc/cert/ca.pem" | ||
| 341 | phase2="auth=MSCHAPV2" | ||
| 342 | } | ||
| 343 | |||
| 344 | # WPA-EAP, EAP-TTLS with different CA certificate used for outer and inner | ||
| 345 | # authentication. | ||
| 346 | network={ | ||
| 347 | ssid="example" | ||
| 348 | key_mgmt=WPA-EAP | ||
| 349 | eap=TTLS | ||
| 350 | # Phase1 / outer authentication | ||
| 351 | anonymous_identity="anonymous@example.com" | ||
| 352 | ca_cert="/etc/cert/ca.pem" | ||
| 353 | # Phase 2 / inner authentication | ||
| 354 | phase2="autheap=TLS" | ||
| 355 | ca_cert2="/etc/cert/ca2.pem" | ||
| 356 | client_cert2="/etc/cer/user.pem" | ||
| 357 | private_key2="/etc/cer/user.prv" | ||
| 358 | private_key2_passwd="password" | ||
| 359 | priority=2 | ||
| 360 | } | ||
| 361 | |||
| 362 | # Both WPA-PSK and WPA-EAP is accepted. Only CCMP is accepted as pairwise and | ||
| 363 | # group cipher. | ||
| 364 | network={ | ||
| 365 | ssid="example" | ||
| 366 | bssid=00:11:22:33:44:55 | ||
| 367 | proto=WPA RSN | ||
| 368 | key_mgmt=WPA-PSK WPA-EAP | ||
| 369 | pairwise=CCMP | ||
| 370 | group=CCMP | ||
| 371 | psk=06b4be19da289f475aa46a33cb793029d4ab3db7a23ee92382eb0106c72ac7bb | ||
| 372 | } | ||
| 373 | |||
| 374 | # Special characters in SSID, so use hex string. Default to WPA-PSK, WPA-EAP | ||
| 375 | # and all valid ciphers. | ||
| 376 | network={ | ||
| 377 | ssid=00010203 | ||
| 378 | psk=000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f | ||
| 379 | } | ||
| 380 | |||
| 381 | |||
| 382 | # EAP-SIM with a GSM SIM or USIM | ||
| 383 | network={ | ||
| 384 | ssid="eap-sim-test" | ||
| 385 | key_mgmt=WPA-EAP | ||
| 386 | eap=SIM | ||
| 387 | pin="1234" | ||
| 388 | pcsc="" | ||
| 389 | } | ||
| 390 | |||
| 391 | |||
| 392 | # EAP-PSK | ||
| 393 | network={ | ||
| 394 | ssid="eap-psk-test" | ||
| 395 | key_mgmt=WPA-EAP | ||
| 396 | eap=PSK | ||
| 397 | identity="eap_psk_user" | ||
| 398 | eappsk=06b4be19da289f475aa46a33cb793029 | ||
| 399 | nai="eap_psk_user@example.com" | ||
| 400 | server_nai="as@example.com" | ||
| 401 | } | ||
| 402 | |||
| 403 | |||
| 404 | # IEEE 802.1X/EAPOL with dynamically generated WEP keys (i.e., no WPA) using | ||
| 405 | # EAP-TLS for authentication and key generation; require both unicast and | ||
| 406 | # broadcast WEP keys. | ||
| 407 | network={ | ||
| 408 | ssid="1x-test" | ||
| 409 | key_mgmt=IEEE8021X | ||
| 410 | eap=TLS | ||
| 411 | identity="user@example.com" | ||
| 412 | ca_cert="/etc/cert/ca.pem" | ||
| 413 | client_cert="/etc/cert/user.pem" | ||
| 414 | private_key="/etc/cert/user.prv" | ||
| 415 | private_key_passwd="password" | ||
| 416 | eapol_flags=3 | ||
| 417 | } | ||
| 418 | |||
| 419 | |||
| 420 | # LEAP with dynamic WEP keys | ||
| 421 | network={ | ||
| 422 | ssid="leap-example" | ||
| 423 | key_mgmt=IEEE8021X | ||
| 424 | eap=LEAP | ||
| 425 | identity="user" | ||
| 426 | password="foobar" | ||
| 427 | } | ||
| 428 | |||
| 429 | # EAP-FAST with WPA (WPA or WPA2) | ||
| 430 | network={ | ||
| 431 | ssid="eap-fast-test" | ||
| 432 | key_mgmt=WPA-EAP | ||
| 433 | eap=FAST | ||
| 434 | anonymous_identity="FAST-000102030405" | ||
| 435 | identity="username" | ||
| 436 | password="password" | ||
| 437 | phase1="fast_provisioning=1" | ||
| 438 | pac_file="/etc/wpa_supplicant.eap-fast-pac" | ||
| 439 | } | ||
| 440 | |||
| 441 | # Plaintext connection (no WPA, no IEEE 802.1X) | ||
| 442 | network={ | ||
| 443 | ssid="plaintext-test" | ||
| 444 | key_mgmt=NONE | ||
| 445 | } | ||
| 446 | |||
| 447 | |||
| 448 | # Shared WEP key connection (no WPA, no IEEE 802.1X) | ||
| 449 | network={ | ||
| 450 | ssid="static-wep-test" | ||
| 451 | key_mgmt=NONE | ||
| 452 | wep_key0="abcde" | ||
| 453 | wep_key1=0102030405 | ||
| 454 | wep_key2="1234567890123" | ||
| 455 | wep_tx_keyidx=0 | ||
| 456 | priority=5 | ||
| 457 | } | ||
| 458 | |||
| 459 | |||
| 460 | # Shared WEP key connection (no WPA, no IEEE 802.1X) using Shared Key | ||
| 461 | # IEEE 802.11 authentication | ||
| 462 | network={ | ||
| 463 | ssid="static-wep-test2" | ||
| 464 | key_mgmt=NONE | ||
| 465 | wep_key0="abcde" | ||
| 466 | wep_key1=0102030405 | ||
| 467 | wep_key2="1234567890123" | ||
| 468 | wep_tx_keyidx=0 | ||
| 469 | priority=5 | ||
| 470 | auth_alg=SHARED | ||
| 471 | } | ||
| 472 | |||
| 473 | |||
| 474 | # IBSS/ad-hoc network with WPA-None/TKIP. | ||
| 475 | network={ | ||
| 476 | ssid="test adhoc" | ||
| 477 | mode=1 | ||
| 478 | proto=WPA | ||
| 479 | key_mgmt=WPA-NONE | ||
| 480 | pairwise=NONE | ||
| 481 | group=TKIP | ||
| 482 | psk="secret passphrase" | ||
| 483 | } | ||
| 484 | |||
| 485 | |||
| 486 | # Catch all example that allows more or less all configuration modes | ||
| 487 | network={ | ||
| 488 | ssid="example" | ||
| 489 | scan_ssid=1 | ||
| 490 | key_mgmt=WPA-EAP WPA-PSK IEEE8021X NONE | ||
| 491 | pairwise=CCMP TKIP | ||
| 492 | group=CCMP TKIP WEP104 WEP40 | ||
| 493 | psk="very secret passphrase" | ||
| 494 | eap=TTLS PEAP TLS | ||
| 495 | identity="user@example.com" | ||
| 496 | password="foobar" | ||
| 497 | ca_cert="/etc/cert/ca.pem" | ||
| 498 | client_cert="/etc/cert/user.pem" | ||
| 499 | private_key="/etc/cert/user.prv" | ||
| 500 | private_key_passwd="password" | ||
| 501 | phase1="peaplabel=0" | ||
| 502 | } | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant-0.5.inc b/meta/packages/wpa-supplicant/wpa-supplicant-0.5.inc new file mode 100644 index 0000000000..6d5869ba46 --- /dev/null +++ b/meta/packages/wpa-supplicant/wpa-supplicant-0.5.inc | |||
| @@ -0,0 +1,61 @@ | |||
| 1 | DESCRIPTION = "A Client for Wi-Fi Protected Access (WPA)." | ||
| 2 | SECTION = "network" | ||
| 3 | LICENSE = "GPL" | ||
| 4 | HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/" | ||
| 5 | DEPENDS = "gnutls" | ||
| 6 | |||
| 7 | SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz \ | ||
| 8 | file://defconfig-gnutls \ | ||
| 9 | file://init.sh \ | ||
| 10 | file://gnutlsfix.patch;patch=1 \ | ||
| 11 | file://defaults-sane \ | ||
| 12 | file://wpa-supplicant.sh \ | ||
| 13 | file://wpa_supplicant.conf \ | ||
| 14 | file://wpa_supplicant.conf-sane" | ||
| 15 | |||
| 16 | S = "${WORKDIR}/wpa_supplicant-${PV}" | ||
| 17 | |||
| 18 | PACKAGES_prepend = "wpa-supplicant-passphrase wpa-supplicant-cli " | ||
| 19 | FILES_wpa-supplicant-passphrase = "/usr/sbin/wpa_passphrase" | ||
| 20 | FILES_wpa-supplicant-cli = "/usr/sbin/wpa_cli" | ||
| 21 | |||
| 22 | RRECOMMENDS_${PN} = "wpa-supplicant-passphrase wpa-supplicant-cli" | ||
| 23 | |||
| 24 | INITSCRIPT_NAME = "wpa" | ||
| 25 | INITSCRIPT_PARAMS = "defaults 10" | ||
| 26 | inherit update-rc.d | ||
| 27 | |||
| 28 | do_configure () { | ||
| 29 | install -m 0755 ${WORKDIR}/defconfig-gnutls .config | ||
| 30 | } | ||
| 31 | |||
| 32 | do_compile () { | ||
| 33 | make | ||
| 34 | } | ||
| 35 | |||
| 36 | do_install () { | ||
| 37 | install -d ${D}${sbindir} | ||
| 38 | install -m 755 wpa_supplicant ${D}${sbindir} | ||
| 39 | install -m 755 wpa_passphrase ${D}${sbindir} | ||
| 40 | install -m 755 wpa_cli ${D}${sbindir} | ||
| 41 | |||
| 42 | install -d ${D}${localstatedir}/run/wpa_supplicant | ||
| 43 | |||
| 44 | install -d ${D}${docdir}/wpa_supplicant | ||
| 45 | install -m 644 README ${WORKDIR}/wpa_supplicant.conf ${D}${docdir}/wpa_supplicant | ||
| 46 | |||
| 47 | install -d ${D}${sysconfdir}/init.d | ||
| 48 | install -m 700 ${WORKDIR}/init.sh ${D}${sysconfdir}/init.d/wpa | ||
| 49 | |||
| 50 | install -d ${D}${sysconfdir}/default | ||
| 51 | install -m 600 ${WORKDIR}/defaults-sane ${D}${sysconfdir}/default/wpa | ||
| 52 | install -m 600 ${WORKDIR}/wpa_supplicant.conf-sane ${D}${sysconfdir}/wpa_supplicant.conf | ||
| 53 | |||
| 54 | install -d ${D}${sysconfdir}/network/if-pre-up.d/ | ||
| 55 | install -d ${D}${sysconfdir}/network/if-post-down.d/ | ||
| 56 | install -d ${D}${sysconfdir}/network/if-down.d/ | ||
| 57 | install -m 644 ${WORKDIR}/wpa_supplicant.conf ${D}${sysconfdir} | ||
| 58 | install -m 755 ${WORKDIR}/wpa-supplicant.sh ${D}${sysconfdir}/network/if-pre-up.d/wpa-supplicant | ||
| 59 | cd ${D}${sysconfdir}/network/ && \ | ||
| 60 | ln -sf ../if-pre-up.d/wpa-supplicant if-post-down.d/wpa-supplicant | ||
| 61 | } | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant-nossl/wpa-defconfig b/meta/packages/wpa-supplicant/wpa-supplicant-nossl/wpa-defconfig deleted file mode 100644 index bf5d5e28e7..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant-nossl/wpa-defconfig +++ /dev/null | |||
| @@ -1,4 +0,0 @@ | |||
| 1 | CONFIG_DRIVER_WEXT=y | ||
| 2 | CONFIG_WIRELESS_EXTENSION=y | ||
| 3 | CONFIG_DRIVER_HOSTAP=y | ||
| 4 | |||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant-nossl_0.2.6.bb b/meta/packages/wpa-supplicant/wpa-supplicant-nossl_0.2.6.bb deleted file mode 100644 index fe1a30b58b..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant-nossl_0.2.6.bb +++ /dev/null | |||
| @@ -1,7 +0,0 @@ | |||
| 1 | DESCRIPTION = "User space helper for WPA and WPA2 client operations. \ | ||
| 2 | The Supplicant is used in WPA/WPA2 key handshakes to authenticate \ | ||
| 3 | with the AP and to generate dynamic encryption keys (TKIP or CCMP)." | ||
| 4 | |||
| 5 | PR = "r3" | ||
| 6 | |||
| 7 | require wpa-supplicant_${PV}.inc | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant-ssl/wpa-defconfig b/meta/packages/wpa-supplicant/wpa-supplicant-ssl/wpa-defconfig deleted file mode 100644 index 2dac008aa5..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant-ssl/wpa-defconfig +++ /dev/null | |||
| @@ -1,15 +0,0 @@ | |||
| 1 | # CONFIG_DRIVER_HOSTAP is not set | ||
| 2 | CONFIG_DRIVER_WEXT=y | ||
| 3 | CONFIG_WIRELESS_EXTENSION=y | ||
| 4 | CONFIG_DRIVER_HOSTAP=y | ||
| 5 | CONFIG_IEEE8021X_EAPOL=y | ||
| 6 | CONFIG_EAP_MD5=y | ||
| 7 | CONFIG_MSCHAPV2=y | ||
| 8 | CONFIG_EAP_TLS=y | ||
| 9 | CONFIG_EAP_PEAP=y | ||
| 10 | CONFIG_EAP_TTLS=y | ||
| 11 | CONFIG_EAP_GTC=y | ||
| 12 | CONFIG_EAP_OTP=y | ||
| 13 | CONFIG_EAP_SIM=y | ||
| 14 | CONFIG_EAP_LEAP=y | ||
| 15 | #CONFIG_PCSC=y | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant-ssl_0.2.6.bb b/meta/packages/wpa-supplicant/wpa-supplicant-ssl_0.2.6.bb deleted file mode 100644 index 34f370a10e..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant-ssl_0.2.6.bb +++ /dev/null | |||
| @@ -1,9 +0,0 @@ | |||
| 1 | DESCRIPTION = "User space helper for WPA and WPA2 client operations with SSL. \ | ||
| 2 | The Supplicant is used in WPA/WPA2 key handshakes to authenticate \ | ||
| 3 | with the AP and to generate dynamic encryption keys (TKIP or CCMP)." | ||
| 4 | DEPENDSS = "openssl" | ||
| 5 | PR = "r3" | ||
| 6 | |||
| 7 | EXTRA_OEMAKE="LIBS='-L${STAGING_LIBDIR} -lssl -lcrypto' LIBS_p='-L${STAGING_LIBDIR} -lssl -lcrypto'" | ||
| 8 | |||
| 9 | require wpa-supplicant_${PV}.inc | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant/gnutlsfix.patch b/meta/packages/wpa-supplicant/wpa-supplicant/gnutlsfix.patch new file mode 100644 index 0000000000..795306bb35 --- /dev/null +++ b/meta/packages/wpa-supplicant/wpa-supplicant/gnutlsfix.patch | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | Index: wpa_supplicant-0.5.5/tls_gnutls.c | ||
| 2 | =================================================================== | ||
| 3 | --- wpa_supplicant-0.5.5.orig/tls_gnutls.c 2006-06-25 03:05:07.000000000 +0200 | ||
| 4 | +++ wpa_supplicant-0.5.5/tls_gnutls.c 2006-10-29 15:12:21.000000000 +0100 | ||
| 5 | @@ -1029,8 +1029,13 @@ | ||
| 6 | const u8 *in_data, size_t in_len, | ||
| 7 | size_t *out_len) | ||
| 8 | { | ||
| 9 | + u8 *appl_data; | ||
| 10 | + size_t appl_data_len; | ||
| 11 | + | ||
| 12 | + appl_data = NULL; | ||
| 13 | + | ||
| 14 | return tls_connection_handshake(ssl_ctx, conn, in_data, in_len, | ||
| 15 | - out_len); | ||
| 16 | + out_len, appl_data, appl_data_len); | ||
| 17 | } | ||
| 18 | |||
| 19 | |||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant_0.2.6.inc b/meta/packages/wpa-supplicant/wpa-supplicant_0.2.6.inc deleted file mode 100644 index e75ce2e570..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant_0.2.6.inc +++ /dev/null | |||
| @@ -1,33 +0,0 @@ | |||
| 1 | SECTION = "kernel/userland" | ||
| 2 | HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/" | ||
| 3 | PRIORITY = "optional" | ||
| 4 | LICENSE = "GPL" | ||
| 5 | |||
| 6 | SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz \ | ||
| 7 | file://wpa-defconfig \ | ||
| 8 | file://wpa_supplicant_default.conf" | ||
| 9 | |||
| 10 | RREPLACES_${PN} = "hostap-${PN}" | ||
| 11 | RPROVIDES_${PN} = "hostap-${PN}" | ||
| 12 | RCONFLICTS_${PN} = "hostap-${PN}" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/wpa_supplicant-${PV}" | ||
| 15 | |||
| 16 | do_compile() { | ||
| 17 | unset CFLAGS | ||
| 18 | base_do_compile | ||
| 19 | } | ||
| 20 | |||
| 21 | do_configure() { | ||
| 22 | install -m 0644 ${WORKDIR}/wpa-defconfig .config | ||
| 23 | } | ||
| 24 | |||
| 25 | do_install() { | ||
| 26 | install -d ${D}${sysconfdir} ${D}${bindir} | ||
| 27 | install -m 0644 wpa_supplicant.conf ${D}${sysconfdir}/wpa_supplicant.conf.sample | ||
| 28 | install -m 0644 ../wpa_supplicant_default.conf ${D}${sysconfdir}/wpa_supplicant.conf | ||
| 29 | install -m 0755 wpa_passphrase ${D}${bindir} | ||
| 30 | install -m 0755 wpa_cli ${D}${bindir} | ||
| 31 | install -m 0755 wpa_supplicant ${D}${bindir} | ||
| 32 | } | ||
| 33 | |||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant_0.3.6.bb b/meta/packages/wpa-supplicant/wpa-supplicant_0.3.6.bb deleted file mode 100644 index 365bcb78cc..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant_0.3.6.bb +++ /dev/null | |||
| @@ -1,33 +0,0 @@ | |||
| 1 | DESCRIPTION = "A Client for Wi-Fi Protected Access (WPA)." | ||
| 2 | SECTION = "network" | ||
| 3 | LICENSE = "GPL" | ||
| 4 | HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/" | ||
| 5 | DEPENDS = "openssl" | ||
| 6 | PR = "r3" | ||
| 7 | |||
| 8 | SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-0.3.6.tar.gz \ | ||
| 9 | file://defconfig \ | ||
| 10 | file://driver-hermes.patch;patch=1 \ | ||
| 11 | file://wpa_supplicant.conf" | ||
| 12 | S = "${WORKDIR}/wpa_supplicant-${PV}" | ||
| 13 | |||
| 14 | do_configure () { | ||
| 15 | install -m 0755 ${WORKDIR}/defconfig .config | ||
| 16 | } | ||
| 17 | |||
| 18 | do_compile () { | ||
| 19 | make | ||
| 20 | } | ||
| 21 | |||
| 22 | do_install () { | ||
| 23 | install -d ${D}${sbindir} | ||
| 24 | install -m755 wpa_supplicant ${D}${sbindir} | ||
| 25 | install -m755 wpa_passphrase ${D}${sbindir} | ||
| 26 | install -m755 wpa_cli ${D}${sbindir} | ||
| 27 | |||
| 28 | install -d ${D}${sysconfdir} | ||
| 29 | install -m644 ${WORKDIR}/wpa_supplicant.conf ${D}${sysconfdir} | ||
| 30 | |||
| 31 | install -d ${D}${docdir}/wpa_supplicant | ||
| 32 | install -m644 README ${D}${docdir}/wpa_supplicant | ||
| 33 | } | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant_0.3.8.bb b/meta/packages/wpa-supplicant/wpa-supplicant_0.3.8.bb deleted file mode 100644 index 04561b7276..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant_0.3.8.bb +++ /dev/null | |||
| @@ -1,35 +0,0 @@ | |||
| 1 | DESCRIPTION = "A Client for Wi-Fi Protected Access (WPA)." | ||
| 2 | SECTION = "network" | ||
| 3 | LICENSE = "GPL" | ||
| 4 | HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/" | ||
| 5 | DEPENDS = "openssl" | ||
| 6 | DEPENDS_mtx-1_append = "madwifi-modules" | ||
| 7 | PR = "r1" | ||
| 8 | |||
| 9 | SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz \ | ||
| 10 | file://madwifi-bsd-fix.diff;patch=1;pnum=0 \ | ||
| 11 | file://defconfig \ | ||
| 12 | file://driver-hermes.patch;patch=1 \ | ||
| 13 | file://wpa_supplicant.conf" | ||
| 14 | S = "${WORKDIR}/wpa_supplicant-${PV}" | ||
| 15 | |||
| 16 | do_configure () { | ||
| 17 | install -m 0755 ${WORKDIR}/defconfig .config | ||
| 18 | } | ||
| 19 | |||
| 20 | do_compile () { | ||
| 21 | make | ||
| 22 | } | ||
| 23 | |||
| 24 | do_install () { | ||
| 25 | install -d ${D}${sbindir} | ||
| 26 | install -m755 wpa_supplicant ${D}${sbindir} | ||
| 27 | install -m755 wpa_passphrase ${D}${sbindir} | ||
| 28 | install -m755 wpa_cli ${D}${sbindir} | ||
| 29 | |||
| 30 | install -d ${D}${sysconfdir} | ||
| 31 | install -m644 ${WORKDIR}/wpa_supplicant.conf ${D}${sysconfdir} | ||
| 32 | |||
| 33 | install -d ${D}${docdir}/wpa_supplicant | ||
| 34 | install -m644 README ${D}${docdir}/wpa_supplicant | ||
| 35 | } | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant_0.4.7.bb b/meta/packages/wpa-supplicant/wpa-supplicant_0.4.7.bb deleted file mode 100644 index 6d8efbe14c..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant_0.4.7.bb +++ /dev/null | |||
| @@ -1,37 +0,0 @@ | |||
| 1 | DESCRIPTION = "A Client for Wi-Fi Protected Access (WPA)." | ||
| 2 | SECTION = "network" | ||
| 3 | LICENSE = "GPL" | ||
| 4 | HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/" | ||
| 5 | DEPENDS = "openssl" | ||
| 6 | DEPENDS_mtx-1_append = "madwifi-modules" | ||
| 7 | PR = "r1" | ||
| 8 | |||
| 9 | SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz \ | ||
| 10 | file://madwifi-bsd-fix.diff;patch=1;pnum=0 \ | ||
| 11 | file://defconfig \ | ||
| 12 | file://driver-hermes.patch;patch=1 \ | ||
| 13 | file://driver-zd1211.patch;patch=1 \ | ||
| 14 | file://wpa_supplicant.conf" | ||
| 15 | |||
| 16 | S = "${WORKDIR}/wpa_supplicant-${PV}" | ||
| 17 | |||
| 18 | do_configure () { | ||
| 19 | install -m 0755 ${WORKDIR}/defconfig .config | ||
| 20 | } | ||
| 21 | |||
| 22 | do_compile () { | ||
| 23 | make | ||
| 24 | } | ||
| 25 | |||
| 26 | do_install () { | ||
| 27 | install -d ${D}${sbindir} | ||
| 28 | install -m755 wpa_supplicant ${D}${sbindir} | ||
| 29 | install -m755 wpa_passphrase ${D}${sbindir} | ||
| 30 | install -m755 wpa_cli ${D}${sbindir} | ||
| 31 | |||
| 32 | install -d ${D}${sysconfdir} | ||
| 33 | install -m644 ${WORKDIR}/wpa_supplicant.conf ${D}${sysconfdir} | ||
| 34 | |||
| 35 | install -d ${D}${docdir}/wpa_supplicant | ||
| 36 | install -m644 README ${D}${docdir}/wpa_supplicant | ||
| 37 | } | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant_0.5.1.bb b/meta/packages/wpa-supplicant/wpa-supplicant_0.5.1.bb deleted file mode 100644 index 704efcac20..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant_0.5.1.bb +++ /dev/null | |||
| @@ -1,56 +0,0 @@ | |||
| 1 | DESCRIPTION = "A Client for Wi-Fi Protected Access (WPA)." | ||
| 2 | SECTION = "network" | ||
| 3 | LICENSE = "GPL" | ||
| 4 | HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/" | ||
| 5 | DEPENDS = "gnutls madwifi-ng" | ||
| 6 | |||
| 7 | PR = "r4" | ||
| 8 | DEFAULT_PREFERENCE = "-1" | ||
| 9 | |||
| 10 | SRC_URI = "http://hostap.epitest.fi/releases/wpa_supplicant-${PV}.tar.gz \ | ||
| 11 | file://defconfig-gnutls \ | ||
| 12 | file://init.sh \ | ||
| 13 | file://defaults-sane \ | ||
| 14 | file://wpa_supplicant.conf \ | ||
| 15 | file://wpa_supplicant.conf-sane" | ||
| 16 | |||
| 17 | S = "${WORKDIR}/wpa_supplicant-${PV}" | ||
| 18 | |||
| 19 | PACKAGES_prepend = "wpa-supplicant-passphrase wpa-supplicant-cli " | ||
| 20 | FILES_wpa-supplicant-passphrase = "/usr/sbin/wpa_passphrase" | ||
| 21 | FILES_wpa-supplicant-cli = "/usr/sbin/wpa_cli" | ||
| 22 | |||
| 23 | RRECOMMENDS_${PN} = "wpa-supplicant-passphrase wpa-supplicant-cli" | ||
| 24 | |||
| 25 | INITSCRIPT_NAME = "wpa" | ||
| 26 | INITSCRIPT_PARAMS = "defaults 10" | ||
| 27 | inherit update-rc.d | ||
| 28 | |||
| 29 | do_configure () { | ||
| 30 | install -m 0755 ${WORKDIR}/defconfig-gnutls .config | ||
| 31 | echo "CONFIG_DRIVER_MADWIFI=y" >> .config | ||
| 32 | echo "CFLAGS += -I${STAGING_INCDIR}/madwifi-ng" >> .config | ||
| 33 | } | ||
| 34 | |||
| 35 | do_compile () { | ||
| 36 | make | ||
| 37 | } | ||
| 38 | |||
| 39 | do_install () { | ||
| 40 | install -d ${D}${sbindir} | ||
| 41 | install -m755 wpa_supplicant ${D}${sbindir} | ||
| 42 | install -m755 wpa_passphrase ${D}${sbindir} | ||
| 43 | install -m755 wpa_cli ${D}${sbindir} | ||
| 44 | |||
| 45 | install -d ${D}${localstatedir}/run/wpa_supplicant | ||
| 46 | |||
| 47 | install -d ${D}${docdir}/wpa_supplicant | ||
| 48 | install -m644 README ${WORKDIR}/wpa_supplicant.conf ${D}${docdir}/wpa_supplicant | ||
| 49 | |||
| 50 | install -d ${D}${sysconfdir}/init.d | ||
| 51 | install -m700 ${WORKDIR}/init.sh ${D}${sysconfdir}/init.d/wpa | ||
| 52 | |||
| 53 | install -d ${D}${sysconfdir}/default | ||
| 54 | install -m600 ${WORKDIR}/defaults-sane ${D}${sysconfdir}/default/wpa | ||
| 55 | install -m600 ${WORKDIR}/wpa_supplicant.conf-sane ${D}${sysconfdir}/wpa_supplicant.conf | ||
| 56 | } | ||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant_0.5.7.bb b/meta/packages/wpa-supplicant/wpa-supplicant_0.5.7.bb new file mode 100644 index 0000000000..6594bbfdbe --- /dev/null +++ b/meta/packages/wpa-supplicant/wpa-supplicant_0.5.7.bb | |||
| @@ -0,0 +1 @@ | |||
| require wpa-supplicant-0.5.inc | |||
diff --git a/meta/packages/wpa-supplicant/wpa-supplicant_cvs.bb b/meta/packages/wpa-supplicant/wpa-supplicant_cvs.bb deleted file mode 100644 index db1395d76b..0000000000 --- a/meta/packages/wpa-supplicant/wpa-supplicant_cvs.bb +++ /dev/null | |||
| @@ -1,58 +0,0 @@ | |||
| 1 | DESCRIPTION = "Client for Wi-Fi Protected Access (WPA)." | ||
| 2 | SECTION = "network" | ||
| 3 | LICENSE = "GPL" | ||
| 4 | HOMEPAGE = "http://hostap.epitest.fi/wpa_supplicant/" | ||
| 5 | DEPENDS = "openssl" | ||
| 6 | PV = "0.0+cvs${SRCDATE}" | ||
| 7 | PR = "r2" | ||
| 8 | |||
| 9 | SRC_URI = "cvs://anonymous@hostap.epitest.fi/cvs;module=hostap \ | ||
| 10 | file://use-channel.patch;patch=1 \ | ||
| 11 | file://driver-hermes.patch;patch=1 \ | ||
| 12 | file://defconfig \ | ||
| 13 | file://defaults \ | ||
| 14 | file://init.sh \ | ||
| 15 | file://wpa_supplicant.conf" | ||
| 16 | S = "${WORKDIR}/hostap/wpa_supplicant" | ||
| 17 | |||
| 18 | |||
| 19 | PACKAGES_prepend = "wpa-supplicant-passphrase wpa-supplicant-cli " | ||
| 20 | FILES_wpa-supplicant-passphrase = "/usr/sbin/wpa_passphrase" | ||
| 21 | FILES_wpa-supplicant-cli = "/usr/sbin/wpa_cli" | ||
| 22 | |||
| 23 | RRECOMMENDS_${PN} = "wpa-supplicant-passphrase wpa-supplicant-cli" | ||
| 24 | |||
| 25 | |||
| 26 | INITSCRIPT_NAME = "wpa" | ||
| 27 | INITSCRIPT_PARAMS = "defaults 10" | ||
| 28 | inherit update-rc.d | ||
| 29 | |||
| 30 | |||
| 31 | do_configure () { | ||
| 32 | install -m 0755 ${WORKDIR}/defconfig .config | ||
| 33 | } | ||
| 34 | |||
| 35 | |||
| 36 | do_compile () { | ||
| 37 | make | ||
| 38 | } | ||
| 39 | |||
| 40 | |||
| 41 | do_install () { | ||
| 42 | set -x | ||
| 43 | install -d ${D}${sbindir} | ||
| 44 | install -m755 wpa_supplicant ${D}${sbindir} | ||
| 45 | install -m755 wpa_passphrase ${D}${sbindir} | ||
| 46 | install -m755 wpa_cli ${D}${sbindir} | ||
| 47 | |||
| 48 | install -d ${D}${localstatedir}/run/wpa_supplicant | ||
| 49 | |||
| 50 | install -d ${D}${docdir}/wpa_supplicant | ||
| 51 | install -m644 README ${WORKDIR}/wpa_supplicant.conf ${D}${docdir}/wpa_supplicant | ||
| 52 | |||
| 53 | install -d ${D}${sysconfdir}/init.d | ||
| 54 | install -m700 ${WORKDIR}/init.sh ${D}${sysconfdir}/init.d/wpa | ||
| 55 | |||
| 56 | install -d ${D}${sysconfdir}/default | ||
| 57 | install -m600 ${WORKDIR}/defaults ${D}${sysconfdir}/default/wpa | ||
| 58 | } | ||
