]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/openpam/lib/openpam_log.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / openpam / lib / openpam_log.c
1 /*-
2  * Copyright (c) 2002-2003 Networks Associates Technology, Inc.
3  * Copyright (c) 2004-2011 Dag-Erling Smørgrav
4  * All rights reserved.
5  *
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.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
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
21  *    permission.
22  *
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
33  * SUCH DAMAGE.
34  *
35  * $Id: openpam_log.c 544 2012-03-31 22:47:15Z des $
36  */
37
38 #ifdef HAVE_CONFIG_H
39 # include "config.h"
40 #endif
41
42 #include <errno.h>
43 #include <stdarg.h>
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <syslog.h>
47
48 #include <security/pam_appl.h>
49
50 #include "openpam_impl.h"
51
52 int openpam_debug = 0;
53
54 #if !defined(openpam_log)
55
56 /*
57  * OpenPAM extension
58  *
59  * Log a message through syslog
60  */
61
62 void
63 openpam_log(int level, const char *fmt, ...)
64 {
65         va_list ap;
66         int priority;
67
68         switch (level) {
69         case PAM_LOG_LIBDEBUG:
70         case PAM_LOG_DEBUG:
71                 if (!openpam_debug)
72                         return;
73                 priority = LOG_DEBUG;
74                 break;
75         case PAM_LOG_VERBOSE:
76                 priority = LOG_INFO;
77                 break;
78         case PAM_LOG_NOTICE:
79                 priority = LOG_NOTICE;
80                 break;
81         case PAM_LOG_ERROR:
82         default:
83                 priority = LOG_ERR;
84                 break;
85         }
86         va_start(ap, fmt);
87         vsyslog(priority, fmt, ap);
88         va_end(ap);
89 }
90
91 #else
92
93 void
94 _openpam_log(int level, const char *func, const char *fmt, ...)
95 {
96         va_list ap;
97         char *format;
98         int priority;
99         int serrno;
100
101         switch (level) {
102         case PAM_LOG_LIBDEBUG:
103         case PAM_LOG_DEBUG:
104                 if (!openpam_debug)
105                         return;
106                 priority = LOG_DEBUG;
107                 break;
108         case PAM_LOG_VERBOSE:
109                 priority = LOG_INFO;
110                 break;
111         case PAM_LOG_NOTICE:
112                 priority = LOG_NOTICE;
113                 break;
114         case PAM_LOG_ERROR:
115         default:
116                 priority = LOG_ERR;
117                 break;
118         }
119         va_start(ap, fmt);
120         serrno = errno;
121         if (asprintf(&format, "in %s(): %s", func, fmt) > 0) {
122                 errno = serrno;
123                 vsyslog(priority, format, ap);
124                 FREE(format);
125         } else {
126                 errno = serrno;
127                 vsyslog(priority, fmt, ap);
128         }
129         va_end(ap);
130 }
131
132 #endif
133
134 /**
135  * The =openpam_log function logs messages using =syslog.
136  * It is primarily intended for internal use by the library and modules.
137  *
138  * The =level argument indicates the importance of the message.
139  * The following levels are defined:
140  *
141  *      =PAM_LOG_LIBDEBUG:
142  *              Debugging messages.
143  *              For internal use only.
144  *      =PAM_LOG_DEBUG:
145  *              Debugging messages.
146  *              These messages are normally not logged unless the global
147  *              integer variable :openpam_debug is set to a non-zero
148  *              value, in which case they are logged with a =syslog
149  *              priority of =LOG_DEBUG.
150  *      =PAM_LOG_VERBOSE:
151  *              Information about the progress of the authentication
152  *              process, or other non-essential messages.
153  *              These messages are logged with a =syslog priority of
154  *              =LOG_INFO.
155  *      =PAM_LOG_NOTICE:
156  *              Messages relating to non-fatal errors.
157  *              These messages are logged with a =syslog priority of
158  *              =LOG_NOTICE.
159  *      =PAM_LOG_ERROR:
160  *              Messages relating to serious errors.
161  *              These messages are logged with a =syslog priority of
162  *              =LOG_ERR.
163  *
164  * The remaining arguments are a =printf format string and the
165  * corresponding arguments.
166  */