Message ID | b6cc6da57edb0a33ccfc301d6079ce390dba17d7.1430743694.git.ydroneaud@opteya.com (mailing list archive) |
---|---|
State | Rejected |
Headers | show |
diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c index a3a3b6eafd1d..147f61c8692b 100644 --- a/drivers/infiniband/core/uverbs_cmd.c +++ b/drivers/infiniband/core/uverbs_cmd.c @@ -1563,6 +1563,9 @@ ssize_t ib_uverbs_poll_cq(struct ib_uverbs_file *file, if (copy_from_user(&cmd, buf, sizeof cmd)) return -EFAULT; + if ((out_len - sizeof resp)/(sizeof(struct ib_uverbs_wc)) < cmd.ne) + return -ENOSPC; + cq = idr_read_cq(cmd.cq_handle, file->ucontext, 0); if (!cq) return -EINVAL;
Makes ib_uverbs_poll_cq() check the length of the output buffer against number of wc: this will prevent the function from writing past userspace provided buffer. Note that it might affect existing userspace programs that were setting 'struct ibv_poll_cq' field 'ne' to a value too large compared to the size of the buffer allocated to hold the work completion items. Perhaps such userspace programs were hoping to have allocated enough memory to hold the maximum number of work completions that can be returned on this particular completion queue or it would have been broken with random memory corruption due to the kernel writing past the response buffer. Example: int vendor_poll_cq_broken(struct ibv_cq *cq, int ne, struct ibv_wc *wc) { struct ibv_poll_cq cmd; struct ibv_poll_cq_resp *resp; int resp_size; ssize_t sret; int ret = -1; cmd.cq_handle = cq->handle; cmd.ne = ne; /* forget about ne * sizeof(struct ibv_kern_wc) */ resp_size = sizeof(*resp); resp = malloc(resp_size); assert(resp != NULL); IBV_INIT_CMD_RESP(&cmd, sizeof(cmd), POLL_CQ, resp, resp_size); sret = write(cq->context->cmd_fd, &cmd, sizeof(cmd)); if (sret != sizeof(cmd)) goto leave; ret = resp->count; /* ignore the response */ leave: free(resp); return ret; } The provided patch will make it impossible to do it on patched kernels. Applications using libibverbs are not going to be affected by this patch, but unknown broken applications using directly kernel uverbs API may fail. Link: http://marc.info/?i=cover.1430743694.git.ydroneaud@opteya.com Signed-off-by: Yann Droneaud <ydroneaud@opteya.com> --- drivers/infiniband/core/uverbs_cmd.c | 3 +++ 1 file changed, 3 insertions(+)