Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Ask for a password |
| 4 | * I use a static buffer in this function. Plan accordingly. |
| 5 | * |
| 6 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
| 7 | * |
Bernhard Reutner-Fischer | 20f4000 | 2006-01-30 17:17:14 +0000 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Bernhard Reutner-Fischer | 20f4000 | 2006-01-30 17:17:14 +0000 | [diff] [blame] | 11 | #include "libbb.h" |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 12 | |
| 13 | /* do nothing signal handler */ |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 14 | static void askpass_timeout(int UNUSED_PARAM ignore) |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 15 | { |
| 16 | } |
| 17 | |
Bernhard Reutner-Fischer | 82b1429 | 2008-12-03 18:48:39 +0000 | [diff] [blame] | 18 | char* FAST_FUNC bb_ask_stdin(const char *prompt) |
| 19 | { |
| 20 | return bb_ask(STDIN_FILENO, 0, prompt); |
| 21 | } |
| 22 | char* FAST_FUNC bb_ask(const int fd, int timeout, const char *prompt) |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 23 | { |
Denis Vlasenko | 91e149a | 2007-06-18 10:35:06 +0000 | [diff] [blame] | 24 | /* Was static char[BIGNUM] */ |
| 25 | enum { sizeof_passwd = 128 }; |
| 26 | static char *passwd; |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 27 | |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 28 | char *ret; |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 29 | int i; |
Denis Vlasenko | e5387a0 | 2007-10-20 19:20:22 +0000 | [diff] [blame] | 30 | struct sigaction sa, oldsa; |
| 31 | struct termios tio, oldtio; |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 32 | |
Bernhard Reutner-Fischer | 82b1429 | 2008-12-03 18:48:39 +0000 | [diff] [blame] | 33 | tcgetattr(fd, &oldtio); |
| 34 | tcflush(fd, TCIFLUSH); |
Denis Vlasenko | e5387a0 | 2007-10-20 19:20:22 +0000 | [diff] [blame] | 35 | tio = oldtio; |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 36 | #ifndef IUCLC |
| 37 | # define IUCLC 0 |
| 38 | #endif |
Denis Vlasenko | e5387a0 | 2007-10-20 19:20:22 +0000 | [diff] [blame] | 39 | tio.c_iflag &= ~(IUCLC|IXON|IXOFF|IXANY); |
| 40 | tio.c_lflag &= ~(ECHO|ECHOE|ECHOK|ECHONL|TOSTOP); |
Denis Vlasenko | 202ac50 | 2008-11-05 13:20:58 +0000 | [diff] [blame] | 41 | tcsetattr_stdin_TCSANOW(&tio); |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 42 | |
Denis Vlasenko | e5387a0 | 2007-10-20 19:20:22 +0000 | [diff] [blame] | 43 | memset(&sa, 0, sizeof(sa)); |
| 44 | /* sa.sa_flags = 0; - no SA_RESTART! */ |
Denys Vlasenko | e936c6d | 2010-02-01 04:55:30 +0100 | [diff] [blame] | 45 | /* SIGINT and SIGALRM will interrupt reads below */ |
Denis Vlasenko | e5387a0 | 2007-10-20 19:20:22 +0000 | [diff] [blame] | 46 | sa.sa_handler = askpass_timeout; |
| 47 | sigaction(SIGINT, &sa, &oldsa); |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 48 | if (timeout) { |
Denis Vlasenko | 8e2cfec | 2008-03-12 23:19:35 +0000 | [diff] [blame] | 49 | sigaction_set(SIGALRM, &sa); |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 50 | alarm(timeout); |
| 51 | } |
| 52 | |
Denis Vlasenko | e5387a0 | 2007-10-20 19:20:22 +0000 | [diff] [blame] | 53 | fputs(prompt, stdout); |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 54 | fflush_all(); |
Denys Vlasenko | e936c6d | 2010-02-01 04:55:30 +0100 | [diff] [blame] | 55 | |
| 56 | if (!passwd) |
| 57 | passwd = xmalloc(sizeof_passwd); |
Denys Vlasenko | e936c6d | 2010-02-01 04:55:30 +0100 | [diff] [blame] | 58 | ret = passwd; |
| 59 | i = 0; |
| 60 | while (1) { |
| 61 | int r = read(fd, &ret[i], 1); |
| 62 | if (r < 0) { |
| 63 | /* read is interrupted by timeout or ^C */ |
| 64 | ret = NULL; |
| 65 | break; |
| 66 | } |
| 67 | if (r == 0 /* EOF */ |
| 68 | || ret[i] == '\r' || ret[i] == '\n' /* EOL */ |
| 69 | || ++i == sizeof_passwd-1 /* line limit */ |
| 70 | ) { |
| 71 | ret[i] = '\0'; |
| 72 | break; |
| 73 | } |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | if (timeout) { |
| 77 | alarm(0); |
| 78 | } |
Denis Vlasenko | 8e2cfec | 2008-03-12 23:19:35 +0000 | [diff] [blame] | 79 | sigaction_set(SIGINT, &oldsa); |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 80 | |
Denis Vlasenko | 202ac50 | 2008-11-05 13:20:58 +0000 | [diff] [blame] | 81 | tcsetattr_stdin_TCSANOW(&oldtio); |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 82 | bb_putchar('\n'); |
Denys Vlasenko | 8131eea | 2009-11-02 14:19:51 +0100 | [diff] [blame] | 83 | fflush_all(); |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 84 | return ret; |
| 85 | } |