]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-toss/main.go
Operations progress
[nncp.git] / src / cmd / nncp-toss / 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 // Process inbound NNCP packets.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "log"
25         "os"
26         "time"
27
28         "go.cypherpunks.ru/nncp/v5"
29 )
30
31 func usage() {
32         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
33         fmt.Fprintf(os.Stderr, "nncp-toss -- process inbound packets\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                 niceRaw   = flag.String("nice", nncp.NicenessFmt(255), "Minimal required niceness")
43                 dryRun    = flag.Bool("dryrun", false, "Do not actually write any tossed data")
44                 doSeen    = flag.Bool("seen", false, "Create .seen files")
45                 cycle     = flag.Uint("cycle", 0, "Repeat tossing after N seconds in infinite loop")
46                 noFile    = flag.Bool("nofile", false, "Do not process packets with type: file")
47                 noFreq    = flag.Bool("nofreq", false, "Do not process packets with type: freq")
48                 noExec    = flag.Bool("noexec", false, "Do not process packets with type: exec")
49                 noTrns    = flag.Bool("notrns", false, "Do not process packets with type: transitional")
50                 spoolPath = flag.String("spool", "", "Override path to spool")
51                 logPath   = flag.String("log", "", "Override path to logfile")
52                 quiet     = flag.Bool("quiet", false, "Print only errors")
53                 showPrgrs = flag.Bool("progress", false, "Force progress showing")
54                 omitPrgrs = flag.Bool("noprogress", false, "Omit progress showing")
55                 debug     = flag.Bool("debug", false, "Print debug messages")
56                 version   = flag.Bool("version", false, "Print version information")
57                 warranty  = flag.Bool("warranty", false, "Print warranty information")
58         )
59         flag.Usage = usage
60         flag.Parse()
61         if *warranty {
62                 fmt.Println(nncp.Warranty)
63                 return
64         }
65         if *version {
66                 fmt.Println(nncp.VersionGet())
67                 return
68         }
69         nice, err := nncp.NicenessParse(*niceRaw)
70         if err != nil {
71                 log.Fatalln(err)
72         }
73
74         ctx, err := nncp.CtxFromCmdline(
75                 *cfgPath,
76                 *spoolPath,
77                 *logPath,
78                 *quiet,
79                 *showPrgrs,
80                 *omitPrgrs,
81                 *debug,
82         )
83         if err != nil {
84                 log.Fatalln("Error during initialization:", err)
85         }
86         if ctx.Self == nil {
87                 log.Fatalln("Config lacks private keys")
88         }
89
90         var nodeOnly *nncp.Node
91         if *nodeRaw != "" {
92                 nodeOnly, err = ctx.FindNode(*nodeRaw)
93                 if err != nil {
94                         log.Fatalln("Invalid -node specified:", err)
95                 }
96         }
97
98         ctx.Umask()
99
100 Cycle:
101         isBad := false
102         for nodeId, node := range ctx.Neigh {
103                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
104                         continue
105                 }
106                 isBad = ctx.Toss(
107                         node.Id,
108                         nice,
109                         *dryRun,
110                         *doSeen,
111                         *noFile,
112                         *noFreq,
113                         *noExec,
114                         *noTrns,
115                 )
116         }
117         if *cycle > 0 {
118                 time.Sleep(time.Duration(*cycle) * time.Second)
119                 goto Cycle
120         }
121         if isBad {
122                 os.Exit(1)
123         }
124 }