Skip site navigation (1)Skip section navigation (2)
Date:      6 May 2005 09:23:29 -0000
From:      Przemyslaw Frasunek <venglin@freebsd.lublin.pl>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   bin/80687: [patch] Missing NULL termination after strncpy() in login(1)
Message-ID:  <20050506092329.47889.qmail@lagoon.freebsd.lublin.pl>
Resent-Message-ID: <200505060930.j469U0H5031314@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         80687
>Category:       bin
>Synopsis:       [patch] Missing NULL termination after strncpy() in login(1)
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri May 06 09:30:00 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Przemyslaw Frasunek
>Release:        FreeBSD 4.11-STABLE i386
>Organization:
czuby.net
>Environment:
System: FreeBSD lagoon.freebsd.lublin.pl 4.11-STABLE FreeBSD 4.11-STABLE #0: Tue Feb 8 12:36:09 CET 2005 root@riget.scene.pl:/usr/src/sys/compile/RIGET i386

>Description:
	Similar to bin/80661
>How-To-Repeat:
	N/A
>Fix:
--- usr.bin/login/login.c.old   Fri May  6 11:20:19 2005
+++ usr.bin/login/login.c       Fri May  6 11:20:36 2005
@@ -512,10 +512,10 @@
        /* Nothing else left to fail -- really log in. */
        memset((void *)&utmp, 0, sizeof(utmp));
        (void)time(&utmp.ut_time);
-       (void)strncpy(utmp.ut_name, username, sizeof(utmp.ut_name));
+       (void)strlcpy(utmp.ut_name, username, sizeof(utmp.ut_name));
        if (hostname)
-               (void)strncpy(utmp.ut_host, hostname, sizeof(utmp.ut_host));
-       (void)strncpy(utmp.ut_line, tty, sizeof(utmp.ut_line));
+               (void)strlcpy(utmp.ut_host, hostname, sizeof(utmp.ut_host));
+       (void)strlcpy(utmp.ut_line, tty, sizeof(utmp.ut_line));
        login(&utmp);

        dolastlog(quietlog);
@@ -1015,9 +1015,9 @@
                }
                memset((void *)&ll, 0, sizeof(ll));
                (void)time(&ll.ll_time);
-               (void)strncpy(ll.ll_line, tty, sizeof(ll.ll_line));
+               (void)strlcpy(ll.ll_line, tty, sizeof(ll.ll_line));
                if (hostname)
-                       (void)strncpy(ll.ll_host, hostname, sizeof(ll.ll_host));+                       (void)strlcpy(ll.ll_host, hostname, sizeof(ll.ll_host));                (void)write(fd, (char *)&ll, sizeof(ll));
                (void)close(fd);
        } else {

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050506092329.47889.qmail>