// 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 // 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 . package bitmask import ( "errors" "log" "os" "path" "strconv" "github.com/jmshal/go-locale" "golang.org/x/text/message" "0xacab.org/leap/bitmask-vpn/pkg/config" "0xacab.org/leap/bitmask-vpn/pkg/pid" "0xacab.org/leap/bitmask-vpn/pkg/vpn" ) type ProviderInfo struct { Provider string AppName string } type ProviderOpts struct { Provider string `json:"name"` AppName string `json:"applicationName"` BinaryName string `json:"binaryName"` Auth string `json:"auth"` AuthEmptyPass string `json:"authEmptyPass"` ProviderURL string `json:"providerURL"` DonateURL string `json:"donateURL"` ApiURL string `json:"apiURL"` TosURL string `json:"tosURL"` HelpURL string `json:"helpURL"` GeolocationURL string `json:"geolocationAPI"` AskForDonations string `json:"askForDonations"` CaCert string `json:"caCertString"` } func GetConfiguredProvider() *ProviderInfo { provider := config.Provider appName := config.ApplicationName return &ProviderInfo{provider, appName} } func ConfigureProvider(opts *ProviderOpts) { config.Provider = opts.ProviderURL config.ProviderName = opts.Provider config.ApplicationName = opts.AppName config.BinaryName = opts.BinaryName config.Auth = opts.Auth config.DonateURL = opts.DonateURL config.HelpURL = opts.HelpURL config.TosURL = opts.TosURL config.APIURL = opts.ApiURL config.GeolocationAPI = opts.GeolocationURL config.CaCert = []byte(opts.CaCert) wantsDonations, err := strconv.ParseBool(opts.AskForDonations) if err == nil { config.AskForDonations = wantsDonations } emptyPass, err := strconv.ParseBool(opts.AuthEmptyPass) if err == nil { config.AuthEmptyPass = emptyPass log.Println("DEBUG: provider allows empty pass:", emptyPass) } } func InitializeLogger() { _, err := config.ConfigureLogger(path.Join(config.LogPath)) if err != nil { log.Println("Can't configure logger: ", err) } } 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(skipLaunch bool) (Bitmask, error) { if skipLaunch { log.Println("Initializing bitmask, but not launching it...") } if _, err := os.Stat(config.Path); os.IsNotExist(err) { os.MkdirAll(config.Path, os.ModePerm) } err := pid.AcquirePID() if err != nil { log.Println("Error acquiring PID:", err) return nil, err } defer pid.ReleasePID() conf := config.ParseConfig() conf.Printer = initPrinter() b, err := initBitmask(conf.Printer) if err != nil { return nil, err } err = setTransport(b, conf) if err != nil { return nil, err } if !skipLaunch { err := maybeStartVPN(b, conf) if err != nil { log.Println("Error starting VPN: ", err) return nil, err } } var as Autostart if skipLaunch || conf.DisableAustostart { as = &dummyAutostart{} } else { as = newAutostart(config.ApplicationName, "") } err = as.Enable() if err != nil { log.Printf("Error enabling autostart: %v", err) } return b, nil } func initPrinter() *message.Printer { locale, err := go_locale.DetectLocale() if err != nil { log.Println("Error detecting the system locale: ", err) } return message.NewPrinter(message.MatchLanguage(locale, "en")) } func setTransport(b Bitmask, conf *config.Config) error { if conf.Obfs4 { err := b.UseTransport("obfs4") if err != nil { log.Printf("Error setting transport: %v", err) return err } } return nil } func maybeStartVPN(b Bitmask, conf *config.Config) error { if !conf.StartVPN { return nil } if b.CanStartVPN() { err := b.StartVPN(config.Provider) conf.SetUserStoppedVPN(false) return err } return nil }