diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-05-02 19:02:12 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-05-02 19:02:12 +0000 |
commit | e0583918834a3f8683e430adf3923ea89d2a449a (patch) | |
tree | ff36ada734c3874d3be1a806e3a2b994386b54ed /src/protocol | |
parent | 49491770383e66f1b8074d8b0f80026e3086e9d8 (diff) |
BUILD : 1.7.8 (753) BUGS : N/a NOTES : Merged anope-dev with trunk
git-svn-id: svn://svn.anope.org/anope/trunk@753 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@516 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol')
34 files changed, 27305 insertions, 0 deletions
diff --git a/src/protocol/Makefile b/src/protocol/Makefile new file mode 100644 index 000000000..e73fd7e7c --- /dev/null +++ b/src/protocol/Makefile @@ -0,0 +1,45 @@ +include ./Makefile.inc + +MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \ + 'LDFLAGS=${LDFLAGS}' 'BINDEST=${BINDEST}' 'INSTALL=${INSTALL}' \ + 'INCLUDEDIR=${INCLUDEDIR}' 'RM=${RM}' 'CP=${CP}' \ + 'TOUCH=${TOUCH}' 'SHELL=${SHELL}' 'DATDEST=${DATDEST}' \ + 'RUNGROUP=${RUNGROUP}' 'MODULE_PATH=${MODULE_PATH}' \ + 'PROFILE=${PROFILE}' 'SHARED=${SHARED}' + +OBJECTS= $(SRCS:.c=.o) +SO_FILES=$(OBJECTS:.o=.s) +CDEFS= -g -rdynamic -Wall +CFLAGS=$(CFLAGS) $(CDEFS) + +all: modules subs + +modules: $(OBJECTS) $(SO_FILES) + +install: + $(CP) ./*.so $(MODULE_PATH) + +distclean: clean spotless + +.c.o: + $(CC) $(CFLAGS) -I../${INCLUDEDIR} -c $< + +.o.s: + $(CC) ${SHARED} $< -o $*.so ${PROFILE} + +subs: + @for i in $(SUBS); do \ + echo "make all in $$i..."; \ + (cd $$i; $(MAKE) $(MAKEARGS) all); done + +subs_clean: + @for i in $(SUBS); do \ + echo "cleaning in $$i..."; \ + (cd $$i; $(MAKE) $(MAKEARGS) clean); done + +clean: subs_clean + rm -f *.o *.so *.c~ core + +spotless: clean + rm -f *.so Makefile.inc + diff --git a/src/protocol/Makefile.sub b/src/protocol/Makefile.sub new file mode 100644 index 000000000..b060ca5b6 --- /dev/null +++ b/src/protocol/Makefile.sub @@ -0,0 +1,30 @@ +MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \ + 'LDFLAGS=${LDFLAGS}' 'BINDEST=${BINDEST}' 'INSTALL=${INSTALL}' \ + 'INCLUDEDIR=${INCLUDEDIR}' 'RM=${RM}' 'CP=${CP}' \ + 'TOUCH=${TOUCH}' 'SHELL=${SHELL}' 'DATDEST=${DATDEST}' \ + 'RUNGROUP=${RUNGROUP}' 'MODULE_PATH=${MODULE_PATH}' \ + 'PROFILE=${PROFILE}' 'SHARED=${SHARED}' + +OBJECTS= $(SRCS:.c=.o) +SO_FILES=$(OBJECTS:.o=.s) +CDEFS= -g -rdynamic -Wall +CFLAGS=$(CFLAGS) $(CDEFS) + +all: module + +module: $(OBJECTS) so + +distclean: clean spotless + +.c.o: + $(CC) $(CFLAGS) -I../ -I../../${INCLUDEDIR} -c $< + +so: + $(CC) ${SHARED} $(OBJECTS) -o ../$(TARGET).so ${PROFILE} + +clean: + rm -f *.o *.so *.c~ core + +spotless: clean + rm -f *~ + diff --git a/src/protocol/Makefile.win32 b/src/protocol/Makefile.win32 new file mode 100644 index 000000000..1f46f7534 --- /dev/null +++ b/src/protocol/Makefile.win32 @@ -0,0 +1,26 @@ +include ../../Makefile.inc.win32 + +SRCS=bahamut.c dreamforge.c hybrid.c inspircd.c plexus.c ptlink.c rageircd.c ratbox.c \ + shadowircd.c solidircd.c ultimate2.c ultimate3.c unreal31.c unreal32.c viagra.c + +OBJECTS= $(SRCS:.c=.dll) +CFLAGS=/LD /MD /D MODULE_COMPILE $(CFLAGS) /I"../../include" +LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:AnopeInit + +all: $(OBJECTS) + +distclean: clean spotless + +.c.dll: + $(CC) $(CFLAGS) $< $(LFLAGS) + +clean: + -@del *.obj + +spotless: clean + -@del *.dll *.lib *.exp + +install: + -@mkdir ..\..\$(DATDEST)\modules + -@mkdir ..\..\$(DATDEST)\modules\runtime + -@copy *.dll ..\..\$(DATDEST)\modules diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c new file mode 100644 index 000000000..3cc213a7c --- /dev/null +++ b/src/protocol/bahamut.c @@ -0,0 +1,1659 @@ +/* Bahamut functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/*************************************************************************/ + +#include "services.h" +#include "pseudo.h" +#include "bahamut.h" + +IRCDVar myIrcd[] = { + {"BahamutIRCd 1.4.*/1.8.*", /* ircd name */ + "+o", /* nickserv mode */ + "+o", /* chanserv mode */ + "+o", /* memoserv mode */ + "+", /* hostserv mode */ + "+io", /* operserv mode */ + "+o", /* botserv mode */ + "+h", /* helpserv mode */ + "+i", /* Dev/Null mode */ + "+io", /* Global mode */ + "+o", /* nickserv alias mode */ + "+o", /* chanserv alias mode */ + "+o", /* memoserv alias mode */ + "+", /* hostserv alias mode */ + "+io", /* operserv alias mode */ + "+o", /* botserv alias mode */ + "+h", /* helpserv alias mode */ + "+i", /* Dev/Null alias mode */ + "+io", /* Global alias mode */ + "+", /* Used by BotServ Bots */ + 2, /* Chan Max Symbols */ + "-cilmnpstOR", /* Modes to Remove */ + "+o", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 0, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + NULL, /* Mode to set for channel admin */ + NULL, /* Mode to unset for channel admin */ + "+rd", /* Mode On Reg */ + "-r+d", /* Mode on UnReg */ + "+d", /* Mode on Nick Change */ + 1, /* Supports SGlines */ + 1, /* Supports SQlines */ + 1, /* Supports SZlines */ + 0, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + 0, /* Protected Umode */ + 0, /* Has Admin */ + 1, /* Chan SQlines */ + 1, /* Quit on Kill */ + 1, /* SVSMODE unban */ + 0, /* Has Protect */ + 0, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 0, /* vidents */ + 1, /* svshold */ + 1, /* time stamp on mode */ + 1, /* NICKIP */ + 0, /* O:LINE */ + 1, /* UMODE */ + 0, /* VHOST ON NICK */ + 0, /* Change RealName */ + 0, /* No Knock */ + 0, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + 0, /* Vhost Mode */ + 1, /* +f */ + 0, /* +L */ + CMODE_j, /* Mode */ + 0, /* Mode */ + 1, + 1, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 1, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + NULL, /* vhost char */ + 0, /* ts6 */ + 1, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 1, /* reports sync state */ + } + , + {NULL} +}; + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + CAPAB_TSMODE, /* TSMODE */ + CAPAB_UNCONNECT, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + 0, /* ZIP */ + CAPAB_BURST, /* BURST */ + 0, /* TS5 */ + 0, /* TS3 */ + CAPAB_DKEY, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + 0, /* UID */ + 0, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + 0, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + CAPAB_DOZIP, /* DOZIP */ + 0, 0, 0} +}; + + +void bahamut_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'a': + if (UnRestrictSAdmin) { + break; + } + if (add && !is_services_admin(user)) { + common_svsmode(user, "-a", NULL); + user->mode &= ~UMODE_a; + } + break; + case 'd': + if (ac == 0) { + alog("user: umode +d with no parameter (?) for user %s", + user->nick); + break; + } + + ac--; + av++; + user->svid = strtoul(*av, NULL, 0); + break; + case 'o': + if (add) { + opcnt++; + + if (WallOper) + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + display_news(user, NEWS_OPER); + + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + } + } +} + + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + UMODE_A, 0, 0, /* A B C */ + UMODE_D, 0, UMODE_F, /* D E F */ + 0, 0, UMODE_I, /* G H I */ + 0, UMODE_K, 0, /* J K L */ + 0, 0, UMODE_O, /* M N O */ + 0, 0, UMODE_R, /* P Q R */ + 0, 0, 0, /* S T U */ + 0, 0, UMODE_X, /* V W X */ + 0, /* Y */ + 0, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, UMODE_b, UMODE_c, /* a b c */ + UMODE_d, UMODE_e, UMODE_f, /* d e f */ + UMODE_g, UMODE_h, UMODE_i, /* g h i */ + UMODE_j, UMODE_k, 0, /* j k l */ + UMODE_m, UMODE_n, UMODE_o, /* m n o */ + 0, 0, UMODE_r, /* p q r */ + UMODE_s, 0, 0, /* s t u */ + 0, UMODE_w, UMODE_x, /* v w x */ + UMODE_y, /* y */ + 0, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 0, + 0, 0, 0, 0, + 0, + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, /* BCD */ + {NULL}, {NULL}, {NULL}, /* EFG */ + {NULL}, /* H */ + {add_invite, del_invite}, /* I */ + {NULL}, /* J */ + {NULL}, {NULL}, {NULL}, /* KLM */ + {NULL}, {NULL}, {NULL}, /* NOP */ + {NULL}, {NULL}, {NULL}, /* QRS */ + {NULL}, {NULL}, {NULL}, /* TUV */ + {NULL}, {NULL}, {NULL}, /* WXY */ + {NULL}, /* Z */ + {NULL}, {NULL}, /* (char 91 - 92) */ + {NULL}, {NULL}, {NULL}, /* (char 93 - 95) */ + {NULL}, /* ` (char 96) */ + {NULL}, /* a (char 97) */ + {add_ban, del_ban}, /* b */ + {NULL}, {NULL}, /* cd */ + {add_exception, del_exception}, + {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {0}, /* A */ + {0}, /* B */ + {0}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {0}, /* K */ + {0}, /* L */ + {CMODE_M, 0, NULL, NULL}, /* M */ + {0}, /* N */ + {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* P */ + {0}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {0}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {CMODE_c, 0, NULL, NULL}, + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {CMODE_j, 0, set_flood, cs_set_flood}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {0}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'c', CMODE_c, 0, NULL, NULL}, + {'i', CMODE_i, 0, NULL, NULL}, + {'j', CMODE_j, 0, get_flood, cs_get_flood}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'M', CMODE_M, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {0} +}; + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + + +void bahamut_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (ircdcap->tsmode) { + if (uplink_capab & ircdcap->tsmode) { + send_cmd(source, "MODE %s 0 %s", dest, buf); + } else { + send_cmd(source, "MODE %s %s", dest, buf); + } + } else { + send_cmd(source, "MODE %s %s", dest, buf); + } +} + +/* SVSHOLD - set */ +void bahamut_cmd_svshold(char *nick) +{ + send_cmd(ServerName, "SVSHOLD %s %d :%s", nick, NSReleaseTimeout, + "Being held for registered user"); +} + +/* SVSHOLD - release */ +void bahamut_cmd_release_svshold(char *nick) +{ + send_cmd(ServerName, "SVSHOLD %s 0", nick); +} + +/* SVSMODE -b */ +void bahamut_cmd_unban(char *name, char *nick) +{ + bahamut_cmd_svsmode_chan(name, "-b", nick); +} + + +/* SVSMODE channel modes */ + +void bahamut_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + if (nick) { + send_cmd(ServerName, "SVSMODE %s %s %s", name, mode, nick); + } else { + send_cmd(ServerName, "SVSMODE %s %s", name, mode); + } +} + +void bahamut_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s", ircd->botchanumode, nick); +} + +/* EVENT: SJOIN */ +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + +/* +** NICK - new +** source = NULL +** parv[0] = nickname +** parv[1] = hopcount +** parv[2] = timestamp +** parv[3] = modes +** parv[4] = username +** parv[5] = hostname +** parv[6] = server +** parv[7] = servicestamp +** parv[8] = IP +** parv[9] = info +** NICK - change +** source = oldnick +** parv[0] = new nickname +** parv[1] = hopcount +*/ +int anope_event_nick(char *source, int ac, char **av) +{ + User *user; + + if (ac != 2) { + user = do_nick(source, av[0], av[4], av[5], av[6], av[9], + strtoul(av[2], NULL, 10), strtoul(av[7], NULL, 0), + strtoul(av[8], NULL, 0), NULL, NULL); + if (user) { + anope_set_umode(user, 1, &av[3]); + } + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + +/* EVENT : CAPAB */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +/* EVENT : OS */ +int anope_event_os(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_OperServ, av[0]); + return MOD_CONT; +} + +/* EVENT : NS */ +int anope_event_ns(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_NickServ, av[0]); + return MOD_CONT; +} + +/* EVENT : MS */ +int anope_event_ms(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_MemoServ, av[0]); + return MOD_CONT; +} + +/* EVENT : HS */ +int anope_event_hs(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_HostServ, av[0]); + return MOD_CONT; +} + +/* EVENT : CS */ +int anope_event_cs(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_ChanServ, av[0]); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + + /* first update the cs protect info about this ircd */ + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+","-"); + + /* now add the commands */ + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GLOBOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GNOTICE", anope_event_gnotice); addCoreMessage(IRCD,m); + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SQLINE", anope_event_sqline); addCoreMessage(IRCD,m); + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("CS", anope_event_cs); addCoreMessage(IRCD,m); + m = createMessage("HS", anope_event_hs); addCoreMessage(IRCD,m); + m = createMessage("MS", anope_event_ms); addCoreMessage(IRCD,m); + m = createMessage("NS", anope_event_ns); addCoreMessage(IRCD,m); + m = createMessage("OS", anope_event_os); addCoreMessage(IRCD,m); + m = createMessage("RS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SGLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("SS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m); + m = createMessage("SZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSGLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + m = createMessage("LUSERSLOCK",anope_event_luserslock); addCoreMessage(IRCD,m); + m = createMessage("BURST", anope_event_burst); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + +} + +/* *INDENT-ON* */ + +/* SQLINE */ +void bahamut_cmd_sqline(char *mask, char *reason) +{ + if (!mask || !reason) { + return; + } + + send_cmd(NULL, "SQLINE %s :%s", mask, reason); +} + +/* UNSGLINE */ +void bahamut_cmd_unsgline(char *mask) +{ + send_cmd(NULL, "UNSGLINE 0 :%s", mask); +} + +/* UNSZLINE */ +void bahamut_cmd_unszline(char *mask) +{ + /* this will likely fail so its only here for legacy */ + send_cmd(NULL, "UNSZLINE 0 %s", mask); + /* this is how we are supposed to deal with it */ + send_cmd(NULL, "RAKILL %s *", mask); +} + +/* SZLINE */ +void bahamut_cmd_szline(char *mask, char *reason, char *whom) +{ + /* this will likely fail so its only here for legacy */ + send_cmd(NULL, "SZLINE %s :%s", mask, reason); + /* this is how we are supposed to deal with it */ + send_cmd(NULL, "AKILL %s * %d %s %ld :%s", mask, 86400 * 2, whom, + (long int) time(NULL), reason); +} + +/* SVSNOOP */ +void bahamut_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "SVSNOOP %s %s", server, (set ? "+" : "-")); +} + +void bahamut_cmd_svsadmin(char *server, int set) +{ + bahamut_cmd_svsnoop(server, set); +} + +/* SGLINE */ +void bahamut_cmd_sgline(char *mask, char *reason) +{ + send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason); +} + +/* RAKILL */ +void bahamut_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, "RAKILL %s %s", host, user); +} + +/* PART */ +void bahamut_cmd_part(char *nick, char *chan, char *buf) +{ + if (!nick || !chan) { + return; + } + + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + +/* TOPIC */ +void bahamut_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "TOPIC %s %s %lu :%s", chan, whosetit, + (unsigned long int) when, topic); +} + +/* UNSQLINE */ +void bahamut_cmd_unsqline(char *user) +{ + send_cmd(NULL, "UNSQLINE %s", user); +} + +/* JOIN - SJOIN */ +void bahamut_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(user, "SJOIN %ld %s", (long int) chantime, channel); +} + +void bahamut_cmd_burst() +{ + send_cmd(NULL, "BURST"); +} + +/* AKILL */ +/* parv[1]=host + * parv[2]=user + * parv[3]=length + * parv[4]=akiller + * parv[5]=time set + * parv[6]=reason + */ +void bahamut_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(NULL, "AKILL %s %s %d %s %ld :%s", host, user, 86400 * 2, who, + (long int) time(NULL), reason); +} + +/* SVSKILL */ +/* parv[0] = servername + * parv[1] = client + * parv[2] = nick stamp + * parv[3] = kill message + */ +/* + Note: if the stamp is null 0, the below usage is correct of Bahamut +*/ +void bahamut_cmd_svskill(char *source, char *user, char *buf) +{ + + if (!source || !user || !buf) { + return; + } + + send_cmd(source, "SVSKILL %s :%s", user, buf); +} + +/* SVSMODE */ +/* parv[0] - sender + * parv[1] - nick + * parv[2] - TS (or mode, depending on svs version) + * parv[3] - mode (or services id if old svs version) + * parv[4] - optional arguement (services id) + */ +void bahamut_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(ServerName, "SVSMODE %s %ld %s%s%s", u->nick, + (long int) u->timestamp, av[0], (ac == 2 ? " " : ""), + (ac == 2 ? av[1] : "")); +} + +/* SQUIT */ +/* + * parv[0] = sender prefix + * parv[1] = server name + * parv[2] = comment +*/ +void bahamut_cmd_squit(char *servname, char *message) +{ + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +/* PONG */ +void bahamut_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +void bahamut_cmd_svinfo() +{ + send_cmd(NULL, "SVINFO 3 1 0 :%ld", (long int) time(NULL)); +} + +/* PASS */ +void bahamut_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS %s :TS", pass); +} + +/* SERVER */ +void bahamut_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, ServerDesc); +} + +/* CAPAB */ +void bahamut_cmd_capab() +{ + send_cmd(NULL, + "CAPAB SSJOIN NOQUIT BURST UNCONNECT NICKIP TSMODE TS3"); +} + +void bahamut_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + if (servernum == 1) { + bahamut_cmd_pass(RemotePassword); + } else if (servernum == 2) { + bahamut_cmd_pass(RemotePassword2); + } else if (servernum == 3) { + bahamut_cmd_pass(RemotePassword3); + } + bahamut_cmd_capab(); + bahamut_cmd_server(ServerName, 1, ServerDesc); + bahamut_cmd_svinfo(); + bahamut_cmd_burst(); +} + + + + + +/* EVENT : SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + + do_server(source, av[0], av[1], av[2], NULL); + return MOD_CONT; +} + +/* EVENT : PRIVMSG */ +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +/* EVENT : SVINFO */ +/* + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +int anope_event_svinfo(char *source, int ac, char **av) +{ + return MOD_CONT; +} + + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac != 4) + return MOD_CONT; + do_topic(source, ac, av); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + +/* EVENT: MODE */ +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + +/* EVENT: KILL */ +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +/* EVENT: KICK */ +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + +/* EVENT: JOIN */ +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +/* EVENT: MOTD */ +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +void bahamut_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + +/* NOTICE */ +void bahamut_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + bahamut_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void bahamut_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void bahamut_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void bahamut_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void bahamut_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $%s :%s", dest, msg); +} + +void bahamut_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $%s :%s", dest, msg); +} + +/* GLOBOPS */ +void bahamut_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "GLOBOPS :%s", buf); +} + +/* 391 */ +void bahamut_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void bahamut_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void bahamut_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void bahamut_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void bahamut_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void bahamut_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void bahamut_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void bahamut_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void bahamut_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void bahamut_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void bahamut_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void bahamut_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +void bahamut_cmd_nick(char *nick, char *name, char *modes) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, + (long int) time(NULL), modes, ServiceUser, ServiceHost, + ServerName, name); + bahamut_cmd_sqline(nick, "Reserved for services"); +} + +void bahamut_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +void bahamut_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void bahamut_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void bahamut_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void bahamut_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +/* INVITE */ +void bahamut_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +/* QUIT */ +void bahamut_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + bahamut_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +void bahamut_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +void bahamut_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, real); + bahamut_cmd_sqline(nick, "Reserved for services"); +} + +/* SVSNICK */ +/* parv[0] = sender + * parv[1] = old nickname + * parv[2] = new nickname + * parv[3] = timestamp + */ +void bahamut_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "SVSNICK %s %s :%ld", source, guest, (long int) when); +} + +void bahamut_cmd_guest_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, real); +} + +void bahamut_cmd_svso(char *source, char *nick, char *flag) +{ + /* Not Supported by this IRCD */ +} + +void bahamut_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + /* Not Supported by this IRCD */ +} + +void bahamut_cmd_vhost_off(User * u) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void bahamut_cmd_svid_umode(char *nick, time_t ts) +{ + send_cmd(ServerName, "SVSMODE %s %lu +d 1", nick, + (unsigned long int) ts); +} + + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void bahamut_cmd_nc_change(User * u) +{ + common_svsmode(u, "+d", "1"); +} + +/* SVSMODE +d */ +void bahamut_cmd_svid_umode2(User * u, char *ts) +{ + /* not used by bahamut ircds */ +} + + +void bahamut_cmd_svid_umode3(User * u, char *ts) +{ + if (u->svid != u->timestamp) { + common_svsmode(u, "+rd", ts); + } else { + common_svsmode(u, "+r", NULL); + } +} + +/* NICK <newnick> */ +void bahamut_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +int anope_event_error(char *source, int ac, char **av) +{ + if (ac >= 1) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + +int anope_event_notice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_sqline(char *source, int ac, char **av) +{ + return MOD_CONT; +} + + +int anope_event_gnotice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +void bahamut_cmd_svsjoin(char *source, char *nick, char *chan) +{ + /* Can not find any reference to these in Bahamut */ +} + +void bahamut_cmd_svspart(char *source, char *nick, char *chan) +{ + /* Can not find any reference to these in Bahamut */ +} + +void bahamut_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + + +void bahamut_cmd_eob() +{ + send_cmd(NULL, "BURST 0"); +} + +int anope_event_burst(char *source, int ac, char **av) +{ + Server *s; + s = findserver(servlist, source); + if (!ac) { + /* for future use - start burst */ + } else { + /* If we found a server with the given source, that one just + * finished bursting. If there was no source, then our uplink + * server finished bursting. -GD + */ + if (!s && serv_uplink) + s = serv_uplink; + finish_sync(s, 1); + } + return MOD_CONT; +} + +int anope_event_luserslock(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_credits(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int bahamut_flood_mode_check(char *value) +{ + char *dp, *end; + + if (value && *value != ':' + && (strtoul((*value == '*' ? value + 1 : value), &dp, 10) > 0) + && (*dp == ':') && (*(++dp) != 0) && (strtoul(dp, &end, 10) > 0) + && (*end == 0)) { + return 1; + } else { + return 0; + } +} + +void bahamut_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + bahamut_cmd_squit(jserver, rbuf); + bahamut_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* GLOBOPS - to handle old WALLOPS */ +void bahamut_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "GLOBOPS :%s", fmt); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int bahamut_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void bahamut_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + +/* this avoids "undefined symbol" messages of those whom try to load mods that + call on this function */ +void bahamut_cmd_chghost(char *nick, char *vhost) +{ + if (debug) { + alog("debug: This IRCD does not support vhosting"); + } +} + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(bahamut_cmd_svsnoop); + pmodule_cmd_remove_akill(bahamut_cmd_remove_akill); + pmodule_cmd_topic(bahamut_cmd_topic); + pmodule_cmd_vhost_off(bahamut_cmd_vhost_off); + pmodule_cmd_akill(bahamut_cmd_akill); + pmodule_cmd_svskill(bahamut_cmd_svskill); + pmodule_cmd_svsmode(bahamut_cmd_svsmode); + pmodule_cmd_372(bahamut_cmd_372); + pmodule_cmd_372_error(bahamut_cmd_372_error); + pmodule_cmd_375(bahamut_cmd_375); + pmodule_cmd_376(bahamut_cmd_376); + pmodule_cmd_nick(bahamut_cmd_nick); + pmodule_cmd_guest_nick(bahamut_cmd_guest_nick); + pmodule_cmd_mode(bahamut_cmd_mode); + pmodule_cmd_bot_nick(bahamut_cmd_bot_nick); + pmodule_cmd_kick(bahamut_cmd_kick); + pmodule_cmd_notice_ops(bahamut_cmd_notice_ops); + pmodule_cmd_notice(bahamut_cmd_notice); + pmodule_cmd_notice2(bahamut_cmd_notice2); + pmodule_cmd_privmsg(bahamut_cmd_privmsg); + pmodule_cmd_privmsg2(bahamut_cmd_privmsg2); + pmodule_cmd_serv_notice(bahamut_cmd_serv_notice); + pmodule_cmd_serv_privmsg(bahamut_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(bahamut_cmd_bot_chan_mode); + pmodule_cmd_351(bahamut_cmd_351); + pmodule_cmd_quit(bahamut_cmd_quit); + pmodule_cmd_pong(bahamut_cmd_pong); + pmodule_cmd_join(bahamut_cmd_join); + pmodule_cmd_unsqline(bahamut_cmd_unsqline); + pmodule_cmd_invite(bahamut_cmd_invite); + pmodule_cmd_part(bahamut_cmd_part); + pmodule_cmd_391(bahamut_cmd_391); + pmodule_cmd_250(bahamut_cmd_250); + pmodule_cmd_307(bahamut_cmd_307); + pmodule_cmd_311(bahamut_cmd_311); + pmodule_cmd_312(bahamut_cmd_312); + pmodule_cmd_317(bahamut_cmd_317); + pmodule_cmd_219(bahamut_cmd_219); + pmodule_cmd_401(bahamut_cmd_401); + pmodule_cmd_318(bahamut_cmd_318); + pmodule_cmd_242(bahamut_cmd_242); + pmodule_cmd_243(bahamut_cmd_243); + pmodule_cmd_211(bahamut_cmd_211); + pmodule_cmd_global(bahamut_cmd_global); + pmodule_cmd_global_legacy(bahamut_cmd_global_legacy); + pmodule_cmd_sqline(bahamut_cmd_sqline); + pmodule_cmd_squit(bahamut_cmd_squit); + pmodule_cmd_svso(bahamut_cmd_svso); + pmodule_cmd_chg_nick(bahamut_cmd_chg_nick); + pmodule_cmd_svsnick(bahamut_cmd_svsnick); + pmodule_cmd_vhost_on(bahamut_cmd_vhost_on); + pmodule_cmd_connect(bahamut_cmd_connect); + pmodule_cmd_svshold(bahamut_cmd_svshold); + pmodule_cmd_release_svshold(bahamut_cmd_release_svshold); + pmodule_cmd_unsgline(bahamut_cmd_unsqline); + pmodule_cmd_unszline(bahamut_cmd_unszline); + pmodule_cmd_szline(bahamut_cmd_szline); + pmodule_cmd_sgline(bahamut_cmd_sgline); + pmodule_cmd_unban(bahamut_cmd_unban); + pmodule_cmd_svsmode_chan(bahamut_cmd_svsmode_chan); + pmodule_cmd_svid_umode(bahamut_cmd_svid_umode); + pmodule_cmd_nc_change(bahamut_cmd_nc_change); + pmodule_cmd_svid_umode2(bahamut_cmd_svid_umode2); + pmodule_cmd_svid_umode3(bahamut_cmd_svid_umode3); + pmodule_cmd_eob(bahamut_cmd_eob); + pmodule_flood_mode_check(bahamut_flood_mode_check); + pmodule_cmd_jupe(bahamut_cmd_jupe); + pmodule_valid_nick(bahamut_valid_nick); + pmodule_cmd_ctcp(bahamut_cmd_ctcp); + pmodule_set_umode(bahamut_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("BahamutIRCd 1.4.*/1.8.*"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set("+j"); + pmodule_ircd_flood_mode_char_remove("-j"); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/bahamut.h b/src/protocol/bahamut.h new file mode 100644 index 000000000..7dd79b732 --- /dev/null +++ b/src/protocol/bahamut.h @@ -0,0 +1,131 @@ +/* Bahamut functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/*************************************************************************/ + +#define UMODE_a 0x00000001 /* umode +a - Services Admin */ +#define UMODE_h 0x00000002 /* umode +h - Helper */ +#define UMODE_i 0x00000004 /* umode +i - Invisible */ +#define UMODE_o 0x00000008 /* umode +o - Oper */ +#define UMODE_r 0x00000010 /* umode +r - registered nick */ +#define UMODE_w 0x00000020 /* umode +w - Get wallops */ +#define UMODE_A 0x00000040 /* umode +A - Server Admin */ +#define UMODE_x 0x00000080 /* umode +x - Squelch with notice */ +#define UMODE_X 0x00000100 /* umode +X - Squelch without notice */ +#define UMODE_F 0x00000200 /* umode +F - no cptr->since message rate throttle */ +#define UMODE_j 0x00000400 /* umode +j - client rejection notices */ +#define UMODE_K 0x00000800 /* umode +K - U: lined server kill messages */ +#define UMODE_O 0x00001000 /* umode +O - Local Oper */ +#define UMODE_s 0x00002000 /* umode +s - Server notices */ +#define UMODE_c 0x00004000 /* umode +c - Client connections/exits */ +#define UMODE_k 0x00008000 /* umode +k - Server kill messages */ +#define UMODE_f 0x00010000 /* umode +f - Server flood messages */ +#define UMODE_y 0x00020000 /* umode +y - Stats/links */ +#define UMODE_d 0x00040000 /* umode +d - Debug info */ +#define UMODE_g 0x00080000 /* umode +g - Globops */ +#define UMODE_b 0x00100000 /* umode +b - Chatops */ +#define UMODE_n 0x00200000 /* umode +n - Routing Notices */ +#define UMODE_m 0x00400000 /* umode +m - spambot notices */ +#define UMODE_e 0x00800000 /* umode +e - oper notices for the above +D */ +#define UMODE_D 0x01000000 /* umode +D - Hidden dccallow umode */ +#define UMODE_I 0x02000000 /* umode +I - invisible oper (masked) */ +#define UMODE_R 0x80000000 /* unmode +R - No non registered msgs */ + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ +#define CMODE_c 0x00000400 /* Colors can't be used */ +#define CMODE_M 0x00000800 /* Non-regged nicks can't send messages */ +#define CMODE_j 0x00001000 /* join throttle */ +#define CMODE_O 0x00008000 /* Only opers can join */ + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void bahamut_set_umode(User * user, int ac, char **av); +void bahamut_cmd_svsnoop(char *server, int set); +void bahamut_cmd_remove_akill(char *user, char *host); +void bahamut_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void bahamut_cmd_vhost_off(User * u); +void bahamut_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void bahamut_cmd_svskill(char *source, char *user, char *buf); +void bahamut_cmd_svsmode(User * u, int ac, char **av); +void bahamut_cmd_372(char *source, char *msg); +void bahamut_cmd_372_error(char *source); +void bahamut_cmd_375(char *source); +void bahamut_cmd_376(char *source); +void bahamut_cmd_nick(char *nick, char *name, char *modes); +void bahamut_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void bahamut_cmd_mode(char *source, char *dest, char *buf); +void bahamut_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void bahamut_cmd_kick(char *source, char *chan, char *user, char *buf); +void bahamut_cmd_notice_ops(char *source, char *dest, char *buf); +void bahamut_cmd_notice(char *source, char *dest, char *buf); +void bahamut_cmd_notice2(char *source, char *dest, char *msg); +void bahamut_cmd_privmsg(char *source, char *dest, char *buf); +void bahamut_cmd_privmsg2(char *source, char *dest, char *msg); +void bahamut_cmd_serv_notice(char *source, char *dest, char *msg); +void bahamut_cmd_serv_privmsg(char *source, char *dest, char *msg); +void bahamut_cmd_bot_chan_mode(char *nick, char *chan); +void bahamut_cmd_351(char *source); +void bahamut_cmd_quit(char *source, char *buf); +void bahamut_cmd_pong(char *servname, char *who); +void bahamut_cmd_join(char *user, char *channel, time_t chantime); +void bahamut_cmd_unsqline(char *user); +void bahamut_cmd_invite(char *source, char *chan, char *nick); +void bahamut_cmd_part(char *nick, char *chan, char *buf); +void bahamut_cmd_391(char *source, char *timestr); +void bahamut_cmd_250(char *buf); +void bahamut_cmd_307(char *buf); +void bahamut_cmd_311(char *buf); +void bahamut_cmd_312(char *buf); +void bahamut_cmd_317(char *buf); +void bahamut_cmd_219(char *source, char *letter); +void bahamut_cmd_401(char *source, char *who); +void bahamut_cmd_318(char *source, char *who); +void bahamut_cmd_242(char *buf); +void bahamut_cmd_243(char *buf); +void bahamut_cmd_211(char *buf); +void bahamut_cmd_global(char *source, char *buf); +void bahamut_cmd_global_legacy(char *source, char *fmt); +void bahamut_cmd_sqline(char *mask, char *reason); +void bahamut_cmd_squit(char *servname, char *message); +void bahamut_cmd_svso(char *source, char *nick, char *flag); +void bahamut_cmd_chg_nick(char *oldnick, char *newnick); +void bahamut_cmd_svsnick(char *source, char *guest, time_t when); +void bahamut_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void bahamut_cmd_connect(int servernum); +void bahamut_cmd_svshold(char *nick); +void bahamut_cmd_release_svshold(char *nick); +void bahamut_cmd_unsgline(char *mask); +void bahamut_cmd_unszline(char *mask); +void bahamut_cmd_szline(char *mask, char *reason, char *whom); +void bahamut_cmd_sgline(char *mask, char *reason); +void bahamut_cmd_unban(char *name, char *nick); +void bahamut_cmd_svsmode_chan(char *name, char *mode, char *nick); +void bahamut_cmd_svid_umode(char *nick, time_t ts); +void bahamut_cmd_nc_change(User * u); +void bahamut_cmd_svid_umode2(User * u, char *ts); +void bahamut_cmd_svid_umode3(User * u, char *ts); +void bahamut_cmd_eob(); +int bahamut_flood_mode_check(char *value); +void bahamut_cmd_jupe(char *jserver, char *who, char *reason); +int bahamut_valid_nick(char *nick); +void bahamut_cmd_ctcp(char *source, char *dest, char *buf); + diff --git a/src/protocol/configure b/src/protocol/configure new file mode 100755 index 000000000..119c7c887 --- /dev/null +++ b/src/protocol/configure @@ -0,0 +1,35 @@ +#!/bin/sh + +echo -n "SRCS=" > ./Makefile.inc +FIRST=1 +for oldfile in *.c +do + if [ "$FIRST" = 1 ] ; then + echo -n " "$oldfile >> ./Makefile.inc + else + echo "\\" >> ./Makefile.inc + echo -n " " $oldfile >> ./Makefile.inc + fi + FIRST=0 +done +echo "" >> ./Makefile.inc + +echo -n "SUBS=" >> ./Makefile.inc +FIRST=1 +for dir in * +do + if [ -d $dir ] ; then + if [ -f $dir/Makefile ] ; then + if [ "$FIRST" = 1 ] ; then + echo -n " "$dir >> ./Makefile.inc + else + echo "\\" >> ./Makefile.inc + echo -n " " $dir >> ./Makefile.inc + fi + FIRST=0 + fi + fi +done + +exit 0 + diff --git a/src/protocol/dreamforge.c b/src/protocol/dreamforge.c new file mode 100644 index 000000000..6c77608f5 --- /dev/null +++ b/src/protocol/dreamforge.c @@ -0,0 +1,1363 @@ +/* DreamForge IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#include "services.h" +#include "pseudo.h" +#include "dreamforge.h" + +IRCDVar myIrcd[] = { + {"DreamForge 4.6.7", /* ircd name */ + "+o", /* nickserv mode */ + "+o", /* chanserv mode */ + "+o", /* memoserv mode */ + "+", /* hostserv mode */ + "+io", /* operserv mode */ + "+o", /* botserv mode */ + "+h", /* helpserv mode */ + "+i", /* Dev/Null mode */ + "+io", /* Global mode */ + "+o", /* nickserv alias mode */ + "+o", /* chanserv alias mode */ + "+o", /* memoserv alias mode */ + "+", /* hostserv alias mode */ + "+io", /* operserv alias mode */ + "+o", /* botserv alias mode */ + "+h", /* helpserv alias mode */ + "+i", /* Dev/Null alias mode */ + "+io", /* Global alias mode */ + "+", /* Used by BotServ Bots */ + 2, /* Chan Max Symbols */ + "-iklmnpstR", /* Modes to Remove */ + "+o", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 0, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + NULL, /* Mode to set for chan admin */ + NULL, /* Mode to unset for chan admin */ + "+rd", /* Mode On Reg */ + "-r+d", /* Mode on UnReg */ + "+d", /* Mode on Nick Change */ + 0, /* Supports SGlines */ + 1, /* Supports SQlines */ + 0, /* Supports SZlines */ + 0, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 0, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 1, /* TS Topci Backward */ + 0, /* Protected Umode */ + 0, /* Has Admin */ + 0, /* Chan SQlines */ + 0, /* Quit on Kill */ + 0, /* SVSMODE unban */ + 0, /* Has Protect */ + 1, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 0, /* vidents */ + 0, /* svshold */ + 1, /* time stamp on mode */ + 0, /* NICKIP */ + 0, /* O:LINE */ + 1, /* UMODE */ + 0, /* VHOST ON NICK */ + 0, /* Change RealName */ + 0, /* No Knock */ + 0, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + 0, /* Vhost Mode */ + 0, /* +f */ + 0, /* +L */ + 0, /* Mode */ + 0, /* Mode */ + 0, + 1, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 0, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + NULL, /* vhost char */ + 0, /* ts6 */ + 1, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 0, /* reports sync state */ + } + , + {NULL} +}; + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + 0, /* TSMODE */ + 0, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + 0, /* ZIP */ + 0, /* BURST */ + 0, /* TS5 */ + 0, /* TS3 */ + 0, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + 0, /* UID */ + 0, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + CAPAB_TOKEN, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + 0, 0, 0} +}; + +void dreamforge_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'd': + if (ac == 0) { + alog("user: umode +d with no parameter (?) for user %s", + user->nick); + break; + } + + ac--; + av++; + user->svid = strtoul(*av, NULL, 0); + break; + case 'o': + if (add) { + opcnt++; + + if (WallOper) + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + display_news(user, NEWS_OPER); + + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + } + } +} + + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + UMODE_A, 0, 0, /* A B C */ + 0, 0, 0, /* D E F */ + 0, 0, 0, /* G H I */ + 0, 0, 0, /* J K L */ + 0, 0, UMODE_O, /* M N O */ + 0, 0, 0, /* P Q R */ + 0, 0, 0, /* S T U */ + 0, 0, 0, /* V W X */ + 0, /* Y */ + 0, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, 0, UMODE_c, /* a b c */ + 0, 0, UMODE_f, /* d e f */ + UMODE_g, UMODE_h, UMODE_i, /* g h i */ + 0, UMODE_k, 0, /* j k l */ + 0, 0, UMODE_o, /* m n o */ + 0, 0, UMODE_r, /* p q r */ + UMODE_s, 0, 0, /* s t u */ + 0, UMODE_w, 0, /* v w x */ + 0, /* y */ + 0, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 0, + 0, 0, 0, 0, + 0, + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, + {NULL}, + {add_ban, del_ban}, + {NULL}, + {NULL}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {0}, /* A */ + {0}, /* B */ + {0}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {0}, /* K */ + {0}, /* L */ + {0}, /* M */ + {0}, /* N */ + {0}, /* O */ + {0}, /* P */ + {0}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {0}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {0}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {0} +}; + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + + +int anope_event_nick(char *source, int ac, char **av) +{ + if (ac != 2) { + do_nick(source, av[0], av[3], av[4], av[5], av[7], + strtoul(av[2], NULL, 10), strtoul(av[6], NULL, 0), 0, NULL, + NULL); + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+","-"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GLOBOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GNOTICE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("PROTOCTL", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("REHASH", anope_event_rehash); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("CREDITS", anope_event_credits); addCoreMessage(IRCD,m); + + +} + +/* *INDENT-ON* */ + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +void dreamforge_cmd_sqline(char *mask, char *reason) +{ + send_cmd(NULL, "SQLINE %s :%s", mask, reason); +} + +void dreamforge_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "SVSNOOP %s %s", server, (set ? "+" : "-")); +} + +void dreamforge_cmd_svsadmin(char *server, int set) +{ + dreamforge_cmd_svsnoop(server, set); +} + +void dreamforge_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, "RAKILL %s %s", host, user); +} + +void dreamforge_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "TOPIC %s %s %lu :%s", chan, whosetit, + (unsigned long int) when, topic); +} + +/* PART */ +void dreamforge_cmd_part(char *nick, char *chan, char *buf) +{ + if (!nick || !chan) { + return; + } + + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + + +void dreamforge_cmd_unsqline(char *user) +{ + send_cmd(NULL, "UNSQLINE %s", user); +} + +void dreamforge_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(user, "JOIN %s", channel); +} + +void dreamforge_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(NULL, "AKILL %s %s :%s", host, user, reason); +} + + +void dreamforge_cmd_svskill(char *source, char *user, char *buf) +{ + if (!buf) { + return; + } + + if (!source || !user) { + return; + } + + send_cmd(source, "KILL %s :%s", user, buf); +} + +void dreamforge_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(ServerName, "SVSMODE %s %s%s%s", u->nick, av[0], + (ac == 2 ? " " : ""), (ac == 2 ? av[1] : "")); +} + + +void dreamforge_cmd_squit(char *servname, char *message) +{ + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +void anope_pong(char *servname) +{ + send_cmd(servname, "PONG %s", servname); +} + +/* PASS */ +void dreamforge_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS :%s", pass); +} + +void dreamforge_cmd_capab() +{ + send_cmd(NULL, "PROTOCTL NOQUIT"); +} + +/* SERVER name hop descript */ +void dreamforge_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript); +} + +void dreamforge_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + dreamforge_cmd_capab(); + if (servernum == 1) + dreamforge_cmd_pass(RemotePassword); + if (servernum == 2) + dreamforge_cmd_pass(RemotePassword2); + if (servernum == 3) + dreamforge_cmd_pass(RemotePassword3); + dreamforge_cmd_server(ServerName, 1, ServerDesc); +} + +void dreamforge_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s %s", ircd->botchanumode, nick, nick); +} + + + +/* GLOBOPS */ +void dreamforge_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "GLOBOPS :%s", buf); +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac != 4) + return MOD_CONT; + do_topic(source, ac, av); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + + +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +void dreamforge_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "MODE %s %s", dest, buf); +} + +void dreamforge_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + + +void dreamforge_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + dreamforge_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void dreamforge_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void dreamforge_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void dreamforge_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void dreamforge_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $%s :%s", dest, msg); +} + +void dreamforge_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $%s :%s", dest, msg); +} + +void dreamforge_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +/* QUIT */ +void dreamforge_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +/* 391 */ +void dreamforge_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void dreamforge_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void dreamforge_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void dreamforge_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void dreamforge_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void dreamforge_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void dreamforge_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void dreamforge_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void dreamforge_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void dreamforge_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void dreamforge_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void dreamforge_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +void dreamforge_cmd_nick(char *nick, char *name, char *modes) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s 0 :%s", nick, + (long int) time(NULL), ServiceUser, ServiceHost, ServerName, + name); + anope_cmd_mode(nick, nick, "%s", modes); + dreamforge_cmd_sqline(nick, "Reserved for services"); +} + +void dreamforge_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +/* EVENT: SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + do_server(source, av[0], av[1], av[2], NULL); + return MOD_CONT; +} + + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + dreamforge_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +void dreamforge_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void dreamforge_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void dreamforge_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void dreamforge_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +/* INVITE */ +void dreamforge_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +/* PONG */ +void dreamforge_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +void dreamforge_cmd_bot_nick(char *nick, char *user, char *host, + char *real, char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s 0 :%s", nick, + (long int) time(NULL), user, host, ServerName, real); + anope_cmd_mode(nick, "MODE %s %s", nick, modes); + dreamforge_cmd_sqline(nick, "Reserved for services"); +} + +/* SVSHOLD - set */ +void dreamforge_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void dreamforge_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* UNSGLINE */ +void dreamforge_cmd_unsgline(char *mask) +{ + /* Not Supported by this IRCD */ +} + +/* UNSZLINE */ +void dreamforge_cmd_unszline(char *mask) +{ + /* Not Supported by this IRCD */ +} + +/* SZLINE */ +void dreamforge_cmd_szline(char *mask, char *reason, char *whom) +{ + /* Not Supported by this IRCD */ +} + +/* SGLINE */ +void dreamforge_cmd_sgline(char *mask, char *reason) +{ + /* Not Supported by this IRCD */ +} + +/* SVSNICK */ +void dreamforge_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "SVSNICK %s %s :%ld", source, guest, (long int) when); +} + +void dreamforge_cmd_guest_nick(char *nick, char *user, char *host, + char *real, char *modes) +{ + send_cmd(NULL, "NICK %s 1 %ld %s %s %s 0 :%s", nick, + (long int) time(NULL), user, host, ServerName, real); + anope_cmd_mode(nick, "MODE %s %s", nick, modes); +} + +void dreamforge_cmd_svso(char *source, char *nick, char *flag) +{ + /* Not Supported by this IRCD */ +} + +void dreamforge_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + /* Not Supported by this IRCD */ +} + +void dreamforge_cmd_unban(char *name, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE channel modes */ + +void dreamforge_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + /* Not Supported by this IRCD */ +} + +void dreamforge_cmd_vhost_off(User * u) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void dreamforge_cmd_svid_umode(char *nick, time_t ts) +{ + send_cmd(ServerName, "SVSMODE %s +d 1", nick); +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void dreamforge_cmd_nc_change(User * u) +{ + common_svsmode(u, "-r+d", "1"); +} + +/* SVSMODE +r */ +void dreamforge_cmd_svid_umode2(User * u, char *ts) +{ + if (u->svid != u->timestamp) { + common_svsmode(u, "+rd", ts); + } else { + common_svsmode(u, "+r", NULL); + } +} + +void dreamforge_cmd_svid_umode3(User * u, char *ts) +{ + /* not used */ +} + +/* NICK <newnick> */ +void dreamforge_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +void dreamforge_cmd_svsjoin(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void dreamforge_cmd_svspart(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void dreamforge_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_credits(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int dreamforge_flood_mode_check(char *value) +{ + return 0; +} + +void dreamforge_cmd_eob() +{ + /* Not supported */ +} + +void dreamforge_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + dreamforge_cmd_squit(jserver, rbuf); + dreamforge_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* GLOBOPS - to handle old WALLOPS */ +void dreamforge_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "GLOBOPS :%s", fmt); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int dreamforge_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void dreamforge_cmd_ctcp(char *source, char *dest, char *buf) +{ + + char *s; + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(dreamforge_cmd_svsnoop); + pmodule_cmd_remove_akill(dreamforge_cmd_remove_akill); + pmodule_cmd_topic(dreamforge_cmd_topic); + pmodule_cmd_vhost_off(dreamforge_cmd_vhost_off); + pmodule_cmd_akill(dreamforge_cmd_akill); + pmodule_cmd_svskill(dreamforge_cmd_svskill); + pmodule_cmd_svsmode(dreamforge_cmd_svsmode); + pmodule_cmd_372(dreamforge_cmd_372); + pmodule_cmd_372_error(dreamforge_cmd_372_error); + pmodule_cmd_375(dreamforge_cmd_375); + pmodule_cmd_376(dreamforge_cmd_376); + pmodule_cmd_nick(dreamforge_cmd_nick); + pmodule_cmd_guest_nick(dreamforge_cmd_guest_nick); + pmodule_cmd_mode(dreamforge_cmd_mode); + pmodule_cmd_bot_nick(dreamforge_cmd_bot_nick); + pmodule_cmd_kick(dreamforge_cmd_kick); + pmodule_cmd_notice_ops(dreamforge_cmd_notice_ops); + pmodule_cmd_notice(dreamforge_cmd_notice); + pmodule_cmd_notice2(dreamforge_cmd_notice2); + pmodule_cmd_privmsg(dreamforge_cmd_privmsg); + pmodule_cmd_privmsg2(dreamforge_cmd_privmsg2); + pmodule_cmd_serv_notice(dreamforge_cmd_serv_notice); + pmodule_cmd_serv_privmsg(dreamforge_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(dreamforge_cmd_bot_chan_mode); + pmodule_cmd_351(dreamforge_cmd_351); + pmodule_cmd_quit(dreamforge_cmd_quit); + pmodule_cmd_pong(dreamforge_cmd_pong); + pmodule_cmd_join(dreamforge_cmd_join); + pmodule_cmd_unsqline(dreamforge_cmd_unsqline); + pmodule_cmd_invite(dreamforge_cmd_invite); + pmodule_cmd_part(dreamforge_cmd_part); + pmodule_cmd_391(dreamforge_cmd_391); + pmodule_cmd_250(dreamforge_cmd_250); + pmodule_cmd_307(dreamforge_cmd_307); + pmodule_cmd_311(dreamforge_cmd_311); + pmodule_cmd_312(dreamforge_cmd_312); + pmodule_cmd_317(dreamforge_cmd_317); + pmodule_cmd_219(dreamforge_cmd_219); + pmodule_cmd_401(dreamforge_cmd_401); + pmodule_cmd_318(dreamforge_cmd_318); + pmodule_cmd_242(dreamforge_cmd_242); + pmodule_cmd_243(dreamforge_cmd_243); + pmodule_cmd_211(dreamforge_cmd_211); + pmodule_cmd_global(dreamforge_cmd_global); + pmodule_cmd_global_legacy(dreamforge_cmd_global_legacy); + pmodule_cmd_sqline(dreamforge_cmd_sqline); + pmodule_cmd_squit(dreamforge_cmd_squit); + pmodule_cmd_svso(dreamforge_cmd_svso); + pmodule_cmd_chg_nick(dreamforge_cmd_chg_nick); + pmodule_cmd_svsnick(dreamforge_cmd_svsnick); + pmodule_cmd_vhost_on(dreamforge_cmd_vhost_on); + pmodule_cmd_connect(dreamforge_cmd_connect); + pmodule_cmd_svshold(dreamforge_cmd_svshold); + pmodule_cmd_release_svshold(dreamforge_cmd_release_svshold); + pmodule_cmd_unsgline(dreamforge_cmd_unsqline); + pmodule_cmd_unszline(dreamforge_cmd_unszline); + pmodule_cmd_szline(dreamforge_cmd_szline); + pmodule_cmd_sgline(dreamforge_cmd_sgline); + pmodule_cmd_unban(dreamforge_cmd_unban); + pmodule_cmd_svsmode_chan(dreamforge_cmd_svsmode_chan); + pmodule_cmd_svid_umode(dreamforge_cmd_svid_umode); + pmodule_cmd_nc_change(dreamforge_cmd_nc_change); + pmodule_cmd_svid_umode2(dreamforge_cmd_svid_umode2); + pmodule_cmd_svid_umode3(dreamforge_cmd_svid_umode3); + pmodule_cmd_eob(dreamforge_cmd_eob); + pmodule_flood_mode_check(dreamforge_flood_mode_check); + pmodule_cmd_jupe(dreamforge_cmd_jupe); + pmodule_valid_nick(dreamforge_valid_nick); + pmodule_cmd_ctcp(dreamforge_cmd_ctcp); + pmodule_set_umode(dreamforge_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("DreamForge 4.6.7"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set(""); + pmodule_ircd_flood_mode_char_remove(""); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/dreamforge.h b/src/protocol/dreamforge.h new file mode 100644 index 000000000..aca591932 --- /dev/null +++ b/src/protocol/dreamforge.h @@ -0,0 +1,111 @@ +/* DreamForge IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#define UMODE_a 0x00000001 /* Services Admin */ +#define UMODE_h 0x00000002 /* Help system operator */ +#define UMODE_i 0x00000004 /* makes user invisible */ +#define UMODE_o 0x00000008 /* Operator */ +#define UMODE_r 0x00000010 /* Nick set by services as registered */ +#define UMODE_w 0x00000020 /* send wallops to them */ +#define UMODE_A 0x00000040 /* Admin */ +#define UMODE_O 0x00000080 /* Local operator */ +#define UMODE_s 0x00000100 /* server notices such as kill */ +#define UMODE_k 0x00000200 /* Show server-kills... */ +#define UMODE_c 0x00000400 /* Show client information */ +#define UMODE_f 0x00000800 /* Receive flood warnings */ +#define UMODE_g 0x80000000 /* Shows some global messages */ + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void dreamforge_set_umode(User * user, int ac, char **av); +void dreamforge_cmd_svsnoop(char *server, int set); +void dreamforge_cmd_remove_akill(char *user, char *host); +void dreamforge_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void dreamforge_cmd_vhost_off(User * u); +void dreamforge_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void dreamforge_cmd_svskill(char *source, char *user, char *buf); +void dreamforge_cmd_svsmode(User * u, int ac, char **av); +void dreamforge_cmd_372(char *source, char *msg); +void dreamforge_cmd_372_error(char *source); +void dreamforge_cmd_375(char *source); +void dreamforge_cmd_376(char *source); +void dreamforge_cmd_nick(char *nick, char *name, char *modes); +void dreamforge_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void dreamforge_cmd_mode(char *source, char *dest, char *buf); +void dreamforge_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void dreamforge_cmd_kick(char *source, char *chan, char *user, char *buf); +void dreamforge_cmd_notice_ops(char *source, char *dest, char *buf); +void dreamforge_cmd_notice(char *source, char *dest, char *buf); +void dreamforge_cmd_notice2(char *source, char *dest, char *msg); +void dreamforge_cmd_privmsg(char *source, char *dest, char *buf); +void dreamforge_cmd_privmsg2(char *source, char *dest, char *msg); +void dreamforge_cmd_serv_notice(char *source, char *dest, char *msg); +void dreamforge_cmd_serv_privmsg(char *source, char *dest, char *msg); +void dreamforge_cmd_bot_chan_mode(char *nick, char *chan); +void dreamforge_cmd_351(char *source); +void dreamforge_cmd_quit(char *source, char *buf); +void dreamforge_cmd_pong(char *servname, char *who); +void dreamforge_cmd_join(char *user, char *channel, time_t chantime); +void dreamforge_cmd_unsqline(char *user); +void dreamforge_cmd_invite(char *source, char *chan, char *nick); +void dreamforge_cmd_part(char *nick, char *chan, char *buf); +void dreamforge_cmd_391(char *source, char *timestr); +void dreamforge_cmd_250(char *buf); +void dreamforge_cmd_307(char *buf); +void dreamforge_cmd_311(char *buf); +void dreamforge_cmd_312(char *buf); +void dreamforge_cmd_317(char *buf); +void dreamforge_cmd_219(char *source, char *letter); +void dreamforge_cmd_401(char *source, char *who); +void dreamforge_cmd_318(char *source, char *who); +void dreamforge_cmd_242(char *buf); +void dreamforge_cmd_243(char *buf); +void dreamforge_cmd_211(char *buf); +void dreamforge_cmd_global(char *source, char *buf); +void dreamforge_cmd_global_legacy(char *source, char *fmt); +void dreamforge_cmd_sqline(char *mask, char *reason); +void dreamforge_cmd_squit(char *servname, char *message); +void dreamforge_cmd_svso(char *source, char *nick, char *flag); +void dreamforge_cmd_chg_nick(char *oldnick, char *newnick); +void dreamforge_cmd_svsnick(char *source, char *guest, time_t when); +void dreamforge_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void dreamforge_cmd_connect(int servernum); +void dreamforge_cmd_svshold(char *nick); +void dreamforge_cmd_release_svshold(char *nick); +void dreamforge_cmd_unsgline(char *mask); +void dreamforge_cmd_unszline(char *mask); +void dreamforge_cmd_szline(char *mask, char *reason, char *whom); +void dreamforge_cmd_sgline(char *mask, char *reason); +void dreamforge_cmd_unban(char *name, char *nick); +void dreamforge_cmd_svsmode_chan(char *name, char *mode, char *nick); +void dreamforge_cmd_svid_umode(char *nick, time_t ts); +void dreamforge_cmd_nc_change(User * u); +void dreamforge_cmd_svid_umode2(User * u, char *ts); +void dreamforge_cmd_svid_umode3(User * u, char *ts); +void dreamforge_cmd_eob(); +int dreamforge_flood_mode_check(char *value); +void dreamforge_cmd_jupe(char *jserver, char *who, char *reason); +int dreamforge_valid_nick(char *nick); +void dreamforge_cmd_ctcp(char *source, char *dest, char *buf); + diff --git a/src/protocol/hybrid.c b/src/protocol/hybrid.c new file mode 100644 index 000000000..c1a862f16 --- /dev/null +++ b/src/protocol/hybrid.c @@ -0,0 +1,1504 @@ +/* Hybrid IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#include "services.h" +#include "pseudo.h" +#include "hybrid.h" + +IRCDVar myIrcd[] = { + {"HybridIRCd 7.*", /* ircd name */ + "+o", /* nickserv mode */ + "+o", /* chanserv mode */ + "+o", /* memoserv mode */ + NULL, /* hostserv mode */ + "+io", /* operserv mode */ + "+o", /* botserv mode */ + "+h", /* helpserv mode */ + "+i", /* Dev/Null mode */ + "+io", /* Global mode */ + "+o", /* nickserv alias mode */ + "+o", /* chanserv alias mode */ + "+o", /* memoserv alias mode */ + NULL, /* hostserv alias mode */ + "+io", /* operserv alias mode */ + "+o", /* botserv alias mode */ + "+h", /* helpserv alias mode */ + "+i", /* Dev/Null alias mode */ + "+io", /* Global alias mode */ + "+", /* Used by BotServ Bots */ + 3, /* Chan Max Symbols */ + "-ailmnpst", /* Modes to Remove */ + "+o", /* Channel Umode used by Botserv bots */ + 0, /* SVSNICK */ + 0, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + NULL, /* Mode to set for admin */ + NULL, /* Mode to unset for admin */ + NULL, /* Mode On Reg */ + NULL, /* Mode on UnReg */ + NULL, /* Mode on Nick Change */ + 0, /* Supports SGlines */ + 0, /* Supports SQlines */ + 0, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 3, /* Number of server args */ + 1, /* Join 2 Set */ + 1, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + 0, /* Protected Umode */ + 0, /* Has Admin */ + 0, /* Chan SQlines */ + 0, /* Quit on Kill */ + 0, /* SVSMODE unban */ + 0, /* Has Protect */ + 0, /* Reverse */ + 0, /* Chan Reg */ + 0, /* Channel Mode */ + 0, /* vidents */ + 0, /* svshold */ + 0, /* time stamp on mode */ + 0, /* NICKIP */ + 0, /* UMODE */ + 0, /* O:LINE */ + 0, /* VHOST ON NICK */ + 0, /* Change RealName */ + CMODE_p, /* No Knock */ + 0, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + 0, /* Vhost Mode */ + 0, /* +f */ + 0, /* +L */ + 0, /* +f Mode */ + 0, /* +L Mode */ + 0, /* On nick change check if they could be identified */ + 0, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 0, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + NULL, /* vhost char */ + 0, /* ts6 */ + 0, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 1, /* reports sync state */ + } + , + {NULL} +}; + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + 0, /* TSMODE */ + 0, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + CAPAB_ZIP, /* ZIP */ + 0, /* BURST */ + CAPAB_TS5, /* TS5 */ + 0, /* TS3 */ + 0, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + CAPAB_QS, /* QS */ + CAPAB_UID, /* UID */ + CAPAB_KNOCK, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + 0, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + 0, 0, 0} +}; + + + +void hybrid_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'd': + if (ac == 0) { + alog("user: umode +d with no parameter (?) for user %s", + user->nick); + break; + } + + ac--; + av++; + user->svid = strtoul(*av, NULL, 0); + break; + case 'o': + if (add) { + opcnt++; + + if (WallOper) + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + display_news(user, NEWS_OPER); + + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + send_cmd(ServerName, "SVSMODE %s -r", user->nick); + user->mode &= ~UMODE_r; + } + break; + + } + } +} + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + 0, 0, 0, /* A B C */ + 0, 0, 0, /* D E F */ + 0, 0, 0, /* G H I */ + 0, 0, 0, /* J K L */ + 0, 0, 0, /* M N O */ + 0, 0, 0, /* P Q R */ + 0, 0, 0, /* S T U */ + 0, 0, 0, /* V W X */ + 0, /* Y */ + 0, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, UMODE_b, UMODE_c, /* a b c */ + UMODE_d, 0, UMODE_f, /* d e f */ + UMODE_g, 0, UMODE_i, /* g h i */ + 0, UMODE_k, UMODE_l, /* j k l */ + 0, UMODE_n, UMODE_o, /* m n o */ + 0, 0, UMODE_r, /* p q r */ + UMODE_s, 0, UMODE_u, /* s t u */ + 0, UMODE_w, UMODE_x, /* v w x */ + UMODE_y, /* y */ + UMODE_z, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 'a', /* (33) ! */ + 0, 0, 0, + 'h', + 0, 0, 0, 0, + 0, + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, /* BCD */ + {NULL}, {NULL}, {NULL}, /* EFG */ + {NULL}, /* H */ + {add_invite, del_invite}, + {NULL}, /* J */ + {NULL}, {NULL}, {NULL}, /* KLM */ + {NULL}, {NULL}, {NULL}, /* NOP */ + {NULL}, {NULL}, {NULL}, /* QRS */ + {NULL}, {NULL}, {NULL}, /* TUV */ + {NULL}, {NULL}, {NULL}, /* WXY */ + {NULL}, /* Z */ + {NULL}, {NULL}, /* (char 91 - 92) */ + {NULL}, {NULL}, {NULL}, /* (char 93 - 95) */ + {NULL}, /* ` (char 96) */ + {NULL}, /* a (char 97) */ + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {0}, /* A */ + {0}, /* B */ + {0}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {0}, /* K */ + {0}, /* L */ + {0}, /* M */ + {0}, /* N */ + {0}, /* O */ + {0}, /* P */ + {0}, /* Q */ + {0}, + {0}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {CMODE_a, 0, NULL, NULL}, + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {0}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {0}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'a', CMODE_a, 0, NULL, NULL}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {0} +}; + + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, check_valid_op}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + + +void hybrid_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + hybrid_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void hybrid_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void hybrid_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void hybrid_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void hybrid_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $$%s :%s", dest, msg); +} + +void hybrid_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $$%s :%s", dest, msg); +} + + +void hybrid_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "OPERWALL :%s", buf); +} + +/* GLOBOPS - to handle old WALLOPS */ +void hybrid_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "OPERWALL :%s", fmt); +} + +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + +int anope_event_nick(char *source, int ac, char **av) +{ + if (ac != 2) { + User *user = do_nick(source, av[0], av[4], av[5], av[6], av[7], + strtoul(av[2], NULL, 10), 0, 0, NULL, NULL); + if (user) + anope_set_umode(user, 1, &av[3]); + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac == 4) { + do_topic(source, ac, av); + } else { + Channel *c = findchan(av[0]); + time_t topic_time = time(NULL); + + if (!c) { + if (debug) { + alog("channel: TOPIC %s for nonexistent channel %s", + merge_args(ac - 1, av + 1), av[0]); + } + return MOD_CONT; + } + + if (check_topiclock(c, topic_time)) + return MOD_CONT; + + if (c->topic) { + free(c->topic); + c->topic = NULL; + } + if (ac > 1 && *av[1]) + c->topic = sstrdup(av[1]); + + strscpy(c->topic_setter, source, sizeof(c->topic_setter)); + c->topic_time = topic_time; + + record_topic(av[0]); + } + return MOD_CONT; +} + +int anope_event_tburst(char *source, int ac, char **av) +{ + if (ac != 5) + return MOD_CONT; + + av[0] = av[1]; + av[1] = av[3]; + av[3] = av[4]; + do_topic(source, 4, av); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+","-"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_invite); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("TBURST", anope_event_tburst); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GLOBOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GNOTICE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m); + m = createMessage("EOB", anope_event_eob); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); +} + +/* *INDENT-ON* */ + + +void hybrid_cmd_sqline(char *mask, char *reason) +{ + +} +void hybrid_cmd_unsgline(char *mask) +{ +/* Does not support */ +} + +void hybrid_cmd_unszline(char *mask) +{ + /* Does not support */ +} +void hybrid_cmd_szline(char *mask, char *reason, char *whom) +{ + /* Does not support */ +} + +void hybrid_cmd_svsnoop(char *server, int set) +{ + /* does not support */ +} + +void hybrid_cmd_svsadmin(char *server, int set) +{ + hybrid_cmd_svsnoop(server, set); +} + +void hybrid_cmd_sgline(char *mask, char *reason) +{ + /* does not support */ +} + +void hybrid_cmd_remove_akill(char *user, char *host) +{ + /* does not support */ +} + +void hybrid_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "TOPIC %s :%s", chan, topic); +} + +void hybrid_cmd_vhost_off(User * u) +{ + /* does not support vhosting */ +} + +void hybrid_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + /* does not support vhosting */ +} + +void hybrid_cmd_unsqline(char *user) +{ + /* Hybrid does not support SQLINEs */ +} + +void hybrid_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(NULL, "SJOIN %ld %s + :%s", (long int) time(NULL), channel, + user); +} + +/* +oper: the nick of the oper performing the kline +target.server: the server(s) this kline is destined for +duration: the duration if a tkline, 0 if permanent. +user: the 'user' portion of the kline +host: the 'host' portion of the kline +reason: the reason for the kline. +*/ + +void hybrid_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(s_OperServ, "KLINE * %ld %s %s :%s", + (long int) (expires - (long) time(NULL)), user, host, reason); +} + +void hybrid_cmd_svskill(char *source, char *user, char *buf) +{ + if (!buf) { + return; + } + + if (!source || !user) { + return; + } + + send_cmd(source, "KILL %s :%s", user, buf); +} + + +void hybrid_cmd_svsmode(User * u, int ac, char **av) +{ + /* Hybrid does not support SVSMODE */ +} + +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +void hybrid_cmd_svinfo() +{ + send_cmd(NULL, "SVINFO 5 5 0 :%ld", (long int) time(NULL)); +} + +/* CAPAB */ +/* + QS - Can handle quit storm removal + EX - Can do channel +e exemptions + CHW - Can do channel wall @# + LL - Can do lazy links + IE - Can do invite exceptions + EOB - Can do EOB message + KLN - Can do KLINE message + GLN - Can do GLINE message + HOPS - can do half ops (+h) + HUB - This server is a HUB + AOPS - Can do anon ops (+a) + UID - Can do UIDs + ZIP - Can do ZIPlinks + ENC - Can do ENCrypted links + KNOCK - supports KNOCK + TBURST - supports TBURST + PARA - supports invite broadcasting for +p + ENCAP - ? +*/ +void hybrid_cmd_capab() +{ + send_cmd(NULL, + "CAPAB :QS EX CHW IE EOB KLN GLN HOPS HUB AOPS KNOCK TBURST PARA"); +} + +/* PASS */ +void hybrid_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS %s :TS", pass); +} + +/* SERVER name hop descript */ +void hybrid_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript); +} +void hybrid_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + if (servernum == 1) + hybrid_cmd_pass(RemotePassword); + else if (servernum == 2) + hybrid_cmd_pass(RemotePassword2); + else if (servernum == 3) + hybrid_cmd_pass(RemotePassword3); + + hybrid_cmd_capab(); + hybrid_cmd_server(ServerName, 1, ServerDesc); + hybrid_cmd_svinfo(); +} + +void hybrid_cmd_svsinfo() +{ + /* not used */ +} + + + +void hybrid_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, real); + +} + +void hybrid_cmd_part(char *nick, char *chan, char *buf) +{ + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + hybrid_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + +int anope_event_eob(char *source, int ac, char **av) +{ + Server *s; + s = findserver(servlist, source); + /* If we found a server with the given source, that one just + * finished bursting. If there was no source, then our uplink + * server finished bursting. -GD + */ + if (!s && serv_uplink) + s = serv_uplink; + finish_sync(s, 1); + + return MOD_CONT; +} + +void hybrid_cmd_eob() +{ + send_cmd(ServerName, "EOB"); +} + + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +/* EVENT: SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + do_server(source, av[0], av[1], av[2], NULL); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + +void hybrid_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void hybrid_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void hybrid_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void hybrid_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +/* 391 */ +void hybrid_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void hybrid_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void hybrid_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void hybrid_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void hybrid_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void hybrid_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void hybrid_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void hybrid_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void hybrid_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void hybrid_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void hybrid_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void hybrid_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +void hybrid_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "MODE %s %s", dest, buf); +} + +void hybrid_cmd_nick(char *nick, char *name, char *mode) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s :%s", nick, + (long int) time(NULL), mode, ServiceUser, ServiceHost, + ServerName, (name)); +} + +void hybrid_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +void hybrid_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + +void hybrid_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s", ircd->botchanumode, nick); +} + +/* QUIT */ +void hybrid_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +/* PONG */ +void hybrid_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +/* INVITE */ +void hybrid_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +/* SQUIT */ +void hybrid_cmd_squit(char *servname, char *message) +{ + if (!servname || !message) { + return; + } + + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + +void hybrid_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +/* SVSHOLD - set */ +void hybrid_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void hybrid_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSNICK */ +void hybrid_cmd_svsnick(char *nick, char *newnick, time_t when) +{ + /* Not Supported by this IRCD */ +} + +void hybrid_cmd_guest_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, real); +} + +void hybrid_cmd_svso(char *source, char *nick, char *flag) +{ + /* Not Supported by this IRCD */ +} + +void hybrid_cmd_unban(char *name, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE channel modes */ + +void hybrid_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void hybrid_cmd_svid_umode(char *nick, time_t ts) +{ + send_cmd(ServerName, "SVSMODE %s +d 1", nick); +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void hybrid_cmd_nc_change(User * u) +{ + /* not used */ +} + +/* SVSMODE +d */ +void hybrid_cmd_svid_umode2(User * u, char *ts) +{ + /* not used */ +} + + +void hybrid_cmd_svid_umode3(User * u, char *ts) +{ + /* not used */ +} + +/* NICK <newnick> */ +void hybrid_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +int anope_event_svinfo(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +void hybrid_cmd_svsjoin(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void hybrid_cmd_svspart(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void hybrid_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + +int anope_event_notice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_invite(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int hybrid_flood_mode_check(char *value) +{ + return 0; +} + +int anope_event_error(char *source, int ac, char **av) +{ + if (ac >= 1) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + +void hybrid_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + hybrid_cmd_squit(jserver, rbuf); + hybrid_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int hybrid_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void hybrid_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(hybrid_cmd_svsnoop); + pmodule_cmd_remove_akill(hybrid_cmd_remove_akill); + pmodule_cmd_topic(hybrid_cmd_topic); + pmodule_cmd_vhost_off(hybrid_cmd_vhost_off); + pmodule_cmd_akill(hybrid_cmd_akill); + pmodule_cmd_svskill(hybrid_cmd_svskill); + pmodule_cmd_svsmode(hybrid_cmd_svsmode); + pmodule_cmd_372(hybrid_cmd_372); + pmodule_cmd_372_error(hybrid_cmd_372_error); + pmodule_cmd_375(hybrid_cmd_375); + pmodule_cmd_376(hybrid_cmd_376); + pmodule_cmd_nick(hybrid_cmd_nick); + pmodule_cmd_guest_nick(hybrid_cmd_guest_nick); + pmodule_cmd_mode(hybrid_cmd_mode); + pmodule_cmd_bot_nick(hybrid_cmd_bot_nick); + pmodule_cmd_kick(hybrid_cmd_kick); + pmodule_cmd_notice_ops(hybrid_cmd_notice_ops); + pmodule_cmd_notice(hybrid_cmd_notice); + pmodule_cmd_notice2(hybrid_cmd_notice2); + pmodule_cmd_privmsg(hybrid_cmd_privmsg); + pmodule_cmd_privmsg2(hybrid_cmd_privmsg2); + pmodule_cmd_serv_notice(hybrid_cmd_serv_notice); + pmodule_cmd_serv_privmsg(hybrid_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(hybrid_cmd_bot_chan_mode); + pmodule_cmd_351(hybrid_cmd_351); + pmodule_cmd_quit(hybrid_cmd_quit); + pmodule_cmd_pong(hybrid_cmd_pong); + pmodule_cmd_join(hybrid_cmd_join); + pmodule_cmd_unsqline(hybrid_cmd_unsqline); + pmodule_cmd_invite(hybrid_cmd_invite); + pmodule_cmd_part(hybrid_cmd_part); + pmodule_cmd_391(hybrid_cmd_391); + pmodule_cmd_250(hybrid_cmd_250); + pmodule_cmd_307(hybrid_cmd_307); + pmodule_cmd_311(hybrid_cmd_311); + pmodule_cmd_312(hybrid_cmd_312); + pmodule_cmd_317(hybrid_cmd_317); + pmodule_cmd_219(hybrid_cmd_219); + pmodule_cmd_401(hybrid_cmd_401); + pmodule_cmd_318(hybrid_cmd_318); + pmodule_cmd_242(hybrid_cmd_242); + pmodule_cmd_243(hybrid_cmd_243); + pmodule_cmd_211(hybrid_cmd_211); + pmodule_cmd_global(hybrid_cmd_global); + pmodule_cmd_global_legacy(hybrid_cmd_global_legacy); + pmodule_cmd_sqline(hybrid_cmd_sqline); + pmodule_cmd_squit(hybrid_cmd_squit); + pmodule_cmd_svso(hybrid_cmd_svso); + pmodule_cmd_chg_nick(hybrid_cmd_chg_nick); + pmodule_cmd_svsnick(hybrid_cmd_svsnick); + pmodule_cmd_vhost_on(hybrid_cmd_vhost_on); + pmodule_cmd_connect(hybrid_cmd_connect); + pmodule_cmd_svshold(hybrid_cmd_svshold); + pmodule_cmd_release_svshold(hybrid_cmd_release_svshold); + pmodule_cmd_unsgline(hybrid_cmd_unsqline); + pmodule_cmd_unszline(hybrid_cmd_unszline); + pmodule_cmd_szline(hybrid_cmd_szline); + pmodule_cmd_sgline(hybrid_cmd_sgline); + pmodule_cmd_unban(hybrid_cmd_unban); + pmodule_cmd_svsmode_chan(hybrid_cmd_svsmode_chan); + pmodule_cmd_svid_umode(hybrid_cmd_svid_umode); + pmodule_cmd_nc_change(hybrid_cmd_nc_change); + pmodule_cmd_svid_umode2(hybrid_cmd_svid_umode2); + pmodule_cmd_svid_umode3(hybrid_cmd_svid_umode3); + pmodule_cmd_eob(hybrid_cmd_eob); + pmodule_flood_mode_check(hybrid_flood_mode_check); + pmodule_cmd_jupe(hybrid_cmd_jupe); + pmodule_valid_nick(hybrid_valid_nick); + pmodule_cmd_ctcp(hybrid_cmd_ctcp); + pmodule_set_umode(hybrid_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("Hybrid IRCd 7.0"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set(""); + pmodule_ircd_flood_mode_char_remove(""); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/hybrid.h b/src/protocol/hybrid.h new file mode 100644 index 000000000..153914730 --- /dev/null +++ b/src/protocol/hybrid.h @@ -0,0 +1,115 @@ +/* Hybrid IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#define UMODE_a 0x00000001 /* Admin status */ +#define UMODE_b 0x00000080 /* See bot and drone flooding notices */ +#define UMODE_c 0x00000100 /* Client connection/quit notices */ +#define UMODE_d 0x00000200 /* See debugging notices */ +#define UMODE_f 0x00000400 /* See I: line full notices */ +#define UMODE_g 0x00000800 /* Server Side Ignore */ +#define UMODE_i 0x00000004 /* Not shown in NAMES or WHO unless you share a channel */ +#define UMODE_k 0x00001000 /* See server generated KILL messages */ +#define UMODE_l 0x00002000 /* See LOCOPS messages */ +#define UMODE_n 0x00004000 /* See client nick changes */ +#define UMODE_o 0x00000008 /* Operator status */ +#define UMODE_r 0x00000010 /* See rejected client notices */ +#define UMODE_s 0x00008000 /* See general server notices */ +#define UMODE_u 0x00010000 /* See unauthorized client notices */ +#define UMODE_w 0x00000020 /* See server generated WALLOPS */ +#define UMODE_x 0x00020000 /* See remote server connection and split notices */ +#define UMODE_y 0x00040000 /* See LINKS, STATS (if configured), TRACE notices */ +#define UMODE_z 0x00080000 /* See oper generated WALLOPS */ + +#define CMODE_i 0x00000001 /* Invite only */ +#define CMODE_m 0x00000002 /* Users without +v/h/o cannot send text to the channel */ +#define CMODE_n 0x00000004 /* Users must be in the channel to send text to it */ +#define CMODE_p 0x00000008 /* Private is obsolete, this now restricts KNOCK */ +#define CMODE_s 0x00000010 /* The channel does not show up on NAMES or LIST */ +#define CMODE_t 0x00000020 /* Only chanops can change the topic */ +#define CMODE_k 0x00000040 /* Key/password for the channel. */ +#define CMODE_l 0x00000080 /* Limit the number of users in a channel */ +#define CMODE_a 0x00000400 /* Anonymous ops, chanops are hidden */ + + +#define DEFAULT_MLOCK CMODE_n | CMODE_t + +void hybrid_set_umode(User * user, int ac, char **av); +void hybrid_cmd_svsnoop(char *server, int set); +void hybrid_cmd_remove_akill(char *user, char *host); +void hybrid_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void hybrid_cmd_vhost_off(User * u); +void hybrid_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void hybrid_cmd_svskill(char *source, char *user, char *buf); +void hybrid_cmd_svsmode(User * u, int ac, char **av); +void hybrid_cmd_372(char *source, char *msg); +void hybrid_cmd_372_error(char *source); +void hybrid_cmd_375(char *source); +void hybrid_cmd_376(char *source); +void hybrid_cmd_nick(char *nick, char *name, char *modes); +void hybrid_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void hybrid_cmd_mode(char *source, char *dest, char *buf); +void hybrid_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void hybrid_cmd_kick(char *source, char *chan, char *user, char *buf); +void hybrid_cmd_notice_ops(char *source, char *dest, char *buf); +void hybrid_cmd_notice(char *source, char *dest, char *buf); +void hybrid_cmd_notice2(char *source, char *dest, char *msg); +void hybrid_cmd_privmsg(char *source, char *dest, char *buf); +void hybrid_cmd_privmsg2(char *source, char *dest, char *msg); +void hybrid_cmd_serv_notice(char *source, char *dest, char *msg); +void hybrid_cmd_serv_privmsg(char *source, char *dest, char *msg); +void hybrid_cmd_bot_chan_mode(char *nick, char *chan); +void hybrid_cmd_351(char *source); +void hybrid_cmd_quit(char *source, char *buf); +void hybrid_cmd_pong(char *servname, char *who); +void hybrid_cmd_join(char *user, char *channel, time_t chantime); +void hybrid_cmd_unsqline(char *user); +void hybrid_cmd_invite(char *source, char *chan, char *nick); +void hybrid_cmd_part(char *nick, char *chan, char *buf); +void hybrid_cmd_391(char *source, char *timestr); +void hybrid_cmd_250(char *buf); +void hybrid_cmd_307(char *buf); +void hybrid_cmd_311(char *buf); +void hybrid_cmd_312(char *buf); +void hybrid_cmd_317(char *buf); +void hybrid_cmd_219(char *source, char *letter); +void hybrid_cmd_401(char *source, char *who); +void hybrid_cmd_318(char *source, char *who); +void hybrid_cmd_242(char *buf); +void hybrid_cmd_243(char *buf); +void hybrid_cmd_211(char *buf); +void hybrid_cmd_global(char *source, char *buf); +void hybrid_cmd_global_legacy(char *source, char *fmt); +void hybrid_cmd_sqline(char *mask, char *reason); +void hybrid_cmd_squit(char *servname, char *message); +void hybrid_cmd_svso(char *source, char *nick, char *flag); +void hybrid_cmd_chg_nick(char *oldnick, char *newnick); +void hybrid_cmd_svsnick(char *source, char *guest, time_t when); +void hybrid_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void hybrid_cmd_connect(int servernum); +void hybrid_cmd_svshold(char *nick); +void hybrid_cmd_release_svshold(char *nick); +void hybrid_cmd_unsgline(char *mask); +void hybrid_cmd_unszline(char *mask); +void hybrid_cmd_szline(char *mask, char *reason, char *whom); +void hybrid_cmd_sgline(char *mask, char *reason); +void hybrid_cmd_unban(char *name, char *nick); +void hybrid_cmd_svsmode_chan(char *name, char *mode, char *nick); +void hybrid_cmd_svid_umode(char *nick, time_t ts); +void hybrid_cmd_nc_change(User * u); +void hybrid_cmd_svid_umode2(User * u, char *ts); +void hybrid_cmd_svid_umode3(User * u, char *ts); +void hybrid_cmd_eob(); +int hybrid_flood_mode_check(char *value); +void hybrid_cmd_jupe(char *jserver, char *who, char *reason); +int hybrid_valid_nick(char *nick); +void hybrid_cmd_ctcp(char *source, char *dest, char *buf); diff --git a/src/protocol/inspircd.c b/src/protocol/inspircd.c new file mode 100644 index 000000000..58e5bf50a --- /dev/null +++ b/src/protocol/inspircd.c @@ -0,0 +1,1500 @@ +/* InspIRCd beta 3 functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/*************************************************************************/ + +#include "services.h" +#include "pseudo.h" +#include "inspircd.h" + +#ifdef _WIN32 +#include "winsock.h" +int inet_aton(const char *name, struct in_addr *addr) +{ + uint32 a = inet_addr(name); + addr->s_addr = a; + return a != (uint32) - 1; +} +#endif + +IRCDVar myIrcd[] = { + {"InspIRCd 1.0 Beta", /* ircd name */ + "+o", /* nickserv mode */ + "+o", /* chanserv mode */ + "+o", /* memoserv mode */ + "+o", /* hostserv mode */ + "+io", /* operserv mode */ + "+o", /* botserv mode */ + "+o", /* helpserv mode */ + "+i", /* Dev/Null mode */ + "+io", /* Global mode */ + "+o", /* nickserv alias mode */ + "+o", /* chanserv alias mode */ + "+o", /* memoserv alias mode */ + "+io", /* hostserv alias mode */ + "+io", /* operserv alias mode */ + "+o", /* botserv alias mode */ + "+o", /* helpserv alias mode */ + "+i", /* Dev/Null alias mode */ + "+io", /* Global alias mode */ + "+i", /* Used by BotServ Bots */ + 5, /* Chan Max Symbols */ + "-cilmnpstuzCGKNOQRSV", /* Modes to Remove */ + "+ao", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 1, /* Has Owner */ + "+q", /* Mode to set for an owner */ + "-q", /* Mode to unset for an owner */ + "+a", /* Mode to set for channel admin */ + "-a", /* Mode to unset for channel admin */ + "+r", /* Mode On Reg */ + "-r", /* Mode on UnReg */ + "-r", /* Mode on Nick Change */ + 0, /* Supports SGlines */ + 1, /* Supports SQlines */ + 1, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 0, /* Has exceptions +e */ + 1, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + 0, /* Protected Umode */ + 0, /* Has Admin */ + 0, /* Chan SQlines */ + 0, /* Quit on Kill */ + 0, /* SVSMODE unban */ + 1, /* Has Protect */ + 1, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 0, /* vidents */ + 0, /* svshold */ + 0, /* time stamp on mode */ + 0, /* NICKIP */ + 0, /* O:LINE */ + 1, /* UMODE */ + 1, /* VHOST ON NICK */ + 1, /* Change RealName */ + CMODE_K, /* No Knock */ + 0, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_x, /* Vhost Mode */ + 0, /* +f */ + 1, /* +L */ + 0, + CMODE_L, + 0, + 0, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 1, /* We support inspircd TOKENS */ + 0, /* TOKENS are CASE Sensitive */ + 0, /* TIME STAMPS are BASE64 */ + 0, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + "x", /* vhost char */ + 0, /* ts6 */ + 0, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 1, /* reports sync state */ + } + , + {NULL} +}; + + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + 0, /* TSMODE */ + 0, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + 0, /* ZIP */ + 0, /* BURST */ + 0, /* TS5 */ + 0, /* TS3 */ + 0, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + 0, /* UID */ + 0, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + CAPAB_TOKEN, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + 0, + 0, 0} +}; + +unsigned long umodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, + 0, + 0, + 0, 0, 0, 0, 0, 0, 0, + 0, + 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, + UMODE_g, + UMODE_h, UMODE_i, 0, 0, 0, 0, 0, UMODE_o, + 0, + 0, UMODE_r, 0, 0, 0, 0, UMODE_w, + UMODE_x, + 0, + 0, + 0, 0, 0, 0, 0 +}; + + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 'h', /* (37) % Channel halfops */ + 0, + 0, 0, 0, + 'q', + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a', 0 +}; + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, + {NULL}, + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {CMODE_A, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* B */ + {CMODE_C, 0, NULL, NULL}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {CMODE_G, 0, NULL, NULL}, /* G */ + {CMODE_H, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* I */ + {0}, /* J */ + {CMODE_K, 0, NULL, NULL}, /* K */ + {CMODE_L, 0, set_redirect, cs_set_redirect}, + {0}, /* M */ + {CMODE_N, 0, NULL, NULL}, /* N */ + {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* P */ + {CMODE_Q, 0, NULL, NULL}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {CMODE_S, 0, NULL, NULL}, /* S */ + {0}, /* T */ + {0}, /* U */ + {CMODE_V, 0, NULL, NULL}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {CMODE_c, 0, NULL, NULL}, + {0}, /* d */ + {0}, /* e */ + {CMODE_f, 0, set_flood, cs_set_flood}, + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {CMODE_u, 0, NULL, NULL}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {CMODE_z, 0, NULL, NULL}, + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'c', CMODE_c, 0, NULL, NULL}, + {'f', CMODE_f, 0, get_flood, cs_get_flood}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'u', CMODE_u, 0, NULL, NULL}, + {'z', CMODE_z, 0, NULL, NULL}, + {'A', CMODE_A, 0, NULL, NULL}, + {'C', CMODE_C, 0, NULL, NULL}, + {'G', CMODE_G, 0, NULL, NULL}, + {'H', CMODE_H, 0, NULL, NULL}, + {'K', CMODE_K, 0, NULL, NULL}, + {'L', CMODE_L, 0, get_redirect, cs_get_redirect}, + {'N', CMODE_N, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'Q', CMODE_Q, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {'S', CMODE_S, 0, NULL, NULL}, + {'V', CMODE_V, 0, NULL, NULL}, + {0} +}; + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {CUS_PROTECT, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, check_valid_op}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {CUS_OWNER, 0, check_valid_op}, + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + +void inspircd_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'o': + if (add) { + opcnt++; + if (WallOper) { + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + } + display_news(user, NEWS_OPER); + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + case 'x': + update_host(user); + break; + } + } +} + +int anope_event_nickchange(char *source, int ac, char **av); +int anope_event_servertopic(char *source, int ac, char **av); +int anope_event_servermode(char *source, int ac, char **av); + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + // user has no choice but to use tokens with InspIRCd :) + UseTokens = 1; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+a","-a"); + + m = createMessage("$", anope_event_null); addCoreMessage(IRCD,m); // send routing table + m = createMessage("X", anope_event_null); addCoreMessage(IRCD,m); // begin netburst NOW + m = createMessage("Y", anope_event_null); addCoreMessage(IRCD,m); // end of UPLINK netburst + m = createMessage("H", anope_event_null); addCoreMessage(IRCD,m); // local sync start + m = createMessage("F", anope_event_null); addCoreMessage(IRCD,m); // local sync end + m = createMessage("f", anope_event_null); addCoreMessage(IRCD,m); // local U-lined sync end + m = createMessage("*", anope_event_null); addCoreMessage(IRCD,m); // no operation + m = createMessage("|", anope_event_null); addCoreMessage(IRCD,m); // oper type + m = createMessage("-", anope_event_null); addCoreMessage(IRCD,m); // start mesh operation + m = createMessage("s", anope_event_server); addCoreMessage(IRCD,m); // passive server response + m = createMessage("U", anope_event_null); addCoreMessage(IRCD,m); // active service connect + m = createMessage("J", anope_event_join); addCoreMessage(IRCD,m); // join + m = createMessage("k", anope_event_kick); addCoreMessage(IRCD,m); // kick + m = createMessage("K", anope_event_kill); addCoreMessage(IRCD,m); // kill + m = createMessage("M", anope_event_servermode); addCoreMessage(IRCD,m); // servermode + m = createMessage("m", anope_event_mode); addCoreMessage(IRCD,m); // mode + m = createMessage("N", anope_event_nick); addCoreMessage(IRCD,m); // nick (introduce) + m = createMessage("n", anope_event_nickchange); addCoreMessage(IRCD,m); // nick (change) + m = createMessage("V", anope_event_null); addCoreMessage(IRCD,m); // notice + m = createMessage("L", anope_event_part); addCoreMessage(IRCD,m); // part + m = createMessage("?", anope_event_ping); addCoreMessage(IRCD,m); // ping + m = createMessage("P", anope_event_privmsg); addCoreMessage(IRCD,m); // privmsg + m = createMessage("Q", anope_event_quit); addCoreMessage(IRCD,m); // quit + m = createMessage("&", anope_event_squit); addCoreMessage(IRCD,m); // squit + m = createMessage("t", anope_event_topic); addCoreMessage(IRCD,m); // topic (user) + m = createMessage("T", anope_event_servertopic); addCoreMessage(IRCD,m); // topic (server) + m = createMessage("@", anope_event_null); addCoreMessage(IRCD,m); // wallops + m = createMessage("b", anope_event_chghost); addCoreMessage(IRCD,m); // change displayed host + m = createMessage("a", anope_event_chgname); addCoreMessage(IRCD,m); // change gecos +} + +/* *INDENT-ON* */ + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +int anope_event_nickchange(char *source, int ac, char **av) +{ + do_nick(av[0], av[1], NULL, NULL, NULL, NULL, 0, 0, 0, NULL, NULL); + return MOD_CONT; +} + +void inspircd_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "*"); +} + +void inspircd_cmd_svsadmin(char *server, int set) +{ + inspircd_cmd_svsnoop(server, set); +} + +void inspircd_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, ". %s@%s %s", user, host, s_OperServ); +} + +void inspircd_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(NULL, "t %lu %s %s :%s", (unsigned long int) when, whosetit, + chan, topic); +} + +void inspircd_cmd_vhost_off(User * u) +{ + send_cmd(NULL, "m %s %s -x", s_HostServ, u->nick); +} + +void inspircd_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(NULL, "# %s@%s %s %lu %lu :%s", user, host, who, + (long int) when, 86400 * 2, reason); +} + +void inspircd_cmd_svskill(char *source, char *user, char *buf) +{ + if (!buf || !source || !user) { + return; + } + send_cmd(NULL, "K %s %s :%s", s_OperServ, user, buf); +} + +void inspircd_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(NULL, "M %s %s", u->nick, av[0]); +} + + +void inspircd_cmd_372(char *source, char *msg) +{ +} + +void inspircd_cmd_372_error(char *source) +{ +} + +void inspircd_cmd_375(char *source) +{ +} + +void inspircd_cmd_376(char *source) +{ +} + +void inspircd_cmd_nick(char *nick, char *name, char *modes) +{ + // N <time> <nick> <host> <displayed-host> <ident> <modes> <ipaddress> <server> :<GECOS> + send_cmd(NULL, "N %lu %s %s %s %s %s 0.0.0.0 %s :%s", + (long int) time(NULL), nick, ServiceHost, ServiceHost, + ServiceUser, modes, ServerName, name); +} + +void inspircd_cmd_guest_nick(char *nick, char *user, char *host, + char *real, char *modes) +{ + send_cmd(NULL, "NICK %s 1 %ld %s %s %s 0 %s * :%s", nick, + (long int) time(NULL), user, host, ServerName, modes, real); + send_cmd(NULL, "N %lu %s %s %s %s %s 0.0.0.0 %s :%s", + (long int) time(NULL), nick, host, host, user, modes, + ServerName, real); +} + +void inspircd_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + send_cmd(NULL, "m %s %s %s", source, dest, buf); +} + +void inspircd_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + send_cmd(NULL, "N %lu %s %s %s %s %s 0.0.0.0 %s :%s", + (long int) time(NULL), nick, host, host, user, modes, + ServerName, real); +} + +void inspircd_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(NULL, "k %s %s :%s", source, user, chan, buf); + } else { + send_cmd(NULL, "k %s %s :", source, user, chan); + } +} + +void inspircd_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "V %s @%s :%s", source, dest, buf); +} + + +void inspircd_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + inspircd_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(NULL, "V %s %s :%s", source, dest, buf); + } +} + +void inspircd_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(NULL, "V %s %s :%s", source, dest, msg); +} + +void inspircd_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "P %s %s :%s", source, dest, buf); +} + +void inspircd_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(NULL, "P %s %s :%s", source, dest, msg); +} + +void inspircd_cmd_serv_notice(char *source, char *dest, char *msg) +{ +} + +void inspircd_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ +} + + +void inspircd_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s %s", ircd->botchanumode, nick, nick); +} + +void inspircd_cmd_351(char *source) +{ +} + +/* QUIT */ +void inspircd_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(NULL, "Q %s :%s", source, buf); + } else { + send_cmd(NULL, "QUIT %s :", source); + } +} + +/* PROTOCTL */ +void inspircd_cmd_protoctl() +{ +} + +/* PASS */ +void inspircd_cmd_pass(char *pass) +{ +// send_cmd(NULL, "PASS :%s", pass); +} + +/* SERVER name hop descript */ +void inspircd_cmd_server(char *servname, int hop, char *descript) +{ + Server *newserv; + if (hop == 0) { + send_cmd(NULL, "H %s", servname); + } else { + char pw[1024]; + switch (hop) { + case 1: + strncpy(pw, RemotePassword, 1023); + break; + case 2: + strncpy(pw, RemotePassword2, 1023); + break; + case 3: + strncpy(pw, RemotePassword3, 1023); + break; + } + send_cmd(NULL, "U %s %s :%s", servname, pw, descript); + send_cmd(NULL, "v %s Anope-%s %s :%s - %s -- %s", servname, + version_number, ServerName, ircd->name, version_flags, + version_build); + } +} + +/* PONG */ +void inspircd_cmd_pong(char *servname, char *who) +{ + send_cmd(NULL, "!"); +} + +/* JOIN */ +void inspircd_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(NULL, "J %s %s", user, channel); +} + +/* UNSQLINE */ +void inspircd_cmd_unsqline(char *user) +{ + if (!user) { + return; + } + send_cmd(NULL, "[ %s %s", user, s_OperServ); +} + +/* CHGHOST */ +void inspircd_cmd_chghost(char *nick, char *vhost) +{ + if (!nick || !vhost) { + return; + } + send_cmd(NULL, "b %s %s", nick, vhost); +} + +/* CHGIDENT */ +void inspircd_cmd_chgident(char *nick, char *vIdent) +{ +} + +/* INVITE */ +void inspircd_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(NULL, "i %s %s %s", source, nick, chan); +} + +/* PART */ +void inspircd_cmd_part(char *nick, char *chan, char *buf) +{ + if (!nick || !chan) { + return; + } + if (buf) { + send_cmd(NULL, "L %s :%s", nick, chan, buf); + } else { + send_cmd(NULL, "L %s %s :", nick, chan); + } +} + +/* 391 */ +void inspircd_cmd_391(char *source, char *timestr) +{ +} + +/* 250 */ +void inspircd_cmd_250(char *buf) +{ +} + +/* 307 */ +void inspircd_cmd_307(char *buf) +{ +} + +/* 311 */ +void inspircd_cmd_311(char *buf) +{ +} + +/* 312 */ +void inspircd_cmd_312(char *buf) +{ +} + +/* 317 */ +void inspircd_cmd_317(char *buf) +{ +} + +/* 219 */ +void inspircd_cmd_219(char *source, char *letter) +{ +} + +/* 401 */ +void inspircd_cmd_401(char *source, char *who) +{ +} + +/* 318 */ +void inspircd_cmd_318(char *source, char *who) +{ +} + +/* 242 */ +void inspircd_cmd_242(char *buf) +{ +} + +/* 243 */ +void inspircd_cmd_243(char *buf) +{ +} + +/* 211 */ +void inspircd_cmd_211(char *buf) +{ +} + +/* GLOBOPS */ +void inspircd_cmd_global(char *source, char *buf) +{ + send_cmd(NULL, "V %s * :%s", (source ? source : s_OperServ), buf); +} + +/* SQLINE */ +void inspircd_cmd_sqline(char *mask, char *reason) +{ + if (!mask || !reason) { + return; + } + // { <mask> <who-set-it> <time-set> <duration> :<reason> + send_cmd(NULL, "{ %s %s %lu 0 :%s", mask, ServerName, + (unsigned long) time(NULL), reason); +} + +/* SQUIT */ +void inspircd_cmd_squit(char *servname, char *message) +{ + if (!servname) { + return; + } + + send_cmd(NULL, "& %s", servname); +} + +/* SVSO */ +void inspircd_cmd_svso(char *source, char *nick, char *flag) +{ + send_cmd(NULL, "M %s %s", nick, flag); +} + +/* NICK <newnick> */ +void inspircd_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd("n %s %s", oldnick, newnick); +} + +/* SVSNICK */ +void inspircd_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "n %s %s", source, guest); +} + +/* Functions that use serval cmd functions */ + +void inspircd_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + if (!nick) { + return; + } + if (vIdent) { + inspircd_cmd_chgident(nick, vIdent); + } + inspircd_cmd_chghost(nick, vhost); +} + +void inspircd_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + inspircd_cmd_server(ServerName, servernum, ServerDesc); +} + +/* Events */ + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + inspircd_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_away(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_servertopic(char *source, int ac, char **av) +{ + char *v[32]; + if (ac != 4) + return MOD_CONT; + v[0] = av[2]; // channel + v[1] = av[3]; // topic + do_topic(NULL, 2, v); // no source (server set) + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + char *v[32]; + if (ac != 3) + return MOD_CONT; + v[0] = av[1]; // channel + v[1] = av[2]; // topic content + do_topic(av[0], 2, v); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + char *v[32]; + if (ac != 1) + return MOD_CONT; + v[0] = av[1]; + do_squit(av[1], 1, v); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + char *v[32]; + if (ac != 2) + return MOD_CONT; + v[0] = av[1]; + v[1] = av[2]; + do_quit(av[0], 2, v); + return MOD_CONT; +} + +int anope_event_servermode(char *source, int ac, char **av) +{ + char *v[32]; + Channel *c; + int i = 0; + + if (*av[0] == '#') { + c = findchan(av[0]); + for (i = 1; i < ac; i++) + v[i - 1] = av[i]; + if (c) { + chan_set_modes(s_OperServ, c, ac - 1, v, 1); + } + } else { + v[0] = av[0]; + for (i = 0; i < ac; i++) + v[i + 1] = av[i]; + anope_event_mode(av[0], ac + 1, v); + } + return MOD_CONT; +} + + +int anope_event_mode(char *source, int ac, char **av) +{ + char *v[32]; + int i; + if (ac < 3) + return MOD_CONT; + + for (i = 1; i < ac; i++) { + v[i - 1] = av[i]; + } + if (*av[1] == '#') { + do_cmode(av[1], ac - 1, v); + } else { + do_umode(av[0], ac - 1, v); + } + return MOD_CONT; +} + + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + m_kill(av[1], av[2]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + // Syntax: k <source> <dest> <channel> :<reason> + char *v[32]; + if (ac != 4) + return MOD_CONT; + v[0] = av[1]; + v[1] = av[2]; + v[2] = av[3]; + do_kick(av[0], 3, v); + return MOD_CONT; +} + + +int anope_event_join(char *source, int ac, char **av) +{ + //if (ac != 2) + // return MOD_CONT; + //char *v[32]; + //v[0] = av[1]; + //do_join(av[0], 1, v); + //return MOD_CONT; + + User *u; + Channel *c; + int i; + int32 modes = 0, thismode; + char *new_av[32]; + char *cumodes[3]; + char thismodes[256]; + cumodes[0] = thismodes; + + // some sanity checks + if (ac < 2) { + return MOD_CONT; + } + + u = finduser(av[0]); // get the user info + + if (!u) { + return MOD_CONT; + } + + cumodes[1] = av[0]; + + // iterate through each channel the user is joining + for (i = 1; i < ac; i++) { + // the channel name + new_av[0] = av[i]; + + // strip off the permissions + strcpy(thismodes, ""); + if (*new_av[0] != '#') { + switch (*new_av[0]) { + case '@': + strcpy(thismodes, "+o"); + break; + case '%': + strcpy(thismodes, "+h"); + break; + case '+': + strcpy(thismodes, "+v"); + break; + } + new_av[0]++; + } + + do_join(av[0], 1, new_av); + c = findchan(new_av[0]); + if ((c) && (strcmp(thismodes, ""))) { + chan_set_modes(av[0], c, 2, cumodes, 1); + } + } + + return MOD_CONT; + +} + +int anope_event_motd(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_setname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: SETNAME for nonexistent user %s", source); + } + return MOD_CONT; + } + change_user_realname(u, av[1]); + return MOD_CONT; +} + +int anope_event_chgname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGNAME for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_realname(u, av[1]); + return MOD_CONT; +} + +int anope_event_setident(char *source, int ac, char **av) +{ + return MOD_CONT; +} +int anope_event_chgident(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_sethost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: SETHOST for nonexistent user %s", source); + } + return MOD_CONT; + } + change_user_host(u, av[1]); + return MOD_CONT; +} + +int anope_event_nick(char *source, int ac, char **av) +{ + User *user; + struct in_addr addy; + uint32 *ad = (uint32 *) & addy; + +// someone really should comment this -- Brain + +// User *do_nick(const char *source, char *nick, char *username, char *host, +// char *server, char *realname, time_t ts, uint32 svid, +// uint32 ip, char *vhost, char *uid) + +// Syntax: N <time> <nick> <host> <displayed-host> <ident> <modes> <ipaddress> <server> :<GECOS> + + if (ac == 9) { + // fix by brain - 27 apr 2005 + // During a net merge between two meshed clients there may be some spurious "bouncing" + // nick introductions (e.g. introductions for clients we already have). If this happens, + // we should ignore any that claim to be from us as these are just confirmations of the + // services "complement" - processing them will cause all kinds of session limit oddities. + if ((strcmp(av[7], ServerName)) || (finduser(av[1]))) { + inet_aton(av[6], &addy); + user = do_nick(source, av[1], av[4], av[2], uplink, av[8], + strtoul(av[0], NULL, 10), 0, htonl(*ad), av[3], + NULL); + if (user) + anope_set_umode(user, 1, &av[5]); + } + } + return MOD_CONT; +} + + +int anope_event_chghost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGHOST for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_host(u, av[1]); + return MOD_CONT; +} + +/* EVENT: SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + // to shield anope from the intricacies of the mesh, + // anope only sees the uplink at all times (and receives + // all nick introductions etc as if they'd come from the + // uplink directly, 1 hop away. + if (!uplink) { + uplink = sstrdup(av[0]); + do_server(source, av[0], av[1], av[3], NULL); + } + return MOD_CONT; +} + + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + m_privmsg(av[0], av[1], av[2]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + char *v[32]; + if (ac != 3) + return MOD_CONT; + v[0] = av[1]; // channel + v[1] = av[2]; // reason + do_part(av[0], 2, v); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +/* SVSHOLD - set */ +void inspircd_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void inspircd_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* UNSGLINE */ +void inspircd_cmd_unsgline(char *mask) +{ + /* Not Supported by this IRCD */ +} + +/* UNSZLINE */ +void inspircd_cmd_unszline(char *mask) +{ + // ] <mask> <who> + send_cmd(NULL, "] %s %s", mask, s_OperServ); +} + +/* SZLINE */ +void inspircd_cmd_szline(char *mask, char *reason, char *whom) +{ + // } <mask> <who-set-it> <time-set> <duration> :<reason> + send_cmd(NULL, "} %s %s %lu %lu :%s", mask, whom, + (long int) time(NULL), 86400 * 2, reason); +} + +/* SGLINE */ +void inspircd_cmd_sgline(char *mask, char *reason) +{ + /* Not Supported by this IRCD */ +} + +void inspircd_cmd_unban(char *name, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE channel modes */ + +void inspircd_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + /* Not Supported by this IRCD */ +} + + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void inspircd_cmd_svid_umode(char *nick, time_t ts) +{ + /* Not supported by this IRCD */ +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void inspircd_cmd_nc_change(User * u) +{ + common_svsmode(u, "-r", "1"); +} + +/* SVSMODE +r */ +void inspircd_cmd_svid_umode2(User * u, char *ts) +{ + send_cmd(NULL, "m %s %s +r", s_OperServ, u->nick); +} + +void inspircd_cmd_svid_umode3(User * u, char *ts) +{ + /* not used */ +} + +void inspircd_cmd_svsjoin(char *source, char *nick, char *chan) +{ + send_cmd(source, "J %s %s", nick, chan); +} + +void inspircd_cmd_svspart(char *source, char *nick, char *chan) +{ + send_cmd(source, "L %s %s :", nick, chan); +} + +void inspircd_cmd_swhois(char *source, char *who, char *mask) +{ + /* Not supported at U type server */ +} + +void inspircd_cmd_eob() +{ + /* Not implemented in this version of inspircd.c */ +} + + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_credits(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int inspircd_flood_mode_check(char *value) +{ + // no +f mode! + return 1; +} + +void inspircd_cmd_jupe(char *jserver, char *who, char *reason) +{ + alog("JUPE: Unsupported!"); +} + +/* GLOBOPS - to handle old WALLOPS */ +void inspircd_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(NULL, "@ %s :%s", source ? source : ServerName, fmt); +} + +int inspircd_valid_nick(char *nick) +{ + // no special nicks + return 1; +} + +void inspircd_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + send_cmd(NULL, "V %s %s :\1%s \1", source, dest, s); + free(s); + } +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(inspircd_cmd_svsnoop); + pmodule_cmd_remove_akill(inspircd_cmd_remove_akill); + pmodule_cmd_topic(inspircd_cmd_topic); + pmodule_cmd_vhost_off(inspircd_cmd_vhost_off); + pmodule_cmd_akill(inspircd_cmd_akill); + pmodule_cmd_svskill(inspircd_cmd_svskill); + pmodule_cmd_svsmode(inspircd_cmd_svsmode); + pmodule_cmd_372(inspircd_cmd_372); + pmodule_cmd_372_error(inspircd_cmd_372_error); + pmodule_cmd_375(inspircd_cmd_375); + pmodule_cmd_376(inspircd_cmd_376); + pmodule_cmd_nick(inspircd_cmd_nick); + pmodule_cmd_guest_nick(inspircd_cmd_guest_nick); + pmodule_cmd_mode(inspircd_cmd_mode); + pmodule_cmd_bot_nick(inspircd_cmd_bot_nick); + pmodule_cmd_kick(inspircd_cmd_kick); + pmodule_cmd_notice_ops(inspircd_cmd_notice_ops); + pmodule_cmd_notice(inspircd_cmd_notice); + pmodule_cmd_notice2(inspircd_cmd_notice2); + pmodule_cmd_privmsg(inspircd_cmd_privmsg); + pmodule_cmd_privmsg2(inspircd_cmd_privmsg2); + pmodule_cmd_serv_notice(inspircd_cmd_serv_notice); + pmodule_cmd_serv_privmsg(inspircd_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(inspircd_cmd_bot_chan_mode); + pmodule_cmd_351(inspircd_cmd_351); + pmodule_cmd_quit(inspircd_cmd_quit); + pmodule_cmd_pong(inspircd_cmd_pong); + pmodule_cmd_join(inspircd_cmd_join); + pmodule_cmd_unsqline(inspircd_cmd_unsqline); + pmodule_cmd_invite(inspircd_cmd_invite); + pmodule_cmd_part(inspircd_cmd_part); + pmodule_cmd_391(inspircd_cmd_391); + pmodule_cmd_250(inspircd_cmd_250); + pmodule_cmd_307(inspircd_cmd_307); + pmodule_cmd_311(inspircd_cmd_311); + pmodule_cmd_312(inspircd_cmd_312); + pmodule_cmd_317(inspircd_cmd_317); + pmodule_cmd_219(inspircd_cmd_219); + pmodule_cmd_401(inspircd_cmd_401); + pmodule_cmd_318(inspircd_cmd_318); + pmodule_cmd_242(inspircd_cmd_242); + pmodule_cmd_243(inspircd_cmd_243); + pmodule_cmd_211(inspircd_cmd_211); + pmodule_cmd_global(inspircd_cmd_global); + pmodule_cmd_global_legacy(inspircd_cmd_global_legacy); + pmodule_cmd_sqline(inspircd_cmd_sqline); + pmodule_cmd_squit(inspircd_cmd_squit); + pmodule_cmd_svso(inspircd_cmd_svso); + pmodule_cmd_chg_nick(inspircd_cmd_chg_nick); + pmodule_cmd_svsnick(inspircd_cmd_svsnick); + pmodule_cmd_vhost_on(inspircd_cmd_vhost_on); + pmodule_cmd_connect(inspircd_cmd_connect); + pmodule_cmd_svshold(inspircd_cmd_svshold); + pmodule_cmd_release_svshold(inspircd_cmd_release_svshold); + pmodule_cmd_unsgline(inspircd_cmd_unsqline); + pmodule_cmd_unszline(inspircd_cmd_unszline); + pmodule_cmd_szline(inspircd_cmd_szline); + pmodule_cmd_sgline(inspircd_cmd_sgline); + pmodule_cmd_unban(inspircd_cmd_unban); + pmodule_cmd_svsmode_chan(inspircd_cmd_svsmode_chan); + pmodule_cmd_svid_umode(inspircd_cmd_svid_umode); + pmodule_cmd_nc_change(inspircd_cmd_nc_change); + pmodule_cmd_svid_umode2(inspircd_cmd_svid_umode2); + pmodule_cmd_svid_umode3(inspircd_cmd_svid_umode3); + pmodule_cmd_eob(inspircd_cmd_eob); + pmodule_flood_mode_check(inspircd_flood_mode_check); + pmodule_cmd_jupe(inspircd_cmd_jupe); + pmodule_valid_nick(inspircd_valid_nick); + pmodule_cmd_ctcp(inspircd_cmd_ctcp); + pmodule_set_umode(inspircd_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Brain"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("InspIRCd 1.0 Beta3"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set("+f"); + pmodule_ircd_flood_mode_char_remove("-f"); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/inspircd.h b/src/protocol/inspircd.h new file mode 100644 index 000000000..a7aa01e4c --- /dev/null +++ b/src/protocol/inspircd.h @@ -0,0 +1,124 @@ +/* InspIRCd 1.0 beta functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/*************************************************************************/ + +#define UMODE_a 0x00000001 +#define UMODE_h 0x00000002 +#define UMODE_i 0x00000004 +#define UMODE_o 0x00000008 +#define UMODE_r 0x00000010 +#define UMODE_w 0x00000020 +#define UMODE_A 0x00000040 +#define UMODE_g 0x80000000 +#define UMODE_x 0x40000000 + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_c 0x00000400 +#define CMODE_A 0x00000800 +#define CMODE_H 0x00001000 +#define CMODE_K 0x00002000 +#define CMODE_L 0x00004000 +#define CMODE_O 0x00008000 +#define CMODE_Q 0x00010000 +#define CMODE_S 0x00020000 +#define CMODE_V 0x00040000 +#define CMODE_f 0x00080000 +#define CMODE_G 0x00100000 +#define CMODE_C 0x00200000 +#define CMODE_u 0x00400000 +#define CMODE_z 0x00800000 +#define CMODE_N 0x01000000 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void inspircd_set_umode(User * user, int ac, char **av); +void inspircd_cmd_svsnoop(char *server, int set); +void inspircd_cmd_remove_akill(char *user, char *host); +void inspircd_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void inspircd_cmd_vhost_off(User * u); +void inspircd_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void inspircd_cmd_svskill(char *source, char *user, char *buf); +void inspircd_cmd_svsmode(User * u, int ac, char **av); +void inspircd_cmd_372(char *source, char *msg); +void inspircd_cmd_372_error(char *source); +void inspircd_cmd_375(char *source); +void inspircd_cmd_376(char *source); +void inspircd_cmd_nick(char *nick, char *name, char *modes); +void inspircd_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void inspircd_cmd_mode(char *source, char *dest, char *buf); +void inspircd_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void inspircd_cmd_kick(char *source, char *chan, char *user, char *buf); +void inspircd_cmd_notice_ops(char *source, char *dest, char *buf); +void inspircd_cmd_notice(char *source, char *dest, char *buf); +void inspircd_cmd_notice2(char *source, char *dest, char *msg); +void inspircd_cmd_privmsg(char *source, char *dest, char *buf); +void inspircd_cmd_privmsg2(char *source, char *dest, char *msg); +void inspircd_cmd_serv_notice(char *source, char *dest, char *msg); +void inspircd_cmd_serv_privmsg(char *source, char *dest, char *msg); +void inspircd_cmd_bot_chan_mode(char *nick, char *chan); +void inspircd_cmd_351(char *source); +void inspircd_cmd_quit(char *source, char *buf); +void inspircd_cmd_pong(char *servname, char *who); +void inspircd_cmd_join(char *user, char *channel, time_t chantime); +void inspircd_cmd_unsqline(char *user); +void inspircd_cmd_invite(char *source, char *chan, char *nick); +void inspircd_cmd_part(char *nick, char *chan, char *buf); +void inspircd_cmd_391(char *source, char *timestr); +void inspircd_cmd_250(char *buf); +void inspircd_cmd_307(char *buf); +void inspircd_cmd_311(char *buf); +void inspircd_cmd_312(char *buf); +void inspircd_cmd_317(char *buf); +void inspircd_cmd_219(char *source, char *letter); +void inspircd_cmd_401(char *source, char *who); +void inspircd_cmd_318(char *source, char *who); +void inspircd_cmd_242(char *buf); +void inspircd_cmd_243(char *buf); +void inspircd_cmd_211(char *buf); +void inspircd_cmd_global(char *source, char *buf); +void inspircd_cmd_global_legacy(char *source, char *fmt); +void inspircd_cmd_sqline(char *mask, char *reason); +void inspircd_cmd_squit(char *servname, char *message); +void inspircd_cmd_svso(char *source, char *nick, char *flag); +void inspircd_cmd_chg_nick(char *oldnick, char *newnick); +void inspircd_cmd_svsnick(char *source, char *guest, time_t when); +void inspircd_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void inspircd_cmd_connect(int servernum); +void inspircd_cmd_svshold(char *nick); +void inspircd_cmd_release_svshold(char *nick); +void inspircd_cmd_unsgline(char *mask); +void inspircd_cmd_unszline(char *mask); +void inspircd_cmd_szline(char *mask, char *reason, char *whom); +void inspircd_cmd_sgline(char *mask, char *reason); +void inspircd_cmd_unban(char *name, char *nick); +void inspircd_cmd_svsmode_chan(char *name, char *mode, char *nick); +void inspircd_cmd_svid_umode(char *nick, time_t ts); +void inspircd_cmd_nc_change(User * u); +void inspircd_cmd_svid_umode2(User * u, char *ts); +void inspircd_cmd_svid_umode3(User * u, char *ts); +void inspircd_cmd_eob(); +int inspircd_flood_mode_check(char *value); +void inspircd_cmd_jupe(char *jserver, char *who, char *reason); +int inspircd_valid_nick(char *nick); +void inspircd_cmd_ctcp(char *source, char *dest, char *buf); + diff --git a/src/protocol/plexus.c b/src/protocol/plexus.c new file mode 100644 index 000000000..2c14a1c34 --- /dev/null +++ b/src/protocol/plexus.c @@ -0,0 +1,1602 @@ +/* PlexusIRCD IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#include "services.h" +#include "pseudo.h" +#include "plexus.h" + +IRCDVar myIrcd[] = { + {"PleXusIRCd 2.0+", /* ircd name */ + "+oiSR", /* nickserv mode */ + "+oiSR", /* chanserv mode */ + "+oiSR", /* memoserv mode */ + "+oiSR", /* hostserv mode */ + "+oaiSR", /* operserv mode */ + "+oiSR", /* botserv mode */ + "+oiSR", /* helpserv mode */ + "+oiSR", /* Dev/Null mode */ + "+oiSR", /* Global mode */ + "+oiSR", /* nickserv alias mode */ + "+oiSR", /* chanserv alias mode */ + "+oiSR", /* memoserv alias mode */ + "+oiSR", /* hostserv alias mode */ + "+oaiSR", /* operserv alias mode */ + "+oiSR", /* botserv alias mode */ + "+oiSR", /* helpserv alias mode */ + "+oiSR", /* Dev/Null alias mode */ + "+oiSR", /* Global alias mode */ + "+iSR", /* Used by BotServ Bots */ + 3, /* Chan Max Symbols */ + "-acilmnpstMNORZ", /* Modes to Remove */ + "+o", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + NULL, /* Mode to set for chan admin */ + NULL, /* Mode to unset for chan admin */ + "+R", /* Mode On Reg */ + "-R", /* Mode on UnReg */ + "-R", /* Mode on Nick Change */ + 0, /* Supports SGlines */ + 1, /* Supports SQlines */ + 0, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + 0, /* Protected Umode */ + 0, /* Has Admin */ + 1, /* Chan SQlines */ + 0, /* Quit on Kill */ + 0, /* SVSMODE unban */ + 0, /* Has Protect */ + 0, /* Reverse */ + 0, /* Chan Reg */ + 0, /* Channel Mode */ + 0, /* vidents */ + 0, /* svshold */ + 1, /* time stamp on mode */ + 0, /* NICKIP */ + 0, /* UMODE */ + 0, /* O:LINE */ + 1, /* VHOST ON NICK */ + 0, /* Change RealName */ + CMODE_p, /* No Knock */ + 0, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_h, /* Vhost Mode */ + 0, /* +f */ + 0, /* +L */ + 0, /* +f Mode */ + 0, /* +L Mode */ + 0, /* On nick change check if they could be identified */ + 0, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 1, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + "h", /* vhost char */ + 0, /* ts6 */ + 0, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 1, /* reports sync state */ + } + , + {NULL} +}; + +IRCDCAPAB myIrcdcap[] = { + { + 0, /* NOQUIT */ + 0, /* TSMODE */ + 0, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + CAPAB_ZIP, /* ZIP */ + 0, /* BURST */ + CAPAB_TS5, /* TS5 */ + 0, /* TS3 */ + 0, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + CAPAB_QS, /* QS */ + CAPAB_UID, /* UID */ + CAPAB_KNOCK, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + 0, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + 0, 0, 0} +}; + + + +void plexus_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'h': + update_host(user); + break; + case 'o': + if (add) { + opcnt++; + + if (WallOper) + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + display_news(user, NEWS_OPER); + + } else { + opcnt--; + } + break; + case 'R': + if (add && !nick_identified(user)) { + common_svsmode(user, "-R", NULL); + user->mode &= ~UMODE_R; + } + break; + + } + } +} + +/* + * Local valid_op, and valid_halfop overrides. + * These are nessecary due to the way hybrid-based ircds handle halfops. + * hybrid-based ircds treat a -o as a -h as well. So if a user is set -o, + * the ircd will also set them -h if they have that mode. This breaks + * is_valid_op, as it always sends a -o. Breaking up the routines corrects this problem. - ThaPrince + */ + +int plexus_check_valid_halfop(User * user, Channel * chan, int servermode) +{ + if (!chan || !chan->ci) + return 1; + + /* They will be kicked; no need to deop, no need to update our internal struct too */ + if (chan->ci->flags & CI_VERBOTEN) + return 0; + + if (servermode && !check_access(user, chan->ci, CA_AUTOHALFOP)) { + notice_lang(s_ChanServ, user, CHAN_IS_REGISTERED, s_ChanServ); + anope_cmd_mode(whosends(chan->ci), chan->name, "-h %s", + user->nick); + return 0; + } + + if (check_access(user, chan->ci, CA_AUTODEOP)) { + anope_cmd_mode(whosends(chan->ci), chan->name, "-h %s", + user->nick); + return 0; + } + + return 1; +} + +int plexus_check_valid_op(User * user, Channel * chan, int servermode) +{ + if (!chan || !chan->ci) + return 1; + + /* They will be kicked; no need to deop, no need to update our internal struct too */ + if (chan->ci->flags & CI_VERBOTEN) + return 0; + + if (servermode && !check_access(user, chan->ci, CA_AUTOOP)) { + notice_lang(s_ChanServ, user, CHAN_IS_REGISTERED, s_ChanServ); + if (check_access(user, chan->ci, CA_AUTOHALFOP)) { + anope_cmd_mode(whosends(chan->ci), chan->name, + "-o+h %s %s", user->nick, user->nick); + } else { + anope_cmd_mode(whosends(chan->ci), chan->name, "-o %s", + user->nick); + } + return 0; + } + + if (check_access(user, chan->ci, CA_AUTODEOP)) { + anope_cmd_mode(whosends(chan->ci), chan->name, "-o %s", + user->nick); + return 0; + } + + return 1; +} + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + 0, 0, 0, /* A B C */ + 0, 0, 0, /* D E F */ + 0, 0, 0, /* G H I */ + 0, 0, 0, /* J K L */ + 0, 0, 0, /* M N O */ + 0, 0, UMODE_R, /* P Q R */ + UMODE_S, 0, 0, /* S T U */ + 0, 0, 0, /* V W X */ + 0, /* Y */ + 0, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, UMODE_b, 0, /* a b c */ + UMODE_d, 0, 0, /* d e f */ + 0, UMODE_h, UMODE_i, /* g h i */ + 0, 0, UMODE_l, /* j k l */ + UMODE_g, UMODE_n, UMODE_o, /* m n o */ + 0, 0, 0, /* p q r */ + 0, 0, UMODE_u, /* s t u */ + 0, UMODE_w, UMODE_x, /* v w x */ + 0, /* y */ + 0, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 'h', + 0, 0, 0, 0, + 0, + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, /* BCD */ + {NULL}, {NULL}, {NULL}, /* EFG */ + {NULL}, /* H */ + {add_invite, del_invite}, + {NULL}, /* J */ + {NULL}, {NULL}, {NULL}, /* KLM */ + {NULL}, {NULL}, {NULL}, /* NOP */ + {NULL}, {NULL}, {NULL}, /* QRS */ + {NULL}, {NULL}, {NULL}, /* TUV */ + {NULL}, {NULL}, {NULL}, /* WXY */ + {NULL}, /* Z */ + {NULL}, {NULL}, /* (char 91 - 92) */ + {NULL}, {NULL}, {NULL}, /* (char 93 - 95) */ + {NULL}, /* ` (char 96) */ + {NULL}, /* a (char 97) */ + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {0}, /* A */ + {0}, /* B */ + {0}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {0}, /* K */ + {0}, /* L */ + {CMODE_M, 0, NULL, NULL}, /* M */ + {CMODE_N, 0, NULL, NULL}, /* N */ + {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, /* O */ + {0}, /* P */ + {0}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {0}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {CMODE_Z, 0, NULL, NULL}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {CMODE_a, 0, NULL, NULL}, + {0}, /* b */ + {CMODE_c, 0, NULL, NULL}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {0}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {0}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'a', CMODE_a, 0, NULL, NULL}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'M', CMODE_M, 0, NULL, NULL}, + {'N', CMODE_N, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {'Z', CMODE_Z, 0, NULL, NULL}, + {0} +}; + + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, plexus_check_valid_halfop}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, plexus_check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + + +void plexus_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + plexus_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void plexus_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void plexus_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void plexus_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void plexus_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $$%s :%s", dest, msg); +} + +void plexus_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $$%s :%s", dest, msg); +} + + +void plexus_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "OPERWALL :%s", buf); +} + +/* GLOBOPS - to handle old WALLOPS */ +void plexus_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "OPERWALL :%s", fmt); +} + +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + +int anope_event_nick(char *source, int ac, char **av) +{ + if (ac != 2) { + User *user = do_nick(source, av[0], av[4], av[5], av[7], av[9], + strtoul(av[2], NULL, 10), + strtoul(av[8], NULL, 0), 0, av[6], NULL); + if (user) + anope_set_umode(user, 1, &av[3]); + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac == 4) { + do_topic(source, ac, av); + } else { + Channel *c = findchan(av[0]); + time_t topic_time = time(NULL); + + if (!c) { + if (debug) { + alog("channel: TOPIC %s for nonexistent channel %s", + merge_args(ac - 1, av + 1), av[0]); + } + return MOD_CONT; + } + + if (check_topiclock(c, topic_time)) + return MOD_CONT; + + if (c->topic) { + free(c->topic); + c->topic = NULL; + } + if (ac > 1 && *av[1]) + c->topic = sstrdup(av[1]); + + strscpy(c->topic_setter, source, sizeof(c->topic_setter)); + c->topic_time = topic_time; + + record_topic(av[0]); + } + return MOD_CONT; +} + +int anope_event_tburst(char *source, int ac, char **av) +{ + if (ac != 5) + return MOD_CONT; + + av[0] = av[1]; + av[1] = av[3]; + av[3] = av[4]; + do_topic(source, 4, av); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+","-"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_invite); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("TBURST", anope_event_tburst); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m); + m = createMessage("EOB", anope_event_eob); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + m = createMessage("SETHOST", anope_event_sethost); addCoreMessage(IRCD,m); +} + +/* *INDENT-ON* */ + + +void plexus_cmd_sqline(char *mask, char *reason) +{ + send_cmd(NULL, "RESV * %s :%s", mask, reason); +} + +void plexus_cmd_unsgline(char *mask) +{ + /* Does not support */ +} + +void plexus_cmd_unszline(char *mask) +{ + /* Does not support */ +} + +void plexus_cmd_szline(char *mask, char *reason, char *whom) +{ + /* Does not support */ +} + +void plexus_cmd_svsnoop(char *server, int set) +{ + /* does not support */ +} + +void plexus_cmd_svsadmin(char *server, int set) +{ + plexus_cmd_svsnoop(server, set); +} + +void plexus_cmd_sgline(char *mask, char *reason) +{ + /* does not support */ +} + +void plexus_cmd_remove_akill(char *user, char *host) +{ + send_cmd(s_OperServ, "UNKLINE * %s %s", user, host); +} + +void plexus_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "SVSTOPIC %s %s %lu :%s", chan, whosetit, + (unsigned long int) when, topic); +} + +void plexus_cmd_vhost_off(User * u) +{ + send_cmd(NULL, "SVSMODE %s -h", u->nick); +} + +void plexus_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + if (!nick) { + return; + } + send_cmd(NULL, "SVSMODE %s +h", nick); + send_cmd(NULL, "SVSHOST %s %s", nick, vhost); +} + +void plexus_cmd_unsqline(char *user) +{ + send_cmd(NULL, "UNRESV * %s", user); +} + +void plexus_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(NULL, "SJOIN %ld %s + :%s", (long int) time(NULL), channel, + user); +} + +/* +oper: the nick of the oper performing the kline +target.server: the server(s) this kline is destined for +duration: the duration if a tkline, 0 if permanent. +user: the 'user' portion of the kline +host: the 'host' portion of the kline +reason: the reason for the kline. +*/ + +void plexus_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(s_OperServ, "KLINE * %ld %s %s :%s", + (long int) (expires - (long) time(NULL)), user, host, reason); +} + +void plexus_cmd_svskill(char *source, char *user, char *buf) +{ + if (!buf) { + return; + } + + if (!source || !user) { + return; + } + + send_cmd(source, "KILL %s :%s", user, buf); +} + +void plexus_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(ServerName, "SVSMODE %s %s", u->nick, av[0]); + + if ((ac == 2) && isdigit(*av[1])) + send_cmd(ServerName, "SVSID %s %s", u->nick, av[1]); +} + +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +void plexus_cmd_svinfo() +{ + send_cmd(NULL, "SVINFO 5 5 0 :%ld", (long int) time(NULL)); +} + +/* CAPAB */ +/* + QS - Can handle quit storm removal + EX - Can do channel +e exemptions + CHW - Can do channel wall @# + LL - Can do lazy links + IE - Can do invite exceptions + EOB - Can do EOB message + KLN - Can do KLINE message + GLN - Can do GLINE message + HOPS - can do half ops (+h) + HUB - This server is a HUB + AOPS - Can do anon ops (+a) + UID - Can do UIDs + ZIP - Can do ZIPlinks + ENC - Can do ENCrypted links + KNOCK - supports KNOCK + TBURST - supports TBURST + PARA - supports invite broadcasting for +p + ENCAP - ? +*/ +void plexus_cmd_capab() +{ + send_cmd(NULL, + "CAPAB :QS EX CHW IE EOB KLN GLN HOPS HUB KNOCK TBURST PARA"); +} + +/* PASS */ +void plexus_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS %s :TS", pass); +} + +/* SERVER name hop descript */ +void plexus_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript); +} + +void plexus_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + if (servernum == 1) + plexus_cmd_pass(RemotePassword); + else if (servernum == 2) + plexus_cmd_pass(RemotePassword2); + else if (servernum == 3) + plexus_cmd_pass(RemotePassword3); + + plexus_cmd_capab(); + plexus_cmd_server(ServerName, 1, ServerDesc); + plexus_cmd_svinfo(); +} + +void plexus_cmd_svsinfo() +{ + /* not used */ +} + + + +void plexus_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s %s 0 :%s", nick, + (long int) time(NULL), modes, user, host, "*", ServerName, + real); + plexus_cmd_sqline(nick, "Reserved for services"); + +} + +void plexus_cmd_part(char *nick, char *chan, char *buf) +{ + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + +int anope_event_sethost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETHOST for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_host(u, av[0]); + return MOD_CONT; +} + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + plexus_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + +int anope_event_eob(char *source, int ac, char **av) +{ + Server *s; + s = findserver(servlist, source); + /* If we found a server with the given source, that one just + * finished bursting. If there was no source, then our uplink + * server finished bursting. -GD + */ + if (!s && serv_uplink) + s = serv_uplink; + finish_sync(s, 1); + + return MOD_CONT; +} + +void plexus_cmd_eob() +{ + send_cmd(ServerName, "EOB"); +} + + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +/* EVENT: SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + do_server(source, av[0], av[1], av[2], NULL); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + +void plexus_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void plexus_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void plexus_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void plexus_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +/* 391 */ +void plexus_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void plexus_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void plexus_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void plexus_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void plexus_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void plexus_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void plexus_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void plexus_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void plexus_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void plexus_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void plexus_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void plexus_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +void plexus_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "MODE %s %s", dest, buf); +} + +void plexus_cmd_nick(char *nick, char *name, char *mode) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s %s 0 :%s", nick, + (long int) time(NULL), mode, ServiceUser, ServiceHost, + "*", ServerName, (name)); + plexus_cmd_sqline(nick, "Reserved for services"); +} + +void plexus_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +void plexus_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + +void plexus_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s", ircd->botchanumode, nick); +} + +/* QUIT */ +void plexus_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +/* PONG */ +void plexus_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +/* INVITE */ +void plexus_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +/* SQUIT */ +void plexus_cmd_squit(char *servname, char *message) +{ + if (!servname || !message) { + return; + } + + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + Server *s; + s = findserver(servlist, source); + + if (s && *av[0]) { + do_umode(av[0], ac, av); + } else { + do_umode(source, ac, av); + } + } + return MOD_CONT; +} + +void plexus_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +/* SVSHOLD - set */ +void plexus_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void plexus_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSNICK */ +void plexus_cmd_svsnick(char *nick, char *newnick, time_t when) +{ + if (!nick || !newnick) { + return; + } + send_cmd(NULL, "SVSNICK %s %s", nick, newnick); +} + +void plexus_cmd_guest_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s %s 0 :%s", nick, + (long int) time(NULL), modes, user, host, "*", ServerName, + real); +} + +void plexus_cmd_svso(char *source, char *nick, char *flag) +{ + /* Not Supported by this IRCD */ +} + +void plexus_cmd_unban(char *name, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE channel modes */ + +void plexus_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void plexus_cmd_svid_umode(char *nick, time_t ts) +{ + send_cmd(ServerName, "SVSID %s 1", nick); +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void plexus_cmd_nc_change(User * u) +{ + common_svsmode(u, "-R", "1"); +} + +/* SVSMODE +d */ +void plexus_cmd_svid_umode2(User * u, char *ts) +{ + if (u->svid != u->timestamp) { + common_svsmode(u, "+R", ts); + } else { + common_svsmode(u, "+R", NULL); + } +} + +void plexus_cmd_svid_umode3(User * u, char *ts) +{ + /* not used */ +} + +/* NICK <newnick> */ +void plexus_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +int anope_event_svinfo(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +void plexus_cmd_svsjoin(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void plexus_cmd_svspart(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void plexus_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + +int anope_event_notice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_invite(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int plexus_flood_mode_check(char *value) +{ + return 0; +} + +int anope_event_error(char *source, int ac, char **av) +{ + if (ac >= 1) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + +void plexus_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + plexus_cmd_squit(jserver, rbuf); + plexus_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int plexus_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void plexus_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(plexus_cmd_svsnoop); + pmodule_cmd_remove_akill(plexus_cmd_remove_akill); + pmodule_cmd_topic(plexus_cmd_topic); + pmodule_cmd_vhost_off(plexus_cmd_vhost_off); + pmodule_cmd_akill(plexus_cmd_akill); + pmodule_cmd_svskill(plexus_cmd_svskill); + pmodule_cmd_svsmode(plexus_cmd_svsmode); + pmodule_cmd_372(plexus_cmd_372); + pmodule_cmd_372_error(plexus_cmd_372_error); + pmodule_cmd_375(plexus_cmd_375); + pmodule_cmd_376(plexus_cmd_376); + pmodule_cmd_nick(plexus_cmd_nick); + pmodule_cmd_guest_nick(plexus_cmd_guest_nick); + pmodule_cmd_mode(plexus_cmd_mode); + pmodule_cmd_bot_nick(plexus_cmd_bot_nick); + pmodule_cmd_kick(plexus_cmd_kick); + pmodule_cmd_notice_ops(plexus_cmd_notice_ops); + pmodule_cmd_notice(plexus_cmd_notice); + pmodule_cmd_notice2(plexus_cmd_notice2); + pmodule_cmd_privmsg(plexus_cmd_privmsg); + pmodule_cmd_privmsg2(plexus_cmd_privmsg2); + pmodule_cmd_serv_notice(plexus_cmd_serv_notice); + pmodule_cmd_serv_privmsg(plexus_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(plexus_cmd_bot_chan_mode); + pmodule_cmd_351(plexus_cmd_351); + pmodule_cmd_quit(plexus_cmd_quit); + pmodule_cmd_pong(plexus_cmd_pong); + pmodule_cmd_join(plexus_cmd_join); + pmodule_cmd_unsqline(plexus_cmd_unsqline); + pmodule_cmd_invite(plexus_cmd_invite); + pmodule_cmd_part(plexus_cmd_part); + pmodule_cmd_391(plexus_cmd_391); + pmodule_cmd_250(plexus_cmd_250); + pmodule_cmd_307(plexus_cmd_307); + pmodule_cmd_311(plexus_cmd_311); + pmodule_cmd_312(plexus_cmd_312); + pmodule_cmd_317(plexus_cmd_317); + pmodule_cmd_219(plexus_cmd_219); + pmodule_cmd_401(plexus_cmd_401); + pmodule_cmd_318(plexus_cmd_318); + pmodule_cmd_242(plexus_cmd_242); + pmodule_cmd_243(plexus_cmd_243); + pmodule_cmd_211(plexus_cmd_211); + pmodule_cmd_global(plexus_cmd_global); + pmodule_cmd_global_legacy(plexus_cmd_global_legacy); + pmodule_cmd_sqline(plexus_cmd_sqline); + pmodule_cmd_squit(plexus_cmd_squit); + pmodule_cmd_svso(plexus_cmd_svso); + pmodule_cmd_chg_nick(plexus_cmd_chg_nick); + pmodule_cmd_svsnick(plexus_cmd_svsnick); + pmodule_cmd_vhost_on(plexus_cmd_vhost_on); + pmodule_cmd_connect(plexus_cmd_connect); + pmodule_cmd_svshold(plexus_cmd_svshold); + pmodule_cmd_release_svshold(plexus_cmd_release_svshold); + pmodule_cmd_unsgline(plexus_cmd_unsqline); + pmodule_cmd_unszline(plexus_cmd_unszline); + pmodule_cmd_szline(plexus_cmd_szline); + pmodule_cmd_sgline(plexus_cmd_sgline); + pmodule_cmd_unban(plexus_cmd_unban); + pmodule_cmd_svsmode_chan(plexus_cmd_svsmode_chan); + pmodule_cmd_svid_umode(plexus_cmd_svid_umode); + pmodule_cmd_nc_change(plexus_cmd_nc_change); + pmodule_cmd_svid_umode2(plexus_cmd_svid_umode2); + pmodule_cmd_svid_umode3(plexus_cmd_svid_umode3); + pmodule_cmd_eob(plexus_cmd_eob); + pmodule_flood_mode_check(plexus_flood_mode_check); + pmodule_cmd_jupe(plexus_cmd_jupe); + pmodule_valid_nick(plexus_valid_nick); + pmodule_cmd_ctcp(plexus_cmd_ctcp); + pmodule_set_umode(plexus_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("PleXusIRCd 2.0+"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set(""); + pmodule_ircd_flood_mode_char_remove(""); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/plexus.h b/src/protocol/plexus.h new file mode 100644 index 000000000..54f002ca3 --- /dev/null +++ b/src/protocol/plexus.h @@ -0,0 +1,126 @@ +/* PlexusIRCD IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#define UMODE_a 0x00000001 +#define UMODE_h 0x00000002 +#define UMODE_i 0x00000004 +#define UMODE_o 0x00000008 +#define UMODE_R 0x00000010 +#define UMODE_w 0x00000020 +#define UMODE_s 0x00000040 +#define UMODE_c 0x00000080 +#define UMODE_r 0x00000100 +#define UMODE_k 0x00000200 +#define UMODE_f 0x00000400 +#define UMODE_y 0x00000800 +#define UMODE_d 0x00001000 +#define UMODE_n 0x00002000 +#define UMODE_x 0x00004000 +#define UMODE_u 0x00008000 +#define UMODE_b 0x00010000 +#define UMODE_l 0x00020000 +#define UMODE_g 0x00040000 +#define UMODE_S 0x00080000 + + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_a 0x00000400 +#define CMODE_Z 0x00000800 +#define CMODE_M 0x00001000 +#define CMODE_c 0x00002000 +#define CMODE_O 0x00004000 +#define CMODE_R 0x00008000 +#define CMODE_N 0x00010000 + + +#define DEFAULT_MLOCK CMODE_n | CMODE_t + +void plexus_set_umode(User * user, int ac, char **av); +void plexus_cmd_svsnoop(char *server, int set); +void plexus_cmd_remove_akill(char *user, char *host); +void plexus_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void plexus_cmd_vhost_off(User * u); +void plexus_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void plexus_cmd_svskill(char *source, char *user, char *buf); +void plexus_cmd_svsmode(User * u, int ac, char **av); +void plexus_cmd_372(char *source, char *msg); +void plexus_cmd_372_error(char *source); +void plexus_cmd_375(char *source); +void plexus_cmd_376(char *source); +void plexus_cmd_nick(char *nick, char *name, char *modes); +void plexus_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void plexus_cmd_mode(char *source, char *dest, char *buf); +void plexus_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void plexus_cmd_kick(char *source, char *chan, char *user, char *buf); +void plexus_cmd_notice_ops(char *source, char *dest, char *buf); +void plexus_cmd_notice(char *source, char *dest, char *buf); +void plexus_cmd_notice2(char *source, char *dest, char *msg); +void plexus_cmd_privmsg(char *source, char *dest, char *buf); +void plexus_cmd_privmsg2(char *source, char *dest, char *msg); +void plexus_cmd_serv_notice(char *source, char *dest, char *msg); +void plexus_cmd_serv_privmsg(char *source, char *dest, char *msg); +void plexus_cmd_bot_chan_mode(char *nick, char *chan); +void plexus_cmd_351(char *source); +void plexus_cmd_quit(char *source, char *buf); +void plexus_cmd_pong(char *servname, char *who); +void plexus_cmd_join(char *user, char *channel, time_t chantime); +void plexus_cmd_unsqline(char *user); +void plexus_cmd_invite(char *source, char *chan, char *nick); +void plexus_cmd_part(char *nick, char *chan, char *buf); +void plexus_cmd_391(char *source, char *timestr); +void plexus_cmd_250(char *buf); +void plexus_cmd_307(char *buf); +void plexus_cmd_311(char *buf); +void plexus_cmd_312(char *buf); +void plexus_cmd_317(char *buf); +void plexus_cmd_219(char *source, char *letter); +void plexus_cmd_401(char *source, char *who); +void plexus_cmd_318(char *source, char *who); +void plexus_cmd_242(char *buf); +void plexus_cmd_243(char *buf); +void plexus_cmd_211(char *buf); +void plexus_cmd_global(char *source, char *buf); +void plexus_cmd_global_legacy(char *source, char *fmt); +void plexus_cmd_sqline(char *mask, char *reason); +void plexus_cmd_squit(char *servname, char *message); +void plexus_cmd_svso(char *source, char *nick, char *flag); +void plexus_cmd_chg_nick(char *oldnick, char *newnick); +void plexus_cmd_svsnick(char *source, char *guest, time_t when); +void plexus_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void plexus_cmd_connect(int servernum); +void plexus_cmd_svshold(char *nick); +void plexus_cmd_release_svshold(char *nick); +void plexus_cmd_unsgline(char *mask); +void plexus_cmd_unszline(char *mask); +void plexus_cmd_szline(char *mask, char *reason, char *whom); +void plexus_cmd_sgline(char *mask, char *reason); +void plexus_cmd_unban(char *name, char *nick); +void plexus_cmd_svsmode_chan(char *name, char *mode, char *nick); +void plexus_cmd_svid_umode(char *nick, time_t ts); +void plexus_cmd_nc_change(User * u); +void plexus_cmd_svid_umode2(User * u, char *ts); +void plexus_cmd_svid_umode3(User * u, char *ts); +void plexus_cmd_eob(); +int plexus_flood_mode_check(char *value); +void plexus_cmd_jupe(char *jserver, char *who, char *reason); +int plexus_valid_nick(char *nick); +void plexus_cmd_ctcp(char *source, char *dest, char *buf); + + diff --git a/src/protocol/ptlink.c b/src/protocol/ptlink.c new file mode 100644 index 000000000..25c85d739 --- /dev/null +++ b/src/protocol/ptlink.c @@ -0,0 +1,1691 @@ +/* PTLink IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#include "services.h" +#include "pseudo.h" +#include "ptlink.h" + +IRCDVar myIrcd[] = { + {"PTlink 6.15.*+", /* ircd name */ + "+o", /* nickserv mode */ + "+o", /* chanserv mode */ + "+o", /* memoserv mode */ + "+o", /* hostserv mode */ + "+io", /* operserv mode */ + "+o", /* botserv mode */ + "+h", /* helpserv mode */ + "+i", /* Dev/Null mode */ + "+io", /* Global mode */ + "+o", /* nickserv alias mode */ + "+o", /* chanserv alias mode */ + "+o", /* memoserv alias mode */ + "+io", /* hostserv alias mode */ + "+io", /* operserv alias mode */ + "+o", /* botserv alias mode */ + "+h", /* helpserv alias mode */ + "+i", /* Dev/Null alias mode */ + "+io", /* Global alias mode */ + "+", /* Used by BotServ Bots */ + 2, /* Chan Max Symbols */ + "-inpsmtCRKOASdcqBNl", /* Modes to Remove */ + "+ao", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + "+a", /* Mode to set for chan admin */ + "-a", /* Mode to unset for chan admin */ + "+r", /* Mode On Reg */ + "-r", /* Mode on UnReg */ + NULL, /* Mode on Nick Change */ + 1, /* Supports SGlines */ + 1, /* Supports SQlines */ + 1, /* Supports SZlines */ + 0, /* Supports Halfop +h */ + 4, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + 0, /* Protected Umode */ + 0, /* Has Admin */ + 0, /* Chan SQlines */ + 0, /* Quit on Kill */ + 0, /* SVSMODE unban */ + 1, /* Has Protect */ + 0, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 1, /* vidents */ + 0, /* svshold */ + 0, /* time stamp on mode */ + 0, /* NICKIP */ + 0, /* O:LINE */ + 1, /* UMODE */ + 1, /* VHOST ON NICK */ + 0, /* Change RealName */ + CMODE_K, /* No Knock */ + CMODE_A, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_o, /* Vhost Mode */ + 1, /* +f */ + 0, /* +L */ + CMODE_f, + 0, + 1, + 1, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 0, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + NULL, /* vhost char */ + 0, /* ts6 */ + 1, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 0, /* reports sync state */ + } + , + {NULL} +}; + +IRCDCAPAB myIrcdcap[] = { + { + 0, /* NOQUIT */ + 0, /* TSMODE */ + 0, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + CAPAB_ZIP, /* ZIP */ + 0, /* BURST */ + 0, /* TS5 */ + 0, /* TS3 */ + 0, /* DKEY */ + CAPAB_PT4, /* PT4 */ + CAPAB_SCS, /* SCS */ + CAPAB_QS, /* QS */ + 0, /* UID */ + 0, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + 0, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + 0, 0, 0} +}; + + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + UMODE_A, UMODE_B, 0, /* A B C */ + 0, 0, 0, /* D E F */ + 0, UMODE_H, 0, /* G H I */ + 0, 0, 0, /* J K L */ + 0, UMODE_N, UMODE_O, /* M N O */ + 0, 0, UMODE_R, /* P Q R */ + UMODE_S, UMODE_T, 0, /* S T U */ + 0, 0, 0, /* V W X */ + 0, /* Y */ + 0, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, 0, 0, /* a b c */ + 0, 0, 0, /* d e f */ + 0, UMODE_h, UMODE_i, /* g h i */ + 0, 0, 0, /* j k l */ + 0, 0, UMODE_o, /* m n o */ + UMODE_p, 0, UMODE_r, /* p q r */ + UMODE_s, 0, 0, /* s t u */ + UMODE_v, UMODE_w, 0, /* v w x */ + UMODE_y, /* y */ + UMODE_z, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 0, + 0, 0, 0, 0, + 0, + + 'v', 0, 0, 'a', 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, + {NULL}, + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {CMODE_A, 0, NULL, NULL}, /* A */ + {CMODE_B, 0, NULL, NULL}, /* B */ + {CMODE_C, 0, NULL, NULL}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {CMODE_K, 0, NULL, NULL}, /* K */ + {0}, /* L */ + {0}, /* M */ + {CMODE_N, 0, NULL, NULL}, /* N */ + {CMODE_O, 0, NULL, NULL}, /* O */ + {0}, /* P */ + {0}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {CMODE_S, 0, NULL, NULL}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {CMODE_c, 0, NULL, NULL}, + {CMODE_d, 0, NULL, NULL}, + {0}, /* e */ + {CMODE_f, 0, set_flood, cs_set_flood}, + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {CMODE_q, 0, NULL, NULL}, + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {0}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'c', CMODE_c, 0, NULL, NULL}, + {'d', CMODE_d, 0, NULL, NULL}, + {'f', CMODE_f, 0, get_flood, cs_get_flood}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'q', CMODE_q, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'A', CMODE_A, 0, NULL, NULL}, + {'B', CMODE_B, 0, NULL, NULL}, + {'C', CMODE_C, 0, NULL, NULL}, + {'K', CMODE_K, 0, NULL, NULL}, + {'N', CMODE_N, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {'S', CMODE_S, 0, NULL, NULL}, + {0} +}; + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + + +void ptlink_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(s_ChanServ, chan, "%s %s %s", ircd->botchanumode, nick, + nick); +} + +/* + :%s SJOIN %lu %s %s %s :%s + parv[0] = sender + parv[1] = channel TS (channel creation time) + parv[2] = channel + parv[3] = modes + n arguments (key and/or limit) + ... [n] = if(key and/or limit) mode arguments + parv[4+n] = flags+nick list (all in one parameter) + NOTE: ignore channel modes if we already have the channel with a gr +*/ +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + +/* + * Note: This function has no validation whatsoever. Also, as of PTlink6.15.1 + * when you /deoper you get to keep your vindent, but you lose your vhost. In + * that case serives will *NOT* modify it's internal record for the vhost. We + * need to address this in the future. + */ +/* + :%s NEWMASK %s + parv[0] = sender + parv[1] = new mask (if no '@', hostname is assumed) +*/ +int anope_event_newmask(char *source, int ac, char **av) +{ + User *u; + char *newhost = NULL, *newuser = NULL; + + if (ac != 1) + return MOD_CONT; + u = finduser(source); + + if (!u) { + if (debug) { + alog("user: NEWMASK for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + newuser = myStrGetOnlyToken(av[0], '@', 0); + if (newuser) { + newhost = myStrGetTokenRemainder(av[0], '@', 1); + change_user_username(u, newuser); + } else { + newhost = av[0]; + } + + if (*newhost == '@') + newhost++; + + if (newhost) { + change_user_host(u, newhost); + } + + return MOD_CONT; +} + +/* + NICK %s %d %lu %s %s %s %s %s :%s + parv[0] = nickname + parv[1] = hopcount + parv[2] = nick TS (nick introduction time) + parv[3] = umodes + parv[4] = username + parv[5] = hostname + parv[6] = spoofed hostname + parv[7] = server + parv[8] = nick info +*/ +/* + Change NICK + parv[0] = old nick + parv[1] = new nick + parv[2] = TS (timestamp from user's server when nick changed was received) +*/ +/* + NICK xpto 2 561264 +rw irc num.myisp.pt mask.myisp.pt uc.ptlink.net :Just me + 0 1 2 3 4 5 6 7 8 + +*/ +int anope_event_nick(char *source, int ac, char **av) +{ + User *user; + + if (ac != 2) { + user = do_nick(source, av[0], av[4], av[5], av[7], av[8], + strtoul(av[2], NULL, 10), 0, 0, av[6], NULL); + if (user) + anope_set_umode(user, 1, &av[3]); + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + +/* + :%s SERVER %s %d %s :%s + parv[0] = server from where the server was introduced to us + parv[1] = server name + parv[2] = hop count (1 wen are directly connected) + parv[3] = server version + parv[4] = server description +*/ +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + do_server(source, av[0], av[1], av[3], NULL); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+a","-a"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("461", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_invite); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GLOBOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GNOTICE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("NEWMASK", anope_event_newmask); addCoreMessage(IRCD,m); + m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m); + m = createMessage("SVSINFO", anope_event_svsinfo); addCoreMessage(IRCD,m); + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("REHASH", anope_event_rehash); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("CREDITS", anope_event_credits); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + m = createMessage("NJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("NNICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("ZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNZLINE", anope_event_null); addCoreMessage(IRCD,m); +} + +/* *INDENT-ON* */ + + +int anope_event_svsinfo(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_svinfo(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +/* + :%s SQLINE %s :%s + parv[0] = sender + parv[1] = sqlined nick/mask + parv[2] = reason +*/ +void ptlink_cmd_sqline(char *mask, char *reason) +{ + send_cmd(ServerName, "SQLINE %s :%s", mask, reason); +} + +/* + :%s SVSADMIN %s :%s + parv[0] = sender (services client) + parv[1] = target server + parv[2] = operation + operations: + noopers - remove existing opers and disable o:lines +*/ +void ptlink_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "SVSADMIN %s :%s", server, set ? "noopers" : "rehash"); +} + +void ptlink_cmd_svsadmin(char *server, int set) +{ + ptlink_cmd_svsnoop(server, set); +} + +/* + :%s UNGLINE %s + parv[0] = sender (server if on network synchronization) + parv[1] = glined usert@host mask or ALL to remove all glines +*/ +void ptlink_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, "UNGLINE %s@%s", user, host); +} + + +void anope_part(char *nick, char *chan) +{ + send_cmd(nick, "PART %s", chan); +} +void anope_topic(char *whosets, char *chan, char *whosetit, char *topic, + time_t when) +{ + send_cmd(whosets, "TOPIC %s %s %lu :%s", chan, whosetit, + (unsigned long int) when, topic); +} + +/* + :%s UNSQLINE %s + parv[0] = sender + parv[1] = sqlined nick/mask +*/ +void ptlink_cmd_unsqline(char *user) +{ + send_cmd(NULL, "UNSQLINE %s", user); +} + +void ptlink_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(ServerName, "SJOIN %ld %s + :%s", (long int) time(NULL), + channel, user); +} + +/* + :%s GLINE %s %lu %s %s + parv[0] = sender (server if on network synchronization) + parv[1] = glined usert@host mask + parv[2] = gline duration time (seconds) + parv[3] = who added the gline + parv[4] = reason +*/ +void ptlink_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(ServerName, "GLINE %s@%s %i %s :%s", user, host, 86400 * 2, + who, reason); +} + + +void ptlink_cmd_svskill(char *source, char *user, char *buf) +{ + if (!buf) { + return; + } + + if (!source || !user) { + return; + } + + send_cmd(source, "KILL %s :%s", user, buf); +} + +/* + :%s SVSMODE %s %s :%s + parv[0] = sender (services client) + parv[1] = target client nick + parv[2] = mode changes + parv[3] = extra parameter ( if news setting mode(+n) ) + e.g.: :NickServ SVSMODE Lamego +rn 1991234 +*/ +void ptlink_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(ServerName, "SVSMODE %s %s%s%s", u->nick, av[0], + (ac == 2 ? " " : ""), (ac == 2 ? av[1] : "")); +} + +int anope_event_error(char *source, int ac, char **av) +{ + if (ac >= 1) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + +void ptlink_cmd_squit(char *servname, char *message) +{ + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +/* PONG */ +void ptlink_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +/* + SVINFO %d %d + parv[0] = server name + parv[1] = current supported protocol version + parv[2] = minimum supported protocol version + + See the ptlink.h for information on PTLINK_TS_CURRENT, and + PTLINK_TS_MIN +*/ +void ptlink_cmd_svinfo() +{ +#if defined(PTLINK_TS_CURRENT) && defined(PTLINK_TS_MIN) + send_cmd(NULL, "SVINFO %d %d %lu", PTLINK_TS_CURRENT, PTLINK_TS_MIN, + (unsigned long int) time(NULL)); +#else + /* hardwired if the defs some how go missing */ + send_cmd(NULL, "SVINFO 6 3 %lu", (unsigned long int) time(NULL)); +#endif +} + +/* + SVSINFO %lu %d + parv[0] = sender (server name) + parv[1] = local services data TS + parv[1] = max global users +*/ +void ptlink_cmd_svsinfo() +{ + send_cmd(NULL, "SVSINFO %lu %d", (unsigned long int) time(NULL), + maxusercnt); +} + +/* + PASS %s :TS + parv[1] = connection password + (TS indicates this is server uses TS protocol and SVINFO will be sent + for protocol compatibility checking) +*/ +void ptlink_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS %s :TS", pass); +} + +/* + CAPAB :%s + parv[1] = capability list +*/ +void ptlink_cmd_capab() +{ + send_cmd(NULL, "CAPAB :QS PTS4"); +} + + +void ptlink_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d Anope.Services%s :%s", servname, hop, + version_number_dotted, descript); +} +void ptlink_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + if (servernum == 1) + ptlink_cmd_pass(RemotePassword); + else if (servernum == 2) + ptlink_cmd_pass(RemotePassword2); + else if (servernum == 3) + ptlink_cmd_pass(RemotePassword3); + + ptlink_cmd_capab(); + ptlink_cmd_server(ServerName, 1, ServerDesc); + ptlink_cmd_svinfo(); + ptlink_cmd_svsinfo(); +} + + + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +/* + :%s TOPIC %s %s %lu :%s + parv[0] = sender prefix + parv[1] = channel + parv[2] = topic nick + parv[3] = topic time + parv[4] = topic text +*/ +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac != 4) + return MOD_CONT; + do_topic(source, ac, av); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + +/* + :%s MODE %s :%s + parv[0] = sender + parv[1] = target nick (==sender) + parv[2] = mode change string +*/ +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +void ptlink_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + + +void ptlink_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + ptlink_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void ptlink_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void ptlink_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void ptlink_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void ptlink_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $%s :%s", dest, msg); +} + +void ptlink_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $%s :%s", dest, msg); +} + +/* GLOBOPS */ +void ptlink_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "GLOBOPS :%s", buf); +} + +/* 391 */ +void ptlink_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void ptlink_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void ptlink_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void ptlink_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void ptlink_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void ptlink_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void ptlink_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void ptlink_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void ptlink_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void ptlink_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void ptlink_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void ptlink_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +void ptlink_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "MODE %s %s", dest, buf); +} + +/* + NICK %s %d %lu %s %s %s %s %s :%s + parv[1] = nickname + parv[2] = hopcount + parv[3] = nick TS (nick introduction time) + parv[4] = umodes + parv[5] = username + parv[6] = hostname + parv[7] = spoofed hostname + parv[8] = server + parv[9] = nick info +*/ +void ptlink_cmd_nick(char *nick, char *name, char *mode) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "NICK %s 1 %lu %s %s %s %s %s :%s", nick, + (unsigned long int) time(NULL), mode, ServiceUser, + ServiceHost, ServiceHost, ServerName, name); + ptlink_cmd_sqline(nick, "Reserved for services"); +} + +void ptlink_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (!buf) { + return; + } + + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +/* QUIT */ +void ptlink_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +void ptlink_cmd_part(char *nick, char *chan, char *buf) +{ + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + +/* + :%s TOPIC %s %s %lu :%s + parv[0] = sender prefix + parv[1] = channel + parv[2] = topic nick + parv[3] = topic time + parv[4] = topic text +*/ +void ptlink_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "TOPIC %s :%s", chan, topic); +} + +void ptlink_cmd_vhost_off(User * u) +{ + /* does not support vhosting */ +} + +void ptlink_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + if (vIdent) { + send_cmd(s_HostServ, "NEWMASK %s@%s %s", vIdent, vhost, nick); + } else { + send_cmd(s_HostServ, "NEWMASK %s %s", vhost, nick); + } +} + +/* INVITE */ +void ptlink_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +void ptlink_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void ptlink_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void ptlink_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void ptlink_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + + +void ptlink_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'o': + if (add) { + opcnt++; + + if (WallOper) + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + display_news(user, NEWS_OPER); + if (is_services_admin(user)) { + common_svsmode(user, "+a", NULL); + user->mode |= UMODE_a; + } + + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + } + } +} + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + ptlink_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +void ptlink_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "NICK %s 1 %lu %s %s %s %s %s :%s", nick, + (unsigned long int) time(NULL), modes, user, host, host, + ServerName, real); + ptlink_cmd_sqline(nick, "Reserved for services"); + +} + +void ptlink_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +/* SVSHOLD - set */ +void ptlink_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void ptlink_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* +:%s UNZLINE %s + parv[0] = sender + parv[1] = zlined host +*/ +void ptlink_cmd_unszline(char *mask) +{ + send_cmd(s_OperServ, "UNZLINE %s", mask); +} + +/* +:%s ZLINE %s :%s + parv[0] = sender + parv[1] = zlined host + parv[2] = time + parv[3] = reason +*/ +void ptlink_cmd_szline(char *mask, char *reason, char *whom) +{ + send_cmd(s_OperServ, "ZLINE %s %ld :%s", mask, + (long int) time(NULL) + 86400 * 2, reason); +} + +/* +:%s UNSXLINE %s + parv[0] = sender + parv[1] = info ban mask +*/ +void ptlink_cmd_unsgline(char *mask) +{ + send_cmd(ServerName, "UNSXLINE :%s", mask); +} + + +/* + * sxline - add info ban line + * + * parv[0] = sender prefix + * parv[1] = mask length + * parv[2] = real name banned mask:reason + */ +void ptlink_cmd_sgline(char *mask, char *reason) +{ + send_cmd(ServerName, "SXLINE %d :%s:%s", strlen(mask), mask, reason); +} + +/* SVSNICK */ +/* + :%s SVSNICK %s %s + parv[0] = sender (services client) + parv[1] = target client nick + parv[2] = new nick + e.g.: :NickServ SVSNICK Smiler 67455223 _Smiler- +*/ +void ptlink_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "SVSNICK %s %s :%ld", source, guest, (long int) when); +} + +void ptlink_cmd_guest_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + send_cmd(NULL, "NICK %s 1 %lu %s %s %s %s %s :%s", nick, + (unsigned long int) time(NULL), modes, user, host, host, + ServerName, real); +} + + +void ptlink_cmd_unban(char *name, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE channel modes */ + +void ptlink_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + /* Not Supported by this IRCD */ +} + +void ptlink_cmd_svso(char *source, char *nick, char *flag) +{ + /* Not Supported by this IRCD */ +} + + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void ptlink_cmd_svid_umode(char *nick, time_t ts) +{ + /* Not Supported by this ircd */ +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void ptlink_cmd_nc_change(User * u) +{ + /* Not Supported by this ircd */ +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void ptlink_cmd_svid_umode2(User * u, char *ts) +{ + common_svsmode(u, "+r", NULL); +} + +void ptlink_cmd_svid_umode3(User * u, char *ts) +{ + /* Bahamuts have this extra one, since they can check on even nick changes */ +} + +/* NICK <newnick> */ +/* + :%s NICK %s %lu + parv[0] = old nick + parv[1] = new nick + parv[2] = TS (timestamp from user's server when nick changed was received) +*/ +void ptlink_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s %ld", newnick, (long int) time(NULL)); +} + +/* + :%s SVSJOIN %s :%s + parv[0] = sender (services client) + parv[1] = target client nick + parv[2] = channels list + :OperServ SVSJOIN Trystan #Admin +*/ +void ptlink_cmd_svsjoin(char *source, char *nick, char *chan) +{ + send_cmd(source, "SVSJOIN %s %s", nick, chan); +} + +/* + :%s SVSPART %s :%s + parv[0] = sender (services client) + parv[1] = target client nick + parv[2] = channels list + e.g.: :ChanServ SVSPART mynick 4163321 #Chan1,#Chan2 +*/ +void ptlink_cmd_svspart(char *source, char *nick, char *chan) +{ + send_cmd(source, "SVSPART %s :%s", nick, chan); +} + +void ptlink_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + +int anope_event_notice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_credits(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_invite(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int ptlink_flood_mode_check(char *value) +{ + char *dp, *end; + + if (value && *value != ':' + && (strtoul((*value == '*' ? value + 1 : value), &dp, 10) > 0) + && (*dp == ':') && (*(++dp) != 0) && (strtoul(dp, &end, 10) > 0) + && (*end == 0)) { + return 1; + } else { + return 0; + } +} + +void ptlink_cmd_eob() +{ + /* not supported */ +} + +void ptlink_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + ptlink_cmd_squit(jserver, rbuf); + ptlink_cmd_server(jserver, 1, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* GLOBOPS - to handle old WALLOPS */ +void ptlink_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "GLOBOPS :%s", fmt); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int ptlink_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void ptlink_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(ptlink_cmd_svsnoop); + pmodule_cmd_remove_akill(ptlink_cmd_remove_akill); + pmodule_cmd_topic(ptlink_cmd_topic); + pmodule_cmd_vhost_off(ptlink_cmd_vhost_off); + pmodule_cmd_akill(ptlink_cmd_akill); + pmodule_cmd_svskill(ptlink_cmd_svskill); + pmodule_cmd_svsmode(ptlink_cmd_svsmode); + pmodule_cmd_372(ptlink_cmd_372); + pmodule_cmd_372_error(ptlink_cmd_372_error); + pmodule_cmd_375(ptlink_cmd_375); + pmodule_cmd_376(ptlink_cmd_376); + pmodule_cmd_nick(ptlink_cmd_nick); + pmodule_cmd_guest_nick(ptlink_cmd_guest_nick); + pmodule_cmd_mode(ptlink_cmd_mode); + pmodule_cmd_bot_nick(ptlink_cmd_bot_nick); + pmodule_cmd_kick(ptlink_cmd_kick); + pmodule_cmd_notice_ops(ptlink_cmd_notice_ops); + pmodule_cmd_notice(ptlink_cmd_notice); + pmodule_cmd_notice2(ptlink_cmd_notice2); + pmodule_cmd_privmsg(ptlink_cmd_privmsg); + pmodule_cmd_privmsg2(ptlink_cmd_privmsg2); + pmodule_cmd_serv_notice(ptlink_cmd_serv_notice); + pmodule_cmd_serv_privmsg(ptlink_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(ptlink_cmd_bot_chan_mode); + pmodule_cmd_351(ptlink_cmd_351); + pmodule_cmd_quit(ptlink_cmd_quit); + pmodule_cmd_pong(ptlink_cmd_pong); + pmodule_cmd_join(ptlink_cmd_join); + pmodule_cmd_unsqline(ptlink_cmd_unsqline); + pmodule_cmd_invite(ptlink_cmd_invite); + pmodule_cmd_part(ptlink_cmd_part); + pmodule_cmd_391(ptlink_cmd_391); + pmodule_cmd_250(ptlink_cmd_250); + pmodule_cmd_307(ptlink_cmd_307); + pmodule_cmd_311(ptlink_cmd_311); + pmodule_cmd_312(ptlink_cmd_312); + pmodule_cmd_317(ptlink_cmd_317); + pmodule_cmd_219(ptlink_cmd_219); + pmodule_cmd_401(ptlink_cmd_401); + pmodule_cmd_318(ptlink_cmd_318); + pmodule_cmd_242(ptlink_cmd_242); + pmodule_cmd_243(ptlink_cmd_243); + pmodule_cmd_211(ptlink_cmd_211); + pmodule_cmd_global(ptlink_cmd_global); + pmodule_cmd_global_legacy(ptlink_cmd_global_legacy); + pmodule_cmd_sqline(ptlink_cmd_sqline); + pmodule_cmd_squit(ptlink_cmd_squit); + pmodule_cmd_svso(ptlink_cmd_svso); + pmodule_cmd_chg_nick(ptlink_cmd_chg_nick); + pmodule_cmd_svsnick(ptlink_cmd_svsnick); + pmodule_cmd_vhost_on(ptlink_cmd_vhost_on); + pmodule_cmd_connect(ptlink_cmd_connect); + pmodule_cmd_svshold(ptlink_cmd_svshold); + pmodule_cmd_release_svshold(ptlink_cmd_release_svshold); + pmodule_cmd_unsgline(ptlink_cmd_unsqline); + pmodule_cmd_unszline(ptlink_cmd_unszline); + pmodule_cmd_szline(ptlink_cmd_szline); + pmodule_cmd_sgline(ptlink_cmd_sgline); + pmodule_cmd_unban(ptlink_cmd_unban); + pmodule_cmd_svsmode_chan(ptlink_cmd_svsmode_chan); + pmodule_cmd_svid_umode(ptlink_cmd_svid_umode); + pmodule_cmd_nc_change(ptlink_cmd_nc_change); + pmodule_cmd_svid_umode2(ptlink_cmd_svid_umode2); + pmodule_cmd_svid_umode3(ptlink_cmd_svid_umode3); + pmodule_cmd_eob(ptlink_cmd_eob); + pmodule_flood_mode_check(ptlink_flood_mode_check); + pmodule_cmd_jupe(ptlink_cmd_jupe); + pmodule_valid_nick(ptlink_valid_nick); + pmodule_cmd_ctcp(ptlink_cmd_ctcp); + pmodule_set_umode(ptlink_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + + pmodule_ircd_version("PTlink 6.15.*+"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set("+f"); + pmodule_ircd_flood_mode_char_remove("-f"); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/ptlink.h b/src/protocol/ptlink.h new file mode 100644 index 000000000..2ec8f1181 --- /dev/null +++ b/src/protocol/ptlink.h @@ -0,0 +1,149 @@ +/* PTLink IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#define UMODE_a 0x00000001 +#define UMODE_h 0x00000002 +#define UMODE_i 0x00000004 +#define UMODE_o 0x00000008 +#define UMODE_r 0x00000010 +#define UMODE_w 0x00000020 +#define UMODE_A 0x00000040 +#define UMODE_B 0x00000080 +#define UMODE_H 0x00000100 +#define UMODE_N 0x00000200 +#define UMODE_O 0x00000400 +#define UMODE_p 0x00000800 +#define UMODE_R 0x00001000 +#define UMODE_s 0x00002000 +#define UMODE_S 0x00004000 +#define UMODE_T 0x00008000 +#define UMODE_v 0x00001000 +#define UMODE_y 0x00002000 +#define UMODE_z 0x00004000 + + + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_A 0x00000400 +#define CMODE_B 0x00000800 +#define CMODE_c 0x00001000 +#define CMODE_d 0x00002000 +#define CMODE_f 0x00004000 +#define CMODE_K 0x00008000 +#define CMODE_O 0x00010000 +#define CMODE_q 0x00020000 +#define CMODE_S 0x00040000 +#define CMODE_N 0x00080000 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ +#define CMODE_C 0x00100000 + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +/* + The following variables are set to define the TS protocol version + that we support. + + PTLink 6.14 to 6.17 TS CURRENT is 6 and MIN is 3 + PTlink 6.18 TS CURRENT is 9 and MIN is 3 + PTLink 6.19 TS CURRENT is 10 and MIN is 9 + + If you are running 6.18 or 6.19 do not touch these values as they will + allow you to connect + + If you are running an older version of PTLink, first think about updating + your ircd, or changing the TS_CURRENT to 6 to allow services to connect +*/ + +#define PTLINK_TS_CURRENT 9 +#define PTLINK_TS_MIN 3 + +void ptlink_set_umode(User * user, int ac, char **av); +void ptlink_cmd_svsnoop(char *server, int set); +void ptlink_cmd_remove_akill(char *user, char *host); +void ptlink_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void ptlink_cmd_vhost_off(User * u); +void ptlink_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void ptlink_cmd_svskill(char *source, char *user, char *buf); +void ptlink_cmd_svsmode(User * u, int ac, char **av); +void ptlink_cmd_372(char *source, char *msg); +void ptlink_cmd_372_error(char *source); +void ptlink_cmd_375(char *source); +void ptlink_cmd_376(char *source); +void ptlink_cmd_nick(char *nick, char *name, char *modes); +void ptlink_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void ptlink_cmd_mode(char *source, char *dest, char *buf); +void ptlink_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void ptlink_cmd_kick(char *source, char *chan, char *user, char *buf); +void ptlink_cmd_notice_ops(char *source, char *dest, char *buf); +void ptlink_cmd_notice(char *source, char *dest, char *buf); +void ptlink_cmd_notice2(char *source, char *dest, char *msg); +void ptlink_cmd_privmsg(char *source, char *dest, char *buf); +void ptlink_cmd_privmsg2(char *source, char *dest, char *msg); +void ptlink_cmd_serv_notice(char *source, char *dest, char *msg); +void ptlink_cmd_serv_privmsg(char *source, char *dest, char *msg); +void ptlink_cmd_bot_chan_mode(char *nick, char *chan); +void ptlink_cmd_351(char *source); +void ptlink_cmd_quit(char *source, char *buf); +void ptlink_cmd_pong(char *servname, char *who); +void ptlink_cmd_join(char *user, char *channel, time_t chantime); +void ptlink_cmd_unsqline(char *user); +void ptlink_cmd_invite(char *source, char *chan, char *nick); +void ptlink_cmd_part(char *nick, char *chan, char *buf); +void ptlink_cmd_391(char *source, char *timestr); +void ptlink_cmd_250(char *buf); +void ptlink_cmd_307(char *buf); +void ptlink_cmd_311(char *buf); +void ptlink_cmd_312(char *buf); +void ptlink_cmd_317(char *buf); +void ptlink_cmd_219(char *source, char *letter); +void ptlink_cmd_401(char *source, char *who); +void ptlink_cmd_318(char *source, char *who); +void ptlink_cmd_242(char *buf); +void ptlink_cmd_243(char *buf); +void ptlink_cmd_211(char *buf); +void ptlink_cmd_global(char *source, char *buf); +void ptlink_cmd_global_legacy(char *source, char *fmt); +void ptlink_cmd_sqline(char *mask, char *reason); +void ptlink_cmd_squit(char *servname, char *message); +void ptlink_cmd_svso(char *source, char *nick, char *flag); +void ptlink_cmd_chg_nick(char *oldnick, char *newnick); +void ptlink_cmd_svsnick(char *source, char *guest, time_t when); +void ptlink_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void ptlink_cmd_connect(int servernum); +void ptlink_cmd_svshold(char *nick); +void ptlink_cmd_release_svshold(char *nick); +void ptlink_cmd_unsgline(char *mask); +void ptlink_cmd_unszline(char *mask); +void ptlink_cmd_szline(char *mask, char *reason, char *whom); +void ptlink_cmd_sgline(char *mask, char *reason); +void ptlink_cmd_unban(char *name, char *nick); +void ptlink_cmd_svsmode_chan(char *name, char *mode, char *nick); +void ptlink_cmd_svid_umode(char *nick, time_t ts); +void ptlink_cmd_nc_change(User * u); +void ptlink_cmd_svid_umode2(User * u, char *ts); +void ptlink_cmd_svid_umode3(User * u, char *ts); +void ptlink_cmd_eob(); +int ptlink_flood_mode_check(char *value); +void ptlink_cmd_jupe(char *jserver, char *who, char *reason); +int ptlink_valid_nick(char *nick); +void ptlink_cmd_ctcp(char *source, char *dest, char *buf); + + diff --git a/src/protocol/rageircd.c b/src/protocol/rageircd.c new file mode 100644 index 000000000..399d165b7 --- /dev/null +++ b/src/protocol/rageircd.c @@ -0,0 +1,1655 @@ +/* Rage IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#include "services.h" +#include "pseudo.h" +#include "rageircd.h" + +IRCDVar myIrcd[] = { + {"RageIRCd 2.0.*", /* ircd name */ + "+d", /* nickserv mode */ + "+d", /* chanserv mode */ + "+d", /* memoserv mode */ + "+d", /* hostserv mode */ + "+di", /* operserv mode */ + "+d", /* botserv mode */ + "+dh", /* helpserv mode */ + "+di", /* Dev/Null mode */ + "+di", /* Global mode */ + "+o", /* nickserv alias mode */ + "+o", /* chanserv alias mode */ + "+o", /* memoserv alias mode */ + "+io", /* hostserv alias mode */ + "+io", /* operserv alias mode */ + "+o", /* botserv alias mode */ + "+o", /* helpserv alias mode */ + "+i", /* Dev/Null alias mode */ + "+io", /* Global alias mode */ + "+", /* Used by BotServ Bots */ + 3, /* Chan Max Symbols */ + "-ilmnpRstcOACNM", /* Modes to Remove */ + "+o", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + "+a", /* Mode to set for channel admin */ + "-a", /* Mode to unset for channel admin */ + "+rd", /* Mode On Reg */ + "-rd", /* Mode on UnReg */ + "-r+d", /* Mode on Nick Change */ + 1, /* Supports SGlines */ + 1, /* Supports SQlines */ + 0, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topic Backward */ + 0, /* Protected Umode */ + 1, /* Has Admin */ + 1, /* Chan SQlines */ + 1, /* Quit on Kill */ + 0, /* SVSMODE unban */ + 0, /* Has Protect */ + 0, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 0, /* vidents */ + 1, /* svshold */ + 1, /* time stamp on mode */ + 1, /* NICKIP */ + 0, /* O:LINE */ + 1, /* UMODE */ + 1, /* VHOST ON NICK */ + 0, /* Change RealName */ + CMODE_p, /* No Knock */ + CMODE_A, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_x, /* Vhost Mode */ + 0, /* +f */ + 0, /* +L */ + 0, + 0, + 1, + 0, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 1, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + "x", /* vhost char */ + 0, /* ts6 */ + 1, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 1, /* reports sync state */ + } + , + {NULL} +}; + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + CAPAB_TSMODE, /* TSMODE */ + CAPAB_UNCONNECT, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + CAPAB_ZIP, /* ZIP */ + CAPAB_BURST, /* BURST */ + 0, /* TS5 */ + 0, /* TS3 */ + CAPAB_DKEY, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + CAPAB_UID, /* UID */ + 0, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + CAPAB_SN2, /* SN2 */ + CAPAB_TOKEN, /* TOKEN */ + CAPAB_VHOST, /* VHOST */ + CAPAB_SSJ3, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + 0, 0, 0} +}; + + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + UMODE_A, 0, 0, /* A B C */ + 0, 0, 0, /* D E F */ + 0, 0, 0, /* G H I */ + 0, 0, 0, /* J K L */ + 0, 0, 0, /* M N O */ + 0, 0, UMODE_R, /* P Q R */ + 0, 0, 0, /* S T U */ + 0, 0, 0, /* V W X */ + 0, /* Y */ + 0, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, 0, 0, /* a b c */ + 0, 0, 0, /* d e f */ + 0, UMODE_h, UMODE_i, /* g h i */ + 0, 0, 0, /* j k l */ + 0, 0, UMODE_o, /* m n o */ + 0, 0, UMODE_r, /* p q r */ + 0, 0, 0, /* s t u */ + 0, UMODE_w, 0, /* v w x */ + 0, /* y */ + 0, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 'h', /* (37) % Channel halfops */ + 0, 0, 0, 0, + 'a', /* * Channel Admins */ + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, /* BCD */ + {NULL}, {NULL}, {NULL}, /* EFG */ + {NULL}, /* H */ + {add_invite, del_invite}, + {NULL}, /* J */ + {NULL}, {NULL}, {NULL}, /* KLM */ + {NULL}, {NULL}, {NULL}, /* NOP */ + {NULL}, {NULL}, {NULL}, /* QRS */ + {NULL}, {NULL}, {NULL}, /* TUV */ + {NULL}, {NULL}, {NULL}, /* WXY */ + {NULL}, /* Z */ + {NULL}, {NULL}, /* (char 91 - 92) */ + {NULL}, {NULL}, {NULL}, /* (char 93 - 95) */ + {NULL}, /* ` (char 96) */ + {NULL}, /* a (char 97) */ + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {CMODE_A, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* B */ + {CMODE_C, 0, NULL, NULL}, + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {0}, /* K */ + {0}, /* L */ + {CMODE_M, 0, NULL, NULL}, /* M */ + {CMODE_N, 0, NULL, NULL}, /* N */ + {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* P */ + {0}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {CMODE_S, 0, NULL, NULL}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {CMODE_c, 0, NULL, NULL}, + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {0}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'c', CMODE_c, 0, NULL, NULL}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'A', CMODE_A, 0, NULL, NULL}, + {'C', CMODE_C, 0, NULL, NULL}, + {'M', CMODE_M, 0, NULL, NULL}, + {'N', CMODE_N, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {0} +}; + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + {CUS_PROTECT, CUF_PROTECT_BOTSERV, check_valid_admin}, + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, check_valid_op}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + + +void rageircd_cmd_bot_unban(ChannelInfo * ci, char *nick) +{ + send_cmd(ServerName, "SVSMODE %s -b %s", ci->name, nick); +} + +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + +int anope_event_nick(char *source, int ac, char **av) +{ + User *user; + + if (ac != 2) { + user = do_nick(source, av[0], av[4], av[5], av[6], av[9], + strtoul(av[2], NULL, 10), strtoul(av[7], NULL, 0), + strtoul(av[8], NULL, 0), "*", NULL); + if (user) + anope_set_umode(user, 1, &av[3]); + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +int anope_event_vhost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: VHOST for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_host(u, av[1]); + return MOD_CONT; +} + +/* +** SNICK +** source = NULL +** parv[0] = nickname Trystan +** parv[1] = timestamp 1090113640 +** parv[2] = hops 1 +** parv[3] = username Trystan +** parv[4] = host c-24-2-101-227.client.comcast.net +** parv[5] = IP 402810339 +** parv[6] = vhost mynet-27CCA80D.client.comcast.net +** parv[7] = server rage2.nomadirc.net +** parv[8] = servicestamp 0 +** parv[9] = modes +ix +** parv[10] = info Dreams are answers to questions not yet asked +*/ + +int anope_event_snick(char *source, int ac, char **av) +{ + User *user; + + if (ac != 2) { + user = do_nick(source, av[0], av[3], av[4], av[7], av[10], + strtoul(av[1], NULL, 10), strtoul(av[8], NULL, 0), + strtoul(av[5], NULL, 0), av[6], NULL); + if (user) { + anope_set_umode(user, 1, &av[9]); + } + } + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + updateProtectDetails("ADMIN","ADMINME","!admin","!deadmin","AUTOADMIN","+a","-a"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("482", anope_event_482); addCoreMessage(IRCD,m); + m = createMessage("461", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GLOBOPS", anope_event_globops); addCoreMessage(IRCD,m); + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SQLINE", anope_event_sqline); addCoreMessage(IRCD,m); + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("CS", anope_event_cs); addCoreMessage(IRCD,m); + m = createMessage("HS", anope_event_hs); addCoreMessage(IRCD,m); + m = createMessage("MS", anope_event_ms); addCoreMessage(IRCD,m); + m = createMessage("NS", anope_event_ns); addCoreMessage(IRCD,m); + m = createMessage("OS", anope_event_os); addCoreMessage(IRCD,m); + m = createMessage("RS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SGLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("SS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m); + m = createMessage("SZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSGLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SNICK", anope_event_snick); addCoreMessage(IRCD,m); + m = createMessage("VHOST", anope_event_vhost); addCoreMessage(IRCD,m); + m = createMessage("MYID", anope_event_myid); addCoreMessage(IRCD,m); + m = createMessage("GNOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + m = createMessage("BURST", anope_event_burst); addCoreMessage(IRCD,m); + m = createMessage("REHASH", anope_event_rehash); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("CREDITS", anope_event_credits); addCoreMessage(IRCD,m); +} + +/* *INDENT-ON* */ + +int anope_event_error(char *source, int ac, char **av) +{ + if (ac >= 1) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + + +int anope_event_burst(char *source, int ac, char **av) +{ + Server *s; + s = findserver(servlist, source); + if (ac > 1) { + /* for future use - start burst */ + } else { + /* If we found a server with the given source, that one just + * finished bursting. If there was no source, then our uplink + * server finished bursting. -GD + */ + if (!s && serv_uplink) + s = serv_uplink; + finish_sync(s, 1); + } + return MOD_CONT; +} + +void rageircd_cmd_sqline(char *mask, char *reason) +{ + if (!mask || !reason) { + return; + } + + send_cmd(NULL, "SQLINE %s :%s", mask, reason); +} + +void rageircd_cmd_unsgline(char *mask) +{ + send_cmd(NULL, "UNSGLINE 0 :%s", mask); +} + +void rageircd_cmd_unszline(char *mask) +{ + send_cmd(NULL, "UNSZLINE 0 %s", mask); +} + +void rageircd_cmd_szline(char *mask, char *reason, char *whom) +{ + send_cmd(NULL, "SZLINE %s :%s", mask, reason); +} + +void rageircd_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "SVSNOOP %s %s", server, (set ? "+" : "-")); +} + +void rageircd_cmd_svsadmin(char *server, int set) +{ + rageircd_cmd_svsnoop(server, set); +} + +void rageircd_cmd_sgline(char *mask, char *reason) +{ + send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason); + +} + +void rageircd_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, "RAKILL %s %s", host, user); +} + + +/* PART */ +void rageircd_cmd_part(char *nick, char *chan, char *buf) +{ + if (!nick || !chan) { + return; + } + + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + +void rageircd_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "TOPIC %s %s %lu :%s", chan, whosetit, + (unsigned long int) when, topic); +} + +void rageircd_cmd_vhost_off(User * u) +{ + send_cmd(s_HostServ, "SVSMODE %s -x", u->nick); + notice_lang(s_HostServ, u, HOST_OFF_UNREAL, u->nick, ircd->vhostchar); +} + +void rageircd_cmd_chghost(char *nick, char *vhost) +{ + if (!nick || !vhost) { + return; + } + send_cmd(ServerName, "VHOST %s %s", nick, vhost); +} + +void rageircd_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + send_cmd(s_HostServ, "SVSMODE %s +x", nick); + rageircd_cmd_chghost(nick, vhost); +} + +void rageircd_cmd_unsqline(char *user) +{ + send_cmd(NULL, "UNSQLINE %s", user); +} + +void rageircd_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(user, "SJOIN %ld %s", (long int) chantime, channel); +} + +void rageircd_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(NULL, "AKILL %s %s %d %s %ld :%s", host, user, 86400 * 2, who, + (long int) time(NULL), reason); +} + +void rageircd_cmd_svskill(char *source, char *user, char *buf) +{ + if (!buf) { + return; + } + + if (!source || !user) { + return; + } + + send_cmd(source, "SVSKILL %s :%s", user, buf); +} + +void rageircd_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(ServerName, "SVSMODE %s %ld %s%s%s", u->nick, + (long int) u->timestamp, av[0], (ac == 2 ? " " : ""), + (ac == 2 ? av[1] : "")); +} + +void rageircd_cmd_squit(char *servname, char *message) +{ + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +/* PONG */ +void rageircd_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +void rageircd_cmd_svinfo() +{ + send_cmd(NULL, "SVINFO 5 3 0 %ld bluemoon 0", (long int) time(NULL)); +} + +void rageircd_cmd_capab() +{ + /* CAPAB BURST UNCONNECT ZIP SSJ3 SN2 VHOST SUID TOK1 TSMODE */ + send_cmd(NULL, "CAPAB BURST UNCONNECT SSJ3 SN2 VHOST TSMODE"); +} + +void rageircd_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, ServerDesc); +} + +/* PASS */ +void rageircd_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS %s :TS", pass); +} + +void rageircd_cmd_burst() +{ + send_cmd(NULL, "BURST"); +} + +void rageircd_cmd_connect(int servernum) +{ + if (Numeric) { + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, Numeric); + } else { + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + } + + if (servernum == 1) + rageircd_cmd_pass(RemotePassword); + else if (servernum == 2) + rageircd_cmd_pass(RemotePassword2); + else if (servernum == 3) + rageircd_cmd_pass(RemotePassword3); + rageircd_cmd_capab(); + if (Numeric) { + send_cmd(NULL, "MYID !%s", Numeric); + } + rageircd_cmd_server(ServerName, 1, ServerDesc); + rageircd_cmd_svinfo(); + rageircd_cmd_burst(); +} + +void rageircd_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'd': + if (ac == 0) { + alog("user: umode +d with no parameter (?) for user %s", + user->nick); + break; + } + + ac--; + av++; + user->svid = strtoul(*av, NULL, 0); + break; + case 'o': + if (add) { + opcnt++; + + if (WallOper) + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + display_news(user, NEWS_OPER); + if (is_services_oper(user)) { + common_svsmode(user, "+a", NULL); + user->mode |= UMODE_a; + } + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + case 'x': + update_host(user); + break; + } + } +} + +/* GLOBOPS */ +void rageircd_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "GLOBOPS :%s", buf); +} + +void rageircd_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + + +void rageircd_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + rageircd_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void rageircd_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void rageircd_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void rageircd_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void rageircd_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $%s :%s", dest, msg); +} + +void rageircd_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $%s :%s", dest, msg); +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + rageircd_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +void rageircd_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +void rageircd_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (ircdcap->tsmode) { + if (uplink_capab & ircdcap->tsmode || UseTSMODE) { + send_cmd(source, "MODE %s 0 %s", dest, buf); + } else { + send_cmd(source, "MODE %s %s", dest, buf); + } + } else { + send_cmd(source, "MODE %s %s", dest, buf); + } +} + + +void rageircd_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +void rageircd_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void rageircd_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void rageircd_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void rageircd_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +/* INVITE */ +void rageircd_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +/* 391 */ +void rageircd_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void rageircd_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void rageircd_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void rageircd_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void rageircd_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void rageircd_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void rageircd_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void rageircd_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void rageircd_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void rageircd_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void rageircd_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void rageircd_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +void rageircd_cmd_nick(char *nick, char *name, char *modes) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "SNICK %s %ld 1 %s %s 0 * %s 0 %s :%s", nick, + (long int) time(NULL), ServiceUser, ServiceHost, ServerName, + modes, name); + rageircd_cmd_sqline(nick, "Reserved for services"); +} + +/* EVENT : OS */ +int anope_event_os(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_OperServ, av[0]); + return MOD_CONT; +} + +/* EVENT : NS */ +int anope_event_ns(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_NickServ, av[0]); + return MOD_CONT; +} + +/* EVENT : MS */ +int anope_event_ms(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_MemoServ, av[0]); + return MOD_CONT; +} + +/* EVENT : HS */ +int anope_event_hs(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_HostServ, av[0]); + return MOD_CONT; +} + +/* EVENT : CS */ +int anope_event_cs(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_ChanServ, av[0]); + return MOD_CONT; +} + +/* QUIT */ +void rageircd_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +void rageircd_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "SNICK %s %ld 1 %s %s 0 * %s 0 %s :%s", nick, + (long int) time(NULL), user, host, ServerName, modes, real); + rageircd_cmd_sqline(nick, "Reserved for services"); +} + +/* SVSMODE -b */ +void rageircd_cmd_unban(char *name, char *nick) +{ + rageircd_cmd_svsmode_chan(name, "-b", nick); +} + + +/* SVSMODE channel modes */ + +void rageircd_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + if (nick) { + send_cmd(ServerName, "SVSMODE %s %s %s", name, mode, nick); + } else { + send_cmd(ServerName, "SVSMODE %s %s", name, mode); + } +} + +void rageircd_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s", ircd->botchanumode, nick); +} + +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + do_server(source, av[0], av[1], av[2], NULL); + return MOD_CONT; +} + + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + + +int anope_event_482(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac != 4) + return MOD_CONT; + do_topic(source, ac, av); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + + +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +/* SVSHOLD - set */ +void rageircd_cmd_svshold(char *nick) +{ + send_cmd(ServerName, "SVSHOLD %s %d :%s", nick, NSReleaseTimeout, + "Being held for registered user"); +} + +/* SVSHOLD - release */ +void rageircd_cmd_release_svshold(char *nick) +{ + send_cmd(ServerName, "SVSHOLD %s 0", nick); +} + +void rageircd_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "SVSNICK %s %s :%ld", source, guest, (long int) when); +} + +void rageircd_cmd_guest_nick(char *nick, char *user, char *host, + char *real, char *modes) +{ + send_cmd(NULL, "SNICK %s %ld 1 %s %s 0 * %s 0 %s :%s", nick, + (long int) time(NULL), user, host, ServerName, modes, real); +} + + +void rageircd_cmd_svso(char *source, char *nick, char *flag) +{ + /* Not Supported by this IRCD */ +} + + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void rageircd_cmd_svid_umode(char *nick, time_t ts) +{ + send_cmd(ServerName, "SVSMODE %s %lu +d 1", nick, + (unsigned long int) ts); +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void rageircd_cmd_nc_change(User * u) +{ + common_svsmode(u, "+d", "1"); +} + +/* SVSMODE +d */ +void rageircd_cmd_svid_umode2(User * u, char *ts) +{ + /* not used by bahamut ircds */ +} + +void rageircd_cmd_svid_umode3(User * u, char *ts) +{ + if (u->svid != u->timestamp) { + common_svsmode(u, "+rd", ts); + } else { + common_svsmode(u, "+r", NULL); + } +} + +/* NICK <newnick> */ +void rageircd_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +int anope_event_myid(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +/* + * SVINFO + * parv[0] = sender prefix + * + * if (parc == 2) + * parv[1] = ZIP (compression initialisation) + * + * if (parc > 2) + * parv[1] = TS_CURRENT + * parv[2] = TS_MIN + * parv[3] = standalone or connected to non-TS (unused) + * parv[4] = UTC time + * parv[5] = ircd codename + * parv[6] = masking keys + */ +int anope_event_svinfo(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_gnotice(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_notice(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_sqline(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +void rageircd_cmd_svsjoin(char *source, char *nick, char *chan) +{ + /* Find no reference to it in the code and docs */ +} + +void rageircd_cmd_svspart(char *source, char *nick, char *chan) +{ + /* Find no reference to it in the code and docs */ +} + +void rageircd_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_credits(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_globops(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int rageircd_flood_mode_check(char *value) +{ + return 0; +} + +void rageircd_cmd_eob() +{ + send_cmd(NULL, "BURST 0"); +} + +void rageircd_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + rageircd_cmd_squit(jserver, rbuf); + rageircd_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* GLOBOPS - to handle old WALLOPS */ +void rageircd_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "GLOBOPS :%s", fmt); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int rageircd_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void rageircd_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(rageircd_cmd_svsnoop); + pmodule_cmd_remove_akill(rageircd_cmd_remove_akill); + pmodule_cmd_topic(rageircd_cmd_topic); + pmodule_cmd_vhost_off(rageircd_cmd_vhost_off); + pmodule_cmd_akill(rageircd_cmd_akill); + pmodule_cmd_svskill(rageircd_cmd_svskill); + pmodule_cmd_svsmode(rageircd_cmd_svsmode); + pmodule_cmd_372(rageircd_cmd_372); + pmodule_cmd_372_error(rageircd_cmd_372_error); + pmodule_cmd_375(rageircd_cmd_375); + pmodule_cmd_376(rageircd_cmd_376); + pmodule_cmd_nick(rageircd_cmd_nick); + pmodule_cmd_guest_nick(rageircd_cmd_guest_nick); + pmodule_cmd_mode(rageircd_cmd_mode); + pmodule_cmd_bot_nick(rageircd_cmd_bot_nick); + pmodule_cmd_kick(rageircd_cmd_kick); + pmodule_cmd_notice_ops(rageircd_cmd_notice_ops); + pmodule_cmd_notice(rageircd_cmd_notice); + pmodule_cmd_notice2(rageircd_cmd_notice2); + pmodule_cmd_privmsg(rageircd_cmd_privmsg); + pmodule_cmd_privmsg2(rageircd_cmd_privmsg2); + pmodule_cmd_serv_notice(rageircd_cmd_serv_notice); + pmodule_cmd_serv_privmsg(rageircd_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(rageircd_cmd_bot_chan_mode); + pmodule_cmd_351(rageircd_cmd_351); + pmodule_cmd_quit(rageircd_cmd_quit); + pmodule_cmd_pong(rageircd_cmd_pong); + pmodule_cmd_join(rageircd_cmd_join); + pmodule_cmd_unsqline(rageircd_cmd_unsqline); + pmodule_cmd_invite(rageircd_cmd_invite); + pmodule_cmd_part(rageircd_cmd_part); + pmodule_cmd_391(rageircd_cmd_391); + pmodule_cmd_250(rageircd_cmd_250); + pmodule_cmd_307(rageircd_cmd_307); + pmodule_cmd_311(rageircd_cmd_311); + pmodule_cmd_312(rageircd_cmd_312); + pmodule_cmd_317(rageircd_cmd_317); + pmodule_cmd_219(rageircd_cmd_219); + pmodule_cmd_401(rageircd_cmd_401); + pmodule_cmd_318(rageircd_cmd_318); + pmodule_cmd_242(rageircd_cmd_242); + pmodule_cmd_243(rageircd_cmd_243); + pmodule_cmd_211(rageircd_cmd_211); + pmodule_cmd_global(rageircd_cmd_global); + pmodule_cmd_global_legacy(rageircd_cmd_global_legacy); + pmodule_cmd_sqline(rageircd_cmd_sqline); + pmodule_cmd_squit(rageircd_cmd_squit); + pmodule_cmd_svso(rageircd_cmd_svso); + pmodule_cmd_chg_nick(rageircd_cmd_chg_nick); + pmodule_cmd_svsnick(rageircd_cmd_svsnick); + pmodule_cmd_vhost_on(rageircd_cmd_vhost_on); + pmodule_cmd_connect(rageircd_cmd_connect); + pmodule_cmd_svshold(rageircd_cmd_svshold); + pmodule_cmd_release_svshold(rageircd_cmd_release_svshold); + pmodule_cmd_unsgline(rageircd_cmd_unsqline); + pmodule_cmd_unszline(rageircd_cmd_unszline); + pmodule_cmd_szline(rageircd_cmd_szline); + pmodule_cmd_sgline(rageircd_cmd_sgline); + pmodule_cmd_unban(rageircd_cmd_unban); + pmodule_cmd_svsmode_chan(rageircd_cmd_svsmode_chan); + pmodule_cmd_svid_umode(rageircd_cmd_svid_umode); + pmodule_cmd_nc_change(rageircd_cmd_nc_change); + pmodule_cmd_svid_umode2(rageircd_cmd_svid_umode2); + pmodule_cmd_svid_umode3(rageircd_cmd_svid_umode3); + pmodule_cmd_eob(rageircd_cmd_eob); + pmodule_flood_mode_check(rageircd_flood_mode_check); + pmodule_cmd_jupe(rageircd_cmd_jupe); + pmodule_valid_nick(rageircd_valid_nick); + pmodule_cmd_ctcp(rageircd_cmd_ctcp); + pmodule_set_umode(rageircd_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("RageIRCd 2.0.x"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set(""); + pmodule_ircd_flood_mode_char_remove(""); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(1); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/rageircd.h b/src/protocol/rageircd.h new file mode 100644 index 000000000..4381950f2 --- /dev/null +++ b/src/protocol/rageircd.h @@ -0,0 +1,113 @@ +/* Rage IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#define UMODE_a 0x00000001 +#define UMODE_h 0x00000002 +#define UMODE_i 0x00000004 +#define UMODE_o 0x00000008 +#define UMODE_r 0x00000010 +#define UMODE_w 0x00000020 +#define UMODE_A 0x00000040 +#define UMODE_R 0x80000000 +#define UMODE_x 0x40000000 + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ +#define CMODE_c 0x00000400 /* Colors can't be used */ +#define CMODE_M 0x00000800 /* Non-regged nicks can't send messages */ +#define CMODE_N 0x00001000 +#define CMODE_S 0x00002000 +#define CMODE_C 0x00004000 +#define CMODE_A 0x00008000 +#define CMODE_O 0x00010000 /* Only opers can join */ + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void rageircd_set_umode(User * user, int ac, char **av); +void rageircd_cmd_svsnoop(char *server, int set); +void rageircd_cmd_remove_akill(char *user, char *host); +void rageircd_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void rageircd_cmd_vhost_off(User * u); +void rageircd_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void rageircd_cmd_svskill(char *source, char *user, char *buf); +void rageircd_cmd_svsmode(User * u, int ac, char **av); +void rageircd_cmd_372(char *source, char *msg); +void rageircd_cmd_372_error(char *source); +void rageircd_cmd_375(char *source); +void rageircd_cmd_376(char *source); +void rageircd_cmd_nick(char *nick, char *name, char *modes); +void rageircd_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void rageircd_cmd_mode(char *source, char *dest, char *buf); +void rageircd_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void rageircd_cmd_kick(char *source, char *chan, char *user, char *buf); +void rageircd_cmd_notice_ops(char *source, char *dest, char *buf); +void rageircd_cmd_notice(char *source, char *dest, char *buf); +void rageircd_cmd_notice2(char *source, char *dest, char *msg); +void rageircd_cmd_privmsg(char *source, char *dest, char *buf); +void rageircd_cmd_privmsg2(char *source, char *dest, char *msg); +void rageircd_cmd_serv_notice(char *source, char *dest, char *msg); +void rageircd_cmd_serv_privmsg(char *source, char *dest, char *msg); +void rageircd_cmd_bot_chan_mode(char *nick, char *chan); +void rageircd_cmd_351(char *source); +void rageircd_cmd_quit(char *source, char *buf); +void rageircd_cmd_pong(char *servname, char *who); +void rageircd_cmd_join(char *user, char *channel, time_t chantime); +void rageircd_cmd_unsqline(char *user); +void rageircd_cmd_invite(char *source, char *chan, char *nick); +void rageircd_cmd_part(char *nick, char *chan, char *buf); +void rageircd_cmd_391(char *source, char *timestr); +void rageircd_cmd_250(char *buf); +void rageircd_cmd_307(char *buf); +void rageircd_cmd_311(char *buf); +void rageircd_cmd_312(char *buf); +void rageircd_cmd_317(char *buf); +void rageircd_cmd_219(char *source, char *letter); +void rageircd_cmd_401(char *source, char *who); +void rageircd_cmd_318(char *source, char *who); +void rageircd_cmd_242(char *buf); +void rageircd_cmd_243(char *buf); +void rageircd_cmd_211(char *buf); +void rageircd_cmd_global(char *source, char *buf); +void rageircd_cmd_global_legacy(char *source, char *fmt); +void rageircd_cmd_sqline(char *mask, char *reason); +void rageircd_cmd_squit(char *servname, char *message); +void rageircd_cmd_svso(char *source, char *nick, char *flag); +void rageircd_cmd_chg_nick(char *oldnick, char *newnick); +void rageircd_cmd_svsnick(char *source, char *guest, time_t when); +void rageircd_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void rageircd_cmd_connect(int servernum); +void rageircd_cmd_svshold(char *nick); +void rageircd_cmd_release_svshold(char *nick); +void rageircd_cmd_unsgline(char *mask); +void rageircd_cmd_unszline(char *mask); +void rageircd_cmd_szline(char *mask, char *reason, char *whom); +void rageircd_cmd_sgline(char *mask, char *reason); +void rageircd_cmd_unban(char *name, char *nick); +void rageircd_cmd_svsmode_chan(char *name, char *mode, char *nick); +void rageircd_cmd_svid_umode(char *nick, time_t ts); +void rageircd_cmd_nc_change(User * u); +void rageircd_cmd_svid_umode2(User * u, char *ts); +void rageircd_cmd_svid_umode3(User * u, char *ts); +void rageircd_cmd_eob(); +int rageircd_flood_mode_check(char *value); +void rageircd_cmd_jupe(char *jserver, char *who, char *reason); +int rageircd_valid_nick(char *nick); +void rageircd_cmd_ctcp(char *source, char *dest, char *buf); diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c new file mode 100644 index 000000000..8059ae1fe --- /dev/null +++ b/src/protocol/ratbox.c @@ -0,0 +1,1808 @@ +/* Ratbox IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#include "services.h" +#include "pseudo.h" +#include "ratbox.h" + +int ts6nickcount = 0; + +IRCDVar myIrcd[] = { + {"Ratbox 2.0+", /* ircd name */ + "+oi", /* nickserv mode */ + "+oi", /* chanserv mode */ + "+oi", /* memoserv mode */ + "+oi", /* hostserv mode */ + "+oai", /* operserv mode */ + "+oi", /* botserv mode */ + "+oi", /* helpserv mode */ + "+oi", /* Dev/Null mode */ + "+oi", /* Global mode */ + "+oi", /* nickserv alias mode */ + "+oi", /* chanserv alias mode */ + "+oi", /* memoserv alias mode */ + "+oi", /* hostserv alias mode */ + "+oai", /* operserv alias mode */ + "+oi", /* botserv alias mode */ + "+oi", /* helpserv alias mode */ + "+oi", /* Dev/Null alias mode */ + "+oi", /* Global alias mode */ + "+oi", /* Used by BotServ Bots */ + 2, /* Chan Max Symbols */ + "-acilmnpst", /* Modes to Remove */ + "+o", /* Channel Umode used by Botserv bots */ + 0, /* SVSNICK */ + 0, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + NULL, /* Mode to set for chan admin */ + NULL, /* Mode to unset for chan admin */ + NULL, /* Mode On Reg */ + NULL, /* Mode on UnReg */ + NULL, /* Mode on Nick Change */ + 0, /* Supports SGlines */ + 1, /* Supports SQlines */ + 0, /* Supports SZlines */ + 0, /* Supports Halfop +h */ + 3, /* Number of server args */ + 1, /* Join 2 Set */ + 1, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + 0, /* Protected Umode */ + 0, /* Has Admin */ + 1, /* Chan SQlines */ + 0, /* Quit on Kill */ + 0, /* SVSMODE unban */ + 0, /* Has Protect */ + 0, /* Reverse */ + 0, /* Chan Reg */ + 0, /* Channel Mode */ + 0, /* vidents */ + 0, /* svshold */ + 0, /* time stamp on mode */ + 0, /* NICKIP */ + 0, /* UMODE */ + 0, /* O:LINE */ + 0, /* VHOST ON NICK */ + 0, /* Change RealName */ + CMODE_p, /* No Knock */ + 0, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + 0, /* Vhost Mode */ + 0, /* +f */ + 0, /* +L */ + 0, /* +f Mode */ + 0, /* +L Mode */ + 0, /* On nick change check if they could be identified */ + 0, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 1, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + NULL, /* vhost char */ + 1, /* ts6 */ + 0, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 0, /* reports sync state */ + } + , + {NULL} +}; + +IRCDCAPAB myIrcdcap[] = { + { + 0, /* NOQUIT */ + 0, /* TSMODE */ + 0, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + CAPAB_ZIP, /* ZIP */ + 0, /* BURST */ + CAPAB_TS5, /* TS5 */ + 0, /* TS3 */ + 0, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + CAPAB_QS, /* QS */ + CAPAB_UID, /* UID */ + CAPAB_KNOCK, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + 0, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + 0, 0, 0} +}; + +void ratbox_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'o': + if (add) { + opcnt++; + + if (WallOper) + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + display_news(user, NEWS_OPER); + + } else { + opcnt--; + } + break; + } + } +} + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + 0, 0, 0, /* A B C */ + 0, 0, 0, /* D E F */ + 0, 0, 0, /* G H I */ + 0, 0, 0, /* J K L */ + 0, 0, 0, /* M N O */ + 0, 0, 0, /* P Q R */ + 0, 0, 0, /* S T U */ + 0, 0, 0, /* V W X */ + 0, /* Y */ + 0, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, UMODE_b, 0, /* a b c */ + UMODE_d, 0, 0, /* d e f */ + 0, 0, UMODE_i, /* g h i */ + 0, 0, UMODE_l, /* j k l */ + UMODE_g, UMODE_n, UMODE_o, /* m n o */ + 0, 0, 0, /* p q r */ + 0, 0, UMODE_u, /* s t u */ + 0, UMODE_w, UMODE_x, /* v w x */ + 0, /* y */ + 0, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 0, + 0, 0, 0, 0, + 0, + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, /* BCD */ + {NULL}, {NULL}, {NULL}, /* EFG */ + {NULL}, /* H */ + {add_invite, del_invite}, + {NULL}, /* J */ + {NULL}, {NULL}, {NULL}, /* KLM */ + {NULL}, {NULL}, {NULL}, /* NOP */ + {NULL}, {NULL}, {NULL}, /* QRS */ + {NULL}, {NULL}, {NULL}, /* TUV */ + {NULL}, {NULL}, {NULL}, /* WXY */ + {NULL}, /* Z */ + {NULL}, {NULL}, /* (char 91 - 92) */ + {NULL}, {NULL}, {NULL}, /* (char 93 - 95) */ + {NULL}, /* ` (char 96) */ + {NULL}, /* a (char 97) */ + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {0}, /* A */ + {0}, /* B */ + {0}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {0}, /* K */ + {0}, /* L */ + {0}, /* M */ + {0}, /* N */ + {0}, /* O */ + {0}, /* P */ + {0}, /* Q */ + {0}, /* R */ + {0}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {0}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {0}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {0} +}; + + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + + +void ratbox_cmd_notice(char *source, char *dest, char *buf) +{ + Uid *ud; + User *u; + + if (!buf) { + return; + } + + if (UsePrivmsg) { + ratbox_cmd_privmsg2(source, dest, buf); + } else { + ud = find_uid(source); + u = finduser(dest); + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), + "NOTICE %s :%s", (UseTS6 ? (u ? u->uid : dest) : dest), + buf); + } +} + +void ratbox_cmd_notice2(char *source, char *dest, char *msg) +{ + Uid *ud; + User *u; + + ud = find_uid(source); + u = finduser(dest); + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), "NOTICE %s :%s", + (UseTS6 ? (u ? u->uid : dest) : dest), msg); +} + +void ratbox_cmd_privmsg(char *source, char *dest, char *buf) +{ + Uid *ud, *ud2; + + if (!buf) { + return; + } + ud = find_uid(source); + ud2 = find_uid(dest); + + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), "PRIVMSG %s :%s", + (UseTS6 ? (ud2 ? ud2->uid : dest) : dest), buf); +} + +void ratbox_cmd_privmsg2(char *source, char *dest, char *msg) +{ + Uid *ud, *ud2; + + ud = find_uid(source); + ud2 = find_uid(dest); + + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), "PRIVMSG %s :%s", + (UseTS6 ? (ud2 ? ud2->uid : dest) : dest), msg); +} + +void ratbox_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $$%s :%s", dest, msg); +} + +void ratbox_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $$%s :%s", dest, msg); +} + + +void ratbox_cmd_global(char *source, char *buf) +{ + Uid *u; + + if (!buf) { + return; + } + + if (source) { + u = find_uid(source); + if (u) { + send_cmd((UseTS6 ? u->uid : source), "OPERWALL :%s", buf); + } else { + send_cmd((UseTS6 ? TS6SID : ServerName), "OPERWALL :%s", buf); + } + } else { + send_cmd((UseTS6 ? TS6SID : ServerName), "OPERWALL :%s", buf); + } +} + +/* GLOBOPS - to handle old WALLOPS */ +void ratbox_cmd_global_legacy(char *source, char *fmt) +{ + Uid *u; + + if (source) { + u = find_uid(source); + if (u) { + send_cmd((UseTS6 ? u->uid : source), "OPERWALL :%s", fmt); + } else { + send_cmd((UseTS6 ? TS6SID : ServerName), "OPERWALL :%s", fmt); + } + } else { + send_cmd((UseTS6 ? TS6SID : ServerName), "OPERWALL :%s", fmt); + } + + send_cmd(source ? source : ServerName, "OPERWALL :%s", fmt); +} + +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + +/* + Non TS6 + + av[0] = nick + av[1] = hop + av[2] = ts + av[3] = modes + av[4] = user + av[5] = host + av[6] = server + av[7] = info + + TS6 + av[0] = nick + av[1] = hop + av[2] = ts + av[3] = modes + av[4] = user + av[5] = host + av[6] = IP + av[7] = UID + av[8] = info + +*/ +int anope_event_nick(char *source, int ac, char **av) +{ + Server *s; + User *user; + + if (UseTS6 && ac == 9) { + s = findserver_uid(servlist, source); + /* Source is always the server */ + *source = '\0'; + user = do_nick(source, av[0], av[4], av[5], s->name, av[8], + strtoul(av[2], NULL, 10), 0, 0, "*", av[7]); + if (user) { + anope_set_umode(user, 1, &av[3]); + } + } else { + if (ac != 2) { + user = do_nick(source, av[0], av[4], av[5], av[6], av[7], + strtoul(av[2], NULL, 10), 0, 0, "*", NULL); + if (user) + anope_set_umode(user, 1, &av[3]); + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + } + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + User *u; + + if (ac == 4) { + do_topic(source, ac, av); + } else { + Channel *c = findchan(av[0]); + time_t topic_time = time(NULL); + + if (!c) { + if (debug) { + alog("channel: TOPIC %s for nonexistent channel %s", + merge_args(ac - 1, av + 1), av[0]); + } + return MOD_CONT; + } + + if (check_topiclock(c, topic_time)) + return MOD_CONT; + + if (c->topic) { + free(c->topic); + c->topic = NULL; + } + if (ac > 1 && *av[1]) + c->topic = sstrdup(av[1]); + + if (UseTS6) { + u = find_byuid(source); + if (u) { + strscpy(c->topic_setter, u->nick, sizeof(c->topic_setter)); + } else { + strscpy(c->topic_setter, source, sizeof(c->topic_setter)); + } + } else { + strscpy(c->topic_setter, source, sizeof(c->topic_setter)); + } + c->topic_time = topic_time; + + record_topic(av[0]); + } + return MOD_CONT; +} + +int anope_event_tburst(char *source, int ac, char **av) +{ + char *setter; + Channel *c; + time_t topic_time; + + if (ac != 4) { + return MOD_CONT; + } + + setter = myStrGetToken(av[2], '!', 0); + + c = findchan(av[0]); + topic_time = strtol(av[1], NULL, 10); + + if (!c) { + if (debug) { + alog("channel: TOPIC %s for nonexistent channel %s", + merge_args(ac - 1, av + 1), av[0]); + } + return MOD_CONT; + } + + if (check_topiclock(c, topic_time)) + return MOD_CONT; + + if (c->topic) { + free(c->topic); + c->topic = NULL; + } + if (ac > 1 && *av[3]) + c->topic = sstrdup(av[3]); + + strscpy(c->topic_setter, setter, sizeof(c->topic_setter)); + c->topic_time = topic_time; + + record_topic(av[0]); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) +{ + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+","-"); + + if (UseTS6) { + TS6SID = sstrdup(Numeric); + UseTSMODE = 1; /* TMODE */ + } + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_invite); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("TMODE", anope_event_tmode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("BMASK", anope_event_bmask); addCoreMessage(IRCD,m); + m = createMessage("UID", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("TB", anope_event_tburst); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + m = createMessage("421", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("ENCAP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SID", anope_event_sid); addCoreMessage(IRCD,m); +} + +/* *INDENT-ON* */ + + +void ratbox_cmd_sqline(char *mask, char *reason) +{ + send_cmd(NULL, "RESV * %s :%s", mask, reason); +} + +void ratbox_cmd_unsgline(char *mask) +{ + /* Does not support */ +} + +void ratbox_cmd_unszline(char *mask) +{ + /* Does not support */ +} + +void ratbox_cmd_szline(char *mask, char *reason, char *whom) +{ + /* Does not support */ +} + +void ratbox_cmd_svsnoop(char *server, int set) +{ + /* does not support */ +} + +void ratbox_cmd_svsadmin(char *server, int set) +{ + ratbox_cmd_svsnoop(server, set); +} + +void ratbox_cmd_sgline(char *mask, char *reason) +{ + /* does not support */ +} + +void ratbox_cmd_remove_akill(char *user, char *host) +{ + Uid *ud; + + ud = find_uid(s_OperServ); + send_cmd((UseTS6 ? (ud ? ud->uid : s_OperServ) : s_OperServ), + "UNKLINE * %s %s", user, host); +} + +void ratbox_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + Uid *ud; + + ud = find_uid(whosets); + send_cmd((UseTS6 ? (ud ? ud->uid : whosets) : whosets), "TOPIC %s :%s", + chan, topic); +} + +void ratbox_cmd_vhost_off(User * u) +{ + /* not supported */ +} + +void ratbox_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + /* not supported */ +} + +void ratbox_cmd_unsqline(char *user) +{ + send_cmd(NULL, "UNRESV * %s", user); +} + +void ratbox_cmd_join(char *user, char *channel, time_t chantime) +{ + Uid *ud; + + ud = find_uid(user); + send_cmd(NULL, "SJOIN %ld %s + :%s", (long int) time(NULL), + channel, (UseTS6 ? (ud ? ud->uid : user) : user)); +} + +/* +oper: the nick of the oper performing the kline +target.server: the server(s) this kline is destined for +duration: the duration if a tkline, 0 if permanent. +user: the 'user' portion of the kline +host: the 'host' portion of the kline +reason: the reason for the kline. +*/ + +void ratbox_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + Uid *ud; + + ud = find_uid(s_OperServ); + + send_cmd((UseTS6 ? (ud ? ud->uid : s_OperServ) : s_OperServ), + "KLINE * %ld %s %s :%s", + (long int) (expires - (long) time(NULL)), user, host, reason); +} + +void ratbox_cmd_svskill(char *source, char *user, char *buf) +{ + Uid *ud, *ud2; + + if (!buf) { + return; + } + + if (!source || !user) { + return; + } + + ud = find_uid(source); + ud2 = find_uid(user); + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), "KILL %s :%s", + (UseTS6 ? (ud2 ? ud2->uid : user) : user), buf); +} + +void ratbox_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd((UseTS6 ? TS6SID : ServerName), "SVSMODE %s %s", u->nick, + av[0]); +} + +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +void ratbox_cmd_svinfo() +{ + send_cmd(NULL, "SVINFO 6 3 0 :%ld", (long int) time(NULL)); +} + +void ratbox_cmd_svsinfo() +{ + +} + +/* CAPAB */ +/* + QS - Can handle quit storm removal + EX - Can do channel +e exemptions + CHW - Can do channel wall @# + LL - Can do lazy links + IE - Can do invite exceptions + EOB - Can do EOB message + KLN - Can do KLINE message + GLN - Can do GLINE message + HUB - This server is a HUB + UID - Can do UIDs + ZIP - Can do ZIPlinks + ENC - Can do ENCrypted links + KNOCK - supports KNOCK + TBURST - supports TBURST + PARA - supports invite broadcasting for +p + ENCAP - ? +*/ +void ratbox_cmd_capab() +{ + send_cmd(NULL, + "CAPAB :QS EX CHW IE KLN GLN KNOCK TB UNKLN CLUSTER ENCAP"); +} + +/* PASS */ +void ratbox_cmd_pass(char *pass) +{ + if (UseTS6) { + send_cmd(NULL, "PASS %s TS 6 :%s", pass, TS6SID); + } else { + send_cmd(NULL, "PASS %s :TS", pass); + } +} + +/* SERVER name hop descript */ +void ratbox_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript); +} + +void ratbox_cmd_connect(int servernum) +{ + /* Make myself known to myself in the serverlist */ + if (UseTS6) { + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, TS6SID); + } else { + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + } + if (servernum == 1) + ratbox_cmd_pass(RemotePassword); + else if (servernum == 2) + ratbox_cmd_pass(RemotePassword2); + else if (servernum == 3) + ratbox_cmd_pass(RemotePassword3); + + ratbox_cmd_capab(); + ratbox_cmd_server(ServerName, 1, ServerDesc); + ratbox_cmd_svinfo(); +} + +void ratbox_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + char nicknumbuf[10]; + EnforceQlinedNick(nick, NULL); + if (UseTS6) { + snprintf(nicknumbuf, 10, "%sAAAAA%c", Numeric, + (ts6nickcount + 'A')); + send_cmd(TS6SID, "UID %s 1 %ld %s %s %s 0 %s :%s", nick, + (long int) time(NULL), modes, user, host, nicknumbuf, + real); + new_uid(nick, nicknumbuf); + ts6nickcount++; + } else { + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, + real); + } + ratbox_cmd_sqline(nick, "Reserved for services"); +} + +void ratbox_cmd_part(char *nick, char *chan, char *buf) +{ + Uid *ud; + + ud = find_uid(nick); + + if (buf) { + send_cmd((UseTS6 ? ud->uid : nick), "PART %s :%s", chan, buf); + } else { + send_cmd((UseTS6 ? ud->uid : nick), "PART %s", chan); + } +} + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + ratbox_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +int anope_event_away(char *source, int ac, char **av) +{ + User *u = NULL; + + if (ac) { + return MOD_CONT; + } + + if (UseTS6) { + u = find_byuid(source); + } + + m_away((UseTS6 ? (u ? u->nick : source) : source), av[0]); + return MOD_CONT; +} + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + +void ratbox_cmd_eob() +{ + /* doesn't support EOB */ +} + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) { + do_sjoin(source, ac, av); + return MOD_CONT; + } else { + do_join(source, ac, av); + } + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +int anope_event_privmsg(char *source, int ac, char **av) +{ + User *u; + Uid *ud; + + if (ac != 2) { + return MOD_CONT; + } + + u = find_byuid(source); + ud = find_nickuid(av[0]); + m_privmsg((UseTS6 ? (u ? u->nick : source) : source), + (UseTS6 ? (ud ? ud->nick : av[0]) : av[0]), av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + User *u; + + if (ac < 1 || ac > 2) { + return MOD_CONT; + } + + u = find_byuid(source); + do_part((UseTS6 ? (u ? u->nick : source) : source), ac, av); + + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + Uid *ud; + + if (source && ac >= 1) { + ud = find_nickuid(av[0]); + m_whois(source, (UseTS6 ? (ud ? ud->nick : av[0]) : av[0])); + } + return MOD_CONT; +} + +/* EVENT: SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + if (UseTS6 && TS6UPLINK) { + do_server(source, av[0], av[1], av[2], TS6UPLINK); + } else { + do_server(source, av[0], av[1], av[2], NULL); + } + } else { + do_server(source, av[0], av[1], av[2], NULL); + } + return MOD_CONT; +} + +int anope_event_sid(char *source, int ac, char **av) +{ + Server *s; + + /* :42X SID trystan.nomadirc.net 2 43X :ircd-ratbox test server */ + + s = findserver_uid(servlist, source); + + do_server(s->name, av[0], av[1], av[3], av[2]); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) { + return MOD_CONT; + } + + u = find_byuid(source); + + do_quit((UseTS6 ? (u ? u->nick : source) : source), ac, av); + return MOD_CONT; +} + +void ratbox_cmd_372(char *source, char *msg) +{ + send_cmd((UseTS6 ? TS6SID : ServerName), "372 %s :- %s", source, msg); +} + +void ratbox_cmd_372_error(char *source) +{ + send_cmd((UseTS6 ? TS6SID : ServerName), + "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void ratbox_cmd_375(char *source) +{ + send_cmd((UseTS6 ? TS6SID : ServerName), + "375 %s :- %s Message of the Day", source, ServerName); +} + +void ratbox_cmd_376(char *source) +{ + send_cmd((UseTS6 ? TS6SID : ServerName), + "376 %s :End of /MOTD command.", source); +} + +/* 391 */ +void ratbox_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void ratbox_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void ratbox_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd((UseTS6 ? TS6SID : ServerName), "307 %s ", buf); +} + +/* 311 */ +void ratbox_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd((UseTS6 ? TS6SID : ServerName), "311 %s ", buf); +} + +/* 312 */ +void ratbox_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd((UseTS6 ? TS6SID : ServerName), "312 %s ", buf); +} + +/* 317 */ +void ratbox_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd((UseTS6 ? TS6SID : ServerName), "317 %s ", buf); +} + +/* 219 */ +void ratbox_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void ratbox_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd((UseTS6 ? TS6SID : ServerName), "401 %s %s :No such service.", + source, who); +} + +/* 318 */ +void ratbox_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd((UseTS6 ? TS6SID : ServerName), + "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void ratbox_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void ratbox_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void ratbox_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +void ratbox_cmd_mode(char *source, char *dest, char *buf) +{ + Uid *ud; + if (!buf) { + return; + } + + if (source) { + ud = find_uid(source); + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), "MODE %s %s", + dest, buf); + } else { + send_cmd(source, "MODE %s %s", dest, buf); + } +} + +void ratbox_cmd_tmode(char *source, char *dest, const char *fmt, ...) +{ + va_list args; + char buf[BUFSIZE]; + *buf = '\0'; + + if (fmt) { + va_start(args, fmt); + vsnprintf(buf, BUFSIZE - 1, fmt, args); + va_end(args); + } + if (!buf) { + return; + } + + send_cmd(NULL, "MODE %s %s", dest, buf); +} + +void ratbox_cmd_nick(char *nick, char *name, char *mode) +{ + char nicknumbuf[10]; + EnforceQlinedNick(nick, NULL); + if (UseTS6) { + snprintf(nicknumbuf, 10, "%sAAAAA%c", Numeric, + (ts6nickcount + 'A')); + send_cmd(TS6SID, "UID %s 1 %ld %s %s %s 0 %s :%s", nick, + (long int) time(NULL), mode, ServiceUser, ServiceHost, + nicknumbuf, name); + new_uid(nick, nicknumbuf); + ts6nickcount++; + } else { + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s :%s", nick, + (long int) time(NULL), mode, ServiceUser, ServiceHost, + ServerName, name); + } + ratbox_cmd_sqline(nick, "Reserved for services"); +} + +void ratbox_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + Uid *ud; + User *u; + + ud = find_uid(source); + u = finduser(user); + + if (buf) { + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), + "KICK %s %s :%s", chan, + (UseTS6 ? (u ? u->uid : user) : user), buf); + } else { + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), "KICK %s %s", + chan, (UseTS6 ? (u ? u->uid : user) : user)); + } +} + +void ratbox_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + +void ratbox_cmd_bot_chan_mode(char *nick, char *chan) +{ + Uid *u; + + if (UseTS6) { + u = find_uid(nick); + ratbox_cmd_tmode(nick, chan, "%s %s", ircd->botchanumode, + (u ? u->uid : nick)); + } else { + anope_cmd_mode(nick, chan, "%s %s", ircd->botchanumode, nick); + } +} + +/* QUIT */ +void ratbox_cmd_quit(char *source, char *buf) +{ + Uid *ud; + ud = find_uid(source); + + if (buf) { + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), "QUIT :%s", + buf); + } else { + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), "QUIT"); + } +} + +/* PONG */ +void ratbox_cmd_pong(char *servname, char *who) +{ + if (UseTS6) { + send_cmd(TS6SID, "PONG %s", who); + } else { + send_cmd(servname, "PONG %s", who); + } +} + +/* INVITE */ +void ratbox_cmd_invite(char *source, char *chan, char *nick) +{ + Uid *ud; + User *u; + + if (!source || !chan || !nick) { + return; + } + + ud = find_uid(source); + u = finduser(nick); + + send_cmd((UseTS6 ? (ud ? ud->uid : source) : source), "INVITE %s %s", + (UseTS6 ? (u ? u->uid : nick) : nick), chan); +} + +/* SQUIT */ +void ratbox_cmd_squit(char *servname, char *message) +{ + if (!servname || !message) { + return; + } + + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +int anope_event_mode(char *source, int ac, char **av) +{ + User *u, *u2; + + if (ac < 2) { + return MOD_CONT; + } + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + if (UseTS6) { + u = find_byuid(source); + u2 = find_byuid(av[0]); + av[0] = u2->nick; + do_umode(u->nick, ac, av); + } else { + do_umode(source, ac, av); + } + } + return MOD_CONT; +} + +int anope_event_tmode(char *source, int ac, char **av) +{ + if (*av[1] == '#' || *av[1] == '&') { + do_cmode(source, ac, av); + } + return MOD_CONT; +} + +void ratbox_cmd_351(char *source) +{ + send_cmd((UseTS6 ? TS6SID : ServerName), + "351 %s Anope-%s %s :%s - %s -- %s", source, version_number, + ServerName, ircd->name, version_flags, version_build); +} + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +/* SVSHOLD - set */ +void ratbox_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void ratbox_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSNICK */ +void ratbox_cmd_svsnick(char *nick, char *newnick, time_t when) +{ + /* not supported */ +} + +void ratbox_cmd_guest_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + /* not supported */ +} + +void ratbox_cmd_svso(char *source, char *nick, char *flag) +{ + /* Not Supported by this IRCD */ +} + +void ratbox_cmd_unban(char *name, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE channel modes */ + +void ratbox_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void ratbox_cmd_svid_umode(char *nick, time_t ts) +{ + /* not supported */ +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void ratbox_cmd_nc_change(User * u) +{ + /* not supported */ +} + +/* SVSMODE +d */ +void ratbox_cmd_svid_umode2(User * u, char *ts) +{ + /* not supported */ +} + +void ratbox_cmd_svid_umode3(User * u, char *ts) +{ + /* not used */ +} + +/* NICK <newnick> */ +void ratbox_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +int anope_event_svinfo(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + if (UseTS6) { + TS6UPLINK = sstrdup(av[3]); + } + return MOD_CONT; +} + +void ratbox_cmd_svsjoin(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void ratbox_cmd_svspart(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void ratbox_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + +int anope_event_notice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_invite(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_bmask(char *source, int ac, char **av) +{ + Channel *c; + char *bans; + char *b; + int count, i; + + /* :42X BMASK 1106409026 #ircops b :*!*@*.aol.com */ + /* 0 1 2 3 */ + c = findchan(av[1]); + + if (c) { + bans = sstrdup(av[3]); + count = myNumToken(bans, ' '); + for (i = 0; i <= count - 1; i++) { + b = myStrGetToken(bans, ' ', i); + if (!stricmp(av[2], "b")) { + add_ban(c, b); + } + if (!stricmp(av[2], "e")) { + add_exception(c, b); + } + if (!stricmp(av[2], "I")) { + add_invite(c, b); + } + } + } + return MOD_CONT; +} + +int ratbox_flood_mode_check(char *value) +{ + return 0; +} + +int anope_event_error(char *source, int ac, char **av) +{ + if (ac >= 1) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + +void ratbox_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + ratbox_cmd_squit(jserver, rbuf); + ratbox_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int ratbox_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void ratbox_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(ratbox_cmd_svsnoop); + pmodule_cmd_remove_akill(ratbox_cmd_remove_akill); + pmodule_cmd_topic(ratbox_cmd_topic); + pmodule_cmd_vhost_off(ratbox_cmd_vhost_off); + pmodule_cmd_akill(ratbox_cmd_akill); + pmodule_cmd_svskill(ratbox_cmd_svskill); + pmodule_cmd_svsmode(ratbox_cmd_svsmode); + pmodule_cmd_372(ratbox_cmd_372); + pmodule_cmd_372_error(ratbox_cmd_372_error); + pmodule_cmd_375(ratbox_cmd_375); + pmodule_cmd_376(ratbox_cmd_376); + pmodule_cmd_nick(ratbox_cmd_nick); + pmodule_cmd_guest_nick(ratbox_cmd_guest_nick); + pmodule_cmd_mode(ratbox_cmd_mode); + pmodule_cmd_bot_nick(ratbox_cmd_bot_nick); + pmodule_cmd_kick(ratbox_cmd_kick); + pmodule_cmd_notice_ops(ratbox_cmd_notice_ops); + pmodule_cmd_notice(ratbox_cmd_notice); + pmodule_cmd_notice2(ratbox_cmd_notice2); + pmodule_cmd_privmsg(ratbox_cmd_privmsg); + pmodule_cmd_privmsg2(ratbox_cmd_privmsg2); + pmodule_cmd_serv_notice(ratbox_cmd_serv_notice); + pmodule_cmd_serv_privmsg(ratbox_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(ratbox_cmd_bot_chan_mode); + pmodule_cmd_351(ratbox_cmd_351); + pmodule_cmd_quit(ratbox_cmd_quit); + pmodule_cmd_pong(ratbox_cmd_pong); + pmodule_cmd_join(ratbox_cmd_join); + pmodule_cmd_unsqline(ratbox_cmd_unsqline); + pmodule_cmd_invite(ratbox_cmd_invite); + pmodule_cmd_part(ratbox_cmd_part); + pmodule_cmd_391(ratbox_cmd_391); + pmodule_cmd_250(ratbox_cmd_250); + pmodule_cmd_307(ratbox_cmd_307); + pmodule_cmd_311(ratbox_cmd_311); + pmodule_cmd_312(ratbox_cmd_312); + pmodule_cmd_317(ratbox_cmd_317); + pmodule_cmd_219(ratbox_cmd_219); + pmodule_cmd_401(ratbox_cmd_401); + pmodule_cmd_318(ratbox_cmd_318); + pmodule_cmd_242(ratbox_cmd_242); + pmodule_cmd_243(ratbox_cmd_243); + pmodule_cmd_211(ratbox_cmd_211); + pmodule_cmd_global(ratbox_cmd_global); + pmodule_cmd_global_legacy(ratbox_cmd_global_legacy); + pmodule_cmd_sqline(ratbox_cmd_sqline); + pmodule_cmd_squit(ratbox_cmd_squit); + pmodule_cmd_svso(ratbox_cmd_svso); + pmodule_cmd_chg_nick(ratbox_cmd_chg_nick); + pmodule_cmd_svsnick(ratbox_cmd_svsnick); + pmodule_cmd_vhost_on(ratbox_cmd_vhost_on); + pmodule_cmd_connect(ratbox_cmd_connect); + pmodule_cmd_svshold(ratbox_cmd_svshold); + pmodule_cmd_release_svshold(ratbox_cmd_release_svshold); + pmodule_cmd_unsgline(ratbox_cmd_unsqline); + pmodule_cmd_unszline(ratbox_cmd_unszline); + pmodule_cmd_szline(ratbox_cmd_szline); + pmodule_cmd_sgline(ratbox_cmd_sgline); + pmodule_cmd_unban(ratbox_cmd_unban); + pmodule_cmd_svsmode_chan(ratbox_cmd_svsmode_chan); + pmodule_cmd_svid_umode(ratbox_cmd_svid_umode); + pmodule_cmd_nc_change(ratbox_cmd_nc_change); + pmodule_cmd_svid_umode2(ratbox_cmd_svid_umode2); + pmodule_cmd_svid_umode3(ratbox_cmd_svid_umode3); + pmodule_cmd_eob(ratbox_cmd_eob); + pmodule_flood_mode_check(ratbox_flood_mode_check); + pmodule_cmd_jupe(ratbox_cmd_jupe); + pmodule_valid_nick(ratbox_valid_nick); + pmodule_cmd_ctcp(ratbox_cmd_ctcp); + pmodule_set_umode(ratbox_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("Ratbox IRCD 2.0+"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set(""); + pmodule_ircd_flood_mode_char_remove(""); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/ratbox.h b/src/protocol/ratbox.h new file mode 100644 index 000000000..b99e4437e --- /dev/null +++ b/src/protocol/ratbox.h @@ -0,0 +1,119 @@ +/* Ratbox IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#define UMODE_a 0x00000001 +#define UMODE_C 0x00000002 +#define UMODE_i 0x00000004 +#define UMODE_o 0x00000008 +#define UMODE_z 0x00000010 +#define UMODE_w 0x00000020 +#define UMODE_s 0x00000040 +#define UMODE_c 0x00000080 +#define UMODE_r 0x00000100 +#define UMODE_k 0x00000200 +#define UMODE_f 0x00000400 +#define UMODE_y 0x00000800 +#define UMODE_d 0x00001000 +#define UMODE_n 0x00002000 +#define UMODE_x 0x00004000 +#define UMODE_u 0x00008000 +#define UMODE_b 0x00010000 +#define UMODE_l 0x00020000 +#define UMODE_g 0x00040000 +#define UMODE_Z 0x00080000 + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 +#define CMODE_l 0x00000080 + + +#define DEFAULT_MLOCK CMODE_n | CMODE_t + + +void ratbox_set_umode(User * user, int ac, char **av); +void ratbox_cmd_svsnoop(char *server, int set); +void ratbox_cmd_remove_akill(char *user, char *host); +void ratbox_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void ratbox_cmd_vhost_off(User * u); +void ratbox_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void ratbox_cmd_svskill(char *source, char *user, char *buf); +void ratbox_cmd_svsmode(User * u, int ac, char **av); +void ratbox_cmd_372(char *source, char *msg); +void ratbox_cmd_372_error(char *source); +void ratbox_cmd_375(char *source); +void ratbox_cmd_376(char *source); +void ratbox_cmd_nick(char *nick, char *name, char *modes); +void ratbox_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void ratbox_cmd_mode(char *source, char *dest, char *buf); +void ratbox_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void ratbox_cmd_kick(char *source, char *chan, char *user, char *buf); +void ratbox_cmd_notice_ops(char *source, char *dest, char *buf); +void ratbox_cmd_notice(char *source, char *dest, char *buf); +void ratbox_cmd_notice2(char *source, char *dest, char *msg); +void ratbox_cmd_privmsg(char *source, char *dest, char *buf); +void ratbox_cmd_privmsg2(char *source, char *dest, char *msg); +void ratbox_cmd_serv_notice(char *source, char *dest, char *msg); +void ratbox_cmd_serv_privmsg(char *source, char *dest, char *msg); +void ratbox_cmd_bot_chan_mode(char *nick, char *chan); +void ratbox_cmd_351(char *source); +void ratbox_cmd_quit(char *source, char *buf); +void ratbox_cmd_pong(char *servname, char *who); +void ratbox_cmd_join(char *user, char *channel, time_t chantime); +void ratbox_cmd_unsqline(char *user); +void ratbox_cmd_invite(char *source, char *chan, char *nick); +void ratbox_cmd_part(char *nick, char *chan, char *buf); +void ratbox_cmd_391(char *source, char *timestr); +void ratbox_cmd_250(char *buf); +void ratbox_cmd_307(char *buf); +void ratbox_cmd_311(char *buf); +void ratbox_cmd_312(char *buf); +void ratbox_cmd_317(char *buf); +void ratbox_cmd_219(char *source, char *letter); +void ratbox_cmd_401(char *source, char *who); +void ratbox_cmd_318(char *source, char *who); +void ratbox_cmd_242(char *buf); +void ratbox_cmd_243(char *buf); +void ratbox_cmd_211(char *buf); +void ratbox_cmd_global(char *source, char *buf); +void ratbox_cmd_global_legacy(char *source, char *fmt); +void ratbox_cmd_sqline(char *mask, char *reason); +void ratbox_cmd_squit(char *servname, char *message); +void ratbox_cmd_svso(char *source, char *nick, char *flag); +void ratbox_cmd_chg_nick(char *oldnick, char *newnick); +void ratbox_cmd_svsnick(char *source, char *guest, time_t when); +void ratbox_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void ratbox_cmd_connect(int servernum); +void ratbox_cmd_svshold(char *nick); +void ratbox_cmd_release_svshold(char *nick); +void ratbox_cmd_unsgline(char *mask); +void ratbox_cmd_unszline(char *mask); +void ratbox_cmd_szline(char *mask, char *reason, char *whom); +void ratbox_cmd_sgline(char *mask, char *reason); +void ratbox_cmd_unban(char *name, char *nick); +void ratbox_cmd_svsmode_chan(char *name, char *mode, char *nick); +void ratbox_cmd_svid_umode(char *nick, time_t ts); +void ratbox_cmd_nc_change(User * u); +void ratbox_cmd_svid_umode2(User * u, char *ts); +void ratbox_cmd_svid_umode3(User * u, char *ts); +void ratbox_cmd_eob(); +int ratbox_flood_mode_check(char *value); +void ratbox_cmd_jupe(char *jserver, char *who, char *reason); +int ratbox_valid_nick(char *nick); +void ratbox_cmd_ctcp(char *source, char *dest, char *buf); + + diff --git a/src/protocol/shadowircd.c b/src/protocol/shadowircd.c new file mode 100644 index 000000000..6471e1dbe --- /dev/null +++ b/src/protocol/shadowircd.c @@ -0,0 +1,1799 @@ +/* ShadowIRCd functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * Provided by the ShadowIRCd development group. See + * http://www.shadowircd.net for details. + */ + +#include "services.h" +#include "pseudo.h" +#include "shadowircd.h" + +/* 6 slot array, 35 possible combinations per slot, exponential. */ +int ts6nickcount[6] = { 0, 0, 0, 0, 0, 0 }; + +IRCDVar myIrcd[] = { + {"ShadowIRCd 4.0+", /* ircd name */ + "+oiqSK", /* nickserv mode */ + "+oiqSK", /* chanserv mode */ + "+oiqSK", /* memoserv mode */ + "+oiqSK", /* hostserv mode */ + "+oiqSK", /* operserv mode */ + "+oiqSK", /* botserv mode */ + "+oiqSK", /* helpserv mode */ + "+oiqSK", /* Dev/Null mode */ + "+oiqSK", /* Global mode */ + "+oiqSK", /* nickserv alias mode */ + "+oiqSK", /* chanserv alias mode */ + "+oiqSK", /* memoserv alias mode */ + "+oiqSK", /* hostserv alias mode */ + "+oiqSK", /* operserv alias mode */ + "+oiqSK", /* botserv alias mode */ + "+oiqSK", /* helpserv alias mode */ + "+oiqSK", /* Dev/Null alias mode */ + "+oiqSK", /* Global alias mode */ + "+oiqSK", /* Used by BotServ Bots */ + 4, /* Chan Max Symbols */ + "-cimnprstvzAEFGKLNOPRSTV", /* Modes to Remove */ + "+o", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + "+a", /* Mode to set for channel admin */ + "-a", /* Mode to unset for channel admin */ + "+e", /* Mode On Reg */ + "-e", /* Mode on UnReg */ + "-e", /* Mode on Nick Change */ + 0, /* Supports SGlines */ + 1, /* Supports SQlines */ + 0, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 4, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + 0, /* Protected Umode */ + 1, /* Has Admin */ + 1, /* Chan SQlines */ + 1, /* Quit on Kill */ + 0, /* SVSMODE unban */ + 0, /* Has Protect */ + 0, /* Reverse */ + 1, /* Chan Reg */ + 1, /* Channel Mode */ + 1, /* vidents */ + 0, /* svshold */ + 0, /* time stamp on mode */ + 0, /* NICKIP */ + 1, /* UMODE */ + 0, /* O:LINE */ + 1, /* VHOST ON NICK */ + 1, /* Change RealName */ + CMODE_K, /* No Knock */ + CMODE_A, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_v, /* Vhost Mode */ + 0, /* +f */ + 0, /* +L */ + 0, /* +f Mode */ + 0, /* +L Mode */ + 1, /* On nick change check if they could be identified */ + 0, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 1, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + "v", /* vhost char */ + 1, /* ts6 */ + 0, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 1, /* reports sync state */ + } + , + {NULL} +}; + +/* ShadowIRCd does not use CAPAB */ +IRCDCAPAB myIrcdcap[] = { + { + 0, /* NOQUIT */ + 0, /* TSMODE */ + 0, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + 0, /* ZIP */ + 0, /* BURST */ + 0, /* TS5 */ + 0, /* TS3 */ + 0, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + 0, /* UID */ + 0, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + 0, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + 0, 0, 0} +}; + +void shadowircd_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'o': + if (add) { + opcnt++; + + if (WallOper) + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + display_news(user, NEWS_OPER); + + } else { + opcnt--; + } + break; + } + } +} + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + UMODE_A, 0, 0, /* A B C */ + 0, UMODE_E, 0, /* D E F */ + UMODE_G, 0, 0, /* G H I */ + 0, 0, 0, /* J K L */ + 0, 0, UMODE_O, /* M N O */ + 0, 0, UMODE_R, /* P Q R */ + 0, 0, 0, /* S T U */ + 0, 0, 0, /* V W X */ + 0, /* Y */ + 0, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, UMODE_b, 0, /* a b c */ + UMODE_d, UMODE_e, 0, /* d e f */ + 0, 0, UMODE_i, /* g h i */ + 0, 0, UMODE_l, /* j k l */ + UMODE_g, UMODE_n, UMODE_o, /* m n o */ + 0, 0, 0, /* p q r */ + 0, 0, UMODE_u, /* s t u */ + UMODE_v, UMODE_w, UMODE_x, /* v w x */ + 0, /* y */ + 0, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 'a', + 0, 0, 0, + 'h', + 0, 0, 0, 0, + 0, + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, /* BCD */ + {NULL}, {NULL}, {NULL}, /* EFG */ + {NULL}, /* H */ + {add_invite, del_invite}, + {NULL}, /* J */ + {NULL}, {NULL}, {NULL}, /* KLM */ + {NULL}, {NULL}, {NULL}, /* NOP */ + {NULL}, {NULL}, {NULL}, /* QRS */ + {NULL}, {NULL}, {NULL}, /* TUV */ + {NULL}, {NULL}, {NULL}, /* WXY */ + {NULL}, /* Z */ + {NULL}, {NULL}, /* (char 91 - 92) */ + {NULL}, {NULL}, {NULL}, /* (char 93 - 95) */ + {NULL}, /* ` (char 96) */ + {NULL}, /* a (char 97) */ + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {CMODE_A, 0, NULL, NULL}, /* A */ + {0}, /* B */ + {0}, /* C */ + {0}, /* D */ + {CMODE_E, 0, NULL, NULL}, /* E */ + {CMODE_F, 0, NULL, NULL}, /* F */ + {CMODE_G, 0, NULL, NULL}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {CMODE_K, 0, NULL, NULL}, /* K */ + {CMODE_L, 0, NULL, NULL}, /* L */ + {0}, /* M */ + {CMODE_N, 0, NULL, NULL}, /* N */ + {CMODE_O, 0, NULL, NULL}, /* O */ + {CMODE_P, 0, NULL, NULL}, /* P */ + {0}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {CMODE_S, 0, NULL, NULL}, /* S */ + {CMODE_T, 0, NULL, NULL}, /* T */ + {0}, /* U */ + {CMODE_V, 0, NULL, NULL}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {0}, /* b */ + {CMODE_c, 0, NULL, NULL}, + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {CMODE_r, 0, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {0}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {CMODE_z, 0, NULL, NULL}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'c', CMODE_c, 0, NULL, NULL}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'z', CMODE_z, 0, NULL, NULL}, + {'A', CMODE_A, 0, NULL, NULL}, + {'E', CMODE_E, 0, NULL, NULL}, + {'F', CMODE_F, 0, NULL, NULL}, + {'G', CMODE_G, 0, NULL, NULL}, + {'K', CMODE_K, 0, NULL, NULL}, + {'L', CMODE_L, 0, NULL, NULL}, + {'N', CMODE_N, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'P', CMODE_P, 0, NULL, NULL}, + {'S', CMODE_S, 0, NULL, NULL}, + {'T', CMODE_T, 0, NULL, NULL}, + {'V', CMODE_V, 0, NULL, NULL}, + {0} +}; + + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {CUS_PROTECT, CUF_PROTECT_BOTSERV, check_valid_admin}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, check_valid_op}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + + +void shadowircd_cmd_notice(char *source, char *dest, char *buf) +{ + Uid *ud; + User *u; + + if (!buf) { + return; + } + + if (UsePrivmsg) { + shadowircd_cmd_privmsg2(source, dest, buf); + } else { + ud = find_uid(source); + u = finduser(dest); + send_cmd((ud ? ud->uid : source), "NOTICE %s :%s", + (u ? u->uid : dest), buf); + } +} + +void shadowircd_cmd_notice2(char *source, char *dest, char *msg) +{ + Uid *ud; + User *u; + + ud = find_uid(source); + u = finduser(dest); + send_cmd((ud ? ud->uid : source), "NOTICE %s :%s", (u ? u->uid : dest), + msg); +} + +void shadowircd_cmd_privmsg(char *source, char *dest, char *buf) +{ + Uid *ud, *ud2; + + if (!buf) { + return; + } + ud = find_uid(source); + ud2 = find_uid(dest); + + send_cmd((ud ? ud->uid : source), "PRIVMSG %s :%s", + (ud2 ? ud2->uid : dest), buf); +} + +void shadowircd_cmd_privmsg2(char *source, char *dest, char *msg) +{ + Uid *ud, *ud2; + + ud = find_uid(source); + ud2 = find_uid(dest); + + send_cmd((ud ? ud->uid : source), "PRIVMSG %s :%s", + (ud2 ? ud2->uid : dest), msg); +} + +void shadowircd_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $$%s :%s", dest, msg); +} + +void shadowircd_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $$%s :%s", dest, msg); +} + + +void shadowircd_cmd_global(char *source, char *buf) +{ + Uid *u; + + if (!buf) { + return; + } + + if (source) { + u = find_uid(source); + if (u) { + send_cmd((u ? u->uid : source), "OPERWALL :%s", buf); + } else { + send_cmd(TS6SID, "OPERWALL :%s", buf); + } + } else { + send_cmd(TS6SID, "OPERWALL :%s", buf); + } +} + +/* GLOBOPS - to handle old WALLOPS */ +void shadowircd_cmd_global_legacy(char *source, char *fmt) +{ + Uid *u; + + if (source) { + u = find_uid(source); + if (u) { + send_cmd((u ? u->uid : source), "OPERWALL :%s", fmt); + } else { + send_cmd(TS6SID, "OPERWALL :%s", fmt); + } + } else { + send_cmd(TS6SID, "OPERWALL :%s", fmt); + } + + send_cmd(source ? source : ServerName, "OPERWALL :%s", fmt); +} + +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + +/* + Non TS6 + + av[0] = nick + av[1] = hop + av[2] = ts + av[3] = modes + av[4] = user + av[5] = host + av[6] = server + av[7] = info + + TS6 + av[0] = nick + av[1] = hop + av[2] = ts + av[3] = modes + av[4] = user + av[5] = host + av[6] = IP + av[7] = UID + av[8] = vhost + av[9] = info + +*/ +int anope_event_nick(char *source, int ac, char **av) +{ + Server *s = NULL; + User *user, *u2; + + if (ac == 10) { + s = findserver_uid(servlist, source); + /* Source is always the server */ + *source = '\0'; + user = do_nick(source, av[0], av[4], av[5], s->name, av[9], + strtoul(av[2], NULL, 10), 0, 0, av[8], av[7]); + if (user) { + anope_set_umode(user, 1, &av[3]); + } + } else if (ac == 8) { + /* Changed use of s->name to av[6], as s will be NULL + * if i can believe the above comments, this should be fine + * if anyone from shadowircd see's this, and its wrong, let + * me know? :) + */ + user = do_nick(source, av[0], av[4], av[5], av[6], av[7], + strtoul(av[2], NULL, 10), 0, 0, NULL, NULL); + if (user) { + anope_set_umode(user, 1, &av[3]); + } + } else { + u2 = find_byuid(source); + do_nick((u2 ? u2->nick : source), av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + + +int anope_event_chghost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = find_byuid(av[0]); + if (!u) { + if (debug) { + alog("user: CHGHOST for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_host(u, av[1]); + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + User *u; + + if (ac == 4) { + do_topic(source, ac, av); + } else { + Channel *c = findchan(av[0]); + time_t topic_time = time(NULL); + + if (!c) { + if (debug) { + alog("channel: TOPIC %s for nonexistent channel %s", + merge_args(ac - 1, av + 1), av[0]); + } + return MOD_CONT; + } + + if (check_topiclock(c, topic_time)) + return MOD_CONT; + + if (c->topic) { + free(c->topic); + c->topic = NULL; + } + if (ac > 1 && *av[1]) + c->topic = sstrdup(av[1]); + + u = find_byuid(source); + if (u) { + strscpy(c->topic_setter, u->nick, sizeof(c->topic_setter)); + } else { + strscpy(c->topic_setter, source, sizeof(c->topic_setter)); + } + c->topic_time = topic_time; + + record_topic(av[0]); + } + return MOD_CONT; +} + +int anope_event_tburst(char *source, int ac, char **av) +{ + char *setter; + Channel *c; + time_t topic_time; + + if (ac != 4) { + return MOD_CONT; + } + + setter = myStrGetToken(av[2], '!', 0); + + c = findchan(av[0]); + topic_time = strtol(av[1], NULL, 10); + + if (!c) { + if (debug) { + alog("channel: TOPIC %s for nonexistent channel %s", + merge_args(ac - 1, av + 1), av[0]); + } + return MOD_CONT; + } + + if (check_topiclock(c, topic_time)) + return MOD_CONT; + + if (c->topic) { + free(c->topic); + c->topic = NULL; + } + if (ac > 1 && *av[3]) + c->topic = sstrdup(av[3]); + + strscpy(c->topic_setter, setter, sizeof(c->topic_setter)); + c->topic_time = topic_time; + + record_topic(av[0]); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) +{ + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+a","-a"); + + TS6SID = sstrdup(Numeric); + UseTS6 = 1; + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_invite); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("SVSKILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("TMODE", anope_event_tmode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("BMASK", anope_event_bmask); addCoreMessage(IRCD,m); + m = createMessage("UID", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("TBURST", anope_event_tburst); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + m = createMessage("421", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("ENCAP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SID", anope_event_sid); addCoreMessage(IRCD,m); + m = createMessage("EOB", anope_event_eos); addCoreMessage(IRCD,m); + m = createMessage("TSSYNC", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSCLOAK", anope_event_chghost); addCoreMessage(IRCD,m); + +} + +/* *INDENT-ON* */ + + +void shadowircd_cmd_sqline(char *mask, char *reason) +{ + send_cmd(NULL, "RESV * %s :%s", mask, reason); +} + +void shadowircd_cmd_unsgline(char *mask) +{ + /* Does not support */ +} + +void shadowircd_cmd_unszline(char *mask) +{ + /* Does not support */ +} + +void shadowircd_cmd_szline(char *mask, char *reason, char *whom) +{ + /* Does not support */ +} + +void shadowircd_cmd_svsnoop(char *server, int set) +{ + /* does not support */ +} + +void shadowircd_cmd_svsadmin(char *server, int set) +{ + shadowircd_cmd_svsnoop(server, set); +} + +void shadowircd_cmd_sgline(char *mask, char *reason) +{ + /* does not support */ +} + +void shadowircd_cmd_remove_akill(char *user, char *host) +{ + Uid *ud; + + ud = find_uid(s_OperServ); + send_cmd((ud ? ud->uid : s_OperServ), "UNKLINE * %s %s", user, host); +} + +void shadowircd_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + Uid *ud; + + ud = find_uid(whosets); + send_cmd((ud ? ud->uid : whosets), "TOPIC %s %s %ld :%s", chan, + whosetit, when, topic); +} + +void shadowircd_cmd_vhost_off(User * u) +{ + send_cmd(NULL, "MODE %s -v", (u->uid ? u->uid : u->nick)); +} + +void shadowircd_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + send_cmd(NULL, "SVSCLOAK %s %s", nick, vhost); + + if (vIdent) + send_cmd(NULL, "SVSIDENT %s %s", nick, vIdent); +} + +void shadowircd_cmd_unsqline(char *user) +{ + send_cmd(NULL, "UNRESV * %s", user); +} + +void shadowircd_cmd_join(char *user, char *channel, time_t chantime) +{ + Uid *ud; + + ud = find_uid(user); + send_cmd(NULL, "SJOIN %ld %s + :%s", (long int) time(NULL), + channel, (ud ? ud->uid : user)); +} + +/* +oper: the nick of the oper performing the kline +target.server: the server(s) this kline is destined for +duration: the duration if a tkline, 0 if permanent. +user: the 'user' portion of the kline +host: the 'host' portion of the kline +reason: the reason for the kline. +*/ + +void shadowircd_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + Uid *ud; + + ud = find_uid(s_OperServ); + + send_cmd((ud ? ud->uid : s_OperServ), "KLINE * %ld %s %s :%s", + (long int) (expires - (long) time(NULL)), user, host, reason); +} + +void shadowircd_cmd_svskill(char *source, char *user, char *buf) +{ + Uid *ud; + + if (!buf) { + return; + } + + if (!source || !user) { + return; + } + + ud = find_uid(user); + send_cmd(NULL, "SVSKILL %s :%s", (ud ? ud->uid : user), buf); +} + +void shadowircd_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(TS6SID, "MODE %s %s", u->uid, av[0]); +} + +void shadowircd_cmd_svsinfo() +{ + /* not used */ +} + +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +void shadowircd_cmd_svinfo() +{ + send_cmd(NULL, "SVINFO 6 3 0 :%ld", (long int) time(NULL)); +} + +void shadowircd_cmd_capab() +{ + /* ShadowIRCd does not use CAPAB */ +} + +/* PASS */ +void shadowircd_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS %s TS 6 %s", pass, TS6SID); +} + +/* SERVER name protocol hop descript */ +void shadowircd_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d %d :%s", servname, hop, PROTOCOL_REVISION, + descript); +} + + +void shadowircd_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, TS6SID); + if (servernum == 1) + shadowircd_cmd_pass(RemotePassword); + else if (servernum == 2) + shadowircd_cmd_pass(RemotePassword2); + else if (servernum == 3) + shadowircd_cmd_pass(RemotePassword3); + + shadowircd_cmd_capab(); + shadowircd_cmd_server(ServerName, 1, ServerDesc); + shadowircd_cmd_svinfo(); +} + +void shadowircd_cmd_bot_nick(char *nick, char *user, char *host, + char *real, char *modes) +{ + char nicknumbuf[10]; + EnforceQlinedNick(nick, NULL); + snprintf(nicknumbuf, 10, "%sAAAA%c%c", Numeric, + (ts6nickcount[1] + 'A'), (ts6nickcount[0] + 'A')); + send_cmd(TS6SID, "UID %s 1 %ld %s %s %s 0.0.0.0 %s %s :%s", nick, + (long int) time(NULL), modes, user, host, nicknumbuf, host, + real); + new_uid(nick, nicknumbuf); + ts6nickcount[0]++; + if (ts6nickcount[0] > 35) { /* AAAAA9 */ + ts6nickcount[1]++; + ts6nickcount[0] = 0; /* AAAABA */ + } + shadowircd_cmd_sqline(nick, "Reserved for services"); +} + +void shadowircd_cmd_part(char *nick, char *chan, char *buf) +{ + Uid *ud; + + ud = find_uid(nick); + + if (buf) { + send_cmd((ud ? ud->uid : nick), "PART %s :%s", chan, buf); + } else { + send_cmd((ud ? ud->uid : nick), "PART %s", chan); + } +} + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + shadowircd_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +int anope_event_away(char *source, int ac, char **av) +{ + User *u = NULL; + + if (ac) { + return MOD_CONT; + } + + u = find_byuid(source); + + m_away(u->nick, av[0]); + return MOD_CONT; +} + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + +void shadowircd_cmd_eob() +{ + send_cmd(TS6SID, "EOB"); +} + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) { + do_sjoin(source, ac, av); + return MOD_CONT; + } else { + do_join(source, ac, av); + } + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +int anope_event_privmsg(char *source, int ac, char **av) +{ + User *u; + Uid *ud; + + if (ac != 2) { + return MOD_CONT; + } + + u = find_byuid(source); + ud = find_nickuid(av[0]); + + m_privmsg((u ? u->nick : source), (ud ? ud->nick : av[0]), av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + User *u; + + if (ac < 1 || ac > 2) { + return MOD_CONT; + } + + u = find_byuid(source); + do_part(u->nick, ac, av); + + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + Uid *ud; + + if (source && ac >= 1) { + ud = find_nickuid(av[0]); + m_whois(source, (ud ? ud->nick : source)); + } + return MOD_CONT; +} + +/* EVENT: SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + if (TS6UPLINK) { + do_server(source, av[0], av[1], av[2], TS6UPLINK); + } else { + do_server(source, av[0], av[1], av[2], NULL); + } + } else { + do_server(source, av[0], av[1], av[2], NULL); + } + return MOD_CONT; +} + +int anope_event_sid(char *source, int ac, char **av) +{ + Server *s; + + /* :42X SID trystan.nomadirc.net 2 43X :ircd-ratbox test server */ + + s = findserver_uid(servlist, source); + do_server(s->name, av[0], av[1], av[3], av[2]); + return MOD_CONT; +} + +int anope_event_eos(char *source, int ac, char **av) +{ + Server *s; + s = findserver_uid(servlist, source); + /* If we found a server with the given source, that one just + * finished bursting. If there was no source, then our uplink + * server finished bursting. -GD + */ + if (!s && serv_uplink) + s = serv_uplink; + finish_sync(s, 1); + + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) { + return MOD_CONT; + } + + u = find_byuid(source); + + do_quit(u->nick, ac, av); + return MOD_CONT; +} + +void shadowircd_cmd_372(char *source, char *msg) +{ + send_cmd(TS6SID, "372 %s :- %s", source, msg); +} + +void shadowircd_cmd_372_error(char *source) +{ + send_cmd(TS6SID, + "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void shadowircd_cmd_375(char *source) +{ + send_cmd(TS6SID, + "375 %s :- %s Message of the Day", source, ServerName); +} + +void shadowircd_cmd_376(char *source) +{ + send_cmd(TS6SID, "376 %s :End of /MOTD command.", source); +} + +/* 391 */ +void shadowircd_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void shadowircd_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void shadowircd_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(TS6SID, "307 %s ", buf); +} + +/* 311 */ +void shadowircd_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(TS6SID, "311 %s ", buf); +} + +/* 312 */ +void shadowircd_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(TS6SID, "312 %s ", buf); +} + +/* 317 */ +void shadowircd_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(TS6SID, "317 %s ", buf); +} + +/* 219 */ +void shadowircd_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void shadowircd_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(TS6SID, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void shadowircd_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(TS6SID, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void shadowircd_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void shadowircd_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void shadowircd_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +void shadowircd_cmd_mode(char *source, char *dest, char *buf) +{ + Uid *ud; + if (!buf) { + return; + } + + if (source) { + ud = find_uid(source); + send_cmd((ud ? ud->uid : source), "MODE %s %s", dest, buf); + } else { + send_cmd(source, "MODE %s %s", dest, buf); + } +} + +void shadowircd_cmd_tmode(char *source, char *dest, char *buf) +{ + + if (!buf) { + return; + } + + send_cmd(NULL, "MODE %s %s", dest, buf); +} + +void shadowircd_cmd_nick(char *nick, char *name, char *mode) +{ + char nicknumbuf[10]; + EnforceQlinedNick(nick, NULL); + snprintf(nicknumbuf, 10, "%sAAAAA%c", TS6SID, (ts6nickcount[0] + 'A')); + send_cmd(TS6SID, "UID %s 1 %ld %s %s %s 0.0.0.0 %s %s :%s", nick, + (long int) time(NULL), mode, ServiceUser, ServiceHost, + nicknumbuf, ServiceHost, name); + new_uid(nick, nicknumbuf); + ts6nickcount[0]++; + shadowircd_cmd_sqline(nick, "Reserved for services"); +} + +void shadowircd_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + Uid *ud; + User *u; + + ud = find_uid(source); + u = finduser(user); + + if (buf) { + send_cmd((ud ? ud->uid : source), "KICK %s %s :%s", chan, + (u ? u->uid : user), buf); + } else { + send_cmd((ud ? ud->uid : source), "KICK %s %s", chan, + (u ? u->uid : user)); + } +} + +void shadowircd_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + +void shadowircd_cmd_bot_chan_mode(char *nick, char *chan) +{ + Uid *u; + + u = find_uid(nick); + anope_cmd_mode(nick, chan, "%s %s", ircd->botchanumode, + (u ? u->uid : nick)); +} + +/* QUIT */ +void shadowircd_cmd_quit(char *source, char *buf) +{ + Uid *ud; + + ud = find_uid(source); + + if (buf) { + send_cmd((ud ? ud->uid : source), "QUIT :%s", buf); + } else { + send_cmd((ud ? ud->uid : source), "QUIT"); + } +} + +/* PONG */ +void shadowircd_cmd_pong(char *servname, char *who) +{ + send_cmd(TS6SID, "PONG %s", who); +} + +/* INVITE */ +void shadowircd_cmd_invite(char *source, char *chan, char *nick) +{ + Uid *ud; + User *u; + + if (!source || !chan || !nick) { + return; + } + + ud = find_uid(source); + u = finduser(nick); + + send_cmd((ud ? ud->uid : source), "INVITE %s %s", + (u ? u->uid : nick), chan); +} + +/* SQUIT */ +void shadowircd_cmd_squit(char *servname, char *message) +{ + if (!servname || !message) { + return; + } + + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +int anope_event_mode(char *source, int ac, char **av) +{ + User *u, *u2; + + if (ac < 2 || *av[0] == '&') { + return MOD_CONT; + } + + if (*av[0] == '#') { + do_cmode(source, ac, av); + } else { + u = find_byuid(source); + u2 = find_byuid(av[0]); + av[0] = u2->nick; + do_umode2((u ? u->nick : source), ac, av); + } + return MOD_CONT; +} + +int anope_event_tmode(char *source, int ac, char **av) +{ + if (*av[1] == '#' || *av[1] == '&') { + do_cmode(source, ac, av); + } + return MOD_CONT; +} + +void shadowircd_cmd_351(char *source) +{ + send_cmd(TS6SID, + "351 %s Anope-%s %s :%s (ShadowProtocol %d) - %s -- %s", + source, version_number, ServerName, ircd->name, + PROTOCOL_REVISION, version_flags, version_build); +} + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + /* Not supported by ShadowIRCd. */ + return MOD_CONT; +} + +/* SVSHOLD - set */ +void shadowircd_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void shadowircd_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSNICK */ +void shadowircd_cmd_svsnick(char *nick, char *newnick, time_t when) +{ + if (!nick || !newnick) { + return; + } + send_cmd(NULL, "SVSNICK %s %s %ld", nick, newnick, when); +} + +void shadowircd_cmd_guest_nick(char *nick, char *user, char *host, + char *real, char *modes) +{ + /* not supported */ +} + +void shadowircd_cmd_svso(char *source, char *nick, char *flag) +{ + /* Not Supported by this IRCD */ +} + +void shadowircd_cmd_unban(char *name, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE channel modes */ + +void shadowircd_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void shadowircd_cmd_svid_umode(char *nick, time_t ts) +{ + /* not supported */ +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void shadowircd_cmd_nc_change(User * u) +{ + /* not supported */ +} + +/* SVSMODE +d */ +void shadowircd_cmd_svid_umode2(User * u, char *ts) +{ + /* not supported */ +} + +void shadowircd_cmd_svid_umode3(User * u, char *ts) +{ + /* not used */ +} + +/* NICK <newnick> */ +void shadowircd_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +int anope_event_svinfo(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + TS6UPLINK = sstrdup(av[3]); + return MOD_CONT; +} + +void shadowircd_cmd_svsjoin(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void shadowircd_cmd_svspart(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void shadowircd_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + +int anope_event_notice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_invite(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_bmask(char *source, int ac, char **av) +{ + Channel *c; + char *bans; + char *b; + int count, i; + + /* :42X BMASK 1106409026 #ircops b :*!*@*.aol.com */ + /* 0 1 2 3 */ + c = findchan(av[1]); + + if (c) { + bans = sstrdup(av[3]); + count = myNumToken(bans, ' '); + for (i = 0; i <= count - 1; i++) { + b = myStrGetToken(bans, ' ', i); + if (!stricmp(av[2], "b")) { + add_ban(c, b); + } + if (!stricmp(av[2], "e")) { + add_exception(c, b); + } + if (!stricmp(av[2], "I")) { + add_invite(c, b); + } + } + } + return MOD_CONT; +} + +int shadowircd_flood_mode_check(char *value) +{ + return 0; +} + +int anope_event_error(char *source, int ac, char **av) +{ + if (ac >= 1) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + +void shadowircd_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + shadowircd_cmd_squit(jserver, rbuf); + shadowircd_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int shadowircd_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void shadowircd_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(shadowircd_cmd_svsnoop); + pmodule_cmd_remove_akill(shadowircd_cmd_remove_akill); + pmodule_cmd_topic(shadowircd_cmd_topic); + pmodule_cmd_vhost_off(shadowircd_cmd_vhost_off); + pmodule_cmd_akill(shadowircd_cmd_akill); + pmodule_cmd_svskill(shadowircd_cmd_svskill); + pmodule_cmd_svsmode(shadowircd_cmd_svsmode); + pmodule_cmd_372(shadowircd_cmd_372); + pmodule_cmd_372_error(shadowircd_cmd_372_error); + pmodule_cmd_375(shadowircd_cmd_375); + pmodule_cmd_376(shadowircd_cmd_376); + pmodule_cmd_nick(shadowircd_cmd_nick); + pmodule_cmd_guest_nick(shadowircd_cmd_guest_nick); + pmodule_cmd_mode(shadowircd_cmd_mode); + pmodule_cmd_bot_nick(shadowircd_cmd_bot_nick); + pmodule_cmd_kick(shadowircd_cmd_kick); + pmodule_cmd_notice_ops(shadowircd_cmd_notice_ops); + pmodule_cmd_notice(shadowircd_cmd_notice); + pmodule_cmd_notice2(shadowircd_cmd_notice2); + pmodule_cmd_privmsg(shadowircd_cmd_privmsg); + pmodule_cmd_privmsg2(shadowircd_cmd_privmsg2); + pmodule_cmd_serv_notice(shadowircd_cmd_serv_notice); + pmodule_cmd_serv_privmsg(shadowircd_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(shadowircd_cmd_bot_chan_mode); + pmodule_cmd_351(shadowircd_cmd_351); + pmodule_cmd_quit(shadowircd_cmd_quit); + pmodule_cmd_pong(shadowircd_cmd_pong); + pmodule_cmd_join(shadowircd_cmd_join); + pmodule_cmd_unsqline(shadowircd_cmd_unsqline); + pmodule_cmd_invite(shadowircd_cmd_invite); + pmodule_cmd_part(shadowircd_cmd_part); + pmodule_cmd_391(shadowircd_cmd_391); + pmodule_cmd_250(shadowircd_cmd_250); + pmodule_cmd_307(shadowircd_cmd_307); + pmodule_cmd_311(shadowircd_cmd_311); + pmodule_cmd_312(shadowircd_cmd_312); + pmodule_cmd_317(shadowircd_cmd_317); + pmodule_cmd_219(shadowircd_cmd_219); + pmodule_cmd_401(shadowircd_cmd_401); + pmodule_cmd_318(shadowircd_cmd_318); + pmodule_cmd_242(shadowircd_cmd_242); + pmodule_cmd_243(shadowircd_cmd_243); + pmodule_cmd_211(shadowircd_cmd_211); + pmodule_cmd_global(shadowircd_cmd_global); + pmodule_cmd_global_legacy(shadowircd_cmd_global_legacy); + pmodule_cmd_sqline(shadowircd_cmd_sqline); + pmodule_cmd_squit(shadowircd_cmd_squit); + pmodule_cmd_svso(shadowircd_cmd_svso); + pmodule_cmd_chg_nick(shadowircd_cmd_chg_nick); + pmodule_cmd_svsnick(shadowircd_cmd_svsnick); + pmodule_cmd_vhost_on(shadowircd_cmd_vhost_on); + pmodule_cmd_connect(shadowircd_cmd_connect); + pmodule_cmd_svshold(shadowircd_cmd_svshold); + pmodule_cmd_release_svshold(shadowircd_cmd_release_svshold); + pmodule_cmd_unsgline(shadowircd_cmd_unsqline); + pmodule_cmd_unszline(shadowircd_cmd_unszline); + pmodule_cmd_szline(shadowircd_cmd_szline); + pmodule_cmd_sgline(shadowircd_cmd_sgline); + pmodule_cmd_unban(shadowircd_cmd_unban); + pmodule_cmd_svsmode_chan(shadowircd_cmd_svsmode_chan); + pmodule_cmd_svid_umode(shadowircd_cmd_svid_umode); + pmodule_cmd_nc_change(shadowircd_cmd_nc_change); + pmodule_cmd_svid_umode2(shadowircd_cmd_svid_umode2); + pmodule_cmd_svid_umode3(shadowircd_cmd_svid_umode3); + pmodule_cmd_eob(shadowircd_cmd_eob); + pmodule_flood_mode_check(shadowircd_flood_mode_check); + pmodule_cmd_jupe(shadowircd_cmd_jupe); + pmodule_valid_nick(shadowircd_valid_nick); + pmodule_cmd_ctcp(shadowircd_cmd_ctcp); + pmodule_set_umode(shadowircd_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("ShadowIRCd 4.0+"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set(""); + pmodule_ircd_flood_mode_char_remove(""); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(1); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/shadowircd.h b/src/protocol/shadowircd.h new file mode 100644 index 000000000..4c6669ce2 --- /dev/null +++ b/src/protocol/shadowircd.h @@ -0,0 +1,142 @@ +/* ShadowIRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/* The protocol revision. */ +#define PROTOCOL_REVISION 3402 + + +#define UMODE_a 0x00000001 +#define UMODE_C 0x00000002 +#define UMODE_i 0x00000004 +#define UMODE_o 0x00000008 +#define UMODE_z 0x00000010 +#define UMODE_w 0x00000020 +#define UMODE_s 0x00000040 +#define UMODE_c 0x00000080 +#define UMODE_r 0x00000100 +#define UMODE_k 0x00000200 +#define UMODE_f 0x00000400 +#define UMODE_y 0x00000800 +#define UMODE_d 0x00001000 +#define UMODE_n 0x00002000 +#define UMODE_x 0x00004000 +#define UMODE_u 0x00008000 +#define UMODE_b 0x00010000 +#define UMODE_l 0x00020000 +#define UMODE_g 0x00040000 +#define UMODE_v 0x00080000 +#define UMODE_A 0x00100000 +#define UMODE_E 0x00200000 +#define UMODE_G 0x00400000 +#define UMODE_R 0x00800000 +#define UMODE_e 0x01000000 +#define UMODE_O 0x02000000 +#define UMODE_H 0x04000000 + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 +#define CMODE_l 0x00000080 +#define CMODE_K 0x00000100 +#define CMODE_A 0x00000200 +#define CMODE_r 0x00000400 +#define CMODE_z 0x00000800 +#define CMODE_S 0x00001000 +#define CMODE_c 0x00002000 +#define CMODE_E 0x00004000 +#define CMODE_F 0x00008000 +#define CMODE_G 0x00010000 +#define CMODE_L 0x00020000 +#define CMODE_N 0x00040000 +#define CMODE_O 0x00080000 +#define CMODE_P 0x00100000 +#define CMODE_R 0x00200000 +#define CMODE_T 0x00400000 +#define CMODE_V 0x00800000 + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void shadowircd_set_umode(User * user, int ac, char **av); +void shadowircd_cmd_svsnoop(char *server, int set); +void shadowircd_cmd_remove_akill(char *user, char *host); +void shadowircd_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void shadowircd_cmd_vhost_off(User * u); +void shadowircd_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void shadowircd_cmd_svskill(char *source, char *user, char *buf); +void shadowircd_cmd_svsmode(User * u, int ac, char **av); +void shadowircd_cmd_372(char *source, char *msg); +void shadowircd_cmd_372_error(char *source); +void shadowircd_cmd_375(char *source); +void shadowircd_cmd_376(char *source); +void shadowircd_cmd_nick(char *nick, char *name, char *modes); +void shadowircd_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void shadowircd_cmd_mode(char *source, char *dest, char *buf); +void shadowircd_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void shadowircd_cmd_kick(char *source, char *chan, char *user, char *buf); +void shadowircd_cmd_notice_ops(char *source, char *dest, char *buf); +void shadowircd_cmd_notice(char *source, char *dest, char *buf); +void shadowircd_cmd_notice2(char *source, char *dest, char *msg); +void shadowircd_cmd_privmsg(char *source, char *dest, char *buf); +void shadowircd_cmd_privmsg2(char *source, char *dest, char *msg); +void shadowircd_cmd_serv_notice(char *source, char *dest, char *msg); +void shadowircd_cmd_serv_privmsg(char *source, char *dest, char *msg); +void shadowircd_cmd_bot_chan_mode(char *nick, char *chan); +void shadowircd_cmd_351(char *source); +void shadowircd_cmd_quit(char *source, char *buf); +void shadowircd_cmd_pong(char *servname, char *who); +void shadowircd_cmd_join(char *user, char *channel, time_t chantime); +void shadowircd_cmd_unsqline(char *user); +void shadowircd_cmd_invite(char *source, char *chan, char *nick); +void shadowircd_cmd_part(char *nick, char *chan, char *buf); +void shadowircd_cmd_391(char *source, char *timestr); +void shadowircd_cmd_250(char *buf); +void shadowircd_cmd_307(char *buf); +void shadowircd_cmd_311(char *buf); +void shadowircd_cmd_312(char *buf); +void shadowircd_cmd_317(char *buf); +void shadowircd_cmd_219(char *source, char *letter); +void shadowircd_cmd_401(char *source, char *who); +void shadowircd_cmd_318(char *source, char *who); +void shadowircd_cmd_242(char *buf); +void shadowircd_cmd_243(char *buf); +void shadowircd_cmd_211(char *buf); +void shadowircd_cmd_global(char *source, char *buf); +void shadowircd_cmd_global_legacy(char *source, char *fmt); +void shadowircd_cmd_sqline(char *mask, char *reason); +void shadowircd_cmd_squit(char *servname, char *message); +void shadowircd_cmd_svso(char *source, char *nick, char *flag); +void shadowircd_cmd_chg_nick(char *oldnick, char *newnick); +void shadowircd_cmd_svsnick(char *source, char *guest, time_t when); +void shadowircd_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void shadowircd_cmd_connect(int servernum); +void shadowircd_cmd_svshold(char *nick); +void shadowircd_cmd_release_svshold(char *nick); +void shadowircd_cmd_unsgline(char *mask); +void shadowircd_cmd_unszline(char *mask); +void shadowircd_cmd_szline(char *mask, char *reason, char *whom); +void shadowircd_cmd_sgline(char *mask, char *reason); +void shadowircd_cmd_unban(char *name, char *nick); +void shadowircd_cmd_svsmode_chan(char *name, char *mode, char *nick); +void shadowircd_cmd_svid_umode(char *nick, time_t ts); +void shadowircd_cmd_nc_change(User * u); +void shadowircd_cmd_svid_umode2(User * u, char *ts); +void shadowircd_cmd_svid_umode3(User * u, char *ts); +void shadowircd_cmd_eob(); +int shadowircd_flood_mode_check(char *value); +void shadowircd_cmd_jupe(char *jserver, char *who, char *reason); +int shadowircd_valid_nick(char *nick); +void shadowircd_cmd_ctcp(char *source, char *dest, char *buf); diff --git a/src/protocol/solidircd.c b/src/protocol/solidircd.c new file mode 100644 index 000000000..753793895 --- /dev/null +++ b/src/protocol/solidircd.c @@ -0,0 +1,1687 @@ +/* Solid-IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/*************************************************************************/ + +#include "services.h" +#include "pseudo.h" +#include "solidircd.h" + +IRCDVar myIrcd[] = { + {"Solid-IRCd 3.4.*", /* ircd name */ + "+o", /* nickserv mode */ + "+o", /* chanserv mode */ + "+o", /* memoserv mode */ + "+o", /* hostserv mode */ + "+io", /* operserv mode */ + "+o", /* botserv mode */ + "+h", /* helpserv mode */ + "+i", /* Dev/Null mode */ + "+io", /* Global mode */ + "+o", /* nickserv alias mode */ + "+o", /* chanserv alias mode */ + "+o", /* memoserv alias mode */ + "+io", /* hostserv alias mode */ + "+io", /* operserv alias mode */ + "+o", /* botserv alias mode */ + "+h", /* helpserv alias mode */ + "+i", /* Dev/Null alias mode */ + "+io", /* Global alias mode */ + "+", /* Used by BotServ Bots */ + 2, /* Chan Max Symbols */ + "-cilmnpstOR", /* Modes to Remove */ + "+o", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + NULL, /* Mode to set for chan admin */ + NULL, /* Mode to unset for chan admin */ + "+rd", /* Mode On Reg */ + "-r+d", /* Mode on UnReg */ + "+d", /* Mode on Nick Change */ + 1, /* Supports SGlines */ + 1, /* Supports SQlines */ + 1, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + 0, /* Protected Umode */ + 0, /* Has Admin */ + 1, /* Chan SQlines */ + 1, /* Quit on Kill */ + 1, /* SVSMODE unban */ + 0, /* Has Protect */ + 0, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 0, /* vidents */ + 1, /* svshold */ + 1, /* time stamp on mode */ + 1, /* NICKIP */ + 0, /* O:LINE */ + 1, /* UMODE */ + 0, /* VHOST ON NICK */ + 0, /* Change RealName */ + 0, /* No Knock */ + 0, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_v, /* Vhost Mode */ + 1, /* +f */ + 0, /* +L */ + CMODE_j, /* Mode */ + 0, /* Mode */ + 1, + 1, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 1, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + "v", /* vhost char */ + 0, /* ts6 */ + 1, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 1, /* reports sync state */ + } + , + {NULL} +}; + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + CAPAB_TSMODE, /* TSMODE */ + CAPAB_UNCONNECT, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + 0, /* ZIP */ + CAPAB_BURST, /* BURST */ + 0, /* TS5 */ + 0, /* TS3 */ + CAPAB_DKEY, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + 0, /* UID */ + 0, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + 0, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + CAPAB_DOZIP, /* DOZIP */ + 0, 0, 0} +}; + + +void solidircd_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'a': + if (UnRestrictSAdmin) { + break; + } + if (add && !is_services_admin(user)) { + common_svsmode(user, "-a", NULL); + user->mode &= ~UMODE_a; + } + break; + case 'd': + if (ac == 0) { + alog("user: umode +d with no parameter (?) for user %s", + user->nick); + break; + } + + ac--; + av++; + user->svid = strtoul(*av, NULL, 0); + break; + case 'o': + if (add) { + opcnt++; + + if (WallOper) + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + display_news(user, NEWS_OPER); + + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + case 'v': + update_host(user); + break; + } + } +} + + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + UMODE_A, 0, UMODE_C, /* A B C */ + UMODE_D, 0, UMODE_F, /* D E F */ + 0, UMODE_H, UMODE_I, /* G H I */ + 0, UMODE_K, 0, /* J K L */ + 0, 0, UMODE_O, /* M N O */ + 0, 0, UMODE_R, /* P Q R */ + 0, 0, 0, /* S T U */ + 0, 0, UMODE_X, /* V W X */ + 0, /* Y */ + 0, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, UMODE_b, UMODE_c, /* a b c */ + UMODE_d, UMODE_e, UMODE_f, /* d e f */ + UMODE_g, UMODE_h, UMODE_i, /* g h i */ + UMODE_j, UMODE_k, 0, /* j k l */ + UMODE_m, UMODE_n, UMODE_o, /* m n o */ + 0, 0, UMODE_r, /* p q r */ + UMODE_s, 0, 0, /* s t u */ + UMODE_v, UMODE_w, UMODE_x, /* v w x */ + UMODE_y, /* y */ + UMODE_z, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 'h', + 0, 0, 0, 0, + 0, + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, /* BCD */ + {NULL}, {NULL}, {NULL}, /* EFG */ + {NULL}, /* H */ + {add_invite, del_invite}, + {NULL}, /* J */ + {NULL}, {NULL}, {NULL}, /* KLM */ + {NULL}, {NULL}, {NULL}, /* NOP */ + {NULL}, {NULL}, {NULL}, /* QRS */ + {NULL}, {NULL}, {NULL}, /* TUV */ + {NULL}, {NULL}, {NULL}, /* WXY */ + {NULL}, /* Z */ + {NULL}, {NULL}, /* (char 91 - 92) */ + {NULL}, {NULL}, {NULL}, /* (char 93 - 95) */ + {NULL}, /* ` (char 96) */ + {NULL}, /* a (char 97) */ + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {0}, /* A */ + {0}, /* B */ + {0}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {0}, /* K */ + {0}, /* L */ + {CMODE_M, 0, NULL, NULL}, /* M */ + {CMODE_N, 0, NULL, NULL}, /* N */ + {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* P */ + {0}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {CMODE_S, 0, NULL, NULL}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {CMODE_c, 0, NULL, NULL}, + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {CMODE_j, 0, set_flood, cs_set_flood}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {0}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'c', CMODE_c, 0, NULL, NULL}, + {'i', CMODE_i, 0, NULL, NULL}, + {'j', CMODE_j, 0, get_flood, cs_get_flood}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'M', CMODE_M, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {'N', CMODE_N, 0, NULL, NULL}, + {'S', CMODE_S, 0, NULL, NULL}, + {0} +}; + + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, check_valid_op}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + +void solidircd_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (ircdcap->tsmode) { + if (uplink_capab & ircdcap->tsmode) { + send_cmd(source, "MODE %s 0 %s", dest, buf); + } else { + send_cmd(source, "MODE %s %s", dest, buf); + } + } else { + send_cmd(source, "MODE %s %s", dest, buf); + } +} + +/* SVSHOLD - set */ +void solidircd_cmd_svshold(char *nick) +{ + send_cmd(ServerName, "SVSHOLD %s %d :%s", nick, NSReleaseTimeout, + "Being held for registered user"); +} + +/* SVSHOLD - release */ +void solidircd_cmd_release_svshold(char *nick) +{ + send_cmd(ServerName, "SVSHOLD %s 0", nick); +} + +/* SVSMODE -b */ +void solidircd_cmd_unban(char *name, char *nick) +{ + solidircd_cmd_svsmode_chan(name, "-b", nick); +} + + +/* SVSMODE channel modes */ + +void solidircd_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + if (nick) { + send_cmd(ServerName, "SVSMODE %s %s %s", name, mode, nick); + } else { + send_cmd(ServerName, "SVSMODE %s %s", name, mode); + } +} + +void solidircd_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s", ircd->botchanumode, nick); +} + +/* EVENT: SJOIN */ +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + +/* +** NICK - new +** source = NULL +** parv[0] = nickname +** parv[1] = hopcount +** parv[2] = timestamp +** parv[3] = modes +** parv[4] = username +** parv[5] = hostname +** parv[6] = server +** parv[7] = servicestamp +** parv[8] = IP +** parv[9] = info +** NICK - change +** source = oldnick +** parv[0] = new nickname +** parv[1] = hopcount +*/ +int anope_event_nick(char *source, int ac, char **av) +{ + User *user; + + if (ac != 2) { + user = do_nick(source, av[0], av[4], av[5], av[6], av[9], + strtoul(av[2], NULL, 10), strtoul(av[7], NULL, 0), + strtoul(av[8], NULL, 0), NULL, NULL); + if (user) { + anope_set_umode(user, 1, &av[3]); + } + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + +/* EVENT : CAPAB */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +/* EVENT : OS */ +int anope_event_os(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_OperServ, av[0]); + return MOD_CONT; +} + +/* EVENT : NS */ +int anope_event_ns(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_NickServ, av[0]); + return MOD_CONT; +} + +/* EVENT : MS */ +int anope_event_ms(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_MemoServ, av[0]); + return MOD_CONT; +} + +/* EVENT : HS */ +int anope_event_hs(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_HostServ, av[0]); + return MOD_CONT; +} + +/* EVENT : CS */ +int anope_event_cs(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_ChanServ, av[0]); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+","-"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GLOBOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GNOTICE", anope_event_gnotice); addCoreMessage(IRCD,m); + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SQLINE", anope_event_sqline); addCoreMessage(IRCD,m); + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("CS", anope_event_cs); addCoreMessage(IRCD,m); + m = createMessage("HS", anope_event_hs); addCoreMessage(IRCD,m); + m = createMessage("MS", anope_event_ms); addCoreMessage(IRCD,m); + m = createMessage("NS", anope_event_ns); addCoreMessage(IRCD,m); + m = createMessage("OS", anope_event_os); addCoreMessage(IRCD,m); + m = createMessage("RS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SGLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("SS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m); + m = createMessage("SZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSGLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + m = createMessage("LUSERSLOCK",anope_event_luserslock); addCoreMessage(IRCD,m); + m = createMessage("BURST", anope_event_burst); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("SVHOST", anope_event_vs); addCoreMessage(IRCD,m); + m = createMessage("ELMER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SILLY", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SHUN", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("NORMAL", anope_event_null); addCoreMessage(IRCD,m); +} + +/* *INDENT-ON* */ + + +int anope_event_vs(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: SVHOST for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_host(u, av[1]); + return MOD_CONT; + +} + +/* SQLINE */ +void solidircd_cmd_sqline(char *mask, char *reason) +{ + if (!mask || !reason) { + return; + } + + send_cmd(NULL, "SQLINE %s :%s", mask, reason); +} + +/* UNSGLINE */ +void solidircd_cmd_unsgline(char *mask) +{ + send_cmd(NULL, "UNSGLINE 0 :%s", mask); +} + +/* UNSZLINE */ +void solidircd_cmd_unszline(char *mask) +{ + send_cmd(NULL, "UNSZLINE 0 %s", mask); +} + +/* SZLINE */ +void solidircd_cmd_szline(char *mask, char *reason, char *whom) +{ + send_cmd(NULL, "SZLINE %s :%s", mask, reason); +} + +/* SVSNOOP */ +void solidircd_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "SVSNOOP %s %s", server, (set ? "+" : "-")); +} + +void solidircd_cmd_svsadmin(char *server, int set) +{ + solidircd_cmd_svsnoop(server, set); +} + +/* SGLINE */ +void solidircd_cmd_sgline(char *mask, char *reason) +{ + send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason); +} + +/* RAKILL */ +void solidircd_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, "RAKILL %s %s", host, user); +} + +/* PART */ +void solidircd_cmd_part(char *nick, char *chan, char *buf) +{ + if (!nick || !chan) { + return; + } + + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + +/* TOPIC */ +void solidircd_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "TOPIC %s %s %lu :%s", chan, whosetit, + (unsigned long int) when, topic); +} + +/* UNSQLINE */ +void solidircd_cmd_unsqline(char *user) +{ + send_cmd(NULL, "UNSQLINE %s", user); +} + +/* JOIN - SJOIN */ +void solidircd_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(user, "SJOIN %ld %s", (long int) chantime, channel); +} + +/* AKILL */ +/* parv[1]=host + * parv[2]=user + * parv[3]=length + * parv[4]=akiller + * parv[5]=time set + * parv[6]=reason + */ +void solidircd_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(NULL, "AKILL %s %s %d %s %ld :%s", host, user, 86400 * 2, who, + (long int) time(NULL), reason); +} + +/* SVSKILL */ +/* parv[0] = servername + * parv[1] = client + * parv[2] = nick stamp + * parv[3] = kill message + */ +/* + Note: if the stamp is null 0, the below usage is correct of Bahamut +*/ +void solidircd_cmd_svskill(char *source, char *user, char *buf) +{ + + if (!source || !user || !buf) { + return; + } + + send_cmd(source, "SVSKILL %s :%s", user, buf); +} + +/* SVSMODE */ +/* parv[0] - sender + * parv[1] - nick + * parv[2] - TS (or mode, depending on svs version) + * parv[3] - mode (or services id if old svs version) + * parv[4] - optional arguement (services id) + */ +void solidircd_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(ServerName, "SVSMODE %s %ld %s%s%s", u->nick, + (long int) u->timestamp, av[0], (ac == 2 ? " " : ""), + (ac == 2 ? av[1] : "")); +} + +/* SQUIT */ +/* + * parv[0] = sender prefix + * parv[1] = server name + * parv[2] = comment +*/ +void solidircd_cmd_squit(char *servname, char *message) +{ + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +/* PONG */ +void solidircd_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +void solidircd_cmd_burst() +{ + send_cmd(NULL, "BURST"); +} + + +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +void solidircd_cmd_svinfo() +{ + send_cmd(NULL, "SVINFO 5 3 0 :%ld", (long int) time(NULL)); +} + +/* PASS */ +void solidircd_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS %s :TS", pass); +} + +/* SERVER */ +void solidircd_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, ServerDesc); +} + +/* CAPAB */ +void solidircd_cmd_capab() +{ + /* CAPAB SSJOIN NOQUIT BURST UNCONNECT ZIP NICKIP TSMODE */ + send_cmd(NULL, "CAPAB SSJOIN NOQUIT BURST UNCONNECT NICKIP TSMODE"); +} + +void solidircd_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + if (servernum == 1) { + solidircd_cmd_pass(RemotePassword); + } else if (servernum == 2) { + solidircd_cmd_pass(RemotePassword2); + } else if (servernum == 3) { + solidircd_cmd_pass(RemotePassword3); + } + solidircd_cmd_capab(); + solidircd_cmd_server(ServerName, 1, ServerDesc); + solidircd_cmd_svinfo(); + solidircd_cmd_burst(); +} + +/* EVENT : SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + char *uplink; + + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + + do_server(source, av[0], av[1], av[2], NULL); + return MOD_CONT; +} + +/* EVENT : PRIVMSG */ +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +/* EVENT : SVINFO */ +/* + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +int anope_event_svinfo(char *source, int ac, char **av) +{ + return MOD_CONT; +} + + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac != 4) + return MOD_CONT; + do_topic(source, ac, av); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + +/* EVENT: MODE */ +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + +/* EVENT: KILL */ +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +/* EVENT: KICK */ +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + +/* EVENT: JOIN */ +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +/* EVENT: MOTD */ +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +void solidircd_cmd_notice_ops(char *source, char *dest, char *buf) +{ + + if (!buf) { + return; + } + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + +/* NOTICE */ +void solidircd_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + solidircd_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void solidircd_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void solidircd_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void solidircd_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void solidircd_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $%s :%s", dest, msg); +} + +void solidircd_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $%s :%s", dest, msg); +} + +/* GLOBOPS */ +void solidircd_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "GLOBOPS :%s", buf); +} + +/* 391 */ +void solidircd_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void solidircd_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void solidircd_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void solidircd_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void solidircd_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void solidircd_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void solidircd_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void solidircd_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void solidircd_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void solidircd_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void solidircd_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void solidircd_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +void solidircd_cmd_nick(char *nick, char *name, char *modes) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, + (long int) time(NULL), modes, ServiceUser, ServiceHost, + ServerName, name); + solidircd_cmd_sqline(nick, "Reserved for services"); +} + +void solidircd_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +void solidircd_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void solidircd_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void solidircd_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void solidircd_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +/* INVITE */ +void solidircd_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +/* QUIT */ +void solidircd_cmd_quit(char *source, char *buf) +{ + + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + solidircd_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +void solidircd_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +void solidircd_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, real); + solidircd_cmd_sqline(nick, "Reserved for services"); +} + +/* SVSNICK */ +/* parv[0] = sender + * parv[1] = old nickname + * parv[2] = new nickname + * parv[3] = timestamp + */ +void solidircd_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "SVSNICK %s %s :%ld", source, guest, (long int) when); +} + +void solidircd_cmd_guest_nick(char *nick, char *user, char *host, + char *real, char *modes) +{ + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, real); +} + +void solidircd_cmd_svso(char *source, char *nick, char *flag) +{ + /* Not Supported by this IRCD */ +} + +void solidircd_cmd_chghost(char *nick, char *vhost) +{ + if (!nick || !vhost) { + return; + } + send_cmd(ServerName, "SVHOST %s %s", nick, vhost); +} + + +void solidircd_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + send_cmd(s_HostServ, "SVSMODE %s +v", nick); + solidircd_cmd_chghost(nick, vhost); +} + +void solidircd_cmd_vhost_off(User * u) +{ + send_cmd(s_HostServ, "SVSMODE %s -v", u->nick); + notice_lang(s_HostServ, u, HOST_OFF_UNREAL, u->nick, ircd->vhostchar); +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void solidircd_cmd_svid_umode(char *nick, time_t ts) +{ + send_cmd(ServerName, "SVSMODE %s %lu +d 1", nick, + (unsigned long int) ts); +} + + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void solidircd_cmd_nc_change(User * u) +{ + common_svsmode(u, "+d", "1"); +} + +/* SVSMODE +d */ +void solidircd_cmd_svid_umode2(User * u, char *ts) +{ + /* not used by bahamut ircds */ +} + + +void solidircd_cmd_svid_umode3(User * u, char *ts) +{ + if (u->svid != u->timestamp) { + common_svsmode(u, "+rd", ts); + } else { + common_svsmode(u, "+r", NULL); + } +} + +/* NICK <newnick> */ +void solidircd_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s :%ld", newnick, (long int) time(NULL)); +} + +int anope_event_error(char *source, int ac, char **av) +{ + if (ac >= 1) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + +int anope_event_notice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_sqline(char *source, int ac, char **av) +{ + return MOD_CONT; +} + + +int anope_event_gnotice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +void solidircd_cmd_svsjoin(char *source, char *nick, char *chan) +{ + /* Can not find any reference to these in Bahamut */ +} + +void solidircd_cmd_svspart(char *source, char *nick, char *chan) +{ + /* Can not find any reference to these in Bahamut */ +} + +void solidircd_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + +void solidircd_cmd_eob() +{ + send_cmd(NULL, "BURST 0"); +} + +int anope_event_burst(char *source, int ac, char **av) +{ + Server *s; + s = findserver(servlist, source); + if (!ac) { + /* for future use - start burst */ + } else { + /* If we found a server with the given source, that one just + * finished bursting. If there was no source, then our uplink + * server finished bursting. -GD + */ + if (!s && serv_uplink) + s = serv_uplink; + finish_sync(s, 1); + } + return MOD_CONT; +} + +int anope_event_luserslock(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_credits(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int solidircd_flood_mode_check(char *value) +{ + char *dp, *end; + + if (value && *value != ':' + && (strtoul((*value == '*' ? value + 1 : value), &dp, 10) > 0) + && (*dp == ':') && (*(++dp) != 0) && (strtoul(dp, &end, 10) > 0) + && (*end == 0)) { + return 1; + } else { + return 0; + } +} + +void solidircd_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + solidircd_cmd_squit(jserver, rbuf); + solidircd_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* GLOBOPS - to handle old WALLOPS */ +void solidircd_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "GLOBOPS :%s", fmt); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int solidircd_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void solidircd_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "%s NOTICE :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(solidircd_cmd_svsnoop); + pmodule_cmd_remove_akill(solidircd_cmd_remove_akill); + pmodule_cmd_topic(solidircd_cmd_topic); + pmodule_cmd_vhost_off(solidircd_cmd_vhost_off); + pmodule_cmd_akill(solidircd_cmd_akill); + pmodule_cmd_svskill(solidircd_cmd_svskill); + pmodule_cmd_svsmode(solidircd_cmd_svsmode); + pmodule_cmd_372(solidircd_cmd_372); + pmodule_cmd_372_error(solidircd_cmd_372_error); + pmodule_cmd_375(solidircd_cmd_375); + pmodule_cmd_376(solidircd_cmd_376); + pmodule_cmd_nick(solidircd_cmd_nick); + pmodule_cmd_guest_nick(solidircd_cmd_guest_nick); + pmodule_cmd_mode(solidircd_cmd_mode); + pmodule_cmd_bot_nick(solidircd_cmd_bot_nick); + pmodule_cmd_kick(solidircd_cmd_kick); + pmodule_cmd_notice_ops(solidircd_cmd_notice_ops); + pmodule_cmd_notice(solidircd_cmd_notice); + pmodule_cmd_notice2(solidircd_cmd_notice2); + pmodule_cmd_privmsg(solidircd_cmd_privmsg); + pmodule_cmd_privmsg2(solidircd_cmd_privmsg2); + pmodule_cmd_serv_notice(solidircd_cmd_serv_notice); + pmodule_cmd_serv_privmsg(solidircd_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(solidircd_cmd_bot_chan_mode); + pmodule_cmd_351(solidircd_cmd_351); + pmodule_cmd_quit(solidircd_cmd_quit); + pmodule_cmd_pong(solidircd_cmd_pong); + pmodule_cmd_join(solidircd_cmd_join); + pmodule_cmd_unsqline(solidircd_cmd_unsqline); + pmodule_cmd_invite(solidircd_cmd_invite); + pmodule_cmd_part(solidircd_cmd_part); + pmodule_cmd_391(solidircd_cmd_391); + pmodule_cmd_250(solidircd_cmd_250); + pmodule_cmd_307(solidircd_cmd_307); + pmodule_cmd_311(solidircd_cmd_311); + pmodule_cmd_312(solidircd_cmd_312); + pmodule_cmd_317(solidircd_cmd_317); + pmodule_cmd_219(solidircd_cmd_219); + pmodule_cmd_401(solidircd_cmd_401); + pmodule_cmd_318(solidircd_cmd_318); + pmodule_cmd_242(solidircd_cmd_242); + pmodule_cmd_243(solidircd_cmd_243); + pmodule_cmd_211(solidircd_cmd_211); + pmodule_cmd_global(solidircd_cmd_global); + pmodule_cmd_global_legacy(solidircd_cmd_global_legacy); + pmodule_cmd_sqline(solidircd_cmd_sqline); + pmodule_cmd_squit(solidircd_cmd_squit); + pmodule_cmd_svso(solidircd_cmd_svso); + pmodule_cmd_chg_nick(solidircd_cmd_chg_nick); + pmodule_cmd_svsnick(solidircd_cmd_svsnick); + pmodule_cmd_vhost_on(solidircd_cmd_vhost_on); + pmodule_cmd_connect(solidircd_cmd_connect); + pmodule_cmd_svshold(solidircd_cmd_svshold); + pmodule_cmd_release_svshold(solidircd_cmd_release_svshold); + pmodule_cmd_unsgline(solidircd_cmd_unsqline); + pmodule_cmd_unszline(solidircd_cmd_unszline); + pmodule_cmd_szline(solidircd_cmd_szline); + pmodule_cmd_sgline(solidircd_cmd_sgline); + pmodule_cmd_unban(solidircd_cmd_unban); + pmodule_cmd_svsmode_chan(solidircd_cmd_svsmode_chan); + pmodule_cmd_svid_umode(solidircd_cmd_svid_umode); + pmodule_cmd_nc_change(solidircd_cmd_nc_change); + pmodule_cmd_svid_umode2(solidircd_cmd_svid_umode2); + pmodule_cmd_svid_umode3(solidircd_cmd_svid_umode3); + pmodule_cmd_eob(solidircd_cmd_eob); + pmodule_flood_mode_check(solidircd_flood_mode_check); + pmodule_cmd_jupe(solidircd_cmd_jupe); + pmodule_valid_nick(solidircd_valid_nick); + pmodule_cmd_ctcp(solidircd_cmd_ctcp); + pmodule_set_umode(solidircd_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("Solid-IRCd 3.4.*"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set("+j"); + pmodule_ircd_flood_mode_char_remove("-j"); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/solidircd.h b/src/protocol/solidircd.h new file mode 100644 index 000000000..e75f9add6 --- /dev/null +++ b/src/protocol/solidircd.h @@ -0,0 +1,137 @@ +/* SolidIRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/*************************************************************************/ + +#define UMODE_a 0x00000001 /* umode +a - Services Admin */ +#define UMODE_h 0x00000002 /* umode +h - Helper */ +#define UMODE_i 0x00000004 /* umode +i - Invisible */ +#define UMODE_o 0x00000008 /* umode +o - Oper */ +#define UMODE_r 0x00000010 /* umode +r - registered nick */ +#define UMODE_w 0x00000020 /* umode +w - Get wallops */ +#define UMODE_A 0x00000040 /* umode +A - Server Admin */ +#define UMODE_x 0x00000080 /* umode +x - Squelch with notice */ +#define UMODE_X 0x00000100 /* umode +X - Squelch without notice */ +#define UMODE_F 0x00000200 /* umode +F - no cptr->since message rate throttle */ +#define UMODE_j 0x00000400 /* umode +j - client rejection notices */ +#define UMODE_K 0x00000800 /* umode +K - U: lined server kill messages */ +#define UMODE_O 0x00001000 /* umode +O - Local Oper */ +#define UMODE_s 0x00002000 /* umode +s - Server notices */ +#define UMODE_c 0x00004000 /* umode +c - Client connections/exits */ +#define UMODE_k 0x00008000 /* umode +k - Server kill messages */ +#define UMODE_f 0x00010000 /* umode +f - Server flood messages */ +#define UMODE_y 0x00020000 /* umode +y - Stats/links */ +#define UMODE_d 0x00040000 /* umode +d - Debug info */ +#define UMODE_g 0x00080000 /* umode +g - Globops */ +#define UMODE_b 0x00100000 /* umode +b - Chatops */ +#define UMODE_n 0x00200000 /* umode +n - Routing Notices */ +#define UMODE_m 0x00400000 /* umode +m - spambot notices */ +#define UMODE_e 0x00800000 /* umode +e - oper notices for the above +D */ +#define UMODE_D 0x01000000 /* umode +D - Hidden dccallow umode */ +#define UMODE_I 0x02000000 /* umode +I - invisible oper (masked) */ +#define UMODE_C 0x04000000 /* umode +C - conops */ +#define UMODE_v 0x10000000 /* umode +v - hostmasking */ +#define UMODE_H 0x20000000 /* umode +H - Oper Hiding */ +#define UMODE_z 0x40000000 /* umode +z - SSL */ +#define UMODE_R 0x80000000 /* umode +R - No non registered msgs */ + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ +#define CMODE_c 0x00000400 /* Colors can't be used */ +#define CMODE_M 0x00000800 /* Non-regged nicks can't send messages */ +#define CMODE_j 0x00001000 /* join throttle */ +#define CMODE_S 0x00002000 /* SSL only */ +#define CMODE_N 0x00004000 /* No Nickname change */ +#define CMODE_O 0x00008000 /* Only opers can join */ + + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void solidircd_set_umode(User * user, int ac, char **av); +void solidircd_cmd_svsnoop(char *server, int set); +void solidircd_cmd_remove_akill(char *user, char *host); +void solidircd_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void solidircd_cmd_vhost_off(User * u); +void solidircd_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void solidircd_cmd_svskill(char *source, char *user, char *buf); +void solidircd_cmd_svsmode(User * u, int ac, char **av); +void solidircd_cmd_372(char *source, char *msg); +void solidircd_cmd_372_error(char *source); +void solidircd_cmd_375(char *source); +void solidircd_cmd_376(char *source); +void solidircd_cmd_nick(char *nick, char *name, char *modes); +void solidircd_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void solidircd_cmd_mode(char *source, char *dest, char *buf); +void solidircd_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void solidircd_cmd_kick(char *source, char *chan, char *user, char *buf); +void solidircd_cmd_notice_ops(char *source, char *dest, char *buf); +void solidircd_cmd_notice(char *source, char *dest, char *buf); +void solidircd_cmd_notice2(char *source, char *dest, char *msg); +void solidircd_cmd_privmsg(char *source, char *dest, char *buf); +void solidircd_cmd_privmsg2(char *source, char *dest, char *msg); +void solidircd_cmd_serv_notice(char *source, char *dest, char *msg); +void solidircd_cmd_serv_privmsg(char *source, char *dest, char *msg); +void solidircd_cmd_bot_chan_mode(char *nick, char *chan); +void solidircd_cmd_351(char *source); +void solidircd_cmd_quit(char *source, char *buf); +void solidircd_cmd_pong(char *servname, char *who); +void solidircd_cmd_join(char *user, char *channel, time_t chantime); +void solidircd_cmd_unsqline(char *user); +void solidircd_cmd_invite(char *source, char *chan, char *nick); +void solidircd_cmd_part(char *nick, char *chan, char *buf); +void solidircd_cmd_391(char *source, char *timestr); +void solidircd_cmd_250(char *buf); +void solidircd_cmd_307(char *buf); +void solidircd_cmd_311(char *buf); +void solidircd_cmd_312(char *buf); +void solidircd_cmd_317(char *buf); +void solidircd_cmd_219(char *source, char *letter); +void solidircd_cmd_401(char *source, char *who); +void solidircd_cmd_318(char *source, char *who); +void solidircd_cmd_242(char *buf); +void solidircd_cmd_243(char *buf); +void solidircd_cmd_211(char *buf); +void solidircd_cmd_global(char *source, char *buf); +void solidircd_cmd_global_legacy(char *source, char *fmt); +void solidircd_cmd_sqline(char *mask, char *reason); +void solidircd_cmd_squit(char *servname, char *message); +void solidircd_cmd_svso(char *source, char *nick, char *flag); +void solidircd_cmd_chg_nick(char *oldnick, char *newnick); +void solidircd_cmd_svsnick(char *source, char *guest, time_t when); +void solidircd_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void solidircd_cmd_connect(int servernum); +void solidircd_cmd_svshold(char *nick); +void solidircd_cmd_release_svshold(char *nick); +void solidircd_cmd_unsgline(char *mask); +void solidircd_cmd_unszline(char *mask); +void solidircd_cmd_szline(char *mask, char *reason, char *whom); +void solidircd_cmd_sgline(char *mask, char *reason); +void solidircd_cmd_unban(char *name, char *nick); +void solidircd_cmd_svsmode_chan(char *name, char *mode, char *nick); +void solidircd_cmd_svid_umode(char *nick, time_t ts); +void solidircd_cmd_nc_change(User * u); +void solidircd_cmd_svid_umode2(User * u, char *ts); +void solidircd_cmd_svid_umode3(User * u, char *ts); +void solidircd_cmd_eob(); +int solidircd_flood_mode_check(char *value); +void solidircd_cmd_jupe(char *jserver, char *who, char *reason); +int solidircd_valid_nick(char *nick); +void solidircd_cmd_ctcp(char *source, char *dest, char *buf); diff --git a/src/protocol/ultimate2.c b/src/protocol/ultimate2.c new file mode 100644 index 000000000..eb8d29462 --- /dev/null +++ b/src/protocol/ultimate2.c @@ -0,0 +1,1714 @@ +/* Ultimate IRCD 2 functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#include "services.h" +#include "pseudo.h" +#include "ultimate2.h" + +IRCDVar myIrcd[] = { + {"UltimateIRCd 2.8.*", /* ircd name */ + "+S", /* nickserv mode */ + "+S", /* chanserv mode */ + "+S", /* memoserv mode */ + "+oS", /* hostserv mode */ + "+iS", /* operserv mode */ + "+S", /* botserv mode */ + "+Sh", /* helpserv mode */ + "+iS", /* Dev/Null mode */ + "+iS", /* Global mode */ + "+oS", /* nickserv alias mode */ + "+oS", /* chanserv alias mode */ + "+oS", /* memoserv alias mode */ + "+ioS", /* hostserv alias mode */ + "+ioS", /* operserv alias mode */ + "+oS", /* botserv alias mode */ + "+oS", /* helpserv alias mode */ + "+iS", /* Dev/Null alias mode */ + "+ioS", /* Global alias mode */ + "+pS", /* Used by BotServ Bots */ + 3, /* Chan Max Symbols */ + "-ilmnpstxAIKORS", /* Modes to Remove */ + "+ao", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + NULL, /* Mode to set for chan admin */ + NULL, /* Mode to remove for chan admin */ + "+rd", /* Mode On Reg */ + "-r+d", /* Mode on UnReg */ + "-r+d", /* Mode on Nick Change */ + 0, /* Supports SGlines */ + 1, /* Supports SQlines */ + 0, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + UMODE_p, /* Protected Umode */ + 0, /* Has Admin */ + 0, /* Chan SQlines */ + 0, /* Quit on Kill */ + 0, /* SVSMODE unban */ + 0, /* Has Protect */ + 1, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 1, /* vidents */ + 0, /* svshold */ + 1, /* time stamp on mode */ + 0, /* NICKIP */ + 0, /* O:LINE */ + 1, /* UMODE */ + 0, /* VHOST ON NICK */ + 1, /* Change RealName */ + CMODE_K, /* No Knock */ + CMODE_A, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_x, /* Vhost Mode */ + 1, /* +f */ + 1, /* +L */ + CMODE_f, + CMODE_L, + 0, + 1, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 1, /* We support TOKENS */ + 0, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 0, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + "x", /* vhost char */ + 0, /* ts6 */ + 1, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 0, /* reports sync state */ + } + , + {NULL} +}; + + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + 0, /* TSMODE */ + 0, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + 0, /* ZIP */ + 0, /* BURST */ + 0, /* TS5 */ + 0, /* TS3 */ + 0, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + 0, /* UID */ + CAPAB_KNOCK, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + CAPAB_TOKEN, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + CAPAB_CHANMODE, /* CHANMODE */ + 0, 0} +}; + +void ultiamte2_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'a': + if (add && !is_services_oper(user)) { + common_svsmode(user, "-a", NULL); + user->mode &= ~UMODE_a; + } + break; + case 'P': + if (add && !is_services_admin(user)) { + common_svsmode(user, "-P", NULL); + user->mode &= ~UMODE_P; + } + break; + case 'R': + if (add && !is_services_root(user)) { + common_svsmode(user, "-R", NULL); + user->mode &= ~UMODE_R; + } + break; + case 'd': + if (ac == 0) { + break; + } + + ac--; + av++; + user->svid = strtoul(*av, NULL, 0); + break; + case 'o': + if (add) { + opcnt++; + if (WallOper) { + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + } + display_news(user, NEWS_OPER); + if (is_services_oper(user)) { + common_svsmode(user, "+a", NULL); + user->mode |= UMODE_a; + } + if (is_services_admin(user)) { + common_svsmode(user, "+P", NULL); + user->mode |= UMODE_P; + } + if (is_services_root(user)) { + common_svsmode(user, "+R", NULL); + user->mode |= UMODE_R; + } + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + case 'x': + update_host(user); + break; + } + } +} + +unsigned long umodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, UMODE_A, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + UMODE_P, + 0, + UMODE_R, + 0, 0, 0, 0, 0, 0, 0, + 0, + 0, 0, 0, 0, 0, + 0, UMODE_a, 0, 0, 0, 0, 0, + UMODE_g, + UMODE_h, UMODE_i, 0, 0, 0, 0, 0, UMODE_o, + UMODE_p, + 0, UMODE_r, 0, 0, 0, 0, UMODE_w, + UMODE_x, + 0, + 0, + 0, 0, 0, 0, 0 +}; + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 0, + 0, 0, 0, 0, + 0, + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, + {NULL}, + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {CMODE_A, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* B */ + {0}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {0}, /* H */ + {CMODE_I, 0, NULL, NULL}, /* I */ + {0}, /* J */ + {CMODE_K, 0, NULL, NULL}, /* K */ + {CMODE_L, 0, set_redirect, cs_set_redirect}, + {0}, /* M */ + {0}, /* N */ + {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* P */ + {0}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {CMODE_S, 0, NULL, NULL}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {CMODE_f, 0, set_flood, cs_set_flood}, + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, /* i */ + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, /* m */ + {CMODE_n, 0, NULL, NULL}, /* n */ + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, /* p */ + {0}, /* q */ + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, /* s */ + {CMODE_t, 0, NULL, NULL}, /* t */ + {0}, /* u */ + {0}, /* v */ + {0}, /* w */ + {CMODE_x, 0, NULL, NULL}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'f', CMODE_f, 0, get_flood, cs_get_flood}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'x', CMODE_x, 0, NULL, NULL}, + {'A', CMODE_A, 0, NULL, NULL}, + {'I', CMODE_I, 0, NULL, NULL}, + {'K', CMODE_K, 0, NULL, NULL}, + {'L', CMODE_L, 0, get_redirect, cs_get_redirect}, + {'O', CMODE_O, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {'S', CMODE_S, 0, NULL, NULL}, + {0} +}; + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, check_valid_op}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + +int anope_event_setname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETNAME for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_realname(u, av[0]); + return MOD_CONT; +} + +int anope_event_chgname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGNAME for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_realname(u, av[1]); + return MOD_CONT; +} + +int anope_event_setident(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETIDENT for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_username(u, av[0]); + return MOD_CONT; +} + +int anope_event_chgident(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGIDENT for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_username(u, av[1]); + return MOD_CONT; +} + +int anope_event_sethost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETHOST for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_host(u, av[0]); + return MOD_CONT; +} + +int anope_event_nick(char *source, int ac, char **av) +{ + if (ac != 2) { + if (ac == 7) { + do_nick(source, av[0], av[3], av[4], av[5], av[6], + strtoul(av[2], NULL, 10), 0, 0, NULL, NULL); + } else { + do_nick(source, av[0], av[3], av[4], av[5], av[7], + strtoul(av[2], NULL, 10), strtoul(av[6], NULL, 0), 0, + NULL, NULL); + } + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + +int anope_event_chghost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGHOST for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_host(u, av[1]); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+a","-a"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("6", anope_event_away); addCoreMessage(IRCD,m); + } + m = createMessage("INVITE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("*", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("C", anope_event_join); addCoreMessage(IRCD,m); + } + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("H", anope_event_kick); addCoreMessage(IRCD,m); + } + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage(".", anope_event_kill); addCoreMessage(IRCD,m); + } + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("G", anope_event_mode); addCoreMessage(IRCD,m); + } + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("F", anope_event_motd); addCoreMessage(IRCD,m); + } + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("&", anope_event_nick); addCoreMessage(IRCD,m); + } + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("B", anope_event_notice); addCoreMessage(IRCD,m); + } + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("D", anope_event_part); addCoreMessage(IRCD,m); + } + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("<", anope_event_pass); addCoreMessage(IRCD,m); + } + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("9", anope_event_ping); addCoreMessage(IRCD,m); + } + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("!", anope_event_privmsg); addCoreMessage(IRCD,m); + } + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage(",", anope_event_quit); addCoreMessage(IRCD,m); + } + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("'", anope_event_server); addCoreMessage(IRCD,m); + } + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("-", anope_event_squit); addCoreMessage(IRCD,m); + } + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage(")", anope_event_topic); addCoreMessage(IRCD,m); + } + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("%", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("=", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("#", anope_event_whois); addCoreMessage(IRCD,m); + } + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("V", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("GLOBOPS", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("]", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("GNOTICE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("Z", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("[", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("Y", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("U", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("h", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("n", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("e", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("f", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SQLINE", anope_event_sqline); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("c", anope_event_sqline); addCoreMessage(IRCD,m); + } + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("d", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("PROTOCTL", anope_event_capab); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("_", anope_event_capab); addCoreMessage(IRCD,m); + } + m = createMessage("CHGHOST", anope_event_chghost); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("!<", anope_event_chghost); addCoreMessage(IRCD,m); + } + m = createMessage("CHGIDENT", anope_event_chgident); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("!=", anope_event_chgident); addCoreMessage(IRCD,m); + } + m = createMessage("NETINFO", anope_event_netinfo); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("u", anope_event_netinfo); addCoreMessage(IRCD,m); + } + m = createMessage("SNETINFO", anope_event_snetinfo); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("!1", anope_event_snetinfo); addCoreMessage(IRCD,m); + } + m = createMessage("SETHOST", anope_event_sethost); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("!8", anope_event_sethost); addCoreMessage(IRCD,m); + } + m = createMessage("SETIDENT", anope_event_setident); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("!9", anope_event_setident); addCoreMessage(IRCD,m); + } + m = createMessage("SETNAME", anope_event_setname); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("!;", anope_event_setname); addCoreMessage(IRCD,m); + } + m = createMessage("VCTRL", anope_event_vctrl); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("!I", anope_event_vctrl); addCoreMessage(IRCD,m); + } + m = createMessage("REHASH", anope_event_rehash); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("CREDITS", anope_event_credits); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + + +} + +/* *INDENT-ON* */ + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +void ultimate2_cmd_sqline(char *mask, char *reason) +{ + send_cmd(NULL, "SQLINE %s :%s", mask, reason); +} + +void ultimate2_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "SVSNOOP %s %s", server, (set ? "+" : "-")); +} + +void ultimate2_cmd_svsadmin(char *server, int set) +{ + ultimate2_cmd_svsnoop(server, set); +} + +void ultimate2_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, "RAKILL %s %s", host, user); +} + + +void ultimate2_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "TOPIC %s %s %lu :%s", chan, whosetit, + (unsigned long int) when, topic); +} + +void ultimate2_cmd_vhost_off(User * u) +{ + /* does not support removing vhosting */ +} + +void ultimate2_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + if (vIdent) { + send_cmd(ServerName, "CHGIDENT %s %s", nick, vIdent); + } + send_cmd(s_HostServ, "SVSMODE %s +x", nick); + send_cmd(ServerName, "CHGHOST %s %s", nick, vhost); +} + +void ultimate2_cmd_unsqline(char *user) +{ + send_cmd(NULL, "UNSQLINE %s", user); +} + +void ultimate2_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(user, "JOIN %s", channel); +} + +void ultimate2_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(NULL, "AKILL %s %s :%s", host, user, reason); +} + +void ultimate2_cmd_svskill(char *source, char *user, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "KILL %s :%s", user, buf); +} + +void ultimate2_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(ServerName, "SVSMODE %s %s%s%s", u->nick, av[0], + (ac == 2 ? " " : ""), (ac == 2 ? av[1] : "")); +} + +void ultimate2_cmd_capab() +{ + if (UseTokens) { + send_cmd(NULL, "PROTOCTL NOQUIT TOKEN SILENCE KNOCK"); + } else { + send_cmd(NULL, "PROTOCTL NOQUIT SILENCE KNOCK"); + } +} + + +/* PASS */ +void ultimate2_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS :%s", pass); +} + +/* SERVER name hop descript */ +void ultimate2_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript); +} + +/* PONG */ +void ultimate2_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +void ultimate2_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + ultimate2_cmd_capab(); + if (servernum == 1) + ultimate2_cmd_pass(RemotePassword); + if (servernum == 2) + ultimate2_cmd_pass(RemotePassword2); + if (servernum == 3) + ultimate2_cmd_pass(RemotePassword3); + ultimate2_cmd_server(ServerName, 1, ServerDesc); +} + +/* CHGHOST */ +void ultimate2_cmd_chghost(char *nick, char *vhost) +{ + if (!nick || !vhost) { + return; + } + send_cmd(ServerName, "CHGHOST %s %s", nick, vhost); +} + +/* CHGIDENT */ +void ultimate2_cmd_chgident(char *nick, char *vIdent) +{ + if (!nick || !vIdent) { + return; + } + send_cmd(ServerName, "CHGIDENT %s %s", nick, vIdent); +} + +/* INVITE */ +void ultimate2_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +/* PART */ +void ultimate2_cmd_part(char *nick, char *chan, char *buf) +{ + if (!nick || !chan) { + return; + } + + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + +/* 391 */ +void ultimate2_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void ultimate2_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void ultimate2_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void ultimate2_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void ultimate2_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void ultimate2_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void ultimate2_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void ultimate2_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void ultimate2_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void ultimate2_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void ultimate2_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void ultimate2_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +/* GLOBOPS */ +void ultimate2_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "GLOBOPS :%s", buf); +} + +/* SQUIT */ +void ultimate2_cmd_squit(char *servname, char *message) +{ + if (!servname || !message) { + return; + } + + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +/* SVSO */ +void ultimate2_cmd_svso(char *source, char *nick, char *flag) +{ + if (!source || !nick || !flag) { + return; + } + + send_cmd(source, "SVSO %s %s", nick, flag); +} + +/* NICK <newnick> */ +void ultimate2_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +/* SVSNICK */ +void ultimate2_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "SVSNICK %s %s :%ld", source, guest, (long int) when); +} + +/* Events */ + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + ultimate2_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac != 4) + return MOD_CONT; + do_topic(source, ac, av); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + + +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +/* EVENT: SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + do_server(source, av[0], av[1], av[2], NULL); + return MOD_CONT; +} + + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +void ultimate2_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +void ultimate2_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + + +void ultimate2_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + ultimate2_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void ultimate2_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void ultimate2_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void ultimate2_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void ultimate2_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $%s :%s", dest, msg); +} + +void ultimate2_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $%s :%s", dest, msg); +} + +void ultimate2_cmd_nick(char *nick, char *name, char *mode) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s 0 :%s", nick, + (long int) time(NULL), ServiceUser, ServiceHost, ServerName, + name); + anope_cmd_mode(nick, nick, "%s", mode); + ultimate2_cmd_sqline(nick, "Reserved for services"); +} + +void ultimate2_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +/* QUIT */ +void ultimate2_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +void ultimate2_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "MODE %s %s", dest, buf); +} + +void ultimate2_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s 0 :%s", nick, + (long int) time(NULL), user, host, ServerName, real); + anope_cmd_mode(nick, nick, "%s", modes); + ultimate2_cmd_sqline(nick, "Reserved for services"); +} + +void ultimate2_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void ultimate2_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void ultimate2_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void ultimate2_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +void ultimate2_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s %s", ircd->botchanumode, nick, nick); +} + +/* SVSHOLD - set */ +void ultimate2_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void ultimate2_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* UNSGLINE */ +void ultimate2_cmd_unsgline(char *mask) +{ + /* Not Supported by this IRCD */ +} + +/* UNSZLINE */ +void ultimate2_cmd_unszline(char *mask) +{ + /* Not Supported by this IRCD */ +} + +/* SZLINE */ +void ultimate2_cmd_szline(char *mask, char *reason, char *whom) +{ + /* Not Supported by this IRCD */ +} + +/* SGLINE */ +void ultimate2_cmd_sgline(char *mask, char *reason) +{ + /* Not Supported by this IRCD */ +} + +void ultimate2_cmd_guest_nick(char *nick, char *user, char *host, + char *real, char *modes) +{ + send_cmd(NULL, "NICK %s 1 %ld %s %s %s 0 :%s", nick, + (long int) time(NULL), user, host, ServerName, real); + anope_cmd_mode(nick, "MODE %s %s", nick, modes); +} + + +void ultimate2_cmd_unban(char *name, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE channel modes */ + +void ultimate2_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void ultimate2_cmd_svid_umode(char *nick, time_t ts) +{ + send_cmd(ServerName, "SVSMODE %s +d 1", nick); +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void ultimate2_cmd_nc_change(User * u) +{ + common_svsmode(u, "-r+d", "1"); +} + +/* SVSMODE +r */ +void ultimate2_cmd_svid_umode2(User * u, char *ts) +{ + if (u->svid != u->timestamp) { + common_svsmode(u, "+rd", ts); + } else { + common_svsmode(u, "+r", NULL); + } +} + +void ultimate2_cmd_svid_umode3(User * u, char *ts) +{ + /* not used */ +} + +int anope_event_notice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_vctrl(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_netinfo(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_snetinfo(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_sqline(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +/* +** svsjoin +** +** parv[0] - sender +** parv[1] - nick to make join +** parv[2] - channel(s) to join +*/ +void ultimate2_cmd_svsjoin(char *source, char *nick, char *chan) +{ + send_cmd(source, "SVSJOIN %s %s", nick, chan); +} + +/* +** svspart +** +** parv[0] - sender +** parv[1] - nick to make part +** parv[2] - channel(s) to part +*/ +void ultimate2_cmd_svspart(char *source, char *nick, char *chan) +{ + send_cmd(source, "SVSPART %s %s", nick, chan); +} + +void ultimate2_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + +void ultimate2_cmd_eob() +{ + /* not supported */ +} + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_credits(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int ultiamte2_flood_mode_check(char *value) +{ + char *dp, *end; + + if (value && *value != ':' + && (strtoul((*value == '*' ? value + 1 : value), &dp, 10) > 0) + && (*dp == ':') && (*(++dp) != 0) && (strtoul(dp, &end, 10) > 0) + && (*end == 0)) { + return 1; + } else { + return 0; + } +} + +int anope_event_error(char *source, int ac, char **av) +{ + if (av[0]) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + +void ultimate2_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + ultimate2_cmd_squit(jserver, rbuf); + ultimate2_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* GLOBOPS - to handle old WALLOPS */ +void ultimate2_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "GLOBOPS :%s", fmt); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int ultiamte2_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void ultimate2_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(ultimate2_cmd_svsnoop); + pmodule_cmd_remove_akill(ultimate2_cmd_remove_akill); + pmodule_cmd_topic(ultimate2_cmd_topic); + pmodule_cmd_vhost_off(ultimate2_cmd_vhost_off); + pmodule_cmd_akill(ultimate2_cmd_akill); + pmodule_cmd_svskill(ultimate2_cmd_svskill); + pmodule_cmd_svsmode(ultimate2_cmd_svsmode); + pmodule_cmd_372(ultimate2_cmd_372); + pmodule_cmd_372_error(ultimate2_cmd_372_error); + pmodule_cmd_375(ultimate2_cmd_375); + pmodule_cmd_376(ultimate2_cmd_376); + pmodule_cmd_nick(ultimate2_cmd_nick); + pmodule_cmd_guest_nick(ultimate2_cmd_guest_nick); + pmodule_cmd_mode(ultimate2_cmd_mode); + pmodule_cmd_bot_nick(ultimate2_cmd_bot_nick); + pmodule_cmd_kick(ultimate2_cmd_kick); + pmodule_cmd_notice_ops(ultimate2_cmd_notice_ops); + pmodule_cmd_notice(ultimate2_cmd_notice); + pmodule_cmd_notice2(ultimate2_cmd_notice2); + pmodule_cmd_privmsg(ultimate2_cmd_privmsg); + pmodule_cmd_privmsg2(ultimate2_cmd_privmsg2); + pmodule_cmd_serv_notice(ultimate2_cmd_serv_notice); + pmodule_cmd_serv_privmsg(ultimate2_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(ultimate2_cmd_bot_chan_mode); + pmodule_cmd_351(ultimate2_cmd_351); + pmodule_cmd_quit(ultimate2_cmd_quit); + pmodule_cmd_pong(ultimate2_cmd_pong); + pmodule_cmd_join(ultimate2_cmd_join); + pmodule_cmd_unsqline(ultimate2_cmd_unsqline); + pmodule_cmd_invite(ultimate2_cmd_invite); + pmodule_cmd_part(ultimate2_cmd_part); + pmodule_cmd_391(ultimate2_cmd_391); + pmodule_cmd_250(ultimate2_cmd_250); + pmodule_cmd_307(ultimate2_cmd_307); + pmodule_cmd_311(ultimate2_cmd_311); + pmodule_cmd_312(ultimate2_cmd_312); + pmodule_cmd_317(ultimate2_cmd_317); + pmodule_cmd_219(ultimate2_cmd_219); + pmodule_cmd_401(ultimate2_cmd_401); + pmodule_cmd_318(ultimate2_cmd_318); + pmodule_cmd_242(ultimate2_cmd_242); + pmodule_cmd_243(ultimate2_cmd_243); + pmodule_cmd_211(ultimate2_cmd_211); + pmodule_cmd_global(ultimate2_cmd_global); + pmodule_cmd_global_legacy(ultimate2_cmd_global_legacy); + pmodule_cmd_sqline(ultimate2_cmd_sqline); + pmodule_cmd_squit(ultimate2_cmd_squit); + pmodule_cmd_svso(ultimate2_cmd_svso); + pmodule_cmd_chg_nick(ultimate2_cmd_chg_nick); + pmodule_cmd_svsnick(ultimate2_cmd_svsnick); + pmodule_cmd_vhost_on(ultimate2_cmd_vhost_on); + pmodule_cmd_connect(ultimate2_cmd_connect); + pmodule_cmd_svshold(ultimate2_cmd_svshold); + pmodule_cmd_release_svshold(ultimate2_cmd_release_svshold); + pmodule_cmd_unsgline(ultimate2_cmd_unsqline); + pmodule_cmd_unszline(ultimate2_cmd_unszline); + pmodule_cmd_szline(ultimate2_cmd_szline); + pmodule_cmd_sgline(ultimate2_cmd_sgline); + pmodule_cmd_unban(ultimate2_cmd_unban); + pmodule_cmd_svsmode_chan(ultimate2_cmd_svsmode_chan); + pmodule_cmd_svid_umode(ultimate2_cmd_svid_umode); + pmodule_cmd_nc_change(ultimate2_cmd_nc_change); + pmodule_cmd_svid_umode2(ultimate2_cmd_svid_umode2); + pmodule_cmd_svid_umode3(ultimate2_cmd_svid_umode3); + pmodule_cmd_eob(ultimate2_cmd_eob); + pmodule_flood_mode_check(ultiamte2_flood_mode_check); + pmodule_cmd_jupe(ultimate2_cmd_jupe); + pmodule_valid_nick(ultiamte2_valid_nick); + pmodule_cmd_ctcp(ultimate2_cmd_ctcp); + pmodule_set_umode(ultiamte2_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("UltimateIRCd 2.8.2+"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set("+f"); + pmodule_ircd_flood_mode_char_remove("-f"); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/ultimate2.h b/src/protocol/ultimate2.h new file mode 100644 index 000000000..dcbee95ec --- /dev/null +++ b/src/protocol/ultimate2.h @@ -0,0 +1,120 @@ +/* Ultimate IRCD 2 functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#define UMODE_a 0x00000001 +#define UMODE_h 0x00000002 +#define UMODE_i 0x00000004 +#define UMODE_o 0x00000008 +#define UMODE_r 0x00000010 +#define UMODE_w 0x00000020 +#define UMODE_A 0x00000040 +#define UMODE_p 0x04000000 +#define UMODE_R 0x08000000 +#define UMODE_P 0x20000000 +#define UMODE_g 0x80000000 +#define UMODE_x 0x40000000 + + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_f 0x00000400 +#define CMODE_x 0x00000800 +#define CMODE_A 0x00001000 +#define CMODE_I 0x00002000 +#define CMODE_K 0x00004000 +#define CMODE_L 0x00008000 +#define CMODE_O 0x00010000 +#define CMODE_S 0x00020000 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void ultimate2_set_umode(User * user, int ac, char **av); +void ultimate2_cmd_svsnoop(char *server, int set); +void ultimate2_cmd_remove_akill(char *user, char *host); +void ultimate2_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void ultimate2_cmd_vhost_off(User * u); +void ultimate2_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void ultimate2_cmd_svskill(char *source, char *user, char *buf); +void ultimate2_cmd_svsmode(User * u, int ac, char **av); +void ultimate2_cmd_372(char *source, char *msg); +void ultimate2_cmd_372_error(char *source); +void ultimate2_cmd_375(char *source); +void ultimate2_cmd_376(char *source); +void ultimate2_cmd_nick(char *nick, char *name, char *modes); +void ultimate2_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void ultimate2_cmd_mode(char *source, char *dest, char *buf); +void ultimate2_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void ultimate2_cmd_kick(char *source, char *chan, char *user, char *buf); +void ultimate2_cmd_notice_ops(char *source, char *dest, char *buf); +void ultimate2_cmd_notice(char *source, char *dest, char *buf); +void ultimate2_cmd_notice2(char *source, char *dest, char *msg); +void ultimate2_cmd_privmsg(char *source, char *dest, char *buf); +void ultimate2_cmd_privmsg2(char *source, char *dest, char *msg); +void ultimate2_cmd_serv_notice(char *source, char *dest, char *msg); +void ultimate2_cmd_serv_privmsg(char *source, char *dest, char *msg); +void ultimate2_cmd_bot_chan_mode(char *nick, char *chan); +void ultimate2_cmd_351(char *source); +void ultimate2_cmd_quit(char *source, char *buf); +void ultimate2_cmd_pong(char *servname, char *who); +void ultimate2_cmd_join(char *user, char *channel, time_t chantime); +void ultimate2_cmd_unsqline(char *user); +void ultimate2_cmd_invite(char *source, char *chan, char *nick); +void ultimate2_cmd_part(char *nick, char *chan, char *buf); +void ultimate2_cmd_391(char *source, char *timestr); +void ultimate2_cmd_250(char *buf); +void ultimate2_cmd_307(char *buf); +void ultimate2_cmd_311(char *buf); +void ultimate2_cmd_312(char *buf); +void ultimate2_cmd_317(char *buf); +void ultimate2_cmd_219(char *source, char *letter); +void ultimate2_cmd_401(char *source, char *who); +void ultimate2_cmd_318(char *source, char *who); +void ultimate2_cmd_242(char *buf); +void ultimate2_cmd_243(char *buf); +void ultimate2_cmd_211(char *buf); +void ultimate2_cmd_global(char *source, char *buf); +void ultimate2_cmd_global_legacy(char *source, char *fmt); +void ultimate2_cmd_sqline(char *mask, char *reason); +void ultimate2_cmd_squit(char *servname, char *message); +void ultimate2_cmd_svso(char *source, char *nick, char *flag); +void ultimate2_cmd_chg_nick(char *oldnick, char *newnick); +void ultimate2_cmd_svsnick(char *source, char *guest, time_t when); +void ultimate2_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void ultimate2_cmd_connect(int servernum); +void ultimate2_cmd_svshold(char *nick); +void ultimate2_cmd_release_svshold(char *nick); +void ultimate2_cmd_unsgline(char *mask); +void ultimate2_cmd_unszline(char *mask); +void ultimate2_cmd_szline(char *mask, char *reason, char *whom); +void ultimate2_cmd_sgline(char *mask, char *reason); +void ultimate2_cmd_unban(char *name, char *nick); +void ultimate2_cmd_svsmode_chan(char *name, char *mode, char *nick); +void ultimate2_cmd_svid_umode(char *nick, time_t ts); +void ultimate2_cmd_nc_change(User * u); +void ultimate2_cmd_svid_umode2(User * u, char *ts); +void ultimate2_cmd_svid_umode3(User * u, char *ts); +void ultimate2_cmd_eob(); +int ultimate2_flood_mode_check(char *value); +void ultimate2_cmd_jupe(char *jserver, char *who, char *reason); +int ultimate2_valid_nick(char *nick); +void ultimate2_cmd_ctcp(char *source, char *dest, char *buf); + + diff --git a/src/protocol/ultimate3.c b/src/protocol/ultimate3.c new file mode 100644 index 000000000..dedfb9077 --- /dev/null +++ b/src/protocol/ultimate3.c @@ -0,0 +1,1797 @@ +/* Ultimate IRCD 3 functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#include "services.h" +#include "pseudo.h" +#include "ultimate3.h" + +IRCDVar myIrcd[] = { + {"UltimateIRCd 3.0.*", /* ircd name */ + "+S", /* nickserv mode */ + "+S", /* chanserv mode */ + "+S", /* memoserv mode */ + "+o", /* hostserv mode */ + "+iS", /* operserv mode */ + "+S", /* botserv mode */ + "+Sh", /* helpserv mode */ + "+iS", /* Dev/Null mode */ + "+iS", /* Global mode */ + "+o", /* nickserv alias mode */ + "+o", /* chanserv alias mode */ + "+o", /* memoserv alias mode */ + "+io", /* hostserv alias mode */ + "+io", /* operserv alias mode */ + "+o", /* botserv alias mode */ + "+h", /* helpserv alias mode */ + "+i", /* Dev/Null alias mode */ + "+io", /* Global alias mode */ + "+S", /* Used by BotServ Bots */ + 5, /* Chan Max Symbols */ + "-ilmnpqstRKAO", /* Modes to Remove */ + "+o", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 0, /* Has Owner */ + NULL, /* Mode to set for an owner */ + NULL, /* Mode to unset for an owner */ + "+a", /* Mode to set for channel admin */ + "-a", /* Mode to unset for channel admin */ + "+rd", /* Mode On Reg */ + "-r+d", /* Mode on UnReg */ + "+d", /* Mode on Nick Change */ + 1, /* Supports SGlines */ + 1, /* Supports SQlines */ + 1, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + UMODE_p, /* Protected Umode */ + 1, /* Has Admin */ + 0, /* Chan SQlines */ + 0, /* Quit on Kill */ + 1, /* SVSMODE unban */ + 0, /* Has Protect */ + 0, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 0, /* vidents */ + 0, /* svshold */ + 1, /* time stamp on mode */ + 1, /* NICKIP */ + 0, /* O:LINE */ + 1, /* UMODE */ + 1, /* VHOST ON NICK */ + 0, /* Change RealName */ + CMODE_K, /* No Knock */ + CMODE_A, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_x, /* Vhost Mode */ + 0, /* +f */ + 0, /* +L */ + 0, /* +f Mode */ + 0, /* +L Mode */ + 1, /* On nick change check if they could be identified */ + 1, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 0, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 1, /* Sglines are enforced */ + "x", /* vhost char */ + 0, /* ts6 */ + 1, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 1, /* reports sync state */ + } + , + {NULL} +}; + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + CAPAB_TSMODE, /* TSMODE */ + CAPAB_UNCONNECT, /* UNCONNECT */ + 0, /* NICKIP */ + CAPAB_NSJOIN, /* SJOIN */ + CAPAB_ZIP, /* ZIP */ + CAPAB_BURST, /* BURST */ + CAPAB_TS5, /* TS5 */ + 0, /* TS3 */ + CAPAB_DKEY, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + 0, /* UID */ + 0, /* KNOCK */ + CAPAB_CLIENT, /* CLIENT */ + CAPAB_IPV6, /* IPV6 */ + CAPAB_SSJ5, /* SSJ5 */ + 0, /* SN2 */ + 0, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + CAPAB_DODKEY, /* DODKEY */ + CAPAB_DOZIP, /* DOZIP */ + 0, 0, 0} +}; + +void ultimate3_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'a': + if (add && !is_services_oper(user)) { + common_svsmode(user, "-a", NULL); + user->mode &= ~UMODE_a; + } + break; + case 'P': + if (add && !is_services_admin(user)) { + common_svsmode(user, "-P", NULL); + user->mode &= ~UMODE_P; + } + break; + case 'Z': + if (add && !is_services_root(user)) { + common_svsmode(user, "-Z", NULL); + user->mode &= ~UMODE_Z; + } + break; + case 'd': + if (ac == 0) { + alog("user: umode +d with no parameter (?) for user %s", + user->nick); + break; + } + + ac--; + av++; + user->svid = strtoul(*av, NULL, 0); + break; + case 'o': + if (add) { + opcnt++; + if (WallOper) { + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + } + display_news(user, NEWS_OPER); + if (is_services_oper(user)) { + common_svsmode(user, "+a", NULL); + user->mode |= UMODE_a; + } + if (is_services_admin(user)) { + common_svsmode(user, "+P", NULL); + user->mode |= UMODE_P; + } + if (is_services_root(user)) { + common_svsmode(user, "+Z", NULL); + user->mode |= UMODE_R; + } + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + case 'x': + update_host(user); + break; + } + } +} + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + UMODE_A, 0, 0, /* A B C */ + UMODE_D, 0, 0, /* D E F */ + 0, 0, 0, /* G H I */ + 0, 0, 0, /* J K L */ + 0, 0, UMODE_0, /* M N O */ + UMODE_P, 0, UMODE_R, /* P Q R */ + UMODE_S, 0, 0, /* S T U */ + 0, UMODE_W, 0, /* V W X */ + 0, /* Y */ + UMODE_Z, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, 0, 0, /* a b c */ + UMODE_d, 0, 0, /* d e f */ + 0, UMODE_h, UMODE_i, /* g h i */ + 0, 0, 0, /* j k l */ + 0, 0, UMODE_o, /* m n o */ + UMODE_p, 0, UMODE_r, /* p q r */ + 0, 0, 0, /* s t u */ + 0, UMODE_w, UMODE_x, /* v w x */ + 0, /* y */ + 0, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 'a', /* (33) ! Channel Admins */ + 0, 0, 0, + 'h', /* (37) % Channel halfops */ + 0, 0, 0, 0, + 0, + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, + {NULL}, + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {CMODE_A, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* B */ + {0}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {CMODE_K, 0, NULL, NULL}, /* K */ + {0}, /* L */ + {CMODE_M, 0, NULL, NULL}, /* M */ + {CMODE_N, 0, NULL, NULL}, /* N */ + {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* P */ + {0}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {CMODE_S, 0, NULL, NULL}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, /* i */ + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, /* m */ + {CMODE_n, 0, NULL, NULL}, /* n */ + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, /* p */ + {CMODE_q, 0, NULL, NULL}, /* q */ + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, /* s */ + {CMODE_t, 0, NULL, NULL}, /* t */ + {0}, /* u */ + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'c', CMODE_c, 0, NULL, NULL}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'q', CMODE_q, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'A', CMODE_A, 0, NULL, NULL}, + {'K', CMODE_K, 0, NULL, NULL}, + {'M', CMODE_M, 0, NULL, NULL}, + {'N', CMODE_N, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {'S', CMODE_S, 0, NULL, NULL}, + {0} +}; + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {CUS_PROTECT, CUF_PROTECT_BOTSERV, check_valid_admin}, + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, check_valid_op}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {0}, /* q */ + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + +/* SVSMODE -b */ +void ultimate3_cmd_unban(char *name, char *nick) +{ + ultimate3_cmd_svsmode_chan(name, "-b", nick); +} + + +/* SVSMODE channel modes */ + +void ultimate3_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + if (nick) { + send_cmd(ServerName, "SVSMODE %s %s %s", name, mode, nick); + } else { + send_cmd(ServerName, "SVSMODE %s %s", name, mode); + } +} + +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + + +/* +** NICK - new +** source = NULL +** parv[0] = nickname +** parv[1] = hopcount +** parv[2] = timestamp +** parv[3] = modes +** parv[4] = username +** parv[5] = hostname +** parv[6] = server +** parv[7] = servicestamp +** parv[8] = IP +** parv[9] = info +** NICK - change +** source = oldnick +** parv[0] = new nickname +** parv[1] = hopcount +*/ +int anope_event_nick(char *source, int ac, char **av) +{ + if (ac != 2) { + User *user = do_nick(source, av[0], av[4], av[5], av[6], av[9], + strtoul(av[2], NULL, 10), strtoul(av[7], NULL, + 0), + strtoul(av[8], NULL, 0), "*", NULL); + if (user) + anope_set_umode(user, 1, &av[3]); + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + +int anope_event_sethost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: SETHOST for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_host(u, av[1]); + return MOD_CONT; +} + +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +/* +** CLIENT +** source = NULL +** parv[0] = nickname Trystan +** parv[1] = hopcount 1 +** parv[2] = timestamp 1090083810 +** parv[3] = modes +ix +** parv[4] = modes ? + +** parv[5] = username Trystan +** parv[6] = hostname c-24-2-101-227.client.comcast.net +** parv[7] = vhost 3223f75b.2b32ee69.client.comcast.net +** parv[8] = server WhiteRose.No.Eu.Shadow-Realm.org +** parv[9] = svid 0 +** parv[10] = ip 402810339 +** parv[11] = info Dreams are answers to questions not yet asked +*/ +int anope_event_client(char *source, int ac, char **av) +{ + if (ac != 2) { + User *user = do_nick(source, av[0], av[5], av[6], av[8], av[11], + strtoul(av[2], NULL, 10), strtoul(av[9], NULL, + 0), + strtoul(av[10], NULL, 0), av[7], NULL); + if (user) { + anope_set_umode(user, 1, &av[3]); + } + } + return MOD_CONT; +} + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + updateProtectDetails("ADMIN","ADMINME","!admin","!deadmin","AUTOADMIN","+a","-a"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_invite); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GLOBOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GNOTICE", anope_event_gnotice); addCoreMessage(IRCD,m); + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SQLINE", anope_event_sqline); addCoreMessage(IRCD,m); + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("CS", anope_event_cs); addCoreMessage(IRCD,m); + m = createMessage("HS", anope_event_hs); addCoreMessage(IRCD,m); + m = createMessage("MS", anope_event_ms); addCoreMessage(IRCD,m); + m = createMessage("NS", anope_event_ns); addCoreMessage(IRCD,m); + m = createMessage("OS", anope_event_os); addCoreMessage(IRCD,m); + m = createMessage("RS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SGLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("SS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m); + m = createMessage("SZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSGLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SETHOST", anope_event_sethost); addCoreMessage(IRCD,m); + m = createMessage("NETINFO", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GCONNECT", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("NETGLOBAL", anope_event_netglobal); addCoreMessage(IRCD,m); + m = createMessage("CHATOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("NETCTRL", anope_event_netctrl); addCoreMessage(IRCD,m); + m = createMessage("CLIENT", anope_event_client); addCoreMessage(IRCD,m); + m = createMessage("SMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + m = createMessage("BURST", anope_event_burst); addCoreMessage(IRCD,m); + m = createMessage("REHASH", anope_event_rehash); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("CREDITS", anope_event_credits); addCoreMessage(IRCD,m); + m = createMessage("SMODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("EOBURST", anope_event_eob); addCoreMessage(IRCD,m); +} + +/* *INDENT-ON* */ + + +void ultimate3_cmd_sqline(char *mask, char *reason) +{ + if (!mask || !reason) { + return; + } + + send_cmd(NULL, "SQLINE %s :%s", mask, reason); +} + +void ultimate3_cmd_unsgline(char *mask) +{ + send_cmd(NULL, "UNSGLINE 0 :%s", mask); +} + +void ultimate3_cmd_unszline(char *mask) +{ + send_cmd(NULL, "UNSZLINE 0 %s", mask); +} + +/* As of alpha27 (one after our offical support szline was removed */ +/* quote the changelog --- + Complete rewrite of the kline/akill/zline system. (s)zlines no longer exist. + K: lines set on IP addresses without username portions (or *) are treated as Z: lines used to be. +*/ +void ultimate3_cmd_szline(char *mask, char *reason, char *whom) +{ + send_cmd(NULL, "AKILL %s * %d %s %ld :%s", mask, 86400 * 2, whom, + (long int) time(NULL), reason); + /* leaving this in here in case some legacy user asks for it */ + /* send_cmd(NULL, "SZLINE %s :%s", mask, reason); */ +} + +void ultimate3_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "SVSNOOP %s %s", server, (set ? "+" : "-")); +} + +void ultimate3_cmd_svsadmin(char *server, int set) +{ + ultimate3_cmd_svsnoop(server, set); +} + +void ultimate3_cmd_sgline(char *mask, char *reason) +{ + send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason); +} + +void ultimate3_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, "RAKILL %s %s", host, user); +} + +void ultimate3_cmd_vhost_off(User * u) +{ + send_cmd(s_HostServ, "SVSMODE %s -x", u->nick); + notice_lang(s_HostServ, u, HOST_OFF_UNREAL, u->nick, ircd->vhostchar); +} + +void ultimate3_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + send_cmd(s_HostServ, "SVSMODE %s +x", nick); + send_cmd(ServerName, "SETHOST %s %s", nick, vhost); +} + +void ultimate3_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(user, "SJOIN %ld %s", (long int) chantime, channel); +} + +void ultimate3_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(NULL, "AKILL %s %s %d %s %ld :%s", host, user, 86400 * 2, who, + (long int) time(NULL), reason); +} + +void ultimate3_cmd_svskill(char *source, char *user, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "SVSKILL %s :%s", user, buf); +} + + +void ultimate3_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(ServerName, "SVSMODE %s %ld %s%s%s", u->nick, + (long int) u->timestamp, av[0], (ac == 2 ? " " : ""), + (ac == 2 ? av[1] : "")); +} + +void anope_squit(char *servname, char *message) +{ + send_cmd(servname, "SQUIT %s :%s", servname, message); +} + +void anope_pong(char *servname) +{ + send_cmd(servname, "PONG %s", servname); +} + +/* Events */ + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + ultimate3_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac != 4) + return MOD_CONT; + do_topic(source, ac, av); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + + +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + +/* EVENT : OS */ +int anope_event_os(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_OperServ, av[0]); + return MOD_CONT; +} + +/* EVENT : NS */ +int anope_event_ns(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_NickServ, av[0]); + return MOD_CONT; +} + +/* EVENT : MS */ +int anope_event_ms(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_MemoServ, av[0]); + return MOD_CONT; +} + +/* EVENT : HS */ +int anope_event_hs(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_HostServ, av[0]); + return MOD_CONT; +} + +/* EVENT : CS */ +int anope_event_cs(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_ChanServ, av[0]); + return MOD_CONT; +} + + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +int anope_event_setname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETNAME for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_realname(u, av[0]); + return MOD_CONT; +} + +int anope_event_chgname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGNAME for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_realname(u, av[1]); + return MOD_CONT; +} + +int anope_event_setident(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETIDENT for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_username(u, av[0]); + return MOD_CONT; +} +int anope_event_chgident(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGIDENT for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_username(u, av[1]); + return MOD_CONT; +} + +/* EVENT: SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + do_server(source, av[0], av[1], av[2], NULL); + return MOD_CONT; +} + + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +void ultimate3_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "TOPIC %s %s %lu :%s", chan, whosetit, + (unsigned long int) when, topic); +} + +void ultimate3_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void ultimate3_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void ultimate3_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void ultimate3_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +void ultimate3_cmd_nick(char *nick, char *name, char *modes) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "CLIENT %s 1 %ld %s + %s %s * %s 0 0 :%s", nick, + (long int) time(NULL), modes, ServiceUser, ServiceHost, + ServerName, name); + ultimate3_cmd_sqline(nick, "Reserved for services"); +} + +void ultimate3_cmd_guest_nick(char *nick, char *user, char *host, + char *real, char *modes) +{ + send_cmd(NULL, "CLIENT %s 1 %ld %s + %s %s * %s 0 0 :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, real); +} + +void ultimate3_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "MODE %s %s", dest, buf); +} + +void ultimate3_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "CLIENT %s 1 %ld %s + %s %s * %s 0 0 :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, real); + ultimate3_cmd_sqline(nick, "Reserved for services"); +} + +void ultimate3_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +void ultimate3_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + + +void ultimate3_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + ultimate3_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void ultimate3_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void ultimate3_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void ultimate3_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void ultimate3_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $%s :%s", dest, msg); +} + +void ultimate3_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $%s :%s", dest, msg); +} + +void ultimate3_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s %s", ircd->botchanumode, nick, nick); +} + +void ultimate3_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +/* QUIT */ +void ultimate3_cmd_quit(char *source, char *buf) +{ + if (!buf) { + return; + } + + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +/* PROTOCTL */ +void ultimate3_cmd_capab() +{ + send_cmd(NULL, + "CAPAB TS5 NOQUIT SSJ5 BURST UNCONNECT TSMODE NICKIP CLIENT"); +} + +/* PASS */ +void ultimate3_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS %s :TS", pass); +} + +/* SERVER name hop descript */ +/* Unreal 3.2 actually sends some info about itself in the descript area */ +void ultimate3_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript); +} + +/* PONG */ +void ultimate3_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +/* UNSQLINE */ +void ultimate3_cmd_unsqline(char *user) +{ + if (!user) { + return; + } + send_cmd(NULL, "UNSQLINE %s", user); +} + +/* CHGHOST */ +void ultimate3_cmd_chghost(char *nick, char *vhost) +{ + if (!nick || !vhost) { + return; + } + send_cmd(ServerName, "CHGHOST %s %s", nick, vhost); +} + +/* CHGIDENT */ +void ultimate3_cmd_chgident(char *nick, char *vIdent) +{ + if (!nick || !vIdent) { + return; + } + send_cmd(ServerName, "CHGIDENT %s %s", nick, vIdent); +} + +/* INVITE */ +void ultimate3_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +/* PART */ +void ultimate3_cmd_part(char *nick, char *chan, char *buf) +{ + + if (!nick || !chan) { + return; + } + + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + +/* 391 */ +void ultimate3_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void ultimate3_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void ultimate3_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void ultimate3_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void ultimate3_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void ultimate3_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void ultimate3_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void ultimate3_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void ultimate3_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void ultimate3_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void ultimate3_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void ultimate3_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +/* GLOBOPS */ +void ultimate3_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "GLOBOPS :%s", buf); +} + +/* SQUIT */ +void ultimate3_cmd_squit(char *servname, char *message) +{ + if (!servname || !message) { + return; + } + + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +/* SVSO */ +void ultimate3_cmd_svso(char *source, char *nick, char *flag) +{ + if (!source || !nick || !flag) { + return; + } + + send_cmd(source, "SVSO %s %s", nick, flag); +} + +/* NICK <newnick> */ +void ultimate3_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +/* SVSNICK */ +void ultimate3_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "SVSNICK %s %s :%ld", source, guest, (long int) when); +} + +/* Functions that use serval cmd functions */ +/* + * SVINFO + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +void ultimate3_cmd_svinfo() +{ + send_cmd(NULL, "SVINFO 5 3 0 :%ld", (long int) time(NULL)); +} + +void ultimate3_cmd_burst() +{ + send_cmd(NULL, "BURST"); +} + + +void ultimate3_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + if (servernum == 1) { + ultimate3_cmd_pass(RemotePassword); + } + if (servernum == 2) { + ultimate3_cmd_pass(RemotePassword2); + } + if (servernum == 3) { + ultimate3_cmd_pass(RemotePassword3); + } + ultimate3_cmd_capab(); + ultimate3_cmd_server(ServerName, 1, ServerDesc); + ultimate3_cmd_svinfo(); + ultimate3_cmd_burst(); +} + +/* SVSHOLD - set */ +void ultimate3_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void ultimate3_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void ultimate3_cmd_svid_umode(char *nick, time_t ts) +{ + send_cmd(ServerName, "SVSMODE %s %lu +d 1", nick, + (unsigned long int) ts); +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void ultimate3_cmd_nc_change(User * u) +{ + common_svsmode(u, "+d", "1"); +} + +/* SVSMODE +d */ +void ultimate3_cmd_svid_umode2(User * u, char *ts) +{ + /* not used by bahamut ircds */ +} + +void ultimate3_cmd_svid_umode3(User * u, char *ts) +{ + if (u->svid != u->timestamp) { + common_svsmode(u, "+rd", ts); + } else { + common_svsmode(u, "+r", NULL); + } + +} + +int anope_event_svinfo(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_gnotice(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_netctrl(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_notice(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +int anope_event_sqline(char *source, int ac, char **av) +{ + /* currently not used but removes the message : unknown message from server */ + return MOD_CONT; +} + +void ultimate3_cmd_svsjoin(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void ultimate3_cmd_svspart(char *source, char *nick, char *chan) +{ + /* Not Supported by this IRCD */ +} + +void ultimate3_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + + +void ultimate3_cmd_eob() +{ + send_cmd(NULL, "BURST 0"); +} + +int anope_event_error(char *source, int ac, char **av) +{ + if (ac >= 1) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + + +int anope_event_eob(char *source, int ac, char **av) +{ + Server *s; + + if (ac == 1) { + s = findserver(servlist, av[0]); + /* If we found a server with the given source, that one just + * finished bursting. If there was no source, then our uplink + * server finished bursting. -GD + */ + if (!s && serv_uplink) + s = serv_uplink; + finish_sync(s, 1); + } + return MOD_CONT; +} + + +int anope_event_burst(char *source, int ac, char **av) +{ + Server *s; + s = findserver(servlist, source); + if (!ac) { + /* for future use - start burst */ + } else { + /* If we found a server with the given source, that one just + * finished bursting. If there was no source, then our uplink + * server finished bursting. -GD + */ + if (s) + s->sync = SSYNC_DONE; + else + me_server->sync = SSYNC_DONE; + } + return MOD_CONT; +} + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_credits(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_netglobal(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_invite(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int ultiamte3_flood_mode_check(char *value) +{ + return 0; +} + +void ultimate3_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + ultimate3_cmd_squit(jserver, rbuf); + ultimate3_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* GLOBOPS - to handle old WALLOPS */ +void ultimate3_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "GLOBOPS :%s", fmt); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int ultiamte3_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void ultimate3_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(ultimate3_cmd_svsnoop); + pmodule_cmd_remove_akill(ultimate3_cmd_remove_akill); + pmodule_cmd_topic(ultimate3_cmd_topic); + pmodule_cmd_vhost_off(ultimate3_cmd_vhost_off); + pmodule_cmd_akill(ultimate3_cmd_akill); + pmodule_cmd_svskill(ultimate3_cmd_svskill); + pmodule_cmd_svsmode(ultimate3_cmd_svsmode); + pmodule_cmd_372(ultimate3_cmd_372); + pmodule_cmd_372_error(ultimate3_cmd_372_error); + pmodule_cmd_375(ultimate3_cmd_375); + pmodule_cmd_376(ultimate3_cmd_376); + pmodule_cmd_nick(ultimate3_cmd_nick); + pmodule_cmd_guest_nick(ultimate3_cmd_guest_nick); + pmodule_cmd_mode(ultimate3_cmd_mode); + pmodule_cmd_bot_nick(ultimate3_cmd_bot_nick); + pmodule_cmd_kick(ultimate3_cmd_kick); + pmodule_cmd_notice_ops(ultimate3_cmd_notice_ops); + pmodule_cmd_notice(ultimate3_cmd_notice); + pmodule_cmd_notice2(ultimate3_cmd_notice2); + pmodule_cmd_privmsg(ultimate3_cmd_privmsg); + pmodule_cmd_privmsg2(ultimate3_cmd_privmsg2); + pmodule_cmd_serv_notice(ultimate3_cmd_serv_notice); + pmodule_cmd_serv_privmsg(ultimate3_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(ultimate3_cmd_bot_chan_mode); + pmodule_cmd_351(ultimate3_cmd_351); + pmodule_cmd_quit(ultimate3_cmd_quit); + pmodule_cmd_pong(ultimate3_cmd_pong); + pmodule_cmd_join(ultimate3_cmd_join); + pmodule_cmd_unsqline(ultimate3_cmd_unsqline); + pmodule_cmd_invite(ultimate3_cmd_invite); + pmodule_cmd_part(ultimate3_cmd_part); + pmodule_cmd_391(ultimate3_cmd_391); + pmodule_cmd_250(ultimate3_cmd_250); + pmodule_cmd_307(ultimate3_cmd_307); + pmodule_cmd_311(ultimate3_cmd_311); + pmodule_cmd_312(ultimate3_cmd_312); + pmodule_cmd_317(ultimate3_cmd_317); + pmodule_cmd_219(ultimate3_cmd_219); + pmodule_cmd_401(ultimate3_cmd_401); + pmodule_cmd_318(ultimate3_cmd_318); + pmodule_cmd_242(ultimate3_cmd_242); + pmodule_cmd_243(ultimate3_cmd_243); + pmodule_cmd_211(ultimate3_cmd_211); + pmodule_cmd_global(ultimate3_cmd_global); + pmodule_cmd_global_legacy(ultimate3_cmd_global_legacy); + pmodule_cmd_sqline(ultimate3_cmd_sqline); + pmodule_cmd_squit(ultimate3_cmd_squit); + pmodule_cmd_svso(ultimate3_cmd_svso); + pmodule_cmd_chg_nick(ultimate3_cmd_chg_nick); + pmodule_cmd_svsnick(ultimate3_cmd_svsnick); + pmodule_cmd_vhost_on(ultimate3_cmd_vhost_on); + pmodule_cmd_connect(ultimate3_cmd_connect); + pmodule_cmd_svshold(ultimate3_cmd_svshold); + pmodule_cmd_release_svshold(ultimate3_cmd_release_svshold); + pmodule_cmd_unsgline(ultimate3_cmd_unsqline); + pmodule_cmd_unszline(ultimate3_cmd_unszline); + pmodule_cmd_szline(ultimate3_cmd_szline); + pmodule_cmd_sgline(ultimate3_cmd_sgline); + pmodule_cmd_unban(ultimate3_cmd_unban); + pmodule_cmd_svsmode_chan(ultimate3_cmd_svsmode_chan); + pmodule_cmd_svid_umode(ultimate3_cmd_svid_umode); + pmodule_cmd_nc_change(ultimate3_cmd_nc_change); + pmodule_cmd_svid_umode2(ultimate3_cmd_svid_umode2); + pmodule_cmd_svid_umode3(ultimate3_cmd_svid_umode3); + pmodule_cmd_eob(ultimate3_cmd_eob); + pmodule_flood_mode_check(ultiamte3_flood_mode_check); + pmodule_cmd_jupe(ultimate3_cmd_jupe); + pmodule_valid_nick(ultiamte3_valid_nick); + pmodule_cmd_ctcp(ultimate3_cmd_ctcp); + pmodule_set_umode(ultimate3_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("UltimateIRCd 3.0.0.a26+"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set(""); + pmodule_ircd_flood_mode_char_remove(""); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/ultimate3.h b/src/protocol/ultimate3.h new file mode 100644 index 000000000..6acced7f2 --- /dev/null +++ b/src/protocol/ultimate3.h @@ -0,0 +1,125 @@ +/* Ultimate IRCD 3.0 functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +#define UMODE_a 0x00000001 +#define UMODE_h 0x00000002 +#define UMODE_i 0x00000004 +#define UMODE_o 0x00000008 +#define UMODE_r 0x00000010 +#define UMODE_w 0x00000020 +#define UMODE_A 0x00000040 +#define UMODE_0 0x00000080 +#define UMODE_Z 0x00000100 /* umode +Z - Services Root Admin */ +#define UMODE_S 0x00000200 /* umode +S - Services Client */ +#define UMODE_D 0x00000400 /* umode +D - has seen dcc warning message */ +#define UMODE_d 0x00000800 /* umode +d - user is deaf to channel messages */ +#define UMODE_W 0x00001000 /* umode +d - user is deaf to channel messages */ +#define UMODE_p 0x04000000 +#define UMODE_P 0x20000000 /* umode +P - Services Admin */ +#define UMODE_x 0x40000000 +#define UMODE_R 0x80000000 + + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ +#define CMODE_c 0x00000400 /* Colors can't be used */ +#define CMODE_A 0x00000800 +#define CMODE_N 0x00001000 +#define CMODE_S 0x00002000 +#define CMODE_K 0x00004000 +#define CMODE_O 0x00008000 /* Only opers can join */ +#define CMODE_q 0x00010000 /* No Quit Reason */ +#define CMODE_M 0x00020000 /* Non-regged nicks can't send messages */ + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void ultimate3_set_umode(User * user, int ac, char **av); +void ultimate3_cmd_svsnoop(char *server, int set); +void ultimate3_cmd_remove_akill(char *user, char *host); +void ultimate3_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void ultimate3_cmd_vhost_off(User * u); +void ultimate3_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void ultimate3_cmd_svskill(char *source, char *user, char *buf); +void ultimate3_cmd_svsmode(User * u, int ac, char **av); +void ultimate3_cmd_372(char *source, char *msg); +void ultimate3_cmd_372_error(char *source); +void ultimate3_cmd_375(char *source); +void ultimate3_cmd_376(char *source); +void ultimate3_cmd_nick(char *nick, char *name, char *modes); +void ultimate3_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void ultimate3_cmd_mode(char *source, char *dest, char *buf); +void ultimate3_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void ultimate3_cmd_kick(char *source, char *chan, char *user, char *buf); +void ultimate3_cmd_notice_ops(char *source, char *dest, char *buf); +void ultimate3_cmd_notice(char *source, char *dest, char *buf); +void ultimate3_cmd_notice2(char *source, char *dest, char *msg); +void ultimate3_cmd_privmsg(char *source, char *dest, char *buf); +void ultimate3_cmd_privmsg2(char *source, char *dest, char *msg); +void ultimate3_cmd_serv_notice(char *source, char *dest, char *msg); +void ultimate3_cmd_serv_privmsg(char *source, char *dest, char *msg); +void ultimate3_cmd_bot_chan_mode(char *nick, char *chan); +void ultimate3_cmd_351(char *source); +void ultimate3_cmd_quit(char *source, char *buf); +void ultimate3_cmd_pong(char *servname, char *who); +void ultimate3_cmd_join(char *user, char *channel, time_t chantime); +void ultimate3_cmd_unsqline(char *user); +void ultimate3_cmd_invite(char *source, char *chan, char *nick); +void ultimate3_cmd_part(char *nick, char *chan, char *buf); +void ultimate3_cmd_391(char *source, char *timestr); +void ultimate3_cmd_250(char *buf); +void ultimate3_cmd_307(char *buf); +void ultimate3_cmd_311(char *buf); +void ultimate3_cmd_312(char *buf); +void ultimate3_cmd_317(char *buf); +void ultimate3_cmd_219(char *source, char *letter); +void ultimate3_cmd_401(char *source, char *who); +void ultimate3_cmd_318(char *source, char *who); +void ultimate3_cmd_242(char *buf); +void ultimate3_cmd_243(char *buf); +void ultimate3_cmd_211(char *buf); +void ultimate3_cmd_global(char *source, char *buf); +void ultimate3_cmd_global_legacy(char *source, char *fmt); +void ultimate3_cmd_sqline(char *mask, char *reason); +void ultimate3_cmd_squit(char *servname, char *message); +void ultimate3_cmd_svso(char *source, char *nick, char *flag); +void ultimate3_cmd_chg_nick(char *oldnick, char *newnick); +void ultimate3_cmd_svsnick(char *source, char *guest, time_t when); +void ultimate3_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void ultimate3_cmd_connect(int servernum); +void ultimate3_cmd_svshold(char *nick); +void ultimate3_cmd_release_svshold(char *nick); +void ultimate3_cmd_unsgline(char *mask); +void ultimate3_cmd_unszline(char *mask); +void ultimate3_cmd_szline(char *mask, char *reason, char *whom); +void ultimate3_cmd_sgline(char *mask, char *reason); +void ultimate3_cmd_unban(char *name, char *nick); +void ultimate3_cmd_svsmode_chan(char *name, char *mode, char *nick); +void ultimate3_cmd_svid_umode(char *nick, time_t ts); +void ultimate3_cmd_nc_change(User * u); +void ultimate3_cmd_svid_umode2(User * u, char *ts); +void ultimate3_cmd_svid_umode3(User * u, char *ts); +void ultimate3_cmd_eob(); +int ultimate3_flood_mode_check(char *value); +void ultimate3_cmd_jupe(char *jserver, char *who, char *reason); +int ultimate3_valid_nick(char *nick); +void ultimate3_cmd_ctcp(char *source, char *dest, char *buf); + + diff --git a/src/protocol/unreal31.c b/src/protocol/unreal31.c new file mode 100644 index 000000000..4af96c5a3 --- /dev/null +++ b/src/protocol/unreal31.c @@ -0,0 +1,1571 @@ +/* Unreal IRCD 3.1.x functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/*************************************************************************/ + +#include "services.h" +#include "pseudo.h" +#include "unreal31.h" + +IRCDVar myIrcd[] = { + {"UnrealIRCd 3.1.x", /* ircd name */ + "+oS", /* nickserv mode */ + "+oS", /* chanserv mode */ + "+oS", /* memoserv mode */ + "+oS", /* hostserv mode */ + "+ioS", /* operserv mode */ + "+oS", /* botserv mode */ + "+oS", /* helpserv mode */ + "+iS", /* Dev/Null mode */ + "+ioS", /* Global mode */ + "+oS", /* nickserv alias mode */ + "+oS", /* chanserv alias mode */ + "+oS", /* memoserv alias mode */ + "+ioS", /* hostserv alias mode */ + "+ioS", /* operserv alias mode */ + "+oS", /* botserv alias mode */ + "+oS", /* helpserv alias mode */ + "+iS", /* Dev/Null alias mode */ + "+ioS", /* Global alias mode */ + "+qS", /* Used by BotServ Bots */ + 5, /* Chan Max Symbols */ + "-cilmnpstuzACGHKNOQRSV", /* Modes to Remove */ + "+ao", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 1, /* Has Owner */ + "+q", /* Mode to set for an owner */ + "-q", /* Mode to unset for an owner */ + "+a", /* Mode to set for channel admin */ + "-a", /* Mode to unset for channel admin */ + "+rd", /* Mode On Reg */ + "-r+d", /* Mode on UnReg */ + "-r+d", /* Mode on Nick Change */ + 0, /* Supports SGlines */ + 1, /* Supports SQlines */ + 1, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 1, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + 0, /* Protected Umode */ + 0, /* Has Admin */ + 0, /* Chan SQlines */ + 0, /* Quit on Kill */ + 0, /* SVSMODE unban */ + 1, /* Has Protect */ + 1, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 1, /* vidents */ + 1, /* svshold */ + 1, /* time stamp on mode */ + 0, /* NICKIP */ + 1, /* O:LINE */ + 1, /* UMODE */ + 1, /* VHOST ON NICK */ + 1, /* Change RealName */ + CMODE_K, /* No Knock */ + CMODE_A, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_x, /* Vhost Mode */ + 1, /* +f */ + 1, /* +L */ + CMODE_f, + CMODE_L, + 0, + 1, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support Unreal TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 0, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + "x", /* vhost char */ + 0, /* ts6 */ + 1, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 0, /* reports sync state */ + } + , + {NULL} +}; + + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + 0, /* TSMODE */ + 0, /* UNCONNECT */ + 0, /* NICKIP */ + 0, /* SJOIN */ + CAPAB_ZIP, /* ZIP */ + 0, /* BURST */ + 0, /* TS5 */ + 0, /* TS3 */ + 0, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + 0, /* UID */ + 0, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + CAPAB_TOKEN, /* TOKEN */ + 0, /* VHOST */ + CAPAB_SSJ3, /* SSJ3 */ + CAPAB_NICK2, /* NICK2 */ + CAPAB_UMODE2, /* UMODE2 */ + CAPAB_VL, /* VL */ + CAPAB_TLKEXT, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + 0, + 0, 0} +}; + +unsigned long umodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, UMODE_A, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, + 0, + 0, + 0, 0, 0, 0, 0, 0, 0, + 0, + 0, 0, 0, 0, 0, + 0, UMODE_a, 0, 0, 0, 0, 0, + UMODE_g, + UMODE_h, UMODE_i, 0, 0, 0, 0, 0, UMODE_o, + 0, + 0, UMODE_r, 0, 0, 0, 0, UMODE_w, + UMODE_x, + 0, + 0, + 0, 0, 0, 0, 0 +}; + + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 'h', /* (37) % Channel halfops */ + 0, + 0, 0, 0, + 'q', + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a', 0 +}; + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, + {NULL}, + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {CMODE_A, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* B */ + {CMODE_C, 0, NULL, NULL}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {CMODE_G, 0, NULL, NULL}, /* G */ + {CMODE_H, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* I */ + {0}, /* J */ + {CMODE_K, 0, NULL, NULL}, /* K */ + {CMODE_L, 0, set_redirect, cs_set_redirect}, + {0}, /* M */ + {CMODE_N, 0, NULL, NULL}, /* N */ + {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* P */ + {CMODE_Q, 0, NULL, NULL}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {CMODE_S, 0, NULL, NULL}, /* S */ + {0}, /* T */ + {0}, /* U */ + {CMODE_V, 0, NULL, NULL}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {CMODE_c, 0, NULL, NULL}, + {0}, /* d */ + {0}, /* e */ + {CMODE_f, 0, set_flood, cs_set_flood}, + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {CMODE_u, 0, NULL, NULL}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {CMODE_z, 0, NULL, NULL}, + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'c', CMODE_c, 0, NULL, NULL}, + {'f', CMODE_f, 0, get_flood, cs_get_flood}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'u', CMODE_u, 0, NULL, NULL}, + {'z', CMODE_z, 0, NULL, NULL}, + {'A', CMODE_A, 0, NULL, NULL}, + {'C', CMODE_C, 0, NULL, NULL}, + {'G', CMODE_G, 0, NULL, NULL}, + {'H', CMODE_H, 0, NULL, NULL}, + {'K', CMODE_K, 0, NULL, NULL}, + {'L', CMODE_L, 0, get_redirect, cs_get_redirect}, + {'N', CMODE_N, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'Q', CMODE_Q, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {'S', CMODE_S, 0, NULL, NULL}, + {'V', CMODE_V, 0, NULL, NULL}, + {0} +}; + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {CUS_PROTECT, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, check_valid_op}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {CUS_OWNER, 0, check_valid_op}, + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + +void unreal_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'd': + if (ac == 0) { + break; + } + + ac--; + av++; + user->svid = strtoul(*av, NULL, 0); + break; + case 'o': + if (add) { + opcnt++; + if (WallOper) { + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + } + display_news(user, NEWS_OPER); + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + case 'x': + update_host(user); + break; + } + } +} + + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+a","-a"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GLOBOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GNOTICE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("PROTOCTL", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("CHGHOST", anope_event_chghost); addCoreMessage(IRCD,m); + m = createMessage("CHGIDENT", anope_event_chgident); addCoreMessage(IRCD,m); + m = createMessage("CHGNAME", anope_event_chgname); addCoreMessage(IRCD,m); + m = createMessage("NETINFO", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SETHOST", anope_event_sethost); addCoreMessage(IRCD,m); + m = createMessage("SETIDENT", anope_event_setident); addCoreMessage(IRCD,m); + m = createMessage("SETNAME", anope_event_setname); addCoreMessage(IRCD,m); + m = createMessage("REHASH", anope_event_rehash); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("CREDITS", anope_event_credits); addCoreMessage(IRCD,m); +} + +/* *INDENT-ON* */ + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +void unreal_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "SVSNOOP %s %s", server, (set ? "+" : "-")); +} + +void unreal_cmd_svsadmin(char *server, int set) +{ + unreal_cmd_svsnoop(server, set); +} + +void unreal_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, "TKL - G %s %s %s", user, host, s_OperServ); +} + +void unreal_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "TOPIC %s %s %lu :%s", chan, whosetit, + (unsigned long int) when, topic); +} + +void unreal_cmd_vhost_off(User * u) +{ + send_cmd(s_HostServ, "SVSMODE %s -xt", u->nick); + notice_lang(s_HostServ, u, HOST_OFF_UNREAL, u->nick, ircd->vhostchar); +} + +void unreal_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(NULL, "TKL + G %s %s %s %ld %ld :%s", user, host, who, + (long int) time(NULL) + 86400 * 2, (long int) when, reason); +} + +void unreal_cmd_svskill(char *source, char *user, char *buf) +{ + if (!buf) { + return; + } + + if (!source || !user) { + return; + } + + send_cmd(source, "SVSKILL %s :%s", user, buf); +} + +void unreal_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(ServerName, "SVSMODE %s %s%s%s", u->nick, av[0], + (ac == 2 ? " " : ""), (ac == 2 ? av[1] : "")); +} + + +void unreal_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void unreal_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void unreal_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void unreal_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +void unreal_cmd_nick(char *nick, char *name, char *modes) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s 0 %s * :%s", nick, + (long int) time(NULL), ServiceUser, ServiceHost, ServerName, + modes, name); + unreal_cmd_sqline(nick, "Reserved for services"); +} + +void unreal_cmd_guest_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + send_cmd(NULL, "NICK %s 1 %ld %s %s %s 0 %s * :%s", nick, + (long int) time(NULL), user, host, ServerName, modes, real); +} + +void unreal_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "MODE %s %s", dest, buf); +} + +void unreal_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s 0 %s * :%s", nick, + (long int) time(NULL), user, host, ServerName, modes, real); + unreal_cmd_sqline(nick, "Reserved for services"); +} + +void unreal_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +void unreal_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); +} + + +void unreal_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + unreal_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void unreal_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void unreal_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void unreal_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void unreal_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $%s :%s", dest, msg); +} + +void unreal_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $%s :%s", dest, msg); +} + + +void unreal_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s %s", ircd->botchanumode, nick, nick); +} + +void unreal_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +/* QUIT */ +void unreal_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +/* PROTOCTL */ +void unreal_cmd_protoctl() +{ + /* + See Unreal's protoctl.txt for reference + VHP - Send hostnames in NICKv2 even if not sethosted + */ + send_cmd(NULL, "PROTOCTL NICKv2 VHP"); +} + +/* PASS */ +void unreal_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS :%s", pass); +} + +/* SERVER name hop descript */ +/* Unreal 3.2 actually sends some info about itself in the descript area */ +void unreal_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript); +} + +/* PONG */ +void unreal_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +/* JOIN */ +/* Althought Unreal 3.2 does not need the timestamp others do so + we get it in the common function call */ +void unreal_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(user, "JOIN %s", channel); +} + +/* UNSQLINE */ +void unreal_cmd_unsqline(char *user) +{ + if (!user) { + return; + } + send_cmd(NULL, "UNSQLINE %s", user); +} + +/* CHGHOST */ +void unreal_cmd_chghost(char *nick, char *vhost) +{ + if (!nick || !vhost) { + return; + } + send_cmd(ServerName, "CHGHOST %s %s", nick, vhost); +} + +/* CHGIDENT */ +void unreal_cmd_chgident(char *nick, char *vIdent) +{ + if (!nick || !vIdent) { + return; + } + send_cmd(ServerName, "CHGIDENT %s %s", nick, vIdent); +} + +/* INVITE */ +void unreal_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +/* PART */ +void unreal_cmd_part(char *nick, char *chan, char *buf) +{ + if (!nick || !chan) { + return; + } + + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + +/* 391 */ +void unreal_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void unreal_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void unreal_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void unreal_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void unreal_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void unreal_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void unreal_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void unreal_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void unreal_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void unreal_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void unreal_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void unreal_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +/* GLOBOPS */ +void unreal_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "GLOBOPS :%s", buf); +} + +/* SQLINE */ +void unreal_cmd_sqline(char *mask, char *reason) +{ + if (!mask || !reason) { + return; + } + + send_cmd(NULL, "SQLINE %s :%s", mask, reason); +} + +/* SQUIT */ +void unreal_cmd_squit(char *servname, char *message) +{ + if (!servname || !message) { + return; + } + + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +/* SVSO */ +void unreal_cmd_svso(char *source, char *nick, char *flag) +{ + if (!source || !nick || !flag) { + return; + } + + send_cmd(source, "SVSO %s %s", nick, flag); +} + +/* NICK <newnick> */ +void unreal_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +/* SVSNICK */ +void unreal_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "SVSNICK %s %s :%ld", source, guest, (long int) when); +} + +/* Functions that use serval cmd functions */ + +void unreal_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + if (!nick) { + return; + } + if (vIdent) { + unreal_cmd_chgident(nick, vIdent); + } + unreal_cmd_chghost(nick, vhost); +} + +void unreal_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + unreal_cmd_protoctl(); + if (servernum == 1) { + unreal_cmd_pass(RemotePassword); + } + if (servernum == 2) { + unreal_cmd_pass(RemotePassword2); + } + if (servernum == 3) { + unreal_cmd_pass(RemotePassword3); + } + unreal_cmd_server(ServerName, 1, ServerDesc); +} + +/* Events */ + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + unreal_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac != 4) + return MOD_CONT; + do_topic(source, ac, av); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + + +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +int anope_event_setname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETNAME for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_realname(u, av[0]); + return MOD_CONT; +} + +int anope_event_chgname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGNAME for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_realname(u, av[1]); + return MOD_CONT; +} + +int anope_event_setident(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETIDENT for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_username(u, av[0]); + return MOD_CONT; +} +int anope_event_chgident(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGIDENT for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_username(u, av[1]); + return MOD_CONT; +} + +int anope_event_sethost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETHOST for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_host(u, av[0]); + return MOD_CONT; +} + + +int anope_event_nick(char *source, int ac, char **av) +{ + User *user; + + if (ac != 2) { + if (ac == 7) { + /* + <codemastr> that was a bug that is now fixed in 3.2.1 + <codemastr> in some instances it would use the non-nickv2 format + <codemastr> it's sent when a nick collision occurs + - so we have to leave it around for now -TSL + */ + do_nick(source, av[0], av[3], av[4], av[5], av[6], + strtoul(av[2], NULL, 10), 0, 0, "*", NULL); + } else { + user = do_nick(source, av[0], av[3], av[4], av[5], av[9], + strtoul(av[2], NULL, 10), strtoul(av[6], NULL, + 0), 0, av[8], + NULL); + if (user) + anope_set_umode(user, 1, &av[7]); + } + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + + +int anope_event_chghost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGHOST for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_host(u, av[1]); + return MOD_CONT; +} + +/* EVENT: SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + do_server(source, av[0], av[1], av[2], NULL); + return MOD_CONT; +} + + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +/* SVSHOLD - set */ +void unreal_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void unreal_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* UNSGLINE */ +void unreal_cmd_unsgline(char *mask) +{ + /* Not Supported by this IRCD */ +} + +/* UNSZLINE */ +void unreal_cmd_unszline(char *mask) +{ + send_cmd(NULL, "%s - Z * %s %s", send_token("TKL", "BD"), mask, + s_OperServ); +} + +/* SZLINE */ +void unreal_cmd_szline(char *mask, char *reason, char *whom) +{ + send_cmd(NULL, "%s + Z * %s %s %ld %ld :%s", send_token("TKL", "BD"), + mask, whom, (long int) time(NULL) + 86400 * 2, + (long int) time(NULL), reason); +} + +/* SGLINE */ +void unreal_cmd_sgline(char *mask, char *reason) +{ + /* Not Supported by this IRCD */ +} + +void unreal_cmd_unban(char *name, char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSMODE channel modes */ + +void unreal_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + /* Not Supported by this IRCD */ +} + + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void unreal_cmd_svid_umode(char *nick, time_t ts) +{ + send_cmd(ServerName, "SVSMODE %s +d 1", nick); +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void unreal_cmd_nc_change(User * u) +{ + common_svsmode(u, "-r+d", "1"); +} + +/* SVSMODE +r */ +void unreal_cmd_svid_umode2(User * u, char *ts) +{ + if (u->svid != u->timestamp) { + common_svsmode(u, "+rd", ts); + } else { + common_svsmode(u, "+r", NULL); + } +} + +void unreal_cmd_svid_umode3(User * u, char *ts) +{ + /* not used */ +} + +/* svsjoin + parv[0] - sender + parv[1] - nick to make join + parv[2] - channel(s) to join +*/ +void unreal_cmd_svsjoin(char *source, char *nick, char *chan) +{ + send_cmd(source, "SVSJOIN %s :%s", nick, chan); +} + +/* svspart + parv[0] - sender + parv[1] - nick to make part + parv[2] - channel(s) to part +*/ +void unreal_cmd_svspart(char *source, char *nick, char *chan) +{ + send_cmd(source, "SVSPART %s :%s", nick, chan); +} + +void unreal_cmd_swhois(char *source, char *who, char *mask) +{ + /* Can anyone tell me if 3.1 has this? */ +} + +void unreal_cmd_eob() +{ + /* Can anyone tell me if 3.1 has this? */ +} + + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_credits(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int unreal_flood_mode_check(char *value) +{ + char *dp, *end; + + if (value && *value != ':' + && (strtoul((*value == '*' ? value + 1 : value), &dp, 10) > 0) + && (*dp == ':') && (*(++dp) != 0) && (strtoul(dp, &end, 10) > 0) + && (*end == 0)) { + return 1; + } else { + return 0; + } +} + +void unreal_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + unreal_cmd_squit(jserver, rbuf); + unreal_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* GLOBOPS - to handle old WALLOPS */ +void unreal_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "%s :%s", + send_token("GLOBOPS", "]"), fmt); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int unreal_valid_nick(char *nick) +{ + if (!stricmp("ircd", nick)) { + return 0; + } + if (!stricmp("irc", nick)) { + return 0; + } + return 1; +} + +void unreal_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(unreal_cmd_svsnoop); + pmodule_cmd_remove_akill(unreal_cmd_remove_akill); + pmodule_cmd_topic(unreal_cmd_topic); + pmodule_cmd_vhost_off(unreal_cmd_vhost_off); + pmodule_cmd_akill(unreal_cmd_akill); + pmodule_cmd_svskill(unreal_cmd_svskill); + pmodule_cmd_svsmode(unreal_cmd_svsmode); + pmodule_cmd_372(unreal_cmd_372); + pmodule_cmd_372_error(unreal_cmd_372_error); + pmodule_cmd_375(unreal_cmd_375); + pmodule_cmd_376(unreal_cmd_376); + pmodule_cmd_nick(unreal_cmd_nick); + pmodule_cmd_guest_nick(unreal_cmd_guest_nick); + pmodule_cmd_mode(unreal_cmd_mode); + pmodule_cmd_bot_nick(unreal_cmd_bot_nick); + pmodule_cmd_kick(unreal_cmd_kick); + pmodule_cmd_notice_ops(unreal_cmd_notice_ops); + pmodule_cmd_notice(unreal_cmd_notice); + pmodule_cmd_notice2(unreal_cmd_notice2); + pmodule_cmd_privmsg(unreal_cmd_privmsg); + pmodule_cmd_privmsg2(unreal_cmd_privmsg2); + pmodule_cmd_serv_notice(unreal_cmd_serv_notice); + pmodule_cmd_serv_privmsg(unreal_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(unreal_cmd_bot_chan_mode); + pmodule_cmd_351(unreal_cmd_351); + pmodule_cmd_quit(unreal_cmd_quit); + pmodule_cmd_pong(unreal_cmd_pong); + pmodule_cmd_join(unreal_cmd_join); + pmodule_cmd_unsqline(unreal_cmd_unsqline); + pmodule_cmd_invite(unreal_cmd_invite); + pmodule_cmd_part(unreal_cmd_part); + pmodule_cmd_391(unreal_cmd_391); + pmodule_cmd_250(unreal_cmd_250); + pmodule_cmd_307(unreal_cmd_307); + pmodule_cmd_311(unreal_cmd_311); + pmodule_cmd_312(unreal_cmd_312); + pmodule_cmd_317(unreal_cmd_317); + pmodule_cmd_219(unreal_cmd_219); + pmodule_cmd_401(unreal_cmd_401); + pmodule_cmd_318(unreal_cmd_318); + pmodule_cmd_242(unreal_cmd_242); + pmodule_cmd_243(unreal_cmd_243); + pmodule_cmd_211(unreal_cmd_211); + pmodule_cmd_global(unreal_cmd_global); + pmodule_cmd_global_legacy(unreal_cmd_global_legacy); + pmodule_cmd_sqline(unreal_cmd_sqline); + pmodule_cmd_squit(unreal_cmd_squit); + pmodule_cmd_svso(unreal_cmd_svso); + pmodule_cmd_chg_nick(unreal_cmd_chg_nick); + pmodule_cmd_svsnick(unreal_cmd_svsnick); + pmodule_cmd_vhost_on(unreal_cmd_vhost_on); + pmodule_cmd_connect(unreal_cmd_connect); + pmodule_cmd_svshold(unreal_cmd_svshold); + pmodule_cmd_release_svshold(unreal_cmd_release_svshold); + pmodule_cmd_unsgline(unreal_cmd_unsqline); + pmodule_cmd_unszline(unreal_cmd_unszline); + pmodule_cmd_szline(unreal_cmd_szline); + pmodule_cmd_sgline(unreal_cmd_sgline); + pmodule_cmd_unban(unreal_cmd_unban); + pmodule_cmd_svsmode_chan(unreal_cmd_svsmode_chan); + pmodule_cmd_svid_umode(unreal_cmd_svid_umode); + pmodule_cmd_nc_change(unreal_cmd_nc_change); + pmodule_cmd_svid_umode2(unreal_cmd_svid_umode2); + pmodule_cmd_svid_umode3(unreal_cmd_svid_umode3); + pmodule_cmd_eob(unreal_cmd_eob); + pmodule_flood_mode_check(unreal_flood_mode_check); + pmodule_cmd_jupe(unreal_cmd_jupe); + pmodule_valid_nick(unreal_valid_nick); + pmodule_cmd_ctcp(unreal_cmd_ctcp); + pmodule_set_umode(unreal_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("UnrealIRCd 3.1.1+"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set("+f"); + pmodule_ircd_flood_mode_char_remove("-f"); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/unreal31.h b/src/protocol/unreal31.h new file mode 100644 index 000000000..f2ed19503 --- /dev/null +++ b/src/protocol/unreal31.h @@ -0,0 +1,124 @@ +/* Unreal IRCD 3.1.x functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/*************************************************************************/ + +#define UMODE_a 0x00000001 +#define UMODE_h 0x00000002 +#define UMODE_i 0x00000004 +#define UMODE_o 0x00000008 +#define UMODE_r 0x00000010 +#define UMODE_w 0x00000020 +#define UMODE_A 0x00000040 +#define UMODE_g 0x80000000 +#define UMODE_x 0x40000000 + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_c 0x00000400 +#define CMODE_A 0x00000800 +#define CMODE_H 0x00001000 +#define CMODE_K 0x00002000 +#define CMODE_L 0x00004000 +#define CMODE_O 0x00008000 +#define CMODE_Q 0x00010000 +#define CMODE_S 0x00020000 +#define CMODE_V 0x00040000 +#define CMODE_f 0x00080000 +#define CMODE_G 0x00100000 +#define CMODE_C 0x00200000 +#define CMODE_u 0x00400000 +#define CMODE_z 0x00800000 +#define CMODE_N 0x01000000 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void unreal_set_umode(User * user, int ac, char **av); +void unreal_cmd_svsnoop(char *server, int set); +void unreal_cmd_remove_akill(char *user, char *host); +void unreal_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void unreal_cmd_vhost_off(User * u); +void unreal_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void unreal_cmd_svskill(char *source, char *user, char *buf); +void unreal_cmd_svsmode(User * u, int ac, char **av); +void unreal_cmd_372(char *source, char *msg); +void unreal_cmd_372_error(char *source); +void unreal_cmd_375(char *source); +void unreal_cmd_376(char *source); +void unreal_cmd_nick(char *nick, char *name, char *modes); +void unreal_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void unreal_cmd_mode(char *source, char *dest, char *buf); +void unreal_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void unreal_cmd_kick(char *source, char *chan, char *user, char *buf); +void unreal_cmd_notice_ops(char *source, char *dest, char *buf); +void unreal_cmd_notice(char *source, char *dest, char *buf); +void unreal_cmd_notice2(char *source, char *dest, char *msg); +void unreal_cmd_privmsg(char *source, char *dest, char *buf); +void unreal_cmd_privmsg2(char *source, char *dest, char *msg); +void unreal_cmd_serv_notice(char *source, char *dest, char *msg); +void unreal_cmd_serv_privmsg(char *source, char *dest, char *msg); +void unreal_cmd_bot_chan_mode(char *nick, char *chan); +void unreal_cmd_351(char *source); +void unreal_cmd_quit(char *source, char *buf); +void unreal_cmd_pong(char *servname, char *who); +void unreal_cmd_join(char *user, char *channel, time_t chantime); +void unreal_cmd_unsqline(char *user); +void unreal_cmd_invite(char *source, char *chan, char *nick); +void unreal_cmd_part(char *nick, char *chan, char *buf); +void unreal_cmd_391(char *source, char *timestr); +void unreal_cmd_250(char *buf); +void unreal_cmd_307(char *buf); +void unreal_cmd_311(char *buf); +void unreal_cmd_312(char *buf); +void unreal_cmd_317(char *buf); +void unreal_cmd_219(char *source, char *letter); +void unreal_cmd_401(char *source, char *who); +void unreal_cmd_318(char *source, char *who); +void unreal_cmd_242(char *buf); +void unreal_cmd_243(char *buf); +void unreal_cmd_211(char *buf); +void unreal_cmd_global(char *source, char *buf); +void unreal_cmd_global_legacy(char *source, char *fmt); +void unreal_cmd_sqline(char *mask, char *reason); +void unreal_cmd_squit(char *servname, char *message); +void unreal_cmd_svso(char *source, char *nick, char *flag); +void unreal_cmd_chg_nick(char *oldnick, char *newnick); +void unreal_cmd_svsnick(char *source, char *guest, time_t when); +void unreal_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void unreal_cmd_connect(int servernum); +void unreal_cmd_svshold(char *nick); +void unreal_cmd_release_svshold(char *nick); +void unreal_cmd_unsgline(char *mask); +void unreal_cmd_unszline(char *mask); +void unreal_cmd_szline(char *mask, char *reason, char *whom); +void unreal_cmd_sgline(char *mask, char *reason); +void unreal_cmd_unban(char *name, char *nick); +void unreal_cmd_svsmode_chan(char *name, char *mode, char *nick); +void unreal_cmd_svid_umode(char *nick, time_t ts); +void unreal_cmd_nc_change(User * u); +void unreal_cmd_svid_umode2(User * u, char *ts); +void unreal_cmd_svid_umode3(User * u, char *ts); +void unreal_cmd_eob(); +int unreal_flood_mode_check(char *value); +void unreal_cmd_jupe(char *jserver, char *who, char *reason); +int unreal_valid_nick(char *nick); +void unreal_cmd_ctcp(char *source, char *dest, char *buf); + diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c new file mode 100644 index 000000000..5790cb5f6 --- /dev/null +++ b/src/protocol/unreal32.c @@ -0,0 +1,2202 @@ +/* Unreal IRCD 3.2.x functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/*************************************************************************/ + +#include "services.h" +#include "pseudo.h" +#include "unreal32.h" + +IRCDVar myIrcd[] = { + {"UnrealIRCd 3.2.x", /* ircd name */ + "+oS", /* nickserv mode */ + "+oS", /* chanserv mode */ + "+oS", /* memoserv mode */ + "+oS", /* hostserv mode */ + "+ioS", /* operserv mode */ + "+oS", /* botserv mode */ + "+oS", /* helpserv mode */ + "+iS", /* Dev/Null mode */ + "+ioS", /* Global mode */ + "+oS", /* nickserv alias mode */ + "+oS", /* chanserv alias mode */ + "+oS", /* memoserv alias mode */ + "+ioS", /* hostserv alias mode */ + "+ioS", /* operserv alias mode */ + "+oS", /* botserv alias mode */ + "+oS", /* helpserv alias mode */ + "+iS", /* Dev/Null alias mode */ + "+ioS", /* Global alias mode */ + "+qS", /* Used by BotServ Bots */ + 5, /* Chan Max Symbols */ + "-cilmnpstuzACGHKMNOQRSTV", /* Modes to Remove */ + "+ao", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 1, /* Has Owner */ + "+q", /* Mode to set for an owner */ + "-q", /* Mode to unset for an owner */ + "+a", /* Mode to set for channel admin */ + "-a", /* Mode to unset for channel admin */ + "+rd", /* Mode On Reg */ + "-r+d", /* Mode on UnReg */ + "-r+d", /* Mode on Nick Change */ + 1, /* Supports SGlines */ + 1, /* Supports SQlines */ + 1, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 1, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + UMODE_S, /* Protected Umode */ + 0, /* Has Admin */ + 0, /* Chan SQlines */ + 0, /* Quit on Kill */ + 1, /* SVSMODE unban */ + 1, /* Has Protect */ + 1, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 1, /* vidents */ + 1, /* svshold */ + 1, /* time stamp on mode */ + 0, /* NICKIP */ + 1, /* O:LINE */ + 1, /* UMODE */ + 1, /* VHOST ON NICK */ + 1, /* Change RealName */ + CMODE_K, /* No Knock */ + CMODE_A, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_x, /* Vhost Mode */ + 1, /* +f */ + 1, /* +L */ + CMODE_f, /* +f Mode */ + CMODE_L, /* +L Mode */ + 0, /* On nick change check if they could be identified */ + 1, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 1, /* We support Unreal TOKENS */ + 0, /* TOKENS are CASE Sensitive */ + 1, /* TIME STAMPS are BASE64 */ + 1, /* +I support */ + '&', /* SJOIN ban char */ + '\"', /* SJOIN except char */ + '\'', /* SJOIN invite char */ + 1, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + "x", /* vhost char */ + 0, /* ts6 */ + 1, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 1, /* reports sync state */ + } + , + {NULL} +}; + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + 0, /* TSMODE */ + 0, /* UNCONNECT */ + CAPAB_NICKIP, /* NICKIP */ + 0, /* SJOIN */ + CAPAB_ZIP, /* ZIP */ + 0, /* BURST */ + 0, /* TS5 */ + 0, /* TS3 */ + 0, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + 0, /* UID */ + 0, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + CAPAB_TOKEN, /* TOKEN */ + 0, /* VHOST */ + CAPAB_SSJ3, /* SSJ3 */ + CAPAB_NICK2, /* NICK2 */ + CAPAB_UMODE2, /* UMODE2 */ + CAPAB_VL, /* VL */ + CAPAB_TLKEXT, /* TLKEXT */ + 0, /* DODKEY */ + 0, /* DOZIP */ + CAPAB_CHANMODE, /* CHANMODE */ + CAPAB_SJB64, + CAPAB_NICKCHARS, + } +}; + + +unsigned long umodes[128] = { + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Horzontal Tab */ + 0, 0, 0, /* Line Feed, Unused, Unused */ + 0, 0, 0, /* Carriage Return, Unused, Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused */ + 0, 0, 0, /* Unused, Unused, Space */ + 0, 0, 0, /* ! " # */ + 0, 0, 0, /* $ % & */ + 0, 0, 0, /* ! ( ) */ + 0, 0, 0, /* * + , */ + 0, 0, 0, /* - . / */ + 0, 0, /* 0 1 */ + 0, 0, /* 2 3 */ + 0, 0, /* 4 5 */ + 0, 0, /* 6 7 */ + 0, 0, /* 8 9 */ + 0, 0, /* : ; */ + 0, 0, 0, /* < = > */ + 0, 0, /* ? @ */ + UMODE_A, UMODE_B, UMODE_C, /* A B C */ + 0, 0, 0, /* D E F */ + UMODE_G, UMODE_H, 0, /* G H I */ + 0, 0, 0, /* J K L */ + 0, UMODE_N, UMODE_O, /* M N O */ + 0, 0, UMODE_R, /* P Q R */ + UMODE_S, UMODE_T, 0, /* S T U */ + UMODE_V, UMODE_W, 0, /* V W X */ + 0, /* Y */ + 0, /* Z */ + 0, 0, 0, /* [ \ ] */ + 0, 0, 0, /* ^ _ ` */ + UMODE_a, 0, 0, /* a b c */ + UMODE_d, 0, 0, /* d e f */ + UMODE_g, UMODE_h, UMODE_i, /* g h i */ + 0, 0, 0, /* j k l */ + 0, 0, UMODE_o, /* m n o */ + UMODE_p, UMODE_q, UMODE_r, /* p q r */ + UMODE_s, UMODE_t, 0, /* s t u */ + UMODE_v, UMODE_w, UMODE_x, /* v w x */ + 0, /* y */ + UMODE_z, /* z */ + 0, 0, 0, /* { | } */ + 0, 0 /* ~ ‚ */ +}; + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 'h', /* (37) % Channel halfops */ + 'b', /* (38) & bans */ + 0, 0, 0, + 'q', + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a', 0 +}; + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, /* BCD */ + {NULL}, {NULL}, {NULL}, /* EFG */ + {NULL}, /* H */ + {add_invite, del_invite}, /* I */ + {NULL}, /* J */ + {NULL}, {NULL}, {NULL}, /* KLM */ + {NULL}, {NULL}, {NULL}, /* NOP */ + {NULL}, {NULL}, {NULL}, /* QRS */ + {NULL}, {NULL}, {NULL}, /* TUV */ + {NULL}, {NULL}, {NULL}, /* WXY */ + {NULL}, /* Z */ + {NULL}, {NULL}, /* (char 91 - 92) */ + {NULL}, {NULL}, {NULL}, /* (char 93 - 95) */ + {NULL}, /* ` (char 96) */ + {NULL}, /* a (char 97) */ + {add_ban, del_ban}, /* b */ + {NULL}, {NULL}, /* cd */ + {add_exception, del_exception}, + {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {CMODE_A, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* B */ + {CMODE_C, 0, NULL, NULL}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {CMODE_G, 0, NULL, NULL}, /* G */ + {0}, /* H */ + {0}, /* I */ + {0}, /* J */ + {CMODE_K, 0, NULL, NULL}, /* K */ + {CMODE_L, 0, set_redirect, cs_set_redirect}, + {CMODE_M, 0, NULL, NULL}, /* M */ + {CMODE_N, 0, NULL, NULL}, /* N */ + {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, + {0}, /* P */ + {CMODE_Q, 0, NULL, NULL}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {CMODE_S, 0, NULL, NULL}, /* S */ + {CMODE_T, 0, NULL, NULL}, /* T */ + {0}, /* U */ + {CMODE_V, 0, NULL, NULL}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {CMODE_c, 0, NULL, NULL}, + {0}, /* d */ + {0}, /* e */ + {CMODE_f, 0, set_flood, cs_set_flood}, + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {CMODE_u, 0, NULL, NULL}, + {0}, /* v */ + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {CMODE_z, 0, NULL, NULL}, + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'c', CMODE_c, 0, NULL, NULL}, + {'f', CMODE_f, 0, get_flood, cs_get_flood}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'u', CMODE_u, 0, NULL, NULL}, + {'z', CMODE_z, 0, NULL, NULL}, + {'A', CMODE_A, 0, NULL, NULL}, + {'C', CMODE_C, 0, NULL, NULL}, + {'G', CMODE_G, 0, NULL, NULL}, + {'K', CMODE_K, 0, NULL, NULL}, + {'L', CMODE_L, 0, get_redirect, cs_get_redirect}, + {'M', CMODE_M, 0, NULL, NULL}, + {'N', CMODE_N, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'Q', CMODE_Q, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {'S', CMODE_S, 0, NULL, NULL}, + {'T', CMODE_T, 0, NULL, NULL}, + {'V', CMODE_V, 0, NULL, NULL}, + {0} +}; + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {CUS_PROTECT, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, check_valid_op}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {CUS_OWNER, 0, check_valid_op}, + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + +void unreal_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (!user || !modes) { + /* Prevent NULLs from doing bad things */ + return; + } + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'd': + if (ac <= 0) { + break; + } + ac--; + av++; + if (av) { + user->svid = strtoul(*av, NULL, 0); + } + break; + case 'o': + if (add) { + opcnt++; + if (WallOper) { + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + } + display_news(user, NEWS_OPER); + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + case 'x': + update_host(user); + break; + } + } +} + + + + +/* Event: PROTOCTL */ +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +/* SVSNOOP */ +void unreal_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "%s %s %s", send_token("SVSNOOP", "f"), server, + (set ? "+" : "-")); +} + +void unreal_cmd_svsadmin(char *server, int set) +{ + unreal_cmd_svsnoop(server, set); +} + +void unreal_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, "%s - G %s %s %s", send_token("TKL", "BD"), user, host, + s_OperServ); +} + +void unreal_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "%s %s %s %lu :%s", send_token("TOPIC", ")"), chan, + whosetit, (unsigned long int) when, topic); +} + +void unreal_cmd_vhost_off(User * u) +{ + if (UseSVS2MODE) { + send_cmd(s_HostServ, "%s %s -xt", send_token("SVS2MODE", "v"), + u->nick); + } else { + send_cmd(s_HostServ, "%s %s -xt", send_token("SVSMODE", "n"), + u->nick); + } + notice_lang(s_HostServ, u, HOST_OFF_UNREAL, u->nick, + myIrcd->vhostchar); +} + +void unreal_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(NULL, "%s + G %s %s %s %ld %ld :%s", send_token("TKL", "BD"), + user, host, who, (long int) time(NULL) + 86400 * 2, + (long int) when, reason); +} + +/* +** svskill +** parv[0] = servername +** parv[1] = client +** parv[2] = kill message +*/ +void unreal_cmd_svskill(char *source, char *user, char *buf) +{ + if (!source || !user || !buf) { + return; + } + send_cmd(source, "%s %s :%s", send_token("SVSKILL", "h"), user, buf); +} + +/* + * m_svsmode() added by taz + * parv[0] - sender + * parv[1] - username to change mode for + * parv[2] - modes to change + * parv[3] - Service Stamp (if mode == d) + */ +void unreal_cmd_svsmode(User * u, int ac, char **av) +{ + if (ac >= 1) { + if (!u || !av[0]) { + return; + } + if (UseSVS2MODE) { + send_cmd(ServerName, "%s %s %s%s%s", + send_token("SVS2MODE", "v"), u->nick, av[0], + (ac == 2 ? " " : ""), (ac == 2 ? av[1] : "")); + } else { + send_cmd(ServerName, "%s %s %s%s%s", + send_token("SVSMODE", "n"), u->nick, av[0], + (ac == 2 ? " " : ""), (ac == 2 ? av[1] : "")); + } + } +} + +/* 372 */ +void unreal_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void unreal_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void unreal_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void unreal_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +void unreal_cmd_nick(char *nick, char *name, char *modes) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "%s %s 1 %ld %s %s %s 0 %s %s%s :%s", + send_token("NICK", "&"), nick, (long int) time(NULL), + ServiceUser, ServiceHost, ServerName, modes, ServiceHost, + (myIrcd->nickip ? " *" : " "), name); + unreal_cmd_sqline(nick, "Reserved for services"); +} + +void unreal_cmd_guest_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + send_cmd(NULL, "%s %s 1 %ld %s %s %s 0 %s %s%s :%s", + send_token("NICK", "&"), nick, (long int) time(NULL), user, + host, ServerName, modes, host, (myIrcd->nickip ? " *" : " "), + real); +} + +void unreal_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "%s %s %s", send_token("MODE", "G"), dest, buf); +} + +void unreal_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "%s %s 1 %ld %s %s %s 0 %s %s%s :%s", + send_token("NICK", "&"), nick, (long int) time(NULL), user, + host, ServerName, modes, host, (myIrcd->nickip ? " *" : " "), + real); + unreal_cmd_sqline(nick, "Reserved for services"); +} + +void unreal_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "%s %s %s :%s", send_token("KICK", "H"), chan, + user, buf); + } else { + send_cmd(source, "%s %s %s", send_token("KICK", "H"), chan, user); + } +} + +void unreal_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "%s @%s :%s", send_token("NOTICE", "B"), dest, buf); +} + + +void unreal_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + unreal_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "%s %s :%s", send_token("NOTICE", "B"), dest, + buf); + } +} + +void unreal_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "%s %s :%s", send_token("NOTICE", "B"), dest, msg); +} + +void unreal_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "%s %s :%s", send_token("PRIVMSG", "!"), dest, buf); +} + +void unreal_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "%s %s :%s", send_token("PRIVMSG", "!"), dest, msg); +} + +void unreal_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "%s $%s :%s", send_token("NOTICE", "B"), dest, msg); +} + +void unreal_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "%s $%s :%s", send_token("PRIVMSG", "!"), dest, msg); +} + +void unreal_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s %s", myIrcd->botchanumode, nick, + nick); +} + +void unreal_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, myIrcd->name, + version_flags, version_build); +} + +/* QUIT */ +void unreal_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(source, "%s :%s", send_token("QUIT", ","), buf); + } else { + send_cmd(source, "%s", send_token("QUIT", ",")); + } +} + +/* PROTOCTL */ +/* + NICKv2 = Nick Version 2 + VHP = Sends hidden host + UMODE2 = sends UMODE2 on user modes + NICKIP = Sends IP on NICK + TOKEN = Use tokens to talk + SJ3 = Supports SJOIN + NOQUIT = No Quit + TKLEXT = Extended TKL we don't use it but best to have it + SJB64 = Base64 encoded time stamps + VL = Version Info + NS = Numeric Server + +*/ +void unreal_cmd_capab() +{ + if (UseTokens) { + if (Numeric) { + send_cmd(NULL, + "PROTOCTL NICKv2 VHP UMODE2 NICKIP TOKEN SJOIN SJOIN2 SJ3 NOQUIT TKLEXT SJB64 VL"); + } else { + send_cmd(NULL, + "PROTOCTL NICKv2 VHP UMODE2 NICKIP TOKEN SJOIN SJOIN2 SJ3 NOQUIT TKLEXT SJB64"); + } + } else { + if (Numeric) { + send_cmd(NULL, + "PROTOCTL NICKv2 VHP UMODE2 NICKIP SJOIN SJOIN2 SJ3 NOQUIT TKLEXT SJB64 VL"); + } else { + send_cmd(NULL, + "PROTOCTL NICKv2 VHP UMODE2 NICKIP SJOIN SJOIN2 SJ3 NOQUIT TKLEXT SJB64"); + } + } +} + +/* PASS */ +void unreal_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS :%s", pass); +} + +/* SERVER name hop descript */ +/* Unreal 3.2 actually sends some info about itself in the descript area */ +void unreal_cmd_server(char *servname, int hop, char *descript) +{ + if (Numeric) { + send_cmd(NULL, "SERVER %s %d :U0-*-%s %s", servname, hop, Numeric, + descript); + } else { + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, descript); + } +} + +/* PONG */ +void unreal_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "%s %s", send_token("PONG", "9"), who); +} + +/* JOIN */ +void unreal_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(ServerName, "%s !%s %s :%s", + send_token("SJOIN", "~"), base64enc((long int) chantime), + channel, user); + /* send_cmd(user, "%s %s", send_token("JOIN", "C"), channel); */ +} + +/* unsqline +** parv[0] = sender +** parv[1] = nickmask +*/ +void unreal_cmd_unsqline(char *user) +{ + if (!user) { + return; + } + send_cmd(NULL, "%s %s", send_token("UNSQLINE", "d"), user); +} + +/* CHGHOST */ +void unreal_cmd_chghost(char *nick, char *vhost) +{ + if (!nick || !vhost) { + return; + } + send_cmd(ServerName, "%s %s %s", send_token("CHGHOST", "AL"), nick, + vhost); +} + +/* CHGIDENT */ +void unreal_cmd_chgident(char *nick, char *vIdent) +{ + if (!nick || !vIdent) { + return; + } + send_cmd(ServerName, "%s %s %s", send_token("CHGIDENT", "AZ"), nick, + vIdent); +} + +/* INVITE */ +void unreal_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "%s %s %s", send_token("INVITE", "*"), nick, chan); +} + +/* PART */ +void unreal_cmd_part(char *nick, char *chan, char *buf) +{ + if (!nick || !chan) { + return; + } + + if (buf) { + send_cmd(nick, "%s %s :%s", send_token("PART", "D"), chan, buf); + } else { + send_cmd(nick, "%s %s", send_token("PART", "D"), chan); + } +} + +/* 391 RPL_TIME ":%s 391 %s %s :%s" */ +void unreal_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(ServerName, "391 %s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void unreal_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void unreal_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void unreal_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void unreal_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void unreal_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void unreal_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void unreal_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void unreal_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void unreal_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void unreal_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void unreal_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +/* GLOBOPS */ +void unreal_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "%s :%s", + send_token("GLOBOPS", "]"), buf); +} + +/* GLOBOPS - to handle old WALLOPS */ +void unreal_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "%s :%s", + send_token("GLOBOPS", "]"), fmt); +} + +/* SQLINE */ +/* +** parv[0] = sender +** parv[1] = nickmask +** parv[2] = reason +** +** - Unreal will translate this to TKL for us +** +*/ +void unreal_cmd_sqline(char *mask, char *reason) +{ + if (!mask || !reason) { + return; + } + + send_cmd(NULL, "%s %s :%s", send_token("SQLINE", "c"), mask, reason); +} + +/* SQUIT */ +void unreal_cmd_squit(char *servname, char *message) +{ + if (!servname || !message) { + return; + } + + send_cmd(NULL, "%s %s :%s", send_token("SQUIT", "-"), servname, + message); +} + +/* +** svso +** parv[0] = sender prefix +** parv[1] = nick +** parv[2] = options +*/ +void unreal_cmd_svso(char *source, char *nick, char *flag) +{ + if (!source || !nick || !flag) { + return; + } + + send_cmd(source, "%s %s %s", send_token("SVSO", "BB"), nick, flag); +} + +/* NICK <newnick> */ +void unreal_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "%s %s %ld", send_token("NICK", "&"), newnick, + (long int) time(NULL)); +} + +/* SVSNICK */ +/* +** parv[0] = sender +** parv[1] = old nickname +** parv[2] = new nickname +** parv[3] = timestamp +*/ +void unreal_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "%s %s %s :%ld", send_token("SVSNICK", "e"), source, + guest, (long int) when); +} + +/* Functions that use serval cmd functions */ + +void unreal_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + if (!nick) { + return; + } + if (vIdent) { + unreal_cmd_chgident(nick, vIdent); + } + unreal_cmd_chghost(nick, vhost); +} + +void unreal_cmd_connect(int servernum) +{ + if (Numeric) { + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, Numeric); + } else { + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + } + + unreal_cmd_capab(); + if (servernum == 1) { + unreal_cmd_pass(RemotePassword); + } + if (servernum == 2) { + unreal_cmd_pass(RemotePassword2); + } + if (servernum == 3) { + unreal_cmd_pass(RemotePassword3); + } + unreal_cmd_server(ServerName, 1, ServerDesc); +} + +/* Events */ + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + unreal_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +void unreal_cmd_netinfo(int ac, char **av) +{ + send_cmd(NULL, "%s %ld %ld %d %s 0 0 0 :%s", + send_token("NETINFO", "AO"), (long int) maxusercnt, + (long int) time(NULL), atoi(av[2]), av[3], av[7]); +} + +/* netinfo + * argv[0] = max global count + * argv[1] = time of end sync + * argv[2] = unreal protocol using (numeric) + * argv[3] = cloak-crc (> u2302) + * argv[4] = free(**) + * argv[5] = free(**) + * argv[6] = free(**) + * argv[7] = ircnet + */ +int anope_event_netinfo(char *source, int ac, char **av) +{ + unreal_cmd_netinfo(ac, av); + return MOD_CONT; +} + + +/* TKL + * add: remove: spamfilter: spamfilter+TKLEXT sqline: + * parv[ 1]: + - +/- + +/- + * parv[ 2]: type type type type type + * parv[ 3]: user user target target hold + * parv[ 4]: host host action action host + * parv[ 5]: setby removedby (un)setby setby setby + * parv[ 6]: expire_at expire_at (0) expire_at (0) expire_at + * parv[ 7]: set_at set_at set_at set_at + * parv[ 8]: reason regex tkl duration reason + * parv[ 9]: tkl reason [A] + * parv[10]: regex + * +*/ +int anope_event_tkl(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_eos(char *source, int ac, char **av) +{ + Server *s; + s = findserver(servlist, source); + /* If we found a server with the given source, that one just + * finished bursting. If there was no source, then our uplink + * server finished bursting. -GD + */ + if (!s && serv_uplink) + s = serv_uplink; + finish_sync(s, 1); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + +/* +** away +** parv[0] = sender prefix +** parv[1] = away message +*/ +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +/* +** m_topic +** parv[0] = sender prefix +** parv[1] = topic text +** +** For servers using TS: +** parv[0] = sender prefix +** parv[1] = channel name +** parv[2] = topic nickname +** parv[3] = topic time +** parv[4] = topic text +*/ +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac != 4) + return MOD_CONT; + do_topic(source, ac, av); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + return MOD_CONT; +} + + +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + +/* Unreal sends USER modes with this */ +/* + umode2 + parv[0] - sender + parv[1] - modes to change +*/ +int anope_event_umode2(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + do_umode2(source, ac, av); + return MOD_CONT; +} + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +int anope_event_setname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETNAME for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_realname(u, av[0]); + return MOD_CONT; +} + +int anope_event_chgname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGNAME for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_realname(u, av[1]); + return MOD_CONT; +} + +int anope_event_setident(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETIDENT for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_username(u, av[0]); + return MOD_CONT; +} +int anope_event_chgident(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGIDENT for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_username(u, av[1]); + return MOD_CONT; +} + +int anope_event_sethost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETHOST for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_host(u, av[0]); + return MOD_CONT; +} + +/* +** NICK - new +** source = NULL +** parv[0] = nickname +** parv[1] = hopcount +** parv[2] = timestamp +** parv[3] = username +** parv[4] = hostname +** parv[5] = servername +** if NICK version 1: +** parv[6] = servicestamp +** parv[7] = info +** if NICK version 2: +** parv[6] = servicestamp +** parv[7] = umodes +** parv[8] = virthost, * if none +** parv[9] = info +** if NICKIP: +** parv[9] = ip +** parv[10] = info +** +** NICK - change +** source = oldnick +** parv[0] = new nickname +** parv[1] = hopcount +*/ +/* + do_nick(const char *source, char *nick, char *username, char *host, + char *server, char *realname, time_t ts, uint32 svid, + uint32 ip, char *vhost, char *uid) +*/ +int anope_event_nick(char *source, int ac, char **av) +{ + User *user; + + if (ac != 2) { + if (ac == 7) { + /* + <codemastr> that was a bug that is now fixed in 3.2.1 + <codemastr> in some instances it would use the non-nickv2 format + <codemastr> it's sent when a nick collision occurs + - so we have to leave it around for now -TSL + */ + do_nick(source, av[0], av[3], av[4], av[5], av[6], + strtoul(av[2], NULL, 10), 0, 0, "*", NULL); + + } else if (ac == 11) { + user = do_nick(source, av[0], av[3], av[4], av[5], av[10], + strtoul(av[2], NULL, 10), strtoul(av[6], NULL, + 0), + ntohl(decode_ip(av[9])), av[8], NULL); + if (user) + anope_set_umode(user, 1, &av[7]); + + } else { + /* NON NICKIP */ + user = do_nick(source, av[0], av[3], av[4], av[5], av[9], + strtoul(av[2], NULL, 10), strtoul(av[6], NULL, + 0), 0, av[8], + NULL); + if (user) + anope_set_umode(user, 1, &av[7]); + } + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + + +int anope_event_chghost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGHOST for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_host(u, av[1]); + return MOD_CONT; +} + +/* EVENT: SERVER */ +int anope_event_server(char *source, int ac, char **av) +{ + char *desc; + char *vl; + char *upnumeric; + + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + vl = myStrGetToken(av[2], ' ', 0); + upnumeric = myStrGetToken(vl, '-', 2); + desc = myStrGetTokenRemainder(av[2], ' ', 1); + do_server(source, av[0], av[1], desc, upnumeric); + Anope_Free(vl); + Anope_Free(desc); + Anope_Free(upnumeric); + } else { + do_server(source, av[0], av[1], av[2], NULL); + } + + return MOD_CONT; +} + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +/* SVSHOLD - set */ +void unreal_cmd_svshold(char *nick) +{ + send_cmd(NULL, "%s + Q H %s %s %ld %ld :%s", send_token("TKL", "BD"), + nick, ServerName, (long int) time(NULL) + NSReleaseTimeout, + (long int) time(NULL), "Being held for registered user"); +} + +/* SVSHOLD - release */ +void unreal_cmd_release_svshold(char *nick) +{ + send_cmd(NULL, "%s - Q * %s %s", send_token("TKL", "BD"), nick, + ServerName); +} + +/* UNSGLINE */ +/* + * SVSNLINE - :realname mask +*/ +void unreal_cmd_unsgline(char *mask) +{ + send_cmd(NULL, "%s - :%s", send_token("SVSNLINE", "BR"), mask); +} + +/* UNSZLINE */ +void unreal_cmd_unszline(char *mask) +{ + send_cmd(NULL, "%s - Z * %s %s", send_token("TKL", "BD"), mask, + s_OperServ); +} + +/* SZLINE */ +void unreal_cmd_szline(char *mask, char *reason, char *whom) +{ + send_cmd(NULL, "%s + Z * %s %s %ld %ld :%s", send_token("TKL", "BD"), + mask, whom, (long int) time(NULL) + 86400 * 2, + (long int) time(NULL), reason); +} + +/* SGLINE */ +/* + * SVSNLINE + reason_where_is_space :realname mask with spaces +*/ +void unreal_cmd_sgline(char *mask, char *reason) +{ + strnrepl(reason, BUFSIZE, " ", "_"); + send_cmd(NULL, "%s + %s :%s", send_token("SVSNLINE", "BR"), reason, + mask); +} + +/* SVSMODE -b */ +void unreal_cmd_unban(char *name, char *nick) +{ + unreal_cmd_svsmode_chan(name, "-b", nick); +} + + +/* SVSMODE channel modes */ + +void unreal_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + if (nick) { + send_cmd(ServerName, "%s %s %s %s", send_token("SVSMODE", "n"), + name, mode, nick); + } else { + send_cmd(ServerName, "%s %s %s", send_token("SVSMODE", "n"), name, + mode); + } +} + + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void unreal_cmd_svid_umode(char *nick, time_t ts) +{ + if (UseSVS2MODE) { + send_cmd(ServerName, "%s %s +d 1", send_token("SVS2MODE", "v"), + nick); + } else { + send_cmd(ServerName, "%s %s +d 1", send_token("SVSMODE", "n"), + nick); + } +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void unreal_cmd_nc_change(User * u) +{ + common_svsmode(u, "-r+d", "1"); +} + +/* SVSMODE +r */ +void unreal_cmd_svid_umode2(User * u, char *ts) +{ + if (u->svid != u->timestamp) { + common_svsmode(u, "+rd", ts); + } else { + common_svsmode(u, "+r", NULL); + } +} + +void unreal_cmd_svid_umode3(User * u, char *ts) +{ + /* not used */ +} + +int anope_event_error(char *source, int ac, char **av) +{ + if (av[0]) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + +int anope_event_notice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_smo(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +/* svsjoin + parv[0] - sender + parv[1] - nick to make join + parv[2] - channel(s) to join + parv[3] - (optional) channel key(s) + - current we do not support the keys part +*/ +/* In older Unreal SVSJOIN and SVSNLINE tokens were mixed so SVSJOIN and SVSNLINE are broken + when coming from a none TOKEN'd server +*/ +void unreal_cmd_svsjoin(char *source, char *nick, char *chan) +{ + send_cmd(source, "%s %s :%s", send_token("SVSJOIN", "BX"), nick, chan); +} + +/* svspart + parv[0] - sender + parv[1] - nick to make part + parv[2] - channel(s) to part +*/ +void unreal_cmd_svspart(char *source, char *nick, char *chan) +{ + send_cmd(source, "%s %s :%s", send_token("SVSPART", "BT"), nick, chan); +} + +int anope_event_globops(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_swhois(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_credits(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_sdesc(char *source, int ac, char **av) +{ + Server *s; + s = findserver(servlist, source); + + if (s) { + s->desc = av[0]; + } + + return MOD_CONT; +} + +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + +void unreal_cmd_swhois(char *source, char *who, char *mask) +{ + send_cmd(source, "%s %s :%s", send_token("SWHOIS", "BA"), who, mask); +} + +void unreal_cmd_eob() +{ + send_cmd(ServerName, "%s", send_token("EOS", "ES")); +} + +/* svswatch + * parv[0] - sender + * parv[1] - target nick + * parv[2] - parameters + */ +void unreal_cmd_svswatch(char *sender, char *nick, char *parm) +{ + send_cmd(sender, "%s %s :%s", send_token("SVSWATCH", "Bw"), nick, + parm); +} + +/* check if +f mode is valid for the ircd */ +/* borrowed part of the new check from channels.c in Unreal */ +int unreal_flood_mode_check(char *value) +{ + char *dp, *end; + /* NEW +F */ + char xbuf[256], *p, *p2, *x = xbuf + 1; + int v; + + if (!value) { + return 0; + } + + if (*value != ':' + && (strtoul((*value == '*' ? value + 1 : value), &dp, 10) > 0) + && (*dp == ':') && (*(++dp) != 0) && (strtoul(dp, &end, 10) > 0) + && (*end == 0)) { + return 1; + } else { + /* '['<number><1 letter>[optional: '#'+1 letter],[next..]']'':'<number> */ + strncpy(xbuf, value, sizeof(xbuf)); + p2 = strchr(xbuf + 1, ']'); + if (!p2) { + return 0; + } + *p2 = '\0'; + if (*(p2 + 1) != ':') { + return 0; + } + for (x = strtok(xbuf + 1, ","); x; x = strtok(NULL, ",")) { + /* <number><1 letter>[optional: '#'+1 letter] */ + p = x; + while (isdigit(*p)) { + p++; + } + if ((*p == '\0') + || !((*p == 'c') || (*p == 'j') || (*p == 'k') + || (*p == 'm') || (*p == 'n') || (*p == 't'))) { + continue; /* continue instead of break for forward compatability. */ + } + *p = '\0'; + v = atoi(x); + if ((v < 1) || (v > 999)) { + return 0; + } + p++; + } + return 1; + } +} + +void unreal_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + unreal_cmd_squit(jserver, rbuf); + unreal_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int unreal_valid_nick(char *nick) +{ + if (!stricmp("ircd", nick)) { + return 0; + } + if (!stricmp("irc", nick)) { + return 0; + } + return 1; +} + +void unreal_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "%s %s :\1%s \1", send_token("NOTICE", "B"), dest, s); + free(s); +} + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+a","-a"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("451", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("461", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("6", anope_event_away); addCoreMessage(IRCD,m); + } + m = createMessage("INVITE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("*", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("C", anope_event_join); addCoreMessage(IRCD,m); + } + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("H", anope_event_kick); addCoreMessage(IRCD,m); + } + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage(".", anope_event_kill); addCoreMessage(IRCD,m); + } + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("G", anope_event_mode); addCoreMessage(IRCD,m); + } + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("F", anope_event_motd); addCoreMessage(IRCD,m); + } + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("&", anope_event_nick); addCoreMessage(IRCD,m); + } + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("B", anope_event_notice); addCoreMessage(IRCD,m); + } + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("D", anope_event_part); addCoreMessage(IRCD,m); + } + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("8", anope_event_ping); addCoreMessage(IRCD,m); + } + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("!", anope_event_privmsg); addCoreMessage(IRCD,m); + } + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage(",", anope_event_quit); addCoreMessage(IRCD,m); + } + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("'", anope_event_server); addCoreMessage(IRCD,m); + } + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("-", anope_event_squit); addCoreMessage(IRCD,m); + } + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage(")", anope_event_topic); addCoreMessage(IRCD,m); + } + m = createMessage("USER", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("%", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("=", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("#", anope_event_whois); addCoreMessage(IRCD,m); + } + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("V", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("GLOBOPS", anope_event_globops); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("]", anope_event_globops); addCoreMessage(IRCD,m); + } + m = createMessage("GNOTICE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("Z", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("[", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("Y", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("U", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("h", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("n", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SVS2MODE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("v", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("e", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("f", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SQLINE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("c", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("d", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("PROTOCTL", anope_event_capab); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("_", anope_event_capab); addCoreMessage(IRCD,m); + } + m = createMessage("CHGHOST", anope_event_chghost); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AL", anope_event_chghost); addCoreMessage(IRCD,m); + } + m = createMessage("CHGIDENT", anope_event_chgident); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AZ", anope_event_chgident); addCoreMessage(IRCD,m); + } + m = createMessage("CHGNAME", anope_event_chgname); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("BK", anope_event_chgname); addCoreMessage(IRCD,m); + } + m = createMessage("NETINFO", anope_event_netinfo); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AO", anope_event_netinfo); addCoreMessage(IRCD,m); + } + m = createMessage("SETHOST", anope_event_sethost); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AA", anope_event_sethost); addCoreMessage(IRCD,m); + } + m = createMessage("SETIDENT", anope_event_setident); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AD", anope_event_setident); addCoreMessage(IRCD,m); + } + m = createMessage("SETNAME", anope_event_setname); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AE", anope_event_setname); addCoreMessage(IRCD,m); + } + m = createMessage("TKL", anope_event_tkl); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("BD", anope_event_tkl); addCoreMessage(IRCD,m); + } + m = createMessage("EOS", anope_event_eos); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("ES", anope_event_eos); addCoreMessage(IRCD,m); + } + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("<", anope_event_pass); addCoreMessage(IRCD,m); + } + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("5", anope_event_error); addCoreMessage(IRCD,m); + } + m = createMessage("SMO", anope_event_smo); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AU", anope_event_smo); addCoreMessage(IRCD,m); + } + m = createMessage("UMODE2", anope_event_umode2); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("|", anope_event_umode2); addCoreMessage(IRCD,m); + } + m = createMessage("SWHOIS", anope_event_swhois); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("BA", anope_event_swhois); addCoreMessage(IRCD,m); + } + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("~", anope_event_sjoin); addCoreMessage(IRCD,m); + } + m = createMessage("REHASH", anope_event_rehash); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("O", anope_event_rehash); addCoreMessage(IRCD,m); + } + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("@", anope_event_admin); addCoreMessage(IRCD,m); + } + m = createMessage("CREDITS", anope_event_credits); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AJ", anope_event_credits); addCoreMessage(IRCD,m); + } + m = createMessage("SDESC", anope_event_sdesc); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AG", anope_event_sdesc); addCoreMessage(IRCD,m); + } + m = createMessage("HTM", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("BH", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("HELP", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("4", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("TRACE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("b", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("LAG", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AF", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("RPING", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AM", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SENDSNO", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("Ss", anope_event_null); addCoreMessage(IRCD,m); + } + m = createMessage("SENDUMODE", anope_event_null); addCoreMessage(IRCD,m); + if (UseTokens) { + m = createMessage("AP", anope_event_null); addCoreMessage(IRCD,m); + } + + + /* The none token version of these is in messages.c */ + if (UseTokens) { + m = createMessage("2", m_stats); addCoreMessage(IRCD,m); + m = createMessage(">", m_time); addCoreMessage(IRCD,m); + m = createMessage("+", m_version); addCoreMessage(IRCD,m); + } +} + +/* *INDENT-ON* */ + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(unreal_cmd_svsnoop); + pmodule_cmd_remove_akill(unreal_cmd_remove_akill); + pmodule_cmd_topic(unreal_cmd_topic); + pmodule_cmd_vhost_off(unreal_cmd_vhost_off); + pmodule_cmd_akill(unreal_cmd_akill); + pmodule_cmd_svskill(unreal_cmd_svskill); + pmodule_cmd_svsmode(unreal_cmd_svsmode); + pmodule_cmd_372(unreal_cmd_372); + pmodule_cmd_372_error(unreal_cmd_372_error); + pmodule_cmd_375(unreal_cmd_375); + pmodule_cmd_376(unreal_cmd_376); + pmodule_cmd_nick(unreal_cmd_nick); + pmodule_cmd_guest_nick(unreal_cmd_guest_nick); + pmodule_cmd_mode(unreal_cmd_mode); + pmodule_cmd_bot_nick(unreal_cmd_bot_nick); + pmodule_cmd_kick(unreal_cmd_kick); + pmodule_cmd_notice_ops(unreal_cmd_notice_ops); + pmodule_cmd_notice(unreal_cmd_notice); + pmodule_cmd_notice2(unreal_cmd_notice2); + pmodule_cmd_privmsg(unreal_cmd_privmsg); + pmodule_cmd_privmsg2(unreal_cmd_privmsg2); + pmodule_cmd_serv_notice(unreal_cmd_serv_notice); + pmodule_cmd_serv_privmsg(unreal_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(unreal_cmd_bot_chan_mode); + pmodule_cmd_351(unreal_cmd_351); + pmodule_cmd_quit(unreal_cmd_quit); + pmodule_cmd_pong(unreal_cmd_pong); + pmodule_cmd_join(unreal_cmd_join); + pmodule_cmd_unsqline(unreal_cmd_unsqline); + pmodule_cmd_invite(unreal_cmd_invite); + pmodule_cmd_part(unreal_cmd_part); + pmodule_cmd_391(unreal_cmd_391); + pmodule_cmd_250(unreal_cmd_250); + pmodule_cmd_307(unreal_cmd_307); + pmodule_cmd_311(unreal_cmd_311); + pmodule_cmd_312(unreal_cmd_312); + pmodule_cmd_317(unreal_cmd_317); + pmodule_cmd_219(unreal_cmd_219); + pmodule_cmd_401(unreal_cmd_401); + pmodule_cmd_318(unreal_cmd_318); + pmodule_cmd_242(unreal_cmd_242); + pmodule_cmd_243(unreal_cmd_243); + pmodule_cmd_211(unreal_cmd_211); + pmodule_cmd_global(unreal_cmd_global); + pmodule_cmd_global_legacy(unreal_cmd_global_legacy); + pmodule_cmd_sqline(unreal_cmd_sqline); + pmodule_cmd_squit(unreal_cmd_squit); + pmodule_cmd_svso(unreal_cmd_svso); + pmodule_cmd_chg_nick(unreal_cmd_chg_nick); + pmodule_cmd_svsnick(unreal_cmd_svsnick); + pmodule_cmd_vhost_on(unreal_cmd_vhost_on); + pmodule_cmd_connect(unreal_cmd_connect); + pmodule_cmd_svshold(unreal_cmd_svshold); + pmodule_cmd_release_svshold(unreal_cmd_release_svshold); + pmodule_cmd_unsgline(unreal_cmd_unsqline); + pmodule_cmd_unszline(unreal_cmd_unszline); + pmodule_cmd_szline(unreal_cmd_szline); + pmodule_cmd_sgline(unreal_cmd_sgline); + pmodule_cmd_unban(unreal_cmd_unban); + pmodule_cmd_svsmode_chan(unreal_cmd_svsmode_chan); + pmodule_cmd_svid_umode(unreal_cmd_svid_umode); + pmodule_cmd_nc_change(unreal_cmd_nc_change); + pmodule_cmd_svid_umode2(unreal_cmd_svid_umode2); + pmodule_cmd_svid_umode3(unreal_cmd_svid_umode3); + pmodule_cmd_eob(unreal_cmd_eob); + pmodule_flood_mode_check(unreal_flood_mode_check); + pmodule_cmd_jupe(unreal_cmd_jupe); + pmodule_valid_nick(unreal_valid_nick); + pmodule_cmd_ctcp(unreal_cmd_ctcp); + pmodule_set_umode(unreal_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("UnrealIRCd 3.2+"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set("+f"); + pmodule_ircd_flood_mode_char_remove("-f"); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/unreal32.h b/src/protocol/unreal32.h new file mode 100644 index 000000000..7bb3863cf --- /dev/null +++ b/src/protocol/unreal32.h @@ -0,0 +1,153 @@ +/* Unreal IRCD 3.2.x functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@unreal.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/*************************************************************************/ + +/* User Modes */ +#define UMODE_a 0x00000001 /* a Services Admin */ +#define UMODE_h 0x00000002 /* h Available for help (HelpOp) */ +#define UMODE_i 0x00000004 /* i Invisible (not shown in /who) */ +#define UMODE_o 0x00000008 /* o Global IRC Operator */ +#define UMODE_r 0x00000010 /* r Identifies the nick as being registered */ +#define UMODE_w 0x00000020 /* w Can listen to wallop messages */ +#define UMODE_A 0x00000040 /* A Server Admin */ +#define UMODE_N 0x00000080 /* N Network Administrator */ +#define UMODE_O 0x00000100 /* O Local IRC Operator */ +#define UMODE_C 0x00000200 /* C Co-Admin */ +#define UMODE_d 0x00000400 /* d Makes it so you can not receive channel PRIVMSGs */ +#define UMODE_p 0x00000800 /* Hides the channels you are in in a /whois reply */ +#define UMODE_q 0x00001000 /* q Only U:Lines can kick you (Services Admins Only) */ +#define UMODE_s 0x00002000 /* s Can listen to server notices */ +#define UMODE_t 0x00004000 /* t Says you are using a /vhost */ +#define UMODE_v 0x00008000 /* v Receives infected DCC Send Rejection notices */ +#define UMODE_z 0x00010000 /* z Indicates that you are an SSL client */ +#define UMODE_B 0x00020000 /* B Marks you as being a Bot */ +#define UMODE_G 0x00040000 /* G Filters out all the bad words per configuration */ +#define UMODE_H 0x00080000 /* H Hide IRCop Status (IRCop Only) */ +#define UMODE_S 0x00100000 /* S services client */ +#define UMODE_V 0x00200000 /* V Marks you as a WebTV user */ +#define UMODE_W 0x00400000 /* W Lets you see when people do a /whois on you */ +#define UMODE_T 0x00800000 /* T Prevents you from receiving CTCPs */ +#define UMODE_g 0x20000000 /* g Can send & read globops and locops */ +#define UMODE_x 0x40000000 /* x Gives user a hidden hostname */ +#define UMODE_R 0x80000000 /* Allows you to only receive PRIVMSGs/NOTICEs from registered (+r) users */ + + +/*************************************************************************/ + +/* Channel Modes */ + +#define CMODE_i 0x00000001 +#define CMODE_m 0x00000002 +#define CMODE_n 0x00000004 +#define CMODE_p 0x00000008 +#define CMODE_s 0x00000010 +#define CMODE_t 0x00000020 +#define CMODE_k 0x00000040 /* These two used only by ChanServ */ +#define CMODE_l 0x00000080 +#define CMODE_R 0x00000100 /* Only identified users can join */ +#define CMODE_r 0x00000200 /* Set for all registered channels */ +#define CMODE_c 0x00000400 +#define CMODE_A 0x00000800 +/* #define CMODE_H 0x00001000 Was now +I may not join, but Unreal Removed it and it will not set in 3.2 */ +#define CMODE_K 0x00002000 +#define CMODE_L 0x00004000 +#define CMODE_O 0x00008000 +#define CMODE_Q 0x00010000 +#define CMODE_S 0x00020000 +#define CMODE_V 0x00040000 +#define CMODE_f 0x00080000 +#define CMODE_G 0x00100000 +#define CMODE_C 0x00200000 +#define CMODE_u 0x00400000 +#define CMODE_z 0x00800000 +#define CMODE_N 0x01000000 +#define CMODE_T 0x02000000 +#define CMODE_M 0x04000000 + + +/* Default Modes with MLOCK */ + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void unreal_set_umode(User * user, int ac, char **av); +void unreal_cmd_svsnoop(char *server, int set); +void unreal_cmd_remove_akill(char *user, char *host); +void unreal_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void unreal_cmd_vhost_off(User * u); +void unreal_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void unreal_cmd_svskill(char *source, char *user, char *buf); +void unreal_cmd_svsmode(User * u, int ac, char **av); +void unreal_cmd_372(char *source, char *msg); +void unreal_cmd_372_error(char *source); +void unreal_cmd_375(char *source); +void unreal_cmd_376(char *source); +void unreal_cmd_nick(char *nick, char *name, char *modes); +void unreal_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void unreal_cmd_mode(char *source, char *dest, char *buf); +void unreal_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void unreal_cmd_kick(char *source, char *chan, char *user, char *buf); +void unreal_cmd_notice_ops(char *source, char *dest, char *buf); +void unreal_cmd_notice(char *source, char *dest, char *buf); +void unreal_cmd_notice2(char *source, char *dest, char *msg); +void unreal_cmd_privmsg(char *source, char *dest, char *buf); +void unreal_cmd_privmsg2(char *source, char *dest, char *msg); +void unreal_cmd_serv_notice(char *source, char *dest, char *msg); +void unreal_cmd_serv_privmsg(char *source, char *dest, char *msg); +void unreal_cmd_bot_chan_mode(char *nick, char *chan); +void unreal_cmd_351(char *source); +void unreal_cmd_quit(char *source, char *buf); +void unreal_cmd_pong(char *servname, char *who); +void unreal_cmd_join(char *user, char *channel, time_t chantime); +void unreal_cmd_unsqline(char *user); +void unreal_cmd_invite(char *source, char *chan, char *nick); +void unreal_cmd_part(char *nick, char *chan, char *buf); +void unreal_cmd_391(char *source, char *timestr); +void unreal_cmd_250(char *buf); +void unreal_cmd_307(char *buf); +void unreal_cmd_311(char *buf); +void unreal_cmd_312(char *buf); +void unreal_cmd_317(char *buf); +void unreal_cmd_219(char *source, char *letter); +void unreal_cmd_401(char *source, char *who); +void unreal_cmd_318(char *source, char *who); +void unreal_cmd_242(char *buf); +void unreal_cmd_243(char *buf); +void unreal_cmd_211(char *buf); +void unreal_cmd_global(char *source, char *buf); +void unreal_cmd_global_legacy(char *source, char *fmt); +void unreal_cmd_sqline(char *mask, char *reason); +void unreal_cmd_squit(char *servname, char *message); +void unreal_cmd_svso(char *source, char *nick, char *flag); +void unreal_cmd_chg_nick(char *oldnick, char *newnick); +void unreal_cmd_svsnick(char *source, char *guest, time_t when); +void unreal_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void unreal_cmd_connect(int servernum); +void unreal_cmd_svshold(char *nick); +void unreal_cmd_release_svshold(char *nick); +void unreal_cmd_unsgline(char *mask); +void unreal_cmd_unszline(char *mask); +void unreal_cmd_szline(char *mask, char *reason, char *whom); +void unreal_cmd_sgline(char *mask, char *reason); +void unreal_cmd_unban(char *name, char *nick); +void unreal_cmd_svsmode_chan(char *name, char *mode, char *nick); +void unreal_cmd_svid_umode(char *nick, time_t ts); +void unreal_cmd_nc_change(User * u); +void unreal_cmd_svid_umode2(User * u, char *ts); +void unreal_cmd_svid_umode3(User * u, char *ts); +void unreal_cmd_eob(); +int unreal_flood_mode_check(char *value); +void unreal_cmd_jupe(char *jserver, char *who, char *reason); +int unreal_valid_nick(char *nick); +void unreal_cmd_ctcp(char *source, char *dest, char *buf); + diff --git a/src/protocol/viagra.c b/src/protocol/viagra.c new file mode 100644 index 000000000..cd9fbe991 --- /dev/null +++ b/src/protocol/viagra.c @@ -0,0 +1,1696 @@ +/* Viagra IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * $Id$ + * + */ + +#include "services.h" +#include "pseudo.h" +#include "viagra.h" + +IRCDVar myIrcd[] = { + {"ViagraIRCd 1.3.*", /* ircd name */ + "+oS", /* nickserv mode */ + "+oS", /* chanserv mode */ + "+oS", /* memoserv mode */ + "+oS", /* hostserv mode */ + "+ioS", /* operserv mode */ + "+oS", /* botserv mode */ + "+oS", /* helpserv mode */ + "+i", /* Dev/Null mode */ + "+ioS", /* Global mode */ + "+oS", /* nickserv alias mode */ + "+oS", /* chanserv alias mode */ + "+oS", /* memoserv alias mode */ + "+ioS", /* hostserv alias mode */ + "+ioS", /* operserv alias mode */ + "+oS", /* botserv alias mode */ + "+oS", /* helpserv alias mode */ + "+iS", /* Dev/Null alias mode */ + "+ioS", /* Global alias mode */ + "+qS", /* Used by BotServ Bots */ + 5, /* Chan Max Symbols */ + "-ciklmnpstOR", /* Modes to Remove */ + "+ao", /* Channel Umode used by Botserv bots */ + 1, /* SVSNICK */ + 1, /* Vhost */ + 1, /* Has Owner */ + "+q", /* Mode to set for an owner */ + "-q", /* Mode to unset for an owner */ + "+a", /* Mode to set for channel admin */ + "-a", /* Mode to unset for channel admin */ + "+rd", /* Mode On Reg */ + "-r+d", /* Mode on UnReg */ + "-r+d", /* Mode on Nick Change */ + 1, /* Supports SGlines */ + 1, /* Supports SQlines */ + 1, /* Supports SZlines */ + 1, /* Supports Halfop +h */ + 3, /* Number of server args */ + 0, /* Join 2 Set */ + 0, /* Join 2 Message */ + 1, /* Has exceptions +e */ + 0, /* TS Topic Forward */ + 0, /* TS Topci Backward */ + 0, /* Protected Umode */ + 1, /* Has Admin */ + 0, /* Chan SQlines */ + 1, /* Quit on Kill */ + 1, /* SVSMODE unban */ + 1, /* Has Protect */ + 0, /* Reverse */ + 1, /* Chan Reg */ + CMODE_r, /* Channel Mode */ + 1, /* vidents */ + 0, /* svshold */ + 1, /* time stamp on mode */ + 1, /* NICKIP */ + 0, /* O:LINE */ + 1, /* UMODE */ + 1, /* VHOST ON NICK */ + 1, /* Change RealName */ + 0, /* No Knock */ + 0, /* Admin Only */ + DEFAULT_MLOCK, /* Default MLOCK */ + UMODE_x, /* Vhost Mode */ + 0, /* +f */ + 0, /* +L */ + 0, + 0, + 1, + 1, /* No Knock requires +i */ + NULL, /* CAPAB Chan Modes */ + 0, /* We support TOKENS */ + 1, /* TOKENS are CASE inSensitive */ + 0, /* TIME STAMPS are BASE64 */ + 0, /* +I support */ + 0, /* SJOIN ban char */ + 0, /* SJOIN except char */ + 0, /* SJOIN invite char */ + 0, /* Can remove User Channel Modes with SVSMODE */ + 0, /* Sglines are not enforced until user reconnects */ + "x", /* vhost char */ + 0, /* ts6 */ + 1, /* support helper umode */ + 0, /* p10 */ + NULL, /* character set */ + 1, /* reports sync state */ + } + , + {NULL} +}; + + +IRCDCAPAB myIrcdcap[] = { + { + CAPAB_NOQUIT, /* NOQUIT */ + CAPAB_TSMODE, /* TSMODE */ + CAPAB_UNCONNECT, /* UNCONNECT */ + CAPAB_NICKIP, /* NICKIP */ + CAPAB_NSJOIN, /* SJOIN */ + CAPAB_ZIP, /* ZIP */ + CAPAB_BURST, /* BURST */ + CAPAB_TS5, /* TS5 */ + CAPAB_TS3, /* TS3 */ + CAPAB_DKEY, /* DKEY */ + 0, /* PT4 */ + 0, /* SCS */ + 0, /* QS */ + 0, /* UID */ + 0, /* KNOCK */ + 0, /* CLIENT */ + 0, /* IPV6 */ + 0, /* SSJ5 */ + 0, /* SN2 */ + 0, /* TOKEN */ + 0, /* VHOST */ + 0, /* SSJ3 */ + 0, /* NICK2 */ + 0, /* UMODE2 */ + 0, /* VL */ + 0, /* TLKEXT */ + CAPAB_DODKEY, /* DODKEY */ + CAPAB_DOZIP, /* DOZIP */ + 0, 0, 0} +}; + + + + +void viagra_set_umode(User * user, int ac, char **av) +{ + int add = 1; /* 1 if adding modes, 0 if deleting */ + char *modes = av[0]; + + ac--; + + if (debug) + alog("debug: Changing mode for %s to %s", user->nick, modes); + + while (*modes) { + + add ? (user->mode |= umodes[(int) *modes]) : (user->mode &= + ~umodes[(int) + *modes]); + + switch (*modes++) { + case '+': + add = 1; + break; + case '-': + add = 0; + break; + case 'd': + if (ac == 0) { + alog("user: umode +d with no parameter (?) for user %s", + user->nick); + break; + } + + ac--; + av++; + user->svid = strtoul(*av, NULL, 0); + break; + case 'o': + if (add) { + opcnt++; + if (WallOper) { + anope_cmd_global(s_OperServ, + "\2%s\2 is now an IRC operator.", + user->nick); + } + display_news(user, NEWS_OPER); + } else { + opcnt--; + } + break; + case 'r': + if (add && !nick_identified(user)) { + common_svsmode(user, "-r", NULL); + user->mode &= ~UMODE_r; + } + break; + case 'x': + update_host(user); + break; + } + } +} + +unsigned long umodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, UMODE_A, 0, UMODE_C, 0, 0, 0, 0, 0, UMODE_I, 0, 0, 0, 0, UMODE_N, + UMODE_O, + 0, + UMODE_Q, + UMODE_R, + UMODE_S, UMODE_T, 0, 0, 0, 0, 0, + 0, + 0, 0, 0, 0, 0, + 0, UMODE_a, UMODE_b, UMODE_c, UMODE_d, UMODE_e, UMODE_f, + UMODE_g, + UMODE_h, UMODE_i, 0, 0, 0, 0, UMODE_n, UMODE_o, + 0, + 0, UMODE_r, UMODE_s, 0, 0, 0, UMODE_w, + UMODE_x, + 0, + 0, + 0, 0, 0, 0, 0 +}; + + +char myCsmodes[128] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, + 0, + 0, 0, 0, + 'h', /* (37) % Channel halfops */ + 0, /* (38) & bans */ + 0, 0, 0, + 'q', + + 'v', 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 'o', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a', 0 +}; + +CMMode myCmmodes[128] = { + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, + {NULL}, + {add_ban, del_ban}, + {NULL}, + {NULL}, + {add_exception, del_exception}, + {NULL}, + {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, + {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL}, {NULL} +}; + + + +CBMode myCbmodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, + {0}, /* A */ + {0}, /* B */ + {0}, /* C */ + {0}, /* D */ + {0}, /* E */ + {0}, /* F */ + {0}, /* G */ + {CMODE_H, 0, NULL, NULL}, /* H */ + {0}, /* I */ + {0}, /* J */ + {0}, /* K */ + {0}, /* L */ + {CMODE_M, 0, NULL, NULL}, /* M */ + {CMODE_N, 0, NULL, NULL}, /* N */ + {CMODE_O, CBM_NO_USER_MLOCK, NULL, NULL}, + {CMODE_P, 0, NULL, NULL}, /* P */ + {0}, /* Q */ + {CMODE_R, 0, NULL, NULL}, /* R */ + {CMODE_S, 0, NULL, NULL}, /* S */ + {0}, /* T */ + {0}, /* U */ + {0}, /* V */ + {0}, /* W */ + {0}, /* X */ + {0}, /* Y */ + {0}, /* Z */ + {0}, {0}, {0}, {0}, {0}, {0}, + {0}, /* a */ + {0}, /* b */ + {CMODE_c, 0, NULL, NULL}, + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {0}, /* h */ + {CMODE_i, 0, NULL, NULL}, + {0}, /* j */ + {CMODE_k, 0, set_key, cs_set_key}, + {CMODE_l, CBM_MINUS_NO_ARG, set_limit, cs_set_limit}, + {CMODE_m, 0, NULL, NULL}, + {CMODE_n, 0, NULL, NULL}, + {0}, /* o */ + {CMODE_p, 0, NULL, NULL}, + {0}, /* q */ + {CMODE_r, CBM_NO_MLOCK, NULL, NULL}, + {CMODE_s, 0, NULL, NULL}, + {CMODE_t, 0, NULL, NULL}, + {0}, + {0}, /* v */ + {0}, /* w */ + {CMODE_x, 0, NULL, NULL}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0} +}; + +CBModeInfo myCbmodeinfos[] = { + {'c', CMODE_c, 0, NULL, NULL}, + {'i', CMODE_i, 0, NULL, NULL}, + {'k', CMODE_k, 0, get_key, cs_get_key}, + {'l', CMODE_l, CBM_MINUS_NO_ARG, get_limit, cs_get_limit}, + {'m', CMODE_m, 0, NULL, NULL}, + {'n', CMODE_n, 0, NULL, NULL}, + {'p', CMODE_p, 0, NULL, NULL}, + {'r', CMODE_r, 0, NULL, NULL}, + {'s', CMODE_s, 0, NULL, NULL}, + {'t', CMODE_t, 0, NULL, NULL}, + {'x', CMODE_x, 0, NULL, NULL}, + {'H', CMODE_H, 0, NULL, NULL}, + {'M', CMODE_M, 0, NULL, NULL}, + {'N', CMODE_N, 0, NULL, NULL}, + {'O', CMODE_O, 0, NULL, NULL}, + {'P', CMODE_P, 0, NULL, NULL}, + {'R', CMODE_R, 0, NULL, NULL}, + {'S', CMODE_S, 0, NULL, NULL}, + {0} +}; + +CUMode myCumodes[128] = { + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + {0}, {0}, {0}, {0}, {0}, {0}, {0}, {0}, + + {0}, + + {CUS_PROTECT, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* b */ + {0}, /* c */ + {0}, /* d */ + {0}, /* e */ + {0}, /* f */ + {0}, /* g */ + {CUS_HALFOP, 0, check_valid_op}, + {0}, /* i */ + {0}, /* j */ + {0}, /* k */ + {0}, /* l */ + {0}, /* m */ + {0}, /* n */ + {CUS_OP, CUF_PROTECT_BOTSERV, check_valid_op}, + {0}, /* p */ + {CUS_OWNER, 0, check_valid_op}, + {0}, /* r */ + {0}, /* s */ + {0}, /* t */ + {0}, /* u */ + {CUS_VOICE, 0, NULL}, + {0}, /* w */ + {0}, /* x */ + {0}, /* y */ + {0}, /* z */ + {0}, {0}, {0}, {0}, {0} +}; + + +void viagra_cmd_bot_unban(ChannelInfo * ci, char *nick) +{ + send_cmd(ServerName, "SVSMODE %s -b %s", ci->name, nick); +} + +int anope_event_setname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETNAME for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_realname(u, av[0]); + return MOD_CONT; +} + +int anope_event_sjoin(char *source, int ac, char **av) +{ + do_sjoin(source, ac, av); + return MOD_CONT; +} + +int anope_event_chgname(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGNAME for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_realname(u, av[1]); + return MOD_CONT; +} + +int anope_event_setident(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETIDENT for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_username(u, av[0]); + return MOD_CONT; +} + +int anope_event_chgident(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGIDENT for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_username(u, av[1]); + return MOD_CONT; +} + +/* + * sethost + * parv[0] = sender + * parv[1] = newhost + */ +int anope_event_sethost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 1) + return MOD_CONT; + + u = finduser(source); + if (!u) { + if (debug) { + alog("user: SETHOST for nonexistent user %s", source); + } + return MOD_CONT; + } + + change_user_host(u, av[0]); + return MOD_CONT; +} + +int anope_event_nick(char *source, int ac, char **av) +{ + User *user; + + if (ac != 2) { + user = do_nick(source, av[0], av[4], av[5], av[6], av[9], + strtoul(av[2], NULL, 10), strtoul(av[7], NULL, 0), + strtoul(av[8], NULL, 0), "*", NULL); + if (user) { + anope_set_umode(user, 1, &av[3]); + } + } else { + do_nick(source, av[0], NULL, NULL, NULL, NULL, + strtoul(av[1], NULL, 10), 0, 0, NULL, NULL); + } + return MOD_CONT; +} + +int anope_event_vs(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: VS for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_host(u, av[1]); + return MOD_CONT; + +} + +int anope_event_chghost(char *source, int ac, char **av) +{ + User *u; + + if (ac != 2) + return MOD_CONT; + + u = finduser(av[0]); + if (!u) { + if (debug) { + alog("user: CHGHOST for nonexistent user %s", av[0]); + } + return MOD_CONT; + } + + change_user_host(u, av[1]); + return MOD_CONT; +} + +int anope_event_436(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + + m_nickcoll(av[0]); + return MOD_CONT; +} + +int anope_event_notice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_pass(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_svinfo(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +/* + * gnotice + * parv[0] = sender prefix + * parv[1] = message text + */ +int anope_event_gnotice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_sqline(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_burst(char *source, int ac, char **av) +{ + Server *s; + s = findserver(servlist, source); + if (!ac) { + /* for future use - start burst */ + } else { + /* If we found a server with the given source, that one just + * finished bursting. If there was no source, then our uplink + * server finished bursting. -GD + */ + if (!s && serv_uplink) + s = serv_uplink; + finish_sync(s, 1); + } + return MOD_CONT; +} + +int anope_event_tctrl(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +/* + * error + * parv[0] = sender prefix + * parv[*] = parameters + */ +int anope_event_error(char *source, int ac, char **av) +{ + if (ac >= 1) { + if (debug) { + alog("ERROR: %s", av[0]); + } + } + return MOD_CONT; +} + +/* *INDENT-OFF* */ +void moduleAddIRCDMsgs(void) { + Message *m; + + updateProtectDetails("PROTECT","PROTECTME","!protect","!deprotect","AUTOPROTECT","+a","-a"); + + m = createMessage("401", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("402", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("436", anope_event_436); addCoreMessage(IRCD,m); + m = createMessage("AWAY", anope_event_away); addCoreMessage(IRCD,m); + m = createMessage("INVITE", anope_event_invite); addCoreMessage(IRCD,m); + m = createMessage("JOIN", anope_event_join); addCoreMessage(IRCD,m); + m = createMessage("KICK", anope_event_kick); addCoreMessage(IRCD,m); + m = createMessage("KILL", anope_event_kill); addCoreMessage(IRCD,m); + m = createMessage("MODE", anope_event_mode); addCoreMessage(IRCD,m); + m = createMessage("MOTD", anope_event_motd); addCoreMessage(IRCD,m); + m = createMessage("NICK", anope_event_nick); addCoreMessage(IRCD,m); + m = createMessage("NOTICE", anope_event_notice); addCoreMessage(IRCD,m); + m = createMessage("PART", anope_event_part); addCoreMessage(IRCD,m); + m = createMessage("PASS", anope_event_pass); addCoreMessage(IRCD,m); + m = createMessage("PING", anope_event_ping); addCoreMessage(IRCD,m); + m = createMessage("PRIVMSG", anope_event_privmsg); addCoreMessage(IRCD,m); + m = createMessage("QUIT", anope_event_quit); addCoreMessage(IRCD,m); + m = createMessage("SERVER", anope_event_server); addCoreMessage(IRCD,m); + m = createMessage("SQUIT", anope_event_squit); addCoreMessage(IRCD,m); + m = createMessage("TOPIC", anope_event_topic); addCoreMessage(IRCD,m); + m = createMessage("WALLOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("WHOIS", anope_event_whois); addCoreMessage(IRCD,m); + m = createMessage("AKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GLOBOPS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("GNOTICE", anope_event_gnotice); addCoreMessage(IRCD,m); + m = createMessage("GOPER", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("RAKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SILENCE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSKILL", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSMODE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNICK", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVSNOOP", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SQLINE", anope_event_sqline); addCoreMessage(IRCD,m); + m = createMessage("UNSQLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("CAPAB", anope_event_capab); addCoreMessage(IRCD,m); + m = createMessage("CS", anope_event_cs); addCoreMessage(IRCD,m); + m = createMessage("HS", anope_event_hs); addCoreMessage(IRCD,m); + m = createMessage("MS", anope_event_ms); addCoreMessage(IRCD,m); + m = createMessage("NS", anope_event_ns); addCoreMessage(IRCD,m); + m = createMessage("OS", anope_event_os); addCoreMessage(IRCD,m); + m = createMessage("RS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SGLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SJOIN", anope_event_sjoin); addCoreMessage(IRCD,m); + m = createMessage("SS", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("SVINFO", anope_event_svinfo); addCoreMessage(IRCD,m); + m = createMessage("SZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSGLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("UNSZLINE", anope_event_null); addCoreMessage(IRCD,m); + m = createMessage("CHGHOST", anope_event_chghost); addCoreMessage(IRCD,m); + m = createMessage("CHGIDENT", anope_event_chgident); addCoreMessage(IRCD,m); + m = createMessage("CHGNAME", anope_event_chgname); addCoreMessage(IRCD,m); + m = createMessage("SETHOST", anope_event_sethost); addCoreMessage(IRCD,m); + m = createMessage("SETIDENT", anope_event_setident); addCoreMessage(IRCD,m); + m = createMessage("SETNAME", anope_event_setname); addCoreMessage(IRCD,m); + m = createMessage("VS", anope_event_vs); addCoreMessage(IRCD,m); + m = createMessage("BURST", anope_event_burst); addCoreMessage(IRCD,m); + m = createMessage("TCTRL", anope_event_tctrl); addCoreMessage(IRCD,m); + m = createMessage("ERROR", anope_event_error); addCoreMessage(IRCD,m); + m = createMessage("REHASH", anope_event_rehash); addCoreMessage(IRCD,m); + m = createMessage("ADMIN", anope_event_admin); addCoreMessage(IRCD,m); + m = createMessage("SNOTICE", anope_event_snotice); addCoreMessage(IRCD,m); +} + +/* *INDENT-ON* */ + + +/* SQLINE */ +void viagra_cmd_sqline(char *mask, char *reason) +{ + if (!mask || !reason) { + return; + } + + send_cmd(NULL, "SQLINE %s :%s", mask, reason); +} + +void viagra_cmd_unsgline(char *mask) +{ + send_cmd(NULL, "UNSGLINE 0 :%s", mask); +} + +void viagra_cmd_unszline(char *mask) +{ + send_cmd(NULL, "UNSZLINE 0 %s", mask); +} + +void viagra_cmd_szline(char *mask, char *reason, char *whom) +{ + send_cmd(NULL, "SZLINE %s :%s", mask, reason); +} + +void viagra_cmd_svsnoop(char *server, int set) +{ + send_cmd(NULL, "SVSNOOP %s %s", server, (set ? "+" : "-")); +} + +void viagra_cmd_svsadmin(char *server, int set) +{ + viagra_cmd_svsnoop(server, set); +} + +void viagra_cmd_sgline(char *mask, char *reason) +{ + send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason); +} + +void viagra_cmd_remove_akill(char *user, char *host) +{ + send_cmd(NULL, "RAKILL %s %s", host, user); +} + +/* PART */ +void viagra_cmd_part(char *nick, char *chan, char *buf) +{ + if (!nick || !chan) { + return; + } + + if (buf) { + send_cmd(nick, "PART %s :%s", chan, buf); + } else { + send_cmd(nick, "PART %s", chan); + } +} + +void viagra_cmd_topic(char *whosets, char *chan, char *whosetit, + char *topic, time_t when) +{ + send_cmd(whosets, "TOPIC %s %s %lu :%s", chan, whosetit, + (unsigned long int) when, topic); +} + +void viagra_cmd_vhost_off(User * u) +{ + send_cmd(NULL, "SVSMODE %s -x", u->nick); + notice_lang(s_HostServ, u, HOST_OFF_UNREAL, u->nick, ircd->vhostchar); +} + +void viagra_cmd_vhost_on(char *nick, char *vIdent, char *vhost) +{ + if (vIdent) { + send_cmd(NULL, "CHGIDENT %s %s", nick, vIdent); + } + send_cmd(NULL, "SVSMODE %s +x", nick); + send_cmd(NULL, "SVSCHGHOST %s %s", nick, vhost); +} + +void viagra_cmd_unsqline(char *user) +{ + send_cmd(NULL, "UNSQLINE %s", user); +} + +void viagra_cmd_join(char *user, char *channel, time_t chantime) +{ + send_cmd(user, "SJOIN %ld %s", (long int) chantime, channel); +} + + +/* + * m_akill() + * parv[1]=host + * parv[2]=user + * parv[3]=length + * parv[4]=akiller + * parv[5]=time set + * parv[6]=reason + */ +void viagra_cmd_akill(char *user, char *host, char *who, time_t when, + time_t expires, char *reason) +{ + send_cmd(NULL, "AKILL %s %s %d %s %ld :%s", host, user, 86400 * 2, who, + (long int) time(NULL), reason); +} + + +/* + * svskill + * parv[0] = servername + * parv[1] = client + * parv[2] = nick stamp + * parv[3] = kill message + */ +void viagra_cmd_svskill(char *source, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "SVSKILL %s :%s", user, buf); + } + return; +} + +void viagra_cmd_mode(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (ircdcap->tsmode) { + if (uplink_capab & ircdcap->tsmode) { + send_cmd(source, "MODE %s 0 %s", dest, buf); + } else { + send_cmd(source, "MODE %s %s", dest, buf); + } + } else { + send_cmd(source, "MODE %s %s", dest, buf); + } +} + +/* QUIT */ +void viagra_cmd_quit(char *source, char *buf) +{ + if (buf) { + send_cmd(source, "QUIT :%s", buf); + } else { + send_cmd(source, "QUIT"); + } +} + +int anope_event_away(char *source, int ac, char **av) +{ + if (ac) { + return MOD_CONT; + } + + if (!source) { + return MOD_CONT; + } + m_away(source, av[0]); + return MOD_CONT; +} + +int anope_event_ping(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + viagra_cmd_pong(ac > 1 ? av[1] : ServerName, av[0]); + return MOD_CONT; +} + +void viagra_cmd_svsmode(User * u, int ac, char **av) +{ + send_cmd(ServerName, "SVSMODE %s %ld %s%s%s", u->nick, + (long int) u->timestamp, av[0], (ac == 2 ? " " : ""), + (ac == 2 ? av[1] : "")); +} + +void viagra_cmd_squit(char *servname, char *message) +{ + send_cmd(NULL, "SQUIT %s :%s", servname, message); +} + +/* PONG */ +void viagra_cmd_pong(char *servname, char *who) +{ + send_cmd(servname, "PONG %s", who); +} + +/* + * svinfo + * parv[0] = sender prefix + * parv[1] = TS_CURRENT for the server + * parv[2] = TS_MIN for the server + * parv[3] = server is standalone or connected to non-TS only + * parv[4] = server's idea of UTC time + */ +void viagra_cmd_svinfo() +{ + send_cmd(NULL, "SVINFO 5 3 0 :%ld", (long int) time(NULL)); +} + +/* CAPAB */ +void viagra_cmd_capab() +{ + send_cmd(NULL, "CAPAB TS5 NOQUIT SSJOIN BURST UNCONNECT NICKIP"); +} + +/* PASS */ +void viagra_cmd_pass(char *pass) +{ + send_cmd(NULL, "PASS %s :TS", pass); +} + +/* SERVER */ +void viagra_cmd_server(char *servname, int hop, char *descript) +{ + send_cmd(NULL, "SERVER %s %d :%s", servname, hop, ServerDesc); +} + +void viagra_cmd_burst() +{ + send_cmd(NULL, "BURST"); +} + +void viagra_cmd_connect(int servernum) +{ + me_server = + new_server(NULL, ServerName, ServerDesc, SERVER_ISME, NULL); + + if (servernum == 1) { + viagra_cmd_pass(RemotePassword); + } else if (servernum == 2) { + viagra_cmd_pass(RemotePassword2); + } else if (servernum == 3) { + viagra_cmd_pass(RemotePassword3); + } + viagra_cmd_capab(); + viagra_cmd_server(ServerName, 1, ServerDesc); + viagra_cmd_svinfo(); + viagra_cmd_burst(); +} + +/* EVENT : OS */ +int anope_event_os(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_OperServ, av[0]); + return MOD_CONT; +} + +/* EVENT : NS */ +int anope_event_ns(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_NickServ, av[0]); + return MOD_CONT; +} + +/* EVENT : MS */ +int anope_event_ms(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_MemoServ, av[0]); + return MOD_CONT; +} + +/* EVENT : HS */ +int anope_event_hs(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_HostServ, av[0]); + return MOD_CONT; +} + +/* EVENT : CS */ +int anope_event_cs(char *source, int ac, char **av) +{ + if (ac < 1) + return MOD_CONT; + m_privmsg(source, s_ChanServ, av[0]); + return MOD_CONT; +} + +int anope_event_server(char *source, int ac, char **av) +{ + if (!stricmp(av[1], "1")) { + uplink = sstrdup(av[0]); + } + do_server(source, av[0], av[1], av[2], NULL); + return MOD_CONT; +} + + +int anope_event_privmsg(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + m_privmsg(source, av[0], av[1]); + return MOD_CONT; +} + +int anope_event_part(char *source, int ac, char **av) +{ + if (ac < 1 || ac > 2) + return MOD_CONT; + do_part(source, ac, av); + return MOD_CONT; +} + +int anope_event_whois(char *source, int ac, char **av) +{ + if (source && ac >= 1) { + m_whois(source, av[0]); + } + return MOD_CONT; +} + +int anope_event_topic(char *source, int ac, char **av) +{ + if (ac != 4) + return MOD_CONT; + do_topic(source, ac, av); + return MOD_CONT; +} + +int anope_event_squit(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + do_squit(source, ac, av); + return MOD_CONT; +} + +int anope_event_quit(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_quit(source, ac, av); + return MOD_CONT; +} + + +int anope_event_mode(char *source, int ac, char **av) +{ + if (ac < 2) + return MOD_CONT; + + if (*av[0] == '#' || *av[0] == '&') { + do_cmode(source, ac, av); + } else { + do_umode(source, ac, av); + } + return MOD_CONT; +} + +int anope_event_kill(char *source, int ac, char **av) +{ + if (ac != 2) + return MOD_CONT; + + m_kill(av[0], av[1]); + return MOD_CONT; +} + +int anope_event_kick(char *source, int ac, char **av) +{ + if (ac != 3) + return MOD_CONT; + do_kick(source, ac, av); + return MOD_CONT; +} + +int anope_event_join(char *source, int ac, char **av) +{ + if (ac != 1) + return MOD_CONT; + do_join(source, ac, av); + return MOD_CONT; +} + +int anope_event_motd(char *source, int ac, char **av) +{ + if (!source) { + return MOD_CONT; + } + + m_motd(source); + return MOD_CONT; +} + +void viagra_cmd_notice_ops(char *source, char *dest, char *buf) +{ + if (!buf) { + send_cmd(NULL, "NOTICE @%s :%s", dest, buf); + } + return; +} + +void viagra_cmd_notice(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + if (UsePrivmsg) { + viagra_cmd_privmsg2(source, dest, buf); + } else { + send_cmd(source, "NOTICE %s :%s", dest, buf); + } +} + +void viagra_cmd_notice2(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE %s :%s", dest, msg); +} + +void viagra_cmd_privmsg(char *source, char *dest, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source, "PRIVMSG %s :%s", dest, buf); +} + +void viagra_cmd_privmsg2(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG %s :%s", dest, msg); +} + +void viagra_cmd_serv_notice(char *source, char *dest, char *msg) +{ + send_cmd(source, "NOTICE $%s :%s", dest, msg); +} + +void viagra_cmd_serv_privmsg(char *source, char *dest, char *msg) +{ + send_cmd(source, "PRIVMSG $%s :%s", dest, msg); +} + +/* GLOBOPS */ +void viagra_cmd_global(char *source, char *buf) +{ + if (!buf) { + return; + } + + send_cmd(source ? source : ServerName, "GLOBOPS :%s", buf); +} + +/* 391 */ +void viagra_cmd_391(char *source, char *timestr) +{ + if (!timestr) { + return; + } + send_cmd(NULL, "391 :%s %s :%s", source, ServerName, timestr); +} + +/* 250 */ +void viagra_cmd_250(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "250 %s ", buf); +} + +/* 307 */ +void viagra_cmd_307(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "307 %s ", buf); +} + +/* 311 */ +void viagra_cmd_311(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "311 %s ", buf); +} + +/* 312 */ +void viagra_cmd_312(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "312 %s ", buf); +} + +/* 317 */ +void viagra_cmd_317(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(ServerName, "317 %s ", buf); +} + +/* 219 */ +void viagra_cmd_219(char *source, char *letter) +{ + if (!source) { + return; + } + + if (letter) { + send_cmd(NULL, "219 %s %c :End of /STATS report.", source, + *letter); + } else { + send_cmd(NULL, "219 %s l :End of /STATS report.", source); + } +} + +/* 401 */ +void viagra_cmd_401(char *source, char *who) +{ + if (!source || !who) { + return; + } + send_cmd(ServerName, "401 %s %s :No such service.", source, who); +} + +/* 318 */ +void viagra_cmd_318(char *source, char *who) +{ + if (!source || !who) { + return; + } + + send_cmd(ServerName, "318 %s %s :End of /WHOIS list.", source, who); +} + +/* 242 */ +void viagra_cmd_242(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "242 %s ", buf); +} + +/* 243 */ +void viagra_cmd_243(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "243 %s ", buf); +} + +/* 211 */ +void viagra_cmd_211(char *buf) +{ + if (!buf) { + return; + } + + send_cmd(NULL, "211 %s ", buf); +} + +void viagra_cmd_351(char *source) +{ + send_cmd(ServerName, "351 %s Anope-%s %s :%s - %s -- %s", + source, version_number, ServerName, ircd->name, version_flags, + version_build); +} + +void viagra_cmd_bot_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + EnforceQlinedNick(nick, s_BotServ); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, real); + viagra_cmd_sqline(nick, "Reserved for services"); +} + +void viagra_cmd_kick(char *source, char *chan, char *user, char *buf) +{ + if (buf) { + send_cmd(source, "KICK %s %s :%s", chan, user, buf); + } else { + send_cmd(source, "KICK %s %s", chan, user); + } +} + +void viagra_cmd_nick(char *nick, char *name, char *modes) +{ + EnforceQlinedNick(nick, NULL); + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, + (long int) time(NULL), modes, ServiceUser, ServiceHost, + ServerName, name); + viagra_cmd_sqline(nick, "Reserved for services"); +} + +void viagra_cmd_372(char *source, char *msg) +{ + send_cmd(ServerName, "372 %s :- %s", source, msg); +} + +void viagra_cmd_372_error(char *source) +{ + send_cmd(ServerName, "422 %s :- MOTD file not found! Please " + "contact your IRC administrator.", source); +} + +void viagra_cmd_375(char *source) +{ + send_cmd(ServerName, "375 %s :- %s Message of the Day", + source, ServerName); +} + +void viagra_cmd_376(char *source) +{ + send_cmd(ServerName, "376 %s :End of /MOTD command.", source); +} + +/* INVITE */ +void viagra_cmd_invite(char *source, char *chan, char *nick) +{ + if (!source || !chan || !nick) { + return; + } + + send_cmd(source, "INVITE %s %s", nick, chan); +} + +void viagra_cmd_bot_chan_mode(char *nick, char *chan) +{ + anope_cmd_mode(nick, chan, "%s %s", ircd->botchanumode, nick); +} + +int anope_event_capab(char *source, int ac, char **av) +{ + capab_parse(ac, av); + return MOD_CONT; +} + +/* SVSHOLD - set */ +void viagra_cmd_svshold(char *nick) +{ + /* Not supported by this IRCD */ +} + +/* SVSHOLD - release */ +void viagra_cmd_release_svshold(char *nick) +{ + /* Not Supported by this IRCD */ +} + +/* SVSNICK */ +void viagra_cmd_svsnick(char *source, char *guest, time_t when) +{ + if (!source || !guest) { + return; + } + send_cmd(NULL, "SVSNICK %s %s :%ld", source, guest, (long int) when); +} + +void viagra_cmd_guest_nick(char *nick, char *user, char *host, char *real, + char *modes) +{ + send_cmd(NULL, "NICK %s 1 %ld %s %s %s %s 0 0 :%s", nick, + (long int) time(NULL), modes, user, host, ServerName, real); +} + +void viagra_cmd_svso(char *source, char *nick, char *flag) +{ + /* Not Supported by this IRCD */ +} + + +/* SVSMODE -b */ +void viagra_cmd_unban(char *name, char *nick) +{ + viagra_cmd_svsmode_chan(name, "-b", nick); +} + +/* SVSMODE channel modes */ + +void viagra_cmd_svsmode_chan(char *name, char *mode, char *nick) +{ + if (nick) { + send_cmd(ServerName, "SVSMODE %s %s %s", name, mode, nick); + } else { + send_cmd(ServerName, "SVSMODE %s %s", name, mode); + } +} + +/* SVSMODE +d */ +/* sent if svid is something weird */ +void viagra_cmd_svid_umode(char *nick, time_t ts) +{ + send_cmd(ServerName, "SVSMODE %s %lu +d 1", nick, + (unsigned long int) ts); +} + +/* SVSMODE +d */ +/* nc_change was = 1, and there is no na->status */ +void viagra_cmd_nc_change(User * u) +{ + common_svsmode(u, "+d", "1"); +} + +/* SVSMODE +d */ +void viagra_cmd_svid_umode2(User * u, char *ts) +{ + /* not used by bahamut ircds */ +} + +void viagra_cmd_svid_umode3(User * u, char *ts) +{ + if (u->svid != u->timestamp) { + common_svsmode(u, "+rd", ts); + } else { + common_svsmode(u, "+r", NULL); + } +} + +/* NICK <newnick> */ +void viagra_cmd_chg_nick(char *oldnick, char *newnick) +{ + if (!oldnick || !newnick) { + return; + } + + send_cmd(oldnick, "NICK %s", newnick); +} + +/* + * svsjoin + * parv[0] = sender + * parv[1] = nick to make join + * parv[2] = channel(s) to join + */ +void viagra_cmd_svsjoin(char *source, char *nick, char *chan) +{ + send_cmd(source, "SVSJOIN %s :%s", nick, chan); +} + +/* + * svspart + * parv[0] = sender + * parv[1] = nick to make part + * parv[2] = channel(s) to part + */ +void viagra_cmd_svspart(char *source, char *nick, char *chan) +{ + send_cmd(source, "SVSPART %s :%s", nick, chan); +} + +void viagra_cmd_swhois(char *source, char *who, char *mask) +{ + /* not supported */ +} + +int viagra_flood_mode_check(char *value) +{ + return 0; +} + +int anope_event_rehash(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_admin(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_snotice(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +int anope_event_invite(char *source, int ac, char **av) +{ + return MOD_CONT; +} + +void viagra_cmd_eob() +{ + send_cmd(NULL, "BURST 0"); +} + +void viagra_cmd_jupe(char *jserver, char *who, char *reason) +{ + char rbuf[256]; + + snprintf(rbuf, sizeof(rbuf), "Juped by %s%s%s", who, + reason ? ": " : "", reason ? reason : ""); + + viagra_cmd_squit(jserver, rbuf); + viagra_cmd_server(jserver, 2, rbuf); + new_server(me_server, jserver, rbuf, SERVER_JUPED, NULL); +} + +/* GLOBOPS - to handle old WALLOPS */ +void viagra_cmd_global_legacy(char *source, char *fmt) +{ + send_cmd(source ? source : ServerName, "GLOBOPS :%s", fmt); +} + +/* + 1 = valid nick + 0 = nick is in valid +*/ +int viagra_valid_nick(char *nick) +{ + /* no hard coded invalid nicks */ + return 1; +} + +void viagra_cmd_ctcp(char *source, char *dest, char *buf) +{ + char *s; + + if (!buf) { + return; + } else { + s = normalizeBuffer(buf); + } + + send_cmd(source, "NOTICE %s :\1%s \1", dest, s); + free(s); +} + + +/** + * Tell anope which function we want to perform each task inside of anope. + * These prototypes must match what anope expects. + **/ +void moduleAddAnopeCmds() +{ + pmodule_cmd_svsnoop(viagra_cmd_svsnoop); + pmodule_cmd_remove_akill(viagra_cmd_remove_akill); + pmodule_cmd_topic(viagra_cmd_topic); + pmodule_cmd_vhost_off(viagra_cmd_vhost_off); + pmodule_cmd_akill(viagra_cmd_akill); + pmodule_cmd_svskill(viagra_cmd_svskill); + pmodule_cmd_svsmode(viagra_cmd_svsmode); + pmodule_cmd_372(viagra_cmd_372); + pmodule_cmd_372_error(viagra_cmd_372_error); + pmodule_cmd_375(viagra_cmd_375); + pmodule_cmd_376(viagra_cmd_376); + pmodule_cmd_nick(viagra_cmd_nick); + pmodule_cmd_guest_nick(viagra_cmd_guest_nick); + pmodule_cmd_mode(viagra_cmd_mode); + pmodule_cmd_bot_nick(viagra_cmd_bot_nick); + pmodule_cmd_kick(viagra_cmd_kick); + pmodule_cmd_notice_ops(viagra_cmd_notice_ops); + pmodule_cmd_notice(viagra_cmd_notice); + pmodule_cmd_notice2(viagra_cmd_notice2); + pmodule_cmd_privmsg(viagra_cmd_privmsg); + pmodule_cmd_privmsg2(viagra_cmd_privmsg2); + pmodule_cmd_serv_notice(viagra_cmd_serv_notice); + pmodule_cmd_serv_privmsg(viagra_cmd_serv_privmsg); + pmodule_cmd_bot_chan_mode(viagra_cmd_bot_chan_mode); + pmodule_cmd_351(viagra_cmd_351); + pmodule_cmd_quit(viagra_cmd_quit); + pmodule_cmd_pong(viagra_cmd_pong); + pmodule_cmd_join(viagra_cmd_join); + pmodule_cmd_unsqline(viagra_cmd_unsqline); + pmodule_cmd_invite(viagra_cmd_invite); + pmodule_cmd_part(viagra_cmd_part); + pmodule_cmd_391(viagra_cmd_391); + pmodule_cmd_250(viagra_cmd_250); + pmodule_cmd_307(viagra_cmd_307); + pmodule_cmd_311(viagra_cmd_311); + pmodule_cmd_312(viagra_cmd_312); + pmodule_cmd_317(viagra_cmd_317); + pmodule_cmd_219(viagra_cmd_219); + pmodule_cmd_401(viagra_cmd_401); + pmodule_cmd_318(viagra_cmd_318); + pmodule_cmd_242(viagra_cmd_242); + pmodule_cmd_243(viagra_cmd_243); + pmodule_cmd_211(viagra_cmd_211); + pmodule_cmd_global(viagra_cmd_global); + pmodule_cmd_global_legacy(viagra_cmd_global_legacy); + pmodule_cmd_sqline(viagra_cmd_sqline); + pmodule_cmd_squit(viagra_cmd_squit); + pmodule_cmd_svso(viagra_cmd_svso); + pmodule_cmd_chg_nick(viagra_cmd_chg_nick); + pmodule_cmd_svsnick(viagra_cmd_svsnick); + pmodule_cmd_vhost_on(viagra_cmd_vhost_on); + pmodule_cmd_connect(viagra_cmd_connect); + pmodule_cmd_svshold(viagra_cmd_svshold); + pmodule_cmd_release_svshold(viagra_cmd_release_svshold); + pmodule_cmd_unsgline(viagra_cmd_unsqline); + pmodule_cmd_unszline(viagra_cmd_unszline); + pmodule_cmd_szline(viagra_cmd_szline); + pmodule_cmd_sgline(viagra_cmd_sgline); + pmodule_cmd_unban(viagra_cmd_unban); + pmodule_cmd_svsmode_chan(viagra_cmd_svsmode_chan); + pmodule_cmd_svid_umode(viagra_cmd_svid_umode); + pmodule_cmd_nc_change(viagra_cmd_nc_change); + pmodule_cmd_svid_umode2(viagra_cmd_svid_umode2); + pmodule_cmd_svid_umode3(viagra_cmd_svid_umode3); + pmodule_cmd_eob(viagra_cmd_eob); + pmodule_flood_mode_check(viagra_flood_mode_check); + pmodule_cmd_jupe(viagra_cmd_jupe); + pmodule_valid_nick(viagra_valid_nick); + pmodule_cmd_ctcp(viagra_cmd_ctcp); + pmodule_set_umode(viagra_set_umode); +} + +/** + * Now tell anope how to use us. + **/ +int AnopeInit(int argc, char **argv) +{ + + moduleAddAuthor("Anope"); + moduleAddVersion("$Id$"); + moduleSetType(PROTOCOL); + + pmodule_ircd_version("ViagraIRCd 1.3.x"); + pmodule_ircd_cap(myIrcdcap); + pmodule_ircd_var(myIrcd); + pmodule_ircd_cbmodeinfos(myCbmodeinfos); + pmodule_ircd_cumodes(myCumodes); + pmodule_ircd_flood_mode_char_set(""); + pmodule_ircd_flood_mode_char_remove(""); + pmodule_ircd_cbmodes(myCbmodes); + pmodule_ircd_cmmodes(myCmmodes); + pmodule_ircd_csmodes(myCsmodes); + pmodule_ircd_useTSMode(0); + + /** Deal with modes anope _needs_ to know **/ + pmodule_invis_umode(UMODE_i); + pmodule_oper_umode(UMODE_o); + pmodule_invite_cmode(CMODE_i); + pmodule_secret_cmode(CMODE_s); + pmodule_private_cmode(CMODE_p); + pmodule_key_mode(CMODE_k); + pmodule_limit_mode(CMODE_l); + + moduleAddAnopeCmds(); + moduleAddIRCDMsgs(); + + return MOD_CONT; +} diff --git a/src/protocol/viagra.h b/src/protocol/viagra.h new file mode 100644 index 000000000..4e145e92e --- /dev/null +++ b/src/protocol/viagra.h @@ -0,0 +1,132 @@ +/* Viagra IRCD functions + * + * (C) 2003-2005 Anope Team + * Contact us at info@anope.org + * + * Please read COPYING and README for furhter details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + * + * + */ + +/* User Modes */ +#define UMODE_A 0x00000040 /* Is a Server Administrator. */ +#define UMODE_C 0x00002000 /* Is a Server Co Administrator. */ +#define UMODE_I 0x00008000 /* Stealth mode, makes you beeing hidden at channel. invisible joins/parts. */ +#define UMODE_N 0x00000400 /* Is a Network Administrator. */ +#define UMODE_O 0x00004000 /* Local IRC Operator. */ +#define UMODE_Q 0x00001000 /* Is an Abuse Administrator. */ +#define UMODE_R 0x08000000 /* Cant receive messages from non registered user. */ +#define UMODE_S 0x00000080 /* Is a Network Service. For Services only. */ +#define UMODE_T 0x00000800 /* Is a Technical Administrator. */ +#define UMODE_a 0x00000001 /* Is a Services Administrator. */ +#define UMODE_b 0x00040000 /* Can listen to generic bot warnings. */ +#define UMODE_c 0x00010000 /* See's all connects/disconnects on local server. */ +#define UMODE_d 0x00000100 /* Can listen to debug and channel cration notices. */ +#define UMODE_e 0x00080000 /* Can see client connections/exits on remote servers. */ +#define UMODE_f 0x00100000 /* Listen to flood/spam alerts from server. */ +#define UMODE_g 0x00000200 /* Can read & send to globops, and locops. */ +#define UMODE_h 0x00000002 /* Is a Help Operator. */ +#define UMODE_i 0x00000004 /* Invisible (Not shown in /who and /names searches). */ +#define UMODE_n 0x00020000 /* Can see client nick change notices. */ +#define UMODE_o 0x00000008 /* Global IRC Operator. */ +#define UMODE_r 0x00000010 /* Identifies the nick as being registered. */ +#define UMODE_s 0x00200000 /* Can listen to generic server messages. */ +#define UMODE_w 0x00000020 /* Can listen to wallop messages. */ +#define UMODE_x 0x40000000 /* Gives the user hidden hostname. */ + + +/* Channel Modes */ +#define CMODE_i 0x00000001 /* Invite-only allowed. */ +#define CMODE_m 0x00000002 /* Moderated channel, noone can speak and changing nick except users with mode +vho */ +#define CMODE_n 0x00000004 /* No messages from outside channel */ +#define CMODE_p 0x00000008 /* Private channel. */ +#define CMODE_s 0x00000010 /* Secret channel. */ +#define CMODE_t 0x00000020 /* Only channel operators may set the topic */ +#define CMODE_k 0x00000040 /* Needs the channel key to join the channel */ +#define CMODE_l 0x00000080 /* Channel may hold at most <number> of users */ +#define CMODE_R 0x00000100 /* Requires a registered nickname to join the channel. */ +#define CMODE_r 0x00000200 /* Channel is registered. */ +#define CMODE_c 0x00000400 /* No ANSI color can be sent to the channel */ +#define CMODE_M 0x00000800 /* Requires a registered nickname to speak at the channel. */ +#define CMODE_H 0x00001000 /* HelpOps only channel. */ +#define CMODE_O 0x00008000 /* IRCOps only channel. */ +#define CMODE_S 0x00020000 /* Strips all mesages out of colors. */ +#define CMODE_N 0x01000000 /* No nickchanges allowed. */ +#define CMODE_P 0x02000000 /* "Peace mode" No kicks allowed unless by u:lines */ +#define CMODE_x 0x04000000 /* No bold/underlined or reversed text can be sent to the channel */ + +#define DEFAULT_MLOCK CMODE_n | CMODE_t | CMODE_r + +void viagra_set_umode(User * user, int ac, char **av); +void viagra_cmd_svsnoop(char *server, int set); +void viagra_cmd_remove_akill(char *user, char *host); +void viagra_cmd_topic(char *whosets, char *chan, char *whosetit, char *topic, time_t when); +void viagra_cmd_vhost_off(User * u); +void viagra_cmd_akill(char *user, char *host, char *who, time_t when,time_t expires, char *reason); +void viagra_cmd_svskill(char *source, char *user, char *buf); +void viagra_cmd_svsmode(User * u, int ac, char **av); +void viagra_cmd_372(char *source, char *msg); +void viagra_cmd_372_error(char *source); +void viagra_cmd_375(char *source); +void viagra_cmd_376(char *source); +void viagra_cmd_nick(char *nick, char *name, char *modes); +void viagra_cmd_guest_nick(char *nick, char *user, char *host, char *real, char *modes); +void viagra_cmd_mode(char *source, char *dest, char *buf); +void viagra_cmd_bot_nick(char *nick, char *user, char *host, char *real, char *modes); +void viagra_cmd_kick(char *source, char *chan, char *user, char *buf); +void viagra_cmd_notice_ops(char *source, char *dest, char *buf); +void viagra_cmd_notice(char *source, char *dest, char *buf); +void viagra_cmd_notice2(char *source, char *dest, char *msg); +void viagra_cmd_privmsg(char *source, char *dest, char *buf); +void viagra_cmd_privmsg2(char *source, char *dest, char *msg); +void viagra_cmd_serv_notice(char *source, char *dest, char *msg); +void viagra_cmd_serv_privmsg(char *source, char *dest, char *msg); +void viagra_cmd_bot_chan_mode(char *nick, char *chan); +void viagra_cmd_351(char *source); +void viagra_cmd_quit(char *source, char *buf); +void viagra_cmd_pong(char *servname, char *who); +void viagra_cmd_join(char *user, char *channel, time_t chantime); +void viagra_cmd_unsqline(char *user); +void viagra_cmd_invite(char *source, char *chan, char *nick); +void viagra_cmd_part(char *nick, char *chan, char *buf); +void viagra_cmd_391(char *source, char *timestr); +void viagra_cmd_250(char *buf); +void viagra_cmd_307(char *buf); +void viagra_cmd_311(char *buf); +void viagra_cmd_312(char *buf); +void viagra_cmd_317(char *buf); +void viagra_cmd_219(char *source, char *letter); +void viagra_cmd_401(char *source, char *who); +void viagra_cmd_318(char *source, char *who); +void viagra_cmd_242(char *buf); +void viagra_cmd_243(char *buf); +void viagra_cmd_211(char *buf); +void viagra_cmd_global(char *source, char *buf); +void viagra_cmd_global_legacy(char *source, char *fmt); +void viagra_cmd_sqline(char *mask, char *reason); +void viagra_cmd_squit(char *servname, char *message); +void viagra_cmd_svso(char *source, char *nick, char *flag); +void viagra_cmd_chg_nick(char *oldnick, char *newnick); +void viagra_cmd_svsnick(char *source, char *guest, time_t when); +void viagra_cmd_vhost_on(char *nick, char *vIdent, char *vhost); +void viagra_cmd_connect(int servernum); +void viagra_cmd_svshold(char *nick); +void viagra_cmd_release_svshold(char *nick); +void viagra_cmd_unsgline(char *mask); +void viagra_cmd_unszline(char *mask); +void viagra_cmd_szline(char *mask, char *reason, char *whom); +void viagra_cmd_sgline(char *mask, char *reason); +void viagra_cmd_unban(char *name, char *nick); +void viagra_cmd_svsmode_chan(char *name, char *mode, char *nick); +void viagra_cmd_svid_umode(char *nick, time_t ts); +void viagra_cmd_nc_change(User * u); +void viagra_cmd_svid_umode2(User * u, char *ts); +void viagra_cmd_svid_umode3(User * u, char *ts); +void viagra_cmd_eob(); +int viagra_flood_mode_check(char *value); +void viagra_cmd_jupe(char *jserver, char *who, char *reason); +int viagra_valid_nick(char *nick); +void viagra_cmd_ctcp(char *source, char *dest, char *buf); |