]> andersk Git - openssh.git/blame - readpass.c
*** empty log message ***
[openssh.git] / readpass.c
CommitLineData
8efc0c15 1/*
5260325f 2 *
3 * readpass.c
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Mon Jul 10 22:08:59 1995 ylo
11 *
12 * Functions for reading passphrases and passwords.
13 *
14 */
8efc0c15 15
16#include "includes.h"
17RCSID("$Id$");
18
19#include "xmalloc.h"
20#include "ssh.h"
21
22/* Saved old terminal mode for read_passphrase. */
23static struct termios saved_tio;
24
25/* Old interrupt signal handler for read_passphrase. */
5260325f 26static void (*old_handler) (int sig) = NULL;
8efc0c15 27
28/* Interrupt signal handler for read_passphrase. */
29
5260325f 30void
31intr_handler(int sig)
8efc0c15 32{
5260325f 33 /* Restore terminal modes. */
34 tcsetattr(fileno(stdin), TCSANOW, &saved_tio);
35 /* Restore the old signal handler. */
36 signal(sig, old_handler);
37 /* Resend the signal, with the old handler. */
38 kill(getpid(), sig);
8efc0c15 39}
40
5260325f 41/* Reads a passphrase from /dev/tty with echo turned off. Returns the
42 passphrase (allocated with xmalloc). Exits if EOF is encountered.
8efc0c15 43 The passphrase if read from stdin if from_stdin is true (as is the
44 case with ssh-keygen). */
45
5260325f 46char *
47read_passphrase(const char *prompt, int from_stdin)
8efc0c15 48{
5260325f 49 char buf[1024], *cp;
50 struct termios tio;
51 FILE *f;
52
53 if (from_stdin)
54 f = stdin;
55 else {
56 /* Read the passphrase from /dev/tty to make it possible
57 to ask it even when stdin has been redirected. */
58 f = fopen("/dev/tty", "r");
59 if (!f) {
60 /* No controlling terminal and no DISPLAY. Nowhere to read. */
61 fprintf(stderr, "You have no controlling tty and no DISPLAY. Cannot read passphrase.\n");
62 exit(1);
63 }
8efc0c15 64 }
8efc0c15 65
5260325f 66 /* Display the prompt (on stderr because stdout might be redirected). */
67 fflush(stdout);
68 fprintf(stderr, "%s", prompt);
69 fflush(stderr);
70
71 /* Get terminal modes. */
72 tcgetattr(fileno(f), &tio);
73 saved_tio = tio;
74 /* Save signal handler and set the new handler. */
75 old_handler = signal(SIGINT, intr_handler);
76
77 /* Set new terminal modes disabling all echo. */
78 tio.c_lflag &= ~(ECHO | ECHOE | ECHOK | ECHONL);
79 tcsetattr(fileno(f), TCSANOW, &tio);
80
81 /* Read the passphrase from the terminal. */
82 if (fgets(buf, sizeof(buf), f) == NULL) {
83 /* Got EOF. Just exit. */
84 /* Restore terminal modes. */
85 tcsetattr(fileno(f), TCSANOW, &saved_tio);
86 /* Restore the signal handler. */
87 signal(SIGINT, old_handler);
88 /* Print a newline (the prompt probably didn\'t have one). */
89 fprintf(stderr, "\n");
90 /* Close the file. */
91 if (f != stdin)
92 fclose(f);
93 exit(1);
94 }
95 /* Restore terminal modes. */
96 tcsetattr(fileno(f), TCSANOW, &saved_tio);
97 /* Restore the signal handler. */
98 (void) signal(SIGINT, old_handler);
99 /* Remove newline from the passphrase. */
100 if (strchr(buf, '\n'))
101 *strchr(buf, '\n') = 0;
102 /* Allocate a copy of the passphrase. */
103 cp = xstrdup(buf);
104 /* Clear the buffer so we don\'t leave copies of the passphrase
105 laying around. */
106 memset(buf, 0, sizeof(buf));
107 /* Print a newline since the prompt probably didn\'t have one. */
108 fprintf(stderr, "\n");
109 /* Close the file. */
110 if (f != stdin)
111 fclose(f);
112 return cp;
8efc0c15 113}
This page took 0.184721 seconds and 5 git commands to generate.