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