]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-toss/main.go
Raise copyright years
[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                 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                                 nice,
113                                 *dryRun, *doSeen, *noFile, *noFreq, *noExec, *noTrns, *noArea,
114                         ) || isBad
115                         if nodeId == *ctx.SelfId {
116                                 isBad = ctx.Toss(
117                                         node.Id,
118                                         nncp.TTx,
119                                         nice,
120                                         *dryRun, false, true, true, true, true, *noArea,
121                                 ) || isBad
122                         }
123                 }
124                 if isBad {
125                         os.Exit(1)
126                 }
127                 return
128         }
129
130         nodeIds := make(chan *nncp.NodeId)
131         for nodeId, node := range ctx.Neigh {
132                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
133                         continue
134                 }
135                 dw, err := ctx.NewDirWatcher(
136                         filepath.Join(ctx.Spool, node.Id.String(), string(nncp.TRx)),
137                         time.Second*time.Duration(*cycle),
138                 )
139                 if err != nil {
140                         log.Fatalln(err)
141                 }
142                 go func(nodeId *nncp.NodeId) {
143                         for range dw.C {
144                                 nodeIds <- nodeId
145                         }
146                 }(node.Id)
147         }
148         for nodeId := range nodeIds {
149                 ctx.Toss(
150                         nodeId,
151                         nncp.TRx,
152                         nice,
153                         *dryRun, *doSeen, *noFile, *noFreq, *noExec, *noTrns, *noArea,
154                 )
155                 if *nodeId == *ctx.SelfId {
156                         ctx.Toss(
157                                 nodeId,
158                                 nncp.TTx,
159                                 nice,
160                                 *dryRun, false, true, true, true, true, *noArea,
161                         )
162                 }
163         }
164 }