]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/core/m_kick.c
Automated merge with ssh://shadowircd/uranium/shadowircd/
[irc/rqf/shadowircd.git] / modules / core / m_kick.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_kick.c: Kicks a user from a channel.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
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 2 of the License, or
12 * (at your option) 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 * $Id: m_kick.c 3317 2007-03-28 23:17:06Z jilles $
25 */
26
27 #include "stdinc.h"
28 #include "channel.h"
29 #include "client.h"
30 #include "match.h"
31 #include "ircd.h"
32 #include "numeric.h"
33 #include "send.h"
34 #include "msg.h"
35 #include "modules.h"
36 #include "parse.h"
37 #include "hash.h"
38 #include "packet.h"
39 #include "s_serv.h"
40 #include "s_conf.h"
41 #include "hook.h"
42
43 static int m_kick(struct Client *, struct Client *, int, const char **);
44 #define mg_kick { m_kick, 3 }
45
46 struct Message kick_msgtab = {
47 "KICK", 0, 0, 0, MFLG_SLOW,
48 {mg_unreg, mg_kick, mg_kick, mg_kick, mg_ignore, mg_kick}
49 };
50
51 mapi_clist_av1 kick_clist[] = { &kick_msgtab, NULL };
52
53 DECLARE_MODULE_AV1(kick, NULL, NULL, kick_clist, NULL, NULL, "$Revision: 3317 $");
54
55 /*
56 ** m_kick
57 ** parv[1] = channel
58 ** parv[2] = client to kick
59 ** parv[3] = kick comment
60 */
61 static int
62 m_kick(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
63 {
64 struct membership *msptr;
65 struct Client *who;
66 struct Channel *chptr;
67 int chasing = 0;
68 char *comment;
69 const char *name;
70 char *p = NULL;
71 const char *user;
72 static char buf[BUFSIZE];
73 int is_override = 0;
74
75 if(MyClient(source_p) && !IsFloodDone(source_p))
76 flood_endgrace(source_p);
77
78 *buf = '\0';
79 if((p = strchr(parv[1], ',')))
80 *p = '\0';
81
82 name = parv[1];
83
84 chptr = find_channel(name);
85 if(chptr == NULL)
86 {
87 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL, form_str(ERR_NOSUCHCHANNEL), name);
88 return 0;
89 }
90
91 user = parv[2]; /* strtoken(&p2, parv[2], ","); */
92
93 if(!(who = find_chasing(source_p, user, &chasing)))
94 {
95 return 0;
96 }
97
98 if(!IsServer(source_p))
99 {
100 msptr = find_channel_membership(chptr, source_p);
101
102 if((msptr == NULL) && MyConnect(source_p))
103 {
104 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
105 form_str(ERR_NOTONCHANNEL), name);
106 return 0;
107 }
108
109 if(!can_kick_deop(msptr, find_channel_membership(chptr, who)))
110 {
111 if(MyConnect(source_p))
112 {
113 if(IsOverride(source_p))
114 is_override = 1;
115 else
116 {
117 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
118 me.name, source_p->name, name);
119 return 0;
120 }
121 }
122
123 /* If its a TS 0 channel, do it the old way */
124 else if(chptr->channelts == 0)
125 {
126 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
127 get_id(&me, source_p), get_id(source_p, source_p), name);
128 return 0;
129 }
130 }
131
132 /* Its a user doing a kick, but is not showing as chanop locally
133 * its also not a user ON -my- server, and the channel has a TS.
134 * There are two cases we can get to this point then...
135 *
136 * 1) connect burst is happening, and for some reason a legit
137 * op has sent a KICK, but the SJOIN hasn't happened yet or
138 * been seen. (who knows.. due to lag...)
139 *
140 * 2) The channel is desynced. That can STILL happen with TS
141 *
142 * Now, the old code roger wrote, would allow the KICK to
143 * go through. Thats quite legit, but lets weird things like
144 * KICKS by users who appear not to be chanopped happen,
145 * or even neater, they appear not to be on the channel.
146 * This fits every definition of a desync, doesn't it? ;-)
147 * So I will allow the KICK, otherwise, things are MUCH worse.
148 * But I will warn it as a possible desync.
149 *
150 * -Dianora
151 */
152 }
153
154 if((p = strchr(parv[2], ',')))
155 *p = '\0';
156
157 msptr = find_channel_membership(chptr, who);
158
159 if(msptr != NULL)
160 {
161 if(MyClient(source_p) && IsService(who))
162 {
163 sendto_one(source_p, form_str(ERR_ISCHANSERVICE),
164 me.name, source_p->name, who->name, chptr->chname);
165 return 0;
166 }
167
168 if(MyClient(source_p) && chptr->mode.mode & MODE_NOKICK)
169 {
170 sendto_one_numeric(source_p, ERR_NOKICK,
171 form_str(ERR_NOKICK),
172 chptr->chname);
173 return 0;
174 }
175
176 if (MyClient(source_p) && chptr->mode.mode & MODE_NOOPERKICK && IsOper(who))
177 {
178 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
179 "Overriding KICK from %s on %s in %s (channel is +M)",
180 source_p->name, who->name, chptr->chname);
181 sendto_one_numeric(source_p, ERR_ISCHANSERVICE,
182 "%s %s :Cannot kick IRC operators from that channel.",
183 who->name, chptr->chname);
184 return 0;
185 }
186
187 if(MyClient(source_p))
188 {
189 hook_data_channel_approval hookdata;
190
191 hookdata.client = source_p;
192 hookdata.chptr = chptr;
193 hookdata.target = who;
194 hookdata.approved = 1;
195
196 call_hook(h_can_kick, &hookdata);
197
198 if (!hookdata.approved)
199 return 0;
200 }
201
202 comment = LOCAL_COPY((EmptyString(parv[3])) ? who->name : parv[3]);
203 if(strlen(comment) > (size_t) REASONLEN)
204 comment[REASONLEN] = '\0';
205
206 if(is_override)
207 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
208 "%s is overriding KICK [%s] on [%s] [%s]",
209 get_oper_name(source_p), who->name, chptr->chname, comment);
210
211 /* jdc
212 * - In the case of a server kicking a user (i.e. CLEARCHAN),
213 * the kick should show up as coming from the server which did
214 * the kick.
215 * - Personally, flame and I believe that server kicks shouldn't
216 * be sent anyways. Just waiting for some oper to abuse it...
217 */
218 if(IsServer(source_p))
219 sendto_channel_local(ALL_MEMBERS, chptr, ":%s KICK %s %s :%s",
220 source_p->name, name, who->name, comment);
221 else
222 sendto_channel_local(ALL_MEMBERS, chptr,
223 ":%s!%s@%s KICK %s %s :%s",
224 source_p->name, source_p->username,
225 source_p->host, name, who->name, comment);
226
227 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
228 ":%s KICK %s %s :%s",
229 use_id(source_p), chptr->chname, use_id(who), comment);
230 remove_user_from_channel(msptr);
231 }
232 else if (MyClient(source_p))
233 sendto_one_numeric(source_p, ERR_USERNOTINCHANNEL,
234 form_str(ERR_USERNOTINCHANNEL), user, name);
235
236 return 0;
237 }