]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-bundle/main.go
Prefixed progress messages
[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-2019 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()
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.ToBase32(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()
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                 var peeked []byte
186                 var prefixIdx int
187                 var tarR *tar.Reader
188                 var entry *tar.Header
189                 var exists bool
190                 pktEncBuf := make([]byte, nncp.PktEncOverhead)
191                 var pktEnc *nncp.PktEnc
192                 var pktName string
193                 var selfPath string
194                 var dstPath string
195                 for {
196                         peeked, err = bufStdin.Peek(CopyBufSize)
197                         if err != nil && err != io.EOF {
198                                 log.Fatalln("Error during reading:", err)
199                         }
200                         prefixIdx = bytes.Index(peeked, []byte(nncp.NNCPBundlePrefix))
201                         if prefixIdx == -1 {
202                                 if err == io.EOF {
203                                         break
204                                 }
205                                 bufStdin.Discard(bufStdin.Buffered() - (len(nncp.NNCPBundlePrefix) - 1))
206                                 continue
207                         }
208                         bufStdin.Discard(prefixIdx)
209                         tarR = tar.NewReader(bufStdin)
210                         sds["xx"] = string(nncp.TRx)
211                         entry, err = tarR.Next()
212                         if err != nil {
213                                 if err != io.EOF {
214                                         ctx.LogD(
215                                                 "nncp-bundle",
216                                                 nncp.SdsAdd(sds, nncp.SDS{"err": err}),
217                                                 "error reading tar",
218                                         )
219                                 }
220                                 continue
221                         }
222                         if entry.Typeflag != tar.TypeDir {
223                                 ctx.LogD("nncp-bundle", sds, "Expected NNCP/")
224                                 continue
225                         }
226                         entry, err = tarR.Next()
227                         if err != nil {
228                                 if err != io.EOF {
229                                         ctx.LogD(
230                                                 "nncp-bundle",
231                                                 nncp.SdsAdd(sds, nncp.SDS{"err": err}),
232                                                 "error reading tar",
233                                         )
234                                 }
235                                 continue
236                         }
237                         sds["pkt"] = entry.Name
238                         if entry.Size < nncp.PktEncOverhead {
239                                 ctx.LogD("nncp-bundle", sds, "Too small packet")
240                                 continue
241                         }
242                         if !ctx.IsEnoughSpace(entry.Size) {
243                                 ctx.LogE("nncp-bundle", sds, errors.New("not enough spool space"), "")
244                                 continue
245                         }
246                         pktName = filepath.Base(entry.Name)
247                         if _, err = nncp.FromBase32(pktName); err != nil {
248                                 ctx.LogD("nncp-bundle", nncp.SdsAdd(sds, nncp.SDS{"err": "bad packet name"}), "")
249                                 continue
250                         }
251                         if _, err = io.ReadFull(tarR, pktEncBuf); err != nil {
252                                 ctx.LogD("nncp-bundle", nncp.SdsAdd(sds, nncp.SDS{"err": err}), "read")
253                                 continue
254                         }
255                         if _, err = xdr.Unmarshal(bytes.NewReader(pktEncBuf), &pktEnc); err != nil {
256                                 ctx.LogD("nncp-bundle", sds, "Bad packet structure")
257                                 continue
258                         }
259                         if pktEnc.Magic != nncp.MagicNNCPEv4 {
260                                 ctx.LogD("nncp-bundle", sds, "Bad packet magic number")
261                                 continue
262                         }
263                         if pktEnc.Nice > nice {
264                                 ctx.LogD("nncp-bundle", sds, "too nice")
265                                 continue
266                         }
267                         if *pktEnc.Sender == *ctx.SelfId && *doDelete {
268                                 if len(nodeIds) > 0 {
269                                         if _, exists = nodeIds[*pktEnc.Recipient]; !exists {
270                                                 ctx.LogD("nncp-bundle", sds, "Recipient is not requested")
271                                                 continue
272                                         }
273                                 }
274                                 nodeId32 := nncp.ToBase32(pktEnc.Recipient[:])
275                                 sds["xx"] = string(nncp.TTx)
276                                 sds["node"] = nodeId32
277                                 sds["pkt"] = pktName
278                                 dstPath = filepath.Join(
279                                         ctx.Spool,
280                                         nodeId32,
281                                         string(nncp.TTx),
282                                         pktName,
283                                 )
284                                 if _, err = os.Stat(dstPath); err != nil {
285                                         ctx.LogD("nncp-bundle", sds, "Packet is already missing")
286                                         continue
287                                 }
288                                 hsh, err := blake2b.New256(nil)
289                                 if err != nil {
290                                         log.Fatalln("Error during hasher creation:", err)
291                                 }
292                                 if _, err = hsh.Write(pktEncBuf); err != nil {
293                                         log.Fatalln("Error during writing:", err)
294                                 }
295                                 if _, err = nncp.CopyProgressed(
296                                         hsh, tarR, "Rx",
297                                         nncp.SdsAdd(sds, nncp.SDS{"fullsize": entry.Size}),
298                                         ctx.ShowPrgrs,
299                                 ); err != nil {
300                                         log.Fatalln("Error during copying:", err)
301                                 }
302                                 if nncp.ToBase32(hsh.Sum(nil)) == pktName {
303                                         ctx.LogI("nncp-bundle", sds, "removed")
304                                         if !*dryRun {
305                                                 os.Remove(dstPath)
306                                         }
307                                 } else {
308                                         ctx.LogE("nncp-bundle", sds, errors.New("bad checksum"), "")
309                                 }
310                                 continue
311                         }
312                         if *pktEnc.Recipient != *ctx.SelfId {
313                                 ctx.LogD("nncp-bundle", sds, "Unknown recipient")
314                                 continue
315                         }
316                         if len(nodeIds) > 0 {
317                                 if _, exists = nodeIds[*pktEnc.Sender]; !exists {
318                                         ctx.LogD("nncp-bundle", sds, "Sender is not requested")
319                                         continue
320                                 }
321                         }
322                         sds["node"] = nncp.ToBase32(pktEnc.Recipient[:])
323                         sds["pkt"] = pktName
324                         sds["fullsize"] = entry.Size
325                         selfPath = filepath.Join(ctx.Spool, ctx.SelfId.String(), string(nncp.TRx))
326                         dstPath = filepath.Join(selfPath, pktName)
327                         if _, err = os.Stat(dstPath); err == nil || !os.IsNotExist(err) {
328                                 ctx.LogD("nncp-bundle", sds, "Packet already exists")
329                                 continue
330                         }
331                         if _, err = os.Stat(dstPath + nncp.SeenSuffix); err == nil || !os.IsNotExist(err) {
332                                 ctx.LogD("nncp-bundle", sds, "Packet already exists")
333                                 continue
334                         }
335                         if *doCheck {
336                                 if *dryRun {
337                                         hsh, err := blake2b.New256(nil)
338                                         if err != nil {
339                                                 log.Fatalln("Error during hasher creation:", err)
340                                         }
341                                         if _, err = hsh.Write(pktEncBuf); err != nil {
342                                                 log.Fatalln("Error during writing:", err)
343                                         }
344                                         if _, err = nncp.CopyProgressed(hsh, tarR, "check", sds, ctx.ShowPrgrs); err != nil {
345                                                 log.Fatalln("Error during copying:", err)
346                                         }
347                                         if nncp.ToBase32(hsh.Sum(nil)) != pktName {
348                                                 ctx.LogE("nncp-bundle", sds, errors.New("bad checksum"), "")
349                                                 continue
350                                         }
351                                 } else {
352                                         tmp, err := ctx.NewTmpFileWHash()
353                                         if err != nil {
354                                                 log.Fatalln("Error during temporary file creation:", err)
355                                         }
356                                         if _, err = tmp.W.Write(pktEncBuf); err != nil {
357                                                 log.Fatalln("Error during writing:", err)
358                                         }
359                                         if _, err = nncp.CopyProgressed(tmp.W, tarR, "check", sds, ctx.ShowPrgrs); err != nil {
360                                                 log.Fatalln("Error during copying:", err)
361                                         }
362                                         if err = tmp.W.Flush(); err != nil {
363                                                 log.Fatalln("Error during flusing:", err)
364                                         }
365                                         if nncp.ToBase32(tmp.Hsh.Sum(nil)) == pktName {
366                                                 if err = tmp.Commit(selfPath); err != nil {
367                                                         log.Fatalln("Error during commiting:", err)
368                                                 }
369                                         } else {
370                                                 ctx.LogE("nncp-bundle", sds, errors.New("bad checksum"), "")
371                                                 tmp.Cancel()
372                                                 continue
373                                         }
374                                 }
375                         } else {
376                                 if *dryRun {
377                                         if _, err = nncp.CopyProgressed(ioutil.Discard, tarR, "Rx", sds, ctx.ShowPrgrs); err != nil {
378                                                 log.Fatalln("Error during copying:", err)
379                                         }
380                                 } else {
381                                         tmp, err := ctx.NewTmpFile()
382                                         if err != nil {
383                                                 log.Fatalln("Error during temporary file creation:", err)
384                                         }
385                                         bufTmp := bufio.NewWriterSize(tmp, CopyBufSize)
386                                         if _, err = bufTmp.Write(pktEncBuf); err != nil {
387                                                 log.Fatalln("Error during writing:", err)
388                                         }
389                                         if _, err = nncp.CopyProgressed(bufTmp, tarR, "Rx", sds, ctx.ShowPrgrs); err != nil {
390                                                 log.Fatalln("Error during copying:", err)
391                                         }
392                                         if err = bufTmp.Flush(); err != nil {
393                                                 log.Fatalln("Error during flushing:", err)
394                                         }
395                                         if err = tmp.Sync(); err != nil {
396                                                 log.Fatalln("Error during syncing:", err)
397                                         }
398                                         tmp.Close()
399                                         if err = os.MkdirAll(selfPath, os.FileMode(0777)); err != nil {
400                                                 log.Fatalln("Error during mkdir:", err)
401                                         }
402                                         if err = os.Rename(tmp.Name(), dstPath); err != nil {
403                                                 log.Fatalln("Error during renaming:", err)
404                                         }
405                                         if err = nncp.DirSync(selfPath); err != nil {
406                                                 log.Fatalln("Error during syncing:", err)
407                                         }
408                                 }
409                         }
410                         ctx.LogI("nncp-bundle", nncp.SdsAdd(sds, nncp.SDS{
411                                 "size": sds["fullsize"],
412                         }), "")
413                 }
414         }
415 }