aboutsummaryrefslogtreecommitdiff
path: root/contrib/openpam/include
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2002-04-06 19:28:08 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2002-04-06 19:28:08 +0000
commit11d144d32568b60f4eed5221e149576ce4450440 (patch)
treeb87978cedb464f30255f48e186900d6a772bcb61 /contrib/openpam/include
parentd32a969cca2ad710d1f22a9d0b4a5f077b6a0492 (diff)
downloadsrc-11d144d32568b60f4eed5221e149576ce4450440.tar.gz
src-11d144d32568b60f4eed5221e149576ce4450440.zip
MFOpenPAM: a slew of changes, mostly related to pam_get_authtok() (perforce
changes 9207, 9209, 9210, 9211, 9213, 9220) Sponsored by: DARPA, NAI Labs
Notes
Notes: svn path=/vendor/openpam/dist/; revision=93982
Diffstat (limited to 'contrib/openpam/include')
-rw-r--r--contrib/openpam/include/security/openpam.h26
-rw-r--r--contrib/openpam/include/security/pam_constants.h3
2 files changed, 20 insertions, 9 deletions
diff --git a/contrib/openpam/include/security/openpam.h b/contrib/openpam/include/security/openpam.h
index eb12730345a2..b001398e90e3 100644
--- a/contrib/openpam/include/security/openpam.h
+++ b/contrib/openpam/include/security/openpam.h
@@ -31,7 +31,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $P4: //depot/projects/openpam/include/security/openpam.h#12 $
+ * $P4: //depot/projects/openpam/include/security/openpam.h#14 $
*/
#ifndef _SECURITY_OPENPAM_H_INCLUDED
@@ -65,6 +65,7 @@ pam_error(pam_handle_t *_pamh,
int
pam_get_authtok(pam_handle_t *_pamh,
+ int _item,
const char **_authtok,
const char *_prompt);
@@ -116,19 +117,26 @@ enum {
/*
* Log to syslog
*/
-void _openpam_log(int _level,
+void
+_openpam_log(int _level,
const char *_func,
const char *_fmt,
...);
-#if defined(__STDC__) && (__STDC_VERSION__ > 199901L)
+#if defined(__STDC__) && (__STDC_VERSION__ >= 199901L)
#define openpam_log(lvl, fmt, ...) \
_openpam_log((lvl), __func__, fmt, __VA_ARGS__)
-#elif defined(__GNUC__)
+#elif defined(__GNUC__) && (__GNUC__ >= 2) && (__GNUC_MINOR__ >= 95)
+#define openpam_log(lvl, fmt, ...) \
+ _openpam_log((lvl), __func__, fmt, ##fmt)
+#elif defined(__GNUC__) && defined(__FUNCTION__)
#define openpam_log(lvl, fmt...) \
- _openpam_log((lvl), __func__, ##fmt)
+ _openpam_log((lvl), __FUNCTION__, ##fmt)
#else
-extern openpam_log(int _level, const char *_format, ...);
+void
+openpam_log(int _level,
+ const char *_format,
+ ...);
#endif
/*
@@ -189,12 +197,14 @@ struct pam_module {
* Infrastructure for static modules using GCC linker sets.
* You are not expected to understand this.
*/
-#if defined(__GNUC__) && !defined(__PIC__)
#if defined(__FreeBSD__)
#define PAM_SOEXT ".so"
#else
-#error Static linking is not supported on your platform
+#ifndef NO_STATIC_MODULES
+#define NO_STATIC_MODULES
+#endif
#endif
+#if defined(__GNUC__) && !defined(__PIC__) && !defined(NO_STATIC_MODULES)
/* gcc, static linking */
#include <sys/cdefs.h>
#include <linker_set.h>
diff --git a/contrib/openpam/include/security/pam_constants.h b/contrib/openpam/include/security/pam_constants.h
index 986b4d08cb34..5cb0b4094551 100644
--- a/contrib/openpam/include/security/pam_constants.h
+++ b/contrib/openpam/include/security/pam_constants.h
@@ -31,7 +31,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $P4: //depot/projects/openpam/include/security/pam_constants.h#12 $
+ * $P4: //depot/projects/openpam/include/security/pam_constants.h#13 $
*/
#ifndef _PAM_CONSTANTS_H_INCLUDED
@@ -119,6 +119,7 @@ enum {
PAM_RUSER = 8,
PAM_USER_PROMPT = 9,
PAM_AUTHTOK_PROMPT = 10, /* OpenPAM extension */
+ PAM_OLDAUTHTOK_PROMPT = 11, /* OpenPAM extension */
PAM_NUM_ITEMS /* OpenPAM extension */
};