Be more optimistic about the availability of termios for ~ECHO,
[openssl.git] / crypto / des / read_pwd.c
1 /* crypto/des/read_pwd.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  * 
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  * 
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  * 
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from 
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  * 
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  * 
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #if !defined(MSDOS) && !defined(VMS)
60 #include <unistd.h>
61 /* If unistd.h defines _POSIX_VERSION, we conclude that we
62  * are on a POSIX system and have sigaction and termios. */
63 #if defined(_POSIX_VERSION)
64
65 # define SIGACTION
66 # if !defined(TERMIOS) && !defined(TERMIO) && !defined(SGTTY)
67 # define TERMIOS
68 # endif
69
70 #endif
71 #endif
72
73 /* #define SIGACTION */ /* Define this if you have sigaction() */
74
75 #ifdef WIN16TTY
76 #undef WIN16
77 #undef _WINDOWS
78 #include <graph.h>
79 #endif
80
81 /* 06-Apr-92 Luke Brennan    Support for VMS */
82 #include "des_locl.h"
83 #include "cryptlib.h"
84 #include <signal.h>
85 #include <string.h>
86 #include <setjmp.h>
87 #include <errno.h>
88
89 #ifdef WIN_CONSOLE_BUG
90 #include <windows.h>
91 #include <wincon.h>
92 #endif
93
94
95 /* There are 5 types of terminal interface supported,
96  * TERMIO, TERMIOS, VMS, MSDOS and SGTTY
97  */
98
99 #if defined(__sgi) && !defined(TERMIOS)
100 #define TERMIOS
101 #undef  TERMIO
102 #undef  SGTTY
103 #endif
104
105 #if defined(linux) && !defined(TERMIO)
106 #undef  TERMIOS
107 #define TERMIO
108 #undef  SGTTY
109 #endif
110
111 #ifdef _LIBC
112 #undef  TERMIOS
113 #define TERMIO
114 #undef  SGTTY
115 #endif
116
117 #if !defined(TERMIO) && !defined(TERMIOS) && !defined(VMS) && !defined(MSDOS)
118 #undef  TERMIOS
119 #undef  TERMIO
120 #define SGTTY
121 #endif
122
123 #ifdef TERMIOS
124 #include <termios.h>
125 #define TTY_STRUCT              struct termios
126 #define TTY_FLAGS               c_lflag
127 #define TTY_get(tty,data)       tcgetattr(tty,data)
128 #define TTY_set(tty,data)       tcsetattr(tty,TCSANOW,data)
129 #endif
130
131 #ifdef TERMIO
132 #include <termio.h>
133 #define TTY_STRUCT              struct termio
134 #define TTY_FLAGS               c_lflag
135 #define TTY_get(tty,data)       ioctl(tty,TCGETA,data)
136 #define TTY_set(tty,data)       ioctl(tty,TCSETA,data)
137 #endif
138
139 #ifdef SGTTY
140 #include <sgtty.h>
141 #define TTY_STRUCT              struct sgttyb
142 #define TTY_FLAGS               sg_flags
143 #define TTY_get(tty,data)       ioctl(tty,TIOCGETP,data)
144 #define TTY_set(tty,data)       ioctl(tty,TIOCSETP,data)
145 #endif
146
147 #if !defined(_LIBC) && !defined(MSDOS) && !defined(VMS)
148 #include <sys/ioctl.h>
149 #endif
150
151 #ifdef MSDOS
152 #include <conio.h>
153 #define fgets(a,b,c) noecho_fgets(a,b,c)
154 #endif
155
156 #ifdef VMS
157 #include <ssdef.h>
158 #include <iodef.h>
159 #include <ttdef.h>
160 #include <descrip.h>
161 struct IOSB {
162         short iosb$w_value;
163         short iosb$w_count;
164         long  iosb$l_info;
165         };
166 #endif
167
168 #ifndef NX509_SIG
169 #define NX509_SIG 32
170 #endif
171
172 #ifndef NOPROTO
173 static void read_till_nl(FILE *);
174 static void recsig(int);
175 static void pushsig(void);
176 static void popsig(void);
177 #if defined(MSDOS) && !defined(WIN16)
178 static int noecho_fgets(char *buf, int size, FILE *tty);
179 #endif
180 #else
181 static void read_till_nl();
182 static void recsig();
183 static void pushsig();
184 static void popsig();
185 #if defined(MSDOS) && !defined(WIN16)
186 static int noecho_fgets();
187 #endif
188 #endif
189
190 #ifdef SIGACTION
191  static struct sigaction savsig[NX509_SIG];
192 #else
193 # ifndef NOPROTO
194   static void (*savsig[NX509_SIG])(int );
195 # else
196   static void (*savsig[NX509_SIG])();
197 # endif
198 #endif
199 static jmp_buf save;
200
201 int des_read_pw_string(buf, length, prompt, verify)
202 char *buf;
203 int length;
204 const char *prompt;
205 int verify;
206         {
207         char buff[BUFSIZ];
208         int ret;
209
210         ret=des_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
211         memset(buff,0,BUFSIZ);
212         return(ret);
213         }
214
215 #ifndef WIN16
216
217 static void read_till_nl(in)
218 FILE *in;
219         {
220 #define SIZE 4
221         char buf[SIZE+1];
222
223         do      {
224                 fgets(buf,SIZE,in);
225                 } while (strchr(buf,'\n') == NULL);
226         }
227
228
229 /* return 0 if ok, 1 (or -1) otherwise */
230 int des_read_pw(buf, buff, size, prompt, verify)
231 char *buf;
232 char *buff;
233 int size;
234 const char *prompt;
235 int verify;
236         {
237 #ifdef VMS
238         struct IOSB iosb;
239         $DESCRIPTOR(terminal,"TT");
240         long tty_orig[3], tty_new[3];
241         long status;
242         unsigned short channel = 0;
243 #else
244 #ifndef MSDOS
245         TTY_STRUCT tty_orig,tty_new;
246 #endif
247 #endif
248         int number;
249         int ok;
250         /* statics are simply to avoid warnings about longjmp clobbering
251            things */
252         static int ps;
253         int is_a_tty;
254         static FILE *tty;
255         char *p;
256
257         if (setjmp(save))
258                 {
259                 ok=0;
260                 goto error;
261                 }
262
263         number=5;
264         ok=0;
265         ps=0;
266         is_a_tty=1;
267         tty=NULL;
268
269 #ifndef MSDOS
270         if ((tty=fopen("/dev/tty","r")) == NULL)
271                 tty=stdin;
272 #else /* MSDOS */
273         if ((tty=fopen("con","r")) == NULL)
274                 tty=stdin;
275 #endif /* MSDOS */
276
277 #if defined(TTY_get) && !defined(VMS)
278         if (TTY_get(fileno(tty),&tty_orig) == -1)
279                 {
280 #ifdef ENOTTY
281                 if (errno == ENOTTY)
282                         is_a_tty=0;
283                 else
284 #endif
285 #ifdef EINVAL
286                 /* Ariel Glenn ariel@columbia.edu reports that solaris
287                  * can return EINVAL instead.  This should be ok */
288                 if (errno == EINVAL)
289                         is_a_tty=0;
290                 else
291 #endif
292                         return(-1);
293                 }
294         memcpy(&(tty_new),&(tty_orig),sizeof(tty_orig));
295 #endif
296 #ifdef VMS
297         status = SYS$ASSIGN(&terminal,&channel,0,0);
298         if (status != SS$_NORMAL)
299                 return(-1);
300         status=SYS$QIOW(0,channel,IO$_SENSEMODE,&iosb,0,0,tty_orig,12,0,0,0,0);
301         if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL))
302                 return(-1);
303 #endif
304
305         pushsig();
306         ps=1;
307
308 #ifdef TTY_FLAGS
309         tty_new.TTY_FLAGS &= ~ECHO;
310 #endif
311
312 #if defined(TTY_set) && !defined(VMS)
313         if (is_a_tty && (TTY_set(fileno(tty),&tty_new) == -1))
314                 return(-1);
315 #endif
316 #ifdef VMS
317         tty_new[0] = tty_orig[0];
318         tty_new[1] = tty_orig[1] | TT$M_NOECHO;
319         tty_new[2] = tty_orig[2];
320         status = SYS$QIOW(0,channel,IO$_SETMODE,&iosb,0,0,tty_new,12,0,0,0,0);
321         if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL))
322                 return(-1);
323 #endif
324         ps=2;
325
326         while ((!ok) && (number--))
327                 {
328                 fputs(prompt,stderr);
329                 fflush(stderr);
330
331                 buf[0]='\0';
332                 fgets(buf,size,tty);
333                 if (feof(tty)) goto error;
334                 if (ferror(tty)) goto error;
335                 if ((p=(char *)strchr(buf,'\n')) != NULL)
336                         *p='\0';
337                 else    read_till_nl(tty);
338                 if (verify)
339                         {
340                         fprintf(stderr,"\nVerifying password - %s",prompt);
341                         fflush(stderr);
342                         buff[0]='\0';
343                         fgets(buff,size,tty);
344                         if (feof(tty)) goto error;
345                         if ((p=(char *)strchr(buff,'\n')) != NULL)
346                                 *p='\0';
347                         else    read_till_nl(tty);
348                                 
349                         if (strcmp(buf,buff) != 0)
350                                 {
351                                 fprintf(stderr,"\nVerify failure");
352                                 fflush(stderr);
353                                 break;
354                                 /* continue; */
355                                 }
356                         }
357                 ok=1;
358                 }
359
360 error:
361         fprintf(stderr,"\n");
362 #ifdef DEBUG
363         perror("fgets(tty)");
364 #endif
365         /* What can we do if there is an error? */
366 #if defined(TTY_set) && !defined(VMS) 
367         if (ps >= 2) TTY_set(fileno(tty),&tty_orig);
368 #endif
369 #ifdef VMS
370         if (ps >= 2)
371                 status = SYS$QIOW(0,channel,IO$_SETMODE,&iosb,0,0
372                         ,tty_orig,12,0,0,0,0);
373 #endif
374         
375         if (ps >= 1) popsig();
376         if (stdin != tty) fclose(tty);
377 #ifdef VMS
378         status = SYS$DASSGN(channel);
379 #endif
380         return(!ok);
381         }
382
383 #else /* WIN16 */
384
385 int des_read_pw(buf, buff, size, prompt, verify)
386 char *buf;
387 char *buff;
388 int size;
389 char *prompt;
390 int verify;
391         { 
392         memset(buf,0,size);
393         memset(buff,0,size);
394         return(0);
395         }
396
397 #endif
398
399 static void pushsig()
400         {
401         int i;
402
403         for (i=1; i<NX509_SIG; i++)
404                 {
405 #ifdef SIGUSR1
406                 if (i == SIGUSR1)
407                         continue;
408 #endif
409 #ifdef SIGUSR2
410                 if (i == SIGUSR2)
411                         continue;
412 #endif
413 #ifdef SIGACTION
414                 sigaction(i,NULL,&savsig[i]);
415 #else
416                 savsig[i]=signal(i,recsig);
417 #endif
418                 }
419
420 #ifdef SIGWINCH
421         signal(SIGWINCH,SIG_DFL);
422 #endif
423         }
424
425 static void popsig()
426         {
427         int i;
428
429         for (i=1; i<NX509_SIG; i++)
430                 {
431 #ifdef SIGUSR1
432                 if (i == SIGUSR1)
433                         continue;
434 #endif
435 #ifdef SIGUSR2
436                 if (i == SIGUSR2)
437                         continue;
438 #endif
439 #ifdef SIGACTION
440                 sigaction(i,&savsig[i],NULL);
441 #else
442                 signal(i,savsig[i]);
443 #endif
444                 }
445         }
446
447 static void recsig(i)
448 int i;
449         {
450         longjmp(save,1);
451 #ifdef LINT
452         i=i;
453 #endif
454         }
455
456 #if defined(MSDOS) && !defined(WIN16)
457 static int noecho_fgets(buf,size,tty)
458 char *buf;
459 int size;
460 FILE *tty;
461         {
462         int i;
463         char *p;
464
465         p=buf;
466         for (;;)
467                 {
468                 if (size == 0)
469                         {
470                         *p='\0';
471                         break;
472                         }
473                 size--;
474 #ifdef WIN16TTY
475                 i=_inchar();
476 #else
477                 i=getch();
478 #endif
479                 if (i == '\r') i='\n';
480                 *(p++)=i;
481                 if (i == '\n')
482                         {
483                         *p='\0';
484                         break;
485                         }
486                 }
487 #ifdef WIN_CONSOLE_BUG
488 /* Win95 has several evil console bugs: one of these is that the
489  * last character read using getch() is passed to the next read: this is
490  * usually a CR so this can be trouble. No STDIO fix seems to work but
491  * flushing the console appears to do the trick.
492  */
493                 {
494                         HANDLE inh;
495                         inh = GetStdHandle(STD_INPUT_HANDLE);
496                         FlushConsoleInputBuffer(inh);
497                 }
498 #endif
499         return(strlen(buf));
500         }
501 #endif