]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_knock.c
Fixes for macro
[irc/rqf/shadowircd.git] / modules / m_knock.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_knock.c: Requests to be invited to a channel.
4 *
5 * Copyright (C) 1996-2002 Hybrid Development Team
6 * Copyright (C) 2002-2005 ircd-ratbox development team
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 * USA
22 *
732a8c53 23 * $Id: m_knock.c 3570 2007-09-09 19:19:23Z jilles $
212380e3 24 */
25
26#include "stdinc.h"
27#include "sprintf_irc.h"
212380e3 28#include "channel.h"
29#include "client.h"
30#include "hash.h"
31#include "irc_string.h"
32#include "ircd.h"
33#include "numeric.h"
34#include "send.h"
35#include "s_conf.h"
36#include "msg.h"
37#include "parse.h"
38#include "modules.h"
39#include "s_serv.h"
40
41static int m_knock(struct Client *, struct Client *, int, const char **);
42
43struct Message knock_msgtab = {
44 "KNOCK", 0, 0, 0, MFLG_SLOW,
45 {mg_unreg, {m_knock, 2}, {m_knock, 2}, mg_ignore, mg_ignore, {m_knock, 2}}
46};
47
48mapi_clist_av1 knock_clist[] = { &knock_msgtab, NULL };
732a8c53 49DECLARE_MODULE_AV1(knock, NULL, NULL, knock_clist, NULL, NULL, "$Revision: 3570 $");
212380e3 50
51/* m_knock
52 * parv[0] = sender prefix
53 * parv[1] = channel
54 *
55 * The KNOCK command has the following syntax:
56 * :<sender> KNOCK <channel>
57 *
58 * If a user is not banned from the channel they can use the KNOCK
59 * command to have the server NOTICE the channel operators notifying
60 * they would like to join. Helpful if the channel is invite-only, the
61 * key is forgotten, or the channel is full (INVITE can bypass each one
62 * of these conditions. Concept by Dianora <db@db.net> and written by
63 * <anonymous>
64 */
65static int
66m_knock(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
67{
68 struct Channel *chptr;
69 char *p, *name;
70
71 if(MyClient(source_p) && ConfigChannel.use_knock == 0)
72 {
73 sendto_one(source_p, form_str(ERR_KNOCKDISABLED),
74 me.name, source_p->name);
75 return 0;
76 }
77
78 name = LOCAL_COPY(parv[1]);
79
80 /* dont allow one knock to multiple chans */
81 if((p = strchr(name, ',')))
82 *p = '\0';
83
84 if(!IsChannelName(name))
85 {
86 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
87 form_str(ERR_NOSUCHCHANNEL), name);
88 return 0;
89 }
90
91 if((chptr = find_channel(name)) == NULL)
92 {
93 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
94 form_str(ERR_NOSUCHCHANNEL), name);
95 return 0;
96 }
97
98 if(IsMember(source_p, chptr))
99 {
100 if(MyClient(source_p))
101 sendto_one(source_p, form_str(ERR_KNOCKONCHAN),
102 me.name, source_p->name, name);
103 return 0;
104 }
105
106 if(!((chptr->mode.mode & MODE_INVITEONLY) || (*chptr->mode.key) ||
107 (chptr->mode.limit &&
08d11e34 108 rb_dlink_list_length(&chptr->members) >= (unsigned long)chptr->mode.limit)))
212380e3 109 {
110 sendto_one_numeric(source_p, ERR_CHANOPEN,
111 form_str(ERR_CHANOPEN), name);
112 return 0;
113 }
114
115 /* cant knock to a +p channel */
116 if(HiddenChannel(chptr))
117 {
118 sendto_one_numeric(source_p, ERR_CANNOTSENDTOCHAN,
119 form_str(ERR_CANNOTSENDTOCHAN), name);
120 return 0;
121 }
122
123
124 if(MyClient(source_p))
125 {
126 /* don't allow a knock if the user is banned */
127 if(is_banned(chptr, source_p, NULL, NULL, NULL) == CHFL_BAN ||
128 is_quieted(chptr, source_p, NULL, NULL, NULL) == CHFL_BAN)
129 {
130 sendto_one_numeric(source_p, ERR_CANNOTSENDTOCHAN,
131 form_str(ERR_CANNOTSENDTOCHAN), name);
132 return 0;
133 }
134
135 /* local flood protection:
136 * allow one knock per user per knock_delay
137 * allow one knock per channel per knock_delay_channel
138 */
139 if(!IsOper(source_p) &&
140 (source_p->localClient->last_knock + ConfigChannel.knock_delay) > CurrentTime)
141 {
142 sendto_one(source_p, form_str(ERR_TOOMANYKNOCK),
143 me.name, source_p->name, name, "user");
144 return 0;
145 }
146 else if((chptr->last_knock + ConfigChannel.knock_delay_channel) > CurrentTime)
147 {
148 sendto_one(source_p, form_str(ERR_TOOMANYKNOCK),
149 me.name, source_p->name, name, "channel");
150 return 0;
151 }
152
153 /* ok, we actually can send the knock, tell client */
154 source_p->localClient->last_knock = CurrentTime;
155
156 sendto_one(source_p, form_str(RPL_KNOCKDLVR),
157 me.name, source_p->name, name);
158 }
159
160 chptr->last_knock = CurrentTime;
161
162 if(ConfigChannel.use_knock)
732a8c53 163 sendto_channel_local(chptr->mode.mode & MODE_FREEINVITE ? ALL_MEMBERS : ONLY_CHANOPS,
164 chptr, form_str(RPL_KNOCK),
212380e3 165 me.name, name, name, source_p->name,
166 source_p->username, source_p->host);
167
168 sendto_server(client_p, chptr, CAP_KNOCK|CAP_TS6, NOCAPS,
169 ":%s KNOCK %s", use_id(source_p), name);
170 sendto_server(client_p, chptr, CAP_KNOCK, CAP_TS6,
171 ":%s KNOCK %s", source_p->name, name);
172 return 0;
173}
174