]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/node.go
5edd5ead8554817565792bcb22a7c690d8560e85
[nncp.git] / src / cypherpunks.ru / nncp / node.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-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 nncp
20
21 import (
22         "crypto/rand"
23         "errors"
24
25         "github.com/flynn/noise"
26         "golang.org/x/crypto/blake2b"
27         "golang.org/x/crypto/ed25519"
28         "golang.org/x/crypto/nacl/box"
29 )
30
31 type NodeId [blake2b.Size256]byte
32
33 func (id NodeId) String() string {
34         return ToBase32(id[:])
35 }
36
37 type Node struct {
38         Name           string
39         Id             *NodeId
40         ExchPub        *[32]byte
41         SignPub        ed25519.PublicKey
42         NoisePub       *[32]byte
43         Sendmail       []string
44         Incoming       *string
45         Freq           *string
46         Via            []*NodeId
47         Addrs          map[string]string
48         OnlineDeadline int
49 }
50
51 type NodeOur struct {
52         Id       *NodeId
53         ExchPub  *[32]byte
54         ExchPrv  *[32]byte
55         SignPub  ed25519.PublicKey
56         SignPrv  ed25519.PrivateKey
57         NoisePub *[32]byte
58         NoisePrv *[32]byte
59 }
60
61 func NewNodeGenerate() (*NodeOur, error) {
62         exchPub, exchPrv, err := box.GenerateKey(rand.Reader)
63         if err != nil {
64                 return nil, err
65         }
66         signPub, signPrv, err := ed25519.GenerateKey(rand.Reader)
67         if err != nil {
68                 return nil, err
69         }
70         noiseKey := noise.DH25519.GenerateKeypair(rand.Reader)
71         noisePub := new([32]byte)
72         noisePrv := new([32]byte)
73         copy(noisePrv[:], noiseKey.Private)
74         copy(noisePub[:], noiseKey.Public)
75
76         id := NodeId(blake2b.Sum256([]byte(signPub)))
77         node := NodeOur{
78                 Id:       &id,
79                 ExchPub:  exchPub,
80                 ExchPrv:  exchPrv,
81                 SignPub:  signPub,
82                 SignPrv:  signPrv,
83                 NoisePub: noisePub,
84                 NoisePrv: noisePrv,
85         }
86         return &node, nil
87 }
88
89 func (nodeOur *NodeOur) Their() *Node {
90         return &Node{
91                 Name:    "self",
92                 Id:      nodeOur.Id,
93                 ExchPub: nodeOur.ExchPub,
94                 SignPub: nodeOur.SignPub,
95         }
96 }
97
98 func NodeIdFromString(raw string) (*NodeId, error) {
99         decoded, err := FromBase32(raw)
100         if err != nil {
101                 return nil, err
102         }
103         if len(decoded) != blake2b.Size256 {
104                 return nil, errors.New("Invalid node id size")
105         }
106         buf := new([blake2b.Size256]byte)
107         copy(buf[:], decoded)
108         nodeId := NodeId(*buf)
109         return &nodeId, nil
110 }