]> granicus.if.org Git - procps-ng/commitdiff
w: make sure null terminated ut_* strings are used
authorThorsten Kukuk <kukuk@suse.com>
Tue, 7 Mar 2023 10:42:20 +0000 (11:42 +0100)
committerCraig Small <csmall@dropbear.xyz>
Tue, 7 Mar 2023 20:30:56 +0000 (07:30 +1100)
strncpy does not null terminate a string if it has the maximal length.
Use always the null terminated variants for ut_user and ut_line.

Signed-off-by: Thorsten Kukuk <kukuk@suse.com>
src/w.c

diff --git a/src/w.c b/src/w.c
index 5e878f04c87197e9c27895e0c61f2828ea69e06b..80a867b9677b1f46ff77dc59b58e0faddb116ce9 100644 (file)
--- a/src/w.c
+++ b/src/w.c
@@ -32,8 +32,6 @@
 #include <getopt.h>
 #include <limits.h>
 #include <locale.h>
-#include <locale.h>
-#include <pwd.h>
 #include <pwd.h>
 #include <signal.h>
 #include <stdio.h>
@@ -490,9 +488,10 @@ static void showinfo(
 
     /* force NUL term for printf */
     strncpy(uname, u->ut_user, UT_NAMESIZE);
+    uname[UT_NAMESIZE] = '\0';
 
     if (formtype) {
-        printf("%-*.*s%-9.8s", userlen + 1, userlen, uname, u->ut_line);
+        printf("%-*.*s%-9.8s", userlen + 1, userlen, uname, tty + 5);
         if (from)
             print_from(u, ip_addresses, fromlen);
 #ifdef HAVE_UTMPX_H
@@ -514,8 +513,7 @@ static void showinfo(
         else
             printf("   ?   ");
     } else {
-        printf("%-*.*s%-9.8s", userlen + 1, userlen, u->ut_user,
-               u->ut_line);
+        printf("%-*.*s%-9.8s", userlen + 1, userlen, uname, tty + 5);
         if (from)
             print_from(u, ip_addresses, fromlen);
         if (*u->ut_line == ':')