Author: beware
[ircu2.10.12-pk.git] / ircd / m_kick.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_kick.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * See file AUTHORS in IRC package for additional names of
7  * the programmers.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 1, or (at your option)
12  * any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  */
25
26 /*
27  * m_functions execute protocol messages on this server:
28  *
29  *    cptr    is always NON-NULL, pointing to a *LOCAL* client
30  *            structure (with an open socket connected!). This
31  *            identifies the physical socket where the message
32  *            originated (or which caused the m_function to be
33  *            executed--some m_functions may call others...).
34  *
35  *    sptr    is the source of the message, defined by the
36  *            prefix part of the message if present. If not
37  *            or prefix not found, then sptr==cptr.
38  *
39  *            (!IsServer(cptr)) => (cptr == sptr), because
40  *            prefixes are taken *only* from servers...
41  *
42  *            (IsServer(cptr))
43  *                    (sptr == cptr) => the message didn't
44  *                    have the prefix.
45  *
46  *                    (sptr != cptr && IsServer(sptr) means
47  *                    the prefix specified servername. (?)
48  *
49  *                    (sptr != cptr && !IsServer(sptr) means
50  *                    that message originated from a remote
51  *                    user (not local).
52  *
53  *            combining
54  *
55  *            (!IsServer(sptr)) means that, sptr can safely
56  *            taken as defining the target structure of the
57  *            message in this server.
58  *
59  *    *Always* true (if 'parse' and others are working correct):
60  *
61  *    1)      sptr->from == cptr  (note: cptr->from == cptr)
62  *
63  *    2)      MyConnect(sptr) <=> sptr == cptr (e.g. sptr
64  *            *cannot* be a local connection, unless it's
65  *            actually cptr!). [MyConnect(x) should probably
66  *            be defined as (x == x->from) --msa ]
67  *
68  *    parc    number of variable parameter strings (if zero,
69  *            parv is allowed to be NULL)
70  *
71  *    parv    a NULL terminated list of parameter pointers,
72  *
73  *                    parv[0], sender (prefix string), if not present
74  *                            this points to an empty string.
75  *                    parv[1]...parv[parc-1]
76  *                            pointers to additional parameters
77  *                    parv[parc] == NULL, *always*
78  *
79  *            note:   it is guaranteed that parv[0]..parv[parc-1] are all
80  *                    non-NULL pointers.
81  */
82 #include "config.h"
83
84 #include "channel.h"
85 #include "client.h"
86 #include "hash.h"
87 #include "ircd.h"
88 #include "ircd_reply.h"
89 #include "ircd_string.h"
90 #include "msg.h"
91 #include "numeric.h"
92 #include "numnicks.h"
93 #include "send.h"
94 #include "ircd_features.h"
95
96 #include <assert.h>
97
98 /*
99  * m_kick - generic message handler
100  *
101  * parv[0] = sender prefix
102  * parv[1] = channel
103  * parv[2] = client to kick
104  * parv[parc-1] = kick comment
105  */
106 int m_kick(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
107 {
108   struct Client *who;
109   struct Channel *chptr;
110   struct Membership *member = 0;
111   struct Membership* member2;
112   char *name, *comment;
113
114   ClrFlag(sptr, FLAG_TS8);
115
116   if (parc < 3 || *parv[1] == '\0')
117     return need_more_params(sptr, "KICK");
118
119   name = parv[1];
120
121   /* simple checks */
122   if (!(chptr = get_channel(sptr, name, CGT_NO_CREATE)))
123     return send_reply(sptr, ERR_NOSUCHCHANNEL, name);
124
125   if (!(member2 = find_member_link(chptr, sptr)) || IsZombie(member2)
126       || !IsChanOp(member2))
127     return send_reply(sptr, ERR_CHANOPRIVSNEEDED, name);
128
129   if (!(who = find_chasing(sptr, parv[2], 0)))
130     return 0; /* find_chasing sends the reply for us */
131
132   /* Don't allow the channel service to be kicked */
133   if (IsChannelService(who))
134     return send_reply(sptr, ERR_ISCHANSERVICE, cli_name(who), chptr->chname);
135
136   /* Prevent kicking opers from local channels -DM- */
137   if (IsLocalChannel(chptr->chname) && HasPriv(who, PRIV_DEOP_LCHAN))
138     return send_reply(sptr, ERR_ISOPERLCHAN, cli_name(who), chptr->chname);
139
140   /* check if kicked user is actually on the channel */
141   if (!(member = find_member_link(chptr, who)) || IsZombie(member))
142     return send_reply(sptr, ERR_USERNOTINCHANNEL, cli_name(who), chptr->chname);
143
144   /* Don't allow to kick member with a higher or equal op-level */
145   if ((OpLevel(member) <= OpLevel(member2)) && feature_bool(FEAT_OPLEVELS))
146     return send_reply(sptr, ERR_NOTLOWEROPLEVEL, cli_name(who), chptr->chname,
147         OpLevel(member2), OpLevel(member), "kick",
148         OpLevel(member) == OpLevel(member2) ? "the same" : "a higher");
149
150   /* We rely on ircd_snprintf to truncate the comment */
151   comment = EmptyString(parv[parc - 1]) ? parv[0] : parv[parc - 1];
152
153   if (!IsLocalChannel(name))
154     sendcmdto_serv_butone(sptr, CMD_KICK, cptr, "%H %C :%s", chptr, who,
155                           comment);
156
157   sendcmdto_channel_butserv_butone(sptr, CMD_KICK, chptr, NULL, "%H %C :%s", chptr, who,
158                             comment);
159
160   make_zombie(member, who, cptr, sptr, chptr);
161
162   return 0;
163 }
164
165 /*
166  * ms_kick - server message handler
167  *
168  * parv[0] = sender prefix
169  * parv[1] = channel
170  * parv[2] = client to kick
171  * parv[parc-1] = kick comment
172  */
173 int ms_kick(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
174 {
175   struct Client *who;
176   struct Channel *chptr;
177   struct Membership *member = 0, *sptr_link = 0;
178   char *name, *comment;
179
180   ClrFlag(sptr, FLAG_TS8);
181
182   if (parc < 3 || *parv[1] == '\0')
183     return need_more_params(sptr, "KICK");
184
185   name = parv[1];
186   comment = parv[parc - 1];
187
188   /* figure out who gets kicked from what */
189   if (IsLocalChannel(name) ||
190       !(chptr = get_channel(sptr, name, CGT_NO_CREATE)) ||
191       !(who = findNUser(parv[2])))
192     return 0;
193
194   /* We go ahead and pass on the KICK for users not on the channel */
195   if (!(member = find_member_link(chptr, who)) || IsZombie(member))
196     member = 0;
197
198   /* Send HACK notice, but not for servers in BURST */
199   /* 2002-10-17: Don't send HACK if the users local server is kicking them */
200   if (IsServer(sptr) &&
201       !IsBurstOrBurstAck(sptr) &&
202       sptr!=cli_from(who))
203     sendto_opmask_butone(0, SNO_HACK4, "HACK: %C KICK %H %C %s", sptr, chptr,
204                          who, comment);
205
206   /* Unless someone accepted it downstream (or the user isn't on the channel
207    * here), if kicker is not on channel, or if kicker is not a channel
208    * operator, bounce the kick
209    */
210   if (!IsServer(sptr) && member && cli_from(who) != cptr &&
211       (!(sptr_link = find_member_link(chptr, sptr)) || !IsChanOp(sptr_link))) {
212     sendto_opmask_butone(0, SNO_HACK2, "HACK: %C KICK %H %C %s", sptr, chptr,
213                          who, comment);
214
215     sendcmdto_one(who, CMD_JOIN, cptr, "%H", chptr);
216
217     /* Reop/revoice member */
218     if (IsChanOp(member) || HasVoice(member)) {
219       struct ModeBuf mbuf;
220
221       modebuf_init(&mbuf, sptr, cptr, chptr,
222                    (MODEBUF_DEST_SERVER |  /* Send mode to a server */
223                     MODEBUF_DEST_DEOP   |  /* Deop the source */
224                     MODEBUF_DEST_BOUNCE)); /* And bounce the MODE */
225
226       if (IsChanOp(member))
227         modebuf_mode_client(&mbuf, MODE_DEL | MODE_CHANOP, who);
228       if (HasVoice(member))
229         modebuf_mode_client(&mbuf, MODE_DEL | MODE_VOICE, who);
230
231       modebuf_flush(&mbuf);
232     }
233   } else {
234     /* Propagate kick... */
235     sendcmdto_serv_butone(sptr, CMD_KICK, cptr, "%H %C :%s", chptr, who,
236                           comment);
237
238     if (member) { /* and tell the channel about it */
239       sendcmdto_channel_butserv_butone(IsServer(sptr) ? &me : sptr, CMD_KICK,
240                                        chptr, NULL, "%H %C :%s", chptr, who,
241                                        comment);
242
243       make_zombie(member, who, cptr, sptr, chptr);
244     }
245   }
246
247   return 0;
248 }