Skip to content
Snippets Groups Projects
loader.c 21.3 KiB
Newer Older
  • Learn to ignore specific revisions
  • 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
    /*
     * Asterisk -- An open source telephony toolkit.
     *
     * Copyright (C) 1999 - 2006, Digium, Inc.
     *
     * Mark Spencer <markster@digium.com>
     * Kevin P. Fleming <kpfleming@digium.com>
     * Luigi Rizzo <rizzo@icir.org>
     *
     * See http://www.asterisk.org for more information about
     * the Asterisk project. Please do not directly contact
     * any of the maintainers of this project for assistance;
     * the project provides a web site, mailing lists and IRC
     * channels for your use.
     *
     * This program is free software, distributed under the terms of
     * the GNU General Public License Version 2. See the LICENSE file
     * at the top of the source tree.
     */
    
    /*! \file
     *
     * \brief Module Loader
     * \author Mark Spencer <markster@digium.com> 
     * \author Kevin P. Fleming <kpfleming@digium.com>
     * \author Luigi Rizzo <rizzo@icir.org>
     * - See ModMngMnt
     */
    
    #include "asterisk.h"
    
    ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
    
    #include <stdio.h>
    #include <dirent.h>
    #include <unistd.h>
    #include <stdlib.h>
    #include <errno.h>
    #include <string.h>
    
    #include "asterisk/linkedlists.h"
    #include "asterisk/module.h"
    #include "asterisk/options.h"
    #include "asterisk/config.h"
    #include "asterisk/logger.h"
    #include "asterisk/channel.h"
    #include "asterisk/term.h"
    #include "asterisk/manager.h"
    #include "asterisk/cdr.h"
    #include "asterisk/enum.h"
    #include "asterisk/rtp.h"
    #include "asterisk/http.h"
    #include "asterisk/lock.h"
    
    #ifdef DLFCNCOMPAT
    #include "asterisk/dlfcn-compat.h"
    #else
    #include <dlfcn.h>
    #endif
    
    #include "asterisk/md5.h"
    #include "asterisk/utils.h"
    
    #ifndef RTLD_NOW
    #define RTLD_NOW 0
    #endif
    
    struct ast_module_user {
    	struct ast_channel *chan;
    	AST_LIST_ENTRY(ast_module_user) entry;
    };
    
    AST_LIST_HEAD(module_user_list, ast_module_user);
    
    static unsigned char expected_key[] =
    { 0x87, 0x76, 0x79, 0x35, 0x23, 0xea, 0x3a, 0xd3,
      0x25, 0x2a, 0xbb, 0x35, 0x87, 0xe4, 0x22, 0x24 };
    
    static unsigned int embedding = 1; /* we always start out by registering embedded modules,
    				      since they are here before we dlopen() any
    				   */
    
    enum flags {
    	FLAG_RUNNING = (1 << 1),		/* module successfully initialized */
    	FLAG_DECLINED = (1 << 2),		/* module declined to initialize */
    };
    
    struct ast_module {
    	const struct ast_module_info *info;
    	void *lib;					/* the shared lib, or NULL if embedded */
    	int usecount;					/* the number of 'users' currently in this module */
    	struct module_user_list users;			/* the list of users in the module */
    	unsigned int flags;				/* flags for this module */
    	AST_LIST_ENTRY(ast_module) entry;
    	char resource[0];
    };
    
    static AST_LIST_HEAD_STATIC(module_list, ast_module);
    
    struct loadupdate {
    	int (*updater)(void);
    	AST_LIST_ENTRY(loadupdate) entry;
    };
    
    static AST_LIST_HEAD_STATIC(updaters, loadupdate);
    
    AST_MUTEX_DEFINE_STATIC(reloadlock);
    
    /* when dynamic modules are being loaded, ast_module_register() will
       need to know what filename the module was loaded from while it
       is being registered
    */
    struct ast_module *resource_being_loaded;
    
    /* XXX: should we check for duplicate resource names here? */
    
    void ast_module_register(const struct ast_module_info *info)
    {
    	struct ast_module *mod;
    
    	if (embedding) {
    		if (!(mod = ast_calloc(1, sizeof(*mod) + strlen(info->name) + 1)))
    			return;
    		strcpy(mod->resource, info->name);
    	} else {
    		mod = resource_being_loaded;
    	}
    
    	mod->info = info;
    	AST_LIST_HEAD_INIT(&mod->users);
    
    	/* during startup, before the loader has been initialized,
    	   there are no threads, so there is no need to take the lock
    	   on this list to manipulate it. it is also possible that it
    	   might be unsafe to use the list lock at that point... so
    	   let's avoid it altogether
    	*/
    	if (!embedding)
    		AST_LIST_LOCK(&module_list);
    
    	/* it is paramount that the new entry be placed at the tail of
    	   the list, otherwise the code that uses dlopen() to load
    	   dynamic modules won't be able to find out if the module it
    	   just opened was registered or failed to load
    	*/
    	AST_LIST_INSERT_TAIL(&module_list, mod, entry);
    
    	if (!embedding)
    		AST_LIST_UNLOCK(&module_list);
    
    	/* give the module a copy of its own handle, for later use in registrations and the like */
    	*((struct ast_module **) &(info->self)) = mod;
    }
    
    void ast_module_unregister(const struct ast_module_info *info)
    {
    	struct ast_module *mod = NULL;
    
    	/* it is assumed that the users list in the module structure
    	   will already be empty, or we cannot have gotten to this
    	   point
    	*/
    	AST_LIST_LOCK(&module_list);
    	AST_LIST_TRAVERSE_SAFE_BEGIN(&module_list, mod, entry) {
    		if (mod->info == info) {
    			AST_LIST_REMOVE_CURRENT(&module_list, entry);
    			break;
    		}
    	}
    	AST_LIST_TRAVERSE_SAFE_END;
    	AST_LIST_UNLOCK(&module_list);
    
    	if (mod) {
    		AST_LIST_HEAD_DESTROY(&mod->users);
    		free(mod);
    	}
    }
    
    struct ast_module_user *__ast_module_user_add(struct ast_module *mod,
    					      struct ast_channel *chan)
    {
    	struct ast_module_user *u = ast_calloc(1, sizeof(*u));
    
    	if (!u)
    		return NULL;
    
    	u->chan = chan;
    
    	AST_LIST_LOCK(&mod->users);
    	AST_LIST_INSERT_HEAD(&mod->users, u, entry);
    	AST_LIST_UNLOCK(&mod->users);
    
    	ast_atomic_fetchadd_int(&mod->usecount, +1);
    
    	ast_update_use_count();
    
    	return u;
    }
    
    void __ast_module_user_remove(struct ast_module *mod, struct ast_module_user *u)
    {
    	AST_LIST_LOCK(&mod->users);
    	AST_LIST_REMOVE(&mod->users, u, entry);
    	AST_LIST_UNLOCK(&mod->users);
    	ast_atomic_fetchadd_int(&mod->usecount, -1);
    	free(u);
    
    	ast_update_use_count();
    }
    
    void __ast_module_user_hangup_all(struct ast_module *mod)
    {
    	struct ast_module_user *u;
    
    	AST_LIST_LOCK(&mod->users);
    	while ((u = AST_LIST_REMOVE_HEAD(&mod->users, entry))) {
    		ast_softhangup(u->chan, AST_SOFTHANGUP_APPUNLOAD);
    		ast_atomic_fetchadd_int(&mod->usecount, -1);
    		free(u);
    	}
    	AST_LIST_UNLOCK(&mod->users);
    
            ast_update_use_count();
    }
    
    /*! \note
     * In addition to modules, the reload command handles some extra keywords
     * which are listed here together with the corresponding handlers.
     * This table is also used by the command completion code.
     */
    static struct reload_classes {
    	const char *name;
    	int (*reload_fn)(void);
    } reload_classes[] = {	/* list in alpha order, longest match first for cli completion */
    	{ "cdr",	ast_cdr_engine_reload },
    	{ "dnsmgr",	dnsmgr_reload },
    	{ "extconfig",	read_config_maps },
    	{ "enum",	ast_enum_reload },
    	{ "manager",	reload_manager },
    	{ "rtp",	ast_rtp_reload },
    	{ "http",	ast_http_reload },
    	{ NULL, 	NULL }
    };
    
    static int printdigest(const unsigned char *d)
    {
    	int x, pos;
    	char buf[256]; /* large enough so we don't have to worry */
    
    	for (pos = 0, x = 0; x < 16; x++)
    		pos += sprintf(buf + pos, " %02x", *d++);
    
    	ast_log(LOG_DEBUG, "Unexpected signature:%s\n", buf);
    
    	return 0;
    }
    
    static int key_matches(const unsigned char *key1, const unsigned char *key2)
    {
    	int x;
    
    	for (x = 0; x < 16; x++) {
    		if (key1[x] != key2[x])
    			return 0;
    	}
    
    	return 1;
    }
    
    static int verify_key(const unsigned char *key)
    {
    	struct MD5Context c;
    	unsigned char digest[16];
    
    	MD5Init(&c);
    	MD5Update(&c, key, strlen((char *)key));
    	MD5Final(digest, &c);
    
    	if (key_matches(expected_key, digest))
    		return 0;
    
    	printdigest(digest);
    
    	return -1;
    }
    
    static int resource_name_match(const char *name1_in, const char *name2_in)
    {
    	char *name1 = (char *) name1_in;
    	char *name2 = (char *) name2_in;
    
    	/* trim off any .so extensions */
    	if (!strcasecmp(name1 + strlen(name1) - 3, ".so")) {
    		name1 = ast_strdupa(name1);
    		name1[strlen(name1) - 3] = '\0';
    	}
    	if (!strcasecmp(name2 + strlen(name2) - 3, ".so")) {
    		name2 = ast_strdupa(name2);
    		name2[strlen(name2) - 3] = '\0';
    	}
    
    	return strcasecmp(name1, name2);
    }
    
    static struct ast_module *find_resource(const char *resource, int do_lock)
    {
    	struct ast_module *cur;
    
    	if (do_lock)
    		AST_LIST_LOCK(&module_list);
    
    	AST_LIST_TRAVERSE(&module_list, cur, entry) {
    		if (!resource_name_match(resource, cur->resource))
    			break;
    	}
    
    	if (do_lock)
    		AST_LIST_UNLOCK(&module_list);
    
    	return cur;
    }
    
    #if LOADABLE_MODULES
    static void unload_dynamic_module(struct ast_module *mod)
    {
    	if (mod->lib)
    		dlclose(mod->lib);
    	/* WARNING: the structure pointed to by mod is now gone! */
    }
    
    static struct ast_module *load_dynamic_module(const char *resource_in, unsigned int global_symbols_only)
    {
    	char fn[256];
    	void *lib;
    	struct ast_module *mod;
    	unsigned int load_global = global_symbols_only;
    	char *resource = (char *) resource_in;
    
    	if (strcasecmp(resource + strlen(resource) - 3, ".so")) {
    		resource = alloca(strlen(resource_in) + 3);
    	        strcpy(resource, resource_in);
    		strcat(resource, ".so");
    	}
    
    	snprintf(fn, sizeof(fn), "%s/%s", ast_config_AST_MODULE_DIR, resource);
    
    tryload:
    	if (!(resource_being_loaded = ast_calloc(1, sizeof(*resource_being_loaded) + strlen(resource) + 1)))
    		return NULL;
    
    	strcpy(resource_being_loaded->resource, resource);
    
    	if (load_global)
    		lib = dlopen(fn, RTLD_LAZY | RTLD_GLOBAL);
    	else
    		lib = dlopen(fn, RTLD_NOW | RTLD_LOCAL);
    
    	if (!lib) {
    		ast_log(LOG_WARNING, "%s\n", dlerror());
    		free(resource_being_loaded);
    		return NULL;
    	}
    
    	/* the dlopen() succeeded, let's find out if the module
    	   registered itself */
    	/* note that this will only work properly as long as
    	   ast_module_register() (which is called by the module's
    	   constructor) places the new module at the tail of the
    	   module_list
    	*/
    	if (resource_being_loaded != (mod = AST_LIST_LAST(&module_list))) {
    		/* no, it did not, so close it and return */
    		dlclose(lib);
    		free(resource_being_loaded);
    		return NULL;
    	}
    
    	resource_being_loaded = NULL;
    	mod->lib = lib;
    
    	/* if we are being asked only to load modules that provide global symbols,
    	   and this one does not, then close it and return */
    	if (load_global && !ast_test_flag(mod->info, AST_MODFLAG_GLOBAL_SYMBOLS)) {
    		unload_dynamic_module(mod);
    		return NULL;
    	}
    
    	/* if we were not asked to load _only_ modules with global symbols, but
    	   this module wants to provide some, then we have to close and re-open
    	   in global mode
    	*/
    	if (!load_global && ast_test_flag(mod->info, AST_MODFLAG_GLOBAL_SYMBOLS)) {
    		unload_dynamic_module(mod);
    		load_global = 1;
    		goto tryload;
    	}
    
    	return mod;
    }
    #endif
    
    int ast_unload_resource(const char *resource_name, enum ast_module_unload_mode force)
    {
    	struct ast_module *mod;
    	int res = -1;
    	int error = 0;
    
    	AST_LIST_LOCK(&module_list);
    
    	mod = find_resource(resource_name, 0);
    
    	if (!ast_test_flag(mod, FLAG_RUNNING | FLAG_DECLINED))
    		error = 1;
    
    	if (!error && (mod->usecount > 0)) {
    		if (force) 
    			ast_log(LOG_WARNING, "Warning:  Forcing removal of module '%s' with use count %d\n",
    				resource_name, mod->usecount);
    		else {
    			ast_log(LOG_WARNING, "Soft unload failed, '%s' has use count %d\n", resource_name,
    				mod->usecount);
    			error = 1;
    		}
    	}
    
    	if (!error) {
    		__ast_module_user_hangup_all(mod);
    		res = mod->info->unload();
    
    		if (res) {
    			ast_log(LOG_WARNING, "Firm unload failed for %s\n", resource_name);
    			if (force <= AST_FORCE_FIRM)
    				error = 1;
    			else
    				ast_log(LOG_WARNING, "** Dangerous **: Unloading resource anyway, at user request\n");
    		}
    	}
    
    	if (!error)
    		ast_clear_flag(mod, FLAG_RUNNING | FLAG_DECLINED);
    
    	AST_LIST_UNLOCK(&module_list);
    
    #if LOADABLE_MODULES
    	if (!error)
    		unload_dynamic_module(mod);
    #endif
    
    	if (!error)
    		ast_update_use_count();
    
    	return res;
    }
    
    char *ast_module_helper(const char *line, const char *word, int pos, int state, int rpos, int needsreload)
    {
    	struct ast_module *cur;
    	int i, which=0, l = strlen(word);
    	char *ret = NULL;
    
    	if (pos != rpos)
    		return NULL;
    
    	AST_LIST_LOCK(&module_list);
    	AST_LIST_TRAVERSE(&module_list, cur, entry) {
    		if (!strncasecmp(word, cur->resource, l) &&
    		    (cur->info->reload || !needsreload) &&
    		    ++which > state) {
    			ret = strdup(cur->resource);
    			break;
    		}
    	}
    	AST_LIST_UNLOCK(&module_list);
    
    	if (!ret) {
    		for (i=0; !ret && reload_classes[i].name; i++) {
    			if (!strncasecmp(word, reload_classes[i].name, l) && ++which > state)
    				ret = strdup(reload_classes[i].name);
    		}
    	}
    
    	return ret;
    }
    
    int ast_module_reload(const char *name)
    {
    	struct ast_module *cur;
    	int res = 0; /* return value. 0 = not found, others, see below */
    	int i;
    
    	if (ast_mutex_trylock(&reloadlock)) {
    		ast_verbose("The previous reload command didn't finish yet\n");
    		return -1;	/* reload already in progress */
    	}
    
    	/* Call "predefined" reload here first */
    	for (i = 0; reload_classes[i].name; i++) {
    		if (!name || !strcasecmp(name, reload_classes[i].name)) {
    			reload_classes[i].reload_fn();	/* XXX should check error ? */
    			res = 2;	/* found and reloaded */
    		}
    	}
    	ast_lastreloadtime = time(NULL);
    
    	if (name && res)
    		return res;
    
    	AST_LIST_LOCK(&module_list);
    	AST_LIST_TRAVERSE(&module_list, cur, entry) {
    		const struct ast_module_info *info = cur->info;
    
    		if (name && resource_name_match(name, cur->resource))
    			continue;
    
    		if (!ast_test_flag(cur, FLAG_RUNNING | FLAG_DECLINED))
    			continue;
    
    		if (!info->reload) {	/* cannot be reloaded */
    			if (res < 1)	/* store result if possible */
    				res = 1;	/* 1 = no reload() method */
    			continue;
    		}
    
    		res = 2;
    		if (option_verbose > 2) 
    			ast_verbose(VERBOSE_PREFIX_3 "Reloading module '%s' (%s)\n", cur->resource, info->description);
    		info->reload();
    	}
    	AST_LIST_UNLOCK(&module_list);
    
    	ast_mutex_unlock(&reloadlock);
    
    	return res;
    }
    
    static unsigned int inspect_module(const struct ast_module *mod)
    {
    	if (!mod->info->description) {
    		ast_log(LOG_WARNING, "Module '%s' does not provide a description.\n", mod->resource);
    		return 1;
    	}
    
    	if (!mod->info->key) {
    		ast_log(LOG_WARNING, "Module '%s' does not provide a license key.\n", mod->resource);
    		return 1;
    	}
    
    	if (verify_key((unsigned char *) mod->info->key)) {
    		ast_log(LOG_WARNING, "Module '%s' did not provide a valid license key.\n", mod->resource);
    		return 1;
    	}
    
    	return 0;
    }
    
    static enum ast_module_load_result load_resource(const char *resource_name, unsigned int global_symbols_only)
    {
    	struct ast_module *mod;
    	enum ast_module_load_result res = AST_MODULE_LOAD_SUCCESS;
    	char tmp[256];
    
    	if ((mod = find_resource(resource_name, 0))) {
    		if (ast_test_flag(mod, FLAG_RUNNING)) {
    			ast_log(LOG_WARNING, "Module '%s' already exists.\n", resource_name);
    			return AST_MODULE_LOAD_DECLINE;
    		}
    		if (global_symbols_only && !ast_test_flag(mod->info, AST_MODFLAG_GLOBAL_SYMBOLS))
    			return AST_MODULE_LOAD_SKIP;
    #if LOADABLE_MODULES
    	} else {
    		if (!(mod = load_dynamic_module(resource_name, global_symbols_only))) {
    			/* don't generate a warning message during load_modules() */
    			if (!global_symbols_only) {
    				ast_log(LOG_WARNING, "Module '%s' could not be loaded.\n", resource_name);
    				return AST_MODULE_LOAD_DECLINE;
    			} else {
    				return AST_MODULE_LOAD_SKIP;
    			}
    		}
    #endif
    	}
    
    	if (inspect_module(mod)) {
    		ast_log(LOG_WARNING, "Module '%s' could not be loaded.\n", resource_name);
    #if LOADABLE_MODULES
    		unload_dynamic_module(mod);
    #endif
    		return AST_MODULE_LOAD_DECLINE;
    	}
    
    	ast_clear_flag(mod, FLAG_DECLINED);
    
    	if (mod->info->load)
    		res = mod->info->load();
    
    	switch (res) {
    	case AST_MODULE_LOAD_SUCCESS:
    		if (!ast_fully_booted) {
    			if (option_verbose) 
    				ast_verbose( " => (%s)\n", term_color(tmp, mod->info->description, COLOR_BROWN, COLOR_BLACK, sizeof(tmp)));
    			if (ast_opt_console && !option_verbose)
    				ast_verbose( ".");
    		} else {
    			if (option_verbose)
    				ast_verbose(VERBOSE_PREFIX_1 "Loaded %s => (%s)\n", resource_name, mod->info->description);
    		}
    
    		ast_set_flag(mod, FLAG_RUNNING);
    		
    		ast_update_use_count();
    		break;
    	case AST_MODULE_LOAD_DECLINE:
    		ast_set_flag(mod, FLAG_DECLINED);
    		break;
    	case AST_MODULE_LOAD_FAILURE:
    		break;
    	case AST_MODULE_LOAD_SKIP:
    		/* modules should never return this value */
    		break;
    	}
    
    	return res;
    }
    
    int ast_load_resource(const char *resource_name)
    {
           AST_LIST_LOCK(&module_list);
           load_resource(resource_name, 0);
           AST_LIST_UNLOCK(&module_list);
    
           return 0;
    }
    
    struct load_order_entry {
    	char *resource;
    	unsigned int embedded;
    	AST_LIST_ENTRY(load_order_entry) entry;
    };
    
    AST_LIST_HEAD_NOLOCK(load_order, load_order_entry);
    
    static struct load_order_entry *add_to_load_order(const char *resource, struct load_order *load_order)
    {
    	struct load_order_entry *order;
    
    	AST_LIST_TRAVERSE(load_order, order, entry) {
    		if (!resource_name_match(order->resource, resource))
    			return NULL;
    	}
    
    	if (!(order = ast_calloc(1, sizeof(*order))))
    		return NULL;
    
    	order->resource = ast_strdup(resource);
    	AST_LIST_INSERT_TAIL(load_order, order, entry);
    
    	return order;
    }
    
    int load_modules(void)
    {
    	struct ast_config *cfg;
    	struct ast_module *mod;
    	struct load_order_entry *order;
    	struct ast_variable *v;
    	unsigned int load_count;
    	struct load_order load_order;
    	int res = 0;
    
    #if LOADABLE_MODULES
    	struct dirent *dirent;
    	DIR *dir;
    #endif
    
    
    	/* all embedded modules have registered themselves by now */
    	embedding = 0;
    
    	if (option_verbose)
    		ast_verbose("Asterisk Dynamic Loader Starting:\n");
    
    	AST_LIST_TRAVERSE(&module_list, mod, entry) {
    		if (option_debug > 1)
    			ast_log(LOG_DEBUG, "Embedded module found: %s\n", mod->resource);
    	}
    
    	if (!(cfg = ast_config_load(AST_MODULE_CONFIG))) {
    		ast_log(LOG_WARNING, "No '%s' found, no modules will be loaded.\n", AST_MODULE_CONFIG);
    		return 0;
    	}
    
    	AST_LIST_HEAD_INIT_NOLOCK(&load_order);
    
    	/* first, find all the modules we have been explicitly requested to load */
    	for (v = ast_variable_browse(cfg, "modules"); v; v = v->next) {
    		if (!strcasecmp(v->name, "load"))
    			add_to_load_order(v->value, &load_order);
    	}
    
    	/* check if 'autoload' is on */
    	if (ast_true(ast_variable_retrieve(cfg, "modules", "autoload"))) {
    		/* if so, first add all the embedded modules to the load order */
    		AST_LIST_TRAVERSE(&module_list, mod, entry) {
    			order = add_to_load_order(mod->resource, &load_order);
    
    			if (order)
    				order->embedded = 1;
    		}
    
    		/* if we are allowed to load dynamic modules, scan the directory for
    		   for all available modules and add them as well */
    #if LOADABLE_MODULES
    		if ((dir  = opendir(ast_config_AST_MODULE_DIR))) {
    			while ((dirent = readdir(dir))) {
    				int ld = strlen(dirent->d_name);
    				
    				/* Must end in .so to load it.  */
    
    				if (ld < 4)
    					continue;
    
    				if (strcasecmp(dirent->d_name + ld - 3, ".so"))
    				    continue;
    
    				add_to_load_order(dirent->d_name, &load_order);
    
    			}
    
    			closedir(dir);
    		} else {
    			if (!ast_opt_quiet)
    				ast_log(LOG_WARNING, "Unable to open modules directory '%s'.\n",
    					ast_config_AST_MODULE_DIR);
    		}
    #endif
    	}
    
    	/* now scan the config for any modules we are prohibited from loading and
    	   remove them from the load order */
    	for (v = ast_variable_browse(cfg, "modules"); v; v = v->next) {
    		if (strcasecmp(v->name, "noload"))
    			continue;
    
    		AST_LIST_TRAVERSE_SAFE_BEGIN(&load_order, order, entry) {
    			if (!resource_name_match(order->resource, v->value)) {
    				AST_LIST_REMOVE_CURRENT(&load_order, entry);
    				free(order->resource);
    				free(order);
    			}
    		}
    		AST_LIST_TRAVERSE_SAFE_END;
    	}
    
    	/* we are done with the config now, all the information we need is in the
    	   load_order list */
    	ast_config_destroy(cfg);
    
    	load_count = 0;
    	AST_LIST_TRAVERSE(&load_order, order, entry)
    		load_count++;
    
    	ast_log(LOG_NOTICE, "%d modules will be loaded.\n", load_count);
    
    	/* first, load only modules that provide global symbols */
    	AST_LIST_TRAVERSE_SAFE_BEGIN(&load_order, order, entry) {
    		switch (load_resource(order->resource, 1)) {
    		case AST_MODULE_LOAD_SUCCESS:
    		case AST_MODULE_LOAD_DECLINE:
    			AST_LIST_REMOVE_CURRENT(&load_order, entry);
    			free(order->resource);
    			free(order);
    			break;
    		case AST_MODULE_LOAD_FAILURE:
    			res = -1;
    			goto done;
    		case AST_MODULE_LOAD_SKIP:
    			/* try again later */
    			break;
    		}
    	}
    	AST_LIST_TRAVERSE_SAFE_END;
    
    	/* now load everything else */
    	AST_LIST_TRAVERSE_SAFE_BEGIN(&load_order, order, entry) {
    		switch (load_resource(order->resource, 0)) {
    		case AST_MODULE_LOAD_SUCCESS:
    		case AST_MODULE_LOAD_DECLINE:
    			AST_LIST_REMOVE_CURRENT(&load_order, entry);
    			free(order->resource);
    			free(order);
    			break;
    		case AST_MODULE_LOAD_FAILURE:
    			res = -1;
    			goto done;
    		case AST_MODULE_LOAD_SKIP:
    			/* should not happen */
    			break;
    		}
    	}
    	AST_LIST_TRAVERSE_SAFE_END;
    
    done:
    	while ((order = AST_LIST_REMOVE_HEAD(&load_order, entry))) {
    		free(order->resource);
    		free(order);
    	}
    
    	return res;
    }
    
    void ast_update_use_count(void)
    {
    	/* Notify any module monitors that the use count for a 
    	   resource has changed */
    	struct loadupdate *m;
    
    	AST_LIST_LOCK(&module_list);
    	AST_LIST_TRAVERSE(&updaters, m, entry)
    		m->updater();
    	AST_LIST_UNLOCK(&module_list);
    }
    
    int ast_update_module_list(int (*modentry)(const char *module, const char *description, int usecnt, const char *like),
    			   const char *like)
    {
    	struct ast_module *cur;
    	int unlock = -1;
    	int total_mod_loaded = 0;
    
    	if (AST_LIST_TRYLOCK(&module_list))
    		unlock = 0;
    
    	AST_LIST_TRAVERSE(&module_list, cur, entry) {
    		total_mod_loaded += modentry(cur->resource, cur->info->description, cur->usecount, like);
    	}
    
    	if (unlock)
    		AST_LIST_UNLOCK(&module_list);
    
    	return total_mod_loaded;
    }
    
    int ast_loader_register(int (*v)(void)) 
    {
    	struct loadupdate *tmp;	
    
    	if (!(tmp = ast_malloc(sizeof(*tmp))))
    		return -1;
    
    	tmp->updater = v;
    	AST_LIST_LOCK(&module_list);
    	AST_LIST_INSERT_HEAD(&updaters, tmp, entry);
    	AST_LIST_UNLOCK(&module_list);
    
    	return 0;
    }
    
    int ast_loader_unregister(int (*v)(void))
    {
    	struct loadupdate *cur;
    
    	AST_LIST_LOCK(&module_list);
    	AST_LIST_TRAVERSE_SAFE_BEGIN(&updaters, cur, entry) {
    		if (cur->updater == v)	{
    			AST_LIST_REMOVE_CURRENT(&updaters, entry);
    			break;
    		}
    	}
    	AST_LIST_TRAVERSE_SAFE_END;
    	AST_LIST_UNLOCK(&module_list);
    
    	return cur ? 0 : -1;
    }
    
    struct ast_module *ast_module_ref(struct ast_module *mod)
    {
    	ast_atomic_fetchadd_int(&mod->usecount, +1);
    	ast_update_use_count();
    
    	return mod;
    }
    
    void ast_module_unref(struct ast_module *mod)
    {
    	ast_atomic_fetchadd_int(&mod->usecount, -1);
    	ast_update_use_count();
    }