]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/egd.go
Fix copyright years
[govpn.git] / src / cypherpunks.ru / govpn / egd.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2017 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         "crypto/rand"
23         "io"
24         "net"
25
26         "github.com/Sirupsen/logrus"
27         "github.com/pkg/errors"
28 )
29
30 // Rand is a source of entropy
31 var Rand = rand.Reader
32
33 // EGDRand is a EGD (Entropy Gathering Daemon) source of entropy
34 type EGDRand string
35
36 // Read n bytes from EGD, blocking mode.
37 func (egdPath EGDRand) Read(b []byte) (int, error) {
38         conn, err := net.Dial("unix", string(egdPath))
39         if err != nil {
40                 return 0, errors.Wrapf(err, "net.Dial unix:%q", string(egdPath))
41         }
42         defer CloseLog(conn, logger, logrus.Fields{"func": logFuncPrefix + "EGDRand.Read"})
43         n, err := conn.Write([]byte{0x02, byte(len(b))})
44         if err != nil {
45                 return 0, errors.Wrapf(err, "conn.Write unix:%q", string(egdPath))
46         }
47         if n, err = io.ReadFull(conn, b); err != nil {
48                 return 0, errors.Wrapf(err, wrapIoReadFull, string(egdPath))
49         }
50         return n, nil
51 }
52
53 // EGDInit sets random source to a EGD socket
54 func EGDInit(path string) {
55         Rand = EGDRand(path)
56 }