]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/m_info.c
s/owner/admin/ throughout the source code and docs.
[irc/rqf/shadowircd.git] / modules / m_info.c
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 *
24 * $Id: m_info.c 3396 2007-04-05 00:38:52Z jilles $
25 */
26
27 #include "stdinc.h"
28 #include "m_info.h"
29 #include "channel.h"
30 #include "client.h"
31 #include "common.h"
32 #include "match.h"
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
44 static void send_conf_options(struct Client *source_p);
45 static void send_birthdate_online_time(struct Client *source_p);
46 static void send_info_text(struct Client *source_p);
47 static void info_spy(struct Client *);
48
49 static int m_info(struct Client *, struct Client *, int, const char **);
50 static int mo_info(struct Client *, struct Client *, int, const char **);
51
52 struct 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
57 int doing_info_hook;
58
59 mapi_clist_av1 info_clist[] = { &info_msgtab, NULL };
60 mapi_hlist_av1 info_hlist[] = {
61 { "doing_info", &doing_info_hook },
62 { NULL, NULL }
63 };
64
65 DECLARE_MODULE_AV1(info, NULL, NULL, info_clist, info_hlist, NULL, "$Revision: 3396 $");
66
67 /*
68 * jdc -- Structure for our configuration value table
69 */
70 struct 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* */
86 static 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 },
94 {
95 "max_connections",
96 OUTPUT_DECIMAL,
97 &maxconnections,
98 "Max number connections"
99 },
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 {
125 "client_flood",
126 OUTPUT_DECIMAL,
127 &ConfigFileEntry.client_flood,
128 "Number of lines before a client Excess Flood's",
129 },
130 {
131 "connect_timeout",
132 OUTPUT_DECIMAL,
133 &ConfigFileEntry.connect_timeout,
134 "Connect timeout for connections to servers"
135 },
136 {
137 "default_floodcount",
138 OUTPUT_DECIMAL,
139 &ConfigFileEntry.default_floodcount,
140 "Startup value of FLOODCOUNT",
141 },
142 {
143 "default_adminstring",
144 OUTPUT_STRING,
145 &ConfigFileEntry.default_adminstring,
146 "Default adminstring at startup.",
147 },
148 {
149 "default_operstring",
150 OUTPUT_STRING,
151 &ConfigFileEntry.default_operstring,
152 "Default operstring at startup.",
153 },
154 {
155 "default_operhost",
156 OUTPUT_STRING,
157 &ConfigFileEntry.default_operhost,
158 "Default vhost for operators to receive upon opering up.",
159 },
160 {
161 "servicestring",
162 OUTPUT_STRING,
163 &ConfigFileEntry.servicestring,
164 "String shown in whois for opered services.",
165 },
166 {
167 "disable_auth",
168 OUTPUT_BOOLEAN_YN,
169 &ConfigFileEntry.disable_auth,
170 "Controls whether auth checking is disabled or not"
171 },
172 {
173 "disable_fake_channels",
174 OUTPUT_BOOLEAN_YN,
175 &ConfigFileEntry.disable_fake_channels,
176 "Controls whether bold etc are disabled for JOIN"
177 },
178 {
179 "dots_in_ident",
180 OUTPUT_DECIMAL,
181 &ConfigFileEntry.dots_in_ident,
182 "Number of permissable dots in an ident"
183 },
184 {
185 "expire_override_time",
186 OUTPUT_DECIMAL,
187 &ConfigFileEntry.expire_override_time,
188 "Period of time after which to unset user mode +p"
189 },
190 {
191 "failed_oper_notice",
192 OUTPUT_BOOLEAN,
193 &ConfigFileEntry.failed_oper_notice,
194 "Inform opers if someone /oper's with the wrong password"
195 },
196 {
197 "fname_userlog",
198 OUTPUT_STRING,
199 &ConfigFileEntry.fname_userlog,
200 "User log file"
201 },
202 {
203 "fname_fuserlog",
204 OUTPUT_STRING,
205 &ConfigFileEntry.fname_fuserlog,
206 "Failed user log file"
207 },
208
209 {
210 "fname_operlog",
211 OUTPUT_STRING,
212 &ConfigFileEntry.fname_operlog,
213 "Operator log file"
214 },
215 {
216 "fname_foperlog",
217 OUTPUT_STRING,
218 &ConfigFileEntry.fname_foperlog,
219 "Failed operator log file"
220 },
221 {
222 "fname_serverlog",
223 OUTPUT_STRING,
224 &ConfigFileEntry.fname_serverlog,
225 "Server connect/disconnect log file"
226 },
227 {
228 "fname_klinelog",
229 OUTPUT_STRING,
230 &ConfigFileEntry.fname_klinelog,
231 "KLINE etc log file"
232 },
233 {
234 "fname_operspylog",
235 OUTPUT_STRING,
236 &ConfigFileEntry.fname_operspylog,
237 "Oper spy log file"
238 },
239 {
240 "fname_ioerrorlog",
241 OUTPUT_STRING,
242 &ConfigFileEntry.fname_ioerrorlog,
243 "IO error log file"
244 },
245 {
246 "global_snotices",
247 OUTPUT_BOOLEAN_YN,
248 &ConfigFileEntry.global_snotices,
249 "Send out certain server notices globally"
250 },
251 {
252 "hide_error_messages",
253 OUTPUT_BOOLEAN2,
254 &ConfigFileEntry.hide_error_messages,
255 "Hide ERROR messages coming from servers"
256 },
257 {
258 "hide_spoof_ips",
259 OUTPUT_BOOLEAN_YN,
260 &ConfigFileEntry.hide_spoof_ips,
261 "Hide IPs of spoofed users"
262 },
263 {
264 "hub",
265 OUTPUT_BOOLEAN_YN,
266 &ServerInfo.hub,
267 "Server is a hub"
268 },
269 {
270 "kline_delay",
271 OUTPUT_DECIMAL,
272 &ConfigFileEntry.kline_delay,
273 "Duration of time to delay kline checking"
274 },
275 {
276 "kline_reason",
277 OUTPUT_STRING,
278 &ConfigFileEntry.kline_reason,
279 "K-lined clients sign off with this reason"
280 },
281 {
282 "dline_with_reason",
283 OUTPUT_BOOLEAN_YN,
284 &ConfigFileEntry.dline_with_reason,
285 "Display D-line reason to client on disconnect"
286 },
287 {
288 "kline_with_reason",
289 OUTPUT_BOOLEAN_YN,
290 &ConfigFileEntry.kline_with_reason,
291 "Display K-line reason to client on disconnect"
292 },
293 {
294 "max_accept",
295 OUTPUT_DECIMAL,
296 &ConfigFileEntry.max_accept,
297 "Maximum nicknames on accept list",
298 },
299 {
300 "max_nick_changes",
301 OUTPUT_DECIMAL,
302 &ConfigFileEntry.max_nick_changes,
303 "NICK change threshhold setting"
304 },
305 {
306 "max_nick_time",
307 OUTPUT_DECIMAL,
308 &ConfigFileEntry.max_nick_time,
309 "NICK flood protection time interval"
310 },
311 {
312 "max_targets",
313 OUTPUT_DECIMAL,
314 &ConfigFileEntry.max_targets,
315 "The maximum number of PRIVMSG/NOTICE targets"
316 },
317 {
318 "min_nonwildcard",
319 OUTPUT_DECIMAL,
320 &ConfigFileEntry.min_nonwildcard,
321 "Minimum non-wildcard chars in K lines",
322 },
323 {
324 "min_nonwildcard_simple",
325 OUTPUT_DECIMAL,
326 &ConfigFileEntry.min_nonwildcard_simple,
327 "Minimum non-wildcard chars in xlines/resvs",
328 },
329 {
330 "network_name",
331 OUTPUT_STRING,
332 &ServerInfo.network_name,
333 "Network name"
334 },
335 {
336 "network_desc",
337 OUTPUT_STRING,
338 &ServerInfo.network_desc,
339 "Network description"
340 },
341 {
342 "autochanmodes",
343 OUTPUT_STRING,
344 &ConfigChannel.autochanmodes,
345 "Channelmodes set on channel creation"
346 },
347 {
348 "exemptchanops",
349 OUTPUT_STRING,
350 &ConfigChannel.exemptchanops,
351 "Channelmodes that chanops are exempt from"
352 },
353 {
354 "nick_delay",
355 OUTPUT_DECIMAL,
356 &ConfigFileEntry.nick_delay,
357 "Delay nicks are locked for on split",
358 },
359 {
360 "no_oper_flood",
361 OUTPUT_BOOLEAN,
362 &ConfigFileEntry.no_oper_flood,
363 "Disable flood control for operators",
364 },
365 {
366 "non_redundant_klines",
367 OUTPUT_BOOLEAN,
368 &ConfigFileEntry.non_redundant_klines,
369 "Check for and disallow redundant K-lines"
370 },
371 {
372 "operspy_admin_only",
373 OUTPUT_BOOLEAN,
374 &ConfigFileEntry.operspy_admin_only,
375 "Send +Z operspy notices to admins only"
376 },
377 {
378 "operspy_dont_care_user_info",
379 OUTPUT_BOOLEAN,
380 &ConfigFileEntry.operspy_dont_care_user_info,
381 "Remove accountability and some '!' requirement from non-channel operspy"
382 },
383 {
384 "secret_channels_in_whois",
385 OUTPUT_BOOLEAN,
386 &ConfigFileEntry.secret_channels_in_whois,
387 "Defines whether secret channels are always shown in whois to opers with oper:spy priv."
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 },
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 },
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 },
515 {
516 "default_split_server_count",
517 OUTPUT_DECIMAL,
518 &ConfigChannel.default_split_server_count,
519 "Startup value of SPLITNUM",
520 },
521 {
522 "default_split_user_count",
523 OUTPUT_DECIMAL,
524 &ConfigChannel.default_split_user_count,
525 "Startup value of SPLITUSERS",
526 },
527 {
528 "knock_delay",
529 OUTPUT_DECIMAL,
530 &ConfigChannel.knock_delay,
531 "Delay between a users KNOCK attempts"
532 },
533 {
534 "knock_delay_channel",
535 OUTPUT_DECIMAL,
536 &ConfigChannel.knock_delay_channel,
537 "Delay between KNOCK attempts to a channel",
538 },
539 {
540 "kick_on_split_riding",
541 OUTPUT_BOOLEAN_YN,
542 &ConfigChannel.kick_on_split_riding,
543 "Kick users riding splits to join +i or +k channels"
544 },
545 {
546 "max_bans",
547 OUTPUT_DECIMAL,
548 &ConfigChannel.max_bans,
549 "Total +b/e/I/q modes allowed in a channel",
550 },
551 {
552 "max_bans_large",
553 OUTPUT_DECIMAL,
554 &ConfigChannel.max_bans_large,
555 "Total +b/e/I/q modes allowed in a +L channel",
556 },
557 {
558 "max_chans_per_user",
559 OUTPUT_DECIMAL,
560 &ConfigChannel.max_chans_per_user,
561 "Maximum number of channels a user can join",
562 },
563 {
564 "no_create_on_split",
565 OUTPUT_BOOLEAN_YN,
566 &ConfigChannel.no_create_on_split,
567 "Disallow creation of channels when split",
568 },
569 {
570 "no_join_on_split",
571 OUTPUT_BOOLEAN_YN,
572 &ConfigChannel.no_join_on_split,
573 "Disallow joining channels when split",
574 },
575 {
576 "only_ascii_channels",
577 OUTPUT_BOOLEAN_YN,
578 &ConfigChannel.only_ascii_channels,
579 "Controls whether non-ASCII is disabled for JOIN"
580 },
581 {
582 "cycle_host_change",
583 OUTPUT_BOOLEAN_YN,
584 &ConfigChannel.cycle_host_change,
585 "Controls if when a users' host changes, they cycle channels",
586 },
587 {
588 "host_in_topic",
589 OUTPUT_BOOLEAN_YN,
590 &ConfigChannel.host_in_topic,
591 "Defines whether a topicsetters host or just nick is shown on TOPIC",
592 },
593 {
594 "use_halfop",
595 OUTPUT_BOOLEAN_YN,
596 &ConfigChannel.use_halfop,
597 "Enable chanmode +h (halfop)",
598 },
599 {
600 "use_admin",
601 OUTPUT_BOOLEAN_YN,
602 &ConfigChannel.use_admin,
603 "Enable chanmode +a (admin)",
604 },
605 {
606 "use_except",
607 OUTPUT_BOOLEAN_YN,
608 &ConfigChannel.use_except,
609 "Enable chanmode +e (ban exceptions)",
610 },
611 {
612 "use_invex",
613 OUTPUT_BOOLEAN_YN,
614 &ConfigChannel.use_invex,
615 "Enable chanmode +I (invite exceptions)",
616 },
617 {
618 "use_forward",
619 OUTPUT_BOOLEAN_YN,
620 &ConfigChannel.use_forward,
621 "Enable chanmode +f (channel forwarding)",
622 },
623 {
624 "use_knock",
625 OUTPUT_BOOLEAN_YN,
626 &ConfigChannel.use_knock,
627 "Enable /KNOCK",
628 },
629 {
630 "use_local_channels",
631 OUTPUT_BOOLEAN_YN,
632 &ConfigChannel.use_local_channels,
633 "Enable local channels (&channels)"
634 },
635 {
636 "resv_forcepart",
637 OUTPUT_BOOLEAN_YN,
638 { &ConfigChannel.resv_forcepart },
639 "Force-part local users on channel RESV"
640 },
641 {
642 "kick_no_rejoin_time",
643 OUTPUT_DECIMAL,
644 { &ConfigChannel.kick_no_rejoin_time },
645 "The amount of time that a user cannot rejoin a +J channel for after being kicked."
646 },
647 {
648 "disable_hidden",
649 OUTPUT_BOOLEAN_YN,
650 &ConfigServerHide.disable_hidden,
651 "Prevent servers from hiding themselves from a flattened /links",
652 },
653 {
654 "flatten_links",
655 OUTPUT_BOOLEAN_YN,
656 &ConfigServerHide.flatten_links,
657 "Flatten /links list",
658 },
659 {
660 "hidden",
661 OUTPUT_BOOLEAN_YN,
662 &ConfigServerHide.hidden,
663 "Hide this server from a flattened /links on remote servers",
664 },
665 {
666 "links_delay",
667 OUTPUT_DECIMAL,
668 &ConfigServerHide.links_delay,
669 "Links rehash delay"
670 },
671 /* --[ END OF TABLE ]---------------------------------------------- */
672 { (char *) 0, (unsigned int) 0, (void *) 0, (char *) 0}
673 };
674 /* *INDENT-ON* */
675
676 /*
677 ** m_info
678 ** parv[1] = servername
679 */
680 static int
681 m_info(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
682 {
683 static time_t last_used = 0L;
684
685 if((last_used + ConfigFileEntry.pace_wait) > rb_current_time())
686 {
687 /* safe enough to give this on a local connect only */
688 sendto_one(source_p, form_str(RPL_LOAD2HI),
689 me.name, source_p->name, "INFO");
690 sendto_one_numeric(source_p, RPL_ENDOFINFO, form_str(RPL_ENDOFINFO));
691 return 0;
692 }
693 else
694 last_used = rb_current_time();
695
696 if(hunt_server(client_p, source_p, ":%s INFO :%s", 1, parc, parv) != HUNTED_ISME)
697 return 0;
698
699 info_spy(source_p);
700
701 send_info_text(source_p);
702 send_birthdate_online_time(source_p);
703
704 sendto_one_numeric(source_p, RPL_ENDOFINFO, form_str(RPL_ENDOFINFO));
705 return 0;
706 }
707
708 /*
709 ** mo_info
710 ** parv[1] = servername
711 */
712 static int
713 mo_info(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
714 {
715 if(hunt_server(client_p, source_p, ":%s INFO :%s", 1, parc, parv) == HUNTED_ISME)
716 {
717 info_spy(source_p);
718 send_info_text(source_p);
719
720 if(IsOper(source_p))
721 {
722 send_conf_options(source_p);
723 sendto_one_numeric(source_p, RPL_INFO, ":%s",
724 rb_lib_version());
725 }
726
727 send_birthdate_online_time(source_p);
728
729 sendto_one_numeric(source_p, RPL_ENDOFINFO, form_str(RPL_ENDOFINFO));
730 }
731
732 return 0;
733 }
734
735 /*
736 * send_info_text
737 *
738 * inputs - client pointer to send info text to
739 * output - none
740 * side effects - info text is sent to client
741 */
742 static void
743 send_info_text(struct Client *source_p)
744 {
745 const char **text = infotext;
746
747 while (*text)
748 {
749 sendto_one_numeric(source_p, RPL_INFO, form_str(RPL_INFO), *text++);
750 }
751
752 sendto_one_numeric(source_p, RPL_INFO, form_str(RPL_INFO), "");
753 }
754
755 /*
756 * send_birthdate_online_time
757 *
758 * inputs - client pointer to send to
759 * output - none
760 * side effects - birthdate and online time are sent
761 */
762 static void
763 send_birthdate_online_time(struct Client *source_p)
764 {
765 char tbuf[26]; /* this needs to be 26 - see ctime_r manpage */
766 sendto_one(source_p, ":%s %d %s :Birth Date: %s, compile # %s",
767 get_id(&me, source_p), RPL_INFO,
768 get_id(source_p, source_p), creation, generation);
769
770 sendto_one(source_p, ":%s %d %s :On-line since %s",
771 get_id(&me, source_p), RPL_INFO,
772 get_id(source_p, source_p), rb_ctime(startup_time, tbuf, sizeof(tbuf)));
773 }
774
775 /*
776 * send_conf_options
777 *
778 * inputs - client pointer to send to
779 * output - none
780 * side effects - send config options to client
781 */
782 static void
783 send_conf_options(struct Client *source_p)
784 {
785 Info *infoptr;
786 int i = 0;
787
788 /*
789 * Now send them a list of all our configuration options
790 * (mostly from config.h)
791 */
792 for (infoptr = MyInformation; infoptr->name; infoptr++)
793 {
794 if(infoptr->intvalue)
795 {
796 sendto_one(source_p, ":%s %d %s :%-30s %-5d [%-30s]",
797 get_id(&me, source_p), RPL_INFO,
798 get_id(source_p, source_p),
799 infoptr->name, infoptr->intvalue,
800 infoptr->desc);
801 }
802 else
803 {
804 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
805 get_id(&me, source_p), RPL_INFO,
806 get_id(source_p, source_p),
807 infoptr->name, infoptr->strvalue,
808 infoptr->desc);
809 }
810 }
811
812 /*
813 * Parse the info_table[] and do the magic.
814 */
815 for (i = 0; info_table[i].name; i++)
816 {
817 switch (info_table[i].output_type)
818 {
819 /*
820 * For "char *" references
821 */
822 case OUTPUT_STRING:
823 {
824 char *option = *((char **) info_table[i].option);
825
826 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
827 get_id(&me, source_p), RPL_INFO,
828 get_id(source_p, source_p),
829 info_table[i].name,
830 option ? option : "NONE",
831 info_table[i].desc ? info_table[i].desc : "<none>");
832
833 break;
834 }
835 /*
836 * For "char foo[]" references
837 */
838 case OUTPUT_STRING_PTR:
839 {
840 char *option = (char *) info_table[i].option;
841
842 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
843 get_id(&me, source_p), RPL_INFO,
844 get_id(source_p, source_p),
845 info_table[i].name,
846 EmptyString(option) ? "NONE" : option,
847 info_table[i].desc ? info_table[i].desc : "<none>");
848
849 break;
850 }
851 /*
852 * Output info_table[i].option as a decimal value.
853 */
854 case OUTPUT_DECIMAL:
855 {
856 int option = *((int *) info_table[i].option);
857
858 sendto_one(source_p, ":%s %d %s :%-30s %-5d [%-30s]",
859 get_id(&me, source_p), RPL_INFO,
860 get_id(source_p, source_p),
861 info_table[i].name,
862 option,
863 info_table[i].desc ? info_table[i].desc : "<none>");
864
865 break;
866 }
867
868 /*
869 * Output info_table[i].option as "ON" or "OFF"
870 */
871 case OUTPUT_BOOLEAN:
872 {
873 int option = *((int *) info_table[i].option);
874
875 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
876 get_id(&me, source_p), RPL_INFO,
877 get_id(source_p, source_p),
878 info_table[i].name,
879 option ? "ON" : "OFF",
880 info_table[i].desc ? info_table[i].desc : "<none>");
881
882 break;
883 }
884 /*
885 * Output info_table[i].option as "YES" or "NO"
886 */
887 case OUTPUT_BOOLEAN_YN:
888 {
889 int option = *((int *) info_table[i].option);
890
891 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
892 get_id(&me, source_p), RPL_INFO,
893 get_id(source_p, source_p),
894 info_table[i].name,
895 option ? "YES" : "NO",
896 info_table[i].desc ? info_table[i].desc : "<none>");
897
898 break;
899 }
900
901 case OUTPUT_BOOLEAN2:
902 {
903 int option = *((int *) info_table[i].option);
904
905 sendto_one(source_p, ":%s %d %s :%-30s %-5s [%-30s]",
906 me.name, RPL_INFO, source_p->name,
907 info_table[i].name,
908 option ? ((option == 1) ? "MASK" : "YES") : "NO",
909 info_table[i].desc ? info_table[i].desc : "<none>");
910 } /* switch (info_table[i].output_type) */
911 }
912 } /* forloop */
913
914
915 /* Don't send oper_only_umodes...it's a bit mask, we will have to decode it
916 ** in order for it to show up properly to opers who issue INFO
917 */
918
919 sendto_one_numeric(source_p, RPL_INFO, form_str(RPL_INFO), "");
920 }
921
922 /* info_spy()
923 *
924 * input - pointer to client
925 * output - none
926 * side effects - hook doing_info is called
927 */
928 static void
929 info_spy(struct Client *source_p)
930 {
931 hook_data hd;
932
933 hd.client = source_p;
934 hd.arg1 = hd.arg2 = NULL;
935
936 call_hook(doing_info_hook, &hd);
937 }