erigon-pulse/migrations/prohibit_new_downloads_lock.go
Alex Sharov 1ae3f41189
db migration: if stage_snapshots > 0, then create prohibit_new_downloads.lock file (#9036)
it will protect existing nodes from downloading `v2` files - even if
they do upgrade
2023-12-20 18:04:43 +07:00

50 lines
1.3 KiB
Go

package migrations
import (
"context"
"os"
"path/filepath"
"github.com/ledgerwatch/erigon-lib/common/datadir"
"github.com/ledgerwatch/erigon-lib/common/dir"
"github.com/ledgerwatch/erigon-lib/downloader"
"github.com/ledgerwatch/erigon-lib/kv"
"github.com/ledgerwatch/erigon/eth/stagedsync/stages"
"github.com/ledgerwatch/log/v3"
)
var ProhibitNewDownloadsLock = Migration{
Name: "prohibit_new_downloads_lock",
Up: func(db kv.RwDB, dirs datadir.Dirs, progress []byte, BeforeCommit Callback, logger log.Logger) (err error) {
tx, err := db.BeginRw(context.Background())
if err != nil {
return err
}
defer tx.Rollback()
snapshotsStageProgress, err := stages.GetStageProgress(tx, stages.Snapshots)
if err != nil {
return err
}
if snapshotsStageProgress > 0 {
fPath := filepath.Join(dirs.Snap, downloader.ProhibitNewDownloadsFileName)
if !dir.FileExist(fPath) {
f, err := os.Create(fPath)
if err != nil {
return err
}
defer f.Close()
if err := f.Sync(); err != nil {
return err
}
}
}
// This migration is no-op, but it forces the migration mechanism to apply it and thus write the DB schema version info
if err := BeforeCommit(tx, nil, true); err != nil {
return err
}
return tx.Commit()
},
}