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