RDMA/uverbs: Refactor flags checks and update return value
authorLeon Romanovsky <leonro@mellanox.com>
Wed, 21 Feb 2018 16:12:33 +0000 (18:12 +0200)
committerDoug Ledford <dledford@redhat.com>
Fri, 23 Feb 2018 03:29:11 +0000 (22:29 -0500)
Since commit f21519b23c1b ("IB/core: extended command: an
improved infrastructure for uverbs commands"), the uverbs
supports extra flags as an input to the command interface.

However actually, there is only one flag available and used,
so it is better to refactor the code, so the resolution and
report to the users is done as early as possible.

As part of this change, we changed the return value of failure case
from ENOSYS to be EINVAL to be consistent with the rest flags checks.

Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/core/uverbs_main.c

index 66b2f92bd47bd6e9ffba2de599f1ceee4d2f283b..d28b6f1543c71620323bca7f9b42f98086ed57d7 100644 (file)
@@ -701,6 +701,11 @@ static ssize_t ib_uverbs_write(struct file *filp, const char __user *buf,
                 IB_USER_VERBS_CMD_FLAGS_MASK) >> IB_USER_VERBS_CMD_FLAGS_SHIFT;
 
        extended_command = flags & IB_USER_VERBS_CMD_FLAG_EXTENDED;
+       if (flags & ~IB_USER_VERBS_CMD_FLAG_EXTENDED) {
+               ret = -EINVAL;
+               goto out;
+       }
+
        if (!verify_command_idx(command, extended_command)) {
                ret = -EINVAL;
                goto out;
@@ -732,8 +737,7 @@ static ssize_t ib_uverbs_write(struct file *filp, const char __user *buf,
                                                 buf + sizeof(hdr),
                                                 hdr.in_words * 4,
                                                 hdr.out_words * 4);
-
-       } else if (flags == IB_USER_VERBS_CMD_FLAG_EXTENDED) {
+       } else {
                struct ib_uverbs_ex_cmd_hdr ex_hdr;
                struct ib_udata ucore;
                struct ib_udata uhw;
@@ -804,8 +808,6 @@ static ssize_t ib_uverbs_write(struct file *filp, const char __user *buf,
                ret = uverbs_ex_cmd_table[command](file, ib_dev, &ucore, &uhw);
                if (!ret)
                        ret = written_count;
-       } else {
-               ret = -ENOSYS;
        }
 
 out: