Skip to content

Commit

Permalink
Feature: Private Internet Access custom port
Browse files Browse the repository at this point in the history
  • Loading branch information
qdm12 committed Jan 31, 2021
1 parent 8f43549 commit 3c7dc9b
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 18 deletions.
3 changes: 2 additions & 1 deletion internal/models/selection.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type ServerSelection struct {
ISPs []string `json:"isps"`
Owned bool `json:"owned"`

// Mullvad, Windscribe
// Mullvad, Windscribe, PIA
CustomPort uint16 `json:"custom_port"`

// NordVPN
Expand Down Expand Up @@ -92,6 +92,7 @@ func (p *ProviderSettings) String() string {
"Regions: "+commaJoin(p.ServerSelection.Regions),
"Encryption preset: "+p.ExtraConfigOptions.EncryptionPreset,
"Port forwarding: "+p.PortForwarding.String(),
"Custom port: "+customPort,
)
case "mullvad":
settingsList = append(settingsList,
Expand Down
1 change: 1 addition & 0 deletions internal/params/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ type Reader interface {
GetPortForwardingStatusFilepath() (filepath models.Filepath, err error)
GetPIAEncryptionPreset() (preset string, err error)
GetPIARegions() (regions []string, err error)
GetPIAPort() (port uint16, err error)

// Mullvad getters
GetMullvadCountries() (countries []string, err error)
Expand Down
7 changes: 7 additions & 0 deletions internal/params/pia.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,10 @@ func (r *reader) GetPIAEncryptionPreset() (preset string, err error) {
func (r *reader) GetPIARegions() (regions []string, err error) {
return r.env.CSVInside("REGION", constants.PIAGeoChoices())
}

// GetPIAPort obtains the port to reach the PIA server on from the
// environment variable PORT.
func (r *reader) GetPIAPort() (port uint16, err error) {
n, err := r.env.IntRange("PORT", 0, 65535, libparams.Default("0"))
return uint16(n), err
}
69 changes: 52 additions & 17 deletions internal/provider/piav4.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"crypto/x509"
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"math/rand"
Expand Down Expand Up @@ -40,29 +41,63 @@ func newPrivateInternetAccess(servers []models.PIAServer, timeNow timeNowFunc) *
}
}

func (p *pia) GetOpenVPNConnection(selection models.ServerSelection) (
connection models.OpenVPNConnection, err error) {
var port uint16
var (
ErrInvalidPort = errors.New("invalid port number")
)

func (p *pia) getPort(selection models.ServerSelection) (port uint16, err error) {
if selection.CustomPort == 0 {
switch selection.Protocol {
case constants.TCP:
switch selection.EncryptionPreset {
case constants.PIAEncryptionPresetNormal:
port = 502
case constants.PIAEncryptionPresetStrong:
port = 501
}
case constants.UDP:
switch selection.EncryptionPreset {
case constants.PIAEncryptionPresetNormal:
port = 1198
case constants.PIAEncryptionPresetStrong:
port = 1197
}
}

if port == 0 {
return 0, fmt.Errorf(
"%w: combination of protocol %q and encryption %q does not yield any port number",
ErrInvalidPort, selection.Protocol, selection.EncryptionPreset)
}
return port, nil
}

port = selection.CustomPort
switch selection.Protocol {
case constants.TCP:
switch selection.EncryptionPreset {
case constants.PIAEncryptionPresetNormal:
port = 502
case constants.PIAEncryptionPresetStrong:
port = 501
switch port {
case 80, 110, 443: //nolint:gomnd
default:
return 0, fmt.Errorf("%w: %d for protocol %s",
ErrInvalidPort, port, selection.Protocol)
}
case constants.UDP:
switch selection.EncryptionPreset {
case constants.PIAEncryptionPresetNormal:
port = 1198
case constants.PIAEncryptionPresetStrong:
port = 1197
switch port {
case 53, 1194, 1197, 1198, 8080, 9201: //nolint:gomnd
default:
return 0, fmt.Errorf("%w: %d for protocol %s",
ErrInvalidPort, port, selection.Protocol)
}
}
if port == 0 {
return connection, fmt.Errorf(
"combination of protocol %q and encryption %q does not yield any port number",
selection.Protocol, selection.EncryptionPreset)

return port, nil
}

func (p *pia) GetOpenVPNConnection(selection models.ServerSelection) (
connection models.OpenVPNConnection, err error) {
port, err := p.getPort(selection)
if err != nil {
return connection, err
}

servers := p.servers
Expand Down
4 changes: 4 additions & 0 deletions internal/settings/providers.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ func GetPIASettings(paramsReader params.Reader) (settings models.ProviderSetting
if err != nil {
return settings, err
}
settings.ServerSelection.CustomPort, err = paramsReader.GetPIAPort()
if err != nil {
return settings, err
}
settings.PortForwarding.Enabled, err = paramsReader.GetPortForwarding()
if err != nil {
return settings, err
Expand Down

0 comments on commit 3c7dc9b

Please sign in to comment.