浏览代码

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

Bob Mottram 7 年前
父节点
当前提交
28a79f78a7

+ 1
- 1
doc/EN/mesh.org 查看文件

23
  * [[./mesh_usage.html][How to use it]]
23
  * [[./mesh_usage.html][How to use it]]
24
 
24
 
25
 #+BEGIN_CENTER
25
 #+BEGIN_CENTER
26
-[[file:images/mesh_architecture1.jpg]]
26
+[[file:images/mesh_logo.jpg]]
27
 #+END_CENTER
27
 #+END_CENTER
28
 
28
 
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.
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 查看文件

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

二进制
img/mesh_logo.jpg 查看文件


+ 11
- 5
src/freedombone-app-nextcloud 查看文件

682
     fi
682
     fi
683
     chown -R www-data:www-data config
683
     chown -R www-data:www-data config
684
     chown -R www-data:www-data data
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
     chmod g+w /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config/config.php
696
     chmod g+w /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs/config/config.php
691
     chown -R www-data:www-data /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs
697
     chown -R www-data:www-data /var/www/${NEXTCLOUD_DOMAIN_NAME}/htdocs
692
     chmod 0644 .htaccess
698
     chmod 0644 .htaccess

+ 2
- 0
src/freedombone-app-vpn 查看文件

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

+ 45
- 9
src/freedombone-controlpanel 查看文件

2102
     ${PROJECT_NAME}-wifi --disable $disable_wifi
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
 function menu_wifi {
2139
 function menu_wifi {
2106
     if [[ "$(wifi_exists)" == "0" ]]; then
2140
     if [[ "$(wifi_exists)" == "0" ]]; then
2107
         dialog --title $"Wifi" \
2141
         dialog --title $"Wifi" \
2191
         trap "rm -f $data" 0 1 2 5 15
2225
         trap "rm -f $data" 0 1 2 5 15
2192
         dialog --backtitle $"Freedombone Control Panel" \
2226
         dialog --backtitle $"Freedombone Control Panel" \
2193
                --title $"Control Panel" \
2227
                --title $"Control Panel" \
2194
-               --radiolist $"Choose an operation:" 29 70 21 \
2228
+               --radiolist $"Choose an operation:" 30 70 22 \
2195
                1 $"About this system" off \
2229
                1 $"About this system" off \
2196
                2 $"Passwords" off \
2230
                2 $"Passwords" off \
2197
                3 $"Backup and Restore" off \
2231
                3 $"Backup and Restore" off \
2209
                15 $"Change the name of this system" off \
2243
                15 $"Change the name of this system" off \
2210
                16 $"Set a static local IP address" off \
2244
                16 $"Set a static local IP address" off \
2211
                17 $"Wifi menu" off \
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
         sel=$?
2251
         sel=$?
2217
         case $sel in
2252
         case $sel in
2218
             1) exit 1;;
2253
             1) exit 1;;
2242
             15) change_system_name;;
2277
             15) change_system_name;;
2243
             16) set_static_IP;;
2278
             16) set_static_IP;;
2244
             17) menu_wifi;;
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
         esac
2285
         esac
2250
     done
2286
     done
2251
 }
2287
 }

+ 1
- 1
src/freedombone-image 查看文件

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

+ 3
- 0
src/freedombone-image-customise 查看文件

682
 
682
 
683
     chroot "$rootdir" apt-get -yq install apt-transport-https
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
     configure_firewall
688
     configure_firewall
686
     install_avahi
689
     install_avahi
687
     install_batman
690
     install_batman

+ 9
- 0
src/freedombone-image-mesh 查看文件

990
         rm -rf /etc/openvpn/easy-rsa/keys/*
990
         rm -rf /etc/openvpn/easy-rsa/keys/*
991
     fi
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
     # Remove any existing vpn client keys
998
     # Remove any existing vpn client keys
994
     if [ -f /home/$MY_USERNAME/vpn.tar.gz ]; then
999
     if [ -f /home/$MY_USERNAME/vpn.tar.gz ]; then
995
         rm /home/$MY_USERNAME/vpn.tar.gz
1000
         rm /home/$MY_USERNAME/vpn.tar.gz
1012
         chown ${MY_USERNAME}:${MY_USERNAME} /home/$MY_USERNAME/.config
1017
         chown ${MY_USERNAME}:${MY_USERNAME} /home/$MY_USERNAME/.config
1013
     fi
1018
     fi
1014
 
1019
 
1020
+    systemctl stop tor
1021
+    systemctl disable tor
1022
+    echo $'TOR disabled' >> $INSTALL_LOG
1023
+
1015
     #tomb slam all
1024
     #tomb slam all
1016
     tmp_ram_disk 100
1025
     tmp_ram_disk 100
1017
     enable_predictable_device_names
1026
     enable_predictable_device_names

+ 16
- 0
src/freedombone-mesh-batman 查看文件

416
         fi
416
         fi
417
     fi
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
     verify
435
     verify
420
 }
436
 }
421
 
437
 

+ 17
- 16
src/freedombone-mesh-connect 查看文件

157
     fi
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
     data=$(tempfile 2>/dev/null)
167
     data=$(tempfile 2>/dev/null)
172
     trap "rm -f $data" 0 1 2 5 15
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
            --backtitle $"Freedombone Mesh" \
170
            --backtitle $"Freedombone Mesh" \
175
            --inputbox $'Enter the IP address or domain name of the other mesh.' 10 60 2>$data
171
            --inputbox $'Enter the IP address or domain name of the other mesh.' 10 60 2>$data
176
     sel=$?
172
     sel=$?
180
             if [ ${#ip_or_domain} -gt 1 ]; then
176
             if [ ${#ip_or_domain} -gt 1 ]; then
181
                 if [[ "$ip_or_domain" == *'.'* ]]; then
177
                 if [[ "$ip_or_domain" == *'.'* ]]; then
182
 
178
 
179
+                    connect_failed=
183
                     if [ ! -f ~/client.ovpn ]; then
180
                     if [ ! -f ~/client.ovpn ]; then
184
-                        rm $data
185
-                        exit 1
181
+                        connect_failed=1
186
                     fi
182
                     fi
187
                     if [ ! -f ~/stunnel.pem ]; then
183
                     if [ ! -f ~/stunnel.pem ]; then
188
-                        rm $data
189
-                        exit 1
184
+                        connect_failed=1
190
                     fi
185
                     fi
191
                     if [ ! -f ~/stunnel.p12 ]; then
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
                         rm $data
193
                         rm $data
193
                         exit 1
194
                         exit 1
194
                     fi
195
                     fi
221
 esac
222
 esac
222
 case $(cat $data) in
223
 case $(cat $data) in
223
     1) rm $data
224
     1) rm $data
224
-       connect_to_vpn;;
225
+       connect_to_mesh;;
225
     2) rm $data
226
     2) rm $data
226
        mesh_setup_vpn;;
227
        mesh_setup_vpn;;
227
 esac
228
 esac

+ 0
- 3
src/freedombone-utils-nodejs 查看文件

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

+ 1
- 0
src/freedombone-utils-onion 查看文件

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

+ 2
- 2
website/EN/mesh.html 查看文件

3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5
 <head>
5
 <head>
6
-<!-- 2017-10-27 Fri 13:10 -->
6
+<!-- 2017-11-01 Wed 18:58 -->
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9
 <title>&lrm;</title>
9
 <title>&lrm;</title>
261
 <div class="org-center">
261
 <div class="org-center">
262
 
262
 
263
 <div class="figure">
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
 </p>
265
 </p>
266
 </div>
266
 </div>
267
 </div>
267
 </div>