cxl/mbox: Make handle_mailbox_cmd_from_user() use a mbox param

Previously, handle_mailbox_cmd_from_user(), constructed the mailbox
command and dispatched it to the hardware. The construction work
has moved to the validation path.

handle_mailbox_cmd_from_user() now expects a fully validated
mbox param. Make it's caller, cxl_send_cmd(), deliver it. Update
the comments and dereferencing of the new mbox parameter.

Signed-off-by: Alison Schofield <alison.schofield@intel.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
Link: https://lore.kernel.org/r/77050ba512d6c30eccf7505467509e460dd325a0.1648687552.git.alison.schofield@intel.com
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
Alison Schofield 2022-03-30 18:27:16 -07:00 committed by Dan Williams
parent 82b8ba2953
commit d97fe8eec2

View file

@ -423,8 +423,7 @@ int cxl_query_cmd(struct cxl_memdev *cxlmd,
/** /**
* handle_mailbox_cmd_from_user() - Dispatch a mailbox command for userspace. * handle_mailbox_cmd_from_user() - Dispatch a mailbox command for userspace.
* @cxlds: The device data for the operation * @cxlds: The device data for the operation
* @cmd: The validated command. * @mbox_cmd: The validated mailbox command.
* @in_payload: Pointer to userspace's input payload.
* @out_payload: Pointer to userspace's output payload. * @out_payload: Pointer to userspace's output payload.
* @size_out: (Input) Max payload size to copy out. * @size_out: (Input) Max payload size to copy out.
* (Output) Payload size hardware generated. * (Output) Payload size hardware generated.
@ -439,35 +438,27 @@ int cxl_query_cmd(struct cxl_memdev *cxlmd,
* * %-EINTR - Mailbox acquisition interrupted. * * %-EINTR - Mailbox acquisition interrupted.
* * %-EXXX - Transaction level failures. * * %-EXXX - Transaction level failures.
* *
* Creates the appropriate mailbox command and dispatches it on behalf of a * Dispatches a mailbox command on behalf of a userspace request.
* userspace request. The input and output payloads are copied between * The output payload is copied to userspace.
* userspace.
* *
* See cxl_send_cmd(). * See cxl_send_cmd().
*/ */
static int handle_mailbox_cmd_from_user(struct cxl_dev_state *cxlds, static int handle_mailbox_cmd_from_user(struct cxl_dev_state *cxlds,
const struct cxl_mem_command *cmd, struct cxl_mbox_cmd *mbox_cmd,
u64 in_payload, u64 out_payload, u64 out_payload, s32 *size_out,
s32 *size_out, u32 *retval) u32 *retval)
{ {
struct device *dev = cxlds->dev; struct device *dev = cxlds->dev;
struct cxl_mbox_cmd mbox_cmd;
int rc; int rc;
rc = cxl_mbox_cmd_ctor(&mbox_cmd, cxlds, cmd->opcode,
cmd->info.size_in, cmd->info.size_out,
in_payload);
if (rc)
return rc;
dev_dbg(dev, dev_dbg(dev,
"Submitting %s command for user\n" "Submitting %s command for user\n"
"\topcode: %x\n" "\topcode: %x\n"
"\tsize: %zx\n", "\tsize: %zx\n",
cxl_mem_opcode_to_name(mbox_cmd.opcode), cxl_mem_opcode_to_name(mbox_cmd->opcode),
mbox_cmd.opcode, mbox_cmd.size_in); mbox_cmd->opcode, mbox_cmd->size_in);
rc = cxlds->mbox_send(cxlds, &mbox_cmd); rc = cxlds->mbox_send(cxlds, mbox_cmd);
if (rc) if (rc)
goto out; goto out;
@ -476,21 +467,21 @@ static int handle_mailbox_cmd_from_user(struct cxl_dev_state *cxlds,
* to userspace. While the payload may have written more output than * to userspace. While the payload may have written more output than
* this it will have to be ignored. * this it will have to be ignored.
*/ */
if (mbox_cmd.size_out) { if (mbox_cmd->size_out) {
dev_WARN_ONCE(dev, mbox_cmd.size_out > *size_out, dev_WARN_ONCE(dev, mbox_cmd->size_out > *size_out,
"Invalid return size\n"); "Invalid return size\n");
if (copy_to_user(u64_to_user_ptr(out_payload), if (copy_to_user(u64_to_user_ptr(out_payload),
mbox_cmd.payload_out, mbox_cmd.size_out)) { mbox_cmd->payload_out, mbox_cmd->size_out)) {
rc = -EFAULT; rc = -EFAULT;
goto out; goto out;
} }
} }
*size_out = mbox_cmd.size_out; *size_out = mbox_cmd->size_out;
*retval = mbox_cmd.return_code; *retval = mbox_cmd->return_code;
out: out:
cxl_mbox_cmd_dtor(&mbox_cmd); cxl_mbox_cmd_dtor(mbox_cmd);
return rc; return rc;
} }
@ -512,9 +503,8 @@ int cxl_send_cmd(struct cxl_memdev *cxlmd, struct cxl_send_command __user *s)
if (rc) if (rc)
return rc; return rc;
rc = handle_mailbox_cmd_from_user(cxlds, &c, send.in.payload, rc = handle_mailbox_cmd_from_user(cxlds, &mbox_cmd, send.out.payload,
send.out.payload, &send.out.size, &send.out.size, &send.retval);
&send.retval);
if (rc) if (rc)
return rc; return rc;