]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_svinfo.c
Add resv oper priv, enabled by default for compatibility.
[irc/rqf/shadowircd.git] / modules / m_svinfo.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_svinfo.c: Sends TS information for clock & compatibility checks.
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_svinfo.c 494 2006-01-15 16:08:28Z jilles $
25 */
26#include "stdinc.h"
27#include "client.h"
28#include "common.h" /* TRUE bleah */
29#include "irc_string.h"
30#include "ircd.h"
31#include "numeric.h"
32#include "send.h"
33#include "s_conf.h"
34#include "s_log.h"
35#include "msg.h"
36#include "parse.h"
37#include "modules.h"
38
39static int ms_svinfo(struct Client *, struct Client *, int, const char **);
40
41struct Message svinfo_msgtab = {
42 "SVINFO", 0, 0, 0, MFLG_SLOW,
43 {mg_unreg, mg_ignore, mg_ignore, {ms_svinfo, 5}, mg_ignore, mg_ignore}
44};
45
46mapi_clist_av1 svinfo_clist[] = { &svinfo_msgtab, NULL };
47DECLARE_MODULE_AV1(svinfo, NULL, NULL, svinfo_clist, NULL, NULL, "$Revision: 494 $");
48
49/*
50 * ms_svinfo - SVINFO message handler
51 * parv[0] = sender prefix
52 * parv[1] = TS_CURRENT for the server
53 * parv[2] = TS_MIN for the server
54 * parv[3] = unused, send 0
55 * parv[4] = server's idea of UTC time
56 */
57static int
58ms_svinfo(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
59{
60 signed int deltat;
61 time_t theirtime;
62
63 /* SVINFO isnt remote. */
64 if(source_p != client_p)
65 return 0;
66
67 if(TS_CURRENT < atoi(parv[2]) || atoi(parv[1]) < TS_MIN)
68 {
69 /* TS version is too low on one of the sides, drop the link */
70 sendto_realops_snomask(SNO_GENERAL, L_ALL,
71 "Link %s dropped, wrong TS protocol version (%s,%s)",
72 get_server_name(source_p, SHOW_IP), parv[1], parv[2]);
73 exit_client(source_p, source_p, source_p, "Incompatible TS version");
74 return 0;
75 }
76
77 /*
78 * since we're here, might as well set CurrentTime while we're at it
79 */
80 set_time();
81 theirtime = atol(parv[4]);
82 deltat = abs(theirtime - CurrentTime);
83
84 if(deltat > ConfigFileEntry.ts_max_delta)
85 {
86 sendto_realops_snomask(SNO_GENERAL, L_ALL,
87 "Link %s dropped, excessive TS delta"
88 " (my TS=%ld, their TS=%ld, delta=%d)",
89 get_server_name(source_p, SHOW_IP),
90 (long) CurrentTime, (long) theirtime, deltat);
91 ilog(L_SERVER,
92 "Link %s dropped, excessive TS delta"
93 " (my TS=%ld, their TS=%ld, delta=%d)",
94 log_client_name(source_p, SHOW_IP), (long) CurrentTime, (long) theirtime, deltat);
95 exit_client(source_p, source_p, source_p, "Excessive TS delta");
96 return 0;
97 }
98
99 if(deltat > ConfigFileEntry.ts_warn_delta)
100 {
101 sendto_realops_snomask(SNO_GENERAL, L_ALL,
102 "Link %s notable TS delta"
103 " (my TS=%ld, their TS=%ld, delta=%d)",
104 source_p->name, (long) CurrentTime, (long) theirtime, deltat);
105 }
106
107 return 0;
108}
109