hostapd: add more wps config methods to the config
[openwrt/svn-archive/archive.git] / package / hostapd / files / hostapd.sh
1 hostapd_set_bss_options() {
2 local var="$1"
3 local vif="$2"
4 local enc wpa_group_rekey wps_possible
5
6 config_get enc "$vif" encryption
7 config_get wpa_group_rekey "$vif" wpa_group_rekey
8 config_get_bool ap_isolate "$vif" isolate 0
9
10 config_get device "$vif" device
11 config_get hwmode "$device" hwmode
12 config_get phy "$device" phy
13
14 append "$var" "ctrl_interface=/var/run/hostapd-$phy" "$N"
15
16 if [ "$ap_isolate" -gt 0 ]; then
17 append "$var" "ap_isolate=$ap_isolate" "$N"
18 fi
19
20 # Examples:
21 # psk-mixed/tkip => WPA1+2 PSK, TKIP
22 # wpa-psk2/tkip+aes => WPA2 PSK, CCMP+TKIP
23 # wpa2/tkip+aes => WPA2 RADIUS, CCMP+TKIP
24 # ...
25
26 # TODO: move this parsing function somewhere generic, so that
27 # later it can be reused by drivers that don't use hostapd
28
29 # crypto defaults: WPA2 vs WPA1
30 case "$enc" in
31 wpa2*|*psk2*)
32 wpa=2
33 crypto="CCMP"
34 ;;
35 *mixed*)
36 wpa=3
37 crypto="CCMP TKIP"
38 ;;
39 *)
40 wpa=1
41 crypto="TKIP"
42 ;;
43 esac
44
45 # explicit override for crypto setting
46 case "$enc" in
47 *tkip+aes|*tkip+ccmp|*aes+tkip|*ccmp+tkip) crypto="CCMP TKIP";;
48 *aes|*ccmp) crypto="CCMP";;
49 *tkip) crypto="TKIP";;
50 esac
51
52 # enforce CCMP for 11ng and 11na
53 case "$hwmode:$crypto" in
54 *ng:TKIP|*na:TKIP) crypto="CCMP TKIP";;
55 esac
56
57 # use crypto/auth settings for building the hostapd config
58 case "$enc" in
59 *psk*)
60 config_get psk "$vif" key
61 if [ ${#psk} -eq 64 ]; then
62 append "$var" "wpa_psk=$psk" "$N"
63 else
64 append "$var" "wpa_passphrase=$psk" "$N"
65 fi
66 wps_possible=1
67 ;;
68 *wpa*)
69 # required fields? formats?
70 # hostapd is particular, maybe a default configuration for failures
71 config_get server "$vif" server
72 append "$var" "auth_server_addr=$server" "$N"
73 config_get port "$vif" port
74 port=${port:-1812}
75 append "$var" "auth_server_port=$port" "$N"
76 config_get secret "$vif" key
77 append "$var" "auth_server_shared_secret=$secret" "$N"
78 config_get nasid "$vif" nasid
79 append "$var" "nas_identifier=$nasid" "$N"
80 append "$var" "eapol_key_index_workaround=1" "$N"
81 append "$var" "radius_acct_interim_interval=300" "$N"
82 append "$var" "ieee8021x=1" "$N"
83 append "$var" "wpa_key_mgmt=WPA-EAP" "$N"
84 append "$var" "wpa_group_rekey=300" "$N"
85 append "$var" "wpa_gmk_rekey=640" "$N"
86 ;;
87 *wep*)
88 config_get key "$vif" key
89 key="${key:-1}"
90 case "$key" in
91 [1234])
92 for idx in 1 2 3 4; do
93 local zidx
94 zidx=$(($idx - 1))
95 config_get ckey "$vif" "key${idx}"
96 [ -n "$ckey" ] && \
97 append "$var" "wep_key${zidx}=$(prepare_key_wep "$ckey")" "$N"
98 done
99 append "$var" "wep_default_key=$((key - 1))" "$N"
100 ;;
101 *)
102 append "$var" "wep_key0=$(prepare_key_wep "$key")" "$N"
103 append "$var" "wep_default_key=0" "$N"
104 ;;
105 esac
106 case "$enc" in
107 *shared*)
108 auth_algs=2
109 ;;
110 *mixed*)
111 auth_algs=3
112 ;;
113 esac
114 wpa=0
115 crypto=
116 ;;
117 *)
118 wpa=0
119 crypto=
120 ;;
121 esac
122 append "$var" "auth_algs=${auth_algs:-1}" "$N"
123 append "$var" "wpa=$wpa" "$N"
124 [ -n "$crypto" ] && append "$var" "wpa_pairwise=$crypto" "$N"
125 [ -n "$wpa_group_rekey" ] && append "$var" "wpa_group_rekey=$wpa_group_rekey" "$N"
126
127 config_get ssid "$vif" ssid
128 config_get bridge "$vif" bridge
129 config_get ieee80211d "$vif" ieee80211d
130 config_get iapp_interface "$vif" iapp_interface
131
132 config_get_bool wps_pbc "$vif" wps_pushbutton 0
133 config_get_bool wps_label "$vif" wps_label 0
134
135 config_get config_methods "$vif" wps_config
136 [ "$wps_pbc" -gt 0 ] && append config_methods push_button
137
138 [ -n "$wps_possible" -a -n "$config_methods" ] && {
139 config_get device_type "$vif" wps_device_type "6-0050F204-1"
140 config_get device_name "$vif" wps_device_name "OpenWrt AP"
141 config_get manufacturer "$vif" wps_manufacturer "openwrt.org"
142
143 append "$var" "eap_server=1" "$N"
144 append "$var" "wps_state=2" "$N"
145 append "$var" "ap_setup_locked=1" "$N"
146 append "$var" "device_type=$device_type" "$N"
147 append "$var" "device_name=$device_name" "$N"
148 append "$var" "manufacturer=$manufacturer" "$N"
149 append "$var" "config_methods=$config_methods" "$N"
150 }
151
152 append "$var" "ssid=$ssid" "$N"
153 [ -n "$bridge" ] && append "$var" "bridge=$bridge" "$N"
154 [ -n "$ieee80211d" ] && append "$var" "ieee80211d=$ieee80211d" "$N"
155 [ -n "$iapp_interface" ] && append "$var" iapp_interface=$(uci_get_state network "$iapp_interface" ifname "$iapp_interface") "$N"
156
157 if [ "$wpa" -ge "2" ]
158 then
159 # RSN -> allow preauthentication
160 config_get rsn_preauth "$vif" rsn_preauth
161 if [ -n "$bridge" -a "$rsn_preauth" = 1 ]
162 then
163 append "$var" "rsn_preauth=1" "$N"
164 append "$var" "rsn_preauth_interfaces=$bridge" "$N"
165 fi
166
167 # RSN -> allow management frame protection
168 config_get ieee80211w "$vif" ieee80211w
169 case "$ieee80211w" in
170 [012])
171 append "$var" "ieee80211w=$ieee80211w" "$N"
172 [ "$ieee80211w" -gt "0" ] && {
173 config_get ieee80211w_max_timeout "$vif" ieee80211w_max_timeout
174 config_get ieee80211w_retry_timeout "$vif" ieee80211w_retry_timeout
175 [ -n "$ieee80211w_max_timeout" ] && \
176 append "$var" "assoc_sa_query_max_timeout=$ieee80211w_max_timeout" "$N"
177 [ -n "$ieee80211w_retry_timeout" ] && \
178 append "$var" "assoc_sa_query_retry_timeout=$ieee80211w_retry_timeout" "$N"
179 }
180 ;;
181 esac
182 fi
183 }
184
185 hostapd_setup_vif() {
186 local vif="$1"
187 local driver="$2"
188 hostapd_cfg=
189
190 hostapd_set_bss_options hostapd_cfg "$vif"
191 config_get ifname "$vif" ifname
192 config_get device "$vif" device
193 config_get channel "$device" channel
194 config_get hwmode "$device" hwmode
195 case "$hwmode" in
196 *bg|*gdt|*gst|*fh) hwmode=g;;
197 *adt|*ast) hwmode=a;;
198 esac
199 [ "$channel" = auto ] && channel=
200 [ -n "$channel" -a -z "$hwmode" ] && wifi_fixup_hwmode "$device"
201 cat > /var/run/hostapd-$ifname.conf <<EOF
202 driver=$driver
203 interface=$ifname
204 ${hwmode:+hw_mode=${hwmode#11}}
205 ${channel:+channel=$channel}
206 $hostapd_cfg
207 EOF
208 hostapd -P /var/run/wifi-$ifname.pid -B /var/run/hostapd-$ifname.conf
209 }
210