* [PATCH v4 0/2] debugfs: fix UAF and double-free in debugfs_str read/write
[not found] <DLPDB44JJRGJ.3K6JNS746M71C@kernel.org>
@ 2026-09-26 19:58 ` Aldo Ariel Panzardo
2026-09-26 19:58 ` [PATCH v4 1/2] debugfs: fix use-after-free in debugfs_read_file_str() Aldo Ariel Panzardo
2026-09-26 19:58 ` [PATCH v4 2/2] debugfs: serialize concurrent writers in debugfs_write_file_str() Aldo Ariel Panzardo
0 siblings, 2 replies; 3+ messages in thread
From: Aldo Ariel Panzardo @ 2026-09-26 19:58 UTC (permalink / raw)
To: gregkh, rafael, dakr
Cc: johan, driver-core, linux-kernel, stable, Aldo Ariel Panzardo
Changes since v3:
- Patch 1/2: drop GFP_ATOMIC as suggested by Danilo. Measure the
string length under rcu_read_lock(), allocate with GFP_KERNEL
outside the RCU critical section, then re-read and copy with
strscpy() under a second rcu_read_lock(). If the current string
no longer fits the allocated buffer, retry with a PAGE_SIZE
allocation (upper bound enforced by the write path).
- Patch 2/2: unchanged.
- KASAN stress testing with both fixes applied completed with 0
reports; the concurrent-writer reproducer produces ~3900 double-free
reports without patch 2.
Danilo also suggested introducing a struct debugfs_string with explicit
synchronization to provide callers with a proper synchronization
contract. I agree that would address the broader API issue,
and I'd be happy to work on it as a separate follow-up series
if you think that would be useful.
v3: regenerate patches with git format-patch (v2 failed to apply).
v2: split into two patches, add Assisted-by, include KASAN splat.
v1: https://lore.kernel.org/driver-core/20260925175831.3701812-1-qwe.aldo@gmail.com/
Aldo Ariel Panzardo (2):
debugfs: fix use-after-free in debugfs_read_file_str()
debugfs: serialize concurrent writers in debugfs_write_file_str()
fs/debugfs/file.c | 55 ++++++++++++++++++++++++++++++-----------------
1 file changed, 35 insertions(+), 20 deletions(-)
base-commit: 6812ce4e4379ffc99c52401ec28f0d7ffbc36206
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v4 1/2] debugfs: fix use-after-free in debugfs_read_file_str()
2026-09-26 19:58 ` [PATCH v4 0/2] debugfs: fix UAF and double-free in debugfs_str read/write Aldo Ariel Panzardo
@ 2026-09-26 19:58 ` Aldo Ariel Panzardo
2026-09-26 19:58 ` [PATCH v4 2/2] debugfs: serialize concurrent writers in debugfs_write_file_str() Aldo Ariel Panzardo
1 sibling, 0 replies; 3+ messages in thread
From: Aldo Ariel Panzardo @ 2026-09-26 19:58 UTC (permalink / raw)
To: gregkh, rafael, dakr
Cc: johan, driver-core, linux-kernel, stable, Aldo Ariel Panzardo,
sashiko . dev
debugfs_write_file_str() publishes a new string pointer via
rcu_assign_pointer(), waits for a grace period with synchronize_rcu(),
then frees the old string.
debugfs_read_file_str() dereferences file->private_data without holding
an RCU read-side critical section: it loads the pointer, calls strlen()
on it, and then copies the string. If a concurrent writer completes
synchronize_rcu() and kfree()s the old string between the load and the
use, the reader accesses freed memory.
Fix by measuring the string length under rcu_read_lock(), allocating
with GFP_KERNEL outside the critical section, and then copying with
strscpy() under a second rcu_read_lock(). If the current string no
longer fits the allocated buffer, retry with a PAGE_SIZE allocation
which is the upper bound enforced by the write path.
Cc: stable@vger.kernel.org
Assisted-by: sashiko.dev <sashiko-bot@kernel.org>
Signed-off-by: Aldo Ariel Panzardo <qwe.aldo@gmail.com>
---
fs/debugfs/file.c | 39 +++++++++++++++++++++++++--------------
1 file changed, 25 insertions(+), 14 deletions(-)
diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c
index 08de6652a..f9a1f7739 100644
--- a/fs/debugfs/file.c
+++ b/fs/debugfs/file.c
@@ -1018,7 +1018,7 @@ ssize_t debugfs_read_file_str(struct file *file, char __user *user_buf,
size_t count, loff_t *ppos)
{
struct dentry *dentry = F_DENTRY(file);
- char *str, *copy = NULL;
+ char *str, *copy;
int copy_len, len;
ssize_t ret;
@@ -1026,26 +1026,37 @@ ssize_t debugfs_read_file_str(struct file *file, char __user *user_buf,
if (unlikely(ret))
return ret;
- str = *(char **)file->private_data;
- len = strlen(str) + 1;
- copy = kmalloc(len, GFP_KERNEL);
- if (!copy) {
- debugfs_file_put(dentry);
- return -ENOMEM;
- }
+ len = 0;
+ for (;;) {
+ rcu_read_lock();
+ str = rcu_dereference(*(char __rcu **)file->private_data);
+ len = max_t(int, strlen(str) + 1, len);
+ rcu_read_unlock();
+
+ copy = kmalloc(len, GFP_KERNEL);
+ if (!copy) {
+ debugfs_file_put(dentry);
+ return -ENOMEM;
+ }
+
+ rcu_read_lock();
+ str = rcu_dereference(*(char __rcu **)file->private_data);
+ copy_len = strscpy(copy, str, len);
+ rcu_read_unlock();
+
+ if (copy_len >= 0)
+ break;
- copy_len = strscpy(copy, str, len);
- debugfs_file_put(dentry);
- if (copy_len < 0) {
kfree(copy);
- return copy_len;
+ len = PAGE_SIZE;
}
- copy[copy_len] = '\n';
+ debugfs_file_put(dentry);
+ copy[copy_len] = '\n';
+ len = copy_len + 1;
ret = simple_read_from_buffer(user_buf, count, ppos, copy, len);
kfree(copy);
-
return ret;
}
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v4 2/2] debugfs: serialize concurrent writers in debugfs_write_file_str()
2026-09-26 19:58 ` [PATCH v4 0/2] debugfs: fix UAF and double-free in debugfs_str read/write Aldo Ariel Panzardo
2026-09-26 19:58 ` [PATCH v4 1/2] debugfs: fix use-after-free in debugfs_read_file_str() Aldo Ariel Panzardo
@ 2026-09-26 19:58 ` Aldo Ariel Panzardo
1 sibling, 0 replies; 3+ messages in thread
From: Aldo Ariel Panzardo @ 2026-09-26 19:58 UTC (permalink / raw)
To: gregkh, rafael, dakr
Cc: johan, driver-core, linux-kernel, stable, Aldo Ariel Panzardo,
sashiko . dev
debugfs_write_file_str() reads the current string pointer into `old`,
builds a replacement, publishes it with rcu_assign_pointer(), then frees
`old` after synchronize_rcu(). There is no mutual exclusion between
concurrent writers through the same inode: two simultaneous calls can
both load the same `old` pointer before either publishes a replacement,
and when both later call kfree(old), the result is a double-free.
Serialize writers with inode_lock(). Use rcu_dereference_protected() to
load `old` under the held lock, satisfying lockdep annotation. Release
the lock before synchronize_rcu() + kfree() so RCU readers are not
stalled during the grace period.
Tested on QEMU/KVM (7.3.0-rc4 + KASAN). A reproducer that spawns
concurrent write() calls on a debugfs string file triggers the
double-free reliably (~3900 KASAN reports in a single run):
BUG: KASAN: double-free in debugfs_write_file_str+0x194/0x200
Free of addr ffff888104542ec0 by task poc/305
Call Trace:
kasan_report_invalid_free+0xb8/0xe0
check_slab_allocation+0xd9/0x100
kfree+0x163/0x510
debugfs_write_file_str+0x194/0x200
vfs_write+0x1ed/0x920
ksys_write+0xe5/0x1a0
Allocated by task 307:
__kmalloc_noprof+0x264/0x680
debugfs_write_file_str+0x106/0x200
Freed by task 306:
kfree+0x2e5/0x510
debugfs_write_file_str+0x194/0x200
Cc: stable@vger.kernel.org
Assisted-by: sashiko.dev <sashiko-bot@kernel.org>
Signed-off-by: Aldo Ariel Panzardo <qwe.aldo@gmail.com>
---
fs/debugfs/file.c | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c
index f9a1f7739..7a9d33772 100644
--- a/fs/debugfs/file.c
+++ b/fs/debugfs/file.c
@@ -1072,40 +1072,44 @@ static ssize_t debugfs_write_file_str(struct file *file, const char __user *user
if (unlikely(r))
return r;
- old = *(char **)file->private_data;
+ inode_lock(file_inode(file));
+ old = rcu_dereference_protected(*(char __rcu **)file->private_data,
+ lockdep_is_held(&file_inode(file)->i_rwsem));
/* only allow strict concatenation */
r = -EINVAL;
if (pos && pos != strlen(old))
- goto error;
+ goto unlock;
r = -E2BIG;
if (pos + count + 1 > PAGE_SIZE)
- goto error;
+ goto unlock;
r = -ENOMEM;
new = kmalloc(pos + count + 1, GFP_KERNEL);
if (!new)
- goto error;
+ goto unlock;
if (pos)
memcpy(new, old, pos);
r = -EFAULT;
if (copy_from_user(new + pos, user_buf, count))
- goto error;
+ goto unlock;
new[pos + count] = '\0';
strim(new);
rcu_assign_pointer(*(char __rcu **)file->private_data, new);
+ inode_unlock(file_inode(file));
synchronize_rcu();
kfree(old);
debugfs_file_put(dentry);
return count;
-error:
+unlock:
+ inode_unlock(file_inode(file));
kfree(new);
debugfs_file_put(dentry);
return r;
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-26 19:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <DLPDB44JJRGJ.3K6JNS746M71C@kernel.org>
2026-09-26 19:58 ` [PATCH v4 0/2] debugfs: fix UAF and double-free in debugfs_str read/write Aldo Ariel Panzardo
2026-09-26 19:58 ` [PATCH v4 1/2] debugfs: fix use-after-free in debugfs_read_file_str() Aldo Ariel Panzardo
2026-09-26 19:58 ` [PATCH v4 2/2] debugfs: serialize concurrent writers in debugfs_write_file_str() Aldo Ariel Panzardo
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®