freebsd-skq/lib/openpam_impl.h

180 lines
4.3 KiB
C
Raw Normal View History

2002-02-23 01:22:51 +00:00
/*-
2003-06-01 12:54:03 +00:00
* Copyright (c) 2001-2003 Networks Associates Technology, Inc.
2011-12-18 17:08:40 +00:00
* Copyright (c) 2004-2011 Dag-Erling Smørgrav
2002-02-23 01:22:51 +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-02-23 01:22:51 +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.
*
2012-05-26 14:23:18 +00:00
* $Id: openpam_impl.h 594 2012-04-14 14:18:41Z des $
2002-02-23 01:22:51 +00:00
*/
2011-12-18 17:08:40 +00:00
#ifndef OPENPAM_IMPL_H_INCLUDED
#define OPENPAM_IMPL_H_INCLUDED
2003-07-15 07:18:26 +00:00
2002-02-23 01:22:51 +00:00
#include <security/openpam.h>
2011-12-18 17:08:40 +00:00
extern int openpam_debug;
2003-05-02 15:08:06 +00:00
2002-02-23 01:22:51 +00:00
/*
* Control flags
*/
2003-06-01 12:54:03 +00:00
typedef enum {
PAM_BINDING,
PAM_REQUIRED,
PAM_REQUISITE,
PAM_SUFFICIENT,
PAM_OPTIONAL,
PAM_NUM_CONTROL_FLAGS
} pam_control_t;
2002-02-23 01:22:51 +00:00
/*
2003-06-01 12:54:03 +00:00
* Facilities
2002-02-23 01:22:51 +00:00
*/
2003-06-01 12:54:03 +00:00
typedef enum {
PAM_FACILITY_ANY = -1,
PAM_AUTH = 0,
PAM_ACCOUNT,
PAM_SESSION,
PAM_PASSWORD,
PAM_NUM_FACILITIES
} pam_facility_t;
2002-02-23 01:22:51 +00:00
2011-12-18 17:08:40 +00:00
/*
* Module chains
*/
2002-02-23 01:22:51 +00:00
typedef struct pam_chain pam_chain_t;
struct pam_chain {
pam_module_t *module;
int flag;
int optc;
char **optv;
pam_chain_t *next;
};
2011-12-18 17:08:40 +00:00
/*
* Service policies
*/
#if defined(OPENPAM_EMBEDDED)
typedef struct pam_policy pam_policy_t;
struct pam_policy {
const char *service;
pam_chain_t *chains[PAM_NUM_FACILITIES];
};
extern pam_policy_t *pam_embedded_policies[];
#endif
/*
* Module-specific data
*/
2002-02-23 01:22:51 +00:00
typedef struct pam_data pam_data_t;
struct pam_data {
char *name;
void *data;
void (*cleanup)(pam_handle_t *, void *, int);
pam_data_t *next;
};
2011-12-18 17:08:40 +00:00
/*
* PAM context
*/
2002-02-23 01:22:51 +00:00
struct pam_handle {
char *service;
/* chains */
2003-06-01 12:54:03 +00:00
pam_chain_t *chains[PAM_NUM_FACILITIES];
2002-02-23 01:22:51 +00:00
pam_chain_t *current;
2002-12-16 15:28:05 +00:00
int primitive;
2002-02-23 01:22:51 +00:00
/* items and data */
void *item[PAM_NUM_ITEMS];
pam_data_t *module_data;
/* environment list */
char **env;
int env_count;
int env_size;
};
2002-04-08 12:30:31 +00:00
#ifdef NGROUPS_MAX
2011-12-18 17:08:40 +00:00
/*
* Saved credentials
*/
2002-04-08 12:30:31 +00:00
#define PAM_SAVED_CRED "pam_saved_cred"
struct pam_saved_cred {
uid_t euid;
gid_t egid;
gid_t groups[NGROUPS_MAX];
int ngroups;
};
#endif
2011-12-18 17:08:40 +00:00
/*
* Default policy
*/
2002-02-23 01:22:51 +00:00
#define PAM_OTHER "other"
2011-12-18 17:08:40 +00:00
/*
* Internal functions
*/
2003-06-01 12:54:03 +00:00
int openpam_configure(pam_handle_t *, const char *);
int openpam_dispatch(pam_handle_t *, int, int);
int openpam_findenv(pam_handle_t *, const char *, size_t);
pam_module_t *openpam_load_module(const char *);
void openpam_clear_chains(pam_chain_t **);
2002-02-23 01:22:51 +00:00
2011-12-18 17:08:40 +00:00
int openpam_check_desc_owner_perms(const char *, int);
int openpam_check_path_owner_perms(const char *);
2002-02-23 01:24:02 +00:00
#ifdef OPENPAM_STATIC_MODULES
2003-06-01 12:54:03 +00:00
pam_module_t *openpam_static(const char *);
2002-02-23 01:24:02 +00:00
#endif
2003-06-01 12:54:03 +00:00
pam_module_t *openpam_dynamic(const char *);
2012-05-26 14:23:18 +00:00
#define FREE(p) \
do { \
free(p); \
(p) = NULL; \
} while (0)
#define FREEV(c, v) \
do { \
while (c) { \
--(c); \
FREE((v)[(c)]); \
} \
FREE(v); \
} while (0)
2002-02-23 01:24:02 +00:00
2011-12-18 17:08:40 +00:00
#include "openpam_constants.h"
#include "openpam_debug.h"
2012-05-26 14:23:18 +00:00
#include "openpam_features.h"
2002-12-16 15:28:05 +00:00
2002-02-23 01:22:51 +00:00
#endif