]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-toss/main.go
dad1d3ee979120fc6a21c64bec94a7237b02f912
[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-2023 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.Fprint(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                 noACK     = flag.Bool("noack", false, "Do not process \"ack\" packets")
52                 spoolPath = flag.String("spool", "", "Override path to spool")
53                 logPath   = flag.String("log", "", "Override path to logfile")
54                 quiet     = flag.Bool("quiet", false, "Print only errors")
55                 showPrgrs = flag.Bool("progress", false, "Force progress showing")
56                 omitPrgrs = flag.Bool("noprogress", false, "Omit progress showing")
57                 debug     = flag.Bool("debug", false, "Print debug messages")
58                 version   = flag.Bool("version", false, "Print version information")
59                 warranty  = flag.Bool("warranty", false, "Print warranty information")
60         )
61         log.SetFlags(log.Lshortfile)
62         flag.Usage = usage
63         flag.Parse()
64         if *warranty {
65                 fmt.Println(nncp.Warranty)
66                 return
67         }
68         if *version {
69                 fmt.Println(nncp.VersionGet())
70                 return
71         }
72         nice, err := nncp.NicenessParse(*niceRaw)
73         if err != nil {
74                 log.Fatalln(err)
75         }
76
77         ctx, err := nncp.CtxFromCmdline(
78                 *cfgPath,
79                 *spoolPath,
80                 *logPath,
81                 *quiet,
82                 *showPrgrs,
83                 *omitPrgrs,
84                 *debug,
85         )
86         if err != nil {
87                 log.Fatalln("Error during initialization:", err)
88         }
89         if ctx.Self == nil {
90                 log.Fatalln("Config lacks private keys")
91         }
92
93         var nodeOnly *nncp.Node
94         if *nodeRaw != "" {
95                 nodeOnly, err = ctx.FindNode(*nodeRaw)
96                 if err != nil {
97                         log.Fatalln("Invalid -node specified:", err)
98                 }
99         }
100
101         ctx.Umask()
102
103         if *cycle == 0 {
104                 isBad := false
105                 for nodeId, node := range ctx.Neigh {
106                         if nodeOnly != nil && nodeId != *nodeOnly.Id {
107                                 continue
108                         }
109                         isBad = ctx.Toss(
110                                 node.Id,
111                                 nncp.TRx,
112                                 &nncp.TossOpts{
113                                         Nice:   nice,
114                                         DoSeen: *doSeen,
115                                         NoFile: *noFile,
116                                         NoFreq: *noFreq,
117                                         NoExec: *noExec,
118                                         NoTrns: *noTrns,
119                                         NoArea: *noArea,
120                                         NoACK:  *noACK,
121                                 },
122                         ) || isBad
123                         if nodeId == *ctx.SelfId {
124                                 isBad = ctx.Toss(
125                                         node.Id,
126                                         nncp.TTx,
127                                         &nncp.TossOpts{
128                                                 Nice:   nice,
129                                                 NoFile: true,
130                                                 NoFreq: true,
131                                                 NoExec: true,
132                                                 NoTrns: true,
133                                                 NoArea: *noArea,
134                                                 NoACK:  *noACK,
135                                         },
136                                 ) || isBad
137                         }
138                 }
139                 if isBad {
140                         os.Exit(1)
141                 }
142                 return
143         }
144
145         nodeIds := make(chan *nncp.NodeId)
146         for nodeId, node := range ctx.Neigh {
147                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
148                         continue
149                 }
150                 dw, err := ctx.NewDirWatcher(
151                         filepath.Join(ctx.Spool, node.Id.String(), string(nncp.TRx)),
152                         time.Second*time.Duration(*cycle),
153                 )
154                 if err != nil {
155                         log.Fatalln(err)
156                 }
157                 go func(nodeId *nncp.NodeId) {
158                         for range dw.C {
159                                 nodeIds <- nodeId
160                         }
161                 }(node.Id)
162         }
163         for nodeId := range nodeIds {
164                 ctx.Toss(
165                         nodeId,
166                         nncp.TRx,
167                         &nncp.TossOpts{
168                                 Nice:   nice,
169                                 DryRun: *dryRun,
170                                 DoSeen: *doSeen,
171                                 NoFile: *noFile,
172                                 NoFreq: *noFreq,
173                                 NoExec: *noExec,
174                                 NoTrns: *noTrns,
175                                 NoArea: *noArea,
176                                 NoACK:  *noACK,
177                         },
178                 )
179                 if *nodeId == *ctx.SelfId {
180                         ctx.Toss(
181                                 nodeId,
182                                 nncp.TTx,
183                                 &nncp.TossOpts{
184                                         Nice:   nice,
185                                         NoFile: true,
186                                         NoFreq: true,
187                                         NoExec: true,
188                                         NoTrns: true,
189                                         NoArea: *noArea,
190                                         NoACK:  *noACK,
191                                 },
192                         )
193                 }
194         }
195 }