Even more late break-in MacOS tidbits...
[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) && !defined(WIN32)
60 #include <openssl/opensslconf.h>
61 #ifdef OPENSSL_UNISTD
62 # include OPENSSL_UNISTD
63 #else
64 # include <unistd.h>
65 #endif
66 /* If unistd.h defines _POSIX_VERSION, we conclude that we
67  * are on a POSIX system and have sigaction and termios. */
68 #if defined(_POSIX_VERSION)
69
70 # define SIGACTION
71 # if !defined(TERMIOS) && !defined(TERMIO) && !defined(SGTTY)
72 # define TERMIOS
73 # endif
74
75 #endif
76 #endif
77
78 /* #define SIGACTION */ /* Define this if you have sigaction() */
79
80 #ifdef WIN16TTY
81 #undef WIN16
82 #undef _WINDOWS
83 #include <graph.h>
84 #endif
85
86 /* 06-Apr-92 Luke Brennan    Support for VMS */
87 #include "des_locl.h"
88 #include "cryptlib.h"
89 #include <signal.h>
90 #include <stdio.h>
91 #include <string.h>
92 #include <setjmp.h>
93 #include <errno.h>
94
95 #ifdef VMS                      /* prototypes for sys$whatever */
96 #include <starlet.h>
97 #ifdef __DECC
98 #pragma message disable DOLLARID
99 #endif
100 #endif
101
102 #ifdef WIN_CONSOLE_BUG
103 #include <windows.h>
104 #include <wincon.h>
105 #endif
106
107
108 /* There are 5 types of terminal interface supported,
109  * TERMIO, TERMIOS, VMS, MSDOS and SGTTY
110  */
111
112 #if defined(__sgi) && !defined(TERMIOS)
113 #define TERMIOS
114 #undef  TERMIO
115 #undef  SGTTY
116 #endif
117
118 #if defined(linux) && !defined(TERMIO)
119 #undef  TERMIOS
120 #define TERMIO
121 #undef  SGTTY
122 #endif
123
124 #ifdef _LIBC
125 #undef  TERMIOS
126 #define TERMIO
127 #undef  SGTTY
128 #endif
129
130 #if !defined(TERMIO) && !defined(TERMIOS) && !defined(VMS) && !defined(MSDOS) && !defined(MAC_OS_pre_X)
131 #undef  TERMIOS
132 #undef  TERMIO
133 #define SGTTY
134 #endif
135
136 #ifdef TERMIOS
137 #include <termios.h>
138 #define TTY_STRUCT              struct termios
139 #define TTY_FLAGS               c_lflag
140 #define TTY_get(tty,data)       tcgetattr(tty,data)
141 #define TTY_set(tty,data)       tcsetattr(tty,TCSANOW,data)
142 #endif
143
144 #ifdef TERMIO
145 #include <termio.h>
146 #define TTY_STRUCT              struct termio
147 #define TTY_FLAGS               c_lflag
148 #define TTY_get(tty,data)       ioctl(tty,TCGETA,data)
149 #define TTY_set(tty,data)       ioctl(tty,TCSETA,data)
150 #endif
151
152 #ifdef SGTTY
153 #include <sgtty.h>
154 #define TTY_STRUCT              struct sgttyb
155 #define TTY_FLAGS               sg_flags
156 #define TTY_get(tty,data)       ioctl(tty,TIOCGETP,data)
157 #define TTY_set(tty,data)       ioctl(tty,TIOCSETP,data)
158 #endif
159
160 #if !defined(_LIBC) && !defined(MSDOS) && !defined(VMS) && !defined(MAC_OS_pre_X)
161 #include <sys/ioctl.h>
162 #endif
163
164 #ifdef MSDOS
165 #include <conio.h>
166 #define fgets(a,b,c) noecho_fgets(a,b,c)
167 #endif
168
169 #ifdef VMS
170 #include <ssdef.h>
171 #include <iodef.h>
172 #include <ttdef.h>
173 #include <descrip.h>
174 struct IOSB {
175         short iosb$w_value;
176         short iosb$w_count;
177         long  iosb$l_info;
178         };
179 #endif
180
181 #ifdef MAC_OS_pre_X
182 /*
183  * This one needs work. As a matter of fact the code is unoperational
184  * and this is only a trick to get it compiled.
185  *                                      <appro@fy.chalmers.se>
186  */
187 #define TTY_STRUCT int
188 #endif
189
190 #ifndef NX509_SIG
191 #define NX509_SIG 32
192 #endif
193
194 static void read_till_nl(FILE *);
195 static void recsig(int);
196 static void pushsig(void);
197 static void popsig(void);
198 #if defined(MSDOS) && !defined(WIN16)
199 static int noecho_fgets(char *buf, int size, FILE *tty);
200 #endif
201 #ifdef SIGACTION
202  static struct sigaction savsig[NX509_SIG];
203 #else
204   static void (*savsig[NX509_SIG])(int );
205 #endif
206 static jmp_buf save;
207
208 int des_read_pw_string(char *buf, int length, const char *prompt,
209              int verify)
210         {
211         char buff[BUFSIZ];
212         int ret;
213
214         ret=des_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
215         memset(buff,0,BUFSIZ);
216         return(ret);
217         }
218
219 #ifndef WIN16
220
221 static void read_till_nl(FILE *in)
222         {
223 #define SIZE 4
224         char buf[SIZE+1];
225
226         do      {
227                 fgets(buf,SIZE,in);
228                 } while (strchr(buf,'\n') == NULL);
229         }
230
231
232 /* return 0 if ok, 1 (or -1) otherwise */
233 int des_read_pw(char *buf, char *buff, int size, const char *prompt,
234              int verify)
235         {
236 #ifdef VMS
237         struct IOSB iosb;
238         $DESCRIPTOR(terminal,"TT");
239         long tty_orig[3], tty_new[3];
240         long status;
241         unsigned short channel = 0;
242 #else
243 #ifndef MSDOS
244         TTY_STRUCT tty_orig,tty_new;
245 #endif
246 #endif
247         int number;
248         int ok;
249         /* statics are simply to avoid warnings about longjmp clobbering
250            things */
251         static int ps;
252         int is_a_tty;
253         static FILE *tty;
254         char *p;
255
256         if (setjmp(save))
257                 {
258                 ok=0;
259                 goto error;
260                 }
261
262         number=5;
263         ok=0;
264         ps=0;
265         is_a_tty=1;
266         tty=NULL;
267
268 #ifndef MSDOS
269         if ((tty=fopen("/dev/tty","r")) == NULL)
270                 tty=stdin;
271 #else /* MSDOS */
272         if ((tty=fopen("con","r")) == NULL)
273                 tty=stdin;
274 #endif /* MSDOS */
275
276 #if defined(TTY_get) && !defined(VMS)
277         if (TTY_get(fileno(tty),&tty_orig) == -1)
278                 {
279 #ifdef ENOTTY
280                 if (errno == ENOTTY)
281                         is_a_tty=0;
282                 else
283 #endif
284 #ifdef EINVAL
285                 /* Ariel Glenn ariel@columbia.edu reports that solaris
286                  * can return EINVAL instead.  This should be ok */
287                 if (errno == EINVAL)
288                         is_a_tty=0;
289                 else
290 #endif
291                         return(-1);
292                 }
293         memcpy(&(tty_new),&(tty_orig),sizeof(tty_orig));
294 #endif
295 #ifdef VMS
296         status = sys$assign(&terminal,&channel,0,0);
297         if (status != SS$_NORMAL)
298                 return(-1);
299         status=sys$qiow(0,channel,IO$_SENSEMODE,&iosb,0,0,tty_orig,12,0,0,0,0);
300         if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL))
301                 return(-1);
302 #endif
303
304         pushsig();
305         ps=1;
306
307 #ifdef TTY_FLAGS
308         tty_new.TTY_FLAGS &= ~ECHO;
309 #endif
310
311 #if defined(TTY_set) && !defined(VMS)
312         if (is_a_tty && (TTY_set(fileno(tty),&tty_new) == -1))
313                 return(-1);
314 #endif
315 #ifdef VMS
316         tty_new[0] = tty_orig[0];
317         tty_new[1] = tty_orig[1] | TT$M_NOECHO;
318         tty_new[2] = tty_orig[2];
319         status = sys$qiow(0,channel,IO$_SETMODE,&iosb,0,0,tty_new,12,0,0,0,0);
320         if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL))
321                 return(-1);
322 #endif
323         ps=2;
324
325         while ((!ok) && (number--))
326                 {
327                 fputs(prompt,stderr);
328                 fflush(stderr);
329
330                 buf[0]='\0';
331                 fgets(buf,size,tty);
332                 if (feof(tty)) goto error;
333                 if (ferror(tty)) goto error;
334                 if ((p=(char *)strchr(buf,'\n')) != NULL)
335                         *p='\0';
336                 else    read_till_nl(tty);
337                 if (verify)
338                         {
339                         fprintf(stderr,"\nVerifying password - %s",prompt);
340                         fflush(stderr);
341                         buff[0]='\0';
342                         fgets(buff,size,tty);
343                         if (feof(tty)) goto error;
344                         if ((p=(char *)strchr(buff,'\n')) != NULL)
345                                 *p='\0';
346                         else    read_till_nl(tty);
347                                 
348                         if (strcmp(buf,buff) != 0)
349                                 {
350                                 fprintf(stderr,"\nVerify failure");
351                                 fflush(stderr);
352                                 break;
353                                 /* continue; */
354                                 }
355                         }
356                 ok=1;
357                 }
358
359 error:
360         fprintf(stderr,"\n");
361 #ifdef DEBUG
362         perror("fgets(tty)");
363 #endif
364         /* What can we do if there is an error? */
365 #if defined(TTY_set) && !defined(VMS)
366         if (ps >= 2) TTY_set(fileno(tty),&tty_orig);
367 #endif
368 #ifdef VMS
369         if (ps >= 2)
370                 status = sys$qiow(0,channel,IO$_SETMODE,&iosb,0,0
371                         ,tty_orig,12,0,0,0,0);
372 #endif
373         
374         if (ps >= 1) popsig();
375         if (stdin != tty) fclose(tty);
376 #ifdef VMS
377         status = sys$dassgn(channel);
378 #endif
379         return(!ok);
380         }
381
382 #else /* WIN16 */
383
384 int des_read_pw(char *buf, char *buff, int size, char *prompt, int verify)
385         { 
386         memset(buf,0,size);
387         memset(buff,0,size);
388         return(0);
389         }
390
391 #endif
392
393 static void pushsig(void)
394         {
395         int i;
396 #ifdef SIGACTION
397         struct sigaction sa;
398
399         memset(&sa,0,sizeof sa);
400         sa.sa_handler=recsig;
401 #endif
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,&sa,&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(void)
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(int i)
448         {
449         longjmp(save,1);
450 #ifdef LINT
451         i=i;
452 #endif
453         }
454
455 #if defined(MSDOS) && !defined(WIN16)
456 static int noecho_fgets(char *buf, int size, FILE *tty)
457         {
458         int i;
459         char *p;
460
461         p=buf;
462         for (;;)
463                 {
464                 if (size == 0)
465                         {
466                         *p='\0';
467                         break;
468                         }
469                 size--;
470 #ifdef WIN16TTY
471                 i=_inchar();
472 #else
473                 i=getch();
474 #endif
475                 if (i == '\r') i='\n';
476                 *(p++)=i;
477                 if (i == '\n')
478                         {
479                         *p='\0';
480                         break;
481                         }
482                 }
483 #ifdef WIN_CONSOLE_BUG
484 /* Win95 has several evil console bugs: one of these is that the
485  * last character read using getch() is passed to the next read: this is
486  * usually a CR so this can be trouble. No STDIO fix seems to work but
487  * flushing the console appears to do the trick.
488  */
489                 {
490                         HANDLE inh;
491                         inh = GetStdHandle(STD_INPUT_HANDLE);
492                         FlushConsoleInputBuffer(inh);
493                 }
494 #endif
495         return(strlen(buf));
496         }
497 #endif