Fix KRB-FX-CF2 for enctypes with non-dense keyspaces
[heimdal.git] / lib / hx509 / lock.c
blob52f72dba1b711b57650615428a1a84019c4fc6cd
1 /*
2 * Copyright (c) 2005 - 2006 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 "hx_locl.h"
36 /**
37 * @page page_lock Locking and unlocking certificates and encrypted data.
39 * See the library functions here: @ref hx509_lock
42 struct hx509_lock_data {
43 struct _hx509_password password;
44 hx509_certs certs;
45 hx509_prompter_fct prompt;
46 void *prompt_data;
49 static struct hx509_lock_data empty_lock_data = {
50 { 0, NULL },
51 NULL,
52 NULL,
53 NULL
56 hx509_lock _hx509_empty_lock = &empty_lock_data;
62 int
63 hx509_lock_init(hx509_context context, hx509_lock *lock)
65 hx509_lock l;
66 int ret;
68 *lock = NULL;
70 l = calloc(1, sizeof(*l));
71 if (l == NULL)
72 return ENOMEM;
74 ret = hx509_certs_init(context,
75 "MEMORY:locks-internal",
77 NULL,
78 &l->certs);
79 if (ret) {
80 free(l);
81 return ret;
84 *lock = l;
86 return 0;
89 int
90 hx509_lock_add_password(hx509_lock lock, const char *password)
92 void *d;
93 char *s;
95 s = strdup(password);
96 if (s == NULL)
97 return ENOMEM;
99 d = realloc(lock->password.val,
100 (lock->password.len + 1) * sizeof(lock->password.val[0]));
101 if (d == NULL) {
102 free(s);
103 return ENOMEM;
105 lock->password.val = d;
106 lock->password.val[lock->password.len] = s;
107 lock->password.len++;
109 return 0;
112 const struct _hx509_password *
113 _hx509_lock_get_passwords(hx509_lock lock)
115 return &lock->password;
118 hx509_certs
119 _hx509_lock_unlock_certs(hx509_lock lock)
121 return lock->certs;
124 void
125 hx509_lock_reset_passwords(hx509_lock lock)
127 size_t i;
128 for (i = 0; i < lock->password.len; i++)
129 free(lock->password.val[i]);
130 free(lock->password.val);
131 lock->password.val = NULL;
132 lock->password.len = 0;
136 hx509_lock_add_cert(hx509_context context, hx509_lock lock, hx509_cert cert)
138 return hx509_certs_add(context, lock->certs, cert);
142 hx509_lock_add_certs(hx509_context context, hx509_lock lock, hx509_certs certs)
144 return hx509_certs_merge(context, lock->certs, certs);
147 void
148 hx509_lock_reset_certs(hx509_context context, hx509_lock lock)
150 hx509_certs certs = lock->certs;
151 int ret;
153 ret = hx509_certs_init(context,
154 "MEMORY:locks-internal",
156 NULL,
157 &lock->certs);
158 if (ret == 0)
159 hx509_certs_free(&certs);
160 else
161 lock->certs = certs;
165 _hx509_lock_find_cert(hx509_lock lock, const hx509_query *q, hx509_cert *c)
167 *c = NULL;
168 return 0;
172 hx509_lock_set_prompter(hx509_lock lock, hx509_prompter_fct prompt, void *data)
174 lock->prompt = prompt;
175 lock->prompt_data = data;
176 return 0;
179 void
180 hx509_lock_reset_promper(hx509_lock lock)
182 lock->prompt = NULL;
183 lock->prompt_data = NULL;
186 static int
187 default_prompter(void *data, const hx509_prompt *prompter)
189 if (hx509_prompt_hidden(prompter->type)) {
190 if(UI_UTIL_read_pw_string(prompter->reply.data,
191 prompter->reply.length,
192 prompter->prompt,
194 return 1;
195 } else {
196 char *s = prompter->reply.data;
198 fputs (prompter->prompt, stdout);
199 fflush (stdout);
200 if(fgets(prompter->reply.data,
201 prompter->reply.length,
202 stdin) == NULL)
203 return 1;
204 s[strcspn(s, "\n")] = '\0';
206 return 0;
210 hx509_lock_prompt(hx509_lock lock, hx509_prompt *prompt)
212 if (lock->prompt == NULL)
213 return HX509_CRYPTO_NO_PROMPTER;
214 return (*lock->prompt)(lock->prompt_data, prompt);
217 void
218 hx509_lock_free(hx509_lock lock)
220 if (lock) {
221 hx509_certs_free(&lock->certs);
222 hx509_lock_reset_passwords(lock);
223 memset(lock, 0, sizeof(*lock));
224 free(lock);
229 hx509_prompt_hidden(hx509_prompt_type type)
231 /* default to hidden if unknown */
233 switch (type) {
234 case HX509_PROMPT_TYPE_QUESTION:
235 case HX509_PROMPT_TYPE_INFO:
236 return 0;
237 default:
238 return 1;
243 hx509_lock_command_string(hx509_lock lock, const char *string)
245 if (strncasecmp(string, "PASS:", 5) == 0) {
246 hx509_lock_add_password(lock, string + 5);
247 } else if (strcasecmp(string, "PROMPT") == 0) {
248 hx509_lock_set_prompter(lock, default_prompter, NULL);
249 } else
250 return HX509_UNKNOWN_LOCK_COMMAND;
251 return 0;