[HEIMDAL-646] malloc(0) checks for AIX
[heimdal.git] / lib / hcrypto / ui.c
blobca8c8442b5639d184a6f4a009f2dc0115097cd93
1 /*
2 * Copyright (c) 1997 - 2000, 2005 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
34 #include <config.h>
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <signal.h>
40 #include <termios.h>
41 #include <roken.h>
43 #include <ui.h>
45 static sig_atomic_t intr_flag;
47 static void
48 intr(int sig)
50 intr_flag++;
53 #ifndef NSIG
54 #define NSIG 47
55 #endif
57 static int
58 read_string(const char *preprompt, const char *prompt,
59 char *buf, size_t len, int echo)
61 struct sigaction sigs[NSIG];
62 int oksigs[NSIG];
63 struct sigaction sa;
64 FILE *tty;
65 int ret = 0;
66 int of = 0;
67 int i;
68 int c;
69 char *p;
71 struct termios t_new, t_old;
73 memset(&oksigs, 0, sizeof(oksigs));
75 memset(&sa, 0, sizeof(sa));
76 sa.sa_handler = intr;
77 sigemptyset(&sa.sa_mask);
78 sa.sa_flags = 0;
79 for(i = 1; i < sizeof(sigs) / sizeof(sigs[0]); i++)
80 if (i != SIGALRM)
81 if (sigaction(i, &sa, &sigs[i]) == 0)
82 oksigs[i] = 1;
84 if((tty = fopen("/dev/tty", "r")) != NULL)
85 rk_cloexec_file(tty);
86 else
87 tty = stdin;
89 fprintf(stderr, "%s%s", preprompt, prompt);
90 fflush(stderr);
92 if(echo == 0){
93 tcgetattr(fileno(tty), &t_old);
94 memcpy(&t_new, &t_old, sizeof(t_new));
95 t_new.c_lflag &= ~ECHO;
96 tcsetattr(fileno(tty), TCSANOW, &t_new);
98 intr_flag = 0;
99 p = buf;
100 while(intr_flag == 0){
101 c = getc(tty);
102 if(c == EOF){
103 if(!ferror(tty))
104 ret = 1;
105 break;
107 if(c == '\n')
108 break;
109 if(of == 0)
110 *p++ = c;
111 of = (p == buf + len);
113 if(of)
114 p--;
115 *p = 0;
117 if(echo == 0){
118 fprintf(stderr, "\n");
119 tcsetattr(fileno(tty), TCSANOW, &t_old);
122 if(tty != stdin)
123 fclose(tty);
125 for(i = 1; i < sizeof(sigs) / sizeof(sigs[0]); i++)
126 if (oksigs[i])
127 sigaction(i, &sigs[i], NULL);
129 if(ret)
130 return -3;
131 if(intr_flag)
132 return -2;
133 if(of)
134 return -1;
135 return 0;
139 UI_UTIL_read_pw_string(char *buf, int length, const char *prompt, int verify)
141 int ret;
143 ret = read_string("", prompt, buf, length, 0);
144 if (ret)
145 return ret;
147 if (verify) {
148 char *buf2;
149 buf2 = malloc(length);
150 if (buf2 == NULL)
151 return 1;
153 ret = read_string("Verify password - ", prompt, buf2, length, 0);
154 if (ret) {
155 free(buf2);
156 return ret;
158 if (strcmp(buf2, buf) != 0)
159 ret = 1;
160 free(buf2);
162 return ret;