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