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
|
/*
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
* log.c: Logger functions.
*
* Copyright (C) 2002 by the past and present ircd coders, and others.
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* $Id$
*/
#include "stdinc.h"
#include "log.h"
#include "irc_string.h"
#include "ircd.h"
#include "conf.h"
#include "s_misc.h"
static struct {
char path[PATH_MAX + 1];
size_t size;
FILE *file;
} log_type_table[LOG_TYPE_LAST];
int
log_add_file(enum log_type type, size_t size, const char *path)
{
if (log_type_table[type].file)
fclose(log_type_table[type].file);
strlcpy(log_type_table[type].path, path, sizeof(log_type_table[type].path));
log_type_table[type].size = size;
return (log_type_table[type].file = fopen(path, "a")) != NULL;
}
void
log_close_all(void)
{
unsigned int type = 0;
while (++type < LOG_TYPE_LAST)
{
if (log_type_table[type].file == NULL)
continue;
fclose(log_type_table[type].file);
log_type_table[type].file = NULL;
}
}
static int
log_exceed_size(unsigned int type)
{
struct stat sb;
if (!log_type_table[type].size)
return 0;
if (stat(log_type_table[type].path, &sb) < 0)
return -1;
return (size_t)sb.st_size > log_type_table[type].size;
}
static void
log_write(enum log_type type, const char *message)
{
char buf[IRCD_BUFSIZE];
strftime(buf, sizeof(buf), "[%FT%H:%M:%S%z]", localtime(&CurrentTime));
fprintf(log_type_table[type].file, "%s %s\n", buf, message);
fflush(log_type_table[type].file);
}
void
ilog(enum log_type type, const char *fmt, ...)
{
char buf[LOG_BUFSIZE];
va_list args;
if (!log_type_table[type].file || !ConfigLoggingEntry.use_logging)
return;
va_start(args, fmt);
vsnprintf(buf, sizeof(buf), fmt, args);
va_end(args);
log_write(type, buf);
if (log_exceed_size(type) <= 0)
return;
snprintf(buf, sizeof(buf), "Rotating logfile %s",
log_type_table[type].path);
log_write(type, buf);
fclose(log_type_table[type].file);
log_type_table[type].file = NULL;
snprintf(buf, sizeof(buf), "%s.old", log_type_table[type].path);
unlink(buf);
rename(log_type_table[type].path, buf);
log_add_file(type, log_type_table[type].size, log_type_table[type].path);
}
|