]> jfr.im git - solanum.git/blame - modules/m_info.c
ip_cloaking*: Do qjm locally too.
[solanum.git] / modules / m_info.c
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_info.c: Sends information about the server.
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 *
d8228627 24 * $Id: m_info.c 3396 2007-04-05 00:38:52Z jilles $
212380e3
AC
25 */
26
27#include "stdinc.h"
212380e3
AC
28#include "m_info.h"
29#include "channel.h"
30#include "client.h"
31#include "common.h"
4562c604 32#include "match.h"
212380e3
AC
33#include "ircd.h"
34#include "hook.h"
35#include "numeric.h"
36#include "s_serv.h"
37#include "s_user.h"
38#include "send.h"
39#include "s_conf.h"
40#include "msg.h"
41#include "parse.h"
42#include "modules.h"
43
44static void send_conf_options(struct Client *source_p);
45static void send_birthdate_online_time(struct Client *source_p);
46static void send_info_text(struct Client *source_p);
47static void info_spy(struct Client *);
48
49static int m_info(struct Client *, struct Client *, int, const char **);
50static int mo_info(struct Client *, struct Client *, int, const char **);
51
52struct Message info_msgtab = {
53 "INFO", 0, 0, 0, MFLG_SLOW,
54 {mg_unreg, {m_info, 0}, {mo_info, 0}, mg_ignore, mg_ignore, {mo_info, 0}}
55};
56
57int doing_info_hook;
58
59mapi_clist_av1 info_clist[] = { &info_msgtab, NULL };
60mapi_hlist_av1 info_hlist[] = {
61 { "doing_info", &doing_info_hook },
62 { NULL, NULL }
63};
64
d8228627 65DECLARE_MODULE_AV1(info, NULL, NULL, info_clist, info_hlist, NULL, "$Revision: 3396 $");
212380e3
AC
66
67/*
68 * jdc -- Structure for our configuration value table
69 */
70struct InfoStruct
71{
72 const char *name; /* Displayed variable name */
73 unsigned int output_type; /* See below #defines */
74 void *option; /* Pointer reference to the value */
75 const char *desc; /* ASCII description of the variable */
76};
77/* Types for output_type in InfoStruct */
78#define OUTPUT_STRING 0x0001 /* Output option as %s w/ dereference */
79#define OUTPUT_STRING_PTR 0x0002 /* Output option as %s w/out deference */
80#define OUTPUT_DECIMAL 0x0004 /* Output option as decimal (%d) */
81#define OUTPUT_BOOLEAN 0x0008 /* Output option as "ON" or "OFF" */
82#define OUTPUT_BOOLEAN_YN 0x0010 /* Output option as "YES" or "NO" */
83#define OUTPUT_BOOLEAN2 0x0020 /* Output option as "YES/NO/MASKED" */
84
85/* *INDENT-OFF* */
86static struct InfoStruct info_table[] = {
87 /* --[ START OF TABLE ]-------------------------------------------- */
88 {
89 "opers_see_all_users",
90 OUTPUT_BOOLEAN_YN,
91 &opers_see_all_users,
92 "Farconnect notices available or operspy accountability limited"
93 },
8bd5767b
JT
94 {
95 "max_connections",
96 OUTPUT_DECIMAL,
97 &maxconnections,
98 "Max number connections"
d8228627 99 },
212380e3
AC
100 {
101 "anti_nick_flood",
102 OUTPUT_BOOLEAN,
103 &ConfigFileEntry.anti_nick_flood,
104 "NICK flood protection"
105 },
106 {
107 "anti_spam_exit_message_time",
108 OUTPUT_DECIMAL,
109 &ConfigFileEntry.anti_spam_exit_message_time,
110 "Duration a client must be connected for to have an exit message"
111 },
112 {
113 "caller_id_wait",
114 OUTPUT_DECIMAL,
115 &ConfigFileEntry.caller_id_wait,
116 "Minimum delay between notifying UMODE +g users of messages"
117 },
118 {
119 "client_exit",
120 OUTPUT_BOOLEAN,
121 &ConfigFileEntry.client_exit,
122 "Prepend 'Client Exit:' to user QUIT messages"
123 },
124 {
e6e54763 125 "client_flood_max_lines",
212380e3 126 OUTPUT_DECIMAL,
e6e54763 127 &ConfigFileEntry.client_flood_max_lines,
212380e3
AC
128 "Number of lines before a client Excess Flood's",
129 },
e6e54763
SB
130 {
131 "client_flood_burst_rate",
132 OUTPUT_DECIMAL,
133 &ConfigFileEntry.client_flood_burst_rate,
a75bf40d 134 "Maximum lines per second during flood grace period",
e6e54763
SB
135 },
136 {
137 "client_flood_burst_max",
138 OUTPUT_DECIMAL,
139 &ConfigFileEntry.client_flood_burst_max,
a75bf40d 140 "Number of lines to process at once before delaying",
e6e54763
SB
141 },
142 {
143 "client_flood_message_num",
144 OUTPUT_DECIMAL,
145 &ConfigFileEntry.client_flood_message_num,
146 "Number of messages to allow per client_flood_message_time outside of burst",
147 },
148 {
149 "client_flood_message_time",
150 OUTPUT_DECIMAL,
151 &ConfigFileEntry.client_flood_message_time,
152 "Time to allow per client_flood_message_num outside of burst",
153 },
212380e3
AC
154 {
155 "connect_timeout",
156 OUTPUT_DECIMAL,
157 &ConfigFileEntry.connect_timeout,
158 "Connect timeout for connections to servers"
159 },
0ffb8106 160 {
944b0584 161 "default_ident_timeout",
0ffb8106 162 OUTPUT_DECIMAL,
944b0584 163 &ConfigFileEntry.default_ident_timeout,
0ffb8106
JH
164 "Amount of time the server waits for ident responses from clients",
165 },
212380e3
AC
166 {
167 "default_floodcount",
168 OUTPUT_DECIMAL,
169 &ConfigFileEntry.default_floodcount,
170 "Startup value of FLOODCOUNT",
171 },
172 {
173 "default_adminstring",
174 OUTPUT_STRING,
175 &ConfigFileEntry.default_adminstring,
176 "Default adminstring at startup.",
177 },
178 {
179 "default_operstring",
180 OUTPUT_STRING,
181 &ConfigFileEntry.default_operstring,
182 "Default operstring at startup.",
183 },
184 {
185 "servicestring",
186 OUTPUT_STRING,
187 &ConfigFileEntry.servicestring,
188 "String shown in whois for opered services.",
189 },
190 {
191 "disable_auth",
192 OUTPUT_BOOLEAN_YN,
193 &ConfigFileEntry.disable_auth,
194 "Controls whether auth checking is disabled or not"
195 },
196 {
197 "disable_fake_channels",
198 OUTPUT_BOOLEAN_YN,
199 &ConfigFileEntry.disable_fake_channels,
200 "Controls whether bold etc are disabled for JOIN"
201 },
212380e3
AC
202 {
203 "dots_in_ident",
204 OUTPUT_DECIMAL,
205 &ConfigFileEntry.dots_in_ident,
206 "Number of permissable dots in an ident"
207 },
208 {
209 "failed_oper_notice",
210 OUTPUT_BOOLEAN,
211 &ConfigFileEntry.failed_oper_notice,
212 "Inform opers if someone /oper's with the wrong password"
213 },
214 {
215 "fname_userlog",
216 OUTPUT_STRING,
217 &ConfigFileEntry.fname_userlog,
218 "User log file"
219 },
220 {
221 "fname_fuserlog",
222 OUTPUT_STRING,
223 &ConfigFileEntry.fname_fuserlog,
224 "Failed user log file"
225 },
226
227 {
228 "fname_operlog",
229 OUTPUT_STRING,
230 &ConfigFileEntry.fname_operlog,
231 "Operator log file"
232 },
233 {
234 "fname_foperlog",
235 OUTPUT_STRING,
236 &ConfigFileEntry.fname_foperlog,
237 "Failed operator log file"
238 },
239 {
240 "fname_serverlog",
241 OUTPUT_STRING,
242 &ConfigFileEntry.fname_serverlog,
243 "Server connect/disconnect log file"
244 },
245 {
246 "fname_klinelog",
247 OUTPUT_STRING,
248 &ConfigFileEntry.fname_klinelog,
249 "KLINE etc log file"
250 },
212380e3
AC
251 {
252 "fname_operspylog",
253 OUTPUT_STRING,
254 &ConfigFileEntry.fname_operspylog,
255 "Oper spy log file"
256 },
257 {
258 "fname_ioerrorlog",
259 OUTPUT_STRING,
260 &ConfigFileEntry.fname_ioerrorlog,
261 "IO error log file"
262 },
212380e3
AC
263 {
264 "global_snotices",
265 OUTPUT_BOOLEAN_YN,
266 &ConfigFileEntry.global_snotices,
267 "Send out certain server notices globally"
268 },
269 {
270 "hide_error_messages",
271 OUTPUT_BOOLEAN2,
272 &ConfigFileEntry.hide_error_messages,
273 "Hide ERROR messages coming from servers"
274 },
275 {
276 "hide_spoof_ips",
277 OUTPUT_BOOLEAN_YN,
278 &ConfigFileEntry.hide_spoof_ips,
279 "Hide IPs of spoofed users"
280 },
281 {
282 "hub",
283 OUTPUT_BOOLEAN_YN,
284 &ServerInfo.hub,
285 "Server is a hub"
286 },
212380e3
AC
287 {
288 "kline_delay",
289 OUTPUT_DECIMAL,
290 &ConfigFileEntry.kline_delay,
291 "Duration of time to delay kline checking"
292 },
293 {
294 "kline_reason",
295 OUTPUT_STRING,
296 &ConfigFileEntry.kline_reason,
297 "K-lined clients sign off with this reason"
298 },
299 {
300 "dline_with_reason",
301 OUTPUT_BOOLEAN_YN,
302 &ConfigFileEntry.dline_with_reason,
303 "Display D-line reason to client on disconnect"
304 },
305 {
306 "kline_with_reason",
307 OUTPUT_BOOLEAN_YN,
308 &ConfigFileEntry.kline_with_reason,
309 "Display K-line reason to client on disconnect"
310 },
311 {
312 "max_accept",
313 OUTPUT_DECIMAL,
314 &ConfigFileEntry.max_accept,
315 "Maximum nicknames on accept list",
316 },
317 {
318 "max_nick_changes",
319 OUTPUT_DECIMAL,
320 &ConfigFileEntry.max_nick_changes,
321 "NICK change threshhold setting"
322 },
323 {
324 "max_nick_time",
325 OUTPUT_DECIMAL,
326 &ConfigFileEntry.max_nick_time,
327 "NICK flood protection time interval"
328 },
329 {
330 "max_targets",
331 OUTPUT_DECIMAL,
332 &ConfigFileEntry.max_targets,
333 "The maximum number of PRIVMSG/NOTICE targets"
334 },
335 {
336 "min_nonwildcard",
337 OUTPUT_DECIMAL,
338 &ConfigFileEntry.min_nonwildcard,
aae358c0 339 "Minimum non-wildcard chars in K lines",
212380e3
AC
340 },
341 {
342 "min_nonwildcard_simple",
343 OUTPUT_DECIMAL,
344 &ConfigFileEntry.min_nonwildcard_simple,
345 "Minimum non-wildcard chars in xlines/resvs",
346 },
347 {
348 "network_name",
349 OUTPUT_STRING,
350 &ServerInfo.network_name,
351 "Network name"
352 },
353 {
354 "network_desc",
355 OUTPUT_STRING,
356 &ServerInfo.network_desc,
357 "Network description"
358 },
359 {
360 "nick_delay",
361 OUTPUT_DECIMAL,
362 &ConfigFileEntry.nick_delay,
363 "Delay nicks are locked for on split",
364 },
365 {
366 "no_oper_flood",
367 OUTPUT_BOOLEAN,
368 &ConfigFileEntry.no_oper_flood,
369 "Disable flood control for operators",
370 },
371 {
372 "non_redundant_klines",
373 OUTPUT_BOOLEAN,
374 &ConfigFileEntry.non_redundant_klines,
375 "Check for and disallow redundant K-lines"
376 },
377 {
378 "operspy_admin_only",
379 OUTPUT_BOOLEAN,
380 &ConfigFileEntry.operspy_admin_only,
381 "Send +Z operspy notices to admins only"
382 },
383 {
384 "operspy_dont_care_user_info",
385 OUTPUT_BOOLEAN,
386 &ConfigFileEntry.operspy_dont_care_user_info,
387 "Remove accountability and some '!' requirement from non-channel operspy"
388 },
389 {
390 "pace_wait",
391 OUTPUT_DECIMAL,
392 &ConfigFileEntry.pace_wait,
393 "Minimum delay between uses of certain commands"
394 },
395 {
396 "pace_wait_simple",
397 OUTPUT_DECIMAL,
398 &ConfigFileEntry.pace_wait_simple,
399 "Minimum delay between less intensive commands"
400 },
401 {
402 "ping_cookie",
403 OUTPUT_BOOLEAN,
404 &ConfigFileEntry.ping_cookie,
405 "Require ping cookies to connect",
406 },
407 {
408 "reject_after_count",
409 OUTPUT_DECIMAL,
410 &ConfigFileEntry.reject_after_count,
411 "Client rejection threshold setting",
412 },
413 {
414 "reject_ban_time",
415 OUTPUT_DECIMAL,
416 &ConfigFileEntry.reject_ban_time,
417 "Client rejection time interval",
418 },
419 {
420 "reject_duration",
421 OUTPUT_DECIMAL,
422 &ConfigFileEntry.reject_duration,
423 "Client rejection cache duration",
424 },
425 {
426 "short_motd",
427 OUTPUT_BOOLEAN_YN,
428 &ConfigFileEntry.short_motd,
429 "Do not show MOTD; only tell clients they should read it"
430 },
431 {
432 "stats_e_disabled",
433 OUTPUT_BOOLEAN_YN,
434 &ConfigFileEntry.stats_e_disabled,
435 "STATS e output is disabled",
436 },
437 {
438 "stats_c_oper_only",
439 OUTPUT_BOOLEAN_YN,
440 &ConfigFileEntry.stats_c_oper_only,
441 "STATS C output is only shown to operators",
442 },
443 {
444 "stats_h_oper_only",
445 OUTPUT_BOOLEAN_YN,
446 &ConfigFileEntry.stats_h_oper_only,
447 "STATS H output is only shown to operators",
448 },
449 {
450 "stats_i_oper_only",
451 OUTPUT_BOOLEAN2,
452 &ConfigFileEntry.stats_i_oper_only,
453 "STATS I output is only shown to operators",
454 },
455 {
456 "stats_k_oper_only",
457 OUTPUT_BOOLEAN2,
458 &ConfigFileEntry.stats_k_oper_only,
459 "STATS K output is only shown to operators",
460 },
461 {
462 "stats_o_oper_only",
463 OUTPUT_BOOLEAN_YN,
464 &ConfigFileEntry.stats_o_oper_only,
465 "STATS O output is only shown to operators",
466 },
467 {
468 "stats_P_oper_only",
469 OUTPUT_BOOLEAN_YN,
470 &ConfigFileEntry.stats_P_oper_only,
471 "STATS P is only shown to operators",
472 },
473 {
474 "stats_y_oper_only",
475 OUTPUT_BOOLEAN_YN,
476 &ConfigFileEntry.stats_y_oper_only,
477 "STATS Y is only shown to operators",
478 },
43946961
JT
479 {
480 "throttle_count",
481 OUTPUT_DECIMAL,
482 &ConfigFileEntry.throttle_count,
483 "Connection throttle threshold",
484 },
485 {
486 "throttle_duration",
487 OUTPUT_DECIMAL,
488 &ConfigFileEntry.throttle_duration,
489 "Connection throttle duration",
490 },
212380e3
AC
491 {
492 "tkline_expire_notices",
493 OUTPUT_BOOLEAN,
494 &ConfigFileEntry.tkline_expire_notices,
495 "Notices given to opers when tklines expire"
496 },
497 {
498 "ts_max_delta",
499 OUTPUT_DECIMAL,
500 &ConfigFileEntry.ts_max_delta,
501 "Maximum permitted TS delta from another server"
502 },
503 {
504 "ts_warn_delta",
505 OUTPUT_DECIMAL,
506 &ConfigFileEntry.ts_warn_delta,
507 "Maximum permitted TS delta before displaying a warning"
508 },
509 {
510 "warn_no_nline",
511 OUTPUT_BOOLEAN,
512 &ConfigFileEntry.warn_no_nline,
513 "Display warning if connecting server lacks N-line"
514 },
1702b694
JT
515 {
516 "use_propagated_bans",
517 OUTPUT_BOOLEAN,
518 &ConfigFileEntry.use_propagated_bans,
519 "KLINE sets fully propagated bans"
520 },
e88a1f1b
KB
521 {
522 "max_ratelimit_tokens",
523 OUTPUT_DECIMAL,
524 &ConfigFileEntry.max_ratelimit_tokens,
525 "The maximum number of tokens that can be accumulated for executing rate-limited commands",
526 },
212380e3
AC
527 {
528 "default_split_server_count",
529 OUTPUT_DECIMAL,
530 &ConfigChannel.default_split_server_count,
531 "Startup value of SPLITNUM",
532 },
533 {
534 "default_split_user_count",
535 OUTPUT_DECIMAL,
536 &ConfigChannel.default_split_user_count,
537 "Startup value of SPLITUSERS",
538 },
539 {
540 "knock_delay",
541 OUTPUT_DECIMAL,
542 &ConfigChannel.knock_delay,
543 "Delay between a users KNOCK attempts"
544 },
545 {
546 "knock_delay_channel",
547 OUTPUT_DECIMAL,
548 &ConfigChannel.knock_delay_channel,
549 "Delay between KNOCK attempts to a channel",
550 },
212380e3
AC
551 {
552 "kick_on_split_riding",
553 OUTPUT_BOOLEAN_YN,
554 &ConfigChannel.kick_on_split_riding,
555 "Kick users riding splits to join +i or +k channels"
556 },
341f971e
SB
557 {
558 "disable_local_channels",
559 OUTPUT_BOOLEAN_YN,
560 &ConfigChannel.disable_local_channels,
561 "Disable local channels (&channels)"
562 },
212380e3
AC
563 {
564 "max_bans",
565 OUTPUT_DECIMAL,
566 &ConfigChannel.max_bans,
567 "Total +b/e/I/q modes allowed in a channel",
568 },
569 {
570 "max_bans_large",
571 OUTPUT_DECIMAL,
572 &ConfigChannel.max_bans_large,
573 "Total +b/e/I/q modes allowed in a +L channel",
574 },
575 {
576 "max_chans_per_user",
577 OUTPUT_DECIMAL,
578 &ConfigChannel.max_chans_per_user,
579 "Maximum number of channels a user can join",
580 },
581 {
582 "no_create_on_split",
583 OUTPUT_BOOLEAN_YN,
584 &ConfigChannel.no_create_on_split,
585 "Disallow creation of channels when split",
586 },
587 {
588 "no_join_on_split",
589 OUTPUT_BOOLEAN_YN,
590 &ConfigChannel.no_join_on_split,
591 "Disallow joining channels when split",
592 },
6865c0b0
JT
593 {
594 "only_ascii_channels",
595 OUTPUT_BOOLEAN_YN,
596 &ConfigChannel.only_ascii_channels,
597 "Controls whether non-ASCII is disabled for JOIN"
598 },
212380e3
AC
599 {
600 "use_except",
601 OUTPUT_BOOLEAN_YN,
602 &ConfigChannel.use_except,
603 "Enable chanmode +e (ban exceptions)",
604 },
605 {
606 "use_invex",
607 OUTPUT_BOOLEAN_YN,
608 &ConfigChannel.use_invex,
609 "Enable chanmode +I (invite exceptions)",
610 },
2da6f6eb
JT
611 {
612 "use_forward",
613 OUTPUT_BOOLEAN_YN,
614 &ConfigChannel.use_forward,
615 "Enable chanmode +f (channel forwarding)",
616 },
212380e3
AC
617 {
618 "use_knock",
619 OUTPUT_BOOLEAN_YN,
620 &ConfigChannel.use_knock,
621 "Enable /KNOCK",
622 },
c2c25552
JT
623 {
624 "resv_forcepart",
625 OUTPUT_BOOLEAN_YN,
ca656bf8 626 &ConfigChannel.resv_forcepart,
c2c25552
JT
627 "Force-part local users on channel RESV"
628 },
212380e3
AC
629 {
630 "disable_hidden",
631 OUTPUT_BOOLEAN_YN,
632 &ConfigServerHide.disable_hidden,
633 "Prevent servers from hiding themselves from a flattened /links",
634 },
635 {
636 "flatten_links",
637 OUTPUT_BOOLEAN_YN,
638 &ConfigServerHide.flatten_links,
639 "Flatten /links list",
640 },
641 {
642 "hidden",
643 OUTPUT_BOOLEAN_YN,
644 &ConfigServerHide.hidden,
645 "Hide this server from a flattened /links on remote servers",
646 },
647 {
648 "links_delay",
649 OUTPUT_DECIMAL,
650 &ConfigServerHide.links_delay,
651 "Links rehash delay"
652 },
653 /* --[ END OF TABLE ]---------------------------------------------- */
654 { (char *) 0, (unsigned int) 0, (void *) 0, (char *) 0}
655};
656/* *INDENT-ON* */
657
658/*
e6e54763
SB
659 ** m_info
660 ** parv[1] = servername
661 */
212380e3
AC
662static int
663m_info(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
664{
665 static time_t last_used = 0L;
666
e3354945 667 if((last_used + ConfigFileEntry.pace_wait) > rb_current_time())
212380e3
AC
668 {
669 /* safe enough to give this on a local connect only */
670 sendto_one(source_p, form_str(RPL_LOAD2HI),
e6e54763 671 me.name, source_p->name, "INFO");
212380e3
AC
672 sendto_one_numeric(source_p, RPL_ENDOFINFO, form_str(RPL_ENDOFINFO));
673 return 0;
674 }
675 else
e3354945 676 last_used = rb_current_time();
212380e3
AC
677
678 if(hunt_server(client_p, source_p, ":%s INFO :%s", 1, parc, parv) != HUNTED_ISME)
679 return 0;
680
681 info_spy(source_p);
682
683 send_info_text(source_p);
684 send_birthdate_online_time(source_p);
685
686 sendto_one_numeric(source_p, RPL_ENDOFINFO, form_str(RPL_ENDOFINFO));
687 return 0;
688}
689
690/*
e6e54763
SB
691 ** mo_info
692 ** parv[1] = servername
693 */
212380e3
AC
694static int
695mo_info(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
696{
697 if(hunt_server(client_p, source_p, ":%s INFO :%s", 1, parc, parv) == HUNTED_ISME)
698 {
699 info_spy(source_p);
212380e3
AC
700 send_info_text(source_p);
701
702 if(IsOper(source_p))
8ee12f0c 703 {
212380e3 704 send_conf_options(source_p);
8ee12f0c
JT
705 sendto_one_numeric(source_p, RPL_INFO, ":%s",
706 rb_lib_version());
707 }
212380e3
AC
708
709 send_birthdate_online_time(source_p);
710
711 sendto_one_numeric(source_p, RPL_ENDOFINFO, form_str(RPL_ENDOFINFO));
712 }
713
714 return 0;
715}
716
717/*
718 * send_info_text
719 *
720 * inputs - client pointer to send info text to
721 * output - none
722 * side effects - info text is sent to client
723 */
724static void
725send_info_text(struct Client *source_p)
726{
727 const char **text = infotext;
728
729 while (*text)
730 {
731 sendto_one_numeric(source_p, RPL_INFO, form_str(RPL_INFO), *text++);
732 }
733
734 sendto_one_numeric(source_p, RPL_INFO, form_str(RPL_INFO), "");
735}
736
737/*
738 * send_birthdate_online_time
739 *
740 * inputs - client pointer to send to
741 * output - none
742 * side effects - birthdate and online time are sent
743 */
744static void
745send_birthdate_online_time(struct Client *source_p)
746{
08d75d97 747 char tbuf[26]; /* this needs to be 26 - see ctime_r manpage */
212380e3 748 sendto_one(source_p, ":%s %d %s :Birth Date: %s, compile # %s",
e6e54763
SB
749 get_id(&me, source_p), RPL_INFO,
750 get_id(source_p, source_p), creation, generation);
212380e3
AC
751
752 sendto_one(source_p, ":%s %d %s :On-line since %s",
e6e54763
SB
753 get_id(&me, source_p), RPL_INFO,
754 get_id(source_p, source_p), rb_ctime(startup_time, tbuf, sizeof(tbuf)));
212380e3
AC
755}
756
757/*
758 * send_conf_options
759 *
760 * inputs - client pointer to send to
761 * output - none
762 * side effects - send config options to client
763 */
764static void
765send_conf_options(struct Client *source_p)
766{
767 Info *infoptr;
768 int i = 0;
769
770 /*
771 * Now send them a list of all our configuration options
772 * (mostly from config.h)
773 */
774 for (infoptr = MyInformation; infoptr->name; infoptr++)
775 {
776 if(infoptr->intvalue)
777 {
778 sendto_one(source_p, ":%s %d %s :%-30s %-5d [%-30s]",
e6e54763
SB
779 get_id(&me, source_p), RPL_INFO,
780 get_id(source_p, source_p),
781 infoptr->name, infoptr->intvalue,
782 infoptr->desc);
212380e3
AC
783 }
784 else
785 {
786 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
e6e54763
SB
787 get_id(&me, source_p), RPL_INFO,
788 get_id(source_p, source_p),
789 infoptr->name, infoptr->strvalue,
790 infoptr->desc);
212380e3
AC
791 }
792 }
793
794 /*
795 * Parse the info_table[] and do the magic.
796 */
797 for (i = 0; info_table[i].name; i++)
798 {
799 switch (info_table[i].output_type)
800 {
801 /*
802 * For "char *" references
803 */
e6e54763
SB
804 case OUTPUT_STRING:
805 {
806 char *option = *((char **) info_table[i].option);
807
808 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
809 get_id(&me, source_p), RPL_INFO,
810 get_id(source_p, source_p),
811 info_table[i].name,
812 option ? option : "NONE",
813 info_table[i].desc ? info_table[i].desc : "<none>");
814
815 break;
816 }
817 /*
818 * For "char foo[]" references
819 */
820 case OUTPUT_STRING_PTR:
821 {
822 char *option = (char *) info_table[i].option;
823
824 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
825 get_id(&me, source_p), RPL_INFO,
826 get_id(source_p, source_p),
827 info_table[i].name,
828 EmptyString(option) ? "NONE" : option,
829 info_table[i].desc ? info_table[i].desc : "<none>");
830
831 break;
832 }
833 /*
834 * Output info_table[i].option as a decimal value.
835 */
836 case OUTPUT_DECIMAL:
837 {
838 int option = *((int *) info_table[i].option);
839
840 sendto_one(source_p, ":%s %d %s :%-30s %-5d [%-30s]",
841 get_id(&me, source_p), RPL_INFO,
842 get_id(source_p, source_p),
843 info_table[i].name,
844 option,
845 info_table[i].desc ? info_table[i].desc : "<none>");
846
847 break;
848 }
849
850 /*
851 * Output info_table[i].option as "ON" or "OFF"
852 */
853 case OUTPUT_BOOLEAN:
854 {
855 int option = *((int *) info_table[i].option);
856
857 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
858 get_id(&me, source_p), RPL_INFO,
859 get_id(source_p, source_p),
860 info_table[i].name,
861 option ? "ON" : "OFF",
862 info_table[i].desc ? info_table[i].desc : "<none>");
863
864 break;
865 }
866 /*
867 * Output info_table[i].option as "YES" or "NO"
868 */
869 case OUTPUT_BOOLEAN_YN:
870 {
871 int option = *((int *) info_table[i].option);
872
873 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
874 get_id(&me, source_p), RPL_INFO,
875 get_id(source_p, source_p),
876 info_table[i].name,
877 option ? "YES" : "NO",
878 info_table[i].desc ? info_table[i].desc : "<none>");
879
880 break;
881 }
882
883 case OUTPUT_BOOLEAN2:
884 {
885 int option = *((int *) info_table[i].option);
886
887 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
888 me.name, RPL_INFO, source_p->name,
889 info_table[i].name,
890 option ? ((option == 1) ? "MASK" : "YES") : "NO",
891 info_table[i].desc ? info_table[i].desc : "<none>");
892 } /* switch (info_table[i].output_type) */
212380e3
AC
893 }
894 } /* forloop */
895
896
897 /* Don't send oper_only_umodes...it's a bit mask, we will have to decode it
898 ** in order for it to show up properly to opers who issue INFO
899 */
900
901 sendto_one_numeric(source_p, RPL_INFO, form_str(RPL_INFO), "");
902}
903
904/* info_spy()
905 *
906 * input - pointer to client
907 * output - none
908 * side effects - hook doing_info is called
909 */
910static void
911info_spy(struct Client *source_p)
912{
913 hook_data hd;
914
915 hd.client = source_p;
916 hd.arg1 = hd.arg2 = NULL;
917
918 call_hook(doing_info_hook, &hd);
919}