/* +------------------------------------+ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * * InspIRCd: (C) 2002-2008 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ /* $Core: libIRCDlogger */ #include "inspircd.h" #include "filelogger.h" /* * Suggested implementation... * class LogManager * bool AddLogType(const std::string &type, enum loglevel, LogStream *) * bool DelLogType(const std::string &type, LogStream *) * Log(const std::string &type, enum loglevel, const std::string &msg) * std::map > logstreams (holds a 'chain' of logstreams for each type that are all notified when a log happens) * * class LogStream * std::string type * virtual void OnLog(enum loglevel, const std::string &msg) * * How it works: * Modules create their own logstream types (core will create one for 'file logging' for example) and create instances of these logstream types * and register interest in a certain logtype. Globbing is not here, with the exception of * - for all events.. loglevel is used to drop * events that are of no interest to a logstream. * * When Log is called, the vector of logstreams for that type is iterated (along with the special vector for "*"), and all registered logstreams * are called back ("OnLog" or whatever) to do whatever they like with the message. In the case of the core, this will write to a file. * In the case of the module I plan to write (m_logtochannel or something), it will log to the channel(s) for that logstream, etc. * * NOTE: Somehow we have to let LogManager manage the non-blocking file streams and provide an interface to share them with various LogStreams, * as, for example, a user may want to let 'KILL' and 'XLINE' snotices go to /home/ircd/inspircd/logs/operactions.log, or whatever. How * can we accomplish this easily? I guess with a map of pre-loved logpaths, and a pointer of FILE *.. * */ void LogManager::OpenFileLogs() { ConfigReader* Conf = new ConfigReader(ServerInstance); std::map logmap; std::map::iterator i; for (int index = 0; index < Conf->Enumerate("log"); ++index) { std::string method = Conf->ReadValue("log", "method", index); if (method != "file") continue; std::string type = Conf->ReadValue("log", "type", index); std::string level = Conf->ReadValue("log", "level", index); int loglevel = DEFAULT; if (level == "debug") { loglevel = DEBUG; ServerInstance->Config->debugging = true; } else if (level == "verbose") { loglevel = VERBOSE; } else if (level == "default") { loglevel = DEFAULT; } else if (level == "sparse") { loglevel = SPARSE; } else if (level == "none") { loglevel = NONE; } FileWriter* fw; std::string target = Conf->ReadValue("log", "target", index); if ((i = logmap.find(target)) == logmap.end()) { FILE* f = fopen(target.c_str(), "a"); fw = new FileWriter(ServerInstance, f); logmap.insert(std::make_pair(target, fw)); } else { fw = i->second; } FileLogStream* fls = new FileLogStream(ServerInstance, loglevel, fw); irc::commasepstream css(type); std::string tok; while (css.GetToken(tok)) { AddLogType(tok, fls); } } } void LogManager::CloseLogs() { std::map >().swap(LogStreams); /* Clear it */ std::vector().swap(GlobalLogStreams); /* Clear it */ for (std::map::iterator i = AllLogStreams.begin(); i != AllLogStreams.end(); ++i) { delete i->first; } std::map().swap(AllLogStreams); /* And clear it */ /* Now close FileLoggers, for those logstreams that neglected to properly free their stuff. */ for (FileLogMap::iterator it = FileLogs.begin(); it != FileLogs.end(); ++it) { delete it->first; } FileLogMap().swap(FileLogs); } bool LogManager::AddLogType(const std::string &type, LogStream *l) { std::map >::iterator i = LogStreams.find(type); if (i != LogStreams.end()) i->second.push_back(l); else { std::vector v; v.push_back(l); LogStreams[type] = v; } if (type == "*") GlobalLogStreams.push_back(l); std::map::iterator ai = AllLogStreams.find(l); if (ai == AllLogStreams.end()) { AllLogStreams.insert(std::make_pair(l, 1)); } else { ++ai->second; } return true; } void LogManager::DelLogStream(LogStream* l) { for (std::map >::iterator i = LogStreams.begin(); i != LogStreams.end(); ++i) { std::vector::iterator it; while ((it = std::find(i->second.begin(), i->second.end(), l)) != i->second.end()) { if (it == i->second.end()) continue; i->second.erase(it); } } std::vector::iterator gi = std::find(GlobalLogStreams.begin(), GlobalLogStreams.end(), l); if (gi != GlobalLogStreams.end()) GlobalLogStreams.erase(gi); std::map::iterator ai = AllLogStreams.begin(); if (ai == AllLogStreams.end()) return; /* Done. */ delete ai->first; AllLogStreams.erase(ai); } bool LogManager::DelLogType(const std::string &type, LogStream *l) { std::map >::iterator i = LogStreams.find(type); if (type == "*") { std::vector::iterator gi = std::find(GlobalLogStreams.begin(), GlobalLogStreams.end(), l); if (gi != GlobalLogStreams.end()) GlobalLogStreams.erase(gi); } if (i != LogStreams.end()) { std::vector::iterator it = std::find(i->second.begin(), i->second.end(), l); if (it != i->second.end()) { i->second.erase(it); if (i->second.size() == 0) { LogStreams.erase(i); } } else { return false; } } else { return false; } std::map::iterator ai = AllLogStreams.find(l); if (ai == AllLogStreams.end()) return true; if ((--ai->second) < 1) { AllLogStreams.erase(ai); delete l; } return true; } void LogManager::Log(const std::string &type, int loglevel, const char *fmt, ...) { if (Logging) return; va_list a; static char buf[65536]; va_start(a, fmt); vsnprintf(buf, 65536, fmt, a); va_end(a); this->Log(type, loglevel, std::string(buf)); } void LogManager::Log(const std::string &type, int loglevel, const std::string &msg) { if (Logging) return; Logging = true; std::vector::iterator gi = GlobalLogStreams.begin(); while (gi != GlobalLogStreams.end()) { (*gi)->OnLog(loglevel, type, msg); gi++; } std::map >::iterator i = LogStreams.find(type); if (i != LogStreams.end()) { std::vector::iterator it = i->second.begin(); while (it != i->second.end()) { (*it)->OnLog(loglevel, type, msg); it++; } } Logging = false; } FileWriter::FileWriter(InspIRCd* Instance, FILE* logfile) : ServerInstance(Instance), log(logfile), writeops(0) { if (log) { Instance->SE->NonBlocking(fileno(log)); SetFd(fileno(log)); buffer.clear(); } } bool FileWriter::Readable() { return false; } void FileWriter::HandleEvent(EventType, int) { WriteLogLine(""); if (log) ServerInstance->SE->DelFd(this); } void FileWriter::WriteLogLine(const std::string &line) { if (line.length()) buffer.append(line); if (log) { int written = fprintf(log,"%s",buffer.c_str()); #ifdef WINDOWS buffer.clear(); #else if ((written >= 0) && (written < (int)buffer.length())) { buffer.erase(0, buffer.length()); ServerInstance->SE->AddFd(this); } else if (written == -1) { if (errno == EAGAIN) ServerInstance->SE->AddFd(this); } else { /* Wrote the whole buffer, and no need for write callback */ buffer.clear(); } #endif if (writeops++ % 20) { fflush(log); } } } void FileWriter::Close() { if (log) { ServerInstance->SE->Blocking(fileno(log)); if (buffer.size()) fprintf(log,"%s",buffer.c_str()); #ifndef WINDOWS ServerInstance->SE->DelFd(this); #endif fflush(log); fclose(log); } buffer.clear(); } FileWriter::~FileWriter() { this->Close(); }