freebsd-dev/contrib/openpam/lib/libpam/openpam_borrow_cred.c

127 lines
3.8 KiB
C
Raw Normal View History

2002-04-08 12:30:31 +00:00
/*-
2003-06-01 12:54:03 +00:00
* Copyright (c) 2002-2003 Networks Associates Technology, Inc.
2011-12-18 17:08:40 +00:00
* Copyright (c) 2004-2011 Dag-Erling Smørgrav
2002-04-08 12:30:31 +00:00
* All rights reserved.
*
* This software was developed for the FreeBSD Project by ThinkSec AS and
2002-06-30 21:30:05 +00:00
* Network Associates Laboratories, the Security Research Division of
* Network Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035
* ("CBOSS"), as part of the DARPA CHATS research program.
2002-04-08 12:30:31 +00:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
2013-09-07 16:15:30 +00:00
* $Id: openpam_borrow_cred.c 649 2013-03-05 17:58:33Z des $
2002-04-08 12:30:31 +00:00
*/
2011-12-18 17:08:40 +00:00
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
2002-04-08 12:30:31 +00:00
#include <sys/param.h>
2003-06-01 12:54:03 +00:00
#include <grp.h>
2003-07-15 07:18:26 +00:00
#include <limits.h>
2002-04-08 12:30:31 +00:00
#include <pwd.h>
#include <stdlib.h>
#include <unistd.h>
#include <security/pam_appl.h>
#include "openpam_impl.h"
2013-09-07 16:15:30 +00:00
#include "openpam_cred.h"
2002-04-08 12:30:31 +00:00
/*
* OpenPAM extension
*
* Temporarily borrow user credentials
*/
int
openpam_borrow_cred(pam_handle_t *pamh,
const struct passwd *pwd)
{
struct pam_saved_cred *scred;
2007-12-21 11:49:29 +00:00
const void *scredp;
2002-04-08 12:30:31 +00:00
int r;
ENTERI(pwd->pw_uid);
2004-02-10 10:11:23 +00:00
r = pam_get_data(pamh, PAM_SAVED_CRED, &scredp);
if (r == PAM_SUCCESS && scredp != NULL) {
2013-09-07 16:15:30 +00:00
openpam_log(PAM_LOG_LIBDEBUG,
"already operating under borrowed credentials");
RETURNC(PAM_SYSTEM_ERR);
}
if (geteuid() != 0 && geteuid() != pwd->pw_uid) {
2013-09-07 16:15:30 +00:00
openpam_log(PAM_LOG_LIBDEBUG, "called with non-zero euid: %d",
(int)geteuid());
2002-12-16 15:28:05 +00:00
RETURNC(PAM_PERM_DENIED);
}
2002-04-08 12:30:31 +00:00
scred = calloc(1, sizeof *scred);
if (scred == NULL)
2002-12-16 15:28:05 +00:00
RETURNC(PAM_BUF_ERR);
2002-04-08 12:30:31 +00:00
scred->euid = geteuid();
scred->egid = getegid();
r = getgroups(NGROUPS_MAX, scred->groups);
2003-06-01 12:54:03 +00:00
if (r < 0) {
FREE(scred);
2002-12-16 15:28:05 +00:00
RETURNC(PAM_SYSTEM_ERR);
2002-04-08 12:30:31 +00:00
}
scred->ngroups = r;
r = pam_set_data(pamh, PAM_SAVED_CRED, scred, &openpam_free_data);
if (r != PAM_SUCCESS) {
2003-06-01 12:54:03 +00:00
FREE(scred);
2002-12-16 15:28:05 +00:00
RETURNC(r);
2002-04-08 12:30:31 +00:00
}
if (geteuid() == pwd->pw_uid)
RETURNC(PAM_SUCCESS);
2003-06-01 12:54:03 +00:00
if (initgroups(pwd->pw_name, pwd->pw_gid) < 0 ||
setegid(pwd->pw_gid) < 0 || seteuid(pwd->pw_uid) < 0) {
2002-04-08 12:30:31 +00:00
openpam_restore_cred(pamh);
2002-12-16 15:28:05 +00:00
RETURNC(PAM_SYSTEM_ERR);
2002-04-08 12:30:31 +00:00
}
2002-12-16 15:28:05 +00:00
RETURNC(PAM_SUCCESS);
2002-04-08 12:30:31 +00:00
}
/*
* Error codes:
*
* =pam_set_data
* PAM_SYSTEM_ERR
* PAM_BUF_ERR
* PAM_PERM_DENIED
*/
/**
* The =openpam_borrow_cred function saves the current credentials and
2005-02-01 10:16:17 +00:00
* switches to those of the user specified by its =pwd argument.
* The affected credentials are the effective UID, the effective GID, and
* the group access list.
* The original credentials can be restored using =openpam_restore_cred.
2002-04-08 12:30:31 +00:00
*
2005-02-01 10:16:17 +00:00
* >setegid 2
* >seteuid 2
* >setgroups 2
2002-04-08 12:30:31 +00:00
*/