X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/800ff2ca9de79ef676b381b0a948ab9d7fac711b..5d7273614b7282ac8d8323081c70c3ac7b101050:/ircd/chmode.c diff --git a/ircd/chmode.c b/ircd/chmode.c index c3182d1f..6416a8c9 100644 --- a/ircd/chmode.c +++ b/ircd/chmode.c @@ -1,5 +1,5 @@ /* - * charybdis: A slightly useful ircd. + * Solanum: a slightly advanced ircd * chmode.c: channel mode management * * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center @@ -253,7 +253,7 @@ add_id(struct Client *source_p, struct Channel *chptr, const char *banid, const */ if(MyClient(source_p)) { - if((rb_dlink_list_length(&chptr->banlist) + rb_dlink_list_length(&chptr->exceptlist) + rb_dlink_list_length(&chptr->invexlist) + rb_dlink_list_length(&chptr->quietlist)) >= (unsigned long)(chptr->mode.mode & MODE_EXLIMIT ? ConfigChannel.max_bans_large : ConfigChannel.max_bans)) + if((rb_dlink_list_length(&chptr->banlist) + rb_dlink_list_length(&chptr->exceptlist) + rb_dlink_list_length(&chptr->invexlist) + rb_dlink_list_length(&chptr->quietlist)) >= (unsigned long)((chptr->mode.mode & MODE_EXLIMIT) ? ConfigChannel.max_bans_large : ConfigChannel.max_bans)) { sendto_one(source_p, form_str(ERR_BANLISTFULL), me.name, source_p->name, chptr->chname, realban); @@ -291,7 +291,7 @@ add_id(struct Client *source_p, struct Channel *chptr, const char *banid, const /* invalidate the can_send() cache */ if(mode_type == CHFL_BAN || mode_type == CHFL_QUIET || mode_type == CHFL_EXCEPTION) - chptr->bants++; + chptr->bants = rb_current_time(); return true; } @@ -321,7 +321,7 @@ del_id(struct Channel *chptr, const char *banid, rb_dlink_list * list, long mode /* invalidate the can_send() cache */ if(mode_type == CHFL_BAN || mode_type == CHFL_QUIET || mode_type == CHFL_EXCEPTION) - chptr->bants++; + chptr->bants = rb_current_time(); return banptr; } @@ -490,7 +490,7 @@ static bool check_forward(struct Client *source_p, struct Channel *chptr, const char *forward) { - struct Channel *targptr; + struct Channel *targptr = NULL; struct membership *msptr; if(!check_channel_name(forward) || @@ -660,7 +660,7 @@ chm_hidden(struct Client *source_p, struct Channel *chptr, int alevel, int parc, int *parn, const char **parv, int *errors, int dir, char c, long mode_type) { - if(!IsOper(source_p) && !IsServer(source_p)) + if(MyClient(source_p) && !IsOperGeneral(source_p)) { if(!(*errors & SM_ERR_NOPRIVS)) sendto_one_numeric(source_p, ERR_NOPRIVILEGES, form_str(ERR_NOPRIVILEGES)); @@ -707,25 +707,22 @@ chm_staff(struct Client *source_p, struct Channel *chptr, int alevel, int parc, int *parn, const char **parv, int *errors, int dir, char c, long mode_type) { - if(!IsOper(source_p) && !IsServer(source_p)) + if(MyClient(source_p) && !IsOper(source_p)) { if(!(*errors & SM_ERR_NOPRIVS)) sendto_one_numeric(source_p, ERR_NOPRIVILEGES, form_str(ERR_NOPRIVILEGES)); *errors |= SM_ERR_NOPRIVS; return; } - if(MyClient(source_p) && !IsOperResv(source_p)) + if(MyClient(source_p) && !HasPrivilege(source_p, "oper:cmodes")) { if(!(*errors & SM_ERR_NOPRIVS)) sendto_one(source_p, form_str(ERR_NOPRIVS), me.name, - source_p->name, "resv"); + source_p->name, "cmodes"); *errors |= SM_ERR_NOPRIVS; return; } - if(!allow_mode_change(source_p, chptr, CHFL_CHANOP, errors, c)) - return; - if(MyClient(source_p) && (++mode_limit_simple > MAXMODES_SIMPLE)) return; @@ -822,7 +819,6 @@ chm_ban(struct Client *source_p, struct Channel *chptr, default: sendto_realops_snomask(SNO_GENERAL, L_ALL, "chm_ban() called with unknown type!"); return; - break; } if(dir == 0 || parc <= *parn) @@ -1270,7 +1266,7 @@ chm_forward(struct Client *source_p, struct Channel *chptr, if(!allow_mode_change(source_p, chptr, alevel, errors, c)) return; #else - if(!IsOper(source_p) && !IsServer(source_p)) + if(!IsOperGeneral(source_p) && !IsServer(source_p)) { if(!(*errors & SM_ERR_NOPRIVS)) sendto_one_numeric(source_p, ERR_NOPRIVILEGES, form_str(ERR_NOPRIVILEGES)); @@ -1746,7 +1742,13 @@ set_channel_mode(struct Client *client_p, struct Client *source_p, for(j = 0; j < 3; j++) { - flags = flags_list[j]; + int send_flags = flags = flags_list[j]; + const char *priv = NULL; + if (flags == ONLY_OPERS) + { + send_flags = ALL_MEMBERS; + priv = "auspex:cmodes"; + } cur_len = mlen; mbuf = modebuf + mlen; pbuf = parabuf; @@ -1779,8 +1781,8 @@ set_channel_mode(struct Client *client_p, struct Client *source_p, *mbuf = '\0'; if(cur_len > mlen) - sendto_channel_local(flags, chptr, "%s %s", modebuf, - parabuf); + sendto_channel_local_priv(IsServer(source_p) ? fakesource_p : source_p, + send_flags, priv, chptr, "%s %s", modebuf, parabuf); else continue; @@ -1816,7 +1818,8 @@ set_channel_mode(struct Client *client_p, struct Client *source_p, *mbuf = '\0'; if(cur_len > mlen) - sendto_channel_local(flags, chptr, "%s %s", modebuf, parabuf); + sendto_channel_local_priv(IsServer(source_p) ? fakesource_p : source_p, + send_flags, priv, chptr, "%s %s", modebuf, parabuf); } /* only propagate modes originating locally, or if we're hubbing */