]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-check/main.go
MTH
[nncp.git] / src / cmd / nncp-check / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2021 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, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 // Verify NNCP Rx/Tx packets checksum.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "log"
25         "os"
26         "path/filepath"
27
28         "go.cypherpunks.ru/nncp/v7"
29 )
30
31 func usage() {
32         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
33         fmt.Fprintf(os.Stderr, "nncp-check -- verify Rx/Tx packets checksum\n\n")
34         fmt.Fprintf(os.Stderr, "Usage: %s [-nock] [options]\nOptions:\n", os.Args[0])
35         flag.PrintDefaults()
36 }
37
38 func main() {
39         var (
40                 nock      = flag.Bool("nock", false, "Process .nock files")
41                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
42                 nodeRaw   = flag.String("node", "", "Process only that node")
43                 spoolPath = flag.String("spool", "", "Override path to spool")
44                 logPath   = flag.String("log", "", "Override path to logfile")
45                 quiet     = flag.Bool("quiet", false, "Print only errors")
46                 showPrgrs = flag.Bool("progress", false, "Force progress showing")
47                 omitPrgrs = flag.Bool("noprogress", false, "Omit progress showing")
48                 debug     = flag.Bool("debug", false, "Print debug messages")
49                 version   = flag.Bool("version", false, "Print version information")
50                 warranty  = flag.Bool("warranty", false, "Print warranty information")
51         )
52         log.SetFlags(log.Lshortfile)
53         flag.Usage = usage
54         flag.Parse()
55         if *warranty {
56                 fmt.Println(nncp.Warranty)
57                 return
58         }
59         if *version {
60                 fmt.Println(nncp.VersionGet())
61                 return
62         }
63
64         ctx, err := nncp.CtxFromCmdline(
65                 *cfgPath,
66                 *spoolPath,
67                 *logPath,
68                 *quiet,
69                 *showPrgrs,
70                 *omitPrgrs,
71                 *debug,
72         )
73         if err != nil {
74                 log.Fatalln("Error during initialization:", err)
75         }
76         ctx.Umask()
77
78         var nodeOnly *nncp.Node
79         if *nodeRaw != "" {
80                 nodeOnly, err = ctx.FindNode(*nodeRaw)
81                 if err != nil {
82                         log.Fatalln("Invalid -node specified:", err)
83                 }
84         }
85
86         isBad := false
87         for nodeId, node := range ctx.Neigh {
88                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
89                         continue
90                 }
91                 if *nock {
92                         for job := range ctx.JobsNoCK(node.Id) {
93                                 if _, err = ctx.CheckNoCK(node.Id, job.HshValue, nil); err != nil {
94                                         pktName := nncp.Base32Codec.EncodeToString(job.HshValue[:])
95                                         log.Println(filepath.Join(
96                                                 ctx.Spool,
97                                                 nodeId.String(),
98                                                 string(nncp.TRx),
99                                                 pktName+nncp.NoCKSuffix,
100                                         ), err)
101                                         isBad = true
102                                 }
103                         }
104                 } else if !ctx.Check(node.Id) {
105                         isBad = true
106                 }
107         }
108         if isBad {
109                 os.Exit(1)
110         }
111 }