]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/command_parse.cpp
Release 2.0.16
[user/henk/code/inspircd.git] / src / command_parse.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
7  *   Copyright (C) 2005-2008 Craig Edwards <craigedwards@brainbox.cc>
8  *   Copyright (C) 2006-2007 Dennis Friis <peavey@inspircd.org>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25
26 int InspIRCd::PassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype)
27 {
28         ModResult res;
29         FIRST_MOD_RESULT(OnPassCompare, res, (ex, data, input, hashtype));
30
31         /* Module matched */
32         if (res == MOD_RES_ALLOW)
33                 return 0;
34
35         /* Module explicitly didnt match */
36         if (res == MOD_RES_DENY)
37                 return 1;
38
39         /* We dont handle any hash types except for plaintext - Thanks tra26 */
40         if (!hashtype.empty() && hashtype != "plaintext")
41                 /* See below. 1 because they dont match */
42                 return 1;
43
44         return (data != input); // this seems back to front, but returns 0 if they *match*, 1 else
45 }
46
47 /* LoopCall is used to call a command classes handler repeatedly based on the contents of a comma seperated list.
48  * There are two overriden versions of this method, one of which takes two potential lists and the other takes one.
49  * We need a version which takes two potential lists for JOIN, because a JOIN may contain two lists of items at once,
50  * the channel names and their keys as follows:
51  * JOIN #chan1,#chan2,#chan3 key1,,key3
52  * Therefore, we need to deal with both lists concurrently. The first instance of this method does that by creating
53  * two instances of irc::commasepstream and reading them both together until the first runs out of tokens.
54  * The second version is much simpler and just has the one stream to read, and is used in NAMES, WHOIS, PRIVMSG etc.
55  * Both will only parse until they reach ServerInstance->Config->MaxTargets number of targets, to stop abuse via spam.
56  */
57 int CommandParser::LoopCall(User* user, Command* CommandObj, const std::vector<std::string>& parameters, unsigned int splithere, int extra, bool usemax)
58 {
59         if (splithere >= parameters.size())
60                 return 0;
61
62         if (extra >= (signed)parameters.size())
63                 extra = -1;
64
65         /* First check if we have more than one item in the list, if we don't we return zero here and the handler
66          * which called us just carries on as it was.
67          */
68         if (parameters[splithere].find(',') == std::string::npos)
69                 return 0;
70
71         /** Some lame ircds will weed out dupes using some shitty O(n^2) algorithm.
72          * By using std::set (thanks for the idea w00t) we can cut this down a ton.
73          * ...VOOODOOOO!
74          */
75         std::set<irc::string> dupes;
76
77         /* Create two lists, one for channel names, one for keys
78          */
79         irc::commasepstream items1(parameters[splithere]);
80         irc::commasepstream items2(extra >= 0 ? parameters[extra] : "");
81         std::string extrastuff;
82         std::string item;
83         unsigned int max = 0;
84
85         /* Attempt to iterate these lists and call the command objech
86          * which called us, for every parameter pair until there are
87          * no more left to parse.
88          */
89         while (items1.GetToken(item) && (!usemax || max++ < ServerInstance->Config->MaxTargets))
90         {
91                 if (dupes.find(item.c_str()) == dupes.end())
92                 {
93                         std::vector<std::string> new_parameters(parameters);
94
95                         if (!items2.GetToken(extrastuff))
96                                 extrastuff.clear();
97
98                         new_parameters[splithere] = item;
99                         if (extra >= 0)
100                                 new_parameters[extra] = extrastuff;
101
102                         CommandObj->Handle(new_parameters, user);
103
104                         dupes.insert(item.c_str());
105                 }
106         }
107         return 1;
108 }
109
110 bool CommandParser::IsValidCommand(const std::string &commandname, unsigned int pcnt, User * user)
111 {
112         Commandtable::iterator n = cmdlist.find(commandname);
113
114         if (n != cmdlist.end())
115         {
116                 if ((pcnt >= n->second->min_params))
117                 {
118                         if (IS_LOCAL(user) && n->second->flags_needed)
119                         {
120                                 if (user->IsModeSet(n->second->flags_needed))
121                                 {
122                                         return (user->HasPermission(commandname));
123                                 }
124                         }
125                         else
126                         {
127                                 return true;
128                         }
129                 }
130         }
131         return false;
132 }
133
134 Command* CommandParser::GetHandler(const std::string &commandname)
135 {
136         Commandtable::iterator n = cmdlist.find(commandname);
137         if (n != cmdlist.end())
138                 return n->second;
139
140         return NULL;
141 }
142
143 // calls a handler function for a command
144
145 CmdResult CommandParser::CallHandler(const std::string &commandname, const std::vector<std::string>& parameters, User *user)
146 {
147         Commandtable::iterator n = cmdlist.find(commandname);
148
149         if (n != cmdlist.end())
150         {
151                 if ((!parameters.empty()) && (parameters.back().empty()) && (!n->second->allow_empty_last_param))
152                         return CMD_INVALID;
153
154                 if (parameters.size() >= n->second->min_params)
155                 {
156                         bool bOkay = false;
157
158                         if (IS_LOCAL(user) && n->second->flags_needed)
159                         {
160                                 /* if user is local, and flags are needed .. */
161
162                                 if (user->IsModeSet(n->second->flags_needed))
163                                 {
164                                         /* if user has the flags, and now has the permissions, go ahead */
165                                         if (user->HasPermission(commandname))
166                                                 bOkay = true;
167                                 }
168                         }
169                         else
170                         {
171                                 /* remote or no flags required anyway */
172                                 bOkay = true;
173                         }
174
175                         if (bOkay)
176                         {
177                                 return n->second->Handle(parameters,user);
178                         }
179                 }
180         }
181         return CMD_INVALID;
182 }
183
184 bool CommandParser::ProcessCommand(LocalUser *user, std::string &cmd)
185 {
186         std::vector<std::string> command_p;
187         irc::tokenstream tokens(cmd);
188         std::string command, token;
189         tokens.GetToken(command);
190
191         /* A client sent a nick prefix on their command (ick)
192          * rhapsody and some braindead bouncers do this --
193          * the rfc says they shouldnt but also says the ircd should
194          * discard it if they do.
195          */
196         if (command[0] == ':')
197                 tokens.GetToken(command);
198
199         while (tokens.GetToken(token) && (command_p.size() <= MAXPARAMETERS))
200                 command_p.push_back(token);
201
202         std::transform(command.begin(), command.end(), command.begin(), ::toupper);
203
204         /* find the command, check it exists */
205         Commandtable::iterator cm = cmdlist.find(command);
206
207         /* Modify the user's penalty regardless of whether or not the command exists */
208         bool do_more = true;
209         if (!user->HasPrivPermission("users/flood/no-throttle"))
210         {
211                 // If it *doesn't* exist, give it a slightly heftier penalty than normal to deter flooding us crap
212                 user->CommandFloodPenalty += cm != cmdlist.end() ? cm->second->Penalty * 1000 : 2000;
213         }
214
215
216         if (cm == cmdlist.end())
217         {
218                 ModResult MOD_RESULT;
219                 FIRST_MOD_RESULT(OnPreCommand, MOD_RESULT, (command, command_p, user, false, cmd));
220                 if (MOD_RESULT == MOD_RES_DENY)
221                         return true;
222
223                 /*
224                  * This double lookup is in case a module (abbreviation) wishes to change a command.
225                  * Sure, the double lookup is a bit painful, but bear in mind this only happens for unknowns anyway.
226                  *
227                  * Thanks dz for making me actually understand why this is necessary!
228                  * -- w00t
229                  */
230                 cm = cmdlist.find(command);
231                 if (cm == cmdlist.end())
232                 {
233                         if (user->registered == REG_ALL)
234                                 user->WriteNumeric(ERR_UNKNOWNCOMMAND, "%s %s :Unknown command",user->nick.c_str(),command.c_str());
235                         ServerInstance->stats->statsUnknown++;
236                         return true;
237                 }
238         }
239
240         if (cm->second->max_params && command_p.size() > cm->second->max_params)
241         {
242                 /*
243                  * command_p input (assuming max_params 1):
244                  *      this
245                  *      is
246                  *      a
247                  *      test
248                  */
249                 std::string lparam;
250
251                 /*
252                  * The '-1' here is a clever trick, we'll go backwards throwing everything into a temporary param
253                  * and then just toss that into the array.
254                  * -- w00t
255                  */
256                 while (command_p.size() > (cm->second->max_params - 1))
257                 {
258                         // BE CAREFUL: .end() returns past the end of the vector, hence decrement.
259                         std::vector<std::string>::iterator it = command_p.end() - 1;
260
261                         lparam.insert(0, " " + *(it));
262                         command_p.erase(it); // remove last element
263                 }
264
265                 /* we now have (each iteration):
266                  *      ' test'
267                  *      ' a test'
268                  *      ' is a test' <-- final string
269                  * ...now remove the ' ' at the start...
270                  */
271                 lparam.erase(lparam.begin());
272
273                 /* param is now 'is a test', which is exactly what we wanted! */
274                 command_p.push_back(lparam);
275         }
276
277         /*
278          * We call OnPreCommand here seperately if the command exists, so the magic above can
279          * truncate to max_params if necessary. -- w00t
280          */
281         ModResult MOD_RESULT;
282         FIRST_MOD_RESULT(OnPreCommand, MOD_RESULT, (command, command_p, user, false, cmd));
283         if (MOD_RESULT == MOD_RES_DENY)
284                 return true;
285
286         /* activity resets the ping pending timer */
287         user->nping = ServerInstance->Time() + user->MyClass->GetPingTime();
288
289         if (cm->second->flags_needed)
290         {
291                 if (!user->IsModeSet(cm->second->flags_needed))
292                 {
293                         user->WriteNumeric(ERR_NOPRIVILEGES, "%s :Permission Denied - You do not have the required operator privileges",user->nick.c_str());
294                         return do_more;
295                 }
296                 if (!user->HasPermission(command))
297                 {
298                         user->WriteNumeric(ERR_NOPRIVILEGES, "%s :Permission Denied - Oper type %s does not have access to command %s",
299                                 user->nick.c_str(), user->oper->NameStr(), command.c_str());
300                         return do_more;
301                 }
302         }
303         if ((user->registered == REG_ALL) && (!IS_OPER(user)) && (cm->second->IsDisabled()))
304         {
305                 /* command is disabled! */
306                 if (ServerInstance->Config->DisabledDontExist)
307                 {
308                         user->WriteNumeric(ERR_UNKNOWNCOMMAND, "%s %s :Unknown command",user->nick.c_str(),command.c_str());
309                 }
310                 else
311                 {
312                         user->WriteNumeric(ERR_UNKNOWNCOMMAND, "%s %s :This command has been disabled.",
313                                                                                 user->nick.c_str(), command.c_str());
314                 }
315
316                 ServerInstance->SNO->WriteToSnoMask('a', "%s denied for %s (%s@%s)",
317                                 command.c_str(), user->nick.c_str(), user->ident.c_str(), user->host.c_str());
318                 return do_more;
319         }
320
321         if ((!command_p.empty()) && (command_p.back().empty()) && (!cm->second->allow_empty_last_param))
322                 command_p.pop_back();
323
324         if (command_p.size() < cm->second->min_params)
325         {
326                 user->WriteNumeric(ERR_NEEDMOREPARAMS, "%s %s :Not enough parameters.", user->nick.c_str(), command.c_str());
327                 if ((ServerInstance->Config->SyntaxHints) && (user->registered == REG_ALL) && (cm->second->syntax.length()))
328                         user->WriteNumeric(RPL_SYNTAX, "%s :SYNTAX %s %s", user->nick.c_str(), cm->second->name.c_str(), cm->second->syntax.c_str());
329                 return do_more;
330         }
331         if ((user->registered != REG_ALL) && (!cm->second->WorksBeforeReg()))
332         {
333                 user->WriteNumeric(ERR_NOTREGISTERED, "%s :You have not registered",command.c_str());
334                 return do_more;
335         }
336         else
337         {
338                 /* passed all checks.. first, do the (ugly) stats counters. */
339                 cm->second->use_count++;
340                 cm->second->total_bytes += cmd.length();
341
342                 /* module calls too */
343                 FIRST_MOD_RESULT(OnPreCommand, MOD_RESULT, (command, command_p, user, true, cmd));
344                 if (MOD_RESULT == MOD_RES_DENY)
345                         return do_more;
346
347                 /*
348                  * WARNING: be careful, the user may be deleted soon
349                  */
350                 CmdResult result = cm->second->Handle(command_p, user);
351
352                 FOREACH_MOD(I_OnPostCommand,OnPostCommand(command, command_p, user, result,cmd));
353                 return do_more;
354         }
355 }
356
357 void CommandParser::RemoveCommand(Command* x)
358 {
359         Commandtable::iterator n = cmdlist.find(x->name);
360         if (n != cmdlist.end() && n->second == x)
361                 cmdlist.erase(n);
362 }
363
364 Command::~Command()
365 {
366         ServerInstance->Parser->RemoveCommand(this);
367 }
368
369 bool CommandParser::ProcessBuffer(std::string &buffer,LocalUser *user)
370 {
371         if (!user || buffer.empty())
372                 return true;
373
374         ServerInstance->Logs->Log("USERINPUT", RAWIO, "C[%s] I :%s %s",
375                 user->uuid.c_str(), user->nick.c_str(), buffer.c_str());
376         return ProcessCommand(user,buffer);
377 }
378
379 bool CommandParser::AddCommand(Command *f)
380 {
381         /* create the command and push it onto the table */
382         if (cmdlist.find(f->name) == cmdlist.end())
383         {
384                 cmdlist[f->name] = f;
385                 return true;
386         }
387         return false;
388 }
389
390 CommandParser::CommandParser()
391 {
392 }
393
394 int CommandParser::TranslateUIDs(const std::vector<TranslateType> to, const std::vector<std::string> &source, std::string &dest, bool prefix_final, Command* custom_translator)
395 {
396         std::vector<TranslateType>::const_iterator types = to.begin();
397         User* user = NULL;
398         unsigned int i;
399         int translations = 0;
400         dest.clear();
401
402         for(i=0; i < source.size(); i++)
403         {
404                 TranslateType t;
405                 std::string item = source[i];
406
407                 if (types == to.end())
408                         t = TR_TEXT;
409                 else
410                 {
411                         t = *types;
412                         types++;
413                 }
414
415                 if (prefix_final && i == source.size() - 1)
416                         dest.append(":");
417
418                 switch (t)
419                 {
420                         case TR_NICK:
421                                 /* Translate single nickname */
422                                 user = ServerInstance->FindNick(item);
423                                 if (user)
424                                 {
425                                         dest.append(user->uuid);
426                                         translations++;
427                                 }
428                                 else
429                                         dest.append(item);
430                         break;
431                         case TR_CUSTOM:
432                                 if (custom_translator)
433                                         custom_translator->EncodeParameter(item, i);
434                                 dest.append(item);
435                         break;
436                         case TR_END:
437                         case TR_TEXT:
438                         default:
439                                 /* Do nothing */
440                                 dest.append(item);
441                         break;
442                 }
443                 if (i != source.size() - 1)
444                         dest.append(" ");
445         }
446
447         return translations;
448 }
449
450 int CommandParser::TranslateUIDs(TranslateType to, const std::string &source, std::string &dest)
451 {
452         User* user = NULL;
453         int translations = 0;
454         dest.clear();
455
456         switch (to)
457         {
458                 case TR_NICK:
459                         /* Translate single nickname */
460                         user = ServerInstance->FindNick(source);
461                         if (user)
462                         {
463                                 dest = user->uuid;
464                                 translations++;
465                         }
466                         else
467                                 dest = source;
468                 break;
469                 case TR_END:
470                 case TR_TEXT:
471                 default:
472                         /* Do nothing */
473                         dest = source;
474                 break;
475         }
476
477         return translations;
478 }