1*0d9d0fd8Schristos /* $NetBSD: pam_set_data.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_set_data.c,v 1.4 2023/06/30 21:46:21 christos Exp $");
44201780c4Schristos
4576e8c542Schristos #include <stdlib.h>
4676e8c542Schristos #include <string.h>
4776e8c542Schristos
4876e8c542Schristos #include <security/pam_appl.h>
4976e8c542Schristos
5076e8c542Schristos #include "openpam_impl.h"
5176e8c542Schristos
5276e8c542Schristos /*
5376e8c542Schristos * XSSO 4.2.1
5476e8c542Schristos * XSSO 6 page 59
5576e8c542Schristos *
5676e8c542Schristos * Set module information
5776e8c542Schristos */
5876e8c542Schristos
5976e8c542Schristos int
pam_set_data(pam_handle_t * pamh,const char * module_data_name,void * data,void (* cleanup)(pam_handle_t * pamh,void * data,int pam_end_status))6076e8c542Schristos pam_set_data(pam_handle_t *pamh,
6176e8c542Schristos const char *module_data_name,
6276e8c542Schristos void *data,
6376e8c542Schristos void (*cleanup)(pam_handle_t *pamh,
6476e8c542Schristos void *data,
6576e8c542Schristos int pam_end_status))
6676e8c542Schristos {
6776e8c542Schristos pam_data_t *dp;
6876e8c542Schristos
6976e8c542Schristos ENTERS(module_data_name);
7076e8c542Schristos for (dp = pamh->module_data; dp != NULL; dp = dp->next) {
7176e8c542Schristos if (strcmp(dp->name, module_data_name) == 0) {
7276e8c542Schristos if (dp->cleanup)
7376e8c542Schristos (dp->cleanup)(pamh, dp->data, PAM_SUCCESS);
7476e8c542Schristos dp->data = data;
7576e8c542Schristos dp->cleanup = cleanup;
7676e8c542Schristos RETURNC(PAM_SUCCESS);
7776e8c542Schristos }
7876e8c542Schristos }
7976e8c542Schristos if ((dp = malloc(sizeof *dp)) == NULL)
8076e8c542Schristos RETURNC(PAM_BUF_ERR);
8176e8c542Schristos if ((dp->name = strdup(module_data_name)) == NULL) {
8276e8c542Schristos FREE(dp);
8376e8c542Schristos RETURNC(PAM_BUF_ERR);
8476e8c542Schristos }
8576e8c542Schristos dp->data = data;
8676e8c542Schristos dp->cleanup = cleanup;
8776e8c542Schristos dp->next = pamh->module_data;
8876e8c542Schristos pamh->module_data = dp;
8976e8c542Schristos RETURNC(PAM_SUCCESS);
9076e8c542Schristos }
9176e8c542Schristos
9276e8c542Schristos /*
9376e8c542Schristos * Error codes:
9476e8c542Schristos *
9576e8c542Schristos * PAM_SYSTEM_ERR
9676e8c542Schristos * PAM_BUF_ERR
9776e8c542Schristos */
9876e8c542Schristos
9976e8c542Schristos /**
10076e8c542Schristos * The =pam_set_data function associates a pointer to an opaque object
10176e8c542Schristos * with an arbitrary string specified by the =module_data_name argument,
10276e8c542Schristos * in the PAM context specified by the =pamh argument.
10376e8c542Schristos *
10476e8c542Schristos * If not =NULL, the =cleanup argument should point to a function
10576e8c542Schristos * responsible for releasing the resources associated with the object.
10676e8c542Schristos *
10776e8c542Schristos * This function and its counterpart =pam_get_data are useful for managing
10876e8c542Schristos * data that are meaningful only to a particular service module.
109201780c4Schristos *
110201780c4Schristos * >openpam_free_data
11176e8c542Schristos */
112