X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/d76ed9a966ee3d955c8ef00ecc02e643c2005e2e..de9510bcaba3fc0377e09259f8b49921c421d269:/src/proto-p10.c diff --git a/src/proto-p10.c b/src/proto-p10.c index b2aa696..62e2507 100644 --- a/src/proto-p10.c +++ b/src/proto-p10.c @@ -1,7 +1,7 @@ /* proto-p10.c - IRC protocol output * Copyright 2000-2004 srvx Development Team * - * This file is part of srvx. + * This file is part of x3. * * srvx is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -96,8 +96,10 @@ #define CMD_VERSION "VERSION" #define CMD_WALLCHOPS "WALLCHOPS" #define CMD_WALLOPS "WALLOPS" +#define CMD_WALLHOPS "WALLHOPS" #define CMD_WALLUSERS "WALLUSERS" #define CMD_WALLVOICES "WALLVOICES" +#define CMD_WALLHOPS "WALLHOPS" #define CMD_WHO "WHO" #define CMD_WHOIS "WHOIS" #define CMD_WHOWAS "WHOWAS" @@ -178,8 +180,10 @@ #define TOK_VERSION "V" #define TOK_WALLCHOPS "WC" #define TOK_WALLOPS "WA" +#define TOK_WALLHOPS "WH" #define TOK_WALLUSERS "WU" #define TOK_WALLVOICES "WV" +#define TOK_WALLHOPS "WH" #define TOK_WHO "H" #define TOK_WHOIS "W" #define TOK_WHOWAS "X" @@ -271,6 +275,7 @@ #define P10_VERSION TYPE(VERSION) #define P10_WALLCHOPS TYPE(WALLCHOPS) #define P10_WALLOPS TYPE(WALLOPS) +#define P10_WALLHOPS TYPE(WALLHOPS) #define P10_WALLUSERS TYPE(WALLUSERS) #define P10_WALLVOICES TYPE(WALLVOICES) #define P10_WHO TYPE(WHO) @@ -400,8 +405,12 @@ irc_user(struct userNode *user) modes[modelen++] = 'd'; if (IsGlobal(user)) modes[modelen++] = 'g'; - if (IsHelperIrcu(user)) + // sethost - reed/apples + // if (IsHelperIrcu(user)) + if (IsSetHost(user)) modes[modelen++] = 'h'; + if (IsFakeHost(user)) + modes[modelen++] = 'f'; if (IsHiddenHost(user)) modes[modelen++] = 'x'; modes[modelen] = 0; @@ -416,9 +425,9 @@ irc_user(struct userNode *user) } void -irc_account(struct userNode *user, const char *stamp) +irc_account(struct userNode *user, const char *stamp, time_t timestamp) { - putsock("%s " P10_ACCOUNT " %s %s", self->numeric, user->numeric, stamp); + putsock("%s " P10_ACCOUNT " %s R %s %lu", self->numeric, user->numeric, stamp, timestamp); } void @@ -544,8 +553,8 @@ irc_introduce(const char *passwd) void irc_gline(struct server *srv, struct gline *gline) { - putsock("%s " P10_GLINE " %s +%s %ld :%s", - self->numeric, (srv ? srv->numeric : "*"), gline->target, gline->expires-now, gline->reason); + putsock("%s " P10_GLINE " %s +%s %ld :<%s> %s", + self->numeric, (srv ? srv->numeric : "*"), gline->target, gline->expires-now, gline->issuer, gline->reason); } void @@ -570,6 +579,7 @@ irc_burst(struct chanNode *chan) int pos, base_len, len; struct modeNode *mn; struct banNode *bn; + struct exemptNode *en; long last_mode=-1; unsigned int n; @@ -596,6 +606,8 @@ irc_burst(struct chanNode *chan) burst_line[pos++] = ':'; if (last_mode & MODE_CHANOP) burst_line[pos++] = 'o'; + if (last_mode & MODE_HALFOP) + burst_line[pos++] = 'h'; if (last_mode & MODE_VOICE) burst_line[pos++] = 'v'; } @@ -628,6 +640,33 @@ irc_burst(struct chanNode *chan) burst_line[pos++] = ' '; } } + if (chan->exemptlist.used) { + /* dump the exempt */ + if (pos+2+strlen(chan->exemptlist.list[0]->exempt) > 505) { + burst_line[pos-1] = 0; + putsock("%s", burst_line); + pos = base_len; + } else { + burst_line[pos++] = ' '; + } + + burst_line[pos++] = ' '; + burst_line[pos++] = '~'; + burst_line[pos++] = ' '; + base_len = pos; + for (n=0; nexemptlist.used; n++) { + en = chan->exemptlist.list[n]; + len = strlen(en->exempt); + if (pos+len+1 > 510) { + burst_line[pos-1] = 0; /* -1 to back up over the space or comma */ + putsock("%s", burst_line); + pos = base_len; + } + memcpy(burst_line+pos, en->exempt, len); + pos += len; + burst_line[pos++] = ' '; + } + } /* print the last line */ burst_line[pos] = 0; putsock("%s", burst_line); @@ -782,13 +821,11 @@ static CMD_FUNC(cmd_whois) } irc_numeric(from, RPL_WHOISUSER, "%s %s %s * :%s", who->nick, who->ident, who->hostname, who->info); if (his_servername && his_servercomment) - irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, his_servername, his_servercomment); + irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, his_servername, his_servercomment); else - irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, who->uplink->name, who->uplink->description); - - if (IsOper(who)) { + irc_numeric(from, RPL_WHOISSERVER, "%s %s :%s", who->nick, who->uplink->name, who->uplink->description); + if (IsOper(who)) irc_numeric(from, RPL_WHOISOPERATOR, "%s :is a megalomaniacal power hungry tyrant", who->nick); - } irc_numeric(from, RPL_ENDOFWHOIS, "%s :End of /WHOIS list", who->nick); return 1; } @@ -800,7 +837,7 @@ static CMD_FUNC(cmd_server) if (argc < 8) return 0; - if (origin) { + if (self->uplink) { /* another server introduced us */ srv = AddServer(GetServerH(origin), argv[1], atoi(argv[2]), atoi(argv[3]), atoi(argv[4]), argv[6], argv[argc-1]); if (!srv) @@ -933,7 +970,7 @@ create_helper(char *name, void *data) return; } - AddChannelUser(cd->user, AddChannel(name, cd->when, NULL, NULL)); + AddChannelUser(cd->user, AddChannel(name, cd->when, NULL, NULL, NULL)); } static CMD_FUNC(cmd_create) @@ -1005,13 +1042,36 @@ static CMD_FUNC(cmd_nick) static CMD_FUNC(cmd_account) { struct userNode *user; + struct server *server; + struct handle_info *hi; - if ((argc < 3) || !origin || !GetServerH(origin)) + if ((argc < 3) || !origin || !(server = GetServerH(origin))) return 0; /* Origin must be server. */ + + /* This next line appears to tremple origin.. why? */ user = GetUserN(argv[1]); if (!user) return 1; /* A QUIT probably passed the ACCOUNT. */ - call_account_func(user, argv[2]); + + if(!strcmp(argv[2],"C")) + { + if((hi = loc_auth(argv[4], argv[5]))) + { + /* Return a AC A */ + putsock("%s " P10_ACCOUNT " %s A %s %lu", self->numeric, server->numeric , argv[3], hi->registered); + + } + else + { + /* Return a AC D */ + putsock("%s " P10_ACCOUNT " %s D %s", self->numeric, server->numeric , argv[3]); + } + return 1; + } + else if(!strcmp(argv[2],"R")) + call_account_func(user, argv[3]); + else + call_account_func(user, argv[2]); /* For backward compatability */ return 1; } @@ -1030,18 +1090,25 @@ static CMD_FUNC(cmd_fakehost) static CMD_FUNC(cmd_burst) { extern int rel_age; - char modes[MAXLEN], *members = "", *banlist = NULL; + char modes[MAXLEN], *members = ""; + static char exemptlist[MAXLEN], banlist[MAXLEN]; unsigned int next = 3, res = 1; + int ctype = 0, echeck = 0, bcheck = 0; struct chanNode *cNode; struct userNode *un; struct modeNode *mNode; long mode; char *user, *end, sep; time_t in_timestamp; + char* parm = NULL; if (argc < 3) return 0; modes[0] = 0; + + exemptlist[0] = 0; + banlist[0] = 0; + while (next < argc) { switch (argv[next][0]) { case '+': { @@ -1054,9 +1121,49 @@ static CMD_FUNC(cmd_burst) next += n_modes; break; } - case '%': banlist = argv[next++]+1; break; - default: members = argv[next++]; break; + case '%': { + for(parm = mysep(&argv[next], " "); /* parm = first param */ + parm; /* While param is not null */ + parm = mysep(&argv[next], " ") /* parm = next param */ + ) + { + switch (parm[0]) { + case '%': { + ctype = 1; + break; + } + case '~': { + ctype = 2; + break; + } + default: { + break; + } + } + if (ctype == 1) { + if (bcheck == 0) { + /* strip % char off start of very first ban */ + strncat(banlist, strtok(parm, "%"), sizeof(banlist) - 1 - strlen(banlist)); + strncat(banlist, " ", sizeof(banlist) - 1 - strlen(banlist)); + bcheck = 1; + } else { + strncat(banlist, parm, sizeof(banlist) - 1 - strlen(banlist)); + strncat(banlist, " ", sizeof(banlist) - 1 - strlen(banlist)); + } + } else if (ctype == 2) { + if (echeck == 0) { + echeck = 1; + } else { + strncat(exemptlist, parm, sizeof(exemptlist) - 1 - strlen(exemptlist)); + strncat(exemptlist, " ", sizeof(exemptlist) - 1 - strlen(exemptlist)); + } + } + } + next++; + break; } + default: members = argv[next++]; break; + } } in_timestamp = atoi(argv[2]); @@ -1065,7 +1172,7 @@ static CMD_FUNC(cmd_burst) dict_remove(unbursted_channels, cNode->name); irc_burst(cNode); } - cNode = AddChannel(argv[1], in_timestamp, modes, banlist); + cNode = AddChannel(argv[1], in_timestamp, modes, banlist, exemptlist); /* Burst channel members in now. */ for (user = members, sep = *members, mode = 0; sep; user = end) { @@ -1076,9 +1183,14 @@ static CMD_FUNC(cmd_burst) while ((sep = *end++)) { if (sep == 'o') mode |= MODE_CHANOP; + else if (sep == 'h') + mode |= MODE_HALFOP; else if (sep == 'v') mode |= MODE_VOICE; - else + else if (isdigit(sep)) { + mode |= MODE_CHANOP; + while (isdigit(*end)) end++; + } else break; } if (rel_age < 0) @@ -1099,6 +1211,8 @@ static CMD_FUNC(cmd_mode) { struct chanNode *cn; struct userNode *un; + char *sethost; // sethost - reed/apples + int i; // sethost - reed/apples if (argc < 3) return 0; @@ -1108,7 +1222,19 @@ static CMD_FUNC(cmd_mode) log_module(MAIN_LOG, LOG_ERROR, "Unable to find user %s whose mode is changing.", argv[1]); return 0; } + // sethost - reed/apples + if (argc == 3) mod_usermode(un, argv[2]); + else { + sethost = malloc(strlen(argv[2]) + 1 + strlen(argv[3]) + 1); + i = 0; + while((sethost[i++] = *argv[2]++)); + i--; + sethost[i++] = ' '; + while((sethost[i++] = *argv[3]++)); + mod_usermode(un, sethost); // sethost - reed/apples + } + return 1; } @@ -1558,9 +1684,13 @@ init_parse(void) dict_insert(irc_func_dict, TOK_WALLCHOPS, cmd_dummy); dict_insert(irc_func_dict, CMD_WALLVOICES, cmd_dummy); dict_insert(irc_func_dict, TOK_WALLVOICES, cmd_dummy); + dict_insert(irc_func_dict, CMD_WALLHOPS, cmd_dummy); + dict_insert(irc_func_dict, TOK_WALLHOPS, cmd_dummy); /* Ignore opers being silly. */ dict_insert(irc_func_dict, CMD_WALLOPS, cmd_dummy); dict_insert(irc_func_dict, TOK_WALLOPS, cmd_dummy); + dict_insert(irc_func_dict, CMD_WALLHOPS, cmd_dummy); + dict_insert(irc_func_dict, TOK_WALLHOPS, cmd_dummy); /* We have reliable clock! Always! Wraaa! */ dict_insert(irc_func_dict, CMD_SETTIME, cmd_dummy); dict_insert(irc_func_dict, TOK_SETTIME, cmd_dummy); @@ -1578,6 +1708,7 @@ init_parse(void) dict_insert(irc_func_dict, "401", cmd_dummy); /* target left network */ dict_insert(irc_func_dict, "403", cmd_dummy); /* no such channel */ dict_insert(irc_func_dict, "404", cmd_dummy); /* cannot send to channel */ + dict_insert(irc_func_dict, "439", cmd_dummy); /* target change too fast */ dict_insert(irc_func_dict, "441", cmd_dummy); /* target isn't on that channel */ dict_insert(irc_func_dict, "442", cmd_dummy); /* you aren't on that channel */ dict_insert(irc_func_dict, "443", cmd_dummy); /* is already on channel (after invite?) */ @@ -1801,7 +1932,7 @@ void DelServer(struct server* serv, int announce, const char *message) } struct userNode * -AddService(const char *nick, const char *desc, const char *hostname) +AddService(const char *nick, const char *modes, const char *desc, const char *hostname) { char numeric[COMBO_NUMERIC_LEN+1]; int local_num = get_local_numeric(); @@ -1820,7 +1951,7 @@ AddService(const char *nick, const char *desc, const char *hostname) if (!hostname) hostname = self->name; make_numeric(self, local_num, numeric); - return AddUser(self, nick, nick, hostname, "+oik", numeric, desc, now, "AAAAAA"); + return AddUser(self, nick, nick, hostname, modes ? modes : "+oik", numeric, desc, now, "AAAAAA"); } struct userNode * @@ -1846,12 +1977,13 @@ AddClone(const char *nick, const char *ident, const char *hostname, const char * int is_valid_nick(const char *nick) { + unsigned int ii; /* IRC has some of The Most Fucked-Up ideas about character sets * in the world.. */ if (!isalpha(*nick) && !strchr("{|}~[\\]^_`", *nick)) return 0; - for (++nick; *nick; ++nick) - if (!isalnum(*nick) && !strchr("{|}~[\\]^-_`", *nick)) + for (ii = 0; nick[ii]; ++ii) + if (!isalnum(nick[ii]) && !strchr("{|}~[\\]^-_`", nick[ii])) return 0; if (strlen(nick) > nicklen) return 0; @@ -1941,6 +2073,8 @@ DelUser(struct userNode* user, struct userNode *killer, int announce, const char { unsigned int n; + verify(user); + /* mark them as dead, in case anybody cares */ user->dead = 1; @@ -1989,8 +2123,8 @@ void mod_usermode(struct userNode *user, const char *mode_change) { if (!user || !mode_change) return; - while (*word != ' ' && *word) word++;\ - while (*word == ' ') word++; \ + while (*word != ' ' && *word) word++; + while (*word == ' ') word++; while (1) { #define do_user_mode(FLAG) do { if (add) user->modes |= FLAG; else user->modes &= ~FLAG; } while (0) switch (*mode_change++) { @@ -2018,7 +2152,22 @@ void mod_usermode(struct userNode *user, const char *mode_change) { case 'd': do_user_mode(FLAGS_DEAF); break; case 'k': do_user_mode(FLAGS_SERVICE); break; case 'g': do_user_mode(FLAGS_GLOBAL); break; - case 'h': do_user_mode(FLAGS_HELPER); break; + // sethost - reed/apples + // case 'h': do_user_mode(FLAGS_HELPER); break; + // I check if there's an 'h' in the first part, and if there, + // then everything after the space becomes their new host. + case 'h': do_user_mode(FLAGS_SETHOST); + if (*word) { + char sethost[MAXLEN]; + unsigned int ii; + for (ii=0; (*word != ' ') && (*word != '\0'); ) + sethost[ii++] = *word++; + sethost[ii] = 0; + while (*word == ' ') + word++; + safestrncpy(user->sethost, sethost, sizeof(user->sethost)); + } + break; case 'x': do_user_mode(FLAGS_HIDDEN_HOST); break; case 'r': if (*word) { @@ -2081,6 +2230,22 @@ mod_chanmode_parse(struct chanNode *channel, char **modes, unsigned int argc, un case 'r': do_chan_mode(MODE_REGONLY); break; case 's': do_chan_mode(MODE_SECRET); break; case 't': do_chan_mode(MODE_TOPICLIMIT); break; + case 'S': do_chan_mode(MODE_STRIPCOLOR); break; + case 'M': do_chan_mode(MODE_MODUNREG); break; + case 'N': do_chan_mode(MODE_NONOTICE); break; + case 'Q': do_chan_mode(MODE_NOQUITMSGS); break; + case 'T': do_chan_mode(MODE_NOAMSG); break; + case 'O': do_chan_mode(MODE_OPERSONLY); break; + case 'z': + if (!(flags & MCP_REGISTERED)) { + do_chan_mode(MODE_REGISTERED); + } else { + mod_chanmode_free(change); + return NULL; + } + break; +// uncomment this when ssl is enabled on the network. +// case 'Z': do_chan_mode(MODE_SSLONLY); break; #undef do_chan_mode case 'l': if (add) { @@ -2116,16 +2281,33 @@ mod_chanmode_parse(struct chanNode *channel, char **modes, unsigned int argc, un change->args[ch_arg].mode = MODE_BAN; if (!add) change->args[ch_arg].mode |= MODE_REMOVE; - change->args[ch_arg++].hostmask = modes[in_arg++]; + change->args[ch_arg++].u.hostmask = modes[in_arg++]; + break; + case 'e': + if (!(flags & MCP_ALLOW_OVB)) + goto error; + if (in_arg >= argc) + goto error; + change->args[ch_arg].mode = MODE_EXEMPT; + if (!add) + change->args[ch_arg].mode |= MODE_REMOVE; + change->args[ch_arg++].u.hostmask = modes[in_arg++]; break; - case 'o': case 'v': + case 'o': case 'h': case 'v': { struct userNode *victim; if (!(flags & MCP_ALLOW_OVB)) goto error; if (in_arg >= argc) goto error; - change->args[ch_arg].mode = (modes[0][ii] == 'o') ? MODE_CHANOP : MODE_VOICE; + + if (modes[0][ii] == 'o') + change->args[ch_arg].mode = MODE_CHANOP; + else if (modes[0][ii] == 'h') + change->args[ch_arg].mode = MODE_HALFOP; + else if (modes[0][ii] == 'v') + change->args[ch_arg].mode = MODE_VOICE; + if (!add) change->args[ch_arg].mode |= MODE_REMOVE; if (flags & MCP_FROM_SERVER) @@ -2134,7 +2316,7 @@ mod_chanmode_parse(struct chanNode *channel, char **modes, unsigned int argc, un victim = GetUserH(modes[in_arg++]); if (!victim) continue; - if ((change->args[ch_arg].member = GetUserMode(channel, victim))) + if ((change->args[ch_arg].u.member = GetUserMode(channel, victim))) ch_arg++; break; } @@ -2224,6 +2406,15 @@ mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod DO_MODE_CHAR(REGONLY, 'r'); DO_MODE_CHAR(NOCOLORS, 'c'); DO_MODE_CHAR(NOCTCPS, 'C'); + DO_MODE_CHAR(STRIPCOLOR, 'S'); + DO_MODE_CHAR(MODUNREG, 'M'); + DO_MODE_CHAR(NONOTICE, 'N'); + DO_MODE_CHAR(NOQUITMSGS, 'Q'); + DO_MODE_CHAR(NOAMSG, 'T'); + DO_MODE_CHAR(OPERSONLY, 'O'); + DO_MODE_CHAR(REGISTERED, 'z'); + // uncomment this for ssl support + //DO_MODE_CHAR(SSLONLY, 'Z'); #undef DO_MODE_CHAR if (change->modes_clear & channel->modes & MODE_KEY) mod_chanmode_append(&chbuf, 'k', channel->key); @@ -2235,13 +2426,18 @@ mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod chbuf.modes[chbuf.modes_used++] = mode = '-'; switch (change->args[arg].mode & ~MODE_REMOVE) { case MODE_BAN: - mod_chanmode_append(&chbuf, 'b', change->args[arg].hostmask); + mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask); + break; + case MODE_EXEMPT: + mod_chanmode_append(&chbuf, 'e', change->args[arg].u.hostmask); break; default: if (change->args[arg].mode & MODE_CHANOP) - mod_chanmode_append(&chbuf, 'o', change->args[arg].member->user->numeric); + mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric); + if (change->args[arg].mode & MODE_HALFOP) + mod_chanmode_append(&chbuf, 'h', change->args[arg].u.member->user->numeric); if (change->args[arg].mode & MODE_VOICE) - mod_chanmode_append(&chbuf, 'v', change->args[arg].member->user->numeric); + mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric); break; } } @@ -2262,6 +2458,15 @@ mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod DO_MODE_CHAR(REGONLY, 'r'); DO_MODE_CHAR(NOCOLORS, 'c'); DO_MODE_CHAR(NOCTCPS, 'C'); + DO_MODE_CHAR(STRIPCOLOR, 'S'); + DO_MODE_CHAR(MODUNREG, 'M'); + DO_MODE_CHAR(NONOTICE, 'N'); + DO_MODE_CHAR(NOQUITMSGS, 'Q'); + DO_MODE_CHAR(NOAMSG, 'T'); + DO_MODE_CHAR(OPERSONLY, 'O'); + DO_MODE_CHAR(REGISTERED, 'z'); + // uncomment this for ssl support + //DO_MODE_CHAR(SSLONLY, 'Z'); #undef DO_MODE_CHAR if(change->modes_set & MODE_KEY) mod_chanmode_append(&chbuf, 'k', change->new_key); @@ -2277,13 +2482,18 @@ mod_chanmode_announce(struct userNode *who, struct chanNode *channel, struct mod chbuf.modes[chbuf.modes_used++] = mode = '+'; switch (change->args[arg].mode) { case MODE_BAN: - mod_chanmode_append(&chbuf, 'b', change->args[arg].hostmask); + mod_chanmode_append(&chbuf, 'b', change->args[arg].u.hostmask); + break; + case MODE_EXEMPT: + mod_chanmode_append(&chbuf, 'e', change->args[arg].u.hostmask); break; default: if (change->args[arg].mode & MODE_CHANOP) - mod_chanmode_append(&chbuf, 'o', change->args[arg].member->user->numeric); + mod_chanmode_append(&chbuf, 'o', change->args[arg].u.member->user->numeric); + if (change->args[arg].mode & MODE_HALFOP) + mod_chanmode_append(&chbuf, 'h', change->args[arg].u.member->user->numeric); if (change->args[arg].mode & MODE_VOICE) - mod_chanmode_append(&chbuf, 'v', change->args[arg].member->user->numeric); + mod_chanmode_append(&chbuf, 'v', change->args[arg].u.member->user->numeric); break; } } @@ -2317,6 +2527,15 @@ mod_chanmode_format(struct mod_chanmode *change, char *outbuff) DO_MODE_CHAR(REGONLY, 'r'); DO_MODE_CHAR(NOCOLORS, 'c'); DO_MODE_CHAR(NOCTCPS, 'C'); + DO_MODE_CHAR(STRIPCOLOR, 'S'); + DO_MODE_CHAR(MODUNREG, 'M'); + DO_MODE_CHAR(NONOTICE, 'N'); + DO_MODE_CHAR(NOQUITMSGS, 'Q'); + DO_MODE_CHAR(NOAMSG, 'T'); + DO_MODE_CHAR(OPERSONLY, 'O'); + DO_MODE_CHAR(REGISTERED, 'z'); + // uncomment this for ssl support + //DO_MODE_CHAR(SSLONLY, 'Z'); #undef DO_MODE_CHAR } if (change->modes_set) { @@ -2332,6 +2551,15 @@ mod_chanmode_format(struct mod_chanmode *change, char *outbuff) DO_MODE_CHAR(REGONLY, 'r'); DO_MODE_CHAR(NOCOLORS, 'c'); DO_MODE_CHAR(NOCTCPS, 'C'); + DO_MODE_CHAR(STRIPCOLOR, 'S'); + DO_MODE_CHAR(MODUNREG, 'M'); + DO_MODE_CHAR(NONOTICE, 'N'); + DO_MODE_CHAR(NOQUITMSGS, 'Q'); + DO_MODE_CHAR(NOAMSG, 'T'); + DO_MODE_CHAR(OPERSONLY, 'O'); + DO_MODE_CHAR(REGISTERED, 'z'); + // uncomment this for ssl support + //DO_MODE_CHAR(SSLONLY, 'Z'); #undef DO_MODE_CHAR switch (change->modes_set & (MODE_KEY|MODE_LIMIT)) { case MODE_KEY|MODE_LIMIT: @@ -2357,6 +2585,7 @@ clear_chanmode(struct chanNode *channel, const char *modes) for (remove = 0; *modes; modes++) { switch (*modes) { case 'o': remove |= MODE_CHANOP; break; + case 'h': remove |= MODE_HALFOP; break; case 'v': remove |= MODE_VOICE; break; case 'p': remove |= MODE_PRIVATE; break; case 's': remove |= MODE_SECRET; break; @@ -2373,10 +2602,18 @@ clear_chanmode(struct chanNode *channel, const char *modes) channel->limit = 0; break; case 'b': remove |= MODE_BAN; break; + case 'e': remove |= MODE_EXEMPT; break; case 'D': remove |= MODE_DELAYJOINS; break; case 'r': remove |= MODE_REGONLY; break; case 'c': remove |= MODE_NOCOLORS; case 'C': remove |= MODE_NOCTCPS; break; + case 'S': remove |= MODE_STRIPCOLOR; break; + case 'M': remove |= MODE_MODUNREG; break; + case 'N': remove |= MODE_NONOTICE; break; + case 'Q': remove |= MODE_NOQUITMSGS; break; + case 'T': remove |= MODE_NOAMSG; break; + case 'O': remove |= MODE_OPERSONLY; break; + case 'z': remove |= MODE_REGISTERED; break; } } @@ -2394,9 +2631,17 @@ clear_chanmode(struct chanNode *channel, const char *modes) channel->banlist.used = 0; } + /* If removing exempts, kill 'em all. */ + if ((remove & MODE_EXEMPT) && channel->exemptlist.used) { + unsigned int i; + for (i=0; iexemptlist.used; i++) + free(channel->exemptlist.list[i]); + channel->exemptlist.used = 0; + } + /* Remove member modes. */ - if ((remove & (MODE_CHANOP | MODE_VOICE)) && channel->members.used) { - int mask = ~(remove & (MODE_CHANOP | MODE_VOICE)); + if ((remove & (MODE_CHANOP | MODE_HALFOP | MODE_VOICE)) && channel->members.used) { + int mask = ~(remove & (MODE_CHANOP | MODE_HALFOP | MODE_VOICE)); unsigned int i; for (i = 0; i < channel->members.used; i++)