s4:torture: Adapt KDC canon test to Heimdal upstream changes
[Samba.git] / source4 / heimdal / lib / kadm5 / common_glue.c
blob9993b0a349eed5fcbd280dea7c1ae478e6e17290
1 /*
2 * Copyright (c) 1997 - 2000 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 "kadm5_locl.h"
36 RCSID("$Id$");
38 #define __CALL(F, P) (*((kadm5_common_context*)server_handle)->funcs.F)P
39 #define __CALLABLE(F) (((kadm5_common_context*)server_handle)->funcs.F != 0)
41 kadm5_ret_t
42 kadm5_chpass_principal(void *server_handle,
43 krb5_principal princ,
44 const char *password)
46 return __CALL(chpass_principal, (server_handle, princ, 0,
47 0, NULL, password));
50 kadm5_ret_t
51 kadm5_chpass_principal_3(void *server_handle,
52 krb5_principal princ,
53 krb5_boolean keepold,
54 int n_ks_tuple,
55 krb5_key_salt_tuple *ks_tuple,
56 const char *password)
58 return __CALL(chpass_principal, (server_handle, princ, keepold,
59 n_ks_tuple, ks_tuple, password));
62 kadm5_ret_t
63 kadm5_chpass_principal_with_key(void *server_handle,
64 krb5_principal princ,
65 int n_key_data,
66 krb5_key_data *key_data)
68 return __CALL(chpass_principal_with_key,
69 (server_handle, princ, 0, n_key_data, key_data));
72 kadm5_ret_t
73 kadm5_chpass_principal_with_key_3(void *server_handle,
74 krb5_principal princ,
75 int keepold,
76 int n_key_data,
77 krb5_key_data *key_data)
79 return __CALL(chpass_principal_with_key,
80 (server_handle, princ, keepold, n_key_data, key_data));
83 kadm5_ret_t
84 kadm5_create_principal_3(void *server_handle,
85 kadm5_principal_ent_t princ,
86 uint32_t mask,
87 int n_ks_tuple,
88 krb5_key_salt_tuple *ks_tuple,
89 char *password)
91 return __CALL(create_principal,
92 (server_handle, princ, mask, n_ks_tuple, ks_tuple, password));
95 kadm5_ret_t
96 kadm5_create_principal(void *server_handle,
97 kadm5_principal_ent_t princ,
98 uint32_t mask,
99 const char *password)
101 return __CALL(create_principal,
102 (server_handle, princ, mask, 0, NULL, password));
105 kadm5_ret_t
106 kadm5_delete_principal(void *server_handle,
107 krb5_principal princ)
109 return __CALL(delete_principal, (server_handle, princ));
112 kadm5_ret_t
113 kadm5_destroy (void *server_handle)
115 return __CALL(destroy, (server_handle));
118 kadm5_ret_t
119 kadm5_flush (void *server_handle)
121 return __CALL(flush, (server_handle));
124 kadm5_ret_t
125 kadm5_get_principal(void *server_handle,
126 krb5_principal princ,
127 kadm5_principal_ent_t out,
128 uint32_t mask)
130 return __CALL(get_principal, (server_handle, princ, out, mask));
134 * Extract decrypted keys from kadm5_principal_ent_t object. Mostly a
135 * no-op for Heimdal because we fetch the entry with decrypted keys.
136 * Sadly this is not fully a no-op, as we have to allocate a copy.
138 * @server_handle is the kadm5 handle
139 * @entry is the HDB entry for the principal in question
140 * @ktype is the enctype to get a key for, or -1 to get the first one
141 * @stype is the salttype to get a key for, or -1 to get the first match
142 * @kvno is the kvno to search for, or -1 to get the first match (highest kvno)
143 * @keyblock is where the key will be placed
144 * @keysalt, if not NULL, is where the salt will be placed
145 * @kvnop, if not NULL, is where the selected kvno will be placed
147 kadm5_ret_t
148 kadm5_decrypt_key(void *server_handle,
149 kadm5_principal_ent_t entry,
150 int32_t ktype, int32_t stype,
151 int32_t kvno, krb5_keyblock *keyblock,
152 krb5_keysalt *keysalt, int *kvnop)
154 size_t i;
155 kadm5_server_context *context = server_handle;
157 if (kvno < 1 || stype != -1)
158 return KADM5_DECRYPT_USAGE_NOSUPP;
160 for (i = 0; i < entry->n_key_data; i++) {
161 if (ktype != entry->key_data[i].key_data_kvno)
162 continue;
164 keyblock->keytype = ktype;
165 keyblock->keyvalue.length = entry->key_data[i].key_data_length[0];
166 keyblock->keyvalue.data = malloc(keyblock->keyvalue.length);
167 if (keyblock->keyvalue.data == NULL)
168 return krb5_enomem(context->context);
169 memcpy(keyblock->keyvalue.data,
170 entry->key_data[i].key_data_contents[0],
171 keyblock->keyvalue.length);
174 return 0;
177 kadm5_ret_t
178 kadm5_modify_principal(void *server_handle,
179 kadm5_principal_ent_t princ,
180 uint32_t mask)
182 return __CALL(modify_principal, (server_handle, princ, mask));
185 kadm5_ret_t
186 kadm5_randkey_principal(void *server_handle,
187 krb5_principal princ,
188 krb5_keyblock **new_keys,
189 int *n_keys)
191 return __CALL(randkey_principal, (server_handle, princ, FALSE, 0, NULL,
192 new_keys, n_keys));
195 kadm5_ret_t
196 kadm5_randkey_principal_3(void *server_handle,
197 krb5_principal princ,
198 krb5_boolean keepold,
199 int n_ks_tuple,
200 krb5_key_salt_tuple *ks_tuple,
201 krb5_keyblock **new_keys,
202 int *n_keys)
204 return __CALL(randkey_principal, (server_handle, princ, keepold,
205 n_ks_tuple, ks_tuple, new_keys, n_keys));
208 kadm5_ret_t
209 kadm5_rename_principal(void *server_handle,
210 krb5_principal source,
211 krb5_principal target)
213 return __CALL(rename_principal, (server_handle, source, target));
216 kadm5_ret_t
217 kadm5_get_principals(void *server_handle,
218 const char *expression,
219 char ***princs,
220 int *count)
222 return __CALL(get_principals, (server_handle, expression, princs, count));
225 kadm5_ret_t
226 kadm5_get_privs(void *server_handle,
227 uint32_t *privs)
229 return __CALL(get_privs, (server_handle, privs));
234 * This function is allows the caller to set new keys for a principal.
235 * This is a trivial wrapper around kadm5_setkey_principal_3().
237 kadm5_ret_t
238 kadm5_setkey_principal(void *server_handle,
239 krb5_principal princ,
240 krb5_keyblock *new_keys,
241 int n_keys)
243 return kadm5_setkey_principal_3(server_handle, princ, 0, 0, NULL,
244 new_keys, n_keys);
248 * This function is allows the caller to set new keys for a principal.
249 * This is a simple wrapper around kadm5_get_principal() and
250 * kadm5_modify_principal().
252 kadm5_ret_t
253 kadm5_setkey_principal_3(void *server_handle,
254 krb5_principal princ,
255 krb5_boolean keepold,
256 int n_ks_tuple, krb5_key_salt_tuple *ks_tuple,
257 krb5_keyblock *keyblocks,
258 int n_keys)
260 kadm5_principal_ent_rec princ_ent;
261 kadm5_ret_t ret;
262 krb5_key_data *new_key_data = NULL;
263 size_t i;
264 kadm5_server_context *context = server_handle;
266 if (n_keys < 1)
267 return EINVAL;
268 if (n_ks_tuple > 0 && n_ks_tuple != n_keys)
269 return KADM5_SETKEY3_ETYPE_MISMATCH;
272 * If setkey_principal_3 is defined in the server handle, use that.
274 if (__CALLABLE(setkey_principal_3))
275 return __CALL(setkey_principal_3,
276 (server_handle, princ, keepold, n_ks_tuple, ks_tuple,
277 keyblocks, n_keys));
280 * Otherwise, simulate it via a get, update, modify sequence.
282 ret = kadm5_get_principal(server_handle, princ, &princ_ent,
283 KADM5_KVNO | KADM5_PRINCIPAL | KADM5_KEY_DATA);
284 if (ret)
285 return ret;
287 if (keepold) {
288 new_key_data = calloc((n_keys + princ_ent.n_key_data),
289 sizeof(*new_key_data));
290 if (new_key_data == NULL) {
291 ret = krb5_enomem(context->context);
292 goto out;
295 memcpy(&new_key_data[n_keys], &princ_ent.key_data[0],
296 princ_ent.n_key_data * sizeof (princ_ent.key_data[0]));
297 } else {
298 new_key_data = calloc(n_keys, sizeof(*new_key_data));
299 if (new_key_data == NULL) {
300 ret = krb5_enomem(context->context);
301 goto out;
305 princ_ent.kvno++;
306 for (i = 0; i < n_keys; i++) {
307 new_key_data[i].key_data_ver = 2;
309 /* Key */
310 new_key_data[i].key_data_kvno = princ_ent.kvno;
311 new_key_data[i].key_data_type[0] = keyblocks[i].keytype;
312 new_key_data[i].key_data_length[0] = keyblocks[i].keyvalue.length;
313 new_key_data[i].key_data_contents[0] =
314 malloc(keyblocks[i].keyvalue.length);
315 if (new_key_data[i].key_data_contents[0] == NULL) {
316 ret = krb5_enomem(context->context);
317 goto out;
319 memcpy(new_key_data[i].key_data_contents[0],
320 keyblocks[i].keyvalue.data,
321 keyblocks[i].keyvalue.length);
324 * Salt (but there's no salt, just salttype, which is kinda
325 * silly -- what's the point of setkey_3() then, besides
326 * keepold?!)
328 new_key_data[i].key_data_type[1] = 0;
329 if (n_ks_tuple > 0) {
330 if (ks_tuple[i].ks_enctype != keyblocks[i].keytype) {
331 ret = KADM5_SETKEY3_ETYPE_MISMATCH;
332 goto out;
334 new_key_data[i].key_data_type[1] = ks_tuple[i].ks_salttype;
336 new_key_data[i].key_data_length[1] = 0;
337 new_key_data[i].key_data_contents[1] = NULL;
340 /* Free old keys */
341 if (!keepold) {
342 for (i = 0; i < princ_ent.n_key_data; i++) {
343 free(princ_ent.key_data[i].key_data_contents[0]);
344 free(princ_ent.key_data[i].key_data_contents[1]);
347 free(princ_ent.key_data);
348 princ_ent.key_data = new_key_data;
349 princ_ent.n_key_data = n_keys + (keepold ? princ_ent.n_key_data : 0);
350 new_key_data = NULL;
352 /* Modify the principal */
353 ret = kadm5_modify_principal(server_handle, &princ_ent, KADM5_KVNO | KADM5_KEY_DATA);
355 out:
356 if (new_key_data != NULL) {
357 for (i = 0; i < n_keys; i++) {
358 free(new_key_data[i].key_data_contents[0]);
359 free(new_key_data[i].key_data_contents[1]);
361 free(new_key_data);
363 kadm5_free_principal_ent(server_handle, &princ_ent);
364 return ret;
368 kadm5_ret_t
369 kadm5_lock(void *server_handle)
371 return __CALL(lock, (server_handle));
374 kadm5_ret_t
375 kadm5_unlock(void *server_handle)
377 return __CALL(unlock, (server_handle));
381 kadm5_ret_t
382 kadm5_create_policy(void *server_handle,
383 kadm5_policy_ent_t policy, long mask)
385 return KADM5_POLICY_OP_NOSUPP;
388 kadm5_ret_t
389 kadm5_delete_policy(void *server_handle, char *name)
391 return KADM5_POLICY_OP_NOSUPP;
395 kadm5_ret_t
396 kadm5_modify_policy(void *server_handle, kadm5_policy_ent_t policy,
397 uint32_t mask)
399 return KADM5_POLICY_OP_NOSUPP;
402 kadm5_ret_t
403 kadm5_get_policy(void *server_handle, char *policy, kadm5_policy_ent_t ent)
405 memset(ent, 0, sizeof (*ent));
406 return KADM5_POLICY_OP_NOSUPP;
410 kadm5_ret_t
411 kadm5_get_policies(void *server_handle, char *exp, char ***pols, int *count)
413 *count = 0;
414 *pols = NULL;
416 return KADM5_POLICY_OP_NOSUPP;
419 kadm5_ret_t
420 kadm5_free_policy_ent(kadm5_policy_ent_t ent)
422 if (ent->policy)
423 free(ent->policy);
425 * Not clear if we should free ent or not. It might be an automatic
426 * struct, so we don't free it for now, just in case.
428 return 0;
431 kadm5_ret_t
432 kadm5_prune_principal(void *server_handle,
433 krb5_principal princ,
434 int kvno)
436 return __CALL(prune_principal, (server_handle, princ, kvno));