wireless: add some device/vif error debug messages
[project/netifd.git] / scripts / netifd-wireless.sh
1 NETIFD_MAIN_DIR="${NETIFD_MAIN_DIR:-/lib/netifd}"
2
3 . /usr/share/libubox/jshn.sh
4 . $NETIFD_MAIN_DIR/utils.sh
5
6 CMD_UP=0
7 CMD_SET_DATA=1
8 CMD_PROCESS_ADD=2
9 CMD_PROCESS_KILL_ALL=3
10 CMD_SET_RETRY=4
11
12 add_driver() {
13 return
14 }
15
16 wireless_setup_vif_failed() {
17 local error="$1"
18 echo "Interface $_w_iface setup failed: $error"
19 }
20
21 wireless_setup_failed() {
22 local error="$1"
23
24 echo "Device setup failed: $error"
25 wireless_set_retry 0
26 }
27
28 prepare_key_wep() {
29 local key="$1"
30 local hex=1
31
32 echo -n "$key" | grep -qE "[^a-fA-F0-9]" && hex=0
33 [ "${#key}" -eq 10 -a $hex -eq 1 ] || \
34 [ "${#key}" -eq 26 -a $hex -eq 1 ] || {
35 [ "${key:0:2}" = "s:" ] && key="${key#s:}"
36 key="$(echo -n "$key" | hexdump -ve '1/1 "%02x" ""')"
37 }
38 echo "$key"
39 }
40
41 _wdev_prepare_channel() {
42 json_get_vars channel hwmode
43
44 auto_channel=0
45 enable_ht=0
46 htmode=
47 hwmode="${hwmode##11}"
48 hwmode_n="${hwmode##n}"
49
50 case "$channel" in
51 ""|0|auto)
52 channel=0
53 auto_channel=1
54 ;;
55 [0-9]*) ;;
56 *)
57 wireless_setup_failed "INVALID_CHANNEL"
58 ;;
59 esac
60
61 [[ "$hwmode_n" = "$hwmode" ]] && {
62 enable_ht=1
63 hwmode="$hwmode_n"
64
65 json_get_vars htmode
66 case "$htmode" in
67 HT20|HT40+|HT40-);;
68 *) htmode= ;;
69 esac
70 }
71
72 case "$hwmode" in
73 a|b|g) ;;
74 *)
75 if [ "$channel" -gt 14 ]; then
76 hwmode=a
77 else
78 hwmode=g
79 fi
80 ;;
81 esac
82 }
83
84 _wdev_handler() {
85 json_load "$data"
86
87 json_select config
88 _wdev_prepare_channel
89 json_select ..
90
91 eval "drv_$1_$2 \"$interface\""
92 }
93
94 _wdev_msg_call() {
95 local old_cb
96
97 json_set_namespace wdev old_cb
98 "$@"
99 json_set_namespace $old_cb
100 }
101
102 _wdev_wrapper() {
103 while [ -n "$1" ]; do
104 eval "$1() { _wdev_msg_call _$1 \"\$@\"; }"
105 shift
106 done
107 }
108
109 _wdev_notify_init() {
110 local command="$1"
111 local interface="$2"
112
113 json_init
114 json_add_int "command" "$command"
115 json_add_string "device" "$__netifd_device"
116 [ -n "$interface" ] && json_add_string "interface" "$interface"
117 json_add_object "data"
118 }
119
120 _wdev_notify() {
121 local options="$1"
122
123 json_close_object
124 ubus $options call network.wireless notify "$(json_dump)"
125 }
126
127 _wdev_add_variables() {
128 while [ -n "$1" ]; do
129 local var="${1%%=*}"
130 local val="$1"
131 shift
132 [[ "$var" = "$val" ]] && continue
133 val="${val#*=}"
134 json_add_string "$var" "$val"
135 done
136 }
137
138 _wireless_add_vif() {
139 local name="$1"; shift
140 local ifname="$1"; shift
141
142 _wdev_notify_init $CMD_SET_DATA "$name"
143 json_add_string "ifname" "$ifname"
144 _wdev_add_variables "$@"
145 _wdev_notify
146 }
147
148 _wireless_set_up() {
149 _wdev_notify_init $CMD_UP
150 _wdev_notify
151 }
152
153 _wireless_set_data() {
154 _wdev_notify_init $CMD_SET_DATA
155 _wdev_add_variables "$@"
156 _wdev_notify
157 }
158
159 _wireless_add_process() {
160 _wdev_notify_init $CMD_PROCESS_ADD
161 json_add_int pid "$1"
162 json_add_string exe "$2"
163 [ -n "$3" ] && json_add_boolean required 1
164 _wdev_notify
165 }
166
167 _wireless_process_kill_all() {
168 _wdev_notify_init $CMD_PROCESS_KILL_ALL
169 [ -n "$1" ] && json_add_int signal "$1"
170 _wdev_notify
171 }
172
173 _wireless_set_retry() {
174 _wdev_notify_init $CMD_SET_RETRY
175 json_add_int retry "$1"
176 _wdev_notify
177 }
178
179 _wdev_wrapper \
180 wireless_add_vif \
181 wireless_set_up \
182 wireless_set_data \
183 wireless_add_process \
184 wireless_process_kill_all \
185 wireless_set_retry \
186
187 wireless_vif_parse_encryption() {
188 json_get_vars encryption
189 set_default encryption none
190
191 auth_mode_open=1
192 auth_mode_shared=0
193 auth_type=none
194 wpa_pairwise=CCMP
195 case "$encryption" in
196 *tkip+aes|*tkip+ccmp|*aes+tkip|*ccmp+tkip) wpa_pairwise="CCMP TKIP";;
197 *aes|*ccmp) wpa_pairwise="CCMP";;
198 *tkip) wpa_pairwise="TKIP";;
199 esac
200
201 # 802.11n requires CCMP for WPA
202 [ "$enable_ht:$wpa_pairwise" = "1:TKIP" ] && wpa_pairwise="CCMP TKIP"
203
204 # Examples:
205 # psk-mixed/tkip => WPA1+2 PSK, TKIP
206 # wpa-psk2/tkip+aes => WPA2 PSK, CCMP+TKIP
207 # wpa2/tkip+aes => WPA2 RADIUS, CCMP+TKIP
208
209 case "$encryption" in
210 wpa2*|*psk2*)
211 wpa=2
212 ;;
213 *mixed*)
214 wpa=3
215 ;;
216 wpa*|*psk*)
217 wpa=1
218 ;;
219 *)
220 wpa=0
221 wpa_pairwise=
222 ;;
223 esac
224
225 case "$encryption" in
226 *psk*)
227 auth_type=psk
228 ;;
229 *wpa*|*8021x*)
230 auth_type=eap
231 ;;
232 *wep*)
233 auth_type=wep
234 case "$encryption" in
235 *shared*)
236 auth_mode_open=0
237 auth_mode_shared=1
238 ;;
239 *mixed*)
240 auth_mode_shared=1
241 ;;
242 esac
243 ;;
244 esac
245 }
246
247 _get_vif_vars() {
248 # internal use
249 json_get_var _w_type mode
250
251 # for drivers
252 json_get_var network_bridge bridge
253 }
254
255 for_each_interface() {
256 local _w_types="$1"; shift
257 local _w_ifaces _w_iface
258 local _w_type
259 local _w_found
260
261 json_get_keys _w_ifaces interfaces
262 json_select interfaces
263 for _w_iface in $_w_ifaces; do
264 json_select "$_w_iface"
265 if [ -n "$_w_types" ]; then
266 json_select config
267 _get_vif_vars
268 json_select ..
269 _w_types=" $_w_types "
270 [[ "${_w_types%$_w_type*}" = "$_w_types" ]] && {
271 json_select ..
272 continue
273 }
274 fi
275 "$@" "$_w_iface"
276 json_select ..
277 done
278 json_select ..
279 }
280
281 _wdev_common_device_config() {
282 config_add_string channel hwmode
283 }
284
285 _wdev_common_iface_config() {
286 config_add_string mode ssid encryption key
287 }
288
289 init_wireless_driver() {
290 name="$1"; shift
291 cmd="$1"; shift
292
293 case "$cmd" in
294 dump)
295 add_driver() {
296 json_init
297 json_add_string name "$1"
298
299 json_add_array device
300 _wdev_common_device_config
301 eval "drv_$1_init_device_config"
302 json_close_array
303
304 json_add_array iface
305 _wdev_common_iface_config
306 eval "drv_$1_init_iface_config"
307 json_close_array
308
309 json_dump
310 }
311 ;;
312 setup|teardown)
313 interface="$1"; shift
314 data="$1"; shift
315 export __netifd_device="$interface"
316
317 add_driver() {
318 [[ "$name" == "$1" ]] || return 0
319 _wdev_handler "$1" "$cmd"
320 }
321 ;;
322 esac
323 }