소스 검색

Menu options for running a bridge

Bob Mottram 8 년 전
부모
커밋
5a1c828b7e
2개의 변경된 파일81개의 추가작업 그리고 12개의 파일을 삭제
  1. 58
    5
      src/freedombone-sec
  2. 23
    7
      src/freedombone-utils-onion

+ 58
- 5
src/freedombone-sec 파일 보기

767
     dialog --backtitle $"Freedombone Control Panel" \
767
     dialog --backtitle $"Freedombone Control Panel" \
768
            --title $"Add obfs4 Tor bridge" \
768
            --title $"Add obfs4 Tor bridge" \
769
            --form "\n" 9 60 4 \
769
            --form "\n" 9 60 4 \
770
-           $"IP address:" 1 1 "   .   .   .   " 1 15 16 16 \
771
-           $"Port:      " 2 1 "" 2 15 5 5 \
772
-           $"Key:       " 3 1 "" 3 15 250 250 \
770
+           $"IP address:   " 1 1 "   .   .   .   " 1 17 16 16 \
771
+           $"Port:         " 2 1 "" 2 17 5 5 \
772
+           $"Key/Nickname: " 3 1 "" 3 17 250 250 \
773
            2> $data
773
            2> $data
774
     sel=$?
774
     sel=$?
775
     case $sel in
775
     case $sel in
821
            --msgbox $"Bridge removed" 6 40
821
            --msgbox $"Bridge removed" 6 40
822
 }
822
 }
823
 
823
 
824
+function add_tor_bridge_relay {
825
+    read_config_param 'TOR_BRIDGE_NICKNAME'
826
+    read_config_param 'TOR_BRIDGE_PORT'
827
+
828
+    # remove any previous bridge port from the firewall
829
+    if [ ${#TOR_BRIDGE_PORT} -gt 0 ]; then
830
+        firewall_remove $TOR_BRIDGE_PORT tcp
831
+    fi
832
+
833
+    data=$(tempfile 2>/dev/null)
834
+    trap "rm -f $data" 0 1 2 5 15
835
+    dialog --backtitle $"Freedombone Control Panel" \
836
+           --title $"Become an obfs4 Tor bridge relay" \
837
+           --form "\n" 8 60 2 \
838
+           $"Bridge Nickname: " 1 1 "$TOR_BRIDGE_NICKNAME" 1 20 250 250 \
839
+           2> $data
840
+    sel=$?
841
+    case $sel in
842
+        1) return;;
843
+        255) return;;
844
+    esac
845
+    bridge_nickname=$(cat $data | sed -n 1p)
846
+    if [[ "${bridge_nickname}" == *" "* ]]; then
847
+        return
848
+    fi
849
+    if [ ${#bridge_nickname} -eq 0 ]; then
850
+        return
851
+    fi
852
+    TOR_BRIDGE_NICKNAME="$bridge_nickname"
853
+    TOR_BRIDGE_PORT=$((20000 + RANDOM % 40000))
854
+    write_config_param 'TOR_BRIDGE_NICKNAME' "$TOR_BRIDGE_NICKNAME"
855
+    write_config_param 'TOR_BRIDGE_PORT' "$TOR_BRIDGE_PORT"
856
+    tor_create_bridge_relay
857
+    dialog --title $"You are now an obfs4 Tor bridge relay" \
858
+           --msgbox $"\nIP address: $(get_ipv4_address)\n\nPort: ${TOR_BRIDGE_PORT}\n\nNickname: ${TOR_BRIDGE_NICKNAME}" 10 65
859
+}
860
+
861
+function remove_tor_bridge_relay {
862
+    tor_remove_bridge_relay
863
+    dialog --title $"Remove Tor bridge relay" \
864
+           --msgbox $"Bridge relay removed" 10 60
865
+}
866
+
824
 function menu_tor_bridges {
867
 function menu_tor_bridges {
825
     data=$(tempfile 2>/dev/null)
868
     data=$(tempfile 2>/dev/null)
826
     trap "rm -f $data" 0 1 2 5 15
869
     trap "rm -f $data" 0 1 2 5 15
827
     dialog --backtitle $"Freedombone Control Panel" \
870
     dialog --backtitle $"Freedombone Control Panel" \
828
            --title $"Tor Bridges" \
871
            --title $"Tor Bridges" \
829
-           --radiolist $"Choose an operation:" 12 50 4 \
872
+           --radiolist $"Choose an operation:" 14 50 6 \
830
            1 $"Show bridges" off \
873
            1 $"Show bridges" off \
831
            2 $"Add a bridge" off \
874
            2 $"Add a bridge" off \
832
            3 $"Remove a bridge" off \
875
            3 $"Remove a bridge" off \
833
-           4 $"Go Back/Exit" on 2> $data
876
+           4 $"Make this system into a bridge" off \
877
+           5 $"Stop being a bridge" off \
878
+           6 $"Go Back/Exit" on 2> $data
834
     sel=$?
879
     sel=$?
835
     case $sel in
880
     case $sel in
836
         1) exit 1;;
881
         1) exit 1;;
851
             exit 0
896
             exit 0
852
             ;;
897
             ;;
853
         4)
898
         4)
899
+            add_tor_bridge_relay
900
+            exit 0
901
+            ;;
902
+        5)
903
+            remove_tor_bridge_relay
904
+            exit 0
905
+            ;;
906
+        6)
854
             exit 0
907
             exit 0
855
             ;;
908
             ;;
856
     esac
909
     esac

+ 23
- 7
src/freedombone-utils-onion 파일 보기

466
 }
466
 }
467
 
467
 
468
 function tor_create_bridge_relay {
468
 function tor_create_bridge_relay {
469
+    read_config_param 'TOR_BRIDGE_PORT'
470
+    read_config_param 'TOR_BRIDGE_NICKNAME'
471
+    if [ ! $TOR_BRIDGE_PORT ]; then
472
+        return
473
+    fi
474
+    if [ ${#TOR_BRIDGE_PORT} -eq 0 ]; then
475
+        return
476
+    fi
477
+    if [ ${#TOR_BRIDGE_NICKNAME} -eq 0 ]; then
478
+        return
479
+    fi
480
+
469
     apt-get -yq install obfs4proxy
481
     apt-get -yq install obfs4proxy
470
 
482
 
471
     sed -i 's|#BridgeRelay.*|BridgeRelay 1|g' /etc/tor/torrc
483
     sed -i 's|#BridgeRelay.*|BridgeRelay 1|g' /etc/tor/torrc
472
     sed -i 's|BridgeRelay.*|BridgeRelay 1|g' /etc/tor/torrc
484
     sed -i 's|BridgeRelay.*|BridgeRelay 1|g' /etc/tor/torrc
473
     sed -i 's|#ServerTransportPlugin.*|ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy|g' /etc/tor/torrc
485
     sed -i 's|#ServerTransportPlugin.*|ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy|g' /etc/tor/torrc
474
     sed -i 's|ServerTransportPlugin.*|ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy|g' /etc/tor/torrc
486
     sed -i 's|ServerTransportPlugin.*|ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy|g' /etc/tor/torrc
487
+
475
     if ! grep 'ExtORPort ' /etc/tor/torrc; then
488
     if ! grep 'ExtORPort ' /etc/tor/torrc; then
476
-        echo 'ExtORPort auto' >> /etc/tor/torrc
489
+        echo "ExtORPort $TOR_BRIDGE_PORT" >> /etc/tor/torrc
477
     else
490
     else
478
-        sed -i 's|#ExtORPort auto|ExtORPort auto|g' /etc/tor/torrc
479
-        sed -i 's|ExtORPort .*|ExtORPort auto|g' /etc/tor/torrc
491
+        sed -i "s|#ExtORPort .*|ExtORPort $TOR_BRIDGE_PORT|g" /etc/tor/torrc
492
+        sed -i "s|ExtORPort .*|ExtORPort $TOR_BRIDGE_PORT|g" /etc/tor/torrc
480
     fi
493
     fi
481
 
494
 
482
-    read_config_param MY_'EMAIL_ADDRESS'
483
-    read_config_param 'TOR_BRIDGE_NICKNAME'
495
+    read_config_param 'MY_EMAIL_ADDRESS'
484
 
496
 
485
-    sed -i "s|#ContactInfo|ContactInfo $MY_EMAIL_ADDRESS|g" /etc/tor/torrc
497
+    sed -i "s|#ContactInfo.*|ContactInfo $MY_EMAIL_ADDRESS|g" /etc/tor/torrc
486
     if [ $TOR_BRIDGE_NICKNAME ]; then
498
     if [ $TOR_BRIDGE_NICKNAME ]; then
487
-        sed -i "s|#Nickname|Nickname $TOR_BRIDGE_NICKNAME|g" /etc/tor/torrc
499
+        sed -i "s|#Nickname.*|Nickname $TOR_BRIDGE_NICKNAME|g" /etc/tor/torrc
500
+        sed -i "s|Nickname.*|Nickname $TOR_BRIDGE_NICKNAME|g" /etc/tor/torrc
488
     fi
501
     fi
502
+    firewall_add tor_bridge $TOR_BRIDGE_PORT tcp
489
     systemctl restart tor
503
     systemctl restart tor
490
 }
504
 }
491
 
505
 
505
     if ! grep '#Nickname ' /etc/tor/torrc; then
519
     if ! grep '#Nickname ' /etc/tor/torrc; then
506
         sed -i "s|Nickname |#Nickname |g" /etc/tor/torrc
520
         sed -i "s|Nickname |#Nickname |g" /etc/tor/torrc
507
     fi
521
     fi
522
+    read_config_param 'TOR_BRIDGE_PORT'
523
+    firewall_remove $TOR_BRIDGE_PORT tcp
508
     systemctl restart tor
524
     systemctl restart tor
509
 }
525
 }
510
 
526