]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/check.go
c83c80b1b804ac0b27e47b4a5c70cc4e621da6c1
[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-2019 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{
45                         "xx":   string(xx),
46                         "node": nodeId,
47                         "pkt":  ToBase32(job.HshValue[:]),
48                 }
49                 ctx.LogP("check", sds, "")
50                 gut, err := Check(job.Fd, job.HshValue[:])
51                 job.Fd.Close()
52                 if err != nil {
53                         ctx.LogE("check", SdsAdd(sds, SDS{"err": err}), "")
54                         return false
55                 }
56                 if !gut {
57                         isBad = true
58                         ctx.LogE("check", sds, "bad")
59                 }
60         }
61         return isBad
62 }
63
64 func (ctx *Ctx) Check(nodeId *NodeId) bool {
65         return ctx.checkXx(nodeId, TRx) || ctx.checkXx(nodeId, TTx)
66 }