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