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.]
60 /* If unistd.h defines _POSIX_VERSION, we conclude that we
61 * are on a POSIX system and have sigaction and termios. */
62 #if defined(_POSIX_VERSION)
65 # if !defined(TERMIOS) && !defined(TERMIO) && !defined(SGTTY)
71 /* #define SIGACTION */ /* Define this if you have sigaction() */
79 /* 06-Apr-92 Luke Brennan Support for VMS */
87 #ifdef VMS /* prototypes for sys$whatever */
90 #pragma message disable DOLLARID
94 #ifdef WIN_CONSOLE_BUG
100 /* There are 5 types of terminal interface supported,
101 * TERMIO, TERMIOS, VMS, MSDOS and SGTTY
104 #if defined(__sgi) && !defined(TERMIOS)
110 #if defined(linux) && !defined(TERMIO)
122 #if !defined(TERMIO) && !defined(TERMIOS) && !defined(VMS) && !defined(MSDOS) && !defined(MAC_OS_pre_X) && !defined(MAC_OS_GUSI_SOURCE)
136 #define TTY_STRUCT struct termios
137 #define TTY_FLAGS c_lflag
138 #define TTY_get(tty,data) tcgetattr(tty,data)
139 #define TTY_set(tty,data) tcsetattr(tty,TCSANOW,data)
144 #define TTY_STRUCT struct termio
145 #define TTY_FLAGS c_lflag
146 #define TTY_get(tty,data) ioctl(tty,TCGETA,data)
147 #define TTY_set(tty,data) ioctl(tty,TCSETA,data)
152 #define TTY_STRUCT struct sgttyb
153 #define TTY_FLAGS sg_flags
154 #define TTY_get(tty,data) ioctl(tty,TIOCGETP,data)
155 #define TTY_set(tty,data) ioctl(tty,TIOCSETP,data)
158 #if !defined(_LIBC) && !defined(MSDOS) && !defined(VMS) && !defined(MAC_OS_pre_X)
159 #include <sys/ioctl.h>
162 #if defined(MSDOS) && !defined(__CYGWIN32__)
164 #define fgets(a,b,c) noecho_fgets(a,b,c)
179 #if defined(MAC_OS_pre_X) || defined(MAC_OS_GUSI_SOURCE)
181 * This one needs work. As a matter of fact the code is unoperational
182 * and this is only a trick to get it compiled.
183 * <appro@fy.chalmers.se>
185 #define TTY_STRUCT int
192 static void read_till_nl(FILE *);
193 static void recsig(int);
194 static void pushsig(void);
195 static void popsig(void);
196 #if defined(MSDOS) && !defined(WIN16)
197 static int noecho_fgets(char *buf
, int size
, FILE *tty
);
200 static struct sigaction savsig
[NX509_SIG
];
202 static void (*savsig
[NX509_SIG
])(int );
206 int des_read_pw_string(char *buf
, int length
, const char *prompt
,
212 ret
=des_read_pw(buf
,buff
,(length
>BUFSIZ
)?BUFSIZ
:length
,prompt
,verify
);
213 OPENSSL_cleanse(buff
,BUFSIZ
);
219 static void read_till_nl(FILE *in
)
226 } while (strchr(buf
,'\n') == NULL
);
230 /* return 0 if ok, 1 (or -1) otherwise */
231 int des_read_pw(char *buf
, char *buff
, int size
, const char *prompt
,
236 $
DESCRIPTOR(terminal
,"TT");
237 long tty_orig
[3], tty_new
[3];
239 unsigned short channel
= 0;
241 #if !defined(MSDOS) && !defined(VXWORKS)
242 TTY_STRUCT tty_orig
,tty_new
;
247 /* statics are simply to avoid warnings about longjmp clobbering
267 if ((tty
=fopen("con","r")) == NULL
)
269 #elif defined(MAC_OS_pre_X) || defined(VXWORKS)
273 if ((tty
=fopen("/dev/tty","r")) == NULL
)
278 #if defined(TTY_get) && !defined(VMS)
279 if (TTY_get(fileno(tty
),&tty_orig
) == -1)
287 /* Ariel Glenn ariel@columbia.edu reports that solaris
288 * can return EINVAL instead. This should be ok */
295 memcpy(&(tty_new
),&(tty_orig
),sizeof(tty_orig
));
298 status
= sys$
assign(&terminal
,&channel
,0,0);
299 if (status
!= SS$_NORMAL
)
301 status
=sys$
qiow(0,channel
,IO$_SENSEMODE
,&iosb
,0,0,tty_orig
,12,0,0,0,0);
302 if ((status
!= SS$_NORMAL
) || (iosb
.iosb$w_value
!= SS$_NORMAL
))
310 tty_new
.TTY_FLAGS
&= ~ECHO
;
313 #if defined(TTY_set) && !defined(VMS)
314 if (is_a_tty
&& (TTY_set(fileno(tty
),&tty_new
) == -1))
316 ; /* MPE lies -- echo really has been disabled */
322 tty_new
[0] = tty_orig
[0];
323 tty_new
[1] = tty_orig
[1] | TT$M_NOECHO
;
324 tty_new
[2] = tty_orig
[2];
325 status
= sys$
qiow(0,channel
,IO$_SETMODE
,&iosb
,0,0,tty_new
,12,0,0,0,0);
326 if ((status
!= SS$_NORMAL
) || (iosb
.iosb$w_value
!= SS$_NORMAL
))
331 while ((!ok
) && (number
--))
333 fputs(prompt
,stderr
);
338 if (feof(tty
)) goto error
;
339 if (ferror(tty
)) goto error
;
340 if ((p
=(char *)strchr(buf
,'\n')) != NULL
)
342 else read_till_nl(tty
);
345 fprintf(stderr
,"\nVerifying password - %s",prompt
);
348 fgets(buff
,size
,tty
);
349 if (feof(tty
)) goto error
;
350 if ((p
=(char *)strchr(buff
,'\n')) != NULL
)
352 else read_till_nl(tty
);
354 if (strcmp(buf
,buff
) != 0)
356 fprintf(stderr
,"\nVerify failure");
366 fprintf(stderr
,"\n");
368 perror("fgets(tty)");
370 /* What can we do if there is an error? */
371 #if defined(TTY_set) && !defined(VMS)
372 if (ps
>= 2) TTY_set(fileno(tty
),&tty_orig
);
376 status
= sys$
qiow(0,channel
,IO$_SETMODE
,&iosb
,0,0
377 ,tty_orig
,12,0,0,0,0);
380 if (ps
>= 1) popsig();
381 if (stdin
!= tty
) fclose(tty
);
383 status
= sys$
dassgn(channel
);
390 int des_read_pw(char *buf
, char *buff
, int size
, char *prompt
, int verify
)
399 static void pushsig(void)
405 memset(&sa
,0,sizeof sa
);
406 sa
.sa_handler
=recsig
;
409 for (i
=1; i
<NX509_SIG
; i
++)
420 sigaction(i
,&sa
,&savsig
[i
]);
422 savsig
[i
]=signal(i
,recsig
);
427 signal(SIGWINCH
,SIG_DFL
);
431 static void popsig(void)
435 for (i
=1; i
<NX509_SIG
; i
++)
446 sigaction(i
,&savsig
[i
],NULL
);
453 static void recsig(int i
)
461 #if defined(MSDOS) && !defined(WIN16)
462 static int noecho_fgets(char *buf
, int size
, FILE *tty
)
481 if (i
== '\r') i
='\n';
489 #ifdef WIN_CONSOLE_BUG
490 /* Win95 has several evil console bugs: one of these is that the
491 * last character read using getch() is passed to the next read: this is
492 * usually a CR so this can be trouble. No STDIO fix seems to work but
493 * flushing the console appears to do the trick.
497 inh
= GetStdHandle(STD_INPUT_HANDLE
);
498 FlushConsoleInputBuffer(inh
);