X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/blobdiff_plain/847e88652a0028225e3725f7769c50af3956766c..70e0115b85ffe0019f356795784f457d39858e68:/bsd-login.c diff --git a/bsd-login.c b/bsd-login.c index a2ec7414..eccb29ee 100644 --- a/bsd-login.c +++ b/bsd-login.c @@ -45,7 +45,7 @@ static char *rcsid = "$OpenBSD: login.c,v 1.5 1998/07/13 02:11:12 millert Exp $" #include #include #include -#ifdef HAVE_UTMPX_H +#if defined(HAVE_UTMPX_H) && defined(USE_UTMPX) # include #endif #ifdef HAVE_UTMP_H @@ -54,53 +54,63 @@ static char *rcsid = "$OpenBSD: login.c,v 1.5 1998/07/13 02:11:12 millert Exp $" #include #include +#if defined(HAVE_UTMPX_H) && defined(USE_UTMPX) +void +login(utp,utx) + struct utmp *utp; + struct utmpx *utx; +#else /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */ void login(utp) - struct UTMP_STR *utp; + struct utmp *utp; +#endif /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */ { - struct UTMP_STR old_ut; +#if defined(HAVE_HOST_IN_UTMP) + struct utmp old_ut; +#endif +#if defined(HAVE_UTMPX_H) && defined(USE_UTMPX) + struct utmpx *old_utx; +#endif /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */ register int fd; int tty; -#ifndef UT_LINESIZE -# define UT_LINESIZE (sizeof(old_ut.ut_line)) -# ifdef HAVE_UTMPX_H -# define UT_NAMESIZE (sizeof(old_ut.ut_user)) -# else + tty = ttyslot(); + if (tty > 0 && (fd = open(_PATH_UTMP, O_RDWR|O_CREAT, 0644)) >= 0) { + +#if defined(HAVE_HOST_IN_UTMP) +# ifndef UT_LINESIZE +# define UT_LINESIZE (sizeof(old_ut.ut_line)) # define UT_NAMESIZE (sizeof(old_ut.ut_name)) -# endif -# ifdef HAVE_HOST_IN_UTMP # define UT_HOSTSIZE (sizeof(old_ut.ut_host)) # endif -# ifdef HAVE_HOST_IN_UTMPX -# define UT_HOSTSIZE (sizeof(old_ut.ut_host)) -# endif -#endif - - tty = ttyslot(); - if (tty > 0 && (fd = open(_PATH_UTMP, O_RDWR|O_CREAT, 0644)) >= 0) { -#if defined(HAVE_HOST_IN_UTMP) || defined(HAVE_HOST_IN_UTMPX) - (void)lseek(fd, (off_t)(tty * sizeof(struct UTMP_STR)), SEEK_SET); + (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET); /* * Prevent luser from zero'ing out ut_host. * If the new ut_line is empty but the old one is not * and ut_line and ut_name match, preserve the old ut_line. */ - if (read(fd, &old_ut, sizeof(struct UTMP_STR)) == - sizeof(struct UTMP_STR) && utp->ut_host[0] == '\0' && + if (read(fd, &old_ut, sizeof(struct utmp)) == + sizeof(struct utmp) && utp->ut_host[0] == '\0' && old_ut.ut_host[0] != '\0' && strncmp(old_ut.ut_line, utp->ut_line, UT_LINESIZE) == 0 && strncmp(old_ut.ut_name, utp->ut_name, UT_NAMESIZE) == 0) (void)memcpy(utp->ut_host, old_ut.ut_host, UT_HOSTSIZE); -#endif /* defined(HAVE_HOST_IN_UTMP) || defined(HAVE_HOST_IN_UTMPX) */ - (void)lseek(fd, (off_t)(tty * sizeof(struct UTMP_STR)), SEEK_SET); - (void)write(fd, utp, sizeof(struct UTMP_STR)); +#endif /* defined(HAVE_HOST_IN_UTMP) */ + (void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET); + (void)write(fd, utp, sizeof(struct utmp)); (void)close(fd); } if ((fd = open(_PATH_WTMP, O_WRONLY|O_APPEND, 0)) >= 0) { - (void)write(fd, utp, sizeof(struct UTMP_STR)); + (void)write(fd, utp, sizeof(struct utmp)); (void)close(fd); } +#if defined(HAVE_UTMPX_H) && defined(USE_UTMPX) + old_utx = pututxline(utx); +# ifdef HAVE_UPDWTMPX + updwtmpx(_PATH_WTMPX, utx); +# endif /* HAVE_UPDWTMPX */ + endutxent(); +#endif /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */ } #endif /* HAVE_LOGIN */