diff options
author | Liu ShuoX <shuox.liu@intel.com> | 2014-03-17 11:24:49 +1100 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-02-08 20:02:06 +0100 |
commit | 013d52e2500f66563ff14c74f43b68ab16cef9f1 (patch) | |
tree | f652282d3664da9dc83f7b45dc2da3bfa83d264e /fs/pstore | |
parent | 42ecc20bee44d55eb266116e9101bca9f7d6637a (diff) | |
download | lwn-013d52e2500f66563ff14c74f43b68ab16cef9f1.tar.gz lwn-013d52e2500f66563ff14c74f43b68ab16cef9f1.zip |
pstore: skip zero size persistent ram buffer in traverse
commit aa9a4a1edfbd3d223af01db833da2f07850bc655 upstream.
In ramoops_pstore_read, a valid prz pointer with zero size buffer will
break traverse of all persistent ram buffers. The latter buffer might be
lost.
Signed-off-by: Liu ShuoX <shuox.liu@intel.com>
Cc: "Zhang, Yanmin" <yanmin_zhang@linux.intel.com>
Cc: Colin Cross <ccross@android.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Cc: HuKeping <hukeping@huawei.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'fs/pstore')
-rw-r--r-- | fs/pstore/ram.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c index 36ffe55b579d..808435a9e2e1 100644 --- a/fs/pstore/ram.c +++ b/fs/pstore/ram.c @@ -126,12 +126,12 @@ ramoops_get_next_prz(struct persistent_ram_zone *przs[], uint *c, uint max, prz = przs[i]; - if (update) { - /* Update old/shadowed buffer. */ + /* Update old/shadowed buffer. */ + if (update) persistent_ram_save_old(prz); - if (!persistent_ram_old_size(prz)) - return NULL; - } + + if (!persistent_ram_old_size(prz)) + return NULL; *typep = type; *id = i; |