lkml.org 
[lkml]   [2010]   [Feb]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [PATCH 4/6] improve sys_personality for compat architectures
Date
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


\
 
 \ /
  Last update: 2010-02-02 15:41    [W:0.084 / U:0.348 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site