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