]> jfr.im git - solanum.git/blame - modules/m_version.c
Merge pull request #149 from anarcat/reproducible
[solanum.git] / modules / m_version.c
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_version.c: Shows ircd version information.
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_version.c 1887 2006-08-29 13:42:56Z jilles $
25 */
26
27#include <stdinc.h>
28#include "client.h"
29#include "ircd.h"
30#include "numeric.h"
31#include "s_conf.h"
32#include "s_serv.h"
33#include "supported.h"
34#include "send.h"
35#include "msg.h"
36#include "parse.h"
37#include "modules.h"
38
29c92cf9 39static char *confopts(void);
212380e3 40
428ca87b
AC
41static int m_version(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
42static int mo_version(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
212380e3
AC
43
44struct Message version_msgtab = {
45 "VERSION", 0, 0, 0, MFLG_SLOW,
46 {mg_unreg, {m_version, 0}, {mo_version, 0}, {mo_version, 0}, mg_ignore, {mo_version, 0}}
47};
48
49mapi_clist_av1 version_clist[] = { &version_msgtab, NULL };
50DECLARE_MODULE_AV1(version, NULL, NULL, version_clist, NULL, NULL, "$Revision: 1887 $");
51
52/*
53 * m_version - VERSION command handler
212380e3
AC
54 * parv[1] = remote server
55 */
56static int
428ca87b 57m_version(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
58{
59 static time_t last_used = 0L;
60
61 if(parc > 1)
62 {
e3354945 63 if((last_used + ConfigFileEntry.pace_wait) > rb_current_time())
212380e3
AC
64 {
65 /* safe enough to give this on a local connect only */
66 sendto_one(source_p, form_str(RPL_LOAD2HI),
67 me.name, source_p->name, "VERSION");
68 return 0;
69 }
70 else
e3354945 71 last_used = rb_current_time();
212380e3
AC
72
73 if(hunt_server(client_p, source_p, ":%s VERSION :%s", 1, parc, parv) != HUNTED_ISME)
74 return 0;
75 }
76
77 sendto_one_numeric(source_p, RPL_VERSION, form_str(RPL_VERSION),
78 ircd_version, serno,
0f4ed405 79#ifdef CUSTOM_BRANDING
c72f15bc 80 PACKAGE_NAME "-" PACKAGE_VERSION,
0f4ed405 81#endif
29c92cf9 82 me.name, confopts(), TS_CURRENT,
212380e3
AC
83 ServerInfo.sid);
84
85 show_isupport(source_p);
86
87 return 0;
88}
89
90/*
91 * mo_version - VERSION command handler
212380e3
AC
92 * parv[1] = remote server
93 */
94static int
428ca87b 95mo_version(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
96{
97 if(hunt_server(client_p, source_p, ":%s VERSION :%s", 1, parc, parv) == HUNTED_ISME)
98 {
99 sendto_one_numeric(source_p, RPL_VERSION, form_str(RPL_VERSION),
55abcbb2 100 ircd_version, serno,
f5493691 101#ifdef CUSTOM_BRANDING
c72f15bc 102 PACKAGE_NAME "-" PACKAGE_VERSION,
f5493691 103#endif
29c92cf9 104 me.name, confopts(), TS_CURRENT,
212380e3
AC
105 ServerInfo.sid);
106 show_isupport(source_p);
107 }
108
109 return 0;
110}
111
112/* confopts()
29c92cf9 113 * input - none
212380e3
AC
114 * output - ircd.conf option string
115 * side effects - none
116 */
117static char *
29c92cf9 118confopts(void)
212380e3
AC
119{
120 static char result[15];
121 char *p;
122
123 result[0] = '\0';
124 p = result;
125
126 if(ConfigChannel.use_except)
127 *p++ = 'e';
128
212380e3
AC
129 /* might wanna hide this :P */
130 if(ServerInfo.hub)
131 *p++ = 'H';
132
133 if(ConfigChannel.use_invex)
134 *p++ = 'I';
135
136 if(ConfigChannel.use_knock)
137 *p++ = 'K';
138
139 *p++ = 'M';
140 *p++ = 'p';
141
142 if(opers_see_all_users || ConfigFileEntry.operspy_dont_care_user_info)
143 *p++ = 'S';
144#ifdef IGNORE_BOGUS_TS
145 *p++ = 'T';
146#endif
147
148#ifdef HAVE_LIBZ
149 *p++ = 'Z';
150#endif
151
ccda6e3f 152#ifdef RB_IPV6
212380e3
AC
153 *p++ = '6';
154#endif
155
156 *p = '\0';
157
158 return result;
159}