]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/command_parse.cpp
(TEST CODE) remote ping, do not use until debugged
[user/henk/code/inspircd.git] / src / command_parse.cpp
index 76b4a44de3ae5d18188479a761a14ae992d04ab4..311def7d2f0451a53f6ea5dbdd8ce3d23930e9a4 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2005 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *                <Craig@chatspike.net>
@@ -60,6 +60,13 @@ using namespace std;
 #include "command_parse.h"
 #include "ctables.h"
 
+#ifdef GCC3
+#define nspace __gnu_cxx
+#else
+#define nspace std
+#endif
+
+
 extern InspIRCd* ServerInstance;
 
 extern std::vector<Module*> modules;
@@ -68,15 +75,13 @@ extern std::vector<InspSocket*> module_sockets;
 extern std::vector<userrec*> local_users;
 
 extern int MODCOUNT;
-extern InspSocket* socket_ref[65535];
+extern InspSocket* socket_ref[MAX_DESCRIPTORS];
 extern time_t TIME;
 
-extern SocketEngine* SE;
-
 // This table references users by file descriptor.
 // its an array to make it VERY fast, as all lookups are referenced
 // by an integer, meaning there is no need for a scan/search operation.
-extern userrec* fd_ref_table[65536];
+extern userrec* fd_ref_table[MAX_DESCRIPTORS];
 
 extern Server* MyServer;
 extern ServerConfig *Config;
@@ -163,7 +168,7 @@ int CommandParser::LoopCall(command_t* fn, char **parameters, int pcnt, userrec
                         plist[i] = '\0';
                         strlcpy(blog[j++],param,MAXBUF);
                         param = plist+i+1;
-                        if (j>20)
+                        if ((unsigned int)j > Config->MaxTargets)
                         {
                                 WriteServ(u->fd,"407 %s %s :Too many targets in list, message not delivered.",u->nick,blog[j-1]);
                                 return 1;
@@ -248,15 +253,14 @@ int CommandParser::LoopCall(command_t* fn, char **parameters, int pcnt, userrec
 
 bool CommandParser::IsValidCommand(std::string &commandname, int pcnt, userrec * user)
 {
-        for (unsigned int i = 0; i < cmdlist.size(); i++)
-        {
-                if (cmdlist[i]->command == commandname)
-                {
-                        if ((pcnt>=cmdlist[i]->min_params) && (cmdlist[i]->source != "<core>"))
+       nspace::hash_map<std::string,command_t*>::iterator n = cmdlist.find(commandname);
+       if (n != cmdlist.end())
+       {
+                        if ((pcnt>=n->second->min_params) && (n->second->source != "<core>"))
                         {
-                                if ((strchr(user->modes,cmdlist[i]->flags_needed)) || (!cmdlist[i]->flags_needed))
+                                if ((strchr(user->modes,n->second->flags_needed)) || (!n->second->flags_needed))
                                 {
-                                        if (cmdlist[i]->flags_needed)
+                                        if (n->second->flags_needed)
                                         {
                                                 if ((user->HasPermission(commandname)) || (is_uline(user->server)))
                                                 {
@@ -270,7 +274,6 @@ bool CommandParser::IsValidCommand(std::string &commandname, int pcnt, userrec *
                                         return true;
                                 }
                         }
-                }
         }
         return false;
 }
@@ -279,28 +282,26 @@ bool CommandParser::IsValidCommand(std::string &commandname, int pcnt, userrec *
 
 void CommandParser::CallHandler(std::string &commandname,char **parameters, int pcnt, userrec *user)
 {
-        for (unsigned int i = 0; i < cmdlist.size(); i++)
+       nspace::hash_map<std::string,command_t*>::iterator n = cmdlist.find(commandname);
+        if (n != cmdlist.end())
         {
-                if (cmdlist[i]->command == commandname)
-                {
-                        if (pcnt>=cmdlist[i]->min_params)
+                        if (pcnt >= n->second->min_params)
                         {
-                                if ((strchr(user->modes,cmdlist[i]->flags_needed)) || (!cmdlist[i]->flags_needed))
+                                if ((strchr(user->modes,n->second->flags_needed)) || (!n->second->flags_needed))
                                 {
-                                        if (cmdlist[i]->flags_needed)
+                                        if (n->second->flags_needed)
                                         {
                                                 if ((user->HasPermission(commandname)) || (is_uline(user->server)))
                                                 {
-                                                        cmdlist[i]->Handle(parameters,pcnt,user);
+                                                        n->second->Handle(parameters,pcnt,user);
                                                 }
                                         }
                                         else
                                         {
-                                                cmdlist[i]->Handle(parameters,pcnt,user);
+                                                n->second->Handle(parameters,pcnt,user);
                                         }
                                 }
                         }
-                }
         }
 }
 
@@ -474,14 +475,13 @@ void CommandParser::ProcessCommand(userrec *user, char* cmd)
                 }
                 else
                 {
-                        for (unsigned int i = 0; i <= strlen(cmd); i++)
+                        for (char* i = cmd; *i; i++)
                         {
-                                cmd[i] = toupper(cmd[i]);
+                                *i = toupper(*i);
                         }
                 }
 
         }
-        cmd_found = 0;
 
         if (strlen(command)>MAXCOMMAND)
         {
@@ -506,6 +506,11 @@ void CommandParser::ProcessCommand(userrec *user, char* cmd)
         }
 
         std::string xcommand = command;
+       if ((user->registered != 7) && (xcommand == "SERVER"))
+       {
+               kill_link(user,"Server connection to non-server port");
+               return;
+       }
        
        /* Tweak by brain - why was this INSIDE the mainloop? */
        if (parameters)
@@ -532,28 +537,28 @@ void CommandParser::ProcessCommand(userrec *user, char* cmd)
                return;
        }
        
-        for (unsigned int i = 0; i != cmdlist.size(); i++)
+       nspace::hash_map<std::string,command_t*>::iterator cm = cmdlist.find(xcommand);
+       
+        if (cm != cmdlist.end())
         {
-                        if ((xcommand.length() >= cmdlist[i]->command.length()) && (xcommand == cmdlist[i]->command))
+                        if (user)
                         {
-                                if (user)
+                                /* activity resets the ping pending timer */
+                                user->nping = TIME + user->pingmax;
+                                if ((items) < cm->second->min_params)
                                 {
-                                        /* activity resets the ping pending timer */
-                                        user->nping = TIME + user->pingmax;
-                                        if ((items) < cmdlist[i]->min_params)
-                                        {
-                                                log(DEBUG,"not enough parameters: %s %s",user->nick,command);
-                                                WriteServ(user->fd,"461 %s %s :Not enough parameters",user->nick,command);
-                                                return;
-                                        }
-                                        if ((!strchr(user->modes,cmdlist[i]->flags_needed)) && (cmdlist[i]->flags_needed))
+                                        log(DEBUG,"not enough parameters: %s %s",user->nick,command);
+                                        WriteServ(user->fd,"461 %s %s :Not enough parameters",user->nick,command);
+                                        return;
+                                }
+                                        if ((!strchr(user->modes,cm->second->flags_needed)) && (cm->second->flags_needed))
                                         {
                                                 log(DEBUG,"permission denied: %s %s",user->nick,command);
                                                 WriteServ(user->fd,"481 %s :Permission Denied- You do not have the required operator privilages",user->nick);
                                                 cmd_found = 1;
                                                 return;
                                         }
-                                        if ((cmdlist[i]->flags_needed) && (!user->HasPermission(xcommand)))
+                                        if ((cm->second->flags_needed) && (!user->HasPermission(xcommand)))
                                         {
                                                 log(DEBUG,"permission denied: %s %s",user->nick,command);
                                                 WriteServ(user->fd,"481 %s :Permission Denied- Oper type %s does not have access to command %s",user->nick,user->oper,command);
@@ -591,8 +596,8 @@ void CommandParser::ProcessCommand(userrec *user, char* cmd)
                                                         /* ikky /stats counters */
                                                         if (temp)
                                                         {
-                                                                cmdlist[i]->use_count++;
-                                                                cmdlist[i]->total_bytes+=strlen(temp);
+                                                                cm->second->use_count++;
+                                                                cm->second->total_bytes+=strlen(temp);
                                                         }
 
                                                         int MOD_RESULT = 0;
@@ -605,7 +610,7 @@ void CommandParser::ProcessCommand(userrec *user, char* cmd)
                                                          * command handler call, as the handler
                                                          * may free the user structure! */
 
-                                                        cmdlist[i]->Handle(command_p,items,user);
+                                                        cm->second->Handle(command_p,items,user);
                                                 return;
                                         }
                                         else
@@ -614,10 +619,8 @@ void CommandParser::ProcessCommand(userrec *user, char* cmd)
                                                 return;
                                         }
                                 }
-                                cmd_found = 1;
-                        }
         }
-        if ((!cmd_found) && (user))
+       else if (user)
         {
                 ServerInstance->stats->statsUnknown++;
                 WriteServ(user->fd,"421 %s %s :Unknown command",user->nick,command);
@@ -630,9 +633,9 @@ bool CommandParser::RemoveCommands(const char* source)
         while (go_again)
         {
                 go_again = false;
-                for (std::deque<command_t*>::iterator i = cmdlist.begin(); i != cmdlist.end(); i++)
+                for (nspace::hash_map<std::string,command_t*>::iterator i = cmdlist.begin(); i != cmdlist.end(); i++)
                 {
-                       command_t* x = (command_t*)*i;
+                       command_t* x = i->second;
                         if (x->source == std::string(source))
                         {
                                 log(DEBUG,"removecommands(%s) Removing dependent command: %s",x->source.c_str(),x->command.c_str());
@@ -701,7 +704,7 @@ void CommandParser::ProcessBuffer(const char* cmdbuf,userrec *user)
 bool CommandParser::CreateCommand(command_t *f)
 {
         /* create the command and push it onto the table */
-        cmdlist.push_back(f);
+        cmdlist[f->command] = f;
         log(DEBUG,"Added command %s (%lu parameters)",f->command.c_str(),(unsigned long)f->min_params);
        return true;
 }