]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/command_parse.cpp
Add SerializeFormat for easier metadata formatting
[user/henk/code/inspircd.git] / src / command_parse.cpp
index e4c987c19c1cd1daaa44e539f0f55808f919c95f..e4eb57e80bb10cad9d03dbc4d494a0d237e7c256 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  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.
 
 int InspIRCd::PassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype)
 {
-       int MOD_RESULT = 0;
-       FOREACH_RESULT_I(this,I_OnPassCompare,OnPassCompare(ex, data, input, hashtype))
-       if (MOD_RESULT == 1)
+       ModResult res;
+       FIRST_MOD_RESULT(this, OnPassCompare, res, (ex, data, input, hashtype));
+
+       /* Module matched */
+       if (res == MOD_RES_ALLOW)
                return 0;
-       if (MOD_RESULT == -1)
+
+       /* Module explicitly didnt match */
+       if (res == MOD_RES_DENY)
+               return 1;
+
+       /* We dont handle any hash types except for plaintext - Thanks tra26 */
+       if (hashtype != "" && hashtype != "plaintext")
+               /* See below. 1 because they dont match */
                return 1;
-       return data != input; // this seems back to front, but returns 0 if they *match*, 1 else
+
+       return (data != input); // this seems back to front, but returns 0 if they *match*, 1 else
 }
 
 /* LoopCall is used to call a command classes handler repeatedly based on the contents of a comma seperated list.
@@ -59,10 +69,10 @@ int CommandParser::LoopCall(User* user, Command* CommandObj, const std::vector<s
                return 0;
 
        /** Some lame ircds will weed out dupes using some shitty O(n^2) algorithm.
-        * By using std::map (thanks for the idea w00t) we can cut this down a ton.
+        * By using std::set (thanks for the idea w00t) we can cut this down a ton.
         * ...VOOODOOOO!
         */
-       std::map<irc::string, bool> dupes;
+       std::set<irc::string> dupes;
 
        /* Create two lists, one for channel names, one for keys
         */
@@ -93,7 +103,7 @@ int CommandParser::LoopCall(User* user, Command* CommandObj, const std::vector<s
 
                        CommandObj->Handle(new_parameters, user);
 
-                       dupes[item.c_str()] = true;
+                       dupes.insert(item.c_str());
                }
        }
        return 1;
@@ -110,7 +120,7 @@ int CommandParser::LoopCall(User* user, Command* CommandObj, const std::vector<s
        if (parameters[splithere].find(',') == std::string::npos)
                return 0;
 
-       std::map<irc::string, bool> dupes;
+       std::set<irc::string> dupes;
 
        /* Only one commasepstream here */
        irc::commasepstream items1(parameters[splithere]);
@@ -135,7 +145,7 @@ int CommandParser::LoopCall(User* user, Command* CommandObj, const std::vector<s
                        /* Execute the command handler. */
                        CommandObj->Handle(new_parameters, user);
 
-                       dupes[item.c_str()] = true;
+                       dupes.insert(item.c_str());
                }
        }
        /* By returning 1 we tell our caller that nothing is to be done,
@@ -151,7 +161,7 @@ bool CommandParser::IsValidCommand(const std::string &commandname, unsigned int
 
        if (n != cmdlist.end())
        {
-               if ((pcnt >= n->second->min_params) && (n->second->source != "<core>"))
+               if ((pcnt >= n->second->min_params))
                {
                        if (IS_LOCAL(user) && n->second->flags_needed)
                        {
@@ -218,32 +228,8 @@ CmdResult CommandParser::CallHandler(const std::string &commandname, const std::
 
 void CommandParser::DoLines(User* current, bool one_only)
 {
-       // while there are complete lines to process...
-       unsigned int floodlines = 0;
-
        while (current->BufferIsReady())
        {
-               if (current->MyClass)
-               {
-                       if (ServerInstance->Time() > current->reset_due)
-                       {
-                               current->reset_due = ServerInstance->Time() + current->MyClass->GetThreshold();
-                               current->lines_in = 0;
-                       }
-
-                       if (++current->lines_in > current->MyClass->GetFlood() && current->MyClass->GetFlood())
-                       {
-                               ServerInstance->FloodQuitUser(current);
-                               return;
-                       }
-
-                       if ((++floodlines > current->MyClass->GetFlood()) && (current->MyClass->GetFlood() != 0))
-                       {
-                               ServerInstance->FloodQuitUser(current);
-                               return;
-                       }
-               }
-
                // use GetBuffer to copy single lines into the sanitized string
                std::string single_line = current->GetBuffer();
                current->bytes_in += single_line.length();
@@ -276,15 +262,25 @@ bool CommandParser::ProcessCommand(User *user, std::string &cmd)
                command_p.push_back(token);
 
        std::transform(command.begin(), command.end(), command.begin(), ::toupper);
-               
+
        /* find the command, check it exists */
        Commandtable::iterator cm = cmdlist.find(command);
-       
+
+       /* Modify the user's penalty regardless of whether or not the command exists */
+       bool do_more = true;
+       if (!user->HasPrivPermission("users/flood/no-throttle"))
+       {
+               // If it *doesn't* exist, give it a slightly heftier penalty than normal to deter flooding us crap
+               user->IncreasePenalty(cm != cmdlist.end() ? cm->second->Penalty : 2);
+               do_more = (user->Penalty < 10);
+       }
+
+
        if (cm == cmdlist.end())
        {
-               int MOD_RESULT = 0;
-               FOREACH_RESULT(I_OnPreCommand,OnPreCommand(command, command_p, user, false, cmd));
-               if (MOD_RESULT == 1)
+               ModResult MOD_RESULT;
+               FIRST_MOD_RESULT(ServerInstance, OnPreCommand, MOD_RESULT, (command, command_p, user, false, cmd));
+               if (MOD_RESULT == MOD_RES_DENY)
                        return true;
 
                /*
@@ -324,7 +320,7 @@ bool CommandParser::ProcessCommand(User *user, std::string &cmd)
                {
                        // BE CAREFUL: .end() returns past the end of the vector, hence decrement.
                        std::vector<std::string>::iterator it = --command_p.end();
-               
+
                        lparam.insert(0, " " + *(it));
                        command_p.erase(it); // remove last element
                }
@@ -345,21 +341,11 @@ bool CommandParser::ProcessCommand(User *user, std::string &cmd)
         * We call OnPreCommand here seperately if the command exists, so the magic above can
         * truncate to max_params if necessary. -- w00t
         */
-       int MOD_RESULT = 0;
-       FOREACH_RESULT(I_OnPreCommand,OnPreCommand(command, command_p, user, false, cmd));
-       if (MOD_RESULT == 1)
+       ModResult MOD_RESULT;
+       FIRST_MOD_RESULT(ServerInstance, OnPreCommand, MOD_RESULT, (command, command_p, user, false, cmd));
+       if (MOD_RESULT == MOD_RES_DENY)
                return true;
 
-       /* Modify the user's penalty */
-       bool do_more = true;
-       if (!user->ExemptFromPenalty)
-       {
-               user->IncreasePenalty(cm->second->Penalty);
-               do_more = (user->Penalty < 10);
-               if (!do_more)
-                       user->OverPenalty = true;
-       }
-
        /* activity resets the ping pending timer */
        if (user->MyClass)
                user->nping = ServerInstance->Time() + user->MyClass->GetPingTime();
@@ -390,7 +376,7 @@ bool CommandParser::ProcessCommand(User *user, std::string &cmd)
                                                                                user->nick.c_str(), command.c_str());
                }
 
-               ServerInstance->SNO->WriteToSnoMask('d', "%s denied for %s (%s@%s)",
+               ServerInstance->SNO->WriteToSnoMask('t', "%s denied for %s (%s@%s)",
                                command.c_str(), user->nick.c_str(), user->ident.c_str(), user->host.c_str());
                return do_more;
        }
@@ -413,9 +399,8 @@ bool CommandParser::ProcessCommand(User *user, std::string &cmd)
                cm->second->total_bytes += cmd.length();
 
                /* module calls too */
-               MOD_RESULT = 0;
-               FOREACH_RESULT(I_OnPreCommand,OnPreCommand(command, command_p, user, true, cmd));
-               if (MOD_RESULT == 1)
+               FIRST_MOD_RESULT(ServerInstance, OnPreCommand, MOD_RESULT, (command, command_p, user, true, cmd));
+               if (MOD_RESULT == MOD_RES_DENY)
                        return do_more;
 
                /*
@@ -428,7 +413,7 @@ bool CommandParser::ProcessCommand(User *user, std::string &cmd)
        }
 }
 
-void CommandParser::RemoveCommands(const char* source)
+void CommandParser::RemoveCommands(Module* source)
 {
        Commandtable::iterator i,safei;
        for (i = cmdlist.begin(); i != cmdlist.end();)
@@ -439,13 +424,12 @@ void CommandParser::RemoveCommands(const char* source)
        }
 }
 
-void CommandParser::RemoveCommand(Commandtable::iterator safei, const char* source)
+void CommandParser::RemoveCommand(Commandtable::iterator safei, Module* source)
 {
        Command* x = safei->second;
-       if (x->source == std::string(source))
+       if (x->creator == source)
        {
                cmdlist.erase(safei);
-               delete x;
        }
 }
 
@@ -470,26 +454,15 @@ bool CommandParser::ProcessBuffer(std::string &buffer,User *user)
        return true;
 }
 
-bool CommandParser::CreateCommand(Command *f, void* so_handle)
+bool CommandParser::CreateCommand(Command *f)
 {
-       if (so_handle)
-       {
-               if (RFCCommands.find(f->command) == RFCCommands.end())
-                       RFCCommands[f->command] = so_handle;
-               else
-               {
-                       ServerInstance->Logs->Log("COMMAND",DEFAULT,"ERK! Somehow, we loaded a cmd_*.so file twice! Only the first instance is being recorded.");
-                       return false;
-               }
-       }
-
        /* create the command and push it onto the table */
        if (cmdlist.find(f->command) == cmdlist.end())
        {
                cmdlist[f->command] = f;
                return true;
        }
-       else return false;
+       return false;
 }
 
 CommandParser::CommandParser(InspIRCd* Instance) : ServerInstance(Instance)
@@ -497,145 +470,60 @@ CommandParser::CommandParser(InspIRCd* Instance) : ServerInstance(Instance)
        para.resize(128);
 }
 
-bool CommandParser::FindSym(void** v, void* h, const std::string &name)
-{
-       *v = dlsym(h, "init_command");
-       const char* err = dlerror();
-       if (err && !(*v))
-       {
-               ServerInstance->Logs->Log("COMMAND",SPARSE, "Error loading core command %s: %s\n", name.c_str(), err);
-               return false;
-       }
-       return true;
-}
-
-bool CommandParser::ReloadCommand(std::string cmd, User* user)
+int CommandParser::TranslateUIDs(const std::vector<TranslateType> to, const std::vector<std::string> &source, std::string &dest, bool prefix_final, Command* custom_translator)
 {
-       char filename[MAXBUF];
-       std::transform(cmd.begin(), cmd.end(), cmd.begin(), ::toupper);
-
-       SharedObjectList::iterator command = RFCCommands.find(cmd);
+       std::vector<TranslateType>::const_iterator types = to.begin();
+       User* user = NULL;
+       unsigned int i;
+       int translations = 0;
+       dest.clear();
 
-       if (command != RFCCommands.end())
+       for(i=0; i < source.size(); i++)
        {
-               Command* cmdptr = cmdlist.find(cmd)->second;
-               cmdlist.erase(cmdlist.find(cmd));
+               TranslateType t;
+               std::string item = source[i];
 
-               RFCCommands.erase(cmd);
-               std::transform(cmd.begin(), cmd.end(), cmd.begin(), ::tolower);
-               delete cmdptr;
-               dlclose(command->second);
-
-               snprintf(filename, MAXBUF, "cmd_%s.so", cmd.c_str());
-               const char* err = this->LoadCommand(filename);
-               if (err)
+               if (types == to.end())
+                       t = TR_TEXT;
+               else
                {
-                       if (user)
-                               user->WriteServ("NOTICE %s :*** Error loading 'cmd_%s.so': %s", user->nick.c_str(), cmd.c_str(), err);
-                       return false;
+                       t = *types;
+                       types++;
                }
 
-               return true;
-       }
-
-       return false;
-}
-
-CmdResult cmd_reload::Handle(const std::vector<std::string>& parameters, User *user)
-{
-       if (parameters.size() < 1)
-               return CMD_FAILURE;
-
-       user->WriteServ("NOTICE %s :*** Reloading command '%s'",user->nick.c_str(), parameters[0].c_str());
-       if (ServerInstance->Parser->ReloadCommand(parameters[0], user))
-       {
-               user->WriteServ("NOTICE %s :*** Successfully reloaded command '%s'", user->nick.c_str(), parameters[0].c_str());
-               ServerInstance->SNO->WriteToSnoMask('A', "RELOAD: %s reloaded the '%s' command.", user->nick.c_str(), parameters[0].c_str());
-               return CMD_SUCCESS;
-       }
-       else
-       {
-               user->WriteServ("NOTICE %s :*** Could not reload command '%s' -- fix this problem, then /REHASH as soon as possible!", user->nick.c_str(), parameters[0].c_str());
-               return CMD_FAILURE;
-       }
-}
-
-const char* CommandParser::LoadCommand(const char* name)
-{
-       char filename[MAXBUF];
-       void* h;
-       Command* (*cmd_factory_func)(InspIRCd*);
-
-       /* Command already exists? Succeed silently - this is needed for REHASH */
-       if (RFCCommands.find(name) != RFCCommands.end())
-       {
-               ServerInstance->Logs->Log("COMMAND",DEBUG,"Not reloading command %s/%s, it already exists", LIBRARYDIR, name);
-               return NULL;
-       }
-
-       snprintf(filename, MAXBUF, "%s/%s", LIBRARYDIR, name);
-       h = dlopen(filename, RTLD_NOW | RTLD_GLOBAL);
-
-       if (!h)
-       {
-               const char* n = dlerror();
-               ServerInstance->Logs->Log("COMMAND",SPARSE, "Error loading core command %s: %s", name, n);
-               return n;
-       }
-
-       if (this->FindSym((void **)&cmd_factory_func, h, name))
-       {
-               Command* newcommand = cmd_factory_func(ServerInstance);
-               this->CreateCommand(newcommand, h);
-       }
-       return NULL;
-}
-
-void CommandParser::SetupCommandTable(User* user)
-{
-       RFCCommands.clear();
-
-       if (!user)
-       {
-               printf("\nLoading core commands");
-               fflush(stdout);
-       }
+               if (prefix_final && i == source.size() - 1)
+                       dest.append(":");
 
-       DIR* library = opendir(LIBRARYDIR);
-       if (library)
-       {
-               dirent* entry = NULL;
-               while (0 != (entry = readdir(library)))
+               switch (t)
                {
-                       if (InspIRCd::Match(entry->d_name, "cmd_*.so"))
-                       {
-                               if (!user)
-                               {
-                                       printf(".");
-                                       fflush(stdout);
-                               }
-                               const char* err = this->LoadCommand(entry->d_name);
-                               if (err)
+                       case TR_NICK:
+                               /* Translate single nickname */
+                               user = ServerInstance->FindNick(item);
+                               if (user)
                                {
-                                       if (user)
-                                       {
-                                               user->WriteServ("NOTICE %s :*** Failed to load core command %s: %s", user->nick.c_str(), entry->d_name, err);
-                                       }
-                                       else
-                                       {
-                                               printf("Error loading %s: %s", entry->d_name, err);
-                                               exit(EXIT_STATUS_BADHANDLER);
-                                       }
+                                       dest.append(user->uuid);
+                                       translations++;
                                }
-                       }
+                               else
+                                       dest.append(item);
+                       break;
+                       case TR_CUSTOM:
+                               if (custom_translator)
+                                       custom_translator->EncodeParameter(item, i);
+                               dest.append(item);
+                       break;
+                       case TR_END:
+                       case TR_TEXT:
+                       default:
+                               /* Do nothing */
+                               dest.append(item);
+                       break;
                }
-               closedir(library);
-               if (!user)
-                       printf("\n");
+               if (i != source.size() - 1)
+                       dest.append(" ");
        }
 
-       if (cmdlist.find("RELOAD") == cmdlist.end())
-               this->CreateCommand(new cmd_reload(ServerInstance));
+       return translations;
 }
 
 int CommandParser::TranslateUIDs(TranslateType to, const std::string &source, std::string &dest)
@@ -658,46 +546,6 @@ int CommandParser::TranslateUIDs(TranslateType to, const std::string &source, st
                        else
                                dest = source;
                break;
-               case TR_NICKLIST:
-               {
-                       /* Translate comma seperated list of nicknames */
-                       irc::commasepstream items(source);
-                       while (items.GetToken(item))
-                       {
-                               user = ServerInstance->FindNick(item);
-                               if (user)
-                               {
-                                       dest.append(user->uuid);
-                                       translations++;
-                               }
-                               else
-                                       dest.append(item);
-                               dest.append(",");
-                       }
-                       if (!dest.empty())
-                               dest.erase(dest.end() - 1);
-               }
-               break;
-               case TR_SPACENICKLIST:
-               {
-                       /* Translate space seperated list of nicknames */
-                       irc::spacesepstream items(source);
-                       while (items.GetToken(item))
-                       {
-                               user = ServerInstance->FindNick(item);
-                               if (user)
-                               {
-                                       dest.append(user->uuid);
-                                       translations++;
-                               }
-                               else
-                                       dest.append(item);
-                               dest.append(" ");
-                       }
-                       if (!dest.empty())
-                               dest.erase(dest.end() - 1);
-               }
-               break;
                case TR_END:
                case TR_TEXT:
                default:
@@ -708,5 +556,3 @@ int CommandParser::TranslateUIDs(TranslateType to, const std::string &source, st
 
        return translations;
 }
-
-