source: branches/samba-3.3.x/source/lib/replace/getpass.c@ 259

Last change on this file since 259 was 259, checked in by Herwig Bauernfeind, 16 years ago

Preliminary fix for password prompt (by diver) in 3.3 branch

File size: 5.0 KB
Line 
1/* Copyright (C) 1992-1998 Free Software Foundation, Inc.
2This file is part of the GNU C Library.
3
4The GNU C Library is free software; you can redistribute it and/or
5modify it under the terms of the GNU Lesser General Public License as
6published by the Free Software Foundation; either version 3 of the
7License, or (at your option) any later version.
8
9The GNU C Library is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12Library General Public License for more details.
13
14You should have received a copy of the GNU Lesser General Public
15License along with the GNU C Library; see the file COPYING.LIB. If
16not, see <http://www.gnu.org/licenses/>. */
17
18/* Modified to use with samba by Jeremy Allison, 8th July 1995. */
19
20#include "replace.h"
21#include "system/filesys.h"
22#include "system/wait.h"
23#include "system/terminal.h"
24#include "system/passwd.h"
25
26/*
27 * Define additional missing types
28 */
29#ifndef HAVE_SIG_ATOMIC_T_TYPE
30typedef int sig_atomic_t;
31#endif
32
33#ifndef SIGCLD
34#define SIGCLD SIGCHLD
35#endif
36
37#ifndef SIGNAL_CAST
38#define SIGNAL_CAST (RETSIGTYPE (*)(int))
39#endif
40
41#ifdef SYSV_TERMIO
42
43/* SYSTEM V TERMIO HANDLING */
44
45static struct termio t;
46
47#define ECHO_IS_ON(t) ((t).c_lflag & ECHO)
48#define TURN_ECHO_OFF(t) ((t).c_lflag &= ~ECHO)
49#define TURN_ECHO_ON(t) ((t).c_lflag |= ECHO)
50
51#ifndef TCSAFLUSH
52#define TCSAFLUSH 1
53#endif
54
55#ifndef TCSANOW
56#define TCSANOW 0
57#endif
58
59static int tcgetattr(int fd, struct termio *_t)
60{
61 return ioctl(fd, TCGETA, _t);
62}
63
64static int tcsetattr(int fd, int flags, struct termio *_t)
65{
66 if(flags & TCSAFLUSH)
67 ioctl(fd, TCFLSH, TCIOFLUSH);
68 return ioctl(fd, TCSETS, _t);
69}
70
71#elif !defined(TCSAFLUSH)
72
73/* BSD TERMIO HANDLING */
74
75static struct sgttyb t;
76
77#define ECHO_IS_ON(t) ((t).sg_flags & ECHO)
78#define TURN_ECHO_OFF(t) ((t).sg_flags &= ~ECHO)
79#define TURN_ECHO_ON(t) ((t).sg_flags |= ECHO)
80
81#define TCSAFLUSH 1
82#define TCSANOW 0
83
84static int tcgetattr(int fd, struct sgttyb *_t)
85{
86 return ioctl(fd, TIOCGETP, (char *)_t);
87}
88
89static int tcsetattr(int fd, int flags, struct sgttyb *_t)
90{
91 return ioctl(fd, TIOCSETP, (char *)_t);
92}
93
94#else /* POSIX TERMIO HANDLING */
95#define ECHO_IS_ON(t) ((t).c_lflag & ECHO)
96#define TURN_ECHO_OFF(t) ((t).c_lflag &= ~ECHO)
97#define TURN_ECHO_ON(t) ((t).c_lflag |= ECHO)
98
99static struct termios t;
100#endif /* SYSV_TERMIO */
101
102static void catch_signal(int signum,void (*handler)(int ))
103{
104#ifdef HAVE_SIGACTION
105 struct sigaction act;
106 struct sigaction oldact;
107
108 memset(&act, 0, sizeof(act));
109
110 act.sa_handler = handler;
111#ifdef SA_RESTART
112 /*
113 * We *want* SIGALRM to interrupt a system call.
114 */
115 if(signum != SIGALRM)
116 act.sa_flags = SA_RESTART;
117#endif
118 sigemptyset(&act.sa_mask);
119 sigaddset(&act.sa_mask,signum);
120 sigaction(signum,&act,&oldact);
121#else /* !HAVE_SIGACTION */
122 /* FIXME: need to handle sigvec and systems with broken signal() */
123 signal(signum, handler);
124#endif
125}
126
127static sig_atomic_t gotintr;
128static int in_fd = -1;
129
130/***************************************************************
131 Signal function to tell us were ^C'ed.
132****************************************************************/
133
134static void gotintr_sig(void)
135{
136 gotintr = 1;
137 if (in_fd != -1)
138 close(in_fd); /* Safe way to force a return. */
139 in_fd = -1;
140}
141
142char *rep_getpass(const char *prompt)
143{
144 FILE *in, *out;
145 int echo_off;
146 static char buf[256];
147 static size_t bufsize = sizeof(buf);
148 size_t nread;
149
150 /* Catch problematic signals */
151 catch_signal(SIGINT, SIGNAL_CAST gotintr_sig);
152
153 /* Try to write to and read from the terminal if we can.
154 If we can't open the terminal, use stderr and stdin. */
155#ifndef __OS2__
156 in = fopen ("/dev/tty", "w+");
157#else
158 in = NULL;
159#endif
160 if (in == NULL) {
161 in = stdin;
162 out = stderr;
163 } else {
164 out = in;
165 }
166
167 setvbuf(in, NULL, _IONBF, 0);
168
169 /* Turn echoing off if it is on now. */
170
171 if (tcgetattr (fileno (in), &t) == 0) {
172 if (ECHO_IS_ON(t)) {
173 TURN_ECHO_OFF(t);
174 echo_off = tcsetattr (fileno (in), TCSAFLUSH, &t) == 0;
175 TURN_ECHO_ON(t);
176 } else {
177 echo_off = 0;
178 }
179 } else {
180 echo_off = 0;
181 }
182
183 /* Write the prompt. */
184 fputs(prompt, out);
185 fflush(out);
186
187 /* Read the password. */
188 buf[0] = 0;
189 if (!gotintr) {
190 in_fd = fileno(in);
191 if (fgets(buf, bufsize, in) == NULL) {
192 buf[0] = 0;
193 }
194 }
195 nread = strlen(buf);
196 if (nread) {
197 if (buf[nread - 1] == '\n')
198 buf[nread - 1] = '\0';
199 }
200
201 /* Restore echoing. */
202 if (echo_off) {
203 if (gotintr && in_fd == -1) {
204 in = fopen ("/dev/tty", "w+");
205 }
206 if (in != NULL)
207 tcsetattr (fileno (in), TCSANOW, &t);
208 }
209
210 fprintf(out, "\n");
211 fflush(out);
212
213 if (in && in != stdin) /* We opened the terminal; now close it. */
214 fclose(in);
215
216 /* Catch problematic signals */
217 catch_signal(SIGINT, SIGNAL_CAST SIG_DFL);
218
219 if (gotintr) {
220 printf("Interupted by signal.\n");
221 fflush(stdout);
222 exit(1);
223 }
224 return buf;
225}
Note: See TracBrowser for help on using the repository browser.