]> jfr.im git - solanum.git/blame - modules/core/m_squit.c
Can IGNORE_BOGUS_TS at the behest of @kaniini and @jilest
[solanum.git] / modules / core / m_squit.c
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_squit.c: Makes a server quit.
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
212380e3
AC
23 */
24
25#include "stdinc.h"
26#include "client.h"
ee6dcb05 27#include "common.h"
4562c604 28#include "match.h"
212380e3
AC
29#include "ircd.h"
30#include "numeric.h"
31#include "s_conf.h"
4016731b 32#include "logger.h"
212380e3
AC
33#include "s_serv.h"
34#include "send.h"
35#include "msg.h"
36#include "parse.h"
37#include "modules.h"
38#include "hash.h"
39#include "s_newconf.h"
40
eeabf33a
EM
41static const char squit_desc[] = "Provides the SQUIT command to cause a server to quit";
42
3c7d6fcc
EM
43static void ms_squit(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
44static void mo_squit(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
212380e3
AC
45
46struct Message squit_msgtab = {
7baa37a9 47 "SQUIT", 0, 0, 0, 0,
212380e3
AC
48 {mg_unreg, mg_not_oper, {ms_squit, 0}, {ms_squit, 0}, mg_ignore, {mo_squit, 2}}
49};
50
51mapi_clist_av1 squit_clist[] = { &squit_msgtab, NULL };
52
ee6dcb05 53DECLARE_MODULE_AV2(squit, NULL, NULL, squit_clist, NULL, NULL, NULL, NULL, squit_desc);
212380e3
AC
54
55struct squit_parms
56{
57 const char *server_name;
58 struct Client *target_p;
59};
60
61static struct squit_parms *find_squit(struct Client *client_p,
62 struct Client *source_p, const char *server);
63
64
65/*
66 * mo_squit - SQUIT message handler
212380e3
AC
67 * parv[1] = server name
68 * parv[2] = comment
69 */
3c7d6fcc 70static void
428ca87b 71mo_squit(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
72{
73 struct squit_parms *found_squit;
74 const char *comment = (parc > 2 && parv[2]) ? parv[2] : client_p->name;
75
76 if((found_squit = find_squit(client_p, source_p, parv[1])))
77 {
78 if(MyConnect(found_squit->target_p))
79 {
80 sendto_realops_snomask(SNO_GENERAL, L_ALL,
81 "Received SQUIT %s from %s (%s)",
82 found_squit->target_p->name,
83 get_client_name(source_p, HIDE_IP), comment);
84 ilog(L_SERVER, "Received SQUIT %s from %s (%s)",
85 found_squit->target_p->name, log_client_name(source_p, HIDE_IP),
86 comment);
87 }
88 else if(!IsOperRemote(source_p))
89 {
90 sendto_one(source_p, form_str(ERR_NOPRIVS),
91 me.name, source_p->name, "remote");
3c7d6fcc 92 return;
212380e3
AC
93 }
94
95 exit_client(client_p, found_squit->target_p, source_p, comment);
3c7d6fcc 96 return;
212380e3
AC
97 }
98 else
99 {
100 sendto_one_numeric(source_p, ERR_NOSUCHSERVER, form_str(ERR_NOSUCHSERVER), parv[1]);
101 }
212380e3
AC
102}
103
104/*
105 * ms_squit - SQUIT message handler
212380e3
AC
106 * parv[1] = server name
107 * parv[2] = comment
108 */
3c7d6fcc 109static void
428ca87b 110ms_squit(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
111{
112 struct Client *target_p;
113 const char *comment = (parc > 2 && parv[2]) ? parv[2] : client_p->name;
114
115 if(parc < 2)
116 target_p = client_p;
117 else
118 {
119 if((target_p = find_server(NULL, parv[1])) == NULL)
3c7d6fcc 120 return;
212380e3
AC
121
122 if(IsMe(target_p))
123 target_p = client_p;
124 if(!IsServer(target_p))
3c7d6fcc 125 return;
212380e3
AC
126 }
127
128 /* Server is closing its link */
129 if (target_p == client_p)
130 {
131 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Server %s closing link (%s)",
132 target_p->name, comment);
133 }
134 /*
135 ** Notify all opers, if my local link is remotely squitted
136 */
137 else if(MyConnect(target_p))
138 {
139 sendto_wallops_flags(UMODE_WALLOP, &me,
140 "Remote SQUIT %s from %s (%s)",
141 target_p->name, source_p->name, comment);
142
143 sendto_server(NULL, NULL, CAP_TS6, NOCAPS,
144 ":%s WALLOPS :Remote SQUIT %s from %s (%s)",
145 me.id, target_p->name, source_p->name, comment);
146
3dfaa671 147 ilog(L_SERVER, "SQUIT From %s : %s (%s)", source_p->name, target_p->name, comment);
212380e3
AC
148 }
149 exit_client(client_p, target_p, source_p, comment);
212380e3
AC
150}
151
152
153/*
154 * find_squit
155 * inputs - local server connection
156 * -
157 * -
158 * output - pointer to struct containing found squit or none if not found
159 * side effects -
160 */
161static struct squit_parms *
162find_squit(struct Client *client_p, struct Client *source_p, const char *server)
163{
164 static struct squit_parms found_squit;
165 struct Client *target_p = NULL;
166 struct Client *p;
5b96d9a6 167 rb_dlink_node *ptr;
212380e3
AC
168
169 /* must ALWAYS be reset */
170 found_squit.target_p = NULL;
171 found_squit.server_name = NULL;
172
173
174 /*
175 ** The following allows wild cards in SQUIT. Only useful
176 ** when the command is issued by an oper.
177 */
178
5b96d9a6 179 RB_DLINK_FOREACH(ptr, global_serv_list.head)
212380e3
AC
180 {
181 p = ptr->data;
182 if(IsServer(p) || IsMe(p))
183 {
184 if(match(server, p->name))
185 {
186 target_p = p;
187 break;
188 }
189 }
190 }
191
192 if(target_p == NULL)
193 return NULL;
194
195 found_squit.target_p = target_p;
196 found_squit.server_name = server;
197
198 if(IsMe(target_p))
199 {
200 if(IsClient(client_p))
201 {
202 if(MyClient(client_p))
5366977b
AC
203 sendto_one_notice(source_p, ":You are trying to squit me.");
204
212380e3
AC
205 return NULL;
206 }
207 else
208 {
209 found_squit.target_p = client_p;
210 found_squit.server_name = client_p->name;
211 }
212 }
213
214 if(found_squit.target_p != NULL)
215 return &found_squit;
216 else
217 return (NULL);
218}