summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/bitmask/autostart.go45
-rw-r--r--pkg/bitmask/init.go13
-rw-r--r--pkg/bitmask/standalone.go74
-rw-r--r--pkg/vpn/bonafide/bonafide.go (renamed from pkg/standalone/bonafide/bonafide.go)0
-rw-r--r--pkg/vpn/bonafide/bonafide_api_test.go15
-rw-r--r--pkg/vpn/bonafide/bonafide_integration_test.go (renamed from pkg/standalone/bonafide/bonafide_integration_test.go)0
-rw-r--r--pkg/vpn/bonafide/bonafide_test.go (renamed from pkg/standalone/bonafide/bonafide_test.go)0
-rw-r--r--pkg/vpn/bonafide/eip_service.go (renamed from pkg/standalone/bonafide/eip_service.go)0
-rw-r--r--pkg/vpn/bonafide/testdata/cert (renamed from pkg/standalone/bonafide/testdata/cert)0
-rw-r--r--pkg/vpn/bonafide/testdata/eip-service.json (renamed from pkg/standalone/bonafide/testdata/eip-service.json)0
-rw-r--r--pkg/vpn/bonafide/testdata/eip-service3.json (renamed from pkg/standalone/bonafide/testdata/eip-service3.json)0
-rw-r--r--pkg/vpn/launcher.go (renamed from pkg/standalone/launcher.go)4
-rw-r--r--pkg/vpn/launcher_linux.go (renamed from pkg/standalone/launcher_linux.go)4
-rw-r--r--pkg/vpn/main.go (renamed from pkg/standalone/main.go)6
-rw-r--r--pkg/vpn/openvpn.go (renamed from pkg/standalone/vpn.go)4
-rw-r--r--pkg/vpn/status.go (renamed from pkg/standalone/status.go)4
16 files changed, 83 insertions, 86 deletions
diff --git a/pkg/bitmask/autostart.go b/pkg/bitmask/autostart.go
index ebab428..1ba9162 100644
--- a/pkg/bitmask/autostart.go
+++ b/pkg/bitmask/autostart.go
@@ -1,3 +1,4 @@
+// +build !bitmaskd
// Copyright (C) 2018 LEAP
//
// This program is free software: you can redistribute it and/or modify
@@ -15,12 +16,56 @@
package bitmask
+import (
+ "fmt"
+ "log"
+ "os"
+ "path/filepath"
+ "regexp"
+
+ pmautostart "github.com/ProtonMail/go-autostart"
+)
+
+const (
+ errorMsg = `An error has ocurred initializing the VPN: %v`
+)
+
// Autostart holds the functions to enable and disable the application autostart
type Autostart interface {
Disable() error
Enable() error
}
+// newAutostart creates a handler for the autostart of your platform
+func newAutostart(appName string, iconPath string) Autostart {
+ exec := os.Args
+ if os.Getenv("SNAP") != "" {
+ re := regexp.MustCompile("/snap/([^/]*)/")
+ match := re.FindStringSubmatch(os.Args[0])
+ if len(match) > 1 {
+ snapName := match[1]
+ exec = []string{fmt.Sprintf("/snap/bin/%s.launcher", snapName)}
+ } else {
+ log.Printf("Snap binary has unknown path: %v", os.Args[0])
+ }
+ }
+
+ if exec[0][:2] == "./" || exec[0][:2] == ".\\" {
+ var err error
+ exec[0], err = filepath.Abs(exec[0])
+ if err != nil {
+ log.Printf("Error making the path absolute directory: %v", err)
+ }
+ }
+
+ return &pmautostart.App{
+ Name: appName,
+ Exec: exec,
+ DisplayName: appName,
+ Icon: iconPath,
+ }
+}
+
type dummyAutostart struct{}
func (a *dummyAutostart) Disable() error {
diff --git a/pkg/bitmask/init.go b/pkg/bitmask/init.go
index 9af7948..7f10ab9 100644
--- a/pkg/bitmask/init.go
+++ b/pkg/bitmask/init.go
@@ -16,6 +16,7 @@
package bitmask
import (
+ "errors"
"log"
"os"
"path"
@@ -25,6 +26,7 @@ import (
"0xacab.org/leap/bitmask-vpn/pkg/config"
"0xacab.org/leap/bitmask-vpn/pkg/pid"
+ "0xacab.org/leap/bitmask-vpn/pkg/vpn"
)
type ProviderInfo struct {
@@ -45,6 +47,15 @@ func InitializeLogger() {
}
}
+func initBitmask(printer *message.Printer) (Bitmask, error) {
+ b, err := vpn.Init()
+ if err != nil {
+ log.Printf("An error ocurred starting bitmask: %v", err)
+ err = errors.New(printer.Sprintf(errorMsg, err))
+ }
+ return b, err
+}
+
func InitializeBitmask() (Bitmask, error) {
if _, err := os.Stat(config.Path); os.IsNotExist(err) {
os.MkdirAll(config.Path, os.ModePerm)
@@ -60,7 +71,7 @@ func InitializeBitmask() (Bitmask, error) {
conf.Version = "unknown"
conf.Printer = initPrinter()
- b, err := Init(conf.Printer)
+ b, err := initBitmask(conf.Printer)
if err != nil {
// TODO notify failure
log.Fatal(err)
diff --git a/pkg/bitmask/standalone.go b/pkg/bitmask/standalone.go
deleted file mode 100644
index 92ea542..0000000
--- a/pkg/bitmask/standalone.go
+++ /dev/null
@@ -1,74 +0,0 @@
-// +build !bitmaskd
-// Copyright (C) 2018 LEAP
-//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-package bitmask
-
-import (
- "errors"
- "fmt"
- "log"
- "os"
- "path/filepath"
- "regexp"
-
- "0xacab.org/leap/bitmask-vpn/pkg/standalone"
- pmautostart "github.com/ProtonMail/go-autostart"
- "golang.org/x/text/message"
-)
-
-const (
- errorMsg = `An error has ocurred initializing the VPN: %v`
-)
-
-// Init bitmask
-func Init(printer *message.Printer) (Bitmask, error) {
- b, err := standalone.Init()
- if err != nil {
- log.Printf("An error ocurred starting standalone bitmask: %v", err)
- err = errors.New(printer.Sprintf(errorMsg, err))
- }
- return b, err
-}
-
-// newAutostart creates a handler for the autostart of your platform
-func newAutostart(appName string, iconPath string) Autostart {
- exec := os.Args
- if os.Getenv("SNAP") != "" {
- re := regexp.MustCompile("/snap/([^/]*)/")
- match := re.FindStringSubmatch(os.Args[0])
- if len(match) > 1 {
- snapName := match[1]
- exec = []string{fmt.Sprintf("/snap/bin/%s.launcher", snapName)}
- } else {
- log.Printf("Snap binary has unknown path: %v", os.Args[0])
- }
- }
-
- if exec[0][:2] == "./" || exec[0][:2] == ".\\" {
- var err error
- exec[0], err = filepath.Abs(exec[0])
- if err != nil {
- log.Printf("Error making the path absolute directory: %v", err)
- }
- }
-
- return &pmautostart.App{
- Name: appName,
- Exec: exec,
- DisplayName: appName,
- Icon: iconPath,
- }
-}
diff --git a/pkg/standalone/bonafide/bonafide.go b/pkg/vpn/bonafide/bonafide.go
index fd32f2a..fd32f2a 100644
--- a/pkg/standalone/bonafide/bonafide.go
+++ b/pkg/vpn/bonafide/bonafide.go
diff --git a/pkg/vpn/bonafide/bonafide_api_test.go b/pkg/vpn/bonafide/bonafide_api_test.go
new file mode 100644
index 0000000..7b48d8f
--- /dev/null
+++ b/pkg/vpn/bonafide/bonafide_api_test.go
@@ -0,0 +1,15 @@
+package bonafide
+
+import (
+ "log"
+ "testing"
+)
+
+func TestBonafideAPI(t *testing.T) {
+ b := New()
+ cert, err := b.GetCertPem()
+ if err != nil {
+ log.Fatal(err)
+ }
+ log.Println(string(cert))
+}
diff --git a/pkg/standalone/bonafide/bonafide_integration_test.go b/pkg/vpn/bonafide/bonafide_integration_test.go
index bea00fe..bea00fe 100644
--- a/pkg/standalone/bonafide/bonafide_integration_test.go
+++ b/pkg/vpn/bonafide/bonafide_integration_test.go
diff --git a/pkg/standalone/bonafide/bonafide_test.go b/pkg/vpn/bonafide/bonafide_test.go
index 8fb7f72..8fb7f72 100644
--- a/pkg/standalone/bonafide/bonafide_test.go
+++ b/pkg/vpn/bonafide/bonafide_test.go
diff --git a/pkg/standalone/bonafide/eip_service.go b/pkg/vpn/bonafide/eip_service.go
index c097e8a..c097e8a 100644
--- a/pkg/standalone/bonafide/eip_service.go
+++ b/pkg/vpn/bonafide/eip_service.go
diff --git a/pkg/standalone/bonafide/testdata/cert b/pkg/vpn/bonafide/testdata/cert
index 4968b3f..4968b3f 100644
--- a/pkg/standalone/bonafide/testdata/cert
+++ b/pkg/vpn/bonafide/testdata/cert
diff --git a/pkg/standalone/bonafide/testdata/eip-service.json b/pkg/vpn/bonafide/testdata/eip-service.json
index d5f2413..d5f2413 100644
--- a/pkg/standalone/bonafide/testdata/eip-service.json
+++ b/pkg/vpn/bonafide/testdata/eip-service.json
diff --git a/pkg/standalone/bonafide/testdata/eip-service3.json b/pkg/vpn/bonafide/testdata/eip-service3.json
index cefd6c0..cefd6c0 100644
--- a/pkg/standalone/bonafide/testdata/eip-service3.json
+++ b/pkg/vpn/bonafide/testdata/eip-service3.json
diff --git a/pkg/standalone/launcher.go b/pkg/vpn/launcher.go
index 621ba4c..e18fdc6 100644
--- a/pkg/standalone/launcher.go
+++ b/pkg/vpn/launcher.go
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-package standalone
+package vpn
import (
"bytes"
@@ -29,7 +29,7 @@ import (
"time"
"0xacab.org/leap/bitmask-vpn/pkg/config"
- "0xacab.org/leap/bitmask-vpn/pkg/standalone/bonafide"
+ "0xacab.org/leap/bitmask-vpn/pkg/vpn/bonafide"
)
type launcher struct {
diff --git a/pkg/standalone/launcher_linux.go b/pkg/vpn/launcher_linux.go
index 5b66415..71a74ea 100644
--- a/pkg/standalone/launcher_linux.go
+++ b/pkg/vpn/launcher_linux.go
@@ -14,7 +14,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-package standalone
+package vpn
import (
"errors"
@@ -24,7 +24,7 @@ import (
"strings"
"0xacab.org/leap/bitmask-vpn/pkg/config"
- "0xacab.org/leap/bitmask-vpn/pkg/standalone/bonafide"
+ "0xacab.org/leap/bitmask-vpn/pkg/vpn/bonafide"
"github.com/keybase/go-ps"
)
diff --git a/pkg/standalone/main.go b/pkg/vpn/main.go
index 4ac5776..ce599c9 100644
--- a/pkg/standalone/main.go
+++ b/pkg/vpn/main.go
@@ -1,4 +1,4 @@
-// Copyright (C) 2018 LEAP
+// Copyright (C) 2018-2020 LEAP
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-package standalone
+package vpn
import (
"io/ioutil"
@@ -21,7 +21,7 @@ import (
"os"
"0xacab.org/leap/bitmask-vpn/pkg/config"
- "0xacab.org/leap/bitmask-vpn/pkg/standalone/bonafide"
+ "0xacab.org/leap/bitmask-vpn/pkg/vpn/bonafide"
"0xacab.org/leap/shapeshifter"
"github.com/apparentlymart/go-openvpn-mgmt/openvpn"
)
diff --git a/pkg/standalone/vpn.go b/pkg/vpn/openvpn.go
index 4682a47..a75b830 100644
--- a/pkg/standalone/vpn.go
+++ b/pkg/vpn/openvpn.go
@@ -1,4 +1,4 @@
-// Copyright (C) 2018 LEAP
+// Copyright (C) 2018-2020 LEAP
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-package standalone
+package vpn
import (
"fmt"
diff --git a/pkg/standalone/status.go b/pkg/vpn/status.go
index 96177e1..a4d7ada 100644
--- a/pkg/standalone/status.go
+++ b/pkg/vpn/status.go
@@ -1,4 +1,4 @@
-// Copyright (C) 2018 LEAP
+// Copyright (C) 2018-2020 LEAP
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
-package standalone
+package vpn
import (
"fmt"