fs/d_path.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-)
dynamic_dname() has had an implicit limit of 64 characters since it was
introduced in commit c23fbb6bcb3e ("VFS: delay the dentry name
generation on sockets and pipes"), however it seems that this was a
fairly arbitrary number (suspiciously it was double the previously
hardcoded buffer size).
NAME_MAX seems like a more reasonable and consistent limit for d_name
lengths. While we're at it, we can also remove the unnecessary
stack-allocated array and just memmove() the formatted string to the end
of the buffer.
It should also be noted that at least one driver (in particular,
liveupdate's usage of anon_inode for session files) already exceeded
this limit without noticing that readlink(/proc/self/fd/$n) always
returns -ENAMETOOLONG, so this fixes those drivers as well.
Fixes: 0153094d03df ("liveupdate: luo_session: add sessions support")
Fixes: c23fbb6bcb3e ("VFS: delay the dentry name generation on sockets and pipes")
Signed-off-by: Aleksa Sarai <aleksa@amutable.com>
---
fs/d_path.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/fs/d_path.c b/fs/d_path.c
index bb365511066b..a48957c0971e 100644
--- a/fs/d_path.c
+++ b/fs/d_path.c
@@ -301,18 +301,19 @@ EXPORT_SYMBOL(d_path);
char *dynamic_dname(char *buffer, int buflen, const char *fmt, ...)
{
va_list args;
- char temp[64];
+ char *start;
int sz;
va_start(args, fmt);
- sz = vsnprintf(temp, sizeof(temp), fmt, args) + 1;
+ sz = vsnprintf(buffer, buflen, fmt, args) + 1;
va_end(args);
- if (sz > sizeof(temp) || sz > buflen)
+ if (sz > NAME_MAX || sz > buflen)
return ERR_PTR(-ENAMETOOLONG);
- buffer += buflen - sz;
- return memcpy(buffer, temp, sz);
+ /* Move the formatted d_name to the end of the buffer. */
+ start = buffer + (buflen - sz);
+ return memmove(start, buffer, sz);
}
char *simple_dname(struct dentry *dentry, char *buffer, int buflen)
---
base-commit: 84f524dca4b8bc9e9aca8ea1dbbd2aa3a239d998
change-id: 20260401-dynamic-dname-name_max-8d14dcb9acd0
Kind regards,
--
Aleksa Sarai
https://www.cyphar.com/
On Tue, 31 Mar 2026 at 15:46, Aleksa Sarai <aleksa@amutable.com> wrote:
>
> dynamic_dname() has had an implicit limit of 64 characters since it was
> introduced in commit c23fbb6bcb3e ("VFS: delay the dentry name
> generation on sockets and pipes"), however it seems that this was a
> fairly arbitrary number (suspiciously it was double the previously
> hardcoded buffer size).
>
> NAME_MAX seems like a more reasonable and consistent limit for d_name
> lengths. While we're at it, we can also remove the unnecessary
> stack-allocated array and just memmove() the formatted string to the end
> of the buffer.
>
> It should also be noted that at least one driver (in particular,
> liveupdate's usage of anon_inode for session files) already exceeded
> this limit without noticing that readlink(/proc/self/fd/$n) always
> returns -ENAMETOOLONG, so this fixes those drivers as well.
>
> Fixes: 0153094d03df ("liveupdate: luo_session: add sessions support")
> Fixes: c23fbb6bcb3e ("VFS: delay the dentry name generation on sockets and pipes")
> Signed-off-by: Aleksa Sarai <aleksa@amutable.com>
> ---
> fs/d_path.c | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
Tested-by: Luca Boccassi <luca.boccassi@gmail.com>
Thanks, works nicely, tested on top of 7.0-rc5
© 2016 - 2026 Red Hat, Inc.