]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-check/main.go
a99bd2f0c20ee62c10d2029147fbe045919431c1
[nncp.git] / src / cypherpunks.ru / nncp / 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, 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 // Verify NNCP Rx/Tx packets checksum.
20 package main
21
22 import (
23         "flag"
24         "fmt"
25         "log"
26         "os"
27
28         "cypherpunks.ru/nncp"
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 [options]\nOptions:\n", os.Args[0])
35         flag.PrintDefaults()
36 }
37
38 func main() {
39         var (
40                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
41                 nodeRaw   = flag.String("node", "", "Process only that node")
42                 spoolPath = flag.String("spool", "", "Override path to spool")
43                 logPath   = flag.String("log", "", "Override path to logfile")
44                 quiet     = flag.Bool("quiet", false, "Print only errors")
45                 debug     = flag.Bool("debug", false, "Print debug messages")
46                 version   = flag.Bool("version", false, "Print version information")
47                 warranty  = flag.Bool("warranty", false, "Print warranty information")
48         )
49         flag.Usage = usage
50         flag.Parse()
51         if *warranty {
52                 fmt.Println(nncp.Warranty)
53                 return
54         }
55         if *version {
56                 fmt.Println(nncp.VersionGet())
57                 return
58         }
59
60         ctx, err := nncp.CtxFromCmdline(*cfgPath, *spoolPath, *logPath, *quiet, *debug)
61         if err != nil {
62                 log.Fatalln("Error during initialization:", err)
63         }
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 }