]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/check.go
NNCP is expanded to "Node to Node copy"
[nncp.git] / src / cypherpunks.ru / nncp / check.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         "bufio"
23         "bytes"
24         "io"
25         "log"
26
27         "golang.org/x/crypto/blake2b"
28 )
29
30 func Check(src io.Reader, checksum []byte) (bool, error) {
31         hsh, err := blake2b.New256(nil)
32         if err != nil {
33                 log.Fatalln(err)
34         }
35         if _, err = io.Copy(hsh, bufio.NewReader(src)); err != nil {
36                 return false, err
37         }
38         return bytes.Compare(hsh.Sum(nil), checksum) == 0, nil
39 }
40
41 func (ctx *Ctx) checkXx(nodeId *NodeId, xx TRxTx) bool {
42         isBad := false
43         for job := range ctx.Jobs(nodeId, xx) {
44                 sds := SDS{"xx": string(xx), "node": nodeId, "pkt": job.Fd.Name()}
45                 gut, err := Check(job.Fd, job.HshValue[:])
46                 job.Fd.Close()
47                 if err != nil {
48                         ctx.LogE("toss-check", SdsAdd(sds, SDS{"err": err}), "")
49                         return false
50                 }
51                 if !gut {
52                         isBad = true
53                         ctx.LogE("toss-check", sds, "bad")
54                 }
55         }
56         return isBad
57 }
58
59 func (ctx *Ctx) Check(nodeId *NodeId) bool {
60         return ctx.checkXx(nodeId, TRx) || ctx.checkXx(nodeId, TTx)
61 }