]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/sno_routing.c
Update TODO
[irc/rqf/shadowircd.git] / modules / sno_routing.c
1 /*
2 * charybdis: an advanced Internet Relay Chat Daemon(ircd).
3 * sno_routing.c: Shows notices about netjoins and netsplits
4 *
5 * Copyright (c) 2005-2006 Jilles Tjoelker <jilles-at-stack.nl>
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * 1.Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
13 * 2.Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3.The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
28 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 *
31 * $Id: sno_routing.c 1172 2006-04-18 13:49:18Z jilles $
32 */
33
34 #include "stdinc.h"
35 #include "modules.h"
36 #include "client.h"
37 #include "hook.h"
38 #include "ircd.h"
39 #include "send.h"
40
41 static void h_nn_server_eob(struct Client *);
42 static void h_nn_client_exit(hook_data_client_exit *);
43
44 mapi_hfn_list_av1 nn_hfnlist[] = {
45 { "server_eob", (hookfn) h_nn_server_eob },
46 { "client_exit", (hookfn) h_nn_client_exit },
47 { NULL, NULL }
48 };
49
50 DECLARE_MODULE_AV1(networknotice, NULL, NULL, NULL, NULL, nn_hfnlist, "$Revision: 1172 $");
51
52 /*
53 * count_mark_downlinks
54 *
55 * inputs - pointer to server to count
56 * - pointers to server and user count
57 * output - NONE
58 * side effects - servers are marked
59 * - server and user counts are added to given values
60 */
61 static void
62 count_mark_downlinks(struct Client *server_p, int *pservcount, int *pusercount)
63 {
64 rb_dlink_node *ptr;
65
66 SetFloodDone(server_p);
67 (*pservcount)++;
68 *pusercount += rb_dlink_list_length(&server_p->serv->users);
69 RB_DLINK_FOREACH(ptr, server_p->serv->servers.head)
70 {
71 count_mark_downlinks(ptr->data, pservcount, pusercount);
72 }
73 }
74
75 static void
76 h_nn_server_eob(struct Client *source_p)
77 {
78 int s = 0, u = 0;
79
80 if (IsFloodDone(source_p))
81 return;
82 count_mark_downlinks(source_p, &s, &u);
83 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Netjoin %s <-> %s (%dS %dC)",
84 source_p->servptr ? source_p->servptr->name : "?",
85 source_p->name, s, u);
86 }
87
88 static void
89 h_nn_client_exit(hook_data_client_exit *hdata)
90 {
91 struct Client *source_p;
92 int s = 0, u = 0;
93 char *fromnick;
94
95 source_p = hdata->target;
96 fromnick = IsClient(hdata->from) ? hdata->from->name : NULL;
97
98 if (!IsServer(source_p))
99 return;
100 if (HasSentEob(source_p))
101 {
102 count_mark_downlinks(source_p, &s, &u);
103 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Netsplit %s <-> %s (%dS %dC) (%s%s%s%s)",
104 source_p->servptr ? source_p->servptr->name : "?",
105 source_p->name, s, u,
106 fromnick ? "by " : "",
107 fromnick ? fromnick : "",
108 fromnick ? ": " : "",
109 hdata->comment);
110 }
111 else
112 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Netsplit %s <-> %s (during burst) (%s%s%s%s)",
113 source_p->servptr ? source_p->servptr->name : "?",
114 source_p->name,
115 fromnick ? "by " : "",
116 fromnick ? fromnick : "",
117 fromnick ? ": " : "",
118 hdata->comment);
119 }