mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
Fri Jul 5 17:34:47 1996 Miles Bader <miles@gnu.ai.mit.edu>
* login/logout.c (logout): Do nothing if getutline_r returns ESRCH. * login/pututline_r.c (pututline_r): Since we assign RESULT from lseek now, check that it's >= 0, not == 0. Wed Jul 3 13:28:04 1996 Miles Bader <miles@gnu.ai.mit.edu> * login/login.c (login): Make a copy of *UT, fill in various fields that we supply (ut_line, ut_type, ut_pid), and use the copy in place of UT. * login/getutline_r.c (getutline_r): When we return ESRCH, mark UTMP_DATA->ubuf invalid (by setting UTMP_DATA->loc_utmp to 0).
This commit is contained in:
parent
36abf0d831
commit
2549e7587d
16
ChangeLog
16
ChangeLog
@ -1,3 +1,19 @@
|
|||||||
|
Fri Jul 5 17:34:47 1996 Miles Bader <miles@gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* login/logout.c (logout): Do nothing if getutline_r returns ESRCH.
|
||||||
|
|
||||||
|
* login/pututline_r.c (pututline_r): Since we assign RESULT from
|
||||||
|
lseek now, check that it's >= 0, not == 0.
|
||||||
|
|
||||||
|
Wed Jul 3 13:28:04 1996 Miles Bader <miles@gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* login/login.c (login): Make a copy of *UT, fill in various
|
||||||
|
fields that we supply (ut_line, ut_type, ut_pid), and use the copy
|
||||||
|
in place of UT.
|
||||||
|
|
||||||
|
* login/getutline_r.c (getutline_r): When we return ESRCH, mark
|
||||||
|
UTMP_DATA->ubuf invalid (by setting UTMP_DATA->loc_utmp to 0).
|
||||||
|
|
||||||
Fri Jul 5 12:22:51 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
Fri Jul 5 12:22:51 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
|
||||||
|
|
||||||
* hurd/hurdsig.c (_hurd_internal_post_signal): In case of handled
|
* hurd/hurdsig.c (_hurd_internal_post_signal): In case of handled
|
||||||
|
@ -87,6 +87,13 @@ login (const struct utmp *ut)
|
|||||||
int found_tty;
|
int found_tty;
|
||||||
const char *ttyp;
|
const char *ttyp;
|
||||||
struct utmp_data data = { -1 };
|
struct utmp_data data = { -1 };
|
||||||
|
struct utmp copy = *ut;
|
||||||
|
|
||||||
|
/* Fill in those fields we supply. */
|
||||||
|
#if _HAVE_UT_TYPE - 0
|
||||||
|
copy.ut_type = USER_PROCESS;
|
||||||
|
#endif
|
||||||
|
copy.ut_pid = getpid ();
|
||||||
|
|
||||||
/* Seek tty. */
|
/* Seek tty. */
|
||||||
found_tty = tty_name (STDIN_FILENO, &tty, sizeof (_tty));
|
found_tty = tty_name (STDIN_FILENO, &tty, sizeof (_tty));
|
||||||
@ -97,39 +104,35 @@ login (const struct utmp *ut)
|
|||||||
|
|
||||||
if (found_tty >= 0)
|
if (found_tty >= 0)
|
||||||
{
|
{
|
||||||
|
/* We only want to insert the name of the tty without path. */
|
||||||
|
ttyp = basename (tty);
|
||||||
|
|
||||||
|
/* Position to record for this tty. */
|
||||||
|
strncpy (copy.ut_line, ttyp, UT_LINESIZE);
|
||||||
|
|
||||||
/* Tell that we want to use the UTMP file. */
|
/* Tell that we want to use the UTMP file. */
|
||||||
if (utmpname (_PATH_UTMP) != 0)
|
if (utmpname (_PATH_UTMP) != 0)
|
||||||
{
|
{
|
||||||
struct utmp tmp;
|
|
||||||
struct utmp *old;
|
struct utmp *old;
|
||||||
|
|
||||||
/* Open UTMP file. */
|
/* Open UTMP file. */
|
||||||
setutent_r (&data);
|
setutent_r (&data);
|
||||||
|
|
||||||
/* We only want to insert the name of the tty without path. */
|
|
||||||
ttyp = basename (tty);
|
|
||||||
|
|
||||||
/* Position to record for this tty. */
|
|
||||||
#if _HAVE_UT_TYPE - 0
|
|
||||||
tmp.ut_type = USER_PROCESS;
|
|
||||||
#endif
|
|
||||||
strncpy (tmp.ut_line, ttyp, UT_LINESIZE);
|
|
||||||
|
|
||||||
/* Read the record. */
|
/* Read the record. */
|
||||||
if (getutline_r (&tmp, &old, &data) >= 0)
|
if (getutline_r (©, &old, &data) >= 0)
|
||||||
{
|
{
|
||||||
#if _HAVE_UT_TYPE - 0
|
#if _HAVE_UT_TYPE - 0
|
||||||
/* We have to fake the old entry because this `login'
|
/* We have to fake the old entry because this `login'
|
||||||
function does not fit well into the UTMP file
|
function does not fit well into the UTMP file
|
||||||
handling scheme. */
|
handling scheme. */
|
||||||
old->ut_type = ut->ut_type;
|
old->ut_type = copy.ut_type;
|
||||||
#endif
|
#endif
|
||||||
pututline_r (ut, &data);
|
pututline_r (©, &data);
|
||||||
}
|
}
|
||||||
else if (errno == ESRCH)
|
else if (errno == ESRCH)
|
||||||
/* We didn't find anything. pututline_r will add UT at the end
|
/* We didn't find anything. pututline_r will add UT at the end
|
||||||
of the file in this case. */
|
of the file in this case. */
|
||||||
pututline_r (ut, &data);
|
pututline_r (©, &data);
|
||||||
|
|
||||||
/* Close UTMP file. */
|
/* Close UTMP file. */
|
||||||
endutent_r (&data);
|
endutent_r (&data);
|
||||||
@ -153,9 +156,9 @@ login (const struct utmp *ut)
|
|||||||
/* We have to fake the old entry because this `login'
|
/* We have to fake the old entry because this `login'
|
||||||
function does not fit well into the UTMP file handling
|
function does not fit well into the UTMP file handling
|
||||||
scheme. */
|
scheme. */
|
||||||
data.ubuf.ut_type = ut->ut_type;
|
data.ubuf.ut_type = copy.ut_type;
|
||||||
#endif
|
#endif
|
||||||
pututline_r (ut, &data);
|
pututline_r (©, &data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Close WTMP file. */
|
/* Close WTMP file. */
|
||||||
|
@ -44,7 +44,7 @@ logout (const char *line)
|
|||||||
strncpy (tmp.ut_line, line, sizeof tmp.ut_line);
|
strncpy (tmp.ut_line, line, sizeof tmp.ut_line);
|
||||||
|
|
||||||
/* Read the record. */
|
/* Read the record. */
|
||||||
if (getutline_r (&tmp, &ut, &data) >= 0 || errno == ESRCH)
|
if (getutline_r (&tmp, &ut, &data) >= 0)
|
||||||
{
|
{
|
||||||
/* Clear information about who & from where. */
|
/* Clear information about who & from where. */
|
||||||
bzero (ut->ut_name, sizeof ut->ut_name);
|
bzero (ut->ut_name, sizeof ut->ut_name);
|
||||||
|
Loading…
Reference in New Issue
Block a user