]> jfr.im git - irc/quakenet/snircd.git/blame - ircd/s_conf.c
import of 2.10.12.05
[irc/quakenet/snircd.git] / ircd / s_conf.c
CommitLineData
189935b1 1/*
2 * IRC - Internet Relay Chat, ircd/s_conf.c
3 * Copyright (C) 1990 Jarkko Oikarinen and
4 * University of Oulu, Computing Center
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
8 * the Free Software Foundation; either version 1, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20/** @file
21 * @brief ircd configuration file driver
052b069e 22 * @version $Id: s_conf.c,v 1.81.2.2 2005/12/31 01:40:00 entrope Exp $
189935b1 23 */
24#include "config.h"
25
26#include "s_conf.h"
27#include "IPcheck.h"
28#include "class.h"
29#include "client.h"
30#include "crule.h"
31#include "ircd_features.h"
32#include "fileio.h"
33#include "gline.h"
34#include "hash.h"
35#include "ircd.h"
36#include "ircd_alloc.h"
37#include "ircd_auth.h"
38#include "ircd_chattr.h"
39#include "ircd_log.h"
40#include "ircd_reply.h"
41#include "ircd_snprintf.h"
42#include "ircd_string.h"
43#include "list.h"
44#include "listener.h"
45#include "match.h"
46#include "motd.h"
47#include "numeric.h"
48#include "numnicks.h"
49#include "opercmds.h"
50#include "parse.h"
51#include "res.h"
52#include "s_bsd.h"
53#include "s_debug.h"
54#include "s_misc.h"
55#include "send.h"
56#include "struct.h"
57#include "sys.h"
58
59/* #include <assert.h> -- Now using assert in ircd_log.h */
60#include <errno.h>
61#include <fcntl.h>
62#include <netdb.h>
63#include <stdio.h>
64#include <stdlib.h>
65#include <string.h>
66#include <sys/stat.h>
67#include <unistd.h>
68
69/** Global list of all ConfItem structures. */
70struct ConfItem *GlobalConfList;
71/** Count of items in #GlobalConfList. */
72int GlobalConfCount;
73/** Global list of service mappings. */
74struct s_map *GlobalServiceMapList;
75/** Global list of channel quarantines. */
76struct qline *GlobalQuarantineList;
77
78/** Current line number in scanner input. */
79int lineno;
80
81/** Configuration information for #me. */
82struct LocalConf localConf;
83/** Global list of connection rules. */
84struct CRuleConf* cruleConfList;
85/** Global list of K-lines. */
86struct DenyConf* denyConfList;
87
88/** Tell a user that they are banned, dumping the message from a file.
89 * @param sptr Client being rejected
90 * @param filename Send this file's contents to \a sptr
91 */
92static void killcomment(struct Client* sptr, const char* filename)
93{
94 FBFILE* file = 0;
95 char line[80];
96 struct stat sb;
97 struct tm* tm;
98
99 if (NULL == (file = fbopen(filename, "r"))) {
100 send_reply(sptr, ERR_NOMOTD);
101 send_reply(sptr, SND_EXPLICIT | ERR_YOUREBANNEDCREEP,
102 ":Connection from your host is refused on this server.");
103 return;
104 }
105 fbstat(&sb, file);
106 tm = localtime((time_t*) &sb.st_mtime); /* NetBSD needs cast */
107 while (fbgets(line, sizeof(line) - 1, file)) {
108 char* end = line + strlen(line);
109 while (end > line) {
110 --end;
111 if ('\n' == *end || '\r' == *end)
112 *end = '\0';
113 else
114 break;
115 }
116 send_reply(sptr, RPL_MOTD, line);
117 }
118 send_reply(sptr, SND_EXPLICIT | ERR_YOUREBANNEDCREEP,
119 ":Connection from your host is refused on this server.");
120 fbclose(file);
121}
122
123/** Allocate a new struct ConfItem and link it to #GlobalConfList.
124 * @return Newly allocated structure.
125 */
126struct ConfItem* make_conf(int type)
127{
128 struct ConfItem* aconf;
129
130 aconf = (struct ConfItem*) MyMalloc(sizeof(struct ConfItem));
131 assert(0 != aconf);
132 ++GlobalConfCount;
133 memset(aconf, 0, sizeof(struct ConfItem));
134 aconf->status = type;
135 aconf->next = GlobalConfList;
136 GlobalConfList = aconf;
137 return aconf;
138}
139
140/** Free a struct ConfItem and any resources it owns.
141 * @param aconf Item to free.
142 */
143void free_conf(struct ConfItem *aconf)
144{
145 Debug((DEBUG_DEBUG, "free_conf: %s %s %d",
146 aconf->host ? aconf->host : "*",
147 aconf->name ? aconf->name : "*",
148 aconf->address.port));
149 if (aconf->dns_pending)
150 delete_resolver_queries(aconf);
151 MyFree(aconf->username);
152 MyFree(aconf->host);
153 MyFree(aconf->origin_name);
154 if (aconf->passwd)
155 memset(aconf->passwd, 0, strlen(aconf->passwd));
156 MyFree(aconf->passwd);
157 MyFree(aconf->name);
158 MyFree(aconf->hub_limit);
159 MyFree(aconf);
160 --GlobalConfCount;
161}
162
163/** Disassociate configuration from the client.
164 * @param cptr Client to operate on.
165 * @param aconf ConfItem to detach.
166 */
167static void detach_conf(struct Client* cptr, struct ConfItem* aconf)
168{
169 struct SLink** lp;
170 struct SLink* tmp;
171
172 assert(0 != aconf);
173 assert(0 != cptr);
174 assert(0 < aconf->clients);
175
176 lp = &(cli_confs(cptr));
177
178 while (*lp) {
179 if ((*lp)->value.aconf == aconf) {
180 if (aconf->conn_class && (aconf->status & CONF_CLIENT_MASK) && ConfLinks(aconf) > 0)
181 --ConfLinks(aconf);
182
183 assert(0 < aconf->clients);
184 if (0 == --aconf->clients && IsIllegal(aconf))
185 free_conf(aconf);
186 tmp = *lp;
187 *lp = tmp->next;
188 free_link(tmp);
189 return;
190 }
191 lp = &((*lp)->next);
192 }
193}
194
195/** Parse a user\@host mask into username and host or IP parts.
196 * If \a host contains no username part, set \a aconf->username to
197 * NULL. If the host part of \a host looks like an IP mask, set \a
198 * aconf->addrbits and \a aconf->address to match. Otherwise, set
199 * \a aconf->host, and set \a aconf->addrbits to -1.
200 * @param[in,out] aconf Configuration item to set.
201 * @param[in] host user\@host mask to parse.
202 */
203void conf_parse_userhost(struct ConfItem *aconf, char *host)
204{
205 char *host_part;
206 unsigned char addrbits;
207
208 MyFree(aconf->username);
209 MyFree(aconf->host);
210 host_part = strchr(host, '@');
211 if (host_part) {
212 *host_part = '\0';
213 DupString(aconf->username, host);
214 host_part++;
215 } else {
216 aconf->username = NULL;
217 host_part = host;
218 }
219 DupString(aconf->host, host_part);
220 if (ipmask_parse(aconf->host, &aconf->address.addr, &addrbits))
221 aconf->addrbits = addrbits;
222 else
223 aconf->addrbits = -1;
224 MyFree(host);
225}
226
227/** Copies a completed DNS query into its ConfItem.
228 * @param vptr Pointer to struct ConfItem for the block.
229 * @param hp DNS reply, or NULL if the lookup failed.
230 */
231static void conf_dns_callback(void* vptr, const struct irc_in_addr *addr, const char *h_name)
232{
233 struct ConfItem* aconf = (struct ConfItem*) vptr;
234 assert(aconf);
235 aconf->dns_pending = 0;
236 if (addr)
237 memcpy(&aconf->address.addr, addr, sizeof(aconf->address.addr));
238}
239
240/** Start a nameserver lookup of the conf host. If the conf entry is
241 * currently doing a lookup, do nothing.
242 * @param aconf ConfItem for which to start a request.
243 */
244static void conf_dns_lookup(struct ConfItem* aconf)
245{
246 if (!aconf->dns_pending) {
247 char buf[HOSTLEN + 1];
248
249 host_from_uh(buf, aconf->host, HOSTLEN);
250 gethost_byname(buf, conf_dns_callback, aconf);
251 aconf->dns_pending = 1;
252 }
253}
254
255
256/** Start lookups of all addresses in the conf line. The origin must
257 * be a numeric IP address. If the remote host field is not an IP
258 * address, start a DNS lookup for it.
259 * @param aconf Connection to do lookups for.
260 */
261void
262lookup_confhost(struct ConfItem *aconf)
263{
264 if (EmptyString(aconf->host) || EmptyString(aconf->name)) {
265 Debug((DEBUG_ERROR, "Host/server name error: (%s) (%s)",
266 aconf->host, aconf->name));
267 return;
268 }
269 if (aconf->origin_name
270 && !ircd_aton(&aconf->origin.addr, aconf->origin_name)) {
271 Debug((DEBUG_ERROR, "Origin name error: (%s) (%s)",
272 aconf->origin_name, aconf->name));
273 }
274 /*
275 * Do name lookup now on hostnames given and store the
276 * ip numbers in conf structure.
277 */
278 if (IsIP6Char(*aconf->host)) {
279 if (!ircd_aton(&aconf->address.addr, aconf->host)) {
280 Debug((DEBUG_ERROR, "Host/server name error: (%s) (%s)",
281 aconf->host, aconf->name));
282 }
283 }
284 else
285 conf_dns_lookup(aconf);
286}
287
288/** Find a server by name or hostname.
289 * @param name Server name to find.
290 * @return Pointer to the corresponding ConfItem, or NULL if none exists.
291 */
292struct ConfItem* conf_find_server(const char* name)
293{
294 struct ConfItem* conf;
295 assert(0 != name);
296
297 for (conf = GlobalConfList; conf; conf = conf->next) {
298 if (CONF_SERVER == conf->status) {
299 /*
300 * Check first servernames, then try hostnames.
301 * XXX - match returns 0 if there _is_ a match... guess they
302 * haven't decided what true is yet
303 */
304 if (0 == match(name, conf->name))
305 return conf;
306 }
307 }
308 return 0;
309}
310
311/** Evaluate connection rules.
312 * @param name Name of server to check
313 * @param mask Filter for CRule types (only consider if type & \a mask != 0).
314 * @return Name of rule that forbids the connection; NULL if no prohibitions.
315 */
316const char* conf_eval_crule(const char* name, int mask)
317{
318 struct CRuleConf* p = cruleConfList;
319 assert(0 != name);
320
321 for ( ; p; p = p->next) {
322 if (0 != (p->type & mask) && 0 == match(p->hostmask, name)) {
323 if (crule_eval(p->node))
324 return p->rule;
325 }
326 }
327 return 0;
328}
329
330/** Remove all conf entries from the client except those which match
331 * the status field mask.
332 * @param cptr Client to operate on.
333 * @param mask ConfItem types to keep.
334 */
335void det_confs_butmask(struct Client* cptr, int mask)
336{
337 struct SLink* link;
338 struct SLink* next;
339 assert(0 != cptr);
340
341 for (link = cli_confs(cptr); link; link = next) {
342 next = link->next;
343 if ((link->value.aconf->status & mask) == 0)
344 detach_conf(cptr, link->value.aconf);
345 }
346}
347
348/** Find the first (best) Client block to attach.
349 * @param cptr Client for whom to check rules.
350 * @return Authorization check result.
351 */
352enum AuthorizationCheckResult attach_iline(struct Client* cptr)
353{
354 struct ConfItem* aconf;
355
356 assert(0 != cptr);
357
358 for (aconf = GlobalConfList; aconf; aconf = aconf->next) {
359 if (aconf->status != CONF_CLIENT)
360 continue;
361 /* If you change any of this logic, please make corresponding
362 * changes in conf_debug_iline() below.
363 */
364 if (aconf->address.port && aconf->address.port != cli_listener(cptr)->addr.port)
365 continue;
366 if (aconf->username && match(aconf->username, cli_username(cptr)))
367 continue;
368 if (aconf->host && match(aconf->host, cli_sockhost(cptr)))
369 continue;
370 if ((aconf->addrbits >= 0)
371 && !ipmask_check(&cli_ip(cptr), &aconf->address.addr, aconf->addrbits))
372 continue;
373 if (IPcheck_nr(cptr) > aconf->maximum)
374 return ACR_TOO_MANY_FROM_IP;
375 if (aconf->username)
376 SetFlag(cptr, FLAG_DOID);
377 return attach_conf(cptr, aconf);
378 }
379 return ACR_NO_AUTHORIZATION;
380}
381
382/** Interpret \a client as a client specifier and show which Client
383 * block(s) match that client.
384 *
385 * The client specifier may contain an IP address, hostname, listener
386 * port, or a combination of those separated by commas. IP addresses
387 * and hostnamese may be preceded by "username@"; the last given
388 * username will be used for the match.
389 *
390 * @param[in] client Client specifier.
391 * @return Matching Client block structure.
392 */
393struct ConfItem *conf_debug_iline(const char *client)
394{
395 struct irc_in_addr address;
396 struct ConfItem *aconf;
397 struct DenyConf *deny;
398 char *sep;
399 unsigned short listener;
400 char username[USERLEN+1], hostname[HOSTLEN+1], realname[REALLEN+1];
401
402 /* Initialize variables. */
403 listener = 0;
404 memset(&address, 0, sizeof(address));
405 memset(&username, 0, sizeof(username));
406 memset(&hostname, 0, sizeof(hostname));
407 memset(&realname, 0, sizeof(realname));
408
409 /* Parse client specifier. */
410 while (*client) {
411 struct irc_in_addr tmpaddr;
412 long tmp;
413
414 /* Try to parse as listener port number first. */
415 tmp = strtol(client, &sep, 10);
416 if (tmp && (*sep == '\0' || *sep == ',')) {
417 listener = tmp;
418 client = sep + (*sep != '\0');
419 continue;
420 }
421
422 /* Maybe username@ before an IP address or hostname? */
423 tmp = strcspn(client, ",@");
424 if (client[tmp] == '@') {
425 if (tmp > USERLEN)
426 tmp = USERLEN;
427 ircd_strncpy(username, client, tmp);
428 /* and fall through */
429 client += tmp + 1;
430 }
431
432 /* Looks like an IP address? */
433 tmp = ircd_aton(&tmpaddr, client);
434 if (tmp && (client[tmp] == '\0' || client[tmp] == ',')) {
435 memcpy(&address, &tmpaddr, sizeof(address));
436 client += tmp + (client[tmp] != '\0');
437 continue;
438 }
439
440 /* Realname? */
441 if (client[0] == '$' && client[1] == 'R') {
442 client += 2;
443 for (tmp = 0; *client != '\0' && *client != ',' && tmp < REALLEN; ++client, ++tmp) {
444 if (*client == '\\')
445 realname[tmp] = *++client;
446 else
447 realname[tmp] = *client;
448 }
449 continue;
450 }
451
452 /* Else must be a hostname. */
453 tmp = strcspn(client, ",");
454 if (tmp > HOSTLEN)
455 tmp = HOSTLEN;
456 ircd_strncpy(hostname, client, tmp);
457 client += tmp + (client[tmp] != '\0');
458 }
459
460 /* Walk configuration to find matching Client block. */
461 for (aconf = GlobalConfList; aconf; aconf = aconf->next) {
462 if (aconf->status != CONF_CLIENT)
463 continue;
464 if (aconf->address.port && aconf->address.port != listener) {
465 fprintf(stdout, "Listener port mismatch: %u != %u\n", aconf->address.port, listener);
466 continue;
467 }
468 if (aconf->username && match(aconf->username, username)) {
469 fprintf(stdout, "Username mismatch: %s != %s\n", aconf->username, username);
470 continue;
471 }
472 if (aconf->host && match(aconf->host, hostname)) {
473 fprintf(stdout, "Hostname mismatch: %s != %s\n", aconf->host, hostname);
474 continue;
475 }
476 if ((aconf->addrbits >= 0)
477 && !ipmask_check(&address, &aconf->address.addr, aconf->addrbits)) {
478 fprintf(stdout, "IP address mismatch: %s != %s\n", aconf->name, ircd_ntoa(&address));
479 continue;
480 }
481 fprintf(stdout, "Match! username=%s host=%s ip=%s class=%s maxlinks=%u password=%s\n",
482 (aconf->username ? aconf->username : "(null)"),
483 (aconf->host ? aconf->host : "(null)"),
484 (aconf->name ? aconf->name : "(null)"),
052b069e 485 ConfClass(aconf), aconf->maximum,
486 (aconf->passwd ? aconf->passwd : "(null)"));
189935b1 487 break;
488 }
489
490 /* If no authorization, say so and exit. */
491 if (!aconf)
492 {
493 fprintf(stdout, "No authorization found.\n");
494 return NULL;
495 }
496
497 /* Look for a Kill block with the user's name on it. */
498 for (deny = denyConfList; deny; deny = deny->next) {
499 if (deny->usermask && match(deny->usermask, username))
500 continue;
501 if (deny->realmask && match(deny->realmask, realname))
502 continue;
503 if (deny->bits > 0) {
504 if (!ipmask_check(&address, &deny->address, deny->bits))
505 continue;
506 } else if (deny->hostmask && match(deny->hostmask, hostname))
507 continue;
508
509 /* Looks like a match; report it. */
510 fprintf(stdout, "Denied! usermask=%s realmask=\"%s\" hostmask=%s (bits=%u)\n",
511 deny->usermask ? deny->usermask : "(null)",
512 deny->realmask ? deny->realmask : "(null)",
513 deny->hostmask ? deny->hostmask : "(null)",
514 deny->bits);
515 }
516
517 return aconf;
518}
519
520/** Check whether a particular ConfItem is already attached to a
521 * Client.
522 * @param aconf ConfItem to search for
523 * @param cptr Client to check
524 * @return Non-zero if \a aconf is attached to \a cptr, zero if not.
525 */
526static int is_attached(struct ConfItem *aconf, struct Client *cptr)
527{
528 struct SLink *lp;
529
530 for (lp = cli_confs(cptr); lp; lp = lp->next) {
531 if (lp->value.aconf == aconf)
532 return 1;
533 }
534 return 0;
535}
536
537/** Associate a specific configuration entry to a *local* client (this
538 * is the one which used in accepting the connection). Note, that this
539 * automatically changes the attachment if there was an old one...
540 * @param cptr Client to attach \a aconf to
541 * @param aconf ConfItem to attach
542 * @return Authorization check result.
543 */
544enum AuthorizationCheckResult attach_conf(struct Client *cptr, struct ConfItem *aconf)
545{
546 struct SLink *lp;
547
548 if (is_attached(aconf, cptr))
549 return ACR_ALREADY_AUTHORIZED;
550 if (IsIllegal(aconf))
551 return ACR_NO_AUTHORIZATION;
552 if ((aconf->status & (CONF_OPERATOR | CONF_CLIENT)) &&
553 ConfLinks(aconf) >= ConfMaxLinks(aconf) && ConfMaxLinks(aconf) > 0)
554 return ACR_TOO_MANY_IN_CLASS; /* Use this for printing error message */
555 lp = make_link();
556 lp->next = cli_confs(cptr);
557 lp->value.aconf = aconf;
558 cli_confs(cptr) = lp;
559 ++aconf->clients;
560 if (aconf->status & CONF_CLIENT_MASK)
561 ConfLinks(aconf)++;
562 return ACR_OK;
563}
564
565/** Return our LocalConf configuration structure.
566 * @return A pointer to #localConf.
567 */
568const struct LocalConf* conf_get_local(void)
569{
570 return &localConf;
571}
572
573/** Attach ConfItems to a client if the name passed matches that for
574 * the ConfItems or is an exact match for them.
575 * @param cptr Client getting the ConfItem attachments.
576 * @param name Filter to match ConfItem::name.
577 * @param statmask Filter to limit ConfItem::status.
578 * @return First ConfItem attached to \a cptr.
579 */
580struct ConfItem* attach_confs_byname(struct Client* cptr, const char* name,
581 int statmask)
582{
583 struct ConfItem* tmp;
584 struct ConfItem* first = NULL;
585
586 assert(0 != name);
587
588 if (HOSTLEN < strlen(name))
589 return 0;
590
591 for (tmp = GlobalConfList; tmp; tmp = tmp->next) {
592 if (0 != (tmp->status & statmask) && !IsIllegal(tmp)) {
593 assert(0 != tmp->name);
594 if (0 == match(tmp->name, name) || 0 == ircd_strcmp(tmp->name, name)) {
595 if (ACR_OK == attach_conf(cptr, tmp) && !first)
596 first = tmp;
597 }
598 }
599 }
600 return first;
601}
602
603/** Attach ConfItems to a client if the host passed matches that for
604 * the ConfItems or is an exact match for them.
605 * @param cptr Client getting the ConfItem attachments.
606 * @param host Filter to match ConfItem::host.
607 * @param statmask Filter to limit ConfItem::status.
608 * @return First ConfItem attached to \a cptr.
609 */
610struct ConfItem* attach_confs_byhost(struct Client* cptr, const char* host,
611 int statmask)
612{
613 struct ConfItem* tmp;
614 struct ConfItem* first = 0;
615
616 assert(0 != host);
617 if (HOSTLEN < strlen(host))
618 return 0;
619
620 for (tmp = GlobalConfList; tmp; tmp = tmp->next) {
621 if (0 != (tmp->status & statmask) && !IsIllegal(tmp)) {
622 assert(0 != tmp->host);
623 if (0 == match(tmp->host, host) || 0 == ircd_strcmp(tmp->host, host)) {
624 if (ACR_OK == attach_conf(cptr, tmp) && !first)
625 first = tmp;
626 }
627 }
628 }
629 return first;
630}
631
632/** Find a ConfItem that has the same name and user+host fields as
633 * specified. Requires an exact match for \a name.
634 * @param name Name to match
635 * @param cptr Client to match against
636 * @param statmask Filter for ConfItem::status
637 * @return First found matching ConfItem.
638 */
639struct ConfItem* find_conf_exact(const char* name, struct Client *cptr, int statmask)
640{
641 struct ConfItem *tmp;
642
643 for (tmp = GlobalConfList; tmp; tmp = tmp->next) {
644 if (!(tmp->status & statmask) || !tmp->name || !tmp->host ||
645 0 != ircd_strcmp(tmp->name, name))
646 continue;
647 if (tmp->username
648 && (EmptyString(cli_username(cptr))
649 || match(tmp->username, cli_username(cptr))))
650 continue;
651 if (tmp->addrbits < 0)
652 {
653 if (match(tmp->host, cli_sockhost(cptr)))
654 continue;
655 }
656 else if (!ipmask_check(&cli_ip(cptr), &tmp->address.addr, tmp->addrbits))
657 continue;
658 if ((tmp->status & CONF_OPERATOR)
659 && (tmp->clients >= MaxLinks(tmp->conn_class)))
660 continue;
661 return tmp;
662 }
663 return 0;
664}
665
666/** Find a ConfItem from a list that has a name that matches \a name.
667 * @param lp List to search in.
668 * @param name Filter for ConfItem::name field; matches either exactly
669 * or as a glob.
670 * @param statmask Filter for ConfItem::status.
671 * @return First matching ConfItem from \a lp.
672 */
673struct ConfItem* find_conf_byname(struct SLink* lp, const char* name,
674 int statmask)
675{
676 struct ConfItem* tmp;
677 assert(0 != name);
678
679 if (HOSTLEN < strlen(name))
680 return 0;
681
682 for (; lp; lp = lp->next) {
683 tmp = lp->value.aconf;
684 if (0 != (tmp->status & statmask)) {
685 assert(0 != tmp->name);
686 if (0 == ircd_strcmp(tmp->name, name) || 0 == match(tmp->name, name))
687 return tmp;
688 }
689 }
690 return 0;
691}
692
693/** Find a ConfItem from a list that has a host that matches \a host.
694 * @param lp List to search in.
695 * @param host Filter for ConfItem::host field; matches as a glob.
696 * @param statmask Filter for ConfItem::status.
697 * @return First matching ConfItem from \a lp.
698 */
699struct ConfItem* find_conf_byhost(struct SLink* lp, const char* host,
700 int statmask)
701{
702 struct ConfItem* tmp = NULL;
703 assert(0 != host);
704
705 if (HOSTLEN < strlen(host))
706 return 0;
707
708 for (; lp; lp = lp->next) {
709 tmp = lp->value.aconf;
710 if (0 != (tmp->status & statmask)) {
711 assert(0 != tmp->host);
712 if (0 == match(tmp->host, host))
713 return tmp;
714 }
715 }
716 return 0;
717}
718
719/** Find a ConfItem from a list that has an address equal to \a ip.
720 * @param lp List to search in.
721 * @param ip Filter for ConfItem::address field; matches exactly.
722 * @param statmask Filter for ConfItem::status.
723 * @return First matching ConfItem from \a lp.
724 */
725struct ConfItem* find_conf_byip(struct SLink* lp, const struct irc_in_addr* ip,
726 int statmask)
727{
728 struct ConfItem* tmp;
729
730 for (; lp; lp = lp->next) {
731 tmp = lp->value.aconf;
732 if (0 != (tmp->status & statmask)
733 && !irc_in_addr_cmp(&tmp->address.addr, ip))
734 return tmp;
735 }
736 return 0;
737}
738
739/** Free all CRules from #cruleConfList. */
740void conf_erase_crule_list(void)
741{
742 struct CRuleConf* next;
743 struct CRuleConf* p = cruleConfList;
744
745 for ( ; p; p = next) {
746 next = p->next;
747 crule_free(&p->node);
748 MyFree(p->hostmask);
749 MyFree(p->rule);
750 MyFree(p);
751 }
752 cruleConfList = 0;
753}
754
755/** Return #cruleConfList.
756 * @return #cruleConfList
757 */
758const struct CRuleConf* conf_get_crule_list(void)
759{
760 return cruleConfList;
761}
762
763/** Free all deny rules from #denyConfList. */
764void conf_erase_deny_list(void)
765{
766 struct DenyConf* next;
767 struct DenyConf* p = denyConfList;
768 for ( ; p; p = next) {
769 next = p->next;
770 MyFree(p->hostmask);
771 MyFree(p->usermask);
772 MyFree(p->message);
773 MyFree(p->realmask);
774 MyFree(p);
775 }
776 denyConfList = 0;
777}
778
779/** Return #denyConfList.
780 * @return #denyConfList
781 */
782const struct DenyConf* conf_get_deny_list(void)
783{
784 return denyConfList;
785}
786
787/** Find any existing quarantine for the named channel.
788 * @param chname Channel name to search for.
789 * @return Reason for channel's quarantine, or NULL if none exists.
790 */
791const char*
792find_quarantine(const char *chname)
793{
794 struct qline *qline;
795
796 for (qline = GlobalQuarantineList; qline; qline = qline->next)
797 if (!ircd_strcmp(qline->chname, chname))
798 return qline->reason;
799 return NULL;
800}
801
802/** Free all qline structs from #GlobalQuarantineList. */
803void clear_quarantines(void)
804{
805 struct qline *qline;
806 while ((qline = GlobalQuarantineList))
807 {
808 GlobalQuarantineList = qline->next;
809 MyFree(qline->reason);
810 MyFree(qline->chname);
811 MyFree(qline);
812 }
813}
814
815/** When non-zero, indicates that a configuration error has been seen in this pass. */
816static int conf_error;
817/** When non-zero, indicates that the configuration file was loaded at least once. */
818static int conf_already_read;
819extern FILE *yyin;
820extern void yyparse(void);
821extern void init_lexer(void);
822
823/** Read configuration file.
824 * @return Zero on failure, non-zero on success. */
825int read_configuration_file(void)
826{
827 conf_error = 0;
828 feature_unmark(); /* unmark all features for resetting later */
829 /* Now just open an fd. The buffering isn't really needed... */
830 init_lexer();
831 yyparse();
832 fclose(yyin);
833 yyin = NULL;
834 feature_mark(); /* reset unmarked features */
835 conf_already_read = 1;
836 return 1;
837}
838
839/** Report an error message about the configuration file.
840 * @param msg The error to report.
841 */
842void
843yyerror(const char *msg)
844{
845 sendto_opmask_butone(0, SNO_ALL, "Config file parse error line %d: %s",
846 lineno, msg);
847 log_write(LS_CONFIG, L_ERROR, 0, "Config file parse error line %d: %s",
848 lineno, msg);
849 if (!conf_already_read)
850 fprintf(stderr, "Config file parse error line %d: %s\n", lineno, msg);
851 conf_error = 1;
852}
853
854/** Attach CONF_UWORLD items to a server and everything attached to it. */
855static void
856attach_conf_uworld(struct Client *cptr)
857{
858 struct DLink *lp;
859
860 attach_confs_byhost(cptr, cli_name(cptr), CONF_UWORLD);
861 for (lp = cli_serv(cptr)->down; lp; lp = lp->next)
862 attach_conf_uworld(lp->value.cptr);
863}
864
865/** Free all memory associated with service mapping \a smap.
866 * @param smap[in] The mapping to free.
867 */
868void free_mapping(struct s_map *smap)
869{
870 struct nick_host *nh, *next;
871 for (nh = smap->services; nh; nh = next)
872 {
873 next = nh->next;
874 MyFree(nh);
875 }
876 MyFree(smap->name);
877 MyFree(smap->command);
878 MyFree(smap->prepend);
879 MyFree(smap);
880}
881
882/** Unregister and free all current service mappings. */
883static void close_mappings(void)
884{
885 struct s_map *map, *next;
886
887 for (map = GlobalServiceMapList; map; map = next) {
888 next = map->next;
889 unregister_mapping(map);
890 free_mapping(map);
891 }
892 GlobalServiceMapList = NULL;
893}
894
895/** Reload the configuration file.
896 * @param cptr Client that requested rehash (if a signal, &me).
897 * @param sig Type of rehash (0 = oper-requested, 1 = signal, 2 =
898 * oper-requested but do not restart resolver)
899 * @return CPTR_KILLED if any client was K/G-lined because of the
900 * rehash; otherwise 0.
901 */
902int rehash(struct Client *cptr, int sig)
903{
904 struct ConfItem** tmp = &GlobalConfList;
905 struct ConfItem* tmp2;
906 struct Client* acptr;
907 int i;
908 int ret = 0;
909 int found_g = 0;
910
911 if (1 == sig)
912 sendto_opmask_butone(0, SNO_OLDSNO,
913 "Got signal SIGHUP, reloading ircd conf. file");
914
915 while ((tmp2 = *tmp)) {
916 if (tmp2->clients) {
917 /*
918 * Configuration entry is still in use by some
919 * local clients, cannot delete it--mark it so
920 * that it will be deleted when the last client
921 * exits...
922 */
923 if (CONF_CLIENT == (tmp2->status & CONF_CLIENT))
924 tmp = &tmp2->next;
925 else {
926 *tmp = tmp2->next;
927 tmp2->next = 0;
928 }
929 tmp2->status |= CONF_ILLEGAL;
930 }
931 else {
932 *tmp = tmp2->next;
933 free_conf(tmp2);
934 }
935 }
936 conf_erase_crule_list();
937 conf_erase_deny_list();
938 motd_clear();
939
940 /*
941 * delete the juped nicks list
942 */
943 clearNickJupes();
944
945 clear_quarantines();
946
947 if (sig != 2)
948 restart_resolver();
949
950 class_mark_delete();
951 mark_listeners_closing();
952 iauth_mark_closing();
953 close_mappings();
954
955 read_configuration_file();
956
957 log_reopen(); /* reopen log files */
958
959 iauth_close_unused();
960 close_listeners();
961 class_delete_marked(); /* unless it fails */
962
963 /*
964 * Flush out deleted I and P lines although still in use.
965 */
966 for (tmp = &GlobalConfList; (tmp2 = *tmp);) {
967 if (CONF_ILLEGAL == (tmp2->status & CONF_ILLEGAL)) {
968 *tmp = tmp2->next;
969 tmp2->next = NULL;
970 if (!tmp2->clients)
971 free_conf(tmp2);
972 }
973 else
974 tmp = &tmp2->next;
975 }
976
977 for (i = 0; i <= HighestFd; i++) {
978 if ((acptr = LocalClientArray[i])) {
979 assert(!IsMe(acptr));
980 if (IsServer(acptr))
981 det_confs_butmask(acptr, ~(CONF_UWORLD | CONF_ILLEGAL));
982 /* Because admin's are getting so uppity about people managing to
983 * get past K/G's etc, we'll "fix" the bug by actually explaining
984 * whats going on.
985 */
986 if ((found_g = find_kill(acptr))) {
987 sendto_opmask_butone(0, found_g == -2 ? SNO_GLINE : SNO_OPERKILL,
988 found_g == -2 ? "G-line active for %s%s" :
989 "K-line active for %s%s",
990 IsUnknown(acptr) ? "Unregistered Client ":"",
991 get_client_name(acptr, SHOW_IP));
992 if (exit_client(cptr, acptr, &me, found_g == -2 ? "G-lined" :
993 "K-lined") == CPTR_KILLED)
994 ret = CPTR_KILLED;
995 }
996 }
997 }
998
999 attach_conf_uworld(&me);
1000
1001 return ret;
1002}
1003
1004/** Read configuration file for the very first time.
1005 * @return Non-zero on success, zero on failure.
1006 */
1007
1008int init_conf(void)
1009{
1010 if (read_configuration_file()) {
1011 /*
1012 * make sure we're sane to start if the config
1013 * file read didn't get everything we need.
1014 * XXX - should any of these abort the server?
1015 * TODO: add warning messages
1016 */
1017 if (0 == localConf.name || 0 == localConf.numeric)
1018 return 0;
1019 if (conf_error)
1020 return 0;
1021
1022 if (0 == localConf.location1)
1023 DupString(localConf.location1, "");
1024 if (0 == localConf.location2)
1025 DupString(localConf.location2, "");
1026 if (0 == localConf.contact)
1027 DupString(localConf.contact, "");
1028
1029 return 1;
1030 }
1031 return 0;
1032}
1033
1034/** Searches for a K/G-line for a client. If one is found, notify the
1035 * user and disconnect them.
1036 * @param cptr Client to search for.
1037 * @return 0 if client is accepted; -1 if client was locally denied
1038 * (K-line); -2 if client was globally denied (G-line).
1039 */
1040int find_kill(struct Client *cptr)
1041{
1042 const char* host;
1043 const char* name;
1044 const char* realname;
1045 struct DenyConf* deny;
1046 struct Gline* agline = NULL;
1047
1048 assert(0 != cptr);
1049
1050 if (!cli_user(cptr))
1051 return 0;
1052
1053 host = cli_sockhost(cptr);
1054 name = cli_user(cptr)->username;
1055 realname = cli_info(cptr);
1056
1057 assert(strlen(host) <= HOSTLEN);
1058 assert((name ? strlen(name) : 0) <= HOSTLEN);
1059 assert((realname ? strlen(realname) : 0) <= REALLEN);
1060
1061 /* 2000-07-14: Rewrote this loop for massive speed increases.
1062 * -- Isomer
1063 */
1064 for (deny = denyConfList; deny; deny = deny->next) {
1065 if (deny->usermask && match(deny->usermask, name))
1066 continue;
1067 if (deny->realmask && match(deny->realmask, realname))
1068 continue;
1069 if (deny->bits > 0) {
1070 if (!ipmask_check(&cli_ip(cptr), &deny->address, deny->bits))
1071 continue;
1072 } else if (deny->hostmask && match(deny->hostmask, host))
1073 continue;
1074
1075 if (EmptyString(deny->message))
1076 send_reply(cptr, SND_EXPLICIT | ERR_YOUREBANNEDCREEP,
1077 ":Connection from your host is refused on this server.");
1078 else {
1079 if (deny->flags & DENY_FLAGS_FILE)
1080 killcomment(cptr, deny->message);
1081 else
1082 send_reply(cptr, SND_EXPLICIT | ERR_YOUREBANNEDCREEP, ":%s.", deny->message);
1083 }
1084 return -1;
1085 }
1086
1087 if ((agline = gline_lookup(cptr, 0))) {
1088 /*
1089 * find active glines
1090 * added a check against the user's IP address to find_gline() -Kev
1091 */
1092 send_reply(cptr, SND_EXPLICIT | ERR_YOUREBANNEDCREEP, ":%s.", GlineReason(agline));
1093 return -2;
1094 }
1095
1096 return 0;
1097}
1098
1099/** Attempt to attach Client blocks to \a cptr. If attach_iline()
1100 * fails for the client, emit a debugging message.
1101 * @param cptr Client to check for access.
1102 * @return Access check result.
1103 */
1104enum AuthorizationCheckResult conf_check_client(struct Client *cptr)
1105{
1106 enum AuthorizationCheckResult acr = ACR_OK;
1107
1108 if ((acr = attach_iline(cptr))) {
1109 Debug((DEBUG_DNS, "ch_cl: access denied: %s[%s]",
1110 cli_name(cptr), cli_sockhost(cptr)));
1111 return acr;
1112 }
1113 return ACR_OK;
1114}
1115
1116/** Check access for a server given its name (passed in cptr struct).
1117 * Must check for all C/N lines which have a name which matches the
1118 * name given and a host which matches. A host alias which is the
1119 * same as the server name is also acceptable in the host field of a
1120 * C/N line.
1121 * @param cptr Peer server to check.
1122 * @return 0 if accepted, -1 if access denied.
1123 */
1124int conf_check_server(struct Client *cptr)
1125{
1126 struct ConfItem* c_conf = NULL;
1127 struct SLink* lp;
1128
1129 Debug((DEBUG_DNS, "sv_cl: check access for %s[%s]",
1130 cli_name(cptr), cli_sockhost(cptr)));
1131
1132 if (IsUnknown(cptr) && !attach_confs_byname(cptr, cli_name(cptr), CONF_SERVER)) {
1133 Debug((DEBUG_DNS, "No C/N lines for %s", cli_sockhost(cptr)));
1134 return -1;
1135 }
1136 lp = cli_confs(cptr);
1137 /*
1138 * We initiated this connection so the client should have a C and N
1139 * line already attached after passing through the connect_server()
1140 * function earlier.
1141 */
1142 if (IsConnecting(cptr) || IsHandshake(cptr)) {
1143 c_conf = find_conf_byname(lp, cli_name(cptr), CONF_SERVER);
1144 if (!c_conf) {
1145 sendto_opmask_butone(0, SNO_OLDSNO,
1146 "Connect Error: lost Connect block for %s",
1147 cli_name(cptr));
1148 det_confs_butmask(cptr, 0);
1149 return -1;
1150 }
1151 }
1152
1153 /* Try finding the Connect block by DNS name and IP next. */
1154 if (!c_conf && !(c_conf = find_conf_byhost(lp, cli_sockhost(cptr), CONF_SERVER)))
1155 c_conf = find_conf_byip(lp, &cli_ip(cptr), CONF_SERVER);
1156
1157 /*
1158 * Attach by IP# only if all other checks have failed.
1159 * It is quite possible to get here with the strange things that can
1160 * happen when using DNS in the way the irc server does. -avalon
1161 */
1162 if (!c_conf)
1163 c_conf = find_conf_byip(lp, &cli_ip(cptr), CONF_SERVER);
1164 /*
1165 * detach all conf lines that got attached by attach_confs()
1166 */
1167 det_confs_butmask(cptr, 0);
1168 /*
1169 * if no Connect block, then deny access
1170 */
1171 if (!c_conf) {
1172 Debug((DEBUG_DNS, "sv_cl: access denied: %s[%s@%s]",
1173 cli_name(cptr), cli_username(cptr), cli_sockhost(cptr)));
1174 return -1;
1175 }
1176 /*
1177 * attach the Connect block to the client structure for later use.
1178 */
1179 attach_conf(cptr, c_conf);
1180
1181 if (!irc_in_addr_valid(&c_conf->address.addr))
1182 memcpy(&c_conf->address.addr, &cli_ip(cptr), sizeof(c_conf->address.addr));
1183
1184 Debug((DEBUG_DNS, "sv_cl: access ok: %s[%s]",
1185 cli_name(cptr), cli_sockhost(cptr)));
1186 return 0;
1187}
1188