]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-check/main.go
186357ee3d458698d8993aa4fb664e34df6741db
[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-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, 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
27         "go.cypherpunks.ru/nncp/v5"
28 )
29
30 func usage() {
31         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
32         fmt.Fprintf(os.Stderr, "nncp-check -- verify Rx/Tx packets checksum\n\n")
33         fmt.Fprintf(os.Stderr, "Usage: %s [options]\nOptions:\n", os.Args[0])
34         flag.PrintDefaults()
35 }
36
37 func main() {
38         var (
39                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
40                 nodeRaw   = flag.String("node", "", "Process only that node")
41                 spoolPath = flag.String("spool", "", "Override path to spool")
42                 logPath   = flag.String("log", "", "Override path to logfile")
43                 quiet     = flag.Bool("quiet", false, "Print only errors")
44                 debug     = flag.Bool("debug", false, "Print debug messages")
45                 version   = flag.Bool("version", false, "Print version information")
46                 warranty  = flag.Bool("warranty", false, "Print warranty information")
47         )
48         flag.Usage = usage
49         flag.Parse()
50         if *warranty {
51                 fmt.Println(nncp.Warranty)
52                 return
53         }
54         if *version {
55                 fmt.Println(nncp.VersionGet())
56                 return
57         }
58
59         ctx, err := nncp.CtxFromCmdline(*cfgPath, *spoolPath, *logPath, *quiet, *debug)
60         if err != nil {
61                 log.Fatalln("Error during initialization:", err)
62         }
63         ctx.Umask()
64
65         var nodeOnly *nncp.Node
66         if *nodeRaw != "" {
67                 nodeOnly, err = ctx.FindNode(*nodeRaw)
68                 if err != nil {
69                         log.Fatalln("Invalid -node specified:", err)
70                 }
71         }
72
73         isBad := false
74         for nodeId, node := range ctx.Neigh {
75                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
76                         continue
77                 }
78                 if !ctx.Check(node.Id) {
79                         isBad = true
80                 }
81         }
82         if isBad {
83                 os.Exit(1)
84         }
85 }