]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/core/m_error.c
s_log.* -> logger.* (s_foo looks ugly, lets try to get rid of it)
[irc/rqf/shadowircd.git] / modules / core / m_error.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_error.c: Handles error messages from the other end.
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_error.c 494 2006-01-15 16:08:28Z jilles $
25 */
26
27#include "stdinc.h"
28#include "client.h"
29#include "common.h" /* FALSE */
30#include "ircd.h"
31#include "numeric.h"
32#include "send.h"
33#include "msg.h"
212380e3 34#include "modules.h"
d3455e2c 35#include "logger.h"
212380e3 36#include "s_conf.h"
37
38static int m_error(struct Client *, struct Client *, int, const char **);
39static int ms_error(struct Client *, struct Client *, int, const char **);
40
41struct Message error_msgtab = {
42 "ERROR", 0, 0, 0, MFLG_SLOW | MFLG_UNREG,
43 {{m_error, 0}, mg_ignore, mg_ignore, {ms_error, 0}, mg_ignore, mg_ignore}
44};
45
46mapi_clist_av1 error_clist[] = {
47 &error_msgtab, NULL
48};
49
50DECLARE_MODULE_AV1(error, NULL, NULL, error_clist, NULL, NULL, "$Revision: 494 $");
51
372b2193
JT
52/* Determine whether an ERROR message is safe to show (no IP address in it) */
53static int
54is_safe_error(const char *message)
55{
56 char prefix2[100];
57 const char *p;
58
59 if (!strncmp(message, "Closing Link: 127.0.0.1 (", 25))
60 return 1;
61 snprintf(prefix2, sizeof prefix2,
62 "Closing Link: 127.0.0.1 %s (", me.name);
63 if (!strncmp(message, prefix2, strlen(prefix2)))
64 return 1;
65 if (!strncmp(message, "Restart by ", 11))
66 return 1;
67 if (!strncmp(message, "Terminated by ", 14))
68 return 1;
69
70 if (!ircncmp(message, "Closing Link", 12))
71 return 0;
72 if (strchr(message, '['))
73 return 0;
74 p = strchr(message, '.');
75 if (p != NULL && p[1] != '\0')
76 return 0;
77 if (strchr(message, ':'))
78 return 0;
79
80 return 1;
81}
212380e3 82
83/*
84 * Note: At least at protocol level ERROR has only one parameter,
85 * although this is called internally from other functions
86 * --msa
87 *
88 * parv[0] = sender prefix
89 * parv[*] = parameters
90 */
91int
92m_error(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
93{
94 const char *para;
372b2193 95 int hideit = ConfigFileEntry.hide_error_messages;
212380e3 96
97 para = (parc > 1 && *parv[1] != '\0') ? parv[1] : "<>";
98
99 ilog(L_SERVER, "Received ERROR message from %s: %s",
100 log_client_name(source_p, SHOW_IP), para);
101
372b2193
JT
102 if(is_safe_error(para))
103 hideit = 0;
104 if(IsAnyServer(client_p))
212380e3 105 {
372b2193
JT
106 if (hideit < 2)
107 sendto_realops_snomask(SNO_GENERAL, hideit ? L_ADMIN : (is_remote_connect(client_p) ? L_NETWIDE : L_ALL),
108 "ERROR :from %s -- %s",
109 get_server_name(client_p, HIDE_IP), para);
110 if (hideit > 0)
111 sendto_realops_snomask(SNO_GENERAL, (hideit == 1 ? L_OPER : L_ALL) | (is_remote_connect(client_p) ? L_NETWIDE : L_ALL),
112 "ERROR :from %s -- <hidden>",
113 get_server_name(client_p, HIDE_IP));
212380e3 114 }
115
116 exit_client(client_p, source_p, source_p, "ERROR");
117
118 return 0;
119}
120
121static int
122ms_error(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
123{
124 const char *para;
372b2193 125 int hideit = ConfigFileEntry.hide_error_messages;
212380e3 126
127 para = (parc > 1 && *parv[1] != '\0') ? parv[1] : "<>";
128
129 ilog(L_SERVER, "Received ERROR message from %s: %s",
130 log_client_name(source_p, SHOW_IP), para);
131
372b2193
JT
132 if(is_safe_error(para))
133 hideit = 0;
134 if(hideit == 2)
212380e3 135 return 0;
136
137 if(client_p == source_p)
138 {
372b2193 139 sendto_realops_snomask(SNO_GENERAL, hideit ? L_ADMIN : L_ALL, "ERROR :from %s -- %s",
212380e3 140 get_server_name(client_p, HIDE_IP), para);
212380e3 141 }
142 else
143 {
372b2193 144 sendto_realops_snomask(SNO_GENERAL, hideit ? L_ADMIN : L_ALL, "ERROR :from %s via %s -- %s",
212380e3 145 source_p->name, get_server_name(client_p, HIDE_IP), para);
212380e3 146 }
147
148 return 0;
149}