diff options
author | Colin Watson <cjwatson@debian.org> | 2010-04-16 10:25:59 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2010-04-16 10:25:59 +0100 |
commit | 716621abf50722a46f97ecafed5ce134c94f1a81 (patch) | |
tree | 9993f08b7ea89f3038c3cfcf8fd1c71bdc7e7ae7 /loginrec.c | |
parent | ae31b42e02d7bf7004ec0302088f4e169c0f08ce (diff) | |
parent | 78eedc2c60ff4718200f9271d8ee4f437da3a0c5 (diff) |
* New upstream release:
- Unbreak sshd_config's AuthorizedKeysFile option for $HOME-relative
paths.
- Include a language tag when sending a protocol 2 disconnection
message.
- Make logging of certificates used for user authentication more clear
and consistent between CAs specified using TrustedUserCAKeys and
authorized_keys.
Diffstat (limited to 'loginrec.c')
-rw-r--r-- | loginrec.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/loginrec.c b/loginrec.c index bca959707..6f655cb16 100644 --- a/loginrec.c +++ b/loginrec.c | |||
@@ -207,6 +207,7 @@ int syslogin_write_entry(struct logininfo *li); | |||
207 | 207 | ||
208 | int getlast_entry(struct logininfo *li); | 208 | int getlast_entry(struct logininfo *li); |
209 | int lastlog_get_entry(struct logininfo *li); | 209 | int lastlog_get_entry(struct logininfo *li); |
210 | int utmpx_get_entry(struct logininfo *li); | ||
210 | int wtmp_get_entry(struct logininfo *li); | 211 | int wtmp_get_entry(struct logininfo *li); |
211 | int wtmpx_get_entry(struct logininfo *li); | 212 | int wtmpx_get_entry(struct logininfo *li); |
212 | 213 | ||
@@ -508,6 +509,10 @@ getlast_entry(struct logininfo *li) | |||
508 | #ifdef USE_LASTLOG | 509 | #ifdef USE_LASTLOG |
509 | return(lastlog_get_entry(li)); | 510 | return(lastlog_get_entry(li)); |
510 | #else /* !USE_LASTLOG */ | 511 | #else /* !USE_LASTLOG */ |
512 | #if defined(USE_UTMPX) && defined(HAVE_SETUTXDB) && \ | ||
513 | defined(UTXDB_LASTLOGIN) && defined(HAVE_GETUTXUSER) | ||
514 | return (utmpx_get_entry(li)); | ||
515 | #endif | ||
511 | 516 | ||
512 | #if defined(DISABLE_LASTLOG) | 517 | #if defined(DISABLE_LASTLOG) |
513 | /* On some systems we shouldn't even try to obtain last login | 518 | /* On some systems we shouldn't even try to obtain last login |
@@ -1608,6 +1613,32 @@ lastlog_get_entry(struct logininfo *li) | |||
1608 | #endif /* HAVE_GETLASTLOGXBYNAME */ | 1613 | #endif /* HAVE_GETLASTLOGXBYNAME */ |
1609 | #endif /* USE_LASTLOG */ | 1614 | #endif /* USE_LASTLOG */ |
1610 | 1615 | ||
1616 | #if defined(USE_UTMPX) && defined(HAVE_SETUTXDB) && \ | ||
1617 | defined(UTXDB_LASTLOGIN) && defined(HAVE_GETUTXUSER) | ||
1618 | int | ||
1619 | utmpx_get_entry(struct logininfo *li) | ||
1620 | { | ||
1621 | struct utmpx *utx; | ||
1622 | |||
1623 | if (setutxdb(UTXDB_LASTLOGIN, NULL) != 0) | ||
1624 | return (0); | ||
1625 | utx = getutxuser(li->username); | ||
1626 | if (utx == NULL) { | ||
1627 | endutxent(); | ||
1628 | return (0); | ||
1629 | } | ||
1630 | |||
1631 | line_fullname(li->line, utx->ut_line, | ||
1632 | MIN_SIZEOF(li->line, utx->ut_line)); | ||
1633 | strlcpy(li->hostname, utx->ut_host, | ||
1634 | MIN_SIZEOF(li->hostname, utx->ut_host)); | ||
1635 | li->tv_sec = utx->ut_tv.tv_sec; | ||
1636 | li->tv_usec = utx->ut_tv.tv_usec; | ||
1637 | endutxent(); | ||
1638 | return (1); | ||
1639 | } | ||
1640 | #endif /* USE_UTMPX && HAVE_SETUTXDB && UTXDB_LASTLOGIN && HAVE_GETUTXUSER */ | ||
1641 | |||
1611 | #ifdef USE_BTMP | 1642 | #ifdef USE_BTMP |
1612 | /* | 1643 | /* |
1613 | * Logs failed login attempts in _PATH_BTMP if that exists. | 1644 | * Logs failed login attempts in _PATH_BTMP if that exists. |