xref: /netbsd-src/external/bsd/openpam/dist/lib/libpam/pam_setenv.c (revision 0d9d0fd8a30be9a1924e715bbcf67a4a83efd262)
1*0d9d0fd8Schristos /*	$NetBSD: pam_setenv.c,v 1.4 2023/06/30 21:46:21 christos Exp $	*/
2201780c4Schristos 
376e8c542Schristos /*-
476e8c542Schristos  * Copyright (c) 2002-2003 Networks Associates Technology, Inc.
54cb4af11Schristos  * Copyright (c) 2004-2017 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: pam_setenv.c,v 1.4 2023/06/30 21:46:21 christos Exp $");
44201780c4Schristos 
454cb4af11Schristos #include <errno.h>
4676e8c542Schristos #include <stdlib.h>
4776e8c542Schristos #include <stdio.h>
4876e8c542Schristos #include <string.h>
4976e8c542Schristos 
5076e8c542Schristos #include <security/pam_appl.h>
5176e8c542Schristos 
5276e8c542Schristos #include "openpam_impl.h"
5376e8c542Schristos #include "openpam_asprintf.h"
5476e8c542Schristos 
5576e8c542Schristos /*
5676e8c542Schristos  * OpenPAM extension
5776e8c542Schristos  *
5876e8c542Schristos  * Set the value of an environment variable
5976e8c542Schristos  * Mirrors setenv(3)
6076e8c542Schristos  */
6176e8c542Schristos 
6276e8c542Schristos int
pam_setenv(pam_handle_t * pamh,const char * name,const char * value,int overwrite)6376e8c542Schristos pam_setenv(pam_handle_t *pamh,
6476e8c542Schristos 	const char *name,
6576e8c542Schristos 	const char *value,
6676e8c542Schristos 	int overwrite)
6776e8c542Schristos {
6876e8c542Schristos 	char *env;
6976e8c542Schristos 	int r;
7076e8c542Schristos 
7176e8c542Schristos 	ENTER();
7276e8c542Schristos 
7376e8c542Schristos 	/* sanity checks */
744cb4af11Schristos 	if (*name == '\0' || strchr(name, '=') != NULL) {
754cb4af11Schristos 		errno = EINVAL;
7676e8c542Schristos 		RETURNC(PAM_SYSTEM_ERR);
774cb4af11Schristos 	}
7876e8c542Schristos 
7976e8c542Schristos 	/* is it already there? */
8076e8c542Schristos 	if (!overwrite && openpam_findenv(pamh, name, strlen(name)) >= 0)
8176e8c542Schristos 		RETURNC(PAM_SUCCESS);
8276e8c542Schristos 
8376e8c542Schristos 	/* set it... */
8476e8c542Schristos 	if (asprintf(&env, "%s=%s", name, value) < 0)
8576e8c542Schristos 		RETURNC(PAM_BUF_ERR);
8676e8c542Schristos 	r = pam_putenv(pamh, env);
8776e8c542Schristos 	FREE(env);
8876e8c542Schristos 	RETURNC(r);
8976e8c542Schristos }
9076e8c542Schristos 
9176e8c542Schristos /*
9276e8c542Schristos  * Error codes:
9376e8c542Schristos  *
9476e8c542Schristos  *	=pam_putenv
9576e8c542Schristos  *	PAM_SYSTEM_ERR
9676e8c542Schristos  *	PAM_BUF_ERR
9776e8c542Schristos  */
9876e8c542Schristos 
9976e8c542Schristos /**
10076e8c542Schristos  * The =pam_setenv function sets an environment variable.
10176e8c542Schristos  * Its semantics are similar to those of =setenv, but it modifies the PAM
10276e8c542Schristos  * context's environment list instead of the application's.
10376e8c542Schristos  *
10476e8c542Schristos  * >pam_getenv
10576e8c542Schristos  * >pam_getenvlist
10676e8c542Schristos  * >pam_putenv
10776e8c542Schristos  */
108