blob: d51286c0b03b3b3e9109a1e20804dbb9d4f3c4a1 [file] [log] [blame]
Szabolcs Nagy57174442013-12-12 05:09:18 +00001#define _GNU_SOURCE
Rich Felker0b44a032011-02-12 00:22:29 -05002#include <stdio.h>
Rich Felker0b44a032011-02-12 00:22:29 -05003#include <termios.h>
4#include <unistd.h>
5#include <fcntl.h>
Rich Felkerea496d62014-07-06 01:34:13 -04006#include <string.h>
Rich Felker0b44a032011-02-12 00:22:29 -05007
8char *getpass(const char *prompt)
9{
10 int fd;
11 struct termios s, t;
12 ssize_t l;
13 static char password[128];
14
Rich Felkerea496d62014-07-06 01:34:13 -040015 if ((fd = open("/dev/tty", O_RDWR|O_NOCTTY|O_CLOEXEC)) < 0) return 0;
Rich Felker0b44a032011-02-12 00:22:29 -050016
17 tcgetattr(fd, &t);
18 s = t;
19 t.c_lflag &= ~(ECHO|ISIG);
20 t.c_lflag |= ICANON;
21 t.c_iflag &= ~(INLCR|IGNCR);
22 t.c_iflag |= ICRNL;
23 tcsetattr(fd, TCSAFLUSH, &t);
24 tcdrain(fd);
25
Rich Felkerea496d62014-07-06 01:34:13 -040026 dprintf(fd, "%s", prompt);
Rich Felker0b44a032011-02-12 00:22:29 -050027
28 l = read(fd, password, sizeof password);
29 if (l >= 0) {
Rich Felker3ec8b3a2017-03-14 15:13:16 -040030 if (l > 0 && password[l-1] == '\n' || l==sizeof password) l--;
Rich Felker0b44a032011-02-12 00:22:29 -050031 password[l] = 0;
32 }
33
34 tcsetattr(fd, TCSAFLUSH, &s);
35
Rich Felkerea496d62014-07-06 01:34:13 -040036 dprintf(fd, "\n");
37 close(fd);
Rich Felker0b44a032011-02-12 00:22:29 -050038
Rich Felkerea496d62014-07-06 01:34:13 -040039 return l<0 ? 0 : password;
Rich Felker0b44a032011-02-12 00:22:29 -050040}