All of lore.kernel.org
 help / color / mirror / Atom feed
From: Darren Kenny <darren.kenny@oracle.com>
To: Lidong Chen <lidong.chen@oracle.com>, grub-devel@gnu.org
Cc: daniel.kiper@oracle.com, lidong.chen@oracle.com
Subject: Re: [PATCH v2 1/1] fs/udf: Fix out of bounds access
Date: Wed, 07 Jun 2023 20:26:44 +0100	[thread overview]
Message-ID: <m2edmnqdjf.fsf@oracle.com> (raw)
In-Reply-To: <6aa3a86b3dc6699ac2f84626d4d83643fc6bc20a.1686100317.git.lidong.chen@oracle.com>

Hi Li,,

LGTM!

Reviewed-by: Darren Kenny <darren.kenny@oracle.com>

Thanks,

Darren.

On Wednesday, 2023-06-07 at 01:31:06 UTC, Lidong Chen wrote:
> Implemented a boundary check before advancing the allocation
> descriptors pointer.
>
> Signed-off-by: Lidong Chen <lidong.chen@oracle.com>
> Reviewed-by: Darren Kenny <darren.kenny@oracle.com>
> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
> ---
>  grub-core/fs/udf.c | 38 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 38 insertions(+)
>
> diff --git a/grub-core/fs/udf.c b/grub-core/fs/udf.c
> index 7679ea309..58884d2ba 100644
> --- a/grub-core/fs/udf.c
> +++ b/grub-core/fs/udf.c
> @@ -114,6 +114,10 @@ GRUB_MOD_LICENSE ("GPLv3+");
>  #define GRUB_UDF_PARTMAP_TYPE_1		1
>  #define GRUB_UDF_PARTMAP_TYPE_2		2
>  
> +#define GRUB_UDF_INVALID_STRUCT_PTR(_ptr, _struct)	\
> +  ((char *) (_ptr) >= end_ptr || \
> +   ((grub_ssize_t)(end_ptr - (char*)(_ptr)) < (grub_ssize_t)sizeof(_struct)))
> +
>  struct grub_udf_lb_addr
>  {
>    grub_uint32_t block_num;
> @@ -458,6 +462,7 @@ grub_udf_read_block (grub_fshelp_node_t node, grub_disk_addr_t fileblock)
>    char *ptr;
>    grub_ssize_t len;
>    grub_disk_addr_t filebytes;
> +  char *end_ptr;
>  
>    switch (U16 (node->block.fe.tag.tag_ident))
>      {
> @@ -476,9 +481,17 @@ grub_udf_read_block (grub_fshelp_node_t node, grub_disk_addr_t fileblock)
>        return 0;
>      }
>  
> +  end_ptr = (char *) node + get_fshelp_size (node->data);
> +
>    if ((U16 (node->block.fe.icbtag.flags) & GRUB_UDF_ICBTAG_FLAG_AD_MASK)
>        == GRUB_UDF_ICBTAG_FLAG_AD_SHORT)
>      {
> +      if (GRUB_UDF_INVALID_STRUCT_PTR(ptr, struct grub_udf_short_ad))
> +	{
> +	  grub_error (GRUB_ERR_BAD_FS, "corrupted UDF file system");
> +	  return 0;
> +	}
> +
>        struct grub_udf_short_ad *ad = (struct grub_udf_short_ad *) ptr;
>  
>        filebytes = fileblock * U32 (node->data->lvd.bsize);
> @@ -542,10 +555,22 @@ grub_udf_read_block (grub_fshelp_node_t node, grub_disk_addr_t fileblock)
>  	  filebytes -= adlen;
>  	  ad++;
>  	  len -= sizeof (struct grub_udf_short_ad);
> +
> +	  if (GRUB_UDF_INVALID_STRUCT_PTR(ad, struct grub_udf_short_ad))
> +	    {
> +	      grub_error (GRUB_ERR_BAD_FS, "corrupted UDF file system");
> +	      return 0;
> +	    }
>  	}
>      }
>    else
>      {
> +      if (GRUB_UDF_INVALID_STRUCT_PTR(ptr, struct grub_udf_long_ad))
> +	{
> +	  grub_error (GRUB_ERR_BAD_FS, "corrupted UDF file system");
> +	  return 0;
> +	}
> +
>        struct grub_udf_long_ad *ad = (struct grub_udf_long_ad *) ptr;
>  
>        filebytes = fileblock * U32 (node->data->lvd.bsize);
> @@ -611,6 +636,12 @@ grub_udf_read_block (grub_fshelp_node_t node, grub_disk_addr_t fileblock)
>  	  filebytes -= adlen;
>  	  ad++;
>  	  len -= sizeof (struct grub_udf_long_ad);
> +
> +	  if (GRUB_UDF_INVALID_STRUCT_PTR(ad, struct grub_udf_long_ad))
> +	    {
> +	      grub_error (GRUB_ERR_BAD_FS, "corrupted UDF file system");
> +	      return 0;
> +	    }
>  	}
>      }
>  
> @@ -630,6 +661,7 @@ grub_udf_read_file (grub_fshelp_node_t node,
>      case GRUB_UDF_ICBTAG_FLAG_AD_IN_ICB:
>        {
>  	char *ptr;
> +	char *end_ptr = (char *) node + get_fshelp_size (node->data);
>  
>  	ptr = ((U16 (node->block.fe.tag.tag_ident) == GRUB_UDF_TAG_IDENT_FE) ?
>  	       ((char *) &node->block.fe.ext_attr[0]
> @@ -637,6 +669,12 @@ grub_udf_read_file (grub_fshelp_node_t node,
>  	       ((char *) &node->block.efe.ext_attr[0]
>                  + U32 (node->block.efe.ext_attr_length)));
>  
> +	if ((ptr + pos + len) > end_ptr)
> +	  {
> +	    grub_error (GRUB_ERR_BAD_FS, "corrupted UDF file system");
> +	    return 0;
> +	  }
> +
>  	grub_memcpy (buf, ptr + pos, len);
>  
>  	return len;
> -- 
> 2.39.1


  reply	other threads:[~2023-06-07 19:27 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-07  1:31 [PATCH v2 0/1] fs/udf: Fix out of bounds access Lidong Chen
2023-06-07  1:31 ` [PATCH v2 1/1] " Lidong Chen
2023-06-07 19:26   ` Darren Kenny [this message]
2023-06-12 14:16     ` Daniel Kiper

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m2edmnqdjf.fsf@oracle.com \
    --to=darren.kenny@oracle.com \
    --cc=daniel.kiper@oracle.com \
    --cc=grub-devel@gnu.org \
    --cc=lidong.chen@oracle.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.