From: Changpeng Liu <changpeng.liu@intel.com>
To: changpeng.liu@intel.com, dev@dpdk.org
Subject: [dpdk-dev] [PATCH 2/2] examples/vhost_scsi: fix potential buffer overrun with safe copy API
Date: Fri, 18 May 2018 07:32:12 +0800 [thread overview]
Message-ID: <1526599932-13083-2-git-send-email-changpeng.liu@intel.com> (raw)
In-Reply-To: <1526599932-13083-1-git-send-email-changpeng.liu@intel.com>
Signed-off-by: Changpeng Liu <changpeng.liu@intel.com>
---
examples/vhost_scsi/scsi.c | 23 ++++++++++++-----------
examples/vhost_scsi/vhost_scsi.c | 5 +++--
2 files changed, 15 insertions(+), 13 deletions(-)
diff --git a/examples/vhost_scsi/scsi.c b/examples/vhost_scsi/scsi.c
index 0c2fa3e..1572098 100644
--- a/examples/vhost_scsi/scsi.c
+++ b/examples/vhost_scsi/scsi.c
@@ -182,8 +182,8 @@
break;
case SPC_VPD_UNIT_SERIAL_NUMBER:
hlen = 4;
- strlcpy((char *)vpage->params, bdev->name,
- sizeof(vpage->params));
+ vhost_strcpy_pad((char *)vpage->params, bdev->name,
+ sizeof(vpage->params), ' ');
vpage->alloc_len = rte_cpu_to_be_16(32);
break;
case SPC_VPD_DEVICE_IDENTIFICATION:
@@ -217,10 +217,11 @@
desig->piv = 1;
desig->reserved1 = 0;
desig->len = 8 + 16 + 32;
- strlcpy((char *)desig->desig, "INTEL", 8);
+ vhost_strcpy_pad((char *)desig->desig, "INTEL", 8, ' ');
vhost_strcpy_pad((char *)&desig->desig[8],
bdev->product_name, 16, ' ');
- strlcpy((char *)&desig->desig[24], bdev->name, 32);
+ vhost_strcpy_pad((char *)&desig->desig[24], bdev->name,
+ 32, ' ');
len += sizeof(struct scsi_desig_desc) + 8 + 16 + 32;
buf += sizeof(struct scsi_desig_desc) + desig->len;
@@ -277,17 +278,17 @@
inqdata->flags3 = 0x2;
/* T10 VENDOR IDENTIFICATION */
- strlcpy((char *)inqdata->t10_vendor_id, "INTEL",
- sizeof(inqdata->t10_vendor_id));
+ vhost_strcpy_pad((char *)inqdata->t10_vendor_id, "INTEL",
+ sizeof(inqdata->t10_vendor_id), ' ');
/* PRODUCT IDENTIFICATION */
- snprintf((char *)inqdata->product_id,
- RTE_DIM(inqdata->product_id), "%s",
- bdev->product_name);
+ vhost_strcpy_pad((char *)inqdata->product_id,
+ bdev->product_name,
+ sizeof(inqdata->product_id), ' ');
/* PRODUCT REVISION LEVEL */
- strlcpy((char *)inqdata->product_rev, "0001",
- sizeof(inqdata->product_rev));
+ vhost_strcpy_pad((char *)inqdata->product_rev, "0001",
+ sizeof(inqdata->product_rev), ' ');
/* Standard inquiry data ends here. Only populate
* remaining fields if alloc_len indicates enough
diff --git a/examples/vhost_scsi/vhost_scsi.c b/examples/vhost_scsi/vhost_scsi.c
index a1d542b..4e57462 100644
--- a/examples/vhost_scsi/vhost_scsi.c
+++ b/examples/vhost_scsi/vhost_scsi.c
@@ -183,8 +183,9 @@ static uint64_t gpa_to_vva(int vid, uint64_t gpa, uint64_t *len)
if (!bdev)
return NULL;
- strncpy(bdev->name, bdev_name, sizeof(bdev->name));
- strncpy(bdev->product_name, bdev_serial, sizeof(bdev->product_name));
+ snprintf(bdev->name, sizeof(bdev->name), "%s", bdev_name);
+ snprintf(bdev->product_name, sizeof(bdev->product_name),
+ "%s", bdev_serial);
bdev->blocklen = blk_size;
bdev->blockcnt = blk_cnt;
bdev->write_cache = wce_enable;
--
1.9.3
next prev parent reply other threads:[~2018-05-17 23:22 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-17 23:32 [dpdk-dev] [PATCH 1/2] examples/vhost_scsi: add virtio-1.0 feature bit support Changpeng Liu
2018-05-17 23:32 ` Changpeng Liu [this message]
2018-05-22 17:47 ` [dpdk-dev] [PATCH 2/2] examples/vhost_scsi: fix potential buffer overrun with safe copy API Thomas Monjalon
2018-05-22 17:58 ` Liu, Changpeng
2018-05-22 18:18 ` Thomas Monjalon
2018-05-18 12:35 ` [dpdk-dev] [PATCH 1/2] examples/vhost_scsi: add virtio-1.0 feature bit support Maxime Coquelin
2018-05-22 17:51 ` Thomas Monjalon
2018-05-22 20:33 ` Thomas Monjalon
2018-05-22 20:45 ` Liu, Changpeng
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=1526599932-13083-2-git-send-email-changpeng.liu@intel.com \
--to=changpeng.liu@intel.com \
--cc=dev@dpdk.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;
as well as URLs for NNTP newsgroup(s).