[PATCH v2 3/3] RFC: Check offset in fdt_string()

David Gibson david at gibson.dropbear.id.au
Fri Feb 22 10:35:03 EST 2013


On Fri, Feb 15, 2013 at 02:49:38PM -0800, Simon Glass wrote:
> (We probably don't want this patch, and certainly can't apply it as is,
> but I send it in order to find out the intent of fdt_string()).
> 
> At present fdt_string() says that returns:
> 
>    - a pointer to the string, on success
>    - NULL, if stroffset is out of bounds
> 
> However it does not in fact return NULL. Changing it to do so also
> breaks 15 tests (segfault).
> 
> What is the intended behaviour of this function, please?

Ah.  Yes.  So I'm guessing the tests that fail are all the tests of
the sequential write functions (fdt_sw.c).  When the blob is in
sequential write mode, the string offsets work differently - they're
negative from a strings block pointer which sits at the end of the
strings.  That's because as we add new properties, the strings block
grows downwards.  The offsets get fixed up again in fdt_finish().

So, fdt_string() would need a special case for trees in SW mode.  I
also have a vague recollection that there was another reason I didn't
implement the bounds checking, but I seem to have forgotton what it
was :(.


> Signed-off-by: Simon Glass <sjg at chromium.org>
> ---
> Changes in v2:
> - Drop patch to replace fdtdump
> 
>  libfdt/fdt_ro.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/libfdt/fdt_ro.c b/libfdt/fdt_ro.c
> index 50007f6..cba8772 100644
> --- a/libfdt/fdt_ro.c
> +++ b/libfdt/fdt_ro.c
> @@ -77,6 +77,8 @@ static int _fdt_nodename_eq(const void *fdt, int offset,
>  
>  const char *fdt_string(const void *fdt, int stroffset)
>  {
> +	if (stroffset < 0 || stroffset >= fdt_size_dt_strings(fdt))
> +		return NULL;
>  	return (const char *)fdt + fdt_off_dt_strings(fdt) + stroffset;
>  }
>  

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 198 bytes
Desc: Digital signature
URL: <http://lists.ozlabs.org/pipermail/devicetree-discuss/attachments/20130222/6bb5e830/attachment.sig>


More information about the devicetree-discuss mailing list