]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-xfer/main.go
Merge branch 'develop'
[nncp.git] / src / cmd / nncp-xfer / 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 // Exchange NNCP inbound and outbounds packets with external directory.
19 package main
20
21 import (
22         "bufio"
23         "errors"
24         "flag"
25         "fmt"
26         "io"
27         "log"
28         "os"
29         "path/filepath"
30
31         xdr "github.com/davecgh/go-xdr/xdr2"
32         "go.cypherpunks.ru/nncp/v5"
33 )
34
35 func usage() {
36         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
37         fmt.Fprintf(os.Stderr, "nncp-xfer -- copy inbound and outbounds packets\n\n")
38         fmt.Fprintf(os.Stderr, "Usage: %s [options] DIR\nOptions:\n", os.Args[0])
39         flag.PrintDefaults()
40 }
41
42 func main() {
43         var (
44                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
45                 nodeRaw   = flag.String("node", "", "Process only that node")
46                 niceRaw   = flag.String("nice", nncp.NicenessFmt(255), "Minimal required niceness")
47                 rxOnly    = flag.Bool("rx", false, "Only receive packets")
48                 txOnly    = flag.Bool("tx", false, "Only transfer packets")
49                 mkdir     = flag.Bool("mkdir", false, "Create necessary outbound directories")
50                 keep      = flag.Bool("keep", false, "Do not delete transferred packets")
51                 spoolPath = flag.String("spool", "", "Override path to spool")
52                 logPath   = flag.String("log", "", "Override path to logfile")
53                 quiet     = flag.Bool("quiet", false, "Print only errors")
54                 showPrgrs = flag.Bool("progress", false, "Force progress showing")
55                 omitPrgrs = flag.Bool("noprogress", false, "Omit progress showing")
56                 debug     = flag.Bool("debug", false, "Print debug messages")
57                 version   = flag.Bool("version", false, "Print version information")
58                 warranty  = flag.Bool("warranty", false, "Print warranty information")
59         )
60         flag.Usage = usage
61         flag.Parse()
62         if *warranty {
63                 fmt.Println(nncp.Warranty)
64                 return
65         }
66         if *version {
67                 fmt.Println(nncp.VersionGet())
68                 return
69         }
70         if flag.NArg() != 1 {
71                 usage()
72                 os.Exit(1)
73         }
74         nice, err := nncp.NicenessParse(*niceRaw)
75         if err != nil {
76                 log.Fatalln(err)
77         }
78         if *rxOnly && *txOnly {
79                 log.Fatalln("-rx and -tx can not be set simultaneously")
80         }
81
82         ctx, err := nncp.CtxFromCmdline(
83                 *cfgPath,
84                 *spoolPath,
85                 *logPath,
86                 *quiet,
87                 *showPrgrs,
88                 *omitPrgrs,
89                 *debug,
90         )
91         if err != nil {
92                 log.Fatalln("Error during initialization:", err)
93         }
94
95         var nodeOnly *nncp.Node
96         if *nodeRaw != "" {
97                 nodeOnly, err = ctx.FindNode(*nodeRaw)
98                 if err != nil {
99                         log.Fatalln("Invalid -node specified:", err)
100                 }
101         }
102
103         ctx.Umask()
104         selfPath := filepath.Join(flag.Arg(0), ctx.SelfId.String())
105         isBad := false
106         var dir *os.File
107         var fis []os.FileInfo
108         sds := nncp.SDS{}
109         if *txOnly {
110                 goto Tx
111         }
112         sds["xx"] = string(nncp.TRx)
113         sds["dir"] = selfPath
114         ctx.LogD("nncp-xfer", sds, "self")
115         if _, err = os.Stat(selfPath); err != nil {
116                 if os.IsNotExist(err) {
117                         ctx.LogD("nncp-xfer", sds, "no dir")
118                         goto Tx
119                 }
120                 ctx.LogE("nncp-xfer", sds, err, "stat")
121                 isBad = true
122                 goto Tx
123         }
124         dir, err = os.Open(selfPath)
125         if err != nil {
126                 ctx.LogE("nncp-xfer", sds, err, "open")
127                 isBad = true
128                 goto Tx
129         }
130         fis, err = dir.Readdir(0)
131         dir.Close() // #nosec G104
132         if err != nil {
133                 ctx.LogE("nncp-xfer", sds, err, "read")
134                 isBad = true
135                 goto Tx
136         }
137         for _, fi := range fis {
138                 if !fi.IsDir() {
139                         continue
140                 }
141                 nodeId, err := nncp.NodeIdFromString(fi.Name())
142                 sds["node"] = fi.Name()
143                 if err != nil {
144                         ctx.LogD("nncp-xfer", sds, "is not NodeId")
145                         continue
146                 }
147                 if nodeOnly != nil && *nodeId != *nodeOnly.Id {
148                         ctx.LogD("nncp-xfer", sds, "skip")
149                         continue
150                 }
151                 if _, known := ctx.Neigh[*nodeId]; !known {
152                         ctx.LogD("nncp-xfer", sds, "unknown")
153                         continue
154                 }
155                 dir, err = os.Open(filepath.Join(selfPath, fi.Name()))
156                 if err != nil {
157                         ctx.LogE("nncp-xfer", sds, err, "open")
158                         isBad = true
159                         continue
160                 }
161                 fisInt, err := dir.Readdir(0)
162                 dir.Close() // #nosec G104
163                 if err != nil {
164                         ctx.LogE("nncp-xfer", sds, err, "read")
165                         isBad = true
166                         continue
167                 }
168                 for _, fiInt := range fisInt {
169                         if !fi.IsDir() {
170                                 continue
171                         }
172                         // Check that it is valid Base32 encoding
173                         if _, err = nncp.NodeIdFromString(fiInt.Name()); err != nil {
174                                 continue
175                         }
176                         filename := filepath.Join(dir.Name(), fiInt.Name())
177                         sds["file"] = filename
178                         delete(sds, "size")
179                         fd, err := os.Open(filename)
180                         if err != nil {
181                                 ctx.LogE("nncp-xfer", sds, err, "open")
182                                 isBad = true
183                                 continue
184                         }
185                         var pktEnc nncp.PktEnc
186                         _, err = xdr.Unmarshal(fd, &pktEnc)
187                         if err != nil || pktEnc.Magic != nncp.MagicNNCPEv4 {
188                                 ctx.LogD("nncp-xfer", sds, "is not a packet")
189                                 fd.Close() // #nosec G104
190                                 continue
191                         }
192                         if pktEnc.Nice > nice {
193                                 ctx.LogD("nncp-xfer", sds, "too nice")
194                                 fd.Close() // #nosec G104
195                                 continue
196                         }
197                         sds["size"] = fiInt.Size()
198                         if !ctx.IsEnoughSpace(fiInt.Size()) {
199                                 ctx.LogE("nncp-xfer", sds, errors.New("is not enough space"), "")
200                                 fd.Close() // #nosec G104
201                                 continue
202                         }
203                         if _, err = fd.Seek(0, 0); err != nil {
204                                 log.Fatalln(err)
205                         }
206                         tmp, err := ctx.NewTmpFileWHash()
207                         if err != nil {
208                                 log.Fatalln(err)
209                         }
210                         r, w := io.Pipe()
211                         go func() {
212                                 _, err := io.CopyN(w, bufio.NewReader(fd), fiInt.Size())
213                                 if err == nil {
214                                         err = w.Close()
215                                 }
216                                 if err != nil {
217                                         ctx.LogE("nncp-xfer", sds, err, "copy")
218                                         w.CloseWithError(err) // #nosec G104
219                                 }
220                         }()
221                         if _, err = nncp.CopyProgressed(
222                                 tmp.W, r, "Rx",
223                                 nncp.SdsAdd(sds, nncp.SDS{
224                                         "pkt":      filename,
225                                         "fullsize": sds["size"],
226                                 }),
227                                 ctx.ShowPrgrs,
228                         ); err != nil {
229                                 ctx.LogE("nncp-xfer", sds, err, "copy")
230                                 isBad = true
231                         }
232                         fd.Close() // #nosec G104
233                         if isBad {
234                                 tmp.Cancel()
235                                 continue
236                         }
237                         if err = tmp.Commit(filepath.Join(
238                                 ctx.Spool,
239                                 nodeId.String(),
240                                 string(nncp.TRx),
241                         )); err != nil {
242                                 log.Fatalln(err)
243                         }
244                         ctx.LogI("nncp-xfer", sds, "")
245                         if !*keep {
246                                 if err = os.Remove(filename); err != nil {
247                                         ctx.LogE("nncp-xfer", sds, err, "remove")
248                                         isBad = true
249                                 }
250                         }
251                 }
252         }
253
254 Tx:
255         if *rxOnly {
256                 if isBad {
257                         os.Exit(1)
258                 }
259                 return
260         }
261         sds["xx"] = string(nncp.TTx)
262         for nodeId, _ := range ctx.Neigh {
263                 sds["node"] = nodeId
264                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
265                         ctx.LogD("nncp-xfer", sds, "skip")
266                         continue
267                 }
268                 dirLock, err := ctx.LockDir(&nodeId, string(nncp.TTx))
269                 if err != nil {
270                         continue
271                 }
272                 nodePath := filepath.Join(flag.Arg(0), nodeId.String())
273                 sds["dir"] = nodePath
274                 _, err = os.Stat(nodePath)
275                 if err != nil {
276                         if os.IsNotExist(err) {
277                                 ctx.LogD("nncp-xfer", sds, "does not exist")
278                                 if !*mkdir {
279                                         ctx.UnlockDir(dirLock)
280                                         continue
281                                 }
282                                 if err = os.Mkdir(nodePath, os.FileMode(0777)); err != nil {
283                                         ctx.UnlockDir(dirLock)
284                                         ctx.LogE("nncp-xfer", sds, err, "mkdir")
285                                         isBad = true
286                                         continue
287                                 }
288                         } else {
289                                 ctx.UnlockDir(dirLock)
290                                 ctx.LogE("nncp-xfer", sds, err, "stat")
291                                 isBad = true
292                                 continue
293                         }
294                 }
295                 dstPath := filepath.Join(nodePath, ctx.SelfId.String())
296                 sds["dir"] = dstPath
297                 _, err = os.Stat(dstPath)
298                 if err != nil {
299                         if os.IsNotExist(err) {
300                                 if err = os.Mkdir(dstPath, os.FileMode(0777)); err != nil {
301                                         ctx.UnlockDir(dirLock)
302                                         ctx.LogE("nncp-xfer", sds, err, "mkdir")
303                                         isBad = true
304                                         continue
305                                 }
306                         } else {
307                                 ctx.UnlockDir(dirLock)
308                                 ctx.LogE("nncp-xfer", sds, err, "stat")
309                                 isBad = true
310                                 continue
311                         }
312                 }
313                 delete(sds, "dir")
314                 for job := range ctx.Jobs(&nodeId, nncp.TTx) {
315                         pktName := filepath.Base(job.Fd.Name())
316                         sds["pkt"] = pktName
317                         if job.PktEnc.Nice > nice {
318                                 ctx.LogD("nncp-xfer", sds, "too nice")
319                                 job.Fd.Close() // #nosec G104
320                                 continue
321                         }
322                         if _, err = os.Stat(filepath.Join(dstPath, pktName)); err == nil || !os.IsNotExist(err) {
323                                 ctx.LogD("nncp-xfer", sds, "already exists")
324                                 job.Fd.Close() // #nosec G104
325                                 continue
326                         }
327                         if _, err = os.Stat(filepath.Join(dstPath, pktName+nncp.SeenSuffix)); err == nil || !os.IsNotExist(err) {
328                                 ctx.LogD("nncp-xfer", sds, "already exists")
329                                 job.Fd.Close() // #nosec G104
330                                 continue
331                         }
332                         tmp, err := nncp.TempFile(dstPath, "xfer")
333                         if err != nil {
334                                 ctx.LogE("nncp-xfer", sds, err, "mktemp")
335                                 job.Fd.Close() // #nosec G104
336                                 isBad = true
337                                 break
338                         }
339                         sds["tmp"] = tmp.Name()
340                         ctx.LogD("nncp-xfer", sds, "created")
341                         bufW := bufio.NewWriter(tmp)
342                         copied, err := nncp.CopyProgressed(
343                                 bufW, bufio.NewReader(job.Fd), "Tx",
344                                 nncp.SdsAdd(sds, nncp.SDS{"fullsize": job.Size}),
345                                 ctx.ShowPrgrs,
346                         )
347                         job.Fd.Close() // #nosec G104
348                         if err != nil {
349                                 ctx.LogE("nncp-xfer", sds, err, "copy")
350                                 tmp.Close() // #nosec G104
351                                 isBad = true
352                                 continue
353                         }
354                         if err = bufW.Flush(); err != nil {
355                                 tmp.Close() // #nosec G104
356                                 ctx.LogE("nncp-xfer", sds, err, "flush")
357                                 isBad = true
358                                 continue
359                         }
360                         if err = tmp.Sync(); err != nil {
361                                 tmp.Close() // #nosec G104
362                                 ctx.LogE("nncp-xfer", sds, err, "sync")
363                                 isBad = true
364                                 continue
365                         }
366                         if err = tmp.Close(); err != nil {
367                                 ctx.LogE("nncp-xfer", sds, err, "sync")
368                         }
369                         if err = os.Rename(tmp.Name(), filepath.Join(dstPath, pktName)); err != nil {
370                                 ctx.LogE("nncp-xfer", sds, err, "rename")
371                                 isBad = true
372                                 continue
373                         }
374                         if err = nncp.DirSync(dstPath); err != nil {
375                                 ctx.LogE("nncp-xfer", sds, err, "sync")
376                                 isBad = true
377                                 continue
378                         }
379                         os.Remove(filepath.Join(dstPath, pktName+".part")) // #nosec G104
380                         delete(sds, "tmp")
381                         ctx.LogI("nncp-xfer", nncp.SdsAdd(sds, nncp.SDS{"size": copied}), "")
382                         if !*keep {
383                                 if err = os.Remove(job.Fd.Name()); err != nil {
384                                         ctx.LogE("nncp-xfer", sds, err, "remove")
385                                         isBad = true
386                                 }
387                         }
388                 }
389                 ctx.UnlockDir(dirLock)
390         }
391         if isBad {
392                 os.Exit(1)
393         }
394 }