From: Abdul Rahim <abdul.rahim@myyahoo.com>
To: Parthiban Veerasooran <parthiban.veerasooran@microchip.com>,
Christian Gromm <christian.gromm@microchip.com>
Cc: Abdul Rahim <abdul.rahim@myyahoo.com>,
linux-kernel@vger.kernel.org (open list)
Subject: [PATCH] most: replace strcpy() with strscpy()
Date: Sun, 5 Jan 2025 23:42:19 +0530 [thread overview]
Message-ID: <20250105181224.64697-1-abdul.rahim@myyahoo.com> (raw)
In-Reply-To: <20250105181224.64697-1-abdul.rahim.ref@myyahoo.com>
strcpy() performs no bounds checking on the destination buffer. This
could result in linear overflows beyond the end of the buffer, leading
to all kinds of misbehaviors.[1] The return value is not used here so
direct replacement is safe.
[1]: https://docs.kernel.org/process/deprecated.html#strcpy
Signed-off-by: Abdul Rahim <abdul.rahim@myyahoo.com>
---
drivers/most/configfs.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/most/configfs.c b/drivers/most/configfs.c
index 36d8c917f65f..687e63669ccd 100644
--- a/drivers/most/configfs.c
+++ b/drivers/most/configfs.c
@@ -170,7 +170,7 @@ static ssize_t mdev_link_direction_store(struct config_item *item,
if (!sysfs_streq(page, "dir_rx") && !sysfs_streq(page, "rx") &&
!sysfs_streq(page, "dir_tx") && !sysfs_streq(page, "tx"))
return -EINVAL;
- strcpy(mdev_link->direction, page);
+ strscpy(mdev_link->direction, page);
strim(mdev_link->direction);
return count;
}
@@ -189,7 +189,7 @@ static ssize_t mdev_link_datatype_store(struct config_item *item,
!sysfs_streq(page, "sync") && !sysfs_streq(page, "isoc") &&
!sysfs_streq(page, "isoc_avp"))
return -EINVAL;
- strcpy(mdev_link->datatype, page);
+ strscpy(mdev_link->datatype, page);
strim(mdev_link->datatype);
return count;
}
@@ -438,12 +438,12 @@ static struct config_item *most_common_make_item(struct config_group *group,
&mdev_link_type);
if (!strcmp(group->cg_item.ci_namebuf, "most_cdev"))
- strcpy(mdev_link->comp, "cdev");
+ strscpy(mdev_link->comp, "cdev");
else if (!strcmp(group->cg_item.ci_namebuf, "most_net"))
- strcpy(mdev_link->comp, "net");
+ strscpy(mdev_link->comp, "net");
else if (!strcmp(group->cg_item.ci_namebuf, "most_video"))
- strcpy(mdev_link->comp, "video");
- strcpy(mdev_link->name, name);
+ strscpy(mdev_link->comp, "video");
+ strscpy(mdev_link->name, name);
return &mdev_link->item;
}
@@ -532,8 +532,8 @@ static struct config_item *most_snd_grp_make_item(struct config_group *group,
config_item_init_type_name(&mdev_link->item, name, &mdev_link_type);
mdev_link->create_link = false;
- strcpy(mdev_link->name, name);
- strcpy(mdev_link->comp, "sound");
+ strscpy(mdev_link->name, name);
+ strscpy(mdev_link->comp, "sound");
return &mdev_link->item;
}
--
2.43.0
next parent reply other threads:[~2025-01-05 18:13 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20250105181224.64697-1-abdul.rahim.ref@myyahoo.com>
2025-01-05 18:12 ` Abdul Rahim [this message]
2025-01-06 5:22 ` Parthiban.Veerasooran
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=20250105181224.64697-1-abdul.rahim@myyahoo.com \
--to=abdul.rahim@myyahoo.com \
--cc=christian.gromm@microchip.com \
--cc=linux-kernel@vger.kernel.org \
--cc=parthiban.veerasooran@microchip.com \
/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
all inboxes | Powered by JetHome®