]> Cypherpunks.ru repositories - govpn.git/blob - common.go
Ability to append noise to outgoing packets
[govpn.git] / common.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2015 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package govpn
20
21 import (
22         "encoding/hex"
23         "io/ioutil"
24         "log"
25         "os"
26         "os/exec"
27         "runtime"
28 )
29
30 var (
31         MTU         int
32         Timeout     int
33         Noncediff   int
34         Version     string
35         NoiseEnable bool = false
36 )
37
38 // Call external program/script.
39 // You have to specify path to it and (inteface name as a rule) something
40 // that will be the first argument when calling it. Function will return
41 // it's output and possible error.
42 func ScriptCall(path, ifaceName string) ([]byte, error) {
43         if path == "" {
44                 return nil, nil
45         }
46         if _, err := os.Stat(path); err != nil && os.IsNotExist(err) {
47                 return nil, err
48         }
49         out, err := exec.Command(path, ifaceName).CombinedOutput()
50         if err != nil {
51                 log.Println("Script error", path, err, string(out))
52         }
53         return out, err
54 }
55
56 // Read authentication key from the file.
57 // Key is 64 hexadecimal chars long.
58 func KeyRead(path string) *[KeySize]byte {
59         keyData, err := ioutil.ReadFile(path)
60         if err != nil {
61                 panic("Unable to read keyfile: " + err.Error())
62         }
63         if len(keyData) < 64 {
64                 panic("Key must be 64 hex characters long")
65         }
66         keyDecoded, err := hex.DecodeString(string(keyData[0:64]))
67         if err != nil {
68                 panic("Unable to decode the key: " + err.Error())
69         }
70         key := new([KeySize]byte)
71         copy(key[:], keyDecoded)
72         return key
73 }
74
75 // Zero each byte
76 func sliceZero(data []byte) {
77         for i := 0; i < len(data); i++ {
78                 data[i] = '\x00'
79         }
80 }
81
82 func VersionGet() string {
83         return "GoVPN version " + Version + " built with " + runtime.Version()
84 }