-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvtuner-utils.c
87 lines (69 loc) · 1.89 KB
/
vtuner-utils.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
#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 "vtuner-utils.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;
}