freedombone-utils-wifi 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Wifi functions
  12. # License
  13. # =======
  14. #
  15. # Copyright (C) 2015-2016 Bob Mottram <bob@robotics.uk.to>
  16. #
  17. # This program is free software: you can redistribute it and/or modify
  18. # it under the terms of the GNU Affero General Public License as published by
  19. # the Free Software Foundation, either version 3 of the License, or
  20. # (at your option) any later version.
  21. #
  22. # This program is distributed in the hope that it will be useful,
  23. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. # GNU Affero General Public License for more details.
  26. #
  27. # You should have received a copy of the GNU Affero General Public License
  28. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  29. WIFI_CHANNEL=2
  30. WIFI_INTERFACE=wlan0
  31. WIFI_TYPE='wpa2-psk'
  32. WIFI_SSID=
  33. WIFI_PASSPHRASE=
  34. WIFI_HOTSPOT='no'
  35. WIFI_NETWORKS_FILE=~/${PROJECT_NAME}-wifi.cfg
  36. # repo for atheros AR9271 wifi driver
  37. ATHEROS_WIFI_REPO="https://github.com/qca/open-ath9k-htc-firmware.git"
  38. function setup_wifi_atheros {
  39. if [[ $(running_as_root) == "0" ]]; then
  40. return
  41. fi
  42. atheros_drivers_file=drivers/ath9k_htc_driver_bbb.tar.gz
  43. if [ ! -f $atheros_drivers_file ]; then
  44. if [ ! -f ~/freedombone/$atheros_drivers_file ]; then
  45. return
  46. else
  47. atheros_drivers_file=~/freedombone/$atheros_drivers_file
  48. fi
  49. else
  50. atheros_drivers_file=$(pwd)/$atheros_drivers_file
  51. fi
  52. if [ ! -d /lib/firmware ]; then
  53. mkdir /lib/firmware
  54. if [ ! -d /lib/firmware ]; then
  55. return
  56. fi
  57. fi
  58. if [ -f /lib/firmware/htc_9271.fw ]; then
  59. return
  60. fi
  61. curr_dir=$(pwd)
  62. cd /lib/firmware
  63. tar -xzvf $atheros_drivers_file
  64. reset_usb_devices
  65. cd $curr_dir
  66. update_wifi_adaptors
  67. if [ $IFACE ]; then
  68. ifconfig $IFACE down
  69. ifconfig $IFACE up
  70. fi
  71. }
  72. function setup_wifi {
  73. if [[ $SYSTEM_TYPE == "mesh"* ]]; then
  74. return
  75. fi
  76. if [ ! $WIFI_SSID ]; then
  77. return
  78. fi
  79. if [ ${#WIFI_SSID} -lt 2 ]; then
  80. return
  81. fi
  82. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  83. return
  84. fi
  85. HOTSPOT='no'
  86. if [[ $WIFI_HOTSPOT != 'no' ]]; then
  87. HOTSPOT='yes'
  88. fi
  89. if [ -f $WIFI_NETWORKS_FILE ]; then
  90. ${PROJECT_NAME}-wifi --networks $WIFI_NETWORKS_FILE
  91. mark_completed $FUNCNAME
  92. return
  93. fi
  94. if [[ $WIFI_TYPE != 'none' ]]; then
  95. if [ ! $WIFI_PASSPHRASE ]; then
  96. echo $'No wifi passphrase was given'
  97. return
  98. fi
  99. if [ ${#WIFI_PASSPHRASE} -lt 2 ]; then
  100. echo $'Wifi passphrase was too short'
  101. return
  102. fi
  103. ${PROJECT_NAME}-wifi -s $WIFI_SSID -t $WIFI_TYPE -p $WIFI_PASSPHRASE --hotspot $HOTSPOT --networks $WIFI_NETWORKS_FILE
  104. else
  105. ${PROJECT_NAME}-wifi -s $WIFI_SSID -t $WIFI_TYPE --hotspot $HOTSPOT --networks $WIFI_NETWORKS_FILE
  106. fi
  107. mark_completed $FUNCNAME
  108. }
  109. # ath9k_htc driver
  110. function install_atheros_wifi {
  111. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  112. return
  113. fi
  114. if [ $INSTALLING_ON_BBB != "yes" ]; then
  115. return
  116. fi
  117. if [[ $ENABLE_BATMAN != "yes" ]]; then
  118. return
  119. fi
  120. if [ -d $INSTALL_DIR/open-ath9k-htc-firmware ]; then
  121. return
  122. fi
  123. # have drivers already been installed ?
  124. if [ -f /lib/firmware/htc_9271.fw ]; then
  125. return
  126. fi
  127. apt-get -y install build-essential cmake git m4 texinfo
  128. if [ ! -d $INSTALL_DIR ]; then
  129. mkdir -p $INSTALL_DIR
  130. fi
  131. cd $INSTALL_DIR
  132. if [ ! -d $INSTALL_DIR/open-ath9k-htc-firmware ]; then
  133. function_check git_clone
  134. git_clone $ATHEROS_WIFI_REPO $INSTALL_DIR/open-ath9k-htc-firmware
  135. if [ ! "$?" = "0" ]; then
  136. rm -rf $INSTALL_DIR/open-ath9k-htc-firmware
  137. exit 74283
  138. fi
  139. fi
  140. cd $INSTALL_DIR/open-ath9k-htc-firmware
  141. git checkout 1.4.0
  142. make toolchain
  143. if [ ! "$?" = "0" ]; then
  144. rm -rf $INSTALL_DIR/open-ath9k-htc-firmware
  145. exit 24820
  146. fi
  147. make firmware
  148. if [ ! "$?" = "0" ]; then
  149. rm -rf $INSTALL_DIR/open-ath9k-htc-firmware
  150. exit 63412
  151. fi
  152. cp target_firmware/*.fw /lib/firmware/
  153. if [ ! "$?" = "0" ]; then
  154. exit 74681
  155. fi
  156. mark_completed $FUNCNAME
  157. }
  158. function update_wifi_adaptors {
  159. IFACE=
  160. IFACE_SECONDARY=
  161. for i in $(seq 10 -1 0); do
  162. if grep -q "wlan${i}" /proc/net/dev; then
  163. if [ ! $IFACE ]; then
  164. IFACE="wlan${i}"
  165. else
  166. IFACE_SECONDARY="wlan${i}"
  167. return
  168. fi
  169. fi
  170. done
  171. }
  172. function wifi_get_psk {
  173. ssid=$1
  174. passphrase=$2
  175. psk=$(wpa_passphrase "$ssid" "$passphrase" | grep 'psk=' | sed -n 2p | awk -F '=' '{print $2}')
  176. echo $psk
  177. }
  178. function hotspot_off {
  179. if [ ! -f /etc/hostapd/hostapd.conf ]; then
  180. return
  181. fi
  182. systemctl stop hostapd
  183. rm /etc/hostapd/hostapd.conf
  184. if [ -f /etc/network/interfaces_original ]; then
  185. cp /etc/network/interfaces_original /etc/network/interfaces
  186. else
  187. echo '# interfaces(5) file used by ifup(8) and ifdown(8)' > /etc/network/interfaces
  188. echo '# Include files from /etc/network/interfaces.d:' >> /etc/network/interfaces
  189. echo 'source-directory /etc/network/interfaces.d' >> /etc/network/interfaces
  190. fi
  191. systemctl restart network-manager
  192. ifdown $WIFI_INTERFACE
  193. }
  194. function hotspot_on {
  195. if [ ! -f /etc/default/hostapd ]; then
  196. echo $'/etc/default/hostapd was not found'
  197. exit 67241
  198. fi
  199. if [ ${#WIFI_PASSPHRASE} -lt 8 ]; then
  200. echo $'Wifi hotspot passphrase is too short'
  201. exit 25719
  202. fi
  203. sed -i 's|#DAEMON_CONF=.*|DAEMON_CONF="/etc/hostapd/hostapd.conf"|g' /etc/default/hostapd
  204. echo '### Wireless network name ###' > /etc/hostapd/hostapd.conf
  205. echo "interface=$WIFI_INTERFACE" >> /etc/hostapd/hostapd.conf
  206. echo '' >> /etc/hostapd/hostapd.conf
  207. echo '### Set your bridge name ###' >> /etc/hostapd/hostapd.conf
  208. echo 'bridge=br0' >> /etc/hostapd/hostapd.conf
  209. echo '' >> /etc/hostapd/hostapd.conf
  210. echo 'driver=nl80211' >> /etc/hostapd/hostapd.conf
  211. echo "country_code=UK" >> /etc/hostapd/hostapd.conf
  212. echo "ssid=$WIFI_SSID" >> /etc/hostapd/hostapd.conf
  213. echo 'hw_mode=g' >> /etc/hostapd/hostapd.conf
  214. echo 'channel=6' >> /etc/hostapd/hostapd.conf
  215. echo 'wpa=2' >> /etc/hostapd/hostapd.conf
  216. echo "wpa_passphrase=$WIFI_PASSPHRASE" >> /etc/hostapd/hostapd.conf
  217. echo '' >> /etc/hostapd/hostapd.conf
  218. echo '## Key management algorithms ##' >> /etc/hostapd/hostapd.conf
  219. echo 'wpa_key_mgmt=WPA-PSK' >> /etc/hostapd/hostapd.conf
  220. echo '' >> /etc/hostapd/hostapd.conf
  221. echo '## Set cipher suites (encryption algorithms) ##' >> /etc/hostapd/hostapd.conf
  222. echo '## TKIP = Temporal Key Integrity Protocol' >> /etc/hostapd/hostapd.conf
  223. echo '## CCMP = AES in Counter mode with CBC-MAC' >> /etc/hostapd/hostapd.conf
  224. echo 'wpa_pairwise=TKIP' >> /etc/hostapd/hostapd.conf
  225. echo 'rsn_pairwise=CCMP' >> /etc/hostapd/hostapd.conf
  226. echo '' >> /etc/hostapd/hostapd.conf
  227. echo '## Shared Key Authentication ##'
  228. echo 'auth_algs=1' >> /etc/hostapd/hostapd.conf
  229. echo '' >> /etc/hostapd/hostapd.conf
  230. echo '## Accept all MAC address ###' >> /etc/hostapd/hostapd.conf
  231. echo 'macaddr_acl=0' >> /etc/hostapd/hostapd.conf
  232. if [ ! -f /etc/network/interfaces_original ]; then
  233. if ! grep -q "# wifi enabled" /etc/network/interfaces; then
  234. cp /etc/network/interfaces /etc/network/interfaces_original
  235. fi
  236. fi
  237. echo '# wifi enabled' > /etc/network/interfaces
  238. echo 'auto lo br0' >> /etc/network/interfaces
  239. echo 'iface lo inet loopback' >> /etc/network/interfaces
  240. echo '' >> /etc/network/interfaces
  241. echo "# wireless $WIFI_INTERFACE" >> /etc/network/interfaces
  242. echo "allow-hotplug $WIFI_INTERFACE" >> /etc/network/interfaces
  243. echo "iface $WIFI_INTERFACE inet manual" >> /etc/network/interfaces
  244. echo '' >> /etc/network/interfaces
  245. echo '# eth0 connected to the ISP router' >> /etc/network/interfaces
  246. echo 'allow-hotplug eth0' >> /etc/network/interfaces
  247. echo 'iface eth0 inet manual' >> /etc/network/interfaces
  248. echo '' >> /etc/network/interfaces
  249. echo '# Setup bridge' >> /etc/network/interfaces
  250. echo 'iface br0 inet static' >> /etc/network/interfaces
  251. echo " bridge_ports $WIFI_INTERFACE eth0" >> /etc/network/interfaces
  252. systemctl restart network-manager
  253. ifup $WIFI_INTERFACE
  254. systemctl restart hostapd
  255. }
  256. function wifi_wpa2_psk {
  257. ssid=$1
  258. passphrase=$2
  259. if [ ! -f /etc/network/interfaces_original ]; then
  260. if ! grep -q "# wifi enabled" /etc/network/interfaces; then
  261. cp /etc/network/interfaces /etc/network/interfaces_original
  262. fi
  263. fi
  264. echo '# wifi enabled' > /etc/network/interfaces
  265. echo 'auto lo' >> /etc/network/interfaces
  266. echo 'iface lo inet loopback' >> /etc/network/interfaces
  267. echo '' >> /etc/network/interfaces
  268. echo 'allow-hotplug eth0' >> /etc/network/interfaces
  269. echo 'iface eth0 inet dhcp' >> /etc/network/interfaces
  270. echo '' >> /etc/network/interfaces
  271. echo "allow-hotplug ${WIFI_INTERFACE}" >> /etc/network/interfaces
  272. echo "iface ${WIFI_INTERFACE} inet manual" >> /etc/network/interfaces
  273. echo " wpa-roam $WIFI_CONFIG" >> /etc/network/interfaces
  274. echo '' >> /etc/network/interfaces
  275. echo 'iface default inet dhcp' >> /etc/network/interfaces
  276. wpa_passphrase "$ssid" "$passphrase" > $WIFI_CONFIG
  277. systemctl restart network-manager
  278. ifup ${WIFI_INTERFACE}
  279. }
  280. function wifi_none {
  281. ssid=$1
  282. if [ ! -f /etc/network/interfaces_original ]; then
  283. if ! grep -q "# wifi enabled" /etc/network/interfaces; then
  284. cp /etc/network/interfaces /etc/network/interfaces_original
  285. fi
  286. fi
  287. echo '# wifi enabled' > /etc/network/interfaces
  288. echo 'auto lo' >> /etc/network/interfaces
  289. echo 'iface lo inet loopback' >> /etc/network/interfaces
  290. echo '' >> /etc/network/interfaces
  291. echo 'allow-hotplug eth0' >> /etc/network/interfaces
  292. echo 'iface eth0 inet dhcp' >> /etc/network/interfaces
  293. echo '' >> /etc/network/interfaces
  294. echo "allow-hotplug ${WIFI_INTERFACE}" >> /etc/network/interfaces
  295. echo "iface ${WIFI_INTERFACE} inet manual" >> /etc/network/interfaces
  296. echo " wpa-roam $WIFI_CONFIG" >> /etc/network/interfaces
  297. echo '' >> /etc/network/interfaces
  298. echo 'iface default inet dhcp' >> /etc/network/interfaces
  299. echo 'network={' > $WIFI_CONFIG
  300. echo " ssid=\"${ssid}\"" >> $WIFI_CONFIG
  301. echo ' key_mgmt=NONE' >> $WIFI_CONFIG
  302. echo '}' >> $WIFI_CONFIG
  303. systemctl restart network-manager
  304. ifup ${WIFI_INTERFACE}
  305. }
  306. function networks_from_file {
  307. if [ ! -f $WIFI_NETWORKS_FILE ]; then
  308. exit 4
  309. fi
  310. if [[ $(config_param_exists "WIFI_INTERFACE") == "0" ]]; then
  311. exit 5
  312. fi
  313. read_config_param "WIFI_INTERFACE"
  314. if [ ! -f /etc/network/interfaces_original ]; then
  315. if ! grep -q "# wifi enabled" /etc/network/interfaces; then
  316. cp /etc/network/interfaces /etc/network/interfaces_original
  317. fi
  318. fi
  319. echo '# wifi enabled' > /etc/network/interfaces
  320. echo 'auto lo' >> /etc/network/interfaces
  321. echo 'iface lo inet loopback' >> /etc/network/interfaces
  322. echo '' >> /etc/network/interfaces
  323. echo 'allow-hotplug eth0' >> /etc/network/interfaces
  324. echo 'iface eth0 inet dhcp' >> /etc/network/interfaces
  325. echo '' >> /etc/network/interfaces
  326. echo "allow-hotplug ${WIFI_INTERFACE}" >> /etc/network/interfaces
  327. echo "iface ${WIFI_INTERFACE} inet manual" >> /etc/network/interfaces
  328. echo " wpa-roam $WIFI_CONFIG" >> /etc/network/interfaces
  329. echo '' >> /etc/network/interfaces
  330. echo 'iface default inet dhcp' >> /etc/network/interfaces
  331. # remove wpa_supplicant.conf if it exists
  332. if [ -f $WIFI_CONFIG ]; then
  333. rm -f $WIFI_CONFIG
  334. fi
  335. ctr=0
  336. while read -r line
  337. do
  338. if [ ${#line} -gt 1 ]; then
  339. if [[ "$line" != '#'* ]]; then
  340. if [ $ctr -eq 0 ]; then
  341. WIFI_SSID="$line"
  342. fi
  343. if [ $ctr -eq 1 ]; then
  344. WIFI_TYPE="$line"
  345. if [[ $WIFI_TYPE == $'none' || $WIFI_TYPE == $'open' ]]; then
  346. echo 'network={' >> $WIFI_CONFIG
  347. echo " ssid=\"${WIFI_SSID}\"" >> $WIFI_CONFIG
  348. echo ' key_mgmt=NONE' >> $WIFI_CONFIG
  349. echo '}' >> $WIFI_CONFIG
  350. ctr=0
  351. continue
  352. fi
  353. fi
  354. if [ $ctr -eq 2 ]; then
  355. WIFI_PASSPHRASE="$line"
  356. wpa_passphrase "$WIFI_SSID" "$WIFI_PASSPHRASE" >> $WIFI_CONFIG
  357. ctr=0
  358. continue
  359. fi
  360. ctr=$((ctr + 1))
  361. fi
  362. fi
  363. done < $WIFI_NETWORKS_FILE
  364. systemctl restart network-manager
  365. ifup ${WIFI_INTERFACE}
  366. }
  367. function create_networks_interactive {
  368. remove_config_param "WIFI_INTERFACE"
  369. update_wifi_adaptors
  370. if [ ! $IFACE ]; then
  371. # Don't try to configure wifi if there are no adaptors
  372. return
  373. fi
  374. if [ -f $WIFI_NETWORKS_FILE ]; then
  375. rm $WIFI_NETWORKS_FILE
  376. fi
  377. echo $'# Add wifi networks as follows:' > $WIFI_NETWORKS_FILE
  378. echo '#' >> $WIFI_NETWORKS_FILE
  379. echo $'# MySSID' >> $WIFI_NETWORKS_FILE
  380. echo $'# wpa2-psk' >> $WIFI_NETWORKS_FILE
  381. echo $'# myWifiPassphrase' >> $WIFI_NETWORKS_FILE
  382. echo '#' >> $WIFI_NETWORKS_FILE
  383. echo $'# AnotherSSID' >> $WIFI_NETWORKS_FILE
  384. echo $'# none' >> $WIFI_NETWORKS_FILE
  385. echo '#' >> $WIFI_NETWORKS_FILE
  386. wifi_ctr=0
  387. wifi_networks_done=
  388. while [ ! $wifi_networks_done ]
  389. do
  390. data=$(tempfile 2>/dev/null)
  391. trap "rm -f $data" 0 1 2 5 15
  392. dialog --backtitle $"Freedombone Configuration" \
  393. --title $"Wifi Settings ${wifi_ctr}" \
  394. --form $"\nTo use this system via wifi (eg. USB dongle) enter the details below, otherwise just select Ok:" 13 65 4 \
  395. $"SSID:" 1 1 "$WIFI_SSID" 1 24 30 30 \
  396. $"Type (open/wpa2-psk):" 2 1 "$WIFI_TYPE" 2 24 10 10 \
  397. $"Passphrase:" 3 1 "$WIFI_PASSPHRASE" 3 24 50 50 \
  398. 2> $data
  399. sel=$?
  400. case $sel in
  401. 1) return;;
  402. 255) return;;
  403. esac
  404. WIFI_SSID=$(cat $data | sed -n 1p)
  405. WIFI_TYPE=$(cat $data | sed -n 2p)
  406. WIFI_PASSPHRASE=$(cat $data | sed -n 3p)
  407. # if these fields are empty then there are no more wifi networks
  408. if [ ${#WIFI_SSID} -lt 2 ]; then
  409. wifi_networks_done='yes'
  410. continue
  411. fi
  412. if [ ${#WIFI_TYPE} -lt 2 ]; then
  413. wifi_networks_done='yes'
  414. continue
  415. fi
  416. # update the wifi networks file
  417. echo '' >> $WIFI_NETWORKS_FILE
  418. echo "$WIFI_SSID" >> $WIFI_NETWORKS_FILE
  419. echo "$WIFI_TYPE" >> $WIFI_NETWORKS_FILE
  420. if [ ${#WIFI_PASSPHRASE} -gt 1 ]; then
  421. echo "$WIFI_PASSPHRASE" >> $WIFI_NETWORKS_FILE
  422. fi
  423. if [ ${#WIFI_SSID} -gt 1 ]; then
  424. if [ ${#WIFI_TYPE} -gt 1 ]; then
  425. if [[ "${WIFI_TYPE}" == $'none' || "${WIFI_TYPE}" == $'open' ]]; then
  426. write_config_param "WIFI_INTERFACE" "$WIFI_INTERFACE"
  427. return
  428. else
  429. if [ ${#WIFI_PASSPHRASE} -gt 1 ]; then
  430. write_config_param "WIFI_INTERFACE" "$WIFI_INTERFACE"
  431. return
  432. fi
  433. fi
  434. fi
  435. fi
  436. # clear values
  437. WIFI_SSID=
  438. WIFI_PASSPHRASE=
  439. wifi_ctr=$((wifi_ctr + 1))
  440. done
  441. }
  442. function disable_wifi {
  443. if [[ ${1} == 'yes' || ${1} == 'y' ]]; then
  444. hotspot_off
  445. echo '# interfaces(5) file used by ifup(8) and ifdown(8)' > /etc/network/interfaces
  446. echo '# Include files from /etc/network/interfaces.d:' >> /etc/network/interfaces
  447. echo 'source-directory /etc/network/interfaces.d' >> /etc/network/interfaces
  448. systemctl restart network-manager
  449. ifdown ${WIFI_INTERFACE}
  450. else
  451. networks_from_file
  452. fi
  453. }
  454. function count_wlan {
  455. # counts the number of wlan devices
  456. ctr=0
  457. for i in $(seq 0 1 10); do
  458. if grep -q "wlan${i}" /proc/net/dev; then
  459. ctr=$((ctr + 1))
  460. fi
  461. done
  462. echo $ctr
  463. }
  464. # NOTE: deliberately no exit 0