]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/core/m_kick.c
[svn] Merge old trunk r2081:
[irc/rqf/shadowircd.git] / modules / core / m_kick.c
CommitLineData
212380e3 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 258 2005-09-21 23:57:17Z nenolod $
25 */
26
27#include "stdinc.h"
28#include "tools.h"
29#include "channel.h"
30#include "client.h"
31#include "irc_string.h"
32#include "ircd.h"
33#include "numeric.h"
34#include "send.h"
35#include "msg.h"
36#include "modules.h"
37#include "parse.h"
38#include "hash.h"
39#include "packet.h"
40#include "s_serv.h"
41
42static int m_kick(struct Client *, struct Client *, int, const char **);
43#define mg_kick { m_kick, 3 }
44
45struct Message kick_msgtab = {
46 "KICK", 0, 0, 0, MFLG_SLOW,
47 {mg_unreg, mg_kick, mg_kick, mg_kick, mg_ignore, mg_kick}
48};
49
50mapi_clist_av1 kick_clist[] = { &kick_msgtab, NULL };
51
52DECLARE_MODULE_AV1(kick, NULL, NULL, kick_clist, NULL, NULL, "$Revision: 258 $");
53
54/*
55** m_kick
56** parv[0] = sender prefix
57** parv[1] = channel
58** parv[2] = client to kick
59** parv[3] = kick comment
60*/
61static int
62m_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
74 if(MyClient(source_p) && !IsFloodDone(source_p))
75 flood_endgrace(source_p);
76
77 comment = LOCAL_COPY((EmptyString(parv[3])) ? parv[2] : parv[3]);
78 if(strlen(comment) > (size_t) REASONLEN)
79 comment[REASONLEN] = '\0';
80
81 *buf = '\0';
82 if((p = strchr(parv[1], ',')))
83 *p = '\0';
84
85 name = parv[1];
86
87 chptr = find_channel(name);
88 if(chptr == NULL)
89 {
90 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL, form_str(ERR_NOSUCHCHANNEL), name);
91 return 0;
92 }
93
94 if(!IsServer(source_p))
95 {
96 msptr = find_channel_membership(chptr, source_p);
97
98 if((msptr == NULL) && MyConnect(source_p))
99 {
100 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
101 form_str(ERR_NOTONCHANNEL), name);
102 return 0;
103 }
104
105 if(!is_chanop(msptr))
106 {
107 if(MyConnect(source_p))
108 {
109 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
110 me.name, source_p->name, name);
111 return 0;
112 }
113
114 /* If its a TS 0 channel, do it the old way */
115 if(chptr->channelts == 0)
116 {
117 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
118 get_id(&me, source_p), get_id(source_p, source_p), name);
119 return 0;
120 }
121 }
122
123 /* Its a user doing a kick, but is not showing as chanop locally
124 * its also not a user ON -my- server, and the channel has a TS.
125 * There are two cases we can get to this point then...
126 *
127 * 1) connect burst is happening, and for some reason a legit
128 * op has sent a KICK, but the SJOIN hasn't happened yet or
129 * been seen. (who knows.. due to lag...)
130 *
131 * 2) The channel is desynced. That can STILL happen with TS
132 *
133 * Now, the old code roger wrote, would allow the KICK to
134 * go through. Thats quite legit, but lets weird things like
135 * KICKS by users who appear not to be chanopped happen,
136 * or even neater, they appear not to be on the channel.
137 * This fits every definition of a desync, doesn't it? ;-)
138 * So I will allow the KICK, otherwise, things are MUCH worse.
139 * But I will warn it as a possible desync.
140 *
141 * -Dianora
142 */
143 }
144
145 if((p = strchr(parv[2], ',')))
146 *p = '\0';
147
148 user = parv[2]; /* strtoken(&p2, parv[2], ","); */
149
150 if(!(who = find_chasing(source_p, user, &chasing)))
151 {
152 return 0;
153 }
154
155 msptr = find_channel_membership(chptr, who);
156
157 if(msptr != NULL)
158 {
159 if(MyClient(source_p) && IsService(who))
160 {
161 sendto_one(source_p, form_str(ERR_ISCHANSERVICE),
162 me.name, source_p->name, who->name, chptr->chname);
163 return 0;
164 }
165
166 /* jdc
167 * - In the case of a server kicking a user (i.e. CLEARCHAN),
168 * the kick should show up as coming from the server which did
169 * the kick.
170 * - Personally, flame and I believe that server kicks shouldn't
171 * be sent anyways. Just waiting for some oper to abuse it...
172 */
173 if(IsServer(source_p))
174 sendto_channel_local(ALL_MEMBERS, chptr, ":%s KICK %s %s :%s",
175 source_p->name, name, who->name, comment);
176 else
177 sendto_channel_local(ALL_MEMBERS, chptr,
178 ":%s!%s@%s KICK %s %s :%s",
179 source_p->name, source_p->username,
180 source_p->host, name, who->name, comment);
181
182 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
183 ":%s KICK %s %s :%s",
184 use_id(source_p), chptr->chname, use_id(who), comment);
185 sendto_server(client_p, chptr, NOCAPS, CAP_TS6,
186 ":%s KICK %s %s :%s",
187 source_p->name, chptr->chname, who->name, comment);
188 remove_user_from_channel(msptr);
189 }
190 else if (MyClient(source_p))
191 sendto_one_numeric(source_p, ERR_USERNOTINCHANNEL,
192 form_str(ERR_USERNOTINCHANNEL), user, name);
193
194 return 0;
195}