Re: [PATCH] Consolidate compat_sys_waitid

From: Andi Kleen
Date: Tue Feb 15 2005 - 04:53:21 EST


On Tue, Feb 15, 2005 at 02:01:49PM +1100, Stephen Rothwell wrote:
> +asmlinkage long compat_sys_waitid(u32 which, u32 pid,
> + struct compat_siginfo __user *uinfo, u32 options,
> + struct compat_rusage __user *uru)
> +{
> + siginfo_t info;
> + struct rusage ru;
> + long ret;
> + mm_segment_t old_fs = get_fs();
> +
> + memset(&info, 0, sizeof(info));
> +
> + set_fs(KERNEL_DS);
> + ret = sys_waitid(which, pid, (siginfo_t __user *)&info, options,
> + uru ? (struct rusage __user *)&ru : NULL);
> + set_fs(old_fs);

I don't think this will work for sparc64/s390/UML etc.
They cannot access kernel data inside KERNEL_DS. You would need to use
compat_alloc_user_space() for ru

-Andi
-
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/