qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] Fix getgroups() syscall emulation


From: Riku Voipio
Subject: Re: [Qemu-devel] [PATCH] Fix getgroups() syscall emulation
Date: Fri, 19 Sep 2008 16:57:52 +0300
User-agent: Mutt/1.5.11+cvs20060126

On Thu, Sep 18, 2008 at 06:07:00PM +0300, Kirill A. Shutemov wrote:
> According to man page getgroups(2):
> 
> If size is zero, list is not modified, but the total number of
> supplementary group IDs for the process is returned.

Looks ok to me.

> Signed-off-by: Kirill A. Shutemov <address@hidden>
> ---
>  linux-user/syscall.c |    4 ++++
>  1 files changed, 4 insertions(+), 0 deletions(-)
> 
> diff --git a/linux-user/syscall.c b/linux-user/syscall.c
> index 124d14e..948ea3b 100644
> --- a/linux-user/syscall.c
> +++ b/linux-user/syscall.c
> @@ -5247,6 +5247,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long 
> arg1,
>  
>              grouplist = alloca(gidsetsize * sizeof(gid_t));
>              ret = get_errno(getgroups(gidsetsize, grouplist));
> +            if (gidsetsize == 0)
> +                break;
>              if (!is_error(ret)) {
>                  target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize 
> * 2, 0);
>                  if (!target_grouplist)
> @@ -5397,6 +5399,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long 
> arg1,
>  
>              grouplist = alloca(gidsetsize * sizeof(gid_t));
>              ret = get_errno(getgroups(gidsetsize, grouplist));
> +            if (gidsetsize == 0)
> +                break;
>              if (!is_error(ret)) {
>                  target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize 
> * 4, 0);
>                  if (!target_grouplist) {
> -- 
> 1.5.6.5.GIT
> 
> 

-- 
"rm -rf" only sounds scary if you don't have backups




reply via email to

[Prev in Thread] Current Thread [Next in Thread]