Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / parse.c
1 /*
2  * IRC - Internet Relay Chat, common/parse.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 1, or (at your option)
9  * any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20 /** @file
21  * @brief Parse input from IRC clients and other servers.
22  * @version $Id$
23  */
24 #include "config.h"
25
26 #include "parse.h"
27 #include "client.h"
28 #include "channel.h"
29 #include "handlers.h"
30 #include "hash.h"
31 #include "ircd.h"
32 #include "ircd_alloc.h"
33 #include "ircd_chattr.h"
34 #include "ircd_features.h"
35 #include "ircd_log.h"
36 #include "ircd_reply.h"
37 #include "ircd_string.h"
38 #include "msg.h"
39 #include "numeric.h"
40 #include "numnicks.h"
41 #include "opercmds.h"
42 #include "querycmds.h"
43 #include "res.h"
44 #include "s_bsd.h"
45 #include "s_conf.h"
46 #include "s_debug.h"
47 #include "s_misc.h"
48 #include "s_numeric.h"
49 #include "s_user.h"
50 #include "send.h"
51 #include "struct.h"
52 #include "sys.h"
53 #include "whocmds.h"
54 #include "whowas.h"
55
56 /* #include <assert.h> -- Now using assert in ircd_log.h */
57 #include <string.h>
58 #include <stdlib.h>
59
60 /*
61  * Message Tree stuff mostly written by orabidoo, with changes by Dianora.
62  * Adapted to Undernet, adding token support, etc by comstud 10/06/97
63  *
64  * completely rewritten June 2, 2003 - Dianora
65  *
66  * This has always just been a trie. Look at volume III of Knuth ACP
67  *
68  *
69  * ok, you start out with an array of pointers, each one corresponds
70  * to a letter at the current position in the command being examined.
71  *
72  * so roughly you have this for matching 'trie' or 'tie'
73  *
74  * 't' points -> [MessageTree *] 'r' -> [MessageTree *] -> 'i'
75  *   -> [MessageTree *] -> [MessageTree *] -> 'e' and matches
76  *
77  *                               'i' -> [MessageTree *] -> 'e' and matches
78  */
79
80 /** Number of children under a trie node. */
81 #define MAXPTRLEN       32      /* Must be a power of 2, and
82                                  * larger than 26 [a-z]|[A-Z]
83                                  * its used to allocate the set
84                                  * of pointers at each node of the tree
85                                  * There are MAXPTRLEN pointers at each node.
86                                  * Obviously, there have to be more pointers
87                                  * Than ASCII letters. 32 is a nice number
88                                  * since there is then no need to shift
89                                  * 'A'/'a' to base 0 index, at the expense
90                                  * of a few never used pointers. For a small
91                                  * parser like this, this is a good compromise
92                                  * and does make it somewhat faster.
93                                  *
94                                  * - Dianora
95                                  */
96
97 /** Node in the command lookup trie. */
98 struct MessageTree {
99   struct Message *msg; /**< Message (if any) if the string ends now. */
100   struct MessageTree *pointers[MAXPTRLEN]; /**< Child nodes for each letter. */
101 };
102
103 /** Root of command lookup trie. */
104 static struct MessageTree msg_tree;
105
106 /** Array of all supported commands. */
107 struct Message msgtab[] = {
108   {
109     MSG_PRIVATE,
110     TOK_PRIVATE,
111     0, MAXPARA, MFLG_SLOW, 0, NULL,
112     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
113     { m_unregistered, m_privmsg, ms_privmsg, mo_privmsg, m_ignore }
114   },
115   {
116     MSG_NICK,
117     TOK_NICK,
118     0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL,
119     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
120     { m_nick, m_nick, ms_nick, m_nick, m_ignore }
121   },
122   {
123     MSG_NOTICE,
124     TOK_NOTICE,
125     0, MAXPARA, MFLG_SLOW | MFLG_IGNORE, 0, NULL,
126     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
127     { m_ignore, m_notice, ms_notice, mo_notice, m_ignore }
128   },
129   {
130     MSG_WALLCHOPS,
131     TOK_WALLCHOPS,
132     0, MAXPARA, MFLG_SLOW, 0, NULL,
133     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
134     { m_unregistered, m_wallchops, ms_wallchops, m_wallchops, m_ignore }
135   },
136   {
137     MSG_WALLVOICES,
138     TOK_WALLVOICES,
139     0, MAXPARA, MFLG_SLOW, 0, NULL,
140     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
141     { m_unregistered, m_wallvoices, ms_wallvoices, m_wallvoices, m_ignore }
142   },
143   {
144     MSG_CPRIVMSG,
145     TOK_CPRIVMSG,
146     0, MAXPARA, MFLG_SLOW, 0, NULL,
147     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
148     { m_unregistered, m_cprivmsg, m_ignore, m_cprivmsg, m_ignore }
149   },
150   {
151     MSG_CNOTICE,
152     TOK_CNOTICE,
153     0, MAXPARA, MFLG_SLOW, 0, NULL,
154     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
155     { m_unregistered, m_cnotice, m_ignore, m_cnotice, m_ignore }
156   },
157   {
158     MSG_JOIN,
159     TOK_JOIN,
160     0, MAXPARA, MFLG_SLOW, 0, NULL,
161     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
162     { m_unregistered, m_join, ms_join, m_join, m_ignore }
163   },
164   {
165     MSG_MODE,
166     TOK_MODE,
167     0, MAXPARA, MFLG_SLOW, 0, NULL,
168     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
169     { m_unregistered, m_mode, ms_mode, m_mode, m_ignore }
170   },
171   {
172     MSG_BURST,
173     TOK_BURST,
174     0, MAXPARA, MFLG_SLOW, 0, NULL,
175     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
176     { m_ignore, m_ignore, ms_burst, m_ignore, m_ignore }
177   },
178   {
179     MSG_CREATE,
180     TOK_CREATE,
181     0, MAXPARA, MFLG_SLOW, 0, NULL,
182     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
183     { m_ignore, m_ignore, ms_create, m_ignore, m_ignore }
184   },
185   {
186     MSG_DESTRUCT,
187     TOK_DESTRUCT,
188     0, MAXPARA, MFLG_SLOW, 0, NULL,
189     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
190     { m_ignore, m_ignore, ms_destruct, m_ignore, m_ignore }
191   },
192   {
193     MSG_QUIT,
194     TOK_QUIT,
195     0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL,
196     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
197     { m_quit, m_quit, ms_quit, m_quit, m_ignore }
198   },
199   {
200     MSG_PART,
201     TOK_PART,
202     0, MAXPARA, MFLG_SLOW, 0, NULL,
203     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
204     { m_unregistered, m_part, ms_part, m_part, m_ignore }
205   },
206   {
207     MSG_TOPIC,
208     TOK_TOPIC,
209     0, MAXPARA, MFLG_SLOW, 0, NULL,
210     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
211     { m_unregistered, m_topic, ms_topic, m_topic, m_ignore }
212   },
213   {
214     MSG_INVITE,
215     TOK_INVITE,
216     0, MAXPARA, MFLG_SLOW, 0, NULL,
217     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
218     { m_unregistered, m_invite, ms_invite, m_invite, m_ignore }
219   },
220   {
221     MSG_KICK,
222     TOK_KICK,
223     0, MAXPARA, MFLG_SLOW, 0, NULL,
224     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
225     { m_unregistered, m_kick, ms_kick, m_kick, m_ignore }
226   },
227   {
228     MSG_WALLOPS,
229     TOK_WALLOPS,
230     0, MAXPARA, MFLG_SLOW, 0, NULL,
231     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
232     { m_unregistered, m_not_oper, ms_wallops, mo_wallops, m_ignore }
233   },
234   {
235     MSG_WALLUSERS,
236     TOK_WALLUSERS,
237     0, MAXPARA, MFLG_SLOW, 0, NULL,
238     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
239     { m_unregistered, m_not_oper, ms_wallusers, mo_wallusers, m_ignore }
240   },
241   {
242     MSG_DESYNCH,
243     TOK_DESYNCH,
244     0, MAXPARA, MFLG_SLOW, 0, NULL,
245     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
246     { m_ignore, m_ignore, ms_desynch, m_ignore, m_ignore }
247   },
248   {
249     MSG_PING,
250     TOK_PING,
251     0, MAXPARA, MFLG_SLOW, 0, NULL,
252     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
253     { m_unregistered, m_ping, ms_ping, mo_ping, m_ignore }
254   },
255   {
256     MSG_PONG,
257     TOK_PONG,
258     0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL,
259     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
260     { mr_pong, m_pong, ms_pong, m_pong, m_ignore }
261   },
262   {
263     MSG_ERROR,
264     TOK_ERROR,
265     0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL,
266     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
267     { mr_error, m_ignore, ms_error, m_ignore, m_ignore }
268   },
269   {
270     MSG_KILL,
271     TOK_KILL,
272     0, MAXPARA, MFLG_SLOW, 0, NULL,
273     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
274     { m_unregistered, m_not_oper, ms_kill, mo_kill, m_ignore }
275   },
276   {
277     MSG_USER,
278     TOK_USER,
279     0, MAXPARA, MFLG_SLOW, 0, NULL,
280     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
281     { m_user, m_registered, m_ignore, m_registered, m_ignore }
282   },
283   {
284     MSG_AWAY,
285     TOK_AWAY,
286     0, MAXPARA, MFLG_SLOW, 0, NULL,
287     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
288     { m_unregistered, m_away, ms_away, m_away, m_ignore }
289   },
290   {
291     MSG_ISON,
292     TOK_ISON,
293     0, 1, MFLG_SLOW, 0, NULL,
294     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
295     { m_unregistered, m_ison, m_ignore, m_ison, m_ignore }
296   },
297   {
298     MSG_SERVER,
299     TOK_SERVER,
300     0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL,
301     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
302     { mr_server, m_registered, ms_server, m_registered, m_ignore }
303   },
304   {
305     MSG_SQUIT,
306     TOK_SQUIT,
307     0, MAXPARA, MFLG_SLOW, 0, NULL,
308     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
309     { m_unregistered, m_not_oper, ms_squit, mo_squit, m_ignore }
310   },
311   {
312     MSG_WHOIS,
313     TOK_WHOIS,
314     0, MAXPARA, MFLG_SLOW, 0, NULL,
315     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
316     { m_unregistered, m_whois, ms_whois, m_whois, m_ignore }
317   },
318   {
319     MSG_WHO,
320     TOK_WHO,
321     0, MAXPARA, MFLG_SLOW, 0, NULL,
322     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
323     { m_unregistered, m_who, m_ignore, m_who, m_ignore }
324   },
325   {
326     MSG_WHOWAS,
327     TOK_WHOWAS,
328     0, MAXPARA, MFLG_SLOW, 0, NULL,
329     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
330     { m_unregistered, m_whowas, m_whowas, m_whowas, m_ignore }
331   },
332   {
333     MSG_LIST,
334     TOK_LIST,
335     0, MAXPARA, MFLG_SLOW, 0, NULL,
336     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
337     { m_unregistered, m_list, m_ignore, m_list, m_ignore }
338   },
339   {
340     MSG_NAMES,
341     TOK_NAMES,
342     0, MAXPARA, MFLG_SLOW, 0, NULL,
343     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
344     { m_unregistered, m_names, ms_names, m_names, m_ignore }
345   },
346   {
347     MSG_USERHOST,
348     TOK_USERHOST,
349     0, 1, MFLG_SLOW, 0, NULL,
350     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
351     { m_unregistered, m_userhost, m_ignore, m_userhost, m_ignore }
352   },
353   {
354     MSG_USERIP,
355     TOK_USERIP,
356     0, 1, MFLG_SLOW, 0, NULL,
357     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
358     { m_unregistered, m_userip, m_ignore, m_userip, m_ignore }
359   },
360   {
361     MSG_TRACE,
362     TOK_TRACE,
363     0, MAXPARA, MFLG_SLOW, 0, NULL,
364     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
365     { m_unregistered, m_trace, ms_trace, mo_trace, m_ignore }
366   },
367   {
368     MSG_PASS,
369     TOK_PASS,
370     0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL,
371     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
372     { mr_pass, m_registered, m_ignore, m_registered, m_ignore }
373   },
374   {
375     MSG_LUSERS,
376     TOK_LUSERS,
377     0, MAXPARA, MFLG_SLOW, 0, NULL,
378     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
379     { m_unregistered, m_lusers, ms_lusers, m_lusers, m_ignore }
380   },
381   {
382     MSG_TIME,
383     TOK_TIME,
384     0, MAXPARA, MFLG_SLOW, 0, NULL,
385     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
386     { m_unregistered, m_time, m_time, m_time, m_ignore }
387   },
388   {
389     MSG_SETTIME,
390     TOK_SETTIME,
391     0, MAXPARA, MFLG_SLOW, 0, NULL,
392     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
393     { m_unregistered, m_ignore, ms_settime, mo_settime, m_ignore }
394   },
395   {
396     MSG_RPING,
397     TOK_RPING,
398     0, MAXPARA, MFLG_SLOW, 0, NULL,
399     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
400     { m_unregistered, m_not_oper, ms_rping, mo_rping, m_ignore }
401   },
402   {
403     MSG_RPONG,
404     TOK_RPONG,
405     0, MAXPARA, MFLG_SLOW, 0, NULL,
406     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
407     { m_unregistered, m_ignore, ms_rpong, m_ignore, m_ignore }
408   },
409   {
410     MSG_OPER,
411     TOK_OPER,
412     0, MAXPARA, MFLG_SLOW, 0, NULL,
413     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
414     { m_unregistered, m_oper, ms_oper, mo_oper, m_ignore }
415   },
416   {
417     MSG_CONNECT,
418     TOK_CONNECT,
419     0, MAXPARA, MFLG_SLOW, 0, NULL,
420     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
421     { m_unregistered, m_not_oper, ms_connect, mo_connect, m_ignore }
422   },
423   {
424     MSG_MAP,
425     TOK_MAP,
426     0, MAXPARA, MFLG_SLOW, 0, NULL,
427     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
428     { m_unregistered, m_map, m_ignore, m_map, m_ignore }
429   },
430   {
431     MSG_VERSION,
432     TOK_VERSION,
433     0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL,
434     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
435     { m_version, m_version, ms_version, mo_version, m_ignore }
436   },
437   {
438     MSG_STATS,
439     TOK_STATS,
440     0, MAXPARA, MFLG_SLOW, 0, NULL,
441     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
442     { m_unregistered, m_stats, m_stats, m_stats, m_ignore }
443   },
444   {
445     MSG_LINKS,
446     TOK_LINKS,
447     0, MAXPARA, MFLG_SLOW, 0, NULL,
448     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
449     { m_unregistered, m_links, ms_links, m_links, m_ignore }
450   },
451   {
452     MSG_ADMIN,
453     TOK_ADMIN,
454     0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0,  NULL,
455     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
456     { m_admin, m_admin, ms_admin, mo_admin, m_ignore }
457   },
458   {
459     MSG_HELP,
460     TOK_HELP,
461     0, MAXPARA, MFLG_SLOW, 0, NULL,
462     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
463     { m_unregistered, m_help, m_ignore, m_help, m_ignore }
464   },
465   {
466     MSG_INFO,
467     TOK_INFO,
468     0, MAXPARA, MFLG_SLOW, 0, NULL,
469     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
470     { m_unregistered, m_info, ms_info, mo_info, m_ignore }
471   },
472   {
473     MSG_MOTD,
474     TOK_MOTD,
475     0, MAXPARA, MFLG_SLOW, 0, NULL,
476     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
477     { m_unregistered, m_motd, m_motd, m_motd, m_ignore }
478   },
479   {
480     MSG_CLOSE,
481     TOK_CLOSE,
482     0, MAXPARA, MFLG_SLOW, 0, NULL,
483     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
484     { m_unregistered, m_not_oper, m_ignore, mo_close, m_ignore }
485   },
486   {
487     MSG_SILENCE,
488     TOK_SILENCE,
489     0, MAXPARA, MFLG_SLOW, 0, NULL,
490     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
491     { m_unregistered, m_silence, ms_silence, m_silence, m_ignore }
492   },
493   {
494     MSG_GLINE,
495     TOK_GLINE,
496     0, MAXPARA,         0, 0, NULL,
497     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
498     { m_unregistered, m_gline, ms_gline, mo_gline, m_ignore }
499   },
500   {
501     MSG_JUPE,
502     TOK_JUPE,
503     0, MAXPARA, MFLG_SLOW, 0, NULL,
504     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
505     { m_unregistered, m_not_oper, ms_jupe, mo_jupe, m_ignore }
506   },
507   {
508     MSG_OPMODE,
509     TOK_OPMODE,
510     0, MAXPARA, MFLG_SLOW, 0, NULL,
511     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
512     { m_unregistered, m_not_oper, ms_opmode, mo_opmode, m_ignore }
513   },
514   {
515     MSG_CLEARMODE,
516     TOK_CLEARMODE,
517     0, MAXPARA, MFLG_SLOW, 0, NULL,
518     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
519     { m_unregistered, m_not_oper, ms_clearmode, mo_clearmode, m_ignore }
520   },
521   {
522     MSG_UPING,
523     TOK_UPING,
524     0, MAXPARA, MFLG_SLOW, 0, NULL,
525     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
526     { m_unregistered, m_not_oper, ms_uping, mo_uping, m_ignore }
527   },
528   {
529     MSG_END_OF_BURST,
530     TOK_END_OF_BURST,
531     0, MAXPARA, MFLG_SLOW, 0, NULL,
532     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
533     { m_ignore, m_ignore, ms_end_of_burst, m_ignore, m_ignore }
534   },
535   {
536     MSG_END_OF_BURST_ACK,
537     TOK_END_OF_BURST_ACK,
538     0, MAXPARA, MFLG_SLOW, 0, NULL,
539     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
540     { m_ignore, m_ignore, ms_end_of_burst_ack, m_ignore, m_ignore }
541   },
542   {
543     MSG_HASH,
544     TOK_HASH,
545     0, MAXPARA, MFLG_SLOW, 0, NULL,
546     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
547     { m_unregistered, m_hash, m_hash, m_hash, m_ignore }
548   },
549   {
550     MSG_REHASH,
551     TOK_REHASH,
552     0, MAXPARA, MFLG_SLOW, 0, NULL,
553     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
554     { m_unregistered, m_not_oper, m_ignore, mo_rehash, m_ignore }
555   },
556   {
557     MSG_RESTART,
558     TOK_RESTART,
559     0, MAXPARA, MFLG_SLOW, 0, NULL,
560     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
561     { m_unregistered, m_not_oper, m_ignore, mo_restart, m_ignore }
562   },
563   {
564     MSG_DIE,
565     TOK_DIE,
566     0, MAXPARA, MFLG_SLOW, 0, NULL,
567     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
568     { m_unregistered, m_not_oper, m_ignore, mo_die, m_ignore }
569   },
570   {
571     MSG_PROTO,
572     TOK_PROTO,
573     0, MAXPARA, MFLG_SLOW, 0, NULL,
574     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
575     { m_proto, m_proto, m_proto, m_proto, m_ignore }
576   },
577   {
578     MSG_SET,
579     TOK_SET,
580     0, MAXPARA, MFLG_SLOW, 0, NULL,
581     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
582     { m_unregistered, m_not_oper, m_ignore, mo_set, m_ignore }
583   },
584   {
585     MSG_RESET,
586     TOK_RESET,
587     0, MAXPARA, MFLG_SLOW, 0, NULL,
588     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
589     { m_unregistered, m_not_oper, m_ignore, mo_reset, m_ignore }
590   },
591   {
592     MSG_GET,
593     TOK_GET,
594     0, MAXPARA, MFLG_SLOW, 0, NULL,
595     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
596     { m_unregistered, m_not_oper, m_ignore, mo_get, m_ignore }
597   },
598   {
599     MSG_PRIVS,
600     TOK_PRIVS,
601     0, MAXPARA, MFLG_SLOW, 0, NULL,
602     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
603     { m_unregistered, m_not_oper, m_ignore, mo_privs, m_ignore }
604   },
605   {
606     MSG_ACCOUNT,
607     TOK_ACCOUNT,
608     0, MAXPARA, MFLG_SLOW, 0, NULL,
609     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
610     { m_ignore, m_ignore, ms_account, m_ignore, m_ignore }
611   },
612   {
613     MSG_ASLL,
614     TOK_ASLL,
615     0, MAXPARA, MFLG_SLOW, 0, NULL,
616     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
617     { m_ignore, m_not_oper, ms_asll, mo_asll, m_ignore }
618    },
619   /* This command is an alias for QUIT during the unregistered part of
620    * of the server.  This is because someone jumping via a broken web
621    * proxy will send a 'POST' as their first command - which we will
622    * obviously disconnect them immediately for, stopping people abusing
623    * open gateways
624    */
625   {
626     MSG_POST,
627     TOK_POST,
628     0, MAXPARA, MFLG_SLOW, 0, NULL,
629     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
630     { m_quit, m_ignore, m_ignore, m_ignore, m_ignore }
631   },
632   { 0 }
633 };
634
635 /** Array of command parameters. */
636 static char *para[MAXPARA + 2]; /* leave room for prefix and null */
637
638
639 /** Add a message to the lookup trie.
640  * @param[in,out] mtree_p Trie node to insert under.
641  * @param[in] msg_p Message to insert.
642  * @param[in] cmd Text of command to insert.
643  */
644 void
645 add_msg_element(struct MessageTree *mtree_p, struct Message *msg_p, char *cmd)
646 {
647   struct MessageTree *ntree_p;
648
649   if (*cmd == '\0')
650   {
651     mtree_p->msg = msg_p;
652     return;
653   }
654
655   if ((ntree_p = mtree_p->pointers[*cmd & (MAXPTRLEN-1)]) != NULL)
656   {
657     add_msg_element(ntree_p, msg_p, cmd+1);
658   }
659   else
660   {
661     ntree_p = (struct MessageTree *)MyCalloc(sizeof(struct MessageTree), 1);
662     mtree_p->pointers[*cmd & (MAXPTRLEN-1)] = ntree_p;
663     add_msg_element(ntree_p, msg_p, cmd+1);
664   }
665 }
666
667 /** Remove a message from the lookup trie.
668  * @param[in,out] mtree_p Trie node to remove command from.
669  * @param[in] cmd Text of command to remove.
670  */
671 void
672 del_msg_element(struct MessageTree *mtree_p, char *cmd)
673 {
674   struct MessageTree *ntree_p;
675
676   if (*cmd == '\0')
677     return;
678
679   if ((ntree_p = mtree_p->pointers[*cmd & (MAXPTRLEN-1)]) != NULL)
680   {
681     del_msg_element(ntree_p, cmd+1);
682     MyFree(ntree_p);
683     mtree_p->pointers[*cmd & (MAXPTRLEN-1)] = NULL;
684   }
685 }
686
687 /** Initialize the message lookup trie with all known commands. */
688 void
689 initmsgtree(void)
690 {
691   int i;
692
693   memset(&msg_tree, 0, sizeof(msg_tree));
694
695   for (i = 0; msgtab[i].cmd != NULL ; i++)
696   {
697     add_msg_element(&msg_tree, &msgtab[i], msgtab[i].cmd);
698     add_msg_element(&msg_tree, &msgtab[i], msgtab[i].tok);
699   }
700 }
701
702 /** Look up a command in the message trie.
703  * @param cmd Text of command to look up.
704  * @param root Root of message trie.
705  * @return Pointer to matching message, or NULL if non exists.
706  */
707 static struct Message *
708 msg_tree_parse(char *cmd, struct MessageTree *root)
709 {
710   struct MessageTree *mtree;
711
712   for (mtree = root; mtree; mtree = mtree->pointers[(*cmd++) & (MAXPTRLEN-1)]) {
713       if (*cmd == '\0' && mtree->msg)
714           return mtree->msg;
715       else if (!IsAlpha(*cmd))
716           return NULL;
717   }
718   return NULL;
719 }
720
721 /** Registers a service mapping to the pseudocommand handler.
722  * @param[in] map Service mapping to add.
723  * @return Non-zero on success; zero if a command already used the name.
724  */
725 int register_mapping(struct s_map *map)
726 {
727   struct Message *msg;
728
729   if (msg_tree_parse(map->command, &msg_tree))
730     return 0;
731
732   msg = (struct Message *)MyMalloc(sizeof(struct Message));
733   msg->cmd = map->command;
734   msg->tok = map->command;
735   msg->count = 0;
736   msg->parameters = 2;
737   msg->flags = MFLG_SLOW | MFLG_EXTRA;
738   msg->bytes = 0;
739   msg->extra = map;
740
741   msg->handlers[UNREGISTERED_HANDLER] = m_ignore;
742   msg->handlers[CLIENT_HANDLER] = m_pseudo;
743   msg->handlers[SERVER_HANDLER] = m_ignore;
744   msg->handlers[OPER_HANDLER] = m_pseudo;
745   msg->handlers[SERVICE_HANDLER] = m_ignore;
746
747   /* Service mappings are only applicable to clients; insert the
748      pseudocommand into the command tree only. */
749   add_msg_element(&msg_tree, msg, msg->cmd);
750   map->msg = msg;
751
752   return 1;
753 }
754
755 /** Removes a service mapping.
756  * @param[in] map Service mapping to remove.
757  * @return Non-zero on success; zero if no command used the name.
758  */
759 int unregister_mapping(struct s_map *map)
760 {
761   if (!msg_tree_parse(map->command, &msg_tree))
762   {
763     /* This simply should never happen. */
764     assert(0);
765     return 0;
766   }
767
768   del_msg_element(&msg_tree, map->msg->cmd);
769
770   map->msg->extra = NULL;
771   MyFree(map->msg);
772   map->msg = NULL;
773
774   return 1;
775 }
776
777 /** Parse a line of data from a user.
778  * NOTE: parse_*() should not be called recusively by any other functions!
779  * @param[in] cptr Client that sent the data.
780  * @param[in] buffer Start of input line.
781  * @param[in] bufend End of input line.
782  * @return 0 on success, -1 on parse error, or CPTR_KILLED if message
783  * handler returns it.
784  */
785 int
786 parse_client(struct Client *cptr, char *buffer, char *bufend)
787 {
788   struct Client*  from = cptr;
789   char*           ch;
790   char*           s;
791   int             i;
792   int             paramcount;
793   int             noprefix = 0;
794   struct Message* mptr;
795   MessageHandler  handler = 0;
796
797   Debug((DEBUG_DEBUG, "Client Parsing: %s", buffer));
798
799   if (IsDead(cptr))
800     return 0;
801
802   para[0] = cli_name(from);
803   for (ch = buffer; *ch == ' '; ch++);  /* Eat leading spaces */
804   if (*ch == ':')               /* Is any client doing this ? */
805   {
806     for (++ch; *ch && *ch != ' '; ++ch)
807       ; /* Ignore sender prefix from client */
808     while (*ch == ' ')
809       ch++;                     /* Advance to command */
810   }
811   else
812     noprefix = 1;
813   if (*ch == '\0')
814   {
815     ServerStats->is_empt++;
816     Debug((DEBUG_NOTICE, "Empty message from host %s:%s",
817         cli_name(cptr), cli_name(from)));
818     return (-1);
819   }
820
821   if ((s = strchr(ch, ' ')))
822     *s++ = '\0';
823
824   if ((mptr = msg_tree_parse(ch, &msg_tree)) == NULL)
825   {
826     /*
827      * Note: Give error message *only* to recognized
828      * persons. It's a nightmare situation to have
829      * two programs sending "Unknown command"'s or
830      * equivalent to each other at full blast....
831      * If it has got to person state, it at least
832      * seems to be well behaving. Perhaps this message
833      * should never be generated, though...  --msa
834      * Hm, when is the buffer empty -- if a command
835      * code has been found ?? -Armin
836      */
837     if (buffer[0] != '\0')
838     {
839       if (IsUser(from))
840         send_reply(from, ERR_UNKNOWNCOMMAND, ch);
841       Debug((DEBUG_ERROR, "Unknown (%s) from %s",
842             ch, get_client_name(cptr, HIDE_IP)));
843     }
844     ServerStats->is_unco++;
845     return (-1);
846   }
847
848   paramcount = mptr->parameters;
849   i = bufend - ((s) ? s : ch);
850   mptr->bytes += i;
851   if ((mptr->flags & MFLG_SLOW))
852     cli_since(cptr) += (2 + i / 120);
853   /*
854    * Allow only 1 msg per 2 seconds
855    * (on average) to prevent dumping.
856    * to keep the response rate up,
857    * bursts of up to 5 msgs are allowed
858    * -SRB
859    */
860
861   /*
862    * Must the following loop really be so devious? On
863    * surface it splits the message to parameters from
864    * blank spaces. But, if paramcount has been reached,
865    * the rest of the message goes into this last parameter
866    * (about same effect as ":" has...) --msa
867    */
868
869   /* Note initially true: s==NULL || *(s-1) == '\0' !! */
870
871   if (mptr->flags & MFLG_EXTRA) {
872     /* This is a horrid kludge to avoid changing the command handler
873      * argument list. */
874     para[1] = (char*)mptr->extra;
875     i = 1;
876   } else {
877     i = 0;
878   }
879   if (s)
880   {
881     if (paramcount > MAXPARA)
882       paramcount = MAXPARA;
883     for (;;)
884     {
885       /*
886        * Never "FRANCE " again!! ;-) Clean
887        * out *all* blanks.. --msa
888        */
889       while (*s == ' ')
890         *s++ = '\0';
891
892       if (*s == '\0')
893         break;
894       if (*s == ':')
895       {
896         /*
897          * The rest is single parameter--can
898          * include blanks also.
899          */
900         para[++i] = s + 1;
901         break;
902       }
903       para[++i] = s;
904       if (i >= paramcount)
905         break;
906       for (; *s != ' ' && *s; s++);
907     }
908   }
909   para[++i] = NULL;
910   ++mptr->count;
911
912   handler = mptr->handlers[cli_handler(cptr)];
913   assert(0 != handler);
914
915   if (!feature_bool(FEAT_IDLE_FROM_MSG) && IsUser(cptr) &&
916       handler != m_ping && handler != m_ignore)
917     cli_user(from)->last = CurrentTime;
918
919   return (*handler) (cptr, from, i, para);
920 }
921
922 /** Parse a line of data from a server.
923  * @param[in] cptr Client that sent the data.
924  * @param[in] buffer Start of input line.
925  * @param[in] bufend End of input line.
926  * @return 0 on success, -1 on parse error, or CPTR_KILLED if message
927  * handler returns it.
928  */
929 int parse_server(struct Client *cptr, char *buffer, char *bufend)
930 {
931   struct Client*  from = cptr;
932   char*           ch = buffer;
933   char*           s;
934   int             len;
935   int             i;
936   int             numeric = 0;
937   int             paramcount;
938   struct Message* mptr;
939
940   Debug((DEBUG_DEBUG, "Server Parsing: %s", buffer));
941
942   if (IsDead(cptr))
943     return 0;
944
945   para[0] = cli_name(from);
946
947   /*
948    * A server ALWAYS sends a prefix. When it starts with a ':' it's the
949    * protocol 9 prefix: a nick or a server name. Otherwise it's a numeric
950    * nick or server
951    */
952   if (*ch == ':')
953   {
954     /* Let para[0] point to the name of the sender */
955     para[0] = ch + 1;
956     if (!(ch = strchr(ch, ' ')))
957       return -1;
958     *ch++ = '\0';
959
960     /* And let `from' point to its client structure,
961        opps.. a server is _also_ a client --Nem */
962     from = FindClient(para[0]);
963
964     /*
965      * If the client corresponding to the
966      * prefix is not found. We must ignore it,
967      * it is simply a lagged message travelling
968      * upstream a SQUIT that removed the client
969      * --Run
970      */
971     if (from == NULL)
972     {
973       Debug((DEBUG_NOTICE, "Unknown prefix (%s)(%s) from (%s)",
974           para[0], buffer, cli_name(cptr)));
975       ++ServerStats->is_unpf;
976       while (*ch == ' ')
977         ch++;
978       /*
979        * However, the only thing that MUST be
980        * allowed to travel upstream against an
981        * squit, is an SQUIT itself (the timestamp
982        * protects us from being used wrong)
983        */
984       if (ch[1] == 'Q')
985       {
986         para[0] = cli_name(cptr);
987         from = cptr;
988       }
989       else
990         return 0;
991     }
992     else if (cli_from(from) != cptr)
993     {
994       ++ServerStats->is_wrdi;
995       Debug((DEBUG_NOTICE, "Fake direction: Message (%s) coming from (%s)",
996           buffer, cli_name(cptr)));
997       return 0;
998     }
999   }
1000   else
1001   {
1002     char numeric_prefix[6];
1003     int  i;
1004     for (i = 0; i < 5; ++i)
1005     {
1006       if ('\0' == ch[i] || ' ' == (numeric_prefix[i] = ch[i]))
1007       {
1008         break;
1009       }
1010     }
1011     numeric_prefix[i] = '\0';
1012
1013     /*
1014      * We got a numeric nick as prefix
1015      * 1 or 2 character prefixes are from servers
1016      * 3 or 5 chars are from clients
1017      */
1018     if (0 == i)
1019     {
1020       protocol_violation(cptr,"Missing Prefix");
1021       from = cptr;
1022     }
1023     else if (' ' == ch[1] || ' ' == ch[2])
1024       from = FindNServer(numeric_prefix);
1025     else
1026       from = findNUser(numeric_prefix);
1027
1028     do
1029     {
1030       ++ch;
1031     }
1032     while (*ch != ' ' && *ch);
1033
1034     /*
1035      * If the client corresponding to the
1036      * prefix is not found. We must ignore it,
1037      * it is simply a lagged message travelling
1038      * upstream a SQUIT that removed the client
1039      * --Run
1040      * There turned out to be other reasons that
1041      * a prefix is unknown, needing an upstream
1042      * KILL.  Also, next to an SQUIT we better
1043      * allow a KILL to pass too.
1044      * --Run
1045      */
1046     if (from == NULL)
1047     {
1048       ServerStats->is_unpf++;
1049       while (*ch == ' ')
1050         ch++;
1051       if (*ch == 'N' && (ch[1] == ' ' || ch[1] == 'I'))
1052         /* Only sent a KILL for a nick change */
1053       {
1054         struct Client *server;
1055         /* Kill the unknown numeric prefix upstream if
1056          * it's server still exists: */
1057         if ((server = FindNServer(numeric_prefix)) && cli_from(server) == cptr)
1058           sendcmdto_one(&me, CMD_KILL, cptr, "%s :%s (Unknown numeric nick)",
1059                         numeric_prefix, cli_name(&me));
1060       }
1061       /*
1062        * Things that must be allowed to travel
1063        * upstream against an squit:
1064        */
1065       if (ch[1] == 'Q' || (*ch == 'D' && ch[1] == ' ') ||
1066           (*ch == 'K' && ch[2] == 'L'))
1067         from = cptr;
1068       else
1069         return 0;
1070     }
1071
1072     /* Let para[0] point to the name of the sender */
1073     para[0] = cli_name(from);
1074
1075     if (cli_from(from) != cptr)
1076     {
1077       ServerStats->is_wrdi++;
1078       Debug((DEBUG_NOTICE, "Fake direction: Message (%s) coming from (%s)",
1079           buffer, cli_name(cptr)));
1080       return 0;
1081     }
1082   }
1083
1084   while (*ch == ' ')
1085     ch++;
1086   if (*ch == '\0')
1087   {
1088     ServerStats->is_empt++;
1089     Debug((DEBUG_NOTICE, "Empty message from host %s:%s",
1090         cli_name(cptr), cli_name(from)));
1091     return (-1);
1092   }
1093
1094   /*
1095    * Extract the command code from the packet.   Point s to the end
1096    * of the command code and calculate the length using pointer
1097    * arithmetic.  Note: only need length for numerics and *all*
1098    * numerics must have parameters and thus a space after the command
1099    * code. -avalon
1100    */
1101   s = strchr(ch, ' ');          /* s -> End of the command code */
1102   len = (s) ? (s - ch) : 0;
1103   if (len == 3 && IsDigit(*ch))
1104   {
1105     numeric = (*ch - '0') * 100 + (*(ch + 1) - '0') * 10 + (*(ch + 2) - '0');
1106     paramcount = 2; /* destination, and the rest of it */
1107     ServerStats->is_num++;
1108     mptr = NULL;                /* Init. to avoid stupid compiler warning :/ */
1109   }
1110   else
1111   {
1112     if (s)
1113       *s++ = '\0';
1114
1115     /* Version      Receive         Send
1116      * 2.9          Long            Long
1117      * 2.10.0       Tkn/Long        Long
1118      * 2.10.10      Tkn/Long        Tkn
1119      * 2.10.20      Tkn             Tkn
1120      *
1121      * Clients/unreg servers always receive/
1122      * send long commands   -record
1123      *
1124      * And for the record, this trie parser really does not care. - Dianora
1125      */
1126
1127     mptr = msg_tree_parse(ch, &msg_tree);
1128
1129     if (mptr == NULL)
1130     {
1131       /*
1132        * Note: Give error message *only* to recognized
1133        * persons. It's a nightmare situation to have
1134        * two programs sending "Unknown command"'s or
1135        * equivalent to each other at full blast....
1136        * If it has got to person state, it at least
1137        * seems to be well behaving. Perhaps this message
1138        * should never be generated, though...   --msa
1139        * Hm, when is the buffer empty -- if a command
1140        * code has been found ?? -Armin
1141        */
1142 #ifdef DEBUGMODE
1143       if (buffer[0] != '\0')
1144       {
1145         Debug((DEBUG_ERROR, "Unknown (%s) from %s",
1146               ch, get_client_name(cptr, HIDE_IP)));
1147       }
1148 #endif
1149       ServerStats->is_unco++;
1150       return (-1);
1151     }
1152
1153     paramcount = mptr->parameters;
1154     i = bufend - ((s) ? s : ch);
1155     mptr->bytes += i;
1156   }
1157   /*
1158    * Must the following loop really be so devious? On
1159    * surface it splits the message to parameters from
1160    * blank spaces. But, if paramcount has been reached,
1161    * the rest of the message goes into this last parameter
1162    * (about same effect as ":" has...) --msa
1163    */
1164
1165   /* Note initially true: s==NULL || *(s-1) == '\0' !! */
1166
1167   i = 0;
1168   if (s)
1169   {
1170     if (paramcount > MAXPARA)
1171       paramcount = MAXPARA;
1172     for (;;)
1173     {
1174       /*
1175        * Never "FRANCE " again!! ;-) Clean
1176        * out *all* blanks.. --msa
1177        */
1178       while (*s == ' ')
1179         *s++ = '\0';
1180
1181       if (*s == '\0')
1182         break;
1183       if (*s == ':')
1184       {
1185         /*
1186          * The rest is single parameter--can
1187          * include blanks also.
1188          */
1189         if (numeric)
1190           para[++i] = s; /* preserve the colon to make do_numeric happy */
1191         else
1192           para[++i] = s + 1;
1193         break;
1194       }
1195       para[++i] = s;
1196       if (i >= paramcount)
1197         break;
1198       for (; *s != ' ' && *s; s++);
1199     }
1200   }
1201   para[++i] = NULL;
1202   if (numeric)
1203     return (do_numeric(numeric, (*buffer != ':'), cptr, from, i, para));
1204   mptr->count++;
1205
1206   return (*mptr->handlers[cli_handler(cptr)]) (cptr, from, i, para);
1207 }