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