]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-toss/main.go
Multicast areas
[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-2021 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/v7"
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 \"file\" packets")
47                 noFreq    = flag.Bool("nofreq", false, "Do not process \"freq\" packets")
48                 noExec    = flag.Bool("noexec", false, "Do not process \"exec\" packets")
49                 noTrns    = flag.Bool("notrns", false, "Do not process \"transitional\" packets")
50                 noArea    = flag.Bool("noarea", false, "Do not process \"area\" packets")
51                 spoolPath = flag.String("spool", "", "Override path to spool")
52                 logPath   = flag.String("log", "", "Override path to logfile")
53                 quiet     = flag.Bool("quiet", false, "Print only errors")
54                 showPrgrs = flag.Bool("progress", false, "Force progress showing")
55                 omitPrgrs = flag.Bool("noprogress", false, "Omit progress showing")
56                 debug     = flag.Bool("debug", false, "Print debug messages")
57                 version   = flag.Bool("version", false, "Print version information")
58                 warranty  = flag.Bool("warranty", false, "Print warranty information")
59         )
60         log.SetFlags(log.Lshortfile)
61         flag.Usage = usage
62         flag.Parse()
63         if *warranty {
64                 fmt.Println(nncp.Warranty)
65                 return
66         }
67         if *version {
68                 fmt.Println(nncp.VersionGet())
69                 return
70         }
71         nice, err := nncp.NicenessParse(*niceRaw)
72         if err != nil {
73                 log.Fatalln(err)
74         }
75
76         ctx, err := nncp.CtxFromCmdline(
77                 *cfgPath,
78                 *spoolPath,
79                 *logPath,
80                 *quiet,
81                 *showPrgrs,
82                 *omitPrgrs,
83                 *debug,
84         )
85         if err != nil {
86                 log.Fatalln("Error during initialization:", err)
87         }
88         if ctx.Self == nil {
89                 log.Fatalln("Config lacks private keys")
90         }
91
92         var nodeOnly *nncp.Node
93         if *nodeRaw != "" {
94                 nodeOnly, err = ctx.FindNode(*nodeRaw)
95                 if err != nil {
96                         log.Fatalln("Invalid -node specified:", err)
97                 }
98         }
99
100         ctx.Umask()
101
102 Cycle:
103         isBad := false
104         for nodeId, node := range ctx.Neigh {
105                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
106                         continue
107                 }
108                 isBad = ctx.Toss(
109                         node.Id,
110                         nncp.TRx,
111                         nice,
112                         *dryRun, *doSeen, *noFile, *noFreq, *noExec, *noTrns, *noArea,
113                 ) || isBad
114                 if nodeId == *ctx.SelfId {
115                         isBad = ctx.Toss(
116                                 node.Id,
117                                 nncp.TTx,
118                                 nice,
119                                 *dryRun, false, true, true, true, true, *noArea,
120                         ) || isBad
121                 }
122         }
123         if *cycle > 0 {
124                 time.Sleep(time.Duration(*cycle) * time.Second)
125                 goto Cycle
126         }
127         if isBad {
128                 os.Exit(1)
129         }
130 }