blob: 5b86963fc8f282c392c5cf0926a994e4c511e8b2 [file] [log] [blame]
Guido van Rossume44e3731994-07-14 13:56:50 +00001/***********************************************************
Guido van Rossumf6971e21994-08-30 12:25:20 +00002Copyright 1994 by Lance Ellinghouse,
3Cathedral City, California Republic, United States of America.
Guido van Rossume44e3731994-07-14 13:56:50 +00004
5 All Rights Reserved
6
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00007Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
Guido van Rossume44e3731994-07-14 13:56:50 +00009provided that the above copyright notice appear in all copies and that
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000010both that copyright notice and this permission notice appear in
Guido van Rossumf6971e21994-08-30 12:25:20 +000011supporting documentation, and that the name of Lance Ellinghouse
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000012not be used in advertising or publicity pertaining to distribution
Guido van Rossumf6971e21994-08-30 12:25:20 +000013of the software without specific, written prior permission.
Guido van Rossume44e3731994-07-14 13:56:50 +000014
Guido van Rossumf6971e21994-08-30 12:25:20 +000015LANCE ELLINGHOUSE DISCLAIMS ALL WARRANTIES WITH REGARD TO
Guido van Rossume44e3731994-07-14 13:56:50 +000016THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000017FITNESS, IN NO EVENT SHALL LANCE ELLINGHOUSE BE LIABLE FOR ANY SPECIAL,
18INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
19FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
20NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
Guido van Rossumf6971e21994-08-30 12:25:20 +000021WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Guido van Rossume44e3731994-07-14 13:56:50 +000022
23******************************************************************/
24
Guido van Rossumc1822a41995-10-11 16:15:28 +000025/******************************************************************
26
27Revision history:
28
Sean Reifscheider13daf122010-04-23 09:29:52 +0000292010/04/20 (Sean Reifschneider)
30 - Use basename(sys.argv[0]) for the default "ident".
31 - Arguments to openlog() are now keyword args and are all optional.
32 - syslog() calls openlog() if it hasn't already been called.
33
Guido van Rossumae94cf21998-05-08 21:52:55 +0000341998/04/28 (Sean Reifschneider)
35 - When facility not specified to syslog() method, use default from openlog()
36 (This is how it was claimed to work in the documentation)
37 - Potential resource leak of o_ident, now cleaned up in closelog()
38 - Minor comment accuracy fix.
39
Guido van Rossumc1822a41995-10-11 16:15:28 +00004095/06/29 (Steve Clift)
41 - Changed arg parsing to use PyArg_ParseTuple.
42 - Added PyErr_Clear() call(s) where needed.
43 - Fix core dumps if user message contains format specifiers.
Thomas Wouters7e474022000-07-16 12:04:32 +000044 - Change openlog arg defaults to match normal syslog behavior.
Guido van Rossumc1822a41995-10-11 16:15:28 +000045 - Plug memory leak in openlog().
46 - Fix setlogmask() to return previous mask value.
47
48******************************************************************/
49
Guido van Rossume44e3731994-07-14 13:56:50 +000050/* syslog module */
Guido van Rossume44e3731994-07-14 13:56:50 +000051
Guido van Rossuma597dde1995-01-10 20:56:29 +000052#include "Python.h"
Sean Reifscheider13daf122010-04-23 09:29:52 +000053#include "osdefs.h"
Guido van Rossume44e3731994-07-14 13:56:50 +000054
55#include <syslog.h>
56
Guido van Rossumae94cf21998-05-08 21:52:55 +000057/* only one instance, only one syslog, so globals should be ok */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000058static PyObject *S_ident_o = NULL; /* identifier, held by openlog() */
Sean Reifscheider7f810cd2010-04-25 06:31:55 +000059static char S_log_open = 0;
Guido van Rossumae94cf21998-05-08 21:52:55 +000060
61
Sean Reifscheider13daf122010-04-23 09:29:52 +000062static PyObject *
63syslog_get_argv(void)
64{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000065 /* Figure out what to use for as the program "ident" for openlog().
66 * This swallows exceptions and continues rather than failing out,
67 * because the syslog module can still be used because openlog(3)
68 * is optional.
69 */
Sean Reifscheider13daf122010-04-23 09:29:52 +000070
Alexander Belopolskye239d232010-12-08 23:31:48 +000071 Py_ssize_t argv_len, scriptlen;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000072 PyObject *scriptobj;
Alexander Belopolskye239d232010-12-08 23:31:48 +000073 Py_UNICODE *atslash, *atstart;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000074 PyObject *argv = PySys_GetObject("argv");
Sean Reifscheider13daf122010-04-23 09:29:52 +000075
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000076 if (argv == NULL) {
77 return(NULL);
78 }
Sean Reifscheider13daf122010-04-23 09:29:52 +000079
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000080 argv_len = PyList_Size(argv);
81 if (argv_len == -1) {
82 PyErr_Clear();
83 return(NULL);
84 }
85 if (argv_len == 0) {
86 return(NULL);
87 }
Sean Reifscheider13daf122010-04-23 09:29:52 +000088
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000089 scriptobj = PyList_GetItem(argv, 0);
90 if (!PyUnicode_Check(scriptobj)) {
91 return(NULL);
92 }
Alexander Belopolskye239d232010-12-08 23:31:48 +000093 scriptlen = PyUnicode_GET_SIZE(scriptobj);
94 if (scriptlen == 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000095 return(NULL);
96 }
Sean Reifscheider13daf122010-04-23 09:29:52 +000097
Alexander Belopolskye239d232010-12-08 23:31:48 +000098 atstart = PyUnicode_AS_UNICODE(scriptobj);
99 atslash = Py_UNICODE_strrchr(atstart, SEP);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000100 if (atslash) {
Alexander Belopolskye239d232010-12-08 23:31:48 +0000101 return(PyUnicode_FromUnicode(atslash + 1,
102 scriptlen - (atslash - atstart) - 1));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000103 } else {
104 Py_INCREF(scriptobj);
105 return(scriptobj);
106 }
Sean Reifscheider13daf122010-04-23 09:29:52 +0000107
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000108 return(NULL);
Sean Reifscheider13daf122010-04-23 09:29:52 +0000109}
110
111
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000112static PyObject *
Sean Reifscheider13daf122010-04-23 09:29:52 +0000113syslog_openlog(PyObject * self, PyObject * args, PyObject *kwds)
Guido van Rossume44e3731994-07-14 13:56:50 +0000114{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000115 long logopt = 0;
116 long facility = LOG_USER;
117 PyObject *new_S_ident_o = NULL;
118 static char *keywords[] = {"ident", "logoption", "facility", 0};
Alexander Belopolskye239d232010-12-08 23:31:48 +0000119 char *ident = NULL;
Guido van Rossumc1822a41995-10-11 16:15:28 +0000120
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000121 if (!PyArg_ParseTupleAndKeywords(args, kwds,
122 "|Ull:openlog", keywords, &new_S_ident_o, &logopt, &facility))
123 return NULL;
Guido van Rossumc1822a41995-10-11 16:15:28 +0000124
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000125 if (new_S_ident_o) {
126 Py_INCREF(new_S_ident_o);
Alexander Belopolskye239d232010-12-08 23:31:48 +0000127 }
Sean Reifscheider13daf122010-04-23 09:29:52 +0000128
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000129 /* get sys.argv[0] or NULL if we can't for some reason */
130 if (!new_S_ident_o) {
131 new_S_ident_o = syslog_get_argv();
Alexander Belopolskye239d232010-12-08 23:31:48 +0000132 }
Sean Reifscheider13daf122010-04-23 09:29:52 +0000133
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000134 Py_XDECREF(S_ident_o);
135 S_ident_o = new_S_ident_o;
Guido van Rossumc1822a41995-10-11 16:15:28 +0000136
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 /* At this point, S_ident_o should be INCREF()ed. openlog(3) does not
138 * make a copy, and syslog(3) later uses it. We can't garbagecollect it
139 * If NULL, just let openlog figure it out (probably using C argv[0]).
140 */
Alexander Belopolskye239d232010-12-08 23:31:48 +0000141 if (S_ident_o) {
142 ident = _PyUnicode_AsString(S_ident_o);
143 if (ident == NULL)
144 return NULL;
145 }
Barry Warsaw43a476a1997-01-09 23:51:21 +0000146
Alexander Belopolskye239d232010-12-08 23:31:48 +0000147 openlog(ident, logopt, facility);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000148 S_log_open = 1;
149
150 Py_INCREF(Py_None);
151 return Py_None;
Guido van Rossume44e3731994-07-14 13:56:50 +0000152}
153
Barry Warsaw43a476a1997-01-09 23:51:21 +0000154
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000155static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000156syslog_syslog(PyObject * self, PyObject * args)
Guido van Rossume44e3731994-07-14 13:56:50 +0000157{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000158 PyObject *message_object;
159 const char *message;
160 int priority = LOG_INFO;
Guido van Rossume44e3731994-07-14 13:56:50 +0000161
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000162 if (!PyArg_ParseTuple(args, "iU;[priority,] message string",
163 &priority, &message_object)) {
164 PyErr_Clear();
165 if (!PyArg_ParseTuple(args, "U;[priority,] message string",
166 &message_object))
167 return NULL;
168 }
Guido van Rossumae94cf21998-05-08 21:52:55 +0000169
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000170 message = _PyUnicode_AsString(message_object);
171 if (message == NULL)
172 return NULL;
Sean Reifscheider13daf122010-04-23 09:29:52 +0000173
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000174 /* if log is not opened, open it now */
175 if (!S_log_open) {
176 PyObject *openargs;
Sean Reifscheider13daf122010-04-23 09:29:52 +0000177
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000178 /* Continue even if PyTuple_New fails, because openlog(3) is optional.
179 * So, we can still do loggin in the unlikely event things are so hosed
180 * that we can't do this tuple.
181 */
182 if ((openargs = PyTuple_New(0))) {
183 PyObject *openlog_ret = syslog_openlog(self, openargs, NULL);
184 Py_XDECREF(openlog_ret);
185 Py_DECREF(openargs);
186 }
187 }
Sean Reifscheider13daf122010-04-23 09:29:52 +0000188
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000189 Py_BEGIN_ALLOW_THREADS;
190 syslog(priority, "%s", message);
191 Py_END_ALLOW_THREADS;
192 Py_RETURN_NONE;
Guido van Rossume44e3731994-07-14 13:56:50 +0000193}
194
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000195static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000196syslog_closelog(PyObject *self, PyObject *unused)
Guido van Rossume44e3731994-07-14 13:56:50 +0000197{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000198 if (S_log_open) {
199 closelog();
200 Py_XDECREF(S_ident_o);
201 S_ident_o = NULL;
202 S_log_open = 0;
203 }
204 Py_INCREF(Py_None);
205 return Py_None;
Guido van Rossume44e3731994-07-14 13:56:50 +0000206}
207
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000208static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000209syslog_setlogmask(PyObject *self, PyObject *args)
Guido van Rossume44e3731994-07-14 13:56:50 +0000210{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000211 long maskpri, omaskpri;
Guido van Rossumc1822a41995-10-11 16:15:28 +0000212
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000213 if (!PyArg_ParseTuple(args, "l;mask for priority", &maskpri))
214 return NULL;
215 omaskpri = setlogmask(maskpri);
216 return PyLong_FromLong(omaskpri);
Guido van Rossume44e3731994-07-14 13:56:50 +0000217}
218
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000219static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000220syslog_log_mask(PyObject *self, PyObject *args)
Guido van Rossume44e3731994-07-14 13:56:50 +0000221{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000222 long mask;
223 long pri;
224 if (!PyArg_ParseTuple(args, "l:LOG_MASK", &pri))
225 return NULL;
226 mask = LOG_MASK(pri);
227 return PyLong_FromLong(mask);
Guido van Rossume44e3731994-07-14 13:56:50 +0000228}
229
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000230static PyObject *
Peter Schneider-Kamp41c36ff2000-07-10 12:29:26 +0000231syslog_log_upto(PyObject *self, PyObject *args)
Guido van Rossume44e3731994-07-14 13:56:50 +0000232{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000233 long mask;
234 long pri;
235 if (!PyArg_ParseTuple(args, "l:LOG_UPTO", &pri))
236 return NULL;
237 mask = LOG_UPTO(pri);
238 return PyLong_FromLong(mask);
Guido van Rossume44e3731994-07-14 13:56:50 +0000239}
240
241/* List of functions defined in the module */
242
Guido van Rossumf6971e21994-08-30 12:25:20 +0000243static PyMethodDef syslog_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000244 {"openlog", (PyCFunction) syslog_openlog, METH_VARARGS | METH_KEYWORDS},
245 {"closelog", syslog_closelog, METH_NOARGS},
246 {"syslog", syslog_syslog, METH_VARARGS},
247 {"setlogmask", syslog_setlogmask, METH_VARARGS},
248 {"LOG_MASK", syslog_log_mask, METH_VARARGS},
249 {"LOG_UPTO", syslog_log_upto, METH_VARARGS},
250 {NULL, NULL, 0}
Guido van Rossume44e3731994-07-14 13:56:50 +0000251};
252
Guido van Rossumae94cf21998-05-08 21:52:55 +0000253/* Initialization function for the module */
Guido van Rossumc1822a41995-10-11 16:15:28 +0000254
Martin v. Löwis1a214512008-06-11 05:26:20 +0000255
256static struct PyModuleDef syslogmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000257 PyModuleDef_HEAD_INIT,
258 "syslog",
259 NULL,
260 -1,
261 syslog_methods,
262 NULL,
263 NULL,
264 NULL,
265 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +0000266};
267
Mark Hammondfe51c6d2002-08-02 02:27:13 +0000268PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000269PyInit_syslog(void)
Guido van Rossume44e3731994-07-14 13:56:50 +0000270{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000271 PyObject *m;
Guido van Rossume44e3731994-07-14 13:56:50 +0000272
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000273 /* Create the module and add the functions */
274 m = PyModule_Create(&syslogmodule);
275 if (m == NULL)
276 return NULL;
Guido van Rossume44e3731994-07-14 13:56:50 +0000277
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000278 /* Add some symbolic constants to the module */
Guido van Rossumc1822a41995-10-11 16:15:28 +0000279
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000280 /* Priorities */
281 PyModule_AddIntConstant(m, "LOG_EMERG", LOG_EMERG);
282 PyModule_AddIntConstant(m, "LOG_ALERT", LOG_ALERT);
283 PyModule_AddIntConstant(m, "LOG_CRIT", LOG_CRIT);
284 PyModule_AddIntConstant(m, "LOG_ERR", LOG_ERR);
285 PyModule_AddIntConstant(m, "LOG_WARNING", LOG_WARNING);
286 PyModule_AddIntConstant(m, "LOG_NOTICE", LOG_NOTICE);
287 PyModule_AddIntConstant(m, "LOG_INFO", LOG_INFO);
288 PyModule_AddIntConstant(m, "LOG_DEBUG", LOG_DEBUG);
Guido van Rossumc1822a41995-10-11 16:15:28 +0000289
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000290 /* openlog() option flags */
291 PyModule_AddIntConstant(m, "LOG_PID", LOG_PID);
292 PyModule_AddIntConstant(m, "LOG_CONS", LOG_CONS);
293 PyModule_AddIntConstant(m, "LOG_NDELAY", LOG_NDELAY);
Guido van Rossumbcc20741998-08-04 22:53:56 +0000294#ifdef LOG_NOWAIT
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000295 PyModule_AddIntConstant(m, "LOG_NOWAIT", LOG_NOWAIT);
Guido van Rossumbcc20741998-08-04 22:53:56 +0000296#endif
Guido van Rossumc1822a41995-10-11 16:15:28 +0000297#ifdef LOG_PERROR
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000298 PyModule_AddIntConstant(m, "LOG_PERROR", LOG_PERROR);
Guido van Rossumc1822a41995-10-11 16:15:28 +0000299#endif
300
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000301 /* Facilities */
302 PyModule_AddIntConstant(m, "LOG_KERN", LOG_KERN);
303 PyModule_AddIntConstant(m, "LOG_USER", LOG_USER);
304 PyModule_AddIntConstant(m, "LOG_MAIL", LOG_MAIL);
305 PyModule_AddIntConstant(m, "LOG_DAEMON", LOG_DAEMON);
306 PyModule_AddIntConstant(m, "LOG_AUTH", LOG_AUTH);
307 PyModule_AddIntConstant(m, "LOG_LPR", LOG_LPR);
308 PyModule_AddIntConstant(m, "LOG_LOCAL0", LOG_LOCAL0);
309 PyModule_AddIntConstant(m, "LOG_LOCAL1", LOG_LOCAL1);
310 PyModule_AddIntConstant(m, "LOG_LOCAL2", LOG_LOCAL2);
311 PyModule_AddIntConstant(m, "LOG_LOCAL3", LOG_LOCAL3);
312 PyModule_AddIntConstant(m, "LOG_LOCAL4", LOG_LOCAL4);
313 PyModule_AddIntConstant(m, "LOG_LOCAL5", LOG_LOCAL5);
314 PyModule_AddIntConstant(m, "LOG_LOCAL6", LOG_LOCAL6);
315 PyModule_AddIntConstant(m, "LOG_LOCAL7", LOG_LOCAL7);
Guido van Rossume44e3731994-07-14 13:56:50 +0000316
Guido van Rossumae94cf21998-05-08 21:52:55 +0000317#ifndef LOG_SYSLOG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000318#define LOG_SYSLOG LOG_DAEMON
Guido van Rossumae94cf21998-05-08 21:52:55 +0000319#endif
320#ifndef LOG_NEWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000321#define LOG_NEWS LOG_MAIL
Guido van Rossumae94cf21998-05-08 21:52:55 +0000322#endif
323#ifndef LOG_UUCP
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000324#define LOG_UUCP LOG_MAIL
Guido van Rossumae94cf21998-05-08 21:52:55 +0000325#endif
326#ifndef LOG_CRON
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000327#define LOG_CRON LOG_DAEMON
Guido van Rossumae94cf21998-05-08 21:52:55 +0000328#endif
329
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000330 PyModule_AddIntConstant(m, "LOG_SYSLOG", LOG_SYSLOG);
331 PyModule_AddIntConstant(m, "LOG_CRON", LOG_CRON);
332 PyModule_AddIntConstant(m, "LOG_UUCP", LOG_UUCP);
333 PyModule_AddIntConstant(m, "LOG_NEWS", LOG_NEWS);
334 return m;
Guido van Rossume44e3731994-07-14 13:56:50 +0000335}