X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_check.cpp;h=4b960e18b6b6e8dddd94fefa7f0b88274997ec4c;hb=fa452641bf37077fcda964d59e404a76e1fb13e5;hp=15db15de54788794187e22ae1570d721fa6bc0d1;hpb=9f0bf03fbef51b7c2b706b974c63cf3bf1734abc;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index 15db15de5..4b960e18b 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -2,93 +2,218 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * - * - * Written by Craig Edwards, Craig McLure, and others. + * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits + * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ -using namespace std; - -#include "users.h" -#include "channels.h" -#include "modules.h" +#include "inspircd.h" /* $ModDesc: Provides the /check command to retrieve information on a user, channel, or IP address */ -static Server *Srv; - -class cmd_check : public command_t +/** Handle /CHECK + */ +class CommandCheck : public Command { public: - cmd_check() : command_t("CHECK", 'o', 1) + CommandCheck(Module* parent) : Command(parent,"CHECK", 1) { - this->source = "m_check.so"; + flags_needed = 'o'; syntax = "||| "; } - void Handle (char **parameters, int pcnt, userrec *user) + std::string timestring(time_t time) { - + char timebuf[60]; + struct tm *mytime = gmtime(&time); + strftime(timebuf, 59, "%Y-%m-%d %H:%M:%S UTC (%s)", mytime); + return std::string(timebuf); } -}; - -class ModuleCheck : public Module -{ - private: - cmd_check *mycommand; - public: - ModuleCheck(Server* Me) : Module::Module(Me) + void dumpExt(User* user, std::string checkstr, Extensible* ext) { - Srv = Me; - mycommand = new cmd_check(); - Srv->AddCommand(mycommand); + std::stringstream dumpkeys; + for(Extensible::ExtensibleStore::const_iterator i = ext->GetExtList().begin(); i != ext->GetExtList().end(); i++) + { + ExtensionItem* item = i->first; + std::string value = item->serialize(FORMAT_USER, ext, i->second); + if (!value.empty()) + ServerInstance->DumpText(user, checkstr + " meta:" + item->key + " " + value); + else if (!item->key.empty()) + dumpkeys << " " << item->key; + } + if (!dumpkeys.str().empty()) + ServerInstance->DumpText(user,checkstr + " metadata", dumpkeys); } - - virtual ~ModuleCheck() - { - } - - virtual Version GetVersion() + + CmdResult Handle (const std::vector ¶meters, User *user) { - return Version(1, 0, 0, 0, VF_VENDOR); + if (parameters.size() > 1 && parameters[1] != ServerInstance->Config->ServerName.c_str()) + return CMD_SUCCESS; + + User *targuser; + Channel *targchan; + std::string checkstr; + std::string chliststr; + + checkstr = std::string(":") + ServerInstance->Config->ServerName + " 304 " + std::string(user->nick) + " :CHECK"; + + targuser = ServerInstance->FindNick(parameters[0]); + targchan = ServerInstance->FindChan(parameters[0]); + + /* + * Syntax of a /check reply: + * :server.name 304 target :CHECK START + * :server.name 304 target :CHECK + * :server.name 304 target :CHECK END + */ + + ServerInstance->DumpText(user, checkstr + " START " + parameters[0]); + + if (targuser) + { + /* /check on a user */ + ServerInstance->DumpText(user, checkstr + " nuh " + targuser->GetFullHost()); + ServerInstance->DumpText(user, checkstr + " realnuh " + targuser->GetFullRealHost()); + ServerInstance->DumpText(user, checkstr + " realname " + targuser->fullname); + ServerInstance->DumpText(user, checkstr + " modes +" + targuser->FormatModes()); + ServerInstance->DumpText(user, checkstr + " snomasks +" + targuser->FormatNoticeMasks()); + ServerInstance->DumpText(user, checkstr + " server " + targuser->server); + ServerInstance->DumpText(user, checkstr + " uid " + targuser->uuid); + ServerInstance->DumpText(user, checkstr + " signon " + timestring(targuser->signon)); + ServerInstance->DumpText(user, checkstr + " nickts " + timestring(targuser->age)); + if (IS_LOCAL(targuser)) + ServerInstance->DumpText(user, checkstr + " lastmsg " + timestring(targuser->idle_lastmsg)); + + if (IS_AWAY(targuser)) + { + /* user is away */ + ServerInstance->DumpText(user, checkstr + " awaytime " + timestring(targuser->awaytime)); + ServerInstance->DumpText(user, checkstr + " awaymsg " + targuser->awaymsg); + } + + if (IS_OPER(targuser)) + { + /* user is an oper of type ____ */ + ServerInstance->DumpText(user, checkstr + " opertype " + irc::Spacify(targuser->oper.c_str())); + } + + if (IS_LOCAL(targuser)) + { + ServerInstance->DumpText(user, checkstr + " clientaddr " + irc::sockets::satouser(&targuser->client_sa)); + ServerInstance->DumpText(user, checkstr + " serveraddr " + irc::sockets::satouser(&targuser->server_sa)); + + std::string classname = targuser->GetClass()->name; + if (!classname.empty()) + ServerInstance->DumpText(user, checkstr + " connectclass " + classname); + } + else + ServerInstance->DumpText(user, checkstr + " onip " + targuser->GetIPString()); + + for (UCListIter i = targuser->chans.begin(); i != targuser->chans.end(); i++) + { + Channel* c = *i; + chliststr.append(c->GetPrefixChar(targuser)).append(c->name).append(" "); + } + + std::stringstream dump(chliststr); + + ServerInstance->DumpText(user,checkstr + " onchans", dump); + + dumpExt(user, checkstr, targuser); + } + else if (targchan) + { + /* /check on a channel */ + ServerInstance->DumpText(user, checkstr + " timestamp " + timestring(targchan->age)); + + if (targchan->topic[0] != 0) + { + /* there is a topic, assume topic related information exists */ + ServerInstance->DumpText(user, checkstr + " topic " + targchan->topic); + ServerInstance->DumpText(user, checkstr + " topic_setby " + targchan->setby); + ServerInstance->DumpText(user, checkstr + " topic_setat " + timestring(targchan->topicset)); + } + + ServerInstance->DumpText(user, checkstr + " modes " + targchan->ChanModes(true)); + ServerInstance->DumpText(user, checkstr + " membercount " + ConvToStr(targchan->GetUserCounter())); + + /* now the ugly bit, spool current members of a channel. :| */ + + const UserMembList *ulist= targchan->GetUsers(); + + /* note that unlike /names, we do NOT check +i vs in the channel */ + for (UserMembCIter i = ulist->begin(); i != ulist->end(); i++) + { + char tmpbuf[MAXBUF]; + /* + * Unlike Asuka, I define a clone as coming from the same host. --w00t + */ + snprintf(tmpbuf, MAXBUF, "%-3lu %s%s (%s@%s) %s ", ServerInstance->Users->GlobalCloneCount(i->first), targchan->GetAllPrefixChars(i->first), i->first->nick.c_str(), i->first->ident.c_str(), i->first->dhost.c_str(), i->first->fullname.c_str()); + ServerInstance->DumpText(user, checkstr + " member " + tmpbuf); + } + + dumpExt(user, checkstr, targchan); + } + else + { + /* /check on an IP address, or something that doesn't exist */ + long x = 0; + + /* hostname or other */ + for (user_hash::const_iterator a = ServerInstance->Users->clientlist->begin(); a != ServerInstance->Users->clientlist->end(); a++) + { + if (InspIRCd::Match(a->second->host, parameters[0], ascii_case_insensitive_map) || InspIRCd::Match(a->second->dhost, parameters[0], ascii_case_insensitive_map)) + { + /* host or vhost matches mask */ + ServerInstance->DumpText(user, checkstr + " match " + ConvToStr(++x) + " " + a->second->GetFullRealHost()); + } + /* IP address */ + else if (InspIRCd::MatchCIDR(a->second->GetIPString(), parameters[0])) + { + /* same IP. */ + ServerInstance->DumpText(user, checkstr + " match " + ConvToStr(++x) + " " + a->second->GetFullRealHost()); + } + } + + ServerInstance->DumpText(user, checkstr + " matches " + ConvToStr(x)); + } + + ServerInstance->DumpText(user, checkstr + " END " + parameters[0]); + + return CMD_SUCCESS; } - void Implements(char* List) + RouteDescriptor GetRouting(User* user, const std::vector& parameters) { - /* we don't hook anything, nothing required */ + if (parameters.size() > 1) + return ROUTE_OPT_UCAST(parameters[1]); + return ROUTE_LOCALONLY; } - }; - -class ModuleCheckFactory : public ModuleFactory +class ModuleCheck : public Module { + private: + CommandCheck mycommand; public: - ModuleCheckFactory() + ModuleCheck() : mycommand(this) { + ServerInstance->AddCommand(&mycommand); } - - ~ModuleCheckFactory() + + ~ModuleCheck() { } - - virtual Module * CreateModule(Server* Me) + + Version GetVersion() { - return new ModuleCheck(Me); + return Version("CHECK command, view user/channel details", VF_VENDOR|VF_OPTCOMMON); } - }; -extern "C" void * init_module( void ) -{ - return new ModuleCheckFactory; -} - +MODULE_INIT(ModuleCheck)