mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
net: hns3: fix strncpy() not using dest-buf length as length issue
[ Upstream commit 1cf3d5567f ]
Now, strncpy() in hns3_dbg_fill_content() use src-length as copy-length,
it may result in dest-buf overflow.
This patch is to fix intel compile warning for csky-linux-gcc (GCC) 12.1.0
compiler.
The warning reports as below:
hclge_debugfs.c:92:25: warning: 'strncpy' specified bound depends on
the length of the source argument [-Wstringop-truncation]
strncpy(pos, items[i].name, strlen(items[i].name));
hclge_debugfs.c:90:25: warning: 'strncpy' output truncated before
terminating nul copying as many bytes from a string as its length
[-Wstringop-truncation]
strncpy(pos, result[i], strlen(result[i]));
strncpy() use src-length as copy-length, it may result in
dest-buf overflow.
So,this patch add some values check to avoid this issue.
Signed-off-by: Hao Chen <chenhao418@huawei.com>
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/lkml/202207170606.7WtHs9yS-lkp@intel.com/T/
Signed-off-by: Hao Lan <lanhao@huawei.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
39695e87d8
commit
da64c8889f
@@ -435,19 +435,36 @@ static void hns3_dbg_fill_content(char *content, u16 len,
|
||||
const struct hns3_dbg_item *items,
|
||||
const char **result, u16 size)
|
||||
{
|
||||
#define HNS3_DBG_LINE_END_LEN 2
|
||||
char *pos = content;
|
||||
u16 item_len;
|
||||
u16 i;
|
||||
|
||||
memset(content, ' ', len);
|
||||
for (i = 0; i < size; i++) {
|
||||
if (result)
|
||||
strncpy(pos, result[i], strlen(result[i]));
|
||||
else
|
||||
strncpy(pos, items[i].name, strlen(items[i].name));
|
||||
|
||||
pos += strlen(items[i].name) + items[i].interval;
|
||||
if (!len) {
|
||||
return;
|
||||
} else if (len <= HNS3_DBG_LINE_END_LEN) {
|
||||
*pos++ = '\0';
|
||||
return;
|
||||
}
|
||||
|
||||
memset(content, ' ', len);
|
||||
len -= HNS3_DBG_LINE_END_LEN;
|
||||
|
||||
for (i = 0; i < size; i++) {
|
||||
item_len = strlen(items[i].name) + items[i].interval;
|
||||
if (len < item_len)
|
||||
break;
|
||||
|
||||
if (result) {
|
||||
if (item_len < strlen(result[i]))
|
||||
break;
|
||||
strscpy(pos, result[i], strlen(result[i]));
|
||||
} else {
|
||||
strscpy(pos, items[i].name, strlen(items[i].name));
|
||||
}
|
||||
pos += item_len;
|
||||
len -= item_len;
|
||||
}
|
||||
*pos++ = '\n';
|
||||
*pos++ = '\0';
|
||||
}
|
||||
|
||||
@@ -87,16 +87,35 @@ static void hclge_dbg_fill_content(char *content, u16 len,
|
||||
const struct hclge_dbg_item *items,
|
||||
const char **result, u16 size)
|
||||
{
|
||||
#define HCLGE_DBG_LINE_END_LEN 2
|
||||
char *pos = content;
|
||||
u16 item_len;
|
||||
u16 i;
|
||||
|
||||
if (!len) {
|
||||
return;
|
||||
} else if (len <= HCLGE_DBG_LINE_END_LEN) {
|
||||
*pos++ = '\0';
|
||||
return;
|
||||
}
|
||||
|
||||
memset(content, ' ', len);
|
||||
len -= HCLGE_DBG_LINE_END_LEN;
|
||||
|
||||
for (i = 0; i < size; i++) {
|
||||
if (result)
|
||||
strncpy(pos, result[i], strlen(result[i]));
|
||||
else
|
||||
strncpy(pos, items[i].name, strlen(items[i].name));
|
||||
pos += strlen(items[i].name) + items[i].interval;
|
||||
item_len = strlen(items[i].name) + items[i].interval;
|
||||
if (len < item_len)
|
||||
break;
|
||||
|
||||
if (result) {
|
||||
if (item_len < strlen(result[i]))
|
||||
break;
|
||||
strscpy(pos, result[i], strlen(result[i]));
|
||||
} else {
|
||||
strscpy(pos, items[i].name, strlen(items[i].name));
|
||||
}
|
||||
pos += item_len;
|
||||
len -= item_len;
|
||||
}
|
||||
*pos++ = '\n';
|
||||
*pos++ = '\0';
|
||||
|
||||
Reference in New Issue
Block a user