Update from 0.9.8-stable.
[openssl.git] / crypto / ui / ui_openssl.c
1 /* crypto/ui/ui_openssl.c -*- mode:C; c-file-style: "eay" -*- */
2 /* Written by Richard Levitte (richard@levitte.org) and others
3  * for the OpenSSL project 2001.
4  */
5 /* ====================================================================
6  * Copyright (c) 2001 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer. 
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    openssl-core@openssl.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 /* The lowest level part of this file was previously in crypto/des/read_pwd.c,
60  * Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
61  * All rights reserved.
62  *
63  * This package is an SSL implementation written
64  * by Eric Young (eay@cryptsoft.com).
65  * The implementation was written so as to conform with Netscapes SSL.
66  * 
67  * This library is free for commercial and non-commercial use as long as
68  * the following conditions are aheared to.  The following conditions
69  * apply to all code found in this distribution, be it the RC4, RSA,
70  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
71  * included with this distribution is covered by the same copyright terms
72  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
73  * 
74  * Copyright remains Eric Young's, and as such any Copyright notices in
75  * the code are not to be removed.
76  * If this package is used in a product, Eric Young should be given attribution
77  * as the author of the parts of the library used.
78  * This can be in the form of a textual message at program startup or
79  * in documentation (online or textual) provided with the package.
80  * 
81  * Redistribution and use in source and binary forms, with or without
82  * modification, are permitted provided that the following conditions
83  * are met:
84  * 1. Redistributions of source code must retain the copyright
85  *    notice, this list of conditions and the following disclaimer.
86  * 2. Redistributions in binary form must reproduce the above copyright
87  *    notice, this list of conditions and the following disclaimer in the
88  *    documentation and/or other materials provided with the distribution.
89  * 3. All advertising materials mentioning features or use of this software
90  *    must display the following acknowledgement:
91  *    "This product includes cryptographic software written by
92  *     Eric Young (eay@cryptsoft.com)"
93  *    The word 'cryptographic' can be left out if the rouines from the library
94  *    being used are not cryptographic related :-).
95  * 4. If you include any Windows specific code (or a derivative thereof) from 
96  *    the apps directory (application code) you must include an acknowledgement:
97  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
98  * 
99  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
100  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
101  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
102  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
103  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
104  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
105  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
106  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
107  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
108  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
109  * SUCH DAMAGE.
110  * 
111  * The licence and distribution terms for any publically available version or
112  * derivative of this code cannot be changed.  i.e. this code cannot simply be
113  * copied and put under another distribution licence
114  * [including the GNU Public Licence.]
115  */
116
117
118 #include <openssl/e_os2.h>
119
120 /* need for #define _POSIX_C_SOURCE arises whenever you pass -ansi to gcc
121  * [maybe others?], because it masks interfaces not discussed in standard,
122  * sigaction and fileno included. -pedantic would be more appropriate for
123  * the intended purposes, but we can't prevent users from adding -ansi.
124  */
125 #ifndef _POSIX_C_SOURCE
126 #define _POSIX_C_SOURCE 2
127 #endif
128 #include <signal.h>
129 #include <stdio.h>
130 #include <string.h>
131 #include <errno.h>
132
133 #if !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VMS)
134 # ifdef OPENSSL_UNISTD
135 #  include OPENSSL_UNISTD
136 # else
137 #  include <unistd.h>
138 # endif
139 /* If unistd.h defines _POSIX_VERSION, we conclude that we
140  * are on a POSIX system and have sigaction and termios. */
141 # if defined(_POSIX_VERSION)
142
143 #  define SIGACTION
144 #  if !defined(TERMIOS) && !defined(TERMIO) && !defined(SGTTY)
145 #   define TERMIOS
146 #  endif
147
148 # endif
149 #endif
150
151 #ifdef WIN16TTY
152 # undef OPENSSL_SYS_WIN16
153 # undef WIN16
154 # undef _WINDOWS
155 # include <graph.h>
156 #endif
157
158 /* 06-Apr-92 Luke Brennan    Support for VMS */
159 #include "ui_locl.h"
160 #include "cryptlib.h"
161
162 #ifdef OPENSSL_SYS_VMS          /* prototypes for sys$whatever */
163 # include <starlet.h>
164 # ifdef __DECC
165 #  pragma message disable DOLLARID
166 # endif
167 #endif
168
169 #ifdef WIN_CONSOLE_BUG
170 # include <windows.h>
171 #ifndef OPENSSL_SYS_WINCE
172 # include <wincon.h>
173 #endif
174 #endif
175
176
177 /* There are 5 types of terminal interface supported,
178  * TERMIO, TERMIOS, VMS, MSDOS and SGTTY
179  */
180
181 #if defined(__sgi) && !defined(TERMIOS)
182 # define TERMIOS
183 # undef  TERMIO
184 # undef  SGTTY
185 #endif
186
187 #if defined(linux) && !defined(TERMIO)
188 # undef  TERMIOS
189 # define TERMIO
190 # undef  SGTTY
191 #endif
192
193 #ifdef _LIBC
194 # undef  TERMIOS
195 # define TERMIO
196 # undef  SGTTY
197 #endif
198
199 #if !defined(TERMIO) && !defined(TERMIOS) && !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_MACINTOSH_CLASSIC) && !defined(MAC_OS_GUSI_SOURCE)
200 # undef  TERMIOS
201 # undef  TERMIO
202 # define SGTTY
203 #endif
204
205 #if defined(OPENSSL_SYS_VXWORKS)
206 #undef TERMIOS
207 #undef TERMIO
208 #undef SGTTY
209 #endif
210
211 #if defined(OPENSSL_SYS_NETWARE)
212 #undef TERMIOS
213 #undef TERMIO
214 #undef SGTTY
215 #endif
216
217 #ifdef TERMIOS
218 # include <termios.h>
219 # define TTY_STRUCT             struct termios
220 # define TTY_FLAGS              c_lflag
221 # define TTY_get(tty,data)      tcgetattr(tty,data)
222 # define TTY_set(tty,data)      tcsetattr(tty,TCSANOW,data)
223 #endif
224
225 #ifdef TERMIO
226 # include <termio.h>
227 # define TTY_STRUCT             struct termio
228 # define TTY_FLAGS              c_lflag
229 # define TTY_get(tty,data)      ioctl(tty,TCGETA,data)
230 # define TTY_set(tty,data)      ioctl(tty,TCSETA,data)
231 #endif
232
233 #ifdef SGTTY
234 # include <sgtty.h>
235 # define TTY_STRUCT             struct sgttyb
236 # define TTY_FLAGS              sg_flags
237 # define TTY_get(tty,data)      ioctl(tty,TIOCGETP,data)
238 # define TTY_set(tty,data)      ioctl(tty,TIOCSETP,data)
239 #endif
240
241 #if !defined(_LIBC) && !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VMS) && !defined(OPENSSL_SYS_MACINTOSH_CLASSIC) && !defined(OPENSSL_SYS_SUNOS)
242 # include <sys/ioctl.h>
243 #endif
244
245 #ifdef OPENSSL_SYS_MSDOS
246 # include <conio.h>
247 #endif
248
249 #ifdef OPENSSL_SYS_VMS
250 # include <ssdef.h>
251 # include <iodef.h>
252 # include <ttdef.h>
253 # include <descrip.h>
254 struct IOSB {
255         short iosb$w_value;
256         short iosb$w_count;
257         long  iosb$l_info;
258         };
259 #endif
260
261 #ifdef OPENSSL_SYS_SUNOS
262         typedef int sig_atomic_t;
263 #endif
264
265 #if defined(OPENSSL_SYS_MACINTOSH_CLASSIC) || defined(MAC_OS_GUSI_SOURCE) || defined(OPENSSL_SYS_NETWARE)
266 /*
267  * This one needs work. As a matter of fact the code is unoperational
268  * and this is only a trick to get it compiled.
269  *                                      <appro@fy.chalmers.se>
270  */
271 # define TTY_STRUCT int
272 #endif
273
274 #ifndef NX509_SIG
275 # define NX509_SIG 32
276 #endif
277
278
279 /* Define globals.  They are protected by a lock */
280 #ifdef SIGACTION
281 static struct sigaction savsig[NX509_SIG];
282 #else
283 static void (*savsig[NX509_SIG])(int );
284 #endif
285
286 #ifdef OPENSSL_SYS_VMS
287 static struct IOSB iosb;
288 static $DESCRIPTOR(terminal,"TT");
289 static long tty_orig[3], tty_new[3]; /* XXX   Is there any guarantee that this will always suffice for the actual structures? */
290 static long status;
291 static unsigned short channel = 0;
292 #else
293 #if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__)
294 static TTY_STRUCT tty_orig,tty_new;
295 #endif
296 #endif
297 static FILE *tty_in, *tty_out;
298 static int is_a_tty;
299
300 /* Declare static functions */
301 #if !defined(OPENSSL_SYS_WIN16) && !defined(OPENSSL_SYS_WINCE)
302 static void read_till_nl(FILE *);
303 static void recsig(int);
304 static void pushsig(void);
305 static void popsig(void);
306 #endif
307 #if defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_WIN16)
308 static int noecho_fgets(char *buf, int size, FILE *tty);
309 #endif
310 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl);
311
312 static int read_string(UI *ui, UI_STRING *uis);
313 static int write_string(UI *ui, UI_STRING *uis);
314
315 static int open_console(UI *ui);
316 static int echo_console(UI *ui);
317 static int noecho_console(UI *ui);
318 static int close_console(UI *ui);
319
320 static UI_METHOD ui_openssl =
321         {
322         "OpenSSL default user interface",
323         open_console,
324         write_string,
325         NULL,                   /* No flusher is needed for command lines */
326         read_string,
327         close_console,
328         NULL
329         };
330
331 /* The method with all the built-in thingies */
332 UI_METHOD *UI_OpenSSL(void)
333         {
334         return &ui_openssl;
335         }
336
337 /* The following function makes sure that info and error strings are printed
338    before any prompt. */
339 static int write_string(UI *ui, UI_STRING *uis)
340         {
341         switch (UI_get_string_type(uis))
342                 {
343         case UIT_ERROR:
344         case UIT_INFO:
345                 fputs(UI_get0_output_string(uis), tty_out);
346                 fflush(tty_out);
347                 break;
348         default:
349                 break;
350                 }
351         return 1;
352         }
353
354 static int read_string(UI *ui, UI_STRING *uis)
355         {
356         int ok = 0;
357
358         switch (UI_get_string_type(uis))
359                 {
360         case UIT_BOOLEAN:
361                 fputs(UI_get0_output_string(uis), tty_out);
362                 fputs(UI_get0_action_string(uis), tty_out);
363                 fflush(tty_out);
364                 return read_string_inner(ui, uis,
365                         UI_get_input_flags(uis) & UI_INPUT_FLAG_ECHO, 0);
366         case UIT_PROMPT:
367                 fputs(UI_get0_output_string(uis), tty_out);
368                 fflush(tty_out);
369                 return read_string_inner(ui, uis,
370                         UI_get_input_flags(uis) & UI_INPUT_FLAG_ECHO, 1);
371         case UIT_VERIFY:
372                 fprintf(tty_out,"Verifying - %s",
373                         UI_get0_output_string(uis));
374                 fflush(tty_out);
375                 if ((ok = read_string_inner(ui, uis,
376                         UI_get_input_flags(uis) & UI_INPUT_FLAG_ECHO, 1)) <= 0)
377                         return ok;
378                 if (strcmp(UI_get0_result_string(uis),
379                         UI_get0_test_string(uis)) != 0)
380                         {
381                         fprintf(tty_out,"Verify failure\n");
382                         fflush(tty_out);
383                         return 0;
384                         }
385                 break;
386         default:
387                 break;
388                 }
389         return 1;
390         }
391
392
393 #if !defined(OPENSSL_SYS_WIN16) && !defined(OPENSSL_SYS_WINCE)
394 /* Internal functions to read a string without echoing */
395 static void read_till_nl(FILE *in)
396         {
397 #define SIZE 4
398         char buf[SIZE+1];
399
400         do      {
401                 fgets(buf,SIZE,in);
402                 } while (strchr(buf,'\n') == NULL);
403         }
404
405 static volatile sig_atomic_t intr_signal;
406 #endif
407
408 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl)
409         {
410         static int ps;
411         int ok;
412         char result[BUFSIZ];
413         int maxsize = BUFSIZ-1;
414 #if !defined(OPENSSL_SYS_WIN16) && !defined(OPENSSL_SYS_WINCE)
415         char *p;
416
417         intr_signal=0;
418         ok=0;
419         ps=0;
420
421         pushsig();
422         ps=1;
423
424         if (!echo && !noecho_console(ui))
425                 goto error;
426         ps=2;
427
428         result[0]='\0';
429 #ifdef OPENSSL_SYS_MSDOS
430         if (!echo)
431                 {
432                 noecho_fgets(result,maxsize,tty_in);
433                 p=result; /* FIXME: noecho_fgets doesn't return errors */
434                 }
435         else
436                 p=fgets(result,maxsize,tty_in);
437 #else
438         p=fgets(result,maxsize,tty_in);
439 #endif
440         if(!p)
441                 goto error;
442         if (feof(tty_in)) goto error;
443         if (ferror(tty_in)) goto error;
444         if ((p=(char *)strchr(result,'\n')) != NULL)
445                 {
446                 if (strip_nl)
447                         *p='\0';
448                 }
449         else
450                 read_till_nl(tty_in);
451         if (UI_set_result(ui, uis, result) >= 0)
452                 ok=1;
453
454 error:
455         if (intr_signal == SIGINT)
456                 ok=-1;
457         if (!echo) fprintf(tty_out,"\n");
458         if (ps >= 2 && !echo && !echo_console(ui))
459                 ok=0;
460
461         if (ps >= 1)
462                 popsig();
463 #else
464         ok=1;
465 #endif
466
467         OPENSSL_cleanse(result,BUFSIZ);
468         return ok;
469         }
470
471
472 /* Internal functions to open, handle and close a channel to the console.  */
473 static int open_console(UI *ui)
474         {
475         CRYPTO_w_lock(CRYPTO_LOCK_UI);
476         is_a_tty = 1;
477
478 #if defined(OPENSSL_SYS_MACINTOSH_CLASSIC) || defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_NETWARE) || defined(OPENSSL_SYS_BEOS)
479         tty_in=stdin;
480         tty_out=stderr;
481 #else
482 #  ifdef OPENSSL_SYS_MSDOS
483 #    define DEV_TTY "con"
484 #  else
485 #    define DEV_TTY "/dev/tty"
486 #  endif
487         if ((tty_in=fopen(DEV_TTY,"r")) == NULL)
488                 tty_in=stdin;
489         if ((tty_out=fopen(DEV_TTY,"w")) == NULL)
490                 tty_out=stderr;
491 #endif
492
493 #if defined(TTY_get) && !defined(OPENSSL_SYS_VMS)
494         if (TTY_get(fileno(tty_in),&tty_orig) == -1)
495                 {
496 #ifdef ENOTTY
497                 if (errno == ENOTTY)
498                         is_a_tty=0;
499                 else
500 #endif
501 #ifdef EINVAL
502                 /* Ariel Glenn ariel@columbia.edu reports that solaris
503                  * can return EINVAL instead.  This should be ok */
504                 if (errno == EINVAL)
505                         is_a_tty=0;
506                 else
507 #endif
508                         return 0;
509                 }
510 #endif
511 #ifdef OPENSSL_SYS_VMS
512         status = sys$assign(&terminal,&channel,0,0);
513         if (status != SS$_NORMAL)
514                 return 0;
515         status=sys$qiow(0,channel,IO$_SENSEMODE,&iosb,0,0,tty_orig,12,0,0,0,0);
516         if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL))
517                 return 0;
518 #endif
519         return 1;
520         }
521
522 static int noecho_console(UI *ui)
523         {
524 #ifdef TTY_FLAGS
525         memcpy(&(tty_new),&(tty_orig),sizeof(tty_orig));
526         tty_new.TTY_FLAGS &= ~ECHO;
527 #endif
528
529 #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS)
530         if (is_a_tty && (TTY_set(fileno(tty_in),&tty_new) == -1))
531                 return 0;
532 #endif
533 #ifdef OPENSSL_SYS_VMS
534         tty_new[0] = tty_orig[0];
535         tty_new[1] = tty_orig[1] | TT$M_NOECHO;
536         tty_new[2] = tty_orig[2];
537         status = sys$qiow(0,channel,IO$_SETMODE,&iosb,0,0,tty_new,12,0,0,0,0);
538         if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL))
539                 return 0;
540 #endif
541         return 1;
542         }
543
544 static int echo_console(UI *ui)
545         {
546 #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS)
547         memcpy(&(tty_new),&(tty_orig),sizeof(tty_orig));
548         tty_new.TTY_FLAGS |= ECHO;
549 #endif
550
551 #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS)
552         if (is_a_tty && (TTY_set(fileno(tty_in),&tty_new) == -1))
553                 return 0;
554 #endif
555 #ifdef OPENSSL_SYS_VMS
556         tty_new[0] = tty_orig[0];
557         tty_new[1] = tty_orig[1] & ~TT$M_NOECHO;
558         tty_new[2] = tty_orig[2];
559         status = sys$qiow(0,channel,IO$_SETMODE,&iosb,0,0,tty_new,12,0,0,0,0);
560         if ((status != SS$_NORMAL) || (iosb.iosb$w_value != SS$_NORMAL))
561                 return 0;
562 #endif
563         return 1;
564         }
565
566 static int close_console(UI *ui)
567         {
568         if (tty_in != stdin) fclose(tty_in);
569         if (tty_out != stderr) fclose(tty_out);
570 #ifdef OPENSSL_SYS_VMS
571         status = sys$dassgn(channel);
572 #endif
573         CRYPTO_w_unlock(CRYPTO_LOCK_UI);
574
575         return 1;
576         }
577
578
579 #if !defined(OPENSSL_SYS_WIN16) && !defined(OPENSSL_SYS_WINCE)
580 /* Internal functions to handle signals and act on them */
581 static void pushsig(void)
582         {
583 #ifndef OPENSSL_SYS_WIN32
584         int i;
585 #endif
586 #ifdef SIGACTION
587         struct sigaction sa;
588
589         memset(&sa,0,sizeof sa);
590         sa.sa_handler=recsig;
591 #endif
592
593 #ifdef OPENSSL_SYS_WIN32
594         savsig[SIGABRT]=signal(SIGABRT,recsig);
595         savsig[SIGFPE]=signal(SIGFPE,recsig);
596         savsig[SIGILL]=signal(SIGILL,recsig);
597         savsig[SIGINT]=signal(SIGINT,recsig);
598         savsig[SIGSEGV]=signal(SIGSEGV,recsig);
599         savsig[SIGTERM]=signal(SIGTERM,recsig);
600 #else
601         for (i=1; i<NX509_SIG; i++)
602                 {
603 #ifdef SIGUSR1
604                 if (i == SIGUSR1)
605                         continue;
606 #endif
607 #ifdef SIGUSR2
608                 if (i == SIGUSR2)
609                         continue;
610 #endif
611 #ifdef SIGKILL
612                 if (i == SIGKILL) /* We can't make any action on that. */
613                         continue;
614 #endif
615 #ifdef SIGACTION
616                 sigaction(i,&sa,&savsig[i]);
617 #else
618                 savsig[i]=signal(i,recsig);
619 #endif
620                 }
621 #endif
622
623 #ifdef SIGWINCH
624         signal(SIGWINCH,SIG_DFL);
625 #endif
626         }
627
628 static void popsig(void)
629         {
630 #ifdef OPENSSL_SYS_WIN32
631         signal(SIGABRT,savsig[SIGABRT]);
632         signal(SIGFPE,savsig[SIGFPE]);
633         signal(SIGILL,savsig[SIGILL]);
634         signal(SIGINT,savsig[SIGINT]);
635         signal(SIGSEGV,savsig[SIGSEGV]);
636         signal(SIGTERM,savsig[SIGTERM]);
637 #else
638         int i;
639         for (i=1; i<NX509_SIG; i++)
640                 {
641 #ifdef SIGUSR1
642                 if (i == SIGUSR1)
643                         continue;
644 #endif
645 #ifdef SIGUSR2
646                 if (i == SIGUSR2)
647                         continue;
648 #endif
649 #ifdef SIGACTION
650                 sigaction(i,&savsig[i],NULL);
651 #else
652                 signal(i,savsig[i]);
653 #endif
654                 }
655 #endif
656         }
657
658 static void recsig(int i)
659         {
660         intr_signal=i;
661         }
662 #endif
663
664 /* Internal functions specific for Windows */
665 #if defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_WIN16) && !defined(OPENSSL_SYS_WINCE)
666 static int noecho_fgets(char *buf, int size, FILE *tty)
667         {
668         int i;
669         char *p;
670
671         p=buf;
672         for (;;)
673                 {
674                 if (size == 0)
675                         {
676                         *p='\0';
677                         break;
678                         }
679                 size--;
680 #ifdef WIN16TTY
681                 i=_inchar();
682 #elif defined(_WIN32)
683                 i=_getch();
684 #else
685                 i=getch();
686 #endif
687                 if (i == '\r') i='\n';
688                 *(p++)=i;
689                 if (i == '\n')
690                         {
691                         *p='\0';
692                         break;
693                         }
694                 }
695 #ifdef WIN_CONSOLE_BUG
696 /* Win95 has several evil console bugs: one of these is that the
697  * last character read using getch() is passed to the next read: this is
698  * usually a CR so this can be trouble. No STDIO fix seems to work but
699  * flushing the console appears to do the trick.
700  */
701                 {
702                         HANDLE inh;
703                         inh = GetStdHandle(STD_INPUT_HANDLE);
704                         FlushConsoleInputBuffer(inh);
705                 }
706 #endif
707         return(strlen(buf));
708         }
709 #endif