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