#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <sys/uio.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <ctype.h>
#include <fcntl.h>
#include <errno.h>
#include <netdb.h>
#include <pthread.h>
#include <notify.h>
#include "daemon.h"
#define MY_ID "bsd_out"
#define _PATH_WALL "/usr/bin/wall"
#define ASL_KEY_FACILITY "Facility"
#define FACILITY_KERNEL "kern"
#define _PATH_CONSOLE "/dev/console"
#define DST_TYPE_NONE 0
#define DST_TYPE_FILE 1
#define DST_TYPE_CONS 2
#define DST_TYPE_SOCK 3
#define DST_TYPE_WALL 4
#define DST_TYPE_NOTE 5
#define CLOSE_ON_IDLE_SEC 300
static dispatch_queue_t bsd_out_queue;
static dispatch_source_t bsd_idle_timer;
struct config_rule
{
uint32_t count;
char *dst;
int fd;
int type;
struct sockaddr *addr;
char **facility;
uint32_t *fac_prefix_len;
int *pri;
uint32_t last_hash;
uint32_t last_count;
time_t last_time;
dispatch_source_t dup_timer;
char *last_msg;
TAILQ_ENTRY(config_rule) entries;
};
static TAILQ_HEAD(cr, config_rule) bsd_out_rule;
extern uint32_t asl_core_string_hash(const char *s, uint32_t inlen);
static int
_level_for_name(const char *name)
{
if (name == NULL) return -1;
if (!strcasecmp(name, "emerg")) return ASL_LEVEL_EMERG;
if (!strcasecmp(name, "panic")) return ASL_LEVEL_EMERG;
if (!strcasecmp(name, "alert")) return ASL_LEVEL_ALERT;
if (!strcasecmp(name, "crit")) return ASL_LEVEL_CRIT;
if (!strcasecmp(name, "err")) return ASL_LEVEL_ERR;
if (!strcasecmp(name, "error")) return ASL_LEVEL_ERR;
if (!strcasecmp(name, "warn")) return ASL_LEVEL_WARNING;
if (!strcasecmp(name, "warning")) return ASL_LEVEL_WARNING;
if (!strcasecmp(name, "notice")) return ASL_LEVEL_NOTICE;
if (!strcasecmp(name, "info")) return ASL_LEVEL_INFO;
if (!strcasecmp(name, "debug")) return ASL_LEVEL_DEBUG;
if (!strcmp(name, "*")) return ASL_LEVEL_DEBUG;
if (!strcasecmp(name, "none")) return -2;
return -1;
}
static int
_syslog_dst_open(struct config_rule *r)
{
int i;
char *node, *serv;
struct addrinfo hints, *gai, *ai;
if (r == NULL) return -1;
if (r->fd != -1) return 0;
if (r->dst[0] == '/')
{
r->fd = open(r->dst, O_WRONLY | O_APPEND | O_CREAT | O_NOCTTY, 0644);
if (r->fd < 0)
{
asldebug("%s: open failed for file: %s (%s)\n", MY_ID, r->dst, strerror(errno));
return -1;
}
r->type = DST_TYPE_FILE;
if (!strcmp(r->dst, _PATH_CONSOLE)) r->type = DST_TYPE_CONS;
return 0;
}
if (r->dst[0] == '!')
{
r->type = DST_TYPE_NOTE;
r->fd = -1;
return 0;
}
if (r->dst[0] == '@')
{
node = strdup(r->dst + 1);
if (node == NULL) return -1;
serv = NULL;
serv = strrchr(node, ':');
if (serv != NULL) *serv++ = '\0';
else serv = "syslog";
memset(&hints, 0, sizeof(hints));
hints.ai_family = PF_UNSPEC;
hints.ai_socktype = SOCK_DGRAM;
i = getaddrinfo(node, serv, &hints, &gai);
free(node);
if (i != 0)
{
asldebug("%s: getaddrinfo failed for node %s service %s: (%s)\n", MY_ID, node, serv, gai_strerror(i));
return -1;
}
for (ai = gai; ai != NULL; ai = ai->ai_next)
{
r->fd = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
if (r->fd < 0) continue;
r->addr = (struct sockaddr *)malloc(ai->ai_addrlen);
if (r->addr == NULL) return -1;
memcpy(r->addr, ai->ai_addr, ai->ai_addrlen);
break;
}
freeaddrinfo(gai);
if (r->fd < 0)
{
asldebug("%s: connection failed for %s\n", MY_ID, (r->dst) + 1);
free(r->addr);
r->addr = NULL;
return -1;
}
if (fcntl(r->fd, F_SETFL, O_NONBLOCK) < 0)
{
close(r->fd);
r->fd = -1;
asldebug("%s: couldn't set O_NONBLOCK for fd %d: %s\n", MY_ID, r->fd, strerror(errno));
free(r->addr);
r->addr = NULL;
return -1;
}
r->type = DST_TYPE_SOCK;
return 0;
}
if (strcmp(r->dst, "*") == 0)
{
r->type = DST_TYPE_WALL;
r->fd = -1;
return 0;
}
asldebug("%s: unsupported / unknown output name: %s\n", MY_ID, r->dst);
return -1;
}
static void
_syslog_dst_close(struct config_rule *r)
{
if (r == NULL) return;
if (r->addr != NULL)
{
free(r->addr);
r->addr = NULL;
}
switch (r->type)
{
case DST_TYPE_FILE:
case DST_TYPE_CONS:
{
if (r->fd >= 0) close(r->fd);
r->fd = -1;
break;
}
case DST_TYPE_SOCK:
{
if (r->fd >= 0) close(r->fd);
r->fd = -1;
break;
}
case DST_TYPE_NONE:
case DST_TYPE_WALL:
case DST_TYPE_NOTE:
default:
{
return;
}
}
}
static char *
_clean_facility_name(char *s)
{
uint32_t len;
char *p, *out;
if (s == NULL) return NULL;
len = strlen(s);
if (len == 0) return NULL;
p = s;
if ((*s == '\'') || (*s == '"'))
{
len--;
p++;
if (p[len - 1] == *s) len --;
}
out = calloc(1, len + 1);
if (out == NULL) return NULL;
memcpy(out, p, len);
return out;
}
static int
_parse_line(char *s)
{
char **semi, **comma, *star;
int i, j, n, lasts, lastc, pri;
struct config_rule *out;
if (s == NULL) return -1;
while ((*s == ' ') || (*s == '\t')) s++;
if (*s == '#') return -1;
semi = explode(s, "; \t");
if (semi == NULL) return -1;
out = (struct config_rule *)calloc(1, sizeof(struct config_rule));
if (out == NULL) return -1;
out->fd = -1;
n = 0;
lasts = -1;
for (i = 0; semi[i] != NULL; i++)
{
if (semi[i][0] == '\0') continue;
n++;
lasts = i;
}
out->dst = strdup(semi[lasts]);
if (out->dst == NULL) return -1;
for (i = 0; i < lasts; i++)
{
if (semi[i][0] == '\0') continue;
comma = explode(semi[i], ",.");
lastc = -1;
for (j = 0; comma[j] != NULL; j++)
{
if (comma[j][0] == '\0') continue;
lastc = j;
}
for (j = 0; j < lastc; j++)
{
if (comma[j][0] == '\0') continue;
pri = _level_for_name(comma[lastc]);
if (pri == -1) continue;
if (out->count == 0)
{
out->facility = (char **)calloc(1, sizeof(char *));
out->fac_prefix_len = (uint32_t *)calloc(1, sizeof(uint32_t));
out->pri = (int *)calloc(1, sizeof(int));
}
else
{
out->facility = (char **)reallocf(out->facility, (out->count + 1) * sizeof(char *));
out->fac_prefix_len = (uint32_t *)reallocf(out->fac_prefix_len, (out->count + 1) * sizeof(uint32_t));
out->pri = (int *)reallocf(out->pri, (out->count + 1) * sizeof(int));
}
if (out->facility == NULL) return -1;
if (out->fac_prefix_len == NULL) return -1;
if (out->pri == NULL) return -1;
out->facility[out->count] = _clean_facility_name(comma[j]);
if (out->facility[out->count] == NULL) return -1;
out->fac_prefix_len[out->count] = 0;
star = strchr(out->facility[out->count], '*');
if (star != NULL) out->fac_prefix_len[out->count] = (uint32_t)(star - out->facility[out->count]);
out->pri[out->count] = pri;
out->count++;
}
freeList(comma);
}
freeList(semi);
TAILQ_INSERT_TAIL(&bsd_out_rule, out, entries);
return 0;
}
static int
_bsd_send_repeat_msg(struct config_rule *r)
{
char vt[32], *msg;
time_t tick;
int len, status;
if (r == NULL) return -1;
if (r->type != DST_TYPE_FILE) return 0;
if (r->last_count == 0) return 0;
dispatch_suspend(r->dup_timer);
tick = time(NULL);
memset(vt, 0, sizeof(vt));
ctime_r(&tick, vt);
vt[19] = '\0';
msg = NULL;
asprintf(&msg, "%s: --- last message repeated %u time%s ---\n", vt + 4, r->last_count, (r->last_count == 1) ? "" : "s");
r->last_count = 0;
if (msg == NULL) return -1;
len = strlen(msg);
status = write(r->fd, msg, len);
if ((status < 0) || (status < len))
{
asldebug("%s: error writing repeat message (%s): %s\n", MY_ID, r->dst, strerror(errno));
close(r->fd);
r->fd = open(r->dst, O_WRONLY | O_APPEND | O_CREAT | O_NOCTTY, 0644);
if (r->fd < 0)
{
asldebug("%s: re-open failed for file: %s (%s)\n", MY_ID, r->dst, strerror(errno));
free(msg);
return -1;
}
status = write(r->fd, msg, len);
if ((status < 0) || (status < len))
{
asldebug("%s: error re-writing message (%s): %s\n", MY_ID, r->dst, strerror(errno));
free(msg);
return -1;
}
}
free(msg);
return 0;
}
static int
_bsd_send(aslmsg msg, struct config_rule *r, char **out, char **fwd, time_t now)
{
char *sf, *outmsg;
const char *vlevel, *vfacility;
size_t outlen;
int pf, fc, status, is_dup, do_write;
uint32_t msg_hash, n;
if (out == NULL) return -1;
if (fwd == NULL) return -1;
if (r == NULL) return -1;
_syslog_dst_open(r);
if (r->type == DST_TYPE_NOTE)
{
notify_post(r->dst+1);
return 0;
}
msg_hash = 0;
outmsg = NULL;
if (*out == NULL)
{
*out = asl_format_message((asl_msg_t *)msg, ASL_MSG_FMT_BSD, ASL_TIME_FMT_LCL, ASL_ENCODE_SAFE, &n);
if (*out == NULL) return -1;
}
is_dup = 0;
if ((global.bsd_max_dup_time > 0) && (*out != NULL) && (r->last_msg != NULL))
{
msg_hash = asl_core_string_hash(*out + 16, strlen(*out + 16));
if ((r->last_hash == msg_hash) && (!strcmp(r->last_msg, *out + 16)))
{
if ((now - r->last_time) < global.bsd_max_dup_time) is_dup = 1;
}
}
if ((*fwd == NULL) && (r->type == DST_TYPE_SOCK))
{
pf = 7;
vlevel = asl_get(msg, ASL_KEY_LEVEL);
if (vlevel != NULL) pf = atoi(vlevel);
fc = asl_syslog_faciliy_name_to_num(asl_get(msg, ASL_KEY_FACILITY));
if (fc > 0) pf |= fc;
sf = NULL;
asprintf(&sf, "<%d>%s", pf, *out);
if (sf == NULL) return -1;
*fwd = sf;
}
if (r->type == DST_TYPE_SOCK) outlen = strlen(*fwd);
else outlen = strlen(*out);
if ((r->type == DST_TYPE_FILE) || (r->type == DST_TYPE_CONS))
{
if ((r->type == DST_TYPE_FILE) && (is_dup == 0) && (r->last_count > 0)) _bsd_send_repeat_msg(r);
do_write = 1;
vfacility = asl_get(msg, ASL_KEY_FACILITY);
if ((vfacility != NULL) && (!strcmp(vfacility, FACILITY_KERNEL)) && (r->type == DST_TYPE_CONS)) do_write = 0;
if ((do_write == 1) && (r->type == DST_TYPE_FILE) && (is_dup == 1))
{
do_write = 0;
if (r->dup_timer == NULL)
{
r->dup_timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, bsd_out_queue);
dispatch_source_set_event_handler(r->dup_timer, ^{ _bsd_send_repeat_msg(r); });
}
if (r->last_count == 0)
{
dispatch_source_set_timer(r->dup_timer, dispatch_time(DISPATCH_TIME_NOW, NSEC_PER_SEC * global.bsd_max_dup_time), DISPATCH_TIME_FOREVER, 0);
dispatch_resume(r->dup_timer);
}
}
if (do_write == 0) status = outlen;
else status = write(r->fd, *out, outlen);
if ((status < 0) || (status < outlen))
{
asldebug("%s: error writing message (%s): %s\n", MY_ID, r->dst, strerror(errno));
close(r->fd);
r->fd = open(r->dst, O_WRONLY | O_APPEND | O_CREAT | O_NOCTTY, 0644);
if (r->fd < 0)
{
asldebug("%s: re-open failed for file: %s (%s)\n", MY_ID, r->dst, strerror(errno));
return -1;
}
status = write(r->fd, *out, outlen);
if ((status < 0) || (status < outlen))
{
asldebug("%s: error re-writing message (%s): %s\n", MY_ID, r->dst, strerror(errno));
}
}
}
else if ((r->type == DST_TYPE_SOCK) && (r->addr != NULL))
{
status = sendto(r->fd, *fwd, outlen, 0, r->addr, r->addr->sa_len);
if (status < 0) asldebug("%s: error sending message (%s): %s\n", MY_ID, r->dst, strerror(errno));
}
else if (r->type == DST_TYPE_WALL)
{
#ifndef CONFIG_IPHONE
FILE *pw = popen(_PATH_WALL, "w");
if (pw < 0)
{
asldebug("%s: error sending wall message: %s\n", MY_ID, strerror(errno));
return -1;
}
fprintf(pw, "%s", *out);
pclose(pw);
#endif
}
if (is_dup == 1)
{
r->last_count++;
}
else
{
free(r->last_msg);
r->last_msg = NULL;
if (*out != NULL) r->last_msg = strdup(*out + 16);
r->last_hash = msg_hash;
r->last_count = 0;
r->last_time = now;
}
return 0;
}
static int
_bsd_rule_match(aslmsg msg, struct config_rule *r)
{
uint32_t i, test, f;
int32_t pri;
const char *val;
if (msg == NULL) return 0;
if (r == NULL) return 0;
if (r->count == 0) return 0;
test = 0;
for (i = 0; i < r->count; i++)
{
if (r->pri[i] == -1) continue;
if ((test == 1) && (r->pri[i] >= 0)) continue;
if ((test == 0) && (r->pri[i] == -2)) continue;
f = 0;
val = asl_get(msg, ASL_KEY_FACILITY);
if (strcmp(r->facility[i], "*") == 0)
{
f = 1;
}
else if ((r->fac_prefix_len[i] > 0) && (strncasecmp(r->facility[i], val, r->fac_prefix_len[i]) == 0))
{
f = 1;
}
else if ((val != NULL) && (strcasecmp(r->facility[i], val) == 0))
{
f = 1;
}
if (f == 0) continue;
if (r->pri[i] == -2)
{
test = 0;
continue;
}
val = asl_get(msg, ASL_KEY_LEVEL);
if (val == NULL) continue;
pri = atoi(val);
if (pri < 0) continue;
if (pri <= r->pri[i]) test = 1;
}
return test;
}
static int
_bsd_match_and_send(aslmsg msg)
{
struct config_rule *r;
char *out, *fwd;
time_t now;
if (msg == NULL) return -1;
out = NULL;
fwd = NULL;
now = time(NULL);
for (r = bsd_out_rule.tqh_first; r != NULL; r = r->entries.tqe_next)
{
if (_bsd_rule_match(msg, r) == 1) _bsd_send(msg, r, &out, &fwd, now);
}
free(out);
free(fwd);
return 0;
}
void
bsd_out_message(aslmsg msg)
{
if (msg == NULL) return;
asl_msg_retain((asl_msg_t *)msg);
dispatch_async(bsd_out_queue, ^{
_bsd_match_and_send(msg);
asl_msg_release((asl_msg_t *)msg);
});
}
static void
_bsd_close_idle_files()
{
time_t now;
struct config_rule *r;
uint64_t delta;
now = time(NULL);
for (r = bsd_out_rule.tqh_first; r != NULL; r = r->entries.tqe_next)
{
if (r->type != DST_TYPE_FILE) continue;
if (r->last_count > 0) continue;
delta = now - r->last_time;
if (delta > CLOSE_ON_IDLE_SEC) _syslog_dst_close(r);
}
}
static int
_parse_config_file(const char *confname)
{
FILE *cf;
char *line;
cf = fopen(confname, "r");
if (cf == NULL) return 1;
while (NULL != (line = get_line_from_file(cf)))
{
_parse_line(line);
free(line);
}
fclose(cf);
return 0;
}
int
bsd_out_init(void)
{
static dispatch_once_t once;
asldebug("%s: init\n", MY_ID);
TAILQ_INIT(&bsd_out_rule);
_parse_config_file(_PATH_SYSLOG_CONF);
dispatch_once(&once, ^{
bsd_out_queue = dispatch_queue_create("BSD Out Queue", NULL);
bsd_idle_timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, bsd_out_queue);
dispatch_source_set_event_handler(bsd_idle_timer, ^{ _bsd_close_idle_files(); });
dispatch_source_set_timer(bsd_idle_timer, dispatch_time(DISPATCH_TIME_NOW, NSEC_PER_SEC * CLOSE_ON_IDLE_SEC), NSEC_PER_SEC * CLOSE_ON_IDLE_SEC, 0);
dispatch_resume(bsd_idle_timer);
});
return 0;
}
static int
_bsd_out_close_internal(void)
{
struct config_rule *r, *n;
int i;
n = NULL;
for (r = bsd_out_rule.tqh_first; r != NULL; r = n)
{
n = r->entries.tqe_next;
if (r->dup_timer != NULL)
{
if (r->last_count > 0) _bsd_send_repeat_msg(r);
dispatch_source_cancel(r->dup_timer);
dispatch_resume(r->dup_timer);
dispatch_release(r->dup_timer);
}
free(r->dst);
free(r->addr);
free(r->last_msg);
free(r->fac_prefix_len);
free(r->pri);
if (r->fd >= 0) close(r->fd);
if (r->facility != NULL)
{
for (i = 0; i < r->count; i++)
free(r->facility[i]);
free(r->facility);
}
TAILQ_REMOVE(&bsd_out_rule, r, entries);
free(r);
}
return 0;
}
int
bsd_out_close(void)
{
dispatch_async(bsd_out_queue, ^{
_bsd_out_close_internal();
});
return 0;
}
int
bsd_out_reset(void)
{
dispatch_async(bsd_out_queue, ^{
_bsd_out_close_internal();
bsd_out_init();
});
return 0;
}