From: Al Viro <viro@zeniv.linux.org.uk>
To: Biancaa Ramesh <biancaa2210329@ssn.edu.in>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] replace strcpy with strscpy for safe copy
Date: Wed, 22 Oct 2025 20:23:18 +0100 [thread overview]
Message-ID: <20251022192318.GI2441659@ZenIV> (raw)
In-Reply-To: <20251021143952.37036-1-biancaa2210329@ssn.edu.in>
On Tue, Oct 21, 2025 at 08:09:52PM +0530, Biancaa Ramesh wrote:
> diff --git a/fs/ufs/dir.c b/fs/ufs/dir.c
> index 0388a1bae326..cffb7863adc5 100644
> --- a/fs/ufs/dir.c
> +++ b/fs/ufs/dir.c
> @@ -557,14 +557,14 @@ int ufs_make_empty(struct inode * inode, struct inode *dir)
> ufs_set_de_type(sb, de, inode->i_mode);
> ufs_set_de_namlen(sb, de, 1);
> de->d_reclen = cpu_to_fs16(sb, UFS_DIR_REC_LEN(1));
> - strcpy (de->d_name, ".");
> + strscpy(de->d_name, ".", sizeof(de->d_name));
> de = (struct ufs_dir_entry *)
> ((char *)de + fs16_to_cpu(sb, de->d_reclen));
> de->d_ino = cpu_to_fs32(sb, dir->i_ino);
> ufs_set_de_type(sb, de, dir->i_mode);
> de->d_reclen = cpu_to_fs16(sb, chunk_size - UFS_DIR_REC_LEN(1));
> ufs_set_de_namlen(sb, de, 2);
> - strcpy (de->d_name, "..");
> + strscpy(de->d_name, "..", sizeof(de->d_name));
> kunmap_local(kaddr);
Hard NAK. This kind of cargo-culting is completely pointless.
Think for a second. Really. We are creating "." and ".." entries in freshly
created directory. What your change does is "if directory entry name couldn't
hold a 2-character string, we might have trouble". No shit - we would. Not of
the "overflow something" variety, actually, but there's not much use for a
filesystem that could only handle single-character filenames, is there?
What's worse, you are papering over a real subtlety here: directory entries on
UFS are variable-length. There is a fixed-sized header (8 bytes), followed by
NUL-terminated name. The size of entry is encoded in 16bit field in the header
(offset 4), and name (including NUL) must not be longer than entry length - 8.
struct ufs_dir_entry describes the entry layout, all right, with ->d_name[]
being the last member. It is declared as
__u8 d_name[UFS_MAXNAMLEN + 1]; /* file name */
which is to say, the longest we might need (255+1). So your changes are basically
'check that "." or ".." aren't longer than 255 characters to make sure we are
memory-safe'. However, that does *NOT* guarantee memory safety - the first
entry is actually only 12 bytes long, while the second one spans the rest of the
block. What is relevant is "entry size is at least UFS_DIR_REC_LEN(strlen(name))",
which is true for both entries - the first one is explicitly UFS_DIR_REC_LEN(1)
bytes long, the second - block size - UFS_DIR_REC_LEN(1), which is going to be
greater than UFS_DIR_REC_LEN(2). Block size is going to be over twenty four
bytes, after all...
What we ought to do is turning ->d_name into a flex array:
__u8 d_name[]; /* file name, no more than UFS_MAXNAMLEN + 1 */
at which point your obfuscation^Wimprovement falls apart.
Note that
* use of strscpy() here was *not* any safer than strcpy()
* it _pretended_ to improve safety ("move along, nothing to look
at in this place"), but at the closer look result was a lot more fishy
than the original; it reads as "we have 256 bytes there", which is simply
false.
This is not an improvement.
next prev parent reply other threads:[~2025-10-22 19:23 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-21 14:39 [PATCH] replace strcpy with strscpy for safe copy Biancaa Ramesh
2025-10-22 19:23 ` Al Viro [this message]
2025-10-23 8:20 ` David Laight
-- strict thread matches above, loose matches on Subject: below --
2025-10-21 14:57 Biancaa Ramesh
2025-10-24 0:55 ` Barry Song
2025-10-24 8:37 ` David Laight
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=20251022192318.GI2441659@ZenIV \
--to=viro@zeniv.linux.org.uk \
--cc=biancaa2210329@ssn.edu.in \
--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