]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-toss/main.go
ACK
[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-2022 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         "path/filepath"
27         "time"
28
29         "go.cypherpunks.ru/nncp/v8"
30 )
31
32 func usage() {
33         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
34         fmt.Fprintf(os.Stderr, "nncp-toss -- process inbound packets\n\n")
35         fmt.Fprintf(os.Stderr, "Usage: %s [options]\nOptions:\n", os.Args[0])
36         flag.PrintDefaults()
37 }
38
39 func main() {
40         var (
41                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
42                 nodeRaw   = flag.String("node", "", "Process only that node")
43                 niceRaw   = flag.String("nice", nncp.NicenessFmt(255), "Minimal required niceness")
44                 dryRun    = flag.Bool("dryrun", false, "Do not actually write any tossed data")
45                 doSeen    = flag.Bool("seen", false, "Create seen/ files")
46                 cycle     = flag.Uint("cycle", 0, "Repeat tossing after N seconds in infinite loop")
47                 noFile    = flag.Bool("nofile", false, "Do not process \"file\" packets")
48                 noFreq    = flag.Bool("nofreq", false, "Do not process \"freq\" packets")
49                 noExec    = flag.Bool("noexec", false, "Do not process \"exec\" packets")
50                 noTrns    = flag.Bool("notrns", false, "Do not process \"transitional\" packets")
51                 noArea    = flag.Bool("noarea", false, "Do not process \"area\" packets")
52                 noACK     = flag.Bool("noack", false, "Do not process \"ack\" packets")
53                 spoolPath = flag.String("spool", "", "Override path to spool")
54                 logPath   = flag.String("log", "", "Override path to logfile")
55                 quiet     = flag.Bool("quiet", false, "Print only errors")
56                 showPrgrs = flag.Bool("progress", false, "Force progress showing")
57                 omitPrgrs = flag.Bool("noprogress", false, "Omit progress showing")
58                 debug     = flag.Bool("debug", false, "Print debug messages")
59                 version   = flag.Bool("version", false, "Print version information")
60                 warranty  = flag.Bool("warranty", false, "Print warranty information")
61         )
62         log.SetFlags(log.Lshortfile)
63         flag.Usage = usage
64         flag.Parse()
65         if *warranty {
66                 fmt.Println(nncp.Warranty)
67                 return
68         }
69         if *version {
70                 fmt.Println(nncp.VersionGet())
71                 return
72         }
73         nice, err := nncp.NicenessParse(*niceRaw)
74         if err != nil {
75                 log.Fatalln(err)
76         }
77
78         ctx, err := nncp.CtxFromCmdline(
79                 *cfgPath,
80                 *spoolPath,
81                 *logPath,
82                 *quiet,
83                 *showPrgrs,
84                 *omitPrgrs,
85                 *debug,
86         )
87         if err != nil {
88                 log.Fatalln("Error during initialization:", err)
89         }
90         if ctx.Self == nil {
91                 log.Fatalln("Config lacks private keys")
92         }
93
94         var nodeOnly *nncp.Node
95         if *nodeRaw != "" {
96                 nodeOnly, err = ctx.FindNode(*nodeRaw)
97                 if err != nil {
98                         log.Fatalln("Invalid -node specified:", err)
99                 }
100         }
101
102         ctx.Umask()
103
104         if *cycle == 0 {
105                 isBad := false
106                 for nodeId, node := range ctx.Neigh {
107                         if nodeOnly != nil && nodeId != *nodeOnly.Id {
108                                 continue
109                         }
110                         isBad = ctx.Toss(
111                                 node.Id,
112                                 nncp.TRx,
113                                 nice,
114                                 *dryRun, *doSeen, *noFile, *noFreq, *noExec, *noTrns, *noArea, *noACK,
115                         ) || isBad
116                         if nodeId == *ctx.SelfId {
117                                 isBad = ctx.Toss(
118                                         node.Id,
119                                         nncp.TTx,
120                                         nice,
121                                         *dryRun, false, true, true, true, true, *noArea, *noACK,
122                                 ) || isBad
123                         }
124                 }
125                 if isBad {
126                         os.Exit(1)
127                 }
128                 return
129         }
130
131         nodeIds := make(chan *nncp.NodeId)
132         for nodeId, node := range ctx.Neigh {
133                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
134                         continue
135                 }
136                 dw, err := ctx.NewDirWatcher(
137                         filepath.Join(ctx.Spool, node.Id.String(), string(nncp.TRx)),
138                         time.Second*time.Duration(*cycle),
139                 )
140                 if err != nil {
141                         log.Fatalln(err)
142                 }
143                 go func(nodeId *nncp.NodeId) {
144                         for range dw.C {
145                                 nodeIds <- nodeId
146                         }
147                 }(node.Id)
148         }
149         for nodeId := range nodeIds {
150                 ctx.Toss(
151                         nodeId,
152                         nncp.TRx,
153                         nice,
154                         *dryRun, *doSeen, *noFile, *noFreq, *noExec, *noTrns, *noArea, *noACK,
155                 )
156                 if *nodeId == *ctx.SelfId {
157                         ctx.Toss(
158                                 nodeId,
159                                 nncp.TTx,
160                                 nice,
161                                 *dryRun, false, true, true, true, true, *noArea, *noACK,
162                         )
163                 }
164         }
165 }