]> jfr.im git - irc/quakenet/snircd.git/blob - ircd/m_clearmode.c
Merged revisions 114-121 via svnmerge from
[irc/quakenet/snircd.git] / ircd / m_clearmode.c
1 /*
2 * IRC - Internet Relay Chat, ircd/m_clearmode.c
3 * Copyright (C) 1990 Jarkko Oikarinen and
4 * University of Oulu, Computing Center
5 * Copyright (C) 2000 Kevin L. Mitchell <klmitch@mit.edu>
6 *
7 * See file AUTHORS in IRC package for additional names of
8 * the programmers.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 1, or (at your option)
13 * any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
24 * $Id: m_clearmode.c,v 1.31 2005/09/27 02:41:57 entrope Exp $
25 */
26
27 /*
28 * m_functions execute protocol messages on this server:
29 *
30 * cptr is always NON-NULL, pointing to a *LOCAL* client
31 * structure (with an open socket connected!). This
32 * identifies the physical socket where the message
33 * originated (or which caused the m_function to be
34 * executed--some m_functions may call others...).
35 *
36 * sptr is the source of the message, defined by the
37 * prefix part of the message if present. If not
38 * or prefix not found, then sptr==cptr.
39 *
40 * (!IsServer(cptr)) => (cptr == sptr), because
41 * prefixes are taken *only* from servers...
42 *
43 * (IsServer(cptr))
44 * (sptr == cptr) => the message didn't
45 * have the prefix.
46 *
47 * (sptr != cptr && IsServer(sptr) means
48 * the prefix specified servername. (?)
49 *
50 * (sptr != cptr && !IsServer(sptr) means
51 * that message originated from a remote
52 * user (not local).
53 *
54 * combining
55 *
56 * (!IsServer(sptr)) means that, sptr can safely
57 * taken as defining the target structure of the
58 * message in this server.
59 *
60 * *Always* true (if 'parse' and others are working correct):
61 *
62 * 1) sptr->from == cptr (note: cptr->from == cptr)
63 *
64 * 2) MyConnect(sptr) <=> sptr == cptr (e.g. sptr
65 * *cannot* be a local connection, unless it's
66 * actually cptr!). [MyConnect(x) should probably
67 * be defined as (x == x->from) --msa ]
68 *
69 * parc number of variable parameter strings (if zero,
70 * parv is allowed to be NULL)
71 *
72 * parv a NULL terminated list of parameter pointers,
73 *
74 * parv[0], sender (prefix string), if not present
75 * this points to an empty string.
76 * parv[1]...parv[parc-1]
77 * pointers to additional parameters
78 * parv[parc] == NULL, *always*
79 *
80 * note: it is guaranteed that parv[0]..parv[parc-1] are all
81 * non-NULL pointers.
82 */
83 #include "config.h"
84
85 #include "client.h"
86 #include "channel.h"
87 #include "hash.h"
88 #include "ircd.h"
89 #include "ircd_alloc.h"
90 #include "ircd_features.h"
91 #include "ircd_log.h"
92 #include "ircd_reply.h"
93 #include "ircd_string.h"
94 #include "list.h"
95 #include "msg.h"
96 #include "numeric.h"
97 #include "numnicks.h"
98 #include "s_conf.h"
99 #include "send.h"
100
101 /* #include <assert.h> -- Now using assert in ircd_log.h */
102
103 /*
104 * do_clearmode(struct Client *cptr, struct Client *sptr,
105 * struct Channel *chptr, char *control)
106 *
107 * This is the function that actually clears the channel modes.
108 */
109 static int
110 do_clearmode(struct Client *cptr, struct Client *sptr, struct Channel *chptr,
111 char *control)
112 {
113 static int flags[] = {
114 MODE_CHANOP, 'o',
115 MODE_VOICE, 'v',
116 MODE_PRIVATE, 'p',
117 MODE_SECRET, 's',
118 MODE_MODERATED, 'm',
119 MODE_TOPICLIMIT, 't',
120 MODE_INVITEONLY, 'i',
121 MODE_NOPRIVMSGS, 'n',
122 MODE_KEY, 'k',
123 MODE_BAN, 'b',
124 MODE_LIMIT, 'l',
125 MODE_REGONLY, 'r',
126 MODE_DELJOINS, 'D',
127 MODE_NOQUITPARTS, 'u',
128 MODE_NOCOLOUR, 'c',
129 MODE_NOCTCP, 'C',
130 MODE_NONOTICE, 'N',
131 MODE_NOMULTITARGET, 'M',
132 0x0, 0x0
133 };
134 int *flag_p;
135 unsigned int del_mode = 0;
136 char control_buf[20];
137 int control_buf_i = 0;
138 struct ModeBuf mbuf;
139 struct Ban *link, *next;
140 struct Membership *member;
141
142 /* Ok, so what are we supposed to get rid of? */
143 for (; *control; control++) {
144 for (flag_p = flags; flag_p[0]; flag_p += 2)
145 if (*control == flag_p[1]) {
146 del_mode |= flag_p[0];
147 break;
148 }
149 }
150
151 if (!del_mode)
152 return 0; /* nothing to remove; ho hum. */
153
154 modebuf_init(&mbuf, sptr, cptr, chptr,
155 (MODEBUF_DEST_CHANNEL | /* Send MODE to channel */
156 MODEBUF_DEST_OPMODE | /* Treat it like an OPMODE */
157 MODEBUF_DEST_HACK4)); /* Generate a HACK(4) notice */
158
159 modebuf_mode(&mbuf, MODE_DEL | (del_mode & chptr->mode.mode));
160 chptr->mode.mode &= ~del_mode; /* and of course actually delete them */
161
162 /* If we're removing invite, remove all the invites */
163 if (del_mode & MODE_INVITEONLY)
164 mode_invite_clear(chptr);
165
166 /*
167 * If we're removing the key, note that; note that we can't clear
168 * the key until after modebuf_* are done with it
169 */
170 if (del_mode & MODE_KEY && *chptr->mode.key)
171 modebuf_mode_string(&mbuf, MODE_DEL | MODE_KEY, chptr->mode.key, 0);
172
173 /* If we're removing the limit, note that and clear the limit */
174 if (del_mode & MODE_LIMIT && chptr->mode.limit) {
175 modebuf_mode_uint(&mbuf, MODE_DEL | MODE_LIMIT, chptr->mode.limit);
176 chptr->mode.limit = 0; /* not referenced, so safe */
177 }
178
179 /*
180 * Go through and mark the bans for deletion; note that we can't
181 * free them until after modebuf_* are done with them
182 */
183 if (del_mode & MODE_BAN) {
184 for (link = chptr->banlist; link; link = next) {
185 char *bandup;
186 next = link->next;
187
188 DupString(bandup, link->banstr);
189 modebuf_mode_string(&mbuf, MODE_DEL | MODE_BAN, /* delete ban */
190 bandup, 1);
191 free_ban(link);
192 }
193
194 chptr->banlist = 0;
195 }
196
197 /* Deal with users on the channel */
198 if (del_mode & (MODE_BAN | MODE_CHANOP | MODE_VOICE))
199 for (member = chptr->members; member; member = member->next_member) {
200 if (IsZombie(member)) /* we ignore zombies */
201 continue;
202
203 if (del_mode & MODE_BAN) /* If we cleared bans, clear the valid flags */
204 ClearBanValid(member);
205
206 /* Drop channel operator status */
207 if (IsChanOp(member) && del_mode & MODE_CHANOP) {
208 modebuf_mode_client(&mbuf, MODE_DEL | MODE_CHANOP, member->user, MAXOPLEVEL + 1);
209 member->status &= ~CHFL_CHANOP;
210 }
211
212 /* Drop voice */
213 if (HasVoice(member) && del_mode & MODE_VOICE) {
214 modebuf_mode_client(&mbuf, MODE_DEL | MODE_VOICE, member->user, MAXOPLEVEL + 1);
215 member->status &= ~CHFL_VOICE;
216 }
217 }
218
219 /* And flush the modes to the channel */
220 modebuf_flush(&mbuf);
221
222 /* Finally, we can clear the key... */
223 if (del_mode & MODE_KEY)
224 chptr->mode.key[0] = '\0';
225
226 /* Ok, build control string again */
227 for (flag_p = flags; flag_p[0]; flag_p += 2)
228 if (del_mode & flag_p[0])
229 control_buf[control_buf_i++] = flag_p[1];
230
231 control_buf[control_buf_i] = '\0';
232
233 /* Log it... */
234 log_write(LS_OPERMODE, L_INFO, LOG_NOSNOTICE, "%#C CLEARMODE %H %s", sptr,
235 chptr, control_buf);
236
237 /* Then send it */
238 if (!IsLocalChannel(chptr->chname))
239 sendcmdto_serv_butone(sptr, CMD_CLEARMODE, cptr, "%H %s", chptr,
240 control_buf);
241
242 return 0;
243 }
244
245 /*
246 * ms_clearmode - server message handler
247 *
248 * parv[0] = Send prefix
249 * parv[1] = Channel name
250 * parv[2] = Control string
251 */
252 int
253 ms_clearmode(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
254 {
255 struct Channel *chptr;
256
257 if (parc < 3)
258 return need_more_params(sptr, "CLEARMODE");
259
260 if (!IsPrivileged(sptr)) {
261 protocol_violation(sptr,"No privileges on source for CLEARMODE, desync?");
262 return send_reply(sptr, ERR_NOPRIVILEGES);
263 }
264
265 if (!IsChannelName(parv[1]) || IsLocalChannel(parv[1]) ||
266 !(chptr = FindChannel(parv[1])))
267 return send_reply(sptr, ERR_NOSUCHCHANNEL, parv[1]);
268
269 return do_clearmode(cptr, sptr, chptr, parv[2]);
270 }
271
272 /*
273 * mo_clearmode - oper message handler
274 *
275 * parv[0] = Send prefix
276 * parv[1] = Channel name
277 * parv[2] = Control string
278 */
279 int
280 mo_clearmode(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
281 {
282 struct Channel *chptr;
283 char *control = "ovpsmikbl"; /* default control string */
284 const char *chname, *qreason;
285 int force = 0;
286
287 if (!feature_bool(FEAT_CONFIG_OPERCMDS))
288 return send_reply(sptr, ERR_DISABLED, "CLEARMODE");
289
290 if (parc < 2)
291 return need_more_params(sptr, "CLEARMODE");
292
293 if (parc > 2)
294 control = parv[2];
295
296 chname = parv[1];
297 if (*chname == '!')
298 {
299 chname++;
300 if (!HasPriv(sptr, IsLocalChannel(chname) ?
301 PRIV_FORCE_LOCAL_OPMODE :
302 PRIV_FORCE_OPMODE))
303 return send_reply(sptr, ERR_NOPRIVILEGES);
304 force = 1;
305 }
306
307 if (!HasPriv(sptr,
308 IsLocalChannel(chname) ? PRIV_LOCAL_OPMODE : PRIV_OPMODE))
309 return send_reply(sptr, ERR_NOPRIVILEGES);
310
311 if (('#' != *chname && '&' != *chname) || !(chptr = FindChannel(chname)))
312 return send_reply(sptr, ERR_NOSUCHCHANNEL, chname);
313
314 if (!force && (qreason = find_quarantine(chptr->chname)))
315 return send_reply(sptr, ERR_QUARANTINED, chptr->chname, qreason);
316
317 return do_clearmode(cptr, sptr, chptr, control);
318 }