| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*
- * Copyright (c) 2015, Psiphon Inc.
- * All rights reserved.
- *
- * 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 psiphon
- import (
- "bytes"
- "encoding/hex"
- "encoding/json"
- "errors"
- "strings"
- )
- // ServerEntry represents a Psiphon server. It contains information
- // about how to estalish a tunnel connection to the server through
- // several protocols. ServerEntry are JSON records downloaded from
- // various sources.
- type ServerEntry struct {
- IpAddress string `json:"ipAddress"`
- WebServerPort string `json:"webServerPort"` // not an int
- WebServerSecret string `json:"webServerSecret"`
- WebServerCertificate string `json:"webServerCertificate"`
- SshPort int `json:"sshPort"`
- SshUsername string `json:"sshUsername"`
- SshPassword string `json:"sshPassword"`
- SshHostKey string `json:"sshHostKey"`
- SshObfuscatedPort int `json:"sshObfuscatedPort"`
- SshObfuscatedKey string `json:"sshObfuscatedKey"`
- Capabilities []string `json:"capabilities"`
- Region string `json:"region"`
- MeekServerPort int `json:"meekServerPort"`
- MeekCookieEncryptionPublicKey string `json:"meekCookieEncryptionPublicKey"`
- MeekObfuscatedKey string `json:"meekObfuscatedKey"`
- MeekFrontingDomain string `json:"meekFrontingDomain"`
- MeekFrontingHost string `json:"meekFrontingHost"`
- }
- // DecodeServerEntry extracts server entries from the encoding
- // used by remote server lists and Psiphon server handshake requests.
- func DecodeServerEntry(encodedServerEntry string) (serverEntry *ServerEntry, err error) {
- hexDecodedServerEntry, err := hex.DecodeString(encodedServerEntry)
- if err != nil {
- return nil, ContextError(err)
- }
- // Skip past legacy format (4 space delimited fields) and just parse the JSON config
- fields := bytes.SplitN(hexDecodedServerEntry, []byte(" "), 5)
- if len(fields) != 5 {
- return nil, ContextError(errors.New("invalid encoded server entry"))
- }
- serverEntry = new(ServerEntry)
- err = json.Unmarshal(fields[4], &serverEntry)
- if err != nil {
- return nil, ContextError(err)
- }
- return serverEntry, nil
- }
- // DecodeServerEntryList extracts server entries from the list encoding
- // used by remote server lists and Psiphon server handshake requests.
- func DecodeServerEntryList(encodedServerEntryList string) (serverEntries []*ServerEntry, err error) {
- serverEntries = make([]*ServerEntry, 0)
- for _, encodedServerEntry := range strings.Split(encodedServerEntryList, "\n") {
- serverEntry, err := DecodeServerEntry(encodedServerEntry)
- if err != nil {
- return nil, ContextError(err)
- }
- serverEntries = append(serverEntries, serverEntry)
- }
- return serverEntries, nil
- }
|