]> jfr.im git - solanum.git/blame - extensions/m_remove.c
Fix format string generation
[solanum.git] / extensions / m_remove.c
CommitLineData
925c50ef
AC
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
43unsigned int CAP_REMOVE;
44
45static int m_remove(struct Client *, struct Client *, int, const char **);
46
47struct Message remove_msgtab = {
48 "REMOVE", 0, 0, 0, MFLG_SLOW,
49 {mg_unreg, {m_remove, 3}, {m_remove, 3}, {m_remove, 3}, mg_ignore, {m_remove, 3}}
50};
51
52mapi_clist_av1 remove_clist[] = { &remove_msgtab, NULL };
53
54static int
55modinit(void)
56{
57 CAP_REMOVE = capability_put(serv_capindex, "REMOVE");
925c50ef
AC
58
59 return 0;
60}
61
62static void
63moddeinit(void)
64{
65 capability_orphan(serv_capindex, "REMOVE");
66}
67
68DECLARE_MODULE_AV1(remove, modinit, moddeinit, remove_clist, NULL, NULL, "$Revision: 3317 $");
69
70static int
71m_remove(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
72{
73 struct membership *msptr;
74 struct Client *who;
75 struct Channel *chptr;
76 int chasing = 0;
77 char *comment;
78 const char *name;
79 char *p = NULL;
80 const char *user;
81 static char buf[BUFSIZE];
82
83 if(MyClient(source_p) && !IsFloodDone(source_p))
84 flood_endgrace(source_p);
85
86 *buf = '\0';
87 if((p = strchr(parv[1], ',')))
88 *p = '\0';
89
90 name = parv[1];
91
92 chptr = find_channel(name);
93 if(chptr == NULL)
94 {
95 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL, form_str(ERR_NOSUCHCHANNEL), name);
96 return 0;
97 }
98
99 if(!IsServer(source_p))
100 {
101 msptr = find_channel_membership(chptr, source_p);
102
103 if((msptr == NULL) && MyConnect(source_p))
104 {
105 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
106 form_str(ERR_NOTONCHANNEL), name);
107 return 0;
108 }
109
110 if(get_channel_access(source_p, msptr) < CHFL_CHANOP)
111 {
112 if(MyConnect(source_p))
113 {
114 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
115 me.name, source_p->name, name);
116 return 0;
117 }
118
119 /* If its a TS 0 channel, do it the old way */
120 if(chptr->channelts == 0)
121 {
122 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
123 get_id(&me, source_p), get_id(source_p, source_p), name);
124 return 0;
125 }
126 }
127
128 /* Its a user doing a kick, but is not showing as chanop locally
129 * its also not a user ON -my- server, and the channel has a TS.
130 * There are two cases we can get to this point then...
131 *
132 * 1) connect burst is happening, and for some reason a legit
133 * op has sent a KICK, but the SJOIN hasn't happened yet or
134 * been seen. (who knows.. due to lag...)
135 *
136 * 2) The channel is desynced. That can STILL happen with TS
137 *
138 * Now, the old code roger wrote, would allow the KICK to
139 * go through. Thats quite legit, but lets weird things like
140 * KICKS by users who appear not to be chanopped happen,
141 * or even neater, they appear not to be on the channel.
142 * This fits every definition of a desync, doesn't it? ;-)
143 * So I will allow the KICK, otherwise, things are MUCH worse.
144 * But I will warn it as a possible desync.
145 *
146 * -Dianora
147 */
148 }
149
150 if((p = strchr(parv[2], ',')))
151 *p = '\0';
152
153 user = parv[2]; /* strtoken(&p2, parv[2], ","); */
154
155 if(!(who = find_chasing(source_p, user, &chasing)))
156 {
157 return 0;
158 }
159
160 msptr = find_channel_membership(chptr, who);
161
162 if(msptr != NULL)
163 {
164 if(MyClient(source_p) && IsService(who))
165 {
166 sendto_one(source_p, form_str(ERR_ISCHANSERVICE),
167 me.name, source_p->name, who->name, chptr->chname);
168 return 0;
169 }
170
171 if(MyClient(source_p))
172 {
173 hook_data_channel_approval hookdata;
174
175 hookdata.client = source_p;
176 hookdata.chptr = chptr;
177 hookdata.msptr = msptr;
178 hookdata.target = who;
179 hookdata.approved = 1;
180
181 call_hook(h_can_kick, &hookdata);
182
183 if (!hookdata.approved)
184 return 0;
185 }
186
187 comment = LOCAL_COPY((EmptyString(parv[3])) ? who->name : parv[3]);
188 if(strlen(comment) > (size_t) REASONLEN)
189 comment[REASONLEN] = '\0';
190
191 /* jdc
192 * - In the case of a server kicking a user (i.e. CLEARCHAN),
193 * the kick should show up as coming from the server which did
194 * the kick.
195 * - Personally, flame and I believe that server kicks shouldn't
196 * be sent anyways. Just waiting for some oper to abuse it...
197 */
198 sendto_channel_local(ALL_MEMBERS, chptr,
199 ":%s!%s@%s PART %s :requested by %s (%s)",
deee7b43
AC
200 who->name, who->username,
201 who->host, name, source_p->name, comment);
925c50ef
AC
202
203 sendto_server(client_p, chptr, CAP_REMOVE, NOCAPS,
204 ":%s REMOVE %s %s :%s",
205 use_id(source_p), chptr->chname, use_id(who), comment);
206 sendto_server(client_p, chptr, NOCAPS, CAP_REMOVE,
207 ":%s KICK %s %s :%s",
208 use_id(source_p), chptr->chname, use_id(who), comment);
209
210 remove_user_from_channel(msptr);
211 }
212 else if (MyClient(source_p))
213 sendto_one_numeric(source_p, ERR_USERNOTINCHANNEL,
214 form_str(ERR_USERNOTINCHANNEL), user, name);
215
216 return 0;
217}
218