mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge pull request #338 from hxiaodon/master
add index,dat file's integrity checking
This commit is contained in:
commit
2fa2235fe3
|
@ -17,6 +17,10 @@ const (
|
||||||
NeedleMapBoltDb
|
NeedleMapBoltDb
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
NeedleIndexSize = 16
|
||||||
|
)
|
||||||
|
|
||||||
type NeedleMapper interface {
|
type NeedleMapper interface {
|
||||||
Put(key uint64, offset uint32, size uint32) error
|
Put(key uint64, offset uint32, size uint32) error
|
||||||
Get(key uint64) (element *NeedleValue, ok bool)
|
Get(key uint64) (element *NeedleValue, ok bool)
|
||||||
|
|
|
@ -11,6 +11,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/chrislusf/seaweedfs/weed/glog"
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
||||||
|
"github.com/chrislusf/seaweedfs/weed/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Volume struct {
|
type Volume struct {
|
||||||
|
@ -46,6 +47,58 @@ func loadVolumeWithoutIndex(dirname string, collection string, id VolumeId, need
|
||||||
e = v.load(false, false, needleMapKind)
|
e = v.load(false, false, needleMapKind)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
func verifyIndexFileIntegrity(indexFile *os.File) (indexSize int64, err error) {
|
||||||
|
if indexSize, err = util.GetFileSize(indexFile); err == nil {
|
||||||
|
if indexSize%NeedleIndexSize != 0 {
|
||||||
|
err = fmt.Errorf("index file's size is %d bytes, maybe corrupted", indexSize)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
func readIndexEntryAtOffset(indexFile *os.File, offset int64, v Version) (bytes []byte, err error) {
|
||||||
|
if offset < 0 {
|
||||||
|
err = fmt.Errorf("offset %d for index file is invalid", offset)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
bytes = make([]byte, NeedleIndexSize)
|
||||||
|
_, err = indexFile.ReadAt(bytes, offset)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
func verifyNeedleIntegrity(datFile *os.File, v Version, offset int64, key uint64, size uint32) error {
|
||||||
|
n := new(Needle)
|
||||||
|
err := n.ReadData(datFile, offset, size, v)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if n.Id != key {
|
||||||
|
return fmt.Errorf("index key %#x does not match needle's Id %#x", key, n.Id)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
func volumeDataIntegrityChecking(v *Volume, indexFile *os.File) error {
|
||||||
|
var indexSize int64
|
||||||
|
var e error
|
||||||
|
if indexSize, e = verifyIndexFileIntegrity(indexFile); e != nil {
|
||||||
|
return fmt.Errorf("verifyIndexFileIntegrity failed: %v", e)
|
||||||
|
}
|
||||||
|
if indexSize != 0 {
|
||||||
|
var lastIdxEntry []byte
|
||||||
|
if lastIdxEntry, e = readIndexEntryAtOffset(indexFile, indexSize-NeedleIndexSize, v.Version()); e != nil {
|
||||||
|
return fmt.Errorf("readLastIndexEntry failed: %v", e)
|
||||||
|
}
|
||||||
|
key, offset, size := idxFileEntry(lastIdxEntry)
|
||||||
|
if e = verifyNeedleIntegrity(v.dataFile, v.Version(), int64(offset)*NeedlePaddingSize, key, size); e != nil {
|
||||||
|
return fmt.Errorf("verifyNeedleIntegrity failed: %v", e)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if datSize, err := util.GetFileSize(v.dataFile); err == nil {
|
||||||
|
if datSize > 0 {
|
||||||
|
return fmt.Errorf("dat file size is %d, not empty while the index file is empty!", datSize)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
func (v *Volume) FileName() (fileName string) {
|
func (v *Volume) FileName() (fileName string) {
|
||||||
if v.Collection == "" {
|
if v.Collection == "" {
|
||||||
fileName = path.Join(v.dir, v.Id.String())
|
fileName = path.Join(v.dir, v.Id.String())
|
||||||
|
@ -105,6 +158,10 @@ func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool, needleMapKind
|
||||||
return fmt.Errorf("cannot write Volume Index %s.idx: %v", fileName, e)
|
return fmt.Errorf("cannot write Volume Index %s.idx: %v", fileName, e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if e = volumeDataIntegrityChecking(v, indexFile); e != nil {
|
||||||
|
v.readOnly = true
|
||||||
|
glog.V(0).Infof("volumeDataIntegrityChecking failed %v", e)
|
||||||
|
}
|
||||||
switch needleMapKind {
|
switch needleMapKind {
|
||||||
case NeedleMapInMemory:
|
case NeedleMapInMemory:
|
||||||
glog.V(0).Infoln("loading index file", fileName+".idx", "readonly", v.readOnly)
|
glog.V(0).Infoln("loading index file", fileName+".idx", "readonly", v.readOnly)
|
||||||
|
|
|
@ -36,3 +36,11 @@ func Readln(r *bufio.Reader) ([]byte, error) {
|
||||||
}
|
}
|
||||||
return ln, err
|
return ln, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GetFileSize(file *os.File) (size int64, err error) {
|
||||||
|
var fi os.FileInfo
|
||||||
|
if fi, err = file.Stat(); err == nil {
|
||||||
|
size = fi.Size()
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue