mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-08-30 04:37:07 +00:00
* ec: uniform shard block layout An EC volume is striped as 1GiB blocks until less than one row remains, then 1MiB blocks, and consecutive blocks land on different shards. With ec.encode's -fullPercent 95 against the 30GiB default limit, ~30% of every volume sits in that 1MiB tail, so a 4MB filer chunk there is five stripes on five servers. New encodes now use one block per shard, sized ceil(datSize/dataShards) rounded up to 1MiB and recorded in the .vif (EcShardConfig.block_size, also carried by the .ecsum manifest). A needle now maps to one shard unless it is larger than the block or straddles a boundary. The chosen size equals the legacy layout's padded shard length for every input, so shard sizes, capacity math, and the shard-size credibility checks are unchanged; only the byte placement moved. Reads, decode, and scrub resolve the block sizes from the volume's .vif; absence keeps the legacy interpretation, so existing EC volumes read exactly as before. Rebuild is layout-agnostic. weed fix -ecx recovers the layout from the .vif, else the .ecsum sidecar, and with neither de-stripes under both candidate layouts and keeps the one that indexes more valid needles. Same change in the Rust volume server, which now also streams the encode in 256KB sub-batches like Go instead of allocating whole blocks, and computes the large-row count as shardSize/largeBlock to match Go on exact multiples. On a 26MB fixture both encoders produce byte-identical shards, and a Go-written .vif parses in Rust with the block size intact. * ec: resolve the rust ecx rebuild through the recorded layout The Rust rebuild path regenerated a lost .ecx by scanning the logical .dat through a hand-rolled pure-1MiB striping, which was already wrong for legacy volumes with large-block rows and is wrong for any uniform volume with a block past 1MiB. Route the scan through locate_data with the .vif-recorded block size, the same mapping the read path uses. Also seed the new tests' random data instead of the deprecated global math/rand.Read. * ec: fail the Rust ecx rebuild on any shard read error A read error mid-scan published the entries collected so far as a successful .ecx, and read_at's byte count was ignored so a legal short read passed as complete — a truncated or failing shard could produce a silently incomplete recovery index. Exact-read semantics in read_from_data_shards, error propagation in the needle walk, and a truncated-shard regression test. * ec: fail the mount on an unreadable or malformed vif Both servers silently fell back to the legacy layout when an existing .vif could not be read or parsed. Every new encode records a positive uniform block size there, so the fallback mounted the same shards with legacy offset math and could return wrong data. Absent stays legal (legacy volumes predate the sidecar), and a zero-byte stub still reads as absent (Go's MaybeLoadVolumeInfo convention, now mirrored in Rust); a present-but-unreadable or malformed .vif fails the mount instead. * ec: bound the reconstruct fan-out of one needle's intervals A degraded interval fans out a read to every reachable shard location, each with a buffer the size of the interval. Reading a needle's intervals in parallel multiplied that by the interval concurrency: a needle spanning 8 blocks could hold 8 x MaxShardCount remote reads and buffers at once, where the sequential version peaked at MaxShardCount. Give each needle a single reconstruct budget its intervals share, held for the buffer's lifetime, so separate reads stay independent but one read cannot multiply its own fan-out. * ec: drop the duplicated shard-size formula calculateExpectedShardSize reimplemented the padding rule that UniformBlockSize already owns — TestUniformBlockSizeMatchesLegacyShardSize asserts the two agree for every input — so a change to the rule would have had to be made in both. Defer to the helper, keeping the historic answer for an empty .dat. * ec: resolve the shard block layout from whatever records it Four places still answered the layout question by inference when a record of it was available, or accepted an answer that was not one: - A mount with no .vif defaulted to the legacy layout; the bitrot sidecar records the same config at encode time, so take it when present, as weed fix -ecx already does. The vif itself is now parsed once per mount rather than twice. - The Rust ecx rebuild derived its row count from the padded shard extent, which under the legacy layout reads a shard that is an exact large-block multiple as one row too many. Pass the encode-time .dat size from the .vif and keep the extent as the fallback. - weed fix -ecx read the block size outside the EC-config guard (collapsing the unknown sentinel into a definitive legacy), only wrote the recovered layout back when the .vif was absent rather than unusable, and broke a scan tie by candidate order instead of the documented reach. - The uniform layout tripped writeDatFile's large-block ambiguity guard, which cannot apply when the large and small blocks are the same size. * ec: give the index-recovery tests a parseable vif The fixtures wrote the literal bytes "volinfo" as the source .vif and the recovery copies it verbatim, so the receiving server then mounted the volume from a .vif it could not parse. That used to pass by silently defaulting to the legacy layout; a mount now refuses a vif it cannot read, which is what the tests were exercising all along without meaning to. * ec: validate the layout a vif records, not just its syntax Review follow-ups on the mount-strictness change: - A .vif can parse and still record a block size no encoder could have produced (negative, or not a whole number of small blocks). Both servers took it and mapped every read through it. ValidateBlockSize / the Rust mirror now refuse the mount, the same way an unparseable vif does; 0 stays valid as the legacy two-tier layout. - The bitrot-sidecar fallback accepted parity_shards == 0 and summed the counts in their own width, so values near the ceiling wrapped past the MaxShardCount bound. Require both counts and sum in a wider type. - weed fix -ecx treated a config with only DataShards > 0 as usable, so a half-written .vif suppressed the recovery paths AND survived the rewrite. Require a complete, in-range config before trusting it. - Returning the vif-load error left the .ecx and .ecj descriptors open; repeated mount attempts on malformed metadata could exhaust them. * ec: refuse to act on a layout the metadata does not establish - The worker encode only logged a failed .vif write and skipped it in the distribution set, and treated the .ecsum write as best-effort. A worker whose disk filled after the much larger shards landed could still distribute, mount, verify shard inventory, and delete the source replicas — leaving holders with shards whose geometry nothing records. Both writes and both inclusions are encode success conditions now. - A generation-matching .ecsum that disagreed with the .vif geometry only disabled checksums in Go, and in Rust was not compared at all, so protection stayed On while reads used the other layout. Both files record the layout their generation was encoded with, so a disagreement now fails the mount. * ec: reject an invalid recorded block size in weed fix -ecx A .vif with valid shard counts but a negative or unaligned block size was marked usable: a positive invalid value pinned the scan to a geometry that de-stripes to garbage, and a negative one ran the dual scan but left the invalid .vif in place afterwards. Validate it with the same rule the mount applies, and when it fails leave the layout unknown so the scan recovers it and the file is rewritten. * ec: validate the sidecar layout weed fix -ecx recovers from The .ecsum fallback was taken on DataShards > 0 alone, so a CRC-valid sidecar carrying the wrong generation, an incomplete ratio, or an unaligned block size would pin the reconstruction to one incorrect uniform-layout candidate instead of letting the dual scan decide. Require generation 0, a complete in-range ratio, and a valid block size; anything less leaves the layout unknown, which is the answer that still recovers by scanning. * ec: let only a genuinely absent sidecar choose the legacy layout With no .vif the bitrot sidecar is the only record of a volume's layout, and the mount fallback read a failed load, an unusable config, or a sidecar stamped for another generation as "assume legacy". A uniform generation-0 volume could therefore mount with legacy or another generation's geometry and answer reads with the wrong bytes. Present-but-unusable now fails the mount; only actual absence keeps the legacy defaults. Shared as EcShardConfigFromSidecar so every caller reads the sidecar the same way. * ec: treat a recorded-but-impossible layout as corruption, not as legacy - A .vif whose ecShardConfig is PRESENT but records an impossible ratio was answered with the default 10+4 and the legacy block layout, in both languages. That reads a uniform volume's shards at the wrong offsets and returns the wrong bytes. Only an entirely absent config still means "this predates the record"; a present one that cannot be true fails the mount. - The shard-count bound summed two uint32 counts as int, which wraps on a 32-bit build: 0x7fffffff + 0x7fffffff lands at -2 and slips under MaxShardCount. ValidEcShardCounts sums in uint64, and every EC call site that checked a recorded ratio now goes through it. * ec: rebuild on the geometry the sidecar records, and flag it when it disagrees The rebuild RPC passes BackgroundECContext, so RebuildEcFiles resolves the layout itself — and it resolved a missing or invalid .vif to the default 10+4 with the legacy block size. Two consequences: a 12+4 volume was reconstructed through a 10+4 matrix, which produces wrong bytes and never regenerates shards 14-15; and the chosen geometry then contradicted a valid uniform sidecar, which loadRebuildSidecar reported as BitrotOff — silently skipping the input and regenerated-shard checksum checks precisely when the volume had already lost its metadata. The layout now resolves from the bitrot sidecar (found across the server's disks, not just beside the base name) before falling back to the defaults, and a present-but-impossible ratio fails instead of being replaced. A sidecar that contradicts the chosen geometry is BitrotInvalid, which the existing unsafeIgnoreSidecar override still lets an operator push past. * ec: let the Rust rebuild read metadata off a sibling disk read_ec_shard_config searches only the location the rebuild writes into, so a volume whose .vif or generation-0 .ecsum sits on another of the server's disks resolved to the default 10+4 with the legacy block layout — the Rust half of the geometry-guessing the Go rebuild just stopped doing. It then reconstructs a custom-ratio or uniform volume through the wrong Reed-Solomon matrix and de-striping geometry. The rebuild now looks for the .vif in its own location and then each sibling, falls back to the generation-0 sidecar wherever that lives, and only defaults when neither exists anywhere. The encode-time .dat size the ecx rebuild needs is resolved the same way. * ec: resolve a rebuild's vif from every directory that may hold it RebuildEcFiles probed only <data-base>.vif. The caller knows the selected location's index directory and the sibling locations, but passed neither for metadata: additionalDirs carried shard directories only, and were searched for shards and the checksum sidecar. A split -dir/-dir.idx layout, or a disk holding only shards, therefore resolved a pre-sidecar custom-ratio volume to 10+4 and reconstructed through the wrong matrix — never regenerating shards 14-15. The caller now hands over the index and sibling directories, and the resolver probes the vif across all of them, matching what the Rust resolver already does for both the vif and the sidecar. * ec: make every rebuild consumer agree on the layout it resolved - The post-rebuild bitrot backfill re-derived the geometry from this directory's .vif alone and dropped the block size entirely, so a rebuild that resolved its layout from a sibling, the sidecar, or a uniform vif wrote a manifest describing a DIFFERENT layout — one later mounts reject, or that covers only the default shard count. The layout is resolved once now, through an exported ResolveRebuildECContext, and the rebuild and the backfill share that answer. - The Rust rebuild collected only each location's data directory, so a sibling's INDEX directory — where a split -dir/-dir.idx layout keeps .ecx/.ecj/.vif — was never probed, and a custom-ratio volume still resolved to 10+4 with the legacy layout. Both directories of every location are carried now, deduped against the rebuild's own. - A shard delivery can bring the checksum manifest with it, but the receive path only writes the file: a server that already had the volume mounted kept its resolved protection state (off) until a remount. The mount RPC re-resolves it once the shards it describes have been added. * ec: cover the rebuild's directory search with tests Reviewers flagged the sibling index directory twice, and the fix that closed it had no test of its own: the assembly sat inline in the rebuild handler, reachable only through a gRPC call against a populated store. Lifting it into rebuildSearchDirs / select_rebuild_location makes the rule assertable — a sibling contributes BOTH its data and its index directory, a shared index directory is listed once, and the rebuild's own data directory never repeats. Writing the Rust cases surfaced that the two implementations do not agree on where the rebuild's own index directory belongs, and both are right: Go's resolver takes a single directory list, so that directory has to be inside it, while Rust's takes the rebuild's data and index directories as their own arguments and would search them twice. The tests now state which contract each side is holding to, so neither drifts into the other's shape. Pure refactor otherwise; no behaviour change. * ec: search the index directory for the layout sidecar The Rust resolver looked for the generation-0 .ecsum in the rebuild's data directory and the sibling list, but not in the rebuild's own index directory — while the .vif lookup directly above it did, and Go's findBitrotSidecar has always checked both bases. On a split -dir/-dir.idx location that directory is where the metadata lives, and callers leave it out of the sibling list precisely because it is passed here separately, so nothing searched it. With no .vif anywhere the sidecar is the only surviving record of the layout. Missing it resolved a 12+4 uniform volume to 10+4 with the legacy striping — the test added here fails with (10, 4, 0) against the old code — and the rebuild then reconstructs through the wrong matrix and writes .ecx offsets that no reader can follow. * ec: let the rebuild see its own index directory The Rust rebuild takes a single flat directory list — the shape Go's RebuildEcFiles uses — so it cannot be handed the rebuild location's index directory separately the way the layout resolvers are, and the handler was passing the sibling list, which deliberately omits exactly that directory. On a split -dir/-dir.idx location that is where .ecx and .vif live, so the shard and index lookups could not see them. Go has always carried that directory in additionalDirs; this lines the two call sites up. * ec: let a config-free vif fall through to the layout sidecar A .vif that carries no ecShardConfig answers nothing about the layout, so it is no more informative than an absent one — but both trees treated its mere existence as the end of the search. Go went straight to the 10+4 legacy defaults without consulting the sidecar at all; Rust returned whatever ec_shard_config_from could make of a single directory. A 12+4 uniform volume with a legacy config-free vif therefore resolved as 10+4 legacy, and every read landed at the wrong shard offset. The sidecar lookup was also single-directory on both sides, while a split -dir/-dir.idx layout keeps .vif and .ecsum with the INDEX. Go's findBitrotSidecar has always taken both bases; the callers here passed only the data base, and the Rust bitrot resolver derived its path from the data base alone. Rust's layout resolver now takes a candidate directory list — data, index, then any siblings — and searches all of it, which also removes the early return that made the vif's presence decisive. load_vif_info_across_dirs reported `dir` even when load_vif_info had found the vif in `dir_idx`. Nothing reads that field today, so this changes no behaviour; it stops the next caller that resolves the rest of the volume's metadata against the answer from being sent to a disk holding none of it. Absence stays legal throughout: a volume with neither record is genuinely legacy. Present-but-unusable still fails the mount, now in the config-free-vif branch too. * ec: activate a delivered sidecar on every per-disk runtime A vid mounts as one EcVolume per disk, each with its own resolved protection state, but the post-delivery reload used the first-match lookup and so touched exactly one of them. The siblings kept reporting no protection until a remount — and since shard distribution deduplicates the metadata files onto the first target disk for a node, the runtime that got the .ecsum is not necessarily the one the lookup returns. Iterate every runtime instead, via a new FindAllEcVolumes and its Rust mut equivalent. Combined with each runtime now resolving its sidecar against its index directory as well as its data directory, a server sharing one -dir.idx across its disks activates all of them from the single delivered copy. The Rust volume server had no post-mount reload at all; it gets one here, matching Go. * ec: resolve the delivered sidecar across every EC metadata directory Reloading every per-disk runtime, added last round, did not by itself make the delivered manifest reachable. Startup mirroring copies .ecx/.ecj/.vif to every shard-bearing disk so each mounts self-contained, but deliberately not .ecsum, and a repair delivers exactly one copy. Each runtime was resolving against its own two directories, so every sibling of the disk that received the file kept reporting no protection however often it reloaded. Resolve one authoritative copy across every EC metadata directory instead of duplicating the file. Mirroring .ecsum would have to keep pace with a file that is rewritten as shards are repaired, and would not help the reported case at all: the delivery happens at runtime, and mirroring only runs at startup. The regression test pins both halves — a reload restricted to the volume's own directories still finds nothing, and the same reload given the server's metadata directories turns protection on. * ec: ask every directory before writing a TOFU baseline After a rebuild the opportunistic backfill asks whether this volume already has a checksum manifest, and answered from the data base alone. A split -dir/-dir.idx layout keeps the sidecar with the index, and a multi-disk server may keep it on a sibling, so an existing manifest read as absent. The consequence is worse than a missed read. On a false "no" the backfill writes a fresh sidecar at the data base from whatever the shards say right now — and the data base is the first candidate every resolver checks, so that TOFU baseline shadows the real manifest rather than sitting beside it. A shard that was silently corrupt gets blessed, and the record that would have caught it stops being consulted. FindBitrotSidecar exports the search the package already used internally, so the question is asked of the data base, the index base and the sibling disks — the same candidates the rebuild resolves its layout from. * ec: refuse a shard block size no encoder could have produced weed fix -ecx derived one from the raw shard extent, so a truncated or partially copied shard wrote a .vif that NewEcVolume then permanently refuses — the volume the tool was run to rescue could never mount again. An extent that is not a whole number of small blocks cannot have come from a uniform encode, so it is no longer offered as a candidate, and nothing unvalidated reaches the .vif. Claude-Session: https://claude.ai/code/session_011FRRoNKBiGbH58rs2AQyA7 * ec: derive the .vif's dat size and block size from one measurement VolumeEcShardsGenerate stat'ed the .dat before the encode while WriteEcFiles stat'ed it again to size the blocks. A write landing between the two produced a .vif whose own two fields describe different files. WriteEcFiles now leaves both on the context, and fills a placeholder context in place so the caller can read them back. Claude-Session: https://claude.ai/code/session_011FRRoNKBiGbH58rs2AQyA7 * ec: keep the source volume until every holder serves its shard layout The uniform layout rides in a .vif field older volume servers never knew: they discard it, mount the shards as legacy and return wrong bytes with nothing erroring, and the shard files are the same length either way so no other check notices. The upgrade order lived only in the release note. VolumeEcShardsInfo now reports the block size the holder actually serves, in both the Go and Rust servers, and the pre-delete verification refuses to drop the source unless every reachable holder echoes the one the shards were encoded with — while a rollback still exists. A server that predates the field answers 0, which is the negative answer. Claude-Session: https://claude.ai/code/session_011FRRoNKBiGbH58rs2AQyA7 * ec: drop the rebuild's dead block-size parameters generateMissingEcFiles never reads largeBlockSize/smallBlockSize — Reed-Solomon reconstruction is layout-agnostic — so passing the legacy constants only advertised a layout the rebuild does not use. Also move UniformBlockSize's doc off ValidateBlockSize. Claude-Session: https://claude.ai/code/session_011FRRoNKBiGbH58rs2AQyA7 * ec: warn about EC defaults only when the mount used them The "vif file not found, using defaults" warning fired even after the bitrot sidecar supplied a non-default layout, sending anyone triaging wrong bytes after the legacy layout the volume never mounted on. Claude-Session: https://claude.ai/code/session_011FRRoNKBiGbH58rs2AQyA7 * ec: stat the distributed bitrot sidecar once The strict check re-stat'ed the file immediately before the stat that already gates inclusion, and a failed sidecar write now fails the encode outright, so the first could only fire on a deletion between the two lines. Claude-Session: https://claude.ai/code/session_011FRRoNKBiGbH58rs2AQyA7 * ec: say what the reconstruct budget actually bounds A shard's buffer stays in bufs until its interval reconstructs, which is after the read that filled it released its permit, so the semaphore bounds round trips in flight and not retained bytes. Peak memory is the intervals reconstructing at once times the shards each reaches times the interval size. Claude-Session: https://claude.ai/code/session_011FRRoNKBiGbH58rs2AQyA7 * test: let the fake volume server report its delivered EC layout The pre-delete verification now asks each holder which shard block layout it serves, and a fake that always answered "unset" looked exactly like a volume server too old to know the field. Distribution ships the .vif to every holder alongside its shards, so read the layout back out of it as a real holder does. Claude-Session: https://claude.ai/code/session_011FRRoNKBiGbH58rs2AQyA7
663 lines
25 KiB
Go
663 lines
25 KiB
Go
package command
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"io/fs"
|
|
"os"
|
|
"path"
|
|
"sort"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
|
|
"github.com/seaweedfs/seaweedfs/weed/storage"
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/backend"
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/erasure_coding"
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/needle"
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/needle_map"
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/super_block"
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/types"
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/volume_info"
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
|
)
|
|
|
|
func init() {
|
|
cmdFix.Run = runFix // break init cycle
|
|
}
|
|
|
|
var cmdFix = &Command{
|
|
UsageLine: "fix [-remoteFile=false] [-volumeId=234] [-collection=bigData] /tmp",
|
|
Short: "run weed tool fix on files or whole folders to recreate index file(s) if corrupted",
|
|
Long: `Fix runs the SeaweedFS fix command on local dat files ( or remote files) or whole folders to re-create the index .idx file. If fixing remote files, you need to synchronize master.toml to the same directory on the current node as on the master node.
|
|
You Need to stop the volume server when running this command.
|
|
Use -ecx to rebuild a lost EC index (.ecx) — and the .vif when missing — from the local .ec## shards.
|
|
`,
|
|
}
|
|
|
|
var (
|
|
fixVolumeCollection = cmdFix.Flag.String("collection", "", "an optional volume collection name, if specified only it will be processed")
|
|
fixVolumeId = cmdFix.Flag.Int64("volumeId", 0, "an optional volume id, if not 0 (default) only it will be processed")
|
|
fixIncludeDeleted = cmdFix.Flag.Bool("includeDeleted", true, "include deleted entries in the index file")
|
|
fixIgnoreError = cmdFix.Flag.Bool("ignoreError", false, "an optional, if true will be processed despite errors")
|
|
fixRemoteFile = cmdFix.Flag.Bool("remoteFile", false, "an optional, if true will not try to load the local .dat file, but only the remote file")
|
|
fixGenerateEcx = cmdFix.Flag.Bool("ecx", false, "regenerate a lost EC index (.ecx) — and the .vif when missing — from the local .ec## shards (missing shards are reconstructed from parity when enough survive). Run with the volume server stopped.")
|
|
fixEcDataShards = cmdFix.Flag.Int("ecDataShards", 0, "EC data shard count for -ecx (0 = read from .vif, otherwise default 10)")
|
|
fixEcParityShards = cmdFix.Flag.Int("ecParityShards", 0, "EC parity shard count for -ecx (0 = read from .vif, infer from shard count, otherwise default 4)")
|
|
fixEcUnsafeIgnoreSidecar = cmdFix.Flag.Bool("ecUnsafeIgnoreSidecar", false, "for -ecx: proceed even when the EC bitrot checksum sidecar (.ecsum) is malformed or stale, instead of failing closed; the reconstructed shards are not verified against it")
|
|
)
|
|
|
|
type VolumeFileScanner4Fix struct {
|
|
version needle.Version
|
|
nm *needle_map.MemDb
|
|
nmDeleted *needle_map.MemDb
|
|
includeDeleted bool
|
|
}
|
|
|
|
func (scanner *VolumeFileScanner4Fix) VisitSuperBlock(superBlock super_block.SuperBlock) error {
|
|
scanner.version = superBlock.Version
|
|
return nil
|
|
}
|
|
|
|
func (scanner *VolumeFileScanner4Fix) ReadNeedleBody() bool {
|
|
return false
|
|
}
|
|
|
|
func (scanner *VolumeFileScanner4Fix) VisitNeedle(n *needle.Needle, offset int64, needleHeader, needleBody []byte) error {
|
|
glog.V(2).Infof("key %v offset %d size %d disk_size %d compressed %v", n.Id, offset, n.Size, n.DiskSize(scanner.version), n.IsCompressed())
|
|
if n.Size.IsValid() {
|
|
if pe := scanner.nm.Set(n.Id, types.ToOffset(offset), n.Size); pe != nil {
|
|
return fmt.Errorf("saved %d with error %v", n.Size, pe)
|
|
}
|
|
} else {
|
|
if scanner.includeDeleted {
|
|
if pe := scanner.nmDeleted.Set(n.Id, types.ToOffset(offset), types.TombstoneFileSize); pe != nil {
|
|
return fmt.Errorf("saved deleted %d with error %v", n.Size, pe)
|
|
}
|
|
} else {
|
|
glog.V(2).Infof("skipping deleted file ...")
|
|
return scanner.nm.Delete(n.Id)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func runFix(cmd *Command, args []string) bool {
|
|
for _, arg := range args {
|
|
basePath, f := path.Split(util.ResolvePath(arg))
|
|
if util.FolderExists(arg) {
|
|
basePath = arg
|
|
f = ""
|
|
}
|
|
|
|
files := []fs.DirEntry{}
|
|
if f == "" {
|
|
fileInfo, err := os.ReadDir(basePath)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return false
|
|
}
|
|
files = fileInfo
|
|
} else {
|
|
fileInfo, err := os.Stat(arg)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return false
|
|
}
|
|
files = []fs.DirEntry{fs.FileInfoToDirEntry(fileInfo)}
|
|
}
|
|
|
|
ext := ".dat"
|
|
if *fixRemoteFile {
|
|
ext = ".idx"
|
|
util.LoadConfiguration("master", false)
|
|
backend.LoadConfiguration(util.GetViper())
|
|
}
|
|
|
|
for _, file := range files {
|
|
if !strings.HasSuffix(file.Name(), ext) {
|
|
continue
|
|
}
|
|
if *fixVolumeCollection != "" {
|
|
if !strings.HasPrefix(file.Name(), *fixVolumeCollection+"_") {
|
|
continue
|
|
}
|
|
}
|
|
baseFileName := file.Name()[:len(file.Name())-4]
|
|
collection, volumeIdStr := "", baseFileName
|
|
if sepIndex := strings.LastIndex(baseFileName, "_"); sepIndex > 0 {
|
|
collection = baseFileName[:sepIndex]
|
|
volumeIdStr = baseFileName[sepIndex+1:]
|
|
}
|
|
volumeId, parseErr := strconv.ParseInt(volumeIdStr, 10, 64)
|
|
if parseErr != nil {
|
|
fmt.Printf("Failed to parse volume id from %s: %v\n", baseFileName, parseErr)
|
|
return false
|
|
}
|
|
if *fixVolumeId != 0 && *fixVolumeId != volumeId {
|
|
continue
|
|
}
|
|
doFixOneVolume(basePath, baseFileName, collection, volumeId, *fixIncludeDeleted)
|
|
}
|
|
|
|
if *fixGenerateEcx {
|
|
if !fixEcxFromShardsInDir(basePath, files) {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// fixEcxFromShardsInDir finds EC volumes in files (identified by their .ec00
|
|
// data shard) and regenerates the .ecx (and .vif when missing) for each,
|
|
// honoring the -collection and -volumeId filters.
|
|
func fixEcxFromShardsInDir(basePath string, files []fs.DirEntry) bool {
|
|
const shard0Ext = ".ec00"
|
|
for _, file := range files {
|
|
if !strings.HasSuffix(file.Name(), shard0Ext) {
|
|
continue
|
|
}
|
|
if *fixVolumeCollection != "" {
|
|
if !strings.HasPrefix(file.Name(), *fixVolumeCollection+"_") {
|
|
continue
|
|
}
|
|
}
|
|
baseFileName := file.Name()[:len(file.Name())-len(shard0Ext)]
|
|
collection, volumeIdStr := "", baseFileName
|
|
if sepIndex := strings.LastIndex(baseFileName, "_"); sepIndex > 0 {
|
|
collection = baseFileName[:sepIndex]
|
|
volumeIdStr = baseFileName[sepIndex+1:]
|
|
}
|
|
volumeId, parseErr := strconv.ParseInt(volumeIdStr, 10, 64)
|
|
if parseErr != nil {
|
|
fmt.Printf("Failed to parse volume id from %s: %v\n", baseFileName, parseErr)
|
|
return false
|
|
}
|
|
if *fixVolumeId != 0 && *fixVolumeId != volumeId {
|
|
continue
|
|
}
|
|
doFixEcxFromShards(basePath, baseFileName, collection, volumeId)
|
|
}
|
|
return true
|
|
}
|
|
|
|
func SaveToIdx(scaner *VolumeFileScanner4Fix, idxName string) (ret error) {
|
|
idxFile, err := os.OpenFile(idxName, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644)
|
|
if err != nil {
|
|
return
|
|
}
|
|
defer func() {
|
|
idxFile.Close()
|
|
}()
|
|
|
|
// Emit entries in .dat offset (append) order so the .idx stays the
|
|
// append-ordered log the volume server writes at runtime — not sorted by
|
|
// key, which is the .sdx / .ecx shape. A key-sorted .idx puts the
|
|
// highest-key needle last instead of the .dat-tail needle, which used to
|
|
// flip volumes read-only on load. Every tombstone is included (including
|
|
// any whose live needle is gone) so the last entry is the real .dat tail.
|
|
var values []needle_map.NeedleValue
|
|
collect := func(value needle_map.NeedleValue) error {
|
|
values = append(values, value)
|
|
return nil
|
|
}
|
|
if err = scaner.nm.AscendingVisit(collect); err != nil {
|
|
return err
|
|
}
|
|
if scaner.includeDeleted {
|
|
if err = scaner.nmDeleted.AscendingVisit(collect); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
sort.Slice(values, func(i, j int) bool {
|
|
return values[i].Offset.ToActualOffset() < values[j].Offset.ToActualOffset()
|
|
})
|
|
for _, value := range values {
|
|
if _, err = idxFile.Write(value.ToBytes()); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func doFixOneVolume(basepath string, baseFileName string, collection string, volumeId int64, fixIncludeDeleted bool) {
|
|
indexFileName := path.Join(basepath, baseFileName+".idx")
|
|
|
|
nm := needle_map.NewMemDb()
|
|
nmDeleted := needle_map.NewMemDb()
|
|
defer nm.Close()
|
|
defer nmDeleted.Close()
|
|
|
|
// Validate volumeId range before converting to uint32
|
|
if volumeId < 0 || volumeId > 0xFFFFFFFF {
|
|
err := fmt.Errorf("volume ID out of range: %d", volumeId)
|
|
if *fixIgnoreError {
|
|
glog.Error(err)
|
|
return
|
|
} else {
|
|
glog.Fatal(err)
|
|
}
|
|
}
|
|
// lgtm[go/incorrect-integer-conversion]
|
|
// Safe conversion: volumeId has been validated to be in range [0, 0xFFFFFFFF] above
|
|
vid := needle.VolumeId(volumeId)
|
|
scanner := &VolumeFileScanner4Fix{
|
|
nm: nm,
|
|
nmDeleted: nmDeleted,
|
|
includeDeleted: fixIncludeDeleted,
|
|
}
|
|
|
|
if err := storage.ScanVolumeFile(basepath, collection, vid, storage.NeedleMapInMemory, scanner); err != nil {
|
|
err := fmt.Errorf("scan .dat File: %w", err)
|
|
if *fixIgnoreError {
|
|
glog.Error(err)
|
|
} else {
|
|
glog.Fatal(err)
|
|
}
|
|
}
|
|
|
|
if err := SaveToIdx(scanner, indexFileName); err != nil {
|
|
err := fmt.Errorf("save to .idx File: %w", err)
|
|
if *fixIgnoreError {
|
|
glog.Error(err)
|
|
} else {
|
|
if err := os.Remove(indexFileName); err != nil {
|
|
glog.Errorf("failed to cleanup file %s:%v", indexFileName, err)
|
|
}
|
|
glog.Fatal(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// doFixEcxFromShards rebuilds the sealed EC index (.ecx) for one EC volume
|
|
// directly from its local shards when both the .ecx and the original .dat are
|
|
// gone but the shards survive. When some data shards are missing but at least
|
|
// dataShards shards survive in total, the missing shards are first reconstructed
|
|
// from the survivors via Reed-Solomon. It then de-stripes the data shards into a
|
|
// temporary .dat, scans the needles, and writes a fresh ascending-sorted .ecx
|
|
// that matches what WriteSortedFileFromIdx emits at encode time (live entries
|
|
// only). When the .vif is also missing it is regenerated from the inferred EC
|
|
// ratio and the .dat size discovered during the scan.
|
|
func doFixEcxFromShards(basePath, baseFileName, collection string, volumeId int64) {
|
|
base := path.Join(basePath, baseFileName)
|
|
|
|
fail := func(err error) {
|
|
if *fixIgnoreError {
|
|
glog.Error(err)
|
|
} else {
|
|
glog.Fatal(err)
|
|
}
|
|
}
|
|
|
|
ecxName := base + ".ecx"
|
|
if info, err := os.Stat(ecxName); err == nil && info.Size() > 0 {
|
|
glog.Infof("volume %d: %s already exists (%d bytes), skipping; remove it first to force regeneration", volumeId, ecxName, info.Size())
|
|
return
|
|
}
|
|
|
|
// Discover which shards are present and their common size. Reed-Solomon
|
|
// requires every shard to be the same size.
|
|
present := make([]bool, erasure_coding.MaxShardCount)
|
|
presentCount := 0
|
|
maxPresentIdx := -1
|
|
var shardSize int64
|
|
for i := 0; i < erasure_coding.MaxShardCount; i++ {
|
|
info, statErr := os.Stat(base + erasure_coding.ToExt(i))
|
|
if statErr != nil || info.Size() == 0 {
|
|
continue
|
|
}
|
|
if shardSize == 0 {
|
|
shardSize = info.Size()
|
|
} else if info.Size() != shardSize {
|
|
fail(fmt.Errorf("volume %d: shard %s size %d does not match %d", volumeId, base+erasure_coding.ToExt(i), info.Size(), shardSize))
|
|
return
|
|
}
|
|
present[i] = true
|
|
presentCount++
|
|
maxPresentIdx = i
|
|
}
|
|
if presentCount == 0 {
|
|
fail(fmt.Errorf("volume %d: no EC shards found under %s", volumeId, base))
|
|
return
|
|
}
|
|
|
|
// Resolve the EC ratio and the original .dat size.
|
|
// Priority: explicit flags > existing .vif > defaults (10+4).
|
|
vifName := base + ".vif"
|
|
vifExists := util.FileExists(vifName)
|
|
// Whether the on-disk .vif actually answers the layout question. An empty
|
|
// stub (MaybeLoadVolumeInfo reads it as absent) or one with no EC config
|
|
// exists but tells us nothing, and the recovered layout must still be
|
|
// written back over it.
|
|
vifUsable := false
|
|
dataShards := erasure_coding.DataShardsCount
|
|
parityShards := erasure_coding.ParityShardsCount
|
|
var datFileSize int64
|
|
blockSize := int64(-1) // the shard block layout; 0 legacy, >0 uniform, <0 unknown
|
|
if vifExists {
|
|
// MaybeLoadVolumeInfo returns a non-nil error when the .vif exists but
|
|
// cannot be read or unmarshalled; fail loudly rather than silently
|
|
// falling back to defaults (which would be wrong for a custom ratio).
|
|
if vi, _, found, loadErr := volume_info.MaybeLoadVolumeInfo(vifName); loadErr != nil {
|
|
fail(fmt.Errorf("volume %d: read %s: %w", volumeId, vifName, loadErr))
|
|
return
|
|
} else if found && vi != nil {
|
|
// A partial config (parity 0, or counts past the shard ceiling)
|
|
// describes no layout: leave the sentinel unknown and let the
|
|
// sidecar / dual scan below answer, and rewrite the .vif at the end
|
|
// rather than trusting it.
|
|
cfg := vi.GetEcShardConfig()
|
|
if cfg != nil && erasure_coding.ValidEcShardCounts(cfg.GetDataShards(), cfg.GetParityShards()) {
|
|
dataShards = int(cfg.GetDataShards())
|
|
parityShards = int(cfg.GetParityShards())
|
|
// Only an EC config answers the layout question. Reading 0 off a
|
|
// vif with no config would assert "legacy" and suppress both the
|
|
// .ecsum fallback and the dual-layout scan below; leave the
|
|
// sentinel at -1 (unknown) instead.
|
|
// A recorded block size no encoder could have produced is not
|
|
// an answer: a positive one would pin the scan to a geometry
|
|
// that de-stripes to garbage, and a negative one would leave
|
|
// the invalid .vif in place after the dual scan recovers the
|
|
// real layout. Leave the sentinel unknown and rewrite the file
|
|
// at the end.
|
|
if bs := cfg.GetBlockSize(); erasure_coding.ValidateBlockSize(bs) == nil {
|
|
blockSize = bs
|
|
vifUsable = true
|
|
} else {
|
|
glog.Warningf("volume %d: %s records an invalid shard block size %d; recovering the layout by scan and rewriting it",
|
|
volumeId, vifName, bs)
|
|
}
|
|
}
|
|
datFileSize = vi.GetDatFileSize()
|
|
}
|
|
}
|
|
// The bitrot sidecar records the same EC config at encode time; use it when
|
|
// the .vif is gone. A uniform-layout volume cannot be de-striped correctly
|
|
// without its block size.
|
|
if blockSize < 0 {
|
|
sidecarPath := erasure_coding.BitrotSidecarPath(base, 0)
|
|
if prot, serr := erasure_coding.LoadBitrotSidecar(sidecarPath); serr == nil {
|
|
// The sidecar is about to pin the reconstruction to one geometry
|
|
// instead of letting the dual scan decide, so every field it
|
|
// contributes has to hold up: it must describe generation 0 (the
|
|
// shards being read), a complete in-range ratio, and a block size
|
|
// an encoder could have produced. Anything less leaves the layout
|
|
// unknown, which is the answer that still recovers by scanning.
|
|
cfg := prot.GetEcShardConfig()
|
|
ds, ps := int(cfg.GetDataShards()), int(cfg.GetParityShards())
|
|
switch {
|
|
case prot.GetGeneration() != 0:
|
|
glog.Warningf("volume %d: %s records generation %d, not the generation-0 shards; ignoring it",
|
|
volumeId, sidecarPath, prot.GetGeneration())
|
|
case !erasure_coding.ValidEcShardCounts(cfg.GetDataShards(), cfg.GetParityShards()):
|
|
glog.Warningf("volume %d: %s records invalid shard counts %d+%d; ignoring it",
|
|
volumeId, sidecarPath, ds, ps)
|
|
case erasure_coding.ValidateBlockSize(cfg.GetBlockSize()) != nil:
|
|
glog.Warningf("volume %d: %s records an invalid shard block size %d; ignoring it",
|
|
volumeId, sidecarPath, cfg.GetBlockSize())
|
|
default:
|
|
dataShards = ds
|
|
parityShards = ps
|
|
blockSize = cfg.GetBlockSize()
|
|
}
|
|
}
|
|
}
|
|
if *fixEcDataShards > 0 {
|
|
dataShards = *fixEcDataShards
|
|
}
|
|
if *fixEcParityShards > 0 {
|
|
parityShards = *fixEcParityShards
|
|
}
|
|
// Ensure the configured total covers every shard index actually present
|
|
// (a custom-ratio volume with more than the default 14 shards and no .vif).
|
|
// This never lowers parity below the default, so the common 10+4 case stays
|
|
// correct for any subset of missing shards.
|
|
if maxPresentIdx+1 > dataShards+parityShards {
|
|
parityShards = maxPresentIdx + 1 - dataShards
|
|
}
|
|
if dataShards <= 0 || parityShards <= 0 || dataShards+parityShards > erasure_coding.MaxShardCount {
|
|
fail(fmt.Errorf("volume %d: cannot determine EC ratio (data=%d parity=%d); set -ecDataShards/-ecParityShards", volumeId, dataShards, parityShards))
|
|
return
|
|
}
|
|
|
|
// Need at least dataShards shards (any data+parity mix) to recover anything.
|
|
if presentCount < dataShards {
|
|
fail(fmt.Errorf("volume %d: only %d shards present, need at least %d (data shards) to recover", volumeId, presentCount, dataShards))
|
|
return
|
|
}
|
|
|
|
// If any data shard is missing, reconstruct the missing shards from the
|
|
// survivors via Reed-Solomon before de-striping. This writes the rebuilt
|
|
// shard files back to disk, fully repairing the volume locally.
|
|
dataComplete := true
|
|
for i := 0; i < dataShards; i++ {
|
|
if !present[i] {
|
|
dataComplete = false
|
|
break
|
|
}
|
|
}
|
|
if !dataComplete {
|
|
ctx := &erasure_coding.ECContext{DataShards: dataShards, ParityShards: parityShards}
|
|
if blockSize > 0 {
|
|
ctx.BlockSize = blockSize
|
|
}
|
|
glog.Infof("volume %d: %d/%d shards present; reconstructing missing shards (%s) before index rebuild", volumeId, presentCount, dataShards+parityShards, ctx.String())
|
|
if _, err := erasure_coding.RebuildEcFiles(base, ctx, *fixEcUnsafeIgnoreSidecar); err != nil {
|
|
fail(fmt.Errorf("volume %d: reconstruct missing shards from %d survivors: %w", volumeId, presentCount, err))
|
|
return
|
|
}
|
|
}
|
|
|
|
// Collect the data shards (now all present).
|
|
shardFileNames := make([]string, dataShards)
|
|
for i := 0; i < dataShards; i++ {
|
|
shardPath := base + erasure_coding.ToExt(i)
|
|
if !util.FileExists(shardPath) {
|
|
fail(fmt.Errorf("volume %d: data shard %s still missing after reconstruction", volumeId, shardPath))
|
|
return
|
|
}
|
|
shardFileNames[i] = shardPath
|
|
}
|
|
|
|
// Without a recorded original size, reconstruct the fully padded layout; the
|
|
// scan below detects the trailing zero padding and recovers the true size.
|
|
reconstructSize := datFileSize
|
|
if reconstructSize <= 0 {
|
|
reconstructSize = int64(dataShards) * shardSize
|
|
glog.V(0).Infof("volume %d: no .dat size in .vif; reconstructing padded .dat (%d bytes) from %d data shards", volumeId, reconstructSize, dataShards)
|
|
}
|
|
|
|
// De-stripe the data shards into a temporary .dat next to the shards and
|
|
// scan it into a fresh .ecx. With the layout unknown, de-stripe under both
|
|
// candidate layouts and keep the one whose needle chain scans furthest.
|
|
type layoutCandidate struct {
|
|
name string
|
|
large, small int64
|
|
}
|
|
var candidates []layoutCandidate
|
|
switch {
|
|
case blockSize > 0:
|
|
candidates = []layoutCandidate{{"uniform", blockSize, blockSize}}
|
|
case blockSize == 0:
|
|
candidates = []layoutCandidate{{"legacy", erasure_coding.ErasureCodingLargeBlockSize, erasure_coding.ErasureCodingSmallBlockSize}}
|
|
default:
|
|
candidates = []layoutCandidate{
|
|
{"legacy", erasure_coding.ErasureCodingLargeBlockSize, erasure_coding.ErasureCodingSmallBlockSize},
|
|
}
|
|
// A uniform-layout shard is exactly one block long, and every block
|
|
// size an encoder can produce is a whole number of small blocks. An
|
|
// extent that is not — a truncated or partially copied shard — could
|
|
// not have come from a uniform encode, and recording it would write a
|
|
// .vif that ValidateBlockSize refuses on the next mount: the volume
|
|
// this tool was run to rescue would never open again.
|
|
if erasure_coding.ValidateBlockSize(shardSize) == nil && shardSize > 0 {
|
|
candidates = append(candidates, layoutCandidate{"uniform", shardSize, shardSize})
|
|
glog.Infof("volume %d: no .vif or .ecsum records the shard block layout; trying both", volumeId)
|
|
} else {
|
|
glog.Infof("volume %d: no .vif or .ecsum records the shard block layout, and the %d-byte shard extent is not a whole number of %d-byte blocks; trying the legacy layout only",
|
|
volumeId, shardSize, erasure_coding.ErasureCodingSmallBlockSize)
|
|
}
|
|
}
|
|
|
|
tmpBase := base + ".ecxrecover"
|
|
tmpDat := tmpBase + ".dat"
|
|
defer os.Remove(tmpDat)
|
|
bestIdx := -1
|
|
var realDatSize, bestNeedles int64
|
|
var version needle.Version
|
|
var candErr error
|
|
for i, cand := range candidates {
|
|
if err := erasure_coding.WriteDatFile(tmpBase, reconstructSize, reconstructSize, shardFileNames, cand.large, cand.small); err != nil {
|
|
candErr = fmt.Errorf("volume %d: reconstruct .dat (%s layout): %w", volumeId, cand.name, err)
|
|
continue
|
|
}
|
|
size, needles, ver, err := writeEcxFromDat(tmpDat, ecxName+"."+cand.name)
|
|
if err != nil {
|
|
os.Remove(ecxName + "." + cand.name)
|
|
candErr = fmt.Errorf("volume %d: build .ecx from reconstructed .dat (%s layout): %w", volumeId, cand.name, err)
|
|
continue
|
|
}
|
|
// The wrong layout de-stripes to garbage past the first block
|
|
// boundary, so the layout that indexes more valid needles wins.
|
|
// On a tie — garbage bytes do sometimes parse as plausible sizes — the
|
|
// layout whose needle chain reached further into the .dat wins, which is
|
|
// the distance the scan actually validated.
|
|
if bestIdx < 0 || needles > bestNeedles || (needles == bestNeedles && size > realDatSize) {
|
|
bestIdx = i
|
|
bestNeedles = needles
|
|
realDatSize = size
|
|
version = ver
|
|
}
|
|
}
|
|
if bestIdx < 0 {
|
|
fail(candErr)
|
|
return
|
|
}
|
|
for i := range candidates {
|
|
if i != bestIdx {
|
|
os.Remove(ecxName + "." + candidates[i].name)
|
|
}
|
|
}
|
|
if err := os.Rename(ecxName+"."+candidates[bestIdx].name, ecxName); err != nil {
|
|
fail(fmt.Errorf("volume %d: publish %s: %w", volumeId, ecxName, err))
|
|
return
|
|
}
|
|
if blockSize < 0 {
|
|
if candidates[bestIdx].name == "uniform" {
|
|
blockSize = shardSize
|
|
} else {
|
|
blockSize = 0
|
|
}
|
|
glog.Infof("volume %d: %s layout indexes %d needles over %d bytes; keeping it", volumeId, candidates[bestIdx].name, bestNeedles, realDatSize)
|
|
}
|
|
glog.Infof("volume %d: wrote %s from %d data shards", volumeId, ecxName, dataShards)
|
|
|
|
// Regenerate the .vif when it is missing OR unusable (an empty stub, or one
|
|
// with no EC config): the layout just recovered by the dual scan is the only
|
|
// record of it, and leaving the stub in place would mount the volume as
|
|
// legacy on the next start and serve the wrong offsets.
|
|
if !vifUsable {
|
|
size := datFileSize
|
|
if size <= 0 {
|
|
size = realDatSize
|
|
}
|
|
// Never publish a layout the mount path will refuse: NewEcVolume runs
|
|
// the same check and fails closed, so an unvalidated write here would
|
|
// trade a recoverable volume for one that can no longer be opened.
|
|
if bsErr := erasure_coding.ValidateBlockSize(blockSize); bsErr != nil {
|
|
fail(fmt.Errorf("volume %d: refusing to write %s: %w", volumeId, vifName, bsErr))
|
|
return
|
|
}
|
|
volumeInfo := &volume_server_pb.VolumeInfo{
|
|
Version: uint32(version),
|
|
DatFileSize: size,
|
|
EcShardConfig: &volume_server_pb.EcShardConfig{
|
|
DataShards: uint32(dataShards),
|
|
ParityShards: uint32(parityShards),
|
|
BlockSize: blockSize,
|
|
},
|
|
}
|
|
if err := volume_info.SaveVolumeInfo(vifName, volumeInfo); err != nil {
|
|
fail(fmt.Errorf("volume %d: write %s: %w", volumeId, vifName, err))
|
|
return
|
|
}
|
|
glog.Infof("volume %d: wrote %s (version %d, datFileSize %d, ec %d+%d)", volumeId, vifName, version, size, dataShards, parityShards)
|
|
}
|
|
}
|
|
|
|
// writeEcxFromDat scans a (reconstructed) .dat and writes an ascending-sorted
|
|
// .ecx containing only live needles — the same on-disk shape
|
|
// WriteSortedFileFromIdx produces when an EC volume is first encoded. It returns
|
|
// the physical .dat size (the offset where the EC zero padding begins), the
|
|
// number of live needles indexed, and the volume version read from the
|
|
// superblock.
|
|
func writeEcxFromDat(datPath, ecxPath string) (datFileSize int64, liveNeedles int64, version needle.Version, err error) {
|
|
f, err := os.OpenFile(datPath, os.O_RDONLY, 0644)
|
|
if err != nil {
|
|
return 0, 0, 0, fmt.Errorf("open %s: %w", datPath, err)
|
|
}
|
|
datBackend := backend.NewDiskFile(f)
|
|
defer datBackend.Close()
|
|
|
|
superBlock, err := super_block.ReadSuperBlock(datBackend)
|
|
if err != nil {
|
|
return 0, 0, 0, fmt.Errorf("read superblock: %w", err)
|
|
}
|
|
version = superBlock.Version
|
|
|
|
fileSize, _, err := datBackend.GetStat()
|
|
if err != nil {
|
|
return 0, 0, version, fmt.Errorf("stat %s: %w", datPath, err)
|
|
}
|
|
|
|
nm := needle_map.NewMemDb()
|
|
defer nm.Close()
|
|
|
|
offset := int64(superBlock.BlockSize())
|
|
for offset < fileSize {
|
|
n, _, rest, readErr := needle.ReadNeedleHeader(datBackend, version, offset)
|
|
if readErr != nil {
|
|
if readErr == io.EOF {
|
|
break
|
|
}
|
|
return 0, 0, version, fmt.Errorf("read needle header at offset %d: %w", offset, readErr)
|
|
}
|
|
// EC encoding zero-pads the tail of the last block row. An all-zero
|
|
// header marks the start of that padding, i.e. the end of real needles.
|
|
if n.Cookie == 0 && n.Id == 0 && n.Size == 0 {
|
|
break
|
|
}
|
|
if n.Size.IsValid() {
|
|
if pe := nm.Set(n.Id, types.ToOffset(offset), n.Size); pe != nil {
|
|
return 0, 0, version, fmt.Errorf("set needle %d: %w", n.Id, pe)
|
|
}
|
|
} else {
|
|
// Deleted/invalid: drop it so the .ecx carries only live entries,
|
|
// matching the encode-time WriteSortedFileFromIdx behavior.
|
|
if pe := nm.Delete(n.Id); pe != nil {
|
|
return 0, 0, version, fmt.Errorf("delete needle %d: %w", n.Id, pe)
|
|
}
|
|
}
|
|
offset += types.NeedleHeaderSize + rest
|
|
}
|
|
datFileSize = offset
|
|
|
|
ecxFile, err := os.OpenFile(ecxPath, os.O_TRUNC|os.O_CREATE|os.O_WRONLY, 0644)
|
|
if err != nil {
|
|
return 0, 0, version, fmt.Errorf("open %s: %w", ecxPath, err)
|
|
}
|
|
defer ecxFile.Close()
|
|
|
|
if err := nm.AscendingVisit(func(value needle_map.NeedleValue) error {
|
|
liveNeedles++
|
|
_, writeErr := ecxFile.Write(value.ToBytes())
|
|
return writeErr
|
|
}); err != nil {
|
|
return 0, 0, version, fmt.Errorf("write %s: %w", ecxPath, err)
|
|
}
|
|
|
|
return datFileSize, liveNeedles, version, nil
|
|
}
|