Bladeren bron

Merge branch 'stretch' of https://github.com/bashrc/freedombone

Bob Mottram 7 jaren geleden
bovenliggende
commit
28a79f78a7

+ 1
- 1
doc/EN/mesh.org Bestand weergeven

@@ -23,7 +23,7 @@ The Freedombone Mesh is a wireless solution for autonomous or internet connected
23 23
  * [[./mesh_usage.html][How to use it]]
24 24
 
25 25
 #+BEGIN_CENTER
26
-[[file:images/mesh_architecture1.jpg]]
26
+[[file:images/mesh_logo.jpg]]
27 27
 #+END_CENTER
28 28
 
29 29
 Mesh networks are useful as a quick way to make a fully decentralised communications system which is not connected to or reliant upon the internet. Think festivals, hacker conferences, onboard ships at sea, disaster/war zones, small businesses who don't want the overhead of server maintenance, protests, remote areas of the world, temporary "digital blackouts", scientific expeditions and off-world space colonies.

+ 2
- 2
doc/EN/mesh_images.org Bestand weergeven

@@ -82,7 +82,7 @@ wget https://freedombone.net/downloads/current/freedombone-mesh_beaglebone-armhf
82 82
 wget https://freedombone.net/downloads/current/freedombone-mesh_beaglebone-armhf.img.xz.sig
83 83
 gpg --verify freedombone-mesh_beaglebone-armhf.img.xz.sig
84 84
 sha256sum freedombone-mesh_beaglebone-armhf.img.xz
85
-45f131995e2f77188e7ddaf2b42ca3d8d48d821d37c7a31a21e2e6dcceaf510d
85
+60017999340a6559d1de76f3d78d9771c11de5eeefb3d3b812747ce306251e67
86 86
 unxz freedombone-mesh_beaglebone-armhf.img.xz
87 87
 sudo dd bs=1M if=freedombone-mesh_beaglebone-armhf.img of=/dev/sdX conv=fdatasync
88 88
 #+end_src
@@ -102,7 +102,7 @@ wget https://freedombone.net/downloads/current/freedombone.tar.gz
102 102
 wget https://freedombone.net/downloads/current/freedombone.tar.gz.sig
103 103
 gpg --verify freedombone.tar.gz.sig
104 104
 sha256sum freedombone.tar.gz
105
-024aedd3a264e963d791daaada347aba1295bc5caebba34ad9b19dc117a8cac9
105
+3d2a7f2bd7a3475832756b7bb63b96ba5fc4a4f4d7bffe86e685be9a3b41b958
106 106
 tar -xzvf freedombone.tar.gz
107 107
 cd freedombone
108 108
 git checkout stretch

BIN
img/mesh_logo.jpg Bestand weergeven


+ 11
- 5
src/freedombone-app-nextcloud Bestand weergeven

@@ -682,11 +682,17 @@ function install_nextcloud_main {
682 682
     fi
683 683
     chown -R www-data:www-data config
684 684
     chown -R www-data:www-data data
685
-    ./occ check
686
-    ./occ status
687
-    ./occ app:list
688
-    ./occ app:enable encryption
689
-    ./occ config:system:set appstoreenabled --value=false
685
+    sudo -u www-data ./occ check
686
+    sudo -u www-data ./occ status
687
+    sudo -u www-data ./occ app:list
688
+    sudo -u www-data ./occ app:enable encryption
689
+    sudo -u www-data ./occ encryption:enable
690
+    if [ ! "$?" = "0" ]; then
691
+        echo $'Encryption not enabled'
692
+        exit 73527
693
+    fi
694
+    sudo -u www-data ./occ encryption:status
695
+    sudo -u www-data ./occ config:system:set appstoreenabled --value=false
690 696
     chmod g+w /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config/config.php
691 697
     chown -R www-data:www-data /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs
692 698
     chmod 0644 .htaccess

+ 2
- 0
src/freedombone-app-vpn Bestand weergeven

@@ -542,6 +542,7 @@ function install_stunnel {
542 542
     echo "accept = $VPN_TLS_PORT" >> $prefix/etc/stunnel/stunnel.conf
543 543
     echo 'connect = localhost:1194' >> $prefix/etc/stunnel/stunnel.conf
544 544
     echo 'cert = /etc/stunnel/stunnel.pem' >> $prefix/etc/stunnel/stunnel.conf
545
+    echo 'protocol = socks' >> $prefix/etc/stunnel/stunnel.conf
545 546
 
546 547
     sed -i 's|ENABLED=.*|ENABLED=1|g' $prefix/etc/default/stunnel4
547 548
 
@@ -550,6 +551,7 @@ function install_stunnel {
550 551
     echo "accept = $STUNNEL_PORT" >> $prefix/etc/stunnel/stunnel-client.conf
551 552
     echo "connect = $DEFAULT_DOMAIN_NAME:$VPN_TLS_PORT" >> $prefix/etc/stunnel/stunnel-client.conf
552 553
     echo 'cert = stunnel.pem' >> $prefix/etc/stunnel/stunnel-client.conf
554
+    echo 'protocol = socks' >> $prefix/etc/stunnel/stunnel-client.conf
553 555
 
554 556
     echo '[Unit]' > $prefix/etc/systemd/system/stunnel.service
555 557
     echo 'Description=SSL tunnel for network daemons' >> $prefix/etc/systemd/system/stunnel.service

+ 45
- 9
src/freedombone-controlpanel Bestand weergeven

@@ -2102,6 +2102,40 @@ function wifi_enable {
2102 2102
     ${PROJECT_NAME}-wifi --disable $disable_wifi
2103 2103
 }
2104 2104
 
2105
+function add_clacks {
2106
+    clacks=
2107
+
2108
+    data=$(tempfile 2>/dev/null)
2109
+    trap "rm -f $data" 0 1 2 5 15
2110
+    dialog --title $"Add Clacks Overhead" \
2111
+           --backtitle $"Freedombone Control Panel" \
2112
+           --inputbox $"" 7 60 2>$data
2113
+    sel=$?
2114
+    case $sel in
2115
+        0)
2116
+            clacks=$(<$data)
2117
+            if [ ${#clacks} -gt 1 ]; then
2118
+
2119
+                WEB_FILES=/etc/nginx/sites-available/*
2120
+                for f in $WEB_FILES
2121
+                do
2122
+                    if grep -q "X-Clacks-Overhead" $f; then
2123
+                        sed -i "s|X-Clacks-Overhead .*|X-Clacks-Overhead \"GNU $clacks\";|g" $f
2124
+                    else
2125
+                        sed -i "/X-Content-Type-Options/a add_header X-Clacks-Overhead \"GNU $clacks\";" $f
2126
+                    fi
2127
+                done
2128
+
2129
+                systemctl restart nginx
2130
+
2131
+                dialog --title $"Add Clacks Overhead" \
2132
+                       --msgbox $"\nAdded for $clacks" 10 60
2133
+            fi
2134
+            ;;
2135
+    esac
2136
+    rm $data
2137
+}
2138
+
2105 2139
 function menu_wifi {
2106 2140
     if [[ "$(wifi_exists)" == "0" ]]; then
2107 2141
         dialog --title $"Wifi" \
@@ -2191,7 +2225,7 @@ function menu_top_level {
2191 2225
         trap "rm -f $data" 0 1 2 5 15
2192 2226
         dialog --backtitle $"Freedombone Control Panel" \
2193 2227
                --title $"Control Panel" \
2194
-               --radiolist $"Choose an operation:" 29 70 21 \
2228
+               --radiolist $"Choose an operation:" 30 70 22 \
2195 2229
                1 $"About this system" off \
2196 2230
                2 $"Passwords" off \
2197 2231
                3 $"Backup and Restore" off \
@@ -2209,10 +2243,11 @@ function menu_top_level {
2209 2243
                15 $"Change the name of this system" off \
2210 2244
                16 $"Set a static local IP address" off \
2211 2245
                17 $"Wifi menu" off \
2212
-               18 $"Check for updates" off \
2213
-               19 $"Power off the system" off \
2214
-               20 $"Restart the system" off \
2215
-               21 $"Exit" on 2> $data
2246
+               18 $"Add Clacks" off \
2247
+               19 $"Check for updates" off \
2248
+               20 $"Power off the system" off \
2249
+               21 $"Restart the system" off \
2250
+               22 $"Exit" on 2> $data
2216 2251
         sel=$?
2217 2252
         case $sel in
2218 2253
             1) exit 1;;
@@ -2242,10 +2277,11 @@ function menu_top_level {
2242 2277
             15) change_system_name;;
2243 2278
             16) set_static_IP;;
2244 2279
             17) menu_wifi;;
2245
-            18) check_for_updates;;
2246
-            19) shut_down_system;;
2247
-            20) restart_system;;
2248
-            21) break;;
2280
+            18) add_clacks;;
2281
+            19) check_for_updates;;
2282
+            20) shut_down_system;;
2283
+            21) restart_system;;
2284
+            22) break;;
2249 2285
         esac
2250 2286
     done
2251 2287
 }

+ 1
- 1
src/freedombone-image Bestand weergeven

@@ -533,7 +533,7 @@ if [[ $VARIANT == 'mesh' ]]; then
533 533
     IMAGE_NAME=$'mesh'
534 534
     # typically not much disk space is needed for a mesh node
535 535
     if [ ! $IMAGE_SIZE_SPECIFIED ]; then
536
-        IMAGE_SIZE=3G
536
+        IMAGE_SIZE=5G
537 537
     fi
538 538
 fi
539 539
 

+ 3
- 0
src/freedombone-image-customise Bestand weergeven

@@ -682,6 +682,9 @@ initialise_mesh() {
682 682
 
683 683
     chroot "$rootdir" apt-get -yq install apt-transport-https
684 684
 
685
+    # install tor as a possible way of routing traffic between internet gateways
686
+    chroot "$rootdir" apt-get -yq install tor
687
+
685 688
     configure_firewall
686 689
     install_avahi
687 690
     install_batman

+ 9
- 0
src/freedombone-image-mesh Bestand weergeven

@@ -990,6 +990,11 @@ if [ -f $MESH_INSTALL_SETUP ]; then
990 990
         rm -rf /etc/openvpn/easy-rsa/keys/*
991 991
     fi
992 992
 
993
+    # Remove hidden service
994
+    if [ -d /var/lib/tor/hidden_service_mesh ]; then
995
+        rm -rf /var/lib/tor/hidden_service_mesh
996
+    fi
997
+
993 998
     # Remove any existing vpn client keys
994 999
     if [ -f /home/$MY_USERNAME/vpn.tar.gz ]; then
995 1000
         rm /home/$MY_USERNAME/vpn.tar.gz
@@ -1012,6 +1017,10 @@ if [ -f $MESH_INSTALL_SETUP ]; then
1012 1017
         chown ${MY_USERNAME}:${MY_USERNAME} /home/$MY_USERNAME/.config
1013 1018
     fi
1014 1019
 
1020
+    systemctl stop tor
1021
+    systemctl disable tor
1022
+    echo $'TOR disabled' >> $INSTALL_LOG
1023
+
1015 1024
     #tomb slam all
1016 1025
     tmp_ram_disk 100
1017 1026
     enable_predictable_device_names

+ 16
- 0
src/freedombone-mesh-batman Bestand weergeven

@@ -416,6 +416,22 @@ function start {
416 416
         fi
417 417
     fi
418 418
 
419
+    # if we have an ethernet connection to an internet router then create
420
+    # an onion address for this peer
421
+    if [[ "$ethernet_connected" != "0" ]]; then
422
+        systemctl enable tor
423
+        systemctl start tor
424
+        HIDDEN_SERVICE_PATH=/var/lib/tor/hidden_service_
425
+        if [ ! -f ${HIDDEN_SERVICE_PATH}mesh/hostname ]; then
426
+            echo "HiddenServiceDir ${HIDDEN_SERVICE_PATH}mesh/" >> /etc/tor/torrc
427
+            echo "HiddenServicePort 653 127.0.0.1:653" >> /etc/tor/torrc
428
+            systemctl restart tor
429
+        fi
430
+    else
431
+        systemctl stop tor
432
+        systemctl disable tor
433
+    fi
434
+
419 435
     verify
420 436
 }
421 437
 

+ 17
- 16
src/freedombone-mesh-connect Bestand weergeven

@@ -157,20 +157,16 @@ function mesh_setup_vpn {
157 157
     fi
158 158
 }
159 159
 
160
-function connect_to_vpn {
161
-    dialog --title $"VPN Connect to another mesh network" \
162
-           --backtitle $"Freedombone Mesh" \
163
-           --defaultno \
164
-           --yesno $"\nHave you received the vpn.tar.gz file from the other mesh administrator, uncompressed it into the /home/fbone directory and also forwarded port $VPN_MESH_TLS_PORT from your internet router to this system?" 10 70
165
-    sel=$?
166
-    case $sel in
167
-        1) return;;
168
-        255) return;;
169
-    esac
160
+function connect_to_mesh {
161
+    connect_title=$"Connect to another mesh network"
162
+    HIDDEN_SERVICE_PATH=/var/lib/tor/hidden_service_mesh/hostname
163
+    if [ -f ${HIDDEN_SERVICE_PATH} ]; then
164
+        connect_title=$"Connect from $(cat $HIDDEN_SERVICE_PATH) to another mesh network"
165
+    fi
170 166
 
171 167
     data=$(tempfile 2>/dev/null)
172 168
     trap "rm -f $data" 0 1 2 5 15
173
-    dialog --title $"VPN Connect to another mesh network" \
169
+    dialog --title "$connect_title" \
174 170
            --backtitle $"Freedombone Mesh" \
175 171
            --inputbox $'Enter the IP address or domain name of the other mesh.' 10 60 2>$data
176 172
     sel=$?
@@ -180,15 +176,20 @@ function connect_to_vpn {
180 176
             if [ ${#ip_or_domain} -gt 1 ]; then
181 177
                 if [[ "$ip_or_domain" == *'.'* ]]; then
182 178
 
179
+                    connect_failed=
183 180
                     if [ ! -f ~/client.ovpn ]; then
184
-                        rm $data
185
-                        exit 1
181
+                        connect_failed=1
186 182
                     fi
187 183
                     if [ ! -f ~/stunnel.pem ]; then
188
-                        rm $data
189
-                        exit 1
184
+                        connect_failed=1
190 185
                     fi
191 186
                     if [ ! -f ~/stunnel.p12 ]; then
187
+                        connect_failed=1
188
+                    fi
189
+
190
+                    if [ $connect_failed ]; then
191
+                        dialog --title $"Connect to another mesh network" \
192
+                               --msgbox $"\nObtain the vpn.tar.gz file from the other mesh administrator, uncompress it into the /home/fbone directory and also forwarded port $VPN_MESH_TLS_PORT from your internet router to this system." 10 50
192 193
                         rm $data
193 194
                         exit 1
194 195
                     fi
@@ -221,7 +222,7 @@ case $sel in
221 222
 esac
222 223
 case $(cat $data) in
223 224
     1) rm $data
224
-       connect_to_vpn;;
225
+       connect_to_mesh;;
225 226
     2) rm $data
226 227
        mesh_setup_vpn;;
227 228
 esac

+ 0
- 3
src/freedombone-utils-nodejs Bestand weergeven

@@ -63,9 +63,6 @@ function get_npm_arch {
63 63
 function mesh_install_nodejs {
64 64
     mesh_install_nodejs_prefix=
65 65
     if [ $rootdir ]; then
66
-        if [[ $VARIANT == "mesh" ]]; then
67
-            return
68
-        fi
69 66
         mesh_install_nodejs_prefix="chroot $rootdir"
70 67
     fi
71 68
 

+ 1
- 0
src/freedombone-utils-onion Bestand weergeven

@@ -124,6 +124,7 @@ function add_onion_service {
124 124
     fi
125 125
     if ! grep -q "hidden_service_${onion_service_name}" /etc/tor/torrc; then
126 126
         echo "HiddenServiceDir ${HIDDEN_SERVICE_PATH}${onion_service_name}/" >> /etc/tor/torrc
127
+        #echo 'HiddenServiceVersion 3' >> /etc/tor/torrc
127 128
         echo "HiddenServicePort ${onion_service_port_from} 127.0.0.1:${onion_service_port_to}" >> /etc/tor/torrc
128 129
         if [ ${#onion_stealth_name} -gt 0 ]; then
129 130
             echo "HiddenServiceAuthorizeClient stealth ${onion_stealth_name}" >> /etc/tor/torrc

+ 2
- 2
website/EN/mesh.html Bestand weergeven

@@ -3,7 +3,7 @@
3 3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 5
 <head>
6
-<!-- 2017-10-27 Fri 13:10 -->
6
+<!-- 2017-11-01 Wed 18:58 -->
7 7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9 9
 <title>&lrm;</title>
@@ -261,7 +261,7 @@ The Freedombone Mesh is a wireless solution for autonomous or internet connected
261 261
 <div class="org-center">
262 262
 
263 263
 <div class="figure">
264
-<p><img src="images/mesh_architecture1.jpg" alt="mesh_architecture1.jpg" />
264
+<p><img src="images/mesh_logo.jpg" alt="mesh_logo.jpg" />
265 265
 </p>
266 266
 </div>
267 267
 </div>