]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/cvs/lib/getpass.c
This commit was generated by cvs2svn to compensate for changes in r174206,
[FreeBSD/FreeBSD.git] / contrib / cvs / 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 #ifndef SEEK_CUR
24 #define SEEK_CUR 1
25 #endif
26 #include <termios.h>
27 #include <unistd.h>
28 #include "getline.h"
29
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
33    hardware.  */
34
35 #ifndef TCSASOFT
36 # define TCSASOFT 0
37 #endif
38
39 char *
40 getpass (const char *prompt)
41 {
42   FILE *in, *out;
43   struct termios s, t;
44   int tty_changed;
45   static char *buf;
46   static size_t bufsize;
47   ssize_t nread;
48
49   /* Try to write to and read from the terminal if we can.
50      If we can't open the terminal, use stderr and stdin.  */
51
52   in = fopen ("/dev/tty", "w+");
53   if (in == NULL)
54     {
55       in = stdin;
56       out = stderr;
57     }
58   else
59     out = in;
60
61   /* Turn echoing off if it is on now.  */
62
63   if (tcgetattr (fileno (in), &t) == 0)
64     {
65       /* Save the old one. */
66       s = t;
67       /* Tricky, tricky. */
68       t.c_lflag &= ~(ECHO|ISIG);
69       tty_changed = (tcsetattr (fileno (in), TCSAFLUSH|TCSASOFT, &t) == 0);
70     }
71   else
72     tty_changed = 0;
73
74   /* Write the prompt.  */
75   fputs (prompt, out);
76   fflush (out);
77
78   /* Read the password.  */
79   nread = getline (&buf, &bufsize, in);
80   if (buf != NULL)
81     {
82       if (nread < 0)
83         buf[0] = '\0';
84       else if (buf[nread - 1] == '\n')
85         {
86           /* Remove the newline.  */
87           buf[nread - 1] = '\0';
88           if (tty_changed)
89             {
90               /* Write the newline that was not echoed.  */
91               if (out == in) fseek (out, 0, SEEK_CUR);
92               putc ('\n', out);
93             }
94         }
95     }
96
97   /* Restore the original setting.  */
98   if (tty_changed)
99     (void) tcsetattr (fileno (in), TCSAFLUSH|TCSASOFT, &s);
100
101   if (in != stdin)
102     /* We opened the terminal; now close it.  */
103     fclose (in);
104
105   return buf;
106 }