File: logging.c

package info (click to toggle)
dlm 4.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 960 kB
  • sloc: ansic: 15,665; makefile: 376; python: 274; sh: 150
file content (214 lines) | stat: -rw-r--r-- 4,555 bytes parent folder | download
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
 * Copyright 2004-2012 Red Hat, Inc.
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU General Public License v2 or (at your option) any later version.
 */

#include "dlm_daemon.h"

static int syslog_facility;
static int syslog_priority;
static int logfile_priority;
static char logfile[PATH_MAX];
static FILE *logfile_fp;

/* logfile_priority is the only one of these options that
   can be controlled from command line, environment variable
   and dynamic setting.
 */
void set_logfile_priority(void)
{
	if (opt(debug_logfile_ind))
		logfile_priority = LOG_DEBUG;
	else
		logfile_priority = DEFAULT_LOGFILE_PRIORITY;
}

void init_logging(void)
{
	mode_t old_umask;
	int rv;

	syslog_facility = DEFAULT_SYSLOG_FACILITY;
	syslog_priority = DEFAULT_SYSLOG_PRIORITY;
	logfile_priority = DEFAULT_LOGFILE_PRIORITY;
	strcpy(logfile, DEFAULT_LOGFILE);

	set_logfile_priority();

	old_umask = umask(0077);
	rv = mkdir(SYS_VARDIR, 0700);
	if (rv < 0 && errno != EEXIST) {
		umask(old_umask);
		goto skip_logfile;
	}

	rv = mkdir(SYS_LOGDIR, 0700);
	if (rv < 0 && errno != EEXIST) {
		umask(old_umask);
		goto skip_logfile;
	}

	rv = mkdir(LOGDIR, 0700);
	if (rv < 0 && errno != EEXIST) {
		umask(old_umask);
		goto skip_logfile;
	}
	umask(old_umask);

	if (logfile[0]) {
		logfile_fp = fopen(logfile, "a+");
		if (logfile_fp != NULL) {
			int fd = fileno(logfile_fp);
			fcntl(fd, F_SETFD, fcntl(fd, F_GETFD, 0) | FD_CLOEXEC);
		}
	}

skip_logfile:
	openlog(DAEMON_NAME, LOG_CONS | LOG_PID, syslog_facility);
}

void close_logging(void)
{
	closelog();
	if (logfile_fp)
		fclose(logfile_fp);
}

#define NAME_ID_SIZE 32
#define LOG_STR_LEN 512
static char log_str[LOG_STR_LEN];

static char log_dump[LOG_DUMP_SIZE];
static unsigned int log_point;
static unsigned int log_wrap;

static char log_dump_plock[LOG_DUMP_SIZE];
static unsigned int log_point_plock;
static unsigned int log_wrap_plock;

static void log_copy(char *buf, int *len, char *log_buf,
		     unsigned int *point, unsigned int *wrap)
{
	unsigned int p = *point;
	unsigned int w = *wrap;
	int tail_len;

	if (!w && !p) {
		*len = 0;
	} else if (*wrap) {
		tail_len = LOG_DUMP_SIZE - p;
		memcpy(buf, log_buf + p, tail_len);
		if (p)
			memcpy(buf+tail_len, log_buf, p);
		*len = LOG_DUMP_SIZE;
	} else {
		memcpy(buf, log_buf, p-1);
		*len = p-1;
	}
}

void copy_log_dump(char *buf, int *len)
{
	log_copy(buf, len, log_dump, &log_point, &log_wrap);
}

void copy_log_dump_plock(char *buf, int *len)
{
	log_copy(buf, len, log_dump_plock, &log_point_plock, &log_wrap_plock);
}

static void log_save_str(int len, char *log_buf, unsigned int *point,
			 unsigned int *wrap)
{
	unsigned int p = *point;
	unsigned int w = *wrap;
	int i;

	if (len < LOG_DUMP_SIZE - p) {
		memcpy(log_buf + p, log_str, len);
		p += len;

		if (p == LOG_DUMP_SIZE) {
			p = 0;
			w = 1;
		}
		goto out;
	}

	for (i = 0; i < len; i++) {
		log_buf[p++] = log_str[i];

		if (p == LOG_DUMP_SIZE) {
			p = 0;
			w = 1;
		}
	}
 out:
	*point = p;
	*wrap = w;
}

void log_level(const char *name_in, uint32_t level_in, const char *fmt, ...)
{
	va_list ap;
	char name[NAME_ID_SIZE + 2];
	uint32_t level = level_in & 0x0000FFFF;
	uint32_t extra = level_in & 0xFFFF0000;
	int ret, pos = 0;
	int len = LOG_STR_LEN - 2;
	int namelen = 0;
	int plock = extra & LOG_PLOCK;

	memset(name, 0, sizeof(name));

	if (name_in) {
		namelen = snprintf(name, NAME_ID_SIZE + 1, "%s", name_in);
		if (namelen > NAME_ID_SIZE)
			namelen = NAME_ID_SIZE;
		name[namelen] = ' ';
		name[namelen+1] = '\0';
	}

	ret = snprintf(log_str + pos, len - pos, "%llu %s",
		       (unsigned long long)monotime(), name);

	pos += ret;

	va_start(ap, fmt);
	ret = vsnprintf(log_str + pos, len - pos, fmt, ap);
	va_end(ap);

	if (ret >= len - pos)
		pos = len - 1;
	else
		pos += ret;

	log_str[pos++] = '\n';
	log_str[pos++] = '\0';

	if (level < LOG_NONE)
		log_save_str(pos - 1, log_dump, &log_point, &log_wrap);
	if (plock)
		log_save_str(pos - 1, log_dump_plock, &log_point_plock, &log_wrap_plock);

	if (level <= syslog_priority)
		syslog(level, "%s", log_str);

	if (level <= logfile_priority && logfile_fp) {
		time_t logtime = time(NULL);
		char tbuf[64];
		strftime(tbuf, sizeof(tbuf), "%b %d %T", localtime(&logtime));
		fprintf(logfile_fp, "%s %s", tbuf, log_str);
		fflush(logfile_fp);
	}

	if (!dlm_options[daemon_debug_ind].use_int)
		return;

	if ((level < LOG_NONE) || (plock && opt(plock_debug_ind)))
		fprintf(stderr, "%s", log_str);
}