X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=src%2Fcmd%2Fnncp-reass%2Fmain.go;h=ac52eeb2e853f098ab75f811c0ebcc3cd5548467;hb=72f42f8288689ae89e021ba33ebca8d551a784d7;hp=40253db532488675d974621f5b06b6b2bacc5340;hpb=ae2b0d687a4ed40fe0161b79b4a9ec42290ffb6b;p=nncp.git diff --git a/src/cmd/nncp-reass/main.go b/src/cmd/nncp-reass/main.go index 40253db..ac52eeb 100644 --- a/src/cmd/nncp-reass/main.go +++ b/src/cmd/nncp-reass/main.go @@ -1,6 +1,6 @@ /* NNCP -- Node to Node copy, utilities for store-and-forward data exchange -Copyright (C) 2016-2021 Sergey Matveev +Copyright (C) 2016-2023 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -27,6 +27,7 @@ import ( "fmt" "hash" "io" + "io/fs" "log" "os" "path/filepath" @@ -35,13 +36,12 @@ import ( xdr "github.com/davecgh/go-xdr/xdr2" "github.com/dustin/go-humanize" - "go.cypherpunks.ru/nncp/v5" - "golang.org/x/crypto/blake2b" + "go.cypherpunks.ru/nncp/v8" ) func usage() { - fmt.Fprintf(os.Stderr, nncp.UsageHeader()) - fmt.Fprintf(os.Stderr, "nncp-reass -- reassemble chunked files\n\n") + fmt.Fprint(os.Stderr, nncp.UsageHeader()) + fmt.Fprint(os.Stderr, "nncp-reass -- reassemble chunked files\n\n") fmt.Fprintf(os.Stderr, "Usage: %s [options] [FILE.nncp.meta]\nOptions:\n", os.Args[0]) flag.PrintDefaults() fmt.Fprint(os.Stderr, ` @@ -52,25 +52,34 @@ but at least one of them must be specified. func process(ctx *nncp.Ctx, path string, keep, dryRun, stdout, dumpMeta bool) bool { fd, err := os.Open(path) - defer fd.Close() if err != nil { log.Fatalln("Can not open file:", err) } + defer fd.Close() var metaPkt nncp.ChunkedMeta les := nncp.LEs{{K: "Path", V: path}} + logMsg := func(les nncp.LEs) string { + return fmt.Sprintf("Reassembling chunked file \"%s\"", path) + } if _, err = xdr.Unmarshal(fd, &metaPkt); err != nil { - ctx.LogE("nncp-reass", les, err, "bad meta file") + ctx.LogE("reass-bad-meta", les, err, func(les nncp.LEs) string { + return logMsg(les) + ": bad meta" + }) return false } - fd.Close() // #nosec G104 - if metaPkt.Magic != nncp.MagicNNCPMv1 { - ctx.LogE("nncp-reass", les, nncp.BadMagic, "") + fd.Close() + if metaPkt.Magic == nncp.MagicNNCPMv1.B { + ctx.LogE("reass", les, nncp.MagicNNCPMv1.TooOld(), logMsg) + return false + } + if metaPkt.Magic != nncp.MagicNNCPMv2.B { + ctx.LogE("reass", les, nncp.BadMagic, logMsg) return false } metaName := filepath.Base(path) if !strings.HasSuffix(metaName, nncp.ChunkedSuffixMeta) { - ctx.LogE("nncp-reass", les, errors.New("invalid filename suffix"), "") + ctx.LogE("reass", les, errors.New("invalid filename suffix"), logMsg) return false } mainName := strings.TrimSuffix(metaName, nncp.ChunkedSuffixMeta) @@ -107,8 +116,10 @@ func process(ctx *nncp.Ctx, path string, keep, dryRun, stdout, dumpMeta bool) bo for chunkNum, chunkPath := range chunksPaths { fi, err := os.Stat(chunkPath) lesChunk := append(les, nncp.LE{K: "Chunk", V: chunkNum}) - if err != nil && os.IsNotExist(err) { - ctx.LogI("nncp-reass", lesChunk, "missing") + if err != nil && errors.Is(err, fs.ErrNotExist) { + ctx.LogI("reass-chunk-miss", lesChunk, func(les nncp.LEs) string { + return fmt.Sprintf("%s: chunk %d missing", logMsg(les), chunkNum) + }) allChunksExist = false continue } @@ -119,7 +130,14 @@ func process(ctx *nncp.Ctx, path string, keep, dryRun, stdout, dumpMeta bool) bo badSize = uint64(fi.Size()) != metaPkt.ChunkSize } if badSize { - ctx.LogE("nncp-reass", lesChunk, errors.New("invalid size"), "") + ctx.LogE( + "reass-chunk", + lesChunk, + errors.New("invalid size"), + func(les nncp.LEs) string { + return fmt.Sprintf("%s: chunk %d", logMsg(les), chunkNum) + }, + ) allChunksExist = false } } @@ -138,26 +156,23 @@ func process(ctx *nncp.Ctx, path string, keep, dryRun, stdout, dumpMeta bool) bo if err != nil { log.Fatalln("Can not stat file:", err) } - hsh, err = blake2b.New256(nil) - if err != nil { - log.Fatalln(err) - } + hsh = nncp.MTHNew(fi.Size(), 0) if _, err = nncp.CopyProgressed( - hsh, bufio.NewReader(fd), "check", - nncp.LEs{ - {K: "Pkt", V: chunkPath}, - {K: "FullSize", V: fi.Size()}, - }, + hsh, bufio.NewReaderSize(fd, nncp.MTHBlockSize), "check", + nncp.LEs{{K: "Pkt", V: chunkPath}, {K: "FullSize", V: fi.Size()}}, ctx.ShowPrgrs, ); err != nil { log.Fatalln(err) } - fd.Close() // #nosec G104 - if bytes.Compare(hsh.Sum(nil), metaPkt.Checksums[chunkNum][:]) != 0 { + fd.Close() + if !bytes.Equal(hsh.Sum(nil), metaPkt.Checksums[chunkNum][:]) { ctx.LogE( - "nncp-reass", + "reass-chunk", nncp.LEs{{K: "Path", V: path}, {K: "Chunk", V: chunkNum}}, - errors.New("checksum is bad"), "", + errors.New("checksum is bad"), + func(les nncp.LEs) string { + return fmt.Sprintf("%s: chunk %d", logMsg(les), chunkNum) + }, ) allChecksumsGood = false } @@ -166,7 +181,7 @@ func process(ctx *nncp.Ctx, path string, keep, dryRun, stdout, dumpMeta bool) bo return false } if dryRun { - ctx.LogI("nncp-reass", nncp.LEs{{K: "path", V: path}}, "ready") + ctx.LogI("reass", nncp.LEs{{K: "path", V: path}}, logMsg) return true } @@ -181,7 +196,9 @@ func process(ctx *nncp.Ctx, path string, keep, dryRun, stdout, dumpMeta bool) bo log.Fatalln(err) } les = nncp.LEs{{K: "path", V: path}, {K: "Tmp", V: tmp.Name()}} - ctx.LogD("nncp-reass", les, "created") + ctx.LogD("reass-tmp-created", les, func(les nncp.LEs) string { + return fmt.Sprintf("%s: temporary %s created", logMsg(les), tmp.Name()) + }) dst = tmp } dstW := bufio.NewWriter(dst) @@ -197,19 +214,22 @@ func process(ctx *nncp.Ctx, path string, keep, dryRun, stdout, dumpMeta bool) bo log.Fatalln("Can not stat file:", err) } if _, err = nncp.CopyProgressed( - dstW, bufio.NewReader(fd), "reass", - nncp.LEs{ - {K: "Pkt", V: chunkPath}, - {K: "FullSize", V: fi.Size()}, - }, + dstW, bufio.NewReaderSize(fd, nncp.MTHBlockSize), "reass", + nncp.LEs{{K: "Pkt", V: chunkPath}, {K: "FullSize", V: fi.Size()}}, ctx.ShowPrgrs, ); err != nil { log.Fatalln(err) } - fd.Close() // #nosec G104 + fd.Close() if !keep { if err = os.Remove(chunkPath); err != nil { - ctx.LogE("nncp-reass", append(les, nncp.LE{K: "Chunk", V: chunkNum}), err, "") + ctx.LogE( + "reass-chunk", + append(les, nncp.LE{K: "Chunk", V: chunkNum}), err, + func(les nncp.LEs) string { + return fmt.Sprintf("%s: chunk %d", logMsg(les), chunkNum) + }, + ) hasErrors = true } } @@ -218,22 +238,30 @@ func process(ctx *nncp.Ctx, path string, keep, dryRun, stdout, dumpMeta bool) bo log.Fatalln("Can not flush:", err) } if tmp != nil { - if err = tmp.Sync(); err != nil { - log.Fatalln("Can not sync:", err) + if !nncp.NoSync { + if err = tmp.Sync(); err != nil { + log.Fatalln("Can not sync:", err) + } } if err = tmp.Close(); err != nil { log.Fatalln("Can not close:", err) } } - ctx.LogD("nncp-reass", les, "written") + ctx.LogD("reass-written", les, func(les nncp.LEs) string { + return logMsg(les) + ": written" + }) if !keep { if err = os.Remove(path); err != nil { - ctx.LogE("nncp-reass", les, err, "") + ctx.LogE("reass-removing", les, err, func(les nncp.LEs) string { + return logMsg(les) + ": removing" + }) hasErrors = true } } if stdout { - ctx.LogI("nncp-reass", nncp.LEs{{K: "Path", V: path}}, "done") + ctx.LogI("reass", nncp.LEs{{K: "Path", V: path}}, func(les nncp.LEs) string { + return logMsg(les) + ": done" + }) return !hasErrors } @@ -242,7 +270,7 @@ func process(ctx *nncp.Ctx, path string, keep, dryRun, stdout, dumpMeta bool) bo dstPathCtr := 0 for { if _, err = os.Stat(dstPath); err != nil { - if os.IsNotExist(err) { + if errors.Is(err, fs.ErrNotExist) { break } log.Fatalln(err) @@ -256,21 +284,26 @@ func process(ctx *nncp.Ctx, path string, keep, dryRun, stdout, dumpMeta bool) bo if err = nncp.DirSync(mainDir); err != nil { log.Fatalln(err) } - ctx.LogI("nncp-reass", nncp.LEs{{K: "Path", V: path}}, "done") + ctx.LogI("reass", nncp.LEs{{K: "Path", V: path}}, func(les nncp.LEs) string { + return logMsg(les) + ": done" + }) return !hasErrors } func findMetas(ctx *nncp.Ctx, dirPath string) []string { dir, err := os.Open(dirPath) - defer dir.Close() + logMsg := func(les nncp.LEs) string { + return "Finding .meta in " + dirPath + } if err != nil { - ctx.LogE("nncp-reass", nncp.LEs{{K: "Path", V: dirPath}}, err, "") + ctx.LogE("reass", nncp.LEs{{K: "Path", V: dirPath}}, err, logMsg) return nil } + defer dir.Close() fis, err := dir.Readdir(0) - dir.Close() // #nosec G104 + dir.Close() if err != nil { - ctx.LogE("nncp-reass", nncp.LEs{{K: "Path", V: dirPath}}, err, "") + ctx.LogE("reass", nncp.LEs{{K: "Path", V: dirPath}}, err, logMsg) return nil } metaPaths := make([]string, 0) @@ -300,6 +333,7 @@ func main() { version = flag.Bool("version", false, "Print version information") warranty = flag.Bool("warranty", false, "Print warranty information") ) + log.SetFlags(log.Lshortfile) flag.Usage = usage flag.Parse() if *warranty {