Re: target: Add support for EXTENDED_COPY copy offload emulation

From: Nicholas A. Bellinger
Date: Mon Sep 16 2013 - 16:42:42 EST


Hi Dave,

On Fri, 2013-09-13 at 16:43 -0400, Dave Jones wrote:
> On Fri, Sep 13, 2013 at 12:01:21AM +0000, Linux Kernel wrote:
> > Gitweb: http://git.kernel.org/linus/;a=commit;h=cbf031f425fd0b30ff10ba83b612753189a6bbbf
> > Commit: cbf031f425fd0b30ff10ba83b612753189a6bbbf
> > Parent: 89c12cc925a7d0982dc53b743a42108acc76aef4
> > Author: Nicholas Bellinger <nab@xxxxxxxxxxxxx>
> > AuthorDate: Tue Aug 20 15:38:55 2013 -0700
> > Committer: Nicholas Bellinger <nab@xxxxxxxxxxxxxxx>
> > CommitDate: Tue Sep 10 16:48:43 2013 -0700
> >
> > target: Add support for EXTENDED_COPY copy offload emulation
>
> ...
>
> > +static int target_xcopy_parse_segdesc_02(struct se_cmd *se_cmd, struct xcopy_op *xop,
> > + unsigned char *p)
> > +{
> > + unsigned char *desc = p;
> > + int dc = (desc[1] & 0x02);
> > + unsigned short desc_len;
> > +
> > + desc_len = get_unaligned_be16(&desc[2]);
> > + if (desc_len != 0x18) {
> > + pr_err("XCOPY segment desc 0x02: Illegal desc_len:"
> > + " %hu\n", desc_len);
> > + return -EINVAL;
> > + }
> > +
> > + xop->stdi = get_unaligned_be16(&desc[4]);
> > + xop->dtdi = get_unaligned_be16(&desc[6]);
> > + pr_debug("XCOPY seg desc 0x02: desc_len: %hu stdi: %hu dtdi: %hu, DC: %d\n",
> > + desc_len, xop->stdi, xop->dtdi, dc);
> > +
> > + xop->nolb = get_unaligned_be16(&desc[10]);
> > + xop->src_lba = get_unaligned_be64(&desc[12]);
> > + xop->dst_lba = get_unaligned_be64(&desc[20]);
> > + pr_debug("XCOPY seg desc 0x02: nolb: %hu src_lba: %llu dst_lba: %llu\n",
> > + xop->nolb, (unsigned long long)xop->src_lba,
> > + (unsigned long long)xop->dst_lba);
> > +
> > + if (dc != 0) {
> > + xop->dbl = (desc[29] << 16) & 0xff;
> > + xop->dbl |= (desc[30] << 8) & 0xff;
> > + xop->dbl |= desc[31] & 0xff;
> > +
> > + pr_debug("XCOPY seg desc 0x02: DC=1 w/ dbl: %u\n", xop->dbl);
> > + }
> > + return 0;
> > +}
>
> Coverity picked up a new warning in this code.
> It notes that (desc[30] << 8) & 0xff is always zero.
>
> Did you want
>
> xop->dbl = (desc[29] >> 16) & 0xff;
>
> instead maybe ?
>

Mmmm, the left shift and bitwise AND are reversed..

Adding the following patch for v3.12-rc target-fixes.

Thanks for reporting!

--nab

diff --git a/drivers/target/target_core_xcopy.c b/drivers/target/target_core_xcopy.c
index 4d22e7d..3da4fd1 100644
--- a/drivers/target/target_core_xcopy.c
+++ b/drivers/target/target_core_xcopy.c
@@ -298,8 +298,8 @@ static int target_xcopy_parse_segdesc_02(struct se_cmd *se_cmd, struct xcopy_op
(unsigned long long)xop->dst_lba);

if (dc != 0) {
- xop->dbl = (desc[29] << 16) & 0xff;
- xop->dbl |= (desc[30] << 8) & 0xff;
+ xop->dbl = (desc[29] & 0xff) << 16;
+ xop->dbl |= (desc[30] & 0xff) << 8;
xop->dbl |= desc[31] & 0xff;

pr_debug("XCOPY seg desc 0x02: DC=1 w/ dbl: %u\n", xop->dbl);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/