1 |
|
/* |
2 |
|
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
|
* |
4 |
< |
* Copyright (c) 1997-2015 ircd-hybrid development team |
4 |
> |
* Copyright (c) 1997-2018 ircd-hybrid development team |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
27 |
|
#include "stdinc.h" |
28 |
|
#include "list.h" |
29 |
|
#include "ircd_defs.h" |
30 |
+ |
#include "parse.h" |
31 |
|
#include "conf.h" |
32 |
+ |
#include "conf_cluster.h" |
33 |
+ |
#include "conf_gecos.h" |
34 |
|
#include "conf_pseudo.h" |
35 |
+ |
#include "conf_resv.h" |
36 |
+ |
#include "conf_service.h" |
37 |
+ |
#include "conf_shared.h" |
38 |
|
#include "server.h" |
33 |
– |
#include "resv.h" |
39 |
|
#include "channel.h" |
40 |
|
#include "client.h" |
41 |
|
#include "event.h" |
51 |
|
#include "send.h" |
52 |
|
#include "memory.h" |
53 |
|
#include "res.h" |
49 |
– |
#include "userhost.h" |
54 |
|
#include "user.h" |
55 |
|
#include "channel_mode.h" |
52 |
– |
#include "parse.h" |
56 |
|
#include "misc.h" |
57 |
|
#include "conf_db.h" |
58 |
|
#include "conf_class.h" |
59 |
|
#include "motd.h" |
60 |
|
#include "ipcache.h" |
61 |
|
#include "isupport.h" |
62 |
+ |
#include "whowas.h" |
63 |
|
|
64 |
|
|
65 |
|
struct config_channel_entry ConfigChannel; |
71 |
|
struct conf_parser_context conf_parser_ctx; |
72 |
|
|
73 |
|
/* general conf items link list root, other than k lines etc. */ |
74 |
< |
dlink_list service_items; |
75 |
< |
dlink_list server_items; |
72 |
< |
dlink_list cluster_items; |
73 |
< |
dlink_list oconf_items; |
74 |
< |
dlink_list uconf_items; |
75 |
< |
dlink_list xconf_items; |
76 |
< |
dlink_list nresv_items; |
77 |
< |
dlink_list cresv_items; |
74 |
> |
dlink_list connect_items; |
75 |
> |
dlink_list operator_items; |
76 |
|
|
77 |
|
extern unsigned int lineno; |
78 |
|
extern char linebuf[]; |
134 |
|
{ |
135 |
|
switch (type) |
136 |
|
{ |
139 |
– |
case CONF_XLINE: |
140 |
– |
return &xconf_items; |
141 |
– |
break; |
142 |
– |
case CONF_ULINE: |
143 |
– |
return &uconf_items; |
144 |
– |
break; |
145 |
– |
case CONF_NRESV: |
146 |
– |
return &nresv_items; |
147 |
– |
break; |
148 |
– |
case CONF_CRESV: |
149 |
– |
return &cresv_items; |
150 |
– |
break; |
137 |
|
case CONF_OPER: |
138 |
< |
return &oconf_items; |
138 |
> |
return &operator_items; |
139 |
|
break; |
140 |
|
case CONF_SERVER: |
141 |
< |
return &server_items; |
156 |
< |
break; |
157 |
< |
case CONF_SERVICE: |
158 |
< |
return &service_items; |
159 |
< |
break; |
160 |
< |
case CONF_CLUSTER: |
161 |
< |
return &cluster_items; |
141 |
> |
return &connect_items; |
142 |
|
break; |
143 |
|
default: |
144 |
|
return NULL; |
148 |
|
struct MaskItem * |
149 |
|
conf_make(enum maskitem_type type) |
150 |
|
{ |
151 |
< |
struct MaskItem *const conf = MyCalloc(sizeof(*conf)); |
151 |
> |
struct MaskItem *const conf = xcalloc(sizeof(*conf)); |
152 |
|
dlink_list *list = NULL; |
153 |
|
|
154 |
|
conf->type = type; |
169 |
|
if ((list = map_to_list(conf->type))) |
170 |
|
dlinkFindDelete(list, conf); |
171 |
|
|
172 |
< |
MyFree(conf->name); |
172 |
> |
xfree(conf->name); |
173 |
|
|
174 |
|
if (conf->dns_pending) |
175 |
|
delete_resolver_queries(conf); |
180 |
|
|
181 |
|
conf->class = NULL; |
182 |
|
|
183 |
< |
MyFree(conf->passwd); |
184 |
< |
MyFree(conf->spasswd); |
185 |
< |
MyFree(conf->reason); |
186 |
< |
MyFree(conf->certfp); |
187 |
< |
MyFree(conf->whois); |
188 |
< |
MyFree(conf->user); |
189 |
< |
MyFree(conf->host); |
190 |
< |
#ifdef HAVE_LIBCRYPTO |
191 |
< |
MyFree(conf->cipher_list); |
212 |
< |
|
213 |
< |
if (conf->rsa_public_key) |
214 |
< |
RSA_free(conf->rsa_public_key); |
215 |
< |
#endif |
183 |
> |
xfree(conf->passwd); |
184 |
> |
xfree(conf->spasswd); |
185 |
> |
xfree(conf->reason); |
186 |
> |
xfree(conf->certfp); |
187 |
> |
xfree(conf->whois); |
188 |
> |
xfree(conf->user); |
189 |
> |
xfree(conf->host); |
190 |
> |
xfree(conf->cipher_list); |
191 |
> |
|
192 |
|
DLINK_FOREACH_SAFE(node, node_next, conf->hub_list.head) |
193 |
|
{ |
194 |
< |
MyFree(node->data); |
194 |
> |
xfree(node->data); |
195 |
|
dlinkDelete(node, &conf->hub_list); |
196 |
|
free_dlink_node(node); |
197 |
|
} |
198 |
|
|
199 |
|
DLINK_FOREACH_SAFE(node, node_next, conf->leaf_list.head) |
200 |
|
{ |
201 |
< |
MyFree(node->data); |
201 |
> |
xfree(node->data); |
202 |
|
dlinkDelete(node, &conf->leaf_list); |
203 |
|
free_dlink_node(node); |
204 |
|
} |
205 |
|
|
206 |
< |
DLINK_FOREACH_SAFE(node, node_next, conf->exempt_list.head) |
231 |
< |
{ |
232 |
< |
struct exempt *exptr = node->data; |
233 |
< |
|
234 |
< |
dlinkDelete(node, &conf->exempt_list); |
235 |
< |
MyFree(exptr->name); |
236 |
< |
MyFree(exptr->user); |
237 |
< |
MyFree(exptr->host); |
238 |
< |
MyFree(exptr); |
239 |
< |
} |
240 |
< |
|
241 |
< |
MyFree(conf); |
206 |
> |
xfree(conf); |
207 |
|
} |
208 |
|
|
209 |
|
/* attach_iline() |
217 |
|
attach_iline(struct Client *client_p, struct MaskItem *conf) |
218 |
|
{ |
219 |
|
const struct ClassItem *const class = conf->class; |
255 |
– |
struct ip_entry *ip_found; |
220 |
|
int a_limit_reached = 0; |
257 |
– |
unsigned int local = 0, global = 0, ident = 0; |
221 |
|
|
222 |
< |
ip_found = ipcache_find_or_add_address(&client_p->connection->ip); |
223 |
< |
ip_found->count++; |
222 |
> |
struct ip_entry *ipcache = ipcache_record_find_or_add(&client_p->ip); |
223 |
> |
++ipcache->count_local; |
224 |
|
AddFlag(client_p, FLAGS_IPHASH); |
225 |
|
|
263 |
– |
userhost_count(client_p->username, client_p->host, |
264 |
– |
&global, &local, &ident); |
265 |
– |
|
266 |
– |
/* XXX blah. go down checking the various silly limits |
267 |
– |
* setting a_limit_reached if any limit is reached. |
268 |
– |
* - Dianora |
269 |
– |
*/ |
226 |
|
if (class->max_total && class->ref_count >= class->max_total) |
227 |
|
a_limit_reached = 1; |
228 |
< |
else if (class->max_perip && ip_found->count > class->max_perip) |
228 |
> |
else if (class->max_perip_local && ipcache->count_local > class->max_perip_local) |
229 |
|
a_limit_reached = 1; |
230 |
< |
else if (class->max_local && local >= class->max_local) |
231 |
< |
a_limit_reached = 1; |
276 |
< |
else if (class->max_global && global >= class->max_global) |
277 |
< |
a_limit_reached = 1; |
278 |
< |
else if (class->max_ident && ident >= class->max_ident && |
279 |
< |
client_p->username[0] != '~') |
230 |
> |
else if (class->max_perip_global && |
231 |
> |
(ipcache->count_local + ipcache->count_remote) > class->max_perip_global) |
232 |
|
a_limit_reached = 1; |
233 |
|
|
234 |
|
if (a_limit_reached) |
240 |
|
"but you have exceed_limit = yes;"); |
241 |
|
} |
242 |
|
|
243 |
< |
return attach_conf(client_p, conf); |
243 |
> |
return conf_attach(client_p, conf); |
244 |
|
} |
245 |
|
|
246 |
|
/* verify_access() |
257 |
|
if (HasFlag(client_p, FLAGS_GOTID)) |
258 |
|
{ |
259 |
|
conf = find_address_conf(client_p->host, client_p->username, |
260 |
< |
&client_p->connection->ip, |
261 |
< |
client_p->connection->aftype, |
260 |
> |
&client_p->ip, |
261 |
> |
client_p->ip.ss.ss_family, |
262 |
|
client_p->connection->password); |
263 |
|
} |
264 |
|
else |
267 |
|
|
268 |
|
strlcpy(non_ident + 1, client_p->username, sizeof(non_ident) - 1); |
269 |
|
conf = find_address_conf(client_p->host, non_ident, |
270 |
< |
&client_p->connection->ip, |
271 |
< |
client_p->connection->aftype, |
270 |
> |
&client_p->ip, |
271 |
> |
client_p->ip.ss.ss_family, |
272 |
|
client_p->connection->password); |
273 |
|
} |
274 |
|
|
330 |
|
case TOO_MANY: |
331 |
|
sendto_realops_flags(UMODE_FULL, L_ALL, SEND_NOTICE, |
332 |
|
"Too many on IP for %s (%s).", |
333 |
< |
get_client_name(source_p, SHOW_IP), |
333 |
> |
client_get_name(source_p, SHOW_IP), |
334 |
|
source_p->sockhost); |
335 |
|
ilog(LOG_TYPE_IRCD, "Too many connections on IP from %s.", |
336 |
< |
get_client_name(source_p, SHOW_IP)); |
336 |
> |
client_get_name(source_p, SHOW_IP)); |
337 |
|
++ServerStats.is_ref; |
338 |
|
exit_client(source_p, "No more connections allowed on that IP"); |
339 |
|
break; |
341 |
|
case I_LINE_FULL: |
342 |
|
sendto_realops_flags(UMODE_FULL, L_ALL, SEND_NOTICE, |
343 |
|
"auth {} block is full for %s (%s).", |
344 |
< |
get_client_name(source_p, SHOW_IP), |
344 |
> |
client_get_name(source_p, SHOW_IP), |
345 |
|
source_p->sockhost); |
346 |
|
ilog(LOG_TYPE_IRCD, "Too many connections from %s.", |
347 |
< |
get_client_name(source_p, SHOW_IP)); |
347 |
> |
client_get_name(source_p, SHOW_IP)); |
348 |
|
++ServerStats.is_ref; |
349 |
|
exit_client(source_p, "No more connections allowed in your connection class"); |
350 |
|
break; |
353 |
|
/* jdc - lists server name & port connections are on */ |
354 |
|
/* a purely cosmetical change */ |
355 |
|
sendto_realops_flags(UMODE_UNAUTH, L_ALL, SEND_NOTICE, |
356 |
< |
"Unauthorized client connection from %s [%s] on [%s/%u].", |
357 |
< |
get_client_name(source_p, SHOW_IP), |
406 |
< |
source_p->sockhost, |
356 |
> |
"Unauthorized client connection from %s on [%s/%u].", |
357 |
> |
client_get_name(source_p, SHOW_IP), |
358 |
|
source_p->connection->listener->name, |
359 |
|
source_p->connection->listener->port); |
360 |
|
ilog(LOG_TYPE_IRCD, "Unauthorized client connection from %s on [%s/%u].", |
361 |
< |
get_client_name(source_p, SHOW_IP), |
361 |
> |
client_get_name(source_p, SHOW_IP), |
362 |
|
source_p->connection->listener->name, |
363 |
|
source_p->connection->listener->port); |
364 |
|
|
379 |
|
return !(i < 0); |
380 |
|
} |
381 |
|
|
382 |
< |
/* detach_conf() |
383 |
< |
* |
384 |
< |
* inputs - pointer to client to detach |
385 |
< |
* - type of conf to detach |
435 |
< |
* output - 0 for success, -1 for failure |
436 |
< |
* side effects - Disassociate configuration from the client. |
437 |
< |
* Also removes a class from the list if marked for deleting. |
382 |
> |
/*! \brief Disassociate configuration from the client. Also removes a class |
383 |
> |
* from the list if marked for deleting. |
384 |
> |
* \param client_p Client to operate on |
385 |
> |
* \param type Type of conf to detach |
386 |
|
*/ |
387 |
|
void |
388 |
< |
detach_conf(struct Client *client_p, enum maskitem_type type) |
388 |
> |
conf_detach(struct Client *client_p, enum maskitem_type type) |
389 |
|
{ |
390 |
< |
dlink_node *node = NULL, *node_next = NULL; |
390 |
> |
dlink_node *node, *node_next; |
391 |
|
|
392 |
|
DLINK_FOREACH_SAFE(node, node_next, client_p->connection->confs.head) |
393 |
|
{ |
404 |
|
free_dlink_node(node); |
405 |
|
|
406 |
|
if (conf->type == CONF_CLIENT) |
407 |
< |
remove_from_cidr_check(&client_p->connection->ip, conf->class); |
407 |
> |
remove_from_cidr_check(&client_p->ip, conf->class); |
408 |
|
|
409 |
|
if (--conf->class->ref_count == 0 && conf->class->active == 0) |
410 |
|
{ |
417 |
|
} |
418 |
|
} |
419 |
|
|
420 |
< |
/* attach_conf() |
421 |
< |
* |
422 |
< |
* inputs - client pointer |
423 |
< |
* - conf pointer |
424 |
< |
* output - |
477 |
< |
* side effects - Associate a specific configuration entry to a *local* |
478 |
< |
* client (this is the one which used in accepting the |
479 |
< |
* connection). Note, that this automatically changes the |
480 |
< |
* attachment if there was an old one... |
420 |
> |
/*! \brief Associate a specific configuration entry to a *local* client (this |
421 |
> |
* is the one which used in accepting the connection). Note, that this |
422 |
> |
* automatically changes the attachment if there was an old one. |
423 |
> |
* \param client_p Client to attach the conf to |
424 |
> |
* \param conf Configuration record to attach |
425 |
|
*/ |
426 |
|
int |
427 |
< |
attach_conf(struct Client *client_p, struct MaskItem *conf) |
427 |
> |
conf_attach(struct Client *client_p, struct MaskItem *conf) |
428 |
|
{ |
429 |
|
if (dlinkFind(&client_p->connection->confs, conf)) |
430 |
|
return 1; |
431 |
|
|
432 |
|
if (conf->type == CONF_CLIENT) |
433 |
|
if (cidr_limit_reached(IsConfExemptLimits(conf), |
434 |
< |
&client_p->connection->ip, conf->class)) |
434 |
> |
&client_p->ip, conf->class)) |
435 |
|
return TOO_MANY; /* Already at maximum allowed */ |
436 |
|
|
437 |
|
conf->class->ref_count++; |
442 |
|
return 0; |
443 |
|
} |
444 |
|
|
501 |
– |
/* attach_connect_block() |
502 |
– |
* |
503 |
– |
* inputs - pointer to server to attach |
504 |
– |
* - name of server |
505 |
– |
* - hostname of server |
506 |
– |
* output - true (1) if both are found, otherwise return false (0) |
507 |
– |
* side effects - find connect block and attach them to connecting client |
508 |
– |
*/ |
509 |
– |
int |
510 |
– |
attach_connect_block(struct Client *client_p, const char *name, |
511 |
– |
const char *host) |
512 |
– |
{ |
513 |
– |
dlink_node *node = NULL; |
514 |
– |
|
515 |
– |
assert(host); |
516 |
– |
|
517 |
– |
DLINK_FOREACH(node, server_items.head) |
518 |
– |
{ |
519 |
– |
struct MaskItem *conf = node->data; |
520 |
– |
|
521 |
– |
if (match(conf->name, name) || match(conf->host, host)) |
522 |
– |
continue; |
523 |
– |
|
524 |
– |
attach_conf(client_p, conf); |
525 |
– |
return 1; |
526 |
– |
} |
527 |
– |
|
528 |
– |
return 0; |
529 |
– |
} |
530 |
– |
|
445 |
|
/* find_conf_name() |
446 |
|
* |
447 |
|
* inputs - pointer to conf link list to search |
470 |
|
return NULL; |
471 |
|
} |
472 |
|
|
473 |
< |
/* find_matching_name_conf() |
474 |
< |
* |
475 |
< |
* inputs - type of link list to look in |
562 |
< |
* - pointer to name string to find |
563 |
< |
* - pointer to user |
564 |
< |
* - pointer to host |
565 |
< |
* - optional flags to match on as well |
566 |
< |
* output - NULL or pointer to found struct MaskItem |
567 |
< |
* side effects - looks for a match on name field |
473 |
> |
/*! \brief Find a connect {} conf that has a name that matches \a name. |
474 |
> |
* \param name Name to match |
475 |
> |
* \param compare Pointer to function to be used for string matching |
476 |
|
*/ |
477 |
|
struct MaskItem * |
478 |
< |
find_matching_name_conf(enum maskitem_type type, const char *name, const char *user, |
571 |
< |
const char *host, unsigned int flags) |
478 |
> |
connect_find(const char *name, int (*compare)(const char *, const char *)) |
479 |
|
{ |
480 |
< |
dlink_node *node = NULL; |
574 |
< |
dlink_list *list = map_to_list(type); |
575 |
< |
struct MaskItem *conf = NULL; |
480 |
> |
dlink_node *node; |
481 |
|
|
482 |
< |
switch (type) |
482 |
> |
DLINK_FOREACH(node, connect_items.head) |
483 |
|
{ |
484 |
< |
case CONF_SERVICE: |
580 |
< |
DLINK_FOREACH(node, list->head) |
581 |
< |
{ |
582 |
< |
conf = node->data; |
583 |
< |
|
584 |
< |
if (EmptyString(conf->name)) |
585 |
< |
continue; |
586 |
< |
if (name && !irccmp(name, conf->name)) |
587 |
< |
return conf; |
588 |
< |
} |
589 |
< |
break; |
590 |
< |
|
591 |
< |
case CONF_XLINE: |
592 |
< |
case CONF_ULINE: |
593 |
< |
case CONF_NRESV: |
594 |
< |
case CONF_CRESV: |
595 |
< |
DLINK_FOREACH(node, list->head) |
596 |
< |
{ |
597 |
< |
conf = node->data; |
598 |
< |
|
599 |
< |
if (EmptyString(conf->name)) |
600 |
< |
continue; |
601 |
< |
if (name && !match(conf->name, name)) |
602 |
< |
{ |
603 |
< |
if ((user == NULL && (host == NULL))) |
604 |
< |
return conf; |
605 |
< |
if ((conf->flags & flags) != flags) |
606 |
< |
continue; |
607 |
< |
if (EmptyString(conf->user) || EmptyString(conf->host)) |
608 |
< |
return conf; |
609 |
< |
if (!match(conf->user, user) && !match(conf->host, host)) |
610 |
< |
return conf; |
611 |
< |
} |
612 |
< |
} |
613 |
< |
break; |
614 |
< |
|
615 |
< |
case CONF_SERVER: |
616 |
< |
DLINK_FOREACH(node, list->head) |
617 |
< |
{ |
618 |
< |
conf = node->data; |
619 |
< |
|
620 |
< |
if (name && !match(name, conf->name)) |
621 |
< |
return conf; |
622 |
< |
if (host && !match(host, conf->host)) |
623 |
< |
return conf; |
624 |
< |
} |
625 |
< |
break; |
484 |
> |
struct MaskItem *conf = node->data; |
485 |
|
|
486 |
< |
default: |
487 |
< |
break; |
486 |
> |
if (!compare(name, conf->name)) |
487 |
> |
return conf; |
488 |
|
} |
489 |
+ |
|
490 |
|
return NULL; |
491 |
|
} |
492 |
|
|
500 |
|
* side effects - looks for an exact match on name field |
501 |
|
*/ |
502 |
|
struct MaskItem * |
503 |
< |
find_exact_name_conf(enum maskitem_type type, const struct Client *who, const char *name, |
644 |
< |
const char *user, const char *host) |
503 |
> |
operator_find(const struct Client *who, const char *name) |
504 |
|
{ |
505 |
|
dlink_node *node = NULL; |
647 |
– |
dlink_list *list = map_to_list(type); |
648 |
– |
struct MaskItem *conf = NULL; |
506 |
|
|
507 |
< |
switch(type) |
507 |
> |
DLINK_FOREACH(node, operator_items.head) |
508 |
|
{ |
509 |
< |
case CONF_XLINE: |
653 |
< |
case CONF_ULINE: |
654 |
< |
case CONF_NRESV: |
655 |
< |
case CONF_CRESV: |
656 |
< |
|
657 |
< |
DLINK_FOREACH(node, list->head) |
658 |
< |
{ |
659 |
< |
conf = node->data; |
660 |
< |
|
661 |
< |
if (EmptyString(conf->name)) |
662 |
< |
continue; |
663 |
< |
|
664 |
< |
if (irccmp(conf->name, name) == 0) |
665 |
< |
{ |
666 |
< |
if ((user == NULL && (host == NULL))) |
667 |
< |
return conf; |
668 |
< |
if (EmptyString(conf->user) || EmptyString(conf->host)) |
669 |
< |
return conf; |
670 |
< |
if (!match(conf->user, user) && !match(conf->host, host)) |
671 |
< |
return conf; |
672 |
< |
} |
673 |
< |
} |
674 |
< |
break; |
509 |
> |
struct MaskItem *conf = node->data; |
510 |
|
|
511 |
< |
case CONF_OPER: |
677 |
< |
DLINK_FOREACH(node, list->head) |
511 |
> |
if (!irccmp(conf->name, name)) |
512 |
|
{ |
513 |
< |
conf = node->data; |
514 |
< |
|
681 |
< |
if (EmptyString(conf->name)) |
682 |
< |
continue; |
513 |
> |
if (!who) |
514 |
> |
return conf; |
515 |
|
|
516 |
< |
if (!irccmp(conf->name, name)) |
516 |
> |
if (!match(conf->user, who->username)) |
517 |
|
{ |
518 |
< |
if (!who) |
687 |
< |
return conf; |
688 |
< |
if (EmptyString(conf->user) || EmptyString(conf->host)) |
689 |
< |
return NULL; |
690 |
< |
if (!match(conf->user, who->username)) |
518 |
> |
switch (conf->htype) |
519 |
|
{ |
520 |
< |
switch (conf->htype) |
521 |
< |
{ |
522 |
< |
case HM_HOST: |
523 |
< |
if (!match(conf->host, who->host) || !match(conf->host, who->sockhost)) |
520 |
> |
case HM_HOST: |
521 |
> |
if (!match(conf->host, who->host) || !match(conf->host, who->sockhost)) |
522 |
> |
if (!conf->class->max_total || conf->class->ref_count < conf->class->max_total) |
523 |
> |
return conf; |
524 |
> |
break; |
525 |
> |
case HM_IPV4: |
526 |
> |
if (who->ip.ss.ss_family == AF_INET) |
527 |
> |
if (match_ipv4(&who->ip, &conf->addr, conf->bits)) |
528 |
> |
if (!conf->class->max_total || conf->class->ref_count < conf->class->max_total) |
529 |
> |
return conf; |
530 |
> |
break; |
531 |
> |
case HM_IPV6: |
532 |
> |
if (who->ip.ss.ss_family == AF_INET6) |
533 |
> |
if (match_ipv6(&who->ip, &conf->addr, conf->bits)) |
534 |
|
if (!conf->class->max_total || conf->class->ref_count < conf->class->max_total) |
535 |
|
return conf; |
536 |
< |
break; |
537 |
< |
case HM_IPV4: |
538 |
< |
if (who->connection->aftype == AF_INET) |
701 |
< |
if (match_ipv4(&who->connection->ip, &conf->addr, conf->bits)) |
702 |
< |
if (!conf->class->max_total || conf->class->ref_count < conf->class->max_total) |
703 |
< |
return conf; |
704 |
< |
break; |
705 |
< |
case HM_IPV6: |
706 |
< |
if (who->connection->aftype == AF_INET6) |
707 |
< |
if (match_ipv6(&who->connection->ip, &conf->addr, conf->bits)) |
708 |
< |
if (!conf->class->max_total || conf->class->ref_count < conf->class->max_total) |
709 |
< |
return conf; |
710 |
< |
break; |
711 |
< |
default: |
712 |
< |
assert(0); |
713 |
< |
} |
536 |
> |
break; |
537 |
> |
default: |
538 |
> |
assert(0); |
539 |
|
} |
540 |
|
} |
541 |
|
} |
717 |
– |
|
718 |
– |
break; |
719 |
– |
|
720 |
– |
case CONF_SERVER: |
721 |
– |
DLINK_FOREACH(node, list->head) |
722 |
– |
{ |
723 |
– |
conf = node->data; |
724 |
– |
|
725 |
– |
if (EmptyString(conf->name)) |
726 |
– |
continue; |
727 |
– |
|
728 |
– |
if (name == NULL) |
729 |
– |
{ |
730 |
– |
if (EmptyString(conf->host)) |
731 |
– |
continue; |
732 |
– |
if (irccmp(conf->host, host) == 0) |
733 |
– |
return conf; |
734 |
– |
} |
735 |
– |
else if (irccmp(conf->name, name) == 0) |
736 |
– |
return conf; |
737 |
– |
} |
738 |
– |
|
739 |
– |
break; |
740 |
– |
|
741 |
– |
default: |
742 |
– |
break; |
542 |
|
} |
543 |
|
|
544 |
|
return NULL; |
561 |
|
*/ |
562 |
|
assert(class_default == class_get_list()->tail->data); |
563 |
|
|
765 |
– |
#ifdef HAVE_LIBCRYPTO |
766 |
– |
#if OPENSSL_VERSION_NUMBER >= 0x009080FFL && !defined(OPENSSL_NO_ECDH) |
767 |
– |
{ |
768 |
– |
EC_KEY *key = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1); |
769 |
– |
|
770 |
– |
if (key) |
771 |
– |
{ |
772 |
– |
SSL_CTX_set_tmp_ecdh(ConfigServerInfo.server_ctx, key); |
773 |
– |
EC_KEY_free(key); |
774 |
– |
} |
775 |
– |
} |
776 |
– |
|
777 |
– |
SSL_CTX_set_options(ConfigServerInfo.server_ctx, SSL_OP_SINGLE_ECDH_USE); |
778 |
– |
#endif |
779 |
– |
|
780 |
– |
SSL_CTX_set_cipher_list(ConfigServerInfo.server_ctx, "EECDH+HIGH:EDH+HIGH:HIGH:!aNULL"); |
781 |
– |
ConfigServerInfo.message_digest_algorithm = EVP_sha256(); |
782 |
– |
ConfigServerInfo.rsa_private_key = NULL; |
783 |
– |
ConfigServerInfo.rsa_private_key_file = NULL; |
784 |
– |
#endif |
785 |
– |
|
786 |
– |
/* ConfigServerInfo.name is not rehashable */ |
787 |
– |
/* ConfigServerInfo.name = ConfigServerInfo.name; */ |
788 |
– |
ConfigServerInfo.description = NULL; |
564 |
|
ConfigServerInfo.network_name = xstrdup(NETWORK_NAME_DEFAULT); |
565 |
|
ConfigServerInfo.network_desc = xstrdup(NETWORK_DESC_DEFAULT); |
566 |
|
|
574 |
|
ConfigServerInfo.max_topic_length = 80; |
575 |
|
ConfigServerInfo.hub = 0; |
576 |
|
|
577 |
< |
ConfigAdminInfo.name = NULL; |
803 |
< |
ConfigAdminInfo.email = NULL; |
804 |
< |
ConfigAdminInfo.description = NULL; |
805 |
< |
|
806 |
< |
log_del_all(); |
577 |
> |
log_iterate(log_free); |
578 |
|
|
579 |
|
ConfigLog.use_logging = 1; |
580 |
|
|
581 |
|
ConfigChannel.disable_fake_channels = 0; |
582 |
|
ConfigChannel.invite_client_count = 10; |
583 |
|
ConfigChannel.invite_client_time = 300; |
584 |
+ |
ConfigChannel.invite_delay_channel = 5; |
585 |
+ |
ConfigChannel.invite_expire_time = 1800; |
586 |
|
ConfigChannel.knock_client_count = 1; |
587 |
|
ConfigChannel.knock_client_time = 300; |
588 |
|
ConfigChannel.knock_delay_channel = 60; |
589 |
|
ConfigChannel.max_channels = 25; |
590 |
< |
ConfigChannel.max_bans = 25; |
590 |
> |
ConfigChannel.max_invites = 20; |
591 |
> |
ConfigChannel.max_bans = 100; |
592 |
> |
ConfigChannel.max_bans_large = 500; |
593 |
|
ConfigChannel.default_join_flood_count = 18; |
594 |
|
ConfigChannel.default_join_flood_time = 6; |
595 |
|
|
596 |
|
ConfigServerHide.flatten_links = 0; |
597 |
< |
ConfigServerHide.links_delay = 300; |
597 |
> |
ConfigServerHide.flatten_links_delay = 300; |
598 |
|
ConfigServerHide.hidden = 0; |
599 |
|
ConfigServerHide.hide_servers = 0; |
600 |
|
ConfigServerHide.hide_services = 0; |
604 |
|
|
605 |
|
ConfigGeneral.away_count = 2; |
606 |
|
ConfigGeneral.away_time = 10; |
607 |
< |
ConfigGeneral.max_watch = WATCHSIZE_DEFAULT; |
607 |
> |
ConfigGeneral.max_watch = 50; |
608 |
> |
ConfigGeneral.whowas_history_length = 15000; |
609 |
|
ConfigGeneral.cycle_on_host_change = 1; |
610 |
|
ConfigGeneral.dline_min_cidr = 16; |
611 |
|
ConfigGeneral.dline_min_cidr6 = 48; |
617 |
|
ConfigGeneral.disable_auth = 0; |
618 |
|
ConfigGeneral.kill_chase_time_limit = 90; |
619 |
|
ConfigGeneral.default_floodcount = 8; |
620 |
+ |
ConfigGeneral.default_floodtime = 1; |
621 |
|
ConfigGeneral.failed_oper_notice = 1; |
622 |
|
ConfigGeneral.dots_in_ident = 0; |
623 |
|
ConfigGeneral.min_nonwildcard = 4; |
624 |
|
ConfigGeneral.min_nonwildcard_simple = 3; |
625 |
< |
ConfigGeneral.max_accept = 20; |
625 |
> |
ConfigGeneral.max_accept = 50; |
626 |
|
ConfigGeneral.anti_nick_flood = 0; |
627 |
|
ConfigGeneral.max_nick_time = 20; |
628 |
|
ConfigGeneral.max_nick_changes = 5; |
629 |
|
ConfigGeneral.anti_spam_exit_message_time = 0; |
630 |
< |
ConfigGeneral.ts_warn_delta = TS_WARN_DELTA_DEFAULT; |
631 |
< |
ConfigGeneral.ts_max_delta = TS_MAX_DELTA_DEFAULT; |
630 |
> |
ConfigGeneral.ts_warn_delta = 30; |
631 |
> |
ConfigGeneral.ts_max_delta = 600; |
632 |
|
ConfigGeneral.warn_no_connect_block = 1; |
633 |
|
ConfigGeneral.stats_e_disabled = 0; |
634 |
|
ConfigGeneral.stats_i_oper_only = 1; /* 1 = masked */ |
638 |
|
ConfigGeneral.stats_P_oper_only = 0; |
639 |
|
ConfigGeneral.stats_u_oper_only = 0; |
640 |
|
ConfigGeneral.caller_id_wait = 60; |
641 |
< |
ConfigGeneral.opers_bypass_callerid = 0; |
641 |
> |
ConfigGeneral.opers_bypass_callerid = 1; |
642 |
|
ConfigGeneral.pace_wait = 10; |
643 |
|
ConfigGeneral.pace_wait_simple = 1; |
644 |
|
ConfigGeneral.short_motd = 0; |
645 |
|
ConfigGeneral.ping_cookie = 0; |
646 |
|
ConfigGeneral.no_oper_flood = 0; |
870 |
– |
ConfigGeneral.oper_pass_resv = 1; |
647 |
|
ConfigGeneral.max_targets = MAX_TARGETS_DEFAULT; |
648 |
|
ConfigGeneral.oper_only_umodes = UMODE_DEBUG | UMODE_LOCOPS | UMODE_HIDDEN | UMODE_FARCONNECT | |
649 |
|
UMODE_UNAUTH | UMODE_EXTERNAL | UMODE_BOTS | UMODE_NCHANGE | |
656 |
|
static void |
657 |
|
validate_conf(void) |
658 |
|
{ |
883 |
– |
if (ConfigGeneral.ts_warn_delta < TS_WARN_DELTA_MIN) |
884 |
– |
ConfigGeneral.ts_warn_delta = TS_WARN_DELTA_DEFAULT; |
885 |
– |
|
886 |
– |
if (ConfigGeneral.ts_max_delta < TS_MAX_DELTA_MIN) |
887 |
– |
ConfigGeneral.ts_max_delta = TS_MAX_DELTA_DEFAULT; |
888 |
– |
|
659 |
|
if (EmptyString(ConfigServerInfo.network_name)) |
660 |
|
ConfigServerInfo.network_name = xstrdup(NETWORK_NAME_DEFAULT); |
661 |
|
|
662 |
|
if (EmptyString(ConfigServerInfo.network_desc)) |
663 |
|
ConfigServerInfo.network_desc = xstrdup(NETWORK_DESC_DEFAULT); |
894 |
– |
|
895 |
– |
ConfigGeneral.max_watch = IRCD_MAX(ConfigGeneral.max_watch, WATCHSIZE_MIN); |
664 |
|
} |
665 |
|
|
666 |
|
/* read_conf() |
672 |
|
static void |
673 |
|
read_conf(FILE *file) |
674 |
|
{ |
675 |
< |
lineno = 0; |
675 |
> |
lineno = 1; |
676 |
|
|
677 |
|
set_default_conf(); /* Set default values prior to conf parsing */ |
678 |
|
conf_parser_ctx.pass = 1; |
684 |
|
yyparse(); /* Load the values from the conf */ |
685 |
|
validate_conf(); /* Check to make sure some values are still okay. */ |
686 |
|
/* Some global values are also loaded here. */ |
687 |
+ |
whowas_trim(); /* Attempt to trim whowas list if necessary */ |
688 |
|
class_delete_marked(); /* Delete unused classes that are marked for deletion */ |
689 |
|
} |
690 |
|
|
698 |
|
conf_rehash(int sig) |
699 |
|
{ |
700 |
|
if (sig) |
701 |
+ |
{ |
702 |
|
sendto_realops_flags(UMODE_SERVNOTICE, L_ALL, SEND_NOTICE, |
703 |
|
"Got signal SIGHUP, reloading configuration file(s)"); |
704 |
+ |
ilog(LOG_TYPE_IRCD, "Got signal SIGHUP, reloading configuration file(s)"); |
705 |
+ |
} |
706 |
|
|
707 |
|
restart_resolver(); |
708 |
|
|
762 |
|
conf_connect_allowed(struct irc_ssaddr *addr, int aftype) |
763 |
|
{ |
764 |
|
struct ip_entry *ip_found = NULL; |
765 |
< |
struct MaskItem *const conf = find_dline_conf(addr, aftype); |
994 |
< |
|
995 |
< |
/* DLINE exempt also gets you out of static limits/pacing... */ |
996 |
< |
if (conf && (conf->type == CONF_EXEMPT)) |
997 |
< |
return 0; |
765 |
> |
const struct MaskItem *conf = find_dline_conf(addr, aftype); |
766 |
|
|
767 |
|
if (conf) |
768 |
+ |
{ |
769 |
+ |
/* DLINE exempt also gets you out of static limits/pacing... */ |
770 |
+ |
if (conf->type == CONF_EXEMPT) |
771 |
+ |
return 0; |
772 |
|
return BANNED_CLIENT; |
773 |
+ |
} |
774 |
|
|
775 |
< |
ip_found = ipcache_find_or_add_address(addr); |
775 |
> |
ip_found = ipcache_record_find_or_add(addr); |
776 |
|
|
777 |
|
if ((CurrentTime - ip_found->last_attempt) < ConfigGeneral.throttle_time) |
778 |
|
{ |
788 |
|
return 0; |
789 |
|
} |
790 |
|
|
1018 |
– |
/* expire_tklines() |
1019 |
– |
* |
1020 |
– |
* inputs - tkline list pointer |
1021 |
– |
* output - NONE |
1022 |
– |
* side effects - expire tklines |
1023 |
– |
*/ |
1024 |
– |
static void |
1025 |
– |
expire_tklines(dlink_list *list) |
1026 |
– |
{ |
1027 |
– |
dlink_node *node = NULL, *node_next = NULL; |
1028 |
– |
|
1029 |
– |
DLINK_FOREACH_SAFE(node, node_next, list->head) |
1030 |
– |
{ |
1031 |
– |
struct MaskItem *conf = node->data; |
1032 |
– |
|
1033 |
– |
if (!conf->until || conf->until > CurrentTime) |
1034 |
– |
continue; |
1035 |
– |
|
1036 |
– |
if (ConfigGeneral.tkline_expire_notices) |
1037 |
– |
sendto_realops_flags(UMODE_SERVNOTICE, L_ALL, SEND_NOTICE, "Temporary %s for [%s] expired", |
1038 |
– |
(conf->type == CONF_XLINE) ? "X-line" : "RESV", conf->name); |
1039 |
– |
conf_free(conf); |
1040 |
– |
} |
1041 |
– |
} |
1042 |
– |
|
791 |
|
/* cleanup_tklines() |
792 |
|
* |
793 |
|
* inputs - NONE |
799 |
|
cleanup_tklines(void *unused) |
800 |
|
{ |
801 |
|
hostmask_expire_temporary(); |
802 |
< |
expire_tklines(&xconf_items); |
803 |
< |
expire_tklines(&nresv_items); |
1056 |
< |
expire_tklines(&cresv_items); |
802 |
> |
gecos_expire(); |
803 |
> |
resv_expire(); |
804 |
|
} |
805 |
|
|
806 |
|
/* oper_privs_as_string() |
809 |
|
* output - pointer to static string showing oper privs |
810 |
|
* side effects - return as string, the oper privs as derived from port |
811 |
|
*/ |
812 |
< |
static const struct oper_privs |
812 |
> |
static const struct oper_flags |
813 |
|
{ |
814 |
|
const unsigned int flag; |
815 |
|
const unsigned char c; |
816 |
< |
} flag_list[] = { |
816 |
> |
} flag_table[] = { |
817 |
|
{ OPER_FLAG_ADMIN, 'A' }, |
818 |
< |
{ OPER_FLAG_REMOTEBAN, 'B' }, |
819 |
< |
{ OPER_FLAG_DIE, 'D' }, |
820 |
< |
{ OPER_FLAG_REHASH, 'H' }, |
818 |
> |
{ OPER_FLAG_CLOSE, 'B' }, |
819 |
> |
{ OPER_FLAG_CONNECT, 'C' }, |
820 |
> |
{ OPER_FLAG_CONNECT_REMOTE, 'D' }, |
821 |
> |
{ OPER_FLAG_DIE, 'E' }, |
822 |
> |
{ OPER_FLAG_DLINE, 'F' }, |
823 |
> |
{ OPER_FLAG_GLOBOPS, 'G' }, |
824 |
> |
{ OPER_FLAG_JOIN_RESV, 'H' }, |
825 |
> |
{ OPER_FLAG_KILL, 'I' }, |
826 |
> |
{ OPER_FLAG_KILL_REMOTE, 'J' }, |
827 |
|
{ OPER_FLAG_KLINE, 'K' }, |
828 |
< |
{ OPER_FLAG_KILL, 'N' }, |
829 |
< |
{ OPER_FLAG_KILL_REMOTE, 'O' }, |
830 |
< |
{ OPER_FLAG_CONNECT, 'P' }, |
831 |
< |
{ OPER_FLAG_CONNECT_REMOTE, 'Q' }, |
832 |
< |
{ OPER_FLAG_SQUIT, 'R' }, |
833 |
< |
{ OPER_FLAG_SQUIT_REMOTE, 'S' }, |
834 |
< |
{ OPER_FLAG_UNKLINE, 'U' }, |
835 |
< |
{ OPER_FLAG_XLINE, 'X' }, |
828 |
> |
{ OPER_FLAG_LOCOPS, 'L' }, |
829 |
> |
{ OPER_FLAG_MODULE, 'M' }, |
830 |
> |
{ OPER_FLAG_NICK_RESV, 'N' }, |
831 |
> |
{ OPER_FLAG_OPME, 'O' }, |
832 |
> |
{ OPER_FLAG_REHASH, 'P' }, |
833 |
> |
{ OPER_FLAG_REMOTEBAN, 'Q' }, |
834 |
> |
{ OPER_FLAG_RESTART, 'R' }, |
835 |
> |
{ OPER_FLAG_RESV, 'S' }, |
836 |
> |
{ OPER_FLAG_SET, 'T' }, |
837 |
> |
{ OPER_FLAG_SQUIT, 'U' }, |
838 |
> |
{ OPER_FLAG_SQUIT_REMOTE, 'V' }, |
839 |
> |
{ OPER_FLAG_UNDLINE, 'W' }, |
840 |
> |
{ OPER_FLAG_UNKLINE, 'X' }, |
841 |
> |
{ OPER_FLAG_UNRESV, 'Y' }, |
842 |
> |
{ OPER_FLAG_UNXLINE, 'Z' }, |
843 |
> |
{ OPER_FLAG_WALLOPS, 'a' }, |
844 |
> |
{ OPER_FLAG_XLINE, 'b' }, |
845 |
|
{ 0, '\0' } |
846 |
|
}; |
847 |
|
|
848 |
|
const char * |
849 |
< |
oper_privs_as_string(const unsigned int port) |
849 |
> |
oper_privs_as_string(const unsigned int flags) |
850 |
|
{ |
851 |
< |
static char privs_out[IRCD_BUFSIZE]; |
852 |
< |
char *privs_ptr = privs_out; |
851 |
> |
static char buf[sizeof(flag_table) / sizeof(flag_table[0])]; |
852 |
> |
char *p = buf; |
853 |
|
|
854 |
< |
for (const struct oper_privs *opriv = flag_list; opriv->flag; ++opriv) |
855 |
< |
{ |
856 |
< |
if (port & opriv->flag) |
857 |
< |
*privs_ptr++ = opriv->c; |
858 |
< |
else |
859 |
< |
*privs_ptr++ = ToLower(opriv->c); |
1098 |
< |
} |
854 |
> |
for (const struct oper_flags *tab = flag_table; tab->flag; ++tab) |
855 |
> |
if (flags & tab->flag) |
856 |
> |
*p++ = tab->c; |
857 |
> |
|
858 |
> |
if (p == buf) |
859 |
> |
*p++ = '0'; |
860 |
|
|
861 |
< |
*privs_ptr = '\0'; |
861 |
> |
*p = '\0'; |
862 |
|
|
863 |
< |
return privs_out; |
863 |
> |
return buf; |
864 |
|
} |
865 |
|
|
866 |
|
/* |
916 |
|
{ |
917 |
|
dlink_node *node = NULL, *node_next = NULL; |
918 |
|
dlink_list *free_items [] = { |
919 |
< |
&server_items, &oconf_items, |
1159 |
< |
&uconf_items, &xconf_items, |
1160 |
< |
&nresv_items, &cluster_items, &service_items, &cresv_items, NULL |
919 |
> |
&connect_items, &operator_items, NULL |
920 |
|
}; |
921 |
|
|
922 |
|
dlink_list ** iterator = free_items; /* C is dumb */ |
932 |
|
struct MaskItem *conf = node->data; |
933 |
|
|
934 |
|
conf->active = 0; |
935 |
+ |
dlinkDelete(&conf->node, *iterator); |
936 |
|
|
937 |
< |
if (!IsConfDatabase(conf)) |
938 |
< |
{ |
1179 |
< |
dlinkDelete(&conf->node, *iterator); |
1180 |
< |
|
1181 |
< |
if (!conf->ref_count) |
1182 |
< |
conf_free(conf); |
1183 |
< |
} |
937 |
> |
if (!conf->ref_count) |
938 |
> |
conf_free(conf); |
939 |
|
} |
940 |
|
} |
941 |
|
|
1187 |
– |
motd_clear(); |
1188 |
– |
|
942 |
|
/* |
943 |
|
* Don't delete the class table, rather mark all entries for deletion. |
944 |
|
* The table is cleaned up by class_delete_marked. - avalon |
947 |
|
|
948 |
|
clear_out_address_conf(); |
949 |
|
|
950 |
< |
/* Clean out module paths */ |
951 |
< |
mod_clear_paths(); |
950 |
> |
modules_conf_clear(); /* Clear modules {} items */ |
951 |
> |
|
952 |
> |
motd_clear(); /* Clear motd {} items and re-cache default motd */ |
953 |
> |
|
954 |
> |
cluster_clear(); /* Clear cluster {} items */ |
955 |
> |
|
956 |
> |
gecos_clear(); /* Clear gecos {} items */ |
957 |
> |
|
958 |
> |
resv_clear(); /* Clear resv {} items */ |
959 |
> |
|
960 |
> |
service_clear(); /* Clear service {} items */ |
961 |
|
|
962 |
< |
pseudo_clear(); |
962 |
> |
shared_clear(); /* Clear shared {} items */ |
963 |
> |
|
964 |
> |
pseudo_clear(); /* Clear pseudo {} items */ |
965 |
|
|
966 |
|
/* Clean out ConfigServerInfo */ |
967 |
< |
MyFree(ConfigServerInfo.description); |
967 |
> |
xfree(ConfigServerInfo.description); |
968 |
|
ConfigServerInfo.description = NULL; |
969 |
< |
MyFree(ConfigServerInfo.network_name); |
969 |
> |
xfree(ConfigServerInfo.network_name); |
970 |
|
ConfigServerInfo.network_name = NULL; |
971 |
< |
MyFree(ConfigServerInfo.network_desc); |
971 |
> |
xfree(ConfigServerInfo.network_desc); |
972 |
|
ConfigServerInfo.network_desc = NULL; |
973 |
< |
#ifdef HAVE_LIBCRYPTO |
1210 |
< |
if (ConfigServerInfo.rsa_private_key) |
1211 |
< |
{ |
1212 |
< |
RSA_free(ConfigServerInfo.rsa_private_key); |
1213 |
< |
ConfigServerInfo.rsa_private_key = NULL; |
1214 |
< |
} |
1215 |
< |
|
1216 |
< |
MyFree(ConfigServerInfo.rsa_private_key_file); |
973 |
> |
xfree(ConfigServerInfo.rsa_private_key_file); |
974 |
|
ConfigServerInfo.rsa_private_key_file = NULL; |
975 |
< |
#endif |
975 |
> |
xfree(ConfigServerInfo.ssl_certificate_file); |
976 |
> |
ConfigServerInfo.ssl_certificate_file = NULL; |
977 |
> |
xfree(ConfigServerInfo.ssl_dh_param_file); |
978 |
> |
ConfigServerInfo.ssl_dh_param_file = NULL; |
979 |
> |
xfree(ConfigServerInfo.ssl_dh_elliptic_curve); |
980 |
> |
ConfigServerInfo.ssl_dh_elliptic_curve = NULL; |
981 |
> |
xfree(ConfigServerInfo.ssl_cipher_list); |
982 |
> |
ConfigServerInfo.ssl_cipher_list = NULL; |
983 |
> |
xfree(ConfigServerInfo.ssl_message_digest_algorithm); |
984 |
> |
ConfigServerInfo.ssl_message_digest_algorithm = NULL; |
985 |
|
|
986 |
|
/* Clean out ConfigAdminInfo */ |
987 |
< |
MyFree(ConfigAdminInfo.name); |
987 |
> |
xfree(ConfigAdminInfo.name); |
988 |
|
ConfigAdminInfo.name = NULL; |
989 |
< |
MyFree(ConfigAdminInfo.email); |
989 |
> |
xfree(ConfigAdminInfo.email); |
990 |
|
ConfigAdminInfo.email = NULL; |
991 |
< |
MyFree(ConfigAdminInfo.description); |
991 |
> |
xfree(ConfigAdminInfo.description); |
992 |
|
ConfigAdminInfo.description = NULL; |
993 |
|
|
994 |
+ |
/* Clean out ConfigServerHide */ |
995 |
+ |
xfree(ConfigServerHide.flatten_links_file); |
996 |
+ |
ConfigServerHide.flatten_links_file = NULL; |
997 |
+ |
xfree(ConfigServerHide.hidden_name); |
998 |
+ |
ConfigServerHide.hidden_name = NULL; |
999 |
+ |
|
1000 |
|
/* Clean out listeners */ |
1001 |
|
listener_close_marked(); |
1002 |
|
} |
1003 |
|
|
1004 |
+ |
static void |
1005 |
+ |
conf_handle_tls(int cold) |
1006 |
+ |
{ |
1007 |
+ |
if (!tls_new_cred()) |
1008 |
+ |
{ |
1009 |
+ |
if (cold) |
1010 |
+ |
{ |
1011 |
+ |
ilog(LOG_TYPE_IRCD, "Error while initializing TLS"); |
1012 |
+ |
exit(EXIT_FAILURE); |
1013 |
+ |
} |
1014 |
+ |
else |
1015 |
+ |
{ |
1016 |
+ |
/* Failed to load new settings/certs, old ones remain active */ |
1017 |
+ |
sendto_realops_flags(UMODE_SERVNOTICE, L_ALL, SEND_NOTICE, |
1018 |
+ |
"Error reloading TLS settings, check the ircd log"); // report_crypto_errors logs this |
1019 |
+ |
} |
1020 |
+ |
} |
1021 |
+ |
} |
1022 |
+ |
|
1023 |
|
/* read_conf_files() |
1024 |
|
* |
1025 |
|
* inputs - cold start YES or NO |
1050 |
|
{ |
1051 |
|
ilog(LOG_TYPE_IRCD, "Unable to read configuration file '%s': %s", |
1052 |
|
filename, strerror(errno)); |
1053 |
< |
exit(-1); |
1053 |
> |
exit(EXIT_FAILURE); |
1054 |
|
} |
1055 |
|
else |
1056 |
|
{ |
1067 |
|
read_conf(conf_parser_ctx.conf_file); |
1068 |
|
fclose(conf_parser_ctx.conf_file); |
1069 |
|
|
1070 |
< |
log_reopen_all(); |
1070 |
> |
log_iterate(log_reopen); |
1071 |
> |
conf_handle_tls(cold); |
1072 |
|
|
1073 |
|
isupport_add("NICKLEN", NULL, ConfigServerInfo.max_nick_length); |
1074 |
|
isupport_add("NETWORK", ConfigServerInfo.network_name, -1); |
1075 |
|
|
1076 |
< |
snprintf(chanmodes, sizeof(chanmodes), "beI:%d", ConfigChannel.max_bans); |
1076 |
> |
snprintf(chanmodes, sizeof(chanmodes), "beI:%u", ConfigChannel.max_bans); |
1077 |
|
isupport_add("MAXLIST", chanmodes, -1); |
1078 |
|
isupport_add("MAXTARGETS", NULL, ConfigGeneral.max_targets); |
1079 |
|
isupport_add("CHANTYPES", "#", -1); |
1080 |
|
|
1081 |
< |
snprintf(chanlimit, sizeof(chanlimit), "#:%d", |
1081 |
> |
snprintf(chanlimit, sizeof(chanlimit), "#:%u", |
1082 |
|
ConfigChannel.max_channels); |
1083 |
|
isupport_add("CHANLIMIT", chanlimit, -1); |
1084 |
< |
snprintf(chanmodes, sizeof(chanmodes), "%s", "beI,k,l,cimnprstCMORS"); |
1084 |
> |
snprintf(chanmodes, sizeof(chanmodes), "%s", "beI,k,l,cimnprstuCLMNORST"); |
1085 |
|
isupport_add("CHANNELLEN", NULL, CHANNELLEN); |
1086 |
|
isupport_add("TOPICLEN", NULL, ConfigServerInfo.max_topic_length); |
1087 |
|
isupport_add("CHANMODES", chanmodes, -1); |
1296 |
– |
|
1297 |
– |
/* |
1298 |
– |
* message_locale may have changed. rebuild isupport since it relies |
1299 |
– |
* on strlen(form_str(RPL_ISUPPORT)) |
1300 |
– |
*/ |
1301 |
– |
isupport_rebuild(); |
1088 |
|
} |
1089 |
|
|
1090 |
|
/* conf_add_class_to_conf() |
1120 |
|
void |
1121 |
|
yyerror(const char *msg) |
1122 |
|
{ |
1337 |
– |
char newlinebuf[IRCD_BUFSIZE]; |
1338 |
– |
|
1123 |
|
if (conf_parser_ctx.pass != 1) |
1124 |
|
return; |
1125 |
|
|
1126 |
< |
strip_tabs(newlinebuf, linebuf, sizeof(newlinebuf)); |
1126 |
> |
const char *p = stripws(linebuf); |
1127 |
|
sendto_realops_flags(UMODE_SERVNOTICE, L_ADMIN, SEND_NOTICE, |
1128 |
|
"\"%s\", line %u: %s: %s", |
1129 |
< |
conffilebuf, lineno + 1, msg, newlinebuf); |
1129 |
> |
conffilebuf, lineno, msg, p); |
1130 |
|
ilog(LOG_TYPE_IRCD, "\"%s\", line %u: %s: %s", |
1131 |
< |
conffilebuf, lineno + 1, msg, newlinebuf); |
1131 |
> |
conffilebuf, lineno, msg, p); |
1132 |
|
} |
1133 |
|
|
1134 |
|
void |
1135 |
|
conf_error_report(const char *msg) |
1136 |
|
{ |
1137 |
< |
char newlinebuf[IRCD_BUFSIZE]; |
1354 |
< |
|
1355 |
< |
strip_tabs(newlinebuf, linebuf, sizeof(newlinebuf)); |
1137 |
> |
const char *p = stripws(linebuf); |
1138 |
|
sendto_realops_flags(UMODE_SERVNOTICE, L_ADMIN, SEND_NOTICE, |
1139 |
|
"\"%s\", line %u: %s: %s", |
1140 |
< |
conffilebuf, lineno + 1, msg, newlinebuf); |
1140 |
> |
conffilebuf, lineno, msg, p); |
1141 |
|
ilog(LOG_TYPE_IRCD, "\"%s\", line %u: %s: %s", |
1142 |
< |
conffilebuf, lineno + 1, msg, newlinebuf); |
1142 |
> |
conffilebuf, lineno, msg, p); |
1143 |
|
} |
1144 |
|
|
1145 |
|
/* |
1152 |
|
* side effects - none |
1153 |
|
* Originally written by Dianora (Diane, db@db.net) |
1154 |
|
*/ |
1155 |
< |
time_t |
1155 |
> |
uintmax_t |
1156 |
|
valid_tkline(const char *data, const int minutes) |
1157 |
|
{ |
1158 |
|
const unsigned char *p = (const unsigned char *)data; |
1159 |
|
unsigned char tmpch = '\0'; |
1160 |
< |
time_t result = 0; |
1160 |
> |
uintmax_t result = 0; |
1161 |
|
|
1162 |
|
while ((tmpch = *p++)) |
1163 |
|
{ |
1180 |
|
* If the incoming time is in seconds convert it to minutes for the purpose |
1181 |
|
* of this calculation |
1182 |
|
*/ |
1183 |
< |
if (!minutes) |
1183 |
> |
if (minutes == 0) |
1184 |
|
result = result / 60; |
1185 |
|
|
1186 |
|
if (result > MAX_TDKLINE_TIME) |
1233 |
|
* side effects - NOTICE is given to source_p if warn is 1 |
1234 |
|
*/ |
1235 |
|
int |
1236 |
< |
valid_wild_card(struct Client *source_p, int count, ...) |
1236 |
> |
valid_wild_card(int count, ...) |
1237 |
|
{ |
1238 |
|
unsigned char tmpch = '\0'; |
1239 |
|
unsigned int nonwild = 0; |
1276 |
|
} |
1277 |
|
} |
1278 |
|
|
1497 |
– |
if (IsClient(source_p)) |
1498 |
– |
sendto_one_notice(source_p, &me, |
1499 |
– |
":Please include at least %u non-wildcard characters with the mask", |
1500 |
– |
ConfigGeneral.min_nonwildcard); |
1279 |
|
va_end(args); |
1280 |
|
return 0; |
1281 |
|
} |
1352 |
|
if (target_p->username[0] == '~') |
1353 |
|
luser[0] = '*'; |
1354 |
|
|
1355 |
< |
if (!strcmp(target_p->sockhost, "0")) |
1578 |
< |
strlcpy(lhost, target_p->host, HOSTLEN*4 + 1); |
1579 |
< |
else |
1580 |
< |
strlcpy(lhost, target_p->sockhost, HOSTLEN*4 + 1); |
1355 |
> |
strlcpy(lhost, target_p->sockhost, HOSTLEN*4 + 1); |
1356 |
|
return 1; |
1357 |
|
} |
1358 |
|
|
1392 |
|
int |
1393 |
|
parse_aline(const char *cmd, struct Client *source_p, |
1394 |
|
int parc, char **parv, |
1395 |
< |
int parse_flags, char **up_p, char **h_p, time_t *tkline_time, |
1395 |
> |
char **up_p, char **h_p, uintmax_t *tkline_time, |
1396 |
|
char **target_server, char **reason) |
1397 |
|
{ |
1398 |
< |
int found_tkline_time=0; |
1398 |
> |
uintmax_t found_tkline_time=0; |
1399 |
|
static char default_reason[] = CONF_NOREASON; |
1400 |
|
static char user[USERLEN*4+1]; |
1401 |
|
static char host[HOSTLEN*4+1]; |
1472 |
|
} |
1473 |
|
} |
1474 |
|
|
1700 |
– |
if (h_p) |
1701 |
– |
{ |
1702 |
– |
if (strchr(user, '!')) |
1703 |
– |
{ |
1704 |
– |
sendto_one_notice(source_p, &me, ":Invalid character '!' in kline"); |
1705 |
– |
return 0; |
1706 |
– |
} |
1707 |
– |
|
1708 |
– |
if ((parse_flags & AWILD) && !valid_wild_card(source_p, 2, *up_p, *h_p)) |
1709 |
– |
return 0; |
1710 |
– |
} |
1711 |
– |
else |
1712 |
– |
if ((parse_flags & AWILD) && !valid_wild_card(source_p, 1, *up_p)) |
1713 |
– |
return 0; |
1714 |
– |
|
1475 |
|
if (reason) |
1476 |
|
{ |
1477 |
|
if (parc && !EmptyString(*parv)) |
1507 |
|
} |
1508 |
|
|
1509 |
|
/* |
1750 |
– |
* cluster_a_line |
1751 |
– |
* |
1752 |
– |
* inputs - client sending the cluster |
1753 |
– |
* - command name "KLINE" "XLINE" etc. |
1754 |
– |
* - capab -- CAPAB_KLN etc. from server.h |
1755 |
– |
* - cluster type -- CLUSTER_KLINE etc. from conf.h |
1756 |
– |
* - pattern and args to send along |
1757 |
– |
* output - none |
1758 |
– |
* side effects - Take source_p send the pattern with args given |
1759 |
– |
* along to all servers that match capab and cluster type |
1760 |
– |
*/ |
1761 |
– |
void |
1762 |
– |
cluster_a_line(struct Client *source_p, const char *command, unsigned int capab, |
1763 |
– |
unsigned int cluster_type, const char *pattern, ...) |
1764 |
– |
{ |
1765 |
– |
va_list args; |
1766 |
– |
char buffer[IRCD_BUFSIZE] = ""; |
1767 |
– |
const dlink_node *node = NULL; |
1768 |
– |
|
1769 |
– |
va_start(args, pattern); |
1770 |
– |
vsnprintf(buffer, sizeof(buffer), pattern, args); |
1771 |
– |
va_end(args); |
1772 |
– |
|
1773 |
– |
DLINK_FOREACH(node, cluster_items.head) |
1774 |
– |
{ |
1775 |
– |
const struct MaskItem *conf = node->data; |
1776 |
– |
|
1777 |
– |
if (conf->flags & cluster_type) |
1778 |
– |
sendto_match_servs(source_p, conf->name, CAPAB_CLUSTER | capab, |
1779 |
– |
"%s %s %s", command, conf->name, buffer); |
1780 |
– |
} |
1781 |
– |
} |
1782 |
– |
|
1783 |
– |
/* |
1510 |
|
* split_nuh |
1511 |
|
* |
1512 |
|
* inputs - pointer to original mask (modified in place) |