mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] common: state: check length
@ 2019-05-21 14:44 Jan Remmet
  2019-05-23  6:57 ` Sascha Hauer
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Remmet @ 2019-05-21 14:44 UTC (permalink / raw)
  To: barebox

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 <j.remmet@phytec.de>
---
 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
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] common: state: check length
  2019-05-21 14:44 [PATCH] common: state: check length Jan Remmet
@ 2019-05-23  6:57 ` Sascha Hauer
  2019-05-23  7:49   ` [PATCH v2] " Jan Remmet
  0 siblings, 1 reply; 4+ messages in thread
From: Sascha Hauer @ 2019-05-23  6:57 UTC (permalink / raw)
  To: Jan Remmet; +Cc: barebox

On Tue, May 21, 2019 at 04:44:13PM +0200, Jan Remmet wrote:
> 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 <j.remmet@phytec.de>
> ---
>  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) {

written_length in struct state_backend_storage_bucket_direct_meta is
unsigned and so should be read_len. Then you can skip the read_len < 0
check.

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2] common: state: check length
  2019-05-23  6:57 ` Sascha Hauer
@ 2019-05-23  7:49   ` Jan Remmet
  2019-05-23  8:00     ` Sascha Hauer
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Remmet @ 2019-05-23  7:49 UTC (permalink / raw)
  To: barebox

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. Make read_len unsigned to avoid negative
values.

Signed-off-by: Jan Remmet <j.remmet@phytec.de>
---
v2: replace compare < 0 by making read_len unsigned

 common/state/backend_bucket_direct.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/common/state/backend_bucket_direct.c b/common/state/backend_bucket_direct.c
index 95ddb9310685..0dbd334db821 100644
--- a/common/state/backend_bucket_direct.c
+++ b/common/state/backend_bucket_direct.c
@@ -52,7 +52,7 @@ static int state_backend_bucket_direct_read(struct state_backend_storage_bucket
 	struct state_backend_storage_bucket_direct *direct =
 	    get_bucket_direct(bucket);
 	struct state_backend_storage_bucket_direct_meta meta;
-	ssize_t read_len;
+	uint32_t read_len;
 	void *buf;
 	int ret;
 
@@ -67,6 +67,11 @@ 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 > 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
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] common: state: check length
  2019-05-23  7:49   ` [PATCH v2] " Jan Remmet
@ 2019-05-23  8:00     ` Sascha Hauer
  0 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2019-05-23  8:00 UTC (permalink / raw)
  To: Jan Remmet; +Cc: barebox

On Thu, May 23, 2019 at 09:49:00AM +0200, Jan Remmet wrote:
> 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. Make read_len unsigned to avoid negative
> values.
> 
> Signed-off-by: Jan Remmet <j.remmet@phytec.de>
> ---
> v2: replace compare < 0 by making read_len unsigned

Applied, thanks

Sascha


-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-05-23  8:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-21 14:44 [PATCH] common: state: check length Jan Remmet
2019-05-23  6:57 ` Sascha Hauer
2019-05-23  7:49   ` [PATCH v2] " Jan Remmet
2019-05-23  8:00     ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox