| 1 |
adx |
30 |
/* |
| 2 |
|
|
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd). |
| 3 |
|
|
* m_info.c: Sends information about the server. |
| 4 |
|
|
* |
| 5 |
|
|
* Copyright (C) 2005 by the past and present ircd coders, and others. |
| 6 |
|
|
* |
| 7 |
|
|
* This program is free software; you can redistribute it and/or modify |
| 8 |
|
|
* it under the terms of the GNU General Public License as published by |
| 9 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
| 10 |
|
|
* (at your option) any later version. |
| 11 |
|
|
* |
| 12 |
|
|
* This program is distributed in the hope that it will be useful, |
| 13 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 |
|
|
* GNU General Public License for more details. |
| 16 |
|
|
* |
| 17 |
|
|
* You should have received a copy of the GNU General Public License |
| 18 |
|
|
* along with this program; if not, write to the Free Software |
| 19 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
| 20 |
|
|
* USA |
| 21 |
|
|
* |
| 22 |
knight |
31 |
* $Id$ |
| 23 |
adx |
30 |
*/ |
| 24 |
|
|
|
| 25 |
|
|
#include "stdinc.h" |
| 26 |
michael |
1011 |
#include "list.h" |
| 27 |
adx |
30 |
#include "channel.h" |
| 28 |
|
|
#include "client.h" |
| 29 |
|
|
#include "irc_string.h" |
| 30 |
|
|
#include "ircd.h" |
| 31 |
|
|
#include "numeric.h" |
| 32 |
|
|
#include "s_serv.h" |
| 33 |
|
|
#include "s_user.h" |
| 34 |
|
|
#include "send.h" |
| 35 |
michael |
1309 |
#include "conf.h" |
| 36 |
adx |
30 |
#include "parse.h" |
| 37 |
|
|
#include "modules.h" |
| 38 |
|
|
|
| 39 |
michael |
1230 |
|
| 40 |
adx |
30 |
static void send_conf_options(struct Client *); |
| 41 |
|
|
static void send_birthdate_online_time(struct Client *); |
| 42 |
|
|
static void send_info_text(struct Client *); |
| 43 |
|
|
|
| 44 |
|
|
/* |
| 45 |
|
|
* jdc -- Structure for our configuration value table |
| 46 |
|
|
*/ |
| 47 |
|
|
struct InfoStruct |
| 48 |
|
|
{ |
| 49 |
|
|
const char *name; /* Displayed variable name */ |
| 50 |
|
|
unsigned int output_type; /* See below #defines */ |
| 51 |
|
|
void *option; /* Pointer reference to the value */ |
| 52 |
|
|
const char *desc; /* ASCII description of the variable */ |
| 53 |
|
|
}; |
| 54 |
|
|
|
| 55 |
|
|
/* Types for output_type in InfoStruct */ |
| 56 |
|
|
#define OUTPUT_STRING 0x0001 /* Output option as %s w/ dereference */ |
| 57 |
|
|
#define OUTPUT_STRING_PTR 0x0002 /* Output option as %s w/out deference */ |
| 58 |
|
|
#define OUTPUT_DECIMAL 0x0004 /* Output option as decimal (%d) */ |
| 59 |
|
|
#define OUTPUT_BOOLEAN 0x0008 /* Output option as "ON" or "OFF" */ |
| 60 |
|
|
#define OUTPUT_BOOLEAN_YN 0x0010 /* Output option as "YES" or "NO" */ |
| 61 |
|
|
#define OUTPUT_BOOLEAN2 0x0020 /* Output option as "YES/NO/MASKED" */ |
| 62 |
|
|
|
| 63 |
|
|
static const struct InfoStruct info_table[] = |
| 64 |
|
|
{ |
| 65 |
|
|
/* --[ START OF TABLE ]-------------------------------------------- */ |
| 66 |
michael |
1318 |
|
| 67 |
adx |
30 |
{ |
| 68 |
michael |
1318 |
"CPATH", |
| 69 |
|
|
OUTPUT_STRING, |
| 70 |
|
|
&ConfigFileEntry.configfile, |
| 71 |
|
|
"Path to Main Configuration File" |
| 72 |
|
|
}, |
| 73 |
|
|
{ |
| 74 |
|
|
"DPATH", |
| 75 |
|
|
OUTPUT_STRING, |
| 76 |
|
|
&ConfigFileEntry.dpath, |
| 77 |
|
|
"Directory Containing Configuration Files" |
| 78 |
|
|
}, |
| 79 |
|
|
{ |
| 80 |
|
|
"DLPATH", |
| 81 |
|
|
OUTPUT_STRING, |
| 82 |
|
|
&ConfigFileEntry.dlinefile, |
| 83 |
|
|
"Path to D-line File" |
| 84 |
|
|
}, |
| 85 |
|
|
{ |
| 86 |
|
|
"KPATH", |
| 87 |
|
|
OUTPUT_STRING, |
| 88 |
|
|
&ConfigFileEntry.klinefile, |
| 89 |
|
|
"Path to K-line File" |
| 90 |
|
|
}, |
| 91 |
|
|
{ |
| 92 |
adx |
30 |
"network_name", |
| 93 |
|
|
OUTPUT_STRING, |
| 94 |
|
|
&ServerInfo.network_name, |
| 95 |
|
|
"Network name" |
| 96 |
|
|
}, |
| 97 |
|
|
{ |
| 98 |
|
|
"network_desc", |
| 99 |
|
|
OUTPUT_STRING, |
| 100 |
|
|
&ServerInfo.network_desc, |
| 101 |
|
|
"Network description" |
| 102 |
|
|
}, |
| 103 |
|
|
{ |
| 104 |
|
|
"hub", |
| 105 |
|
|
OUTPUT_BOOLEAN_YN, |
| 106 |
|
|
&ServerInfo.hub, |
| 107 |
|
|
"Server is a hub" |
| 108 |
|
|
}, |
| 109 |
|
|
{ |
| 110 |
|
|
"use_logging", |
| 111 |
|
|
OUTPUT_BOOLEAN_YN, |
| 112 |
|
|
&ConfigLoggingEntry.use_logging, |
| 113 |
|
|
"Enable logging" |
| 114 |
|
|
}, |
| 115 |
|
|
{ |
| 116 |
|
|
"restrict_channels", |
| 117 |
|
|
OUTPUT_BOOLEAN_YN, |
| 118 |
|
|
&ConfigChannel.restrict_channels, |
| 119 |
|
|
"Only reserved channels are allowed" |
| 120 |
|
|
}, |
| 121 |
|
|
{ |
| 122 |
|
|
"knock_delay", |
| 123 |
|
|
OUTPUT_DECIMAL, |
| 124 |
|
|
&ConfigChannel.knock_delay, |
| 125 |
|
|
"Delay between a users KNOCK attempts" |
| 126 |
|
|
}, |
| 127 |
|
|
{ |
| 128 |
|
|
"knock_delay_channel", |
| 129 |
|
|
OUTPUT_DECIMAL, |
| 130 |
|
|
&ConfigChannel.knock_delay_channel, |
| 131 |
|
|
"Delay between KNOCK attempts to a channel" |
| 132 |
|
|
}, |
| 133 |
|
|
{ |
| 134 |
|
|
"max_chans_per_user", |
| 135 |
|
|
OUTPUT_DECIMAL, |
| 136 |
|
|
&ConfigChannel.max_chans_per_user, |
| 137 |
|
|
"Maximum number of channels a user can join" |
| 138 |
|
|
}, |
| 139 |
|
|
{ |
| 140 |
michael |
1432 |
"max_chans_per_oper", |
| 141 |
|
|
OUTPUT_DECIMAL, |
| 142 |
|
|
&ConfigChannel.max_chans_per_oper, |
| 143 |
|
|
"Maximum number of channels an oper can join" |
| 144 |
|
|
}, |
| 145 |
|
|
{ |
| 146 |
adx |
30 |
"quiet_on_ban", |
| 147 |
|
|
OUTPUT_BOOLEAN_YN, |
| 148 |
|
|
&ConfigChannel.quiet_on_ban, |
| 149 |
|
|
"Banned users may not send text to a channel" |
| 150 |
|
|
}, |
| 151 |
|
|
{ |
| 152 |
|
|
"max_bans", |
| 153 |
|
|
OUTPUT_DECIMAL, |
| 154 |
|
|
&ConfigChannel.max_bans, |
| 155 |
|
|
"Total +b/e/I modes allowed in a channel" |
| 156 |
|
|
}, |
| 157 |
|
|
{ |
| 158 |
|
|
"default_split_user_count", |
| 159 |
|
|
OUTPUT_DECIMAL, |
| 160 |
|
|
&ConfigChannel.default_split_user_count, |
| 161 |
|
|
"Startup value of SPLITUSERS" |
| 162 |
|
|
}, |
| 163 |
|
|
{ |
| 164 |
|
|
"default_split_server_count", |
| 165 |
|
|
OUTPUT_DECIMAL, |
| 166 |
|
|
&ConfigChannel.default_split_server_count, |
| 167 |
|
|
"Startup value of SPLITNUM" |
| 168 |
|
|
}, |
| 169 |
|
|
{ |
| 170 |
|
|
"no_create_on_split", |
| 171 |
|
|
OUTPUT_BOOLEAN_YN, |
| 172 |
|
|
&ConfigChannel.no_create_on_split, |
| 173 |
|
|
"Disallow creation of channels when split" |
| 174 |
|
|
}, |
| 175 |
|
|
{ |
| 176 |
|
|
"no_join_on_split", |
| 177 |
|
|
OUTPUT_BOOLEAN_YN, |
| 178 |
|
|
&ConfigChannel.no_join_on_split, |
| 179 |
|
|
"Disallow joining channels when split" |
| 180 |
|
|
}, |
| 181 |
|
|
{ |
| 182 |
|
|
"flatten_links", |
| 183 |
|
|
OUTPUT_BOOLEAN_YN, |
| 184 |
|
|
&ConfigServerHide.flatten_links, |
| 185 |
|
|
"Flatten /links list" |
| 186 |
|
|
}, |
| 187 |
|
|
{ |
| 188 |
|
|
"links_delay", |
| 189 |
|
|
OUTPUT_DECIMAL, |
| 190 |
|
|
&ConfigServerHide.links_delay, |
| 191 |
|
|
"Links rehash delay" |
| 192 |
|
|
}, |
| 193 |
|
|
{ |
| 194 |
|
|
"hidden", |
| 195 |
|
|
OUTPUT_BOOLEAN_YN, |
| 196 |
|
|
&ConfigServerHide.hidden, |
| 197 |
|
|
"Hide this server from a flattened /links on remote servers" |
| 198 |
|
|
}, |
| 199 |
|
|
{ |
| 200 |
|
|
"hide_servers", |
| 201 |
|
|
OUTPUT_BOOLEAN_YN, |
| 202 |
|
|
&ConfigServerHide.hide_servers, |
| 203 |
|
|
"Hide servernames from users" |
| 204 |
|
|
}, |
| 205 |
|
|
{ |
| 206 |
|
|
"hidden_name", |
| 207 |
|
|
OUTPUT_STRING, |
| 208 |
|
|
&ConfigServerHide.hidden_name, |
| 209 |
|
|
"Server name users see if hide_servers = yes" |
| 210 |
|
|
}, |
| 211 |
|
|
{ |
| 212 |
|
|
"hide_server_ips", |
| 213 |
|
|
OUTPUT_BOOLEAN_YN, |
| 214 |
|
|
&ConfigServerHide.hide_server_ips, |
| 215 |
|
|
"Prevent people from seeing server IPs" |
| 216 |
|
|
}, |
| 217 |
|
|
{ |
| 218 |
|
|
"gline_min_cidr", |
| 219 |
|
|
OUTPUT_DECIMAL, |
| 220 |
|
|
&ConfigFileEntry.gline_min_cidr, |
| 221 |
|
|
"Minimum required length of a CIDR bitmask for IPv4 G-Lines" |
| 222 |
|
|
}, |
| 223 |
|
|
{ |
| 224 |
|
|
"gline_min_cidr6", |
| 225 |
|
|
OUTPUT_DECIMAL, |
| 226 |
|
|
&ConfigFileEntry.gline_min_cidr6, |
| 227 |
|
|
"Minimum required length of a CIDR bitmask for IPv6 G-Lines" |
| 228 |
|
|
}, |
| 229 |
|
|
{ |
| 230 |
|
|
"invisible_on_connect", |
| 231 |
|
|
OUTPUT_BOOLEAN_YN, |
| 232 |
|
|
&ConfigFileEntry.invisible_on_connect, |
| 233 |
|
|
"Automatically set mode +i on connecting users" |
| 234 |
|
|
}, |
| 235 |
|
|
{ |
| 236 |
|
|
"use_whois_actually", |
| 237 |
|
|
OUTPUT_BOOLEAN_YN, |
| 238 |
|
|
&ConfigFileEntry.use_whois_actually, |
| 239 |
|
|
"Show IP address on /WHOIS when possible" |
| 240 |
|
|
}, |
| 241 |
|
|
{ |
| 242 |
|
|
"kill_chase_time_limit", |
| 243 |
|
|
OUTPUT_DECIMAL, |
| 244 |
|
|
&ConfigFileEntry.kill_chase_time_limit, |
| 245 |
|
|
"Nick Change Tracker for KILL" |
| 246 |
|
|
}, |
| 247 |
|
|
{ |
| 248 |
|
|
"hide_spoof_ips", |
| 249 |
|
|
OUTPUT_BOOLEAN_YN, |
| 250 |
|
|
&ConfigFileEntry.hide_spoof_ips, |
| 251 |
|
|
"Hide spoofed IP's" |
| 252 |
|
|
}, |
| 253 |
|
|
{ |
| 254 |
|
|
"ignore_bogus_ts", |
| 255 |
|
|
OUTPUT_BOOLEAN_YN, |
| 256 |
|
|
&ConfigFileEntry.ignore_bogus_ts, |
| 257 |
|
|
"Ignore bogus timestamps from other servers" |
| 258 |
|
|
}, |
| 259 |
|
|
{ |
| 260 |
|
|
"disable_auth", |
| 261 |
|
|
OUTPUT_BOOLEAN_YN, |
| 262 |
|
|
&ConfigFileEntry.disable_auth, |
| 263 |
|
|
"Completely disable ident lookups" |
| 264 |
|
|
}, |
| 265 |
|
|
{ |
| 266 |
|
|
"disable_remote_commands", |
| 267 |
|
|
OUTPUT_BOOLEAN_YN, |
| 268 |
|
|
&ConfigFileEntry.disable_remote, |
| 269 |
|
|
"Prevent users issuing commands on remote servers" |
| 270 |
|
|
}, |
| 271 |
|
|
{ |
| 272 |
|
|
"tkline_expire_notices", |
| 273 |
|
|
OUTPUT_BOOLEAN_YN, |
| 274 |
|
|
&ConfigFileEntry.tkline_expire_notices, |
| 275 |
|
|
"Show temporary kline/xline expire notices" |
| 276 |
|
|
}, |
| 277 |
|
|
{ |
| 278 |
|
|
"default_floodcount", |
| 279 |
|
|
OUTPUT_DECIMAL, |
| 280 |
|
|
&ConfigFileEntry.default_floodcount, |
| 281 |
|
|
"Startup value of FLOODCOUNT" |
| 282 |
|
|
}, |
| 283 |
|
|
{ |
| 284 |
|
|
"failed_oper_notice", |
| 285 |
|
|
OUTPUT_BOOLEAN, |
| 286 |
|
|
&ConfigFileEntry.failed_oper_notice, |
| 287 |
|
|
"Inform opers if someone /oper's with the wrong password" |
| 288 |
|
|
}, |
| 289 |
|
|
{ |
| 290 |
|
|
"dots_in_ident", |
| 291 |
|
|
OUTPUT_DECIMAL, |
| 292 |
|
|
&ConfigFileEntry.dots_in_ident, |
| 293 |
|
|
"Number of permissable dots in an ident" |
| 294 |
|
|
}, |
| 295 |
|
|
{ |
| 296 |
|
|
"min_nonwildcard", |
| 297 |
|
|
OUTPUT_DECIMAL, |
| 298 |
|
|
&ConfigFileEntry.min_nonwildcard, |
| 299 |
|
|
"Minimum non-wildcard chars in K/G lines" |
| 300 |
|
|
}, |
| 301 |
|
|
{ |
| 302 |
|
|
"min_nonwildcard_simple", |
| 303 |
|
|
OUTPUT_DECIMAL, |
| 304 |
|
|
&ConfigFileEntry.min_nonwildcard_simple, |
| 305 |
|
|
"Minimum non-wildcards in gecos bans" |
| 306 |
|
|
}, |
| 307 |
|
|
{ |
| 308 |
|
|
"max_accept", |
| 309 |
|
|
OUTPUT_DECIMAL, |
| 310 |
|
|
&ConfigFileEntry.max_accept, |
| 311 |
|
|
"Maximum nicknames on accept list" |
| 312 |
|
|
}, |
| 313 |
|
|
{ |
| 314 |
|
|
"anti_nick_flood", |
| 315 |
|
|
OUTPUT_BOOLEAN, |
| 316 |
|
|
&ConfigFileEntry.anti_nick_flood, |
| 317 |
|
|
"NICK flood protection" |
| 318 |
|
|
}, |
| 319 |
|
|
{ |
| 320 |
|
|
"max_nick_time", |
| 321 |
|
|
OUTPUT_DECIMAL, |
| 322 |
|
|
&ConfigFileEntry.max_nick_time, |
| 323 |
|
|
"NICK flood protection time interval" |
| 324 |
|
|
}, |
| 325 |
|
|
{ |
| 326 |
|
|
"max_nick_changes", |
| 327 |
|
|
OUTPUT_DECIMAL, |
| 328 |
|
|
&ConfigFileEntry.max_nick_changes, |
| 329 |
|
|
"NICK change threshhold setting" |
| 330 |
|
|
}, |
| 331 |
|
|
{ |
| 332 |
|
|
"anti_spam_exit_message_time", |
| 333 |
|
|
OUTPUT_DECIMAL, |
| 334 |
|
|
&ConfigFileEntry.anti_spam_exit_message_time, |
| 335 |
|
|
"Duration a client must be connected for to have an exit message" |
| 336 |
|
|
}, |
| 337 |
|
|
{ |
| 338 |
|
|
"ts_warn_delta", |
| 339 |
|
|
OUTPUT_DECIMAL, |
| 340 |
|
|
&ConfigFileEntry.ts_warn_delta, |
| 341 |
|
|
"Maximum permitted TS delta before displaying a warning" |
| 342 |
|
|
}, |
| 343 |
|
|
{ |
| 344 |
|
|
"ts_max_delta", |
| 345 |
|
|
OUTPUT_DECIMAL, |
| 346 |
|
|
&ConfigFileEntry.ts_max_delta, |
| 347 |
|
|
"Maximum permitted TS delta from another server" |
| 348 |
|
|
}, |
| 349 |
|
|
{ |
| 350 |
|
|
"kline_with_reason", |
| 351 |
|
|
OUTPUT_BOOLEAN_YN, |
| 352 |
|
|
&ConfigFileEntry.kline_with_reason, |
| 353 |
|
|
"Display K-line reason to client on disconnect" |
| 354 |
|
|
}, |
| 355 |
|
|
{ |
| 356 |
|
|
"kline_reason", |
| 357 |
|
|
OUTPUT_STRING, |
| 358 |
|
|
&ConfigFileEntry.kline_reason, |
| 359 |
|
|
"Reason given to K-lined clients on sign off" |
| 360 |
|
|
}, |
| 361 |
|
|
{ |
| 362 |
|
|
"warn_no_nline", |
| 363 |
|
|
OUTPUT_BOOLEAN, |
| 364 |
|
|
&ConfigFileEntry.warn_no_nline, |
| 365 |
|
|
"Display warning if connecting server lacks N-line" |
| 366 |
|
|
}, |
| 367 |
|
|
{ |
| 368 |
|
|
"stats_o_oper_only", |
| 369 |
|
|
OUTPUT_BOOLEAN_YN, |
| 370 |
|
|
&ConfigFileEntry.stats_o_oper_only, |
| 371 |
|
|
"STATS O output is only shown to operators" |
| 372 |
|
|
}, |
| 373 |
|
|
{ |
| 374 |
|
|
"stats_P_oper_only", |
| 375 |
|
|
OUTPUT_BOOLEAN_YN, |
| 376 |
|
|
&ConfigFileEntry.stats_P_oper_only, |
| 377 |
|
|
"STATS P is only shown to operators" |
| 378 |
|
|
}, |
| 379 |
|
|
{ |
| 380 |
|
|
"stats_i_oper_only", |
| 381 |
|
|
OUTPUT_BOOLEAN2, |
| 382 |
|
|
&ConfigFileEntry.stats_i_oper_only, |
| 383 |
|
|
"STATS I output is only shown to operators" |
| 384 |
|
|
}, |
| 385 |
|
|
{ |
| 386 |
|
|
"stats_k_oper_only", |
| 387 |
|
|
OUTPUT_BOOLEAN2, |
| 388 |
|
|
&ConfigFileEntry.stats_k_oper_only, |
| 389 |
|
|
"STATS K output is only shown to operators" |
| 390 |
|
|
}, |
| 391 |
|
|
{ |
| 392 |
|
|
"caller_id_wait", |
| 393 |
|
|
OUTPUT_DECIMAL, |
| 394 |
|
|
&ConfigFileEntry.caller_id_wait, |
| 395 |
|
|
"Minimum delay between notifying UMODE +g users of messages" |
| 396 |
|
|
}, |
| 397 |
|
|
{ |
| 398 |
|
|
"opers_bypass_callerid", |
| 399 |
|
|
OUTPUT_BOOLEAN_YN, |
| 400 |
|
|
&ConfigFileEntry.opers_bypass_callerid, |
| 401 |
|
|
"Allows IRC operators to message users who are +g (callerid)" |
| 402 |
|
|
}, |
| 403 |
|
|
{ |
| 404 |
|
|
"pace_wait_simple", |
| 405 |
|
|
OUTPUT_DECIMAL, |
| 406 |
|
|
&ConfigFileEntry.pace_wait_simple, |
| 407 |
|
|
"Minimum delay between less intensive commands" |
| 408 |
|
|
}, |
| 409 |
|
|
{ |
| 410 |
|
|
"pace_wait", |
| 411 |
|
|
OUTPUT_DECIMAL, |
| 412 |
|
|
&ConfigFileEntry.pace_wait, |
| 413 |
|
|
"Minimum delay between uses of certain commands" |
| 414 |
|
|
}, |
| 415 |
|
|
{ |
| 416 |
|
|
"short_motd", |
| 417 |
|
|
OUTPUT_BOOLEAN_YN, |
| 418 |
|
|
&ConfigFileEntry.short_motd, |
| 419 |
|
|
"Do not show MOTD; only tell clients they should read it" |
| 420 |
|
|
}, |
| 421 |
|
|
{ |
| 422 |
|
|
"ping_cookie", |
| 423 |
|
|
OUTPUT_BOOLEAN, |
| 424 |
|
|
&ConfigFileEntry.ping_cookie, |
| 425 |
|
|
"Require ping cookies to connect" |
| 426 |
|
|
}, |
| 427 |
|
|
{ |
| 428 |
|
|
"no_oper_flood", |
| 429 |
|
|
OUTPUT_BOOLEAN, |
| 430 |
|
|
&ConfigFileEntry.no_oper_flood, |
| 431 |
|
|
"Reduce flood control for operators" |
| 432 |
|
|
}, |
| 433 |
|
|
{ |
| 434 |
|
|
"true_no_oper_flood", |
| 435 |
|
|
OUTPUT_BOOLEAN, |
| 436 |
|
|
&ConfigFileEntry.true_no_oper_flood, |
| 437 |
|
|
"Completely disable flood control for operators" |
| 438 |
|
|
}, |
| 439 |
|
|
{ |
| 440 |
|
|
"oper_pass_resv", |
| 441 |
|
|
OUTPUT_BOOLEAN_YN, |
| 442 |
|
|
&ConfigFileEntry.oper_pass_resv, |
| 443 |
|
|
"Opers can over-ride RESVs" |
| 444 |
|
|
}, |
| 445 |
|
|
{ |
| 446 |
|
|
"max_targets", |
| 447 |
|
|
OUTPUT_DECIMAL, |
| 448 |
|
|
&ConfigFileEntry.max_targets, |
| 449 |
|
|
"The maximum number of PRIVMSG/NOTICE targets" |
| 450 |
|
|
}, |
| 451 |
|
|
{ |
| 452 |
|
|
"throttle_time", |
| 453 |
|
|
OUTPUT_DECIMAL, |
| 454 |
|
|
&ConfigFileEntry.throttle_time, |
| 455 |
|
|
"Minimum time between client reconnects" |
| 456 |
|
|
}, |
| 457 |
|
|
{ |
| 458 |
|
|
"glines", |
| 459 |
|
|
OUTPUT_BOOLEAN, |
| 460 |
|
|
&ConfigFileEntry.glines, |
| 461 |
|
|
"G-line (network-wide K-line) support" |
| 462 |
|
|
}, |
| 463 |
|
|
{ |
| 464 |
michael |
1459 |
"gline_duration", |
| 465 |
adx |
30 |
OUTPUT_DECIMAL, |
| 466 |
|
|
&ConfigFileEntry.gline_time, |
| 467 |
|
|
"Expiry time for G-lines" |
| 468 |
|
|
}, |
| 469 |
michael |
1459 |
|
| 470 |
|
|
{ |
| 471 |
|
|
"gline_request_duration", |
| 472 |
|
|
OUTPUT_DECIMAL, |
| 473 |
|
|
&ConfigFileEntry.gline_request_time, |
| 474 |
|
|
"Expiry time for pending G-lines" |
| 475 |
|
|
}, |
| 476 |
|
|
|
| 477 |
adx |
30 |
/* --[ END OF TABLE ]---------------------------------------------- */ |
| 478 |
|
|
{ |
| 479 |
|
|
NULL, |
| 480 |
|
|
0, |
| 481 |
|
|
NULL, |
| 482 |
|
|
0 |
| 483 |
|
|
} |
| 484 |
|
|
}; |
| 485 |
|
|
|
| 486 |
|
|
/* |
| 487 |
|
|
** m_info() |
| 488 |
|
|
** parv[0] = sender prefix |
| 489 |
|
|
** parv[1] = servername |
| 490 |
|
|
*/ |
| 491 |
|
|
static void |
| 492 |
|
|
m_info(struct Client *client_p, struct Client *source_p, |
| 493 |
|
|
int parc, char *parv[]) |
| 494 |
|
|
{ |
| 495 |
|
|
static time_t last_used = 0; |
| 496 |
|
|
|
| 497 |
|
|
if ((last_used + ConfigFileEntry.pace_wait) > CurrentTime) |
| 498 |
|
|
{ |
| 499 |
|
|
/* safe enough to give this on a local connect only */ |
| 500 |
|
|
sendto_one(source_p, form_str(RPL_LOAD2HI), |
| 501 |
|
|
me.name, source_p->name); |
| 502 |
|
|
return; |
| 503 |
|
|
} |
| 504 |
|
|
|
| 505 |
michael |
1121 |
last_used = CurrentTime; |
| 506 |
|
|
|
| 507 |
adx |
30 |
if (!ConfigFileEntry.disable_remote) |
| 508 |
michael |
1144 |
if (hunt_server(client_p,source_p, ":%s INFO :%s", 1, |
| 509 |
|
|
parc, parv) != HUNTED_ISME) |
| 510 |
adx |
30 |
return; |
| 511 |
|
|
|
| 512 |
michael |
1144 |
send_info_text(source_p); |
| 513 |
adx |
30 |
} |
| 514 |
|
|
|
| 515 |
|
|
/* |
| 516 |
|
|
** mo_info() |
| 517 |
|
|
** parv[0] = sender prefix |
| 518 |
|
|
** parv[1] = servername |
| 519 |
|
|
*/ |
| 520 |
|
|
static void |
| 521 |
|
|
mo_info(struct Client *client_p, struct Client *source_p, |
| 522 |
|
|
int parc, char *parv[]) |
| 523 |
|
|
{ |
| 524 |
|
|
if (hunt_server(client_p, source_p, ":%s INFO :%s", 1, |
| 525 |
|
|
parc, parv) != HUNTED_ISME) |
| 526 |
|
|
return; |
| 527 |
|
|
|
| 528 |
michael |
1144 |
send_info_text(source_p); |
| 529 |
adx |
30 |
} |
| 530 |
|
|
|
| 531 |
|
|
/* |
| 532 |
|
|
** ms_info() |
| 533 |
|
|
** parv[0] = sender prefix |
| 534 |
|
|
** parv[1] = servername |
| 535 |
|
|
*/ |
| 536 |
|
|
static void |
| 537 |
|
|
ms_info(struct Client *client_p, struct Client *source_p, |
| 538 |
|
|
int parc, char *parv[]) |
| 539 |
|
|
{ |
| 540 |
|
|
if (!IsClient(source_p)) |
| 541 |
|
|
return; |
| 542 |
|
|
|
| 543 |
michael |
1144 |
if (hunt_server(client_p, source_p, ":%s INFO :%s", 1, |
| 544 |
|
|
parc, parv) != HUNTED_ISME) |
| 545 |
adx |
30 |
return; |
| 546 |
|
|
|
| 547 |
michael |
1144 |
send_info_text(source_p); |
| 548 |
adx |
30 |
} |
| 549 |
|
|
|
| 550 |
|
|
/* send_info_text() |
| 551 |
|
|
* |
| 552 |
|
|
* inputs - client pointer to send info text to |
| 553 |
|
|
* output - NONE |
| 554 |
|
|
* side effects - info text is sent to client |
| 555 |
|
|
*/ |
| 556 |
|
|
static void |
| 557 |
|
|
send_info_text(struct Client *source_p) |
| 558 |
|
|
{ |
| 559 |
|
|
const char **text = infotext; |
| 560 |
|
|
char *source, *target; |
| 561 |
michael |
1144 |
|
| 562 |
|
|
sendto_realops_flags(UMODE_SPY, L_ALL, |
| 563 |
|
|
"INFO requested by %s (%s@%s) [%s]", |
| 564 |
|
|
source_p->name, source_p->username, |
| 565 |
|
|
source_p->host, source_p->servptr->name); |
| 566 |
|
|
|
| 567 |
adx |
30 |
if (!MyClient(source_p) && IsCapable(source_p->from, CAP_TS6) && |
| 568 |
|
|
HasID(source_p)) |
| 569 |
|
|
source = me.id, target = source_p->id; |
| 570 |
|
|
else |
| 571 |
|
|
source = me.name, target = source_p->name; |
| 572 |
|
|
|
| 573 |
|
|
while (*text) |
| 574 |
|
|
{ |
| 575 |
|
|
const char *line = *text++; |
| 576 |
|
|
|
| 577 |
|
|
if (*line == '\0') |
| 578 |
|
|
line = " "; |
| 579 |
|
|
|
| 580 |
|
|
sendto_one(source_p, form_str(RPL_INFO), |
| 581 |
|
|
source, target, line); |
| 582 |
|
|
} |
| 583 |
|
|
|
| 584 |
michael |
1219 |
if (HasUMode(source_p, UMODE_OPER)) |
| 585 |
adx |
30 |
send_conf_options(source_p); |
| 586 |
|
|
|
| 587 |
|
|
send_birthdate_online_time(source_p); |
| 588 |
|
|
|
| 589 |
|
|
sendto_one(source_p, form_str(RPL_ENDOFINFO), |
| 590 |
|
|
me.name, source_p->name); |
| 591 |
|
|
} |
| 592 |
|
|
|
| 593 |
|
|
/* send_birthdate_online_time() |
| 594 |
|
|
* |
| 595 |
|
|
* inputs - client pointer to send to |
| 596 |
|
|
* output - NONE |
| 597 |
|
|
* side effects - birthdate and online time are sent |
| 598 |
|
|
*/ |
| 599 |
|
|
static void |
| 600 |
|
|
send_birthdate_online_time(struct Client *source_p) |
| 601 |
|
|
{ |
| 602 |
|
|
if (!MyClient(source_p) && IsCapable(source_p->from, CAP_TS6) && HasID(source_p)) |
| 603 |
|
|
{ |
| 604 |
|
|
sendto_one(source_p, ":%s %d %s :On-line since %s", |
| 605 |
|
|
me.id, RPL_INFO, source_p->id, |
| 606 |
michael |
1241 |
myctime(me.localClient->firsttime)); |
| 607 |
adx |
30 |
} |
| 608 |
|
|
else |
| 609 |
|
|
{ |
| 610 |
|
|
sendto_one(source_p, ":%s %d %s :On-line since %s", |
| 611 |
|
|
me.name, RPL_INFO, source_p->name, |
| 612 |
michael |
1241 |
myctime(me.localClient->firsttime)); |
| 613 |
adx |
30 |
} |
| 614 |
|
|
} |
| 615 |
|
|
|
| 616 |
|
|
/* send_conf_options() |
| 617 |
|
|
* |
| 618 |
|
|
* inputs - client pointer to send to |
| 619 |
|
|
* output - NONE |
| 620 |
|
|
* side effects - send config options to client |
| 621 |
|
|
*/ |
| 622 |
|
|
static void |
| 623 |
|
|
send_conf_options(struct Client *source_p) |
| 624 |
|
|
{ |
| 625 |
|
|
const char *from, *to; |
| 626 |
|
|
const struct InfoStruct *iptr = NULL; |
| 627 |
|
|
|
| 628 |
|
|
/* Now send them a list of all our configuration options |
| 629 |
michael |
912 |
* (mostly from defaults.h and config.h) |
| 630 |
adx |
30 |
*/ |
| 631 |
|
|
if (!MyClient(source_p) && IsCapable(source_p->from, CAP_TS6) && HasID(source_p)) |
| 632 |
|
|
{ |
| 633 |
|
|
from = me.id; |
| 634 |
|
|
to = source_p->id; |
| 635 |
|
|
} |
| 636 |
|
|
else |
| 637 |
|
|
{ |
| 638 |
|
|
from = me.name; |
| 639 |
|
|
to = source_p->name; |
| 640 |
|
|
} |
| 641 |
|
|
|
| 642 |
|
|
/* |
| 643 |
|
|
* Parse the info_table[] and do the magic. |
| 644 |
|
|
*/ |
| 645 |
|
|
for (iptr = info_table; iptr->name; ++iptr) |
| 646 |
|
|
{ |
| 647 |
|
|
switch (iptr->output_type) |
| 648 |
|
|
{ |
| 649 |
|
|
/* For "char *" references */ |
| 650 |
|
|
case OUTPUT_STRING: |
| 651 |
|
|
{ |
| 652 |
|
|
const char *option = *((char **)iptr->option); |
| 653 |
|
|
|
| 654 |
|
|
sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]", |
| 655 |
|
|
from, RPL_INFO, to, |
| 656 |
|
|
iptr->name, option ? option : "NONE", |
| 657 |
|
|
iptr->desc ? iptr->desc : "<none>"); |
| 658 |
|
|
break; |
| 659 |
|
|
} |
| 660 |
|
|
|
| 661 |
|
|
/* For "char foo[]" references */ |
| 662 |
|
|
case OUTPUT_STRING_PTR: |
| 663 |
|
|
{ |
| 664 |
|
|
const char *option = iptr->option; |
| 665 |
|
|
|
| 666 |
|
|
sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]", |
| 667 |
|
|
from, RPL_INFO, to, |
| 668 |
|
|
iptr->name, option ? option : "NONE", |
| 669 |
|
|
iptr->desc ? iptr->desc : "<none>"); |
| 670 |
|
|
break; |
| 671 |
|
|
} |
| 672 |
|
|
|
| 673 |
|
|
/* Output info_table[i].option as a decimal value. */ |
| 674 |
|
|
case OUTPUT_DECIMAL: |
| 675 |
|
|
{ |
| 676 |
|
|
const int option = *((int *)iptr->option); |
| 677 |
|
|
|
| 678 |
|
|
sendto_one(source_p, ":%s %d %s :%-30s %-5d [%-30s]", |
| 679 |
|
|
from, RPL_INFO, to, iptr->name, |
| 680 |
|
|
option, iptr->desc ? iptr->desc : "<none>"); |
| 681 |
|
|
break; |
| 682 |
|
|
} |
| 683 |
|
|
|
| 684 |
|
|
/* Output info_table[i].option as "ON" or "OFF" */ |
| 685 |
|
|
case OUTPUT_BOOLEAN: |
| 686 |
|
|
{ |
| 687 |
|
|
const int option = *((int *)iptr->option); |
| 688 |
|
|
|
| 689 |
|
|
sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]", |
| 690 |
|
|
from, RPL_INFO, to, |
| 691 |
|
|
iptr->name, option ? "ON" : "OFF", |
| 692 |
|
|
iptr->desc ? iptr->desc : "<none>"); |
| 693 |
|
|
|
| 694 |
|
|
break; |
| 695 |
|
|
} |
| 696 |
|
|
|
| 697 |
|
|
/* Output info_table[i].option as "YES" or "NO" */ |
| 698 |
|
|
case OUTPUT_BOOLEAN_YN: |
| 699 |
|
|
{ |
| 700 |
|
|
int option = *((int *)iptr->option); |
| 701 |
|
|
|
| 702 |
|
|
sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]", |
| 703 |
|
|
from, RPL_INFO, to, |
| 704 |
|
|
iptr->name, option ? "YES" : "NO", |
| 705 |
|
|
iptr->desc ? iptr->desc : "<none>"); |
| 706 |
|
|
break; |
| 707 |
|
|
} |
| 708 |
|
|
|
| 709 |
|
|
case OUTPUT_BOOLEAN2: |
| 710 |
|
|
{ |
| 711 |
|
|
int option = *((int *)iptr->option); |
| 712 |
|
|
|
| 713 |
|
|
sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]", |
| 714 |
|
|
from, RPL_INFO, to, |
| 715 |
|
|
iptr->name, option ? ((option == 1) ? "MASK" : "YES") : "NO", |
| 716 |
|
|
iptr->desc ? iptr->desc : "<none>"); |
| 717 |
|
|
break; |
| 718 |
|
|
} |
| 719 |
|
|
} |
| 720 |
|
|
} |
| 721 |
|
|
|
| 722 |
|
|
sendto_one(source_p, form_str(RPL_INFO), |
| 723 |
|
|
from, to, ""); |
| 724 |
|
|
} |
| 725 |
michael |
1230 |
|
| 726 |
|
|
static struct Message info_msgtab = { |
| 727 |
|
|
"INFO", 0, 0, 0, MAXPARA, MFLG_SLOW, 0, |
| 728 |
|
|
{ m_unregistered, m_info, ms_info, m_ignore, mo_info, m_ignore } |
| 729 |
|
|
}; |
| 730 |
|
|
|
| 731 |
|
|
static void |
| 732 |
|
|
module_init(void) |
| 733 |
|
|
{ |
| 734 |
|
|
mod_add_cmd(&info_msgtab); |
| 735 |
|
|
} |
| 736 |
|
|
|
| 737 |
|
|
static void |
| 738 |
|
|
module_exit(void) |
| 739 |
|
|
{ |
| 740 |
|
|
mod_del_cmd(&info_msgtab); |
| 741 |
|
|
} |
| 742 |
|
|
|
| 743 |
|
|
struct module module_entry = { |
| 744 |
|
|
.node = { NULL, NULL, NULL }, |
| 745 |
|
|
.name = NULL, |
| 746 |
|
|
.version = "$Revision$", |
| 747 |
|
|
.handle = NULL, |
| 748 |
|
|
.modinit = module_init, |
| 749 |
|
|
.modexit = module_exit, |
| 750 |
|
|
.flags = 0 |
| 751 |
|
|
}; |