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
|
/* Error + trace + debug logging routines for SB2.
*
* Copyright (C) 2007 Lauri T. Aarnio
*
* Licensed under LGPL version 2.1, see top level LICENSE file for details.
*/
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/time.h>
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <sb2.h>
#include <config.h>
#include <config_hardcoded.h>
#include "exported.h"
/* ===================== Internal state variables =====================
*
* N.B. no mutex protecting concurrent writing to these variables.
* currently a mutex is not needed, because all of these are
* written only at startup and values come from environment variables...
*/
static struct sb_log_state_s {
const char *sbl_logfile;
const char *sbl_binary_name;
int sbl_print_file_and_line;
} sb_log_state = {
.sbl_logfile = NULL,
.sbl_binary_name = "UNKNOWN",
.sbl_print_file_and_line = 0,
};
/* ===================== public variables ===================== */
/* loglevel needs to be public, it is used from the logging macros */
int sb_loglevel__ = SB_LOGLEVEL_uninitialized;
/* ===================== private functions ===================== */
/* create a timestamp in format "YYYY-MM-DD HH:MM:SS.sss", where "sss"
* is the decimal part of current second (milliseconds).
*/
static void make_log_timestamp(char *buf, size_t bufsize)
{
struct timeval now;
struct tm tm;
if (gettimeofday(&now, (struct timezone *)NULL) < 0) {
*buf = '\0';
return;
}
localtime_r(&now.tv_sec, &tm);
snprintf(buf, bufsize, "%4d-%02d-%02d %02d:%02d:%02d.%03d",
tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday,
tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(now.tv_usec/1000));
}
#define LOG_TIMESTAMP_BUFSIZE 24
/* Write a message block to a logfile.
*
* Note that a safer but slower design was selected intentionally:
* a routine which always opens a file, writes the message and then closes
* the file is really stupid if only performance is considered. Usually
* anyone would open the log file only once and keep it open, but here
* a different strategy was selected because this library should be transparent
* to the running program and having an extra open fd hanging around might
* introduce really peculiar problems with some programs.
*/
static void write_to_logfile(const char *msg, int msglen)
{
int logfd;
if (sb_log_state.sbl_logfile) {
if ((logfd = open_nomap_nolog(sb_log_state.sbl_logfile,
O_APPEND | O_RDWR | O_CREAT,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP
| S_IROTH | S_IWOTH)) > 0) {
write(logfd, msg, msglen);
close(logfd);
}
}
}
/* ===================== public functions ===================== */
void sblog_init(void)
{
if (sb_loglevel__ == SB_LOGLEVEL_uninitialized) {
const char *level_str;
const char *bin;
bin = getenv("__SB2_BINARYNAME");
if (bin) sb_log_state.sbl_binary_name = bin;
sb_log_state.sbl_logfile = getenv("SBOX_MAPPING_LOGFILE");
level_str = getenv("SBOX_MAPPING_LOGLEVEL");
if (sb_log_state.sbl_logfile) {
if (level_str) {
/* Both logfile and loglevel have been set. */
if (!strcmp(level_str,"error")) {
sb_loglevel__ = SB_LOGLEVEL_ERROR;
} else if (!strcmp(level_str,"warning")) {
sb_loglevel__ = SB_LOGLEVEL_WARNING;
} else if (!strcmp(level_str,"notice")) {
sb_loglevel__ = SB_LOGLEVEL_NOTICE;
} else if (!strcmp(level_str,"info")) {
sb_loglevel__ = SB_LOGLEVEL_INFO;
} else if (!strcmp(level_str,"debug")) {
sb_loglevel__ = SB_LOGLEVEL_DEBUG;
sb_log_state.sbl_print_file_and_line = 1;
} else if (!strcmp(level_str,"noise")) {
sb_loglevel__ = SB_LOGLEVEL_NOISE;
sb_log_state.sbl_print_file_and_line = 1;
} else {
sb_loglevel__ = SB_LOGLEVEL_INFO;
}
} else {
/* logfile set, no level specified: */
sb_loglevel__ = SB_LOGLEVEL_INFO;
}
} else {
/* no logfile, don't log anything. */
sb_loglevel__ = SB_LOGLEVEL_NONE;
}
/* initialized, write a mark to logfile. */
SB_LOG(SB_LOGLEVEL_INFO, "---------- Starting ----------");
}
}
/* a vprintf-like routine for logging. This will
* - prefix the line with current timestamp, log level of the message, and PID
* - add a newline, if the message does not already end to a newline.
*/
void sblog_vprintf_line_to_logfile(
const char *file,
int line,
int level,
const char *format,
va_list ap)
{
char tstamp[LOG_TIMESTAMP_BUFSIZE];
char *logmsg = NULL;
char *finalmsg = NULL;
int msglen;
char *forbidden_chrp;
char *optional_src_location;
char *levelname = NULL;
if (sb_loglevel__ == SB_LOGLEVEL_uninitialized) sblog_init();
/* first, the timestamp: */
make_log_timestamp(tstamp, sizeof(tstamp));
/* next, print the log message to a buffer: */
vasprintf(&logmsg, format, ap);
/* post-format the log message.
*
* First, clean all newlines: some people like to use \n chars in
* messages, but that is forbidden (attempt to manually reformat
* log messages *will* break all post-processing tools).
* - remove trailing newline(s)
* - replace embedded newlines by $
*
* Second, replace all tabs by spaces because of similar reasons
* as above. We'll use tabs to separate the pre-defined fields below.
*/
msglen = strlen(logmsg);
while ((msglen > 0) && (logmsg[msglen-1] == '\n')) {
logmsg[msglen--] = '\0';
}
while ((forbidden_chrp = strchr(logmsg,'\n')) != NULL) {
*forbidden_chrp = '$'; /* newlines to $ */
}
while ((forbidden_chrp = strchr(logmsg,'\t')) != NULL) {
*forbidden_chrp = ' '; /* tabs to spaces */
}
/* combine the timestamp and log message to another buffer.
* here we use tabs to separate fields. Note that the location,
* if present, should always be the last field (so that same
* post-processing tools can be used in both cases) */
if (sb_log_state.sbl_print_file_and_line) {
asprintf(&optional_src_location, "\t[%s:%d]", file, line);
} else {
optional_src_location = strdup("");
}
switch(level) {
case SB_LOGLEVEL_ERROR: levelname = "ERROR"; break;
case SB_LOGLEVEL_WARNING: levelname = "WARNING"; break;
case SB_LOGLEVEL_NOTICE: levelname = "NOTICE"; break;
/* default is to pass level info as numbers */
}
if(levelname) {
asprintf(&finalmsg, "%s (%s)\t%s[%d]\t%s%s\n",
tstamp, levelname, sb_log_state.sbl_binary_name,
getpid(), logmsg, optional_src_location);
} else {
asprintf(&finalmsg, "%s (%d)\t%s[%d]\t%s%s\n",
tstamp, level, sb_log_state.sbl_binary_name,
getpid(), logmsg, optional_src_location);
}
write_to_logfile(finalmsg, strlen(finalmsg));
free(finalmsg);
free(logmsg);
free(optional_src_location);
}
void sblog_printf_line_to_logfile(
const char *file,
int line,
int level,
const char *format,
...)
{
va_list ap;
if (sb_loglevel__ == SB_LOGLEVEL_uninitialized) sblog_init();
va_start(ap, format);
sblog_vprintf_line_to_logfile(file, line, level, format, ap);
va_end(ap);
}
|