Skip to content
Snippets Groups Projects
Unverified Commit ef683e13 authored by Kali Kaneko's avatar Kali Kaneko
Browse files

[feat] pass udp flag to bitmask-root

parent 49755a32
No related branches found
No related tags found
No related merge requests found
import QtQuick 2.9
import QtQuick 2.15
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.14
import QtQuick.Controls.Material 2.1
import "../themes/themes.js" as Theme
// TODO
// [ ] disable UDP if provider doesn't support it
// [ ] disable UDP if the platform doesn't support it
ThemedPage {
title: qsTr("Preferences")
// TODO - convert "boxed" themedpage with white background into
// a QML template.
Rectangle {
anchors.horizontalCenter: parent.horizontalCenter
width: root.appWidth * 0.80
......@@ -27,9 +28,6 @@ ThemedPage {
ColumnLayout {
id: prefCol
width: root.appWidth * 0.80
// FIXME checkboxes in Material style force lineHeights too big.
// need to override the style
// See: https://bugreports.qt.io/browse/QTBUG-95385
Rectangle {
id: turnOffWarning
......@@ -38,7 +36,6 @@ ThemedPage {
width: parent.width
color: "white"
Label {
color: "red"
text: qsTr("Turn off the VPN to make changes")
......@@ -49,7 +46,6 @@ ThemedPage {
Layout.rightMargin: 10
}
Label {
id: circumLabel
text: qsTr("Censorship circumvention")
......@@ -72,25 +68,30 @@ ThemedPage {
MaterialCheckBox {
id: useBridgesCheckBox
enabled: areBridgesAvailable()
checked: false
text: qsTr("Use obfs4 bridges")
// TODO refactor - this sets wrapMode on checkbox
contentItem: Label {
text: useBridgesCheckBox.text
font: useBridgesCheckBox.font
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignVCenter
leftPadding: useBridgesCheckBox.indicator.width + useBridgesCheckBox.spacing
wrapMode: Label.Wrap
}
// TODO refactor - this sets wrapMode on checkbox
contentItem: Label {
text: useBridgesCheckBox.text
font: useBridgesCheckBox.font
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignVCenter
leftPadding: useBridgesCheckBox.indicator.width + useBridgesCheckBox.spacing
wrapMode: Label.Wrap
}
Layout.leftMargin: 10
Layout.rightMargin: 10
onClicked: {
HoverHandler {
cursorShape: Qt.PointingHandCursor
}
onClicked: {
// TODO there's a corner case that needs to be dealt with in the backend,
// if an user has a manual location selected and switches to bridges:
// we need to fallback to "auto" selection if such location does not
// we need to fallback to "auto" selection if such location does not
// offer bridges
useBridges(checked)
useUDP.enabled = !checked
}
}
......@@ -100,6 +101,9 @@ ThemedPage {
text: qsTr("Use Snowflake (experimental)")
enabled: false
checked: false
HoverHandler {
cursorShape: Qt.PointingHandCursor
}
Layout.leftMargin: 10
Layout.rightMargin: 10
}
......@@ -129,8 +133,12 @@ ThemedPage {
checked: false
Layout.leftMargin: 10
Layout.rightMargin: 10
HoverHandler {
cursorShape: Qt.PointingHandCursor
}
onClicked: {
doUseUDP(checked)
useBridgesCheckBox.enabled = areBridgesAvailable()
}
}
}
......@@ -187,6 +195,12 @@ ThemedPage {
]
}
function areBridgesAvailable() {
// FIXME check if provider offers it
let providerSupport = true
return providerSupport && !useUDP.checked
}
function useBridges(value) {
if (value == true) {
console.debug("use obfs4")
......@@ -215,5 +229,8 @@ ThemedPage {
if (ctx && ctx.transport == "obfs4") {
useBridgesCheckBox.checked = true
}
if (ctx && ctx.udp == "true") {
useUDP.checked = true
}
}
}
......@@ -89,12 +89,15 @@ def is_ipv6_disabled():
def tostr(s):
return s.decode('utf-8')
VERSION = "14"
VERSION = "15"
SCRIPT = "bitmask-root"
NAMESERVER_TCP = "10.41.0.1"
NAMESERVER_UDP = "10.42.0.1"
# for the time being, we're hardcoding tcp on connection params.
NAMESERVER = NAMESERVER_TCP
if os.getenv("UDP") == "1":
NAMESERVER = NAMESERVER_UDP
else:
NAMESERVER = NAMESERVER_TCP
BITMASK_CHAIN = "bitmask"
BITMASK_CHAIN_NAT_OUT = "bitmask"
BITMASK_CHAIN_NAT_POST = "bitmask_postrouting"
......
......@@ -95,6 +95,7 @@ func SetTransport(label string) {
func SetUDP(udp bool) {
log.Println("DEBUG setting UDP")
ctx.cfg.SetUseUDP(udp)
ctx.bm.UseUDP(udp)
go trigger(OnStatusChanged)
}
......
......@@ -34,6 +34,7 @@ type Bitmask interface {
UseAutomaticGateway()
GetTransport() string
SetTransport(string) error
UseUDP(bool) error
GetCurrentGateway() string
GetCurrentLocation() string
GetCurrentCountry() string
......
......@@ -215,7 +215,8 @@ func runBitmaskRoot(arg ...string) error {
}
arg = append([]string{bitmaskRoot}, arg...)
out, err := exec.Command("pkexec", arg...).Output()
cmd := exec.Command("pkexec", arg...)
out, err := cmd.Output()
if err != nil && arg[2] != "isup" {
log.Println("Error while running bitmask-root:")
log.Println("args: ", arg)
......
......@@ -39,6 +39,7 @@ type Bitmask struct {
shapes *shapeshifter.ShapeShifter
certPemPath string
openvpnArgs []string
udp bool
failed bool
}
......@@ -54,7 +55,7 @@ func Init() (*Bitmask, error) {
if err != nil {
return nil, err
}
b := Bitmask{tempdir, bonafide.Gateway{}, bonafide.Gateway{}, statusCh, nil, bf, launch, "", nil, "", []string{}, false}
b := Bitmask{tempdir, bonafide.Gateway{}, bonafide.Gateway{}, statusCh, nil, bf, launch, "", nil, "", []string{}, false, false}
b.launch.firewallStop()
/*
......@@ -107,3 +108,8 @@ func (b *Bitmask) NeedsCredentials() bool {
func (b *Bitmask) DoLogin(username, password string) (bool, error) {
return b.bonafide.DoLogin(username, password)
}
func (b *Bitmask) UseUDP(udp bool) error {
b.udp = udp
return nil
}
......@@ -145,6 +145,7 @@ func (b *Bitmask) startOpenVPN() error {
}
proxyArgs := strings.Split(proxy, ":")
// TODO pass UDP flag
arg = append(arg, "--remote", proxyArgs[0], proxyArgs[1], "tcp4")
arg = append(arg, "--route", gw.IPAddress, "255.255.255.255", "net_gateway")
} else {
......@@ -162,9 +163,11 @@ func (b *Bitmask) startOpenVPN() error {
for _, gw := range gateways {
for _, port := range gw.Ports {
if port != "53" {
if os.Getenv("UDP") == "1" {
if b.udp {
os.Setenv("UDP", "1")
arg = append(arg, "--remote", gw.IPAddress, port, "udp4")
} else {
os.Setenv("UDP", "0")
arg = append(arg, "--remote", gw.IPAddress, port, "tcp4")
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment