misaligned memory access in cmdlinepart.c

Jörn Engel joern at wohnheim.fh-wedel.de
Mon Jun 6 09:34:06 EDT 2005


Thanks for bugging again.

On Wed, 27 April 2005 15:03:54 +0400, Timofei V. Bondarenko wrote:
> 
> in mtdpart_setup_real()/newpart() command line parser
> 'this_mtd' structure can be misaligned,
> it may cause exception on some kind of CPU.
> 
> That happened because the structure allocated in a variable length area 
> and got mixed with partition names.

Your description appears to make sense (I don't use cmdlinepart).  The
patch, however, should be changed to use ALIGN() from
include/linux/kernel.h instead.

> --- cmdlinepart.c	2005-04-18 18:06:43.000000000 +0400
> +++ linux-2.6.x/drivers/mtd/cmdlinepart.c	2005-04-18 
> 18:40:02.971778640 +0400
> @@ -234,12 +234,14 @@ static int mtdpart_setup_real(char *s)
>  		 * parse one mtd. have it reserve memory for the
>  		 * struct cmdline_mtd_partition and the mtd-id string.
>  		 */
> +#define THIS_MTD_ALIGN_CONST (sizeof(void*)-1)
>  		parts = newpart(p + 1,		/* cmdline */
>  				&s,		/* out: updated cmdline ptr 
>  				*/
>  				&num_parts,	/* out: number of parts */
>  				0,		/* first partition */
>  				(unsigned char**)&this_mtd, /* out: extra 
>  				mem */
> -				mtd_id_len + 1 + sizeof(*this_mtd));
> +				mtd_id_len + 1 + sizeof(*this_mtd) +
> +                                THIS_MTD_ALIGN_CONST);
>  		if(!parts)
>  		{
>  			/*
> @@ -252,7 +254,11 @@ static int mtdpart_setup_real(char *s)
>  			 return 0;
>  		 }
> 
> -		/* enter results */	
> +		/* align this_mtd */
> +                this_mtd = (struct cmdline_mtd_partition *)
> +                  (~THIS_MTD_ALIGN_CONST &
> +                    THIS_MTD_ALIGN_CONST + (unsigned long)(char*)this_mtd);
> +		/* enter results */
>  		this_mtd->parts = parts;
>  		this_mtd->num_parts = num_parts;
>  		this_mtd->mtd_id = (char*)(this_mtd + 1);
> 
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/

Jörn

-- 
There are two ways of constructing a software design: one way is to make
it so simple that there are obviously no deficiencies, and the other is
to make it so complicated that there are no obvious deficiencies.
-- C. A. R. Hoare




More information about the linux-mtd mailing list