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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
|
/* Logging routines.
*
* (C) 2003-2011 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*/
#include "services.h"
void InitLogChannels(ServerConfig *config)
{
for (unsigned i = 0; i < config->LogInfos.size(); ++i)
{
LogInfo *l = config->LogInfos[i];
if (!ircd->join2msg && !l->Inhabit)
continue;
for (std::list<Anope::string>::const_iterator sit = l->Targets.begin(), sit_end = l->Targets.end(); sit != sit_end; ++sit)
{
const Anope::string &target = *sit;
if (target[0] == '#')
{
Channel *c = findchan(target);
if (!c)
c = new Channel(target);
c->SetFlag(CH_LOGCHAN);
c->SetFlag(CH_PERSIST);
for (Anope::insensitive_map<BotInfo *>::iterator it = BotListByNick.begin(), it_end = BotListByNick.end(); it != it_end; ++it)
{
BotInfo *bi = it->second;
if (bi->HasFlag(BI_CORE) && !c->FindUser(bi))
bi->Join(c, &config->BotModeList);
}
}
}
}
}
static Anope::string GetTimeStamp()
{
char tbuf[256];
time_t t;
if (time(&t) < 0)
throw CoreException("time() failed");
tm tm = *localtime(&t);
if (debug)
{
char *s;
struct timeval tv;
gettimeofday(&tv, NULL);
strftime(tbuf, sizeof(tbuf) - 1, "[%b %d %H:%M:%S", &tm);
s = tbuf + strlen(tbuf);
s += snprintf(s, sizeof(tbuf) - (s - tbuf), ".%06d", static_cast<int>(tv.tv_usec));
strftime(s, sizeof(tbuf) - (s - tbuf) - 1, " %Y]", &tm);
}
else
strftime(tbuf, sizeof(tbuf) - 1, "[%b %d %H:%M:%S %Y]", &tm);
return tbuf;
}
static Anope::string GetLogDate(time_t t = Anope::CurTime)
{
char timestamp[32];
time(&t);
tm *tm = localtime(&t);
strftime(timestamp, sizeof(timestamp), "%Y%m%d", tm);
return timestamp;
}
static inline Anope::string CreateLogName(const Anope::string &file, time_t t = Anope::CurTime)
{
return "logs/" + file + "." + GetLogDate(t);
}
LogFile::LogFile(const Anope::string &name) : filename(name), stream(name.c_str(), std::ios_base::out | std::ios_base::app)
{
}
Anope::string LogFile::GetName() const
{
return this->filename;
}
Log::Log(LogType type, const Anope::string &category, BotInfo *b) : bi(b), Type(type), Category(category)
{
if (!b)
b = Global;
if (b)
this->Sources.push_back(b->nick);
}
Log::Log(LogType type, User *u, Command *c, ChannelInfo *ci) : Type(type)
{
if (!u || !c)
throw CoreException("Invalid pointers passed to Log::Log");
if (type != LOG_COMMAND && type != LOG_OVERRIDE && type != LOG_ADMIN)
throw CoreException("This constructor does not support this log type");
this->bi = c->service ? c->service : Global;
this->Category = (c->service ? c->service->nick + "/" : "") + c->name;
if (this->bi)
this->Sources.push_back(this->bi->nick);
this->Sources.push_back(u->nick);
this->Sources.push_back(c->name);
if (ci)
this->Sources.push_back(ci->name);
if (type == LOG_ADMIN)
buf << "ADMIN: ";
else if (type == LOG_OVERRIDE)
buf << "OVERRIDE: ";
else
buf << "COMMAND: ";
buf << u->GetMask() << " used " << c->name << " ";
if (ci)
buf << "on " << ci->name << " ";
}
Log::Log(User *u, Channel *c, const Anope::string &category) : Type(LOG_CHANNEL)
{
if (!c)
throw CoreException("Invalid pointers passed to Log::Log");
this->bi = ChanServ;
this->Category = category;
if (this->bi)
this->Sources.push_back(this->bi->nick);
if (u)
this->Sources.push_back(u->nick);
this->Sources.push_back(c->name);
buf << "CHANNEL: ";
if (u)
buf << u->GetMask() << " " << this->Category << " " << c->name << " ";
else
buf << this->Category << " " << c->name << " ";
}
Log::Log(User *u, const Anope::string &category) : bi(Global), Type(LOG_USER), Category(category)
{
if (!u)
throw CoreException("Invalid pointers passed to Log::Log");
if (this->bi)
this->Sources.push_back(this->bi->nick);
this->Sources.push_back(u->nick);
buf << "USERS: " << u->GetMask() << " ";
}
Log::Log(Server *s, const Anope::string &category) : bi(OperServ), Type(LOG_SERVER), Category(category)
{
if (!s)
throw CoreException("Invalid pointer passed to Log::Log");
if (!this->bi)
this->bi = Global;
if (this->bi)
this->Sources.push_back(this->bi->nick);
this->Sources.push_back(s->GetName());
buf << "SERVER: " << s->GetName() << " (" << s->GetDescription() << ") ";
}
Log::Log(BotInfo *b, const Anope::string &category) : bi(b), Type(LOG_NORMAL), Category(category)
{
if (!b)
this->bi = Global;
if (this->bi)
this->Sources.push_back(bi->nick);
}
Log::~Log()
{
if (nofork && debug && this->Type >= LOG_NORMAL && this->Type <= LOG_DEBUG + debug - 1)
std::cout << GetTimeStamp() << " Debug: " << this->buf.str() << std::endl;
else if (nofork && this->Type <= LOG_TERMINAL)
std::cout << GetTimeStamp() << " " << this->buf.str() << std::endl;
else if (this->Type == LOG_TERMINAL)
std::cout << this->buf.str() << std::endl;
for (unsigned i = 0; Config && i < Config->LogInfos.size(); ++i)
{
LogInfo *l = Config->LogInfos[i];
l->ProcessMessage(this);
}
}
LogInfo::LogInfo(int logage, bool inhabit, bool rawio, bool ldebug) : LogAge(logage), Inhabit(inhabit), RawIO(rawio), Debug(ldebug)
{
}
LogInfo::~LogInfo()
{
for (std::map<Anope::string, LogFile *>::iterator it = this->Logfiles.begin(), it_end = this->Logfiles.end(); it != it_end; ++it)
{
LogFile *f = it->second;
if (f && f->stream.is_open())
f->stream.close();
delete f;
}
this->Logfiles.clear();
}
void LogInfo::AddType(std::list<Anope::string> &list, const Anope::string &type)
{
for (std::list<Anope::string>::iterator it = list.begin(), it_end = list.end(); it != it_end; ++it)
{
if (Anope::Match(type, *it))
{
Log() << "Log: Type " << type << " is already covered by " << *it;
return;
}
}
list.push_back(type);
}
bool LogInfo::HasType(std::list<Anope::string> &list, const Anope::string &type) const
{
for (std::list<Anope::string>::iterator it = list.begin(), it_end = list.end(); it != it_end; ++it)
{
Anope::string cat = *it;
bool inverse = false;
if (cat[0] == '~')
{
cat.erase(cat.begin());
inverse = true;
}
if (Anope::Match(type, cat))
{
return !inverse;
}
}
return false;
}
std::list<Anope::string> &LogInfo::GetList(LogType type)
{
static std::list<Anope::string> empty;
switch (type)
{
case LOG_ADMIN:
return this->Admin;
case LOG_OVERRIDE:
return this->Override;
case LOG_COMMAND:
return this->Commands;
case LOG_SERVER:
return this->Servers;
case LOG_CHANNEL:
return this->Channels;
case LOG_USER:
return this->Users;
case LOG_NORMAL:
return this->Normal;
default:
return empty;
}
}
bool LogInfo::HasType(LogType type)
{
switch (type)
{
case LOG_ADMIN:
case LOG_OVERRIDE:
case LOG_COMMAND:
case LOG_SERVER:
case LOG_CHANNEL:
case LOG_USER:
case LOG_NORMAL:
return !this->GetList(type).empty();
case LOG_TERMINAL:
return true;
case LOG_RAWIO:
return debug ? true : this->RawIO;
case LOG_DEBUG:
return debug ? true : this->Debug;
// LOG_DEBUG_[234]
default:
break;
}
return false;
}
void LogInfo::ProcessMessage(const Log *l)
{
static time_t lastwarn = Anope::CurTime;
if (!l)
throw CoreException("Bad values passed to LogInfo::ProcessMessages");
if (!this->HasType(l->Type))
return;
else if (!this->HasType(this->GetList(l->Type), l->Category))
return;
if (!this->Sources.empty())
{
bool log = false;
for (std::list<Anope::string>::const_iterator it = this->Sources.begin(), it_end = this->Sources.end(); it != it_end; ++it)
{
if (std::find(l->Sources.begin(), l->Sources.end(), *it) != l->Sources.end())
{
log = true;
break;
}
}
if (!log)
return;
}
for (std::list<Anope::string>::iterator it = this->Targets.begin(), it_end = this->Targets.end(); it != it_end; ++it)
{
const Anope::string &target = *it;
if (target[0] == '#')
{
if (UplinkSock && l->Type <= LOG_NORMAL && Me && Me->IsSynced())
{
Channel *c = findchan(target);
if (!c || !l->bi)
continue;
ircdproto->SendPrivmsg(l->bi, c->name, "%s", l->buf.str().c_str());
}
}
else if (target == "globops")
{
if (UplinkSock && l->bi && l->Type <= LOG_NORMAL && Me && Me->IsSynced())
{
ircdproto->SendGlobops(l->bi, "%s", l->buf.str().c_str());
}
}
else
{
LogFile *log = NULL;
std::map<Anope::string, LogFile *>::iterator lit = this->Logfiles.find(target);
if (lit != this->Logfiles.end())
{
log = lit->second;
if (log && log->GetName() != CreateLogName(target))
{
delete log;
this->Logfiles.erase(lit);
log = new LogFile(CreateLogName(target));
this->Logfiles[target] = log;
if (this->LogAge)
{
Anope::string oldlog = CreateLogName(target, Anope::CurTime - 86400 * this->LogAge);
if (IsFile(oldlog))
{
DeleteFile(oldlog.c_str());
Log(LOG_DEBUG) << "Deleted old logfile " << oldlog;
}
}
}
if (!log || !log->stream.is_open())
{
if (log && lastwarn + 300 < Anope::CurTime)
{
lastwarn = Anope::CurTime;
Log() << "Unable to open logfile " << log->GetName();
}
delete log;
this->Logfiles.erase(lit);
log = NULL;
}
}
else if (lit == this->Logfiles.end())
{
log = new LogFile(CreateLogName(target));
if (!log->stream.is_open())
{
if (lastwarn + 300 < Anope::CurTime)
{
lastwarn = Anope::CurTime;
Log() << "Unable to open logfile " << log->GetName();
}
delete log;
log = NULL;
}
else
this->Logfiles[target] = log;
}
if (log)
log->stream << GetTimeStamp() << " " << l->buf.str() << std::endl;
}
}
}
|