nbd: move request validity checking into nbd_send_cmd
This is where we do the rest of the request handling, which will become much simpler soon, too. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
parent
27410a8927
commit
09fc54ccc4
1 changed files with 10 additions and 11 deletions
|
@ -271,6 +271,9 @@ static int nbd_send_cmd(struct nbd_device *nbd, struct nbd_cmd *cmd, int index)
|
||||||
u32 type;
|
u32 type;
|
||||||
u32 tag = blk_mq_unique_tag(req);
|
u32 tag = blk_mq_unique_tag(req);
|
||||||
|
|
||||||
|
if (req->cmd_type != REQ_TYPE_FS)
|
||||||
|
return -EIO;
|
||||||
|
|
||||||
if (req_op(req) == REQ_OP_DISCARD)
|
if (req_op(req) == REQ_OP_DISCARD)
|
||||||
type = NBD_CMD_TRIM;
|
type = NBD_CMD_TRIM;
|
||||||
else if (req_op(req) == REQ_OP_FLUSH)
|
else if (req_op(req) == REQ_OP_FLUSH)
|
||||||
|
@ -280,6 +283,13 @@ static int nbd_send_cmd(struct nbd_device *nbd, struct nbd_cmd *cmd, int index)
|
||||||
else
|
else
|
||||||
type = NBD_CMD_READ;
|
type = NBD_CMD_READ;
|
||||||
|
|
||||||
|
if (rq_data_dir(req) == WRITE &&
|
||||||
|
(nbd->flags & NBD_FLAG_READ_ONLY)) {
|
||||||
|
dev_err_ratelimited(disk_to_dev(nbd->disk),
|
||||||
|
"Write on read-only\n");
|
||||||
|
return -EIO;
|
||||||
|
}
|
||||||
|
|
||||||
memset(&request, 0, sizeof(request));
|
memset(&request, 0, sizeof(request));
|
||||||
request.magic = htonl(NBD_REQUEST_MAGIC);
|
request.magic = htonl(NBD_REQUEST_MAGIC);
|
||||||
request.type = htonl(type);
|
request.type = htonl(type);
|
||||||
|
@ -503,17 +513,6 @@ static void nbd_handle_cmd(struct nbd_cmd *cmd, int index)
|
||||||
goto error_out;
|
goto error_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (req->cmd_type != REQ_TYPE_FS)
|
|
||||||
goto error_out;
|
|
||||||
|
|
||||||
if (req->cmd_type == REQ_TYPE_FS &&
|
|
||||||
rq_data_dir(req) == WRITE &&
|
|
||||||
(nbd->flags & NBD_FLAG_READ_ONLY)) {
|
|
||||||
dev_err_ratelimited(disk_to_dev(nbd->disk),
|
|
||||||
"Write on read-only\n");
|
|
||||||
goto error_out;
|
|
||||||
}
|
|
||||||
|
|
||||||
req->errors = 0;
|
req->errors = 0;
|
||||||
|
|
||||||
nsock = nbd->socks[index];
|
nsock = nbd->socks[index];
|
||||||
|
|
Loading…
Reference in a new issue