staging/lustre/clio: Do not allow group locks with gid 0
authorPatrick Farrell <paf@cray.com>
Mon, 2 Feb 2015 02:52:18 +0000 (21:52 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 7 Feb 2015 09:32:34 +0000 (17:32 +0800)
When a group lock with GID=0 is released (put_grouplock is
called), an assertion in cl_put_grouplock is hit.

We should not allow group lock requests with GID=0, instead
we should return -EINVAL.

Signed-off-by: Patrick Farrell <paf@cray.com>
Reviewed-on: http://review.whamcloud.com/12459
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-5817
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: frank zago <fzago@cray.com>
Signed-off-by: Oleg Drokin <oleg.drokin@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/llite/file.c

index ca270f49e6aa3f5341302673a3c266168a37e18b..7c7ef7ec908e48467207144b682291a607d89514 100644 (file)
@@ -1553,6 +1553,11 @@ ll_get_grouplock(struct inode *inode, struct file *file, unsigned long arg)
        struct ccc_grouplock    grouplock;
        int                  rc;
 
+       if (arg == 0) {
+               CWARN("group id for group lock must not be 0\n");
+               return -EINVAL;
+       }
+
        if (ll_file_nolock(file))
                return -EOPNOTSUPP;