2 * Copyright (c) 2001-2003 Networks Associates Technology, Inc.
3 * Copyright (c) 2004-2007 Dag-Erling Smørgrav
6 * This software was developed for the FreeBSD Project by ThinkSec AS and
7 * Network Associates Laboratories, the Security Research Division of
8 * Network Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035
9 * ("CBOSS"), as part of the DARPA CHATS research program.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. The name of the author may not be used to endorse or promote
20 * products derived from this software without specific prior written
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * $Id: openpam_impl.h 408 2007-12-21 11:36:24Z des $
38 #ifndef _OPENPAM_IMPL_H_INCLUDED
39 #define _OPENPAM_IMPL_H_INCLUDED
45 #include <security/openpam.h>
47 extern const char *_pam_func_name
[PAM_NUM_PRIMITIVES
];
48 extern const char *_pam_sm_func_name
[PAM_NUM_PRIMITIVES
];
49 extern const char *_pam_err_name
[PAM_NUM_ERRORS
];
50 extern const char *_pam_item_name
[PAM_NUM_ITEMS
];
52 extern int _openpam_debug
;
70 PAM_FACILITY_ANY
= -1,
78 typedef struct pam_chain pam_chain_t
;
87 typedef struct pam_data pam_data_t
;
91 void (*cleanup
)(pam_handle_t
*, void *, int);
99 pam_chain_t
*chains
[PAM_NUM_FACILITIES
];
100 pam_chain_t
*current
;
104 void *item
[PAM_NUM_ITEMS
];
105 pam_data_t
*module_data
;
107 /* environment list */
114 #define PAM_SAVED_CRED "pam_saved_cred"
115 struct pam_saved_cred
{
118 gid_t groups
[NGROUPS_MAX
];
123 #define PAM_OTHER "other"
125 int openpam_configure(pam_handle_t
*, const char *);
126 int openpam_dispatch(pam_handle_t
*, int, int);
127 int openpam_findenv(pam_handle_t
*, const char *, size_t);
128 pam_module_t
*openpam_load_module(const char *);
129 void openpam_clear_chains(pam_chain_t
**);
131 #ifdef OPENPAM_STATIC_MODULES
132 pam_module_t
*openpam_static(const char *);
134 pam_module_t
*openpam_dynamic(const char *);
136 #define FREE(p) do { free((p)); (p) = NULL; } while (0)
139 #define ENTER() openpam_log(PAM_LOG_DEBUG, "entering")
140 #define ENTERI(i) do { \
142 if (_i > 0 && _i < PAM_NUM_ITEMS) \
143 openpam_log(PAM_LOG_DEBUG, "entering: %s", _pam_item_name[_i]); \
145 openpam_log(PAM_LOG_DEBUG, "entering: %d", _i); \
147 #define ENTERN(n) do { \
149 openpam_log(PAM_LOG_DEBUG, "entering: %d", _n); \
151 #define ENTERS(s) do { \
152 const char *_s = (s); \
154 openpam_log(PAM_LOG_DEBUG, "entering: NULL"); \
156 openpam_log(PAM_LOG_DEBUG, "entering: '%s'", _s); \
158 #define RETURNV() openpam_log(PAM_LOG_DEBUG, "returning")
159 #define RETURNC(c) do { \
161 if (_c >= 0 && _c < PAM_NUM_ERRORS) \
162 openpam_log(PAM_LOG_DEBUG, "returning %s", _pam_err_name[_c]); \
164 openpam_log(PAM_LOG_DEBUG, "returning %d!", _c); \
167 #define RETURNN(n) do { \
169 openpam_log(PAM_LOG_DEBUG, "returning %d", _n); \
172 #define RETURNP(p) do { \
173 const void *_p = (p); \
175 openpam_log(PAM_LOG_DEBUG, "returning NULL"); \
177 openpam_log(PAM_LOG_DEBUG, "returning %p", _p); \
180 #define RETURNS(s) do { \
181 const char *_s = (s); \
183 openpam_log(PAM_LOG_DEBUG, "returning NULL"); \
185 openpam_log(PAM_LOG_DEBUG, "returning '%s'", _s); \
193 #define RETURNV() return
194 #define RETURNC(c) return (c)
195 #define RETURNN(n) return (n)
196 #define RETURNP(p) return (p)
197 #define RETURNS(s) return (s)