]> jfr.im git - solanum.git/blob - ircd/parse.c
parse: utilise MsgBuf to simplify message parsing
[solanum.git] / ircd / 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-2016 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 "msgbuf.h"
42 #include "s_conf.h"
43 #include "s_serv.h"
44 #include "packet.h"
45 #include "s_assert.h"
46
47 static struct Dictionary *cmd_dict = NULL;
48 struct Dictionary *alias_dict = NULL;
49
50 /* parv[0] is not used, and parv[LAST] == NULL */
51 static char *para[MAXPARA + 2];
52
53 static void cancel_clients(struct Client *, struct Client *);
54 static void remove_unknown(struct Client *, char *, char *);
55
56 static void do_numeric(int, struct Client *, struct Client *, int, const char **);
57 static void do_alias(struct alias_entry *, struct Client *, char *);
58
59 static int handle_command(struct Message *, struct Client *, struct Client *, int, const char**);
60
61 static char buffer[1024];
62
63 /* turn a string into a parc/parv pair */
64
65 char *reconstruct_parv(int parc, const char *parv[])
66 {
67 static char tmpbuf[BUFSIZE]; int i;
68
69 rb_strlcpy(tmpbuf, parv[0], BUFSIZE);
70 for (i = 1; i < parc; i++)
71 {
72 rb_strlcat(tmpbuf, " ", BUFSIZE);
73 rb_strlcat(tmpbuf, parv[i], BUFSIZE);
74 }
75 return tmpbuf;
76 }
77
78 /* parse()
79 *
80 * given a raw buffer, parses it and generates parv and parc
81 */
82 void
83 parse(struct Client *client_p, char *pbuffer, char *bufend)
84 {
85 struct Client *from = client_p;
86 char *sender;
87 char *ch;
88 char *s;
89 char *end;
90 int i = 1, res;
91 int numeric = 0;
92 struct Message *mptr;
93 struct MsgBuf msgbuf;
94
95 s_assert(MyConnect(client_p));
96 s_assert(client_p->localClient->F != NULL);
97 if(IsAnyDead(client_p))
98 return;
99
100 end = bufend - 1;
101
102 /* XXX this should be done before parse() is called */
103 if(*end == '\n')
104 *end-- = '\0';
105 if(*end == '\r')
106 *end = '\0';
107
108 res = msgbuf_parse(&msgbuf, pbuffer);
109 if (res)
110 {
111 ServerStats.is_empt++;
112 return;
113 }
114
115 if (msgbuf.origin != NULL)
116 {
117 from = find_client(msgbuf.origin);
118
119 /* didnt find any matching client, issue a kill */
120 if(from == NULL)
121 {
122 ServerStats.is_unpf++;
123 remove_unknown(client_p, sender, pbuffer);
124 return;
125 }
126
127 /* fake direction, hmm. */
128 if(from->from != client_p)
129 {
130 ServerStats.is_wrdi++;
131 cancel_clients(client_p, from);
132 return;
133 }
134 }
135
136 if(IsDigit(*msgbuf.cmd) && IsDigit(*(msgbuf.cmd + 1)) && IsDigit(*(msgbuf.cmd + 2)))
137 {
138 mptr = NULL;
139 numeric = atoi(msgbuf.cmd);
140 ServerStats.is_num++;
141 }
142 else
143 {
144 mptr = irc_dictionary_retrieve(cmd_dict, msgbuf.cmd);
145
146 /* no command or its encap only, error */
147 if(!mptr || !mptr->cmd)
148 {
149 if (IsPerson(client_p))
150 {
151 struct alias_entry *aptr = irc_dictionary_retrieve(alias_dict, ch);
152 if (aptr != NULL)
153 {
154 do_alias(aptr, client_p, s);
155 return;
156 }
157 }
158 if(IsPerson(from))
159 {
160 sendto_one(from, form_str(ERR_UNKNOWNCOMMAND),
161 me.name, from->name, ch);
162 }
163 ServerStats.is_unco++;
164 return;
165 }
166
167 mptr->bytes += msgbuf.parselen;
168 }
169
170 if(mptr == NULL)
171 {
172 do_numeric(numeric, client_p, from, msgbuf.n_para, msgbuf.para);
173 return;
174 }
175
176 if(handle_command(mptr, client_p, from, msgbuf.n_para, /* XXX discards const!!! */ (const char **)(void *) msgbuf.para) < -1)
177 {
178 char *p;
179 for (p = pbuffer; p <= end; p += 8)
180 {
181 /* HACK HACK */
182 /* Its expected this nasty code can be removed
183 * or rewritten later if still needed.
184 */
185 if((unsigned long) (p + 8) > (unsigned long) end)
186 {
187 for (; p <= end; p++)
188 {
189 ilog(L_MAIN, "%02x |%c", p[0], p[0]);
190 }
191 }
192 else
193 ilog(L_MAIN,
194 "%02x %02x %02x %02x %02x %02x %02x %02x |%c%c%c%c%c%c%c%c",
195 p[0], p[1], p[2], p[3], p[4], p[5],
196 p[6], p[7], p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7]);
197 }
198 }
199
200 }
201
202 /*
203 * handle_command
204 *
205 * inputs - pointer to message block
206 * - pointer to client
207 * - pointer to client message is from
208 * - count of number of args
209 * - pointer to argv[] array
210 * output - -1 if error from server
211 * side effects -
212 */
213 static int
214 handle_command(struct Message *mptr, struct Client *client_p,
215 struct Client *from, int i, const char** hpara)
216 {
217 struct MessageEntry ehandler;
218 MessageHandler handler = 0;
219 char squitreason[80];
220
221 if(IsAnyDead(client_p))
222 return -1;
223
224 if(IsServer(client_p))
225 mptr->rcount++;
226
227 mptr->count++;
228
229 /* New patch to avoid server flooding from unregistered connects
230 - Pie-Man 07/27/2000 */
231
232 if(!IsRegistered(client_p))
233 {
234 /* if its from a possible server connection
235 * ignore it.. more than likely its a header thats sneaked through
236 */
237
238 if(IsAnyServer(client_p) && !(mptr->flags & MFLG_UNREG))
239 return (1);
240 }
241
242 ehandler = mptr->handlers[from->handler];
243 handler = ehandler.handler;
244
245 /* check right amount of params is passed... --is */
246 if(i < ehandler.min_para ||
247 (ehandler.min_para && EmptyString(hpara[ehandler.min_para - 1])))
248 {
249 if(!IsServer(client_p))
250 {
251 sendto_one(client_p, form_str(ERR_NEEDMOREPARAMS),
252 me.name,
253 EmptyString(client_p->name) ? "*" : client_p->name,
254 mptr->cmd);
255 if(MyClient(client_p))
256 return (1);
257 else
258 return (-1);
259 }
260
261 sendto_realops_snomask(SNO_GENERAL, L_ALL,
262 "Dropping server %s due to (invalid) command '%s'"
263 " with only %d arguments (expecting %d).",
264 client_p->name, mptr->cmd, i, ehandler.min_para);
265 ilog(L_SERVER,
266 "Insufficient parameters (%d < %d) for command '%s' from %s.",
267 i, ehandler.min_para, mptr->cmd, client_p->name);
268 snprintf(squitreason, sizeof squitreason,
269 "Insufficient parameters (%d < %d) for command '%s'",
270 i, ehandler.min_para, mptr->cmd);
271 exit_client(client_p, client_p, client_p, squitreason);
272 return (-1);
273 }
274
275 (*handler) (client_p, from, i, hpara);
276 return (1);
277 }
278
279 void
280 handle_encap(struct Client *client_p, struct Client *source_p,
281 const char *command, int parc, const char *parv[])
282 {
283 struct Message *mptr;
284 struct MessageEntry ehandler;
285 MessageHandler handler = 0;
286
287 mptr = irc_dictionary_retrieve(cmd_dict, command);
288
289 if(mptr == NULL || mptr->cmd == NULL)
290 return;
291
292 ehandler = mptr->handlers[ENCAP_HANDLER];
293 handler = ehandler.handler;
294
295 if(parc < ehandler.min_para ||
296 (ehandler.min_para && EmptyString(parv[ehandler.min_para - 1])))
297 return;
298
299 (*handler) (client_p, source_p, parc, parv);
300 }
301
302 /*
303 * clear_hash_parse()
304 *
305 * inputs -
306 * output - NONE
307 * side effects - MUST MUST be called at startup ONCE before
308 * any other keyword hash routine is used.
309 *
310 */
311 void
312 clear_hash_parse()
313 {
314 cmd_dict = irc_dictionary_create("command", strcasecmp);
315 }
316
317 /* mod_add_cmd
318 *
319 * inputs - command name
320 * - pointer to struct Message
321 * output - none
322 * side effects - load this one command name
323 * msg->count msg->bytes is modified in place, in
324 * modules address space. Might not want to do that...
325 */
326 void
327 mod_add_cmd(struct Message *msg)
328 {
329 s_assert(msg != NULL);
330 if(msg == NULL)
331 return;
332
333 if (irc_dictionary_find(cmd_dict, msg->cmd) != NULL)
334 return;
335
336 msg->count = 0;
337 msg->rcount = 0;
338 msg->bytes = 0;
339
340 irc_dictionary_add(cmd_dict, msg->cmd, msg);
341 }
342
343 /* mod_del_cmd
344 *
345 * inputs - command name
346 * output - none
347 * side effects - unload this one command name
348 */
349 void
350 mod_del_cmd(struct Message *msg)
351 {
352 s_assert(msg != NULL);
353 if(msg == NULL)
354 return;
355
356 irc_dictionary_delete(cmd_dict, msg->cmd);
357 }
358
359 /*
360 * report_messages
361 *
362 * inputs - pointer to client to report to
363 * output - NONE
364 * side effects - NONE
365 */
366 void
367 report_messages(struct Client *source_p)
368 {
369 struct DictionaryIter iter;
370 struct Message *msg;
371 struct alias_entry *amsg;
372
373 DICTIONARY_FOREACH(msg, &iter, cmd_dict)
374 {
375 s_assert(msg->cmd != NULL);
376 sendto_one_numeric(source_p, RPL_STATSCOMMANDS,
377 form_str(RPL_STATSCOMMANDS),
378 msg->cmd, msg->count,
379 msg->bytes, msg->rcount);
380 }
381
382 DICTIONARY_FOREACH(amsg, &iter, alias_dict)
383 {
384 s_assert(amsg->name != NULL);
385 sendto_one_numeric(source_p, RPL_STATSCOMMANDS,
386 form_str(RPL_STATSCOMMANDS),
387 amsg->name, amsg->hits, 0L, 0);
388 }
389 }
390
391 /* cancel_clients()
392 *
393 * inputs - client who sent us the message, client with fake
394 * direction
395 * outputs - a given warning about the fake direction
396 * side effects -
397 */
398 static void
399 cancel_clients(struct Client *client_p, struct Client *source_p)
400 {
401 /* ok, fake prefix happens naturally during a burst on a nick
402 * collision with TS5, we cant kill them because one client has to
403 * survive, so we just send an error.
404 */
405 if(IsServer(source_p) || IsMe(source_p))
406 {
407 sendto_realops_snomask(SNO_DEBUG, L_ALL,
408 "Message for %s[%s] from %s",
409 source_p->name, source_p->from->name,
410 client_p->name);
411 }
412 else
413 {
414 sendto_realops_snomask(SNO_DEBUG, L_ALL,
415 "Message for %s[%s@%s!%s] from %s (TS, ignored)",
416 source_p->name,
417 source_p->username,
418 source_p->host,
419 source_p->from->name,
420 client_p->name);
421 }
422 }
423
424 /* remove_unknown()
425 *
426 * inputs - client who gave us message, supposed sender, buffer
427 * output -
428 * side effects - kills issued for clients, squits for servers
429 */
430 static void
431 remove_unknown(struct Client *client_p, char *lsender, char *lbuffer)
432 {
433 int slen = strlen(lsender);
434 char sid[4];
435 struct Client *server;
436
437 /* meepfoo is a nickname (ignore)
438 * #XXXXXXXX is a UID (KILL)
439 * #XX is a SID (SQUIT)
440 * meep.foo is a server (SQUIT)
441 */
442 if((IsDigit(lsender[0]) && slen == 3) ||
443 (strchr(lsender, '.') != NULL))
444 {
445 sendto_realops_snomask(SNO_DEBUG, L_ALL,
446 "Unknown prefix (%s) from %s, Squitting %s",
447 lbuffer, client_p->name, lsender);
448
449 sendto_one(client_p,
450 ":%s SQUIT %s :(Unknown prefix (%s) from %s)",
451 get_id(&me, client_p), lsender,
452 lbuffer, client_p->name);
453 }
454 else if(!IsDigit(lsender[0]))
455 ;
456 else if(slen != 9)
457 sendto_realops_snomask(SNO_DEBUG, L_ALL,
458 "Invalid prefix (%s) from %s",
459 lbuffer, client_p->name);
460 else
461 {
462 memcpy(sid, lsender, 3);
463 sid[3] = '\0';
464 server = find_server(NULL, sid);
465 if (server != NULL && server->from == client_p)
466 sendto_one(client_p, ":%s KILL %s :%s (Unknown Client)",
467 get_id(&me, client_p), lsender, me.name);
468 }
469 }
470
471
472
473 /*
474 *
475 * parc number of arguments ('sender' counted as one!)
476 * parv[1]..parv[parc-1]
477 * pointers to additional parameters, this is a NULL
478 * terminated list (parv[parc] == NULL).
479 *
480 * *WARNING*
481 * Numerics are mostly error reports. If there is something
482 * wrong with the message, just *DROP* it! Don't even think of
483 * sending back a neat error message -- big danger of creating
484 * a ping pong error message...
485 */
486 static void
487 do_numeric(int numeric, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
488 {
489 struct Client *target_p;
490 struct Channel *chptr;
491
492 if(parc < 2 || !IsServer(source_p))
493 return;
494
495 /* Remap low number numerics. */
496 if(numeric < 100)
497 numeric += 100;
498
499 /*
500 * Prepare the parameter portion of the message into 'buffer'.
501 * (Because the buffer is twice as large as the message buffer
502 * for the socket, no overflow can occur here... ...on current
503 * assumptions--bets are off, if these are changed --msa)
504 * Note: if buffer is non-empty, it will begin with SPACE.
505 */
506 if(parc > 1)
507 {
508 char *t = buffer; /* Current position within the buffer */
509 int i;
510 int tl; /* current length of presently being built string in t */
511 for (i = 2; i < (parc - 1); i++)
512 {
513 tl = sprintf(t, " %s", parv[i]);
514 t += tl;
515 }
516 sprintf(t, " :%s", parv[parc - 1]);
517 }
518
519 if((target_p = find_client(parv[1])) != NULL)
520 {
521 if(IsMe(target_p))
522 {
523 /*
524 * We shouldn't get numerics sent to us,
525 * any numerics we do get indicate a bug somewhere..
526 */
527 /* ugh. this is here because of nick collisions. when two servers
528 * relink, they burst each other their nicks, then perform collides.
529 * if there is a nick collision, BOTH servers will kill their own
530 * nicks, and BOTH will kill the other servers nick, which wont exist,
531 * because it will have been already killed by the local server.
532 *
533 * unfortunately, as we cant guarantee other servers will do the
534 * "right thing" on a nick collision, we have to keep both kills.
535 * ergo we need to ignore ERR_NOSUCHNICK. --fl_
536 */
537 /* quick comment. This _was_ tried. i.e. assume the other servers
538 * will do the "right thing" and kill a nick that is colliding.
539 * unfortunately, it did not work. --Dianora
540 */
541 /* note, now we send PING on server connect, we can
542 * also get ERR_NOSUCHSERVER..
543 */
544 if(numeric != ERR_NOSUCHNICK &&
545 numeric != ERR_NOSUCHSERVER)
546 sendto_realops_snomask(SNO_GENERAL, L_ADMIN,
547 "*** %s(via %s) sent a %03d numeric to me: %s",
548 source_p->name,
549 client_p->name, numeric, buffer);
550 return;
551 }
552 else if(target_p->from == client_p)
553 {
554 /* This message changed direction (nick collision?)
555 * ignore it.
556 */
557 return;
558 }
559
560 /* csircd will send out unknown umode flag for +a (admin), drop it here. */
561 if(numeric == ERR_UMODEUNKNOWNFLAG && MyClient(target_p))
562 return;
563
564 /* Fake it for server hiding, if its our client */
565 sendto_one(target_p, ":%s %03d %s%s",
566 get_id(source_p, target_p), numeric,
567 get_id(target_p, target_p), buffer);
568 return;
569 }
570 else if((chptr = find_channel(parv[1])) != NULL)
571 sendto_channel_flags(client_p, ALL_MEMBERS, source_p, chptr,
572 "%03d %s%s",
573 numeric, chptr->chname, buffer);
574 }
575
576 static void do_alias(struct alias_entry *aptr, struct Client *source_p, char *text)
577 {
578 char *p;
579 struct Client *target_p;
580
581 if (!IsFloodDone(source_p) && source_p->localClient->receiveM > 20)
582 flood_endgrace(source_p);
583
584 p = strchr(aptr->target, '@');
585 if (p != NULL)
586 {
587 /* user@server */
588 target_p = find_server(NULL, p + 1);
589 if (target_p != NULL && IsMe(target_p))
590 target_p = NULL;
591 }
592 else
593 {
594 /* nick, must be +S */
595 target_p = find_named_person(aptr->target);
596 if (target_p != NULL && !IsService(target_p))
597 target_p = NULL;
598 }
599
600 if (target_p == NULL)
601 {
602 sendto_one_numeric(source_p, ERR_SERVICESDOWN, form_str(ERR_SERVICESDOWN), aptr->target);
603 return;
604 }
605
606 if (text != NULL && *text == ':')
607 text++;
608 if (text == NULL || *text == '\0')
609 {
610 sendto_one(source_p, form_str(ERR_NOTEXTTOSEND), me.name, source_p->name);
611 return;
612 }
613
614 /* increment the hitcounter on this alias */
615 aptr->hits++;
616
617 sendto_one(target_p, ":%s PRIVMSG %s :%s",
618 get_id(source_p, target_p),
619 p != NULL ? aptr->target : get_id(target_p, target_p),
620 text);
621 }
622
623 int
624 m_not_oper(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
625 {
626 sendto_one_numeric(source_p, ERR_NOPRIVILEGES, form_str(ERR_NOPRIVILEGES));
627 return 0;
628 }
629
630 int
631 m_unregistered(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
632 {
633 /* bit of a hack.
634 * I don't =really= want to waste a bit in a flag
635 * number_of_nick_changes is only really valid after the client
636 * is fully registered..
637 */
638 if(client_p->localClient->number_of_nick_changes == 0)
639 {
640 sendto_one(client_p, form_str(ERR_NOTREGISTERED), me.name);
641 client_p->localClient->number_of_nick_changes++;
642 }
643
644 return 0;
645 }
646
647 int
648 m_registered(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
649 {
650 sendto_one(client_p, form_str(ERR_ALREADYREGISTRED), me.name, source_p->name);
651 return 0;
652 }
653
654 int
655 m_ignore(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
656 {
657 return 0;
658 }