Switch from LGPL to GPL.
[gnulib.git] / lib / getpass.c
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.
3
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)
7    any later version.
8
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.
13
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.  */
17
18 #if HAVE_CONFIG_H
19 # include <config.h>
20 #endif
21
22 #include <stdio.h>
23 #include <termios.h>
24 #include <unistd.h>
25 #include "getline.h"
26 #include "unlocked-io.h"
27
28 /* It is desirable to use this bit on systems that have it.
29    The only bit of terminal state we want to twiddle is echoing, which is
30    done in software; there is no need to change the state of the terminal
31    hardware.  */
32
33 #ifndef TCSASOFT
34 # define TCSASOFT 0
35 #endif
36
37 char *
38 getpass (const char *prompt)
39 {
40   FILE *in, *out;
41   struct termios s, t;
42   int tty_changed;
43   static char *buf;
44   static size_t bufsize;
45   ssize_t nread;
46
47   /* Try to write to and read from the terminal if we can.
48      If we can't open the terminal, use stderr and stdin.  */
49
50   in = fopen ("/dev/tty", "w+");
51   if (in == NULL)
52     {
53       in = stdin;
54       out = stderr;
55     }
56   else
57     out = in;
58
59   /* Turn echoing off if it is on now.  */
60
61   if (tcgetattr (fileno (in), &t) == 0)
62     {
63       /* Save the old one. */
64       s = t;
65       /* Tricky, tricky. */
66       t.c_lflag &= ~(ECHO|ISIG);
67       tty_changed = (tcsetattr (fileno (in), TCSAFLUSH|TCSASOFT, &t) == 0);
68     }
69   else
70     tty_changed = 0;
71
72   /* Write the prompt.  */
73   fputs (prompt, out);
74   fflush (out);
75
76   /* Read the password.  */
77   nread = getline (&buf, &bufsize, in);
78   if (buf != NULL)
79     {
80       if (nread < 0)
81         buf[0] = '\0';
82       else if (buf[nread - 1] == '\n')
83         {
84           /* Remove the newline.  */
85           buf[nread - 1] = '\0';
86           if (tty_changed)
87             /* Write the newline that was not echoed.  */
88             putc ('\n', out);
89         }
90     }
91
92   /* Restore the original setting.  */
93   if (tty_changed)
94     (void) tcsetattr (fileno (in), TCSAFLUSH|TCSASOFT, &s);
95
96   if (in != stdin)
97     /* We opened the terminal; now close it.  */
98     fclose (in);
99
100   return buf;
101 }