]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/command_parse.cpp
Revert special's sqloper change, nice try but only half a biscuit.
[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         /* Create two lists, one for channel names, one for keys
214          */
215         irc::commasepstream items1(parameters[splithere]);
216         irc::commasepstream items2(parameters[extra]);
217         std::string item = "";
218         unsigned int max = 0;
219
220         /* Attempt to iterate these lists and call the command objech
221          * which called us, for every parameter pair until there are
222          * no more left to parse.
223          */
224         while (((item = items1.GetToken()) != "") && (max++ < ServerInstance->Config->MaxTargets))
225         {
226                 std::string extrastuff = items2.GetToken();
227                 parameters[splithere] = item.c_str();
228                 parameters[extra] = extrastuff.c_str();
229                 CommandObj->Handle(parameters,pcnt,user);
230         }
231         return 1;
232 }
233
234 int CommandParser::LoopCall(userrec* user, command_t* CommandObj, const char** parameters, int pcnt, unsigned int splithere)
235 {
236         /* First check if we have more than one item in the list, if we don't we return zero here and the handler
237          * which called us just carries on as it was.
238          */
239         if (!strchr(parameters[splithere],','))
240                 return 0;
241
242         /* Only one commasepstream here */
243         irc::commasepstream items1(parameters[splithere]);
244         std::string item = "";
245         unsigned int max = 0;
246
247         /* Parse the commasepstream until there are no tokens remaining.
248          * Each token we parse out, call the command handler that called us
249          * with it
250          */
251         while (((item = items1.GetToken()) != "") && (max++ < ServerInstance->Config->MaxTargets))
252         {
253                 parameters[splithere] = item.c_str();
254                 CommandObj->Handle(parameters,pcnt,user);
255         }
256         /* By returning 1 we tell our caller that nothing is to be done,
257          * as all the previous calls handled the data. This makes the parent
258          * return without doing any processing.
259          */
260         return 1;
261 }
262
263 bool CommandParser::IsValidCommand(const std::string &commandname, int pcnt, userrec * user)
264 {
265         nspace::hash_map<std::string,command_t*>::iterator n = cmdlist.find(commandname);
266
267         if (n != cmdlist.end())
268         {
269                 if ((pcnt>=n->second->min_params) && (n->second->source != "<core>"))
270                 {
271                         if ((!n->second->flags_needed) || (user->modes[n->second->flags_needed-65]))
272                         {
273                                 if (n->second->flags_needed)
274                                 {
275                                         return ((user->HasPermission(commandname)) || (ServerInstance->ULine(user->server)));
276                                 }
277                                 return true;
278                         }
279                 }
280         }
281         return false;
282 }
283
284 command_t* CommandParser::GetHandler(const std::string &commandname)
285 {
286         nspace::hash_map<std::string,command_t*>::iterator n = cmdlist.find(commandname);
287         if (n != cmdlist.end())
288                 return n->second;
289
290         return NULL;
291 }
292
293 // calls a handler function for a command
294
295 CmdResult CommandParser::CallHandler(const std::string &commandname,const char** parameters, int pcnt, userrec *user)
296 {
297         nspace::hash_map<std::string,command_t*>::iterator n = cmdlist.find(commandname);
298
299         if (n != cmdlist.end())
300         {
301                 if (pcnt >= n->second->min_params)
302                 {
303                         if ((!n->second->flags_needed) || (user->modes[n->second->flags_needed-65]))
304                         {
305                                 if (n->second->flags_needed)
306                                 {
307                                         if ((user->HasPermission(commandname)) || (!IS_LOCAL(user)))
308                                         {
309                                                 return n->second->Handle(parameters,pcnt,user);
310                                         }
311                                 }
312                                 else
313                                 {
314                                         return n->second->Handle(parameters,pcnt,user);
315                                 }
316                         }
317                 }
318         }
319         return CMD_INVALID;
320 }
321
322 void CommandParser::ProcessCommand(userrec *user, std::string &cmd)
323 {
324         const char *command_p[127];
325         int items = 0;
326         irc::tokenstream tokens(cmd);
327         std::string command = tokens.GetToken();
328
329         while (((para[items] = tokens.GetToken()) != "") && (items < 127))
330         {
331                 command_p[items] = para[items].c_str();
332                 items++;
333         }
334
335         std::transform(command.begin(), command.end(), command.begin(), ::toupper);
336                 
337         int MOD_RESULT = 0;
338         FOREACH_RESULT(I_OnPreCommand,OnPreCommand(command,command_p,items,user,false,cmd));
339         if (MOD_RESULT == 1) {
340                 return;
341         }
342
343         nspace::hash_map<std::string,command_t*>::iterator cm = cmdlist.find(command);
344         
345         if (cm != cmdlist.end())
346         {
347                 if (user)
348                 {
349                         /* activity resets the ping pending timer */
350                         user->nping = ServerInstance->Time() + user->pingmax;
351                         if (cm->second->flags_needed)
352                         {
353                                 if (!user->IsModeSet(cm->second->flags_needed))
354                                 {
355                                         user->WriteServ("481 %s :Permission Denied- You do not have the required operator privilages",user->nick);
356                                         return;
357                                 }
358                                 if (!user->HasPermission(command))
359                                 {
360                                         user->WriteServ("481 %s :Permission Denied- Oper type %s does not have access to command %s",user->nick,user->oper,command.c_str());
361                                         return;
362                                 }
363                         }
364                         if ((user->registered == REG_ALL) && (!*user->oper) && (cm->second->IsDisabled()))
365                         {
366                                 /* command is disabled! */
367                                 user->WriteServ("421 %s %s :This command has been disabled.",user->nick,command.c_str());
368                                 return;
369                         }
370                         if (items < cm->second->min_params)
371                         {
372                                 user->WriteServ("461 %s %s :Not enough parameters.", user->nick, command.c_str());
373                                 /* If syntax is given, display this as the 461 reply */
374                                 if ((ServerInstance->Config->SyntaxHints) && (cm->second->syntax.length()))
375                                         user->WriteServ("304 %s :SYNTAX %s %s", user->nick, cm->second->command.c_str(), cm->second->syntax.c_str());
376                                 return;
377                         }
378                         if ((user->registered == REG_ALL) || (cm->second->WorksBeforeReg()))
379                         {
380                                 /* ikky /stats counters */
381                                 cm->second->use_count++;
382                                 cm->second->total_bytes += cmd.length();
383
384                                 int MOD_RESULT = 0;
385                                 FOREACH_RESULT(I_OnPreCommand,OnPreCommand(command,command_p,items,user,true,cmd));
386                                 if (MOD_RESULT == 1)
387                                         return;
388
389                                 /*
390                                  * WARNING: nothing may come after the
391                                  * command handler call, as the handler
392                                  * may free the user structure!
393                                  */
394                                 CmdResult result = cm->second->Handle(command_p,items,user);
395
396                                 if (result != CMD_USER_DELETED)
397                                 {
398                                         FOREACH_MOD(I_OnPostCommand,OnPostCommand(command, command_p, items, user, result,cmd));
399                                 }
400                                 return;
401                         }
402                         else
403                         {
404                                 user->WriteServ("451 %s :You have not registered",command.c_str());
405                                 return;
406                         }
407                 }
408         }
409         else if (user)
410         {
411                 ServerInstance->stats->statsUnknown++;
412                 user->WriteServ("421 %s %s :Unknown command",user->nick,command.c_str());
413         }
414 }
415
416 bool CommandParser::RemoveCommands(const char* source)
417 {
418         bool go_again = true;
419
420         while (go_again)
421         {
422                 go_again = false;
423
424                 for (nspace::hash_map<std::string,command_t*>::iterator i = cmdlist.begin(); i != cmdlist.end(); i++)
425                 {
426                         command_t* x = i->second;
427                         if (x->source == std::string(source))
428                         {
429                                 ServerInstance->Log(DEBUG,"removecommands(%s) Removing dependent command: %s",x->source.c_str(),x->command.c_str());
430                                 cmdlist.erase(i);
431                                 go_again = true;
432                                 break;
433                         }
434                 }
435         }
436
437         return true;
438 }
439
440 void CommandParser::ProcessBuffer(std::string &buffer,userrec *user)
441 {
442         std::string::size_type a;
443
444         if (!user)
445                 return;
446
447         while ((a = buffer.rfind("\n")) != std::string::npos)
448                 buffer.erase(a);
449         while ((a = buffer.rfind("\r")) != std::string::npos)
450                 buffer.erase(a);
451
452         if (buffer.length())
453         {
454                 ServerInstance->Log(DEBUG,"CMDIN: %s %s",user->nick,buffer.c_str());
455                 this->ProcessCommand(user,buffer);
456         }
457 }
458
459 bool CommandParser::CreateCommand(command_t *f, void* so_handle)
460 {
461         if (so_handle)
462         {
463                 if (RFCCommands.find(f->command) == RFCCommands.end())
464                 {
465                         RFCCommands[f->command] = so_handle;
466                         ServerInstance->Log(DEFAULT,"Monitoring RFC-specified reloadable command at %8x",so_handle);
467                 }
468                 else
469                 {
470                         ServerInstance->Log(DEFAULT,"ERK! Somehow, we loaded a cmd_*.so file twice! Only the first instance is being recorded.");
471                         return false;
472                 }
473         }
474
475         /* create the command and push it onto the table */
476         if (cmdlist.find(f->command) == cmdlist.end())
477         {
478                 cmdlist[f->command] = f;
479                 ServerInstance->Log(DEBUG,"Added command %s (%lu parameters)",f->command.c_str(),(unsigned long)f->min_params);
480                 return true;
481         }
482         else return false;
483 }
484
485 CommandParser::CommandParser(InspIRCd* Instance) : ServerInstance(Instance)
486 {
487         para.resize(128);
488         this->SetupCommandTable();
489 }
490
491 bool CommandParser::FindSym(void** v, void* h)
492 {
493         *v = dlsym(h, "init_command");
494         const char* err = dlerror();
495         if (err)
496         {
497                 ServerInstance->Log(SPARSE, "Error loading core command: %s\n", err);
498                 return false;
499         }
500         return true;
501 }
502
503 bool CommandParser::ReloadCommand(const char* cmd)
504 {
505         char filename[MAXBUF];
506         char commandname[MAXBUF];
507         int y = 0;
508
509         for (const char* x = cmd; *x; x++, y++)
510                 commandname[y] = toupper(*x);
511
512         commandname[y] = 0;
513
514         SharedObjectList::iterator command = RFCCommands.find(commandname);
515
516         if (command != RFCCommands.end())
517         {
518                 command_t* cmdptr = cmdlist.find(commandname)->second;
519                 cmdlist.erase(cmdlist.find(commandname));
520
521                 for (char* x = commandname; *x; x++)
522                         *x = tolower(*x);
523
524
525                 delete cmdptr;
526                 dlclose(command->second);
527                 RFCCommands.erase(command);
528
529                 snprintf(filename, MAXBUF, "cmd_%s.so", commandname);
530                 this->LoadCommand(filename);
531
532                 return true;
533         }
534
535         return false;
536 }
537
538 CmdResult cmd_reload::Handle(const char** parameters, int pcnt, userrec *user)
539 {
540         user->WriteServ("NOTICE %s :*** Reloading command '%s'",user->nick, parameters[0]);
541         if (ServerInstance->Parser->ReloadCommand(parameters[0]))
542         {
543                 user->WriteServ("NOTICE %s :*** Successfully reloaded command '%s'", user->nick, parameters[0]);
544                 return CMD_SUCCESS;
545         }
546         else
547         {
548                 user->WriteServ("NOTICE %s :*** Could not reload command '%s'", user->nick, parameters[0]);
549                 return CMD_FAILURE;
550         }
551 }
552
553 void CommandParser::LoadCommand(const char* name)
554 {
555         char filename[MAXBUF];
556         void* h;
557         command_t* (*cmd_factory_func)(InspIRCd*);
558
559         snprintf(filename, MAXBUF, "%s/%s", LIBRARYDIR, name);
560         ServerInstance->Log(DEBUG,"Load command: %s", filename);
561
562         h = dlopen(filename, RTLD_NOW | RTLD_GLOBAL);
563
564         if (!h)
565         {
566                 ServerInstance->Log(SPARSE, "Error loading core command: %s", dlerror());
567                 return;
568         }
569
570         if (this->FindSym((void **)&cmd_factory_func, h))
571         {
572                 command_t* newcommand = cmd_factory_func(ServerInstance);
573                 this->CreateCommand(newcommand, h);
574         }
575 }
576
577 void CommandParser::SetupCommandTable()
578 {
579         RFCCommands.clear();
580
581         DIR* library = opendir(LIBRARYDIR);
582         if (library)
583         {
584                 dirent* entry = NULL;
585                 while ((entry = readdir(library)))
586                 {
587                         if (match(entry->d_name, "cmd_*.so"))
588                         {
589                                 this->LoadCommand(entry->d_name);
590                         }
591                 }
592                 closedir(library);
593         }
594
595         this->CreateCommand(new cmd_reload(ServerInstance));
596 }
597