diff mbox

fsdev: Don't ignore setfsuid/setfsgid return values

Message ID 1349426179-16712-1-git-send-email-mohan@in.ibm.com
State New
Headers show

Commit Message

Mohan Kumar M Oct. 5, 2012, 8:36 a.m. UTC
From: "M. Mohan Kumar" <mohan@in.ibm.com>

In current implementation of setfsuid/setfsgid there is no way to know
if it failed by checking the return value. This patch assumes
setfsuid/setfsgid returns -1 in case of error. Eventually kernel code
needs to be fixed.

Signed-off-by: M. Mohan Kumar <mohan@in.ibm.com>
---
 fsdev/virtfs-proxy-helper.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

Comments

Eric Blake Oct. 5, 2012, 11:52 a.m. UTC | #1
On 10/05/2012 02:36 AM, M. Mohan Kumar wrote:
> From: "M. Mohan Kumar" <mohan@in.ibm.com>
> 
> In current implementation of setfsuid/setfsgid there is no way to know
> if it failed by checking the return value. This patch assumes
> setfsuid/setfsgid returns -1 in case of error. Eventually kernel code
> needs to be fixed.

According to the Fedora 17 man page:

RETURN VALUE
   On success, the previous value of fsuid is  returned.   On  error,
the current value of fsuid is returned.

NOTES
      When glibc determines that the argument is not a valid user ID, it
will return -1 and set errno to EINVAL without attempting the system call.

BUGS
       No error messages of any kind are returned to the caller.  At the
 very least, EPERM should be returned when the call fails (because the
caller lacks the CAP_SETUID capability).

Eww - self-contradictory.  I think the reason that F17 marked these
functions warn_unused_return is because there HAS been an effort to make
these functions return sane values that can be used to detect when
errors have occurred.

> 
> Signed-off-by: M. Mohan Kumar <mohan@in.ibm.com>
> ---
>  fsdev/virtfs-proxy-helper.c | 9 ++++++---
>  1 file changed, 6 insertions(+), 3 deletions(-)
> 
> diff --git a/fsdev/virtfs-proxy-helper.c b/fsdev/virtfs-proxy-helper.c
> index f9a8270..ed5eede 100644
> --- a/fsdev/virtfs-proxy-helper.c
> +++ b/fsdev/virtfs-proxy-helper.c
> @@ -290,9 +290,12 @@ static int setfsugid(int uid, int gid)
>          CAP_DAC_OVERRIDE,
>      };
>  
> -    setfsgid(gid);
> -    setfsuid(uid);
> -
> +    if (setfsgid(gid) < 0) {
> +        return -errno;
> +    }
> +    if (setfsuid(uid) < 0) {
> +        return -errno;
> +    }

At any rate, this silences the compiler warning I was hitting, so:

Tested-by: Eric Blake <eblake@redhat.com>
diff mbox

Patch

diff --git a/fsdev/virtfs-proxy-helper.c b/fsdev/virtfs-proxy-helper.c
index f9a8270..ed5eede 100644
--- a/fsdev/virtfs-proxy-helper.c
+++ b/fsdev/virtfs-proxy-helper.c
@@ -290,9 +290,12 @@  static int setfsugid(int uid, int gid)
         CAP_DAC_OVERRIDE,
     };
 
-    setfsgid(gid);
-    setfsuid(uid);
-
+    if (setfsgid(gid) < 0) {
+        return -errno;
+    }
+    if (setfsuid(uid) < 0) {
+        return -errno;
+    }
     if (uid != 0 || gid != 0) {
         return do_cap_set(cap_list, ARRAY_SIZE(cap_list), 0);
     }