fixed some syntax errors & tidied up code a little bit
[srvx.git] / src / mod-watchdog.c
1 /* mod-watchdog.c - Watchdog module for srvx
2  * Copyright 2003-2004 Martijn Smit and srvx Development Team
3  *
4  * This file is part of srvx.
5  *
6  * srvx is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with srvx; if not, write to the Free Software Foundation,
18  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
19  */
20
21 /* Adds new section to srvx.conf:
22  * "modules" {
23  *     "watchdog" {
24  *         "nick" "Watchdog";
25  *         "modes" "+iok";
26            "ban_duration" "2h"; //only if the channel is registered with chanserv
27            "gline_duration" "1h";
28            "punishment_reason" "Your message contained a forbidden word.";
29  *     };
30  *  };
31  *
32  */
33
34 #include "chanserv.h"
35 #include "opserv.h"
36 #include "conf.h"
37 #include "modcmd.h"
38 #include "saxdb.h"
39 #include "timeq.h"
40 #include "gline.h"
41
42 #define KEY_BADWORDS "badwords"
43 #define KEY_BADWORD_MASK "mask"
44 #define KEY_BADWORD_TRIGGERED "count"
45 #define KEY_BADWORD_ACTION "action"
46 #define KEY_CHANNELS "channel"
47 #define KEY_BADWORDID "badwordid"
48
49 static const struct message_entry msgtab[] = {
50     { "WDMSG_REGISTER_SUCCESS", "$b%s$b is now registered with %s." },
51     { "WDMSG_NOT_REGISTERED", "$b%s$b is not registered with %s." },
52     { "WDMSG_ALREADY_ADDED", "$b%s$b is already added. (ID: %s)" },
53     { "WDMSG_BADWORD_ADDED", "added '$b%s$b' to the badword list with ID %s." },
54     { "WDMSG_BADWORD_NOT_FOUND", "badword with ID %s does not exist." },
55     { "WDMSG_BADWORD_REMOVED", "badword ID $b%s$b has been removed (mask: '%s')" },
56     { "WDMSG_BADWORD_SET_DONE", "Done." },
57     { "WDMSG_BADWORD_SET_INVALID", "Invalid Option for setting %s" },
58     { "OSMSG_BADWORD_SETTING_INVALID", "unknown setting $b%s$b." },
59     { "WDMSG_BADWORD_SET", "Settings for BadWord entry $b%s$b" },
60     { "WDMSG_BADWORD_SET_MASK",   "$bMASK$b:   %s" },
61     { "WDMSG_BADWORD_SET_ACTION", "$bACTION$b: %s" },
62     { NULL, NULL }
63 };
64
65 struct badword {
66     char *id;
67     char *badword_mask;
68     unsigned int triggered : 29;
69     unsigned int action : 3;
70 };
71
72 struct watchdog_channel {
73     struct chanNode *channel;
74     //struct shitList *shitlist;
75 };
76
77 /* badword.action fields */
78 #define BADACTION_KICK   0
79 #define BADACTION_BAN    1
80 #define BADACTION_KILL   2
81 #define BADACTION_GLINE  3
82
83 static struct {
84     const char *nick;
85     const char *modes;
86     const char *punishment_reason;
87     unsigned long ban_duration;
88     unsigned long gline_duration;
89 } watchdog_conf;
90
91 const char *watchdog_module_deps[] = { NULL };
92 struct userNode *watchdog;
93 static struct module *watchdog_module;
94 static struct service *watchdog_service;
95 static dict_t shitlist;
96 static dict_t chanlist;
97 static struct log_type *MS_LOG;
98 static unsigned int last_badword_id = 0;
99
100 static struct watchdog_channel *add_channel(const char *name);
101 static struct badword *add_badword(const char *badword_mask, unsigned int triggered, unsigned int action, const char *id);
102 #define watchdog_notice(target, format...) send_message(target , watchdog , ## format)
103
104 static MODCMD_FUNC(cmd_addbad)
105 {
106     dict_iterator_t it;
107     char *mask = unsplit_string(argv + 1, argc - 1, NULL);
108     for (it = dict_first(shitlist); it; it = iter_next(it)) {
109         struct badword *badword = iter_data(it);
110         if(match_ircglob(mask,badword->badword_mask)) {
111             reply("WDMSG_ALREADY_ADDED", mask, badword->id);
112             return 1;
113         }
114     }
115
116     struct badword *new_badword = add_badword(mask, 0, BADACTION_KICK, NULL);
117     for (it = dict_first(shitlist); it; it = iter_next(it)) {
118         struct badword *badword = iter_data(it);
119         if(match_ircglob(badword->badword_mask, new_badword->badword_mask) && badword != new_badword) {
120             dict_remove(shitlist, badword->id);
121         }
122     }
123
124     reply("WDMSG_BADWORD_ADDED", new_badword->badword_mask, new_badword->id);
125     return 1;
126 }
127
128 static MODCMD_FUNC(cmd_delbad)
129 {
130     unsigned int n;
131
132     for (n=1; n<argc; n++) {
133         struct badword *badword = dict_find(shitlist, argv[n], NULL);
134         if (!badword) {
135             reply("WDMSG_BADWORD_NOT_FOUND", argv[n]);
136             continue;
137         }
138         reply("WDMSG_BADWORD_REMOVED", argv[n], badword->badword_mask);
139         dict_remove(shitlist, argv[n]);
140     }
141     return 1;
142 }
143
144 static MODCMD_FUNC(cmd_setbad)
145 {
146     struct badword *badword;
147     if ((badword = dict_find(shitlist, argv[1], NULL))) {
148         if (argc > 3) {
149             unsigned int ii;
150             char *setting = argv[2];
151             char *value = argv[3];
152             for( ii = 0; setting[ ii ]; ii++)
153                 setting[ ii ] = toupper( setting[ ii ] );
154             for( ii = 0; value[ ii ]; ii++)
155                 value[ ii ] = toupper( value[ ii ] );
156             if(!strcmp("MASK",setting)) {
157                   free(badword->badword_mask);
158                   badword->badword_mask = strdup(argv[3]);
159                   badword->triggered = 0;
160                   reply("WDMSG_BADWORD_SET_DONE");
161             }
162             else if(!strcmp("ACTION",setting)) {
163                  if (!strcmp("1",value) || !strcmp("KICK",value)) {
164                     badword->action = BADACTION_KICK;
165                     reply("WDMSG_BADWORD_SET_DONE");
166                  } else if (!strcmp("2",value) || !strcmp("BAN",value)) {
167                     badword->action = BADACTION_BAN;
168                     reply("WDMSG_BADWORD_SET_DONE");
169                  } else if (!strcmp("3",value) || !strcmp("KILL",value)) {
170                     badword->action = BADACTION_KILL;
171                     reply("WDMSG_BADWORD_SET_DONE");
172                  } else if (!strcmp("4",value) || !strcmp("GLINE",value)) {
173                     badword->action = BADACTION_GLINE;
174                     reply("WDMSG_BADWORD_SET_DONE");
175                  } else {
176                     reply("WDMSG_BADWORD_SET_INVALID", setting);
177                  }
178             } else {
179                  reply("WDMSG_BADWORD_SETTING_INVALID", setting);
180             }
181             
182         } else {
183             reply("WDMSG_BADWORD_SET", badword->id);
184             reply("WDMSG_BADWORD_SET_MASK", badword->badword_mask);
185             switch(badword->action) {
186                 case BADACTION_KICK:
187                   reply("WDMSG_BADWORD_SET_ACTION", "KICK");
188                   break;
189                 case BADACTION_BAN:
190                   reply("WDMSG_BADWORD_SET_ACTION", "BAN");
191                   break;
192                 case BADACTION_KILL:
193                   reply("WDMSG_BADWORD_SET_ACTION", "KILL");
194                   break;
195                 case BADACTION_GLINE:
196                   reply("WDMSG_BADWORD_SET_ACTION", "GLINE");
197                   break;
198                 default:
199                   reply("WDMSG_BADWORD_SET_ACTION", "*undef*");
200             }
201         }
202     } else {
203         reply("WDMSG_BADWORD_NOT_FOUND", argv[1]);
204         return 0;
205     }
206     return 1;
207 }
208
209 int
210 badwords_sort(const void *pa, const void *pb)
211 {
212         struct badword *a = *(struct badword**)pa;
213         struct badword *b = *(struct badword**)pb;
214
215         return strtoul(a->id, NULL, 0) - strtoul(b->id, NULL, 0);
216 }
217
218 static MODCMD_FUNC(cmd_listbad)
219 {
220     struct helpfile_table tbl;
221     unsigned int count = 0, ii = 0;
222     struct badword **badwords;
223     
224     dict_iterator_t it;
225     for (it = dict_first(shitlist); it; it = iter_next(it)) {
226         count++;
227     }
228     tbl.length = count+1;
229     tbl.width = 4;
230     tbl.flags = 0;
231     tbl.flags = TABLE_NO_FREE;
232     tbl.contents = malloc(tbl.length * sizeof(tbl.contents[0]));
233     tbl.contents[0] = malloc(tbl.width * sizeof(tbl.contents[0][0]));
234     tbl.contents[0][0] = "#";
235     tbl.contents[0][1] = "Badword";
236     tbl.contents[0][2] = "Action";
237     tbl.contents[0][3] = "(Triggered)";
238     if(!count)
239     {
240         table_send(cmd->parent->bot, user->nick, 0, NULL, tbl);
241         reply("MSG_NONE");
242         free(tbl.contents[0]);
243         free(tbl.contents);
244         return 0;
245     }
246     badwords = alloca(count * sizeof(badwords[0]));
247     for (it = dict_first(shitlist); it; it = iter_next(it)) {
248         struct badword *bw = iter_data(it);
249         badwords[ii++] = bw;
250     }
251     qsort(badwords, count, sizeof(badwords[0]), badwords_sort);
252     for (ii = 1; ii <= count; ii++) {
253         struct badword *bw = badwords[ii-1];
254         tbl.contents[ii] = malloc(tbl.width * sizeof(tbl.contents[0][0]));
255         tbl.contents[ii][0] = strdup(bw->id);
256         tbl.contents[ii][1] = strdup(bw->badword_mask);
257         switch(bw->action) {
258             case BADACTION_KICK:
259               tbl.contents[ii][2] = "KICK";
260               break;
261             case BADACTION_BAN:
262               tbl.contents[ii][2] = "BAN";
263               break;
264             case BADACTION_KILL:
265               tbl.contents[ii][2] = "KILL";
266               break;
267             case BADACTION_GLINE:
268               tbl.contents[ii][2] = "GLINE";
269               break;
270             default:
271               tbl.contents[ii][2] = "*undef*";
272         }
273         tbl.contents[ii][3] = strtab(bw->triggered);
274     }
275     table_send(cmd->parent->bot, user->nick, 0, NULL, tbl);
276     for(ii = 1; ii < tbl.length; ++ii)
277     {
278         free(tbl.contents[ii]);
279     }
280     free(tbl.contents[0]);
281     free(tbl.contents);
282     return 1;
283 }
284
285 static MODCMD_FUNC(cmd_register)
286 {
287     dict_iterator_t it;
288
289     if((argc < 2) || !IsChannelName(argv[1]))
290     {
291         reply("MSG_NOT_CHANNEL_NAME");
292         return 0;
293     }
294
295     if(opserv_bad_channel(argv[1]))
296     {
297         reply("CSMSG_ILLEGAL_CHANNEL", argv[1]);
298         return 0;
299     }
300
301     channel = AddChannel(argv[1], now, NULL, NULL);
302
303     for (it = dict_first(chanlist); it; it = iter_next(it)) {
304         struct watchdog_channel *chan = iter_data(it);
305         if(chan->channel == channel) {
306             reply("CSMSG_ALREADY_REGGED", channel->name);
307             return 0;
308         }
309     }
310
311     add_channel(channel->name);
312     reply("WDMSG_REGISTER_SUCCESS", channel->name, watchdog->nick);
313     return 1;
314 }
315
316 static MODCMD_FUNC(cmd_unregister)
317 {
318     struct watchdog_channel *chan = NULL;
319     dict_iterator_t it;
320     
321     for (it = dict_first(chanlist); it; it = iter_next(it)) {
322         chan = iter_data(it);
323         if(chan->channel == channel)
324             break;
325     }
326     
327     if(chan && chan->channel == channel) {
328         //found, unregister it!
329         DelChannelUser(watchdog, channel, "unregistered.", 0);
330         dict_remove(chanlist, channel->name);
331         reply("CSMSG_UNREG_SUCCESS", channel->name);
332         return 1;
333     } else {
334         reply("WDMSG_NOT_REGISTERED", channel->name, watchdog->nick);
335         return 0;
336     }
337
338 }
339
340 static void
341 watchdog_detected_badword(struct userNode *user, struct chanNode *chan, struct badword *badword) 
342 {
343     char *hostmask;
344     char *reason = watchdog_conf.punishment_reason;
345     char mask[IRC_NTOP_MAX_SIZE+3] = { '*', '@', '\0' };
346     switch(badword->action) {
347         case BADACTION_BAN:
348             hostmask = generate_hostmask(user, GENMASK_STRICT_HOST | GENMASK_ANY_IDENT);
349             sanitize_ircmask(hostmask);
350             if(chan->channel_info) {
351                 //registered channel
352                 add_channel_ban(chan->channel_info, hostmask, watchdog->nick, now, now, now + watchdog_conf.ban_duration, reason);
353             }
354             struct mod_chanmode change;
355             mod_chanmode_init(&change);
356             change.argc = 1;
357             change.args[0].mode = MODE_BAN;
358             change.args[0].u.hostmask = hostmask;
359             mod_chanmode_announce(watchdog, chan, &change);
360             free(hostmask);
361             
362         case BADACTION_KICK:
363             KickChannelUser(user, chan, watchdog, reason);      
364             break;
365         case BADACTION_KILL:
366             DelUser(user, watchdog, 1, reason);
367             break;
368         case BADACTION_GLINE:
369             irc_ntop(mask + 2, sizeof(mask) - 2, &user->ip);
370             gline_add(watchdog->nick, mask, watchdog_conf.gline_duration, reason, now, now, 0, 1);
371             break;
372         default:
373             //error?
374             break;
375         }
376 }
377
378 static void
379 watchdog_channel_message(struct userNode *user, struct chanNode *chan, const char *text, UNUSED_ARG(struct userNode *bot), UNUSED_ARG(unsigned int is_notice))
380 {
381     dict_iterator_t it;
382
383     if(!watchdog)
384         return;
385
386     for (it = dict_first(shitlist); it; it = iter_next(it)) {
387         struct badword *badword = iter_data(it);
388         if(match_ircglob(text, badword->badword_mask)) {
389             watchdog_detected_badword(user, chan, badword);
390         }
391     }
392 }
393
394 static struct badword*
395 add_badword(const char *badword_mask, unsigned int triggered, unsigned int action, const char *id)
396 {
397     struct badword *badword;
398
399     badword = calloc(1, sizeof(*badword));
400     if (!badword)
401         return NULL;
402
403     if(!id) {
404         last_badword_id++;
405         badword->id = strtab(last_badword_id);
406     } else
407         badword->id = strdup(id);
408     badword->badword_mask = strdup(badword_mask);
409     badword->triggered = triggered;
410     badword->action = action;
411     dict_insert(shitlist, badword->id, badword);
412     return badword;
413 }
414
415 static void
416 free_shitlist_entry(void *data)
417 {
418     struct badword *badword = data;
419     free(badword->id);
420     free(badword->badword_mask);
421     free(badword);
422 }
423
424 static struct watchdog_channel*
425 add_channel(const char *name)
426 {
427     struct watchdog_channel *wc;
428     struct mod_chanmode *change;
429
430     if(!watchdog) //module disabled
431         return NULL;
432
433     wc = calloc(1, sizeof(*wc));
434     if (!wc)
435         return NULL;
436
437     wc->channel = AddChannel(name, now, NULL, NULL);
438     change = mod_chanmode_alloc(1);
439     change->argc = 1;
440     change->args[0].mode = MODE_CHANOP;
441     change->args[0].u.member = AddChannelUser(watchdog, wc->channel);
442     mod_chanmode_announce(watchdog, wc->channel, change);
443         mod_chanmode_free(change);
444     dict_insert(chanlist, wc->channel->name, wc);
445     return wc;
446 }
447
448 static void
449 free_chanlist_entry(void *data)
450 {
451     struct watchdog_channel *wc = data;
452     
453     free(wc);
454 }
455
456 static void
457 watchdog_conf_read(void)
458 {
459     dict_t conf_node;
460     const char *str;
461
462     str = "modules/watchdog";
463     if (!(conf_node = conf_get_data(str, RECDB_OBJECT))) {
464         log_module(MS_LOG, LOG_ERROR, "config node `%s' is missing or has wrong type.", str);
465         return;
466     }
467
468     str = database_get_data(conf_node, "nick", RECDB_QSTRING);
469     if(watchdog_conf.nick && strcmp(watchdog_conf.nick, str)) {
470         //nick changed
471     }
472     watchdog_conf.nick = str;
473     
474     str = database_get_data(conf_node, "modes", RECDB_QSTRING);
475     watchdog_conf.modes = (str ? str : NULL);
476     
477     str = database_get_data(conf_node, "ban_duration", RECDB_QSTRING);
478         watchdog_conf.ban_duration = str ? ParseInterval(str) : ParseInterval("2h");
479     
480     str = database_get_data(conf_node, "gline_duration", RECDB_QSTRING);
481         watchdog_conf.gline_duration = str ? ParseInterval(str) : ParseInterval("1h");
482     
483     str = database_get_data(conf_node, "punishment_reason", RECDB_QSTRING);
484         watchdog_conf.punishment_reason = (str ? str : "Your message contained a forbidden word.");
485     
486 }
487
488 static int
489 watchdog_saxdb_read_shitlist(const char *name, void *data, UNUSED_ARG(void *extra))
490 {
491     struct record_data *rd = data;
492     char *badword;
493     char *triggered, *action;
494
495      if (rd->type == RECDB_OBJECT) {
496         dict_t obj = GET_RECORD_OBJECT(rd);
497         /* new style structure */
498         badword = database_get_data(obj, KEY_BADWORD_MASK, RECDB_QSTRING);
499         triggered = database_get_data(obj, KEY_BADWORD_TRIGGERED, RECDB_QSTRING);
500         action = database_get_data(obj, KEY_BADWORD_ACTION, RECDB_QSTRING);
501
502         add_badword(badword, strtoul(triggered, NULL, 0), strtoul(action, NULL, 0), name);
503     }
504     return 0;
505 }
506
507 static int
508 watchdog_saxdb_read_chanlist(const char *name, void *data, UNUSED_ARG(void *extra))
509 {
510     struct record_data *rd = data;
511
512      if (rd->type == RECDB_OBJECT) {
513         //dict_t obj = GET_RECORD_OBJECT(rd);
514         /* nothing in here, yet */
515
516         add_channel(name);
517     }
518     return 0;
519 }
520
521 static int
522 watchdog_saxdb_read(struct dict *db)
523 {
524     struct dict *object;
525     char *str;
526     str = database_get_data(db, KEY_BADWORDID, RECDB_QSTRING);
527     last_badword_id = str ? strtoul(str, NULL, 0) : 0;
528
529     if ((object = database_get_data(db, KEY_BADWORDS, RECDB_OBJECT)))
530         dict_foreach(object, watchdog_saxdb_read_shitlist, NULL);
531
532     if ((object = database_get_data(db, KEY_CHANNELS, RECDB_OBJECT)))
533         dict_foreach(object, watchdog_saxdb_read_chanlist, NULL);
534
535     return 1;
536 }
537
538 static int
539 watchdog_saxdb_write(struct saxdb_context *ctx)
540 {
541     dict_iterator_t it;
542
543     saxdb_write_int(ctx, KEY_BADWORDID, last_badword_id);
544
545     if (dict_size(shitlist)) {
546         saxdb_start_record(ctx, KEY_BADWORDS, 1);
547         for (it = dict_first(shitlist); it; it = iter_next(it)) {
548             struct badword *badword = iter_data(it);
549             saxdb_start_record(ctx, iter_key(it), 0);
550             
551             saxdb_write_string(ctx, KEY_BADWORD_MASK, badword->badword_mask);
552             saxdb_write_int(ctx, KEY_BADWORD_TRIGGERED, badword->triggered);
553             saxdb_write_int(ctx, KEY_BADWORD_ACTION, badword->action);
554             
555             saxdb_end_record(ctx);
556         }
557         saxdb_end_record(ctx);
558     }
559
560     if (dict_size(chanlist)) {
561         saxdb_start_record(ctx, KEY_CHANNELS, 1);
562         for (it = dict_first(chanlist); it; it = iter_next(it)) {
563             struct watchdog_channel *wc = iter_data(it);
564             saxdb_start_record(ctx, wc->channel->name, 0);
565             //anything else?
566             saxdb_end_record(ctx);
567         }
568         saxdb_end_record(ctx);
569     }
570     
571     return 0;
572 }
573
574 static void
575 watchdog_cleanup(void)
576 {
577     dict_delete(shitlist);
578     dict_delete(chanlist);
579 }
580
581 int
582 watchdog_init(void)
583 {
584     MS_LOG = log_register_type("Watchdog", "file:watchdog.log");
585     
586     /* set up shitlist dict */
587     dict_delete(shitlist);
588     shitlist = dict_new();
589     dict_set_free_data(shitlist, free_shitlist_entry);
590     /* set up chanlist dict */
591     dict_delete(chanlist);
592     chanlist = dict_new();
593     dict_set_free_data(chanlist, free_chanlist_entry);
594
595     const char *nick, *modes;
596     if((nick = conf_get_data("modules/watchdog/nick", RECDB_QSTRING))) {
597         modes = conf_get_data("modules/watchdog/modes", RECDB_QSTRING);
598         watchdog = AddLocalUser(nick, nick, NULL, "Watchdog Service", modes);
599         watchdog_service = service_register(watchdog);
600         watchdog_service->trigger = ',';
601         reg_allchanmsg_func(watchdog, watchdog_channel_message);
602     }
603
604     conf_register_reload(watchdog_conf_read);
605     reg_exit_func(watchdog_cleanup);
606     saxdb_register("Watchdog", watchdog_saxdb_read, watchdog_saxdb_write);
607
608     watchdog_module = module_register("Watchdog", MS_LOG, "mod-watchdog.help", NULL);
609     modcmd_register(watchdog_module, "addbad", cmd_addbad, 2, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL);
610     modcmd_register(watchdog_module, "delbad", cmd_delbad, 2, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL);
611     modcmd_register(watchdog_module, "setbad", cmd_setbad, 2, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL);
612     modcmd_register(watchdog_module, "listbad", cmd_listbad, 1, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL);
613     modcmd_register(watchdog_module, "register", cmd_register, 2, MODCMD_REQUIRE_AUTHED, "flags", "+helping", NULL);
614     modcmd_register(watchdog_module, "unregister", cmd_unregister, 1, MODCMD_REQUIRE_AUTHED | MODCMD_REQUIRE_CHANNEL, "flags", "+helping", NULL);
615     message_register_table(msgtab);
616
617     return 1;
618 }
619
620 int
621 watchdog_finalize(void) {
622     dict_t conf_node;
623     const char *str;
624
625     str = "modules/watchdog";
626     if (!(conf_node = conf_get_data(str, RECDB_OBJECT))) {
627         log_module(MS_LOG, LOG_ERROR, "config node `%s' is missing or has wrong type.", str);
628         return 0;
629     }
630
631     str = database_get_data(conf_node, "nick", RECDB_QSTRING);
632     if (str) watchdog_conf.nick = str;
633     
634     str = database_get_data(conf_node, "modes", RECDB_QSTRING);
635     if (str) watchdog_conf.modes = str;
636     
637     str = database_get_data(conf_node, "ban_duration", RECDB_QSTRING);
638         if (str) watchdog_conf.ban_duration = ParseInterval(str);
639     
640     str = database_get_data(conf_node, "gline_duration", RECDB_QSTRING);
641         if (str) watchdog_conf.gline_duration = ParseInterval(str);
642     
643     str = database_get_data(conf_node, "punishment_reason", RECDB_QSTRING);
644         if (str) watchdog_conf.punishment_reason = str;
645     
646     return 1;
647 }