mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-01-19 23:24:33 +08:00
Do CRC check if the buffer contains the full needle data before it is sent (#5980)
This commit is contained in:
parent
f9e141a412
commit
bc01f09e37
@ -164,6 +164,13 @@ func (v *Volume) readNeedleDataInto(n *needle.Needle, readOption *ReadOption, wr
|
|||||||
toWrite := min(count, int(offset+size-x))
|
toWrite := min(count, int(offset+size-x))
|
||||||
if toWrite > 0 {
|
if toWrite > 0 {
|
||||||
crc = crc.Update(buf[0:toWrite])
|
crc = crc.Update(buf[0:toWrite])
|
||||||
|
if offset == 0 && size == int64(n.DataSize) && int64(count) == size && (n.Checksum != crc) {
|
||||||
|
// This check works only if the buffer is big enough to hold the whole needle data
|
||||||
|
// and we ask for all needle data.
|
||||||
|
// Otherwise we cannot check the validity of partially aquired data.
|
||||||
|
stats.VolumeServerHandlerCounter.WithLabelValues(stats.ErrorCRC).Inc()
|
||||||
|
return fmt.Errorf("ReadNeedleData checksum %v expected %v for Needle: %v,%v", crc, n.Checksum, v.Id, n)
|
||||||
|
}
|
||||||
if _, err = writer.Write(buf[0:toWrite]); err != nil {
|
if _, err = writer.Write(buf[0:toWrite]); err != nil {
|
||||||
return fmt.Errorf("ReadNeedleData write: %v", err)
|
return fmt.Errorf("ReadNeedleData write: %v", err)
|
||||||
}
|
}
|
||||||
@ -182,7 +189,7 @@ func (v *Volume) readNeedleDataInto(n *needle.Needle, readOption *ReadOption, wr
|
|||||||
if offset == 0 && size == int64(n.DataSize) && (n.Checksum != crc && uint32(n.Checksum) != crc.Value()) {
|
if offset == 0 && size == int64(n.DataSize) && (n.Checksum != crc && uint32(n.Checksum) != crc.Value()) {
|
||||||
// the crc.Value() function is to be deprecated. this double checking is for backward compatible.
|
// the crc.Value() function is to be deprecated. this double checking is for backward compatible.
|
||||||
stats.VolumeServerHandlerCounter.WithLabelValues(stats.ErrorCRC).Inc()
|
stats.VolumeServerHandlerCounter.WithLabelValues(stats.ErrorCRC).Inc()
|
||||||
return fmt.Errorf("ReadNeedleData checksum %v expected %v", crc, n.Checksum)
|
return fmt.Errorf("ReadNeedleData checksum %v expected %v for Needle: %v,%v", crc, n.Checksum, v.Id, n)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user