summaryrefslogtreecommitdiff
path: root/nslcd/log.c
blob: 0676cf6228afc2f08d93cf019b5165973a3f8dda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
/*
   log.c - logging funtions

   Copyright (C) 2002, 2003, 2008, 2010, 2011, 2012, 2013 Arthur de Jong

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
   02110-1301 USA
*/

#include "config.h"

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <syslog.h>
#include <stdarg.h>
#include <errno.h>
#include <string.h>
#include <time.h>
#include <pthread.h>
#include <strings.h>

#include "log.h"

/* set the logname */
#undef PACKAGE
#define PACKAGE "nslcd"

/* storage for logging modes */
static struct log_cfg {
  int loglevel;
  const char *scheme;
  FILE *fp; /* NULL == syslog */
  struct log_cfg *next;
} *loglist = NULL;

/* default loglevel when no logging is configured */
static int prelogging_loglevel = LOG_INFO;

#define MAX_REQUESTID_LENGTH 40

#ifdef TLS

/* the session id that is set for this thread */
static TLS char *sessionid = NULL;

/* the request identifier that is set for this thread */
static TLS char *requestid = NULL;

#else /* no TLS, use pthreads */

static pthread_once_t tls_init_once = PTHREAD_ONCE_INIT;
static pthread_key_t sessionid_key;
static pthread_key_t requestid_key;

static void tls_init_keys(void)
{
  pthread_key_create(&sessionid_key, NULL);
  pthread_key_create(&requestid_key, NULL);
}

#endif /* no TLS, use pthreads */

/* set loglevel when no logging is configured */
void log_setdefaultloglevel(int loglevel)
{
  prelogging_loglevel = loglevel;
}

/* add logging method to configuration list */
static void addlogging(int loglevel, const char *scheme, FILE *fp)
{
  struct log_cfg *tmp, *lst;
  /* create new logstruct */
  tmp = (struct log_cfg *)malloc(sizeof(struct log_cfg));
  if (tmp == NULL)
  {
    log_log(LOG_CRIT, "malloc() returned NULL");
    exit(EXIT_FAILURE);
  }
  tmp->loglevel = loglevel;
  tmp->scheme = scheme;
  tmp->fp = fp;
  tmp->next = NULL;
  /* save the struct in the list */
  if (loglist == NULL)
    loglist = tmp;
  else
  {
    for (lst = loglist; lst->next != NULL; lst = lst->next);
    lst->next = tmp;
  }
}

/* configure logging to a file */
void log_addlogging_file(int loglevel, const char *filename)
{
  FILE *fp;
  filename = strdup(filename);
  if (filename == NULL)
  {
    log_log(LOG_CRIT, "strdup() returned NULL");
    exit(EXIT_FAILURE);
  }
  fp = fopen(filename, "a");
  if (fp == NULL)
  {
    log_log(LOG_ERR, "cannot open logfile (%s) for appending: %s",
            filename, strerror(errno));
    exit(1);
  }
  addlogging(loglevel, filename, fp);
}

/* configure logging to syslog */
void log_addlogging_syslog(int loglevel)
{
  openlog(PACKAGE, LOG_PID, LOG_DAEMON);
  addlogging(loglevel, "syslog", NULL);
}

/* configure a null logging mode (no logging) */
void log_addlogging_none()
{
  /* this is a hack, but it's so easy */
  addlogging(LOG_EMERG, "none", NULL);
}

/* start the logging with the configured logging methods
   if no method is configured yet, logging is done to syslog */
void log_startlogging(void)
{
  if (loglist == NULL)
    log_addlogging_syslog(LOG_INFO);
  prelogging_loglevel = -1;
}

/* indicate that we should clear any session identifiers set by
   log_newsession */
void log_clearsession(void)
{
#ifndef TLS
  char *sessionid, *requestid;
  pthread_once(&tls_init_once, tls_init_keys);
  sessionid = pthread_getspecific(sessionid_key);
  requestid = pthread_getspecific(requestid_key);
#endif /* no TLS */
  /* set the session id to empty */
  if (sessionid != NULL)
    sessionid[0] = '\0';
  /* set the request id to empty */
  if (requestid != NULL)
    requestid[0] = '\0';
}

/* indicate that a session id should be included in the output
   and set it to a new value */
void log_newsession(void)
{
#ifndef TLS
  char *sessionid, *requestid;
  pthread_once(&tls_init_once, tls_init_keys);
  sessionid = pthread_getspecific(sessionid_key);
  requestid = pthread_getspecific(requestid_key);
#endif /* no TLS */
  /* ensure that sessionid can hold a string */
  if (sessionid == NULL)
  {
    sessionid = (char *)malloc(7);
    if (sessionid == NULL)
    {
      fprintf(stderr, "malloc() failed: %s", strerror(errno));
      return; /* silently fail */
    }
#ifndef TLS
    pthread_setspecific(sessionid_key, sessionid);
#endif /* no TLS */
  }
  sprintf(sessionid, "%06x", (int)(rand() & 0xffffff));
  /* set the request id to empty */
  if (requestid != NULL)
    requestid[0] = '\0';
}

/* indicate that a request identifier should be included in the output
   from this point on, until log_newsession() is called */
void log_setrequest(const char *format, ...)
{
  va_list ap;
#ifndef TLS
  char *requestid;
  pthread_once(&tls_init_once, tls_init_keys);
  requestid = pthread_getspecific(requestid_key);
#endif /* no TLS */
  /* ensure that requestid can hold a string */
  if (requestid == NULL)
  {
    requestid = (char *)malloc(MAX_REQUESTID_LENGTH);
    if (requestid == NULL)
    {
      fprintf(stderr, "malloc() failed: %s", strerror(errno));
      return; /* silently fail */
    }
#ifndef TLS
    pthread_setspecific(requestid_key, requestid);
#endif /* no TLS */
  }
  /* make the message */
  va_start(ap, format);
  vsnprintf(requestid, MAX_REQUESTID_LENGTH, format, ap);
  requestid[MAX_REQUESTID_LENGTH - 1] = '\0';
  va_end(ap);
}

/* log the given message using the configured logging method */
void log_log(int pri, const char *format, ...)
{
  int res;
  struct log_cfg *lst;
  char buffer[200];
  va_list ap;
#ifndef TLS
  char *sessionid, *requestid;
  pthread_once(&tls_init_once, tls_init_keys);
  sessionid = pthread_getspecific(sessionid_key);
  requestid = pthread_getspecific(requestid_key);
#endif /* no TLS */
  /* make the message */
  va_start(ap, format);
  res = vsnprintf(buffer, sizeof(buffer), format, ap);
  if ((res < 0) || (res >= (int)sizeof(buffer)))
  {
    /* truncate with "..." */
    buffer[sizeof(buffer) - 2] = '.';
    buffer[sizeof(buffer) - 3] = '.';
    buffer[sizeof(buffer) - 4] = '.';
  }
  buffer[sizeof(buffer) - 1] = '\0';
  va_end(ap);
  /* do the logging */
  if (prelogging_loglevel >= 0)
  {
    /* if logging is not yet defined, log to stderr */
    if (pri <= prelogging_loglevel)
    {
      if ((requestid != NULL) && (requestid[0] != '\0'))
        fprintf(stderr, "%s: [%s] <%s> %s%s\n", PACKAGE, sessionid, requestid,
                pri == LOG_DEBUG ? "DEBUG: " : "", buffer);
      else if ((sessionid != NULL) && (sessionid[0] != '\0'))
        fprintf(stderr, "%s: [%s] %s%s\n", PACKAGE, sessionid,
                pri == LOG_DEBUG ? "DEBUG: " : "", buffer);
      else
        fprintf(stderr, "%s: %s%s\n", PACKAGE,
                pri == LOG_DEBUG ? "DEBUG: " : "", buffer);
    }
  }
  else
  {
    for (lst = loglist; lst != NULL; lst = lst->next)
    {
      if (pri <= lst->loglevel)
      {
        if (lst->fp == NULL)
        {
          if ((requestid != NULL) && (requestid[0] != '\0'))
            syslog(pri, "[%s] <%s> %s%s", sessionid, requestid,
                   pri == LOG_DEBUG ? "DEBUG: " : "", buffer);
          else if ((sessionid != NULL) && (sessionid[0] != '\0'))
            syslog(pri, "[%s] %s%s", sessionid,
                   pri == LOG_DEBUG ? "DEBUG: " : "", buffer);
          else
            syslog(pri, "%s%s",
                   pri == LOG_DEBUG ? "DEBUG: " : "", buffer);
        }
        else
        {
          if ((requestid != NULL) && (requestid[0] != '\0'))
            fprintf(lst->fp, "%s: [%s] <%s> %s%s\n", PACKAGE, sessionid, requestid,
                    pri == LOG_DEBUG ? "DEBUG: " : "", buffer);
          else if ((sessionid != NULL) && (sessionid[0] != '\0'))
            fprintf(lst->fp, "%s: [%s] %s%s\n", PACKAGE, sessionid,
                    pri == LOG_DEBUG ? "DEBUG: " : "", buffer);
          else
            fprintf(lst->fp, "%s: %s%s\n", PACKAGE,
                    pri == LOG_DEBUG ? "DEBUG: " : "", buffer);
          fflush(lst->fp);
        }
      }
    }
  }
}

static const char *loglevel2str(int loglevel)
{
  switch (loglevel)
  {
    case LOG_CRIT:    return "crit";
    case LOG_ERR:     return "error";
    case LOG_WARNING: return "warning";
    case LOG_NOTICE:  return "notice";
    case LOG_INFO:    return "info";
    case LOG_DEBUG:   return "debug";
    default:          return "???";
  }
}

/* log the logging configuration on DEBUG loglevel */
void log_log_config(void)
{
  struct log_cfg *lst;
  for (lst = loglist; lst != NULL; lst = lst->next)
  {
    if (lst->loglevel == LOG_EMERG)
      log_log(LOG_DEBUG, "CFG: log %s", lst->scheme);
    else
      log_log(LOG_DEBUG, "CFG: log %s %s", lst->scheme,
              loglevel2str(lst->loglevel));
  }
}