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