]> 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-2020 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()
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()
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()
190                                 continue
191                         }
192                         if pktEnc.Nice > nice {
193                                 ctx.LogD("nncp-xfer", sds, "too nice")
194                                 fd.Close()
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()
201                                 continue
202                         }
203                         fd.Seek(0, 0)
204                         tmp, err := ctx.NewTmpFileWHash()
205                         if err != nil {
206                                 log.Fatalln(err)
207                         }
208                         r, w := io.Pipe()
209                         go func() {
210                                 _, err := io.CopyN(w, bufio.NewReader(fd), fiInt.Size())
211                                 if err == nil {
212                                         w.Close()
213                                         return
214                                 }
215                                 ctx.LogE("nncp-xfer", sds, err, "copy")
216                                 w.CloseWithError(err)
217                         }()
218                         if _, err = nncp.CopyProgressed(
219                                 tmp.W, r, "Rx",
220                                 nncp.SdsAdd(sds, nncp.SDS{
221                                         "pkt":      filename,
222                                         "fullsize": sds["size"],
223                                 }),
224                                 ctx.ShowPrgrs,
225                         ); err != nil {
226                                 ctx.LogE("nncp-xfer", sds, err, "copy")
227                                 isBad = true
228                         }
229                         fd.Close()
230                         if isBad {
231                                 tmp.Cancel()
232                                 continue
233                         }
234                         if err = tmp.Commit(filepath.Join(
235                                 ctx.Spool,
236                                 nodeId.String(),
237                                 string(nncp.TRx),
238                         )); err != nil {
239                                 log.Fatalln(err)
240                         }
241                         ctx.LogI("nncp-xfer", sds, "")
242                         if !*keep {
243                                 if err = os.Remove(filename); err != nil {
244                                         ctx.LogE("nncp-xfer", sds, err, "remove")
245                                         isBad = true
246                                 }
247                         }
248                 }
249         }
250
251 Tx:
252         if *rxOnly {
253                 if isBad {
254                         os.Exit(1)
255                 }
256                 return
257         }
258         sds["xx"] = string(nncp.TTx)
259         for nodeId, _ := range ctx.Neigh {
260                 sds["node"] = nodeId
261                 if nodeOnly != nil && nodeId != *nodeOnly.Id {
262                         ctx.LogD("nncp-xfer", sds, "skip")
263                         continue
264                 }
265                 dirLock, err := ctx.LockDir(&nodeId, string(nncp.TTx))
266                 if err != nil {
267                         continue
268                 }
269                 nodePath := filepath.Join(flag.Arg(0), nodeId.String())
270                 sds["dir"] = nodePath
271                 _, err = os.Stat(nodePath)
272                 if err != nil {
273                         if os.IsNotExist(err) {
274                                 ctx.LogD("nncp-xfer", sds, "does not exist")
275                                 if !*mkdir {
276                                         ctx.UnlockDir(dirLock)
277                                         continue
278                                 }
279                                 if err = os.Mkdir(nodePath, os.FileMode(0777)); err != nil {
280                                         ctx.UnlockDir(dirLock)
281                                         ctx.LogE("nncp-xfer", sds, err, "mkdir")
282                                         isBad = true
283                                         continue
284                                 }
285                         } else {
286                                 ctx.UnlockDir(dirLock)
287                                 ctx.LogE("nncp-xfer", sds, err, "stat")
288                                 isBad = true
289                                 continue
290                         }
291                 }
292                 dstPath := filepath.Join(nodePath, ctx.SelfId.String())
293                 sds["dir"] = dstPath
294                 _, err = os.Stat(dstPath)
295                 if err != nil {
296                         if os.IsNotExist(err) {
297                                 if err = os.Mkdir(dstPath, os.FileMode(0777)); err != nil {
298                                         ctx.UnlockDir(dirLock)
299                                         ctx.LogE("nncp-xfer", sds, err, "mkdir")
300                                         isBad = true
301                                         continue
302                                 }
303                         } else {
304                                 ctx.UnlockDir(dirLock)
305                                 ctx.LogE("nncp-xfer", sds, err, "stat")
306                                 isBad = true
307                                 continue
308                         }
309                 }
310                 delete(sds, "dir")
311                 for job := range ctx.Jobs(&nodeId, nncp.TTx) {
312                         pktName := filepath.Base(job.Fd.Name())
313                         sds["pkt"] = pktName
314                         if job.PktEnc.Nice > nice {
315                                 ctx.LogD("nncp-xfer", sds, "too nice")
316                                 job.Fd.Close()
317                                 continue
318                         }
319                         if _, err = os.Stat(filepath.Join(dstPath, pktName)); err == nil || !os.IsNotExist(err) {
320                                 ctx.LogD("nncp-xfer", sds, "already exists")
321                                 job.Fd.Close()
322                                 continue
323                         }
324                         if _, err = os.Stat(filepath.Join(dstPath, pktName+nncp.SeenSuffix)); err == nil || !os.IsNotExist(err) {
325                                 ctx.LogD("nncp-xfer", sds, "already exists")
326                                 job.Fd.Close()
327                                 continue
328                         }
329                         tmp, err := nncp.TempFile(dstPath, "xfer")
330                         if err != nil {
331                                 ctx.LogE("nncp-xfer", sds, err, "mktemp")
332                                 job.Fd.Close()
333                                 isBad = true
334                                 break
335                         }
336                         sds["tmp"] = tmp.Name()
337                         ctx.LogD("nncp-xfer", sds, "created")
338                         bufW := bufio.NewWriter(tmp)
339                         copied, err := nncp.CopyProgressed(
340                                 bufW, bufio.NewReader(job.Fd), "Tx",
341                                 nncp.SdsAdd(sds, nncp.SDS{"fullsize": job.Size}),
342                                 ctx.ShowPrgrs,
343                         )
344                         job.Fd.Close()
345                         if err != nil {
346                                 ctx.LogE("nncp-xfer", sds, err, "copy")
347                                 tmp.Close()
348                                 isBad = true
349                                 continue
350                         }
351                         if err = bufW.Flush(); err != nil {
352                                 tmp.Close()
353                                 ctx.LogE("nncp-xfer", sds, err, "flush")
354                                 isBad = true
355                                 continue
356                         }
357                         if err = tmp.Sync(); err != nil {
358                                 tmp.Close()
359                                 ctx.LogE("nncp-xfer", sds, err, "sync")
360                                 isBad = true
361                                 continue
362                         }
363                         tmp.Close()
364                         if err = os.Rename(tmp.Name(), filepath.Join(dstPath, pktName)); err != nil {
365                                 ctx.LogE("nncp-xfer", sds, err, "rename")
366                                 isBad = true
367                                 continue
368                         }
369                         if err = nncp.DirSync(dstPath); err != nil {
370                                 ctx.LogE("nncp-xfer", sds, err, "sync")
371                                 isBad = true
372                                 continue
373                         }
374                         os.Remove(filepath.Join(dstPath, pktName+".part"))
375                         delete(sds, "tmp")
376                         ctx.LogI("nncp-xfer", nncp.SdsAdd(sds, nncp.SDS{"size": copied}), "")
377                         if !*keep {
378                                 if err = os.Remove(job.Fd.Name()); err != nil {
379                                         ctx.LogE("nncp-xfer", sds, err, "remove")
380                                         isBad = true
381                                 }
382                         }
383                 }
384                 ctx.UnlockDir(dirLock)
385         }
386         if isBad {
387                 os.Exit(1)
388         }
389 }