[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <063D6719AE5E284EB5DD2968C1650D6D1CAD3C5C@AcuExch.aculab.com>
Date: Tue, 27 Jan 2015 11:54:16 +0000
From: David Laight <David.Laight@...LAB.COM>
To: 'Florian Westphal' <fw@...len.de>
CC: 'Fan Du' <fan.du@...el.com>,
"steffen.klassert@...unet.com" <steffen.klassert@...unet.com>,
"herbert@...dor.apana.org.au" <herbert@...dor.apana.org.au>,
"davem@...emloft.net" <davem@...emloft.net>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>,
"fengyuleidian0615@...il.com" <fengyuleidian0615@...il.com>
Subject: RE: [PATCHv3 ipsec-next] xfrm: Do not parse 32bits compiled xfrm
netlink msg on 64bits host
From: Florian Westphal
> David Laight <David.Laight@...LAB.COM> wrote:
> > From: Fan Du
> > > structure like xfrm_usersa_info or xfrm_userpolicy_info
> > > has different sizeof when compiled as 32bits and 64bits
> > > due to not appending pack attribute in their definition.
> >
> > Don't 'pack' the structure, just ensure that all the fields
> > are fixed sized and on their natural boundary.
>
> How do you propose to do this without breaking ABI?
You may already have an ABI fubar.
Adding __packed won't make it go away.
IIRC your modified structure did have all its 64bit items
aligned on 8 byte boundaries - so the __packed wouldn't affect
the structure layout.
The problem is that you can't add that field when the ABI
only requires 4 byte alignment for 64bit items.
If you need to access a structure from (eg) an i386 application
within an amd64 kernel then you can add __attribute__((aligned(4)))
to any 64bit member to force that member to have only 4 byte aligment.
On 64bit systems that can't do misaligned transfers (eg sparc64)
that will result in two 32bit accesses for that member.
(You'll need to do it to all 64bit members if the structure
size needs to be an odd multiple of 4.)
> > Possibly add a compile-time check that the structure is
> > of the expected size.
>
> Uh, what?
eg something based on:
typedef foo_check char[sizeof foo == 32 ? 1 : -1];
There will be a standard define for this somewhere
(and for the align attribute).
David
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists