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
|
/*
CTDB logging config handling
Copyright (C) Martin Schwenke 2017
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; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "replace.h"
#include <talloc.h>
#include "common/conf.h"
#include "common/logging.h"
#include "common/logging_conf.h"
#define LOGGING_LOCATION_DEFAULT "file:" LOGDIR "/log.ctdb"
#define LOGGING_LOG_LEVEL_DEFAULT "NOTICE"
static bool logging_conf_validate_log_level(const char *key,
const char *old_loglevel,
const char *new_loglevel,
enum conf_update_mode mode)
{
int log_level;
bool ok;
ok = debug_level_parse(new_loglevel, &log_level);
if (!ok) {
return false;
}
return true;
}
static bool logging_conf_validate_location(const char *key,
const char *old_location,
const char *new_location,
enum conf_update_mode mode)
{
bool ok;
ok = logging_validate(new_location);
if (!ok) {
return false;
}
if (mode == CONF_MODE_RELOAD &&
strcmp(old_location, new_location) != 0) {
D_WARNING("Ignoring update of %s config option \"%s\"\n",
LOGGING_CONF_SECTION, key);
return false;
}
return true;
}
void logging_conf_init(struct conf_context *conf,
const char *default_log_level)
{
const char *log_level;
log_level = (default_log_level == NULL) ?
LOGGING_LOG_LEVEL_DEFAULT :
default_log_level;
conf_define_section(conf, LOGGING_CONF_SECTION, NULL);
conf_define_string(conf,
LOGGING_CONF_SECTION,
LOGGING_CONF_LOCATION,
LOGGING_LOCATION_DEFAULT,
logging_conf_validate_location);
conf_define_string(conf,
LOGGING_CONF_SECTION,
LOGGING_CONF_LOG_LEVEL,
log_level,
logging_conf_validate_log_level);
}
const char *logging_conf_location(struct conf_context *conf)
{
const char *out = NULL;
int ret;
ret = conf_get_string(conf,
LOGGING_CONF_SECTION,
LOGGING_CONF_LOCATION,
&out,
NULL);
if (ret != 0) {
/* Can't really happen, but return default */
return LOGGING_LOCATION_DEFAULT;
}
return out;
}
const char *logging_conf_log_level(struct conf_context *conf)
{
const char *out = NULL;
int ret;
ret = conf_get_string(conf,
LOGGING_CONF_SECTION,
LOGGING_CONF_LOG_LEVEL,
&out,
NULL);
if (ret != 0) {
/* Can't really happen, but return default */
return LOGGING_LOG_LEVEL_DEFAULT;
}
return out;
}
|