]> Cypherpunks.ru repositories - nncp.git/blob - src/cypherpunks.ru/nncp/cmd/nncp-check/main.go
Forbid any later GNU GPL versions autousage
[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, 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         "cypherpunks.ru/nncp"
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
64         var nodeOnly *nncp.Node
65         if *nodeRaw != "" {
66                 nodeOnly, err = ctx.FindNode(*nodeRaw)
67                 if err != nil {
68                         log.Fatalln("Invalid -node specified:", err)
69                 }
70         }
71
72         isBad := false
73         for nodeId, node := range ctx.Neigh {
74                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
75                         continue
76                 }
77                 if !ctx.Check(node.Id) {
78                         isBad = true
79                 }
80         }
81         if isBad {
82                 os.Exit(1)
83         }
84 }