From: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: linux-kernel@vger.kernel.org, target-devel@vger.kernel.org,
hch@lst.de, roland@kernel.org
Subject: Re: [PATCH 02/11] target: report too-small parameter lists everywhere
Date: Fri, 07 Sep 2012 11:09:08 -0700 [thread overview]
Message-ID: <1347041348.4162.626.camel@haakon2.linux-iscsi.org> (raw)
In-Reply-To: <1347031842-2531-3-git-send-email-pbonzini@redhat.com>
On Fri, 2012-09-07 at 17:30 +0200, Paolo Bonzini wrote:
> Several places were not checking that the parameter list length
> was large enough, and thus accessing invalid memory. Zero-length
> parameter lists are just a special case of this.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
So I think this looks like reasonable for-3.6 material as well.
Roland, do you have any objections to this..?
> drivers/target/target_core_alua.c | 7 +++++++
> drivers/target/target_core_iblock.c | 17 +++++++++++++++--
> drivers/target/target_core_pr.c | 8 ++++++++
> 3 files changed, 30 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/target/target_core_alua.c b/drivers/target/target_core_alua.c
> index 9179997..41641ba 100644
> --- a/drivers/target/target_core_alua.c
> +++ b/drivers/target/target_core_alua.c
> @@ -218,6 +218,13 @@ int target_emulate_set_target_port_groups(struct se_cmd *cmd)
> cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
> return -EINVAL;
> }
> + if (cmd->data_length < 4) {
> + pr_warn("SET TARGET PORT GROUPS parameter list length %u too"
> + " small\n", cmd->data_length);
> + cmd->scsi_sense_reason = TCM_INVALID_PARAMETER_LIST;
> + return -EINVAL;
> + }
> +
> buf = transport_kmap_data_sg(cmd);
>
> /*
> diff --git a/drivers/target/target_core_iblock.c b/drivers/target/target_core_iblock.c
> index 76db75e..9ba4954 100644
> --- a/drivers/target/target_core_iblock.c
> +++ b/drivers/target/target_core_iblock.c
> @@ -325,17 +325,30 @@ static int iblock_execute_unmap(struct se_cmd *cmd)
> struct iblock_dev *ibd = dev->dev_ptr;
> unsigned char *buf, *ptr = NULL;
> sector_t lba;
> - int size = cmd->data_length;
> + int size;
> u32 range;
> int ret = 0;
> int dl, bd_dl;
>
> + if (cmd->data_length < 8) {
> + pr_warn("UNMAP parameter list length %u too small\n",
> + cmd->data_length);
> + cmd->scsi_sense_reason = TCM_INVALID_PARAMETER_LIST;
> + return -EINVAL;
> + }
> +
> buf = transport_kmap_data_sg(cmd);
>
> dl = get_unaligned_be16(&buf[0]);
> bd_dl = get_unaligned_be16(&buf[2]);
>
> - size = min(size - 8, bd_dl);
> + size = cmd->data_length - 8;
> + if (bd_dl > size)
> + pr_warn("UNMAP parameter list length %u too small, ignoring bd_dl %u\n",
> + cmd->data_length, bd_dl);
> + else
> + size = bd_dl;
> +
> if (size / 16 > dev->se_sub_dev->se_dev_attrib.max_unmap_block_desc_count) {
> cmd->scsi_sense_reason = TCM_INVALID_PARAMETER_LIST;
> ret = -EINVAL;
> diff --git a/drivers/target/target_core_pr.c b/drivers/target/target_core_pr.c
> index 1e94650..956c84c 100644
> --- a/drivers/target/target_core_pr.c
> +++ b/drivers/target/target_core_pr.c
> @@ -1540,6 +1540,14 @@ static int core_scsi3_decode_spec_i_port(
> tidh_new->dest_local_nexus = 1;
> list_add_tail(&tidh_new->dest_list, &tid_dest_list);
>
> + if (cmd->data_length < 28) {
> + pr_warn("SPC-PR: Received PR OUT parameter list"
> + " length too small: %u\n", cmd->data_length);
> + cmd->scsi_sense_reason = TCM_INVALID_PARAMETER_LIST;
> + ret = -EINVAL;
> + goto out;
> + }
> +
> buf = transport_kmap_data_sg(cmd);
> /*
> * For a PERSISTENT RESERVE OUT specify initiator ports payload,
next prev parent reply other threads:[~2012-09-07 18:09 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-07 15:30 [PATCH 00/11] lots of fixes for zero allocation length Paolo Bonzini
2012-09-07 15:30 ` [PATCH 01/11] target: go through normal processing for zero-length PSCSI commands Paolo Bonzini
2012-09-07 18:06 ` Nicholas A. Bellinger
2012-09-07 15:30 ` [PATCH 02/11] target: report too-small parameter lists everywhere Paolo Bonzini
2012-09-07 18:09 ` Nicholas A. Bellinger [this message]
2012-09-07 15:30 ` [PATCH 03/11] target: fail REPORT LUNS with less than 16 bytes of payload Paolo Bonzini
2012-09-07 18:09 ` Nicholas A. Bellinger
2012-09-07 15:30 ` [PATCH 04/11] target: support zero-size allocation lengths in transport_kmap_data_sg Paolo Bonzini
2012-09-07 18:12 ` Nicholas A. Bellinger
2012-09-07 15:30 ` [PATCH 05/11] target: support zero allocation length in REQUEST SENSE Paolo Bonzini
2012-09-07 18:17 ` Nicholas A. Bellinger
2012-09-07 15:30 ` [PATCH 06/11] target: go through normal processing for zero-length REQUEST_SENSE Paolo Bonzini
2012-09-07 18:23 ` Nicholas A. Bellinger
2012-09-07 18:33 ` Nicholas A. Bellinger
2012-09-07 20:34 ` Paolo Bonzini
2012-09-07 15:30 ` [PATCH 07/11] target: support zero allocation length in INQUIRY Paolo Bonzini
2012-09-07 15:30 ` [PATCH 08/11] target: fix truncation of mode data, support zero allocation length Paolo Bonzini
2012-09-07 15:30 ` [PATCH 09/11] target: support zero allocation length in SBC commands Paolo Bonzini
2012-09-07 15:30 ` [PATCH 10/11] target: do not submit a zero-bio I/O request Paolo Bonzini
2012-09-07 15:30 ` [PATCH 11/11] target: go through normal processing for all zero-length commands Paolo Bonzini
2012-09-07 19:01 ` [PATCH 00/11] lots of fixes for zero allocation length Nicholas A. Bellinger
2012-09-10 7:28 ` Christoph Hellwig
2012-09-10 7:48 ` Paolo Bonzini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1347041348.4162.626.camel@haakon2.linux-iscsi.org \
--to=nab@linux-iscsi.org \
--cc=hch@lst.de \
--cc=linux-kernel@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=roland@kernel.org \
--cc=target-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®