freedombone-mesh 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # A script to easily locate mesh peers and start communicating
  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. PROJECT_NAME='freedombone'
  30. export TEXTDOMAIN=${PROJECT_NAME}-mesh
  31. export TEXTDOMAINDIR="/usr/share/locale"
  32. CONFIG_FILE=$HOME/${PROJECT_NAME}.cfg
  33. MUMBLE_PATH=/usr/bin/mumble
  34. TOXIC_FILE=$(cat /usr/share/${PROJECT_NAME}/apps/${PROJECT_NAME}-app-tox | grep "TOXIC_FILE=" | head -n 1 | awk -F '=' '{print $2}')
  35. DHTNODES=/usr/share/toxic/DHTnodes
  36. PEERS_FILE=/tmp/meshpeers.txt
  37. TOX_PORT=33445
  38. TOXCORE_REPO='https://github.com/irungentoo/toxcore'
  39. TOXCORE_COMMIT=
  40. # obtain tox values from main install
  41. if grep -q "TOX_PORT=" $CONFIG_FILE; then
  42. TOX_PORT=$(cat $CONFIG_FILE | grep "TOX_PORT=" | nead -n 1 | awk -F '=' '{print $2}')
  43. fi
  44. if grep -q "TOXCORE_REPO=" $CONFIG_FILE; then
  45. TOXCORE_REPO=$(cat $CONFIG_FILE | grep "TOXCORE_REPO=" | head -n 1 | awk -F '"' '{print $2}')
  46. fi
  47. if grep -q "TOXCORE_COMMIT=" $CONFIG_FILE; then
  48. TOXCORE_COMMIT=$(cat $CONFIG_FILE | grep "TOXCORE_COMMIT=" | head -n 1 | awk -F "'" '{print $2}')
  49. fi
  50. TOXID_REPO='https://github.com/bashrc/toxid'
  51. TOX_BOOTSTRAP_ID_FILE=/var/lib/tox-bootstrapd/pubkey.txt
  52. QTOX_INI="/home/$USER/.config/tox/qtox.ini"
  53. # client or server installations sounds odd for a mesh, but this
  54. # indicates whether this is a dedicated mesh peer ("yes") or
  55. # a 'client' such as a laptop or desktop machine with
  56. # the freedombone-client script installed
  57. SERVER_INSTALLATION="no"
  58. function install_toxcore {
  59. if [ -f /etc/tox-bootstrapd.conf ]; then
  60. return
  61. fi
  62. sudo apt-get -yq install build-essential libtool autotools-dev
  63. sudo apt-get -yq install automake checkinstall check git yasm
  64. sudo apt-get -yq install libsodium18 libsodium-dev libcap2-bin
  65. sudo apt-get -yq install libconfig9 libconfig-dev
  66. if [ ! -d ~/develop ]; then
  67. mkdir ~/develop
  68. fi
  69. cd ~/develop
  70. git clone $TOXCORE_REPO ~/develop/toxcore
  71. cd ~/develop/toxcore
  72. if [ $TOXCORE_COMMIT ]; then
  73. git checkout $TOXCORE_COMMIT -b $TOXCORE_COMMIT
  74. fi
  75. autoreconf -i
  76. ./configure --enable-daemon
  77. if [ ! "$?" = "0" ]; then
  78. exit 78467
  79. fi
  80. make
  81. if [ ! "$?" = "0" ]; then
  82. exit 84562
  83. fi
  84. sudo make install
  85. sudo cp /usr/local/lib/libtoxcore* /usr/lib/
  86. if [ ! -f /usr/local/bin/tox-bootstrapd ]; then
  87. echo $"File not found /usr/local/bin/tox-bootstrapd"
  88. exit 73862
  89. fi
  90. sudo useradd --home-dir /var/lib/tox-bootstrapd --create-home --system --shell /sbin/nologin --comment "Account to run Tox's DHT bootstrap daemon" --user-group tox-bootstrapd
  91. sudo chmod 700 /var/lib/tox-bootstrapd
  92. if [ ! -f ~/develop/toxcore/other/bootstrap_daemon/tox-bootstrapd.conf ]; then
  93. echo $"File not found $INSTALL_DIR/toxcore/other/bootstrap_daemon/tox-bootstrapd.conf"
  94. exit 476835
  95. fi
  96. # create configuration file
  97. echo "port = $TOX_PORT" > /tmp/tox-bootstrapd.conf
  98. echo 'keys_file_path = "/var/lib/tox-bootstrapd/keys"' >> /tmp/tox-bootstrapd.conf
  99. echo 'pid_file_path = "/var/run/tox-bootstrapd/tox-bootstrapd.pid"' >> /tmp/tox-bootstrapd.conf
  100. echo 'enable_ipv6 = true' >> /tmp/tox-bootstrapd.conf
  101. echo 'enable_ipv4_fallback = true' >> /tmp/tox-bootstrapd.conf
  102. echo 'enable_lan_discovery = true' >> /tmp/tox-bootstrapd.conf
  103. echo 'enable_tcp_relay = true' >> /tmp/tox-bootstrapd.conf
  104. echo "tcp_relay_ports = [443, 3389, $TOX_PORT]" >> /tmp/tox-bootstrapd.conf
  105. echo 'enable_motd = true' >> /tmp/tox-bootstrapd.conf
  106. echo 'motd = "tox-bootstrapd"' >> /tmp/tox-bootstrapd.conf
  107. sudo cp /tmp/tox-bootstrapd.conf /etc/tox-bootstrapd.conf
  108. rm /tmp/tox-bootstrapd.conf
  109. if [ ! -f ~/develop/toxcore/other/bootstrap_daemon/tox-bootstrapd.service ]; then
  110. echo $"File not found ~/develop/toxcore/other/bootstrap_daemon/tox-bootstrapd.service"
  111. exit 7359
  112. fi
  113. sudo cp ~/develop/toxcore/other/bootstrap_daemon/tox-bootstrapd.service /etc/systemd/system/
  114. sudo systemctl daemon-reload
  115. sudo systemctl enable tox-bootstrapd.service
  116. sudo systemctl start tox-bootstrapd.service
  117. if [ ! "$?" = "0" ]; then
  118. sudo systemctl status tox-bootstrapd.service
  119. exit 5846
  120. fi
  121. sudo systemctl restart tox-bootstrapd.service
  122. TOX_PUBLIC_KEY=$(cat /var/log/syslog | grep tox | grep "Public Key" | awk -F ' ' '{print $8}' | tail -1)
  123. if [ ${#TOX_PUBLIC_KEY} -lt 30 ]; then
  124. echo $'Could not obtain the tox node public key'
  125. exit 6529
  126. fi
  127. # save the public key for later reference
  128. echo "$TOX_PUBLIC_KEY" > /tmp/boostrapid
  129. sudo mv /tmp/boostrapid $TOX_BOOTSTRAP_ID_FILE
  130. }
  131. function install_toxid {
  132. if [ -f /usr/local/bin/toxid ]; then
  133. return
  134. fi
  135. cd ~/develop
  136. git clone $TOXID_REPO ~/develop/toxid
  137. cd ~/develop/toxid
  138. make
  139. sudo make install
  140. if [ ! -f /usr/local/bin/toxid ]; then
  141. echo $"Couldn't install toxid"
  142. exit 6389
  143. fi
  144. }
  145. function run_tox {
  146. echo $QTOX_INI
  147. if [[ -f $TOXIC_FILE || -f $QTOX_INI ]]; then
  148. if [[ $SERVER_INSTALLATION == "no" ]]; then
  149. # update bootstrap nodes
  150. if [ -f $DHTNODES ]; then
  151. if [ ! -f $DHTNODES.internet ]; then
  152. sudo cp $DHTNODES $DHTNODES.internet
  153. fi
  154. fi
  155. lstox -f dht > /tmp/dht
  156. sudo cp /tmp/dht $DHTNODES
  157. fi
  158. # get a list of peers
  159. PEER_TOX_ID_LIST=$(lstox | grep $AVAHI_DOMAIN | sort -u)
  160. if [ ! "$PEER_TOX_ID_LIST" ]; then
  161. echo $'No peers found'
  162. exit 0
  163. fi
  164. PEER_TOX_ID_LIST_COUNT=$(echo "$PEER_TOX_ID_LIST" | wc -l)
  165. PEER_TOX_ID=''
  166. if [ $PEER_TOX_ID_LIST_COUNT -lt "2" ]; then
  167. # single peer
  168. PEER_TOX_ID=$(echo "$PEER_TOX_ID_LIST" | awk -F ' ' '{print $3}')
  169. else
  170. # choose a user from a list
  171. echo ''
  172. echo $"Select a user on $AVAHI_DOMAIN:"
  173. ctr=0
  174. while IFS='' read -r line || [[ -n "$line" ]]; do
  175. toxusername=$(echo $line | awk -F ' ' '{print $2}')
  176. echo " $ctr. $toxusername"
  177. ctr=$((ctr + 1))
  178. done < "$PEER_TOX_ID_LIST"
  179. read user_index
  180. PEER_TOX_ID=$(echo "$PEER_TOX_ID_LIST" | tail -n+${user_index} | head -n1 | awk -F ' ' '{print $3}')
  181. fi
  182. # if this is a valid ID
  183. if [ ${#PEER_TOX_ID} -gt 30 ]; then
  184. # start client and make a friend request
  185. if [ -f $QTOX_INI ]; then
  186. echo $'Launch qTox'
  187. qtox &
  188. else
  189. echo "n
  190. /nick $USER
  191. /add $PEER_TOX_ID
  192. /exit
  193. " | $TOXIC_FILE -d
  194. # Running twice is a hack to get around buggyness in the client
  195. $TOXIC_FILE -d
  196. fi
  197. exit 0
  198. else
  199. # ID was invalid
  200. echo $PEER_TOX_ID
  201. echo $"Tox ID for $AVAHI_DOMAIN was not found"
  202. exit 6
  203. fi
  204. fi
  205. }
  206. if [ -f /var/lib/batman ]; then
  207. SERVER_INSTALLATION="yes"
  208. fi
  209. if [[ $SERVER_INSTALLATION == "no" ]]; then
  210. if [ ! -f /usr/bin/batman ]; then
  211. ${PROJECT_NAME}-client
  212. fi
  213. fi
  214. # alternative toxic paths
  215. if [ -f /usr/local/bin/toxic ]; then
  216. TOXIC_FILE=/usr/local/bin/toxic
  217. fi
  218. if [ -f /usr/local/share/toxic/DHTnodes ]; then
  219. DHTNODES=/usr/local/share/toxic/DHTnodes
  220. fi
  221. if [[ $SERVER_INSTALLATION == "no" ]]; then
  222. if [ ! -f /tmp/meshtype ]; then
  223. install_toxcore
  224. install_toxid
  225. sudo batman start
  226. if [ ! "$?" = "0" ]; then
  227. exit 2
  228. fi
  229. fi
  230. fi
  231. avahi-browse -atl | awk -F ' ' '{print $4}' | sort -u > $PEERS_FILE
  232. if [ ! -f $PEERS_FILE ]; then
  233. echo $'No peers were found'
  234. exit 0
  235. fi
  236. ctr=0
  237. while IFS='' read -r line || [[ -n "$line" ]]; do
  238. ctr=$((ctr + 1))
  239. done < "$PEERS_FILE"
  240. if [ ${ctr} -lt "1" ]; then
  241. echo $'No peers were found'
  242. exit 0
  243. fi
  244. clear
  245. echo ''
  246. echo ".---. . . "
  247. echo "| | | "
  248. echo "|--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-. "
  249. echo "| | (.-' (.-' ( | ( )| | | | )( )| | (.-' "
  250. echo "' ' --' --' -' - -' ' ' -' -' -' ' - --'"
  251. echo $' Freedom in the Mesh'
  252. echo ''
  253. echo $'Please choose a peer to connect to:'
  254. idx=1
  255. while IFS='' read -r line || [[ -n "$line" ]]; do
  256. echo " $idx. $line"
  257. idx=$((idx + 1))
  258. done < "$PEERS_FILE"
  259. peer_index=0
  260. read peer_index
  261. # if no selection made
  262. if [ ! $peer_index ]; then
  263. echo $'Nothing was selected'
  264. echo ''
  265. exit 0
  266. fi
  267. # get the avahi domain name
  268. AVAHI_DOMAIN=
  269. idx=1
  270. while IFS='' read -r line || [[ -n "$line" ]]; do
  271. if [ ${idx} -eq "$peer_index" ]; then
  272. AVAHI_DOMAIN=${line}.local
  273. fi
  274. idx=$((idx + 1))
  275. done < "$PEERS_FILE"
  276. if [ ! $AVAHI_DOMAIN ]; then
  277. echo $'No domain name'
  278. exit 3
  279. fi
  280. # if only mumble is installed
  281. if [ ! -f $TOXIC_FILE ]; then
  282. if [ -f $MUMBLE_PATH ]; then
  283. $MUMBLE_PATH &
  284. exit 0
  285. fi
  286. echo $'You need mumble/toxic/qTox installed on your system'
  287. if [[ $SERVER_INSTALLATION == "no" ]]; then
  288. sudo batman stop
  289. fi
  290. exit 4
  291. fi
  292. # if only tox is installed
  293. if [ ! -f $MUMBLE_PATH ]; then
  294. run_tox
  295. fi
  296. echo ''
  297. echo $'Choose communication service:'
  298. echo $' 1. Voice'
  299. echo $' 2. Tox Chat'
  300. echo ''
  301. read peer_index
  302. # if no selection made
  303. if [ ! $peer_index ]; then
  304. echo $'Nothing was selected'
  305. echo ''
  306. exit 0
  307. fi
  308. if [[ $peer_index == 1 ]]; then
  309. if [ -f $MUMBLE_PATH ]; then
  310. echo ''
  311. echo $'To setup for the first time click "Add New", then set:'
  312. echo $" Label: $AVAHI_DOMAIN"
  313. echo $" Address: $AVAHI_DOMAIN"
  314. echo $' Port: 64738'
  315. echo $" Username: $USER"
  316. echo ''
  317. echo $'Press Enter to continue.'
  318. echo ''
  319. read peer_index
  320. $MUMBLE_PATH &
  321. else
  322. echo $'Mumble may not be installed on this system'
  323. exit 5
  324. fi
  325. fi
  326. if [[ $peer_index == 2 ]]; then
  327. run_tox
  328. fi
  329. exit 0