mac80211.sh 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824
  1. #!/bin/sh
  2. . /lib/netifd/netifd-wireless.sh
  3. . /lib/netifd/hostapd.sh
  4. init_wireless_driver "$@"
  5. MP_CONFIG_INT="mesh_retry_timeout mesh_confirm_timeout mesh_holding_timeout mesh_max_peer_links
  6. mesh_max_retries mesh_ttl mesh_element_ttl mesh_hwmp_max_preq_retries
  7. mesh_path_refresh_time mesh_min_discovery_timeout mesh_hwmp_active_path_timeout
  8. mesh_hwmp_preq_min_interval mesh_hwmp_net_diameter_traversal_time mesh_hwmp_rootmode
  9. mesh_hwmp_rann_interval mesh_gate_announcements mesh_sync_offset_max_neighor
  10. mesh_rssi_threshold mesh_hwmp_active_path_to_root_timeout mesh_hwmp_root_interval
  11. mesh_hwmp_confirmation_interval mesh_awake_window mesh_plink_timeout"
  12. MP_CONFIG_BOOL="mesh_auto_open_plinks mesh_fwding"
  13. MP_CONFIG_STRING="mesh_power_mode"
  14. drv_mac80211_init_device_config() {
  15. hostapd_common_add_device_config
  16. config_add_string path phy 'macaddr:macaddr'
  17. config_add_string hwmode
  18. config_add_int beacon_int chanbw frag rts
  19. config_add_int rxantenna txantenna antenna_gain txpower distance
  20. config_add_boolean noscan ht_coex
  21. config_add_array ht_capab
  22. config_add_array channels
  23. config_add_boolean \
  24. rxldpc \
  25. short_gi_80 \
  26. short_gi_160 \
  27. tx_stbc_2by1 \
  28. su_beamformer \
  29. su_beamformee \
  30. mu_beamformer \
  31. mu_beamformee \
  32. vht_txop_ps \
  33. htc_vht \
  34. rx_antenna_pattern \
  35. tx_antenna_pattern
  36. config_add_int vht_max_a_mpdu_len_exp vht_max_mpdu vht_link_adapt vht160 rx_stbc tx_stbc
  37. config_add_boolean \
  38. ldpc \
  39. greenfield \
  40. short_gi_20 \
  41. short_gi_40 \
  42. max_amsdu \
  43. dsss_cck_40
  44. }
  45. drv_mac80211_init_iface_config() {
  46. hostapd_common_add_bss_config
  47. config_add_string 'macaddr:macaddr' ifname
  48. config_add_boolean wds powersave
  49. config_add_int maxassoc
  50. config_add_int max_listen_int
  51. config_add_int dtim_period
  52. config_add_int start_disabled
  53. # mesh
  54. config_add_string mesh_id
  55. config_add_int $MP_CONFIG_INT
  56. config_add_boolean $MP_CONFIG_BOOL
  57. config_add_string $MP_CONFIG_STRING
  58. }
  59. mac80211_add_capabilities() {
  60. local __var="$1"; shift
  61. local __mask="$1"; shift
  62. local __out= oifs
  63. oifs="$IFS"
  64. IFS=:
  65. for capab in "$@"; do
  66. set -- $capab
  67. [ "$(($4))" -gt 0 ] || continue
  68. [ "$(($__mask & $2))" -eq "$((${3:-$2}))" ] || continue
  69. __out="$__out[$1]"
  70. done
  71. IFS="$oifs"
  72. export -n -- "$__var=$__out"
  73. }
  74. mac80211_hostapd_setup_base() {
  75. local phy="$1"
  76. json_select config
  77. [ "$auto_channel" -gt 0 ] && channel=acs_survey
  78. [ "$auto_channel" -gt 0 ] && json_get_values channel_list channels
  79. json_get_vars noscan ht_coex
  80. json_get_values ht_capab_list ht_capab
  81. ieee80211n=1
  82. ht_capab=
  83. case "$htmode" in
  84. VHT20|HT20) ;;
  85. HT40*|VHT40|VHT80|VHT160)
  86. case "$hwmode" in
  87. a)
  88. case "$(( ($channel / 4) % 2 ))" in
  89. 1) ht_capab="[HT40+]";;
  90. 0) ht_capab="[HT40-]";;
  91. esac
  92. ;;
  93. *)
  94. case "$htmode" in
  95. HT40+) ht_capab="[HT40+]";;
  96. HT40-) ht_capab="[HT40-]";;
  97. *)
  98. if [ "$channel" -lt 7 ]; then
  99. ht_capab="[HT40+]"
  100. else
  101. ht_capab="[HT40-]"
  102. fi
  103. ;;
  104. esac
  105. ;;
  106. esac
  107. [ "$auto_channel" -gt 0 ] && ht_capab="[HT40+]"
  108. ;;
  109. *) ieee80211n= ;;
  110. esac
  111. [ -n "$ieee80211n" ] && {
  112. append base_cfg "ieee80211n=1" "$N"
  113. set_default ht_coex 0
  114. append base_cfg "ht_coex=$ht_coex" "$N"
  115. json_get_vars \
  116. ldpc:1 \
  117. greenfield:0 \
  118. short_gi_20:1 \
  119. short_gi_40:1 \
  120. tx_stbc:1 \
  121. rx_stbc:3 \
  122. max_amsdu:1 \
  123. dsss_cck_40:1
  124. ht_cap_mask=0
  125. for cap in $(iw phy "$phy" info | grep 'Capabilities:' | cut -d: -f2); do
  126. ht_cap_mask="$(($ht_cap_mask | $cap))"
  127. done
  128. cap_rx_stbc=$((($ht_cap_mask >> 8) & 3))
  129. [ "$rx_stbc" -lt "$cap_rx_stbc" ] && cap_rx_stbc="$rx_stbc"
  130. ht_cap_mask="$(( ($ht_cap_mask & ~(0x300)) | ($cap_rx_stbc << 8) ))"
  131. mac80211_add_capabilities ht_capab_flags $ht_cap_mask \
  132. LDPC:0x1::$ldpc \
  133. GF:0x10::$greenfield \
  134. SHORT-GI-20:0x20::$short_gi_20 \
  135. SHORT-GI-40:0x40::$short_gi_40 \
  136. TX-STBC:0x80::$tx_stbc \
  137. RX-STBC1:0x300:0x100:1 \
  138. RX-STBC12:0x300:0x200:1 \
  139. RX-STBC123:0x300:0x300:1 \
  140. MAX-AMSDU-7935:0x800::$max_amsdu \
  141. DSSS_CCK-40:0x1000::$dsss_cck_40
  142. ht_capab="$ht_capab$ht_capab_flags"
  143. [ -n "$ht_capab" ] && append base_cfg "ht_capab=$ht_capab" "$N"
  144. }
  145. # 802.11ac
  146. enable_ac=0
  147. idx="$channel"
  148. case "$htmode" in
  149. VHT20) enable_ac=1;;
  150. VHT40)
  151. case "$(( ($channel / 4) % 2 ))" in
  152. 1) idx=$(($channel + 2));;
  153. 0) idx=$(($channel - 2));;
  154. esac
  155. enable_ac=1
  156. append base_cfg "vht_oper_chwidth=0" "$N"
  157. append base_cfg "vht_oper_centr_freq_seg0_idx=$idx" "$N"
  158. ;;
  159. VHT80)
  160. case "$(( ($channel / 4) % 4 ))" in
  161. 1) idx=$(($channel + 6));;
  162. 2) idx=$(($channel + 2));;
  163. 3) idx=$(($channel - 2));;
  164. 0) idx=$(($channel - 6));;
  165. esac
  166. enable_ac=1
  167. append base_cfg "vht_oper_chwidth=1" "$N"
  168. append base_cfg "vht_oper_centr_freq_seg0_idx=$idx" "$N"
  169. ;;
  170. VHT160)
  171. case "$channel" in
  172. 36|40|44|48|52|56|60|64) idx=50;;
  173. 100|104|108|112|116|120|124|128) idx=114;;
  174. esac
  175. enable_ac=1
  176. append base_cfg "vht_oper_chwidth=2" "$N"
  177. append base_cfg "vht_oper_centr_freq_seg0_idx=$idx" "$N"
  178. ;;
  179. esac
  180. if [ "$enable_ac" != "0" ]; then
  181. json_get_vars \
  182. rxldpc:1 \
  183. short_gi_80:1 \
  184. short_gi_160:1 \
  185. tx_stbc_2by1:1 \
  186. su_beamformer:1 \
  187. su_beamformee:1 \
  188. mu_beamformer:1 \
  189. mu_beamformee:1 \
  190. vht_txop_ps:1 \
  191. htc_vht:1 \
  192. rx_antenna_pattern:1 \
  193. tx_antenna_pattern:1 \
  194. vht_max_a_mpdu_len_exp:7 \
  195. vht_max_mpdu:11454 \
  196. rx_stbc:4 \
  197. vht_link_adapt:3 \
  198. vht160:2
  199. append base_cfg "ieee80211ac=1" "$N"
  200. vht_cap=0
  201. for cap in $(iw phy "$phy" info | awk -F "[()]" '/VHT Capabilities/ { print $2 }'); do
  202. vht_cap="$(($vht_cap | $cap))"
  203. done
  204. cap_rx_stbc=$((($vht_cap >> 8) & 7))
  205. [ "$rx_stbc" -lt "$cap_rx_stbc" ] && cap_rx_stbc="$rx_stbc"
  206. vht_cap="$(( ($vht_cap & ~(0x700)) | ($cap_rx_stbc << 8) ))"
  207. mac80211_add_capabilities vht_capab $vht_cap \
  208. RXLDPC:0x10::$rxldpc \
  209. SHORT-GI-80:0x20::$short_gi_80 \
  210. SHORT-GI-160:0x40::$short_gi_160 \
  211. TX-STBC-2BY1:0x80::$tx_stbc_2by1 \
  212. SU-BEAMFORMER:0x800::$su_beamformer \
  213. SU-BEAMFORMEE:0x1000::$su_beamformee \
  214. MU-BEAMFORMER:0x80000::$mu_beamformer \
  215. MU-BEAMFORMEE:0x100000::$mu_beamformee \
  216. VHT-TXOP-PS:0x200000::$vht_txop_ps \
  217. HTC-VHT:0x400000::$htc_vht \
  218. RX-ANTENNA-PATTERN:0x10000000::$rx_antenna_pattern \
  219. TX-ANTENNA-PATTERN:0x20000000::$tx_antenna_pattern \
  220. RX-STBC-1:0x700:0x100:1 \
  221. RX-STBC-12:0x700:0x200:1 \
  222. RX-STBC-123:0x700:0x300:1 \
  223. RX-STBC-1234:0x700:0x400:1 \
  224. # supported Channel widths
  225. vht160_hw=0
  226. [ "$(($vht_cap & 12))" -eq 4 -a 1 -le "$vht160" ] && \
  227. vht160_hw=1
  228. [ "$(($vht_cap & 12))" -eq 8 -a 2 -le "$vht160" ] && \
  229. vht160_hw=2
  230. [ "$vht160_hw" = 1 ] && vht_capab="$vht_capab[VHT160]"
  231. [ "$vht160_hw" = 2 ] && vht_capab="$vht_capab[VHT160-80PLUS80]"
  232. # maximum MPDU length
  233. vht_max_mpdu_hw=3895
  234. [ "$(($vht_cap & 3))" -ge 1 -a 7991 -le "$vht_max_mpdu" ] && \
  235. vht_max_mpdu_hw=7991
  236. [ "$(($vht_cap & 3))" -ge 2 -a 11454 -le "$vht_max_mpdu" ] && \
  237. vht_max_mpdu_hw=11454
  238. [ "$vht_max_mpdu_hw" != 3895 ] && \
  239. vht_capab="$vht_capab[MAX-MPDU-$vht_max_mpdu_hw]"
  240. # maximum A-MPDU length exponent
  241. vht_max_a_mpdu_len_exp_hw=0
  242. [ "$(($vht_cap & 58720256))" -ge 8388608 -a 1 -le "$vht_max_a_mpdu_len_exp" ] && \
  243. vht_max_a_mpdu_len_exp_hw=1
  244. [ "$(($vht_cap & 58720256))" -ge 16777216 -a 2 -le "$vht_max_a_mpdu_len_exp" ] && \
  245. vht_max_a_mpdu_len_exp_hw=2
  246. [ "$(($vht_cap & 58720256))" -ge 25165824 -a 3 -le "$vht_max_a_mpdu_len_exp" ] && \
  247. vht_max_a_mpdu_len_exp_hw=3
  248. [ "$(($vht_cap & 58720256))" -ge 33554432 -a 4 -le "$vht_max_a_mpdu_len_exp" ] && \
  249. vht_max_a_mpdu_len_exp_hw=4
  250. [ "$(($vht_cap & 58720256))" -ge 41943040 -a 5 -le "$vht_max_a_mpdu_len_exp" ] && \
  251. vht_max_a_mpdu_len_exp_hw=5
  252. [ "$(($vht_cap & 58720256))" -ge 50331648 -a 6 -le "$vht_max_a_mpdu_len_exp" ] && \
  253. vht_max_a_mpdu_len_exp_hw=6
  254. [ "$(($vht_cap & 58720256))" -ge 58720256 -a 7 -le "$vht_max_a_mpdu_len_exp" ] && \
  255. vht_max_a_mpdu_len_exp_hw=7
  256. vht_capab="$vht_capab[MAX-A-MPDU-LEN-EXP$vht_max_a_mpdu_len_exp_hw]"
  257. # whether or not the STA supports link adaptation using VHT variant
  258. vht_link_adapt_hw=0
  259. [ "$(($vht_cap & 201326592))" -ge 134217728 -a 2 -le "$vht_link_adapt" ] && \
  260. vht_link_adapt_hw=2
  261. [ "$(($vht_cap & 201326592))" -ge 201326592 -a 3 -le "$vht_link_adapt" ] && \
  262. vht_link_adapt_hw=3
  263. [ "$vht_link_adapt_hw" != 0 ] && \
  264. vht_capab="$vht_capab[VHT-LINK-ADAPT-$vht_link_adapt_hw]"
  265. [ -n "$vht_capab" ] && append base_cfg "vht_capab=$vht_capab" "$N"
  266. fi
  267. hostapd_prepare_device_config "$hostapd_conf_file" nl80211
  268. cat >> "$hostapd_conf_file" <<EOF
  269. ${channel:+channel=$channel}
  270. ${channel_list:+chanlist=$channel_list}
  271. ${noscan:+noscan=$noscan}
  272. $base_cfg
  273. EOF
  274. json_select ..
  275. }
  276. mac80211_hostapd_setup_bss() {
  277. local phy="$1"
  278. local ifname="$2"
  279. local macaddr="$3"
  280. local type="$4"
  281. hostapd_cfg=
  282. append hostapd_cfg "$type=$ifname" "$N"
  283. hostapd_set_bss_options hostapd_cfg "$vif" || return 1
  284. json_get_vars wds dtim_period max_listen_int start_disabled
  285. set_default wds 0
  286. set_default start_disabled 0
  287. [ "$wds" -gt 0 ] && append hostapd_cfg "wds_sta=1" "$N"
  288. [ "$staidx" -gt 0 -o "$start_disabled" -eq 1 ] && append hostapd_cfg "start_disabled=1" "$N"
  289. cat >> /var/run/hostapd-$phy.conf <<EOF
  290. $hostapd_cfg
  291. bssid=$macaddr
  292. ${dtim_period:+dtim_period=$dtim_period}
  293. ${max_listen_int:+max_listen_interval=$max_listen_int}
  294. EOF
  295. }
  296. mac80211_get_addr() {
  297. local phy="$1"
  298. local idx="$(($2 + 1))"
  299. head -n $(($macidx + 1)) /sys/class/ieee80211/${phy}/addresses | tail -n1
  300. }
  301. mac80211_generate_mac() {
  302. local phy="$1"
  303. local id="${macidx:-0}"
  304. local ref="$(cat /sys/class/ieee80211/${phy}/macaddress)"
  305. local mask="$(cat /sys/class/ieee80211/${phy}/address_mask)"
  306. [ "$mask" = "00:00:00:00:00:00" ] && {
  307. mask="ff:ff:ff:ff:ff:ff";
  308. [ "$(wc -l < /sys/class/ieee80211/${phy}/addresses)" -gt 1 ] && {
  309. addr="$(mac80211_get_addr "$phy" "$id")"
  310. [ -n "$addr" ] && {
  311. echo "$addr"
  312. return
  313. }
  314. }
  315. }
  316. local oIFS="$IFS"; IFS=":"; set -- $mask; IFS="$oIFS"
  317. local mask1=$1
  318. local mask6=$6
  319. local oIFS="$IFS"; IFS=":"; set -- $ref; IFS="$oIFS"
  320. macidx=$(($id + 1))
  321. [ "$((0x$mask1))" -gt 0 ] && {
  322. b1="0x$1"
  323. [ "$id" -gt 0 ] && \
  324. b1=$(($b1 ^ ((($id - 1) << 2) | 0x2)))
  325. printf "%02x:%s:%s:%s:%s:%s" $b1 $2 $3 $4 $5 $6
  326. return
  327. }
  328. [ "$((0x$mask6))" -lt 255 ] && {
  329. printf "%s:%s:%s:%s:%s:%02x" $1 $2 $3 $4 $5 $(( 0x$6 ^ $id ))
  330. return
  331. }
  332. off2=$(( (0x$6 + $id) / 0x100 ))
  333. printf "%s:%s:%s:%s:%02x:%02x" \
  334. $1 $2 $3 $4 \
  335. $(( (0x$5 + $off2) % 0x100 )) \
  336. $(( (0x$6 + $id) % 0x100 ))
  337. }
  338. find_phy() {
  339. [ -n "$phy" -a -d /sys/class/ieee80211/$phy ] && return 0
  340. [ -n "$path" ] && {
  341. for phy in $(ls /sys/class/ieee80211 2>/dev/null); do
  342. case "$(readlink -f /sys/class/ieee80211/$phy/device)" in
  343. *$path) return 0;;
  344. esac
  345. done
  346. }
  347. [ -n "$macaddr" ] && {
  348. for phy in $(ls /sys/class/ieee80211 2>/dev/null); do
  349. grep -i -q "$macaddr" "/sys/class/ieee80211/${phy}/macaddress" && return 0
  350. done
  351. }
  352. return 1
  353. }
  354. mac80211_check_ap() {
  355. has_ap=1
  356. }
  357. mac80211_iw_interface_add() {
  358. local phy="$1"
  359. local ifname="$2"
  360. local type="$3"
  361. local wdsflag="$4"
  362. local rc
  363. iw phy "$phy" interface add "$ifname" type "$type" $wdsflag
  364. rc="$?"
  365. [ "$rc" = 233 ] && {
  366. # Device might have just been deleted, give the kernel some time to finish cleaning it up
  367. sleep 1
  368. iw phy "$phy" interface add "$ifname" type "$type" $wdsflag
  369. rc="$?"
  370. }
  371. [ "$rc" = 233 ] && {
  372. # Device might not support virtual interfaces, so the interface never got deleted in the first place.
  373. # Check if the interface already exists, and avoid failing in this case.
  374. ip link show dev "$ifname" >/dev/null 2>/dev/null && rc=0
  375. }
  376. [ "$rc" != 0 ] && wireless_setup_failed INTERFACE_CREATION_FAILED
  377. return $rc
  378. }
  379. mac80211_prepare_vif() {
  380. json_select config
  381. json_get_vars ifname mode ssid wds powersave macaddr
  382. [ -n "$ifname" ] || ifname="wlan${phy#phy}${if_idx:+-$if_idx}"
  383. if_idx=$((${if_idx:-0} + 1))
  384. set_default wds 0
  385. set_default powersave 0
  386. json_select ..
  387. [ -n "$macaddr" ] || {
  388. macaddr="$(mac80211_generate_mac $phy)"
  389. macidx="$(($macidx + 1))"
  390. }
  391. json_add_object data
  392. json_add_string ifname "$ifname"
  393. json_close_object
  394. json_select config
  395. # It is far easier to delete and create the desired interface
  396. case "$mode" in
  397. adhoc)
  398. mac80211_iw_interface_add "$phy" "$ifname" adhoc || return
  399. ;;
  400. ap)
  401. # Hostapd will handle recreating the interface and
  402. # subsequent virtual APs belonging to the same PHY
  403. if [ -n "$hostapd_ctrl" ]; then
  404. type=bss
  405. else
  406. type=interface
  407. fi
  408. mac80211_hostapd_setup_bss "$phy" "$ifname" "$macaddr" "$type" || return
  409. [ -n "$hostapd_ctrl" ] || {
  410. mac80211_iw_interface_add "$phy" "$ifname" __ap || return
  411. hostapd_ctrl="${hostapd_ctrl:-/var/run/hostapd/$ifname}"
  412. }
  413. ;;
  414. mesh)
  415. mac80211_iw_interface_add "$phy" "$ifname" mp || return
  416. ;;
  417. monitor)
  418. mac80211_iw_interface_add "$phy" "$ifname" monitor || return
  419. ;;
  420. sta)
  421. local wdsflag=
  422. staidx="$(($staidx + 1))"
  423. [ "$wds" -gt 0 ] && wdsflag="4addr on"
  424. mac80211_iw_interface_add "$phy" "$ifname" managed "$wdsflag" || return
  425. [ "$powersave" -gt 0 ] && powersave="on" || powersave="off"
  426. iw "$ifname" set power_save "$powersave"
  427. ;;
  428. esac
  429. case "$mode" in
  430. monitor|mesh)
  431. [ "$auto_channel" -gt 0 ] || iw dev "$ifname" set channel "$channel" $htmode
  432. ;;
  433. esac
  434. if [ "$mode" != "ap" ]; then
  435. # ALL ap functionality will be passed to hostapd
  436. # All interfaces must have unique mac addresses
  437. # which can either be explicitly set in the device
  438. # section, or automatically generated
  439. ip link set dev "$ifname" address "$macaddr"
  440. fi
  441. json_select ..
  442. }
  443. mac80211_setup_supplicant() {
  444. wpa_supplicant_prepare_interface "$ifname" nl80211 || return 1
  445. wpa_supplicant_add_network "$ifname"
  446. wpa_supplicant_run "$ifname" ${hostapd_ctrl:+-H $hostapd_ctrl}
  447. }
  448. mac80211_setup_supplicant_noctl() {
  449. wpa_supplicant_prepare_interface "$ifname" nl80211 || return 1
  450. wpa_supplicant_add_network "$ifname" "$freq" "$htmode"
  451. wpa_supplicant_run "$ifname"
  452. }
  453. mac80211_setup_adhoc_htmode() {
  454. case "$htmode" in
  455. VHT20|HT20) ibss_htmode=HT20;;
  456. HT40*|VHT40|VHT160)
  457. case "$hwmode" in
  458. a)
  459. case "$(( ($channel / 4) % 2 ))" in
  460. 1) ibss_htmode="HT40+" ;;
  461. 0) ibss_htmode="HT40-";;
  462. esac
  463. ;;
  464. *)
  465. case "$htmode" in
  466. HT40+) ibss_htmode="HT40+";;
  467. HT40-) ibss_htmode="HT40-";;
  468. *)
  469. if [ "$channel" -lt 7 ]; then
  470. ibss_htmode="HT40+"
  471. else
  472. ibss_htmode="HT40-"
  473. fi
  474. ;;
  475. esac
  476. ;;
  477. esac
  478. [ "$auto_channel" -gt 0 ] && ibss_htmode="HT40+"
  479. ;;
  480. VHT80)
  481. ibss_htmode="80MHZ"
  482. ;;
  483. NONE|NOHT)
  484. ibss_htmode="NOHT"
  485. ;;
  486. *) ibss_htmode="" ;;
  487. esac
  488. }
  489. mac80211_setup_adhoc() {
  490. json_get_vars bssid ssid key mcast_rate
  491. keyspec=
  492. [ "$auth_type" = "wep" ] && {
  493. set_default key 1
  494. case "$key" in
  495. [1234])
  496. local idx
  497. for idx in 1 2 3 4; do
  498. json_get_var ikey "key$idx"
  499. [ -n "$ikey" ] && {
  500. ikey="$(($idx - 1)):$(prepare_key_wep "$ikey")"
  501. [ $idx -eq $key ] && ikey="d:$ikey"
  502. append keyspec "$ikey"
  503. }
  504. done
  505. ;;
  506. *)
  507. append keyspec "d:0:$(prepare_key_wep "$key")"
  508. ;;
  509. esac
  510. }
  511. brstr=
  512. for br in $basic_rate_list; do
  513. wpa_supplicant_add_rate brstr "$br"
  514. done
  515. mcval=
  516. [ -n "$mcast_rate" ] && wpa_supplicant_add_rate mcval "$mcast_rate"
  517. iw dev "$ifname" ibss join "$ssid" $freq $ibss_htmode fixed-freq $bssid \
  518. beacon-interval $beacon_int \
  519. ${brstr:+basic-rates $brstr} \
  520. ${mcval:+mcast-rate $mcval} \
  521. ${keyspec:+keys $keyspec}
  522. }
  523. mac80211_setup_vif() {
  524. local name="$1"
  525. local failed
  526. json_select data
  527. json_get_vars ifname
  528. json_select ..
  529. json_select config
  530. json_get_vars mode
  531. json_get_var vif_txpower txpower
  532. ip link set dev "$ifname" up || {
  533. wireless_setup_vif_failed IFUP_ERROR
  534. json_select ..
  535. return
  536. }
  537. set_default vif_txpower "$txpower"
  538. [ -z "$vif_txpower" ] || iw dev "$ifname" set txpower fixed "${vif_txpower%%.*}00"
  539. case "$mode" in
  540. mesh)
  541. json_get_vars key
  542. if [ -n "$key" ]; then
  543. wireless_vif_parse_encryption
  544. freq="$(get_freq "$phy" "$channel")"
  545. mac80211_setup_supplicant_noctl || failed=1
  546. else
  547. json_get_vars mesh_id mcast_rate
  548. mcval=
  549. [ -n "$mcast_rate" ] && wpa_supplicant_add_rate mcval "$mcast_rate"
  550. case "$htmode" in
  551. VHT20|HT20) mesh_htmode=HT20;;
  552. HT40*|VHT40)
  553. case "$hwmode" in
  554. a)
  555. case "$(( ($channel / 4) % 2 ))" in
  556. 1) mesh_htmode="HT40+" ;;
  557. 0) mesh_htmode="HT40-";;
  558. esac
  559. ;;
  560. *)
  561. case "$htmode" in
  562. HT40+) mesh_htmode="HT40+";;
  563. HT40-) mesh_htmode="HT40-";;
  564. *)
  565. if [ "$channel" -lt 7 ]; then
  566. mesh_htmode="HT40+"
  567. else
  568. mesh_htmode="HT40-"
  569. fi
  570. ;;
  571. esac
  572. ;;
  573. esac
  574. ;;
  575. VHT80)
  576. mesh_htmode="80Mhz"
  577. ;;
  578. VHT160)
  579. mesh_htmode="160Mhz"
  580. ;;
  581. *) mesh_htmode="NOHT" ;;
  582. esac
  583. freq="$(get_freq "$phy" "$channel")"
  584. iw dev "$ifname" mesh join "$mesh_id" freq $freq $mesh_htmode \
  585. ${mcval:+mcast-rate $mcval} \
  586. beacon-interval $beacon_int
  587. fi
  588. for var in $MP_CONFIG_INT $MP_CONFIG_BOOL $MP_CONFIG_STRING; do
  589. json_get_var mp_val "$var"
  590. [ -n "$mp_val" ] && iw dev "$ifname" set mesh_param "$var" "$mp_val"
  591. done
  592. ;;
  593. adhoc)
  594. wireless_vif_parse_encryption
  595. mac80211_setup_adhoc_htmode
  596. if [ "$wpa" -gt 0 -o "$auto_channel" -gt 0 ]; then
  597. freq="$(get_freq "$phy" "$channel")"
  598. mac80211_setup_supplicant_noctl || failed=1
  599. else
  600. mac80211_setup_adhoc
  601. fi
  602. ;;
  603. sta)
  604. mac80211_setup_supplicant || failed=1
  605. ;;
  606. esac
  607. json_select ..
  608. [ -n "$failed" ] || wireless_add_vif "$name" "$ifname"
  609. }
  610. get_freq() {
  611. local phy="$1"
  612. local chan="$2"
  613. iw "$phy" info | grep -E -m1 "(\* ${chan:-....} MHz${chan:+|\\[$chan\\]})" | grep MHz | awk '{print $2}'
  614. }
  615. mac80211_interface_cleanup() {
  616. local phy="$1"
  617. for wdev in $(list_phy_interfaces "$phy"); do
  618. ip link set dev "$wdev" down 2>/dev/null
  619. iw dev "$wdev" del
  620. done
  621. }
  622. drv_mac80211_cleanup() {
  623. hostapd_common_cleanup
  624. }
  625. drv_mac80211_setup() {
  626. json_select config
  627. json_get_vars \
  628. phy macaddr path \
  629. country chanbw distance \
  630. txpower antenna_gain \
  631. rxantenna txantenna \
  632. frag rts beacon_int:100 htmode
  633. json_get_values basic_rate_list basic_rate
  634. json_select ..
  635. find_phy || {
  636. echo "Could not find PHY for device '$1'"
  637. wireless_set_retry 0
  638. return 1
  639. }
  640. wireless_set_data phy="$phy"
  641. mac80211_interface_cleanup "$phy"
  642. # convert channel to frequency
  643. [ "$auto_channel" -gt 0 ] || freq="$(get_freq "$phy" "$channel")"
  644. [ -n "$country" ] && {
  645. iw reg get | grep -q "^country $country:" || {
  646. iw reg set "$country"
  647. sleep 1
  648. }
  649. }
  650. hostapd_conf_file="/var/run/hostapd-$phy.conf"
  651. no_ap=1
  652. macidx=0
  653. staidx=0
  654. [ -n "$chanbw" ] && {
  655. for file in /sys/kernel/debug/ieee80211/$phy/ath9k/chanbw /sys/kernel/debug/ieee80211/$phy/ath5k/bwmode; do
  656. [ -f "$file" ] && echo "$chanbw" > "$file"
  657. done
  658. }
  659. set_default rxantenna all
  660. set_default txantenna all
  661. set_default distance 0
  662. set_default antenna_gain 0
  663. iw phy "$phy" set antenna $txantenna $rxantenna >/dev/null 2>&1
  664. iw phy "$phy" set antenna_gain $antenna_gain
  665. iw phy "$phy" set distance "$distance"
  666. [ -n "$frag" ] && iw phy "$phy" set frag "${frag%%.*}"
  667. [ -n "$rts" ] && iw phy "$phy" set rts "${rts%%.*}"
  668. has_ap=
  669. hostapd_ctrl=
  670. for_each_interface "ap" mac80211_check_ap
  671. rm -f "$hostapd_conf_file"
  672. [ -n "$has_ap" ] && mac80211_hostapd_setup_base "$phy"
  673. for_each_interface "sta adhoc mesh monitor" mac80211_prepare_vif
  674. for_each_interface "ap" mac80211_prepare_vif
  675. [ -n "$hostapd_ctrl" ] && {
  676. /usr/sbin/hostapd -s -P /var/run/wifi-$phy.pid -B "$hostapd_conf_file"
  677. ret="$?"
  678. wireless_add_process "$(cat /var/run/wifi-$phy.pid)" "/usr/sbin/hostapd" 1
  679. [ "$ret" != 0 ] && {
  680. wireless_setup_failed HOSTAPD_START_FAILED
  681. return
  682. }
  683. }
  684. for_each_interface "ap sta adhoc mesh monitor" mac80211_setup_vif
  685. wireless_set_up
  686. }
  687. list_phy_interfaces() {
  688. local phy="$1"
  689. if [ -d "/sys/class/ieee80211/${phy}/device/net" ]; then
  690. ls "/sys/class/ieee80211/${phy}/device/net" 2>/dev/null;
  691. else
  692. ls "/sys/class/ieee80211/${phy}/device" 2>/dev/null | grep net: | sed -e 's,net:,,g'
  693. fi
  694. }
  695. drv_mac80211_teardown() {
  696. wireless_process_kill_all
  697. json_select data
  698. json_get_vars phy
  699. json_select ..
  700. mac80211_interface_cleanup "$phy"
  701. }
  702. add_driver mac80211