1 /* crypto/des/read_pwd.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
59 #include <openssl/e_os2.h>
60 #if !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_WIN32)
62 # include OPENSSL_UNISTD
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)
71 # if !defined(TERMIOS) && !defined(TERMIO) && !defined(SGTTY)
78 /* #define SIGACTION */ /* Define this if you have sigaction() */
81 #undef OPENSSL_SYS_WIN16
86 /* 06-Apr-92 Luke Brennan Support for VMS */
95 #ifdef OPENSSL_SYS_VMS /* prototypes for sys$whatever */
98 #pragma message disable DOLLARID
102 #ifdef WIN_CONSOLE_BUG
104 #ifndef OPENSSL_SYS_WINCE
110 /* There are 5 types of terminal interface supported,
111 * TERMIO, TERMIOS, VMS, MSDOS and SGTTY
114 #if defined(__sgi) && !defined(TERMIOS)
120 #if defined(linux) && !defined(TERMIO)
132 #if !defined(TERMIO) && !defined(TERMIOS) && !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_MSDOS) && !defined(MAC_OS_pre_X) && !defined(MAC_OS_GUSI_SOURCE)
138 #if defined(OPENSSL_SYS_VXWORKS)
146 #define TTY_STRUCT struct termios
147 #define TTY_FLAGS c_lflag
148 #define TTY_get(tty,data) tcgetattr(tty,data)
149 #define TTY_set(tty,data) tcsetattr(tty,TCSANOW,data)
154 #define TTY_STRUCT struct termio
155 #define TTY_FLAGS c_lflag
156 #define TTY_get(tty,data) ioctl(tty,TCGETA,data)
157 #define TTY_set(tty,data) ioctl(tty,TCSETA,data)
162 #define TTY_STRUCT struct sgttyb
163 #define TTY_FLAGS sg_flags
164 #define TTY_get(tty,data) ioctl(tty,TIOCGETP,data)
165 #define TTY_set(tty,data) ioctl(tty,TIOCSETP,data)
168 #if !defined(_LIBC) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VMS) && !defined(MAC_OS_pre_X)
169 #include <sys/ioctl.h>
172 #if defined(OPENSSL_SYS_MSDOS) && !defined(__CYGWIN32__) && !defined(OPENSSL_SYS_WINCE)
174 #define fgets(a,b,c) noecho_fgets(a,b,c)
177 #ifdef OPENSSL_SYS_VMS
189 #if defined(MAC_OS_pre_X) || defined(MAC_OS_GUSI_SOURCE)
191 * This one needs work. As a matter of fact the code is unoperational
192 * and this is only a trick to get it compiled.
193 * <appro@fy.chalmers.se>
195 #define TTY_STRUCT int
202 static void read_till_nl(FILE *);
203 static void recsig(int);
204 static void pushsig(void);
205 static void popsig(void);
206 #if defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_WIN16)
207 static int noecho_fgets(char *buf
, int size
, FILE *tty
);
210 static struct sigaction savsig
[NX509_SIG
];
212 static void (*savsig
[NX509_SIG
])(int );
216 int des_read_pw_string(char *buf
, int length
, const char *prompt
,
222 ret
=des_read_pw(buf
,buff
,(length
>BUFSIZ
)?BUFSIZ
:length
,prompt
,verify
);
223 OPENSSL_cleanse(buff
,BUFSIZ
);
227 #ifdef OPENSSL_SYS_WINCE
229 int des_read_pw(char *buf
, char *buff
, int size
, const char *prompt
, int verify
)
236 #elif defined(OPENSSL_SYS_WIN16)
238 int des_read_pw(char *buf
, char *buff
, int size
, char *prompt
, int verify
)
245 #else /* !OPENSSL_SYS_WINCE && !OPENSSL_SYS_WIN16 */
247 static void read_till_nl(FILE *in
)
254 } while (strchr(buf
,'\n') == NULL
);
258 /* return 0 if ok, 1 (or -1) otherwise */
259 int des_read_pw(char *buf
, char *buff
, int size
, const char *prompt
,
262 #ifdef OPENSSL_SYS_VMS
264 $
DESCRIPTOR(terminal
,"TT");
265 long tty_orig
[3], tty_new
[3];
267 unsigned short channel
= 0;
269 #if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__)
270 TTY_STRUCT tty_orig
,tty_new
;
275 /* statics are simply to avoid warnings about longjmp clobbering
294 #ifdef OPENSSL_SYS_MSDOS
295 if ((tty
=fopen("con","r")) == NULL
)
297 #elif defined(MAC_OS_pre_X) || defined(OPENSSL_SYS_VXWORKS)
300 #ifndef OPENSSL_SYS_MPE
301 if ((tty
=fopen("/dev/tty","r")) == NULL
)
306 #if defined(TTY_get) && !defined(OPENSSL_SYS_VMS)
307 if (TTY_get(fileno(tty
),&tty_orig
) == -1)
315 /* Ariel Glenn ariel@columbia.edu reports that solaris
316 * can return EINVAL instead. This should be ok */
323 memcpy(&(tty_new
),&(tty_orig
),sizeof(tty_orig
));
325 #ifdef OPENSSL_SYS_VMS
326 status
= sys$
assign(&terminal
,&channel
,0,0);
327 if (status
!= SS$_NORMAL
)
329 status
=sys$
qiow(0,channel
,IO$_SENSEMODE
,&iosb
,0,0,tty_orig
,12,0,0,0,0);
330 if ((status
!= SS$_NORMAL
) || (iosb
.iosb$w_value
!= SS$_NORMAL
))
338 tty_new
.TTY_FLAGS
&= ~ECHO
;
341 #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS)
342 if (is_a_tty
&& (TTY_set(fileno(tty
),&tty_new
) == -1))
343 #ifdef OPENSSL_SYS_MPE
344 ; /* MPE lies -- echo really has been disabled */
349 #ifdef OPENSSL_SYS_VMS
350 tty_new
[0] = tty_orig
[0];
351 tty_new
[1] = tty_orig
[1] | TT$M_NOECHO
;
352 tty_new
[2] = tty_orig
[2];
353 status
= sys$
qiow(0,channel
,IO$_SETMODE
,&iosb
,0,0,tty_new
,12,0,0,0,0);
354 if ((status
!= SS$_NORMAL
) || (iosb
.iosb$w_value
!= SS$_NORMAL
))
359 while ((!ok
) && (number
--))
361 fputs(prompt
,stderr
);
366 if (feof(tty
)) goto error
;
367 if (ferror(tty
)) goto error
;
368 if ((p
=(char *)strchr(buf
,'\n')) != NULL
)
370 else read_till_nl(tty
);
373 fprintf(stderr
,"\nVerifying password - %s",prompt
);
376 fgets(buff
,size
,tty
);
377 if (feof(tty
)) goto error
;
378 if ((p
=(char *)strchr(buff
,'\n')) != NULL
)
380 else read_till_nl(tty
);
382 if (strcmp(buf
,buff
) != 0)
384 fprintf(stderr
,"\nVerify failure");
394 fprintf(stderr
,"\n");
396 perror("fgets(tty)");
398 /* What can we do if there is an error? */
399 #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS)
400 if (ps
>= 2) TTY_set(fileno(tty
),&tty_orig
);
402 #ifdef OPENSSL_SYS_VMS
404 status
= sys$
qiow(0,channel
,IO$_SETMODE
,&iosb
,0,0
405 ,tty_orig
,12,0,0,0,0);
408 if (ps
>= 1) popsig();
409 if (stdin
!= tty
) fclose(tty
);
410 #ifdef OPENSSL_SYS_VMS
411 status
= sys$
dassgn(channel
);
416 static void pushsig(void)
422 memset(&sa
,0,sizeof sa
);
423 sa
.sa_handler
=recsig
;
426 for (i
=1; i
<NX509_SIG
; i
++)
437 sigaction(i
,&sa
,&savsig
[i
]);
439 savsig
[i
]=signal(i
,recsig
);
444 signal(SIGWINCH
,SIG_DFL
);
448 static void popsig(void)
452 for (i
=1; i
<NX509_SIG
; i
++)
463 sigaction(i
,&savsig
[i
],NULL
);
470 static void recsig(int i
)
478 #ifdef OPENSSL_SYS_MSDOS
479 static int noecho_fgets(char *buf
, int size
, FILE *tty
)
498 if (i
== '\r') i
='\n';
506 #ifdef WIN_CONSOLE_BUG
507 /* Win95 has several evil console bugs: one of these is that the
508 * last character read using getch() is passed to the next read: this is
509 * usually a CR so this can be trouble. No STDIO fix seems to work but
510 * flushing the console appears to do the trick.
514 inh
= GetStdHandle(STD_INPUT_HANDLE
);
515 FlushConsoleInputBuffer(inh
);
521 #endif /* !OPENSSL_SYS_WINCE && !WIN16 */