From: Cyrill Gorcunov <gorcunov@gmail.com>
To: LKML <linux-kernel@vger.kernel.org>
Cc: Jean Delvare <jdelvare@suse.com>
Subject: [PATCH] firmware: dmi: Respect buffer size in get_modalias
Date: Thu, 20 Feb 2025 23:53:28 +0300 [thread overview]
Message-ID: <Z7eWSCCqp_HP3iSh@grain> (raw)
When we collect data from DMI data the result is accumulated either
in a page buffer from sysfs entry or from uevent environment buffer.
Both are big enough (4K and 2K) and it is hard to imagine that we
overflow 4K page with the data, still the situation is different for
uevent buffer where buffer may be already filled with data and we
possibly may overflow it.
Thus lets respect buffer size given by a caller and never write
data unconditionally.
CC: Jean Delvare <jdelvare@suse.com>
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
---
drivers/firmware/dmi-id.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
Index: linux-tip.git/drivers/firmware/dmi-id.c
===================================================================
--- linux-tip.git.orig/drivers/firmware/dmi-id.c
+++ linux-tip.git/drivers/firmware/dmi-id.c
@@ -103,8 +103,12 @@ static ssize_t get_modalias(char *buffer
char *p;
const struct mafield *f;
- strcpy(buffer, "dmi");
- p = buffer + 3; left = buffer_size - 4;
+ l = strscpy(buffer, "dmi", buffer_size);
+ if (l < 0)
+ return 0;
+ p = buffer + l; left = buffer_size - l - 1;
+ if (left < 0)
+ return 0;
for (f = fields; f->prefix && left > 0; f++) {
const char *c;
@@ -135,7 +139,7 @@ static ssize_t sys_dmi_modalias_show(str
struct device_attribute *attr, char *page)
{
ssize_t r;
- r = get_modalias(page, PAGE_SIZE-1);
+ r = get_modalias(page, PAGE_SIZE-2);
page[r] = '\n';
page[r+1] = 0;
return r+1;
@@ -163,7 +167,7 @@ static int dmi_dev_uevent(const struct d
return -ENOMEM;
len = get_modalias(&env->buf[env->buflen - 1],
sizeof(env->buf) - env->buflen);
- if (len >= (sizeof(env->buf) - env->buflen))
+ if (!len || len >= (sizeof(env->buf) - env->buflen))
return -ENOMEM;
env->buflen += len;
return 0;
next reply other threads:[~2025-02-20 20:53 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-20 20:53 Cyrill Gorcunov [this message]
2025-03-12 19:54 ` [PATCH] firmware: dmi: Respect buffer size in get_modalias Cyrill Gorcunov
2025-03-13 18:41 ` Jean Delvare
2025-03-13 22:11 ` Cyrill Gorcunov
2025-03-29 22:39 ` [PATCH v2] " Cyrill Gorcunov
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=Z7eWSCCqp_HP3iSh@grain \
--to=gorcunov@gmail.com \
--cc=jdelvare@suse.com \
--cc=linux-kernel@vger.kernel.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