summaryrefslogtreecommitdiff
path: root/main/syslog.c
blob: dc50cfeb195bf84ede3bcf5ad79c93eb018110a3 (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
/*
 * Asterisk -- An open source telephony toolkit.
 *
 * Copyright (C) 2009, malleable, LLC.
 *
 * Sean Bright <sean@malleable.com>
 *
 * See http://www.asterisk.org for more information about
 * the Asterisk project. Please do not directly contact
 * any of the maintainers of this project for assistance;
 * the project provides a web site, mailing lists and IRC
 * channels for your use.
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License Version 2. See the LICENSE file
 * at the top of the source tree.
 */

/*! \file
 *
 * \brief Asterisk Syslog Utility Functions
 * \author Sean Bright <sean@malleable.com>
 */

#include "asterisk.h"
#include "asterisk/utils.h"
#include "asterisk/syslog.h"

ASTERISK_FILE_VERSION(__FILE__, "$Revision$")

#include <syslog.h>

int ast_syslog_facility(const char *facility)
{
	if (!strcasecmp(facility, "KERN")) {
		return LOG_KERN;
	} else if (!strcasecmp(facility, "USER")) {
		return LOG_USER;
	} else if (!strcasecmp(facility, "MAIL")) {
		return LOG_MAIL;
	} else if (!strcasecmp(facility, "DAEMON")) {
		return LOG_DAEMON;
	} else if (!strcasecmp(facility, "AUTH")) {
		return LOG_AUTH;
	} else if (!strcasecmp(facility, "AUTHPRIV")) {
		return LOG_AUTHPRIV;
	} else if (!strcasecmp(facility, "SYSLOG")) {
		return LOG_SYSLOG;
	} else if (!strcasecmp(facility, "SECURITY")) {
		return LOG_AUTH;
	} else if (!strcasecmp(facility, "FTP")) {
		return LOG_FTP;
	} else if (!strcasecmp(facility, "LPR")) {
		return LOG_LPR;
	} else if (!strcasecmp(facility, "NEWS")) {
		return LOG_NEWS;
	} else if (!strcasecmp(facility, "UUCP")) {
		return LOG_UUCP;
	} else if (!strcasecmp(facility, "CRON")) {
		return LOG_CRON;
	} else if (!strcasecmp(facility, "LOCAL0")) {
		return LOG_LOCAL0;
	} else if (!strcasecmp(facility, "LOCAL1")) {
		return LOG_LOCAL1;
	} else if (!strcasecmp(facility, "LOCAL2")) {
		return LOG_LOCAL2;
	} else if (!strcasecmp(facility, "LOCAL3")) {
		return LOG_LOCAL3;
	} else if (!strcasecmp(facility, "LOCAL4")) {
		return LOG_LOCAL4;
	} else if (!strcasecmp(facility, "LOCAL5")) {
		return LOG_LOCAL5;
	} else if (!strcasecmp(facility, "LOCAL6")) {
		return LOG_LOCAL6;
	} else if (!strcasecmp(facility, "LOCAL7")) {
		return LOG_LOCAL7;
	}

	return -1;
}

int ast_syslog_priority(const char *priority)
{
	if (!strcasecmp(priority, "ALERT")) {
		return LOG_ALERT;
	} else if (!strcasecmp(priority, "CRIT")) {
		return LOG_CRIT;
	} else if (!strcasecmp(priority, "DEBUG")) {
		return LOG_DEBUG;
	} else if (!strcasecmp(priority, "EMERG")) {
		return LOG_EMERG;
	} else if (!strcasecmp(priority, "ERR")) {
		return LOG_ERR;
	} else if (!strcasecmp(priority, "INFO")) {
		return LOG_INFO;
	} else if (!strcasecmp(priority, "NOTICE")) {
		return LOG_NOTICE;
	} else if (!strcasecmp(priority, "WARNING")) {
		return LOG_WARNING;
	}

	return -1;
}

static const int logger_level_to_syslog_map[] = {
	[__LOG_DEBUG]   = LOG_DEBUG,
	[1]			 = LOG_INFO,	/* Only kept for backwards compatibility */
	[__LOG_NOTICE]  = LOG_NOTICE,
	[__LOG_WARNING] = LOG_WARNING,
	[__LOG_ERROR]   = LOG_ERR,
	[__LOG_VERBOSE] = LOG_DEBUG,
	[__LOG_DTMF]	= LOG_DEBUG,
};

int ast_syslog_priority_from_loglevel(int level)
{
	if (level < 0 || level >= ARRAY_LEN(logger_level_to_syslog_map)) {
		return -1;
	}
	return logger_level_to_syslog_map[level];
}