getpass.c
2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <termios.h>
/* Alain: Parts originally from GNU Lib C. */
static void
echo_off(int fd, struct termios *stored_settings)
{
struct termios new_settings;
tcgetattr (fd, stored_settings);
new_settings = *stored_settings;
new_settings.c_lflag &= (~ECHO);
tcsetattr (fd, TCSANOW, &new_settings);
}
static void
echo_on(int fd, struct termios *stored_settings)
{
tcsetattr (fd, TCSANOW, stored_settings);
}
char *
getpass (const char * prompt)
{
FILE *in, *out;
struct termios stored_settings;
static char *buf;
static size_t buf_size;
char *pbuf;
/* First pass initialize the buffer. */
if (buf_size == 0)
{
buf_size = 256;
buf = calloc (1, buf_size);
if (buf == NULL)
return NULL;
}
else
memset (buf, '\0', buf_size);
/* Turn echoing off if it is on now. */
echo_off (fileno (stdin), &stored_settings);
/* Write the prompt. */
fputs (prompt, stdout);
fflush (stdout);
/* Read the password. */
pbuf = fgets (buf, buf_size, stdin);
if (pbuf)
{
size_t nread = strlen (pbuf);
if (nread && pbuf[nread - 1] == '\n')
{
/* Remove the newline. */
pbuf[nread - 1] = '\0';
/* Write the newline that was not echoed. */
putc ('\n', stdout);
}
}
/* Restore the original setting. */
echo_on (fileno (stdin), &stored_settings);
return pbuf;
}
#ifdef _GETPASS_STANDALONE_TEST
int
main ()
{
char *p;
p = getpass ("my prompt: ");
if (p)
printf ("Passwd: %s\n", p);
return 0;
}
#endif