xref: /netbsd-src/external/bsd/openpam/dist/lib/libpam/openpam_load.c (revision 0d9d0fd8a30be9a1924e715bbcf67a4a83efd262)
1*0d9d0fd8Schristos /*	$NetBSD: openpam_load.c,v 1.4 2023/06/30 21:46:20 christos Exp $	*/
2201780c4Schristos 
376e8c542Schristos /*-
476e8c542Schristos  * Copyright (c) 2002-2003 Networks Associates Technology, Inc.
54cb4af11Schristos  * Copyright (c) 2004-2013 Dag-Erling Smørgrav
676e8c542Schristos  * All rights reserved.
776e8c542Schristos  *
876e8c542Schristos  * This software was developed for the FreeBSD Project by ThinkSec AS and
976e8c542Schristos  * Network Associates Laboratories, the Security Research Division of
1076e8c542Schristos  * Network Associates, Inc.  under DARPA/SPAWAR contract N66001-01-C-8035
1176e8c542Schristos  * ("CBOSS"), as part of the DARPA CHATS research program.
1276e8c542Schristos  *
1376e8c542Schristos  * Redistribution and use in source and binary forms, with or without
1476e8c542Schristos  * modification, are permitted provided that the following conditions
1576e8c542Schristos  * are met:
1676e8c542Schristos  * 1. Redistributions of source code must retain the above copyright
1776e8c542Schristos  *    notice, this list of conditions and the following disclaimer.
1876e8c542Schristos  * 2. Redistributions in binary form must reproduce the above copyright
1976e8c542Schristos  *    notice, this list of conditions and the following disclaimer in the
2076e8c542Schristos  *    documentation and/or other materials provided with the distribution.
2176e8c542Schristos  * 3. The name of the author may not be used to endorse or promote
2276e8c542Schristos  *    products derived from this software without specific prior written
2376e8c542Schristos  *    permission.
2476e8c542Schristos  *
2576e8c542Schristos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2676e8c542Schristos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2776e8c542Schristos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2876e8c542Schristos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2976e8c542Schristos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3076e8c542Schristos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
3176e8c542Schristos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3276e8c542Schristos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
3376e8c542Schristos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3476e8c542Schristos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3576e8c542Schristos  * SUCH DAMAGE.
3676e8c542Schristos  */
3776e8c542Schristos 
3876e8c542Schristos #ifdef HAVE_CONFIG_H
3976e8c542Schristos # include "config.h"
4076e8c542Schristos #endif
4176e8c542Schristos 
42201780c4Schristos #include <sys/cdefs.h>
43*0d9d0fd8Schristos __RCSID("$NetBSD: openpam_load.c,v 1.4 2023/06/30 21:46:20 christos Exp $");
44201780c4Schristos 
4576e8c542Schristos #include <dlfcn.h>
4676e8c542Schristos #include <stdlib.h>
4776e8c542Schristos #include <string.h>
4876e8c542Schristos 
4976e8c542Schristos #include <security/pam_appl.h>
5076e8c542Schristos 
5176e8c542Schristos #include "openpam_impl.h"
5276e8c542Schristos 
5376e8c542Schristos /*
5476e8c542Schristos  * Locate a matching dynamic or static module.
5576e8c542Schristos  */
5676e8c542Schristos 
5776e8c542Schristos pam_module_t *
openpam_load_module(const char * modulename)5876e8c542Schristos openpam_load_module(const char *modulename)
5976e8c542Schristos {
6076e8c542Schristos 	pam_module_t *module;
6176e8c542Schristos 
6276e8c542Schristos 	module = openpam_dynamic(modulename);
6376e8c542Schristos 	openpam_log(PAM_LOG_DEBUG, "%s dynamic %s",
6476e8c542Schristos 	    (module == NULL) ? "no" : "using", modulename);
6576e8c542Schristos 
6676e8c542Schristos #ifdef OPENPAM_STATIC_MODULES
6776e8c542Schristos 	/* look for a static module */
6876e8c542Schristos 	if (module == NULL && strchr(modulename, '/') == NULL) {
6976e8c542Schristos 		module = openpam_static(modulename);
7076e8c542Schristos 		openpam_log(PAM_LOG_DEBUG, "%s static %s",
7176e8c542Schristos 		    (module == NULL) ? "no" : "using", modulename);
7276e8c542Schristos 	}
7376e8c542Schristos #endif
7476e8c542Schristos 	if (module == NULL) {
7576e8c542Schristos 		openpam_log(PAM_LOG_ERROR, "no %s found", modulename);
7676e8c542Schristos 		return (NULL);
7776e8c542Schristos 	}
7876e8c542Schristos 	return (module);
7976e8c542Schristos }
8076e8c542Schristos 
8176e8c542Schristos 
8276e8c542Schristos /*
8376e8c542Schristos  * Release a module.
8476e8c542Schristos  * XXX highly thread-unsafe
8576e8c542Schristos  */
8676e8c542Schristos 
8776e8c542Schristos static void
openpam_release_module(pam_module_t * module)8876e8c542Schristos openpam_release_module(pam_module_t *module)
8976e8c542Schristos {
904cb4af11Schristos 
9176e8c542Schristos 	if (module == NULL)
9276e8c542Schristos 		return;
9376e8c542Schristos 	if (module->dlh == NULL)
9476e8c542Schristos 		/* static module */
9576e8c542Schristos 		return;
9676e8c542Schristos 	dlclose(module->dlh);
9776e8c542Schristos 	openpam_log(PAM_LOG_DEBUG, "releasing %s", module->path);
9876e8c542Schristos 	FREE(module->path);
9976e8c542Schristos 	FREE(module);
10076e8c542Schristos }
10176e8c542Schristos 
10276e8c542Schristos 
10376e8c542Schristos /*
10476e8c542Schristos  * Destroy a chain, freeing all its links and releasing the modules
10576e8c542Schristos  * they point to.
10676e8c542Schristos  */
10776e8c542Schristos 
10876e8c542Schristos static void
openpam_destroy_chain(pam_chain_t * chain)10976e8c542Schristos openpam_destroy_chain(pam_chain_t *chain)
11076e8c542Schristos {
1114cb4af11Schristos 
11276e8c542Schristos 	if (chain == NULL)
11376e8c542Schristos 		return;
11476e8c542Schristos 	openpam_destroy_chain(chain->next);
11576e8c542Schristos 	chain->next = NULL;
11676e8c542Schristos 	FREEV(chain->optc, chain->optv);
11776e8c542Schristos 	openpam_release_module(chain->module);
11876e8c542Schristos 	chain->module = NULL;
11976e8c542Schristos 	FREE(chain);
12076e8c542Schristos }
12176e8c542Schristos 
12276e8c542Schristos 
12376e8c542Schristos /*
12476e8c542Schristos  * Clear the chains and release the modules
12576e8c542Schristos  */
12676e8c542Schristos 
12776e8c542Schristos void
openpam_clear_chains(pam_chain_t * policy[])12876e8c542Schristos openpam_clear_chains(pam_chain_t *policy[])
12976e8c542Schristos {
13076e8c542Schristos 	int i;
13176e8c542Schristos 
13276e8c542Schristos 	for (i = 0; i < PAM_NUM_FACILITIES; ++i) {
13376e8c542Schristos 		openpam_destroy_chain(policy[i]);
13476e8c542Schristos 		policy[i] = NULL;
13576e8c542Schristos 	}
13676e8c542Schristos }
13776e8c542Schristos 
13876e8c542Schristos /*
13976e8c542Schristos  * NOPARSE
14076e8c542Schristos  */
141