Skip to content

Commit a150275

Browse files
Wang Haorangregkh
authored andcommitted
scsi: target: target_core_configfs: Add length check to avoid buffer overflow
commit 27e06650a5eafe832a90fd2604f0c5e920857fae upstream. A buffer overflow arises from the usage of snprintf to write into the buffer "buf" in target_lu_gp_members_show function located in /drivers/target/target_core_configfs.c. This buffer is allocated with size LU_GROUP_NAME_BUF (256 bytes). snprintf(...) formats multiple strings into buf with the HBA name (hba->hba_group.cg_item), a slash character, a devicename (dev-> dev_group.cg_item) and a newline character, the total formatted string length may exceed the buffer size of 256 bytes. Since snprintf() returns the total number of bytes that would have been written (the length of %s/%sn ), this value may exceed the buffer length (256 bytes) passed to memcpy(), this will ultimately cause function memcpy reporting a buffer overflow error. An additional check of the return value of snprintf() can avoid this buffer overflow. Reported-by: Wang Haoran <[email protected]> Reported-by: ziiiro <[email protected]> Signed-off-by: Wang Haoran <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 0424e4e commit a150275

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/target/target_core_configfs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2774,7 +2774,7 @@ static ssize_t target_lu_gp_members_show(struct config_item *item, char *page)
27742774
config_item_name(&dev->dev_group.cg_item));
27752775
cur_len++; /* Extra byte for NULL terminator */
27762776

2777-
if ((cur_len + len) > PAGE_SIZE) {
2777+
if ((cur_len + len) > PAGE_SIZE || cur_len > LU_GROUP_NAME_BUF) {
27782778
pr_warn("Ran out of lu_gp_show_attr"
27792779
"_members buffer\n");
27802780
break;

0 commit comments

Comments
 (0)