* [PATCH] passt-repair: Ensure that read buffer is NULL-terminated
@ 2025-04-03 19:04 Stefano Brivio
2025-04-03 23:34 ` David Gibson
0 siblings, 1 reply; 2+ messages in thread
From: Stefano Brivio @ 2025-04-03 19:04 UTC (permalink / raw)
To: passt-dev; +Cc: David Gibson
After 3d41e4d83895 ("passt-repair: Correct off-by-one error verifying
name"), Coverity Scan isn't convinced anymore about the fact that the
ev->name used in the snprintf() is NULL-terminated.
It comes from a read() call, and read() of course doesn't terminate
it, but we already check that the byte at ev->len - 1 is a NULL
terminator, so this is actually a false positive.
In any case, the logic ensuring that ev->name is NULL-terminated isn't
necessarily obvious, and additionally checking that the last byte in
the buffer we read is a NULL terminator is harmless, so do that
explicitly, even if it's redundant.
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
---
passt-repair.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/passt-repair.c b/passt-repair.c
index 440c77a..256a8c9 100644
--- a/passt-repair.c
+++ b/passt-repair.c
@@ -137,6 +137,7 @@ int main(int argc, char **argv)
fprintf(stderr, "inotify read: %i", errno);
_exit(1);
}
+ buf[n - 1] = '\0';
if (n < (ssize_t)sizeof(*ev)) {
fprintf(stderr, "Short inotify read: %zi", n);
--
@@ -137,6 +137,7 @@ int main(int argc, char **argv)
fprintf(stderr, "inotify read: %i", errno);
_exit(1);
}
+ buf[n - 1] = '\0';
if (n < (ssize_t)sizeof(*ev)) {
fprintf(stderr, "Short inotify read: %zi", n);
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] passt-repair: Ensure that read buffer is NULL-terminated
2025-04-03 19:04 [PATCH] passt-repair: Ensure that read buffer is NULL-terminated Stefano Brivio
@ 2025-04-03 23:34 ` David Gibson
0 siblings, 0 replies; 2+ messages in thread
From: David Gibson @ 2025-04-03 23:34 UTC (permalink / raw)
To: Stefano Brivio; +Cc: passt-dev
[-- Attachment #1: Type: text/plain, Size: 1642 bytes --]
On Thu, Apr 03, 2025 at 09:04:43PM +0200, Stefano Brivio wrote:
> After 3d41e4d83895 ("passt-repair: Correct off-by-one error verifying
> name"), Coverity Scan isn't convinced anymore about the fact that the
> ev->name used in the snprintf() is NULL-terminated.
Aww, man :(
> It comes from a read() call, and read() of course doesn't terminate
> it, but we already check that the byte at ev->len - 1 is a NULL
> terminator, so this is actually a false positive.
Indeed. I'm kind of baffled that it's able to reason it out with the
off-by-one, but not without.
> In any case, the logic ensuring that ev->name is NULL-terminated isn't
> necessarily obvious, and additionally checking that the last byte in
> the buffer we read is a NULL terminator is harmless, so do that
> explicitly, even if it's redundant.
>
> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Vexing that it's necessary, but
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> passt-repair.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/passt-repair.c b/passt-repair.c
> index 440c77a..256a8c9 100644
> --- a/passt-repair.c
> +++ b/passt-repair.c
> @@ -137,6 +137,7 @@ int main(int argc, char **argv)
> fprintf(stderr, "inotify read: %i", errno);
> _exit(1);
> }
> + buf[n - 1] = '\0';
>
> if (n < (ssize_t)sizeof(*ev)) {
> fprintf(stderr, "Short inotify read: %zi", n);
--
David Gibson (he or they) | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you, not the other way
| around.
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-04-03 23:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-03 19:04 [PATCH] passt-repair: Ensure that read buffer is NULL-terminated Stefano Brivio
2025-04-03 23:34 ` David Gibson
Code repositories for project(s) associated with this public inbox
https://passt.top/passt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).