diff options
author | Brian Behlendorf <[email protected]> | 2014-09-10 11:59:03 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2014-10-23 09:20:52 -0700 |
commit | 5f6d0b6f5aa9af2ee5be74ac415a574b732c2c0f (patch) | |
tree | df5f04a48563bf0d5f26cce993be2439175b83bb /include/sys | |
parent | bc151f7b312dea09c6ec5b9a320e65140789643a (diff) |
Handle block pointers with a corrupt logical size
The general strategy used by ZFS to verify that blocks are valid is
to checksum everything. This has the advantage of being extremely
robust and generically applicable regardless of the contents of
the block. If a blocks checksum is valid then its contents are
trusted by the higher layers.
This system works exceptionally well as long as bad data is never
written with a valid checksum. If this does somehow occur due to
a software bug or a memory bit-flip on a non-ECC system it may
result in kernel panic.
One such place where this could occur is if somehow the logical
size stored in a block pointer exceeds the maximum block size.
This will result in an attempt to allocate a buffer greater than
the maximum block size causing a system panic.
To prevent this from happening the arc_read() function has been
updated to detect this specific case. If a block pointer with an
invalid logical size is passed it will treat the block as if it
contained a checksum error.
Signed-off-by: Tim Chase <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #2678
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/arc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sys/arc.h b/include/sys/arc.h index 6328392be..215c75b6d 100644 --- a/include/sys/arc.h +++ b/include/sys/arc.h @@ -125,15 +125,15 @@ typedef struct arc_buf_info { void arc_space_consume(uint64_t space, arc_space_type_t type); void arc_space_return(uint64_t space, arc_space_type_t type); -arc_buf_t *arc_buf_alloc(spa_t *spa, int size, void *tag, +arc_buf_t *arc_buf_alloc(spa_t *spa, uint64_t size, void *tag, arc_buf_contents_t type); -arc_buf_t *arc_loan_buf(spa_t *spa, int size); +arc_buf_t *arc_loan_buf(spa_t *spa, uint64_t size); void arc_return_buf(arc_buf_t *buf, void *tag); void arc_loan_inuse_buf(arc_buf_t *buf, void *tag); void arc_buf_add_ref(arc_buf_t *buf, void *tag); boolean_t arc_buf_remove_ref(arc_buf_t *buf, void *tag); void arc_buf_info(arc_buf_t *buf, arc_buf_info_t *abi, int state_index); -int arc_buf_size(arc_buf_t *buf); +uint64_t arc_buf_size(arc_buf_t *buf); void arc_release(arc_buf_t *buf, void *tag); int arc_released(arc_buf_t *buf); void arc_buf_sigsegv(int sig, siginfo_t *si, void *unused); |