added possibility to use register without channel parameter
[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     struct modeNode *mn;
289
290     if(channel)
291     {
292
293         if(channel->bad_channel)
294         {
295             reply("CSMSG_ILLEGAL_CHANNEL", channel->name);
296             return 0;
297         }
298
299         if(!IsHelping(user)
300            && (!(mn = GetUserMode(channel, user)) || !(mn->modes & MODE_CHANOP)))
301         {
302             reply("CSMSG_MUST_BE_OPPED", channel->name);
303             return 0;
304         }
305
306     }
307     else
308     {
309
310         if((argc < 2) || !IsChannelName(argv[1]))
311         {
312             reply("MSG_NOT_CHANNEL_NAME");
313             return 0;
314         }
315
316         if(opserv_bad_channel(argv[1]))
317         {
318             reply("CSMSG_ILLEGAL_CHANNEL", argv[1]);
319             return 0;
320         }
321
322         channel = AddChannel(argv[1], now, NULL, NULL);
323     }
324
325     for (it = dict_first(chanlist); it; it = iter_next(it)) {
326         struct watchdog_channel *chan = iter_data(it);
327         if(chan->channel == channel) {
328             reply("CSMSG_ALREADY_REGGED", channel->name);
329             return 0;
330         }
331     }
332
333     add_channel(channel->name);
334     reply("WDMSG_REGISTER_SUCCESS", channel->name, watchdog->nick);
335     return 1;
336 }
337
338 static MODCMD_FUNC(cmd_unregister)
339 {
340     struct watchdog_channel *chan = NULL;
341     dict_iterator_t it;
342     
343     for (it = dict_first(chanlist); it; it = iter_next(it)) {
344         chan = iter_data(it);
345         if(chan->channel == channel)
346             break;
347     }
348     
349     if(chan && chan->channel == channel) {
350         //found, unregister it!
351         DelChannelUser(watchdog, channel, "unregistered.", 0);
352         dict_remove(chanlist, channel->name);
353         reply("CSMSG_UNREG_SUCCESS", channel->name);
354         return 1;
355     } else {
356         reply("WDMSG_NOT_REGISTERED", channel->name, watchdog->nick);
357         return 0;
358     }
359
360 }
361
362 static void
363 watchdog_detected_badword(struct userNode *user, struct chanNode *chan, struct badword *badword) 
364 {
365     char *hostmask;
366     char *reason = watchdog_conf.punishment_reason;
367     char mask[IRC_NTOP_MAX_SIZE+3] = { '*', '@', '\0' };
368     switch(badword->action) {
369         case BADACTION_BAN:
370             hostmask = generate_hostmask(user, GENMASK_STRICT_HOST | GENMASK_ANY_IDENT);
371             sanitize_ircmask(hostmask);
372             if(chan->channel_info) {
373                 //registered channel
374                 add_channel_ban(chan->channel_info, hostmask, watchdog->nick, now, now, now + watchdog_conf.ban_duration, reason);
375             }
376             struct mod_chanmode change;
377             mod_chanmode_init(&change);
378             change.argc = 1;
379             change.args[0].mode = MODE_BAN;
380             change.args[0].u.hostmask = hostmask;
381             mod_chanmode_announce(watchdog, chan, &change);
382             free(hostmask);
383             
384         case BADACTION_KICK:
385             if(GetUserMode(chan, user))
386                 KickChannelUser(user, chan, watchdog, reason);  
387             break;
388         case BADACTION_KILL:
389             DelUser(user, watchdog, 1, reason);
390             break;
391         case BADACTION_GLINE:
392             irc_ntop(mask + 2, sizeof(mask) - 2, &user->ip);
393             gline_add(watchdog->nick, mask, watchdog_conf.gline_duration, reason, now, now, 0, 1);
394             break;
395         default:
396             //error?
397             break;
398         }
399 }
400
401 static void
402 watchdog_channel_message(struct userNode *user, struct chanNode *chan, const char *text, UNUSED_ARG(struct userNode *bot), UNUSED_ARG(unsigned int is_notice))
403 {
404     dict_iterator_t it;
405
406     if(!watchdog || !dict_find(chanlist, chan->name, NULL))
407         return;
408
409     for (it = dict_first(shitlist); it; it = iter_next(it)) {
410         struct badword *badword = iter_data(it);
411         if(match_ircglob(text, badword->badword_mask)) {
412             watchdog_detected_badword(user, chan, badword);
413         }
414     }
415 }
416
417 static struct badword*
418 add_badword(const char *badword_mask, unsigned int triggered, unsigned int action, const char *id)
419 {
420     struct badword *badword;
421
422     badword = calloc(1, sizeof(*badword));
423     if (!badword)
424         return NULL;
425
426     if(!id) {
427         last_badword_id++;
428         badword->id = strtab(last_badword_id);
429     } else
430         badword->id = strdup(id);
431     badword->badword_mask = strdup(badword_mask);
432     badword->triggered = triggered;
433     badword->action = action;
434     dict_insert(shitlist, badword->id, badword);
435     return badword;
436 }
437
438 static void
439 free_shitlist_entry(void *data)
440 {
441     struct badword *badword = data;
442     free(badword->id);
443     free(badword->badword_mask);
444     free(badword);
445 }
446
447 static struct watchdog_channel*
448 add_channel(const char *name)
449 {
450     struct watchdog_channel *wc;
451     struct mod_chanmode *change;
452
453     if(!watchdog) //module disabled
454         return NULL;
455
456     wc = calloc(1, sizeof(*wc));
457     if (!wc)
458         return NULL;
459
460     wc->channel = AddChannel(name, now, NULL, NULL);
461     change = mod_chanmode_alloc(1);
462     change->argc = 1;
463     change->args[0].mode = MODE_CHANOP;
464     change->args[0].u.member = AddChannelUser(watchdog, wc->channel);
465     mod_chanmode_announce(watchdog, wc->channel, change);
466         mod_chanmode_free(change);
467     dict_insert(chanlist, wc->channel->name, wc);
468     return wc;
469 }
470
471 static void
472 free_chanlist_entry(void *data)
473 {
474     struct watchdog_channel *wc = data;
475     
476     free(wc);
477 }
478
479 static void
480 watchdog_conf_read(void)
481 {
482     dict_t conf_node;
483     const char *str;
484
485     str = "modules/watchdog";
486     if (!(conf_node = conf_get_data(str, RECDB_OBJECT))) {
487         log_module(MS_LOG, LOG_ERROR, "config node `%s' is missing or has wrong type.", str);
488         return;
489     }
490
491     str = database_get_data(conf_node, "nick", RECDB_QSTRING);
492     if(watchdog_conf.nick && strcmp(watchdog_conf.nick, str)) {
493         //nick changed
494     }
495     watchdog_conf.nick = str;
496     
497     str = database_get_data(conf_node, "modes", RECDB_QSTRING);
498     watchdog_conf.modes = (str ? str : NULL);
499     
500     str = database_get_data(conf_node, "ban_duration", RECDB_QSTRING);
501         watchdog_conf.ban_duration = str ? ParseInterval(str) : ParseInterval("2h");
502     
503     str = database_get_data(conf_node, "gline_duration", RECDB_QSTRING);
504         watchdog_conf.gline_duration = str ? ParseInterval(str) : ParseInterval("1h");
505     
506     str = database_get_data(conf_node, "punishment_reason", RECDB_QSTRING);
507         watchdog_conf.punishment_reason = (str ? str : "Your message contained a forbidden word.");
508     
509 }
510
511 static int
512 watchdog_saxdb_read_shitlist(const char *name, void *data, UNUSED_ARG(void *extra))
513 {
514     struct record_data *rd = data;
515     char *badword;
516     char *triggered, *action;
517
518      if (rd->type == RECDB_OBJECT) {
519         dict_t obj = GET_RECORD_OBJECT(rd);
520         /* new style structure */
521         badword = database_get_data(obj, KEY_BADWORD_MASK, RECDB_QSTRING);
522         triggered = database_get_data(obj, KEY_BADWORD_TRIGGERED, RECDB_QSTRING);
523         action = database_get_data(obj, KEY_BADWORD_ACTION, RECDB_QSTRING);
524
525         add_badword(badword, strtoul(triggered, NULL, 0), strtoul(action, NULL, 0), name);
526     }
527     return 0;
528 }
529
530 static int
531 watchdog_saxdb_read_chanlist(const char *name, void *data, UNUSED_ARG(void *extra))
532 {
533     struct record_data *rd = data;
534
535      if (rd->type == RECDB_OBJECT) {
536         //dict_t obj = GET_RECORD_OBJECT(rd);
537         /* nothing in here, yet */
538
539         add_channel(name);
540     }
541     return 0;
542 }
543
544 static int
545 watchdog_saxdb_read(struct dict *db)
546 {
547     struct dict *object;
548     char *str;
549     str = database_get_data(db, KEY_BADWORDID, RECDB_QSTRING);
550     last_badword_id = str ? strtoul(str, NULL, 0) : 0;
551
552     if ((object = database_get_data(db, KEY_BADWORDS, RECDB_OBJECT)))
553         dict_foreach(object, watchdog_saxdb_read_shitlist, NULL);
554
555     if ((object = database_get_data(db, KEY_CHANNELS, RECDB_OBJECT)))
556         dict_foreach(object, watchdog_saxdb_read_chanlist, NULL);
557
558     return 1;
559 }
560
561 static int
562 watchdog_saxdb_write(struct saxdb_context *ctx)
563 {
564     dict_iterator_t it;
565
566     saxdb_write_int(ctx, KEY_BADWORDID, last_badword_id);
567
568     if (dict_size(shitlist)) {
569         saxdb_start_record(ctx, KEY_BADWORDS, 1);
570         for (it = dict_first(shitlist); it; it = iter_next(it)) {
571             struct badword *badword = iter_data(it);
572             if(badword && badword->badword_mask) {
573                 saxdb_start_record(ctx, iter_key(it), 0);
574                 
575                 saxdb_write_string(ctx, KEY_BADWORD_MASK, badword->badword_mask);
576                 saxdb_write_int(ctx, KEY_BADWORD_TRIGGERED, badword->triggered);
577                 saxdb_write_int(ctx, KEY_BADWORD_ACTION, badword->action);
578                 
579                 saxdb_end_record(ctx);
580             }
581         }
582         saxdb_end_record(ctx);
583     }
584
585     if (dict_size(chanlist)) {
586         saxdb_start_record(ctx, KEY_CHANNELS, 1);
587         for (it = dict_first(chanlist); it; it = iter_next(it)) {
588             struct watchdog_channel *wc = iter_data(it);
589             if(wc && wc->channel && wc->channel->name) {
590                 saxdb_start_record(ctx, wc->channel->name, 0);
591                 //anything else?
592                 saxdb_end_record(ctx);
593             }
594         }
595         saxdb_end_record(ctx);
596     }
597     
598     return 0;
599 }
600
601 static void
602 watchdog_cleanup(void)
603 {
604     dict_delete(shitlist);
605     dict_delete(chanlist);
606 }
607
608 int
609 watchdog_init(void)
610 {
611     MS_LOG = log_register_type("Watchdog", "file:watchdog.log");
612     
613     /* set up shitlist dict */
614     dict_delete(shitlist);
615     shitlist = dict_new();
616     dict_set_free_data(shitlist, free_shitlist_entry);
617     /* set up chanlist dict */
618     dict_delete(chanlist);
619     chanlist = dict_new();
620     dict_set_free_data(chanlist, free_chanlist_entry);
621
622     const char *nick, *modes;
623     if((nick = conf_get_data("modules/watchdog/nick", RECDB_QSTRING))) {
624         modes = conf_get_data("modules/watchdog/modes", RECDB_QSTRING);
625         watchdog = AddLocalUser(nick, nick, NULL, "Watchdog Service", modes);
626         watchdog_service = service_register(watchdog);
627         watchdog_service->trigger = ',';
628         reg_allchanmsg_func(watchdog, watchdog_channel_message);
629     }
630
631     conf_register_reload(watchdog_conf_read);
632     reg_exit_func(watchdog_cleanup);
633     saxdb_register("Watchdog", watchdog_saxdb_read, watchdog_saxdb_write);
634
635     watchdog_module = module_register("Watchdog", MS_LOG, "mod-watchdog.help", NULL);
636     modcmd_register(watchdog_module, "addbad", cmd_addbad, 2, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL);
637     modcmd_register(watchdog_module, "delbad", cmd_delbad, 2, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL);
638     modcmd_register(watchdog_module, "setbad", cmd_setbad, 2, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL);
639     modcmd_register(watchdog_module, "listbad", cmd_listbad, 1, MODCMD_REQUIRE_AUTHED, "flags", "+oper", NULL);
640     modcmd_register(watchdog_module, "register", cmd_register, 1, MODCMD_REQUIRE_AUTHED, "flags", "+acceptchan,+helping", NULL);
641     modcmd_register(watchdog_module, "unregister", cmd_unregister, 1, MODCMD_REQUIRE_AUTHED | MODCMD_REQUIRE_CHANNEL, "flags", "+helping", NULL);
642     message_register_table(msgtab);
643
644     return 1;
645 }
646
647 int
648 watchdog_finalize(void) {
649     dict_t conf_node;
650     const char *str;
651
652     str = "modules/watchdog";
653     if (!(conf_node = conf_get_data(str, RECDB_OBJECT))) {
654         log_module(MS_LOG, LOG_ERROR, "config node `%s' is missing or has wrong type.", str);
655         return 0;
656     }
657
658     str = database_get_data(conf_node, "nick", RECDB_QSTRING);
659     if (str) watchdog_conf.nick = str;
660     
661     str = database_get_data(conf_node, "modes", RECDB_QSTRING);
662     if (str) watchdog_conf.modes = str;
663     
664     str = database_get_data(conf_node, "ban_duration", RECDB_QSTRING);
665         if (str) watchdog_conf.ban_duration = ParseInterval(str);
666     
667     str = database_get_data(conf_node, "gline_duration", RECDB_QSTRING);
668         if (str) watchdog_conf.gline_duration = ParseInterval(str);
669     
670     str = database_get_data(conf_node, "punishment_reason", RECDB_QSTRING);
671         if (str) watchdog_conf.punishment_reason = str;
672     
673     return 1;
674 }