Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_clearmode.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_tmpl.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$
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 #if 0
84 /*
85  * No need to include handlers.h here the signatures must match
86  * and we don't need to force a rebuild of all the handlers everytime
87  * we add a new one to the list. --Bleep
88  */
89 #include "handlers.h"
90 #endif /* 0 */
91 #include "client.h"
92 #include "channel.h"
93 #include "hash.h"
94 #include "ircd.h"
95 #include "ircd_reply.h"
96 #include "ircd_string.h"
97 #include "numeric.h"
98 #include "numnicks.h"
99 #include "send.h"
100
101 #include <assert.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     0x0, 0x0
126   };
127   int *flag_p;
128   unsigned int del_mode = 0;
129   char control_buf[20];
130   int control_buf_i = 0;
131   struct ModeBuf mbuf;
132   struct SLink *link, *next;
133   struct Membership *member;
134
135   /* Um...yeah, like it's supposed to have any modes at all. */
136   if (IsModelessChannel(chptr->chname))
137     return 0;
138
139   /* Ok, so what are we supposed to get rid of? */
140   for (; *control; control++) {
141     for (flag_p = flags; flag_p[0]; flag_p += 2)
142       if (*control == flag_p[1]) {
143         del_mode |= flag_p[0];
144         break;
145       }
146   }
147
148   if (!del_mode)
149     return 0; /* nothing to remove; ho hum. */
150
151   modebuf_init(&mbuf, sptr, cptr, chptr,
152                (MODEBUF_DEST_CHANNEL | /* Send MODE to channel */
153                 MODEBUF_DEST_OPMODE  | /* Treat it like an OPMODE */
154                 MODEBUF_DEST_HACK4));  /* Generate a HACK(4) notice */
155
156   modebuf_mode(&mbuf, MODE_DEL | del_mode); /* Mark modes for deletion */
157   chptr->mode.mode &= ~del_mode; /* and of course actually delete them */
158
159   /* If we're removing invite, remove all the invites */
160   if (del_mode & MODE_INVITE)
161     while ((link = chptr->invites))
162       del_invite(link->value.cptr, chptr);
163
164   /*
165    * If we're removing the key, note that; note that we can't clear
166    * the key until after modebuf_* are done with it
167    */
168   if (del_mode & MODE_KEY)
169     modebuf_mode_string(&mbuf, MODE_DEL | MODE_KEY, chptr->mode.key);
170
171   /* If we're removing the limit, note that and clear the limit */
172   if (del_mode & MODE_LIMIT) {
173     modebuf_mode_uint(&mbuf, MODE_DEL | MODE_LIMIT, chptr->mode.limit);
174     chptr->mode.limit = 0; /* not referenced, so safe */
175   }
176
177   /*
178    * Go through and mark the bans for deletion; note that we can't
179    * free them until after modebuf_* are done with them
180    */
181   if (del_mode & MODE_BAN)
182     for (link = chptr->banlist; link; link = link->next)
183       modebuf_mode_string(&mbuf, MODE_DEL | MODE_BAN, link->value.ban.banstr);
184
185   /* Deal with users on the channel */
186   if (del_mode & (MODE_BAN | MODE_CHANOP | MODE_VOICE))
187     for (member = chptr->members; member; member = member->next_member) {
188       if (IsZombie(member)) /* we ignore zombies */
189         continue;
190
191       if (del_mode & MODE_BAN) /* If we cleared bans, clear the valid flags */
192         ClearBanValid(member);
193
194       /* Drop channel operator status */
195       if (IsChanOp(member) && del_mode & MODE_CHANOP) {
196         modebuf_mode_client(&mbuf, MODE_DEL | MODE_CHANOP, member->user);
197         member->status &= ~CHFL_CHANOP;
198       }
199
200       /* Drop voice */
201       if (HasVoice(member) && del_mode & MODE_VOICE) {
202         modebuf_mode_client(&mbuf, MODE_DEL | MODE_VOICE, member->user);
203         member->status &= ~CHFL_VOICE;
204       }
205     }
206
207   /* And flush the modes to the channel */
208   modebuf_flush(&mbuf);
209
210   /* Finally, we can clear the key... */
211   if (del_mode & MODE_KEY)
212     chptr->mode.key[0] = '\0';
213
214   /* and free the bans */
215   if (del_mode & MODE_BAN) {
216     for (link = chptr->banlist; link; link = next) {
217       next = link->next;
218
219       MyFree(link->value.ban.banstr);
220       MyFree(link->value.ban.who);
221       free_link(link);
222     }
223
224     chptr->banlist = 0;
225   }
226
227   /* Don't propagate CLEARMODE if it's a local channel */
228   if (IsLocalChannel(chptr->chname))
229     return 0;
230
231   /* Ok, build control string again */
232   for (flag_p = flags; flag_p[0]; flag_p += 2)
233     if (del_mode & flag_p[0])
234       control_buf[control_buf_i++] = flag_p[1];
235
236   control_buf[control_buf_i] = '\0';
237
238   /* Then send it */
239   if (IsServer(sptr))
240     sendto_serv_butone(cptr, "%s " TOK_CLEARMODE " %s %s", NumServ(sptr),
241                        chptr->chname, control_buf);
242   else
243     sendto_serv_butone(cptr, "%s%s " TOK_CLEARMODE " %s %s", NumNick(sptr),
244                        chptr->chname, control_buf);
245 }
246
247 /*
248  * ms_clearmode - server message handler
249  *
250  * parv[0] = Send prefix
251  * parv[1] = Channel name
252  * parv[2] = Control string
253  */
254 int
255 ms_clearmode(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
256 {
257   struct Channel *chptr;
258
259   if (parc < 3)
260     return need_more_params(sptr, "CLEARMODE");
261
262   if (!IsPrivileged(sptr))
263     return send_error_to_client(sptr, ERR_NOPRIVILEGES);
264
265   if (!IsChannelName(parv[1]) || IsLocalChannel(parv[1]) ||
266       !(chptr = FindChannel(parv[1])))
267     return send_error_to_client(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
285   if (parc < 2)
286     return need_more_params(sptr, "CLEARMODE");
287
288   if (parc > 2)
289     control = parv[2];
290
291   if (!IsOper(sptr) && !IsLocalChannel(parv[1]))
292     return send_error_to_client(sptr, ERR_NOPRIVILEGES);
293
294   if (!IsChannelName(parv[1]) || !(chptr = FindChannel(parv[1])))
295     return send_error_to_client(sptr, ERR_NOSUCHCHANNEL, parv[1]);
296
297   return do_clearmode(cptr, sptr, chptr, control);
298 }