From: Heyang Tan <thy15333007817@163.com>
To: jeff.chen_1@nxp.com
Cc: francesco@dolcini.it, johannes@sipsolutions.net,
linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH v3 1/2] wifi: nxpwifi: bound histogram debugfs output
Date: Sat, 19 Sep 2026 12:02:52 +0800 [thread overview]
Message-ID: <20260919040253.590-2-thy15333007817@163.com> (raw)
In-Reply-To: <20260919040253.590-1-thy15333007817@163.com>
nxpwifi_histogram_read() writes histogram entries to a PAGE_SIZE buffer.
Each entry is formatted with sprintf(), so enough populated buckets can
write past the allocation.
Use scnprintf() with the remaining buffer space when formatting the
histogram.
Assisted-by: LLM
Signed-off-by: Heyang Tan <thy15333007817@163.com>
---
drivers/net/wireless/nxp/nxpwifi/debugfs.c | 29 +++++++++++++---------
1 file changed, 17 insertions(+), 12 deletions(-)
diff --git a/drivers/net/wireless/nxp/nxpwifi/debugfs.c b/drivers/net/wireless/nxp/nxpwifi/debugfs.c
index ccaf0eae3..fd738a811 100644
--- a/drivers/net/wireless/nxp/nxpwifi/debugfs.c
+++ b/drivers/net/wireless/nxp/nxpwifi/debugfs.c
@@ -211,25 +211,26 @@ nxpwifi_histogram_read(struct file *file, char __user *ubuf,
phist_data = priv->hist_data;
- p += sprintf(p, "\n"
+ p += scnprintf(p, PAGE_SIZE - (p - (char *)page), "\n"
"total samples = %d\n",
atomic_read(&phist_data->num_samples));
- p += sprintf(p,
+ p += scnprintf(p, PAGE_SIZE - (p - (char *)page),
"rx rates (in Mbps): 0=1M 1=2M 2=5.5M 3=11M 4=6M 5=9M 6=12M\n"
"7=18M 8=24M 9=36M 10=48M 11=54M 12-27=MCS0-15(BW20) 28-43=MCS0-15(BW40)\n");
if (ISSUPP_11ACENABLED(priv->adapter->fw_cap_info)) {
- p += sprintf(p,
+ p += scnprintf(p, PAGE_SIZE - (p - (char *)page),
"44-53=MCS0-9(VHT:BW20) 54-63=MCS0-9(VHT:BW40) 64-73=MCS0-9(VHT:BW80)\n\n");
} else {
- p += sprintf(p, "\n");
+ p += scnprintf(p, PAGE_SIZE - (p - (char *)page), "\n");
}
for (i = 0; i < NXPWIFI_MAX_RX_RATES; i++) {
value = atomic_read(&phist_data->rx_rate[i]);
if (value)
- p += sprintf(p, "rx_rate[%02d] = %d\n", i, value);
+ p += scnprintf(p, PAGE_SIZE - (p - (char *)page),
+ "rx_rate[%02d] = %d\n", i, value);
}
if (ISSUPP_11ACENABLED(priv->adapter->fw_cap_info)) {
@@ -237,27 +238,31 @@ nxpwifi_histogram_read(struct file *file, char __user *ubuf,
i++) {
value = atomic_read(&phist_data->rx_rate[i]);
if (value)
- p += sprintf(p, "rx_rate[%02d] = %d\n",
- i, value);
+ p += scnprintf(p, PAGE_SIZE - (p - (char *)page),
+ "rx_rate[%02d] = %d\n",
+ i, value);
}
}
for (i = 0; i < NXPWIFI_MAX_SNR; i++) {
value = atomic_read(&phist_data->snr[i]);
if (value)
- p += sprintf(p, "snr[%02ddB] = %d\n", i, value);
+ p += scnprintf(p, PAGE_SIZE - (p - (char *)page),
+ "snr[%02ddB] = %d\n", i, value);
}
for (i = 0; i < NXPWIFI_MAX_NOISE_FLR; i++) {
value = atomic_read(&phist_data->noise_flr[i]);
if (value)
- p += sprintf(p, "noise_flr[%02ddBm] = %d\n",
- (int)(i - 128), value);
+ p += scnprintf(p, PAGE_SIZE - (p - (char *)page),
+ "noise_flr[%02ddBm] = %d\n",
+ (int)(i - 128), value);
}
for (i = 0; i < NXPWIFI_MAX_SIG_STRENGTH; i++) {
value = atomic_read(&phist_data->sig_str[i]);
if (value)
- p += sprintf(p, "sig_strength[-%02ddBm] = %d\n",
- i, value);
+ p += scnprintf(p, PAGE_SIZE - (p - (char *)page),
+ "sig_strength[-%02ddBm] = %d\n",
+ i, value);
}
ret = simple_read_from_buffer(ubuf, count, ppos, (char *)page,
--
2.34.1
next prev parent reply other threads:[~2026-09-19 4:03 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-19 4:02 [PATCH v3 0/2] wifi: nxpwifi: bound " Heyang Tan
2026-09-19 4:02 ` Heyang Tan [this message]
2026-09-21 8:08 ` [PATCH v3 1/2] wifi: nxpwifi: bound histogram " Jeff Chen
2026-09-19 4:44 ` [PATCH v3 2/2] wifi: nxpwifi: bound debug info output Heyang Tan
2026-09-21 8:59 ` Jeff Chen
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=20260919040253.590-2-thy15333007817@163.com \
--to=thy15333007817@163.com \
--cc=francesco@dolcini.it \
--cc=jeff.chen_1@nxp.com \
--cc=johannes@sipsolutions.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@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
all inboxes | Powered by JetHome®