Remove config.status implicit rule.
[usmb.git] / password.c
blob63918b34a2b02f746504ef5205dff4da279a0138
1 /* usmb - mount SMB shares via FUSE and Samba
2 * Copyright (C) 2006-2009 Geoff Johnstone
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #include "config.h"
18 #include <assert.h>
19 #include <stdbool.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <termios.h>
24 #include <unistd.h>
25 #include "password.h"
26 #include "utils.h"
29 bool password_read (char **out)
31 struct termios attr, new;
33 assert (NULL != out);
34 *out = NULL;
36 if (0 != tcgetattr (STDIN_FILENO, &attr))
38 perror ("tcgetattr");
39 fputs ("Cannot configure terminal to read password securely.\n", stderr);
40 return false;
43 new = attr;
44 new.c_lflag &= ~ECHO;
46 if (0 != tcsetattr (STDIN_FILENO, TCSAFLUSH, &new))
48 perror ("tcsetattr");
49 fputs ("Cannot configure terminal to read password securely.\n", stderr);
50 return false;
53 bool ok = false;
54 char buff[1024];
56 fputs ("\nPassword: ", stdout);
57 fflush (stdout);
58 ok = (buff == fgets (buff, sizeof (buff), stdin));
59 fputc ('\n', stdout);
61 if (0 != tcsetattr (STDIN_FILENO, TCSAFLUSH, &attr))
63 perror ("tcsetattr");
64 fputs ("Failed to reset terminal.\n", stderr);
67 // strip a trailing '\n'.
69 size_t len = strlen (buff);
71 if ((0 < len) && ('\n' == buff[len - 1]))
72 buff[len - 1] = '\0';
75 *out = xstrdup (buff);
76 memset (buff, 0, sizeof (buff));
78 DEBUG (fprintf (stderr, "Password: %s\n", *out));
80 return (NULL != *out);