if written_length is read from a partial written bucket it may be to
big and xmalloc will panic barebox.

Check if the value is sane.

Signed-off-by: Jan Remmet <[email protected]>
---
 common/state/backend_bucket_direct.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/common/state/backend_bucket_direct.c 
b/common/state/backend_bucket_direct.c
index 95ddb9310685..fc633eea8dec 100644
--- a/common/state/backend_bucket_direct.c
+++ b/common/state/backend_bucket_direct.c
@@ -67,6 +67,10 @@ static int state_backend_bucket_direct_read(struct 
state_backend_storage_bucket
        }
        if (meta.magic == direct_magic) {
                read_len = meta.written_length;
+               if (read_len < 0 || read_len > direct->max_size) {
+                       dev_err(direct->dev, "Wrong length in meta data\n");
+                       return -EINVAL;
+               }
        } else {
                if (meta.magic != ~0 && !!meta.magic)
                        bucket->wrong_magic = 1;
-- 
2.7.4


_______________________________________________
barebox mailing list
[email protected]
http://lists.infradead.org/mailman/listinfo/barebox

Reply via email to