Merge pull request #66 from jpbetz/freelist-check

Panic if page provided to freelist.read is incorrect page type.
pull/67/head v1.3.1-coreos.4
Gyu-Ho Lee 2017-11-16 05:30:16 -08:00 committed by GitHub
commit f4ebd07c33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -233,6 +233,9 @@ func (f *freelist) freed(pgid pgid) bool {
// read initializes the freelist from a freelist page.
func (f *freelist) read(p *page) {
if (p.flags & freelistPageFlag) == 0 {
panic(fmt.Sprintf("invalid freelist page: %d, page type is %s", p.id, p.typ()))
}
// If the page.count is at the max uint16 value (64k) then it's considered
// an overflow and the size of the freelist is stored as the first element.
idx, count := 0, int(p.count)