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 | |
| 11 | #include <stdio.h> |
| 12 | #include <string.h> |
| 13 | #include <unistd.h> |
| 14 | #include <fcntl.h> |
| 15 | #include <signal.h> |
| 16 | #include <termios.h> |
| 17 | #include <sys/ioctl.h> |
Bernhard Reutner-Fischer | 20f4000 | 2006-01-30 17:17:14 +0000 | [diff] [blame] | 18 | |
| 19 | #include "libbb.h" |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 20 | |
| 21 | /* do nothing signal handler */ |
Bernhard Reutner-Fischer | 20f4000 | 2006-01-30 17:17:14 +0000 | [diff] [blame] | 22 | static void askpass_timeout(int ATTRIBUTE_UNUSED ignore) |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 23 | { |
| 24 | } |
| 25 | |
| 26 | char *bb_askpass(int timeout, const char * prompt) |
| 27 | { |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 28 | static char passwd[64]; |
| 29 | |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 30 | char *ret; |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 31 | int i; |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 32 | struct sigaction sa; |
| 33 | struct termios old, new; |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 34 | |
| 35 | tcgetattr(STDIN_FILENO, &old); |
Rob Landley | e422af6 | 2005-12-12 07:02:15 +0000 | [diff] [blame] | 36 | tcflush(STDIN_FILENO, TCIFLUSH); |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 37 | |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 38 | memset(passwd, 0, sizeof(passwd)); |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 39 | |
| 40 | fputs(prompt, stdout); |
| 41 | fflush(stdout); |
| 42 | |
| 43 | tcgetattr(STDIN_FILENO, &new); |
| 44 | new.c_iflag &= ~(IUCLC|IXON|IXOFF|IXANY); |
| 45 | new.c_lflag &= ~(ECHO|ECHOE|ECHOK|ECHONL|TOSTOP); |
| 46 | tcsetattr(STDIN_FILENO, TCSANOW, &new); |
| 47 | |
| 48 | if (timeout) { |
| 49 | sa.sa_flags = 0; |
| 50 | sa.sa_handler = askpass_timeout; |
| 51 | sigaction(SIGALRM, &sa, NULL); |
| 52 | alarm(timeout); |
| 53 | } |
| 54 | |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 55 | ret = NULL; |
| 56 | if (read(STDIN_FILENO, passwd, sizeof(passwd)-1) > 0) { |
| 57 | ret = passwd; |
| 58 | i = 0; |
| 59 | /* Last byte is guaranteed to be 0 |
| 60 | (read did not overwrite it) */ |
| 61 | do { |
| 62 | if (passwd[i] == '\r' || passwd[i] == '\n') |
| 63 | passwd[i] = 0; |
| 64 | } while (passwd[i++]); |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | if (timeout) { |
| 68 | alarm(0); |
| 69 | } |
| 70 | |
| 71 | tcsetattr(STDIN_FILENO, TCSANOW, &old); |
Denis Vlasenko | 6429aab | 2006-09-23 12:22:11 +0000 | [diff] [blame] | 72 | puts(""); |
Eric Andersen | 6f9a778 | 2004-05-01 01:27:30 +0000 | [diff] [blame] | 73 | fflush(stdout); |
| 74 | return ret; |
| 75 | } |