s3: Add vfs_aio_posix
[Samba/gebeck_regimport.git] / source4 / heimdal / lib / krb5 / plugin.c
blob9303b6c615b7f51715060284f5aa96ce930bf97d
1 /*
2 * Copyright (c) 2006 - 2007 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 #ifdef HAVE_DLFCN_H
37 #include <dlfcn.h>
38 #endif
39 #include <dirent.h>
41 struct krb5_plugin {
42 void *symbol;
43 struct krb5_plugin *next;
46 struct plugin {
47 enum { DSO, SYMBOL } type;
48 union {
49 struct {
50 char *path;
51 void *dsohandle;
52 } dso;
53 struct {
54 enum krb5_plugin_type type;
55 char *name;
56 char *symbol;
57 } symbol;
58 } u;
59 struct plugin *next;
62 static HEIMDAL_MUTEX plugin_mutex = HEIMDAL_MUTEX_INITIALIZER;
63 static struct plugin *registered = NULL;
64 static int plugins_needs_scan = 1;
66 static const char *sysplugin_dirs[] = {
67 LIBDIR "/plugin/krb5",
68 #ifdef __APPLE__
69 "/System/Library/KerberosPlugins/KerberosFrameworkPlugins",
70 #endif
71 NULL
78 void *
79 _krb5_plugin_get_symbol(struct krb5_plugin *p)
81 return p->symbol;
84 struct krb5_plugin *
85 _krb5_plugin_get_next(struct krb5_plugin *p)
87 return p->next;
94 #ifdef HAVE_DLOPEN
96 static krb5_error_code
97 loadlib(krb5_context context, char *path)
99 struct plugin *e;
101 e = calloc(1, sizeof(*e));
102 if (e == NULL) {
103 krb5_set_error_message(context, ENOMEM, "malloc: out of memory");
104 free(path);
105 return ENOMEM;
108 #ifndef RTLD_LAZY
109 #define RTLD_LAZY 0
110 #endif
111 #ifndef RTLD_LOCAL
112 #define RTLD_LOCAL 0
113 #endif
114 e->type = DSO;
115 /* ignore error from dlopen, and just keep it as negative cache entry */
116 e->u.dso.dsohandle = dlopen(path, RTLD_LOCAL|RTLD_LAZY);
117 e->u.dso.path = path;
119 e->next = registered;
120 registered = e;
122 return 0;
124 #endif /* HAVE_DLOPEN */
127 * Register a plugin symbol name of specific type.
128 * @param context a Keberos context
129 * @param type type of plugin symbol
130 * @param name name of plugin symbol
131 * @param symbol a pointer to the named symbol
132 * @return In case of error a non zero error com_err error is returned
133 * and the Kerberos error string is set.
135 * @ingroup krb5_support
138 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
139 krb5_plugin_register(krb5_context context,
140 enum krb5_plugin_type type,
141 const char *name,
142 void *symbol)
144 struct plugin *e;
146 HEIMDAL_MUTEX_lock(&plugin_mutex);
148 /* check for duplicates */
149 for (e = registered; e != NULL; e = e->next) {
150 if (e->type == SYMBOL &&
151 strcmp(e->u.symbol.name, name) == 0 &&
152 e->u.symbol.type == type && e->u.symbol.symbol == symbol) {
153 HEIMDAL_MUTEX_unlock(&plugin_mutex);
154 return 0;
158 e = calloc(1, sizeof(*e));
159 if (e == NULL) {
160 HEIMDAL_MUTEX_unlock(&plugin_mutex);
161 krb5_set_error_message(context, ENOMEM, "malloc: out of memory");
162 return ENOMEM;
164 e->type = SYMBOL;
165 e->u.symbol.type = type;
166 e->u.symbol.name = strdup(name);
167 if (e->u.symbol.name == NULL) {
168 HEIMDAL_MUTEX_unlock(&plugin_mutex);
169 free(e);
170 krb5_set_error_message(context, ENOMEM, "malloc: out of memory");
171 return ENOMEM;
173 e->u.symbol.symbol = symbol;
175 e->next = registered;
176 registered = e;
177 HEIMDAL_MUTEX_unlock(&plugin_mutex);
179 return 0;
182 static int
183 is_valid_plugin_filename(const char * n)
185 if (n[0] == '.' && (n[1] == '\0' || (n[1] == '.' && n[2] == '\0')))
186 return 0;
188 #ifdef _WIN32
189 /* On Windows, we only attempt to load .dll files as plug-ins. */
191 const char * ext;
193 ext = strrchr(n, '.');
194 if (ext == NULL)
195 return 0;
197 return !stricmp(ext, ".dll");
199 #else
200 return 1;
201 #endif
204 static void
205 trim_trailing_slash(char * path)
207 size_t l;
209 l = strlen(path);
210 while (l > 0 && (path[l - 1] == '/'
211 #ifdef BACKSLASH_PATH_DELIM
212 || path[l - 1] == '\\'
213 #endif
214 )) {
215 path[--l] = '\0';
219 static krb5_error_code
220 load_plugins(krb5_context context)
222 struct plugin *e;
223 krb5_error_code ret;
224 char **dirs = NULL, **di;
225 struct dirent *entry;
226 char *path;
227 DIR *d = NULL;
229 if (!plugins_needs_scan)
230 return 0;
231 plugins_needs_scan = 0;
233 #ifdef HAVE_DLOPEN
235 dirs = krb5_config_get_strings(context, NULL, "libdefaults",
236 "plugin_dir", NULL);
237 if (dirs == NULL)
238 dirs = rk_UNCONST(sysplugin_dirs);
240 for (di = dirs; *di != NULL; di++) {
241 char * dir = *di;
243 #ifdef KRB5_USE_PATH_TOKENS
244 if (_krb5_expand_path_tokens(context, *di, &dir))
245 goto next_dir;
246 #endif
248 trim_trailing_slash(dir);
250 d = opendir(dir);
252 if (d == NULL)
253 goto next_dir;
255 rk_cloexec_dir(d);
257 while ((entry = readdir(d)) != NULL) {
258 char *n = entry->d_name;
260 /* skip . and .. */
261 if (!is_valid_plugin_filename(n))
262 continue;
264 path = NULL;
265 ret = 0;
266 #ifdef __APPLE__
267 { /* support loading bundles on MacOS */
268 size_t len = strlen(n);
269 if (len > 7 && strcmp(&n[len - 7], ".bundle") == 0)
270 ret = asprintf(&path, "%s/%s/Contents/MacOS/%.*s", dir, n, (int)(len - 7), n);
272 #endif
273 if (ret < 0 || path == NULL)
274 ret = asprintf(&path, "%s/%s", dir, n);
276 if (ret < 0 || path == NULL) {
277 ret = ENOMEM;
278 krb5_set_error_message(context, ret, "malloc: out of memory");
279 return ret;
282 /* check if already tried */
283 for (e = registered; e != NULL; e = e->next)
284 if (e->type == DSO && strcmp(e->u.dso.path, path) == 0)
285 break;
286 if (e) {
287 free(path);
288 } else {
289 loadlib(context, path); /* store or frees path */
292 closedir(d);
294 next_dir:
295 if (dir != *di)
296 free(dir);
298 if (dirs != rk_UNCONST(sysplugin_dirs))
299 krb5_config_free_strings(dirs);
300 #endif /* HAVE_DLOPEN */
301 return 0;
304 static krb5_error_code
305 add_symbol(krb5_context context, struct krb5_plugin **list, void *symbol)
307 struct krb5_plugin *e;
309 e = calloc(1, sizeof(*e));
310 if (e == NULL) {
311 krb5_set_error_message(context, ENOMEM, "malloc: out of memory");
312 return ENOMEM;
314 e->symbol = symbol;
315 e->next = *list;
316 *list = e;
317 return 0;
320 krb5_error_code
321 _krb5_plugin_find(krb5_context context,
322 enum krb5_plugin_type type,
323 const char *name,
324 struct krb5_plugin **list)
326 struct plugin *e;
327 krb5_error_code ret;
329 *list = NULL;
331 HEIMDAL_MUTEX_lock(&plugin_mutex);
333 load_plugins(context);
335 for (ret = 0, e = registered; e != NULL; e = e->next) {
336 switch(e->type) {
337 case DSO: {
338 void *sym;
339 if (e->u.dso.dsohandle == NULL)
340 continue;
341 sym = dlsym(e->u.dso.dsohandle, name);
342 if (sym)
343 ret = add_symbol(context, list, sym);
344 break;
346 case SYMBOL:
347 if (strcmp(e->u.symbol.name, name) == 0 && e->u.symbol.type == type)
348 ret = add_symbol(context, list, e->u.symbol.symbol);
349 break;
351 if (ret) {
352 _krb5_plugin_free(*list);
353 *list = NULL;
357 HEIMDAL_MUTEX_unlock(&plugin_mutex);
358 if (ret)
359 return ret;
361 if (*list == NULL) {
362 krb5_set_error_message(context, ENOENT, "Did not find a plugin for %s", name);
363 return ENOENT;
366 return 0;
369 void
370 _krb5_plugin_free(struct krb5_plugin *list)
372 struct krb5_plugin *next;
373 while (list) {
374 next = list->next;
375 free(list);
376 list = next;
380 * module - dict of {
381 * ModuleName = [
382 * plugin = object{
383 * array = { ptr, ctx }
389 static heim_dict_t modules;
391 struct plugin2 {
392 heim_string_t path;
393 void *dsohandle;
394 heim_dict_t names;
397 static void
398 plug_dealloc(void *ptr)
400 struct plugin2 *p = ptr;
401 heim_release(p->path);
402 heim_release(p->names);
403 if (p->dsohandle)
404 dlclose(p->dsohandle);
408 void
409 _krb5_load_plugins(krb5_context context, const char *name, const char **paths)
411 #ifdef HAVE_DLOPEN
412 heim_string_t s = heim_string_create(name);
413 heim_dict_t module;
414 struct dirent *entry;
415 krb5_error_code ret;
416 const char **di;
417 DIR *d;
419 HEIMDAL_MUTEX_lock(&plugin_mutex);
421 if (modules == NULL) {
422 modules = heim_dict_create(11);
423 if (modules == NULL) {
424 HEIMDAL_MUTEX_unlock(&plugin_mutex);
425 return;
429 module = heim_dict_copy_value(modules, s);
430 if (module == NULL) {
431 module = heim_dict_create(11);
432 if (module == NULL) {
433 HEIMDAL_MUTEX_unlock(&plugin_mutex);
434 heim_release(s);
435 return;
437 heim_dict_add_value(modules, s, module);
439 heim_release(s);
441 for (di = paths; *di != NULL; di++) {
442 d = opendir(*di);
443 if (d == NULL)
444 continue;
445 rk_cloexec_dir(d);
447 while ((entry = readdir(d)) != NULL) {
448 char *n = entry->d_name;
449 char *path = NULL;
450 heim_string_t spath;
451 struct plugin2 *p;
453 /* skip . and .. */
454 if (n[0] == '.' && (n[1] == '\0' || (n[1] == '.' && n[2] == '\0')))
455 continue;
457 ret = 0;
458 #ifdef __APPLE__
459 { /* support loading bundles on MacOS */
460 size_t len = strlen(n);
461 if (len > 7 && strcmp(&n[len - 7], ".bundle") == 0)
462 ret = asprintf(&path, "%s/%s/Contents/MacOS/%.*s", *di, n, (int)(len - 7), n);
464 #endif
465 if (ret < 0 || path == NULL)
466 ret = asprintf(&path, "%s/%s", *di, n);
468 if (ret < 0 || path == NULL)
469 continue;
471 spath = heim_string_create(n);
472 if (spath == NULL) {
473 free(path);
474 continue;
477 /* check if already cached */
478 p = heim_dict_copy_value(module, spath);
479 if (p == NULL) {
480 p = heim_alloc(sizeof(*p), "krb5-plugin", plug_dealloc);
481 if (p)
482 p->dsohandle = dlopen(path, RTLD_LOCAL|RTLD_LAZY);
484 if (p->dsohandle) {
485 p->path = heim_retain(spath);
486 p->names = heim_dict_create(11);
487 heim_dict_add_value(module, spath, p);
490 heim_release(spath);
491 heim_release(p);
492 free(path);
494 closedir(d);
496 heim_release(module);
497 HEIMDAL_MUTEX_unlock(&plugin_mutex);
498 #endif /* HAVE_DLOPEN */
501 void
502 _krb5_unload_plugins(krb5_context context, const char *name)
504 HEIMDAL_MUTEX_lock(&plugin_mutex);
505 heim_release(modules);
506 modules = NULL;
507 HEIMDAL_MUTEX_unlock(&plugin_mutex);
514 struct common_plugin_method {
515 int version;
516 krb5_error_code (*init)(krb5_context, void **);
517 void (*fini)(void *);
520 struct plug {
521 void *dataptr;
522 void *ctx;
525 static void
526 plug_free(void *ptr)
528 struct plug *pl = ptr;
529 if (pl->dataptr) {
530 struct common_plugin_method *cpm = pl->dataptr;
531 cpm->fini(pl->ctx);
535 struct iter_ctx {
536 krb5_context context;
537 heim_string_t n;
538 const char *name;
539 int min_version;
540 heim_array_t result;
541 krb5_error_code (*func)(krb5_context, const void *, void *, void *);
542 void *userctx;
543 krb5_error_code ret;
546 static void
547 search_modules(void *ctx, heim_object_t key, heim_object_t value)
549 struct iter_ctx *s = ctx;
550 struct plugin2 *p = value;
551 struct plug *pl = heim_dict_copy_value(p->names, s->n);
552 struct common_plugin_method *cpm;
554 if (pl == NULL) {
555 if (p->dsohandle == NULL)
556 return;
558 pl = heim_alloc(sizeof(*pl), "struct-plug", plug_free);
560 cpm = pl->dataptr = dlsym(p->dsohandle, s->name);
561 if (cpm) {
562 int ret;
564 ret = cpm->init(s->context, &pl->ctx);
565 if (ret)
566 cpm = pl->dataptr = NULL;
568 heim_dict_add_value(p->names, s->n, pl);
569 } else {
570 cpm = pl->dataptr;
573 if (cpm && cpm->version >= s->min_version)
574 heim_array_append_value(s->result, pl);
576 heim_release(pl);
579 static void
580 eval_results(heim_object_t value, void *ctx)
582 struct plug *pl = value;
583 struct iter_ctx *s = ctx;
585 if (s->ret != KRB5_PLUGIN_NO_HANDLE)
586 return;
588 s->ret = s->func(s->context, pl->dataptr, pl->ctx, s->userctx);
591 krb5_error_code
592 _krb5_plugin_run_f(krb5_context context,
593 const char *module,
594 const char *name,
595 int min_version,
596 int flags,
597 void *userctx,
598 krb5_error_code (*func)(krb5_context, const void *, void *, void *))
600 heim_string_t m = heim_string_create(module);
601 heim_dict_t dict;
602 struct iter_ctx s;
604 HEIMDAL_MUTEX_lock(&plugin_mutex);
606 dict = heim_dict_copy_value(modules, m);
607 heim_release(m);
608 if (dict == NULL) {
609 HEIMDAL_MUTEX_unlock(&plugin_mutex);
610 return KRB5_PLUGIN_NO_HANDLE;
613 s.context = context;
614 s.name = name;
615 s.n = heim_string_create(name);
616 s.min_version = min_version;
617 s.result = heim_array_create();
618 s.func = func;
619 s.userctx = userctx;
621 heim_dict_iterate_f(dict, search_modules, &s);
623 heim_release(dict);
625 HEIMDAL_MUTEX_unlock(&plugin_mutex);
627 s.ret = KRB5_PLUGIN_NO_HANDLE;
629 heim_array_iterate_f(s.result, eval_results, &s);
631 heim_release(s.result);
632 heim_release(s.n);
634 return s.ret;