]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-daemon/main.go
Fix nncp-daemon segfault when SP fails
[nncp.git] / src / cmd / nncp-daemon / 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 // NNCP TCP daemon.
19 package main
20
21 import (
22         "flag"
23         "fmt"
24         "log"
25         "net"
26         "os"
27         "time"
28
29         "github.com/dustin/go-humanize"
30         "go.cypherpunks.ru/nncp/v6"
31         "golang.org/x/net/netutil"
32 )
33
34 func usage() {
35         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
36         fmt.Fprintf(os.Stderr, "nncp-daemon -- TCP daemon\n\n")
37         fmt.Fprintf(os.Stderr, "Usage: %s [options]\nOptions:\n", os.Args[0])
38         flag.PrintDefaults()
39 }
40
41 type InetdConn struct {
42         r *os.File
43         w *os.File
44 }
45
46 func (c InetdConn) Read(p []byte) (n int, err error) {
47         return c.r.Read(p)
48 }
49
50 func (c InetdConn) Write(p []byte) (n int, err error) {
51         return c.w.Write(p)
52 }
53
54 func (c InetdConn) SetReadDeadline(t time.Time) error {
55         return c.r.SetReadDeadline(t)
56 }
57
58 func (c InetdConn) SetWriteDeadline(t time.Time) error {
59         return c.w.SetWriteDeadline(t)
60 }
61
62 func (c InetdConn) Close() error {
63         if err := c.r.Close(); err != nil {
64                 c.w.Close() // #nosec G104
65                 return err
66         }
67         return c.w.Close()
68 }
69
70 func performSP(
71         ctx *nncp.Ctx,
72         conn nncp.ConnDeadlined,
73         nice uint8,
74         noCK bool,
75         nodeIdC chan *nncp.NodeId,
76 ) {
77         state := nncp.SPState{
78                 Ctx:  ctx,
79                 Nice: nice,
80                 NoCK: noCK,
81         }
82         if err := state.StartR(conn); err == nil {
83                 ctx.LogI(
84                         "call-started",
85                         nncp.LEs{{K: "Node", V: state.Node.Id}},
86                         func(les nncp.LEs) string { return "Connection with " + state.Node.Name },
87                 )
88                 nodeIdC <- state.Node.Id
89                 state.Wait()
90                 ctx.LogI("call-finished", nncp.LEs{
91                         {K: "Node", V: state.Node.Id},
92                         {K: "Duration", V: int64(state.Duration.Seconds())},
93                         {K: "RxBytes", V: state.RxBytes},
94                         {K: "TxBytes", V: state.TxBytes},
95                         {K: "RxSpeed", V: state.RxSpeed},
96                         {K: "TxSpeed", V: state.TxSpeed},
97                 }, func(les nncp.LEs) string {
98                         return fmt.Sprintf(
99                                 "Finished call with %s (%d:%d:%d): %s received (%s/sec), %s transferred (%s/sec)",
100                                 state.Node.Name,
101                                 int(state.Duration.Hours()),
102                                 int(state.Duration.Minutes()),
103                                 int(state.Duration.Seconds()),
104                                 humanize.IBytes(uint64(state.RxBytes)),
105                                 humanize.IBytes(uint64(state.RxSpeed)),
106                                 humanize.IBytes(uint64(state.TxBytes)),
107                                 humanize.IBytes(uint64(state.TxSpeed)),
108                         )
109                 })
110         } else {
111                 var nodeId string
112                 var nodeName string
113                 if state.Node == nil {
114                         nodeId = "unknown"
115                         nodeName = "unknown"
116                         nodeIdC <- nil
117                 } else {
118                         nodeId = state.Node.Id.String()
119                         nodeName = state.Node.Name
120                         nodeIdC <- state.Node.Id
121                 }
122                 ctx.LogI(
123                         "call-started",
124                         nncp.LEs{{K: "Node", V: nodeId}},
125                         func(les nncp.LEs) string { return "Connected to " + nodeName },
126                 )
127         }
128         close(nodeIdC)
129 }
130
131 func main() {
132         var (
133                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
134                 niceRaw   = flag.String("nice", nncp.NicenessFmt(255), "Minimal required niceness")
135                 bind      = flag.String("bind", "[::]:5400", "Address to bind to")
136                 inetd     = flag.Bool("inetd", false, "Is it started as inetd service")
137                 maxConn   = flag.Int("maxconn", 128, "Maximal number of simultaneous connections")
138                 noCK      = flag.Bool("nock", false, "Do no checksum checking")
139                 spoolPath = flag.String("spool", "", "Override path to spool")
140                 logPath   = flag.String("log", "", "Override path to logfile")
141                 quiet     = flag.Bool("quiet", false, "Print only errors")
142                 showPrgrs = flag.Bool("progress", false, "Force progress showing")
143                 omitPrgrs = flag.Bool("noprogress", false, "Omit progress showing")
144                 debug     = flag.Bool("debug", false, "Print debug messages")
145                 version   = flag.Bool("version", false, "Print version information")
146                 warranty  = flag.Bool("warranty", false, "Print warranty information")
147
148                 autoToss       = flag.Bool("autotoss", false, "Toss after call is finished")
149                 autoTossDoSeen = flag.Bool("autotoss-seen", false, "Create .seen files during tossing")
150                 autoTossNoFile = flag.Bool("autotoss-nofile", false, "Do not process \"file\" packets during tossing")
151                 autoTossNoFreq = flag.Bool("autotoss-nofreq", false, "Do not process \"freq\" packets during tossing")
152                 autoTossNoExec = flag.Bool("autotoss-noexec", false, "Do not process \"exec\" packets during tossing")
153                 autoTossNoTrns = flag.Bool("autotoss-notrns", false, "Do not process \"trns\" packets during tossing")
154         )
155         flag.Usage = usage
156         flag.Parse()
157         if *warranty {
158                 fmt.Println(nncp.Warranty)
159                 return
160         }
161         if *version {
162                 fmt.Println(nncp.VersionGet())
163                 return
164         }
165         nice, err := nncp.NicenessParse(*niceRaw)
166         if err != nil {
167                 log.Fatalln(err)
168         }
169
170         ctx, err := nncp.CtxFromCmdline(
171                 *cfgPath,
172                 *spoolPath,
173                 *logPath,
174                 *quiet,
175                 *showPrgrs,
176                 *omitPrgrs,
177                 *debug,
178         )
179         if err != nil {
180                 log.Fatalln("Error during initialization:", err)
181         }
182         if ctx.Self == nil {
183                 log.Fatalln("Config lacks private keys")
184         }
185         ctx.Umask()
186
187         if *inetd {
188                 os.Stderr.Close() // #nosec G104
189                 conn := &InetdConn{os.Stdin, os.Stdout}
190                 nodeIdC := make(chan *nncp.NodeId)
191                 go performSP(ctx, conn, nice, *noCK, nodeIdC)
192                 nodeId := <-nodeIdC
193                 var autoTossFinish chan struct{}
194                 var autoTossBadCode chan bool
195                 if *autoToss && nodeId != nil {
196                         autoTossFinish, autoTossBadCode = ctx.AutoToss(
197                                 nodeId,
198                                 nice,
199                                 *autoTossDoSeen,
200                                 *autoTossNoFile,
201                                 *autoTossNoFreq,
202                                 *autoTossNoExec,
203                                 *autoTossNoTrns,
204                         )
205                 }
206                 <-nodeIdC // call completion
207                 if *autoToss {
208                         close(autoTossFinish)
209                         <-autoTossBadCode
210                 }
211                 conn.Close() // #nosec G104
212                 return
213         }
214
215         ln, err := net.Listen("tcp", *bind)
216         if err != nil {
217                 log.Fatalln("Can not listen:", err)
218         }
219         ln = netutil.LimitListener(ln, *maxConn)
220         for {
221                 conn, err := ln.Accept()
222                 if err != nil {
223                         log.Fatalln("Can not accept connection:", err)
224                 }
225                 ctx.LogD(
226                         "daemon-accepted",
227                         nncp.LEs{{K: "Addr", V: conn.RemoteAddr()}},
228                         func(les nncp.LEs) string {
229                                 return "Accepted connection with " + conn.RemoteAddr().String()
230                         },
231                 )
232                 go func(conn net.Conn) {
233                         nodeIdC := make(chan *nncp.NodeId)
234                         go performSP(ctx, conn, nice, *noCK, nodeIdC)
235                         nodeId := <-nodeIdC
236                         var autoTossFinish chan struct{}
237                         var autoTossBadCode chan bool
238                         if *autoToss && nodeId != nil {
239                                 autoTossFinish, autoTossBadCode = ctx.AutoToss(
240                                         nodeId,
241                                         nice,
242                                         *autoTossDoSeen,
243                                         *autoTossNoFile,
244                                         *autoTossNoFreq,
245                                         *autoTossNoExec,
246                                         *autoTossNoTrns,
247                                 )
248                         }
249                         <-nodeIdC // call completion
250                         if *autoToss {
251                                 close(autoTossFinish)
252                                 <-autoTossBadCode
253                         }
254                         conn.Close() // #nosec G104
255                 }(conn)
256         }
257 }