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