X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ircd%2Fparse.c;h=b79ebb8ace48f6f52a9e50dce8812c4ddb2c82c2;hb=refs%2Fheads%2Fupstream;hp=64893c8fa2c482d4c606a9b00255b93c3063524f;hpb=33707cfe88b434ba74eeee4bf395be59dd75127b;p=ircu2.10.12-pk.git diff --git a/ircd/parse.c b/ircd/parse.c index 64893c8..b79ebb8 100644 --- a/ircd/parse.c +++ b/ircd/parse.c @@ -16,9 +16,13 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * $Id$ */ +/** @file + * @brief Parse input from IRC clients and other servers. + * @version $Id$ + */ +#include "config.h" + #include "parse.h" #include "client.h" #include "channel.h" @@ -27,6 +31,8 @@ #include "ircd.h" #include "ircd_alloc.h" #include "ircd_chattr.h" +#include "ircd_features.h" +#include "ircd_log.h" #include "ircd_reply.h" #include "ircd_string.h" #include "msg.h" @@ -47,511 +53,593 @@ #include "whocmds.h" #include "whowas.h" -#include +/* #include -- Now using assert in ircd_log.h */ #include #include +/* + * Message Tree stuff mostly written by orabidoo, with changes by Dianora. + * Adapted to Undernet, adding token support, etc by comstud 10/06/97 + * + * completely rewritten June 2, 2003 - Dianora + * + * This has always just been a trie. Look at volume III of Knuth ACP + * + * + * ok, you start out with an array of pointers, each one corresponds + * to a letter at the current position in the command being examined. + * + * so roughly you have this for matching 'trie' or 'tie' + * + * 't' points -> [MessageTree *] 'r' -> [MessageTree *] -> 'i' + * -> [MessageTree *] -> [MessageTree *] -> 'e' and matches + * + * 'i' -> [MessageTree *] -> 'e' and matches + */ +/** Number of children under a trie node. */ +#define MAXPTRLEN 32 /* Must be a power of 2, and + * larger than 26 [a-z]|[A-Z] + * its used to allocate the set + * of pointers at each node of the tree + * There are MAXPTRLEN pointers at each node. + * Obviously, there have to be more pointers + * Than ASCII letters. 32 is a nice number + * since there is then no need to shift + * 'A'/'a' to base 0 index, at the expense + * of a few never used pointers. For a small + * parser like this, this is a good compromise + * and does make it somewhat faster. + * + * - Dianora + */ +/** Node in the command lookup trie. */ struct MessageTree { - char *final; - struct Message *msg; - struct MessageTree *pointers[26]; + struct Message *msg; /**< Message (if any) if the string ends now. */ + struct MessageTree *pointers[MAXPTRLEN]; /**< Child nodes for each letter. */ }; +/** Root of command lookup trie. */ +static struct MessageTree msg_tree; +static struct MessageTree tok_tree; +/** Array of all supported commands. */ struct Message msgtab[] = { { MSG_PRIVATE, TOK_PRIVATE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_privmsg, ms_privmsg, mo_privmsg, m_ignore } }, { MSG_NICK, TOK_NICK, - 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, + 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_nick, m_nick, ms_nick, m_nick, m_ignore } }, { MSG_NOTICE, TOK_NOTICE, - 0, MAXPARA, MFLG_SLOW | MFLG_IGNORE, 0, + 0, MAXPARA, MFLG_SLOW | MFLG_IGNORE, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_ignore, m_notice, ms_notice, mo_notice, m_ignore } }, { MSG_WALLCHOPS, TOK_WALLCHOPS, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_wallchops, ms_wallchops, m_wallchops, m_ignore } }, + { + MSG_WALLVOICES, + TOK_WALLVOICES, + 0, MAXPARA, MFLG_SLOW, 0, NULL, + /* UNREG, CLIENT, SERVER, OPER, SERVICE */ + { m_unregistered, m_wallvoices, ms_wallvoices, m_wallvoices, m_ignore } + }, { MSG_CPRIVMSG, TOK_CPRIVMSG, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_cprivmsg, m_ignore, m_cprivmsg, m_ignore } }, { MSG_CNOTICE, TOK_CNOTICE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_cnotice, m_ignore, m_cnotice, m_ignore } }, { MSG_JOIN, TOK_JOIN, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_join, ms_join, m_join, m_ignore } }, { MSG_MODE, TOK_MODE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_mode, ms_mode, m_mode, m_ignore } }, { MSG_BURST, TOK_BURST, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_ignore, m_ignore, ms_burst, m_ignore, m_ignore } }, { MSG_CREATE, TOK_CREATE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_ignore, m_ignore, ms_create, m_ignore, m_ignore } }, { MSG_DESTRUCT, TOK_DESTRUCT, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_ignore, m_ignore, ms_destruct, m_ignore, m_ignore } }, { MSG_QUIT, TOK_QUIT, - 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, + 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_quit, m_quit, ms_quit, m_quit, m_ignore } }, { MSG_PART, TOK_PART, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_part, ms_part, m_part, m_ignore } }, { MSG_TOPIC, TOK_TOPIC, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_topic, ms_topic, m_topic, m_ignore } }, { MSG_INVITE, TOK_INVITE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_invite, ms_invite, m_invite, m_ignore } }, { MSG_KICK, TOK_KICK, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_kick, ms_kick, m_kick, m_ignore } }, { MSG_WALLOPS, TOK_WALLOPS, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, ms_wallops, mo_wallops, m_ignore } }, + { + MSG_WALLUSERS, + TOK_WALLUSERS, + 0, MAXPARA, MFLG_SLOW, 0, NULL, + /* UNREG, CLIENT, SERVER, OPER, SERVICE */ + { m_unregistered, m_not_oper, ms_wallusers, mo_wallusers, m_ignore } + }, { MSG_DESYNCH, TOK_DESYNCH, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_ignore, m_ignore, ms_desynch, m_ignore, m_ignore } }, { MSG_PING, TOK_PING, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ - { m_unregistered, m_ping, ms_ping, m_ping, m_ignore } + { m_unregistered, m_ping, ms_ping, mo_ping, m_ignore } }, { MSG_PONG, TOK_PONG, - 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, + 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { mr_pong, m_pong, ms_pong, m_pong, m_ignore } }, { MSG_ERROR, TOK_ERROR, - 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, + 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ - { m_ignore, m_ignore, ms_error, m_ignore, m_ignore } + { mr_error, m_ignore, ms_error, m_ignore, m_ignore } }, { MSG_KILL, TOK_KILL, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, ms_kill, mo_kill, m_ignore } }, { MSG_USER, TOK_USER, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_user, m_registered, m_ignore, m_registered, m_ignore } }, { MSG_AWAY, TOK_AWAY, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_away, ms_away, m_away, m_ignore } }, { MSG_ISON, TOK_ISON, - 0, 1, MFLG_SLOW, 0, + 0, 1, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_ison, m_ignore, m_ison, m_ignore } }, { MSG_SERVER, TOK_SERVER, - 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, + 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { mr_server, m_registered, ms_server, m_registered, m_ignore } }, { MSG_SQUIT, TOK_SQUIT, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, ms_squit, mo_squit, m_ignore } }, { MSG_WHOIS, TOK_WHOIS, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ - { m_unregistered, m_whois, m_whois, m_whois, m_ignore } + { m_unregistered, m_whois, ms_whois, m_whois, m_ignore } }, { MSG_WHO, TOK_WHO, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_who, m_ignore, m_who, m_ignore } }, { MSG_WHOWAS, TOK_WHOWAS, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_whowas, m_whowas, m_whowas, m_ignore } }, { MSG_LIST, TOK_LIST, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_list, m_ignore, m_list, m_ignore } }, { MSG_NAMES, TOK_NAMES, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ - { m_unregistered, m_names, ms_names, m_names, m_ignore } + { m_unregistered, m_names, m_names, m_names, m_ignore } }, { MSG_USERHOST, TOK_USERHOST, - 0, 1, MFLG_SLOW, 0, + 0, 1, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_userhost, m_ignore, m_userhost, m_ignore } }, { MSG_USERIP, TOK_USERIP, - 0, 1, MFLG_SLOW, 0, + 0, 1, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_userip, m_ignore, m_userip, m_ignore } }, { MSG_TRACE, TOK_TRACE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_trace, ms_trace, mo_trace, m_ignore } }, { MSG_PASS, TOK_PASS, - 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, + 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { mr_pass, m_registered, m_ignore, m_registered, m_ignore } }, { MSG_LUSERS, TOK_LUSERS, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_lusers, ms_lusers, m_lusers, m_ignore } }, { MSG_TIME, TOK_TIME, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_time, m_time, m_time, m_ignore } }, { MSG_SETTIME, TOK_SETTIME, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ - { m_unregistered, m_ignore, ms_settime, mo_settime, m_ignore } + { m_unregistered, m_not_oper, ms_settime, mo_settime, m_ignore } }, { MSG_RPING, TOK_RPING, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, ms_rping, mo_rping, m_ignore } }, { MSG_RPONG, TOK_RPONG, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_ignore, ms_rpong, m_ignore, m_ignore } }, { MSG_OPER, TOK_OPER, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ -#ifndef NOOPER { m_unregistered, m_oper, ms_oper, mo_oper, m_ignore } -#else - { m_unregistered, m_oper, m_ignore, m_ignore, m_ignore } -#endif }, { MSG_CONNECT, TOK_CONNECT, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, ms_connect, mo_connect, m_ignore } }, { MSG_MAP, TOK_MAP, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_map, m_ignore, m_map, m_ignore } }, { MSG_VERSION, TOK_VERSION, - 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, + 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ - { m_version, m_version, ms_version, m_version, m_ignore } + { m_version, m_version, ms_version, mo_version, m_ignore } }, { MSG_STATS, TOK_STATS, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ - { m_unregistered, m_stats, ms_stats, mo_stats, m_ignore } + { m_unregistered, m_stats, m_stats, m_stats, m_ignore } }, { MSG_LINKS, TOK_LINKS, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_links, ms_links, m_links, m_ignore } }, { MSG_ADMIN, TOK_ADMIN, - 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, + 0, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ - { m_admin, m_admin, ms_admin, m_admin, m_ignore } + { m_admin, m_admin, ms_admin, mo_admin, m_ignore } }, { MSG_HELP, TOK_HELP, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_help, m_ignore, m_help, m_ignore } }, { MSG_INFO, TOK_INFO, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_info, ms_info, mo_info, m_ignore } }, { MSG_MOTD, TOK_MOTD, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_motd, m_motd, m_motd, m_ignore } }, { MSG_CLOSE, TOK_CLOSE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, m_ignore, mo_close, m_ignore } }, { MSG_SILENCE, TOK_SILENCE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_silence, ms_silence, m_silence, m_ignore } }, { MSG_GLINE, TOK_GLINE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, 0, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_gline, ms_gline, mo_gline, m_ignore } }, { MSG_JUPE, TOK_JUPE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ -#ifdef CONFIG_OPERCMDS - { m_unregistered, m_jupe, ms_jupe, mo_jupe, m_ignore } -#else - { m_unregistered, m_jupe, ms_jupe, m_jupe, m_ignore } -#endif /* CONFIG_OPERCMDS */ + { m_unregistered, m_not_oper, ms_jupe, mo_jupe, m_ignore } }, { MSG_OPMODE, TOK_OPMODE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, ms_opmode, mo_opmode, m_ignore } }, { MSG_CLEARMODE, TOK_CLEARMODE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, ms_clearmode, mo_clearmode, m_ignore } }, { MSG_UPING, TOK_UPING, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, ms_uping, mo_uping, m_ignore } }, { MSG_END_OF_BURST, TOK_END_OF_BURST, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_ignore, m_ignore, ms_end_of_burst, m_ignore, m_ignore } }, { MSG_END_OF_BURST_ACK, TOK_END_OF_BURST_ACK, - 0, MAXPARA, 1, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_ignore, m_ignore, ms_end_of_burst_ack, m_ignore, m_ignore } }, { MSG_HASH, TOK_HASH, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_hash, m_hash, m_hash, m_ignore } }, - { - MSG_DNS, - TOK_DNS, - 0, MAXPARA, MFLG_SLOW, 0, - /* UNREG, CLIENT, SERVER, OPER, SERVICE */ - { m_unregistered, m_dns, m_dns, m_dns, m_ignore } - }, { MSG_REHASH, TOK_REHASH, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, m_ignore, mo_rehash, m_ignore } }, { MSG_RESTART, TOK_RESTART, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, m_ignore, mo_restart, m_ignore } }, { MSG_DIE, TOK_DIE, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, m_ignore, mo_die, m_ignore } }, { MSG_PROTO, TOK_PROTO, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_proto, m_proto, m_proto, m_proto, m_ignore } }, { MSG_SET, TOK_SET, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, m_ignore, mo_set, m_ignore } }, { MSG_RESET, TOK_RESET, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, m_ignore, mo_reset, m_ignore } }, { MSG_GET, TOK_GET, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_unregistered, m_not_oper, m_ignore, mo_get, m_ignore } }, + { + MSG_PRIVS, + TOK_PRIVS, + 0, MAXPARA, MFLG_SLOW, 0, NULL, + /* UNREG, CLIENT, SERVER, OPER, SERVICE */ + { m_unregistered, m_not_oper, ms_privs, mo_privs, m_ignore } + }, + { + MSG_ACCOUNT, + TOK_ACCOUNT, + 0, MAXPARA, MFLG_SLOW, 0, NULL, + /* UNREG, CLIENT, SERVER, OPER, SERVICE */ + { m_ignore, m_ignore, ms_account, m_ignore, m_ignore } + }, + { + MSG_ASLL, + TOK_ASLL, + 0, MAXPARA, MFLG_SLOW, 0, NULL, + /* UNREG, CLIENT, SERVER, OPER, SERVICE */ + { m_ignore, m_not_oper, ms_asll, mo_asll, m_ignore } + }, + { + MSG_XQUERY, + TOK_XQUERY, + 0, MAXPARA, MFLG_SLOW, 0, NULL, + /* UNREG, CLIENT, SERVER, OPER, SERVICE */ + { m_ignore, m_ignore, ms_xquery, mo_xquery, m_ignore } + }, + { + MSG_XREPLY, + TOK_XREPLY, + 0, MAXPARA, MFLG_SLOW, 0, NULL, + /* UNREG, CLIENT, SERVER, OPER, SERVICE */ + { m_ignore, m_ignore, ms_xreply, m_ignore, m_ignore } + }, +#if WE_HAVE_A_REAL_CAPABILITY_NOW + { + MSG_CAP, + TOK_CAP, + 0, MAXPARA, 0, 0, NULL, + /* UNREG, CLIENT, SERVER, OPER, SERVICE */ + { m_cap, m_cap, m_ignore, m_cap, m_ignore } + }, +#endif /* This command is an alias for QUIT during the unregistered part of * of the server. This is because someone jumping via a broken web * proxy will send a 'POST' as their first command - which we will @@ -561,244 +649,181 @@ struct Message msgtab[] = { { MSG_POST, TOK_POST, - 0, MAXPARA, MFLG_SLOW, 0, + 0, MAXPARA, MFLG_SLOW, 0, NULL, /* UNREG, CLIENT, SERVER, OPER, SERVICE */ { m_quit, m_ignore, m_ignore, m_ignore, m_ignore } - }, + }, { 0 } -}; - - -#ifdef GODMODE -extern int sdbflag; -#endif /* GODMODE */ +}; +/** Array of command parameters. */ static char *para[MAXPARA + 2]; /* leave room for prefix and null */ -/* - * Message Tree stuff mostly written by orabidoo, with changes by Dianora. - * Adapted to Undernet, adding token support, etc by comstud 10/06/97 - */ - -static struct MessageTree msg_tree_cmd; -static struct MessageTree msg_tree_tok; -/* - * Guts of making the token tree... +/** Add a message to the lookup trie. + * @param[in,out] mtree_p Trie node to insert under. + * @param[in] msg_p Message to insert. + * @param[in] cmd Text of command to insert. */ -static struct Message **do_msg_tree_tok(struct MessageTree *mtree, char *prefix, - struct Message **mptr) +void +add_msg_element(struct MessageTree *mtree_p, struct Message *msg_p, char *cmd) { - char newprefix[64]; /* Must be longer than every command name */ - int c, c2, lp; - struct MessageTree *mtree1; + struct MessageTree *ntree_p; - lp = strlen(prefix); - if (!lp || !strncmp((*mptr)->tok, prefix, lp)) + if (*cmd == '\0') { - if (!mptr[1] || (lp && strncmp(mptr[1]->tok, prefix, lp))) - { - /* last command in the message struct or last command in this prefix */ - mtree->final = (*mptr)->tok + lp; - mtree->msg = *mptr; - for (c = 0; c < 26; ++c) - mtree->pointers[c] = NULL; - return mptr + 1; - } - /* command in this prefix */ - if (0 == ircd_strcmp((*mptr)->tok, prefix)) - { - mtree->final = ""; - mtree->msg = *mptr++; - } - else - mtree->final = NULL; + mtree_p->msg = msg_p; + return; + } - for (c = 'A'; c <= 'Z'; ++c) - { - if ((*mptr)->tok[lp] == c) - { - mtree1 = (struct MessageTree *)MyMalloc(sizeof(struct MessageTree)); - mtree1->final = NULL; - mtree->pointers[c - 'A'] = mtree1; - strcpy(newprefix, prefix); - newprefix[lp] = c; - newprefix[lp + 1] = '\0'; - mptr = do_msg_tree_tok(mtree1, newprefix, mptr); - if (!*mptr || strncmp((*mptr)->tok, prefix, lp)) - { - for (c2 = c + 1 - 'A'; c2 < 26; ++c2) - mtree->pointers[c2] = NULL; - return mptr; - } - } - else - mtree->pointers[c - 'A'] = NULL; - } - return mptr; + if ((ntree_p = mtree_p->pointers[*cmd & (MAXPTRLEN-1)]) != NULL) + { + add_msg_element(ntree_p, msg_p, cmd+1); + } + else + { + ntree_p = (struct MessageTree *)MyCalloc(sizeof(struct MessageTree), 1); + mtree_p->pointers[*cmd & (MAXPTRLEN-1)] = ntree_p; + add_msg_element(ntree_p, msg_p, cmd+1); } - /* - * XXX - should never be here, quick hack, this can be done better - */ - assert(0); - exit(1); } -/* - * Guts of making the command tree... +/** Remove a message from the lookup trie. + * @param[in,out] mtree_p Trie node to remove command from. + * @param[in] cmd Text of command to remove. */ -static struct Message *do_msg_tree_cmd(struct MessageTree *mtree, char *prefix, - struct Message *mptr) +struct MessageTree * +del_msg_element(struct MessageTree *mtree_p, char *cmd) { - char newprefix[64]; /* Must be longer than every command name */ - int c, c2, lp; - struct MessageTree *mtree1; + int slot = *cmd & (MAXPTRLEN-1); - lp = strlen(prefix); - if (!lp || !strncmp(mptr->cmd, prefix, lp)) - { - if (!mptr[1].cmd || (lp && strncmp(mptr[1].cmd, prefix, lp))) - { - /* last command in the message struct or last command in this prefix */ - mtree->final = mptr->cmd + lp; - mtree->msg = mptr; - for (c = 0; c < 26; ++c) - mtree->pointers[c] = NULL; - return mptr + 1; - } - /* command in this prefix */ - if (0 == ircd_strcmp(mptr->cmd, prefix)) - { - mtree->final = ""; - mtree->msg = mptr++; - } - else - mtree->final = NULL; + /* Either remove leaf message or from appropriate child. */ + if (*cmd == '\0') + mtree_p->msg = NULL; + else + mtree_p->pointers[slot] = del_msg_element(mtree_p->pointers[slot], cmd + 1); - for (c = 'A'; c <= 'Z'; ++c) - { - if (mptr->cmd[lp] == c) - { - mtree1 = (struct MessageTree *)MyMalloc(sizeof(struct MessageTree)); - mtree1->final = NULL; - mtree->pointers[c - 'A'] = mtree1; - strcpy(newprefix, prefix); - newprefix[lp] = c; - newprefix[lp + 1] = '\0'; - mptr = do_msg_tree_cmd(mtree1, newprefix, mptr); - if (!mptr->cmd || strncmp(mptr->cmd, prefix, lp)) - { - for (c2 = c + 1 - 'A'; c2 < 26; ++c2) - mtree->pointers[c2] = NULL; - return mptr; - } - } - else - mtree->pointers[c - 'A'] = NULL; - } - return mptr; - } - /* - * This should never happen - */ - assert(0); - exit(1); -} + /* If current message or any child still exists, keep this node. */ + if (mtree_p->msg) + return mtree_p; + for (slot = 0; slot < MAXPTRLEN; ++slot) + if (mtree_p->pointers[slot]) + return mtree_p; -static int mcmdcmp(const struct Message *m1, const struct Message *m2) -{ - return strcmp(m1->cmd, m2->cmd); + /* Otherwise, if we're not a root node, free it and return null. */ + if (mtree_p != &msg_tree && mtree_p != &tok_tree) + MyFree(mtree_p); + return NULL; } -static int mtokcmp(const struct Message **m1, const struct Message **m2) +/** Initialize the message lookup trie with all known commands. */ +void +initmsgtree(void) { - return strcmp((*m1)->tok, (*m2)->tok); + int i; + + memset(&msg_tree, 0, sizeof(msg_tree)); + memset(&tok_tree, 0, sizeof(tok_tree)); + + for (i = 0; msgtab[i].cmd != NULL ; i++) + { + add_msg_element(&msg_tree, &msgtab[i], msgtab[i].cmd); + add_msg_element(&tok_tree, &msgtab[i], msgtab[i].tok); + } } -/* - * Sort the command names. - * Create table of pointers into msgtab for tokens. - * Create trees for ->cmd and ->tok and free the token pointers. +/** Look up a command in the message trie. + * @param cmd Text of command to look up. + * @param root Root of message trie. + * @return Pointer to matching message, or NULL if non exists. */ -void initmsgtree(void) +static struct Message * +msg_tree_parse(char *cmd, struct MessageTree *root) { - int i; - struct Message *msg = msgtab; - int ii; - struct Message **msgtab_tok; - struct Message **msgtok; - - for (i = 0; msg->cmd; ++i, ++msg) - continue; - qsort(msgtab, i, sizeof(struct Message), - (int (*)(const void *, const void *))mcmdcmp); - msgtab_tok = (struct Message **)MyMalloc((i + 1) * sizeof(struct Message *)); - for (ii = 0; ii < i; ++ii) - msgtab_tok[ii] = msgtab + ii; - msgtab_tok[i] = NULL; /* Needed by `do_msg_tree_tok' */ - qsort(msgtab_tok, i, sizeof(struct Message *), - (int (*)(const void *, const void *))mtokcmp); - msg = do_msg_tree_cmd(&msg_tree_cmd, "", msgtab); - msgtok = do_msg_tree_tok(&msg_tree_tok, "", msgtab_tok); - MyFree(msgtab_tok); + struct MessageTree *mtree; + + for (mtree = root; mtree; mtree = mtree->pointers[(*cmd++) & (MAXPTRLEN-1)]) { + if (*cmd == '\0' && mtree->msg) + return mtree->msg; + else if (!IsAlpha(*cmd)) + return NULL; + } + return NULL; } -/* - * Generic tree parser which works for both commands and tokens. - * Optimized by Run. +/** Registers a service mapping to the pseudocommand handler. + * @param[in] map Service mapping to add. + * @return Non-zero on success; zero if a command already used the name. */ -static struct Message *msg_tree_parse(char *cmd, struct MessageTree *root) +int register_mapping(struct s_map *map) { - struct MessageTree *mtree; - unsigned char r = (0xdf & (unsigned char)*cmd) - 'A'; - if (r > 25 || !(mtree = root->pointers[r])) - return NULL; - for (;;) - { - r = 0xdf & (unsigned char)*++cmd; - if (mtree->final && *mtree->final == r) - return mtree->msg; - if ((r -= 'A') > 25 || !(mtree = mtree->pointers[r])) - return NULL; - } + struct Message *msg; + + if (msg_tree_parse(map->command, &msg_tree)) + return 0; + + msg = (struct Message *)MyMalloc(sizeof(struct Message)); + msg->cmd = map->command; + msg->tok = map->command; + msg->count = 0; + msg->parameters = 2; + msg->flags = MFLG_EXTRA; + if (!(map->flags & SMAP_FAST)) + msg->flags |= MFLG_SLOW; + msg->bytes = 0; + msg->extra = map; + + msg->handlers[UNREGISTERED_HANDLER] = m_ignore; + msg->handlers[CLIENT_HANDLER] = m_pseudo; + msg->handlers[SERVER_HANDLER] = m_ignore; + msg->handlers[OPER_HANDLER] = m_pseudo; + msg->handlers[SERVICE_HANDLER] = m_ignore; + + add_msg_element(&msg_tree, msg, msg->cmd); + map->msg = msg; + + return 1; } -/* - * This one is identical to the one above, but it is slower because it - * makes sure that `cmd' matches the _full_ command, exactly. - * This is to avoid confusion with commands like /quake on clients - * that send unknown commands directly to the server. +/** Removes a service mapping. + * @param[in] map Service mapping to remove. + * @return Non-zero on success; zero if no command used the name. */ -static struct Message *msg_tree_parse_client(char *cmd, - struct MessageTree *root) +int unregister_mapping(struct s_map *map) { - struct MessageTree *mtree; - unsigned char q = (0xdf & (unsigned char)*cmd) - 'A'; - if (q > 25 || !(mtree = root->pointers[q])) - return NULL; - for (;;) - { - q = 0xdf & (unsigned char)*++cmd; - if (mtree->final && 0 == ircd_strcmp(mtree->final, cmd)) - return mtree->msg; - if ((q -= 'A') > 25 || !(mtree = mtree->pointers[q])) - return NULL; + if (!msg_tree_parse(map->command, &msg_tree)) + { + /* This simply should never happen. */ + assert(0); + return 0; } + + del_msg_element(&msg_tree, map->msg->cmd); + + map->msg->extra = NULL; + MyFree(map->msg); + map->msg = NULL; + + return 1; } -/* - * parse a buffer. - * - * NOTE: parse_*() should not be called recusively by any other fucntions! +/** Parse a line of data from a user. + * NOTE: parse_*() should not be called recursively by any other + * functions! + * @param[in] cptr Client that sent the data. + * @param[in] buffer Start of input line. + * @param[in] bufend End of input line. + * @return 0 on success, -1 on parse error, or CPTR_KILLED if message + * handler returns it. */ -int parse_client(struct Client *cptr, char *buffer, char *bufend) +int +parse_client(struct Client *cptr, char *buffer, char *bufend) { struct Client* from = cptr; char* ch; char* s; int i; int paramcount; - int noprefix = 0; struct Message* mptr; MessageHandler handler = 0; @@ -816,8 +841,6 @@ int parse_client(struct Client *cptr, char *buffer, char *bufend) while (*ch == ' ') ch++; /* Advance to command */ } - else - noprefix = 1; if (*ch == '\0') { ServerStats->is_empt++; @@ -829,11 +852,7 @@ int parse_client(struct Client *cptr, char *buffer, char *bufend) if ((s = strchr(ch, ' '))) *s++ = '\0'; - /* - * This is a client/unregistered entity. - * Check long command list only. - */ - if (!(mptr = msg_tree_parse_client(ch, &msg_tree_cmd))) + if ((mptr = msg_tree_parse(ch, &msg_tree)) == NULL) { /* * Note: Give error message *only* to recognized @@ -860,8 +879,8 @@ int parse_client(struct Client *cptr, char *buffer, char *bufend) paramcount = mptr->parameters; i = bufend - ((s) ? s : ch); mptr->bytes += i; - if ((mptr->flags & MFLG_SLOW)) - cptr->since += (2 + i / 120); + if ((mptr->flags & MFLG_SLOW) || !IsAnOper(cptr)) + cli_since(cptr) += (2 + i / 120); /* * Allow only 1 msg per 2 seconds * (on average) to prevent dumping. @@ -880,7 +899,14 @@ int parse_client(struct Client *cptr, char *buffer, char *bufend) /* Note initially true: s==NULL || *(s-1) == '\0' !! */ - i = 0; + if (mptr->flags & MFLG_EXTRA) { + /* This is a horrid kludge to avoid changing the command handler + * argument list. */ + para[1] = (char*)mptr->extra; + i = 1; + } else { + i = 0; + } if (s) { if (paramcount > MAXPARA) @@ -917,14 +943,20 @@ int parse_client(struct Client *cptr, char *buffer, char *bufend) handler = mptr->handlers[cli_handler(cptr)]; assert(0 != handler); -#ifndef IDLE_FROM_MSG - if (IsUser(cptr) && handler != m_ping && handler != m_ignore) + if (!feature_bool(FEAT_IDLE_FROM_MSG) && IsUser(cptr) && + handler != m_ping && handler != m_ignore) cli_user(from)->last = CurrentTime; -#endif return (*handler) (cptr, from, i, para); } +/** Parse a line of data from a server. + * @param[in] cptr Client that sent the data. + * @param[in] buffer Start of input line. + * @param[in] bufend End of input line. + * @return 0 on success, -1 on parse error, or CPTR_KILLED if message + * handler returns it. + */ int parse_server(struct Client *cptr, char *buffer, char *bufend) { struct Client* from = cptr; @@ -963,11 +995,11 @@ int parse_server(struct Client *cptr, char *buffer, char *bufend) /* * If the client corresponding to the * prefix is not found. We must ignore it, - * it is simply a lagged message travelling + * it is simply a lagged message traveling * upstream a SQUIT that removed the client * --Run */ - if (!from) + if (from == NULL) { Debug((DEBUG_NOTICE, "Unknown prefix (%s)(%s) from (%s)", para[0], buffer, cli_name(cptr))); @@ -996,24 +1028,32 @@ int parse_server(struct Client *cptr, char *buffer, char *bufend) return 0; } } - else if (Protocol(cptr) > 9) /* Well, not ALWAYS, 2.9 can send no prefix */ + else { char numeric_prefix[6]; int i; - for (i = 0; i < 5; ++i) { - if ('\0' == ch[i] || ' ' == (numeric_prefix[i] = ch[i])) { + for (i = 0; i < 5; ++i) + { + if ('\0' == ch[i] || ' ' == (numeric_prefix[i] = ch[i])) + { break; } } numeric_prefix[i] = '\0'; + /* * We got a numeric nick as prefix * 1 or 2 character prefixes are from servers * 3 or 5 chars are from clients */ - if (' ' == ch[1] || ' ' == ch[2]) + if (0 == i) + { + protocol_violation(cptr,"Missing Prefix"); + from = cptr; + } + else if (' ' == ch[1] || ' ' == ch[2]) from = FindNServer(numeric_prefix); - else + else from = findNUser(numeric_prefix); do @@ -1025,7 +1065,7 @@ int parse_server(struct Client *cptr, char *buffer, char *bufend) /* * If the client corresponding to the * prefix is not found. We must ignore it, - * it is simply a lagged message travelling + * it is simply a lagged message traveling * upstream a SQUIT that removed the client * --Run * There turned out to be other reasons that @@ -1034,7 +1074,7 @@ int parse_server(struct Client *cptr, char *buffer, char *bufend) * allow a KILL to pass too. * --Run */ - if (!from) + if (from == NULL) { ServerStats->is_unpf++; while (*ch == ' ') @@ -1111,25 +1151,18 @@ int parse_server(struct Client *cptr, char *buffer, char *bufend) * * Clients/unreg servers always receive/ * send long commands -record + * + * And for the record, this trie parser really does not care. - Dianora */ - /* - * This is a server. Check the token command list. - * -record!jegelhof@cloud9.net - */ - mptr = msg_tree_parse(ch, &msg_tree_tok); + mptr = msg_tree_parse(ch, &tok_tree); -#if 1 /* for 2.10.0/2.10.10 */ - /* - * This code supports 2.9 and 2.10.0 sending long commands. - * It makes more calls to ircd_strcmp() than the above - * so it will be somewhat slower. - */ - if (!mptr) - mptr = msg_tree_parse(ch, &msg_tree_cmd); -#endif /* 1 */ + if (mptr == NULL) + { + mptr = msg_tree_parse(ch, &msg_tree); + } - if (!mptr) + if (mptr == NULL) { /* * Note: Give error message *only* to recognized