freedombone-utils-wifi 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  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@freedombone.net>
  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 default_network_config {
  39. echo '# This file describes the network interfaces available on your system' > /etc/network/interfaces
  40. echo '# and how to activate them. For more information, see interfaces(5).' >> /etc/network/interfaces
  41. echo 'source /etc/network/interfaces.d/*' >> /etc/network/interfaces
  42. }
  43. # Debian stretch has a problem where the formerly predictable wlan0 and eth0
  44. # device names get assigned random names. This is a hacky workaround.
  45. # Also adding net.ifnames=0 to kernel options on bootloader may work.
  46. function enable_predictable_device_names {
  47. test_predictable=$(ls -la /etc/udev/rules.d/80-net-setup-link.rules)
  48. if [[ "$test_predictable" != *"/dev/null" ]]; then
  49. ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules
  50. update-initramfs -u
  51. fi
  52. }
  53. function wifi_is_running {
  54. wifi_state=$(wpa_cli status)
  55. if [[ "$wifi_state" == *"COMPLETED"* ]]; then
  56. echo "1"
  57. else
  58. echo "0"
  59. fi
  60. }
  61. function wifi_static_network_interface {
  62. NETWORK_IS_STATIC=0
  63. read_config_param "NETWORK_IS_STATIC"
  64. if [ ${NETWORK_IS_STATIC} -eq 0 ]; then
  65. echo '#this line must always be here' > /etc/network/interfaces.d/static
  66. echo 'iface default inet dhcp' >> /etc/network/interfaces.d/static
  67. else
  68. read_config_param "LOCAL_NETWORK_STATIC_IP_ADDRESS"
  69. read_config_param "ROUTER_IP_ADDRESS"
  70. echo 'iface default inet static' > /etc/network/interfaces.d/static
  71. echo " address ${LOCAL_NETWORK_STATIC_IP_ADDRESS}" >> /etc/network/interfaces.d/static
  72. echo ' netmask 255.255.255.0' >> /etc/network/interfaces.d/static
  73. echo " gateway ${ROUTER_IP_ADDRESS}" >> /etc/network/interfaces.d/static
  74. fi
  75. }
  76. function setup_wifi_atheros {
  77. if [[ $(running_as_root) == "0" ]]; then
  78. return
  79. fi
  80. atheros_drivers_file=drivers/ath9k_htc_driver_bbb.tar.gz
  81. if [ ! -f $atheros_drivers_file ]; then
  82. if [ ! -f ~/freedombone/$atheros_drivers_file ]; then
  83. return
  84. else
  85. atheros_drivers_file=~/freedombone/$atheros_drivers_file
  86. fi
  87. else
  88. atheros_drivers_file=$(pwd)/$atheros_drivers_file
  89. fi
  90. if [ ! -d /lib/firmware ]; then
  91. mkdir /lib/firmware
  92. if [ ! -d /lib/firmware ]; then
  93. return
  94. fi
  95. fi
  96. if [ -f /lib/firmware/htc_9271.fw ]; then
  97. return
  98. fi
  99. curr_dir=$(pwd)
  100. cd /lib/firmware
  101. tar -xzvf $atheros_drivers_file
  102. reset_usb_devices
  103. cd $curr_dir
  104. update_wifi_adaptors
  105. if [ $IFACE ]; then
  106. wpa_action ${IFACE} stop
  107. wpa_cli -i ${IFACE} terminate
  108. #ifconfig $IFACE up
  109. ifup $IFACE
  110. fi
  111. }
  112. function setup_wifi {
  113. if [[ $SYSTEM_TYPE == "mesh"* ]]; then
  114. return
  115. fi
  116. if [ ! $WIFI_SSID ]; then
  117. return
  118. fi
  119. if [ ${#WIFI_SSID} -lt 2 ]; then
  120. return
  121. fi
  122. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  123. return
  124. fi
  125. HOTSPOT='no'
  126. if [[ $WIFI_HOTSPOT != 'no' ]]; then
  127. HOTSPOT='yes'
  128. fi
  129. if [ -f $WIFI_NETWORKS_FILE ]; then
  130. ${PROJECT_NAME}-wifi --networks $WIFI_NETWORKS_FILE
  131. mark_completed $FUNCNAME
  132. return
  133. fi
  134. if [[ $WIFI_TYPE != 'none' ]]; then
  135. if [ ! $WIFI_PASSPHRASE ]; then
  136. echo $'No wifi passphrase was given'
  137. return
  138. fi
  139. if [ ${#WIFI_PASSPHRASE} -lt 2 ]; then
  140. echo $'Wifi passphrase was too short'
  141. return
  142. fi
  143. ${PROJECT_NAME}-wifi -s $WIFI_SSID -t $WIFI_TYPE -p $WIFI_PASSPHRASE --hotspot $HOTSPOT --networks $WIFI_NETWORKS_FILE
  144. else
  145. ${PROJECT_NAME}-wifi -s $WIFI_SSID -t $WIFI_TYPE --hotspot $HOTSPOT --networks $WIFI_NETWORKS_FILE
  146. fi
  147. mark_completed $FUNCNAME
  148. }
  149. # ath9k_htc driver
  150. function install_atheros_wifi {
  151. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  152. return
  153. fi
  154. if [ $INSTALLING_ON_BBB != "yes" ]; then
  155. return
  156. fi
  157. if [[ $ENABLE_BATMAN != "yes" ]]; then
  158. return
  159. fi
  160. if [ -d $INSTALL_DIR/open-ath9k-htc-firmware ]; then
  161. return
  162. fi
  163. # have drivers already been installed ?
  164. if [ -f /lib/firmware/htc_9271.fw ]; then
  165. return
  166. fi
  167. apt-get -yq install build-essential cmake git m4 texinfo
  168. if [ ! -d $INSTALL_DIR ]; then
  169. mkdir -p $INSTALL_DIR
  170. fi
  171. cd $INSTALL_DIR
  172. if [ ! -d $INSTALL_DIR/open-ath9k-htc-firmware ]; then
  173. function_check git_clone
  174. git_clone $ATHEROS_WIFI_REPO $INSTALL_DIR/open-ath9k-htc-firmware
  175. if [ ! "$?" = "0" ]; then
  176. rm -rf $INSTALL_DIR/open-ath9k-htc-firmware
  177. exit 74283
  178. fi
  179. fi
  180. cd $INSTALL_DIR/open-ath9k-htc-firmware
  181. git checkout 1.4.0
  182. make toolchain
  183. if [ ! "$?" = "0" ]; then
  184. rm -rf $INSTALL_DIR/open-ath9k-htc-firmware
  185. exit 24820
  186. fi
  187. make firmware
  188. if [ ! "$?" = "0" ]; then
  189. rm -rf $INSTALL_DIR/open-ath9k-htc-firmware
  190. exit 63412
  191. fi
  192. cp target_firmware/*.fw /lib/firmware/
  193. if [ ! "$?" = "0" ]; then
  194. exit 74681
  195. fi
  196. mark_completed $FUNCNAME
  197. }
  198. function update_wifi_adaptors {
  199. IFACE=
  200. IFACE_SECONDARY=
  201. for i in $(seq 10 -1 0); do
  202. ifdown --force wlan${i}
  203. done
  204. for i in $(seq 10 -1 0); do
  205. if grep -q "wlan${i}" /proc/net/dev; then
  206. if [ ! $IFACE ]; then
  207. IFACE="wlan${i}"
  208. else
  209. IFACE_SECONDARY="wlan${i}"
  210. return
  211. fi
  212. fi
  213. done
  214. }
  215. function wifi_get_psk {
  216. ssid=$1
  217. passphrase=$2
  218. psk=$(wpa_passphrase "$ssid" "$passphrase" | grep 'psk=' | sed -n 2p | awk -F '=' '{print $2}')
  219. echo $psk
  220. }
  221. function hotspot_off {
  222. if [ ! -f /etc/hostapd/hostapd.conf ]; then
  223. return
  224. fi
  225. systemctl stop hostapd
  226. rm /etc/hostapd/hostapd.conf
  227. if [ -f /etc/network/interfaces_original_static ]; then
  228. cp /etc/network/interfaces_original_static /etc/network/interfaces.d/static
  229. else
  230. if [ -f /etc/network/interfaces.d/static ]; then
  231. rm /etc/network/interfaces.d/static
  232. fi
  233. fi
  234. if [ -f /etc/network/interfaces_original_wifi ]; then
  235. cp /etc/network/interfaces_original_wifi /etc/network/interfaces.d/wifi
  236. else
  237. if [ -f /etc/network/interfaces.d/wifi ]; then
  238. rm /etc/network/interfaces.d/wifi
  239. fi
  240. fi
  241. if [ -f /etc/network/interfaces.d/bridge ]; then
  242. rm /etc/network/interfaces.d/bridge
  243. fi
  244. default_network_config
  245. wpa_action ${WIFI_INTERFACE} stop
  246. wpa_cli -i ${WIFI_INTERFACE} terminate
  247. systemctl restart network-manager
  248. }
  249. function hotspot_on {
  250. if [ ! -f /etc/default/hostapd ]; then
  251. echo $'/etc/default/hostapd was not found'
  252. exit 67241
  253. fi
  254. if [ ${#WIFI_PASSPHRASE} -lt 8 ]; then
  255. echo $'Wifi hotspot passphrase is too short'
  256. exit 25719
  257. fi
  258. sed -i 's|#DAEMON_CONF=.*|DAEMON_CONF="/etc/hostapd/hostapd.conf"|g' /etc/default/hostapd
  259. echo '### Wireless network name ###' > /etc/hostapd/hostapd.conf
  260. echo "interface=$WIFI_INTERFACE" >> /etc/hostapd/hostapd.conf
  261. echo '' >> /etc/hostapd/hostapd.conf
  262. echo '### Set your bridge name ###' >> /etc/hostapd/hostapd.conf
  263. echo 'bridge=br0' >> /etc/hostapd/hostapd.conf
  264. echo '' >> /etc/hostapd/hostapd.conf
  265. echo 'driver=nl80211' >> /etc/hostapd/hostapd.conf
  266. echo "country_code=UK" >> /etc/hostapd/hostapd.conf
  267. echo "ssid=$WIFI_SSID" >> /etc/hostapd/hostapd.conf
  268. echo 'hw_mode=g' >> /etc/hostapd/hostapd.conf
  269. echo 'channel=6' >> /etc/hostapd/hostapd.conf
  270. echo 'wpa=2' >> /etc/hostapd/hostapd.conf
  271. echo "wpa_passphrase=$WIFI_PASSPHRASE" >> /etc/hostapd/hostapd.conf
  272. echo '' >> /etc/hostapd/hostapd.conf
  273. echo '## Key management algorithms ##' >> /etc/hostapd/hostapd.conf
  274. echo 'wpa_key_mgmt=WPA-PSK' >> /etc/hostapd/hostapd.conf
  275. echo '' >> /etc/hostapd/hostapd.conf
  276. echo '## Set cipher suites (encryption algorithms) ##' >> /etc/hostapd/hostapd.conf
  277. echo '## TKIP = Temporal Key Integrity Protocol' >> /etc/hostapd/hostapd.conf
  278. echo '## CCMP = AES in Counter mode with CBC-MAC' >> /etc/hostapd/hostapd.conf
  279. echo 'wpa_pairwise=TKIP' >> /etc/hostapd/hostapd.conf
  280. echo 'rsn_pairwise=CCMP' >> /etc/hostapd/hostapd.conf
  281. echo '' >> /etc/hostapd/hostapd.conf
  282. echo '## Shared Key Authentication ##'
  283. echo 'auth_algs=1' >> /etc/hostapd/hostapd.conf
  284. echo '' >> /etc/hostapd/hostapd.conf
  285. echo '## Accept all MAC address ###' >> /etc/hostapd/hostapd.conf
  286. echo 'macaddr_acl=0' >> /etc/hostapd/hostapd.conf
  287. if [ ! -f /etc/network/interfaces_original_static ]; then
  288. if [ -f /etc/network/interfaces.d/static ]; then
  289. cp /etc/network/interfaces.d/static /etc/network/interfaces_original_static
  290. fi
  291. fi
  292. if [ ! -f /etc/network/interfaces_original_wifi ]; then
  293. if [ -f /etc/network/interfaces.d/wifi ]; then
  294. cp /etc/network/interfaces.d/wifi /etc/network/interfaces_original_wifi
  295. fi
  296. fi
  297. default_network_config
  298. echo "allow-hotplug $WIFI_INTERFACE" > /etc/network/interfaces.d/wifi
  299. echo "iface $WIFI_INTERFACE inet manual" >> /etc/network/interfaces.d/wifi
  300. echo 'allow-hotplug eth0' >> /etc/network/interfaces.d/static
  301. echo 'iface eth0 inet manual' >> /etc/network/interfaces.d/static
  302. echo 'iface br0 inet static' >> /etc/network/interfaces.d/bridge
  303. echo " bridge_ports $WIFI_INTERFACE eth0" >> /etc/network/interfaces.d/bridge
  304. systemctl restart network-manager
  305. ifup $WIFI_INTERFACE
  306. systemctl restart hostapd
  307. }
  308. function wifi_store_original_network_settings {
  309. if [ ! -f /etc/network/interfaces_original ]; then
  310. if ! grep -q "# wifi enabled" /etc/network/interfaces; then
  311. cp /etc/network/interfaces /etc/network/interfaces_original
  312. fi
  313. fi
  314. }
  315. function wifi_original_network_settings {
  316. remove_config_param "NETWORK_IS_STATIC"
  317. if [ -f /etc/network/interfaces.d/static ]; then
  318. rm /etc/network/interfaces.d/static
  319. fi
  320. if [ -f /etc/network/interfaces.d/wifi ]; then
  321. rm /etc/network/interfaces.d/wifi
  322. fi
  323. if [ -f /etc/network/interfaces.d/bridge ]; then
  324. rm /etc/network/interfaces.d/bridge
  325. fi
  326. }
  327. function wifi_wpa2_psk {
  328. ssid=$1
  329. passphrase=$2
  330. wifi_store_original_network_settings
  331. echo 'allow-hotplug eth0' > /etc/network/interfaces.d/static
  332. echo 'iface eth0 inet dhcp' >> /etc/network/interfaces.d/static
  333. echo "allow-hotplug ${WIFI_INTERFACE}" > /etc/network/interfaces.d/wifi
  334. echo "iface ${WIFI_INTERFACE} inet manual" >> /etc/network/interfaces.d/wifi
  335. echo " wpa-roam $WIFI_CONFIG" >> /etc/network/interfaces.d/wifi
  336. wifi_static_network_interface
  337. wpa_passphrase "$ssid" "$passphrase" > $WIFI_CONFIG
  338. systemctl restart network-manager
  339. ifup $WIFI_INTERFACE
  340. }
  341. function wifi_none {
  342. ssid=$1
  343. wifi_store_original_network_settings
  344. echo 'allow-hotplug eth0' > /etc/network/interfaces.d/static
  345. echo 'iface eth0 inet dhcp' >> /etc/network/interfaces.d/static
  346. echo "allow-hotplug ${WIFI_INTERFACE}" > /etc/network/interfaces.d/wifi
  347. echo "iface ${WIFI_INTERFACE} inet manual" >> /etc/network/interfaces.d/wifi
  348. echo " wpa-roam $WIFI_CONFIG" >> /etc/network/interfaces.d/wifi
  349. wifi_static_network_interface
  350. echo 'ctrl_interface=/run/wpa_supplicant' > $WIFI_CONFIG
  351. echo 'update_config=1' >> $WIFI_CONFIG
  352. echo 'eapol_version=1' >> $WIFI_CONFIG
  353. echo '' >> $WIFI_CONFIG
  354. echo 'network={' >> $WIFI_CONFIG
  355. if [[ "${ssid}" != $'any' && "${ssid}" != $'all' && "${ssid}" != $'open' ]]; then
  356. echo " ssid=\"${ssid}\"" >> $WIFI_CONFIG
  357. fi
  358. echo ' key_mgmt=NONE' >> $WIFI_CONFIG
  359. echo '}' >> $WIFI_CONFIG
  360. systemctl restart network-manager
  361. ifup $WIFI_INTERFACE
  362. }
  363. function networks_from_file {
  364. if [ ! -f $WIFI_NETWORKS_FILE ]; then
  365. exit 4
  366. fi
  367. if [[ $(config_param_exists "WIFI_INTERFACE") == "0" ]]; then
  368. exit 5
  369. fi
  370. read_config_param "WIFI_INTERFACE"
  371. wifi_store_original_network_settings
  372. echo 'allow-hotplug eth0' > /etc/network/interfaces.d/static
  373. echo 'iface eth0 inet dhcp' >> /etc/network/interfaces.d/static
  374. echo "allow-hotplug ${WIFI_INTERFACE}" >> /etc/network/interfaces.d/wifi
  375. echo "iface ${WIFI_INTERFACE} inet manual" >> /etc/network/interfaces.d/wifi
  376. echo " wpa-roam $WIFI_CONFIG" >> /etc/network/interfaces.d/wifi
  377. wifi_static_network_interface
  378. # remove wpa_supplicant.conf if it exists
  379. if [ -f $WIFI_CONFIG ]; then
  380. rm -f $WIFI_CONFIG
  381. fi
  382. echo 'ctrl_interface=/run/wpa_supplicant' > $WIFI_CONFIG
  383. echo 'update_config=1' >> $WIFI_CONFIG
  384. echo 'eapol_version=1' >> $WIFI_CONFIG
  385. echo '' >> $WIFI_CONFIG
  386. ctr=0
  387. while read -r line
  388. do
  389. if [ ${#line} -gt 1 ]; then
  390. if [[ "$line" != '#'* ]]; then
  391. if [ $ctr -eq 0 ]; then
  392. WIFI_SSID="$line"
  393. fi
  394. if [ $ctr -eq 1 ]; then
  395. WIFI_TYPE="$line"
  396. if [[ $WIFI_TYPE == $'none' || $WIFI_TYPE == $'open' ]]; then
  397. echo 'network={' >> $WIFI_CONFIG
  398. if [[ "${WIFI_SSID}" != $'any' && "${WIFI_SSID}" != $'all' && "${WIFI_SSID}" != $'open' ]]; then
  399. echo " ssid=\"${WIFI_SSID}\"" >> $WIFI_CONFIG
  400. fi
  401. echo ' key_mgmt=NONE' >> $WIFI_CONFIG
  402. echo '}' >> $WIFI_CONFIG
  403. ctr=0
  404. continue
  405. fi
  406. fi
  407. if [ $ctr -eq 2 ]; then
  408. WIFI_PASSPHRASE="$line"
  409. wpa_passphrase "$WIFI_SSID" "$WIFI_PASSPHRASE" >> $WIFI_CONFIG
  410. ctr=0
  411. continue
  412. fi
  413. ctr=$((ctr + 1))
  414. fi
  415. fi
  416. done < $WIFI_NETWORKS_FILE
  417. systemctl restart network-manager
  418. #ifconfig ${WIFI_INTERFACE} up
  419. ifup $WIFI_INTERFACE
  420. }
  421. function wifi_networks_file_header {
  422. echo $'# Add wifi networks as follows:' > $WIFI_NETWORKS_FILE
  423. echo '#' >> $WIFI_NETWORKS_FILE
  424. echo $'# MySSID' >> $WIFI_NETWORKS_FILE
  425. echo $'# wpa2-psk' >> $WIFI_NETWORKS_FILE
  426. echo $'# myWifiPassphrase' >> $WIFI_NETWORKS_FILE
  427. echo '#' >> $WIFI_NETWORKS_FILE
  428. echo $'# AnotherSSID' >> $WIFI_NETWORKS_FILE
  429. echo $'# none' >> $WIFI_NETWORKS_FILE
  430. echo '#' >> $WIFI_NETWORKS_FILE
  431. }
  432. function create_networks_interactive {
  433. remove_config_param "WIFI_INTERFACE"
  434. update_wifi_adaptors
  435. if [ ! $IFACE ]; then
  436. # Don't try to configure wifi if there are no adaptors
  437. return
  438. fi
  439. if [ -f $WIFI_NETWORKS_FILE ]; then
  440. rm $WIFI_NETWORKS_FILE
  441. fi
  442. # By default connect to any open wifi
  443. WIFI_SSID=''
  444. WIFI_TYPE=$'open'
  445. wifi_ctr=0
  446. wifi_networks_done=
  447. wifi_settings_defined=
  448. while [ ! $wifi_networks_done ]
  449. do
  450. data=$(tempfile 2>/dev/null)
  451. trap "rm -f $data" 0 1 2 5 15
  452. wifistr=$"\nTo use this system via wifi (eg. USB dongle) enter the details below, otherwise just select Ok:"
  453. if [ -f /root/.wifi-only ]; then
  454. wifistr=$"\nEnter your wifi login details below."
  455. fi
  456. dialog --backtitle $"Freedombone Configuration" \
  457. --title $"Wifi Settings ${wifi_ctr}" \
  458. --form "$wifistr" 13 65 4 \
  459. $"SSID (can be 'any'):" 1 1 "$WIFI_SSID" 1 24 30 30 \
  460. $"Type (open/wpa2-psk):" 2 1 "$WIFI_TYPE" 2 24 10 10 \
  461. $"Passphrase:" 3 1 "$WIFI_PASSPHRASE" 3 24 50 50 \
  462. 2> $data
  463. sel=$?
  464. case $sel in
  465. 1) return;;
  466. 255) return;;
  467. esac
  468. WIFI_SSID=$(cat $data | sed -n 1p)
  469. WIFI_TYPE=$(cat $data | sed -n 2p)
  470. WIFI_PASSPHRASE=$(cat $data | sed -n 3p)
  471. # If the wifi-only indicator is present then wifi details must
  472. # be specified, otherwise they're optional
  473. if [ ! -f /root/.wifi-only ]; then
  474. # if these fields are empty then there are no more wifi networks
  475. if [ ${#WIFI_SSID} -lt 2 ]; then
  476. wifi_networks_done='yes'
  477. continue
  478. fi
  479. if [ ${#WIFI_TYPE} -lt 2 ]; then
  480. wifi_networks_done='yes'
  481. continue
  482. fi
  483. fi
  484. if [ ! -f $WIFI_NETWORKS_FILE ]; then
  485. wifi_networks_file_header
  486. fi
  487. # update the wifi networks file
  488. echo '' >> $WIFI_NETWORKS_FILE
  489. echo "$WIFI_SSID" >> $WIFI_NETWORKS_FILE
  490. echo "$WIFI_TYPE" >> $WIFI_NETWORKS_FILE
  491. if [ ${#WIFI_PASSPHRASE} -gt 1 ]; then
  492. echo "$WIFI_PASSPHRASE" >> $WIFI_NETWORKS_FILE
  493. fi
  494. if [ ${#WIFI_SSID} -gt 1 ]; then
  495. if [ ${#WIFI_TYPE} -gt 1 ]; then
  496. if [[ "${WIFI_TYPE}" == $'none' || "${WIFI_TYPE}" == $'open' ]]; then
  497. write_config_param "WIFI_INTERFACE" "$WIFI_INTERFACE"
  498. return
  499. else
  500. if [ ${#WIFI_PASSPHRASE} -gt 1 ]; then
  501. write_config_param "WIFI_INTERFACE" "$WIFI_INTERFACE"
  502. return
  503. fi
  504. fi
  505. fi
  506. fi
  507. # clear values
  508. WIFI_SSID=
  509. WIFI_PASSPHRASE=
  510. wifi_ctr=$((wifi_ctr + 1))
  511. done
  512. }
  513. function disable_wifi {
  514. if [[ ${1} == 'yes' || ${1} == 'y' ]]; then
  515. hotspot_off
  516. if [ -f /etc/network/interfaces.d/static ]; then
  517. rm /etc/network/interfaces.d/static
  518. fi
  519. if [ -f /etc/network/interfaces.d/wifi ]; then
  520. rm /etc/network/interfaces.d/wifi
  521. fi
  522. if [ -f /etc/network/interfaces.d/bridge ]; then
  523. rm /etc/network/interfaces.d/bridge
  524. fi
  525. default_network_config
  526. remove_config_param "WIFI_INTERFACE"
  527. wpa_action ${WIFI_INTERFACE} stop
  528. wpa_cli -i ${WIFI_INTERFACE} terminate
  529. systemctl restart network-manager
  530. else
  531. networks_from_file
  532. fi
  533. }
  534. function count_wlan {
  535. # counts the number of wlan devices
  536. ctr=0
  537. for i in $(seq 0 1 10); do
  538. if grep -q "wlan${i}" /proc/net/dev; then
  539. ctr=$((ctr + 1))
  540. fi
  541. done
  542. echo $ctr
  543. }
  544. function wifi_exists {
  545. if grep -q "wlan" /proc/net/dev; then
  546. echo "1"
  547. else
  548. echo "0"
  549. fi
  550. }
  551. function remove_wifi_startup_script {
  552. remove_config_param "WIFI_INTERFACE"
  553. systemd_file=/etc/systemd/system/wifistart.service
  554. if [ -f $systemd_file ]; then
  555. systemctl stop wifistart
  556. systemctl disable wifistart
  557. rm $systemd_file
  558. fi
  559. if [ -f $HOME/${PROJECT_NAME}-wifi.cfg ]; then
  560. rm $HOME/${PROJECT_NAME}-wifi.cfg
  561. fi
  562. }
  563. function create_wifi_startup_script {
  564. systemd_file=/etc/systemd/system/wifistart.service
  565. echo '[Unit]' > $systemd_file
  566. echo 'Description=WifiStartup (Start wifi networking)' >> $systemd_file
  567. echo 'After=syslog.target' >> $systemd_file
  568. echo 'After=network.target' >> $systemd_file
  569. echo 'After=remote-fs.target' >> $systemd_file
  570. echo '' >> $systemd_file
  571. echo '[Service]' >> $systemd_file
  572. echo 'Type=simple' >> $systemd_file
  573. echo 'User=root' >> $systemd_file
  574. echo 'Group=root' >> $systemd_file
  575. echo 'WorkingDirectory=/root' >> $systemd_file
  576. echo "ExecStart=/usr/local/bin/${PROJECT_NAME}-wifi --wait 5 2> /dev/null" >> $systemd_file
  577. echo '' >> $systemd_file
  578. echo '[Install]' >> $systemd_file
  579. echo 'WantedBy=multi-user.target' >> $systemd_file
  580. systemctl enable wifistart
  581. systemctl daemon-reload
  582. }
  583. function remove_wifi_startup_script {
  584. systemd_file=/etc/systemd/system/wifistart.service
  585. if [ -f $systemd_file ]; then
  586. systemctl disable wifistart
  587. systemctl daemon-reload
  588. rm $systemd_file
  589. fi
  590. }
  591. # NOTE: deliberately no exit 0