-
Notifications
You must be signed in to change notification settings - Fork 3
/
log.c
122 lines (103 loc) · 2.78 KB
/
log.c
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
/*
* satip: logging
*
* Copyright (C) 2014 mc.fishdish@gmail.com
* [copy of vtuner by Honza Petrous]
* Copyright (C) 2010-11 Honza Petrous <jpetrous@smartimp.cz>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation version 2.
*
* This program is distributed WITHOUT ANY WARRANTY of any
* kind, whether express or implied; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <stdio.h>
#include <string.h>
#include <syslog.h>
#include <stdarg.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
#define MAX_MSGSIZE 1024
#include "log.h"
__thread char msg[MAX_MSGSIZE];
static struct sockaddr_in udplog_saddr;
static int udplog_fd = -1;
static int udplog_enabled = 0;
void write_message(const unsigned int mtype, const int level, const char* fmt, ... )
{
if( !(mtype & dbg_mask ) )
return;
if( level <= dbg_level )
{
char tn[MAX_MSGSIZE];
va_list ap;
va_start(ap, fmt);
vsnprintf(tn, sizeof(tn), fmt, ap);
va_end(ap);
strncat(msg, tn, sizeof(msg));
if(use_syslog)
{
int priority;
switch(level)
{
case 1:
priority=LOG_ERR;
break;
case 2:
priority=LOG_WARNING;
break;
case 3:
priority=LOG_INFO;
break;
default:
priority=LOG_DEBUG;
break;
}
syslog(priority, "%s", msg);
}
else
{
fprintf(stderr, "%s", msg);
}
if(udplog_fd > -1 && udplog_enabled)
sendto(udplog_fd, msg, strlen(msg), 0, (const struct sockaddr *)&udplog_saddr, sizeof(udplog_saddr));
}
strncpy(msg, "", sizeof(msg));
}
void init_message(const char* fmt, ... )
{
va_list ap;
va_start(ap, fmt);
vsnprintf(msg, sizeof(msg), fmt, ap);
va_end(ap);
}
void append_message(const char* fmt, ... )
{
char tn[MAX_MSGSIZE];
va_list ap;
va_start(ap, fmt);
vsnprintf(tn, sizeof(tn), fmt, ap);
va_end(ap);
strncat(msg, tn, sizeof(msg));
}
int open_udplog(char *ipaddr, int portnum)
{
if(udplog_fd != -1)
return 0;
udplog_fd = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
memset(&udplog_saddr, 0, sizeof(udplog_saddr));
udplog_saddr.sin_family = AF_INET;
inet_aton(ipaddr, &udplog_saddr.sin_addr);
udplog_saddr.sin_port = htons(portnum);
return 0;
}
void udplog_enable(int ena)
{
udplog_enabled = ena;
}