1 /* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
28 /* Return the result of ttyname in the buffer pointed to by TTY, which should
29 be of length BUF_LEN. If it is too long to fit in this buffer, a
30 sufficiently long buffer is allocated using malloc, and returned in TTY.
31 0 is returned upon success, -1 otherwise. */
33 tty_name (int fd
, char **tty
, size_t buf_len
)
35 int rv
; /* Return value. 0 = success. */
36 char *buf
= *tty
; /* Buffer for ttyname, initially the user's. */
44 rv
= ttyname_r (fd
, buf
, buf_len
);
46 if (rv
!= 0 || memchr (buf
, '\0', buf_len
))
47 /* We either got an error, or we succeeded and the
48 returned name fit in the buffer. */
51 /* Try again with a longer buffer. */
52 buf_len
+= buf_len
; /* Double it */
55 /* No initial buffer; start out by mallocing one. */
56 buf_len
= 128; /* First time guess. */
59 /* We've already malloced another buffer at least once. */
60 new_buf
= realloc (buf
, buf_len
);
62 new_buf
= malloc (buf_len
);
73 *tty
= buf
; /* Return buffer to the user. */
75 free (buf
); /* Free what we malloced when returning an error. */
81 login (const struct utmp
*ut
)
84 char _tty
[PATH_MAX
+ UT_LINESIZE
];
86 char _tty
[512 + UT_LINESIZE
];
91 struct utmp copy
= *ut
;
93 /* Fill in those fields we supply. */
95 copy
.ut_type
= USER_PROCESS
;
98 copy
.ut_pid
= getpid ();
102 found_tty
= tty_name (STDIN_FILENO
, &tty
, sizeof (_tty
));
104 found_tty
= tty_name (STDOUT_FILENO
, &tty
, sizeof (_tty
));
106 found_tty
= tty_name (STDERR_FILENO
, &tty
, sizeof (_tty
));
110 /* We only want to insert the name of the tty without path. */
111 ttyp
= basename (tty
);
113 /* Position to record for this tty. */
114 strncpy (copy
.ut_line
, ttyp
, UT_LINESIZE
);
116 /* Tell that we want to use the UTMP file. */
117 if (utmpname (_PATH_UTMP
) == 0)
119 /* Open UTMP file. */
122 /* Write the entry. */
125 /* Close UTMP file. */
130 free (tty
); /* Free buffer malloced by tty_name. */
133 /* Update the WTMP file. Here we have to add a new entry. */
134 updwtmp (_PATH_WTMP
, ©
);