ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/conf_parser.y
(Generate patch)

Comparing:
ircd-hybrid-8/src/conf_parser.y (file contents), Revision 1352 by michael, Fri Apr 13 09:57:08 2012 UTC vs.
ircd-hybrid/trunk/src/conf_parser.y (file contents), Revision 6161 by michael, Thu Jun 18 10:55:29 2015 UTC

# Line 1 | Line 1
1   /*
2 < *  ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 < *  conf_parser.y: Parses the ircd configuration file.
2 > *  ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3   *
4 < *  Copyright (C) 2005 by the past and present ircd coders, and others.
4 > *  Copyright (c) 2000-2015 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
# Line 16 | Line 15
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307
18 > *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19   *  USA
21 *
22 *  $Id$
20   */
21  
22 + /*! \file conf_parser.y
23 + * \brief Parses the ircd configuration file.
24 + * \version $Id$
25 + */
26 +
27 +
28   %{
29  
27 #define YY_NO_UNPUT
30   #include <sys/types.h>
31   #include <string.h>
32  
# Line 33 | Line 35
35   #include "ircd.h"
36   #include "list.h"
37   #include "conf.h"
38 + #include "conf_class.h"
39 + #include "conf_pseudo.h"
40   #include "event.h"
41 + #include "id.h"
42   #include "log.h"
43   #include "client.h"     /* for UMODE_ALL only */
44   #include "irc_string.h"
40 #include "sprintf_irc.h"
45   #include "memory.h"
46   #include "modules.h"
47 < #include "s_serv.h"
47 > #include "server.h"
48   #include "hostmask.h"
49   #include "send.h"
50   #include "listener.h"
51   #include "resv.h"
52   #include "numeric.h"
53 < #include "s_user.h"
53 > #include "user.h"
54 > #include "motd.h"
55  
56   #ifdef HAVE_LIBCRYPTO
57   #include <openssl/rsa.h>
# Line 55 | Line 60
60   #include <openssl/dh.h>
61   #endif
62  
63 < int yylex(void);
63 > #include "rsa.h"
64  
65 < static char *class_name = NULL;
61 < static struct ConfItem *yy_conf = NULL;
62 < static struct AccessItem *yy_aconf = NULL;
63 < static struct MatchItem *yy_match_item = NULL;
64 < static struct ClassItem *yy_class = NULL;
65 < static char *yy_class_name = NULL;
66 <
67 < static dlink_list col_conf_list  = { NULL, NULL, 0 };
68 < static dlink_list hub_conf_list  = { NULL, NULL, 0 };
69 < static dlink_list leaf_conf_list = { NULL, NULL, 0 };
70 < static unsigned int listener_flags = 0;
71 < static unsigned int regex_ban = 0;
72 < static char userbuf[IRCD_BUFSIZE];
73 < static char hostbuf[IRCD_BUFSIZE];
74 < static char reasonbuf[REASONLEN + 1];
75 < static char gecos_name[REALLEN * 4];
76 < static char lfile[IRCD_BUFSIZE];
77 < static unsigned int ltype = 0;
78 < static unsigned int lsize = 0;
79 < static char *resv_reason = NULL;
80 < static char *listener_address = NULL;
81 <
82 < struct CollectItem
83 < {
84 <  dlink_node node;
85 <  char *name;
86 <  char *user;
87 <  char *host;
88 <  char *passwd;
89 <  int  port;
90 <  int  flags;
91 < #ifdef HAVE_LIBCRYPTO
92 <  char *rsa_public_key_file;
93 <  RSA *rsa_public_key;
94 < #endif
95 < };
65 > int yylex(void);
66  
67 < static void
98 < free_collect_item(struct CollectItem *item)
67 > static struct
68   {
69 <  MyFree(item->name);
70 <  MyFree(item->user);
71 <  MyFree(item->host);
72 <  MyFree(item->passwd);
73 < #ifdef HAVE_LIBCRYPTO
74 <  MyFree(item->rsa_public_key_file);
75 < #endif
76 <  MyFree(item);
77 < }
69 >  struct
70 >  {
71 >    dlink_list list;
72 >  } mask,
73 >    leaf,
74 >    hub;
75 >
76 >  struct
77 >  {
78 >    char buf[IRCD_BUFSIZE];
79 >  } name,
80 >    nick,
81 >    user,
82 >    host,
83 >    addr,
84 >    bind,
85 >    file,
86 >    ciph,
87 >    cert,
88 >    rpass,
89 >    spass,
90 >    whois,
91 >    class,
92 >    target,
93 >    prepend,
94 >    command;
95 >
96 >  struct
97 >  {
98 >    unsigned int value;
99 >  } flags,
100 >    modes,
101 >    size,
102 >    type,
103 >    port,
104 >    aftype,
105 >    ping_freq,
106 >    max_perip,
107 >    con_freq,
108 >    min_idle,
109 >    max_idle,
110 >    max_total,
111 >    max_global,
112 >    max_local,
113 >    max_ident,
114 >    max_sendq,
115 >    max_recvq,
116 >    max_channels,
117 >    cidr_bitlen_ipv4,
118 >    cidr_bitlen_ipv6,
119 >    number_per_cidr;
120 > } block_state;
121  
122   static void
123 < unhook_hub_leaf_confs(void)
123 > reset_block_state(void)
124   {
125 <  dlink_node *ptr;
114 <  dlink_node *next_ptr;
115 <  struct CollectItem *yy_hconf;
116 <  struct CollectItem *yy_lconf;
125 >  dlink_node *node = NULL, *node_next = NULL;
126  
127 <  DLINK_FOREACH_SAFE(ptr, next_ptr, hub_conf_list.head)
127 >  DLINK_FOREACH_SAFE(node, node_next, block_state.mask.list.head)
128    {
129 <    yy_hconf = ptr->data;
130 <    dlinkDelete(&yy_hconf->node, &hub_conf_list);
131 <    free_collect_item(yy_hconf);
129 >    MyFree(node->data);
130 >    dlinkDelete(node, &block_state.mask.list);
131 >    free_dlink_node(node);
132    }
133  
134 <  DLINK_FOREACH_SAFE(ptr, next_ptr, leaf_conf_list.head)
134 >  DLINK_FOREACH_SAFE(node, node_next, block_state.leaf.list.head)
135    {
136 <    yy_lconf = ptr->data;
137 <    dlinkDelete(&yy_lconf->node, &leaf_conf_list);
138 <    free_collect_item(yy_lconf);
136 >    MyFree(node->data);
137 >    dlinkDelete(node, &block_state.leaf.list);
138 >    free_dlink_node(node);
139    }
140 +
141 +  DLINK_FOREACH_SAFE(node, node_next, block_state.hub.list.head)
142 +  {
143 +    MyFree(node->data);
144 +    dlinkDelete(node, &block_state.hub.list);
145 +    free_dlink_node(node);
146 +  }
147 +
148 +  memset(&block_state, 0, sizeof(block_state));
149   }
150  
151   %}
# Line 138 | Line 156 | unhook_hub_leaf_confs(void)
156   }
157  
158   %token  ACCEPT_PASSWORD
141 %token  ACTION
159   %token  ADMIN
160   %token  AFTYPE
144 %token  T_ALLOW
161   %token  ANTI_NICK_FLOOD
162   %token  ANTI_SPAM_EXIT_MESSAGE_TIME
163   %token  AUTOCONN
164 < %token  T_BLOCK
165 < %token  BURST_AWAY
166 < %token  BURST_TOPICWHO
151 < %token  BYTES KBYTES MBYTES GBYTES TBYTES
164 > %token  AWAY_COUNT
165 > %token  AWAY_TIME
166 > %token  BYTES KBYTES MBYTES
167   %token  CALLER_ID_WAIT
168   %token  CAN_FLOOD
169   %token  CHANNEL
170 < %token  CIDR_BITLEN_IPV4
171 < %token  CIDR_BITLEN_IPV6
170 > %token  CIDR_BITLEN_IPV4
171 > %token  CIDR_BITLEN_IPV6
172   %token  CLASS
173   %token  CONNECT
174   %token  CONNECTFREQ
175 + %token  CYCLE_ON_HOST_CHANGE
176   %token  DEFAULT_FLOODCOUNT
177 + %token  DEFAULT_JOIN_FLOOD_COUNT
178 + %token  DEFAULT_JOIN_FLOOD_TIME
179 + %token  DEFAULT_MAX_CLIENTS
180   %token  DEFAULT_SPLIT_SERVER_COUNT
181   %token  DEFAULT_SPLIT_USER_COUNT
182   %token  DENY
# Line 165 | Line 184 | unhook_hub_leaf_confs(void)
184   %token  DIE
185   %token  DISABLE_AUTH
186   %token  DISABLE_FAKE_CHANNELS
168 %token  DISABLE_HIDDEN
169 %token  DISABLE_LOCAL_CHANNELS
187   %token  DISABLE_REMOTE_COMMANDS
188 + %token  DLINE_MIN_CIDR
189 + %token  DLINE_MIN_CIDR6
190   %token  DOTS_IN_IDENT
172 %token  DURATION
173 %token  EGDPOOL_PATH
191   %token  EMAIL
175 %token  ENABLE
192   %token  ENCRYPTED
193   %token  EXCEED_LIMIT
194   %token  EXEMPT
195   %token  FAILED_OPER_NOTICE
180 %token  IRCD_FLAGS
196   %token  FLATTEN_LINKS
197   %token  GECOS
198   %token  GENERAL
184 %token  GLINE
185 %token  GLINES
186 %token  GLINE_EXEMPT
187 %token  GLINE_TIME
188 %token  GLINE_MIN_CIDR
189 %token  GLINE_MIN_CIDR6
190 %token  GLOBAL_KILL
191 %token  IRCD_AUTH
192 %token  NEED_IDENT
193 %token  HAVENT_READ_CONF
199   %token  HIDDEN
200 < %token  HIDDEN_NAME
200 > %token  HIDDEN_NAME
201 > %token  HIDE_CHANS
202 > %token  HIDE_IDLE
203 > %token  HIDE_IDLE_FROM_OPERS
204   %token  HIDE_SERVER_IPS
205   %token  HIDE_SERVERS
206 < %token  HIDE_SPOOF_IPS
206 > %token  HIDE_SERVICES
207   %token  HOST
208   %token  HUB
209   %token  HUB_MASK
210   %token  IGNORE_BOGUS_TS
211   %token  INVISIBLE_ON_CONNECT
212 + %token  INVITE_CLIENT_COUNT
213 + %token  INVITE_CLIENT_TIME
214   %token  IP
215 + %token  IRCD_AUTH
216 + %token  IRCD_FLAGS
217 + %token  IRCD_SID
218   %token  KILL
219 < %token  KILL_CHASE_TIME_LIMIT
219 > %token  KILL_CHASE_TIME_LIMIT
220   %token  KLINE
221   %token  KLINE_EXEMPT
222 < %token  KLINE_REASON
223 < %token  KLINE_WITH_REASON
224 < %token  KNOCK_DELAY
222 > %token  KLINE_MIN_CIDR
223 > %token  KLINE_MIN_CIDR6
224 > %token  KNOCK_CLIENT_COUNT
225 > %token  KNOCK_CLIENT_TIME
226   %token  KNOCK_DELAY_CHANNEL
227   %token  LEAF_MASK
228   %token  LINKS_DELAY
229   %token  LISTEN
230 < %token  T_LOG
230 > %token  MASK
231   %token  MAX_ACCEPT
232   %token  MAX_BANS
233 < %token  MAX_CHANS_PER_USER
233 > %token  MAX_CHANNELS
234   %token  MAX_GLOBAL
235   %token  MAX_IDENT
236 + %token  MAX_IDLE
237   %token  MAX_LOCAL
238   %token  MAX_NICK_CHANGES
239 + %token  MAX_NICK_LENGTH
240   %token  MAX_NICK_TIME
241   %token  MAX_NUMBER
242   %token  MAX_TARGETS
243 + %token  MAX_TOPIC_LENGTH
244   %token  MAX_WATCH
245 < %token  MESSAGE_LOCALE
245 > %token  MIN_IDLE
246   %token  MIN_NONWILDCARD
247   %token  MIN_NONWILDCARD_SIMPLE
248   %token  MODULE
249   %token  MODULES
250 + %token  MOTD
251   %token  NAME
252 + %token  NEED_IDENT
253   %token  NEED_PASSWORD
254   %token  NETWORK_DESC
255   %token  NETWORK_NAME
256   %token  NICK
238 %token  NICK_CHANGES
257   %token  NO_CREATE_ON_SPLIT
258   %token  NO_JOIN_ON_SPLIT
259   %token  NO_OPER_FLOOD
260   %token  NO_TILDE
261   %token  NUMBER
244 %token  NUMBER_PER_IDENT
262   %token  NUMBER_PER_CIDR
263   %token  NUMBER_PER_IP
247 %token  NUMBER_PER_IP_GLOBAL
248 %token  OPERATOR
249 %token  OPERS_BYPASS_CALLERID
264   %token  OPER_ONLY_UMODES
265   %token  OPER_PASS_RESV
252 %token  OPER_SPY_T
266   %token  OPER_UMODES
267 < %token  JOIN_FLOOD_COUNT
268 < %token  JOIN_FLOOD_TIME
267 > %token  OPERATOR
268 > %token  OPERS_BYPASS_CALLERID
269   %token  PACE_WAIT
270   %token  PACE_WAIT_SIMPLE
271   %token  PASSWORD
272   %token  PATH
273   %token  PING_COOKIE
274   %token  PING_TIME
262 %token  PING_WARNING
275   %token  PORT
276   %token  QSTRING
277 < %token  QUIET_ON_BAN
277 > %token  RANDOM_IDLE
278   %token  REASON
279   %token  REDIRPORT
280   %token  REDIRSERV
269 %token  REGEX_T
281   %token  REHASH
271 %token  TREJECT_HOLD_TIME
282   %token  REMOTE
283   %token  REMOTEBAN
274 %token  RESTRICT_CHANNELS
275 %token  RESTRICTED
276 %token  RSA_PRIVATE_KEY_FILE
277 %token  RSA_PUBLIC_KEY_FILE
278 %token  SSL_CERTIFICATE_FILE
279 %token  SSL_DH_PARAM_FILE
280 %token  T_SSL_CLIENT_METHOD
281 %token  T_SSL_SERVER_METHOD
282 %token  T_SSLV3
283 %token  T_TLSV1
284   %token  RESV
285   %token  RESV_EXEMPT
286 < %token  SECONDS MINUTES HOURS DAYS WEEKS
287 < %token  SENDQ
286 > %token  RSA_PRIVATE_KEY_FILE
287 > %token  RSA_PUBLIC_KEY_FILE
288 > %token  SECONDS MINUTES HOURS DAYS WEEKS MONTHS YEARS
289   %token  SEND_PASSWORD
290 + %token  SENDQ
291   %token  SERVERHIDE
292   %token  SERVERINFO
291 %token  IRCD_SID
292 %token  TKLINE_EXPIRE_NOTICES
293 %token  T_SHARED
294 %token  T_CLUSTER
295 %token  TYPE
293   %token  SHORT_MOTD
297 %token  SILENT
294   %token  SPOOF
295   %token  SPOOF_NOTICE
296 + %token  SQUIT
297 + %token  SSL_CERTIFICATE_FILE
298 + %token  SSL_CERTIFICATE_FINGERPRINT
299 + %token  SSL_CONNECTION_REQUIRED
300 + %token  SSL_DH_ELLIPTIC_CURVE
301 + %token  SSL_DH_PARAM_FILE
302 + %token  SSL_MESSAGE_DIGEST_ALGORITHM
303   %token  STATS_E_DISABLED
304   %token  STATS_I_OPER_ONLY
305   %token  STATS_K_OPER_ONLY
306 + %token  STATS_M_OPER_ONLY
307   %token  STATS_O_OPER_ONLY
308   %token  STATS_P_OPER_ONLY
309 < %token  TBOOL
306 < %token  TMASKED
307 < %token  T_REJECT
308 < %token  TS_MAX_DELTA
309 < %token  TS_WARN_DELTA
310 < %token  TWODOTS
309 > %token  STATS_U_OPER_ONLY
310   %token  T_ALL
311   %token  T_BOTS
313 %token  T_SOFTCALLERID
312   %token  T_CALLERID
313   %token  T_CCONN
314 < %token  T_CCONN_FULL
315 < %token  T_SSL_CIPHER_LIST
318 < %token  T_CLIENT_FLOOD
314 > %token  T_COMMAND
315 > %token  T_CLUSTER
316   %token  T_DEAF
317   %token  T_DEBUG
318   %token  T_DLINE
322 %token  T_DRONE
319   %token  T_EXTERNAL
320 + %token  T_FARCONNECT
321 + %token  T_FILE
322   %token  T_FULL
323 + %token  T_GLOBOPS
324   %token  T_INVISIBLE
325   %token  T_IPV4
326   %token  T_IPV6
327   %token  T_LOCOPS
328 < %token  T_MAX_CLIENTS
328 > %token  T_LOG
329   %token  T_NCHANGE
330 < %token  T_OPERWALL
330 > %token  T_NONONREG
331 > %token  T_OPME
332 > %token  T_PREPEND
333 > %token  T_PSEUDO
334 > %token  T_RECVQ
335   %token  T_REJ
336 + %token  T_RESTART
337   %token  T_SERVER
338 + %token  T_SERVICE
339   %token  T_SERVNOTICE
340 + %token  T_SET
341 + %token  T_SHARED
342 + %token  T_SIZE
343   %token  T_SKILL
344 + %token  T_SOFTCALLERID
345   %token  T_SPY
346   %token  T_SSL
347 + %token  T_SSL_CIPHER_LIST
348 + %token  T_TARGET
349   %token  T_UMODES
350   %token  T_UNAUTH
351   %token  T_UNDLINE
352   %token  T_UNLIMITED
353   %token  T_UNRESV
354   %token  T_UNXLINE
344 %token  T_GLOBOPS
355   %token  T_WALLOP
356 < %token  T_RESTART
357 < %token  T_SERVICE
358 < %token  T_SERVICES_NAME
356 > %token  T_WALLOPS
357 > %token  T_WEBIRC
358 > %token  TBOOL
359 > %token  THROTTLE_COUNT
360   %token  THROTTLE_TIME
361 < %token  TOPICBURST
362 < %token  TRUE_NO_OPER_FLOOD
363 < %token  TKLINE
364 < %token  TXLINE
365 < %token  TRESV
361 > %token  TKLINE_EXPIRE_NOTICES
362 > %token  TMASKED
363 > %token  TS_MAX_DELTA
364 > %token  TS_WARN_DELTA
365 > %token  TWODOTS
366 > %token  TYPE
367   %token  UNKLINE
356 %token  USER
357 %token  USE_EGD
358 %token  USE_EXCEPT
359 %token  USE_INVEX
360 %token  USE_KNOCK
368   %token  USE_LOGGING
369 < %token  USE_WHOIS_ACTUALLY
369 > %token  USER
370   %token  VHOST
371   %token  VHOST6
372 + %token  WARN_NO_CONNECT_BLOCK
373 + %token  WHOIS
374   %token  XLINE
375 < %token  WARN
367 < %token  WARN_NO_NLINE
368 < %token  T_SIZE
369 < %token  T_FILE
375 > %token  XLINE_EXEMPT
376  
377 < %type <string> QSTRING
378 < %type <number> NUMBER
379 < %type <number> timespec
380 < %type <number> timespec_
381 < %type <number> sizespec
382 < %type <number> sizespec_
377 > %type  <string> QSTRING
378 > %type  <number> NUMBER
379 > %type  <number> timespec
380 > %type  <number> timespec_
381 > %type  <number> sizespec
382 > %type  <number> sizespec_
383  
384   %%
385 < conf:  
385 > conf:
386          | conf conf_item
387          ;
388  
389   conf_item:        admin_entry
390                  | logging_entry
391                  | oper_entry
392 <                | channel_entry
393 <                | class_entry
392 >                | channel_entry
393 >                | class_entry
394                  | listen_entry
395                  | auth_entry
396                  | serverinfo_entry
397 <                | serverhide_entry
397 >                | serverhide_entry
398                  | resv_entry
399                  | service_entry
400                  | shared_entry
401 <                | cluster_entry
401 >                | cluster_entry
402                  | connect_entry
403                  | kill_entry
404                  | deny_entry
405 <                | exempt_entry
406 <                | general_entry
401 <                | gline_entry
405 >                | exempt_entry
406 >                | general_entry
407                  | gecos_entry
408                  | modules_entry
409 +                | motd_entry
410 +                | pseudo_entry
411                  | error ';'
412                  | error '}'
413          ;
414  
415  
416   timespec_: { $$ = 0; } | timespec;
417 < timespec:       NUMBER timespec_
418 <                {
419 <                        $$ = $1 + $2;
420 <                }
421 <                | NUMBER SECONDS timespec_
422 <                {
423 <                        $$ = $1 + $3;
424 <                }
425 <                | NUMBER MINUTES timespec_
426 <                {
427 <                        $$ = $1 * 60 + $3;
428 <                }
429 <                | NUMBER HOURS timespec_
430 <                {
431 <                        $$ = $1 * 60 * 60 + $3;
432 <                }
426 <                | NUMBER DAYS timespec_
427 <                {
428 <                        $$ = $1 * 60 * 60 * 24 + $3;
429 <                }
430 <                | NUMBER WEEKS timespec_
431 <                {
432 <                        $$ = $1 * 60 * 60 * 24 * 7 + $3;
433 <                }
434 <                ;
435 <
436 < sizespec_:      { $$ = 0; } | sizespec;
437 < sizespec:       NUMBER sizespec_ { $$ = $1 + $2; }
438 <                | NUMBER BYTES sizespec_ { $$ = $1 + $3; }
439 <                | NUMBER KBYTES sizespec_ { $$ = $1 * 1024 + $3; }
440 <                | NUMBER MBYTES sizespec_ { $$ = $1 * 1024 * 1024 + $3; }
441 <                ;
417 > timespec:  NUMBER timespec_         { $$ = $1 + $2; } |
418 >           NUMBER SECONDS timespec_ { $$ = $1 + $3; } |
419 >           NUMBER MINUTES timespec_ { $$ = $1 * 60 + $3; } |
420 >           NUMBER HOURS timespec_   { $$ = $1 * 60 * 60 + $3; } |
421 >           NUMBER DAYS timespec_    { $$ = $1 * 60 * 60 * 24 + $3; } |
422 >           NUMBER WEEKS timespec_   { $$ = $1 * 60 * 60 * 24 * 7 + $3; } |
423 >           NUMBER MONTHS timespec_  { $$ = $1 * 60 * 60 * 24 * 7 * 4 + $3; } |
424 >           NUMBER YEARS timespec_   { $$ = $1 * 60 * 60 * 24 * 365 + $3; }
425 >           ;
426 >
427 > sizespec_:  { $$ = 0; } | sizespec;
428 > sizespec:   NUMBER sizespec_ { $$ = $1 + $2; } |
429 >            NUMBER BYTES sizespec_ { $$ = $1 + $3; } |
430 >            NUMBER KBYTES sizespec_ { $$ = $1 * 1024 + $3; } |
431 >            NUMBER MBYTES sizespec_ { $$ = $1 * 1024 * 1024 + $3; }
432 >            ;
433  
434  
435   /***************************************************************************
# Line 466 | Line 457 | modules_path: PATH '=' QSTRING ';'
457   serverinfo_entry: SERVERINFO '{' serverinfo_items '}' ';';
458  
459   serverinfo_items:       serverinfo_items serverinfo_item | serverinfo_item ;
460 < serverinfo_item:        serverinfo_name | serverinfo_vhost |
461 <                        serverinfo_hub | serverinfo_description |
462 <                        serverinfo_network_name | serverinfo_network_desc |
463 <                        serverinfo_max_clients | serverinfo_ssl_dh_param_file |
464 <                        serverinfo_rsa_private_key_file | serverinfo_vhost6 |
465 <                        serverinfo_sid | serverinfo_ssl_certificate_file |
466 <                        serverinfo_ssl_client_method | serverinfo_ssl_server_method |
460 > serverinfo_item:        serverinfo_name |
461 >                        serverinfo_vhost |
462 >                        serverinfo_hub |
463 >                        serverinfo_description |
464 >                        serverinfo_network_name |
465 >                        serverinfo_network_desc |
466 >                        serverinfo_default_max_clients |
467 >                        serverinfo_max_nick_length |
468 >                        serverinfo_max_topic_length |
469 >                        serverinfo_ssl_dh_param_file |
470 >                        serverinfo_ssl_dh_elliptic_curve |
471 >                        serverinfo_rsa_private_key_file |
472 >                        serverinfo_vhost6 |
473 >                        serverinfo_sid |
474 >                        serverinfo_ssl_certificate_file |
475                          serverinfo_ssl_cipher_list |
476 <                        error ';' ;
477 <
479 <
480 < serverinfo_ssl_client_method: T_SSL_CLIENT_METHOD '=' client_method_types ';' ;
481 < serverinfo_ssl_server_method: T_SSL_SERVER_METHOD '=' server_method_types ';' ;
482 <
483 < client_method_types: client_method_types ',' client_method_type_item | client_method_type_item;
484 < client_method_type_item: T_SSLV3
485 < {
486 < #ifdef HAVE_LIBCRYPTO
487 <  if (conf_parser_ctx.pass == 2 && ServerInfo.client_ctx)
488 <    SSL_CTX_clear_options(ServerInfo.client_ctx, SSL_OP_NO_SSLv3);
489 < #endif
490 < } | T_TLSV1
491 < {
492 < #ifdef HAVE_LIBCRYPTO
493 <  if (conf_parser_ctx.pass == 2 && ServerInfo.client_ctx)
494 <    SSL_CTX_clear_options(ServerInfo.client_ctx, SSL_OP_NO_TLSv1);
495 < #endif
496 < };
476 >                        serverinfo_ssl_message_digest_algorithm |
477 >                        error ';' ;
478  
498 server_method_types: server_method_types ',' server_method_type_item | server_method_type_item;
499 server_method_type_item: T_SSLV3
500 {
501 #ifdef HAVE_LIBCRYPTO
502  if (conf_parser_ctx.pass == 2 && ServerInfo.server_ctx)
503    SSL_CTX_clear_options(ServerInfo.server_ctx, SSL_OP_NO_SSLv3);
504 #endif
505 } | T_TLSV1
506 {
507 #ifdef HAVE_LIBCRYPTO
508  if (conf_parser_ctx.pass == 2 && ServerInfo.server_ctx)
509    SSL_CTX_clear_options(ServerInfo.server_ctx, SSL_OP_NO_TLSv1);
510 #endif
511 };
479  
480   serverinfo_ssl_certificate_file: SSL_CERTIFICATE_FILE '=' QSTRING ';'
481   {
482   #ifdef HAVE_LIBCRYPTO
483 <  if (conf_parser_ctx.pass == 2 && ServerInfo.server_ctx)
483 >  if (conf_parser_ctx.pass == 2)
484    {
485 <    if (!ServerInfo.rsa_private_key_file)
485 >    if (!ConfigServerInfo.rsa_private_key_file)
486      {
487 <      yyerror("No rsa_private_key_file specified, SSL disabled");
487 >      conf_error_report("No rsa_private_key_file specified, SSL disabled");
488        break;
489      }
490  
491 <    if (SSL_CTX_use_certificate_file(ServerInfo.server_ctx, yylval.string,
492 <                                     SSL_FILETYPE_PEM) <= 0 ||
526 <        SSL_CTX_use_certificate_file(ServerInfo.client_ctx, yylval.string,
527 <                                     SSL_FILETYPE_PEM) <= 0)
491 >    if (SSL_CTX_use_certificate_chain_file(ConfigServerInfo.server_ctx, yylval.string) <= 0 ||
492 >        SSL_CTX_use_certificate_chain_file(ConfigServerInfo.client_ctx, yylval.string) <= 0)
493      {
494 <      yyerror(ERR_lib_error_string(ERR_get_error()));
494 >      report_crypto_errors();
495 >      conf_error_report("Could not open/read certificate file");
496        break;
497      }
498  
499 <    if (SSL_CTX_use_PrivateKey_file(ServerInfo.server_ctx, ServerInfo.rsa_private_key_file,
499 >    if (SSL_CTX_use_PrivateKey_file(ConfigServerInfo.server_ctx, ConfigServerInfo.rsa_private_key_file,
500                                      SSL_FILETYPE_PEM) <= 0 ||
501 <        SSL_CTX_use_PrivateKey_file(ServerInfo.client_ctx, ServerInfo.rsa_private_key_file,
501 >        SSL_CTX_use_PrivateKey_file(ConfigServerInfo.client_ctx, ConfigServerInfo.rsa_private_key_file,
502                                      SSL_FILETYPE_PEM) <= 0)
503      {
504 <      yyerror(ERR_lib_error_string(ERR_get_error()));
504 >      report_crypto_errors();
505 >      conf_error_report("Could not read RSA private key");
506        break;
507      }
508  
509 <    if (!SSL_CTX_check_private_key(ServerInfo.server_ctx) ||
510 <        !SSL_CTX_check_private_key(ServerInfo.client_ctx))
509 >    if (!SSL_CTX_check_private_key(ConfigServerInfo.server_ctx) ||
510 >        !SSL_CTX_check_private_key(ConfigServerInfo.client_ctx))
511      {
512 <      yyerror(ERR_lib_error_string(ERR_get_error()));
512 >      report_crypto_errors();
513 >      conf_error_report("Could not read RSA private key");
514        break;
515      }
516    }
# Line 552 | Line 520 | serverinfo_ssl_certificate_file: SSL_CER
520   serverinfo_rsa_private_key_file: RSA_PRIVATE_KEY_FILE '=' QSTRING ';'
521   {
522   #ifdef HAVE_LIBCRYPTO
523 <  if (conf_parser_ctx.pass == 1)
556 <  {
557 <    BIO *file;
523 >  BIO *file = NULL;
524  
525 <    if (ServerInfo.rsa_private_key)
526 <    {
561 <      RSA_free(ServerInfo.rsa_private_key);
562 <      ServerInfo.rsa_private_key = NULL;
563 <    }
525 >  if (conf_parser_ctx.pass != 1)
526 >    break;
527  
528 <    if (ServerInfo.rsa_private_key_file)
529 <    {
530 <      MyFree(ServerInfo.rsa_private_key_file);
531 <      ServerInfo.rsa_private_key_file = NULL;
532 <    }
528 >  if (ConfigServerInfo.rsa_private_key)
529 >  {
530 >    RSA_free(ConfigServerInfo.rsa_private_key);
531 >    ConfigServerInfo.rsa_private_key = NULL;
532 >  }
533  
534 <    DupString(ServerInfo.rsa_private_key_file, yylval.string);
534 >  if (ConfigServerInfo.rsa_private_key_file)
535 >  {
536 >    MyFree(ConfigServerInfo.rsa_private_key_file);
537 >    ConfigServerInfo.rsa_private_key_file = NULL;
538 >  }
539  
540 <    if ((file = BIO_new_file(yylval.string, "r")) == NULL)
574 <    {
575 <      yyerror("File open failed, ignoring");
576 <      break;
577 <    }
540 >  ConfigServerInfo.rsa_private_key_file = xstrdup(yylval.string);
541  
542 <    ServerInfo.rsa_private_key = PEM_read_bio_RSAPrivateKey(file, NULL, 0, NULL);
542 >  if ((file = BIO_new_file(yylval.string, "r")) == NULL)
543 >  {
544 >    conf_error_report("File open failed, ignoring");
545 >    break;
546 >  }
547  
548 <    BIO_set_close(file, BIO_CLOSE);
582 <    BIO_free(file);
548 >  ConfigServerInfo.rsa_private_key = PEM_read_bio_RSAPrivateKey(file, NULL, 0, NULL);
549  
550 <    if (ServerInfo.rsa_private_key == NULL)
551 <    {
586 <      yyerror("Couldn't extract key, ignoring");
587 <      break;
588 <    }
550 >  BIO_set_close(file, BIO_CLOSE);
551 >  BIO_free(file);
552  
553 <    if (!RSA_check_key(ServerInfo.rsa_private_key))
554 <    {
555 <      RSA_free(ServerInfo.rsa_private_key);
556 <      ServerInfo.rsa_private_key = NULL;
553 >  if (ConfigServerInfo.rsa_private_key == NULL)
554 >  {
555 >    conf_error_report("Couldn't extract key, ignoring");
556 >    break;
557 >  }
558  
559 <      yyerror("Invalid key, ignoring");
560 <      break;
561 <    }
559 >  if (!RSA_check_key(ConfigServerInfo.rsa_private_key))
560 >  {
561 >    RSA_free(ConfigServerInfo.rsa_private_key);
562 >    ConfigServerInfo.rsa_private_key = NULL;
563  
564 <    /* require 2048 bit (256 byte) key */
565 <    if (RSA_size(ServerInfo.rsa_private_key) != 256)
566 <    {
602 <      RSA_free(ServerInfo.rsa_private_key);
603 <      ServerInfo.rsa_private_key = NULL;
564 >    conf_error_report("Invalid key, ignoring");
565 >    break;
566 >  }
567  
568 <      yyerror("Not a 2048 bit key, ignoring");
569 <    }
568 >  if (RSA_size(ConfigServerInfo.rsa_private_key) < 128)
569 >  {
570 >    RSA_free(ConfigServerInfo.rsa_private_key);
571 >    ConfigServerInfo.rsa_private_key = NULL;
572 >
573 >    conf_error_report("Ignoring serverinfo::rsa_private_key_file -- need at least a 1024 bit key size");
574    }
575   #endif
576   };
577  
578   serverinfo_ssl_dh_param_file: SSL_DH_PARAM_FILE '=' QSTRING ';'
579   {
613 /* TBD - XXX: error reporting */
580   #ifdef HAVE_LIBCRYPTO
581 <  if (conf_parser_ctx.pass == 2 && ServerInfo.server_ctx)
581 >  if (conf_parser_ctx.pass == 2)
582    {
583      BIO *file = BIO_new_file(yylval.string, "r");
584  
# Line 625 | Line 591 | serverinfo_ssl_dh_param_file: SSL_DH_PAR
591        if (dh)
592        {
593          if (DH_size(dh) < 128)
594 <          ilog(LOG_TYPE_IRCD, "Ignoring serverinfo::ssl_dh_param_file -- need at least a 1024 bit DH prime size");
594 >          conf_error_report("Ignoring serverinfo::ssl_dh_param_file -- need at least a 1024 bit DH prime size");
595          else
596 <          SSL_CTX_set_tmp_dh(ServerInfo.server_ctx, dh);
596 >          SSL_CTX_set_tmp_dh(ConfigServerInfo.server_ctx, dh);
597  
598          DH_free(dh);
599        }
600      }
601 +    else
602 +      conf_error_report("Ignoring serverinfo::ssl_dh_param_file -- could not open/read Diffie-Hellman parameter file");
603    }
604   #endif
605   };
# Line 639 | Line 607 | serverinfo_ssl_dh_param_file: SSL_DH_PAR
607   serverinfo_ssl_cipher_list: T_SSL_CIPHER_LIST '=' QSTRING ';'
608   {
609   #ifdef HAVE_LIBCRYPTO
610 <  if (conf_parser_ctx.pass == 2 && ServerInfo.server_ctx)
611 <    SSL_CTX_set_cipher_list(ServerInfo.server_ctx, yylval.string);
610 >  if (conf_parser_ctx.pass == 2)
611 >    SSL_CTX_set_cipher_list(ConfigServerInfo.server_ctx, yylval.string);
612 > #endif
613 > };
614 >
615 > serverinfo_ssl_message_digest_algorithm: SSL_MESSAGE_DIGEST_ALGORITHM '=' QSTRING ';'
616 > {
617 > #ifdef HAVE_LIBCRYPTO
618 >  if (conf_parser_ctx.pass == 2)
619 >  {
620 >    if ((ConfigServerInfo.message_digest_algorithm = EVP_get_digestbyname(yylval.string)) == NULL)
621 >    {
622 >      ConfigServerInfo.message_digest_algorithm = EVP_sha256();
623 >      conf_error_report("Ignoring serverinfo::ssl_message_digest_algorithm -- unknown message digest algorithm");
624 >    }
625 >  }
626 > #endif
627 > }
628 >
629 > serverinfo_ssl_dh_elliptic_curve: SSL_DH_ELLIPTIC_CURVE '=' QSTRING ';'
630 > {
631 > #ifdef HAVE_LIBCRYPTO
632 > #if OPENSSL_VERSION_NUMBER >= 0x009080FFL && !defined(OPENSSL_NO_ECDH)
633 >  int nid = 0;
634 >  EC_KEY *key = NULL;
635 >
636 >  if (conf_parser_ctx.pass == 2)
637 >  {
638 >    if ((nid = OBJ_sn2nid(yylval.string)) == 0)
639 >    {
640 >        conf_error_report("Ignoring serverinfo::ssl_dh_elliptic_curve -- unknown curve name");
641 >        break;
642 >    }
643 >
644 >    if ((key = EC_KEY_new_by_curve_name(nid)) == NULL)
645 >    {
646 >      conf_error_report("Ignoring serverinfo::ssl_dh_elliptic_curve -- could not create curve");
647 >      break;
648 >    }
649 >
650 >    SSL_CTX_set_tmp_ecdh(ConfigServerInfo.server_ctx, key);
651 >    EC_KEY_free(key);
652 > }
653 > #endif
654   #endif
655   };
656  
657 < serverinfo_name: NAME '=' QSTRING ';'
657 > serverinfo_name: NAME '=' QSTRING ';'
658   {
659    /* this isn't rehashable */
660 <  if (conf_parser_ctx.pass == 2 && !ServerInfo.name)
660 >  if (conf_parser_ctx.pass == 2 && !ConfigServerInfo.name)
661    {
662      if (valid_servname(yylval.string))
663 <      DupString(ServerInfo.name, yylval.string);
663 >      ConfigServerInfo.name = xstrdup(yylval.string);
664      else
665      {
666 <      ilog(LOG_TYPE_IRCD, "Ignoring serverinfo::name -- invalid name. Aborting.");
666 >      conf_error_report("Ignoring serverinfo::name -- invalid name. Aborting.");
667        exit(0);
668      }
669    }
670   };
671  
672 < serverinfo_sid: IRCD_SID '=' QSTRING ';'
672 > serverinfo_sid: IRCD_SID '=' QSTRING ';'
673   {
674    /* this isn't rehashable */
675 <  if (conf_parser_ctx.pass == 2 && !ServerInfo.sid)
675 >  if (conf_parser_ctx.pass == 2 && !ConfigServerInfo.sid)
676    {
677      if (valid_sid(yylval.string))
678 <      DupString(ServerInfo.sid, yylval.string);
678 >      ConfigServerInfo.sid = xstrdup(yylval.string);
679      else
680      {
681 <      ilog(LOG_TYPE_IRCD, "Ignoring serverinfo::sid -- invalid SID. Aborting.");
681 >      conf_error_report("Ignoring serverinfo::sid -- invalid SID. Aborting.");
682        exit(0);
683      }
684    }
# Line 678 | Line 688 | serverinfo_description: DESCRIPTION '='
688   {
689    if (conf_parser_ctx.pass == 2)
690    {
691 <    MyFree(ServerInfo.description);
692 <    DupString(ServerInfo.description,yylval.string);
691 >    MyFree(ConfigServerInfo.description);
692 >    ConfigServerInfo.description = xstrdup(yylval.string);
693 >    strlcpy(me.info, ConfigServerInfo.description, sizeof(me.info));
694    }
695   };
696  
# Line 689 | Line 700 | serverinfo_network_name: NETWORK_NAME '=
700    {
701      char *p;
702  
703 <    if ((p = strchr(yylval.string, ' ')) != NULL)
704 <      p = '\0';
703 >    if ((p = strchr(yylval.string, ' ')))
704 >      *p = '\0';
705  
706 <    MyFree(ServerInfo.network_name);
707 <    DupString(ServerInfo.network_name, yylval.string);
706 >    MyFree(ConfigServerInfo.network_name);
707 >    ConfigServerInfo.network_name = xstrdup(yylval.string);
708    }
709   };
710  
711   serverinfo_network_desc: NETWORK_DESC '=' QSTRING ';'
712   {
713 <  if (conf_parser_ctx.pass == 2)
714 <  {
715 <    MyFree(ServerInfo.network_desc);
716 <    DupString(ServerInfo.network_desc, yylval.string);
717 <  }
713 >  if (conf_parser_ctx.pass != 2)
714 >    break;
715 >
716 >  MyFree(ConfigServerInfo.network_desc);
717 >  ConfigServerInfo.network_desc = xstrdup(yylval.string);
718   };
719  
720   serverinfo_vhost: VHOST '=' QSTRING ';'
# Line 722 | Line 733 | serverinfo_vhost: VHOST '=' QSTRING ';'
733        ilog(LOG_TYPE_IRCD, "Invalid netmask for server vhost(%s)", yylval.string);
734      else
735      {
736 <      assert(res != NULL);
736 >      assert(res);
737  
738 <      memcpy(&ServerInfo.ip, res->ai_addr, res->ai_addrlen);
739 <      ServerInfo.ip.ss.ss_family = res->ai_family;
740 <      ServerInfo.ip.ss_len = res->ai_addrlen;
738 >      memcpy(&ConfigServerInfo.ip, res->ai_addr, res->ai_addrlen);
739 >      ConfigServerInfo.ip.ss.ss_family = res->ai_family;
740 >      ConfigServerInfo.ip.ss_len = res->ai_addrlen;
741        freeaddrinfo(res);
742  
743 <      ServerInfo.specific_ipv4_vhost = 1;
743 >      ConfigServerInfo.specific_ipv4_vhost = 1;
744      }
745    }
746   };
747  
748   serverinfo_vhost6: VHOST6 '=' QSTRING ';'
749   {
739 #ifdef IPV6
750    if (conf_parser_ctx.pass == 2 && *yylval.string != '*')
751    {
752      struct addrinfo hints, *res;
# Line 751 | Line 761 | serverinfo_vhost6: VHOST6 '=' QSTRING ';
761        ilog(LOG_TYPE_IRCD, "Invalid netmask for server vhost6(%s)", yylval.string);
762      else
763      {
764 <      assert(res != NULL);
764 >      assert(res);
765  
766 <      memcpy(&ServerInfo.ip6, res->ai_addr, res->ai_addrlen);
767 <      ServerInfo.ip6.ss.ss_family = res->ai_family;
768 <      ServerInfo.ip6.ss_len = res->ai_addrlen;
766 >      memcpy(&ConfigServerInfo.ip6, res->ai_addr, res->ai_addrlen);
767 >      ConfigServerInfo.ip6.ss.ss_family = res->ai_family;
768 >      ConfigServerInfo.ip6.ss_len = res->ai_addrlen;
769        freeaddrinfo(res);
770  
771 <      ServerInfo.specific_ipv6_vhost = 1;
771 >      ConfigServerInfo.specific_ipv6_vhost = 1;
772      }
773    }
764 #endif
774   };
775  
776 < serverinfo_max_clients: T_MAX_CLIENTS '=' NUMBER ';'
776 > serverinfo_default_max_clients: DEFAULT_MAX_CLIENTS '=' NUMBER ';'
777   {
778 <  if (conf_parser_ctx.pass == 2)
778 >  if (conf_parser_ctx.pass != 2)
779 >    break;
780 >
781 >  if ($3 < MAXCLIENTS_MIN)
782    {
783 <    recalc_fdlimit(NULL);
783 >    char buf[IRCD_BUFSIZE] = "";
784  
785 <    if ($3 < MAXCLIENTS_MIN)
786 <    {
787 <      char buf[IRCD_BUFSIZE];
788 <      ircsprintf(buf, "MAXCLIENTS too low, setting to %d", MAXCLIENTS_MIN);
789 <      yyerror(buf);
790 <    }
791 <    else if ($3 > MAXCLIENTS_MAX)
792 <    {
793 <      char buf[IRCD_BUFSIZE];
794 <      ircsprintf(buf, "MAXCLIENTS too high, setting to %d", MAXCLIENTS_MAX);
795 <      yyerror(buf);
796 <    }
797 <    else
798 <      ServerInfo.max_clients = $3;
785 >    snprintf(buf, sizeof(buf), "MAXCLIENTS too low, setting to %d", MAXCLIENTS_MIN);
786 >    conf_error_report(buf);
787 >    ConfigServerInfo.default_max_clients = MAXCLIENTS_MIN;
788 >  }
789 >  else if ($3 > MAXCLIENTS_MAX)
790 >  {
791 >    char buf[IRCD_BUFSIZE] = "";
792 >
793 >    snprintf(buf, sizeof(buf), "MAXCLIENTS too high, setting to %d", MAXCLIENTS_MAX);
794 >    conf_error_report(buf);
795 >    ConfigServerInfo.default_max_clients = MAXCLIENTS_MAX;
796 >  }
797 >  else
798 >    ConfigServerInfo.default_max_clients = $3;
799 > };
800 >
801 > serverinfo_max_nick_length: MAX_NICK_LENGTH '=' NUMBER ';'
802 > {
803 >  if (conf_parser_ctx.pass != 2)
804 >    break;
805 >
806 >  if ($3 < 9)
807 >  {
808 >    conf_error_report("max_nick_length too low, setting to 9");
809 >    ConfigServerInfo.max_nick_length = 9;
810 >  }
811 >  else if ($3 > NICKLEN)
812 >  {
813 >    char buf[IRCD_BUFSIZE] = "";
814 >
815 >    snprintf(buf, sizeof(buf), "max_nick_length too high, setting to %d", NICKLEN);
816 >    conf_error_report(buf);
817 >    ConfigServerInfo.max_nick_length = NICKLEN;
818 >  }
819 >  else
820 >    ConfigServerInfo.max_nick_length = $3;
821 > };
822 >
823 > serverinfo_max_topic_length: MAX_TOPIC_LENGTH '=' NUMBER ';'
824 > {
825 >  if (conf_parser_ctx.pass != 2)
826 >    break;
827 >
828 >  if ($3 < 80)
829 >  {
830 >    conf_error_report("max_topic_length too low, setting to 80");
831 >    ConfigServerInfo.max_topic_length = 80;
832    }
833 +  else if ($3 > TOPICLEN)
834 +  {
835 +    char buf[IRCD_BUFSIZE] = "";
836 +
837 +    snprintf(buf, sizeof(buf), "max_topic_length too high, setting to %d", TOPICLEN);
838 +    conf_error_report(buf);
839 +    ConfigServerInfo.max_topic_length = TOPICLEN;
840 +  }
841 +  else
842 +    ConfigServerInfo.max_topic_length = $3;
843   };
844  
845 < serverinfo_hub: HUB '=' TBOOL ';'
845 > serverinfo_hub: HUB '=' TBOOL ';'
846   {
847    if (conf_parser_ctx.pass == 2)
848 <    ServerInfo.hub = yylval.number;
848 >    ConfigServerInfo.hub = yylval.number;
849   };
850  
851   /***************************************************************************
# Line 799 | Line 854 | serverinfo_hub: HUB '=' TBOOL ';'
854   admin_entry: ADMIN  '{' admin_items '}' ';' ;
855  
856   admin_items: admin_items admin_item | admin_item;
857 < admin_item:  admin_name | admin_description |
858 <             admin_email | error ';' ;
857 > admin_item:  admin_name |
858 >             admin_description |
859 >             admin_email |
860 >             error ';' ;
861  
862 < admin_name: NAME '=' QSTRING ';'
862 > admin_name: NAME '=' QSTRING ';'
863   {
864 <  if (conf_parser_ctx.pass == 2)
865 <  {
866 <    MyFree(AdminInfo.name);
867 <    DupString(AdminInfo.name, yylval.string);
868 <  }
864 >  if (conf_parser_ctx.pass != 2)
865 >    break;
866 >
867 >  MyFree(ConfigAdminInfo.name);
868 >  ConfigAdminInfo.name = xstrdup(yylval.string);
869   };
870  
871   admin_email: EMAIL '=' QSTRING ';'
872   {
873 <  if (conf_parser_ctx.pass == 2)
874 <  {
875 <    MyFree(AdminInfo.email);
876 <    DupString(AdminInfo.email, yylval.string);
877 <  }
873 >  if (conf_parser_ctx.pass != 2)
874 >    break;
875 >
876 >  MyFree(ConfigAdminInfo.email);
877 >  ConfigAdminInfo.email = xstrdup(yylval.string);
878   };
879  
880   admin_description: DESCRIPTION '=' QSTRING ';'
881   {
882 +  if (conf_parser_ctx.pass != 2)
883 +    break;
884 +
885 +  MyFree(ConfigAdminInfo.description);
886 +  ConfigAdminInfo.description = xstrdup(yylval.string);
887 + };
888 +
889 + /***************************************************************************
890 + * motd section
891 + ***************************************************************************/
892 + motd_entry: MOTD
893 + {
894 +  if (conf_parser_ctx.pass == 2)
895 +    reset_block_state();
896 + } '{' motd_items '}' ';'
897 + {
898 +  dlink_node *node = NULL;
899 +
900 +  if (conf_parser_ctx.pass != 2)
901 +    break;
902 +
903 +  if (!block_state.file.buf[0])
904 +    break;
905 +
906 +  DLINK_FOREACH(node, block_state.mask.list.head)
907 +    motd_add(node->data, block_state.file.buf);
908 + };
909 +
910 + motd_items: motd_items motd_item | motd_item;
911 + motd_item:  motd_mask | motd_file | error ';' ;
912 +
913 + motd_mask: MASK '=' QSTRING ';'
914 + {
915 +  if (conf_parser_ctx.pass == 2)
916 +    dlinkAdd(xstrdup(yylval.string), make_dlink_node(), &block_state.mask.list);
917 + };
918 +
919 + motd_file: T_FILE '=' QSTRING ';'
920 + {
921 +  if (conf_parser_ctx.pass == 2)
922 +    strlcpy(block_state.file.buf, yylval.string, sizeof(block_state.file.buf));
923 + };
924 +
925 + /***************************************************************************
926 + * pseudo section
927 + ***************************************************************************/
928 + pseudo_entry: T_PSEUDO
929 + {
930 +  if (conf_parser_ctx.pass == 2)
931 +    reset_block_state();
932 + } '{' pseudo_items '}' ';'
933 + {
934 +  if (conf_parser_ctx.pass != 2)
935 +    break;
936 +
937 +  if (!block_state.command.buf[0] ||
938 +      !block_state.name.buf[0] ||
939 +      !block_state.nick.buf[0] ||
940 +      !block_state.host.buf[0])
941 +    break;
942 +
943 +  pseudo_register(block_state.name.buf, block_state.nick.buf, block_state.host.buf,
944 +                  block_state.prepend.buf, block_state.command.buf);
945 + };
946 +
947 + pseudo_items: pseudo_items pseudo_item | pseudo_item;
948 + pseudo_item:  pseudo_command | pseudo_prepend | pseudo_name | pseudo_target | error ';' ;
949 +
950 + pseudo_command: T_COMMAND '=' QSTRING ';'
951 + {
952 +  if (conf_parser_ctx.pass == 2)
953 +    strlcpy(block_state.command.buf, yylval.string, sizeof(block_state.command.buf));
954 + };
955 +
956 + pseudo_name: NAME '=' QSTRING ';'
957 + {
958 +  if (conf_parser_ctx.pass == 2)
959 +    strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
960 + };
961 +
962 + pseudo_prepend: T_PREPEND '=' QSTRING ';'
963 + {
964 +  if (conf_parser_ctx.pass == 2)
965 +    strlcpy(block_state.prepend.buf, yylval.string, sizeof(block_state.prepend.buf));
966 + };
967 +
968 + pseudo_target: T_TARGET '=' QSTRING ';'
969 + {
970    if (conf_parser_ctx.pass == 2)
971    {
972 <    MyFree(AdminInfo.description);
973 <    DupString(AdminInfo.description, yylval.string);
972 >    struct split_nuh_item nuh;
973 >
974 >    nuh.nuhmask  = yylval.string;
975 >    nuh.nickptr  = NULL;
976 >    nuh.userptr  = block_state.nick.buf;
977 >    nuh.hostptr  = block_state.host.buf;
978 >    nuh.nicksize = 0;
979 >    nuh.usersize = sizeof(block_state.nick.buf);
980 >    nuh.hostsize = sizeof(block_state.host.buf);
981 >
982 >    split_nuh(&nuh);
983    }
984   };
985  
# Line 835 | Line 989 | admin_description: DESCRIPTION '=' QSTRI
989   logging_entry:          T_LOG  '{' logging_items '}' ';' ;
990   logging_items:          logging_items logging_item | logging_item ;
991  
992 < logging_item:           logging_use_logging | logging_file_entry |
993 <                        error ';' ;
992 > logging_item:           logging_use_logging | logging_file_entry |
993 >                        error ';' ;
994  
995   logging_use_logging: USE_LOGGING '=' TBOOL ';'
996   {
997    if (conf_parser_ctx.pass == 2)
998 <    ConfigLoggingEntry.use_logging = yylval.number;
998 >    ConfigLog.use_logging = yylval.number;
999   };
1000  
1001   logging_file_entry:
1002   {
1003 <  lfile[0] = '\0';
1004 <  ltype = 0;
851 <  lsize = 0;
1003 >  if (conf_parser_ctx.pass == 2)
1004 >    reset_block_state();
1005   } T_FILE  '{' logging_file_items '}' ';'
1006   {
1007 <  if (conf_parser_ctx.pass == 2 && ltype > 0)
1008 <    log_add_file(ltype, lsize, lfile);
1007 >  if (conf_parser_ctx.pass != 2)
1008 >    break;
1009 >
1010 >  if (block_state.type.value && block_state.file.buf[0])
1011 >    log_set_file(block_state.type.value, block_state.size.value,
1012 >                 block_state.file.buf);
1013   };
1014  
1015   logging_file_items: logging_file_items logging_file_item |
# Line 863 | Line 1020 | logging_file_item:  logging_file_name |
1020  
1021   logging_file_name: NAME '=' QSTRING ';'
1022   {
1023 <  strlcpy(lfile, yylval.string, sizeof(lfile));
1023 >  if (conf_parser_ctx.pass != 2)
1024 >    break;
1025 >
1026 >  strlcpy(block_state.file.buf, yylval.string, sizeof(block_state.file.buf));
1027   }
1028  
1029   logging_file_size: T_SIZE '=' sizespec ';'
1030   {
1031 <  lsize = $3;
1031 >  block_state.size.value = $3;
1032   } | T_SIZE '=' T_UNLIMITED ';'
1033   {
1034 <  lsize = 0;
1034 >  block_state.size.value = 0;
1035   };
1036  
1037   logging_file_type: TYPE
1038   {
1039    if (conf_parser_ctx.pass == 2)
1040 <    ltype = 0;
1040 >    block_state.type.value = 0;
1041   } '='  logging_file_type_items ';' ;
1042  
1043   logging_file_type_items: logging_file_type_items ',' logging_file_type_item | logging_file_type_item;
1044   logging_file_type_item:  USER
1045   {
1046    if (conf_parser_ctx.pass == 2)
1047 <    ltype = LOG_TYPE_USER;
1047 >    block_state.type.value = LOG_TYPE_USER;
1048   } | OPERATOR
1049   {
1050    if (conf_parser_ctx.pass == 2)
1051 <    ltype = LOG_TYPE_OPER;
1052 < } | GLINE
1051 >    block_state.type.value = LOG_TYPE_OPER;
1052 > } | XLINE
1053 > {
1054 >  if (conf_parser_ctx.pass == 2)
1055 >    block_state.type.value = LOG_TYPE_XLINE;
1056 > } | RESV
1057   {
1058    if (conf_parser_ctx.pass == 2)
1059 <    ltype = LOG_TYPE_GLINE;
1059 >    block_state.type.value = LOG_TYPE_RESV;
1060   } | T_DLINE
1061   {
1062    if (conf_parser_ctx.pass == 2)
1063 <    ltype = LOG_TYPE_DLINE;
1063 >    block_state.type.value = LOG_TYPE_DLINE;
1064   } | KLINE
1065   {
1066    if (conf_parser_ctx.pass == 2)
1067 <    ltype = LOG_TYPE_KLINE;
1067 >    block_state.type.value = LOG_TYPE_KLINE;
1068   } | KILL
1069   {
1070    if (conf_parser_ctx.pass == 2)
1071 <    ltype = LOG_TYPE_KILL;
1071 >    block_state.type.value = LOG_TYPE_KILL;
1072   } | T_DEBUG
1073   {
1074    if (conf_parser_ctx.pass == 2)
1075 <    ltype = LOG_TYPE_DEBUG;
1075 >    block_state.type.value = LOG_TYPE_DEBUG;
1076   };
1077  
1078  
1079   /***************************************************************************
1080   * section oper
1081   ***************************************************************************/
1082 < oper_entry: OPERATOR
1082 > oper_entry: OPERATOR
1083   {
1084 <  if (conf_parser_ctx.pass == 2)
1085 <  {
1086 <    yy_conf = make_conf_item(OPER_TYPE);
1087 <    yy_aconf = map_to_conf(yy_conf);
1088 <    SetConfEncrypted(yy_aconf); /* Yes, the default is encrypted */
925 <  }
926 <  else
927 <  {
928 <    MyFree(class_name);
929 <    class_name = NULL;
930 <  }
1084 >  if (conf_parser_ctx.pass != 2)
1085 >    break;
1086 >
1087 >  reset_block_state();
1088 >  block_state.flags.value |= CONF_FLAGS_ENCRYPTED;
1089   } '{' oper_items '}' ';'
1090   {
1091 <  if (conf_parser_ctx.pass == 2)
1092 <  {
1093 <    struct CollectItem *yy_tmp;
1094 <    dlink_node *ptr;
937 <    dlink_node *next_ptr;
1091 >  dlink_node *node = NULL;
1092 >
1093 >  if (conf_parser_ctx.pass != 2)
1094 >    break;
1095  
1096 <    conf_add_class_to_conf(yy_conf, class_name);
1096 >  if (!block_state.name.buf[0])
1097 >    break;
1098 > #ifdef HAVE_LIBCRYPTO
1099 >  if (!block_state.file.buf[0] &&
1100 >      !block_state.rpass.buf[0])
1101 >    break;
1102 > #else
1103 >  if (!block_state.rpass.buf[0])
1104 >    break;
1105 > #endif
1106  
1107 <    /* Now, make sure there is a copy of the "base" given oper
1108 <     * block in each of the collected copies
1109 <     */
1107 >  DLINK_FOREACH(node, block_state.mask.list.head)
1108 >  {
1109 >    struct MaskItem *conf = NULL;
1110 >    struct split_nuh_item nuh;
1111  
1112 <    DLINK_FOREACH_SAFE(ptr, next_ptr, col_conf_list.head)
1113 <    {
1114 <      struct AccessItem *new_aconf;
1115 <      struct ConfItem *new_conf;
1116 <      yy_tmp = ptr->data;
1117 <
1118 <      new_conf = make_conf_item(OPER_TYPE);
1119 <      new_aconf = (struct AccessItem *)map_to_conf(new_conf);
953 <
954 <      new_aconf->flags = yy_aconf->flags;
955 <
956 <      if (yy_conf->name != NULL)
957 <        DupString(new_conf->name, yy_conf->name);
958 <      if (yy_tmp->user != NULL)
959 <        DupString(new_aconf->user, yy_tmp->user);
960 <      else
961 <        DupString(new_aconf->user, "*");
962 <      if (yy_tmp->host != NULL)
963 <        DupString(new_aconf->host, yy_tmp->host);
964 <      else
965 <        DupString(new_aconf->host, "*");
1112 >    nuh.nuhmask  = node->data;
1113 >    nuh.nickptr  = NULL;
1114 >    nuh.userptr  = block_state.user.buf;
1115 >    nuh.hostptr  = block_state.host.buf;
1116 >    nuh.nicksize = 0;
1117 >    nuh.usersize = sizeof(block_state.user.buf);
1118 >    nuh.hostsize = sizeof(block_state.host.buf);
1119 >    split_nuh(&nuh);
1120  
1121 <      new_aconf->type = parse_netmask(new_aconf->host, &new_aconf->ipnum,
1122 <                                     &new_aconf->bits);
1121 >    conf         = conf_make(CONF_OPER);
1122 >    conf->name   = xstrdup(block_state.name.buf);
1123 >    conf->user   = xstrdup(block_state.user.buf);
1124 >    conf->host   = xstrdup(block_state.host.buf);
1125 >
1126 >    if (block_state.cert.buf[0])
1127 >      conf->certfp = xstrdup(block_state.cert.buf);
1128 >
1129 >    if (block_state.rpass.buf[0])
1130 >      conf->passwd = xstrdup(block_state.rpass.buf);
1131 >
1132 >    if (block_state.whois.buf[0])
1133 >      conf->whois = xstrdup(block_state.whois.buf);
1134 >
1135 >    conf->flags = block_state.flags.value;
1136 >    conf->modes = block_state.modes.value;
1137 >    conf->port  = block_state.port.value;
1138 >    conf->htype = parse_netmask(conf->host, &conf->addr, &conf->bits);
1139  
1140 <      conf_add_class_to_conf(new_conf, class_name);
971 <      if (yy_aconf->passwd != NULL)
972 <        DupString(new_aconf->passwd, yy_aconf->passwd);
1140 >    conf_add_class_to_conf(conf, block_state.class.buf);
1141  
974      new_aconf->port = yy_aconf->port;
1142   #ifdef HAVE_LIBCRYPTO
1143 <      if (yy_aconf->rsa_public_key_file != NULL)
1144 <      {
1145 <        BIO *file;
1146 <
980 <        DupString(new_aconf->rsa_public_key_file,
981 <                  yy_aconf->rsa_public_key_file);
1143 >    if (block_state.file.buf[0])
1144 >    {
1145 >      BIO *file = NULL;
1146 >      RSA *pkey = NULL;
1147  
1148 <        file = BIO_new_file(yy_aconf->rsa_public_key_file, "r");
1149 <        new_aconf->rsa_public_key = (RSA *)PEM_read_bio_RSA_PUBKEY(file,
1150 <                                                           NULL, 0, NULL);
1151 <        BIO_set_close(file, BIO_CLOSE);
987 <        BIO_free(file);
1148 >      if ((file = BIO_new_file(block_state.file.buf, "r")) == NULL)
1149 >      {
1150 >        ilog(LOG_TYPE_IRCD, "Ignoring rsa_public_key_file -- file doesn't exist");
1151 >        break;
1152        }
989 #endif
1153  
1154 < #ifdef HAVE_LIBCRYPTO
1155 <      if (yy_tmp->name && (yy_tmp->passwd || yy_aconf->rsa_public_key)
1156 <          && yy_tmp->host)
994 < #else
995 <      if (yy_tmp->name && yy_tmp->passwd && yy_tmp->host)
996 < #endif
1154 >      if ((pkey = PEM_read_bio_RSA_PUBKEY(file, NULL, 0, NULL)) == NULL)
1155 >        ilog(LOG_TYPE_IRCD, "Ignoring rsa_public_key_file -- key invalid; check key syntax");
1156 >      else
1157        {
1158 <        conf_add_class_to_conf(new_conf, class_name);
1159 <        if (yy_tmp->name != NULL)
1160 <          DupString(new_conf->name, yy_tmp->name);
1158 >        if (RSA_size(pkey) > 128)
1159 >          ilog(LOG_TYPE_IRCD, "Ignoring rsa_public_key_file -- key size must be 1024 or below");
1160 >        else
1161 >          conf->rsa_public_key = pkey;
1162        }
1163  
1164 <      dlinkDelete(&yy_tmp->node, &col_conf_list);
1165 <      free_collect_item(yy_tmp);
1164 >      BIO_set_close(file, BIO_CLOSE);
1165 >      BIO_free(file);
1166      }
1167 <
1007 <    yy_conf = NULL;
1008 <    yy_aconf = NULL;
1009 <
1010 <
1011 <    MyFree(class_name);
1012 <    class_name = NULL;
1167 > #endif /* HAVE_LIBCRYPTO */
1168    }
1169 < };
1169 > };
1170  
1171   oper_items:     oper_items oper_item | oper_item;
1172 < oper_item:      oper_name | oper_user | oper_password |
1173 <                oper_umodes | oper_class | oper_encrypted |
1174 <                oper_rsa_public_key_file | oper_flags | error ';' ;
1172 > oper_item:      oper_name |
1173 >                oper_user |
1174 >                oper_password |
1175 >                oper_whois |
1176 >                oper_umodes |
1177 >                oper_class |
1178 >                oper_encrypted |
1179 >                oper_rsa_public_key_file |
1180 >                oper_ssl_certificate_fingerprint |
1181 >                oper_ssl_connection_required |
1182 >                oper_flags |
1183 >                error ';' ;
1184  
1185   oper_name: NAME '=' QSTRING ';'
1186   {
1187    if (conf_parser_ctx.pass == 2)
1188 <  {
1025 <    if (strlen(yylval.string) > OPERNICKLEN)
1026 <      yylval.string[OPERNICKLEN] = '\0';
1027 <
1028 <    MyFree(yy_conf->name);
1029 <    DupString(yy_conf->name, yylval.string);
1030 <  }
1188 >    strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
1189   };
1190  
1191   oper_user: USER '=' QSTRING ';'
1192   {
1193    if (conf_parser_ctx.pass == 2)
1194 <  {
1037 <    struct split_nuh_item nuh;
1038 <
1039 <    nuh.nuhmask  = yylval.string;
1040 <    nuh.nickptr  = NULL;
1041 <    nuh.userptr  = userbuf;
1042 <    nuh.hostptr  = hostbuf;
1043 <
1044 <    nuh.nicksize = 0;
1045 <    nuh.usersize = sizeof(userbuf);
1046 <    nuh.hostsize = sizeof(hostbuf);
1047 <
1048 <    split_nuh(&nuh);
1049 <
1050 <    if (yy_aconf->user == NULL)
1051 <    {
1052 <      DupString(yy_aconf->user, userbuf);
1053 <      DupString(yy_aconf->host, hostbuf);
1054 <
1055 <      yy_aconf->type = parse_netmask(yy_aconf->host, &yy_aconf->ipnum,
1056 <                                    &yy_aconf->bits);
1057 <    }
1058 <    else
1059 <    {
1060 <      struct CollectItem *yy_tmp = MyMalloc(sizeof(struct CollectItem));
1061 <
1062 <      DupString(yy_tmp->user, userbuf);
1063 <      DupString(yy_tmp->host, hostbuf);
1064 <
1065 <      dlinkAdd(yy_tmp, &yy_tmp->node, &col_conf_list);
1066 <    }
1067 <  }
1194 >    dlinkAdd(xstrdup(yylval.string), make_dlink_node(), &block_state.mask.list);
1195   };
1196  
1197   oper_password: PASSWORD '=' QSTRING ';'
1198   {
1199    if (conf_parser_ctx.pass == 2)
1200 <  {
1201 <    if (yy_aconf->passwd != NULL)
1075 <      memset(yy_aconf->passwd, 0, strlen(yy_aconf->passwd));
1200 >    strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
1201 > };
1202  
1203 <    MyFree(yy_aconf->passwd);
1204 <    DupString(yy_aconf->passwd, yylval.string);
1205 <  }
1203 > oper_whois: WHOIS '=' QSTRING ';'
1204 > {
1205 >  if (conf_parser_ctx.pass == 2)
1206 >    strlcpy(block_state.whois.buf, yylval.string, sizeof(block_state.whois.buf));
1207   };
1208  
1209   oper_encrypted: ENCRYPTED '=' TBOOL ';'
1210   {
1211 <  if (conf_parser_ctx.pass == 2)
1212 <  {
1213 <    if (yylval.number)
1214 <      SetConfEncrypted(yy_aconf);
1215 <    else
1216 <      ClearConfEncrypted(yy_aconf);
1217 <  }
1211 >  if (conf_parser_ctx.pass != 2)
1212 >    break;
1213 >
1214 >  if (yylval.number)
1215 >    block_state.flags.value |= CONF_FLAGS_ENCRYPTED;
1216 >  else
1217 >    block_state.flags.value &= ~CONF_FLAGS_ENCRYPTED;
1218   };
1219  
1220   oper_rsa_public_key_file: RSA_PUBLIC_KEY_FILE '=' QSTRING ';'
1221   {
1095 #ifdef HAVE_LIBCRYPTO
1222    if (conf_parser_ctx.pass == 2)
1223 <  {
1224 <    BIO *file;
1099 <
1100 <    if (yy_aconf->rsa_public_key != NULL)
1101 <    {
1102 <      RSA_free(yy_aconf->rsa_public_key);
1103 <      yy_aconf->rsa_public_key = NULL;
1104 <    }
1105 <
1106 <    if (yy_aconf->rsa_public_key_file != NULL)
1107 <    {
1108 <      MyFree(yy_aconf->rsa_public_key_file);
1109 <      yy_aconf->rsa_public_key_file = NULL;
1110 <    }
1111 <
1112 <    DupString(yy_aconf->rsa_public_key_file, yylval.string);
1113 <    file = BIO_new_file(yylval.string, "r");
1114 <
1115 <    if (file == NULL)
1116 <    {
1117 <      yyerror("Ignoring rsa_public_key_file -- file doesn't exist");
1118 <      break;
1119 <    }
1223 >    strlcpy(block_state.file.buf, yylval.string, sizeof(block_state.file.buf));
1224 > };
1225  
1226 <    yy_aconf->rsa_public_key = (RSA *)PEM_read_bio_RSA_PUBKEY(file, NULL, 0, NULL);
1226 > oper_ssl_certificate_fingerprint: SSL_CERTIFICATE_FINGERPRINT '=' QSTRING ';'
1227 > {
1228 >  if (conf_parser_ctx.pass == 2)
1229 >    strlcpy(block_state.cert.buf, yylval.string, sizeof(block_state.cert.buf));
1230 > };
1231  
1232 <    if (yy_aconf->rsa_public_key == NULL)
1233 <    {
1234 <      yyerror("Ignoring rsa_public_key_file -- Key invalid; check key syntax.");
1235 <      break;
1127 <    }
1232 > oper_ssl_connection_required: SSL_CONNECTION_REQUIRED '=' TBOOL ';'
1233 > {
1234 >  if (conf_parser_ctx.pass != 2)
1235 >    break;
1236  
1237 <    BIO_set_close(file, BIO_CLOSE);
1238 <    BIO_free(file);
1239 <  }
1240 < #endif /* HAVE_LIBCRYPTO */
1237 >  if (yylval.number)
1238 >    block_state.flags.value |= CONF_FLAGS_SSL;
1239 >  else
1240 >    block_state.flags.value &= ~CONF_FLAGS_SSL;
1241   };
1242  
1243   oper_class: CLASS '=' QSTRING ';'
1244   {
1245    if (conf_parser_ctx.pass == 2)
1246 <  {
1139 <    MyFree(class_name);
1140 <    DupString(class_name, yylval.string);
1141 <  }
1246 >    strlcpy(block_state.class.buf, yylval.string, sizeof(block_state.class.buf));
1247   };
1248  
1249   oper_umodes: T_UMODES
1250   {
1251    if (conf_parser_ctx.pass == 2)
1252 <    yy_aconf->modes = 0;
1252 >    block_state.modes.value = 0;
1253   } '='  oper_umodes_items ';' ;
1254  
1255   oper_umodes_items: oper_umodes_items ',' oper_umodes_item | oper_umodes_item;
1256   oper_umodes_item:  T_BOTS
1257   {
1258    if (conf_parser_ctx.pass == 2)
1259 <    yy_aconf->modes |= UMODE_BOTS;
1259 >    block_state.modes.value |= UMODE_BOTS;
1260   } | T_CCONN
1261   {
1262    if (conf_parser_ctx.pass == 2)
1263 <    yy_aconf->modes |= UMODE_CCONN;
1159 < } | T_CCONN_FULL
1160 < {
1161 <  if (conf_parser_ctx.pass == 2)
1162 <    yy_aconf->modes |= UMODE_CCONN_FULL;
1263 >    block_state.modes.value |= UMODE_CCONN;
1264   } | T_DEAF
1265   {
1266    if (conf_parser_ctx.pass == 2)
1267 <    yy_aconf->modes |= UMODE_DEAF;
1267 >    block_state.modes.value |= UMODE_DEAF;
1268   } | T_DEBUG
1269   {
1270    if (conf_parser_ctx.pass == 2)
1271 <    yy_aconf->modes |= UMODE_DEBUG;
1271 >    block_state.modes.value |= UMODE_DEBUG;
1272   } | T_FULL
1273   {
1274    if (conf_parser_ctx.pass == 2)
1275 <    yy_aconf->modes |= UMODE_FULL;
1275 >    block_state.modes.value |= UMODE_FULL;
1276   } | HIDDEN
1277   {
1278    if (conf_parser_ctx.pass == 2)
1279 <    yy_aconf->modes |= UMODE_HIDDEN;
1279 >    block_state.modes.value |= UMODE_HIDDEN;
1280 > } | HIDE_CHANS
1281 > {
1282 >  if (conf_parser_ctx.pass == 2)
1283 >    block_state.modes.value |= UMODE_HIDECHANS;
1284 > } | HIDE_IDLE
1285 > {
1286 >  if (conf_parser_ctx.pass == 2)
1287 >    block_state.modes.value |= UMODE_HIDEIDLE;
1288   } | T_SKILL
1289   {
1290    if (conf_parser_ctx.pass == 2)
1291 <    yy_aconf->modes |= UMODE_SKILL;
1291 >    block_state.modes.value |= UMODE_SKILL;
1292   } | T_NCHANGE
1293   {
1294    if (conf_parser_ctx.pass == 2)
1295 <    yy_aconf->modes |= UMODE_NCHANGE;
1295 >    block_state.modes.value |= UMODE_NCHANGE;
1296   } | T_REJ
1297   {
1298    if (conf_parser_ctx.pass == 2)
1299 <    yy_aconf->modes |= UMODE_REJ;
1299 >    block_state.modes.value |= UMODE_REJ;
1300   } | T_UNAUTH
1301   {
1302    if (conf_parser_ctx.pass == 2)
1303 <    yy_aconf->modes |= UMODE_UNAUTH;
1303 >    block_state.modes.value |= UMODE_UNAUTH;
1304   } | T_SPY
1305   {
1306    if (conf_parser_ctx.pass == 2)
1307 <    yy_aconf->modes |= UMODE_SPY;
1307 >    block_state.modes.value |= UMODE_SPY;
1308   } | T_EXTERNAL
1309   {
1310    if (conf_parser_ctx.pass == 2)
1311 <    yy_aconf->modes |= UMODE_EXTERNAL;
1203 < } | T_OPERWALL
1204 < {
1205 <  if (conf_parser_ctx.pass == 2)
1206 <    yy_aconf->modes |= UMODE_OPERWALL;
1311 >    block_state.modes.value |= UMODE_EXTERNAL;
1312   } | T_SERVNOTICE
1313   {
1314    if (conf_parser_ctx.pass == 2)
1315 <    yy_aconf->modes |= UMODE_SERVNOTICE;
1315 >    block_state.modes.value |= UMODE_SERVNOTICE;
1316   } | T_INVISIBLE
1317   {
1318    if (conf_parser_ctx.pass == 2)
1319 <    yy_aconf->modes |= UMODE_INVISIBLE;
1319 >    block_state.modes.value |= UMODE_INVISIBLE;
1320   } | T_WALLOP
1321   {
1322    if (conf_parser_ctx.pass == 2)
1323 <    yy_aconf->modes |= UMODE_WALLOP;
1323 >    block_state.modes.value |= UMODE_WALLOP;
1324   } | T_SOFTCALLERID
1325   {
1326    if (conf_parser_ctx.pass == 2)
1327 <    yy_aconf->modes |= UMODE_SOFTCALLERID;
1327 >    block_state.modes.value |= UMODE_SOFTCALLERID;
1328   } | T_CALLERID
1329   {
1330    if (conf_parser_ctx.pass == 2)
1331 <    yy_aconf->modes |= UMODE_CALLERID;
1331 >    block_state.modes.value |= UMODE_CALLERID;
1332   } | T_LOCOPS
1333   {
1334    if (conf_parser_ctx.pass == 2)
1335 <    yy_aconf->modes |= UMODE_LOCOPS;
1335 >    block_state.modes.value |= UMODE_LOCOPS;
1336 > } | T_NONONREG
1337 > {
1338 >  if (conf_parser_ctx.pass == 2)
1339 >    block_state.modes.value |= UMODE_REGONLY;
1340 > } | T_FARCONNECT
1341 > {
1342 >  if (conf_parser_ctx.pass == 2)
1343 >    block_state.modes.value |= UMODE_FARCONNECT;
1344   };
1345  
1346   oper_flags: IRCD_FLAGS
1347   {
1348    if (conf_parser_ctx.pass == 2)
1349 <    yy_aconf->port = 0;
1349 >    block_state.port.value = 0;
1350   } '='  oper_flags_items ';';
1351  
1352   oper_flags_items: oper_flags_items ',' oper_flags_item | oper_flags_item;
1353 < oper_flags_item: GLOBAL_KILL
1353 > oper_flags_item: KILL ':' REMOTE
1354 > {
1355 >  if (conf_parser_ctx.pass == 2)
1356 >    block_state.port.value |= OPER_FLAG_KILL_REMOTE;
1357 > } | KILL
1358 > {
1359 >  if (conf_parser_ctx.pass == 2)
1360 >    block_state.port.value |= OPER_FLAG_KILL;
1361 > } | CONNECT ':' REMOTE
1362   {
1363    if (conf_parser_ctx.pass == 2)
1364 <    yy_aconf->port |= OPER_FLAG_GLOBAL_KILL;
1365 < } | REMOTE
1364 >    block_state.port.value |= OPER_FLAG_CONNECT_REMOTE;
1365 > } | CONNECT
1366   {
1367    if (conf_parser_ctx.pass == 2)
1368 <    yy_aconf->port |= OPER_FLAG_REMOTE;
1368 >    block_state.port.value |= OPER_FLAG_CONNECT;
1369 > } | SQUIT ':' REMOTE
1370 > {
1371 >  if (conf_parser_ctx.pass == 2)
1372 >    block_state.port.value |= OPER_FLAG_SQUIT_REMOTE;
1373 > } | SQUIT
1374 > {
1375 >  if (conf_parser_ctx.pass == 2)
1376 >    block_state.port.value |= OPER_FLAG_SQUIT;
1377   } | KLINE
1378   {
1379    if (conf_parser_ctx.pass == 2)
1380 <    yy_aconf->port |= OPER_FLAG_K;
1380 >    block_state.port.value |= OPER_FLAG_KLINE;
1381   } | UNKLINE
1382   {
1383    if (conf_parser_ctx.pass == 2)
1384 <    yy_aconf->port |= OPER_FLAG_UNKLINE;
1384 >    block_state.port.value |= OPER_FLAG_UNKLINE;
1385   } | T_DLINE
1386   {
1387    if (conf_parser_ctx.pass == 2)
1388 <    yy_aconf->port |= OPER_FLAG_DLINE;
1388 >    block_state.port.value |= OPER_FLAG_DLINE;
1389   } | T_UNDLINE
1390   {
1391    if (conf_parser_ctx.pass == 2)
1392 <    yy_aconf->port |= OPER_FLAG_UNDLINE;
1392 >    block_state.port.value |= OPER_FLAG_UNDLINE;
1393   } | XLINE
1394   {
1395    if (conf_parser_ctx.pass == 2)
1396 <    yy_aconf->port |= OPER_FLAG_X;
1397 < } | GLINE
1396 >    block_state.port.value |= OPER_FLAG_XLINE;
1397 > } | T_UNXLINE
1398   {
1399    if (conf_parser_ctx.pass == 2)
1400 <    yy_aconf->port |= OPER_FLAG_GLINE;
1400 >    block_state.port.value |= OPER_FLAG_UNXLINE;
1401   } | DIE
1402   {
1403    if (conf_parser_ctx.pass == 2)
1404 <    yy_aconf->port |= OPER_FLAG_DIE;
1404 >    block_state.port.value |= OPER_FLAG_DIE;
1405   } | T_RESTART
1406   {
1407    if (conf_parser_ctx.pass == 2)
1408 <    yy_aconf->port |= OPER_FLAG_RESTART;
1408 >    block_state.port.value |= OPER_FLAG_RESTART;
1409   } | REHASH
1410   {
1411    if (conf_parser_ctx.pass == 2)
1412 <    yy_aconf->port |= OPER_FLAG_REHASH;
1412 >    block_state.port.value |= OPER_FLAG_REHASH;
1413   } | ADMIN
1414   {
1415    if (conf_parser_ctx.pass == 2)
1416 <    yy_aconf->port |= OPER_FLAG_ADMIN;
1417 < } | NICK_CHANGES
1416 >    block_state.port.value |= OPER_FLAG_ADMIN;
1417 > } | T_GLOBOPS
1418   {
1419    if (conf_parser_ctx.pass == 2)
1420 <    yy_aconf->port |= OPER_FLAG_N;
1421 < } | T_OPERWALL
1420 >    block_state.port.value |= OPER_FLAG_GLOBOPS;
1421 > } | T_WALLOPS
1422   {
1423    if (conf_parser_ctx.pass == 2)
1424 <    yy_aconf->port |= OPER_FLAG_OPERWALL;
1425 < } | T_GLOBOPS
1424 >    block_state.port.value |= OPER_FLAG_WALLOPS;
1425 > } | T_LOCOPS
1426   {
1427    if (conf_parser_ctx.pass == 2)
1428 <    yy_aconf->port |= OPER_FLAG_GLOBOPS;
1429 < } | OPER_SPY_T
1428 >    block_state.port.value |= OPER_FLAG_LOCOPS;
1429 > } | REMOTEBAN
1430   {
1431    if (conf_parser_ctx.pass == 2)
1432 <    yy_aconf->port |= OPER_FLAG_OPER_SPY;
1433 < } | REMOTEBAN
1432 >    block_state.port.value |= OPER_FLAG_REMOTEBAN;
1433 > } | T_SET
1434   {
1435    if (conf_parser_ctx.pass == 2)
1436 <    yy_aconf->port |= OPER_FLAG_REMOTEBAN;
1436 >    block_state.port.value |= OPER_FLAG_SET;
1437   } | MODULE
1438   {
1439    if (conf_parser_ctx.pass == 2)
1440 <    yy_aconf->port |= OPER_FLAG_MODULE;
1440 >    block_state.port.value |= OPER_FLAG_MODULE;
1441 > } | T_OPME
1442 > {
1443 >  if (conf_parser_ctx.pass == 2)
1444 >    block_state.port.value |= OPER_FLAG_OPME;
1445   };
1446  
1447  
# Line 1317 | Line 1450 | oper_flags_item: GLOBAL_KILL
1450   ***************************************************************************/
1451   class_entry: CLASS
1452   {
1453 <  if (conf_parser_ctx.pass == 1)
1454 <  {
1322 <    yy_conf = make_conf_item(CLASS_TYPE);
1323 <    yy_class = map_to_conf(yy_conf);
1324 <  }
1325 < } '{' class_items '}' ';'
1326 < {
1327 <  if (conf_parser_ctx.pass == 1)
1328 <  {
1329 <    struct ConfItem *cconf = NULL;
1330 <    struct ClassItem *class = NULL;
1453 >  if (conf_parser_ctx.pass != 1)
1454 >    break;
1455  
1456 <    if (yy_class_name == NULL)
1333 <      delete_conf_item(yy_conf);
1334 <    else
1335 <    {
1336 <      cconf = find_exact_name_conf(CLASS_TYPE, NULL, yy_class_name, NULL, NULL);
1456 >  reset_block_state();
1457  
1458 <      if (cconf != NULL)                /* The class existed already */
1459 <      {
1460 <        int user_count = 0;
1461 <
1462 <        rebuild_cidr_class(cconf, yy_class);
1463 <
1464 <        class = map_to_conf(cconf);
1465 <
1346 <        user_count = class->curr_user_count;
1347 <        memcpy(class, yy_class, sizeof(*class));
1348 <        class->curr_user_count = user_count;
1349 <        class->active = 1;
1458 >  block_state.ping_freq.value = DEFAULT_PINGFREQUENCY;
1459 >  block_state.con_freq.value  = DEFAULT_CONNECTFREQUENCY;
1460 >  block_state.max_total.value = MAXIMUM_LINKS_DEFAULT;
1461 >  block_state.max_sendq.value = DEFAULT_SENDQ;
1462 >  block_state.max_recvq.value = DEFAULT_RECVQ;
1463 > } '{' class_items '}' ';'
1464 > {
1465 >  struct ClassItem *class = NULL;
1466  
1467 <        delete_conf_item(yy_conf);
1467 >  if (conf_parser_ctx.pass != 1)
1468 >    break;
1469  
1470 <        MyFree(cconf->name);            /* Allows case change of class name */
1471 <        cconf->name = yy_class_name;
1355 <      }
1356 <      else      /* Brand new class */
1357 <      {
1358 <        MyFree(yy_conf->name);          /* just in case it was allocated */
1359 <        yy_conf->name = yy_class_name;
1360 <        yy_class->active = 1;
1361 <      }
1362 <    }
1470 >  if (!block_state.class.buf[0])
1471 >    break;
1472  
1473 <    yy_class_name = NULL;
1474 <  }
1473 >  if (!(class = class_find(block_state.class.buf, 0)))
1474 >    class = class_make();
1475 >
1476 >  class->active = 1;
1477 >  MyFree(class->name);
1478 >  class->name = xstrdup(block_state.class.buf);
1479 >  class->ping_freq = block_state.ping_freq.value;
1480 >  class->max_perip = block_state.max_perip.value;
1481 >  class->con_freq = block_state.con_freq.value;
1482 >  class->max_total = block_state.max_total.value;
1483 >  class->max_global = block_state.max_global.value;
1484 >  class->max_local = block_state.max_local.value;
1485 >  class->max_ident = block_state.max_ident.value;
1486 >  class->max_sendq = block_state.max_sendq.value;
1487 >  class->max_recvq = block_state.max_recvq.value;
1488 >  class->max_channels = block_state.max_channels.value;
1489 >
1490 >  if (block_state.min_idle.value > block_state.max_idle.value)
1491 >  {
1492 >    block_state.min_idle.value = 0;
1493 >    block_state.max_idle.value = 0;
1494 >    block_state.flags.value &= ~CLASS_FLAGS_FAKE_IDLE;
1495 >  }
1496 >
1497 >  class->flags = block_state.flags.value;
1498 >  class->min_idle = block_state.min_idle.value;
1499 >  class->max_idle = block_state.max_idle.value;
1500 >
1501 >  rebuild_cidr_list(class);
1502 >
1503 >  class->cidr_bitlen_ipv4 = block_state.cidr_bitlen_ipv4.value;
1504 >  class->cidr_bitlen_ipv6 = block_state.cidr_bitlen_ipv6.value;
1505 >  class->number_per_cidr = block_state.number_per_cidr.value;
1506   };
1507  
1508   class_items:    class_items class_item | class_item;
1509   class_item:     class_name |
1510 <                class_cidr_bitlen_ipv4 | class_cidr_bitlen_ipv6 |
1510 >                class_cidr_bitlen_ipv4 |
1511 >                class_cidr_bitlen_ipv6 |
1512                  class_ping_time |
1513 <                class_ping_warning |
1373 <                class_number_per_cidr |
1513 >                class_number_per_cidr |
1514                  class_number_per_ip |
1515                  class_connectfreq |
1516 +                class_max_channels |
1517                  class_max_number |
1518 <                class_max_global |
1519 <                class_max_local |
1520 <                class_max_ident |
1521 <                class_sendq |
1522 <                error ';' ;
1518 >                class_max_global |
1519 >                class_max_local |
1520 >                class_max_ident |
1521 >                class_sendq | class_recvq |
1522 >                class_min_idle |
1523 >                class_max_idle |
1524 >                class_flags |
1525 >                error ';' ;
1526  
1527 < class_name: NAME '=' QSTRING ';'
1527 > class_name: NAME '=' QSTRING ';'
1528   {
1529    if (conf_parser_ctx.pass == 1)
1530 <  {
1387 <    MyFree(yy_class_name);
1388 <    DupString(yy_class_name, yylval.string);
1389 <  }
1530 >    strlcpy(block_state.class.buf, yylval.string, sizeof(block_state.class.buf));
1531   };
1532  
1533   class_ping_time: PING_TIME '=' timespec ';'
1534   {
1535    if (conf_parser_ctx.pass == 1)
1536 <    PingFreq(yy_class) = $3;
1536 >    block_state.ping_freq.value = $3;
1537   };
1538  
1539 < class_ping_warning: PING_WARNING '=' timespec ';'
1539 > class_number_per_ip: NUMBER_PER_IP '=' NUMBER ';'
1540   {
1541    if (conf_parser_ctx.pass == 1)
1542 <    PingWarning(yy_class) = $3;
1542 >    block_state.max_perip.value = $3;
1543   };
1544  
1545 < class_number_per_ip: NUMBER_PER_IP '=' NUMBER ';'
1545 > class_connectfreq: CONNECTFREQ '=' timespec ';'
1546   {
1547    if (conf_parser_ctx.pass == 1)
1548 <    MaxPerIp(yy_class) = $3;
1548 >    block_state.con_freq.value = $3;
1549   };
1550  
1551 < class_connectfreq: CONNECTFREQ '=' timespec ';'
1551 > class_max_channels: MAX_CHANNELS '=' NUMBER ';'
1552   {
1553    if (conf_parser_ctx.pass == 1)
1554 <    ConFreq(yy_class) = $3;
1554 >    block_state.max_channels.value = $3;
1555   };
1556  
1557   class_max_number: MAX_NUMBER '=' NUMBER ';'
1558   {
1559    if (conf_parser_ctx.pass == 1)
1560 <    MaxTotal(yy_class) = $3;
1560 >    block_state.max_total.value = $3;
1561   };
1562  
1563   class_max_global: MAX_GLOBAL '=' NUMBER ';'
1564   {
1565    if (conf_parser_ctx.pass == 1)
1566 <    MaxGlobal(yy_class) = $3;
1566 >    block_state.max_global.value = $3;
1567   };
1568  
1569   class_max_local: MAX_LOCAL '=' NUMBER ';'
1570   {
1571    if (conf_parser_ctx.pass == 1)
1572 <    MaxLocal(yy_class) = $3;
1572 >    block_state.max_local.value = $3;
1573   };
1574  
1575   class_max_ident: MAX_IDENT '=' NUMBER ';'
1576   {
1577    if (conf_parser_ctx.pass == 1)
1578 <    MaxIdent(yy_class) = $3;
1578 >    block_state.max_ident.value = $3;
1579   };
1580  
1581   class_sendq: SENDQ '=' sizespec ';'
1582   {
1583    if (conf_parser_ctx.pass == 1)
1584 <    MaxSendq(yy_class) = $3;
1584 >    block_state.max_sendq.value = $3;
1585 > };
1586 >
1587 > class_recvq: T_RECVQ '=' sizespec ';'
1588 > {
1589 >  if (conf_parser_ctx.pass == 1)
1590 >    if ($3 >= CLIENT_FLOOD_MIN && $3 <= CLIENT_FLOOD_MAX)
1591 >      block_state.max_recvq.value = $3;
1592   };
1593  
1594   class_cidr_bitlen_ipv4: CIDR_BITLEN_IPV4 '=' NUMBER ';'
1595   {
1596    if (conf_parser_ctx.pass == 1)
1597 <    CidrBitlenIPV4(yy_class) = $3;
1597 >    block_state.cidr_bitlen_ipv4.value = $3 > 32 ? 32 : $3;
1598   };
1599  
1600   class_cidr_bitlen_ipv6: CIDR_BITLEN_IPV6 '=' NUMBER ';'
1601   {
1602    if (conf_parser_ctx.pass == 1)
1603 <    CidrBitlenIPV6(yy_class) = $3;
1603 >    block_state.cidr_bitlen_ipv6.value = $3 > 128 ? 128 : $3;
1604   };
1605  
1606   class_number_per_cidr: NUMBER_PER_CIDR '=' NUMBER ';'
1607   {
1608    if (conf_parser_ctx.pass == 1)
1609 <    NumberPerCidr(yy_class) = $3;
1609 >    block_state.number_per_cidr.value = $3;
1610   };
1611  
1612 + class_min_idle: MIN_IDLE '=' timespec ';'
1613 + {
1614 +  if (conf_parser_ctx.pass != 1)
1615 +    break;
1616 +
1617 +  block_state.min_idle.value = $3;
1618 +  block_state.flags.value |= CLASS_FLAGS_FAKE_IDLE;
1619 + };
1620 +
1621 + class_max_idle: MAX_IDLE '=' timespec ';'
1622 + {
1623 +  if (conf_parser_ctx.pass != 1)
1624 +    break;
1625 +
1626 +  block_state.max_idle.value = $3;
1627 +  block_state.flags.value |= CLASS_FLAGS_FAKE_IDLE;
1628 + };
1629 +
1630 + class_flags: IRCD_FLAGS
1631 + {
1632 +  if (conf_parser_ctx.pass == 1)
1633 +    block_state.flags.value &= CLASS_FLAGS_FAKE_IDLE;
1634 + } '='  class_flags_items ';';
1635 +
1636 + class_flags_items: class_flags_items ',' class_flags_item | class_flags_item;
1637 + class_flags_item: RANDOM_IDLE
1638 + {
1639 +  if (conf_parser_ctx.pass == 1)
1640 +    block_state.flags.value |= CLASS_FLAGS_RANDOM_IDLE;
1641 + } | HIDE_IDLE_FROM_OPERS
1642 + {
1643 +  if (conf_parser_ctx.pass == 1)
1644 +    block_state.flags.value |= CLASS_FLAGS_HIDE_IDLE_FROM_OPERS;
1645 + };
1646 +
1647 +
1648   /***************************************************************************
1649   *  section listen
1650   ***************************************************************************/
1651   listen_entry: LISTEN
1652   {
1653    if (conf_parser_ctx.pass == 2)
1654 <  {
1655 <    listener_address = NULL;
1472 <    listener_flags = 0;
1473 <  }
1474 < } '{' listen_items '}' ';'
1475 < {
1476 <  if (conf_parser_ctx.pass == 2)
1477 <  {
1478 <    MyFree(listener_address);
1479 <    listener_address = NULL;
1480 <  }
1481 < };
1654 >    reset_block_state();
1655 > } '{' listen_items '}' ';';
1656  
1657   listen_flags: IRCD_FLAGS
1658   {
1659 <  listener_flags = 0;
1659 >  block_state.flags.value = 0;
1660   } '='  listen_flags_items ';';
1661  
1662   listen_flags_items: listen_flags_items ',' listen_flags_item | listen_flags_item;
1663   listen_flags_item: T_SSL
1664   {
1665    if (conf_parser_ctx.pass == 2)
1666 <    listener_flags |= LISTENER_SSL;
1666 >    block_state.flags.value |= LISTENER_SSL;
1667   } | HIDDEN
1668   {
1669    if (conf_parser_ctx.pass == 2)
1670 <    listener_flags |= LISTENER_HIDDEN;
1670 >    block_state.flags.value |= LISTENER_HIDDEN;
1671   } | T_SERVER
1672   {
1673    if (conf_parser_ctx.pass == 2)
1674 <    listener_flags |= LISTENER_SERVER;
1674 >   block_state.flags.value |= LISTENER_SERVER;
1675   };
1676  
1503
1504
1677   listen_items:   listen_items listen_item | listen_item;
1678   listen_item:    listen_port | listen_flags | listen_address | listen_host | error ';';
1679  
1680 < listen_port: PORT '=' port_items { listener_flags = 0; } ';';
1680 > listen_port: PORT '=' port_items { block_state.flags.value = 0; } ';';
1681  
1682   port_items: port_items ',' port_item | port_item;
1683  
# Line 1513 | Line 1685 | port_item: NUMBER
1685   {
1686    if (conf_parser_ctx.pass == 2)
1687    {
1688 <    if ((listener_flags & LISTENER_SSL))
1689 < #ifdef HAVE_LIBCRYPTO
1690 <      if (!ServerInfo.server_ctx)
1688 > #ifndef HAVE_LIBCRYPTO
1689 >    if (block_state.flags.value & LISTENER_SSL)
1690 >    {
1691 >      conf_error_report("SSL not available - port closed");
1692 >      break;
1693 >    }
1694   #endif
1695 <      {
1521 <        yyerror("SSL not available - port closed");
1522 <        break;
1523 <      }
1524 <    add_listener($1, listener_address, listener_flags);
1695 >    add_listener($1, block_state.addr.buf, block_state.flags.value);
1696    }
1697   } | NUMBER TWODOTS NUMBER
1698   {
1699    if (conf_parser_ctx.pass == 2)
1700    {
1701 <    int i;
1702 <
1703 <    if ((listener_flags & LISTENER_SSL))
1704 < #ifdef HAVE_LIBCRYPTO
1705 <      if (!ServerInfo.server_ctx)
1701 > #ifndef HAVE_LIBCRYPTO
1702 >    if (block_state.flags.value & LISTENER_SSL)
1703 >    {
1704 >      conf_error_report("SSL not available - port closed");
1705 >      break;
1706 >    }
1707   #endif
1536      {
1537        yyerror("SSL not available - port closed");
1538        break;
1539      }
1708  
1709 <    for (i = $1; i <= $3; ++i)
1710 <      add_listener(i, listener_address, listener_flags);
1709 >    for (int i = $1; i <= $3; ++i)
1710 >      add_listener(i, block_state.addr.buf, block_state.flags.value);
1711    }
1712   };
1713  
1714   listen_address: IP '=' QSTRING ';'
1715   {
1716    if (conf_parser_ctx.pass == 2)
1717 <  {
1550 <    MyFree(listener_address);
1551 <    DupString(listener_address, yylval.string);
1552 <  }
1717 >    strlcpy(block_state.addr.buf, yylval.string, sizeof(block_state.addr.buf));
1718   };
1719  
1720   listen_host: HOST '=' QSTRING ';'
1721   {
1722    if (conf_parser_ctx.pass == 2)
1723 <  {
1559 <    MyFree(listener_address);
1560 <    DupString(listener_address, yylval.string);
1561 <  }
1723 >    strlcpy(block_state.addr.buf, yylval.string, sizeof(block_state.addr.buf));
1724   };
1725  
1726   /***************************************************************************
# Line 1567 | Line 1729 | listen_host: HOST '=' QSTRING ';'
1729   auth_entry: IRCD_AUTH
1730   {
1731    if (conf_parser_ctx.pass == 2)
1732 <  {
1571 <    yy_conf = make_conf_item(CLIENT_TYPE);
1572 <    yy_aconf = map_to_conf(yy_conf);
1573 <  }
1574 <  else
1575 <  {
1576 <    MyFree(class_name);
1577 <    class_name = NULL;
1578 <  }
1732 >    reset_block_state();
1733   } '{' auth_items '}' ';'
1734   {
1735 <  if (conf_parser_ctx.pass == 2)
1582 <  {
1583 <    struct CollectItem *yy_tmp = NULL;
1584 <    dlink_node *ptr = NULL, *next_ptr = NULL;
1585 <
1586 <    if (yy_aconf->user && yy_aconf->host)
1587 <    {
1588 <      conf_add_class_to_conf(yy_conf, class_name);
1589 <      add_conf_by_address(CONF_CLIENT, yy_aconf);
1590 <    }
1591 <    else
1592 <      delete_conf_item(yy_conf);
1593 <
1594 <    /* copy over settings from first struct */
1595 <    DLINK_FOREACH_SAFE(ptr, next_ptr, col_conf_list.head)
1596 <    {
1597 <      struct AccessItem *new_aconf;
1598 <      struct ConfItem *new_conf;
1599 <
1600 <      new_conf = make_conf_item(CLIENT_TYPE);
1601 <      new_aconf = map_to_conf(new_conf);
1602 <
1603 <      yy_tmp = ptr->data;
1604 <
1605 <      assert(yy_tmp->user && yy_tmp->host);
1606 <
1607 <      if (yy_aconf->passwd != NULL)
1608 <        DupString(new_aconf->passwd, yy_aconf->passwd);
1609 <      if (yy_conf->name != NULL)
1610 <        DupString(new_conf->name, yy_conf->name);
1611 <      if (yy_aconf->passwd != NULL)
1612 <        DupString(new_aconf->passwd, yy_aconf->passwd);
1735 >  dlink_node *node = NULL;
1736  
1737 <      new_aconf->flags = yy_aconf->flags;
1738 <      new_aconf->port  = yy_aconf->port;
1737 >  if (conf_parser_ctx.pass != 2)
1738 >    break;
1739  
1740 <      DupString(new_aconf->user, yy_tmp->user);
1618 <      collapse(new_aconf->user);
1619 <
1620 <      DupString(new_aconf->host, yy_tmp->host);
1621 <      collapse(new_aconf->host);
1622 <
1623 <      conf_add_class_to_conf(new_conf, class_name);
1624 <      add_conf_by_address(CONF_CLIENT, new_aconf);
1625 <      dlinkDelete(&yy_tmp->node, &col_conf_list);
1626 <      free_collect_item(yy_tmp);
1627 <    }
1628 <
1629 <    MyFree(class_name);
1630 <    class_name = NULL;
1631 <    yy_conf = NULL;
1632 <    yy_aconf = NULL;
1633 <  }
1634 < };
1635 <
1636 < auth_items:     auth_items auth_item | auth_item;
1637 < auth_item:      auth_user | auth_passwd | auth_class | auth_flags |
1638 <                auth_spoof | auth_redir_serv | auth_redir_port |
1639 <                auth_encrypted | error ';' ;
1640 <
1641 < auth_user: USER '=' QSTRING ';'
1642 < {
1643 <  if (conf_parser_ctx.pass == 2)
1740 >  DLINK_FOREACH(node, block_state.mask.list.head)
1741    {
1742 <    struct CollectItem *yy_tmp = NULL;
1742 >    struct MaskItem *conf = NULL;
1743      struct split_nuh_item nuh;
1744  
1745 <    nuh.nuhmask  = yylval.string;
1745 >    nuh.nuhmask  = node->data;
1746      nuh.nickptr  = NULL;
1747 <    nuh.userptr  = userbuf;
1748 <    nuh.hostptr  = hostbuf;
1652 <
1747 >    nuh.userptr  = block_state.user.buf;
1748 >    nuh.hostptr  = block_state.host.buf;
1749      nuh.nicksize = 0;
1750 <    nuh.usersize = sizeof(userbuf);
1751 <    nuh.hostsize = sizeof(hostbuf);
1656 <
1750 >    nuh.usersize = sizeof(block_state.user.buf);
1751 >    nuh.hostsize = sizeof(block_state.host.buf);
1752      split_nuh(&nuh);
1753  
1754 <    if (yy_aconf->user == NULL)
1755 <    {
1756 <      DupString(yy_aconf->user, userbuf);
1757 <      DupString(yy_aconf->host, hostbuf);
1758 <    }
1759 <    else
1760 <    {
1761 <      yy_tmp = MyMalloc(sizeof(struct CollectItem));
1754 >    conf        = conf_make(CONF_CLIENT);
1755 >    conf->user  = xstrdup(block_state.user.buf);
1756 >    conf->host  = xstrdup(block_state.host.buf);
1757 >
1758 >    if (block_state.rpass.buf[0])
1759 >      conf->passwd = xstrdup(block_state.rpass.buf);
1760 >    if (block_state.name.buf[0])
1761 >      conf->name = xstrdup(block_state.name.buf);
1762  
1763 <      DupString(yy_tmp->user, userbuf);
1764 <      DupString(yy_tmp->host, hostbuf);
1763 >    conf->flags = block_state.flags.value;
1764 >    conf->port  = block_state.port.value;
1765  
1766 <      dlinkAdd(yy_tmp, &yy_tmp->node, &col_conf_list);
1767 <    }
1766 >    conf_add_class_to_conf(conf, block_state.class.buf);
1767 >    add_conf_by_address(CONF_CLIENT, conf);
1768    }
1769   };
1770  
1771 < /* XXX - IP/IPV6 tags don't exist anymore - put IP/IPV6 into user. */
1771 > auth_items:     auth_items auth_item | auth_item;
1772 > auth_item:      auth_user |
1773 >                auth_passwd |
1774 >                auth_class |
1775 >                auth_flags |
1776 >                auth_spoof |
1777 >                auth_redir_serv |
1778 >                auth_redir_port |
1779 >                auth_encrypted |
1780 >                error ';' ;
1781  
1782 < auth_passwd: PASSWORD '=' QSTRING ';'
1782 > auth_user: USER '=' QSTRING ';'
1783   {
1784    if (conf_parser_ctx.pass == 2)
1785 <  {
1786 <    /* be paranoid */
1683 <    if (yy_aconf->passwd != NULL)
1684 <      memset(yy_aconf->passwd, 0, strlen(yy_aconf->passwd));
1785 >    dlinkAdd(xstrdup(yylval.string), make_dlink_node(), &block_state.mask.list);
1786 > };
1787  
1788 <    MyFree(yy_aconf->passwd);
1789 <    DupString(yy_aconf->passwd, yylval.string);
1790 <  }
1788 > auth_passwd: PASSWORD '=' QSTRING ';'
1789 > {
1790 >  if (conf_parser_ctx.pass == 2)
1791 >    strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
1792   };
1793  
1794   auth_class: CLASS '=' QSTRING ';'
1795   {
1796    if (conf_parser_ctx.pass == 2)
1797 <  {
1695 <    MyFree(class_name);
1696 <    DupString(class_name, yylval.string);
1697 <  }
1797 >    strlcpy(block_state.class.buf, yylval.string, sizeof(block_state.class.buf));
1798   };
1799  
1800   auth_encrypted: ENCRYPTED '=' TBOOL ';'
# Line 1702 | Line 1802 | auth_encrypted: ENCRYPTED '=' TBOOL ';'
1802    if (conf_parser_ctx.pass == 2)
1803    {
1804      if (yylval.number)
1805 <      SetConfEncrypted(yy_aconf);
1805 >      block_state.flags.value |= CONF_FLAGS_ENCRYPTED;
1806      else
1807 <      ClearConfEncrypted(yy_aconf);
1807 >      block_state.flags.value &= ~CONF_FLAGS_ENCRYPTED;
1808    }
1809   };
1810  
1811   auth_flags: IRCD_FLAGS
1812   {
1813 +  if (conf_parser_ctx.pass == 2)
1814 +    block_state.flags.value &= (CONF_FLAGS_ENCRYPTED | CONF_FLAGS_SPOOF_IP);
1815   } '='  auth_flags_items ';';
1816  
1817   auth_flags_items: auth_flags_items ',' auth_flags_item | auth_flags_item;
1818   auth_flags_item: SPOOF_NOTICE
1819   {
1820    if (conf_parser_ctx.pass == 2)
1821 <    yy_aconf->flags |= CONF_FLAGS_SPOOF_NOTICE;
1821 >    block_state.flags.value |= CONF_FLAGS_SPOOF_NOTICE;
1822   } | EXCEED_LIMIT
1823   {
1824    if (conf_parser_ctx.pass == 2)
1825 <    yy_aconf->flags |= CONF_FLAGS_NOLIMIT;
1825 >    block_state.flags.value |= CONF_FLAGS_NOLIMIT;
1826   } | KLINE_EXEMPT
1827   {
1828    if (conf_parser_ctx.pass == 2)
1829 <    yy_aconf->flags |= CONF_FLAGS_EXEMPTKLINE;
1829 >    block_state.flags.value |= CONF_FLAGS_EXEMPTKLINE;
1830 > } | XLINE_EXEMPT
1831 > {
1832 >  if (conf_parser_ctx.pass == 2)
1833 >    block_state.flags.value |= CONF_FLAGS_EXEMPTXLINE;
1834   } | NEED_IDENT
1835   {
1836    if (conf_parser_ctx.pass == 2)
1837 <    yy_aconf->flags |= CONF_FLAGS_NEED_IDENTD;
1837 >    block_state.flags.value |= CONF_FLAGS_NEED_IDENTD;
1838   } | CAN_FLOOD
1839   {
1840    if (conf_parser_ctx.pass == 2)
1841 <    yy_aconf->flags |= CONF_FLAGS_CAN_FLOOD;
1841 >    block_state.flags.value |= CONF_FLAGS_CAN_FLOOD;
1842   } | NO_TILDE
1843   {
1844    if (conf_parser_ctx.pass == 2)
1845 <    yy_aconf->flags |= CONF_FLAGS_NO_TILDE;
1846 < } | GLINE_EXEMPT
1845 >    block_state.flags.value |= CONF_FLAGS_NO_TILDE;
1846 > } | RESV_EXEMPT
1847   {
1848    if (conf_parser_ctx.pass == 2)
1849 <    yy_aconf->flags |= CONF_FLAGS_EXEMPTGLINE;
1850 < } | RESV_EXEMPT
1849 >    block_state.flags.value |= CONF_FLAGS_EXEMPTRESV;
1850 > } | T_WEBIRC
1851   {
1852    if (conf_parser_ctx.pass == 2)
1853 <    yy_aconf->flags |= CONF_FLAGS_EXEMPTRESV;
1853 >    block_state.flags.value |= CONF_FLAGS_WEBIRC;
1854   } | NEED_PASSWORD
1855   {
1856    if (conf_parser_ctx.pass == 2)
1857 <    yy_aconf->flags |= CONF_FLAGS_NEED_PASSWORD;
1857 >    block_state.flags.value |= CONF_FLAGS_NEED_PASSWORD;
1858   };
1859  
1860 < /* XXX - need check for illegal hostnames here */
1755 < auth_spoof: SPOOF '=' QSTRING ';'
1860 > auth_spoof: SPOOF '=' QSTRING ';'
1861   {
1862 <  if (conf_parser_ctx.pass == 2)
1863 <  {
1759 <    MyFree(yy_conf->name);
1862 >  if (conf_parser_ctx.pass != 2)
1863 >    break;
1864  
1865 <    if (strlen(yylval.string) < HOSTLEN)
1866 <    {    
1867 <      DupString(yy_conf->name, yylval.string);
1868 <      yy_aconf->flags |= CONF_FLAGS_SPOOF_IP;
1765 <    }
1766 <    else
1767 <    {
1768 <      ilog(LOG_TYPE_IRCD, "Spoofs must be less than %d..ignoring it", HOSTLEN);
1769 <      yy_conf->name = NULL;
1770 <    }
1865 >  if (valid_hostname(yylval.string))
1866 >  {
1867 >    strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
1868 >    block_state.flags.value |= CONF_FLAGS_SPOOF_IP;
1869    }
1870 +  else
1871 +    ilog(LOG_TYPE_IRCD, "Spoof either is too long or contains invalid characters. Ignoring it.");
1872   };
1873  
1874   auth_redir_serv: REDIRSERV '=' QSTRING ';'
1875   {
1876 <  if (conf_parser_ctx.pass == 2)
1877 <  {
1878 <    yy_aconf->flags |= CONF_FLAGS_REDIR;
1879 <    MyFree(yy_conf->name);
1880 <    DupString(yy_conf->name, yylval.string);
1781 <  }
1876 >  if (conf_parser_ctx.pass != 2)
1877 >    break;
1878 >
1879 >  strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
1880 >  block_state.flags.value |= CONF_FLAGS_REDIR;
1881   };
1882  
1883   auth_redir_port: REDIRPORT '=' NUMBER ';'
1884   {
1885 <  if (conf_parser_ctx.pass == 2)
1886 <  {
1887 <    yy_aconf->flags |= CONF_FLAGS_REDIR;
1888 <    yy_aconf->port = $3;
1889 <  }
1885 >  if (conf_parser_ctx.pass != 2)
1886 >    break;
1887 >
1888 >  block_state.flags.value |= CONF_FLAGS_REDIR;
1889 >  block_state.port.value = $3;
1890   };
1891  
1892  
# Line 1796 | Line 1895 | auth_redir_port: REDIRPORT '=' NUMBER ';
1895   ***************************************************************************/
1896   resv_entry: RESV
1897   {
1898 <  if (conf_parser_ctx.pass == 2)
1899 <  {
1900 <    MyFree(resv_reason);
1901 <    resv_reason = NULL;
1902 <  }
1898 >  if (conf_parser_ctx.pass != 2)
1899 >    break;
1900 >
1901 >  reset_block_state();
1902 >  strlcpy(block_state.rpass.buf, CONF_NOREASON, sizeof(block_state.rpass.buf));
1903   } '{' resv_items '}' ';'
1904   {
1905 <  if (conf_parser_ctx.pass == 2)
1906 <  {
1907 <    MyFree(resv_reason);
1908 <    resv_reason = NULL;
1810 <  }
1905 >  if (conf_parser_ctx.pass != 2)
1906 >    break;
1907 >
1908 >  create_resv(block_state.name.buf, block_state.rpass.buf, &block_state.mask.list);
1909   };
1910  
1911 < resv_items:     resv_items resv_item | resv_item;
1912 < resv_item:      resv_creason | resv_channel | resv_nick | error ';' ;
1911 > resv_items:     resv_items resv_item | resv_item;
1912 > resv_item:      resv_mask | resv_reason | resv_exempt | error ';' ;
1913  
1914 < resv_creason: REASON '=' QSTRING ';'
1914 > resv_mask: MASK '=' QSTRING ';'
1915   {
1916    if (conf_parser_ctx.pass == 2)
1917 <  {
1820 <    MyFree(resv_reason);
1821 <    DupString(resv_reason, yylval.string);
1822 <  }
1917 >    strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
1918   };
1919  
1920 < resv_channel: CHANNEL '=' QSTRING ';'
1920 > resv_reason: REASON '=' QSTRING ';'
1921   {
1922    if (conf_parser_ctx.pass == 2)
1923 <  {
1829 <    if (IsChanPrefix(*yylval.string))
1830 <    {
1831 <      char def_reason[] = "No reason";
1832 <
1833 <      create_channel_resv(yylval.string, resv_reason != NULL ? resv_reason : def_reason, 1);
1834 <    }
1835 <  }
1836 <  /* ignore it for now.. but we really should make a warning if
1837 <   * its an erroneous name --fl_ */
1923 >    strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
1924   };
1925  
1926 < resv_nick: NICK '=' QSTRING ';'
1926 > resv_exempt: EXEMPT '=' QSTRING ';'
1927   {
1928    if (conf_parser_ctx.pass == 2)
1929 <  {
1844 <    char def_reason[] = "No reason";
1845 <
1846 <    create_nick_resv(yylval.string, resv_reason != NULL ? resv_reason : def_reason, 1);
1847 <  }
1929 >    dlinkAdd(xstrdup(yylval.string), make_dlink_node(), &block_state.mask.list);
1930   };
1931  
1932 +
1933   /***************************************************************************
1934   *  section service
1935   ***************************************************************************/
# Line 1857 | Line 1940 | service_item:      service_name | error;
1940  
1941   service_name: NAME '=' QSTRING ';'
1942   {
1943 <  if (conf_parser_ctx.pass == 2)
1943 >  if (conf_parser_ctx.pass != 2)
1944 >    break;
1945 >
1946 >  if (valid_servname(yylval.string))
1947    {
1948 <    if (valid_servname(yylval.string))
1949 <    {
1864 <      yy_conf = make_conf_item(SERVICE_TYPE);
1865 <      DupString(yy_conf->name, yylval.string);
1866 <    }
1948 >    struct MaskItem *conf = conf_make(CONF_SERVICE);
1949 >    conf->name = xstrdup(yylval.string);
1950    }
1951   };
1952  
# Line 1872 | Line 1955 | service_name: NAME '=' QSTRING ';'
1955   ***************************************************************************/
1956   shared_entry: T_SHARED
1957   {
1958 <  if (conf_parser_ctx.pass == 2)
1959 <  {
1960 <    yy_conf = make_conf_item(ULINE_TYPE);
1961 <    yy_match_item = map_to_conf(yy_conf);
1962 <    yy_match_item->action = SHARED_ALL;
1963 <  }
1958 >  if (conf_parser_ctx.pass != 2)
1959 >    break;
1960 >
1961 >  reset_block_state();
1962 >
1963 >  strlcpy(block_state.name.buf, "*", sizeof(block_state.name.buf));
1964 >  strlcpy(block_state.user.buf, "*", sizeof(block_state.user.buf));
1965 >  strlcpy(block_state.host.buf, "*", sizeof(block_state.host.buf));
1966 >  block_state.flags.value = SHARED_ALL;
1967   } '{' shared_items '}' ';'
1968   {
1969 <  if (conf_parser_ctx.pass == 2)
1970 <  {
1971 <    yy_conf = NULL;
1972 <  }
1969 >  struct MaskItem *conf = NULL;
1970 >
1971 >  if (conf_parser_ctx.pass != 2)
1972 >    break;
1973 >
1974 >  conf = conf_make(CONF_ULINE);
1975 >  conf->flags = block_state.flags.value;
1976 >  conf->name = xstrdup(block_state.name.buf);
1977 >  conf->user = xstrdup(block_state.user.buf);
1978 >  conf->host = xstrdup(block_state.host.buf);
1979   };
1980  
1981   shared_items: shared_items shared_item | shared_item;
# Line 1892 | Line 1984 | shared_item:  shared_name | shared_user
1984   shared_name: NAME '=' QSTRING ';'
1985   {
1986    if (conf_parser_ctx.pass == 2)
1987 <  {
1896 <    MyFree(yy_conf->name);
1897 <    DupString(yy_conf->name, yylval.string);
1898 <  }
1987 >    strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
1988   };
1989  
1990   shared_user: USER '=' QSTRING ';'
# Line 1906 | Line 1995 | shared_user: USER '=' QSTRING ';'
1995  
1996      nuh.nuhmask  = yylval.string;
1997      nuh.nickptr  = NULL;
1998 <    nuh.userptr  = userbuf;
1999 <    nuh.hostptr  = hostbuf;
1998 >    nuh.userptr  = block_state.user.buf;
1999 >    nuh.hostptr  = block_state.host.buf;
2000  
2001      nuh.nicksize = 0;
2002 <    nuh.usersize = sizeof(userbuf);
2003 <    nuh.hostsize = sizeof(hostbuf);
2002 >    nuh.usersize = sizeof(block_state.user.buf);
2003 >    nuh.hostsize = sizeof(block_state.host.buf);
2004  
2005      split_nuh(&nuh);
1917
1918    DupString(yy_match_item->user, userbuf);
1919    DupString(yy_match_item->host, hostbuf);
2006    }
2007   };
2008  
2009   shared_type: TYPE
2010   {
2011    if (conf_parser_ctx.pass == 2)
2012 <    yy_match_item->action = 0;
2012 >    block_state.flags.value = 0;
2013   } '=' shared_types ';' ;
2014  
2015   shared_types: shared_types ',' shared_type_item | shared_type_item;
2016   shared_type_item: KLINE
2017   {
2018    if (conf_parser_ctx.pass == 2)
2019 <    yy_match_item->action |= SHARED_KLINE;
2019 >    block_state.flags.value |= SHARED_KLINE;
2020   } | UNKLINE
2021   {
2022    if (conf_parser_ctx.pass == 2)
2023 <    yy_match_item->action |= SHARED_UNKLINE;
2023 >    block_state.flags.value |= SHARED_UNKLINE;
2024   } | T_DLINE
2025   {
2026    if (conf_parser_ctx.pass == 2)
2027 <    yy_match_item->action |= SHARED_DLINE;
2027 >    block_state.flags.value |= SHARED_DLINE;
2028   } | T_UNDLINE
2029   {
2030    if (conf_parser_ctx.pass == 2)
2031 <    yy_match_item->action |= SHARED_UNDLINE;
2031 >    block_state.flags.value |= SHARED_UNDLINE;
2032   } | XLINE
2033   {
2034    if (conf_parser_ctx.pass == 2)
2035 <    yy_match_item->action |= SHARED_XLINE;
2035 >    block_state.flags.value |= SHARED_XLINE;
2036   } | T_UNXLINE
2037   {
2038    if (conf_parser_ctx.pass == 2)
2039 <    yy_match_item->action |= SHARED_UNXLINE;
2039 >    block_state.flags.value |= SHARED_UNXLINE;
2040   } | RESV
2041   {
2042    if (conf_parser_ctx.pass == 2)
2043 <    yy_match_item->action |= SHARED_RESV;
2043 >    block_state.flags.value |= SHARED_RESV;
2044   } | T_UNRESV
2045   {
2046    if (conf_parser_ctx.pass == 2)
2047 <    yy_match_item->action |= SHARED_UNRESV;
2047 >    block_state.flags.value |= SHARED_UNRESV;
2048   } | T_LOCOPS
2049   {
2050    if (conf_parser_ctx.pass == 2)
2051 <    yy_match_item->action |= SHARED_LOCOPS;
2051 >    block_state.flags.value |= SHARED_LOCOPS;
2052   } | T_ALL
2053   {
2054    if (conf_parser_ctx.pass == 2)
2055 <    yy_match_item->action = SHARED_ALL;
2055 >    block_state.flags.value = SHARED_ALL;
2056   };
2057  
2058   /***************************************************************************
# Line 1974 | Line 2060 | shared_type_item: KLINE
2060   ***************************************************************************/
2061   cluster_entry: T_CLUSTER
2062   {
2063 <  if (conf_parser_ctx.pass == 2)
2064 <  {
2065 <    yy_conf = make_conf_item(CLUSTER_TYPE);
2066 <    yy_conf->flags = SHARED_ALL;
2067 <  }
2063 >  if (conf_parser_ctx.pass != 2)
2064 >    break;
2065 >
2066 >  reset_block_state();
2067 >
2068 >  strlcpy(block_state.name.buf, "*", sizeof(block_state.name.buf));
2069 >  block_state.flags.value = SHARED_ALL;
2070   } '{' cluster_items '}' ';'
2071   {
2072 <  if (conf_parser_ctx.pass == 2)
2073 <  {
2074 <    if (yy_conf->name == NULL)
2075 <      DupString(yy_conf->name, "*");
2076 <    yy_conf = NULL;
2077 <  }
2072 >  struct MaskItem *conf = NULL;
2073 >
2074 >  if (conf_parser_ctx.pass != 2)
2075 >    break;
2076 >
2077 >  conf = conf_make(CONF_CLUSTER);
2078 >  conf->flags = block_state.flags.value;
2079 >  conf->name = xstrdup(block_state.name.buf);
2080   };
2081  
2082 < cluster_items:  cluster_items cluster_item | cluster_item;
2083 < cluster_item:   cluster_name | cluster_type | error ';' ;
2082 > cluster_items:  cluster_items cluster_item | cluster_item;
2083 > cluster_item:   cluster_name | cluster_type | error ';' ;
2084  
2085   cluster_name: NAME '=' QSTRING ';'
2086   {
2087    if (conf_parser_ctx.pass == 2)
2088 <    DupString(yy_conf->name, yylval.string);
2088 >    strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
2089   };
2090  
2091   cluster_type: TYPE
2092   {
2093    if (conf_parser_ctx.pass == 2)
2094 <    yy_conf->flags = 0;
2094 >    block_state.flags.value = 0;
2095   } '=' cluster_types ';' ;
2096  
2097 < cluster_types:  cluster_types ',' cluster_type_item | cluster_type_item;
2097 > cluster_types:  cluster_types ',' cluster_type_item | cluster_type_item;
2098   cluster_type_item: KLINE
2099   {
2100    if (conf_parser_ctx.pass == 2)
2101 <    yy_conf->flags |= SHARED_KLINE;
2101 >    block_state.flags.value |= SHARED_KLINE;
2102   } | UNKLINE
2103   {
2104    if (conf_parser_ctx.pass == 2)
2105 <    yy_conf->flags |= SHARED_UNKLINE;
2105 >    block_state.flags.value |= SHARED_UNKLINE;
2106   } | T_DLINE
2107   {
2108    if (conf_parser_ctx.pass == 2)
2109 <    yy_conf->flags |= SHARED_DLINE;
2109 >    block_state.flags.value |= SHARED_DLINE;
2110   } | T_UNDLINE
2111   {
2112    if (conf_parser_ctx.pass == 2)
2113 <    yy_conf->flags |= SHARED_UNDLINE;
2113 >    block_state.flags.value |= SHARED_UNDLINE;
2114   } | XLINE
2115   {
2116    if (conf_parser_ctx.pass == 2)
2117 <    yy_conf->flags |= SHARED_XLINE;
2117 >    block_state.flags.value |= SHARED_XLINE;
2118   } | T_UNXLINE
2119   {
2120    if (conf_parser_ctx.pass == 2)
2121 <    yy_conf->flags |= SHARED_UNXLINE;
2121 >    block_state.flags.value |= SHARED_UNXLINE;
2122   } | RESV
2123   {
2124    if (conf_parser_ctx.pass == 2)
2125 <    yy_conf->flags |= SHARED_RESV;
2125 >    block_state.flags.value |= SHARED_RESV;
2126   } | T_UNRESV
2127   {
2128    if (conf_parser_ctx.pass == 2)
2129 <    yy_conf->flags |= SHARED_UNRESV;
2129 >    block_state.flags.value |= SHARED_UNRESV;
2130   } | T_LOCOPS
2131   {
2132    if (conf_parser_ctx.pass == 2)
2133 <    yy_conf->flags |= SHARED_LOCOPS;
2133 >    block_state.flags.value |= SHARED_LOCOPS;
2134   } | T_ALL
2135   {
2136    if (conf_parser_ctx.pass == 2)
2137 <    yy_conf->flags = SHARED_ALL;
2137 >    block_state.flags.value = SHARED_ALL;
2138   };
2139  
2140   /***************************************************************************
2141   *  section connect
2142   ***************************************************************************/
2143 < connect_entry: CONNECT  
2143 > connect_entry: CONNECT
2144   {
2055  if (conf_parser_ctx.pass == 2)
2056  {
2057    yy_conf = make_conf_item(SERVER_TYPE);
2058    yy_aconf = map_to_conf(yy_conf);
2145  
2146 <    /* defaults */
2147 <    yy_aconf->port = PORTNUM;
2148 <  }
2149 <  else
2150 <  {
2151 <    MyFree(class_name);
2066 <    class_name = NULL;
2067 <  }
2146 >  if (conf_parser_ctx.pass != 2)
2147 >    break;
2148 >
2149 >  reset_block_state();
2150 >  block_state.aftype.value = AF_INET;
2151 >  block_state.port.value = PORTNUM;
2152   } '{' connect_items '}' ';'
2153   {
2154 <  if (conf_parser_ctx.pass == 2)
2155 <  {
2072 <    struct CollectItem *yy_hconf=NULL;
2073 <    struct CollectItem *yy_lconf=NULL;
2074 <    dlink_node *ptr = NULL, *next_ptr = NULL;
2075 <
2076 <    if (yy_aconf->host &&
2077 <        yy_aconf->passwd && yy_aconf->spasswd)
2078 <    {
2079 <      if (conf_add_server(yy_conf, class_name) == -1)
2080 <      {
2081 <        delete_conf_item(yy_conf);
2082 <        yy_conf = NULL;
2083 <        yy_aconf = NULL;
2084 <      }
2085 <    }
2086 <    else
2087 <    {
2088 <      /* Even if yy_conf ->name is NULL
2089 <       * should still unhook any hub/leaf confs still pending
2090 <       */
2091 <      unhook_hub_leaf_confs();
2092 <
2093 <      if (yy_conf->name != NULL)
2094 <      {
2095 <        if (yy_aconf->host == NULL)
2096 <          yyerror("Ignoring connect block -- missing host");
2097 <        else if (!yy_aconf->passwd || !yy_aconf->spasswd)
2098 <          yyerror("Ignoring connect block -- missing password");
2099 <      }
2100 <
2154 >  struct MaskItem *conf = NULL;
2155 >  struct addrinfo hints, *res;
2156  
2157 <      /* XXX
2158 <       * This fixes a try_connections() core (caused by invalid class_ptr
2104 <       * pointers) reported by metalrock. That's an ugly fix, but there
2105 <       * is currently no better way. The entire config subsystem needs an
2106 <       * rewrite ASAP. make_conf_item() shouldn't really add things onto
2107 <       * a doubly linked list immediately without any sanity checks!  -Michael
2108 <       */
2109 <      delete_conf_item(yy_conf);
2157 >  if (conf_parser_ctx.pass != 2)
2158 >    break;
2159  
2160 <      yy_aconf = NULL;
2161 <      yy_conf = NULL;
2162 <    }
2163 <
2164 <      /*
2165 <       * yy_conf is still pointing at the server that is having
2166 <       * a connect block built for it. This means, y_aconf->name
2167 <       * points to the actual irc name this server will be known as.
2168 <       * Now this new server has a set or even just one hub_mask (or leaf_mask)
2169 <       * given in the link list at yy_hconf. Fill in the HUB confs
2170 <       * from this link list now.
2171 <       */        
2172 <      DLINK_FOREACH_SAFE(ptr, next_ptr, hub_conf_list.head)
2173 <      {
2174 <        struct ConfItem *new_hub_conf;
2175 <        struct MatchItem *match_item;
2160 >  if (!block_state.name.buf[0] ||
2161 >      !block_state.host.buf[0])
2162 >    break;
2163 >
2164 >  if (!block_state.rpass.buf[0] ||
2165 >      !block_state.spass.buf[0])
2166 >    break;
2167 >
2168 >  if (has_wildcards(block_state.name.buf) ||
2169 >      has_wildcards(block_state.host.buf))
2170 >    break;
2171 >
2172 >  conf = conf_make(CONF_SERVER);
2173 >  conf->port = block_state.port.value;
2174 >  conf->flags = block_state.flags.value;
2175 >  conf->aftype = block_state.aftype.value;
2176 >  conf->host = xstrdup(block_state.host.buf);
2177 >  conf->name = xstrdup(block_state.name.buf);
2178 >  conf->passwd = xstrdup(block_state.rpass.buf);
2179 >  conf->spasswd = xstrdup(block_state.spass.buf);
2180 >
2181 >  if (block_state.cert.buf[0])
2182 >    conf->certfp = xstrdup(block_state.cert.buf);
2183  
2184 <        yy_hconf = ptr->data;
2184 >  if (block_state.ciph.buf[0])
2185 >    conf->cipher_list = xstrdup(block_state.ciph.buf);
2186  
2187 <        /* yy_conf == NULL is a fatal error for this connect block! */
2188 <        if ((yy_conf != NULL) && (yy_conf->name != NULL))
2132 <        {
2133 <          new_hub_conf = make_conf_item(HUB_TYPE);
2134 <          match_item = (struct MatchItem *)map_to_conf(new_hub_conf);
2135 <          DupString(new_hub_conf->name, yy_conf->name);
2136 <          if (yy_hconf->user != NULL)
2137 <            DupString(match_item->user, yy_hconf->user);
2138 <          else
2139 <            DupString(match_item->user, "*");
2140 <          if (yy_hconf->host != NULL)
2141 <            DupString(match_item->host, yy_hconf->host);
2142 <          else
2143 <            DupString(match_item->host, "*");
2144 <        }
2145 <        dlinkDelete(&yy_hconf->node, &hub_conf_list);
2146 <        free_collect_item(yy_hconf);
2147 <      }
2187 >  dlinkMoveList(&block_state.leaf.list, &conf->leaf_list);
2188 >  dlinkMoveList(&block_state.hub.list, &conf->hub_list);
2189  
2190 <      /* Ditto for the LEAF confs */
2190 >  if (block_state.bind.buf[0])
2191 >  {
2192 >    memset(&hints, 0, sizeof(hints));
2193  
2194 <      DLINK_FOREACH_SAFE(ptr, next_ptr, leaf_conf_list.head)
2195 <      {
2196 <        struct ConfItem *new_leaf_conf;
2154 <        struct MatchItem *match_item;
2194 >    hints.ai_family   = AF_UNSPEC;
2195 >    hints.ai_socktype = SOCK_STREAM;
2196 >    hints.ai_flags    = AI_PASSIVE | AI_NUMERICHOST;
2197  
2198 <        yy_lconf = ptr->data;
2198 >    if (getaddrinfo(block_state.bind.buf, NULL, &hints, &res))
2199 >      ilog(LOG_TYPE_IRCD, "Invalid netmask for server vhost(%s)", block_state.bind.buf);
2200 >    else
2201 >    {
2202 >      assert(res);
2203  
2204 <        if ((yy_conf != NULL) && (yy_conf->name != NULL))
2205 <        {
2206 <          new_leaf_conf = make_conf_item(LEAF_TYPE);
2207 <          match_item = (struct MatchItem *)map_to_conf(new_leaf_conf);
2208 <          DupString(new_leaf_conf->name, yy_conf->name);
2163 <          if (yy_lconf->user != NULL)
2164 <            DupString(match_item->user, yy_lconf->user);
2165 <          else
2166 <            DupString(match_item->user, "*");
2167 <          if (yy_lconf->host != NULL)
2168 <            DupString(match_item->host, yy_lconf->host);
2169 <          else
2170 <            DupString(match_item->host, "*");
2171 <        }
2172 <        dlinkDelete(&yy_lconf->node, &leaf_conf_list);
2173 <        free_collect_item(yy_lconf);
2174 <      }
2175 <      MyFree(class_name);
2176 <      class_name = NULL;
2177 <      yy_conf = NULL;
2178 <      yy_aconf = NULL;
2204 >      memcpy(&conf->bind, res->ai_addr, res->ai_addrlen);
2205 >      conf->bind.ss.ss_family = res->ai_family;
2206 >      conf->bind.ss_len = res->ai_addrlen;
2207 >      freeaddrinfo(res);
2208 >    }
2209    }
2210 +
2211 +  conf_add_class_to_conf(conf, block_state.class.buf);
2212 +  lookup_confhost(conf);
2213   };
2214  
2215   connect_items:  connect_items connect_item | connect_item;
2216 < connect_item:   connect_name | connect_host | connect_vhost |
2217 <                connect_send_password | connect_accept_password |
2218 <                connect_aftype | connect_port | connect_ssl_cipher_list |
2219 <                connect_flags | connect_hub_mask | connect_leaf_mask |
2220 <                connect_class | connect_encrypted |
2216 > connect_item:   connect_name |
2217 >                connect_host |
2218 >                connect_vhost |
2219 >                connect_send_password |
2220 >                connect_accept_password |
2221 >                connect_ssl_certificate_fingerprint |
2222 >                connect_aftype |
2223 >                connect_port |
2224 >                connect_ssl_cipher_list |
2225 >                connect_flags |
2226 >                connect_hub_mask |
2227 >                connect_leaf_mask |
2228 >                connect_class |
2229 >                connect_encrypted |
2230                  error ';' ;
2231  
2232   connect_name: NAME '=' QSTRING ';'
2233   {
2234    if (conf_parser_ctx.pass == 2)
2235 <  {
2194 <    if (yy_conf->name != NULL)
2195 <      yyerror("Multiple connect name entry");
2196 <
2197 <    MyFree(yy_conf->name);
2198 <    DupString(yy_conf->name, yylval.string);
2199 <  }
2235 >    strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
2236   };
2237  
2238 < connect_host: HOST '=' QSTRING ';'
2238 > connect_host: HOST '=' QSTRING ';'
2239   {
2240    if (conf_parser_ctx.pass == 2)
2241 <  {
2206 <    MyFree(yy_aconf->host);
2207 <    DupString(yy_aconf->host, yylval.string);
2208 <  }
2241 >    strlcpy(block_state.host.buf, yylval.string, sizeof(block_state.host.buf));
2242   };
2243  
2244 < connect_vhost: VHOST '=' QSTRING ';'
2244 > connect_vhost: VHOST '=' QSTRING ';'
2245   {
2246    if (conf_parser_ctx.pass == 2)
2247 <  {
2215 <    struct addrinfo hints, *res;
2216 <
2217 <    memset(&hints, 0, sizeof(hints));
2218 <
2219 <    hints.ai_family   = AF_UNSPEC;
2220 <    hints.ai_socktype = SOCK_STREAM;
2221 <    hints.ai_flags    = AI_PASSIVE | AI_NUMERICHOST;
2222 <
2223 <    if (getaddrinfo(yylval.string, NULL, &hints, &res))
2224 <      ilog(LOG_TYPE_IRCD, "Invalid netmask for server vhost(%s)", yylval.string);
2225 <    else
2226 <    {
2227 <      assert(res != NULL);
2228 <
2229 <      memcpy(&yy_aconf->my_ipnum, res->ai_addr, res->ai_addrlen);
2230 <      yy_aconf->my_ipnum.ss.ss_family = res->ai_family;
2231 <      yy_aconf->my_ipnum.ss_len = res->ai_addrlen;
2232 <      freeaddrinfo(res);
2233 <    }
2234 <  }
2247 >    strlcpy(block_state.bind.buf, yylval.string, sizeof(block_state.bind.buf));
2248   };
2249 <
2249 >
2250   connect_send_password: SEND_PASSWORD '=' QSTRING ';'
2251   {
2252 <  if (conf_parser_ctx.pass == 2)
2253 <  {
2241 <    if ($3[0] == ':')
2242 <      yyerror("Server passwords cannot begin with a colon");
2243 <    else if (strchr($3, ' ') != NULL)
2244 <      yyerror("Server passwords cannot contain spaces");
2245 <    else {
2246 <      if (yy_aconf->spasswd != NULL)
2247 <        memset(yy_aconf->spasswd, 0, strlen(yy_aconf->spasswd));
2252 >  if (conf_parser_ctx.pass != 2)
2253 >    break;
2254  
2255 <      MyFree(yy_aconf->spasswd);
2256 <      DupString(yy_aconf->spasswd, yylval.string);
2257 <    }
2258 <  }
2255 >  if ($3[0] == ':')
2256 >    conf_error_report("Server passwords cannot begin with a colon");
2257 >  else if (strchr($3, ' '))
2258 >    conf_error_report("Server passwords cannot contain spaces");
2259 >  else
2260 >    strlcpy(block_state.spass.buf, yylval.string, sizeof(block_state.spass.buf));
2261   };
2262  
2263   connect_accept_password: ACCEPT_PASSWORD '=' QSTRING ';'
2264   {
2265 <  if (conf_parser_ctx.pass == 2)
2266 <  {
2259 <    if ($3[0] == ':')
2260 <      yyerror("Server passwords cannot begin with a colon");
2261 <    else if (strchr($3, ' ') != NULL)
2262 <      yyerror("Server passwords cannot contain spaces");
2263 <    else {
2264 <      if (yy_aconf->passwd != NULL)
2265 <        memset(yy_aconf->passwd, 0, strlen(yy_aconf->passwd));
2265 >  if (conf_parser_ctx.pass != 2)
2266 >    break;
2267  
2268 <      MyFree(yy_aconf->passwd);
2269 <      DupString(yy_aconf->passwd, yylval.string);
2270 <    }
2271 <  }
2268 >  if ($3[0] == ':')
2269 >    conf_error_report("Server passwords cannot begin with a colon");
2270 >  else if (strchr($3, ' '))
2271 >    conf_error_report("Server passwords cannot contain spaces");
2272 >  else
2273 >    strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
2274 > };
2275 >
2276 > connect_ssl_certificate_fingerprint: SSL_CERTIFICATE_FINGERPRINT '=' QSTRING ';'
2277 > {
2278 >  if (conf_parser_ctx.pass == 2)
2279 >    strlcpy(block_state.cert.buf, yylval.string, sizeof(block_state.cert.buf));
2280   };
2281  
2282   connect_port: PORT '=' NUMBER ';'
2283   {
2284    if (conf_parser_ctx.pass == 2)
2285 <    yy_aconf->port = $3;
2285 >    block_state.port.value = $3;
2286   };
2287  
2288   connect_aftype: AFTYPE '=' T_IPV4 ';'
2289   {
2290    if (conf_parser_ctx.pass == 2)
2291 <    yy_aconf->aftype = AF_INET;
2291 >    block_state.aftype.value = AF_INET;
2292   } | AFTYPE '=' T_IPV6 ';'
2293   {
2285 #ifdef IPV6
2294    if (conf_parser_ctx.pass == 2)
2295 <    yy_aconf->aftype = AF_INET6;
2288 < #endif
2295 >    block_state.aftype.value = AF_INET6;
2296   };
2297  
2298   connect_flags: IRCD_FLAGS
2299   {
2300 +  block_state.flags.value &= CONF_FLAGS_ENCRYPTED;
2301   } '='  connect_flags_items ';';
2302  
2303   connect_flags_items: connect_flags_items ',' connect_flags_item | connect_flags_item;
2304   connect_flags_item: AUTOCONN
2305   {
2306    if (conf_parser_ctx.pass == 2)
2307 <    SetConfAllowAutoConn(yy_aconf);
2300 < } | BURST_AWAY
2301 < {
2302 <  if (conf_parser_ctx.pass == 2)
2303 <    SetConfAwayBurst(yy_aconf);
2304 < } | TOPICBURST
2305 < {
2306 <  if (conf_parser_ctx.pass == 2)
2307 <    SetConfTopicBurst(yy_aconf);
2307 >    block_state.flags.value |= CONF_FLAGS_ALLOW_AUTO_CONN;
2308   } | T_SSL
2309   {
2310    if (conf_parser_ctx.pass == 2)
2311 <    SetConfSSL(yy_aconf);
2311 >    block_state.flags.value |= CONF_FLAGS_SSL;
2312   };
2313  
2314   connect_encrypted: ENCRYPTED '=' TBOOL ';'
# Line 2316 | Line 2316 | connect_encrypted: ENCRYPTED '=' TBOOL '
2316    if (conf_parser_ctx.pass == 2)
2317    {
2318      if (yylval.number)
2319 <      yy_aconf->flags |= CONF_FLAGS_ENCRYPTED;
2319 >      block_state.flags.value |= CONF_FLAGS_ENCRYPTED;
2320      else
2321 <      yy_aconf->flags &= ~CONF_FLAGS_ENCRYPTED;
2321 >      block_state.flags.value &= ~CONF_FLAGS_ENCRYPTED;
2322    }
2323   };
2324  
2325 < connect_hub_mask: HUB_MASK '=' QSTRING ';'
2325 > connect_hub_mask: HUB_MASK '=' QSTRING ';'
2326   {
2327    if (conf_parser_ctx.pass == 2)
2328 <  {
2329 <    struct CollectItem *yy_tmp;
2330 <
2331 <    yy_tmp = (struct CollectItem *)MyMalloc(sizeof(struct CollectItem));
2332 <    DupString(yy_tmp->host, yylval.string);
2333 <    DupString(yy_tmp->user, "*");
2334 <    dlinkAdd(yy_tmp, &yy_tmp->node, &hub_conf_list);
2335 <  }
2328 >    dlinkAdd(xstrdup(yylval.string), make_dlink_node(), &block_state.hub.list);
2329   };
2330  
2331 < connect_leaf_mask: LEAF_MASK '=' QSTRING ';'
2331 > connect_leaf_mask: LEAF_MASK '=' QSTRING ';'
2332   {
2333    if (conf_parser_ctx.pass == 2)
2334 <  {
2342 <    struct CollectItem *yy_tmp;
2343 <
2344 <    yy_tmp = (struct CollectItem *)MyMalloc(sizeof(struct CollectItem));
2345 <    DupString(yy_tmp->host, yylval.string);
2346 <    DupString(yy_tmp->user, "*");
2347 <    dlinkAdd(yy_tmp, &yy_tmp->node, &leaf_conf_list);
2348 <  }
2334 >    dlinkAdd(xstrdup(yylval.string), make_dlink_node(), &block_state.leaf.list);
2335   };
2336  
2337   connect_class: CLASS '=' QSTRING ';'
2338   {
2339    if (conf_parser_ctx.pass == 2)
2340 <  {
2355 <    MyFree(class_name);
2356 <    DupString(class_name, yylval.string);
2357 <  }
2340 >    strlcpy(block_state.class.buf, yylval.string, sizeof(block_state.class.buf));
2341   };
2342  
2343   connect_ssl_cipher_list: T_SSL_CIPHER_LIST '=' QSTRING ';'
2344   {
2345   #ifdef HAVE_LIBCRYPTO
2346    if (conf_parser_ctx.pass == 2)
2347 <  {
2365 <    MyFree(yy_aconf->cipher_list);
2366 <    DupString(yy_aconf->cipher_list, yylval.string);
2367 <  }
2347 >    strlcpy(block_state.ciph.buf, yylval.string, sizeof(block_state.ciph.buf));
2348   #else
2349    if (conf_parser_ctx.pass == 2)
2350 <    yyerror("Ignoring connect::ciphers -- no OpenSSL support");
2350 >    conf_error_report("Ignoring connect::ciphers -- no OpenSSL support");
2351   #endif
2352   };
2353  
# Line 2378 | Line 2358 | connect_ssl_cipher_list: T_SSL_CIPHER_LI
2358   kill_entry: KILL
2359   {
2360    if (conf_parser_ctx.pass == 2)
2361 <  {
2382 <    userbuf[0] = hostbuf[0] = reasonbuf[0] = '\0';
2383 <    regex_ban = 0;
2384 <  }
2361 >    reset_block_state();
2362   } '{' kill_items '}' ';'
2363   {
2364 <  if (conf_parser_ctx.pass == 2)
2388 <  {
2389 <    if (userbuf[0] && hostbuf[0])
2390 <    {
2391 <      if (regex_ban)
2392 <      {
2393 < #ifdef HAVE_LIBPCRE
2394 <        void *exp_user = NULL;
2395 <        void *exp_host = NULL;
2396 <        const char *errptr = NULL;
2397 <
2398 <        if (!(exp_user = ircd_pcre_compile(userbuf, &errptr)) ||
2399 <            !(exp_host = ircd_pcre_compile(hostbuf, &errptr)))
2400 <        {
2401 <          ilog(LOG_TYPE_IRCD, "Failed to add regular expression based K-Line: %s",
2402 <               errptr);
2403 <          break;
2404 <        }
2405 <
2406 <        yy_aconf = map_to_conf(make_conf_item(RKLINE_TYPE));
2407 <        yy_aconf->regexuser = exp_user;
2408 <        yy_aconf->regexhost = exp_host;
2409 <
2410 <        DupString(yy_aconf->user, userbuf);
2411 <        DupString(yy_aconf->host, hostbuf);
2412 <
2413 <        if (reasonbuf[0])
2414 <          DupString(yy_aconf->reason, reasonbuf);
2415 <        else
2416 <          DupString(yy_aconf->reason, "No reason");
2417 < #else
2418 <        ilog(LOG_TYPE_IRCD, "Failed to add regular expression based K-Line: no PCRE support");
2419 <        break;
2420 < #endif
2421 <      }
2422 <      else
2423 <      {
2424 <        yy_aconf = map_to_conf(make_conf_item(KLINE_TYPE));
2364 >  struct MaskItem *conf = NULL;
2365  
2366 <        DupString(yy_aconf->user, userbuf);
2367 <        DupString(yy_aconf->host, hostbuf);
2366 >  if (conf_parser_ctx.pass != 2)
2367 >    break;
2368  
2369 <        if (reasonbuf[0])
2370 <          DupString(yy_aconf->reason, reasonbuf);
2371 <        else
2432 <          DupString(yy_aconf->reason, "No reason");
2433 <        add_conf_by_address(CONF_KILL, yy_aconf);
2434 <      }
2435 <    }
2369 >  if (!block_state.user.buf[0] ||
2370 >      !block_state.host.buf[0])
2371 >    break;
2372  
2373 <    yy_aconf = NULL;
2374 <  }
2375 < };
2373 >  conf = conf_make(CONF_KLINE);
2374 >  conf->user = xstrdup(block_state.user.buf);
2375 >  conf->host = xstrdup(block_state.host.buf);
2376  
2377 < kill_type: TYPE
2378 < {
2379 < } '='  kill_type_items ';';
2380 <
2381 < kill_type_items: kill_type_items ',' kill_type_item | kill_type_item;
2446 < kill_type_item: REGEX_T
2447 < {
2448 <  if (conf_parser_ctx.pass == 2)
2449 <    regex_ban = 1;
2377 >  if (block_state.rpass.buf[0])
2378 >    conf->reason = xstrdup(block_state.rpass.buf);
2379 >  else
2380 >    conf->reason = xstrdup(CONF_NOREASON);
2381 >  add_conf_by_address(CONF_KLINE, conf);
2382   };
2383  
2384   kill_items:     kill_items kill_item | kill_item;
2385 < kill_item:      kill_user | kill_reason | kill_type | error;
2385 > kill_item:      kill_user | kill_reason | error;
2386  
2387   kill_user: USER '=' QSTRING ';'
2388   {
2389 +
2390    if (conf_parser_ctx.pass == 2)
2391    {
2392      struct split_nuh_item nuh;
2393  
2394      nuh.nuhmask  = yylval.string;
2395      nuh.nickptr  = NULL;
2396 <    nuh.userptr  = userbuf;
2397 <    nuh.hostptr  = hostbuf;
2396 >    nuh.userptr  = block_state.user.buf;
2397 >    nuh.hostptr  = block_state.host.buf;
2398  
2399      nuh.nicksize = 0;
2400 <    nuh.usersize = sizeof(userbuf);
2401 <    nuh.hostsize = sizeof(hostbuf);
2400 >    nuh.usersize = sizeof(block_state.user.buf);
2401 >    nuh.hostsize = sizeof(block_state.host.buf);
2402  
2403      split_nuh(&nuh);
2404    }
2405   };
2406  
2407 < kill_reason: REASON '=' QSTRING ';'
2407 > kill_reason: REASON '=' QSTRING ';'
2408   {
2409    if (conf_parser_ctx.pass == 2)
2410 <    strlcpy(reasonbuf, yylval.string, sizeof(reasonbuf));
2410 >    strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
2411   };
2412  
2413   /***************************************************************************
2414   *  section deny
2415   ***************************************************************************/
2416 < deny_entry: DENY
2416 > deny_entry: DENY
2417   {
2418    if (conf_parser_ctx.pass == 2)
2419 <    hostbuf[0] = reasonbuf[0] = '\0';
2419 >    reset_block_state();
2420   } '{' deny_items '}' ';'
2421   {
2422 <  if (conf_parser_ctx.pass == 2)
2422 >  struct MaskItem *conf = NULL;
2423 >
2424 >  if (conf_parser_ctx.pass != 2)
2425 >    break;
2426 >
2427 >  if (!block_state.addr.buf[0])
2428 >    break;
2429 >
2430 >  if (parse_netmask(block_state.addr.buf, NULL, NULL) != HM_HOST)
2431    {
2432 <    if (hostbuf[0] && parse_netmask(hostbuf, NULL, NULL) != HM_HOST)
2433 <    {
2493 <      yy_aconf = map_to_conf(make_conf_item(DLINE_TYPE));
2494 <      DupString(yy_aconf->host, hostbuf);
2432 >    conf = conf_make(CONF_DLINE);
2433 >    conf->host = xstrdup(block_state.addr.buf);
2434  
2435 <      if (reasonbuf[0])
2436 <        DupString(yy_aconf->reason, reasonbuf);
2437 <      else
2438 <        DupString(yy_aconf->reason, "No reason");
2439 <      add_conf_by_address(CONF_DLINE, yy_aconf);
2501 <      yy_aconf = NULL;
2502 <    }
2435 >    if (block_state.rpass.buf[0])
2436 >      conf->reason = xstrdup(block_state.rpass.buf);
2437 >    else
2438 >      conf->reason = xstrdup(CONF_NOREASON);
2439 >    add_conf_by_address(CONF_DLINE, conf);
2440    }
2441 < };
2441 > };
2442  
2443   deny_items:     deny_items deny_item | deny_item;
2444   deny_item:      deny_ip | deny_reason | error;
# Line 2509 | Line 2446 | deny_item:      deny_ip | deny_reason |
2446   deny_ip: IP '=' QSTRING ';'
2447   {
2448    if (conf_parser_ctx.pass == 2)
2449 <    strlcpy(hostbuf, yylval.string, sizeof(hostbuf));
2449 >    strlcpy(block_state.addr.buf, yylval.string, sizeof(block_state.addr.buf));
2450   };
2451  
2452 < deny_reason: REASON '=' QSTRING ';'
2452 > deny_reason: REASON '=' QSTRING ';'
2453   {
2454    if (conf_parser_ctx.pass == 2)
2455 <    strlcpy(reasonbuf, yylval.string, sizeof(reasonbuf));
2455 >    strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
2456   };
2457  
2458   /***************************************************************************
# Line 2532 | Line 2469 | exempt_ip: IP '=' QSTRING ';'
2469    {
2470      if (yylval.string[0] && parse_netmask(yylval.string, NULL, NULL) != HM_HOST)
2471      {
2472 <      yy_aconf = map_to_conf(make_conf_item(EXEMPTDLINE_TYPE));
2473 <      DupString(yy_aconf->host, yylval.string);
2472 >      struct MaskItem *conf = conf_make(CONF_EXEMPT);
2473 >      conf->host = xstrdup(yylval.string);
2474  
2475 <      add_conf_by_address(CONF_EXEMPTDLINE, yy_aconf);
2539 <      yy_aconf = NULL;
2475 >      add_conf_by_address(CONF_EXEMPT, conf);
2476      }
2477    }
2478   };
# Line 2547 | Line 2483 | exempt_ip: IP '=' QSTRING ';'
2483   gecos_entry: GECOS
2484   {
2485    if (conf_parser_ctx.pass == 2)
2486 <  {
2551 <    regex_ban = 0;
2552 <    reasonbuf[0] = gecos_name[0] = '\0';
2553 <  }
2486 >    reset_block_state();
2487   } '{' gecos_items '}' ';'
2488   {
2489 <  if (conf_parser_ctx.pass == 2)
2557 <  {
2558 <    if (gecos_name[0])
2559 <    {
2560 <      if (regex_ban)
2561 <      {
2562 < #ifdef HAVE_LIBPCRE
2563 <        void *exp_p = NULL;
2564 <        const char *errptr = NULL;
2565 <
2566 <        if (!(exp_p = ircd_pcre_compile(gecos_name, &errptr)))
2567 <        {
2568 <          ilog(LOG_TYPE_IRCD, "Failed to add regular expression based X-Line: %s",
2569 <               errptr);
2570 <          break;
2571 <        }
2572 <
2573 <        yy_conf = make_conf_item(RXLINE_TYPE);
2574 <        yy_conf->regexpname = exp_p;
2575 < #else
2576 <        ilog(LOG_TYPE_IRCD, "Failed to add regular expression based X-Line: no PCRE support");
2577 <        break;
2578 < #endif
2579 <      }
2580 <      else
2581 <        yy_conf = make_conf_item(XLINE_TYPE);
2489 >  struct MaskItem *conf = NULL;
2490  
2491 <      yy_match_item = map_to_conf(yy_conf);
2492 <      DupString(yy_conf->name, gecos_name);
2491 >  if (conf_parser_ctx.pass != 2)
2492 >    break;
2493  
2494 <      if (reasonbuf[0])
2495 <        DupString(yy_match_item->reason, reasonbuf);
2588 <      else
2589 <        DupString(yy_match_item->reason, "No reason");
2590 <    }
2591 <  }
2592 < };
2494 >  if (!block_state.name.buf[0])
2495 >    break;
2496  
2497 < gecos_flags: TYPE
2498 < {
2596 < } '='  gecos_flags_items ';';
2497 >  conf = conf_make(CONF_XLINE);
2498 >  conf->name = xstrdup(block_state.name.buf);
2499  
2500 < gecos_flags_items: gecos_flags_items ',' gecos_flags_item | gecos_flags_item;
2501 < gecos_flags_item: REGEX_T
2502 < {
2503 <  if (conf_parser_ctx.pass == 2)
2602 <    regex_ban = 1;
2500 >  if (block_state.rpass.buf[0])
2501 >    conf->reason = xstrdup(block_state.rpass.buf);
2502 >  else
2503 >    conf->reason = xstrdup(CONF_NOREASON);
2504   };
2505  
2506   gecos_items: gecos_items gecos_item | gecos_item;
2507 < gecos_item:  gecos_name | gecos_reason | gecos_flags | error;
2507 > gecos_item:  gecos_name | gecos_reason | error;
2508  
2509 < gecos_name: NAME '=' QSTRING ';'
2509 > gecos_name: NAME '=' QSTRING ';'
2510   {
2511    if (conf_parser_ctx.pass == 2)
2512 <    strlcpy(gecos_name, yylval.string, sizeof(gecos_name));
2512 >    strlcpy(block_state.name.buf, yylval.string, sizeof(block_state.name.buf));
2513   };
2514  
2515 < gecos_reason: REASON '=' QSTRING ';'
2515 > gecos_reason: REASON '=' QSTRING ';'
2516   {
2517    if (conf_parser_ctx.pass == 2)
2518 <    strlcpy(reasonbuf, yylval.string, sizeof(reasonbuf));
2518 >    strlcpy(block_state.rpass.buf, yylval.string, sizeof(block_state.rpass.buf));
2519   };
2520  
2521   /***************************************************************************
# Line 2624 | Line 2525 | general_entry: GENERAL
2525    '{' general_items '}' ';';
2526  
2527   general_items:      general_items general_item | general_item;
2528 < general_item:       general_hide_spoof_ips | general_ignore_bogus_ts |
2529 <                    general_failed_oper_notice | general_anti_nick_flood |
2530 <                    general_max_nick_time | general_max_nick_changes |
2531 <                    general_max_accept | general_anti_spam_exit_message_time |
2532 <                    general_ts_warn_delta | general_ts_max_delta |
2533 <                    general_kill_chase_time_limit | general_kline_with_reason |
2534 <                    general_kline_reason | general_invisible_on_connect |
2535 <                    general_warn_no_nline | general_dots_in_ident |
2536 <                    general_stats_o_oper_only | general_stats_k_oper_only |
2537 <                    general_pace_wait | general_stats_i_oper_only |
2538 <                    general_pace_wait_simple | general_stats_P_oper_only |
2539 <                    general_short_motd | general_no_oper_flood |
2540 <                    general_true_no_oper_flood | general_oper_pass_resv |
2541 <                    general_message_locale |
2542 <                    general_oper_only_umodes | general_max_targets |
2543 <                    general_use_egd | general_egdpool_path |
2544 <                    general_oper_umodes | general_caller_id_wait |
2545 <                    general_opers_bypass_callerid | general_default_floodcount |
2546 <                    general_min_nonwildcard | general_min_nonwildcard_simple |
2547 <                    general_disable_remote_commands |
2548 <                    general_client_flood |
2549 <                    general_throttle_time | general_havent_read_conf |
2528 > general_item:       general_away_count |
2529 >                    general_away_time |
2530 >                    general_ignore_bogus_ts |
2531 >                    general_failed_oper_notice |
2532 >                    general_anti_nick_flood |
2533 >                    general_max_nick_time |
2534 >                    general_max_nick_changes |
2535 >                    general_max_accept |
2536 >                    general_anti_spam_exit_message_time |
2537 >                    general_ts_warn_delta |
2538 >                    general_ts_max_delta |
2539 >                    general_kill_chase_time_limit |
2540 >                    general_invisible_on_connect |
2541 >                    general_warn_no_connect_block |
2542 >                    general_dots_in_ident |
2543 >                    general_stats_i_oper_only |
2544 >                    general_stats_k_oper_only |
2545 >                    general_stats_m_oper_only |
2546 >                    general_stats_o_oper_only |
2547 >                    general_stats_P_oper_only |
2548 >                    general_stats_u_oper_only |
2549 >                    general_pace_wait |
2550 >                    general_pace_wait_simple |
2551 >                    general_short_motd |
2552 >                    general_no_oper_flood |
2553 >                    general_oper_pass_resv |
2554 >                    general_oper_only_umodes |
2555 >                    general_max_targets |
2556 >                    general_oper_umodes |
2557 >                    general_caller_id_wait |
2558 >                    general_opers_bypass_callerid |
2559 >                    general_default_floodcount |
2560 >                    general_min_nonwildcard |
2561 >                    general_min_nonwildcard_simple |
2562 >                    general_throttle_count |
2563 >                    general_throttle_time |
2564                      general_ping_cookie |
2565 <                    general_disable_auth |
2566 <                    general_tkline_expire_notices | general_gline_min_cidr |
2567 <                    general_gline_min_cidr6 | general_use_whois_actually |
2568 <                    general_reject_hold_time | general_stats_e_disabled |
2569 <                    general_max_watch | general_services_name |
2570 <                    error;
2565 >                    general_disable_auth |
2566 >                    general_tkline_expire_notices |
2567 >                    general_dline_min_cidr |
2568 >                    general_dline_min_cidr6 |
2569 >                    general_kline_min_cidr |
2570 >                    general_kline_min_cidr6 |
2571 >                    general_stats_e_disabled |
2572 >                    general_max_watch |
2573 >                    general_cycle_on_host_change |
2574 >                    error;
2575  
2576  
2577 < general_max_watch: MAX_WATCH '=' NUMBER ';'
2577 > general_away_count: AWAY_COUNT '=' NUMBER ';'
2578   {
2579 <  ConfigFileEntry.max_watch = $3;
2579 >  ConfigGeneral.away_count = $3;
2580   };
2581  
2582 < general_gline_min_cidr: GLINE_MIN_CIDR '=' NUMBER ';'
2582 > general_away_time: AWAY_TIME '=' timespec ';'
2583   {
2584 <  ConfigFileEntry.gline_min_cidr = $3;
2584 >  ConfigGeneral.away_time = $3;
2585   };
2586  
2587 < general_gline_min_cidr6: GLINE_MIN_CIDR6 '=' NUMBER ';'
2587 > general_max_watch: MAX_WATCH '=' NUMBER ';'
2588   {
2589 <  ConfigFileEntry.gline_min_cidr6 = $3;
2589 >  ConfigGeneral.max_watch = $3;
2590   };
2591  
2592 < general_use_whois_actually: USE_WHOIS_ACTUALLY '=' TBOOL ';'
2592 > general_cycle_on_host_change: CYCLE_ON_HOST_CHANGE '=' TBOOL ';'
2593   {
2594 <  ConfigFileEntry.use_whois_actually = yylval.number;
2594 >  if (conf_parser_ctx.pass == 2)
2595 >    ConfigGeneral.cycle_on_host_change = yylval.number;
2596   };
2597  
2598 < general_reject_hold_time: TREJECT_HOLD_TIME '=' timespec ';'
2598 > general_dline_min_cidr: DLINE_MIN_CIDR '=' NUMBER ';'
2599   {
2600 <  GlobalSetOptions.rejecttime = yylval.number;
2600 >  ConfigGeneral.dline_min_cidr = $3;
2601   };
2602  
2603 < general_tkline_expire_notices: TKLINE_EXPIRE_NOTICES '=' TBOOL ';'
2603 > general_dline_min_cidr6: DLINE_MIN_CIDR6 '=' NUMBER ';'
2604   {
2605 <  ConfigFileEntry.tkline_expire_notices = yylval.number;
2605 >  ConfigGeneral.dline_min_cidr6 = $3;
2606   };
2607  
2608 < general_kill_chase_time_limit: KILL_CHASE_TIME_LIMIT '=' timespec ';'
2608 > general_kline_min_cidr: KLINE_MIN_CIDR '=' NUMBER ';'
2609   {
2610 <  ConfigFileEntry.kill_chase_time_limit = $3;
2610 >  ConfigGeneral.kline_min_cidr = $3;
2611   };
2612  
2613 < general_hide_spoof_ips: HIDE_SPOOF_IPS '=' TBOOL ';'
2613 > general_kline_min_cidr6: KLINE_MIN_CIDR6 '=' NUMBER ';'
2614   {
2615 <  ConfigFileEntry.hide_spoof_ips = yylval.number;
2615 >  ConfigGeneral.kline_min_cidr6 = $3;
2616   };
2617  
2618 < general_ignore_bogus_ts: IGNORE_BOGUS_TS '=' TBOOL ';'
2618 > general_tkline_expire_notices: TKLINE_EXPIRE_NOTICES '=' TBOOL ';'
2619 > {
2620 >  ConfigGeneral.tkline_expire_notices = yylval.number;
2621 > };
2622 >
2623 > general_kill_chase_time_limit: KILL_CHASE_TIME_LIMIT '=' timespec ';'
2624   {
2625 <  ConfigFileEntry.ignore_bogus_ts = yylval.number;
2625 >  ConfigGeneral.kill_chase_time_limit = $3;
2626   };
2627  
2628 < general_disable_remote_commands: DISABLE_REMOTE_COMMANDS '=' TBOOL ';'
2628 > general_ignore_bogus_ts: IGNORE_BOGUS_TS '=' TBOOL ';'
2629   {
2630 <  ConfigFileEntry.disable_remote = yylval.number;
2630 >  ConfigGeneral.ignore_bogus_ts = yylval.number;
2631   };
2632  
2633   general_failed_oper_notice: FAILED_OPER_NOTICE '=' TBOOL ';'
2634   {
2635 <  ConfigFileEntry.failed_oper_notice = yylval.number;
2635 >  ConfigGeneral.failed_oper_notice = yylval.number;
2636   };
2637  
2638   general_anti_nick_flood: ANTI_NICK_FLOOD '=' TBOOL ';'
2639   {
2640 <  ConfigFileEntry.anti_nick_flood = yylval.number;
2640 >  ConfigGeneral.anti_nick_flood = yylval.number;
2641   };
2642  
2643   general_max_nick_time: MAX_NICK_TIME '=' timespec ';'
2644   {
2645 <  ConfigFileEntry.max_nick_time = $3;
2645 >  ConfigGeneral.max_nick_time = $3;
2646   };
2647  
2648   general_max_nick_changes: MAX_NICK_CHANGES '=' NUMBER ';'
2649   {
2650 <  ConfigFileEntry.max_nick_changes = $3;
2650 >  ConfigGeneral.max_nick_changes = $3;
2651   };
2652  
2653   general_max_accept: MAX_ACCEPT '=' NUMBER ';'
2654   {
2655 <  ConfigFileEntry.max_accept = $3;
2655 >  ConfigGeneral.max_accept = $3;
2656   };
2657  
2658   general_anti_spam_exit_message_time: ANTI_SPAM_EXIT_MESSAGE_TIME '=' timespec ';'
2659   {
2660 <  ConfigFileEntry.anti_spam_exit_message_time = $3;
2660 >  ConfigGeneral.anti_spam_exit_message_time = $3;
2661   };
2662  
2663   general_ts_warn_delta: TS_WARN_DELTA '=' timespec ';'
2664   {
2665 <  ConfigFileEntry.ts_warn_delta = $3;
2665 >  ConfigGeneral.ts_warn_delta = $3;
2666   };
2667  
2668   general_ts_max_delta: TS_MAX_DELTA '=' timespec ';'
2669   {
2670    if (conf_parser_ctx.pass == 2)
2671 <    ConfigFileEntry.ts_max_delta = $3;
2747 < };
2748 <
2749 < general_havent_read_conf: HAVENT_READ_CONF '=' NUMBER ';'
2750 < {
2751 <  if (($3 > 0) && conf_parser_ctx.pass == 1)
2752 <  {
2753 <    ilog(LOG_TYPE_IRCD, "You haven't read your config file properly.");
2754 <    ilog(LOG_TYPE_IRCD, "There is a line in the example conf that will kill your server if not removed.");
2755 <    ilog(LOG_TYPE_IRCD, "Consider actually reading/editing the conf file, and removing this line.");
2756 <    exit(0);
2757 <  }
2671 >    ConfigGeneral.ts_max_delta = $3;
2672   };
2673  
2674 < general_kline_with_reason: KLINE_WITH_REASON '=' TBOOL ';'
2674 > general_invisible_on_connect: INVISIBLE_ON_CONNECT '=' TBOOL ';'
2675   {
2676 <  ConfigFileEntry.kline_with_reason = yylval.number;
2676 >  ConfigGeneral.invisible_on_connect = yylval.number;
2677   };
2678  
2679 < general_kline_reason: KLINE_REASON '=' QSTRING ';'
2679 > general_warn_no_connect_block: WARN_NO_CONNECT_BLOCK '=' TBOOL ';'
2680   {
2681 <  if (conf_parser_ctx.pass == 2)
2768 <  {
2769 <    MyFree(ConfigFileEntry.kline_reason);
2770 <    DupString(ConfigFileEntry.kline_reason, yylval.string);
2771 <  }
2681 >  ConfigGeneral.warn_no_connect_block = yylval.number;
2682   };
2683  
2684 < general_invisible_on_connect: INVISIBLE_ON_CONNECT '=' TBOOL ';'
2684 > general_stats_e_disabled: STATS_E_DISABLED '=' TBOOL ';'
2685   {
2686 <  ConfigFileEntry.invisible_on_connect = yylval.number;
2686 >  ConfigGeneral.stats_e_disabled = yylval.number;
2687   };
2688  
2689 < general_warn_no_nline: WARN_NO_NLINE '=' TBOOL ';'
2689 > general_stats_m_oper_only: STATS_M_OPER_ONLY '=' TBOOL ';'
2690   {
2691 <  ConfigFileEntry.warn_no_nline = yylval.number;
2691 >  ConfigGeneral.stats_m_oper_only = yylval.number;
2692   };
2693  
2694 < general_stats_e_disabled: STATS_E_DISABLED '=' TBOOL ';'
2694 > general_stats_o_oper_only: STATS_O_OPER_ONLY '=' TBOOL ';'
2695   {
2696 <  ConfigFileEntry.stats_e_disabled = yylval.number;
2696 >  ConfigGeneral.stats_o_oper_only = yylval.number;
2697   };
2698  
2699 < general_stats_o_oper_only: STATS_O_OPER_ONLY '=' TBOOL ';'
2699 > general_stats_P_oper_only: STATS_P_OPER_ONLY '=' TBOOL ';'
2700   {
2701 <  ConfigFileEntry.stats_o_oper_only = yylval.number;
2701 >  ConfigGeneral.stats_P_oper_only = yylval.number;
2702   };
2703  
2704 < general_stats_P_oper_only: STATS_P_OPER_ONLY '=' TBOOL ';'
2704 > general_stats_u_oper_only: STATS_U_OPER_ONLY '=' TBOOL ';'
2705   {
2706 <  ConfigFileEntry.stats_P_oper_only = yylval.number;
2706 >  ConfigGeneral.stats_u_oper_only = yylval.number;
2707   };
2708  
2709   general_stats_k_oper_only: STATS_K_OPER_ONLY '=' TBOOL ';'
2710   {
2711 <  ConfigFileEntry.stats_k_oper_only = 2 * yylval.number;
2711 >  ConfigGeneral.stats_k_oper_only = 2 * yylval.number;
2712   } | STATS_K_OPER_ONLY '=' TMASKED ';'
2713   {
2714 <  ConfigFileEntry.stats_k_oper_only = 1;
2714 >  ConfigGeneral.stats_k_oper_only = 1;
2715   };
2716  
2717   general_stats_i_oper_only: STATS_I_OPER_ONLY '=' TBOOL ';'
2718   {
2719 <  ConfigFileEntry.stats_i_oper_only = 2 * yylval.number;
2719 >  ConfigGeneral.stats_i_oper_only = 2 * yylval.number;
2720   } | STATS_I_OPER_ONLY '=' TMASKED ';'
2721   {
2722 <  ConfigFileEntry.stats_i_oper_only = 1;
2722 >  ConfigGeneral.stats_i_oper_only = 1;
2723   };
2724  
2725   general_pace_wait: PACE_WAIT '=' timespec ';'
2726   {
2727 <  ConfigFileEntry.pace_wait = $3;
2727 >  ConfigGeneral.pace_wait = $3;
2728   };
2729  
2730   general_caller_id_wait: CALLER_ID_WAIT '=' timespec ';'
2731   {
2732 <  ConfigFileEntry.caller_id_wait = $3;
2732 >  ConfigGeneral.caller_id_wait = $3;
2733   };
2734  
2735   general_opers_bypass_callerid: OPERS_BYPASS_CALLERID '=' TBOOL ';'
2736   {
2737 <  ConfigFileEntry.opers_bypass_callerid = yylval.number;
2737 >  ConfigGeneral.opers_bypass_callerid = yylval.number;
2738   };
2739  
2740   general_pace_wait_simple: PACE_WAIT_SIMPLE '=' timespec ';'
2741   {
2742 <  ConfigFileEntry.pace_wait_simple = $3;
2742 >  ConfigGeneral.pace_wait_simple = $3;
2743   };
2744  
2745   general_short_motd: SHORT_MOTD '=' TBOOL ';'
2746   {
2747 <  ConfigFileEntry.short_motd = yylval.number;
2838 < };
2839 <  
2840 < general_no_oper_flood: NO_OPER_FLOOD '=' TBOOL ';'
2841 < {
2842 <  ConfigFileEntry.no_oper_flood = yylval.number;
2747 >  ConfigGeneral.short_motd = yylval.number;
2748   };
2749  
2750 < general_true_no_oper_flood: TRUE_NO_OPER_FLOOD '=' TBOOL ';'
2750 > general_no_oper_flood: NO_OPER_FLOOD '=' TBOOL ';'
2751   {
2752 <  ConfigFileEntry.true_no_oper_flood = yylval.number;
2752 >  ConfigGeneral.no_oper_flood = yylval.number;
2753   };
2754  
2755   general_oper_pass_resv: OPER_PASS_RESV '=' TBOOL ';'
2756   {
2757 <  ConfigFileEntry.oper_pass_resv = yylval.number;
2853 < };
2854 <
2855 < general_message_locale: MESSAGE_LOCALE '=' QSTRING ';'
2856 < {
2857 <  if (conf_parser_ctx.pass == 2)
2858 <  {
2859 <    if (strlen(yylval.string) > LOCALE_LENGTH-2)
2860 <      yylval.string[LOCALE_LENGTH-1] = '\0';
2861 <
2862 <    set_locale(yylval.string);
2863 <  }
2757 >  ConfigGeneral.oper_pass_resv = yylval.number;
2758   };
2759  
2760   general_dots_in_ident: DOTS_IN_IDENT '=' NUMBER ';'
2761   {
2762 <  ConfigFileEntry.dots_in_ident = $3;
2762 >  ConfigGeneral.dots_in_ident = $3;
2763   };
2764  
2765   general_max_targets: MAX_TARGETS '=' NUMBER ';'
2766   {
2767 <  ConfigFileEntry.max_targets = $3;
2874 < };
2875 <
2876 < general_use_egd: USE_EGD '=' TBOOL ';'
2877 < {
2878 <  ConfigFileEntry.use_egd = yylval.number;
2879 < };
2880 <
2881 < general_egdpool_path: EGDPOOL_PATH '=' QSTRING ';'
2882 < {
2883 <  if (conf_parser_ctx.pass == 2)
2884 <  {
2885 <    MyFree(ConfigFileEntry.egdpool_path);
2886 <    DupString(ConfigFileEntry.egdpool_path, yylval.string);
2887 <  }
2767 >  ConfigGeneral.max_targets = $3;
2768   };
2769  
2770 < general_services_name: T_SERVICES_NAME '=' QSTRING ';'
2770 > general_ping_cookie: PING_COOKIE '=' TBOOL ';'
2771   {
2772 <  if (conf_parser_ctx.pass == 2 && valid_servname(yylval.string))
2893 <  {
2894 <    MyFree(ConfigFileEntry.service_name);
2895 <    DupString(ConfigFileEntry.service_name, yylval.string);
2896 <  }
2772 >  ConfigGeneral.ping_cookie = yylval.number;
2773   };
2774  
2775 < general_ping_cookie: PING_COOKIE '=' TBOOL ';'
2775 > general_disable_auth: DISABLE_AUTH '=' TBOOL ';'
2776   {
2777 <  ConfigFileEntry.ping_cookie = yylval.number;
2777 >  ConfigGeneral.disable_auth = yylval.number;
2778   };
2779  
2780 < general_disable_auth: DISABLE_AUTH '=' TBOOL ';'
2780 > general_throttle_count: THROTTLE_COUNT '=' NUMBER ';'
2781   {
2782 <  ConfigFileEntry.disable_auth = yylval.number;
2782 >  ConfigGeneral.throttle_count = $3;
2783   };
2784  
2785   general_throttle_time: THROTTLE_TIME '=' timespec ';'
2786   {
2787 <  ConfigFileEntry.throttle_time = yylval.number;
2787 >  ConfigGeneral.throttle_time = $3;
2788   };
2789  
2790   general_oper_umodes: OPER_UMODES
2791   {
2792 <  ConfigFileEntry.oper_umodes = 0;
2792 >  ConfigGeneral.oper_umodes = 0;
2793   } '='  umode_oitems ';' ;
2794  
2795   umode_oitems:    umode_oitems ',' umode_oitem | umode_oitem;
2796   umode_oitem:     T_BOTS
2797   {
2798 <  ConfigFileEntry.oper_umodes |= UMODE_BOTS;
2798 >  ConfigGeneral.oper_umodes |= UMODE_BOTS;
2799   } | T_CCONN
2800   {
2801 <  ConfigFileEntry.oper_umodes |= UMODE_CCONN;
2926 < } | T_CCONN_FULL
2927 < {
2928 <  ConfigFileEntry.oper_umodes |= UMODE_CCONN_FULL;
2801 >  ConfigGeneral.oper_umodes |= UMODE_CCONN;
2802   } | T_DEAF
2803   {
2804 <  ConfigFileEntry.oper_umodes |= UMODE_DEAF;
2804 >  ConfigGeneral.oper_umodes |= UMODE_DEAF;
2805   } | T_DEBUG
2806   {
2807 <  ConfigFileEntry.oper_umodes |= UMODE_DEBUG;
2807 >  ConfigGeneral.oper_umodes |= UMODE_DEBUG;
2808   } | T_FULL
2809   {
2810 <  ConfigFileEntry.oper_umodes |= UMODE_FULL;
2810 >  ConfigGeneral.oper_umodes |= UMODE_FULL;
2811   } | HIDDEN
2812   {
2813 <  ConfigFileEntry.oper_umodes |= UMODE_HIDDEN;
2813 >  ConfigGeneral.oper_umodes |= UMODE_HIDDEN;
2814 > } | HIDE_CHANS
2815 > {
2816 >  ConfigGeneral.oper_umodes |= UMODE_HIDECHANS;
2817 > } | HIDE_IDLE
2818 > {
2819 >  ConfigGeneral.oper_umodes |= UMODE_HIDEIDLE;
2820   } | T_SKILL
2821   {
2822 <  ConfigFileEntry.oper_umodes |= UMODE_SKILL;
2822 >  ConfigGeneral.oper_umodes |= UMODE_SKILL;
2823   } | T_NCHANGE
2824   {
2825 <  ConfigFileEntry.oper_umodes |= UMODE_NCHANGE;
2825 >  ConfigGeneral.oper_umodes |= UMODE_NCHANGE;
2826   } | T_REJ
2827   {
2828 <  ConfigFileEntry.oper_umodes |= UMODE_REJ;
2828 >  ConfigGeneral.oper_umodes |= UMODE_REJ;
2829   } | T_UNAUTH
2830   {
2831 <  ConfigFileEntry.oper_umodes |= UMODE_UNAUTH;
2831 >  ConfigGeneral.oper_umodes |= UMODE_UNAUTH;
2832   } | T_SPY
2833   {
2834 <  ConfigFileEntry.oper_umodes |= UMODE_SPY;
2834 >  ConfigGeneral.oper_umodes |= UMODE_SPY;
2835   } | T_EXTERNAL
2836   {
2837 <  ConfigFileEntry.oper_umodes |= UMODE_EXTERNAL;
2959 < } | T_OPERWALL
2960 < {
2961 <  ConfigFileEntry.oper_umodes |= UMODE_OPERWALL;
2837 >  ConfigGeneral.oper_umodes |= UMODE_EXTERNAL;
2838   } | T_SERVNOTICE
2839   {
2840 <  ConfigFileEntry.oper_umodes |= UMODE_SERVNOTICE;
2840 >  ConfigGeneral.oper_umodes |= UMODE_SERVNOTICE;
2841   } | T_INVISIBLE
2842   {
2843 <  ConfigFileEntry.oper_umodes |= UMODE_INVISIBLE;
2843 >  ConfigGeneral.oper_umodes |= UMODE_INVISIBLE;
2844   } | T_WALLOP
2845   {
2846 <  ConfigFileEntry.oper_umodes |= UMODE_WALLOP;
2846 >  ConfigGeneral.oper_umodes |= UMODE_WALLOP;
2847   } | T_SOFTCALLERID
2848   {
2849 <  ConfigFileEntry.oper_umodes |= UMODE_SOFTCALLERID;
2849 >  ConfigGeneral.oper_umodes |= UMODE_SOFTCALLERID;
2850   } | T_CALLERID
2851   {
2852 <  ConfigFileEntry.oper_umodes |= UMODE_CALLERID;
2852 >  ConfigGeneral.oper_umodes |= UMODE_CALLERID;
2853   } | T_LOCOPS
2854   {
2855 <  ConfigFileEntry.oper_umodes |= UMODE_LOCOPS;
2855 >  ConfigGeneral.oper_umodes |= UMODE_LOCOPS;
2856 > } | T_NONONREG
2857 > {
2858 >  ConfigGeneral.oper_umodes |= UMODE_REGONLY;
2859 > } | T_FARCONNECT
2860 > {
2861 >  ConfigGeneral.oper_umodes |= UMODE_FARCONNECT;
2862   };
2863  
2864 < general_oper_only_umodes: OPER_ONLY_UMODES
2864 > general_oper_only_umodes: OPER_ONLY_UMODES
2865   {
2866 <  ConfigFileEntry.oper_only_umodes = 0;
2866 >  ConfigGeneral.oper_only_umodes = 0;
2867   } '='  umode_items ';' ;
2868  
2869 < umode_items:    umode_items ',' umode_item | umode_item;
2870 < umode_item:     T_BOTS
2869 > umode_items:  umode_items ',' umode_item | umode_item;
2870 > umode_item:   T_BOTS
2871   {
2872 <  ConfigFileEntry.oper_only_umodes |= UMODE_BOTS;
2872 >  ConfigGeneral.oper_only_umodes |= UMODE_BOTS;
2873   } | T_CCONN
2874   {
2875 <  ConfigFileEntry.oper_only_umodes |= UMODE_CCONN;
2994 < } | T_CCONN_FULL
2995 < {
2996 <  ConfigFileEntry.oper_only_umodes |= UMODE_CCONN_FULL;
2875 >  ConfigGeneral.oper_only_umodes |= UMODE_CCONN;
2876   } | T_DEAF
2877   {
2878 <  ConfigFileEntry.oper_only_umodes |= UMODE_DEAF;
2878 >  ConfigGeneral.oper_only_umodes |= UMODE_DEAF;
2879   } | T_DEBUG
2880   {
2881 <  ConfigFileEntry.oper_only_umodes |= UMODE_DEBUG;
2881 >  ConfigGeneral.oper_only_umodes |= UMODE_DEBUG;
2882   } | T_FULL
2883 < {
2884 <  ConfigFileEntry.oper_only_umodes |= UMODE_FULL;
2883 > {
2884 >  ConfigGeneral.oper_only_umodes |= UMODE_FULL;
2885   } | T_SKILL
2886   {
2887 <  ConfigFileEntry.oper_only_umodes |= UMODE_SKILL;
2887 >  ConfigGeneral.oper_only_umodes |= UMODE_SKILL;
2888   } | HIDDEN
2889   {
2890 <  ConfigFileEntry.oper_only_umodes |= UMODE_HIDDEN;
2890 >  ConfigGeneral.oper_only_umodes |= UMODE_HIDDEN;
2891   } | T_NCHANGE
2892   {
2893 <  ConfigFileEntry.oper_only_umodes |= UMODE_NCHANGE;
2893 >  ConfigGeneral.oper_only_umodes |= UMODE_NCHANGE;
2894   } | T_REJ
2895   {
2896 <  ConfigFileEntry.oper_only_umodes |= UMODE_REJ;
2896 >  ConfigGeneral.oper_only_umodes |= UMODE_REJ;
2897   } | T_UNAUTH
2898   {
2899 <  ConfigFileEntry.oper_only_umodes |= UMODE_UNAUTH;
2899 >  ConfigGeneral.oper_only_umodes |= UMODE_UNAUTH;
2900   } | T_SPY
2901   {
2902 <  ConfigFileEntry.oper_only_umodes |= UMODE_SPY;
2902 >  ConfigGeneral.oper_only_umodes |= UMODE_SPY;
2903   } | T_EXTERNAL
2904   {
2905 <  ConfigFileEntry.oper_only_umodes |= UMODE_EXTERNAL;
3027 < } | T_OPERWALL
3028 < {
3029 <  ConfigFileEntry.oper_only_umodes |= UMODE_OPERWALL;
2905 >  ConfigGeneral.oper_only_umodes |= UMODE_EXTERNAL;
2906   } | T_SERVNOTICE
2907   {
2908 <  ConfigFileEntry.oper_only_umodes |= UMODE_SERVNOTICE;
2908 >  ConfigGeneral.oper_only_umodes |= UMODE_SERVNOTICE;
2909   } | T_INVISIBLE
2910   {
2911 <  ConfigFileEntry.oper_only_umodes |= UMODE_INVISIBLE;
2911 >  ConfigGeneral.oper_only_umodes |= UMODE_INVISIBLE;
2912   } | T_WALLOP
2913   {
2914 <  ConfigFileEntry.oper_only_umodes |= UMODE_WALLOP;
2914 >  ConfigGeneral.oper_only_umodes |= UMODE_WALLOP;
2915   } | T_SOFTCALLERID
2916   {
2917 <  ConfigFileEntry.oper_only_umodes |= UMODE_SOFTCALLERID;
2917 >  ConfigGeneral.oper_only_umodes |= UMODE_SOFTCALLERID;
2918   } | T_CALLERID
2919   {
2920 <  ConfigFileEntry.oper_only_umodes |= UMODE_CALLERID;
2920 >  ConfigGeneral.oper_only_umodes |= UMODE_CALLERID;
2921   } | T_LOCOPS
2922   {
2923 <  ConfigFileEntry.oper_only_umodes |= UMODE_LOCOPS;
2923 >  ConfigGeneral.oper_only_umodes |= UMODE_LOCOPS;
2924 > } | T_NONONREG
2925 > {
2926 >  ConfigGeneral.oper_only_umodes |= UMODE_REGONLY;
2927 > } | T_FARCONNECT
2928 > {
2929 >  ConfigGeneral.oper_only_umodes |= UMODE_FARCONNECT;
2930   };
2931  
2932   general_min_nonwildcard: MIN_NONWILDCARD '=' NUMBER ';'
2933   {
2934 <  ConfigFileEntry.min_nonwildcard = $3;
2934 >  ConfigGeneral.min_nonwildcard = $3;
2935   };
2936  
2937   general_min_nonwildcard_simple: MIN_NONWILDCARD_SIMPLE '=' NUMBER ';'
2938   {
2939 <  ConfigFileEntry.min_nonwildcard_simple = $3;
2939 >  ConfigGeneral.min_nonwildcard_simple = $3;
2940   };
2941  
2942   general_default_floodcount: DEFAULT_FLOODCOUNT '=' NUMBER ';'
2943   {
2944 <  ConfigFileEntry.default_floodcount = $3;
2944 >  ConfigGeneral.default_floodcount = $3;
2945   };
2946  
3065 general_client_flood: T_CLIENT_FLOOD '=' sizespec ';'
3066 {
3067  ConfigFileEntry.client_flood = $3;
3068 };
3069
3070
3071 /***************************************************************************
3072 *  section glines
3073 ***************************************************************************/
3074 gline_entry: GLINES
3075 {
3076  if (conf_parser_ctx.pass == 2)
3077  {
3078    yy_conf = make_conf_item(GDENY_TYPE);
3079    yy_aconf = map_to_conf(yy_conf);
3080  }
3081 } '{' gline_items '}' ';'
3082 {
3083  if (conf_parser_ctx.pass == 2)
3084  {
3085    /*
3086     * since we re-allocate yy_conf/yy_aconf after the end of action=, at the
3087     * end we will have one extra, so we should free it.
3088     */
3089    if (yy_conf->name == NULL || yy_aconf->user == NULL)
3090    {
3091      delete_conf_item(yy_conf);
3092      yy_conf = NULL;
3093      yy_aconf = NULL;
3094    }
3095  }
3096 };
3097
3098 gline_items:        gline_items gline_item | gline_item;
3099 gline_item:         gline_enable |
3100                    gline_duration |
3101                    gline_logging |
3102                    gline_user |
3103                    gline_server |
3104                    gline_action |
3105                    error;
3106
3107 gline_enable: ENABLE '=' TBOOL ';'
3108 {
3109  if (conf_parser_ctx.pass == 2)
3110    ConfigFileEntry.glines = yylval.number;
3111 };
3112
3113 gline_duration: DURATION '=' timespec ';'
3114 {
3115  if (conf_parser_ctx.pass == 2)
3116    ConfigFileEntry.gline_time = $3;
3117 };
3118
3119 gline_logging: T_LOG
3120 {
3121  if (conf_parser_ctx.pass == 2)
3122    ConfigFileEntry.gline_logging = 0;
3123 } '=' gline_logging_types ';';
3124 gline_logging_types:     gline_logging_types ',' gline_logging_type_item | gline_logging_type_item;
3125 gline_logging_type_item: T_REJECT
3126 {
3127  if (conf_parser_ctx.pass == 2)
3128    ConfigFileEntry.gline_logging |= GDENY_REJECT;
3129 } | T_BLOCK
3130 {
3131  if (conf_parser_ctx.pass == 2)
3132    ConfigFileEntry.gline_logging |= GDENY_BLOCK;
3133 };
3134
3135 gline_user: USER '=' QSTRING ';'
3136 {
3137  if (conf_parser_ctx.pass == 2)
3138  {
3139    struct split_nuh_item nuh;
3140
3141    nuh.nuhmask  = yylval.string;
3142    nuh.nickptr  = NULL;
3143    nuh.userptr  = userbuf;
3144    nuh.hostptr  = hostbuf;
3145
3146    nuh.nicksize = 0;
3147    nuh.usersize = sizeof(userbuf);
3148    nuh.hostsize = sizeof(hostbuf);
3149
3150    split_nuh(&nuh);
3151
3152    if (yy_aconf->user == NULL)
3153    {
3154      DupString(yy_aconf->user, userbuf);
3155      DupString(yy_aconf->host, hostbuf);
3156    }
3157    else
3158    {
3159      struct CollectItem *yy_tmp = MyMalloc(sizeof(struct CollectItem));
3160
3161      DupString(yy_tmp->user, userbuf);
3162      DupString(yy_tmp->host, hostbuf);
3163
3164      dlinkAdd(yy_tmp, &yy_tmp->node, &col_conf_list);
3165    }
3166  }
3167 };
3168
3169 gline_server: NAME '=' QSTRING ';'
3170 {
3171  if (conf_parser_ctx.pass == 2)  
3172  {
3173    MyFree(yy_conf->name);
3174    DupString(yy_conf->name, yylval.string);
3175  }
3176 };
3177
3178 gline_action: ACTION
3179 {
3180  if (conf_parser_ctx.pass == 2)
3181    yy_aconf->flags = 0;
3182 } '=' gdeny_types ';'
3183 {
3184  if (conf_parser_ctx.pass == 2)
3185  {
3186    struct CollectItem *yy_tmp = NULL;
3187    dlink_node *ptr, *next_ptr;
3188
3189    DLINK_FOREACH_SAFE(ptr, next_ptr, col_conf_list.head)
3190    {
3191      struct AccessItem *new_aconf;
3192      struct ConfItem *new_conf;
3193
3194      yy_tmp = ptr->data;
3195      new_conf = make_conf_item(GDENY_TYPE);
3196      new_aconf = map_to_conf(new_conf);
3197
3198      new_aconf->flags = yy_aconf->flags;
3199
3200      if (yy_conf->name != NULL)
3201        DupString(new_conf->name, yy_conf->name);
3202      else
3203        DupString(new_conf->name, "*");
3204      if (yy_aconf->user != NULL)
3205         DupString(new_aconf->user, yy_tmp->user);
3206      else  
3207        DupString(new_aconf->user, "*");
3208      if (yy_aconf->host != NULL)
3209        DupString(new_aconf->host, yy_tmp->host);
3210      else
3211        DupString(new_aconf->host, "*");
3212
3213      dlinkDelete(&yy_tmp->node, &col_conf_list);
3214    }
3215
3216    /*
3217     * In case someone has fed us with more than one action= after user/name
3218     * which would leak memory  -Michael
3219     */
3220    if (yy_conf->name == NULL || yy_aconf->user == NULL)
3221      delete_conf_item(yy_conf);
3222
3223    yy_conf = make_conf_item(GDENY_TYPE);
3224    yy_aconf = map_to_conf(yy_conf);
3225  }
3226 };
3227
3228 gdeny_types: gdeny_types ',' gdeny_type_item | gdeny_type_item;
3229 gdeny_type_item: T_REJECT
3230 {
3231  if (conf_parser_ctx.pass == 2)
3232    yy_aconf->flags |= GDENY_REJECT;
3233 } | T_BLOCK
3234 {
3235  if (conf_parser_ctx.pass == 2)
3236    yy_aconf->flags |= GDENY_BLOCK;
3237 };
2947  
2948   /***************************************************************************
2949   *  section channel
# Line 3243 | Line 2952 | channel_entry: CHANNEL
2952    '{' channel_items '}' ';';
2953  
2954   channel_items:      channel_items channel_item | channel_item;
2955 < channel_item:       channel_disable_local_channels | channel_use_except |
2956 <                    channel_use_invex | channel_use_knock |
2957 <                    channel_max_bans | channel_knock_delay |
2958 <                    channel_knock_delay_channel | channel_max_chans_per_user |
2959 <                    channel_quiet_on_ban | channel_default_split_user_count |
2955 > channel_item:       channel_max_bans |
2956 >                    channel_invite_client_count |
2957 >                    channel_invite_client_time |
2958 >                    channel_knock_client_count |
2959 >                    channel_knock_client_time |
2960 >                    channel_knock_delay_channel |
2961 >                    channel_max_channels |
2962 >                    channel_default_split_user_count |
2963                      channel_default_split_server_count |
2964 <                    channel_no_create_on_split | channel_restrict_channels |
2965 <                    channel_no_join_on_split | channel_burst_topicwho |
2966 <                    channel_jflood_count | channel_jflood_time |
2967 <                    channel_disable_fake_channels | error;
2964 >                    channel_no_create_on_split |
2965 >                    channel_no_join_on_split |
2966 >                    channel_default_join_flood_count |
2967 >                    channel_default_join_flood_time |
2968 >                    channel_disable_fake_channels |
2969 >                    error;
2970  
2971   channel_disable_fake_channels: DISABLE_FAKE_CHANNELS '=' TBOOL ';'
2972   {
2973    ConfigChannel.disable_fake_channels = yylval.number;
2974   };
2975  
2976 < channel_restrict_channels: RESTRICT_CHANNELS '=' TBOOL ';'
3263 < {
3264 <  ConfigChannel.restrict_channels = yylval.number;
3265 < };
3266 <
3267 < channel_disable_local_channels: DISABLE_LOCAL_CHANNELS '=' TBOOL ';'
3268 < {
3269 <  ConfigChannel.disable_local_channels = yylval.number;
3270 < };
3271 <
3272 < channel_use_except: USE_EXCEPT '=' TBOOL ';'
2976 > channel_invite_client_count: INVITE_CLIENT_COUNT '=' NUMBER ';'
2977   {
2978 <  ConfigChannel.use_except = yylval.number;
2978 >  ConfigChannel.invite_client_count = $3;
2979   };
2980  
2981 < channel_use_invex: USE_INVEX '=' TBOOL ';'
2981 > channel_invite_client_time: INVITE_CLIENT_TIME '=' timespec ';'
2982   {
2983 <  ConfigChannel.use_invex = yylval.number;
2983 >  ConfigChannel.invite_client_time = $3;
2984   };
2985  
2986 < channel_use_knock: USE_KNOCK '=' TBOOL ';'
2986 > channel_knock_client_count: KNOCK_CLIENT_COUNT '=' NUMBER ';'
2987   {
2988 <  ConfigChannel.use_knock = yylval.number;
2988 >  ConfigChannel.knock_client_count = $3;
2989   };
2990  
2991 < channel_knock_delay: KNOCK_DELAY '=' timespec ';'
2991 > channel_knock_client_time: KNOCK_CLIENT_TIME '=' timespec ';'
2992   {
2993 <  ConfigChannel.knock_delay = $3;
2993 >  ConfigChannel.knock_client_time = $3;
2994   };
2995  
2996   channel_knock_delay_channel: KNOCK_DELAY_CHANNEL '=' timespec ';'
# Line 3294 | Line 2998 | channel_knock_delay_channel: KNOCK_DELAY
2998    ConfigChannel.knock_delay_channel = $3;
2999   };
3000  
3001 < channel_max_chans_per_user: MAX_CHANS_PER_USER '=' NUMBER ';'
3001 > channel_max_channels: MAX_CHANNELS '=' NUMBER ';'
3002   {
3003 <  ConfigChannel.max_chans_per_user = $3;
3300 < };
3301 <
3302 < channel_quiet_on_ban: QUIET_ON_BAN '=' TBOOL ';'
3303 < {
3304 <  ConfigChannel.quiet_on_ban = yylval.number;
3003 >  ConfigChannel.max_channels = $3;
3004   };
3005  
3006   channel_max_bans: MAX_BANS '=' NUMBER ';'
# Line 3329 | Line 3028 | channel_no_join_on_split: NO_JOIN_ON_SPL
3028    ConfigChannel.no_join_on_split = yylval.number;
3029   };
3030  
3031 < channel_burst_topicwho: BURST_TOPICWHO '=' TBOOL ';'
3031 > channel_default_join_flood_count: DEFAULT_JOIN_FLOOD_COUNT '=' NUMBER ';'
3032   {
3033 <  ConfigChannel.burst_topicwho = yylval.number;
3033 >  ConfigChannel.default_join_flood_count = yylval.number;
3034   };
3035  
3036 < channel_jflood_count: JOIN_FLOOD_COUNT '=' NUMBER ';'
3036 > channel_default_join_flood_time: DEFAULT_JOIN_FLOOD_TIME '=' timespec ';'
3037   {
3038 <  GlobalSetOptions.joinfloodcount = yylval.number;
3340 < };
3341 <
3342 < channel_jflood_time: JOIN_FLOOD_TIME '=' timespec ';'
3343 < {
3344 <  GlobalSetOptions.joinfloodtime = yylval.number;
3038 >  ConfigChannel.default_join_flood_time = $3;
3039   };
3040  
3041   /***************************************************************************
# Line 3351 | Line 3045 | serverhide_entry: SERVERHIDE
3045    '{' serverhide_items '}' ';';
3046  
3047   serverhide_items:   serverhide_items serverhide_item | serverhide_item;
3048 < serverhide_item:    serverhide_flatten_links | serverhide_hide_servers |
3049 <                    serverhide_links_delay |
3050 <                    serverhide_disable_hidden |
3051 <                    serverhide_hidden | serverhide_hidden_name |
3052 <                    serverhide_hide_server_ips |
3048 > serverhide_item:    serverhide_flatten_links |
3049 >                    serverhide_disable_remote_commands |
3050 >                    serverhide_hide_servers |
3051 >                    serverhide_hide_services |
3052 >                    serverhide_links_delay |
3053 >                    serverhide_hidden |
3054 >                    serverhide_hidden_name |
3055 >                    serverhide_hide_server_ips |
3056                      error;
3057  
3058   serverhide_flatten_links: FLATTEN_LINKS '=' TBOOL ';'
# Line 3364 | Line 3061 | serverhide_flatten_links: FLATTEN_LINKS
3061      ConfigServerHide.flatten_links = yylval.number;
3062   };
3063  
3064 + serverhide_disable_remote_commands: DISABLE_REMOTE_COMMANDS '=' TBOOL ';'
3065 + {
3066 +  if (conf_parser_ctx.pass == 2)
3067 +    ConfigServerHide.disable_remote_commands = yylval.number;
3068 + };
3069 +
3070   serverhide_hide_servers: HIDE_SERVERS '=' TBOOL ';'
3071   {
3072    if (conf_parser_ctx.pass == 2)
3073      ConfigServerHide.hide_servers = yylval.number;
3074   };
3075  
3076 + serverhide_hide_services: HIDE_SERVICES '=' TBOOL ';'
3077 + {
3078 +  if (conf_parser_ctx.pass == 2)
3079 +    ConfigServerHide.hide_services = yylval.number;
3080 + };
3081 +
3082   serverhide_hidden_name: HIDDEN_NAME '=' QSTRING ';'
3083   {
3084    if (conf_parser_ctx.pass == 2)
3085    {
3086      MyFree(ConfigServerHide.hidden_name);
3087 <    DupString(ConfigServerHide.hidden_name, yylval.string);
3087 >    ConfigServerHide.hidden_name = xstrdup(yylval.string);
3088    }
3089   };
3090  
# Line 3385 | Line 3094 | serverhide_links_delay: LINKS_DELAY '='
3094    {
3095      if (($3 > 0) && ConfigServerHide.links_disabled == 1)
3096      {
3097 <      eventAddIsh("write_links_file", write_links_file, NULL, $3);
3097 >      event_write_links_file.when = $3;
3098 >      event_addish(&event_write_links_file, NULL);
3099        ConfigServerHide.links_disabled = 0;
3100      }
3101  
# Line 3399 | Line 3109 | serverhide_hidden: HIDDEN '=' TBOOL ';'
3109      ConfigServerHide.hidden = yylval.number;
3110   };
3111  
3402 serverhide_disable_hidden: DISABLE_HIDDEN '=' TBOOL ';'
3403 {
3404  if (conf_parser_ctx.pass == 2)
3405    ConfigServerHide.disable_hidden = yylval.number;
3406 };
3407
3112   serverhide_hide_server_ips: HIDE_SERVER_IPS '=' TBOOL ';'
3113   {
3114    if (conf_parser_ctx.pass == 2)

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)