Bump patchlevel and fix init_class() dropping configured classes.
[ircu2.10.12-pk.git] / ircd / class.c
1 /*
2  * IRC - Internet Relay Chat, ircd/class.c
3  * Copyright (C) 1990 Darren Reed
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 1, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /** @file
20  * @brief Implementation of connection class handling functions.
21  * @version $Id$
22  */
23 #include "config.h"
24
25 #include "class.h"
26 #include "client.h"
27 #include "ircd.h"
28 #include "ircd_alloc.h"
29 #include "ircd_features.h"
30 #include "ircd_log.h"
31 #include "ircd_reply.h"
32 #include "ircd_string.h"
33 #include "list.h"
34 #include "numeric.h"
35 #include "s_conf.h"
36 #include "s_debug.h"
37 #include "send.h"
38
39 /* #include <assert.h> -- Now using assert in ircd_log.h */
40
41 /** List of all connection classes. */
42 static struct ConnectionClass* connClassList;
43 /** Number of allocated connection classes. */
44 static unsigned int connClassAllocCount;
45
46 /** Get start of connection class linked list. */
47 const struct ConnectionClass* get_class_list(void)
48 {
49   return connClassList;
50 }
51
52 /** Allocate a new connection class.
53  * If #connClassList is not null, insert the new class just after it.
54  * @return Newly allocated connection class structure.
55  */
56 struct ConnectionClass* make_class(void)
57 {
58   struct ConnectionClass *tmp;
59
60   tmp = (struct ConnectionClass*) MyCalloc(1, sizeof(struct ConnectionClass));
61   assert(0 != tmp);
62   tmp->ref_count = 1;
63   if (connClassList)
64   {
65     tmp->next = connClassList->next;
66     connClassList->next = tmp;
67   }
68   ++connClassAllocCount;
69   return tmp;
70 }
71
72 /** Dereference a connection class.
73  * @param[in] p Connection class to dereference.
74  */
75 void free_class(struct ConnectionClass* p)
76 {
77   if (p)
78   {
79     assert(0 == p->valid);
80     MyFree(p->cc_name);
81     MyFree(p->default_umode);
82     MyFree(p);
83     --connClassAllocCount;
84   }
85 }
86
87 /** Initialize the connection class list.
88  * A connection class named "default" is created, with ping frequency,
89  * connection frequency, maximum links and max SendQ values from the
90  * corresponding configuration features.
91  */
92 void init_class(void)
93 {
94   if (!connClassList) {
95     connClassList = (struct ConnectionClass*) make_class();
96     connClassList->next   = 0;
97   }
98
99   /* We had better not try and free this... */
100   ConClass(connClassList) = "default";
101   PingFreq(connClassList) = feature_int(FEAT_PINGFREQUENCY);
102   ConFreq(connClassList)  = feature_int(FEAT_CONNECTFREQUENCY);
103   MaxLinks(connClassList) = feature_int(FEAT_MAXIMUM_LINKS);
104   MaxSendq(connClassList) = feature_int(FEAT_DEFAULTMAXSENDQLENGTH);
105   connClassList->valid    = 1;
106   Links(connClassList)    = 1;
107 }
108
109 /** Mark current connection classes as invalid.
110  */
111 void class_mark_delete(void)
112 {
113   struct ConnectionClass* p;
114   assert(0 != connClassList);
115
116   for (p = connClassList->next; p; p = p->next)
117     p->valid = 0;
118 }
119
120 /** Unlink (and dereference) invalid connection classes.
121  * This is used in combination with class_mark_delete() during rehash
122  * to get rid of connection classes that are no longer in the
123  * configuration.
124  */
125 void class_delete_marked(void)
126 {
127   struct ConnectionClass* cl;
128   struct ConnectionClass* prev;
129
130   Debug((DEBUG_DEBUG, "Class check:"));
131
132   for (prev = cl = connClassList; cl; cl = prev->next) {
133     Debug((DEBUG_DEBUG, "Class %s : CF: %d PF: %d ML: %d LI: %d SQ: %d",
134            ConClass(cl), ConFreq(cl), PingFreq(cl), MaxLinks(cl),
135            Links(cl), MaxSendq(cl)));
136     /*
137      * unlink marked classes, delete unreferenced ones
138      */
139     if (cl->valid)
140       prev = cl;
141     else
142     {
143       prev->next = cl->next;
144       if (0 == --cl->ref_count)
145         free_class(cl);
146     }
147   }
148 }
149
150 /** Get connection class name for a configuration item.
151  * @param[in] aconf Configuration item to check.
152  * @return Name of connection class associated with \a aconf.
153  */
154 char*
155 get_conf_class(const struct ConfItem* aconf)
156 {
157   if ((aconf) && (aconf->conn_class))
158     return (ConfClass(aconf));
159
160   Debug((DEBUG_DEBUG, "No Class For %s", (aconf) ? aconf->name : "*No Conf*"));
161
162   return NULL;
163 }
164
165 /** Get ping time for a configuration item.
166  * @param[in] aconf Configuration item to check.
167  * @return Ping time for connection class associated with \a aconf.
168  */
169 int get_conf_ping(const struct ConfItem* aconf)
170 {
171   assert(0 != aconf);
172   if (aconf->conn_class)
173     return (ConfPingFreq(aconf));
174
175   Debug((DEBUG_DEBUG, "No Ping For %s", aconf->name));
176
177   return -1;
178 }
179
180 /** Get connection class name for a particular client.
181  * @param[in] acptr Client to check.
182  * @return Name of connection class to which \a acptr belongs.
183  */
184 char*
185 get_client_class(struct Client *acptr)
186 {
187   struct SLink *tmp;
188   struct ConnectionClass *cl;
189
190   /* Return the most recent(first on LL) client class... */
191   if (acptr && !IsMe(acptr) && (cli_confs(acptr)))
192     for (tmp = cli_confs(acptr); tmp; tmp = tmp->next)
193     {
194       if (tmp->value.aconf && (cl = tmp->value.aconf->conn_class))
195         return ConClass(cl);
196     }
197   return "(null-class)";
198 }
199
200 /** Make sure we have a connection class named \a name.
201  * If one does not exist, create it.  Then set its ping frequency,
202  * connection frequency, maximum link count, and max SendQ according
203  * to the parameters.
204  * @param[in] name Connection class name.
205  * @param[in] ping Ping frequency for clients in this class.
206  * @param[in] confreq Connection frequency for clients.
207  * @param[in] maxli Maximum link count for class.
208  * @param[in] sendq Max SendQ for clients.
209  */
210 void add_class(char *name, unsigned int ping, unsigned int confreq,
211                unsigned int maxli, unsigned int sendq)
212 {
213   struct ConnectionClass* p;
214
215   Debug((DEBUG_DEBUG, "Add Class %s: cf: %u pf: %u ml: %u sq: %d",
216          name, confreq, ping, maxli, sendq));
217   assert(name != NULL);
218   p = find_class(name);
219   if (!p)
220     p = make_class();
221   else
222     MyFree(ConClass(p));
223   ConClass(p) = name;
224   ConFreq(p) = confreq;
225   PingFreq(p) = ping;
226   MaxLinks(p) = maxli;
227   MaxSendq(p) = (sendq > 0) ?
228      sendq : feature_int(FEAT_DEFAULTMAXSENDQLENGTH);
229   p->valid = 1;
230 }
231
232 /** Find a connection class by name.
233  * @param[in] name Name of connection class to search for.
234  * @return Pointer to connection class structure (or NULL if none match).
235  */
236 struct ConnectionClass* find_class(const char *name)
237 {
238   struct ConnectionClass *cltmp;
239
240   for (cltmp = connClassList; cltmp; cltmp = cltmp->next) {
241     if (!ircd_strcmp(ConClass(cltmp), name))
242       return cltmp;
243   }
244   return NULL;
245 }
246
247 /** Report connection classes to a client.
248  * @param[in] sptr Client requesting statistics.
249  * @param[in] sd Stats descriptor for request (ignored).
250  * @param[in] param Extra parameter from user (ignored).
251  */
252 void
253 report_classes(struct Client *sptr, const struct StatDesc *sd,
254                char *param)
255 {
256   struct ConnectionClass *cltmp;
257
258   for (cltmp = connClassList; cltmp; cltmp = cltmp->next)
259     send_reply(sptr, RPL_STATSYLINE, 'Y', ConClass(cltmp), PingFreq(cltmp),
260                ConFreq(cltmp), MaxLinks(cltmp), MaxSendq(cltmp),
261                Links(cltmp) - 1);
262 }
263
264 /** Return maximum SendQ length for a client.
265  * @param[in] cptr Local client to check.
266  * @return Number of bytes allowed in SendQ for \a cptr.
267  */
268 unsigned int
269 get_sendq(struct Client *cptr)
270 {
271   assert(0 != cptr);
272   assert(0 != cli_local(cptr));
273
274   if (cli_max_sendq(cptr))
275     return cli_max_sendq(cptr);
276
277   else if (cli_confs(cptr)) {
278     struct SLink*     tmp;
279     struct ConnectionClass* cl;
280
281     for (tmp = cli_confs(cptr); tmp; tmp = tmp->next) {
282       if (!tmp->value.aconf || !(cl = tmp->value.aconf->conn_class))
283         continue;
284       if (ConClass(cl) != NULL) {
285         cli_max_sendq(cptr) = MaxSendq(cl);
286         return cli_max_sendq(cptr);
287       }
288     }
289   }
290   return feature_int(FEAT_DEFAULTMAXSENDQLENGTH);
291 }
292
293 /** Report connection class memory statistics to a client.
294  * Send number of classes and number of bytes allocated for them.
295  * @param[in] cptr Client requesting statistics.
296  */
297 void class_send_meminfo(struct Client* cptr)
298 {
299   send_reply(cptr, SND_EXPLICIT | RPL_STATSDEBUG, ":Classes: inuse: %d(%d)",
300              connClassAllocCount,
301              connClassAllocCount * sizeof(struct ConnectionClass));
302 }
303
304