]> Cypherpunks.ru repositories - govpn.git/blob - common.go
Merge branch 'develop'
[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         "bytes"
23         "encoding/hex"
24         "io/ioutil"
25         "log"
26         "os"
27         "os/exec"
28 )
29
30 var (
31         MTU       int
32         Timeout   int
33         Noncediff int
34         Version   string
35 )
36
37 // Call external program/script.
38 // You have to specify path to it and (inteface name as a rule) something
39 // that will be the first argument when calling it. Function will return
40 // it's output and possible error.
41 func ScriptCall(path, ifaceName string) ([]byte, error) {
42         if path == "" {
43                 return nil, nil
44         }
45         if _, err := os.Stat(path); err != nil && os.IsNotExist(err) {
46                 return nil, err
47         }
48         cmd := exec.Command(path, ifaceName)
49         var out bytes.Buffer
50         cmd.Stdout = &out
51         err := cmd.Run()
52         result := out.Bytes()
53         if err != nil {
54                 log.Println("Script error", path, err, string(result))
55         }
56         return result, err
57 }
58
59 // Read authentication key from the file.
60 // Key is 64 hexadecimal chars long.
61 func KeyRead(path string) *[KeySize]byte {
62         keyData, err := ioutil.ReadFile(path)
63         if err != nil {
64                 panic("Unable to read keyfile: " + err.Error())
65         }
66         if len(keyData) < 64 {
67                 panic("Key must be 64 hex characters long")
68         }
69         keyDecoded, err := hex.DecodeString(string(keyData[0:64]))
70         if err != nil {
71                 panic("Unable to decode the key: " + err.Error())
72         }
73         key := new([KeySize]byte)
74         copy(key[:], keyDecoded)
75         return key
76 }