Re: [PATCH 4/6] improve sys_personality for compat architectures

From: Arnd Bergmann
Date: Tue Feb 02 2010 - 09:37:59 EST


On Monday 01 February 2010, Christoph Hellwig wrote:
> +/*
> + * Get/set the personality.
> + *
> + * Note that we simply return PER_LINUX even if we actually have a 32-bit
> + * task (PER_LINUX32) as this is expected by 32-bit userland.
> + */
> SYSCALL_DEFINE1(personality, u_long, personality)
> {
> u_long old = current->personality;
>
> if (personality != 0xffffffff) {
> + if (personality(old) == PER_LINUX32 &&
> + personality == PER_LINUX)
> + personality = PER_LINUX32;
> set_personality(personality);
> if (current->personality != personality)
> return -EINVAL;
> }
>
> - return (long)old;
> + return (long)(old == PER_LINUX32 ? PER_LINUX : old);
> }

What does this do for a native 64 bit process setting PER_LINUX32?
It looks to me like it could never set it back to the original
value, or am I missing something here?

It's what the arch specific code does already, but it seems a bit
strange anyway.

Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/