]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-check/main.go
Raise copyright years
[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-2022 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         "time"
28
29         "go.cypherpunks.ru/nncp/v8"
30 )
31
32 func usage() {
33         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
34         fmt.Fprintf(os.Stderr, "nncp-check -- verify Rx/Tx packets checksum\n\n")
35         fmt.Fprintf(os.Stderr, "Usage: %s [-nock] [options]\nOptions:\n", os.Args[0])
36         flag.PrintDefaults()
37 }
38
39 func main() {
40         var (
41                 nock      = flag.Bool("nock", false, "Process .nock files")
42                 cycle     = flag.Uint("cycle", 0, "Repeat check after N seconds in infinite loop")
43                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
44                 nodeRaw   = flag.String("node", "", "Process only that node")
45                 spoolPath = flag.String("spool", "", "Override path to spool")
46                 logPath   = flag.String("log", "", "Override path to logfile")
47                 quiet     = flag.Bool("quiet", false, "Print only errors")
48                 showPrgrs = flag.Bool("progress", false, "Force progress showing")
49                 omitPrgrs = flag.Bool("noprogress", false, "Omit progress showing")
50                 debug     = flag.Bool("debug", false, "Print debug messages")
51                 version   = flag.Bool("version", false, "Print version information")
52                 warranty  = flag.Bool("warranty", false, "Print warranty information")
53         )
54         log.SetFlags(log.Lshortfile)
55         flag.Usage = usage
56         flag.Parse()
57         if *warranty {
58                 fmt.Println(nncp.Warranty)
59                 return
60         }
61         if *version {
62                 fmt.Println(nncp.VersionGet())
63                 return
64         }
65
66         ctx, err := nncp.CtxFromCmdline(
67                 *cfgPath,
68                 *spoolPath,
69                 *logPath,
70                 *quiet,
71                 *showPrgrs,
72                 *omitPrgrs,
73                 *debug,
74         )
75         if err != nil {
76                 log.Fatalln("Error during initialization:", err)
77         }
78         ctx.Umask()
79
80         var nodeOnly *nncp.Node
81         if *nodeRaw != "" {
82                 nodeOnly, err = ctx.FindNode(*nodeRaw)
83                 if err != nil {
84                         log.Fatalln("Invalid -node specified:", err)
85                 }
86         }
87
88 Cycle:
89         isBad := false
90         for nodeId, node := range ctx.Neigh {
91                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
92                         continue
93                 }
94                 if *nock {
95                         for job := range ctx.JobsNoCK(node.Id) {
96                                 if _, err = ctx.CheckNoCK(node.Id, job.HshValue, nil); err != nil {
97                                         pktName := nncp.Base32Codec.EncodeToString(job.HshValue[:])
98                                         log.Println(filepath.Join(
99                                                 ctx.Spool,
100                                                 nodeId.String(),
101                                                 string(nncp.TRx),
102                                                 pktName+nncp.NoCKSuffix,
103                                         ), err)
104                                         isBad = true
105                                 }
106                         }
107                 } else if !ctx.Check(node.Id) {
108                         isBad = true
109                 }
110         }
111         if *cycle > 0 {
112                 time.Sleep(time.Duration(*cycle) * time.Second)
113                 goto Cycle
114         }
115         if isBad {
116                 os.Exit(1)
117         }
118 }