]> jfr.im git - irc/rqf/shadowircd.git/blob - src/parse.c
Update comments for parv[0] removal.
[irc/rqf/shadowircd.git] / src / parse.c
1 /*
2 * charybdis: an advanced ircd.
3 * parse.c: The message parser.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 * Copyright (C) 2007 William Pitcock
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
24 *
25 * $Id: parse.c 3177 2007-02-01 00:19:14Z jilles $
26 */
27
28 #include "stdinc.h"
29 #include "parse.h"
30 #include "client.h"
31 #include "channel.h"
32 #include "common.h"
33 #include "hash.h"
34 #include "match.h"
35 #include "ircd.h"
36 #include "numeric.h"
37 #include "logger.h"
38 #include "s_stats.h"
39 #include "send.h"
40 #include "msg.h"
41 #include "s_conf.h"
42 #include "s_serv.h"
43 #include "packet.h"
44
45 static struct Dictionary *cmd_dict = NULL;
46 struct Dictionary *alias_dict = NULL;
47
48 /*
49 * NOTE: parse() should not be called recursively by other functions!
50 */
51 static char *sender;
52
53 /* parv[0] is not used, and parv[LAST] == NULL */
54 static char *para[MAXPARA + 2];
55
56 static void cancel_clients(struct Client *, struct Client *, char *);
57 static void remove_unknown(struct Client *, char *, char *);
58
59 static void do_numeric(char[], struct Client *, struct Client *, int, char **);
60 static void do_alias(struct alias_entry *, struct Client *, char *);
61
62 static int handle_command(struct Message *, struct Client *, struct Client *, int, const char**);
63
64 static char buffer[1024];
65
66 /* turn a string into a parc/parv pair */
67
68
69 static inline int
70 string_to_array(char *string, char **parv)
71 {
72 char *p, *buf = string;
73 int x = 1;
74
75 parv[x] = NULL;
76 while (*buf == ' ') /* skip leading spaces */
77 buf++;
78 if(*buf == '\0') /* ignore all-space args */
79 return x;
80
81 do
82 {
83 if(*buf == ':') /* Last parameter */
84 {
85 buf++;
86 parv[x++] = buf;
87 parv[x] = NULL;
88 return x;
89 }
90 else
91 {
92 parv[x++] = buf;
93 parv[x] = NULL;
94 if((p = strchr(buf, ' ')) != NULL)
95 {
96 *p++ = '\0';
97 buf = p;
98 }
99 else
100 return x;
101 }
102 while (*buf == ' ')
103 buf++;
104 if(*buf == '\0')
105 return x;
106 }
107 /* we can go upto parv[MAXPARA], as parv[0] is skipped */
108 while (x < MAXPARA);
109
110 if(*p == ':')
111 p++;
112
113 parv[x++] = p;
114 parv[x] = NULL;
115 return x;
116 }
117
118 /* parse()
119 *
120 * given a raw buffer, parses it and generates parv, parc and sender
121 */
122 void
123 parse(struct Client *client_p, char *pbuffer, char *bufend)
124 {
125 struct Client *from = client_p;
126 char *ch;
127 char *s;
128 char *end;
129 int i = 1;
130 char *numeric = 0;
131 struct Message *mptr;
132
133 s_assert(MyConnect(client_p));
134 s_assert(client_p->localClient->F->fd >= 0);
135 if(IsAnyDead(client_p))
136 return;
137
138 for (ch = pbuffer; *ch == ' '; ch++) /* skip spaces */
139 /* null statement */ ;
140
141 para[0] = from->name;
142
143 if(*ch == ':')
144 {
145 ch++;
146
147 /* point sender to the sender param */
148 sender = ch;
149
150 if((s = strchr(ch, ' ')))
151 {
152 *s = '\0';
153 s++;
154 ch = s;
155 }
156
157 if(*sender && IsServer(client_p))
158 {
159 from = find_client(sender);
160
161 /* didnt find any matching client, issue a kill */
162 if(from == NULL)
163 {
164 ServerStats.is_unpf++;
165 remove_unknown(client_p, sender, pbuffer);
166 return;
167 }
168
169 para[0] = from->name;
170
171 /* fake direction, hmm. */
172 if(from->from != client_p)
173 {
174 ServerStats.is_wrdi++;
175 cancel_clients(client_p, from, pbuffer);
176 return;
177 }
178 }
179 while (*ch == ' ')
180 ch++;
181 }
182
183 if(*ch == '\0')
184 {
185 ServerStats.is_empt++;
186 return;
187 }
188
189 /* at this point there must be some sort of command parameter */
190
191 /*
192 * Extract the command code from the packet. Point s to the end
193 * of the command code and calculate the length using pointer
194 * arithmetic. Note: only need length for numerics and *all*
195 * numerics must have parameters and thus a space after the command
196 * code. -avalon
197 */
198
199 /* EOB is 3 chars long but is not a numeric */
200
201 if(*(ch + 3) == ' ' && /* ok, lets see if its a possible numeric.. */
202 IsDigit(*ch) && IsDigit(*(ch + 1)) && IsDigit(*(ch + 2)))
203 {
204 mptr = NULL;
205 numeric = ch;
206 ServerStats.is_num++;
207 s = ch + 3; /* I know this is ' ' from above if */
208 *s++ = '\0'; /* blow away the ' ', and point s to next part */
209 }
210 else
211 {
212 int ii = 0;
213
214 if((s = strchr(ch, ' ')))
215 *s++ = '\0';
216
217 mptr = irc_dictionary_retrieve(cmd_dict, ch);
218
219 /* no command or its encap only, error */
220 if(!mptr || !mptr->cmd)
221 {
222 /*
223 * Note: Give error message *only* to recognized
224 * persons. It's a nightmare situation to have
225 * two programs sending "Unknown command"'s or
226 * equivalent to each other at full blast....
227 * If it has got to person state, it at least
228 * seems to be well behaving. Perhaps this message
229 * should never be generated, though... --msa
230 * Hm, when is the buffer empty -- if a command
231 * code has been found ?? -Armin
232 */
233 if(pbuffer[0] != '\0')
234 {
235 if (IsPerson(client_p))
236 {
237 struct alias_entry *aptr = irc_dictionary_retrieve(alias_dict, ch);
238 if (aptr != NULL)
239 {
240 do_alias(aptr, client_p, s);
241 return;
242 }
243 }
244 if(IsPerson(from))
245 {
246 sendto_one(from, form_str(ERR_UNKNOWNCOMMAND),
247 me.name, from->name, ch);
248 }
249 }
250 ServerStats.is_unco++;
251 return;
252 }
253
254 ii = bufend - ((s) ? s : ch);
255 mptr->bytes += ii;
256 }
257
258 end = bufend - 1;
259
260 /* XXX this should be done before parse() is called */
261 if(*end == '\n')
262 *end-- = '\0';
263 if(*end == '\r')
264 *end = '\0';
265
266 if(s != NULL)
267 i = string_to_array(s, para);
268
269 if(mptr == NULL)
270 {
271 do_numeric(numeric, client_p, from, i, para);
272 return;
273 }
274
275 if(handle_command(mptr, client_p, from, i, /* XXX discards const!!! */ (const char **)para) < -1)
276 {
277 char *p;
278 for (p = pbuffer; p <= end; p += 8)
279 {
280 /* HACK HACK */
281 /* Its expected this nasty code can be removed
282 * or rewritten later if still needed.
283 */
284 if((unsigned long) (p + 8) > (unsigned long) end)
285 {
286 for (; p <= end; p++)
287 {
288 ilog(L_MAIN, "%02x |%c", p[0], p[0]);
289 }
290 }
291 else
292 ilog(L_MAIN,
293 "%02x %02x %02x %02x %02x %02x %02x %02x |%c%c%c%c%c%c%c%c",
294 p[0], p[1], p[2], p[3], p[4], p[5],
295 p[6], p[7], p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7]);
296 }
297 }
298
299 }
300
301 /*
302 * handle_command
303 *
304 * inputs - pointer to message block
305 * - pointer to client
306 * - pointer to client message is from
307 * - count of number of args
308 * - pointer to argv[] array
309 * output - -1 if error from server
310 * side effects -
311 */
312 static int
313 handle_command(struct Message *mptr, struct Client *client_p,
314 struct Client *from, int i, const char** hpara)
315 {
316 struct MessageEntry ehandler;
317 MessageHandler handler = 0;
318 char squitreason[80];
319
320 if(IsAnyDead(client_p))
321 return -1;
322
323 if(IsServer(client_p))
324 mptr->rcount++;
325
326 mptr->count++;
327
328 /* New patch to avoid server flooding from unregistered connects
329 - Pie-Man 07/27/2000 */
330
331 if(!IsRegistered(client_p))
332 {
333 /* if its from a possible server connection
334 * ignore it.. more than likely its a header thats sneaked through
335 */
336
337 if(IsAnyServer(client_p) && !(mptr->flags & MFLG_UNREG))
338 return (1);
339 }
340
341 ehandler = mptr->handlers[from->handler];
342 handler = ehandler.handler;
343
344 /* check right amount of params is passed... --is */
345 if(i < ehandler.min_para ||
346 (ehandler.min_para && EmptyString(hpara[ehandler.min_para - 1])))
347 {
348 if(!IsServer(client_p))
349 {
350 sendto_one(client_p, form_str(ERR_NEEDMOREPARAMS),
351 me.name,
352 EmptyString(client_p->name) ? "*" : client_p->name,
353 mptr->cmd);
354 if(MyClient(client_p))
355 return (1);
356 else
357 return (-1);
358 }
359
360 sendto_realops_snomask(SNO_GENERAL, L_ALL,
361 "Dropping server %s due to (invalid) command '%s'"
362 " with only %d arguments (expecting %d).",
363 client_p->name, mptr->cmd, i, ehandler.min_para);
364 ilog(L_SERVER,
365 "Insufficient parameters (%d < %d) for command '%s' from %s.",
366 i, ehandler.min_para, mptr->cmd, client_p->name);
367 rb_snprintf(squitreason, sizeof squitreason,
368 "Insufficient parameters (%d < %d) for command '%s'",
369 i, ehandler.min_para, mptr->cmd);
370 exit_client(client_p, client_p, client_p, squitreason);
371 return (-1);
372 }
373
374 (*handler) (client_p, from, i, hpara);
375 return (1);
376 }
377
378 void
379 handle_encap(struct Client *client_p, struct Client *source_p,
380 const char *command, int parc, const char *parv[])
381 {
382 struct Message *mptr;
383 struct MessageEntry ehandler;
384 MessageHandler handler = 0;
385
386 parv[0] = source_p->name;
387
388 mptr = irc_dictionary_retrieve(cmd_dict, command);
389
390 if(mptr == NULL || mptr->cmd == NULL)
391 return;
392
393 ehandler = mptr->handlers[ENCAP_HANDLER];
394 handler = ehandler.handler;
395
396 if(parc < ehandler.min_para ||
397 (ehandler.min_para && EmptyString(parv[ehandler.min_para - 1])))
398 return;
399
400 (*handler) (client_p, source_p, parc, parv);
401 }
402
403 /*
404 * clear_hash_parse()
405 *
406 * inputs -
407 * output - NONE
408 * side effects - MUST MUST be called at startup ONCE before
409 * any other keyword hash routine is used.
410 *
411 */
412 void
413 clear_hash_parse()
414 {
415 cmd_dict = irc_dictionary_create(strcasecmp);
416 }
417
418 /* mod_add_cmd
419 *
420 * inputs - command name
421 * - pointer to struct Message
422 * output - none
423 * side effects - load this one command name
424 * msg->count msg->bytes is modified in place, in
425 * modules address space. Might not want to do that...
426 */
427 void
428 mod_add_cmd(struct Message *msg)
429 {
430 s_assert(msg != NULL);
431 if(msg == NULL)
432 return;
433
434 if (irc_dictionary_find(cmd_dict, msg->cmd) != NULL)
435 return;
436
437 msg->count = 0;
438 msg->rcount = 0;
439 msg->bytes = 0;
440
441 irc_dictionary_add(cmd_dict, msg->cmd, msg);
442 }
443
444 /* mod_del_cmd
445 *
446 * inputs - command name
447 * output - none
448 * side effects - unload this one command name
449 */
450 void
451 mod_del_cmd(struct Message *msg)
452 {
453 s_assert(msg != NULL);
454 if(msg == NULL)
455 return;
456
457 irc_dictionary_delete(cmd_dict, msg->cmd);
458 }
459
460 /*
461 * report_messages
462 *
463 * inputs - pointer to client to report to
464 * output - NONE
465 * side effects - NONE
466 */
467 void
468 report_messages(struct Client *source_p)
469 {
470 struct DictionaryIter iter;
471 struct Message *msg;
472 struct alias_entry *amsg;
473
474 DICTIONARY_FOREACH(msg, &iter, cmd_dict)
475 {
476 s_assert(msg->cmd != NULL);
477 sendto_one_numeric(source_p, RPL_STATSCOMMANDS,
478 form_str(RPL_STATSCOMMANDS),
479 msg->cmd, msg->count,
480 msg->bytes, msg->rcount);
481 }
482
483 DICTIONARY_FOREACH(amsg, &iter, alias_dict)
484 {
485 s_assert(amsg->name != NULL);
486 sendto_one_numeric(source_p, RPL_STATSCOMMANDS,
487 form_str(RPL_STATSCOMMANDS),
488 amsg->name, amsg->hits, 0, 0);
489 }
490 }
491
492 /* cancel_clients()
493 *
494 * inputs - client who sent us the message, client with fake
495 * direction, command
496 * outputs - a given warning about the fake direction
497 * side effects -
498 */
499 static void
500 cancel_clients(struct Client *client_p, struct Client *source_p, char *cmd)
501 {
502 /* ok, fake prefix happens naturally during a burst on a nick
503 * collision with TS5, we cant kill them because one client has to
504 * survive, so we just send an error.
505 */
506 if(IsServer(source_p) || IsMe(source_p))
507 {
508 sendto_realops_snomask(SNO_DEBUG, L_ALL,
509 "Message for %s[%s] from %s",
510 source_p->name, source_p->from->name,
511 client_p->name);
512 }
513 else
514 {
515 sendto_realops_snomask(SNO_DEBUG, L_ALL,
516 "Message for %s[%s@%s!%s] from %s (TS, ignored)",
517 source_p->name,
518 source_p->username,
519 source_p->host,
520 source_p->from->name,
521 client_p->name);
522 }
523 }
524
525 /* remove_unknown()
526 *
527 * inputs - client who gave us message, supposed sender, buffer
528 * output -
529 * side effects - kills issued for clients, squits for servers
530 */
531 static void
532 remove_unknown(struct Client *client_p, char *lsender, char *lbuffer)
533 {
534 int slen = strlen(lsender);
535
536 /* meepfoo is a nickname (ignore)
537 * #XXXXXXXX is a UID (KILL)
538 * #XX is a SID (SQUIT)
539 * meep.foo is a server (SQUIT)
540 */
541 if((IsDigit(lsender[0]) && slen == 3) ||
542 (strchr(lsender, '.') != NULL))
543 {
544 sendto_realops_snomask(SNO_DEBUG, L_ALL,
545 "Unknown prefix (%s) from %s, Squitting %s",
546 lbuffer, client_p->name, lsender);
547
548 sendto_one(client_p,
549 ":%s SQUIT %s :(Unknown prefix (%s) from %s)",
550 get_id(&me, client_p), lsender,
551 lbuffer, client_p->name);
552 }
553 else if(IsDigit(lsender[0]))
554 sendto_one(client_p, ":%s KILL %s :%s (Unknown Client)",
555 get_id(&me, client_p), lsender, me.name);
556 }
557
558
559
560 /*
561 *
562 * parc number of arguments ('sender' counted as one!)
563 * parv[1]..parv[parc-1]
564 * pointers to additional parameters, this is a NULL
565 * terminated list (parv[parc] == NULL).
566 *
567 * *WARNING*
568 * Numerics are mostly error reports. If there is something
569 * wrong with the message, just *DROP* it! Don't even think of
570 * sending back a neat error message -- big danger of creating
571 * a ping pong error message...
572 */
573 static void
574 do_numeric(char numeric[], struct Client *client_p, struct Client *source_p, int parc, char *parv[])
575 {
576 struct Client *target_p;
577 struct Channel *chptr;
578
579 if(parc < 2 || !IsServer(source_p))
580 return;
581
582 /* Remap low number numerics. */
583 if(numeric[0] == '0')
584 numeric[0] = '1';
585
586 /*
587 * Prepare the parameter portion of the message into 'buffer'.
588 * (Because the buffer is twice as large as the message buffer
589 * for the socket, no overflow can occur here... ...on current
590 * assumptions--bets are off, if these are changed --msa)
591 * Note: if buffer is non-empty, it will begin with SPACE.
592 */
593 if(parc > 1)
594 {
595 char *t = buffer; /* Current position within the buffer */
596 int i;
597 int tl; /* current length of presently being built string in t */
598 for (i = 2; i < (parc - 1); i++)
599 {
600 tl = rb_sprintf(t, " %s", parv[i]);
601 t += tl;
602 }
603 rb_sprintf(t, " :%s", parv[parc - 1]);
604 }
605
606 if((target_p = find_client(parv[1])) != NULL)
607 {
608 if(IsMe(target_p))
609 {
610 /*
611 * We shouldn't get numerics sent to us,
612 * any numerics we do get indicate a bug somewhere..
613 */
614 /* ugh. this is here because of nick collisions. when two servers
615 * relink, they burst each other their nicks, then perform collides.
616 * if there is a nick collision, BOTH servers will kill their own
617 * nicks, and BOTH will kill the other servers nick, which wont exist,
618 * because it will have been already killed by the local server.
619 *
620 * unfortunately, as we cant guarantee other servers will do the
621 * "right thing" on a nick collision, we have to keep both kills.
622 * ergo we need to ignore ERR_NOSUCHNICK. --fl_
623 */
624 /* quick comment. This _was_ tried. i.e. assume the other servers
625 * will do the "right thing" and kill a nick that is colliding.
626 * unfortunately, it did not work. --Dianora
627 */
628 /* note, now we send PING on server connect, we can
629 * also get ERR_NOSUCHSERVER..
630 */
631 if(atoi(numeric) != ERR_NOSUCHNICK &&
632 atoi(numeric) != ERR_NOSUCHSERVER)
633 sendto_realops_snomask(SNO_GENERAL, L_ADMIN,
634 "*** %s(via %s) sent a %s numeric to me: %s",
635 source_p->name,
636 client_p->name, numeric, buffer);
637 return;
638 }
639 else if(target_p->from == client_p)
640 {
641 /* This message changed direction (nick collision?)
642 * ignore it.
643 */
644 return;
645 }
646
647 /* csircd will send out unknown umode flag for +a (admin), drop it here. */
648 if((atoi(numeric) == ERR_UMODEUNKNOWNFLAG) && MyClient(target_p))
649 return;
650
651 /* Fake it for server hiding, if its our client */
652 sendto_one(target_p, ":%s %s %s%s",
653 get_id(source_p, target_p), numeric,
654 get_id(target_p, target_p), buffer);
655 return;
656 }
657 else if((chptr = find_channel(parv[1])) != NULL)
658 sendto_channel_flags(client_p, ALL_MEMBERS, source_p, chptr,
659 "%s %s%s",
660 numeric, chptr->chname, buffer);
661 }
662
663 static void do_alias(struct alias_entry *aptr, struct Client *source_p, char *text)
664 {
665 char *p;
666 struct Client *target_p;
667
668 if (!IsFloodDone(source_p) && source_p->localClient->receiveM > 20)
669 flood_endgrace(source_p);
670
671 p = strchr(aptr->target, '@');
672 if (p != NULL)
673 {
674 /* user@server */
675 target_p = find_server(NULL, p + 1);
676 if (target_p != NULL && IsMe(target_p))
677 target_p = NULL;
678 }
679 else
680 {
681 /* nick, must be +S */
682 target_p = find_named_person(aptr->target);
683 if (target_p != NULL && !IsService(target_p))
684 target_p = NULL;
685 }
686
687 if (target_p == NULL)
688 {
689 sendto_one_numeric(source_p, ERR_SERVICESDOWN, form_str(ERR_SERVICESDOWN), aptr->target);
690 return;
691 }
692
693 if (text != NULL && *text == ':')
694 text++;
695 if (text == NULL || *text == '\0')
696 {
697 sendto_one(source_p, form_str(ERR_NOTEXTTOSEND), me.name, source_p->name);
698 return;
699 }
700
701 /* increment the hitcounter on this alias */
702 aptr->hits++;
703
704 sendto_one(target_p, ":%s PRIVMSG %s :%s",
705 get_id(source_p, target_p),
706 p != NULL ? aptr->target : get_id(target_p, target_p),
707 text);
708 }
709
710 int
711 m_not_oper(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
712 {
713 sendto_one_numeric(source_p, ERR_NOPRIVILEGES, form_str(ERR_NOPRIVILEGES));
714 return 0;
715 }
716
717 int
718 m_unregistered(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
719 {
720 /* bit of a hack.
721 * I don't =really= want to waste a bit in a flag
722 * number_of_nick_changes is only really valid after the client
723 * is fully registered..
724 */
725 if(client_p->localClient->number_of_nick_changes == 0)
726 {
727 sendto_one(client_p, form_str(ERR_NOTREGISTERED), me.name);
728 client_p->localClient->number_of_nick_changes++;
729 }
730
731 return 0;
732 }
733
734 int
735 m_registered(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
736 {
737 sendto_one(client_p, form_str(ERR_ALREADYREGISTRED), me.name, source_p->name);
738 return 0;
739 }
740
741 int
742 m_ignore(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
743 {
744 return 0;
745 }