Forward port SOCKSENDBUF, SOCKRECVBUF features from 2.10.11.
[ircu2.10.12-pk.git] / ircd / ircd_features.c
1 /*
2  * IRC - Internet Relay Chat, ircd/features.c
3  * Copyright (C) 2000 Kevin L. Mitchell <klmitch@mit.edu>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 1, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  * $Id$
20  */
21 #include "config.h"
22
23 #include "ircd_features.h"
24 #include "channel.h"    /* list_set_default */
25 #include "class.h"
26 #include "client.h"
27 #include "hash.h"
28 #include "ircd.h"
29 #include "ircd_alloc.h"
30 #include "ircd_log.h"
31 #include "ircd_reply.h"
32 #include "ircd_string.h"
33 #include "match.h"
34 #include "motd.h"
35 #include "msg.h"
36 #include "numeric.h"
37 #include "numnicks.h"
38 #include "random.h"     /* random_seed_set */
39 #include "s_bsd.h"
40 #include "s_debug.h"
41 #include "s_misc.h"
42 #include "send.h"
43 #include "struct.h"
44 #include "support.h"
45 #include "sys.h"    /* FALSE bleah */
46 #include "whowas.h"     /* whowas_realloc */
47
48 #include <assert.h>
49 #include <stdlib.h>
50 #include <string.h>
51
52 /* List of log output types that can be set */
53 static struct LogTypes {
54   char *type;
55   int (*set)(const char *, const char *);
56   char *(*get)(const char *);
57 } logTypes[] = {
58   { "FILE", log_set_file, log_get_file },
59   { "FACILITY", log_set_facility, log_get_facility },
60   { "SNOMASK", log_set_snomask, log_get_snomask },
61   { "LEVEL", log_set_level, log_get_level },
62   { 0, 0, 0 }
63 };
64
65 /* Look up a struct LogType given the type string */
66 static struct LogTypes *
67 feature_log_desc(struct Client* from, const char *type)
68 {
69   int i;
70
71   assert(0 != type);
72
73   for (i = 0; logTypes[i].type; i++) /* find appropriate descriptor */
74     if (!ircd_strcmp(type, logTypes[i].type))
75       return &logTypes[i];
76
77   Debug((DEBUG_ERROR, "Unknown log feature type \"%s\"", type));
78   if (from) /* send an error; if from is NULL, called from conf parser */
79     send_reply(from, ERR_BADLOGTYPE, type);
80   else
81     log_write(LS_CONFIG, L_ERROR, 0, "Unknown log feature type \"%s\"", type);
82
83   return 0; /* not found */
84 }
85
86 /* Set the value of a log output type for a log subsystem */
87 static int
88 feature_log_set(struct Client* from, const char* const* fields, int count)
89 {
90   struct LogTypes *desc;
91   char *subsys;
92
93   if (count < 2) { /* set default facility */
94     if (log_set_default(count < 1 ? 0 : fields[0])) {
95       assert(count >= 1); /* should always accept default */
96
97       if (from) /* send an error */
98         send_reply(from, ERR_BADLOGVALUE, fields[0]);
99       else
100         log_write(LS_CONFIG, L_ERROR, 0,
101                   "Bad value \"%s\" for default facility", fields[0]);
102     } else
103       return count < 1 ? -1 : 1; /* tell feature to set or clear mark */
104   } else if (!(subsys = log_canon(fields[0]))) { /* no such subsystem */
105     if (from) /* send an error */
106       send_reply(from, ERR_BADLOGSYS, fields[0]);
107     else
108       log_write(LS_CONFIG, L_ERROR, 0,
109                 "No such logging subsystem \"%s\"", fields[0]);
110   } else if ((desc = feature_log_desc(from, fields[1]))) { /* set value */
111     if ((*desc->set)(fields[0], count < 3 ? 0 : fields[2])) {
112       assert(count >= 3); /* should always accept default */
113
114       if (from) /* send an error */
115         send_reply(from, ERR_BADLOGVALUE, fields[2]);
116       else
117         log_write(LS_CONFIG, L_ERROR, 0,
118                   "Bad value \"%s\" for log type %s (subsystem %s)",
119                   fields[2], desc->type, subsys);
120     }
121   }
122
123   return 0;
124 }
125
126 /* reset a log type for a subsystem to its default value */
127 static int
128 feature_log_reset(struct Client* from, const char* const* fields, int count)
129 {
130   struct LogTypes *desc;
131   char *subsys;
132
133   assert(0 != from); /* Never called by the .conf parser */
134
135   if (count < 1) { /* reset default facility */
136     log_set_default(0);
137     return -1; /* unmark this entry */
138   } else if (count < 2)
139     need_more_params(from, "RESET");
140   else if (!(subsys = log_canon(fields[0]))) /* no such subsystem */
141     send_reply(from, ERR_BADLOGSYS, fields[0]);
142   else if ((desc = feature_log_desc(from, fields[1]))) /* reset value */
143     (*desc->set)(fields[0], 0); /* default should always be accepted */
144
145   return 0;
146 }
147
148 /* report the value of a log setting */
149 static void
150 feature_log_get(struct Client* from, const char* const* fields, int count)
151 {
152   struct LogTypes *desc;
153   char *value, *subsys;
154
155   assert(0 != from); /* never called by .conf parser */
156
157   if (count < 1) /* return default facility */
158     send_reply(from, SND_EXPLICIT | RPL_FEATURE, ":Log facility: %s",
159                log_get_default());
160   else if (count < 2)
161     need_more_params(from, "GET");
162   else if (!(subsys = log_canon(fields[0]))) { /* no such subsystem */
163     send_reply(from, ERR_BADLOGSYS, fields[0]);
164   } else if ((desc = feature_log_desc(from, fields[1]))) {
165     if ((value = (*desc->get)(fields[0]))) /* send along value */
166       send_reply(from, SND_EXPLICIT | RPL_FEATURE,
167                  ":Log %s for subsystem %s: %s", desc->type, subsys,
168                  (*desc->get)(subsys));
169     else
170       send_reply(from, SND_EXPLICIT | RPL_FEATURE,
171                  ":No log %s is set for subsystem %s", desc->type, subsys);
172   }
173 }
174
175 /* sets a feature to the given value */
176 typedef int  (*feat_set_call)(struct Client*, const char* const*, int);
177 /* gets the value of a feature */
178 typedef void (*feat_get_call)(struct Client*, const char* const*, int);
179 /* callback to notify of a feature's change */
180 typedef void (*feat_notify_call)(void);
181 /* unmarks all sub-feature values prior to reading .conf */
182 typedef void (*feat_unmark_call)(void);
183 /* resets to defaults all currently unmarked values */
184 typedef int  (*feat_mark_call)(int);
185 /* reports features as a /stats f list */
186 typedef void (*feat_report_call)(struct Client*, int);
187
188 #define FEAT_NONE   0x0000      /* no value */
189 #define FEAT_INT    0x0001      /* set if entry contains an integer value */
190 #define FEAT_BOOL   0x0002      /* set if entry contains a boolean value */
191 #define FEAT_STR    0x0003      /* set if entry contains a string value */
192 #define FEAT_MASK   0x000f      /* possible value types */
193
194 #define FEAT_MARK   0x0010      /* set if entry has been changed */
195 #define FEAT_NULL   0x0020      /* NULL string is permitted */
196 #define FEAT_CASE   0x0040      /* string is case-sensitive */
197
198 #define FEAT_OPER   0x0100      /* set to display only to opers */
199 #define FEAT_MYOPER 0x0200      /* set to display only to local opers */
200 #define FEAT_NODISP 0x0400      /* feature must never be displayed */
201
202 #define FEAT_READ   0x1000      /* feature is read-only (for now, perhaps?) */
203
204 static struct FeatureDesc {
205   enum Feature     feat;    /* feature identifier */
206   char*            type;    /* string describing type */
207   unsigned int     flags;   /* flags for feature */
208   int              v_int;   /* integer value */
209   int              def_int; /* default value */
210   char*            v_str;   /* string value */
211   char*            def_str; /* default value */
212   feat_set_call    set;     /* set feature values */
213   feat_set_call    reset;   /* reset feature values to defaults */
214   feat_get_call    get;     /* get feature values */
215   feat_notify_call notify;  /* notify of value change */
216   feat_unmark_call unmark;  /* unmark all feature change values */
217   feat_mark_call   mark;    /* reset to defaults all unchanged features */
218   feat_report_call report;  /* report feature values */
219 } features[] = {
220 #define F_N(type, flags, set, reset, get, notify, unmark, mark, report)       \
221   { FEAT_ ## type, #type, FEAT_NONE | (flags), 0, 0, 0, 0,                    \
222     (set), (reset), (get), (notify), (unmark), (mark), (report) }
223 #define F_I(type, flags, v_int, notify)                                       \
224   { FEAT_ ## type, #type, FEAT_INT | (flags), 0, (v_int), 0, 0,               \
225     0, 0, 0, (notify), 0, 0, 0 }
226 #define F_B(type, flags, v_int, notify)                                       \
227   { FEAT_ ## type, #type, FEAT_BOOL | (flags), 0, (v_int), 0, 0,              \
228     0, 0, 0, (notify), 0, 0, 0 }
229 #define F_S(type, flags, v_str, notify)                                       \
230   { FEAT_ ## type, #type, FEAT_STR | (flags), 0, 0, 0, (v_str),               \
231     0, 0, 0, (notify), 0, 0, 0 }
232
233   /* Misc. features */
234   F_N(LOG, FEAT_MYOPER, feature_log_set, feature_log_reset, feature_log_get,
235       0, log_feature_unmark, log_feature_mark, log_feature_report),
236   F_S(DOMAINNAME, 0, DOMAINNAME, 0),
237   F_B(RELIABLE_CLOCK, 0, 0, 0),
238   F_I(BUFFERPOOL, 0, 27000000, 0),
239   F_B(HAS_FERGUSON_FLUSHER, 0, 0, 0),
240   F_I(CLIENT_FLOOD, 0, 1024, 0),
241   F_I(SERVER_PORT, FEAT_OPER, 4400, 0),
242   F_B(NODEFAULTMOTD, 0, 1, 0),
243   F_S(MOTD_BANNER, FEAT_NULL, 0, 0),
244   F_S(PROVIDER, FEAT_NULL, 0, 0),
245   F_B(KILL_IPMISMATCH, FEAT_OPER, 0, 0),
246   F_B(IDLE_FROM_MSG, 0, 1, 0),
247   F_B(HUB, 0, 0, 0),
248   F_B(WALLOPS_OPER_ONLY, 0, 0, 0),
249   F_B(NODNS, 0, 0, 0),
250   F_N(RANDOM_SEED, FEAT_NODISP, random_seed_set, 0, 0, 0, 0, 0, 0),
251   F_S(DEFAULT_LIST_PARAM, FEAT_NULL, 0, list_set_default),
252   F_I(NICKNAMEHISTORYLENGTH, 0, 800, whowas_realloc),
253   F_B(HOST_HIDING, 0, 1, 0),
254   F_S(HIDDEN_HOST, FEAT_CASE, "users.undernet.org", 0),
255   F_S(HIDDEN_IP, 0, "127.0.0.1", 0),
256   F_B(CONNEXIT_NOTICES, 0, 0, 0),
257   F_B(OPLEVELS, 0, 1, 0),
258   F_B(LOCAL_CHANNELS, 0, 1, 0),
259   F_B(TOPIC_BURST, 0, 0, 0),
260
261   /* features that probably should not be touched */
262   F_I(KILLCHASETIMELIMIT, 0, 30, 0),
263   F_I(MAXCHANNELSPERUSER, 0, 10, 0),
264   F_I(NICKLEN, 0, 9, 0),
265   F_I(AVBANLEN, 0, 40, 0),
266   F_I(MAXBANS, 0, 45, 0),
267   F_I(MAXSILES, 0, 15, 0),
268   F_I(HANGONGOODLINK, 0, 300, 0),
269   F_I(HANGONRETRYDELAY, 0, 10, 0),
270   F_I(CONNECTTIMEOUT, 0, 90, 0),
271   F_I(TIMESEC, 0, 60, 0),
272   F_I(MAXIMUM_LINKS, 0, 1, init_class), /* reinit class 0 as needed */
273   F_I(PINGFREQUENCY, 0, 120, init_class),
274   F_I(CONNECTFREQUENCY, 0, 600, init_class),
275   F_I(DEFAULTMAXSENDQLENGTH, 0, 40000, init_class),
276   F_I(GLINEMAXUSERCOUNT, 0, 20, 0),
277   F_I(SOCKSENDBUF, 0, 0, 0),
278   F_I(SOCKRECVBUF, 0, 0, 0),
279   F_I(IPCHECK_CLONE_LIMIT, 0, 4, 0),
280   F_I(IPCHECK_CLONE_PERIOD, 0, 40, 0),
281   F_I(IPCHECK_CLONE_DELAY, 0, 600, 0),
282
283   /* Some misc. default paths */
284   F_S(MPATH, FEAT_CASE | FEAT_MYOPER, "ircd.motd", motd_init),
285   F_S(RPATH, FEAT_CASE | FEAT_MYOPER, "remote.motd", motd_init),
286   F_S(PPATH, FEAT_CASE | FEAT_MYOPER | FEAT_READ, "ircd.pid", 0),
287
288   /* Networking features */
289   F_B(VIRTUAL_HOST, 0, 0, 0),
290   F_I(TOS_SERVER, 0, 0x08, 0),
291   F_I(TOS_CLIENT, 0, 0x08, 0),
292   F_I(POLLS_PER_LOOP, 0, 200, 0),
293   F_I(IRCD_RES_RETRIES, 0, 2, 0),
294   F_I(IRCD_RES_TIMEOUT, 0, 4, 0),
295   F_I(AUTH_TIMEOUT, 0, 9, 0),
296
297   /* features that affect all operators */
298   F_B(CRYPT_OPER_PASSWORD, FEAT_MYOPER | FEAT_READ, 1, 0),
299   F_B(OPER_NO_CHAN_LIMIT, 0, 1, 0),
300   F_B(OPER_MODE_LCHAN, 0, 1, 0),
301   F_B(OPER_WALK_THROUGH_LMODES, 0, 0, 0),
302   F_B(NO_OPER_DEOP_LCHAN, 0, 0, 0),
303   F_B(SHOW_INVISIBLE_USERS, 0, 1, 0),
304   F_B(SHOW_ALL_INVISIBLE_USERS, 0, 1, 0),
305   F_B(UNLIMIT_OPER_QUERY, 0, 0, 0),
306   F_B(LOCAL_KILL_ONLY, 0, 0, 0),
307   F_B(CONFIG_OPERCMDS, 0, 0, 0),
308   F_B(LIST_CHAN, 0, 1, 0),
309
310   /* features that affect global opers on this server */
311   F_B(OPER_KILL, 0, 1, 0),
312   F_B(OPER_REHASH, 0, 1, 0),
313   F_B(OPER_RESTART, 0, 1, 0),
314   F_B(OPER_DIE, 0, 1, 0),
315   F_B(OPER_GLINE, 0, 1, 0),
316   F_B(OPER_LGLINE, 0, 1, 0),
317   F_B(OPER_JUPE, 0, 1, 0),
318   F_B(OPER_LJUPE, 0, 1, 0),
319   F_B(OPER_OPMODE, 0, 1, 0),
320   F_B(OPER_LOPMODE, 0, 1, 0),
321   F_B(OPER_FORCE_OPMODE, 0, 1, 0),
322   F_B(OPER_FORCE_LOPMODE, 0, 1, 0),
323   F_B(OPER_BADCHAN, 0, 0, 0),
324   F_B(OPER_LBADCHAN, 0, 0, 0),
325   F_B(OPER_SET, 0, 0, 0),
326   F_B(OPERS_SEE_IN_SECRET_CHANNELS, 0, 1, 0),
327   F_B(OPER_WIDE_GLINE, 0, 1, 0),
328   F_B(OPER_LIST_CHAN, 0, 1, 0),
329
330   /* features that affect local opers on this server */
331   F_B(LOCOP_KILL, 0, 1, 0),
332   F_B(LOCOP_REHASH, 0, 1, 0),
333   F_B(LOCOP_RESTART, 0, 0, 0),
334   F_B(LOCOP_DIE, 0, 0, 0),
335   F_B(LOCOP_LGLINE, 0, 1, 0),
336   F_B(LOCOP_LJUPE, 0, 1, 0),
337   F_B(LOCOP_LOPMODE, 0, 1, 0),
338   F_B(LOCOP_FORCE_LOPMODE, 0, 1, 0),
339   F_B(LOCOP_LBADCHAN, 0, 0, 0),
340   F_B(LOCOP_SET, 0, 0, 0),
341   F_B(LOCOP_SEE_IN_SECRET_CHANNELS, 0, 0, 0),
342   F_B(LOCOP_WIDE_GLINE, 0, 0, 0),
343   F_B(LOCOP_LIST_CHAN, 0, 0, 0),
344
345   /* HEAD_IN_SAND Features */
346   F_B(HIS_SNOTICES, 0, 1, 0),
347   F_B(HIS_SNOTICES_OPER_ONLY, 0, 1, 0),
348   F_B(HIS_DESYNCS, 0, 1, 0),
349   F_B(HIS_DEBUG_OPER_ONLY, 0, 1, 0),
350   F_B(HIS_WALLOPS, 0, 1, 0),
351   F_B(HIS_MAP, 0, 1, 0),
352   F_B(HIS_LINKS, 0, 1, 0),
353   F_B(HIS_TRACE, 0, 1, 0),
354   F_B(HIS_STATS_l, 0, 1, 0),
355   F_B(HIS_STATS_c, 0, 1, 0),
356   F_B(HIS_STATS_g, 0, 1, 0),
357   F_B(HIS_STATS_h, 0, 1, 0),
358   F_B(HIS_STATS_k, 0, 1, 0),
359   F_B(HIS_STATS_f, 0, 1, 0),
360   F_B(HIS_STATS_i, 0, 1, 0),
361   F_B(HIS_STATS_j, 0, 1, 0),
362   F_B(HIS_STATS_M, 0, 1, 0),
363   F_B(HIS_STATS_m, 0, 1, 0),
364   F_B(HIS_STATS_o, 0, 1, 0),
365   F_B(HIS_STATS_p, 0, 1, 0),
366   F_B(HIS_STATS_q, 0, 1, 0),
367   F_B(HIS_STATS_R, 0, 1, 0),
368   F_B(HIS_STATS_r, 0, 1, 0),
369   F_B(HIS_STATS_d, 0, 1, 0),
370   F_B(HIS_STATS_e, 0, 1, 0),
371   F_B(HIS_STATS_t, 0, 1, 0),
372   F_B(HIS_STATS_T, 0, 1, 0),
373   F_B(HIS_STATS_u, 0, 0, 0),
374   F_B(HIS_STATS_U, 0, 1, 0),
375   F_B(HIS_STATS_v, 0, 1, 0),
376   F_B(HIS_STATS_w, 0, 0, 0),
377   F_B(HIS_STATS_x, 0, 1, 0),
378   F_B(HIS_STATS_y, 0, 1, 0),
379   F_B(HIS_STATS_z, 0, 1, 0),
380   F_B(HIS_WHOIS_SERVERNAME, 0, 1, 0),
381   F_B(HIS_WHOIS_IDLETIME, 0, 1, 0),
382   F_B(HIS_WHO_SERVERNAME, 0, 1, 0),
383   F_B(HIS_WHO_HOPCOUNT, 0, 1, 0),
384   F_B(HIS_BANWHO, 0, 1, 0),
385   F_B(HIS_KILLWHO, 0, 1, 0),
386   F_B(HIS_REWRITE, 0, 1, 0),
387   F_I(HIS_REMOTE, 0, 1, 0),
388   F_B(HIS_NETSPLIT, 0, 1, 0),
389   F_S(HIS_SERVERNAME, 0, "*.undernet.org", 0),
390   F_S(HIS_SERVERINFO, 0, "The Undernet Underworld", 0),
391   F_S(HIS_URLSERVERS, 0, "http://www.undernet.org/servers.php", 0),
392
393   /* Misc. random stuff */
394   F_S(NETWORK, 0, "UnderNet", 0),
395   F_S(URL_CLIENTS, 0, "ftp://ftp.undernet.org/pub/irc/clients", 0),
396
397 #undef F_S
398 #undef F_B
399 #undef F_I
400 #undef F_N
401   { FEAT_LAST_F, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
402 };
403
404 /* Given a feature's identifier, look up the feature descriptor */
405 static struct FeatureDesc *
406 feature_desc(struct Client* from, const char *feature)
407 {
408   int i;
409
410   assert(0 != feature);
411
412   for (i = 0; features[i].type; i++) /* find appropriate descriptor */
413     if (!strcmp(feature, features[i].type))
414       return &features[i];
415
416   Debug((DEBUG_ERROR, "Unknown feature \"%s\"", feature));
417   if (from) /* report an error */
418     send_reply(from, ERR_NOFEATURE, feature);
419   else
420     log_write(LS_CONFIG, L_ERROR, 0, "Unknown feature \"%s\"", feature);
421
422   return 0; /* not found */
423 }
424
425 /* Given a feature vector string, set the value of a feature */
426 int
427 feature_set(struct Client* from, const char* const* fields, int count)
428 {
429   int i, change = 0, tmp;
430   const char *t_str;
431   struct FeatureDesc *feat;
432
433   if (from && !HasPriv(from, PRIV_SET))
434     return send_reply(from, ERR_NOPRIVILEGES);
435
436   if (count < 1) {
437     if (from) /* report an error in the number of arguments */
438       need_more_params(from, "SET");
439     else
440       log_write(LS_CONFIG, L_ERROR, 0, "Not enough fields in F line");
441   } else if ((feat = feature_desc(from, fields[0]))) { /* find feature */
442     if (from && feat->flags & FEAT_READ)
443       return send_reply(from, ERR_NOFEATURE, fields[0]);
444
445     switch (feat->flags & FEAT_MASK) {
446     case FEAT_NONE:
447       if (feat->set && (i = (*feat->set)(from, fields + 1, count - 1))) {
448         change++; /* feature handler wants a change recorded */
449
450         if (i > 0) /* call the set callback and do marking */
451           feat->flags |= FEAT_MARK;
452         else /* i < 0 */
453           feat->flags &= ~FEAT_MARK;
454         break;
455       }
456
457     case FEAT_INT: /* an integer value */
458       tmp = feat->v_int; /* detect changes... */
459
460       if (count < 2) { /* reset value */
461         feat->v_int = feat->def_int;
462         feat->flags &= ~FEAT_MARK;
463       } else { /* ok, figure out the value and whether to mark it */
464         feat->v_int = strtoul(fields[1], 0, 0);
465         if (feat->v_int == feat->def_int)
466           feat->flags &= ~FEAT_MARK;
467         else
468           feat->flags |= FEAT_MARK;
469       }
470
471       if (feat->v_int != tmp) /* check for change */
472         change++;
473       break;
474
475     case FEAT_BOOL: /* it's a boolean value--true or false */
476       tmp = feat->v_int; /* detect changes... */
477
478       if (count < 2) { /* reset value */
479         feat->v_int = feat->def_int;
480         feat->flags &= ~FEAT_MARK;
481       } else { /* figure out the value and whether to mark it */
482         if (!ircd_strncmp(fields[1], "TRUE", strlen(fields[1])) ||
483             !ircd_strncmp(fields[1], "YES", strlen(fields[1])) ||
484             (strlen(fields[1]) >= 2 &&
485              !ircd_strncmp(fields[1], "ON", strlen(fields[1]))))
486           feat->v_int = 1;
487         else if (!ircd_strncmp(fields[1], "FALSE", strlen(fields[1])) ||
488                  !ircd_strncmp(fields[1], "NO", strlen(fields[1])) ||
489                  (strlen(fields[1]) >= 2 &&
490                   !ircd_strncmp(fields[1], "OFF", strlen(fields[1]))))
491           feat->v_int = 0;
492         else if (from) /* report an error... */
493           return send_reply(from, ERR_BADFEATVALUE, fields[1], feat->type);
494         else {
495           log_write(LS_CONFIG, L_ERROR, 0, "Bad value \"%s\" for feature %s",
496                     fields[1], feat->type);
497           return 0;
498         }
499
500         if (feat->v_int == feat->def_int) /* figure out whether to mark it */
501           feat->flags &= ~FEAT_MARK;
502         else
503           feat->flags |= FEAT_MARK;
504       }
505
506       if (feat->v_int != tmp) /* check for change */
507         change++;
508       break;
509
510     case FEAT_STR: /* it's a string value */
511       if (count < 2)
512         t_str = feat->def_str; /* changing to default */
513       else
514         t_str = *fields[1] ? fields[1] : 0;
515
516       if (!t_str && !(feat->flags & FEAT_NULL)) { /* NULL value permitted? */
517         if (from)
518           return send_reply(from, ERR_BADFEATVALUE, "NULL", feat->type);
519         else {
520           log_write(LS_CONFIG, L_ERROR, 0, "Bad value \"NULL\" for feature %s",
521                     feat->type);
522           return 0;
523         }
524       }
525
526       if (t_str == feat->def_str ||
527           (t_str && feat->def_str &&
528            !(feat->flags & FEAT_CASE ? strcmp(t_str, feat->def_str) :
529              ircd_strcmp(t_str, feat->def_str)))) { /* resetting to default */
530         if (feat->v_str != feat->def_str) {
531           change++; /* change from previous value */
532
533           if (feat->v_str)
534             MyFree(feat->v_str); /* free old value */
535         }
536
537         feat->v_str = feat->def_str; /* very special... */
538
539         feat->flags &= ~FEAT_MARK;
540       } else if (!t_str) {
541         if (feat->v_str) {
542           change++; /* change from previous value */
543
544           if (feat->v_str != feat->def_str)
545             MyFree(feat->v_str); /* free old value */
546         }
547
548         feat->v_str = 0; /* set it to NULL */
549
550         feat->flags |= FEAT_MARK;
551       } else if (!feat->v_str ||
552                  (feat->flags & FEAT_CASE ? strcmp(t_str, feat->v_str) :
553                   ircd_strcmp(t_str, feat->v_str))) { /* new value */
554         change++; /* change from previous value */
555
556         if (feat->v_str && feat->v_str != feat->def_str)
557           MyFree(feat->v_str); /* free old value */
558         DupString(feat->v_str, t_str); /* store new value */
559
560         feat->flags |= FEAT_MARK;
561       } else /* they match, but don't match the default */
562         feat->flags |= FEAT_MARK;
563       break;
564     }
565
566     if (change && feat->notify) /* call change notify function */
567       (*feat->notify)();
568   }
569
570   return 0;
571 }
572
573 /* reset a feature to its default values */
574 int
575 feature_reset(struct Client* from, const char* const* fields, int count)
576 {
577   int i, change = 0;
578   struct FeatureDesc *feat;
579
580   assert(0 != from);
581
582   if (!HasPriv(from, PRIV_SET))
583     return send_reply(from, ERR_NOPRIVILEGES);
584
585   if (count < 1) /* check arguments */
586     need_more_params(from, "RESET");
587   else if ((feat = feature_desc(from, fields[0]))) { /* get descriptor */
588     if (from && feat->flags & FEAT_READ)
589       return send_reply(from, ERR_NOFEATURE, fields[0]);
590
591     switch (feat->flags & FEAT_MASK) {
592     case FEAT_NONE: /* None... */
593       if (feat->reset && (i = (*feat->reset)(from, fields + 1, count - 1))) {
594         change++; /* feature handler wants a change recorded */
595
596         if (i > 0) /* call reset callback and parse mark return */
597           feat->flags |= FEAT_MARK;
598         else /* i < 0 */
599           feat->flags &= ~FEAT_MARK;
600       }
601       break;
602
603     case FEAT_INT:  /* Integer... */
604     case FEAT_BOOL: /* Boolean... */
605       if (feat->v_int != feat->def_int)
606         change++; /* change will be made */
607
608       feat->v_int = feat->def_int; /* set the default */
609       feat->flags &= ~FEAT_MARK; /* unmark it */
610       break;
611
612     case FEAT_STR: /* string! */
613       if (feat->v_str != feat->def_str) {
614         change++; /* change has been made */
615         if (feat->v_str)
616           MyFree(feat->v_str); /* free old value */
617       }
618
619       feat->v_str = feat->def_str; /* set it to default */
620       feat->flags &= ~FEAT_MARK; /* unmark it */
621       break;
622     }
623
624     if (change && feat->notify) /* call change notify function */
625       (*feat->notify)();
626   }
627
628   return 0;
629 }
630
631 /* Gets the value of a specific feature and reports it to the user */
632 int
633 feature_get(struct Client* from, const char* const* fields, int count)
634 {
635   struct FeatureDesc *feat;
636
637   assert(0 != from);
638
639   if (count < 1) /* check parameters */
640     need_more_params(from, "GET");
641   else if ((feat = feature_desc(from, fields[0]))) {
642     if ((feat->flags & FEAT_NODISP) ||
643         (feat->flags & FEAT_MYOPER && !MyOper(from)) ||
644         (feat->flags & FEAT_OPER && !IsAnOper(from))) /* check privs */
645       return send_reply(from, ERR_NOPRIVILEGES);
646
647     switch (feat->flags & FEAT_MASK) {
648     case FEAT_NONE: /* none, call the callback... */
649       if (feat->get) /* if there's a callback, use it */
650         (*feat->get)(from, fields + 1, count - 1);
651       break;
652
653     case FEAT_INT: /* integer, report integer value */
654       send_reply(from, SND_EXPLICIT | RPL_FEATURE,
655                  ":Integer value of %s: %d", feat->type, feat->v_int);
656       break;
657
658     case FEAT_BOOL: /* boolean, report boolean value */
659       send_reply(from, SND_EXPLICIT | RPL_FEATURE,
660                  ":Boolean value of %s: %s", feat->type,
661                  feat->v_int ? "TRUE" : "FALSE");
662       break;
663
664     case FEAT_STR: /* string, report string value */
665       if (feat->v_str) /* deal with null case */
666         send_reply(from, SND_EXPLICIT | RPL_FEATURE,
667                    ":String value of %s: %s", feat->type, feat->v_str);
668       else
669         send_reply(from, SND_EXPLICIT | RPL_FEATURE,
670                    ":String value for %s not set", feat->type);
671       break;
672     }
673   }
674
675   return 0;
676 }
677
678 /* called before reading the .conf to clear all marks */
679 void
680 feature_unmark(void)
681 {
682   int i;
683
684   for (i = 0; features[i].type; i++) {
685     features[i].flags &= ~FEAT_MARK; /* clear the marks... */
686     if (features[i].unmark) /* call the unmark callback if necessary */
687       (*features[i].unmark)();
688   }
689 }
690
691 /* Called after reading the .conf to reset unmodified values to defaults */
692 void
693 feature_mark(void)
694 {
695   int i, change;
696
697   for (i = 0; features[i].type; i++) {
698     change = 0;
699
700     switch (features[i].flags & FEAT_MASK) {
701     case FEAT_NONE:
702       if (features[i].mark &&
703           (*features[i].mark)(features[i].flags & FEAT_MARK ? 1 : 0))
704         change++; /* feature handler wants a change recorded */
705       break;
706
707     case FEAT_INT:  /* Integers or Booleans... */
708     case FEAT_BOOL:
709       if (!(features[i].flags & FEAT_MARK)) { /* not changed? */
710         if (features[i].v_int != features[i].def_int)
711           change++; /* we're making a change */
712         features[i].v_int = features[i].def_int;
713       }
714       break;
715
716     case FEAT_STR: /* strings... */
717       if (!(features[i].flags & FEAT_MARK)) { /* not changed? */
718         if (features[i].v_str != features[i].def_str) {
719           change++; /* we're making a change */
720           if (features[i].v_str)
721             MyFree(features[i].v_str); /* free old value */
722         }
723         features[i].v_str = features[i].def_str;
724       }
725       break;
726     }
727
728     if (change && features[i].notify)
729       (*features[i].notify)(); /* call change notify function */
730   }
731 }
732
733 /* used to initialize the features subsystem */
734 void
735 feature_init(void)
736 {
737   int i;
738
739   for (i = 0; features[i].type; i++) {
740     switch (features[i].flags & FEAT_MASK) {
741     case FEAT_NONE: /* you're on your own */
742       break;
743
744     case FEAT_INT:  /* Integers or Booleans... */
745     case FEAT_BOOL:
746       features[i].v_int = features[i].def_int;
747       break;
748
749     case FEAT_STR:  /* Strings */
750       features[i].v_str = features[i].def_str;
751       assert(features[i].def_str || (features[i].flags & FEAT_NULL));
752       break;
753     }
754   }
755 }
756
757 /* report all F-lines */
758 void
759 feature_report(struct Client* to, struct StatDesc* sd, int stat, char* param)
760 {
761   int i;
762
763   for (i = 0; features[i].type; i++) {
764     if ((features[i].flags & FEAT_NODISP) ||
765         (features[i].flags & FEAT_MYOPER && !MyOper(to)) ||
766         (features[i].flags & FEAT_OPER && !IsAnOper(to)))
767       continue; /* skip this one */
768
769     switch (features[i].flags & FEAT_MASK) {
770     case FEAT_NONE:
771       if (features[i].report) /* let the callback handle this */
772         (*features[i].report)(to, features[i].flags & FEAT_MARK ? 1 : 0);
773       break;
774
775
776     case FEAT_INT: /* Report an F-line with integer values */
777       if (features[i].flags & FEAT_MARK) /* it's been changed */
778         send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %d",
779                    features[i].type, features[i].v_int);
780       break;
781
782     case FEAT_BOOL: /* Report an F-line with boolean values */
783       if (features[i].flags & FEAT_MARK) /* it's been changed */
784         send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %s",
785                    features[i].type, features[i].v_int ? "TRUE" : "FALSE");
786       break;
787
788     case FEAT_STR: /* Report an F-line with string values */
789       if (features[i].flags & FEAT_MARK) { /* it's been changed */
790         if (features[i].v_str)
791           send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s %s",
792                      features[i].type, features[i].v_str);
793         else /* Actually, F:<type> would reset it; you want F:<type>: */
794           send_reply(to, SND_EXPLICIT | RPL_STATSFLINE, "F %s",
795                      features[i].type);
796       }
797       break;
798     }
799   }
800 }
801
802 /* return a feature's integer value */
803 int
804 feature_int(enum Feature feat)
805 {
806   assert(features[feat].feat == feat);
807   assert((features[feat].flags & FEAT_MASK) == FEAT_INT);
808
809   return features[feat].v_int;
810 }
811
812 /* return a feature's boolean value */
813 int
814 feature_bool(enum Feature feat)
815 {
816   assert(feat <= FEAT_LAST_F);
817   if (FEAT_LAST_F < feat)
818     return 0;
819   assert(features[feat].feat == feat);
820   assert((features[feat].flags & FEAT_MASK) == FEAT_BOOL);
821
822   return features[feat].v_int;
823 }
824
825 /* return a feature's string value */
826 const char *
827 feature_str(enum Feature feat)
828 {
829   assert(features[feat].feat == feat);
830   assert((features[feat].flags & FEAT_MASK) == FEAT_STR);
831
832   return features[feat].v_str;
833 }