2 * ircd-ratbox: A slightly useful ircd.
3 * m_kick.c: Kicks a user from a channel.
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
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.
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.
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
29 #include "irc_string.h"
40 static int m_kick(struct Client
*, struct Client
*, int, const char **);
41 #define mg_kick { m_kick, 3 }
43 static struct Message kick_msgtab
= {
44 "KICK", 0, 0, 0, MFLG_SLOW
,
45 {mg_unreg
, mg_kick
, mg_kick
, mg_kick
, mg_ignore
, mg_kick
}
48 mapi_clist_av1 kick_clist
[] = { &kick_msgtab
, NULL
};
50 DECLARE_MODULE_AV1(kick
, NULL
, NULL
, kick_clist
, NULL
, NULL
, "$Revision: 141 $");
54 ** parv[0] = sender prefix
56 ** parv[2] = client to kick
57 ** parv[3] = kick comment
60 m_kick(struct Client
*client_p
, struct Client
*source_p
, int parc
, const char *parv
[])
62 struct membership
*msptr
;
64 struct Channel
*chptr
;
70 static char buf
[BUFSIZE
];
72 if(MyClient(source_p
) && !IsFloodDone(source_p
))
73 flood_endgrace(source_p
);
75 comment
= LOCAL_COPY((EmptyString(parv
[3])) ? parv
[2] : parv
[3]);
76 if(strlen(comment
) > (size_t) REASONLEN
)
77 comment
[REASONLEN
] = '\0';
80 if((p
= strchr(parv
[1], ',')))
85 chptr
= find_channel(name
);
88 sendto_one_numeric(source_p
, ERR_NOSUCHCHANNEL
, form_str(ERR_NOSUCHCHANNEL
), name
);
92 if(!IsServer(source_p
))
94 msptr
= find_channel_membership(chptr
, source_p
);
96 if((msptr
== NULL
) && MyConnect(source_p
))
98 sendto_one_numeric(source_p
, ERR_NOTONCHANNEL
,
99 form_str(ERR_NOTONCHANNEL
), name
);
103 if(!is_chanop(msptr
))
105 if(MyConnect(source_p
))
107 sendto_one(source_p
, form_str(ERR_CHANOPRIVSNEEDED
),
108 me
.name
, source_p
->name
, name
);
112 /* If its a TS 0 channel, do it the old way */
113 if(chptr
->channelts
== 0)
115 sendto_one(source_p
, form_str(ERR_CHANOPRIVSNEEDED
),
116 get_id(&me
, source_p
), get_id(source_p
, source_p
), name
);
121 /* Its a user doing a kick, but is not showing as chanop locally
122 * its also not a user ON -my- server, and the channel has a TS.
123 * There are two cases we can get to this point then...
125 * 1) connect burst is happening, and for some reason a legit
126 * op has sent a KICK, but the SJOIN hasn't happened yet or
127 * been seen. (who knows.. due to lag...)
129 * 2) The channel is desynced. That can STILL happen with TS
131 * Now, the old code roger wrote, would allow the KICK to
132 * go through. Thats quite legit, but lets weird things like
133 * KICKS by users who appear not to be chanopped happen,
134 * or even neater, they appear not to be on the channel.
135 * This fits every definition of a desync, doesn't it? ;-)
136 * So I will allow the KICK, otherwise, things are MUCH worse.
137 * But I will warn it as a possible desync.
143 if((p
= strchr(parv
[2], ',')))
146 user
= parv
[2]; /* strtoken(&p2, parv[2], ","); */
148 if(!(who
= find_chasing(source_p
, user
, &chasing
)))
153 msptr
= find_channel_membership(chptr
, who
);
157 if(MyClient(source_p
) && IsService(who
))
159 sendto_one(source_p
, form_str(ERR_ISCHANSERVICE
),
160 me
.name
, source_p
->name
, who
->name
, chptr
->chname
);
164 if(MyClient(source_p
) && IsOverride(who
))
166 sendto_one_numeric(source_p
, ERR_ISCHANSERVICE
,
167 "%s %s User is immune from kick", who
->name
, chptr
->chname
);
172 * - In the case of a server kicking a user (i.e. CLEARCHAN),
173 * the kick should show up as coming from the server which did
175 * - Personally, flame and I believe that server kicks shouldn't
176 * be sent anyways. Just waiting for some oper to abuse it...
178 if(IsServer(source_p
))
179 sendto_channel_local(ALL_MEMBERS
, chptr
, ":%s KICK %s %s :%s",
180 source_p
->name
, name
, who
->name
, comment
);
182 sendto_channel_local(ALL_MEMBERS
, chptr
,
183 ":%s!%s@%s KICK %s %s :%s",
184 source_p
->name
, source_p
->username
,
185 source_p
->host
, name
, who
->name
, comment
);
187 sendto_server(client_p
, chptr
, CAP_TS6
, NOCAPS
,
188 ":%s KICK %s %s :%s",
189 use_id(source_p
), chptr
->chname
, use_id(who
), comment
);
190 sendto_server(client_p
, chptr
, NOCAPS
, CAP_TS6
,
191 ":%s KICK %s %s :%s",
192 source_p
->name
, chptr
->chname
, who
->name
, comment
);
193 remove_user_from_channel(msptr
);
195 else if (MyClient(source_p
))
196 sendto_one_numeric(source_p
, ERR_USERNOTINCHANNEL
,
197 form_str(ERR_USERNOTINCHANNEL
), user
, name
);