1 |
/* |
2 |
* Copyright (c) 2002 Erik Fears |
3 |
* Copyright (c) 2014-2016 ircd-hybrid development team |
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 2 of the License, or |
8 |
* (at your option) 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
18 |
* USA |
19 |
*/ |
20 |
|
21 |
#include "setup.h" |
22 |
|
23 |
#include <stdio.h> |
24 |
#include <errno.h> |
25 |
#include <string.h> |
26 |
#include <stdlib.h> |
27 |
|
28 |
#include "config.h" |
29 |
#include "config-parser.h" |
30 |
#include "compat.h" |
31 |
#include "memory.h" |
32 |
#include "log.h" |
33 |
#include "scan.h" |
34 |
#include "irc.h" |
35 |
#include "opercmd.h" |
36 |
#include "stats.h" |
37 |
#include "firedns.h" |
38 |
#include "misc.h" |
39 |
|
40 |
|
41 |
FILE *conf_file; |
42 |
struct OptionsConf *OptionsItem = NULL; |
43 |
struct IRCConf *IRCItem = NULL; |
44 |
struct OpmConf *OpmItem = NULL; |
45 |
struct ExemptConf *ExemptItem = NULL; |
46 |
list_t *UserItemList = NULL; |
47 |
list_t *ScannerItemList = NULL; |
48 |
|
49 |
|
50 |
/* Malloc and initialize configuration data to NULL */ |
51 |
static void |
52 |
config_init(void) |
53 |
{ |
54 |
/* Init IRC block */ |
55 |
IRCItem = xcalloc(sizeof(*IRCItem)); |
56 |
IRCItem->channels = list_create(); |
57 |
IRCItem->performs = list_create(); |
58 |
IRCItem->notices = list_create(); |
59 |
|
60 |
/* Init Options block */ |
61 |
OptionsItem = xcalloc(sizeof(*OptionsItem)); |
62 |
|
63 |
/* Init OPM block */ |
64 |
OpmItem = xcalloc(sizeof(*OpmItem)); |
65 |
OpmItem->blacklists = list_create(); |
66 |
|
67 |
/* Init list of User blocks */ |
68 |
UserItemList = list_create(); |
69 |
|
70 |
/* Init list of Scanner blocks */ |
71 |
ScannerItemList = list_create(); |
72 |
|
73 |
/* Init list of Exempts */ |
74 |
ExemptItem = xcalloc(sizeof(*ExemptItem)); |
75 |
ExemptItem->masks = list_create(); |
76 |
} |
77 |
|
78 |
/* Setup structs that hold configuration data and then reset default values */ |
79 |
static void |
80 |
config_setup(void) |
81 |
{ |
82 |
/* Setup IRC Block Defaults */ |
83 |
IRCItem->mode = xstrdup("+c"); |
84 |
IRCItem->nick = xstrdup("hopm"); |
85 |
IRCItem->port = 6667; |
86 |
IRCItem->readtimeout = 900; |
87 |
IRCItem->reconnectinterval = 30; |
88 |
IRCItem->oper = xstrdup("undefined"); |
89 |
IRCItem->username = xstrdup("hopm"); |
90 |
IRCItem->realname = xstrdup("Hybrid Open Proxy Monitor"); |
91 |
IRCItem->server = xstrdup("irc.example.org"); |
92 |
IRCItem->connregex = xstrdup("\\*\\*\\* Notice -- Client connecting: ([^ ]+) \\(([^@]+)@([^\\)]+)\\) \\[([0-9\\.]+)\\].*"); |
93 |
IRCItem->kline = xstrdup("KLINE %u@%h :Open Proxy found on your host."); |
94 |
|
95 |
/* Setup options block defaults */ |
96 |
OptionsItem->command_queue_size = 64; |
97 |
OptionsItem->command_interval = 10; |
98 |
OptionsItem->command_timeout = 180; |
99 |
OptionsItem->negcache = 0; /* 0 disabled negcache */ |
100 |
OptionsItem->negcache_rebuild = 43200; |
101 |
OptionsItem->pidfile = xstrdup("hopm.pid"); |
102 |
OptionsItem->dns_fdlimit = 50; |
103 |
OptionsItem->dns_timeout = 5; |
104 |
OptionsItem->scanlog = NULL; |
105 |
} |
106 |
|
107 |
/* Load configuration from filename, via flex/bison parser */ |
108 |
void |
109 |
config_load(const char *filename) |
110 |
{ |
111 |
config_init(); |
112 |
config_setup(); /* Setup/clear current configuration */ |
113 |
|
114 |
log_printf("CONFIG -> Loading %s", filename); |
115 |
|
116 |
strlcpy(conffilebuf, filename, sizeof(conffilebuf)); |
117 |
|
118 |
if ((conf_file = fopen(filename, "r")) == NULL) |
119 |
{ |
120 |
log_printf("CONFIG -> Error opening %s: %s", filename, strerror(errno)); |
121 |
exit(EXIT_FAILURE); |
122 |
} |
123 |
|
124 |
yyparse(); |
125 |
fclose(conf_file); |
126 |
|
127 |
scan_init(); /* Initialize the scanners once we have the configuration */ |
128 |
stats_init(); /* Initialize stats (UPTIME) */ |
129 |
firedns_init(); /* Initialize adns */ |
130 |
} |
131 |
|
132 |
void |
133 |
yyerror(const char *str) |
134 |
{ |
135 |
char newlinebuf[512]; |
136 |
|
137 |
strip_tabs(newlinebuf, linebuf, sizeof(newlinebuf)); |
138 |
log_printf("CONFIG -> \"%s\", line %u: %s: %s", conffilebuf, lineno + 1, str, newlinebuf); |
139 |
exit(EXIT_FAILURE); |
140 |
} |