]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/command_parse.cpp
dcdff1b4331490faf8e0d9b4c13194ae458b556f
[user/henk/code/inspircd.git] / src / command_parse.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #include "inspircd.h"
18 #include "configreader.h"
19 #include <algorithm>
20 #include <dirent.h>
21 #include <dlfcn.h>
22 #include "users.h"
23 #include "modules.h"
24 #include "wildcard.h"
25 #include "xline.h"
26 #include "socketengine.h"
27 #include "socket.h"
28 #include "command_parse.h"
29
30 bool InspIRCd::ULine(const char* server)
31 {
32         if (!server)
33                 return false;
34         if (!*server)
35                 return true;
36
37         return (find(Config->ulines.begin(),Config->ulines.end(),server) != Config->ulines.end());
38 }
39
40 int InspIRCd::OperPassCompare(const char* data,const char* input)
41 {
42         int MOD_RESULT = 0;
43         FOREACH_RESULT_I(this,I_OnOperCompare,OnOperCompare(data,input))
44         Log(DEBUG,"OperPassCompare: %d",MOD_RESULT);
45         if (MOD_RESULT == 1)
46                 return 0;
47         if (MOD_RESULT == -1)
48                 return 1;
49         Log(DEBUG,"strcmp fallback: '%s' '%s' %d",data,input,strcmp(data,input));
50         return strcmp(data,input);
51 }
52
53 long InspIRCd::Duration(const char* str)
54 {
55         char n_field[MAXBUF];
56         long total = 0;
57         n_field[0] = 0;
58
59         if ((!strchr(str,'s')) && (!strchr(str,'m')) && (!strchr(str,'h')) && (!strchr(str,'d')) && (!strchr(str,'w')) && (!strchr(str,'y')))
60         {
61                 std::string n = str;
62                 n += 's';
63                 return Duration(n.c_str());
64         }
65         
66         for (char* i = (char*)str; *i; i++)
67         {
68                 // if we have digits, build up a string for the value in n_field,
69                 // up to 10 digits in size.
70                 if ((*i >= '0') && (*i <= '9'))
71                 {
72                         strlcat(n_field,i,10);
73                 }
74                 else
75                 {
76                         // we dont have a digit, check for numeric tokens
77                         switch (tolower(*i))
78                         {
79                                 case 's':
80                                         total += atoi(n_field);
81                                 break;
82
83                                 case 'm':
84                                         total += (atoi(n_field)*duration_m);
85                                 break;
86
87                                 case 'h':
88                                         total += (atoi(n_field)*duration_h);
89                                 break;
90
91                                 case 'd':
92                                         total += (atoi(n_field)*duration_d);
93                                 break;
94
95                                 case 'w':
96                                         total += (atoi(n_field)*duration_w);
97                                 break;
98
99                                 case 'y':
100                                         total += (atoi(n_field)*duration_y);
101                                 break;
102                         }
103                         n_field[0] = 0;
104                 }
105         }
106         // add trailing seconds
107         total += atoi(n_field);
108         
109         return total;
110 }
111
112 /* All other ircds when doing this check usually just look for a string of *@* or *. We're smarter than that, though. */
113
114 bool InspIRCd::HostMatchesEveryone(const std::string &mask, userrec* user)
115 {
116         char buffer[MAXBUF];
117         char itrigger[MAXBUF];
118         long matches = 0;
119         
120         if (!Config->ConfValue(Config->config_data, "insane","trigger", 0, itrigger, MAXBUF))
121                 strlcpy(itrigger,"95.5",MAXBUF);
122         
123         if (Config->ConfValueBool(Config->config_data, "insane","hostmasks", 0))
124                 return false;
125         
126         for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
127         {
128                 strlcpy(buffer,u->second->ident,MAXBUF);
129                 charlcat(buffer,'@',MAXBUF);
130                 strlcat(buffer,u->second->host,MAXBUF);
131                 if (match(buffer,mask.c_str()))
132                         matches++;
133         }
134         float percent = ((float)matches / (float)clientlist.size()) * 100;
135         if (percent > (float)atof(itrigger))
136         {
137                 WriteOpers("*** \2WARNING\2: %s tried to set a G/K/E line mask of %s, which covers %.2f%% of the network!",user->nick,mask.c_str(),percent);
138                 return true;
139         }
140         return false;
141 }
142
143 bool InspIRCd::IPMatchesEveryone(const std::string &ip, userrec* user)
144 {
145         char itrigger[MAXBUF];
146         long matches = 0;
147         
148         if (!Config->ConfValue(Config->config_data, "insane","trigger",0,itrigger,MAXBUF))
149                 strlcpy(itrigger,"95.5",MAXBUF);
150         
151         if (Config->ConfValueBool(Config->config_data, "insane","ipmasks",0))
152                 return false;
153         
154         for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
155         {
156                 if (match(u->second->GetIPString(),ip.c_str(),true))
157                         matches++;
158         }
159         
160         float percent = ((float)matches / (float)clientlist.size()) * 100;
161         if (percent > (float)atof(itrigger))
162         {
163                 WriteOpers("*** \2WARNING\2: %s tried to set a Z line mask of %s, which covers %.2f%% of the network!",user->nick,ip.c_str(),percent);
164                 return true;
165         }
166         return false;
167 }
168
169 bool InspIRCd::NickMatchesEveryone(const std::string &nick, userrec* user)
170 {
171         char itrigger[MAXBUF];
172         long matches = 0;
173         
174         if (!Config->ConfValue(Config->config_data, "insane","trigger",0,itrigger,MAXBUF))
175                 strlcpy(itrigger,"95.5",MAXBUF);
176         
177         if (Config->ConfValueBool(Config->config_data, "insane","nickmasks",0))
178                 return false;
179
180         for (user_hash::iterator u = clientlist.begin(); u != clientlist.end(); u++)
181         {
182                 if (match(u->second->nick,nick.c_str()))
183                         matches++;
184         }
185         
186         float percent = ((float)matches / (float)clientlist.size()) * 100;
187         if (percent > (float)atof(itrigger))
188         {
189                 WriteOpers("*** \2WARNING\2: %s tried to set a Q line mask of %s, which covers %.2f%% of the network!",user->nick,nick.c_str(),percent);
190                 return true;
191         }
192         return false;
193 }
194
195 /* LoopCall is used to call a command classes handler repeatedly based on the contents of a comma seperated list.
196  * There are two overriden versions of this method, one of which takes two potential lists and the other takes one.
197  * We need a version which takes two potential lists for JOIN, because a JOIN may contain two lists of items at once,
198  * the channel names and their keys as follows:
199  * JOIN #chan1,#chan2,#chan3 key1,,key3
200  * Therefore, we need to deal with both lists concurrently. The first instance of this method does that by creating
201  * two instances of irc::commasepstream and reading them both together until the first runs out of tokens.
202  * The second version is much simpler and just has the one stream to read, and is used in NAMES, WHOIS, PRIVMSG etc.
203  * Both will only parse until they reach ServerInstance->Config->MaxTargets number of targets, to stop abuse via spam.
204  */
205 int CommandParser::LoopCall(userrec* user, command_t* CommandObj, const char** parameters, int pcnt, unsigned int splithere, unsigned int extra)
206 {
207         /* First check if we have more than one item in the list, if we don't we return zero here and the handler
208          * which called us just carries on as it was.
209          */
210         if (!strchr(parameters[splithere],','))
211                 return 0;
212
213         /** Some lame ircds will weed out dupes using some shitty O(n^2) algorithm.
214          * By using std::map (thanks for the idea w00t) we can cut this down a ton.
215          * ...VOOODOOOO!
216          */
217         std::map<std::string, bool> dupes;
218
219         /* Create two lists, one for channel names, one for keys
220          */
221         irc::commasepstream items1(parameters[splithere]);
222         irc::commasepstream items2(parameters[extra]);
223         std::string item = "*";
224         unsigned int max = 0;
225
226         /* Attempt to iterate these lists and call the command objech
227          * which called us, for every parameter pair until there are
228          * no more left to parse.
229          */
230         while (((item = items1.GetToken()) != "") && (max++ < ServerInstance->Config->MaxTargets))
231         {
232                 if (dupes.find(item) == dupes.end())
233                 {
234                         const char* new_parameters[127];
235
236                         for (int t = 0; (t < pcnt) && (t < 127); t++)
237                                 new_parameters[t] = parameters[t];
238
239                         std::string extrastuff = items2.GetToken();
240
241                         new_parameters[splithere] = item.c_str();
242                         new_parameters[extra] = extrastuff.c_str();
243
244                         CommandObj->Handle(new_parameters,pcnt,user);
245
246                         dupes[item] = true;
247                 }
248         }
249         return 1;
250 }
251
252 int CommandParser::LoopCall(userrec* user, command_t* CommandObj, const char** parameters, int pcnt, unsigned int splithere)
253 {
254         /* First check if we have more than one item in the list, if we don't we return zero here and the handler
255          * which called us just carries on as it was.
256          */
257         if (!strchr(parameters[splithere],','))
258                 return 0;
259
260         std::map<std::string, bool> dupes;
261
262         /* Only one commasepstream here */
263         ServerInstance->Log(DEBUG,"Splitting '%s'",parameters[splithere]);
264         irc::commasepstream items1(parameters[splithere]);
265         std::string item = "*";
266         unsigned int max = 0;
267
268         /* Parse the commasepstream until there are no tokens remaining.
269          * Each token we parse out, call the command handler that called us
270          * with it
271          */
272         while (((item = items1.GetToken()) != "") && (max++ < ServerInstance->Config->MaxTargets))
273         {
274                 if (dupes.find(item) == dupes.end())
275                 {
276                         const char* new_parameters[127];
277
278                         for (int t = 0; (t < pcnt) && (t < 127); t++)
279                                 new_parameters[t] = parameters[t];
280
281                         new_parameters[splithere] = item.c_str();
282
283                         parameters[splithere] = item.c_str();
284                         CommandObj->Handle(new_parameters,pcnt,user);
285
286                         dupes[item] = true;
287                 }
288         }
289         /* By returning 1 we tell our caller that nothing is to be done,
290          * as all the previous calls handled the data. This makes the parent
291          * return without doing any processing.
292          */
293         return 1;
294 }
295
296 bool CommandParser::IsValidCommand(const std::string &commandname, int pcnt, userrec * user)
297 {
298         nspace::hash_map<std::string,command_t*>::iterator n = cmdlist.find(commandname);
299
300         if (n != cmdlist.end())
301         {
302                 if ((pcnt>=n->second->min_params) && (n->second->source != "<core>"))
303                 {
304                         if ((!n->second->flags_needed) || (user->modes[n->second->flags_needed-65]))
305                         {
306                                 if (n->second->flags_needed)
307                                 {
308                                         return ((user->HasPermission(commandname)) || (ServerInstance->ULine(user->server)));
309                                 }
310                                 return true;
311                         }
312                 }
313         }
314         return false;
315 }
316
317 command_t* CommandParser::GetHandler(const std::string &commandname)
318 {
319         nspace::hash_map<std::string,command_t*>::iterator n = cmdlist.find(commandname);
320         if (n != cmdlist.end())
321                 return n->second;
322
323         return NULL;
324 }
325
326 // calls a handler function for a command
327
328 CmdResult CommandParser::CallHandler(const std::string &commandname,const char** parameters, int pcnt, userrec *user)
329 {
330         nspace::hash_map<std::string,command_t*>::iterator n = cmdlist.find(commandname);
331
332         if (n != cmdlist.end())
333         {
334                 if (pcnt >= n->second->min_params)
335                 {
336                         if ((!n->second->flags_needed) || (user->modes[n->second->flags_needed-65]))
337                         {
338                                 if (n->second->flags_needed)
339                                 {
340                                         if ((user->HasPermission(commandname)) || (!IS_LOCAL(user)))
341                                         {
342                                                 return n->second->Handle(parameters,pcnt,user);
343                                         }
344                                 }
345                                 else
346                                 {
347                                         return n->second->Handle(parameters,pcnt,user);
348                                 }
349                         }
350                 }
351         }
352         return CMD_INVALID;
353 }
354
355 void CommandParser::ProcessCommand(userrec *user, std::string &cmd)
356 {
357         const char *command_p[127];
358         int items = 0;
359         irc::tokenstream tokens(cmd);
360         std::string command = tokens.GetToken();
361
362         while (((para[items] = tokens.GetToken()) != "") && (items < 127))
363         {
364                 command_p[items] = para[items].c_str();
365                 items++;
366         }
367
368         std::transform(command.begin(), command.end(), command.begin(), ::toupper);
369                 
370         int MOD_RESULT = 0;
371         FOREACH_RESULT(I_OnPreCommand,OnPreCommand(command,command_p,items,user,false,cmd));
372         if (MOD_RESULT == 1) {
373                 return;
374         }
375
376         nspace::hash_map<std::string,command_t*>::iterator cm = cmdlist.find(command);
377         
378         if (cm != cmdlist.end())
379         {
380                 if (user)
381                 {
382                         /* activity resets the ping pending timer */
383                         user->nping = ServerInstance->Time() + user->pingmax;
384                         if (cm->second->flags_needed)
385                         {
386                                 if (!user->IsModeSet(cm->second->flags_needed))
387                                 {
388                                         user->WriteServ("481 %s :Permission Denied- You do not have the required operator privilages",user->nick);
389                                         return;
390                                 }
391                                 if (!user->HasPermission(command))
392                                 {
393                                         user->WriteServ("481 %s :Permission Denied- Oper type %s does not have access to command %s",user->nick,user->oper,command.c_str());
394                                         return;
395                                 }
396                         }
397                         if ((user->registered == REG_ALL) && (!*user->oper) && (cm->second->IsDisabled()))
398                         {
399                                 /* command is disabled! */
400                                 user->WriteServ("421 %s %s :This command has been disabled.",user->nick,command.c_str());
401                                 return;
402                         }
403                         if (items < cm->second->min_params)
404                         {
405                                 user->WriteServ("461 %s %s :Not enough parameters.", user->nick, command.c_str());
406                                 /* If syntax is given, display this as the 461 reply */
407                                 if ((ServerInstance->Config->SyntaxHints) && (cm->second->syntax.length()))
408                                         user->WriteServ("304 %s :SYNTAX %s %s", user->nick, cm->second->command.c_str(), cm->second->syntax.c_str());
409                                 return;
410                         }
411                         if ((user->registered == REG_ALL) || (cm->second->WorksBeforeReg()))
412                         {
413                                 /* ikky /stats counters */
414                                 cm->second->use_count++;
415                                 cm->second->total_bytes += cmd.length();
416
417                                 int MOD_RESULT = 0;
418                                 FOREACH_RESULT(I_OnPreCommand,OnPreCommand(command,command_p,items,user,true,cmd));
419                                 if (MOD_RESULT == 1)
420                                         return;
421
422                                 /*
423                                  * WARNING: nothing may come after the
424                                  * command handler call, as the handler
425                                  * may free the user structure!
426                                  */
427                                 CmdResult result = cm->second->Handle(command_p,items,user);
428
429                                 if (result != CMD_USER_DELETED)
430                                 {
431                                         FOREACH_MOD(I_OnPostCommand,OnPostCommand(command, command_p, items, user, result,cmd));
432                                 }
433                                 return;
434                         }
435                         else
436                         {
437                                 user->WriteServ("451 %s :You have not registered",command.c_str());
438                                 return;
439                         }
440                 }
441         }
442         else if (user)
443         {
444                 ServerInstance->stats->statsUnknown++;
445                 user->WriteServ("421 %s %s :Unknown command",user->nick,command.c_str());
446         }
447 }
448
449 bool CommandParser::RemoveCommands(const char* source)
450 {
451         bool go_again = true;
452
453         while (go_again)
454         {
455                 go_again = false;
456
457                 for (nspace::hash_map<std::string,command_t*>::iterator i = cmdlist.begin(); i != cmdlist.end(); i++)
458                 {
459                         command_t* x = i->second;
460                         if (x->source == std::string(source))
461                         {
462                                 ServerInstance->Log(DEBUG,"removecommands(%s) Removing dependent command: %s",x->source.c_str(),x->command.c_str());
463                                 cmdlist.erase(i);
464                                 go_again = true;
465                                 break;
466                         }
467                 }
468         }
469
470         return true;
471 }
472
473 void CommandParser::ProcessBuffer(std::string &buffer,userrec *user)
474 {
475         std::string::size_type a;
476
477         if (!user)
478                 return;
479
480         while ((a = buffer.rfind("\n")) != std::string::npos)
481                 buffer.erase(a);
482         while ((a = buffer.rfind("\r")) != std::string::npos)
483                 buffer.erase(a);
484
485         if (buffer.length())
486         {
487                 ServerInstance->Log(DEBUG,"CMDIN: %s %s",user->nick,buffer.c_str());
488                 this->ProcessCommand(user,buffer);
489         }
490 }
491
492 bool CommandParser::CreateCommand(command_t *f, void* so_handle)
493 {
494         if (so_handle)
495         {
496                 if (RFCCommands.find(f->command) == RFCCommands.end())
497                 {
498                         RFCCommands[f->command] = so_handle;
499                         ServerInstance->Log(DEFAULT,"Monitoring RFC-specified reloadable command at %8x",so_handle);
500                 }
501                 else
502                 {
503                         ServerInstance->Log(DEFAULT,"ERK! Somehow, we loaded a cmd_*.so file twice! Only the first instance is being recorded.");
504                         return false;
505                 }
506         }
507
508         /* create the command and push it onto the table */
509         if (cmdlist.find(f->command) == cmdlist.end())
510         {
511                 cmdlist[f->command] = f;
512                 ServerInstance->Log(DEBUG,"Added command %s (%lu parameters)",f->command.c_str(),(unsigned long)f->min_params);
513                 return true;
514         }
515         else return false;
516 }
517
518 CommandParser::CommandParser(InspIRCd* Instance) : ServerInstance(Instance)
519 {
520         para.resize(128);
521         this->SetupCommandTable();
522 }
523
524 bool CommandParser::FindSym(void** v, void* h)
525 {
526         *v = dlsym(h, "init_command");
527         const char* err = dlerror();
528         if (err)
529         {
530                 ServerInstance->Log(SPARSE, "Error loading core command: %s\n", err);
531                 return false;
532         }
533         return true;
534 }
535
536 bool CommandParser::ReloadCommand(const char* cmd)
537 {
538         char filename[MAXBUF];
539         char commandname[MAXBUF];
540         int y = 0;
541
542         for (const char* x = cmd; *x; x++, y++)
543                 commandname[y] = toupper(*x);
544
545         commandname[y] = 0;
546
547         SharedObjectList::iterator command = RFCCommands.find(commandname);
548
549         if (command != RFCCommands.end())
550         {
551                 command_t* cmdptr = cmdlist.find(commandname)->second;
552                 cmdlist.erase(cmdlist.find(commandname));
553
554                 for (char* x = commandname; *x; x++)
555                         *x = tolower(*x);
556
557
558                 delete cmdptr;
559                 dlclose(command->second);
560                 RFCCommands.erase(command);
561
562                 snprintf(filename, MAXBUF, "cmd_%s.so", commandname);
563                 this->LoadCommand(filename);
564
565                 return true;
566         }
567
568         return false;
569 }
570
571 CmdResult cmd_reload::Handle(const char** parameters, int pcnt, userrec *user)
572 {
573         user->WriteServ("NOTICE %s :*** Reloading command '%s'",user->nick, parameters[0]);
574         if (ServerInstance->Parser->ReloadCommand(parameters[0]))
575         {
576                 user->WriteServ("NOTICE %s :*** Successfully reloaded command '%s'", user->nick, parameters[0]);
577                 return CMD_SUCCESS;
578         }
579         else
580         {
581                 user->WriteServ("NOTICE %s :*** Could not reload command '%s'", user->nick, parameters[0]);
582                 return CMD_FAILURE;
583         }
584 }
585
586 void CommandParser::LoadCommand(const char* name)
587 {
588         char filename[MAXBUF];
589         void* h;
590         command_t* (*cmd_factory_func)(InspIRCd*);
591
592         snprintf(filename, MAXBUF, "%s/%s", LIBRARYDIR, name);
593         ServerInstance->Log(DEBUG,"Load command: %s", filename);
594
595         h = dlopen(filename, RTLD_NOW | RTLD_GLOBAL);
596
597         if (!h)
598         {
599                 ServerInstance->Log(SPARSE, "Error loading core command: %s", dlerror());
600                 return;
601         }
602
603         if (this->FindSym((void **)&cmd_factory_func, h))
604         {
605                 command_t* newcommand = cmd_factory_func(ServerInstance);
606                 this->CreateCommand(newcommand, h);
607         }
608 }
609
610 void CommandParser::SetupCommandTable()
611 {
612         RFCCommands.clear();
613
614         DIR* library = opendir(LIBRARYDIR);
615         if (library)
616         {
617                 dirent* entry = NULL;
618                 while ((entry = readdir(library)))
619                 {
620                         if (match(entry->d_name, "cmd_*.so"))
621                         {
622                                 this->LoadCommand(entry->d_name);
623                         }
624                 }
625                 closedir(library);
626         }
627
628         this->CreateCommand(new cmd_reload(ServerInstance));
629 }
630