]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libpam/libpam/pam_debug_log.c
This commit was generated by cvs2svn to compensate for changes in r80508,
[FreeBSD/FreeBSD.git] / lib / libpam / libpam / pam_debug_log.c
1 /*-
2  * Copyright 2001 Mark R V Murray
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD$
27  */
28
29 #include <security/pam_modules.h>
30 #include <libgen.h>
31 #include <stdarg.h>
32 #include <string.h>
33 #include <syslog.h>
34
35 #include "pam_mod_misc.h"
36
37 #define FMTBUFSIZ       256
38
39 /* Log a debug message, including the function name and a
40  * cleaned up filename.
41  */
42 void
43 _pam_log(struct options *options, const char *file, const char *function,
44     const char *format, ...)
45 {
46         va_list ap;
47         char *period;
48         char fmtbuf[FMTBUFSIZ];
49
50         if (pam_test_option(options, PAM_OPT_DEBUG, NULL)) {
51                 strncpy(fmtbuf, basename(file), FMTBUFSIZ);
52                 period = strchr(fmtbuf, '.');
53                 if (period != NULL)
54                         *period = '\0';
55                 strncat(fmtbuf, ": ", FMTBUFSIZ);
56                 strncat(fmtbuf, function, FMTBUFSIZ);
57                 strncat(fmtbuf, ": ", FMTBUFSIZ);
58                 strncat(fmtbuf, format, FMTBUFSIZ);
59                 va_start(ap, format);
60                 vsyslog(LOG_DEBUG, fmtbuf, ap);
61                 va_end(ap);
62         }
63 }
64
65 /* Log a return value, including the function name and a
66  * cleaned up filename.
67  */
68 void
69 _pam_log_retval(struct options *options, const char *file, const char *function,
70     int retval)
71 {
72         char *period;
73         char fmtbuf[FMTBUFSIZ];
74
75         if (pam_test_option(options, PAM_OPT_DEBUG, NULL)) {
76                 strncpy(fmtbuf, basename(file), FMTBUFSIZ);
77                 period = strchr(fmtbuf, '.');
78                 if (period != NULL)
79                         *period = '\0';
80                 strncat(fmtbuf, ": ", FMTBUFSIZ);
81                 strncat(fmtbuf, function, FMTBUFSIZ);
82                 switch (retval) {
83                 case PAM_SUCCESS:
84                         strncat(fmtbuf, ": returning PAM_SUCCESS", FMTBUFSIZ);
85                         syslog(LOG_DEBUG, fmtbuf);
86                         break;
87                 case PAM_AUTH_ERR:
88                         strncat(fmtbuf, ": returning PAM_AUTH_ERR", FMTBUFSIZ);
89                         syslog(LOG_DEBUG, fmtbuf);
90                         break;
91                 default:
92                         strncat(fmtbuf, ": returning %d", FMTBUFSIZ);
93                         syslog(LOG_DEBUG, fmtbuf, retval);
94                 }
95         }
96 }