]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-bundle/main.go
Ignore many errors
[nncp.git] / src / cmd / nncp-bundle / 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 // Create/digest stream of NNCP encrypted packets.
19 package main
20
21 import (
22         "archive/tar"
23         "bufio"
24         "bytes"
25         "errors"
26         "flag"
27         "fmt"
28         "io"
29         "io/ioutil"
30         "log"
31         "os"
32         "path/filepath"
33         "strings"
34
35         xdr "github.com/davecgh/go-xdr/xdr2"
36         "go.cypherpunks.ru/nncp/v5"
37         "golang.org/x/crypto/blake2b"
38 )
39
40 const (
41         CopyBufSize = 1 << 17
42 )
43
44 func usage() {
45         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
46         fmt.Fprintf(os.Stderr, "nncp-bundle -- Create/digest stream of NNCP encrypted packets\n\n")
47         fmt.Fprintf(os.Stderr, "Usage: %s [options] -tx [-delete] NODE [NODE ...] > ...\n", os.Args[0])
48         fmt.Fprintf(os.Stderr, "       %s [options] -rx -delete [-dryrun] [NODE ...] < ...\n", os.Args[0])
49         fmt.Fprintf(os.Stderr, "       %s [options] -rx [-check] [-dryrun] [NODE ...] < ...\n", os.Args[0])
50         fmt.Fprintln(os.Stderr, "Options:")
51         flag.PrintDefaults()
52 }
53
54 func main() {
55         var (
56                 cfgPath   = flag.String("cfg", nncp.DefaultCfgPath, "Path to configuration file")
57                 niceRaw   = flag.String("nice", nncp.NicenessFmt(255), "Minimal required niceness")
58                 doRx      = flag.Bool("rx", false, "Receive packets")
59                 doTx      = flag.Bool("tx", false, "Transfer packets")
60                 doDelete  = flag.Bool("delete", false, "Delete transferred packets")
61                 doCheck   = flag.Bool("check", false, "Check integrity while receiving")
62                 dryRun    = flag.Bool("dryrun", false, "Do no writes")
63                 spoolPath = flag.String("spool", "", "Override path to spool")
64                 logPath   = flag.String("log", "", "Override path to logfile")
65                 quiet     = flag.Bool("quiet", false, "Print only errors")
66                 showPrgrs = flag.Bool("progress", false, "Force progress showing")
67                 omitPrgrs = flag.Bool("noprogress", false, "Omit progress showing")
68                 debug     = flag.Bool("debug", false, "Print debug messages")
69                 version   = flag.Bool("version", false, "Print version information")
70                 warranty  = flag.Bool("warranty", false, "Print warranty information")
71         )
72         flag.Usage = usage
73         flag.Parse()
74         if *warranty {
75                 fmt.Println(nncp.Warranty)
76                 return
77         }
78         if *version {
79                 fmt.Println(nncp.VersionGet())
80                 return
81         }
82         nice, err := nncp.NicenessParse(*niceRaw)
83         if err != nil {
84                 log.Fatalln(err)
85         }
86         if *doRx && *doTx {
87                 log.Fatalln("-rx and -tx can not be set simultaneously")
88         }
89         if !*doRx && !*doTx {
90                 log.Fatalln("At least one of -rx and -tx must be specified")
91         }
92
93         ctx, err := nncp.CtxFromCmdline(
94                 *cfgPath,
95                 *spoolPath,
96                 *logPath,
97                 *quiet,
98                 *showPrgrs,
99                 *omitPrgrs,
100                 *debug,
101         )
102         if err != nil {
103                 log.Fatalln("Error during initialization:", err)
104         }
105
106         nodeIds := make(map[nncp.NodeId]struct{}, flag.NArg())
107         for i := 0; i < flag.NArg(); i++ {
108                 node, err := ctx.FindNode(flag.Arg(i))
109                 if err != nil {
110                         log.Fatalln("Invalid specified:", err)
111                 }
112                 nodeIds[*node.Id] = struct{}{}
113         }
114
115         ctx.Umask()
116
117         sds := nncp.SDS{}
118         if *doTx {
119                 sds["xx"] = string(nncp.TTx)
120                 var pktName string
121                 bufStdout := bufio.NewWriter(os.Stdout)
122                 tarWr := tar.NewWriter(bufStdout)
123                 for nodeId, _ := range nodeIds {
124                         sds["node"] = nodeId.String()
125                         for job := range ctx.Jobs(&nodeId, nncp.TTx) {
126                                 pktName = filepath.Base(job.Fd.Name())
127                                 sds["pkt"] = pktName
128                                 if job.PktEnc.Nice > nice {
129                                         ctx.LogD("nncp-bundle", sds, "too nice")
130                                         job.Fd.Close() // #nosec G104
131                                         continue
132                                 }
133                                 if err = tarWr.WriteHeader(&tar.Header{
134                                         Format:   tar.FormatUSTAR,
135                                         Name:     nncp.NNCPBundlePrefix,
136                                         Mode:     0700,
137                                         Typeflag: tar.TypeDir,
138                                 }); err != nil {
139                                         log.Fatalln("Error writing tar header:", err)
140                                 }
141                                 if err = tarWr.WriteHeader(&tar.Header{
142                                         Format: tar.FormatPAX,
143                                         Name: strings.Join([]string{
144                                                 nncp.NNCPBundlePrefix,
145                                                 nodeId.String(),
146                                                 ctx.SelfId.String(),
147                                                 pktName,
148                                         }, "/"),
149                                         Mode:     0400,
150                                         Size:     job.Size,
151                                         Typeflag: tar.TypeReg,
152                                 }); err != nil {
153                                         log.Fatalln("Error writing tar header:", err)
154                                 }
155                                 if _, err = nncp.CopyProgressed(
156                                         tarWr, job.Fd, "Tx",
157                                         nncp.SdsAdd(sds, nncp.SDS{
158                                                 "pkt":      nncp.Base32Codec.EncodeToString(job.HshValue[:]),
159                                                 "fullsize": job.Size,
160                                         }),
161                                         ctx.ShowPrgrs,
162                                 ); err != nil {
163                                         log.Fatalln("Error during copying to tar:", err)
164                                 }
165                                 job.Fd.Close() // #nosec G104
166                                 if err = tarWr.Flush(); err != nil {
167                                         log.Fatalln("Error during tar flushing:", err)
168                                 }
169                                 if err = bufStdout.Flush(); err != nil {
170                                         log.Fatalln("Error during stdout flushing:", err)
171                                 }
172                                 if *doDelete {
173                                         if err = os.Remove(job.Fd.Name()); err != nil {
174                                                 log.Fatalln("Error during deletion:", err)
175                                         }
176                                 }
177                                 ctx.LogI("nncp-bundle", nncp.SdsAdd(sds, nncp.SDS{"size": job.Size}), "")
178                         }
179                 }
180                 if err = tarWr.Close(); err != nil {
181                         log.Fatalln("Error during tar closing:", err)
182                 }
183         } else {
184                 bufStdin := bufio.NewReaderSize(os.Stdin, CopyBufSize*2)
185                 pktEncBuf := make([]byte, nncp.PktEncOverhead)
186                 var pktEnc *nncp.PktEnc
187                 for {
188                         peeked, err := bufStdin.Peek(CopyBufSize)
189                         if err != nil && err != io.EOF {
190                                 log.Fatalln("Error during reading:", err)
191                         }
192                         prefixIdx := bytes.Index(peeked, []byte(nncp.NNCPBundlePrefix))
193                         if prefixIdx == -1 {
194                                 if err == io.EOF {
195                                         break
196                                 }
197                                 bufStdin.Discard(bufStdin.Buffered() - (len(nncp.NNCPBundlePrefix) - 1)) // #nosec G104
198                                 continue
199                         }
200                         if _, err = bufStdin.Discard(prefixIdx); err != nil {
201                                 panic(err)
202                         }
203                         tarR := tar.NewReader(bufStdin)
204                         sds["xx"] = string(nncp.TRx)
205                         entry, err := tarR.Next()
206                         if err != nil {
207                                 if err != io.EOF {
208                                         ctx.LogD(
209                                                 "nncp-bundle",
210                                                 nncp.SdsAdd(sds, nncp.SDS{"err": err}),
211                                                 "error reading tar",
212                                         )
213                                 }
214                                 continue
215                         }
216                         if entry.Typeflag != tar.TypeDir {
217                                 ctx.LogD("nncp-bundle", sds, "Expected NNCP/")
218                                 continue
219                         }
220                         entry, err = tarR.Next()
221                         if err != nil {
222                                 if err != io.EOF {
223                                         ctx.LogD(
224                                                 "nncp-bundle",
225                                                 nncp.SdsAdd(sds, nncp.SDS{"err": err}),
226                                                 "error reading tar",
227                                         )
228                                 }
229                                 continue
230                         }
231                         sds["pkt"] = entry.Name
232                         if entry.Size < nncp.PktEncOverhead {
233                                 ctx.LogD("nncp-bundle", sds, "Too small packet")
234                                 continue
235                         }
236                         if !ctx.IsEnoughSpace(entry.Size) {
237                                 ctx.LogE("nncp-bundle", sds, errors.New("not enough spool space"), "")
238                                 continue
239                         }
240                         pktName := filepath.Base(entry.Name)
241                         if _, err = nncp.Base32Codec.DecodeString(pktName); err != nil {
242                                 ctx.LogD("nncp-bundle", nncp.SdsAdd(sds, nncp.SDS{"err": "bad packet name"}), "")
243                                 continue
244                         }
245                         if _, err = io.ReadFull(tarR, pktEncBuf); err != nil {
246                                 ctx.LogD("nncp-bundle", nncp.SdsAdd(sds, nncp.SDS{"err": err}), "read")
247                                 continue
248                         }
249                         if _, err = xdr.Unmarshal(bytes.NewReader(pktEncBuf), &pktEnc); err != nil {
250                                 ctx.LogD("nncp-bundle", sds, "Bad packet structure")
251                                 continue
252                         }
253                         if pktEnc.Magic != nncp.MagicNNCPEv4 {
254                                 ctx.LogD("nncp-bundle", sds, "Bad packet magic number")
255                                 continue
256                         }
257                         if pktEnc.Nice > nice {
258                                 ctx.LogD("nncp-bundle", sds, "too nice")
259                                 continue
260                         }
261                         if *pktEnc.Sender == *ctx.SelfId && *doDelete {
262                                 if len(nodeIds) > 0 {
263                                         if _, exists := nodeIds[*pktEnc.Recipient]; !exists {
264                                                 ctx.LogD("nncp-bundle", sds, "Recipient is not requested")
265                                                 continue
266                                         }
267                                 }
268                                 nodeId32 := nncp.Base32Codec.EncodeToString(pktEnc.Recipient[:])
269                                 sds["xx"] = string(nncp.TTx)
270                                 sds["node"] = nodeId32
271                                 sds["pkt"] = pktName
272                                 dstPath := filepath.Join(
273                                         ctx.Spool,
274                                         nodeId32,
275                                         string(nncp.TTx),
276                                         pktName,
277                                 )
278                                 if _, err = os.Stat(dstPath); err != nil {
279                                         ctx.LogD("nncp-bundle", sds, "Packet is already missing")
280                                         continue
281                                 }
282                                 hsh, err := blake2b.New256(nil)
283                                 if err != nil {
284                                         log.Fatalln("Error during hasher creation:", err)
285                                 }
286                                 if _, err = hsh.Write(pktEncBuf); err != nil {
287                                         log.Fatalln("Error during writing:", err)
288                                 }
289                                 if _, err = nncp.CopyProgressed(
290                                         hsh, tarR, "Rx",
291                                         nncp.SdsAdd(sds, nncp.SDS{"fullsize": entry.Size}),
292                                         ctx.ShowPrgrs,
293                                 ); err != nil {
294                                         log.Fatalln("Error during copying:", err)
295                                 }
296                                 if nncp.Base32Codec.EncodeToString(hsh.Sum(nil)) == pktName {
297                                         ctx.LogI("nncp-bundle", sds, "removed")
298                                         if !*dryRun {
299                                                 os.Remove(dstPath) // #nosec G104
300                                         }
301                                 } else {
302                                         ctx.LogE("nncp-bundle", sds, errors.New("bad checksum"), "")
303                                 }
304                                 continue
305                         }
306                         if *pktEnc.Recipient != *ctx.SelfId {
307                                 ctx.LogD("nncp-bundle", sds, "Unknown recipient")
308                                 continue
309                         }
310                         if len(nodeIds) > 0 {
311                                 if _, exists := nodeIds[*pktEnc.Sender]; !exists {
312                                         ctx.LogD("nncp-bundle", sds, "Sender is not requested")
313                                         continue
314                                 }
315                         }
316                         sds["node"] = nncp.Base32Codec.EncodeToString(pktEnc.Recipient[:])
317                         sds["pkt"] = pktName
318                         sds["fullsize"] = entry.Size
319                         selfPath := filepath.Join(ctx.Spool, ctx.SelfId.String(), string(nncp.TRx))
320                         dstPath := filepath.Join(selfPath, pktName)
321                         if _, err = os.Stat(dstPath); err == nil || !os.IsNotExist(err) {
322                                 ctx.LogD("nncp-bundle", sds, "Packet already exists")
323                                 continue
324                         }
325                         if _, err = os.Stat(dstPath + nncp.SeenSuffix); err == nil || !os.IsNotExist(err) {
326                                 ctx.LogD("nncp-bundle", sds, "Packet already exists")
327                                 continue
328                         }
329                         if *doCheck {
330                                 if *dryRun {
331                                         hsh, err := blake2b.New256(nil)
332                                         if err != nil {
333                                                 log.Fatalln("Error during hasher creation:", err)
334                                         }
335                                         if _, err = hsh.Write(pktEncBuf); err != nil {
336                                                 log.Fatalln("Error during writing:", err)
337                                         }
338                                         if _, err = nncp.CopyProgressed(hsh, tarR, "check", sds, ctx.ShowPrgrs); err != nil {
339                                                 log.Fatalln("Error during copying:", err)
340                                         }
341                                         if nncp.Base32Codec.EncodeToString(hsh.Sum(nil)) != pktName {
342                                                 ctx.LogE("nncp-bundle", sds, errors.New("bad checksum"), "")
343                                                 continue
344                                         }
345                                 } else {
346                                         tmp, err := ctx.NewTmpFileWHash()
347                                         if err != nil {
348                                                 log.Fatalln("Error during temporary file creation:", err)
349                                         }
350                                         if _, err = tmp.W.Write(pktEncBuf); err != nil {
351                                                 log.Fatalln("Error during writing:", err)
352                                         }
353                                         if _, err = nncp.CopyProgressed(tmp.W, tarR, "check", sds, ctx.ShowPrgrs); err != nil {
354                                                 log.Fatalln("Error during copying:", err)
355                                         }
356                                         if err = tmp.W.Flush(); err != nil {
357                                                 log.Fatalln("Error during flusing:", err)
358                                         }
359                                         if nncp.Base32Codec.EncodeToString(tmp.Hsh.Sum(nil)) == pktName {
360                                                 if err = tmp.Commit(selfPath); err != nil {
361                                                         log.Fatalln("Error during commiting:", err)
362                                                 }
363                                         } else {
364                                                 ctx.LogE("nncp-bundle", sds, errors.New("bad checksum"), "")
365                                                 tmp.Cancel()
366                                                 continue
367                                         }
368                                 }
369                         } else {
370                                 if *dryRun {
371                                         if _, err = nncp.CopyProgressed(ioutil.Discard, tarR, "Rx", sds, ctx.ShowPrgrs); err != nil {
372                                                 log.Fatalln("Error during copying:", err)
373                                         }
374                                 } else {
375                                         tmp, err := ctx.NewTmpFile()
376                                         if err != nil {
377                                                 log.Fatalln("Error during temporary file creation:", err)
378                                         }
379                                         bufTmp := bufio.NewWriterSize(tmp, CopyBufSize)
380                                         if _, err = bufTmp.Write(pktEncBuf); err != nil {
381                                                 log.Fatalln("Error during writing:", err)
382                                         }
383                                         if _, err = nncp.CopyProgressed(bufTmp, tarR, "Rx", sds, ctx.ShowPrgrs); err != nil {
384                                                 log.Fatalln("Error during copying:", err)
385                                         }
386                                         if err = bufTmp.Flush(); err != nil {
387                                                 log.Fatalln("Error during flushing:", err)
388                                         }
389                                         if err = tmp.Sync(); err != nil {
390                                                 log.Fatalln("Error during syncing:", err)
391                                         }
392                                         if err = tmp.Close(); err != nil {
393                                                 log.Fatalln("Error during closing:", err)
394                                         }
395                                         if err = os.MkdirAll(selfPath, os.FileMode(0777)); err != nil {
396                                                 log.Fatalln("Error during mkdir:", err)
397                                         }
398                                         if err = os.Rename(tmp.Name(), dstPath); err != nil {
399                                                 log.Fatalln("Error during renaming:", err)
400                                         }
401                                         if err = nncp.DirSync(selfPath); err != nil {
402                                                 log.Fatalln("Error during syncing:", err)
403                                         }
404                                 }
405                         }
406                         ctx.LogI("nncp-bundle", nncp.SdsAdd(sds, nncp.SDS{
407                                 "size": sds["fullsize"],
408                         }), "")
409                 }
410         }
411 }