1 /* Copyright (C) 1992,93,94,95,96,97,98,99,2000, 2001 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
30 /* It is desirable to use this bit on systems that have it.
31 The only bit of terminal state we want to twiddle is echoing, which is
32 done in software; there is no need to change the state of the terminal
41 getpass (const char *prompt
)
51 static size_t bufsize
;
54 /* Try to write to and read from the terminal if we can.
55 If we can't open the terminal, use stderr and stdin. */
57 in
= fopen ("/dev/tty", "w+");
66 /* Turn echoing off if it is on now. */
68 if (tcgetattr (fileno (in
), &t
) == 0)
70 /* Save the old one. */
73 t
.c_lflag
&= ~(ECHO
|ISIG
);
74 tty_changed
= (tcsetattr (fileno (in
), TCSAFLUSH
|TCSASOFT
, &t
) == 0);
79 /* Write the prompt. */
83 /* Read the password. */
84 nread
= getline (&buf
, &bufsize
, in
);
89 else if (buf
[nread
- 1] == '\n')
91 /* Remove the newline. */
92 buf
[nread
- 1] = '\0';
95 /* Write the newline that was not echoed. */
96 if (out
== in
) fseek (out
, 0, SEEK_CUR
);
102 /* Restore the original setting. */
104 (void) tcsetattr (fileno (in
), TCSAFLUSH
|TCSASOFT
, &s
);
107 /* We opened the terminal; now close it. */