Skip to content

Commit d792d4c

Browse files
labbottmartinkpetersen
authored andcommitted
scsi: ibmvscsis: Fix a stringop-overflow warning
There's currently a warning about string overflow with strncat: drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c: In function 'ibmvscsis_probe': drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c:3479:2: error: 'strncat' specified bound 64 equals destination size [-Werror=stringop-overflow=] strncat(vscsi->eye, vdev->name, MAX_EYE); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Switch to a single snprintf instead of a strcpy + strcat to handle this cleanly. Signed-off-by: Laura Abbott <labbott@redhat.com> Suggested-by: Kees Cook <keescook@chromium.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
1 parent cbe3fd3 commit d792d4c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3474,8 +3474,7 @@ static int ibmvscsis_probe(struct vio_dev *vdev,
34743474
vscsi->dds.window[LOCAL].liobn,
34753475
vscsi->dds.window[REMOTE].liobn);
34763476

3477-
strcpy(vscsi->eye, "VSCSI ");
3478-
strncat(vscsi->eye, vdev->name, MAX_EYE);
3477+
snprintf(vscsi->eye, sizeof(vscsi->eye), "VSCSI %s", vdev->name);
34793478

34803479
vscsi->dds.unit_id = vdev->unit_address;
34813480
strncpy(vscsi->dds.partition_name, partition_name,

0 commit comments

Comments
 (0)