This commit was manufactured by cvs2svn to create tag
[heimdal.git] / lib / krb5 / init_creds.c
blobe9037163228bf69ec4e260e7a039c437ff3b9530
1 /*
2 * Copyright (c) 1997 - 2004 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 "krb5_locl.h"
36 RCSID("$Id$");
38 void KRB5_LIB_FUNCTION
39 krb5_get_init_creds_opt_init(krb5_get_init_creds_opt *opt)
41 memset (opt, 0, sizeof(*opt));
42 opt->flags = 0;
43 opt->opt_private = NULL;
46 krb5_error_code KRB5_LIB_FUNCTION
47 krb5_get_init_creds_opt_alloc(krb5_context context,
48 krb5_get_init_creds_opt **opt)
50 krb5_get_init_creds_opt *o;
52 *opt = NULL;
53 o = calloc(1, sizeof(*o));
54 if (o == NULL) {
55 krb5_set_error_string(context, "out of memory");
56 return ENOMEM;
58 krb5_get_init_creds_opt_init(o);
59 o->opt_private = calloc(1, sizeof(*o->opt_private));
60 if (o->opt_private == NULL) {
61 krb5_set_error_string(context, "out of memory");
62 free(o);
63 return ENOMEM;
65 o->opt_private->refcount = 1;
66 *opt = o;
67 return 0;
70 krb5_error_code
71 _krb5_get_init_creds_opt_copy(krb5_context context,
72 const krb5_get_init_creds_opt *in,
73 krb5_get_init_creds_opt **out)
75 krb5_get_init_creds_opt *opt;
77 *out = NULL;
78 opt = malloc(sizeof(*opt));
79 if (opt == NULL) {
80 krb5_set_error_string(context, "out of memory");
81 return ENOMEM;
83 if (in)
84 *opt = *in;
85 if(opt->opt_private == NULL) {
86 opt->opt_private = calloc(1, sizeof(*opt->opt_private));
87 if (opt->opt_private == NULL) {
88 krb5_set_error_string(context, "out of memory");
89 free(opt);
90 return ENOMEM;
92 opt->opt_private->refcount = 1;
93 } else
94 opt->opt_private->refcount++;
95 *out = opt;
96 return 0;
99 void KRB5_LIB_FUNCTION
100 krb5_get_init_creds_opt_free(krb5_get_init_creds_opt *opt)
102 if (opt->opt_private == NULL)
103 return;
104 if (opt->opt_private->refcount < 1) /* abort ? */
105 return;
106 if (--opt->opt_private->refcount == 0) {
107 _krb5_get_init_creds_opt_free_pkinit(opt);
108 free(opt->opt_private);
110 memset(opt, 0, sizeof(*opt));
111 free(opt);
114 static int
115 get_config_time (krb5_context context,
116 const char *realm,
117 const char *name,
118 int def)
120 int ret;
122 ret = krb5_config_get_time (context, NULL,
123 "realms",
124 realm,
125 name,
126 NULL);
127 if (ret >= 0)
128 return ret;
129 ret = krb5_config_get_time (context, NULL,
130 "libdefaults",
131 name,
132 NULL);
133 if (ret >= 0)
134 return ret;
135 return def;
138 static krb5_boolean
139 get_config_bool (krb5_context context,
140 const char *realm,
141 const char *name)
143 return krb5_config_get_bool (context,
144 NULL,
145 "realms",
146 realm,
147 name,
148 NULL)
149 || krb5_config_get_bool (context,
150 NULL,
151 "libdefaults",
152 name,
153 NULL);
157 * set all the values in `opt' to the appropriate values for
158 * application `appname' (default to getprogname() if NULL), and realm
159 * `realm'. First looks in [appdefaults] but falls back to
160 * [realms] or [libdefaults] for some of the values.
163 static krb5_addresses no_addrs = {0, NULL};
165 void KRB5_LIB_FUNCTION
166 krb5_get_init_creds_opt_set_default_flags(krb5_context context,
167 const char *appname,
168 krb5_const_realm realm,
169 krb5_get_init_creds_opt *opt)
171 krb5_boolean b;
172 time_t t;
174 b = get_config_bool (context, realm, "forwardable");
175 krb5_appdefault_boolean(context, appname, realm, "forwardable", b, &b);
176 krb5_get_init_creds_opt_set_forwardable(opt, b);
178 b = get_config_bool (context, realm, "proxiable");
179 krb5_appdefault_boolean(context, appname, realm, "proxiable", b, &b);
180 krb5_get_init_creds_opt_set_proxiable (opt, b);
182 krb5_appdefault_time(context, appname, realm, "ticket_lifetime", 0, &t);
183 if (t == 0)
184 t = get_config_time (context, realm, "ticket_lifetime", 0);
185 if(t != 0)
186 krb5_get_init_creds_opt_set_tkt_life(opt, t);
188 krb5_appdefault_time(context, appname, realm, "renew_lifetime", 0, &t);
189 if (t == 0)
190 t = get_config_time (context, realm, "renew_lifetime", 0);
191 if(t != 0)
192 krb5_get_init_creds_opt_set_renew_life(opt, t);
194 krb5_appdefault_boolean(context, appname, realm, "no-addresses", FALSE, &b);
195 if (b)
196 krb5_get_init_creds_opt_set_address_list (opt, &no_addrs);
198 #if 0
199 krb5_appdefault_boolean(context, appname, realm, "anonymous", FALSE, &b);
200 krb5_get_init_creds_opt_set_anonymous (opt, b);
202 krb5_get_init_creds_opt_set_etype_list(opt, enctype,
203 etype_str.num_strings);
205 krb5_get_init_creds_opt_set_salt(krb5_get_init_creds_opt *opt,
206 krb5_data *salt);
208 krb5_get_init_creds_opt_set_preauth_list(krb5_get_init_creds_opt *opt,
209 krb5_preauthtype *preauth_list,
210 int preauth_list_length);
211 #endif
215 void KRB5_LIB_FUNCTION
216 krb5_get_init_creds_opt_set_tkt_life(krb5_get_init_creds_opt *opt,
217 krb5_deltat tkt_life)
219 opt->flags |= KRB5_GET_INIT_CREDS_OPT_TKT_LIFE;
220 opt->tkt_life = tkt_life;
223 void KRB5_LIB_FUNCTION
224 krb5_get_init_creds_opt_set_renew_life(krb5_get_init_creds_opt *opt,
225 krb5_deltat renew_life)
227 opt->flags |= KRB5_GET_INIT_CREDS_OPT_RENEW_LIFE;
228 opt->renew_life = renew_life;
231 void KRB5_LIB_FUNCTION
232 krb5_get_init_creds_opt_set_forwardable(krb5_get_init_creds_opt *opt,
233 int forwardable)
235 opt->flags |= KRB5_GET_INIT_CREDS_OPT_FORWARDABLE;
236 opt->forwardable = forwardable;
239 void KRB5_LIB_FUNCTION
240 krb5_get_init_creds_opt_set_proxiable(krb5_get_init_creds_opt *opt,
241 int proxiable)
243 opt->flags |= KRB5_GET_INIT_CREDS_OPT_PROXIABLE;
244 opt->proxiable = proxiable;
247 void KRB5_LIB_FUNCTION
248 krb5_get_init_creds_opt_set_etype_list(krb5_get_init_creds_opt *opt,
249 krb5_enctype *etype_list,
250 int etype_list_length)
252 opt->flags |= KRB5_GET_INIT_CREDS_OPT_ETYPE_LIST;
253 opt->etype_list = etype_list;
254 opt->etype_list_length = etype_list_length;
257 void KRB5_LIB_FUNCTION
258 krb5_get_init_creds_opt_set_address_list(krb5_get_init_creds_opt *opt,
259 krb5_addresses *addresses)
261 opt->flags |= KRB5_GET_INIT_CREDS_OPT_ADDRESS_LIST;
262 opt->address_list = addresses;
265 void KRB5_LIB_FUNCTION
266 krb5_get_init_creds_opt_set_preauth_list(krb5_get_init_creds_opt *opt,
267 krb5_preauthtype *preauth_list,
268 int preauth_list_length)
270 opt->flags |= KRB5_GET_INIT_CREDS_OPT_PREAUTH_LIST;
271 opt->preauth_list_length = preauth_list_length;
272 opt->preauth_list = preauth_list;
275 void KRB5_LIB_FUNCTION
276 krb5_get_init_creds_opt_set_salt(krb5_get_init_creds_opt *opt,
277 krb5_data *salt)
279 opt->flags |= KRB5_GET_INIT_CREDS_OPT_SALT;
280 opt->salt = salt;
283 void KRB5_LIB_FUNCTION
284 krb5_get_init_creds_opt_set_anonymous(krb5_get_init_creds_opt *opt,
285 int anonymous)
287 opt->flags |= KRB5_GET_INIT_CREDS_OPT_ANONYMOUS;
288 opt->anonymous = anonymous;
291 static krb5_error_code
292 require_ext_opt(krb5_context context,
293 krb5_get_init_creds_opt *opt,
294 const char *type)
296 if (opt->opt_private == NULL) {
297 krb5_set_error_string(context, "%s on non extendable opt", type);
298 return EINVAL;
300 return 0;
303 krb5_error_code KRB5_LIB_FUNCTION
304 krb5_get_init_creds_opt_set_pa_password(krb5_context context,
305 krb5_get_init_creds_opt *opt,
306 const char *password,
307 krb5_s2k_proc key_proc)
309 krb5_error_code ret;
310 ret = require_ext_opt(context, opt, "init_creds_opt_set_pa_password");
311 if (ret)
312 return ret;
313 opt->opt_private->password = password;
314 opt->opt_private->key_proc = key_proc;
315 return 0;
318 krb5_error_code KRB5_LIB_FUNCTION
319 krb5_get_init_creds_opt_set_pac_request(krb5_context context,
320 krb5_get_init_creds_opt *opt,
321 krb5_boolean req_pac)
323 krb5_error_code ret;
324 ret = require_ext_opt(context, opt, "init_creds_opt_set_pac_req");
325 if (ret)
326 return ret;
327 opt->opt_private->req_pac = req_pac ?
328 KRB5_PA_PAC_REQ_TRUE :
329 KRB5_PA_PAC_REQ_FALSE;
330 return 0;