]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-caller/main.go
Raise copyright years
[nncp.git] / src / cmd / nncp-caller / 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 // Croned NNCP TCP daemon caller.
19 package main
20
21 import (
22         "errors"
23         "flag"
24         "fmt"
25         "log"
26         "os"
27         "sync"
28         "time"
29
30         "go.cypherpunks.ru/nncp/v8"
31 )
32
33 func usage() {
34         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
35         fmt.Fprintf(os.Stderr, "nncp-caller -- croned NNCP TCP daemon caller\n\n")
36         fmt.Fprintf(os.Stderr, "Usage: %s [options] [NODE ...]\n", os.Args[0])
37         fmt.Fprintln(os.Stderr, "Options:")
38         flag.PrintDefaults()
39 }
40
41 func main() {
42         var (
43                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
44                 spoolPath = flag.String("spool", "", "Override path to spool")
45                 logPath   = flag.String("log", "", "Override path to logfile")
46                 quiet     = flag.Bool("quiet", false, "Print only errors")
47                 showPrgrs = flag.Bool("progress", false, "Force progress showing")
48                 omitPrgrs = flag.Bool("noprogress", false, "Omit progress showing")
49                 debug     = flag.Bool("debug", false, "Print debug messages")
50                 version   = flag.Bool("version", false, "Print version information")
51                 warranty  = flag.Bool("warranty", false, "Print warranty information")
52
53                 autoToss       = flag.Bool("autotoss", false, "Toss after call is finished")
54                 autoTossDoSeen = flag.Bool("autotoss-seen", false, "Create seen/ files during tossing")
55                 autoTossNoFile = flag.Bool("autotoss-nofile", false, "Do not process \"file\" packets during tossing")
56                 autoTossNoFreq = flag.Bool("autotoss-nofreq", false, "Do not process \"freq\" packets during tossing")
57                 autoTossNoExec = flag.Bool("autotoss-noexec", false, "Do not process \"exec\" packets during tossing")
58                 autoTossNoTrns = flag.Bool("autotoss-notrns", false, "Do not process \"trns\" packets during tossing")
59                 autoTossNoArea = flag.Bool("autotoss-noarea", false, "Do not process \"area\" packets during tossing")
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
73         ctx, err := nncp.CtxFromCmdline(
74                 *cfgPath,
75                 *spoolPath,
76                 *logPath,
77                 *quiet,
78                 *showPrgrs,
79                 *omitPrgrs,
80                 *debug,
81         )
82         if err != nil {
83                 log.Fatalln("Error during initialization:", err)
84         }
85         if ctx.Self == nil {
86                 log.Fatalln("Config lacks private keys")
87         }
88         ctx.Umask()
89
90         var nodes []*nncp.Node
91         if flag.NArg() > 0 {
92                 for _, nodeId := range flag.Args() {
93                         node, err := ctx.FindNode(nodeId)
94                         if err != nil {
95                                 log.Fatalln("Invalid NODE specified:", err)
96                         }
97                         if node.NoisePub == nil {
98                                 log.Fatalln("Node", nodeId, "does not have online communication capability")
99                         }
100                         if len(node.Calls) == 0 {
101                                 ctx.LogD(
102                                         "caller-no-calls",
103                                         nncp.LEs{{K: "Node", V: node.Id}},
104                                         func(les nncp.LEs) string {
105                                                 return fmt.Sprintf("%s node has no calls, skipping", node.Name)
106                                         },
107                                 )
108                                 continue
109                         }
110                         nodes = append(nodes, node)
111                 }
112         } else {
113                 for _, node := range ctx.Neigh {
114                         if len(node.Calls) == 0 {
115                                 ctx.LogD(
116                                         "caller-no-calls",
117                                         nncp.LEs{{K: "Node", V: node.Id}},
118                                         func(les nncp.LEs) string {
119                                                 return fmt.Sprintf("%s node has no calls, skipping", node.Name)
120                                         },
121                                 )
122                                 continue
123                         }
124                         nodes = append(nodes, node)
125                 }
126         }
127
128         for _, ifiName := range ctx.MCDRxIfis {
129                 if err = ctx.MCDRx(ifiName); err != nil {
130                         log.Printf("Can not run MCD reception on %s: %s", ifiName, err)
131                 }
132         }
133
134         var wg sync.WaitGroup
135         for _, node := range nodes {
136                 for i, call := range node.Calls {
137                         wg.Add(1)
138                         go func(node *nncp.Node, i int, call *nncp.Call) {
139                                 defer wg.Done()
140                                 var addrsFromCfg []string
141                                 if call.Addr == nil {
142                                         for _, addr := range node.Addrs {
143                                                 addrsFromCfg = append(addrsFromCfg, addr)
144                                         }
145                                 } else {
146                                         addrsFromCfg = append(addrsFromCfg, *call.Addr)
147                                 }
148                                 les := nncp.LEs{{K: "Node", V: node.Id}, {K: "CallIndex", V: i}}
149                                 logMsg := func(les nncp.LEs) string {
150                                         return fmt.Sprintf("%s node, call %d", node.Name, i)
151                                 }
152                                 for {
153                                         n := time.Now()
154                                         t := call.Cron.Next(n)
155                                         ctx.LogD("caller-time", les, func(les nncp.LEs) string {
156                                                 return logMsg(les) + ": " + t.String()
157                                         })
158                                         if t.IsZero() {
159                                                 ctx.LogE("caller", les, errors.New("got zero time"), logMsg)
160                                                 return
161                                         }
162                                         time.Sleep(t.Sub(n))
163                                         node.Lock()
164                                         if node.Busy {
165                                                 node.Unlock()
166                                                 ctx.LogD("caller-busy", les, func(les nncp.LEs) string {
167                                                         return logMsg(les) + ": busy"
168                                                 })
169                                                 continue
170                                         } else {
171                                                 node.Busy = true
172                                                 node.Unlock()
173
174                                                 if call.WhenTxExists && call.Xx != "TRx" {
175                                                         ctx.LogD("caller", les, func(les nncp.LEs) string {
176                                                                 return logMsg(les) + ": checking tx existence"
177                                                         })
178                                                         txExists := false
179                                                         for job := range ctx.Jobs(node.Id, nncp.TTx) {
180                                                                 if job.PktEnc.Nice > call.Nice {
181                                                                         continue
182                                                                 }
183                                                                 txExists = true
184                                                         }
185                                                         if !txExists {
186                                                                 ctx.LogD("caller-no-tx", les, func(les nncp.LEs) string {
187                                                                         return logMsg(les) + ": no tx"
188                                                                 })
189                                                                 node.Lock()
190                                                                 node.Busy = false
191                                                                 node.Unlock()
192                                                                 continue
193                                                         }
194                                                 }
195
196                                                 var autoTossFinish chan struct{}
197                                                 var autoTossBadCode chan bool
198                                                 if call.AutoToss || *autoToss {
199                                                         autoTossFinish, autoTossBadCode = ctx.AutoToss(
200                                                                 node.Id,
201                                                                 call.Nice,
202                                                                 call.AutoTossDoSeen || *autoTossDoSeen,
203                                                                 call.AutoTossNoFile || *autoTossNoFile,
204                                                                 call.AutoTossNoFreq || *autoTossNoFreq,
205                                                                 call.AutoTossNoExec || *autoTossNoExec,
206                                                                 call.AutoTossNoTrns || *autoTossNoTrns,
207                                                                 call.AutoTossNoArea || *autoTossNoArea,
208                                                         )
209                                                 }
210
211                                                 var addrs []string
212                                                 if !call.MCDIgnore {
213                                                         nncp.MCDAddrsM.RLock()
214                                                         for _, mcdAddr := range nncp.MCDAddrs[*node.Id] {
215                                                                 ctx.LogD("caller", les, func(les nncp.LEs) string {
216                                                                         return logMsg(les) + ": adding MCD address: " +
217                                                                                 mcdAddr.Addr.String()
218                                                                 })
219                                                                 addrs = append(addrs, mcdAddr.Addr.String())
220                                                         }
221                                                         nncp.MCDAddrsM.RUnlock()
222                                                 }
223
224                                                 ctx.CallNode(
225                                                         node,
226                                                         append(addrs, addrsFromCfg...),
227                                                         call.Nice,
228                                                         call.Xx,
229                                                         call.RxRate,
230                                                         call.TxRate,
231                                                         call.OnlineDeadline,
232                                                         call.MaxOnlineTime,
233                                                         false,
234                                                         call.NoCK,
235                                                         nil,
236                                                 )
237
238                                                 if call.AutoToss || *autoToss {
239                                                         close(autoTossFinish)
240                                                         <-autoTossBadCode
241                                                 }
242
243                                                 node.Lock()
244                                                 node.Busy = false
245                                                 node.Unlock()
246                                         }
247                                 }
248                         }(node, i, call)
249                 }
250         }
251         wg.Wait()
252         nncp.SPCheckerWg.Wait()
253 }