1 /* Copyright (C) 1992-2001, 2003, 2004, 2005 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
31 # include <stdio_ext.h>
33 #if !HAVE___FSETLOCKING
34 # define __fsetlocking(stream, type) /* empty */
44 # include "unlocked-io.h"
46 # if !HAVE_DECL_FFLUSH_UNLOCKED
47 # undef fflush_unlocked
48 # define fflush_unlocked(x) fflush (x)
50 # if !HAVE_DECL_FLOCKFILE
52 # define flockfile(x) ((void) 0)
54 # if !HAVE_DECL_FUNLOCKFILE
56 # define funlockfile(x) ((void) 0)
58 # if !HAVE_DECL_FPUTS_UNLOCKED
59 # undef fputs_unlocked
60 # define fputs_unlocked(str,stream) fputs (str, stream)
62 # if !HAVE_DECL_PUTC_UNLOCKED
64 # define putc_unlocked(c,stream) putc (c, stream)
68 /* It is desirable to use this bit on systems that have it.
69 The only bit of terminal state we want to twiddle is echoing, which is
70 done in software; there is no need to change the state of the terminal
78 call_fclose (void *arg
)
85 getpass (const char *prompt
)
90 bool tty_changed
= false;
92 static size_t bufsize
;
95 /* Try to write to and read from the terminal if we can.
96 If we can't open the terminal, use stderr and stdin. */
98 tty
= fopen ("/dev/tty", "w+");
106 /* We do the locking ourselves. */
107 __fsetlocking (tty
, FSETLOCKING_BYCALLER
);
114 /* Turn echoing off if it is on now. */
116 if (tcgetattr (fileno (in
), &t
) == 0)
118 /* Save the old one. */
120 /* Tricky, tricky. */
121 t
.c_lflag
&= ~(ECHO
| ISIG
);
122 tty_changed
= (tcsetattr (fileno (in
), TCSAFLUSH
| TCSASOFT
, &t
) == 0);
126 /* Write the prompt. */
127 fputs_unlocked (prompt
, out
);
128 fflush_unlocked (out
);
130 /* Read the password. */
131 nread
= getline (&buf
, &bufsize
, in
);
133 /* According to the C standard, input may not be followed by output
134 on the same stream without an intervening call to a file
135 positioning function. Suppose in == out; then without this fseek
136 call, on Solaris, HP-UX, AIX, OSF/1, the previous input gets
137 echoed, whereas on IRIX, the following newline is not output as
138 it should be. POSIX imposes similar restrictions if fileno (in)
139 == fileno (out). The POSIX restrictions are tricky and change
140 from POSIX version to POSIX version, so play it safe and invoke
141 fseek even if in != out. */
142 fseek (out
, 0, SEEK_CUR
);
148 else if (buf
[nread
- 1] == '\n')
150 /* Remove the newline. */
151 buf
[nread
- 1] = '\0';
154 /* Write the newline that was not echoed. */
155 putc_unlocked ('\n', out
);
160 /* Restore the original setting. */
163 tcsetattr (fileno (in
), TCSAFLUSH
| TCSASOFT
, &s
);
175 /* Windows implementation by Martin Lambers <marlam@marlam.de>,
176 improved by Simon Josefsson. */
182 # define PASS_MAX 512
186 getpass (const char *prompt
)
188 char getpassbuf
[PASS_MAX
+ 1];
194 fputs (prompt
, stderr
);
203 getpassbuf
[i
] = '\0';
206 else if (i
< PASS_MAX
)
213 getpassbuf
[i
] = '\0';
220 fputs ("\r\n", stderr
);
224 return strdup (getpassbuf
);