fixed NULL bug on modcmd.c cmd_stats_services
[srvx.git] / src / modcmd.c
1 /* modcmd.c - Generalized module command support
2  * Copyright 2002-2007 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 #include "chanserv.h"
22 #include "conf.h"
23 #include "modcmd.h"
24 #include "saxdb.h"
25
26 struct pending_template {
27     struct svccmd *cmd;
28     char *base;
29     struct pending_template *next;
30 };
31
32 static struct dict *modules;
33 static struct dict *services;
34 static struct pending_template *pending_templates;
35 static struct module *modcmd_module;
36 static struct modcmd *bind_command, *help_command, *version_command;
37 unsigned short offchannel_allowed[256] = { 0 };
38 static const struct message_entry msgtab[] = {
39     { "MCMSG_BARE_FLAG", "Flag %.*s must be preceded by a + or -." },
40     { "MCMSG_UNKNOWN_FLAG", "Unknown module flag %.*s." },
41     { "MCMSG_BAD_OPSERV_LEVEL", "Invalid $O access level %s." },
42     { "MCMSG_BAD_CHANSERV_LEVEL", "Invalid $C access level %s." },
43     { "MCMSG_LEVEL_TOO_LOW", "You cannot set the access requirements for %s (your level is too low.)" },
44     { "MCMSG_LEVEL_TOO_HIGH", "You cannot set the access requirements to %s (that is too high)." },
45     { "MCMSG_BAD_OPTION", "Unknown option %s." },
46     { "MCMSG_MUST_QUALIFY", "You $bMUST$b \"/msg %s@$s %s\" (not just /msg %s)." },
47     { "MCMSG_ACCOUNT_SUSPENDED", "Your account has been suspended." },
48     { "MCMSG_CHAN_NOT_REGISTERED", "%s has not been registered with $C." },
49     { "MCMSG_CHAN_SUSPENDED", "$b$C$b access to $b%s$b has been temporarily suspended (%s)." },
50     { "MCMSG_NO_CHANNEL_ACCESS", "You lack access to %s." },
51     { "MCMSG_LOW_CHANNEL_ACCESS", "You lack sufficient access in %s to use this command." },
52     { "MCMSG_REQUIRES_JOINABLE", "You must be in %s (or on its userlist) to use this command." },
53     { "MCMSG_MUST_BE_HELPING", "You must have security override (helping mode) on to use this command." },
54     { "MCMSG_MISSING_COMMAND", "You must specify a command as well as a channel." },
55     { "MCMSG_NO_CHANNEL_BEFORE", "You may not give a channel name before this command." },
56     { "MCMSG_NO_PLUS_CHANNEL", "You may not use a +channel with this command." },
57     { "MCMSG_COMMAND_ALIASES", "%s is an alias for: %s" },
58     { "MCMSG_COMMAND_BINDING", "%s is a binding of: %s" },
59     { "MCMSG_ALIAS_ERROR", "Error in alias expansion for %s; check the error log for details." },
60     { "MCMSG_INTERNAL_COMMAND", "$b%s$b is an internal command and cannot be called directly; please check command bindings." },
61     { "MCMSG_UNKNOWN_MODULE", "Unknown module %s." },
62     { "MCMSG_UNKNOWN_SERVICE", "Unknown service %s." },
63     { "MCMSG_ALREADY_BOUND", "%s already has a command bound as %s." },
64     { "MCMSG_UNKNOWN_COMMAND_2", "Unknown command name %s (relative to service %s)." },
65     { "MCMSG_COMMAND_MODIFIED", "Option $b%s$b for $b%s$b has been set." },
66     { "MCMSG_INSPECTION_REFUSED", "You do not have access to inspect command %s." },
67     { "MCMSG_CANNOT_DOUBLE_ALIAS", "You cannot bind to a complex (argument-carrying) bind." },
68     { "MCMSG_BAD_ALIAS_ARGUMENT", "Invalid alias argument $b%s$b." },
69     { "MCMSG_COMMAND_BOUND", "New command %s bound to %s." },
70     { "MCMSG_MODULE_BOUND", "Bound %d commands from %s to %s." },
71     { "MCMSG_NO_COMMAND_BOUND", "%s has nothing bound as command %s." },
72     { "MCMSG_UNBIND_PROHIBITED", "It wouldn't be very much fun to unbind the last %s command, now would it?" },
73     { "MCMSG_COMMAND_UNBOUND", "Unbound command %s from %s." },
74     { "MCMSG_HELPFILE_UNBOUND", "Since that was the last command from module %s on the service, the helpfile for %s was removed." },
75     { "MCMSG_NO_HELPFILE", "Module %s does not have a help file." },
76     { "MCMSG_HELPFILE_ERROR", "Syntax error reading %s; help contents not changed." },
77     { "MCMSG_HELPFILE_READ", "Read %s help database in %lu.%03lu seconds." },
78     { "MCMSG_COMMAND_TIME", "Command $b%s$b finished in %lu.%06lu seconds." },
79     { "MCMSG_NEED_OPSERV_LEVEL", "You must have $O access of at least $b%u$b." },
80     { "MCMSG_NEED_CHANSERV_LEVEL", "You must have $C access of at least $b%u$b in the channel." },
81     { "MCMSG_NEED_ACCOUNT_FLAGS", "You must have account flags $b%s$b." },
82     { "MCMSG_NEED_NOTHING", "Anyone may use the $b%s$b command." },
83     { "MCMSG_NEED_STAFF_ACCESS", "You must be network staff." },
84     { "MCMSG_NEED_STAFF_OPER", "You must be an IRC operator." },
85     { "MCMSG_NEED_STAFF_NETHELPER", "You must be a network helper." },
86     { "MCMSG_NEED_STAFF_NETHELPER_OR_OPER", "You must be a network helper or IRC operator." },
87     { "MCMSG_NEED_STAFF_SHELPER", "You must be a support helper." },
88     { "MCMSG_NEED_STAFF_SHELPER_OR_OPER", "You must be a support helper or IRC operator." },
89     { "MCMSG_NEED_STAFF_HELPER", "You must be a network or support helper." },
90     { "MCMSG_NEED_JOINABLE", "The channel must be open or you must be in the channel or on its userlist." },
91     { "MCMSG_NEED_CHANUSER_CSUSPENDABLE", "You must be on the channel's userlist, and the channel can be suspended." },
92     { "MCMSG_NEED_CHANUSER", "You must be on the channel's userlist." },
93     { "MCMSG_NEED_REGCHAN", "You must specify a channel registered with $C." },
94     { "MCMSG_NEED_CHANNEL", "You must specify a channel that exists." },
95     { "MCMSG_NEED_AUTHED", "You must be authenticated with $N." },
96     { "MCMSG_IS_TOY", "$b%s$b is a toy command." },
97     { "MCMSG_END_REQUIREMENTS", "End of requirements for $b%s$b." },
98     { "MCMSG_ALREADY_HELPING", "You already have security override enabled." },
99     { "MCMSG_ALREADY_NOT_HELPING", "You already have security override disabled." },
100     { "MCMSG_NOW_HELPING", "Security override has been enabled." },
101     { "MCMSG_NOW_NOT_HELPING", "Security override has been disabled." },
102     { "MCMSG_JOINER_CHOICES", "Subcommands of %s: %s" },
103     { "MCMSG_MODULE_INFO", "Commands exported by module $b%s$b:" },
104     { "MCMSG_SERVICE_INFO", "Commands bound to service $b%s$b:" },
105     { "MCMSG_TOYS_DISABLED", "Toys are disabled in %s." },
106     { "MCMSG_PUBLIC_DENY", "Public commands in $b%s$b are restricted." },
107     { "MCMSG_HELPFILE_SEQUENCE", "Help priority %d: %s" },
108     { "MCMSG_HELPFILE_SEQUENCE_SET", "Set helpfile priority sequence for %s." },
109     { "MCMSG_BAD_SERVICE_NICK", "$b%s$b is an invalid nickname." },
110     { "MCMSG_ALREADY_SERVICE", "$b%s$b is already a service." },
111     { "MCMSG_NEW_SERVICE", "Added new service bot $b%s$b." },
112     { "MCMSG_SERVICE_RENAMED", "Service renamed to $b%s$b." },
113     { "MCMSG_NO_TRIGGER", "$b%s$b does not have an in-channel trigger." },
114     { "MCMSG_REMOVED_TRIGGER", "Removed trigger from $b%s$b." },
115     { "MCMSG_DUPLICATE_TRIGGER", "$b%s$b already uses trigger $b%c$b." },
116     { "MCMSG_CURRENT_TRIGGER", "Trigger for $b%s$b is $b%c$b." },
117     { "MCMSG_NEW_TRIGGER", "Changed trigger for $b%s$b to $b%c$b." },
118     { "MCMSG_SERVICE_PRIVILEGED", "Service $b%s$b privileged: $b%s$b." },
119     { "MCMSG_OFFCHANNEL_IS_ON", "Off-channel use for $b%s$b (trigger $b%c$b) is enabled" },
120     { "MCMSG_OFFCHANNEL_IS_OFF", "Off-channel use for $b%s$b (trigger $b%c$b) is disabled" },
121     { "MCMSG_OFFCHANNEL_ON", "Enabled off-channel use for $b%s$b (trigger $b%c$b)" },
122     { "MCMSG_OFFCHANNEL_OFF", "Disabled off-channel use for $b%s$b (trigger $b%c$b)" },
123     { "MCMSG_SERVICE_REMOVED", "Service $b%s$b has been deleted." },
124     { "MCMSG_FILE_NOT_OPENED", "Unable to open file $b%s$b for writing." },
125     { "MCMSG_MESSAGES_DUMPED", "Messages written to $b%s$b." },
126     { "MCMSG_MESSAGE_DUMP_FAILED", "Message dump failed: %s." },
127     { "MCMSG_COMMAND_FLAGS", "Command flags are %s (inferred: %s)." },
128     { "MCMSG_COMMAND_ACCOUNT_FLAGS", "Requires account flags +%s, prohibits account flags +%s." },
129     { "MCMSG_COMMAND_ACCESS_LEVEL", "Requires channel access %d and $O access %d." },
130     { "MCMSG_COMMAND_USES", "%s has been used %d times." },
131     { NULL, NULL }
132 };
133 struct userData *_GetChannelUser(struct chanData *channel, struct handle_info *handle, int override, int allow_suspended);
134
135 #define ACTION_ALLOW     1
136 #define ACTION_OVERRIDE  2
137 #define ACTION_NOCHANNEL 4
138 #define ACTION_STAFF     8
139
140 #define RESOLVE_DEPTH    4
141
142 static struct modcmd_flag {
143     const char *name;
144     unsigned int flag;
145 } modcmd_flags[] = {
146     { "acceptchan", MODCMD_ACCEPT_CHANNEL },
147     { "acceptpluschan", MODCMD_ACCEPT_PCHANNEL },
148     { "authed", MODCMD_REQUIRE_AUTHED },
149     { "channel", MODCMD_REQUIRE_CHANNEL },
150     { "chanuser", MODCMD_REQUIRE_CHANUSER },
151     { "disabled", MODCMD_DISABLED },
152     { "helping", MODCMD_REQUIRE_HELPING },
153     { "ignore_csuspend", MODCMD_IGNORE_CSUSPEND },
154     { "joinable", MODCMD_REQUIRE_JOINABLE },
155     { "keepbound", MODCMD_KEEP_BOUND },
156     { "loghostmask", MODCMD_LOG_HOSTMASK },
157     { "networkhelper", MODCMD_REQUIRE_NETWORK_HELPER },
158     { "never_csuspend", MODCMD_NEVER_CSUSPEND },
159     { "nolog", MODCMD_NO_LOG },
160     { "oper", MODCMD_REQUIRE_OPER },
161     { "qualified", MODCMD_REQUIRE_QUALIFIED },
162     { "regchan", MODCMD_REQUIRE_REGCHAN },
163     { "supporthelper", MODCMD_REQUIRE_SUPPORT_HELPER },
164     { "toy", MODCMD_TOY },
165     { NULL, 0 }
166 };
167
168 static int
169 flags_bsearch(const void *a, const void *b) {
170     const char *key = a;
171     const struct modcmd_flag *flag = b;
172     return ircncasecmp(key, flag->name, strlen(flag->name));
173 }
174
175 static int
176 flags_qsort(const void *a, const void *b) {
177     const struct modcmd_flag *fa = a, *fb = b;
178     return irccasecmp(fa->name, fb->name);
179 }
180
181 DEFINE_LIST(svccmd_list, struct svccmd*)
182 DEFINE_LIST(module_list, struct module*)
183
184 static void
185 free_service_command(void *data) {
186     struct svccmd *svccmd;
187     unsigned int nn;
188
189     svccmd = data;
190     if (svccmd->alias.used) {
191         for (nn=0; nn<svccmd->alias.used; ++nn)
192             free(svccmd->alias.list[nn]);
193         free(svccmd->alias.list);
194     }
195     free(svccmd->name);
196     free(svccmd);
197 }
198
199 static void
200 free_service(void *data) {
201     struct service *service = data;
202     dict_delete(service->commands);
203     module_list_clean(&service->modules);
204     free(service);
205 }
206
207 static void
208 free_module_command(void *data) {
209     struct modcmd *modcmd = data;
210     free_service_command(modcmd->defaults);
211     free(modcmd->name);
212     free(modcmd);
213 }
214
215 static void
216 free_module(void *data) {
217     struct module *module = data;
218     dict_delete(module->commands);
219     close_helpfile(module->helpfile);
220     free(module->name);
221     free(module);
222 }
223
224 struct module *
225 module_register(const char *name, struct log_type *clog, const char *helpfile_name, expand_func_t expand_help) {
226     struct module *newmod;
227
228     newmod = calloc(1, sizeof(*newmod));
229     newmod->name = strdup(name);
230     newmod->commands = dict_new();
231     dict_set_free_data(newmod->commands, free_module_command);
232     newmod->clog = clog;
233     newmod->helpfile_name = helpfile_name;
234     newmod->expand_help = expand_help;
235     if (newmod->helpfile_name) {
236         newmod->helpfile = open_helpfile(newmod->helpfile_name, newmod->expand_help);
237     }
238     dict_insert(modules, newmod->name, newmod);
239     return newmod;
240 }
241
242 struct module *
243 module_find(const char *name) {
244     return dict_find(modules, name, NULL);
245 }
246
247 static void
248 add_pending_template(struct svccmd *cmd, const char *target) {
249     struct pending_template *pending = calloc(1, sizeof(*pending));
250     pending->cmd = cmd;
251     pending->base = strdup(target);
252     pending->next = pending_templates;
253     pending_templates = pending;
254 }
255
256 static struct svccmd *
257 svccmd_resolve_name(struct svccmd *origin, const char *name) {
258     char *sep, svcname[MAXLEN];
259
260     if ((sep = strchr(name, '.'))) {
261         memcpy(svcname, name, sep-name);
262         svcname[sep-name] = 0;
263         name = sep + 1;
264         if (svcname[0] == '*') {
265             struct module *module = module_find(svcname+1);
266             struct modcmd *cmd = module ? dict_find(module->commands, name, NULL) : NULL;
267             return cmd ? cmd->defaults : NULL;
268         } else {
269             struct service *service = service_find(svcname);
270             return service ? dict_find(service->commands, name, NULL) : NULL;
271         }
272     } else {
273         if (origin->parent) {
274             return dict_find(origin->parent->commands, name, NULL);
275         } else {
276             struct modcmd *cmd = dict_find(origin->command->parent->commands, name, NULL);
277             return cmd ? cmd->defaults : NULL;
278         }
279     }
280 }
281
282 static void
283 modcmd_set_effective_flags(struct svccmd *cmd) {
284     int flags = cmd->flags | cmd->command->flags;
285     if (cmd->min_opserv_level > 0)
286         flags |= MODCMD_REQUIRE_OPER;
287     if (cmd->min_channel_access > 0)
288         flags |= MODCMD_REQUIRE_CHANUSER;
289     if (flags & MODCMD_REQUIRE_CHANUSER)
290         flags |= MODCMD_REQUIRE_REGCHAN;
291     if (flags & MODCMD_REQUIRE_REGCHAN)
292         flags |= MODCMD_REQUIRE_CHANNEL;
293     if (flags & (MODCMD_REQUIRE_STAFF|MODCMD_REQUIRE_HELPING))
294         flags |= MODCMD_REQUIRE_AUTHED;
295     cmd->effective_flags = flags;
296 }
297
298 static void
299 svccmd_copy_rules(struct svccmd *dest, struct svccmd *src) {
300     dest->flags |= src->flags;
301     dest->req_account_flags |= src->req_account_flags;
302     dest->deny_account_flags |= src->deny_account_flags;
303     if (src->min_opserv_level > dest->min_opserv_level)
304         dest->min_opserv_level = src->min_opserv_level;
305     if (src->min_channel_access > dest->min_channel_access)
306         dest->min_channel_access = src->min_channel_access;
307     modcmd_set_effective_flags(dest);
308 }
309
310 static int
311 svccmd_configure(struct svccmd *cmd, struct userNode *user, struct userNode *bot, const char *param, const char *value) {
312     if (!irccasecmp(param, "flags")) {
313         unsigned int set_flags, rem_flags;
314         struct modcmd_flag *flag;
315         int opt, end;
316
317         for (set_flags = rem_flags = 0; 1; value += end) {
318             end = strcspn(value, ",");
319             if (*value == '+')
320                 opt = 1;
321             else if (*value == '-')
322                 opt = 0;
323             else {
324                 if (user)
325                     send_message(user, bot, "MCMSG_BARE_FLAG", end, value);
326                 else
327                     log_module(MAIN_LOG, LOG_ERROR, "Flag %.*s must be preceded by a + or - (for command %s).", end, value, cmd->name);
328                 return 0;
329             }
330             value++;
331             flag = bsearch(value, modcmd_flags, ArrayLength(modcmd_flags)-1, sizeof(modcmd_flags[0]), flags_bsearch);
332             if (!flag) {
333                 if (user)
334                     send_message(user, bot, "MCMSG_UNKNOWN_FLAG", end, value);
335                 else
336                     log_module(MAIN_LOG, LOG_ERROR, "Unknown module flag %.*s (for command %s).", end, value, cmd->name);
337                 return 0;
338             }
339             if (opt)
340                 set_flags |= flag->flag, rem_flags &= ~flag->flag;
341             else
342                 rem_flags |= flag->flag, set_flags &= ~flag->flag;
343             if (!value[end-1])
344                 break;
345         }
346         cmd->flags = (cmd->flags | set_flags) & ~rem_flags;
347         return 1;
348     } else if (!irccasecmp(param, "channel_level") || !irccasecmp(param, "channel_access") || !irccasecmp(param, "access")) {
349         unsigned short ul;
350         if (!irccasecmp(value, "none") || !irccasecmp(value, "0")) {
351             cmd->min_channel_access = 0;
352             return 1;
353         } else if ((ul = user_level_from_name(value, UL_OWNER)) > 0) {
354             cmd->min_channel_access = ul;
355             return 1;
356         } else if (user) {
357             send_message(user, bot, "MCMSG_BAD_CHANSERV_LEVEL", value);
358             return 0;
359         } else {
360             log_module(MAIN_LOG, LOG_ERROR, "Invalid ChanServ access level %s (for command %s).", value, cmd->name);
361             return 0;
362         }
363     } else if (!irccasecmp(param, "oper_level") || !irccasecmp(param, "oper_access") || !irccasecmp(param, "level")) {
364         unsigned int newval = atoi(value);
365         if (!isdigit(value[0]) || (newval > 1000)) {
366             if (user)
367                 send_message(user, bot, "MCMSG_BAD_OPSERV_LEVEL", value);
368             else
369                 log_module(MAIN_LOG, LOG_ERROR, "Invalid OpServ access level %s (for command %s).", value, cmd->name);
370             return 0;
371         }
372         if (user && (!user->handle_info || (cmd->min_opserv_level > user->handle_info->opserv_level))) {
373             send_message(user, bot, "MCMSG_LEVEL_TOO_LOW", cmd->name);
374             return 0;
375         }
376         if (user && (!user->handle_info || (newval > user->handle_info->opserv_level))) {
377             send_message(user, bot, "MCMSG_LEVEL_TOO_HIGH", value);
378             return 0;
379         }
380         cmd->min_opserv_level = newval;
381         return 1;
382     } else if (!irccasecmp(param, "account_flags")) {
383         return nickserv_modify_handle_flags(user, bot, value, &cmd->req_account_flags, &cmd->deny_account_flags);
384     } else {
385         if (user)
386             send_message(user, bot, "MCMSG_BAD_OPTION", param);
387         else
388             log_module(MAIN_LOG, LOG_ERROR, "Unknown option %s (for command %s).", param, cmd->name);
389         return 0;
390     }
391 }
392
393 struct modcmd *
394 modcmd_register(struct module *module, const char *name, modcmd_func_t func, unsigned int min_argc, unsigned int flags, ...) {
395     struct modcmd *newcmd;
396     va_list args;
397     const char *param, *value;
398
399     newcmd = calloc(1, sizeof(*newcmd));
400     newcmd->name = strdup(name);
401     newcmd->parent = module;
402     newcmd->func = func;
403     newcmd->min_argc = min_argc;
404     newcmd->flags = flags;
405     newcmd->defaults = calloc(1, sizeof(*newcmd->defaults));
406     newcmd->defaults->name = strdup(newcmd->name);
407     newcmd->defaults->command = newcmd;
408     dict_insert(module->commands, newcmd->name, newcmd);
409     if (newcmd->flags & (MODCMD_REQUIRE_REGCHAN|MODCMD_REQUIRE_CHANNEL|MODCMD_REQUIRE_CHANUSER|MODCMD_REQUIRE_JOINABLE)) {
410         newcmd->defaults->flags |= MODCMD_ACCEPT_CHANNEL;
411     }
412     if (newcmd->flags & MODCMD_REQUIRE_STAFF) {
413         newcmd->defaults->flags |= MODCMD_REQUIRE_AUTHED;
414     }
415     va_start(args, flags);
416     while ((param = va_arg(args, const char*))) {
417         value = va_arg(args, const char*);
418         if (!irccasecmp(param, "template")) {
419             struct svccmd *svccmd = svccmd_resolve_name(newcmd->defaults, value);
420             if (svccmd) {
421                 svccmd_copy_rules(newcmd->defaults, svccmd);
422             } else {
423                 log_module(MAIN_LOG, LOG_ERROR, "Unable to resolve template name %s for %s.%s.", value, newcmd->parent->name, newcmd->name);
424             }
425             add_pending_template(newcmd->defaults, value);
426         } else {
427             svccmd_configure(newcmd->defaults, NULL, NULL, param, value);
428         }
429     }
430     modcmd_set_effective_flags(newcmd->defaults);
431     va_end(args);
432     return newcmd;
433 }
434
435 /* This is kind of a lame hack, but it is actually simpler than having
436  * the permission check vary based on the command itself, or having a
437  * more generic rule system.
438  */
439 int
440 svccmd_can_invoke(struct userNode *user, struct userNode *bot, struct svccmd *cmd, struct chanNode *channel, int options) {
441     extern struct userNode *chanserv;
442     unsigned int uData_checked = 0;
443     struct userData *uData = NULL;
444     int rflags = 0, flags = cmd->effective_flags;
445
446     if (flags & MODCMD_DISABLED) {
447         if (options & SVCCMD_NOISY)
448             send_message(user, bot, "MSG_COMMAND_DISABLED", cmd->name);
449         return 0;
450     }
451     if ((flags & MODCMD_REQUIRE_QUALIFIED) && !(options & SVCCMD_QUALIFIED)) {
452         if (options & SVCCMD_NOISY)
453             send_message(user, bot, "MCMSG_MUST_QUALIFY", bot->nick, cmd->name, bot->nick);
454         return 0;
455     }
456     if (flags & MODCMD_REQUIRE_AUTHED) {
457         if (!user->handle_info) {
458             if (options & SVCCMD_NOISY)
459                 send_message(user, bot, "MSG_AUTHENTICATE");
460             return 0;
461         }
462         if (HANDLE_FLAGGED(user->handle_info, SUSPENDED)) {
463             if (options & SVCCMD_NOISY)
464                 send_message(user, bot, "MCMSG_ACCOUNT_SUSPENDED");
465             return 0;
466         }
467     }
468     if (channel || (options & SVCCMD_NOISY)) {
469         if ((flags & MODCMD_REQUIRE_CHANNEL) && !channel) {
470             if (options & SVCCMD_NOISY)
471                 send_message(user, bot, "MSG_INVALID_CHANNEL");
472             return 0;
473         }
474         if (flags & MODCMD_REQUIRE_REGCHAN) {
475             if (!chanserv) {
476                 /* Just use the inferred MODCMD_REQUIRE_CHANNEL. */
477             } else if (!channel->channel_info) {
478                 if (options & SVCCMD_NOISY)
479                     send_message(user, bot, "MCMSG_CHAN_NOT_REGISTERED", channel->name);
480                 return 0;
481             } else if (IsSuspended(channel->channel_info) && !(flags & MODCMD_IGNORE_CSUSPEND)) {
482                 /* Allow security-override users to ignore most channel
483                  * suspensions, but flag that use as a staff command.
484                  */
485                 if (!IsHelping(user) || (flags & MODCMD_NEVER_CSUSPEND)) {
486                     if (options & SVCCMD_NOISY)
487                         send_message(user, bot, "MCMSG_CHAN_SUSPENDED", channel->name, channel->channel_info->suspended->reason);
488                     return 0;
489                 }
490                 rflags |= ACTION_STAFF;
491             }
492         }
493         if (flags & MODCMD_REQUIRE_CHANUSER) {
494             if (!uData_checked)
495                 uData = _GetChannelUser(channel->channel_info, user->handle_info, 1, 0), uData_checked = 1;
496             if (!chanserv) {
497                 /* Assume someone knows what they're doing. */
498             } else if (!uData) {
499                 if (options & SVCCMD_NOISY)
500                     send_message(user, bot, "MCMSG_NO_CHANNEL_ACCESS", channel->name);
501                 return 0;
502             } else if (uData->access < cmd->min_channel_access) {
503                 if (options & SVCCMD_NOISY)
504                     send_message(user, bot, "MCMSG_LOW_CHANNEL_ACCESS", channel->name);
505                 return 0;
506             }
507         }
508         if ((flags & MODCMD_REQUIRE_JOINABLE) && channel) {
509             if (!uData_checked)
510                 uData = _GetChannelUser(channel->channel_info, user->handle_info, 1, 0), uData_checked = 1;
511             if ((channel->modes & (MODE_INVITEONLY|MODE_KEY|MODE_SECRET))
512                 && !uData
513                 && !IsService(user)
514                 && !GetUserMode(channel, user)) {
515                 if (options & SVCCMD_NOISY)
516                     send_message(user, bot, "MCMSG_REQUIRES_JOINABLE", channel->name);
517                 return 0;
518             }
519         }
520         if ((flags & MODCMD_TOY) && channel) {
521             if (!channel->channel_info)
522                 rflags |= ACTION_NOCHANNEL;
523             else switch (channel->channel_info->chOpts[chToys]) {
524             case 'd':
525                 if (options & SVCCMD_NOISY)
526                     send_message(user, bot, "MCMSG_TOYS_DISABLED", channel->name);
527                 return 0;
528             case 'n':
529                 rflags |= ACTION_NOCHANNEL;
530                 break;
531             case 'p':
532                 break;
533             }
534         }
535     }
536     if (flags & MODCMD_REQUIRE_STAFF) {
537         if (((flags & MODCMD_REQUIRE_OPER) && IsOper(user))
538             || ((flags & MODCMD_REQUIRE_NETWORK_HELPER) && IsNetworkHelper(user))
539             || ((flags & MODCMD_REQUIRE_SUPPORT_HELPER) && IsSupportHelper(user))) {
540             /* allow it */
541             rflags |= ACTION_STAFF;
542         } else {
543             if (options & SVCCMD_NOISY)
544                 send_message(user, bot, "MSG_COMMAND_PRIVILEGED", cmd->name);
545             return 0;
546         }
547     }
548     if (flags & MODCMD_REQUIRE_HELPING) {
549         if (!HANDLE_FLAGGED(user->handle_info, HELPING)) {
550             if (options & SVCCMD_NOISY)
551                 send_message(user, bot, "MCMSG_MUST_BE_HELPING");
552             return 0;
553         }
554         rflags |= ACTION_STAFF;
555     }
556     if (cmd->min_opserv_level > 0) {
557         if (!oper_has_access(user, bot, cmd->min_opserv_level, !(options & SVCCMD_NOISY)))
558             return 0;
559         rflags |= ACTION_STAFF;
560     }
561     if (cmd->req_account_flags || cmd->deny_account_flags) {
562         if (!user->handle_info) {
563             if (options & SVCCMD_NOISY)
564                 send_message(user, bot, "MSG_AUTHENTICATE");
565             return 0;
566         }
567         /* Do we want separate or different messages here? */
568         if ((cmd->req_account_flags & ~user->handle_info->flags)
569             || (cmd->deny_account_flags & user->handle_info->flags)) {
570             if (options & SVCCMD_NOISY)
571                 send_message(user, bot, "MSG_COMMAND_PRIVILEGED", cmd->name);
572             return 0;
573         }
574     }
575
576     /* If it's an override, return a special value. */
577     if ((flags & MODCMD_REQUIRE_CHANUSER)
578         && (options & SVCCMD_NOISY)
579         && (!uData || (uData->access > 500))
580         && (!(uData = _GetChannelUser(channel->channel_info, user->handle_info, 0, 0))
581             || uData->access < cmd->min_channel_access)
582         && !(flags & (MODCMD_REQUIRE_STAFF|MODCMD_REQUIRE_HELPING))) {
583         rflags |= ACTION_OVERRIDE;
584     }
585     return rflags | ACTION_ALLOW;
586 }
587
588 static int
589 svccmd_expand_alias(struct svccmd *cmd, unsigned int old_argc, char *old_argv[], char *new_argv[]) {
590     unsigned int ii, new_argc;
591     char *arg;
592
593     for (ii=new_argc=0; ii<cmd->alias.used; ++ii) {
594         arg = cmd->alias.list[ii];
595         if (arg[0] != '$') {
596             new_argv[new_argc++] = arg;
597             continue;
598         }
599         if (arg[1] == '$') {
600             new_argv[new_argc++] = arg + 1;
601         } else if (isdigit(arg[1])) {
602             unsigned int lbound, ubound, jj;
603             char *end_num;
604
605             lbound = strtoul(arg+1, &end_num, 10);
606             switch (end_num[0]) {
607             case 0: ubound = lbound; break;
608             case '-':
609                 if (end_num[1] == 0) {
610                     ubound = old_argc - 1;
611                     break;
612                 } else if (isdigit(end_num[1])) {
613                     ubound = strtoul(end_num+1, NULL, 10);
614                     break;
615                 }
616                 /* else fall through to default case */
617             default:
618                 log_module(MAIN_LOG, LOG_ERROR, "Alias expansion parse error in %s (near %s; %s.%s arg %d).", arg, end_num, cmd->parent->bot->nick, cmd->name, ii);
619                 return 0;
620             }
621             if (lbound >= old_argc)
622                 return -1;
623             if (ubound >= old_argc)
624                 ubound = old_argc - 1;
625             if (lbound < old_argc)
626                 for (jj = lbound; jj <= ubound; )
627                     new_argv[new_argc++] = old_argv[jj++];
628         } else {
629             log_module(MAIN_LOG, LOG_ERROR, "Alias expansion: I do not know how to handle %s (%s.%s arg %d).", arg, cmd->parent->bot->nick, cmd->name, ii);
630             return 0;
631         }
632     }
633     return new_argc;
634 }
635
636 int
637 svccmd_invoke_argv(struct userNode *user, struct service *service, struct chanNode *channel, unsigned int argc, char *argv[], unsigned int server_qualified) {
638     extern struct userNode *chanserv;
639     struct svccmd *cmd;
640     unsigned int cmd_arg, perms, flags, options, result;
641     char channel_name[CHANNELLEN+1];
642
643     /* First check pubcmd for the channel. */
644     if (channel && (channel->channel_info) && (service->bot == chanserv)
645         && !check_user_level(channel, user, lvlPubCmd, 1, 0)) {
646         send_message(user, service->bot, "MCMSG_PUBLIC_DENY", channel->name);
647         return 0;
648     }
649
650     options = (server_qualified ? SVCCMD_QUALIFIED : 0) | SVCCMD_DEBIT | SVCCMD_NOISY;
651     /* Find the command argument. */
652     cmd_arg = IsChannelName(argv[0]) ? 1 : 0;
653     if (argc < cmd_arg+1) {
654         send_message(user, service->bot, "MCMSG_MISSING_COMMAND");
655         return 0;
656     }
657     if (!isalnum(*argv[cmd_arg])) {
658         /* Silently ignore stuff that doesn't begin with a letter or number. */
659         return 0;
660     }
661     cmd = dict_find(service->commands, argv[cmd_arg], NULL);
662     if (!cmd) {
663         if (!channel)
664             send_message(user, service->bot, "MSG_COMMAND_UNKNOWN", argv[cmd_arg]);
665         return 0;
666     }
667     flags = cmd->effective_flags;
668     /* If they put a channel name first, check if the command allows
669      * it.  If so, swap it with the command name.
670      */
671     if (cmd_arg == 1) {
672         char *tmp;
673         /* Complain if we're not supposed to accept the channel. */
674         if (!(flags & MODCMD_ACCEPT_CHANNEL)) {
675             send_message(user, service->bot, "MCMSG_NO_CHANNEL_BEFORE");
676             return 0;
677         }
678         if (!(flags & MODCMD_ACCEPT_PCHANNEL)
679             && (argv[0][0] == '+')) {
680             send_message(user, service->bot, "MCMSG_NO_PLUS_CHANNEL");
681             return 0;
682         }
683         tmp = argv[1];
684         argv[1] = argv[0];
685         argv[0] = tmp;
686     }
687
688     /* Try to grab a channel handle before alias expansion.
689      * If the command accepts a channel name, and argv[1] is
690      * one, use it as a channel name, and hide it from logging.
691      */
692     if ((argc > 1)
693         && (flags & MODCMD_ACCEPT_CHANNEL)
694         && IsChannelName(argv[1])
695         && ((argv[1][0] != '+') || (flags & MODCMD_ACCEPT_PCHANNEL))
696         && (channel = dict_find(channels, argv[1], NULL))) {
697         argv[1] = argv[0];
698         argv++, argc--;
699         cmd_arg = 1;
700     }
701
702     /* Expand the alias arguments, if there are any. */
703     if (cmd->alias.used) {
704         char *new_argv[MAXNUMPARAMS];
705         int res;
706
707         res = svccmd_expand_alias(cmd, argc, argv, new_argv);
708         if (res < 0) {
709             send_message(user, service->bot, "MSG_MISSING_PARAMS", cmd->name);
710             return 0;
711         } else if (res == 0) {
712             send_message(user, service->bot, "MCMSG_ALIAS_ERROR", cmd->name);
713             return 0;
714         }
715         argc = res;
716         argv = new_argv;
717
718         /* Try again to grab a handle to the channel after alias
719          * expansion, overwriting any previous channel. This should,
720          * of course, only be done again if an alias was acually
721          * expanded. */
722         if ((argc > 1)
723             && (flags & MODCMD_ACCEPT_CHANNEL)
724             && IsChannelName(argv[1])
725             && ((argv[1][0] != '+') || (flags & MODCMD_ACCEPT_PCHANNEL))
726             && (channel = dict_find(channels, argv[1], NULL))) {
727             argv[1] = argv[0];
728             argv++, argc--;
729             cmd_arg = 1;
730         }
731     }
732
733     /* Figure out what actions we should do for it.. */
734     if (cmd_arg && (flags & MODCMD_TOY)) {
735         /* Do not let user manually specify a channel. */
736         channel = NULL;
737     }
738     if (argc < cmd->command->min_argc) {
739         send_message(user, service->bot, "MSG_MISSING_PARAMS", cmd->name);
740         return 0;
741     }
742     if (!cmd->command->func) {
743         send_message(user, service->bot, "MCMSG_INTERNAL_COMMAND", cmd->name);
744         return 0;
745     }
746     perms = svccmd_can_invoke(user, service->bot, cmd, channel, options);
747     if (!perms)
748         return 0;
749     cmd->uses++;
750     if (perms & ACTION_NOCHANNEL)
751         channel = NULL;
752
753     if (channel)
754         safestrncpy(channel_name, channel->name, sizeof(channel_name));
755     else
756         channel_name[0] = 0;
757     if (!(result = cmd->command->func(user, channel, argc, argv, cmd)))
758         return 0;
759     if (!(flags & MODCMD_NO_LOG)) {
760         enum log_severity slvl;
761         if (result & CMD_LOG_OVERRIDE)
762             slvl = LOG_OVERRIDE;
763         else if ((perms & ACTION_STAFF) || (result & CMD_LOG_STAFF))
764             slvl = LOG_STAFF;
765         else if (perms & ACTION_OVERRIDE)
766             slvl = LOG_OVERRIDE;
767         else
768             slvl = LOG_COMMAND;
769         /* Unsplit argv after running the function to get the benefit
770          * of any mangling/hiding done by the commands. */
771         log_audit(cmd->command->parent->clog, slvl, user, service->bot, channel_name, ((flags & MODCMD_LOG_HOSTMASK) ? AUDIT_HOSTMASK : 0), unsplit_string(argv, argc, NULL));
772     }
773     return 1;
774 }
775
776 int
777 svccmd_send_help(struct userNode *user, struct userNode *bot, struct svccmd *cmd) {
778     char cmdname[MAXLEN];
779     unsigned int nn;
780     /* Show command name (in bold). */
781     for (nn=0; cmd->name[nn]; nn++)
782         cmdname[nn] = toupper(cmd->name[nn]);
783     cmdname[nn] = 0;
784     send_message_type(4, user, bot, "$b%s$b", cmdname);
785     /* If it's an alias, show what it's an alias for. */
786     if (cmd->alias.used) {
787         char alias_text[MAXLEN];
788         unsplit_string((char**)cmd->alias.list, cmd->alias.used, alias_text);
789         send_message(user, bot, "MCMSG_COMMAND_ALIASES", cmd->name, alias_text);
790     }
791     /* Show the help entry for the underlying command. */
792     return send_help(user, bot, cmd->command->parent->helpfile, cmd->command->name);
793 }
794
795 int
796 svccmd_send_help_2(struct userNode *user, struct service *service, const char *topic) {
797     struct module *module;
798     struct svccmd *cmd;
799     unsigned int ii;
800
801     if ((cmd = dict_find(service->commands, topic, NULL)))
802         return svccmd_send_help(user, service->bot, cmd);
803     if (!topic)
804         topic = "<index>";
805     for (ii = 0; ii < service->modules.used; ++ii) {
806         module = service->modules.list[ii];
807         if (!module->helpfile)
808             continue;
809         if (dict_find(module->helpfile->db, topic, NULL))
810             return send_help(user, service->bot, module->helpfile, topic);
811     }
812     send_message(user, service->bot, "MSG_TOPIC_UNKNOWN");
813     return 0;
814 }
815
816 static int
817 svccmd_invoke(struct userNode *user, struct service *service, struct chanNode *channel, const char *text, int server_qualified) {
818     unsigned int argc;
819     char *argv[MAXNUMPARAMS];
820     char tmpline[MAXLEN];
821
822     if (!*text)
823         return 0;
824     if (service->privileged) {
825         if (!IsOper(user)) {
826             send_message(user, service->bot, "MSG_SERVICE_PRIVILEGED", service->bot->nick);
827             return 0;
828         }
829         if (!user->handle_info) {
830             send_message(user, service->bot, "MSG_AUTHENTICATE");
831             return 0;
832         }
833         if (HANDLE_FLAGGED(user->handle_info, OPER_SUSPENDED)) {
834             send_message(user, service->bot, "MSG_OPER_SUSPENDED");
835             return 0;
836         }
837     }
838     safestrncpy(tmpline, text, sizeof(tmpline));
839     argc = split_line(tmpline, false, ArrayLength(argv), argv);
840     return argc ? svccmd_invoke_argv(user, service, channel, argc, argv, server_qualified) : 0;
841 }
842
843 void
844 modcmd_privmsg(struct userNode *user, struct userNode *bot, const char *text, int server_qualified) {
845     struct service *service;
846
847     if (!(service = dict_find(services, bot->nick, NULL))) {
848         log_module(MAIN_LOG, LOG_ERROR, "modcmd_privmsg got privmsg for unhandled service %s, unregistering.", bot->nick);
849         reg_privmsg_func(bot, NULL);
850         return;
851     }
852
853     if (text[0] == '\x01') {
854         char *term, response[MAXLEN];
855
856         text++; /* Skip leading ^A. */
857         /* Chop off final ^A. */
858         term = strchr(text, '\x01');
859         if (!term)
860             return;
861         *term = '\0';
862         /* Parse out leading text. */
863         term = strchr(text, ' ');
864         if (term) {
865             *term++ = '\0';
866             if (!*term)
867                 term = NULL;
868         }
869         /* No dict lookup since these are so few. */
870         if (!irccasecmp(text, "CLIENTINFO")) {
871             /* Use \001 instead of \x01 because apparently \x01C is
872              * interpreted as ASCII FS (\034, decimal 28, hex 1C).
873              */
874             irc_notice_user(bot, user, "\001CLIENTINFO CLIENTINFO PING TIME USERINFO VERSION\x01");
875         } else if (!irccasecmp(text, "PING")) {
876             if (term) {
877                 snprintf(response, sizeof(response), "\x01PING %s\x01", term);
878                 irc_notice_user(bot, user, response);
879             } else {
880                 irc_notice_user(bot,user, "\x01PING\x01");
881             }
882         } else if (!irccasecmp(text, "TIME")) {
883             time_t feh;
884             feh = now;
885             strftime(response, sizeof(response), "\x01TIME %a %b %d %H:%M:%S %Y\x01", localtime(&feh));
886             irc_notice_user(bot, user, response);
887         } else if (!irccasecmp(text, "USERINFO")) {
888             snprintf(response, sizeof(response), "\x01USERINFO %s\x01", bot->info);
889             irc_notice_user(bot, user, response);
890         } else if (!irccasecmp(text, "VERSION")) {
891             /* This function provides copyright management information
892              * to end users of srvx. You should not alter, disable or
893              * remove this command or its accessibility to normal IRC
894              * users, except to add copyright information pertaining
895              * to changes you make to srvx.
896              */
897             snprintf(response, sizeof(response), "\x01VERSION %s (%s) %s\x01", PACKAGE_STRING, CODENAME, git_version);
898             irc_notice_user(bot, user, response);
899         }
900         return;
901     }
902
903     if (service->msg_hook && service->msg_hook(user, bot, text, server_qualified))
904         return;
905     svccmd_invoke(user, service, NULL, text, server_qualified);
906 }
907
908 void
909 modcmd_chanmsg(struct userNode *user, struct chanNode *chan, const char *text, struct userNode *bot, unsigned int is_notice) {
910     struct service *service;
911     if (!(service = dict_find(services, bot->nick, NULL)))
912         return;
913     svccmd_invoke(user, service, chan, text, 0);
914     (void)is_notice;
915 }
916
917 struct service *
918 service_register(struct userNode *bot) {
919     struct service *service;
920     if ((service = dict_find(services, bot->nick, NULL)))
921         return service;
922     service = calloc(1, sizeof(*service));
923     module_list_init(&service->modules);
924     service->commands = dict_new();
925     service->bot = bot;
926     dict_set_free_data(service->commands, free_service_command);
927     dict_insert(services, service->bot->nick, service);
928     reg_privmsg_func(bot, modcmd_privmsg);
929     return service;
930 }
931
932 struct service *
933 service_find(const char *name) {
934     return dict_find(services, name, NULL);
935 }
936
937 static void
938 svccmd_insert(struct service *service, char *name, struct svccmd *svccmd, struct modcmd *modcmd) {
939     unsigned int ii;
940     svccmd->parent = service;
941     svccmd->name = name;
942     svccmd->command = modcmd;
943     svccmd->command->bind_count++;
944     dict_insert(service->commands, svccmd->name, svccmd);
945     for (ii=0; ii<service->modules.used; ++ii) {
946         if (service->modules.list[ii] == svccmd->command->parent) break;
947     }
948     if (ii == service->modules.used) {
949         module_list_append(&service->modules, svccmd->command->parent);
950     }
951 }
952
953 struct svccmd *
954 service_bind_modcmd(struct service *service, struct modcmd *cmd, const char *name) {
955     struct svccmd *svccmd;
956     if ((svccmd = dict_find(service->commands, name, NULL))) {
957         if (svccmd->command == cmd) return svccmd;
958         log_module(MAIN_LOG, LOG_ERROR, "Tried to bind command %s.%s into service %s as %s, but already bound (as %s.%s).", cmd->parent->name, cmd->name, service->bot->nick, name, svccmd->command->parent->name, svccmd->command->name);
959         return NULL;
960     }
961     svccmd = calloc(1, sizeof(*svccmd));
962     svccmd_insert(service, strdup(name), svccmd, cmd);
963     svccmd_copy_rules(svccmd, cmd->defaults);
964     return svccmd;
965 }
966
967 static unsigned int
968 service_bind_module(struct service *service, struct module *module) {
969     dict_iterator_t it;
970     struct modcmd *modcmd;
971     unsigned int count;
972
973     count = 0;
974     for (it = dict_first(module->commands); it; it = iter_next(it)) {
975         modcmd = iter_data(it);
976         if (!((modcmd->flags | modcmd->defaults->flags) & MODCMD_NO_DEFAULT_BIND))
977             if (service_bind_modcmd(service, modcmd, iter_key(it)))
978                 count++;
979     }
980     return count;
981 }
982
983 /* This MUST return argc if the alias expansion code knows how to deal
984  * with every argument in argv; otherwise, it MUST return the index of
985  * an argument that the expansion code does not know how to deal with.
986  */
987 static unsigned int
988 check_alias_args(char *argv[], unsigned int argc) {
989     unsigned int arg;
990
991     for (arg=0; arg<argc; ++arg) {
992         if (argv[arg][0] != '$') {
993             continue;
994         } else if (argv[arg][1] == '$') {
995             continue;
996         } else if (isdigit(argv[arg][1])) {
997             char *end_num;
998             unsigned long tmp;
999
1000             tmp = strtoul(argv[arg]+1, &end_num, 10);
1001             switch (end_num[0]) {
1002             case 0:
1003                 continue;
1004             case '-':
1005                 if (end_num[1] == 0)
1006                     continue;
1007                 else if (isdigit(end_num[1]))
1008                     continue;
1009                 /* else fall through to default case */
1010             default:
1011                 return arg;
1012             }
1013         } else
1014             return arg;
1015     }
1016     return arg;
1017 }
1018
1019 static unsigned int
1020 collapse_cmdname(char *argv[], unsigned int argc, char *dest) {
1021     unsigned int ii, pos, arg;
1022     if (!argc) {
1023         dest[0] = 0;
1024         return 0;
1025     }
1026     for (ii=pos=0, arg=0; argv[arg][ii]; ) {
1027         if (argv[arg][ii] == '\\') {
1028             if (argv[arg][ii+1]) {
1029                 /* escaping a real character just puts it in literally */
1030                 dest[pos++] = argv[arg][++ii];
1031             } else if ((arg+1) == argc) {
1032                 /* we ran to the end of the argument list; abort */
1033                 break;
1034             } else {
1035                 /* escape at end of a word is a space */
1036                 dest[pos++] = ' ';
1037                 ii = 0;
1038                 arg++;
1039             }
1040         } else {
1041             /* normal characters don't need escapes */
1042             dest[pos++] = argv[arg][ii++];
1043         }
1044     }
1045     dest[pos] = 0;
1046     return arg + 1;
1047 }
1048
1049 static MODCMD_FUNC(cmd_bind) {
1050     struct service *service;
1051     struct svccmd *template, *newcmd;
1052     char *svcname, *dot;
1053     char newname[MAXLEN], cmdname[MAXLEN];
1054     unsigned int arg, diff;
1055
1056     assert(argc > 3);
1057     svcname = argv[1];
1058     arg = collapse_cmdname(argv+2, argc-2, newname) + 2;
1059     if (!arg) {
1060         reply("MSG_MISSING_PARAMS", cmd->name);
1061         return 0;
1062     }
1063     diff = collapse_cmdname(argv+arg, argc-arg, cmdname);
1064     if (!diff) {
1065         reply("MSG_MISSING_PARAMS", cmd->name);
1066         return 0;
1067     }
1068     arg += diff;
1069
1070     if (!(service = service_find(svcname))) {
1071         reply("MCMSG_UNKNOWN_SERVICE", svcname);
1072         return 0;
1073     }
1074
1075     if ((newcmd = dict_find(service->commands, newname, NULL))) {
1076         reply("MCMSG_ALREADY_BOUND", service->bot->nick, newname);
1077         return 0;
1078     }
1079
1080     if ((dot = strchr(cmdname, '.')) && (dot[1] == '*') && (dot[2] == 0)) {
1081         unsigned int count;
1082         struct module *module;
1083         *dot = 0;
1084         module = module_find((cmdname[0] == '*') ? cmdname+1 : cmdname);
1085         if (!module) {
1086             reply("MSG_MODULE_UNKNOWN", cmdname);
1087             return 0;
1088         }
1089         count = service_bind_module(service, module);
1090         reply("MCMSG_MODULE_BOUND", count, module->name, service->bot->nick);
1091         return count != 0;
1092     }
1093     newcmd = calloc(1, sizeof(*newcmd));
1094     newcmd->name = strdup(newname);
1095     newcmd->parent = service;
1096     if (!(template = svccmd_resolve_name(newcmd, cmdname))) {
1097         reply("MCMSG_UNKNOWN_COMMAND_2", cmdname, service->bot->nick);
1098         free(newcmd->name);
1099         free(newcmd);
1100         return 0;
1101     }
1102     if (template->alias.used) {
1103         reply("MCMSG_CANNOT_DOUBLE_ALIAS");
1104         free(newcmd->name);
1105         free(newcmd);
1106         return 0;
1107     }
1108
1109     if (argc > arg) {
1110         /* a more complicated alias; fix it up */
1111         unsigned int nn;
1112
1113         arg -= diff;
1114         nn = check_alias_args(argv+arg, argc-arg);
1115         if (nn+arg < argc) {
1116             reply("MCMSG_BAD_ALIAS_ARGUMENT", argv[nn+arg]);
1117             free(newcmd->name);
1118             free(newcmd);
1119             return 0;
1120         }
1121         newcmd->alias.used = newcmd->alias.size = argc-arg;
1122         newcmd->alias.list = calloc(newcmd->alias.size, sizeof(newcmd->alias.list[0]));
1123         for (nn=0; nn<newcmd->alias.used; ++nn)
1124             newcmd->alias.list[nn] = strdup(argv[nn+arg]);
1125     }
1126
1127     svccmd_insert(service, newcmd->name, newcmd, template->command);
1128     svccmd_copy_rules(newcmd, template);
1129     reply("MCMSG_COMMAND_BOUND", newcmd->name, newcmd->parent->bot->nick);
1130     return 1;
1131 }
1132
1133 static int
1134 service_recheck_bindings(struct service *service, struct module *module) {
1135     dict_iterator_t it;
1136     struct svccmd *cmd;
1137
1138     for (it = dict_first(service->commands); it; it = iter_next(it)) {
1139         cmd = iter_data(it);
1140         if (cmd->command->parent == module) return 0;
1141     }
1142     /* No more bindings, remove it from our list. */
1143     module_list_remove(&service->modules, module);
1144     return 1;
1145 }
1146
1147 static svccmd_unbind_func_t *suf_list;
1148 unsigned int suf_size, suf_used;
1149
1150 void
1151 reg_svccmd_unbind_func(svccmd_unbind_func_t handler) {
1152     if (suf_used == suf_size) {
1153         if (suf_size) {
1154             suf_size <<= 1;
1155             suf_list = realloc(suf_list, suf_size*sizeof(svccmd_unbind_func_t));
1156         } else {
1157             suf_size = 8;
1158             suf_list = malloc(suf_size*sizeof(svccmd_unbind_func_t));
1159         }
1160     }
1161     suf_list[suf_used++] = handler;
1162 }
1163
1164 static MODCMD_FUNC(cmd_unbind) {
1165     struct service *service;
1166     struct userNode *bot;
1167     struct svccmd *bound;
1168     struct module *module;
1169     const char *svcname;
1170     unsigned int arg, ii;
1171     char cmdname[MAXLEN];
1172
1173     assert(argc > 2);
1174     svcname = argv[1];
1175     arg = collapse_cmdname(argv+2, argc-2, cmdname) + 2;
1176     if (!arg) {
1177         reply("MSG_MISSING_PARAMS", cmd->name);
1178         return 0;
1179     }
1180     if (!(service = service_find(svcname))) {
1181         reply("MCMSG_UNKNOWN_SERVICE", svcname);
1182         return 0;
1183     }
1184     if (!(bound = dict_find(service->commands, cmdname, NULL))) {
1185         reply("MCMSG_NO_COMMAND_BOUND", service->bot->nick, cmdname);
1186         return 0;
1187     }
1188     if ((bound->command->flags & MODCMD_KEEP_BOUND) && (bound->command->bind_count == 1)) {
1189         reply("MCMSG_UNBIND_PROHIBITED", bound->command->name);
1190         return 0;
1191     }
1192
1193     for (ii=0; ii<suf_used; ii++)
1194         suf_list[ii](bound);
1195     /* If this command binding is removing itself, we must take care
1196      * not to dereference it after the dict_remove.
1197      */
1198     bot = cmd->parent->bot;
1199     module = cmd->command->parent;
1200     dict_remove(service->commands, bound->name);
1201     send_message(user, bot, "MCMSG_COMMAND_UNBOUND", cmdname, service->bot->nick);
1202     if (service_recheck_bindings(service, module))
1203         send_message(user, bot, "MCMSG_HELPFILE_UNBOUND", module->name, module->name);
1204     return 1;
1205 }
1206
1207 static MODCMD_FUNC(cmd_readhelp) {
1208     const char *modname;
1209     struct module *module;
1210     struct helpfile *old_helpfile;
1211     struct timeval start, stop;
1212
1213     assert(argc > 1);
1214     modname = argv[1];
1215     if (!(module = module_find(modname))) {
1216         reply("MSG_MODULE_UNKNOWN", modname);
1217         return 0;
1218     }
1219     if (!module->helpfile_name) {
1220         reply("MCMSG_NO_HELPFILE", module->name);
1221         return 0;
1222     }
1223     old_helpfile = module->helpfile;
1224     gettimeofday(&start, NULL);
1225     module->helpfile = open_helpfile(module->helpfile_name, module->expand_help);
1226     if (!module->helpfile) {
1227         module->helpfile = old_helpfile;
1228         reply("MCMSG_HELPFILE_ERROR", module->helpfile_name);
1229         return 0;
1230     }
1231     if (old_helpfile) close_helpfile(old_helpfile);
1232     gettimeofday(&stop, NULL);
1233     stop.tv_sec -= start.tv_sec;
1234     stop.tv_usec -= start.tv_usec;
1235     if (stop.tv_usec < 0) {
1236         stop.tv_sec -= 1;
1237         stop.tv_usec += 1000000;
1238     }
1239     reply("MCMSG_HELPFILE_READ", module->name, (unsigned long)stop.tv_sec, (unsigned long)stop.tv_usec/1000);
1240     return 1;
1241 }
1242
1243 static MODCMD_FUNC(cmd_help) {
1244     const char *topic;
1245
1246     topic = (argc < 2) ? NULL : unsplit_string(argv+1, argc-1, NULL);
1247     return svccmd_send_help_2(user, cmd->parent, topic);
1248 }
1249
1250 static MODCMD_FUNC(cmd_timecmd) {
1251     struct timeval start, stop;
1252     char cmd_text[MAXLEN];
1253
1254     unsplit_string(argv+1, argc-1, cmd_text);
1255     gettimeofday(&start, NULL);
1256     svccmd_invoke(user, cmd->parent, channel, cmd_text, 0);
1257     gettimeofday(&stop, NULL);
1258     stop.tv_sec -= start.tv_sec;
1259     stop.tv_usec -= start.tv_usec;
1260     if (stop.tv_usec < 0) {
1261         stop.tv_sec -= 1;
1262         stop.tv_usec += 1000000;
1263     }
1264     reply("MCMSG_COMMAND_TIME", cmd_text, (unsigned long)stop.tv_sec, (unsigned long)stop.tv_usec);
1265     return 1;
1266 }
1267
1268 static MODCMD_FUNC(cmd_command) {
1269     struct svccmd *svccmd;
1270     const char *cmd_name, *fmt_str;
1271     unsigned int flags, shown_flags, nn, pos;
1272     char buf[MAXLEN];
1273
1274     assert(argc >= 2);
1275     cmd_name = unsplit_string(argv+1, argc-1, NULL);
1276     if (!(svccmd = svccmd_resolve_name(cmd, cmd_name))) {
1277         reply("MCMSG_UNKNOWN_COMMAND_2", cmd_name, cmd->parent->bot->nick);
1278         return 0;
1279     }
1280     pos = snprintf(buf, sizeof(buf), "%s.%s", svccmd->command->parent->name, svccmd->command->name);
1281     if (svccmd->alias.used) {
1282         buf[pos++] = ' ';
1283         unsplit_string((char**)svccmd->alias.list+1, svccmd->alias.used-1, buf+pos);
1284         reply("MCMSG_COMMAND_ALIASES", svccmd->name, buf);
1285     } else {
1286         reply("MCMSG_COMMAND_BINDING", svccmd->name, buf);
1287     }
1288     flags = svccmd->effective_flags;
1289     if ((svccmd->parent && svccmd->parent->privileged && !IsOper(user))
1290         || ((flags & MODCMD_REQUIRE_STAFF)
1291             && !IsOper(user) && !IsNetworkHelper(user) && !IsSupportHelper(user))) {
1292         reply("MCMSG_INSPECTION_REFUSED", svccmd->name);
1293         return 0;
1294     }
1295     if (flags & MODCMD_DISABLED) {
1296         reply("MSG_COMMAND_DISABLED", svccmd->name);
1297         return 1;
1298     }
1299     shown_flags = 0;
1300     if (svccmd->min_opserv_level > 0) {
1301         reply("MCMSG_NEED_OPSERV_LEVEL", svccmd->min_opserv_level);
1302         shown_flags |= MODCMD_REQUIRE_OPER | MODCMD_REQUIRE_AUTHED;
1303     }
1304     if (svccmd->min_channel_access > 0) {
1305         reply("MCMSG_NEED_CHANSERV_LEVEL", svccmd->min_channel_access);
1306         shown_flags |= MODCMD_REQUIRE_CHANUSER | MODCMD_REQUIRE_REGCHAN | MODCMD_REQUIRE_CHANNEL | MODCMD_REQUIRE_AUTHED;
1307     }
1308     if (svccmd->req_account_flags) {
1309         for (nn=pos=0; nn<32; nn++) {
1310             if (!(svccmd->req_account_flags & (1 << nn))) continue;
1311             buf[pos++] = HANDLE_FLAGS[nn];
1312         }
1313         buf[pos] = 0;
1314         reply("MCMSG_NEED_ACCOUNT_FLAGS", buf);
1315         shown_flags |= MODCMD_REQUIRE_AUTHED;
1316     }
1317     if (!flags && !shown_flags) {
1318         reply("MCMSG_NEED_NOTHING", svccmd->name);
1319         return 1;
1320     }
1321     if (flags & ~shown_flags & MODCMD_REQUIRE_HELPING) {
1322         reply("MCMSG_MUST_BE_HELPING");
1323         shown_flags |= MODCMD_REQUIRE_AUTHED | MODCMD_REQUIRE_STAFF;
1324     }
1325     if (flags & ~shown_flags & MODCMD_REQUIRE_STAFF) {
1326         switch (flags & MODCMD_REQUIRE_STAFF) {
1327         default: case MODCMD_REQUIRE_STAFF:
1328             fmt_str = "MCMSG_NEED_STAFF_ACCESS";
1329             break;
1330         case MODCMD_REQUIRE_OPER:
1331             fmt_str = "MCMSG_NEED_STAFF_OPER";
1332             break;
1333         case MODCMD_REQUIRE_NETWORK_HELPER:
1334             fmt_str = "MCMSG_NEED_STAFF_NETHELPER";
1335             break;
1336         case MODCMD_REQUIRE_OPER|MODCMD_REQUIRE_NETWORK_HELPER:
1337             fmt_str = "MCMSG_NEED_STAFF_NETHELPER_OR_OPER";
1338             break;
1339         case MODCMD_REQUIRE_SUPPORT_HELPER:
1340             fmt_str = "MCMSG_NEED_STAFF_SHELPER";
1341             break;
1342         case MODCMD_REQUIRE_OPER|MODCMD_REQUIRE_SUPPORT_HELPER:
1343             fmt_str = "MCMSG_NEED_STAFF_SHELPER_OR_OPER";
1344             break;
1345         case MODCMD_REQUIRE_SUPPORT_HELPER|MODCMD_REQUIRE_NETWORK_HELPER:
1346             fmt_str = "MCMSG_NEED_STAFF_HELPER";
1347             break;
1348         }
1349         reply(fmt_str);
1350         shown_flags |= MODCMD_REQUIRE_AUTHED | MODCMD_REQUIRE_STAFF;
1351     }
1352     if (flags & ~shown_flags & MODCMD_REQUIRE_JOINABLE) {
1353         reply("MCMSG_NEED_JOINABLE");
1354         shown_flags |= MODCMD_REQUIRE_CHANUSER;
1355     }
1356     if (flags & ~shown_flags & MODCMD_REQUIRE_CHANUSER) {
1357         if (flags & ~shown_flags & MODCMD_IGNORE_CSUSPEND)
1358             reply("MCMSG_NEED_CHANUSER_CSUSPENDABLE");
1359         else
1360             reply("MCMSG_NEED_CHANUSER");
1361         shown_flags |= MODCMD_IGNORE_CSUSPEND | MODCMD_REQUIRE_REGCHAN | MODCMD_REQUIRE_CHANNEL | MODCMD_REQUIRE_AUTHED;
1362     }
1363     if (flags & ~shown_flags & MODCMD_REQUIRE_REGCHAN) {
1364         reply("MCMSG_NEED_REGCHAN");
1365         shown_flags |= MODCMD_REQUIRE_CHANNEL;
1366     }
1367     if (flags & ~shown_flags & MODCMD_REQUIRE_CHANNEL)
1368         reply("MCMSG_NEED_CHANNEL");
1369     if (flags & ~shown_flags & MODCMD_REQUIRE_AUTHED)
1370         reply("MCMSG_NEED_AUTHED");
1371     if (flags & ~shown_flags & MODCMD_TOY)
1372         reply("MCMSG_IS_TOY", svccmd->name);
1373     if (flags & ~shown_flags & MODCMD_REQUIRE_QUALIFIED) {
1374         const char *botnick = svccmd->parent ? svccmd->parent->bot->nick : "SomeBot";
1375         reply("MCMSG_MUST_QUALIFY", botnick, svccmd->name, botnick);
1376     }
1377     reply("MCMSG_END_REQUIREMENTS", svccmd->name);
1378     return 1;
1379 }
1380
1381 static void
1382 modcmd_describe_command(struct userNode *user, struct svccmd *cmd, struct svccmd *target) {
1383     char buf1[MAXLEN], buf2[MAXLEN];
1384     unsigned int ii, len, buf1_used, buf2_used;
1385
1386     if (target->alias.used) {
1387         unsplit_string((char**)target->alias.list, target->alias.used, buf1);
1388         reply("MCMSG_COMMAND_ALIASES", target->name, buf1);
1389     } else {
1390         snprintf(buf1, sizeof(buf1), "%s.%s", target->command->parent->name, target->command->name);
1391         reply("MCMSG_COMMAND_BINDING", target->name, buf1);
1392     }
1393     for (ii = buf1_used = buf2_used = 0; modcmd_flags[ii].name; ++ii) {
1394         const struct modcmd_flag *flag = &modcmd_flags[ii];
1395         if (target->flags & flag->flag) {
1396             if (buf1_used)
1397                 buf1[buf1_used++] = ',';
1398             len = strlen(flag->name);
1399             memcpy(buf1 + buf1_used, flag->name, len);
1400             buf1_used += len;
1401         } else if (target->effective_flags & flag->flag) {
1402             if (buf2_used)
1403                 buf2[buf2_used++] = ',';
1404             len = strlen(flag->name);
1405             memcpy(buf2 + buf2_used, flag->name, len);
1406             buf2_used += len;
1407         }
1408     }
1409     if (buf1_used)
1410         buf1[buf1_used] = '\0';
1411     else
1412         strcpy(buf1, user_find_message(user, "MSG_NONE"));
1413     if (buf2_used)
1414         buf2[buf2_used] = '\0';
1415     else
1416         strcpy(buf2, user_find_message(user, "MSG_NONE"));
1417     reply("MCMSG_COMMAND_FLAGS", buf1, buf2);
1418     for (ii = buf1_used = buf2_used = 0; handle_flags[ii]; ++ii) {
1419         if (target->req_account_flags & (1 << ii))
1420             buf1[buf1_used++] = handle_flags[ii];
1421         else if (target->deny_account_flags & (1 << ii))
1422             buf2[buf2_used++] = handle_flags[ii];
1423     }
1424     buf1[buf1_used] = buf2[buf2_used] = '\0';
1425     reply("MCMSG_COMMAND_ACCOUNT_FLAGS", buf1, buf2);
1426     reply("MCMSG_COMMAND_ACCESS_LEVEL", target->min_channel_access, target->min_opserv_level);
1427     reply("MCMSG_COMMAND_USES", target->name, target->uses);
1428 }
1429
1430 static MODCMD_FUNC(cmd_modcmd) {
1431     struct svccmd *svccmd;
1432     unsigned int arg, changed;
1433     char cmdname[MAXLEN];
1434
1435     assert(argc >= 2);
1436     arg = collapse_cmdname(argv+1, argc-1, cmdname) + 1;
1437     if (!arg) {
1438         reply("MSG_MISSING_PARAMS", cmd->name);
1439         return 0;
1440     }
1441     if (!(svccmd = svccmd_resolve_name(cmd, cmdname))) {
1442         reply("MCMSG_UNKNOWN_COMMAND_2", cmdname, cmd->parent->bot->nick);
1443         return 0;
1444     }
1445     for (changed = 0; arg+1 < argc; arg += 2) {
1446         if (svccmd_configure(svccmd, user, cmd->parent->bot, argv[arg], argv[arg+1])) {
1447             reply("MCMSG_COMMAND_MODIFIED", argv[arg], svccmd->name);
1448             changed = 1;
1449         }
1450     }
1451     if (changed)
1452         modcmd_set_effective_flags(svccmd);
1453     modcmd_describe_command(user, cmd, svccmd);
1454     return changed;
1455 }
1456
1457 static MODCMD_FUNC(cmd_god) {
1458     int helping;
1459
1460     if (argc > 1) {
1461         if (enabled_string(argv[1])) {
1462             if (HANDLE_FLAGGED(user->handle_info, HELPING)) {
1463                 reply("MCMSG_ALREADY_HELPING");
1464                 return 0;
1465             }
1466             helping = 1;
1467         } else if (disabled_string(argv[1])) {
1468             if (!HANDLE_FLAGGED(user->handle_info, HELPING)) {
1469                 reply("MCMSG_ALREADY_NOT_HELPING");
1470                 return 0;
1471             }
1472             helping = 0;
1473         } else {
1474             reply("MSG_INVALID_BINARY", argv[1]);
1475             return 0;
1476         }
1477     } else {
1478         helping = !IsHelping(user);
1479     }
1480
1481     if (helping) {
1482         HANDLE_SET_FLAG(user->handle_info, HELPING);
1483         reply("MCMSG_NOW_HELPING");
1484     } else {
1485         HANDLE_CLEAR_FLAG(user->handle_info, HELPING);
1486         reply("MCMSG_NOW_NOT_HELPING");
1487     }
1488
1489     return 1;
1490 }
1491
1492 static MODCMD_FUNC(cmd_joiner) {
1493     char cmdname[MAXLEN];
1494
1495     if (argc < 2) {
1496         int len = sprintf(cmdname, "%s ", cmd->name);
1497         dict_iterator_t it;
1498         struct string_buffer sbuf;
1499
1500         string_buffer_init(&sbuf);
1501         for (it = dict_first(cmd->parent->commands); it; it = iter_next(it)) {
1502             if (!ircncasecmp(iter_key(it), cmdname, len)) {
1503                 if (sbuf.used) string_buffer_append_string(&sbuf, ", ");
1504                 string_buffer_append_string(&sbuf, iter_key(it));
1505             }
1506         }
1507         if (!sbuf.used) string_buffer_append(&sbuf, 0);
1508         reply("MCMSG_JOINER_CHOICES", cmd->name, sbuf.list);
1509         string_buffer_clean(&sbuf);
1510         return 1;
1511     }
1512     sprintf(cmdname, "%s %s", cmd->name, argv[1]);
1513     argv[1] = cmdname;
1514     svccmd_invoke_argv(user, cmd->parent, channel, argc-1, argv+1, 0);
1515     return 0; /* never try to log this; the recursive one logs it */
1516 }
1517
1518 static MODCMD_FUNC(cmd_stats_modules) {
1519     struct helpfile_table tbl;
1520     dict_iterator_t it;
1521     unsigned int ii;
1522     struct module *mod;
1523     struct modcmd *modcmd;
1524
1525     if (argc < 2) {
1526         tbl.length = dict_size(modules) + 1;
1527         tbl.width = 3;
1528         tbl.flags = TABLE_PAD_LEFT;
1529         tbl.contents = calloc(tbl.length, sizeof(tbl.contents[0]));
1530         tbl.contents[0] = calloc(tbl.width, sizeof(tbl.contents[0][0]));
1531         tbl.contents[0][0] = "Module";
1532         tbl.contents[0][1] = "Commands";
1533         tbl.contents[0][2] = "Helpfile";
1534         for (ii=1, it=dict_first(modules); it; it=iter_next(it), ii++) {
1535             mod = iter_data(it);
1536             tbl.contents[ii] = calloc(tbl.width, sizeof(tbl.contents[ii][0]));
1537             tbl.contents[ii][0] = mod->name;
1538             tbl.contents[ii][1] = strtab(dict_size(mod->commands));
1539             tbl.contents[ii][2] = mod->helpfile_name ? mod->helpfile_name : "(none)";
1540         }
1541     } else if (!(mod = dict_find(modules, argv[1], NULL))) {
1542         reply("MCMSG_UNKNOWN_MODULE", argv[1]);
1543         return 0;
1544     } else {
1545         reply("MCMSG_MODULE_INFO", mod->name);
1546         tbl.length = dict_size(mod->commands) + 1;
1547         tbl.width = 3;
1548         tbl.flags = TABLE_PAD_LEFT;
1549         tbl.contents = calloc(tbl.length, sizeof(tbl.contents[0]));
1550         tbl.contents[0] = calloc(tbl.width, sizeof(tbl.contents[0][0]));
1551         tbl.contents[0][0] = "Command";
1552         tbl.contents[0][1] = "Min. Args";
1553         tbl.contents[0][2] = "Bind Count";
1554         for (ii=1, it=dict_first(mod->commands); it; it=iter_next(it), ii++) {
1555             modcmd = iter_data(it);
1556             tbl.contents[ii] = calloc(tbl.width, sizeof(tbl.contents[ii][0]));
1557             tbl.contents[ii][0] = modcmd->name;
1558             tbl.contents[ii][1] = strtab(modcmd->min_argc);
1559             tbl.contents[ii][2] = strtab(modcmd->bind_count);
1560         }
1561     }
1562     table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
1563     return 0;
1564 }
1565
1566 static MODCMD_FUNC(cmd_stats_services) {
1567     struct helpfile_table tbl;
1568     dict_iterator_t it;
1569     unsigned int ii;
1570     struct service *service;
1571     struct svccmd *svccmd;
1572     char *extra;
1573
1574     if (argc < 2) {
1575         tbl.length = dict_size(services) + 1;
1576         tbl.width = 4;
1577         tbl.flags = TABLE_PAD_LEFT;
1578         tbl.contents = calloc(tbl.length, sizeof(tbl.contents[0]));
1579         tbl.contents[0] = calloc(tbl.width, sizeof(tbl.contents[0][0]));
1580         tbl.contents[0][0] = "Service";
1581         tbl.contents[0][1] = "Commands";
1582         tbl.contents[0][2] = "Priv'd?";
1583         tbl.contents[0][3] = "Trigger";
1584         extra = calloc(2, tbl.length);
1585         for (ii=1, it=dict_first(services); it; it=iter_next(it), ii++) {
1586             service = iter_data(it);
1587             tbl.contents[ii] = calloc(tbl.width, sizeof(tbl.contents[ii][0]));
1588             tbl.contents[ii][0] = service->bot->nick;
1589             tbl.contents[ii][1] = (service->commands && dict_size(service->commands) ? strtab(dict_size(service->commands)) : strtab(0));
1590             tbl.contents[ii][2] = service->privileged ? "yes" : "no";
1591             extra[ii*2] = service->trigger;
1592             tbl.contents[ii][3] = extra+ii*2;
1593         }
1594         table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
1595         free(extra);
1596         return 0;
1597     } else if (!(service = dict_find(services, argv[1], NULL))) {
1598         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1599         return 0;
1600     } else {
1601         tbl.length = dict_size(service->commands) + 1;
1602         tbl.width = 5;
1603         tbl.flags = TABLE_PAD_LEFT | TABLE_NO_FREE;
1604         tbl.contents = calloc(tbl.length, sizeof(tbl.contents[0]));
1605         tbl.contents[0] = calloc(tbl.width, sizeof(tbl.contents[0][0]));
1606         tbl.contents[0][0] = "Command";
1607         tbl.contents[0][1] = "Module";
1608         tbl.contents[0][2] = "ModCmd";
1609         tbl.contents[0][3] = "Alias?";
1610         tbl.contents[0][4] = strdup("Uses");
1611         for (ii=1, it=dict_first(service->commands); it; it=iter_next(it), ii++) {
1612             svccmd = iter_data(it);
1613             tbl.contents[ii] = calloc(tbl.width, sizeof(tbl.contents[ii][0]));
1614             tbl.contents[ii][0] = svccmd->name;
1615             tbl.contents[ii][1] = svccmd->command->parent->name;
1616             tbl.contents[ii][2] = svccmd->command->name;
1617             tbl.contents[ii][3] = svccmd->alias.used ? "yes" : "no";
1618             tbl.contents[ii][4] = extra = malloc(12);
1619             sprintf(extra, "%u", svccmd->uses);
1620         }
1621         reply("MCMSG_SERVICE_INFO", service->bot->nick);
1622         table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
1623         for (ii=0; ii<tbl.length; ii++) {
1624             free((char*)tbl.contents[ii][4]);
1625             free(tbl.contents[ii]);
1626         }
1627         free(tbl.contents);
1628         return 0;
1629     }
1630 }
1631
1632 static MODCMD_FUNC(cmd_showcommands) {
1633     struct svccmd_list commands;
1634     struct helpfile_table tbl;
1635     struct svccmd *svccmd;
1636     dict_iterator_t it;
1637     unsigned int ii, ignore_flags = 0;
1638     unsigned int max_opserv_level = 1000;
1639     unsigned short max_chanserv_level = 500;
1640     char show_opserv_level = 0, show_channel_access = 0;
1641
1642     /* Check to see what the max access they want to see is. */
1643     for (ii=1; ii<argc; ++ii) {
1644         if (isdigit(argv[ii][0]))
1645             max_opserv_level = atoi(argv[ii]);
1646         else
1647             max_chanserv_level = user_level_from_name(argv[ii], UL_OWNER);
1648     }
1649
1650     /* Find the matching commands. */
1651     svccmd_list_init(&commands);
1652     if (cmd->parent->privileged)
1653         ignore_flags = MODCMD_REQUIRE_OPER;
1654     for (it = dict_first(cmd->parent->commands); it; it = iter_next(it)) {
1655         svccmd = iter_data(it);
1656         if (strchr(svccmd->name, ' '))
1657             continue;
1658         if (!svccmd_can_invoke(user, svccmd->parent->bot, svccmd, channel, SVCCMD_QUALIFIED))
1659             continue;
1660         if (svccmd->min_opserv_level > max_opserv_level)
1661             continue;
1662         if (svccmd->min_channel_access > max_chanserv_level)
1663             continue;
1664         if (svccmd->min_opserv_level > 0)
1665             show_opserv_level = 1;
1666         if (svccmd->min_channel_access > 0)
1667             show_channel_access = 1;
1668         if (svccmd->effective_flags
1669             & (MODCMD_REQUIRE_STAFF|MODCMD_REQUIRE_HELPING)
1670             & ~ignore_flags) {
1671             show_channel_access = 1;
1672         }
1673         svccmd_list_append(&commands, svccmd);
1674     }
1675
1676     /* Build the table. */
1677     tbl.length = commands.used + 1;
1678     tbl.width = 1 + show_opserv_level + show_channel_access;
1679     tbl.flags = TABLE_REPEAT_ROWS;
1680     tbl.contents = calloc(tbl.length, sizeof(tbl.contents[0]));
1681     tbl.contents[0] = calloc(tbl.width, sizeof(tbl.contents[0][0]));
1682     tbl.contents[0][ii = 0] = "Command";
1683     if (show_opserv_level)
1684         tbl.contents[0][++ii] = "OpServ Level";
1685     if (show_channel_access)
1686         tbl.contents[0][++ii] = "ChanServ Access";
1687     for (ii=0; ii<commands.used; ++ii) {
1688         svccmd = commands.list[ii];
1689         tbl.contents[ii+1] = calloc(tbl.width, sizeof(tbl.contents[0][0]));
1690         tbl.contents[ii+1][0] = svccmd->name;
1691         if (show_opserv_level)
1692             tbl.contents[ii+1][1] = strtab(svccmd->min_opserv_level);
1693         if (show_channel_access) {
1694             const char *access_name;
1695             int flags = svccmd->effective_flags;
1696             if (flags & MODCMD_REQUIRE_HELPING)
1697                 access_name = "helping";
1698             else if (flags & MODCMD_REQUIRE_STAFF) {
1699                 if (flags & MODCMD_REQUIRE_OPER)
1700                     access_name = "oper";
1701                 else if (flags & MODCMD_REQUIRE_NETWORK_HELPER)
1702                     access_name = "net.helper";
1703                 else
1704                     access_name = "staff";
1705             } else
1706                 access_name = strtab(svccmd->min_channel_access);
1707             tbl.contents[ii+1][1+show_opserv_level] = access_name;
1708         }
1709     }
1710     svccmd_list_clean(&commands);
1711     table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
1712     return 0;
1713 }
1714
1715 static MODCMD_FUNC(cmd_helpfiles) {
1716     struct service *service;
1717     unsigned int ii;
1718
1719     if (!(service = dict_find(services, argv[1], NULL))) {
1720         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1721         return 0;
1722     }
1723
1724     if (argc < 3) {
1725         for (ii=0; ii<service->modules.used; ++ii)
1726             reply("MCMSG_HELPFILE_SEQUENCE", ii+1, service->modules.list[ii]->name);
1727         return 0;
1728     }
1729
1730     service->modules.used = 0;
1731     for (ii=0; ii<argc-2; ii++) {
1732         struct module *module = dict_find(modules, argv[ii+2], NULL);
1733         if (!module) {
1734             reply("MCMSG_UNKNOWN_MODULE", argv[ii+2]);
1735             continue;
1736         }
1737         module_list_append(&service->modules, module);
1738     }
1739     reply("MCMSG_HELPFILE_SEQUENCE_SET", service->bot->nick);
1740     return 1;
1741 }
1742
1743 static MODCMD_FUNC(cmd_service_add) {
1744     const char *nick, *hostname, *desc;
1745     struct userNode *bot;
1746
1747     nick = argv[1];
1748     if (!is_valid_nick(nick)) {
1749         reply("MCMSG_BAD_SERVICE_NICK", nick);
1750         return 0;
1751     }
1752     hostname = argv[2];
1753     desc = unsplit_string(argv+3, argc-3, NULL);
1754     bot = GetUserH(nick);
1755     if (bot && IsService(bot)) {
1756         reply("MCMSG_ALREADY_SERVICE", bot->nick);
1757         return 0;
1758     }
1759     bot = AddLocalUser(nick, nick, hostname, desc, NULL);
1760     service_register(bot);
1761     reply("MCMSG_NEW_SERVICE", bot->nick);
1762     return 1;
1763 }
1764
1765 static MODCMD_FUNC(cmd_service_rename) {
1766     struct service *service;
1767
1768     if (!(service = service_find(argv[1]))) {
1769         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1770         return 0;
1771     }
1772     NickChange(service->bot, argv[2], 0);
1773     reply("MCMSG_SERVICE_RENAMED", service->bot->nick);
1774     return 1;
1775 }
1776
1777 static MODCMD_FUNC(cmd_service_trigger) {
1778     struct userNode *bogon;
1779     struct service *service;
1780     int old_oc = 0;
1781
1782     if (!(service = service_find(argv[1]))) {
1783         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1784         return 0;
1785     }
1786     if (argc < 3) {
1787         if (service->trigger)
1788             reply("MCMSG_CURRENT_TRIGGER", service->bot->nick, service->trigger);
1789         else
1790             reply("MCMSG_NO_TRIGGER", service->bot->nick);
1791         return 1;
1792     }
1793     if (service->trigger) {
1794         old_oc = offchannel_allowed[(unsigned char)service->trigger];
1795         offchannel_allowed[(unsigned char)service->trigger] = 0;
1796         reg_chanmsg_func(service->trigger, NULL, NULL);
1797     }
1798     if (!irccasecmp(argv[2], "none") || !irccasecmp(argv[2], "remove")) {
1799         offchannel_allowed[(unsigned char)service->trigger] = 0;
1800         service->trigger = 0;
1801         reply("MCMSG_REMOVED_TRIGGER", service->bot->nick);
1802     } else if ((bogon = get_chanmsg_bot(argv[2][0]))) {
1803         reply("MCMSG_DUPLICATE_TRIGGER", bogon->nick, argv[2][0]);
1804         return 1;
1805     } else {
1806         service->trigger = argv[2][0];
1807         offchannel_allowed[(unsigned char)service->trigger] = old_oc;
1808         reg_chanmsg_func(service->trigger, service->bot, modcmd_chanmsg);
1809         reply("MCMSG_NEW_TRIGGER", service->bot->nick, service->trigger);
1810     }
1811     return 1;
1812 }
1813
1814 static MODCMD_FUNC(cmd_service_offchannel) {
1815     struct service *service;
1816
1817     if (!(service = service_find(argv[1]))) {
1818         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1819         return 0;
1820     }
1821
1822     if(!service->trigger) {
1823         reply("MCMSG_NO_TRIGGER", service->bot->nick);
1824         return 0;
1825     }
1826
1827     if(argc < 3) {
1828         if(offchannel_allowed[(unsigned char)service->trigger])
1829             reply("MCMSG_OFFCHANNEL_IS_ON", service->bot->nick, service->trigger);
1830         else
1831             reply("MCMSG_OFFCHANNEL_IS_OFF", service->bot->nick, service->trigger);
1832         return 1;
1833     }
1834
1835     if(enabled_string(argv[2])) {
1836         offchannel_allowed[(unsigned char)service->trigger] = 1;
1837         reply("MCMSG_OFFCHANNEL_ON", service->bot->nick, service->trigger);
1838     } else if(disabled_string(argv[2])) {
1839         offchannel_allowed[(unsigned char)service->trigger] = 0;
1840         reply("MCMSG_OFFCHANNEL_OFF", service->bot->nick, service->trigger);
1841     } else {
1842         reply("MSG_INVALID_BINARY", argv[2]);
1843         return 0;
1844     }
1845
1846     return 1;
1847 }
1848
1849 static MODCMD_FUNC(cmd_service_privileged) {
1850     struct service *service;
1851     const char *newval;
1852
1853     if (!(service = service_find(argv[1]))) {
1854         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1855         return 0;
1856     }
1857     if (argc >= 3)
1858         service->privileged = true_string(argv[2]) || enabled_string(argv[2]);
1859     newval = user_find_message(user, service->privileged ? "MSG_ON" : "MSG_OFF");
1860     reply("MCMSG_SERVICE_PRIVILEGED", service->bot->nick, newval);
1861     return 1;
1862 }
1863
1864 static MODCMD_FUNC(cmd_service_remove) {
1865     char *name, *reason;
1866     struct service *service;
1867
1868     name = argv[1];
1869     if (argc > 2)
1870         reason = unsplit_string(argv+2, argc-2, NULL);
1871     else
1872         reason = "Removing bot";
1873     if (!(service = service_find(name))) {
1874         reply("MCMSG_UNKNOWN_SERVICE", name);
1875         return 0;
1876     }
1877     DelUser(service->bot, NULL, 1, reason);
1878     reply("MCMSG_SERVICE_REMOVED", name);
1879     dict_remove(services, name);
1880     return 1;
1881 }
1882
1883 static MODCMD_FUNC(cmd_dump_messages) {
1884     const char *fname = "strings.db";
1885     struct saxdb_context *ctx;
1886     dict_iterator_t it;
1887     FILE *pf;
1888     int res;
1889
1890     if (!(pf = fopen(fname, "w"))) {
1891         reply("MCMSG_FILE_NOT_OPENED", fname);
1892         return 0;
1893     }
1894     if (!(ctx = saxdb_open_context(pf))) {
1895         reply("MSG_INTERNAL_FAILURE");
1896         return 0;
1897     }
1898     if ((res = setjmp(*saxdb_jmp_buf(ctx))) != 0) {
1899         saxdb_close_context(ctx, 1);
1900         reply("MCMSG_MESSAGE_DUMP_FAILED", strerror(res));
1901         return 0;
1902     } else {
1903         for (it = dict_first(lang_C->messages); it; it = iter_next(it))
1904             saxdb_write_string(ctx, iter_key(it), iter_data(it));
1905         saxdb_close_context(ctx, 1);
1906         reply("MCMSG_MESSAGES_DUMPED", fname);
1907         return 1;
1908     }
1909 }
1910
1911 static MODCMD_FUNC(cmd_version) {
1912     /* This function provides copyright management information to end
1913      * users of srvx. You should not alter, disable or remove this
1914      * command or its accessibility to normal IRC users, except to add
1915      * copyright information pertaining to changes you make to srvx.
1916      */
1917     send_message_type(4, user, cmd->parent->bot, "$b"PACKAGE_STRING"$b ("CODENAME"), Built: "__DATE__", "__TIME__".  Copyright 2000-2008 srvx Development Team.");
1918     if (argc > 1)
1919         send_message_type(4, user, cmd->parent->bot, "%s", git_version);
1920     else
1921         send_message_type(12, user, cmd->parent->bot, "The srvx Development Team includes Paul Chang, Adrian Dewhurst, Miles Peterson, Michael Poole and others.\nThe srvx Development Team can be reached at http://sf.net/projects/srvx/ or in #srvx on irc.gamesurge.net.");
1922     return 1;
1923 }
1924
1925 static MODCMD_FUNC(cmd_tell) {
1926     struct userNode *target;
1927     char *msg;
1928
1929     target = GetUserH(argv[1]);
1930     msg = unsplit_string(argv + 2, argc - 2, NULL);
1931     if (!target) {
1932         reply("MSG_NOT_TARGET_NAME");
1933         return 0;
1934     }
1935     send_message_type(MSG_TYPE_NOXLATE, target, cmd->parent->bot, "%s", msg);
1936     return 1;
1937 }
1938
1939 void
1940 modcmd_nick_change(struct userNode *user, const char *old_nick) {
1941     struct service *svc;
1942     if (!(svc = dict_find(services, old_nick, NULL)))
1943         return;
1944     dict_remove2(services, old_nick, 1);
1945     dict_insert(services, user->nick, svc);
1946 }
1947
1948 void
1949 modcmd_cleanup(void) {
1950     dict_delete(services);
1951     dict_delete(modules);
1952     if (suf_list)
1953         free(suf_list);
1954 }
1955
1956 static void
1957 modcmd_saxdb_write_command(struct saxdb_context *ctx, struct svccmd *cmd) {
1958     char buf[MAXLEN];
1959     unsigned int nn, len, pos;
1960     struct svccmd *template = cmd->command->defaults;
1961
1962     saxdb_start_record(ctx, cmd->name, 0);
1963     sprintf(buf, "%s.%s", cmd->command->parent->name, cmd->command->name);
1964     saxdb_write_string(ctx, "command", buf);
1965     if (cmd->alias.used)
1966         saxdb_write_string_list(ctx, "aliased", &cmd->alias);
1967     if (cmd->min_opserv_level != template->min_opserv_level)
1968         saxdb_write_int(ctx, "oper_access", cmd->min_opserv_level);
1969     if (cmd->min_channel_access != template->min_channel_access)
1970         saxdb_write_int(ctx, "channel_access", cmd->min_channel_access);
1971     if (cmd->flags != template->flags) {
1972         if (cmd->flags) {
1973             for (nn=pos=0; modcmd_flags[nn].name; ++nn) {
1974                 const struct modcmd_flag *flag = &modcmd_flags[nn];
1975                 if (cmd->flags & flag->flag) {
1976                     buf[pos++] = '+';
1977                     len = strlen(flag->name);
1978                     memcpy(buf+pos, flag->name, len);
1979                     pos += len;
1980                     buf[pos++] = ',';
1981                 }
1982             }
1983         } else {
1984             pos = 1;
1985         }
1986         buf[--pos] = 0;
1987         saxdb_write_string(ctx, "flags", buf);
1988     }
1989     if ((cmd->req_account_flags != template->req_account_flags)
1990         || (cmd->deny_account_flags != template->req_account_flags)) {
1991         pos = 0;
1992         if (cmd->req_account_flags) {
1993             buf[pos++] = '+';
1994             for (nn=0; nn<32; nn++)
1995                 if (cmd->req_account_flags & (1 << nn))
1996                     buf[pos++] = handle_flags[nn];
1997         }
1998         if (cmd->deny_account_flags) {
1999             buf[pos++] = '-';
2000             for (nn=0; nn<32; nn++)
2001                 if (cmd->deny_account_flags & (1 << nn))
2002                     buf[pos++] = handle_flags[nn];
2003         }
2004         buf[pos] = 0;
2005         saxdb_write_string(ctx, "account_flags", buf);
2006     }
2007     saxdb_end_record(ctx);
2008 }
2009
2010 static int
2011 modcmd_saxdb_write(struct saxdb_context *ctx) {
2012     struct string_list slist;
2013     dict_iterator_t it, it2;
2014     struct service *service;
2015     unsigned int ii;
2016
2017     saxdb_start_record(ctx, "bots", 1);
2018     for (it = dict_first(services); it; it = iter_next(it)) {
2019         char buff[16];
2020         char modes[32];
2021
2022         service = iter_data(it);
2023         saxdb_start_record(ctx, service->bot->nick, 1);
2024         if (service->trigger) {
2025             buff[0] = service->trigger;
2026             buff[1] = '\0';
2027             saxdb_write_string(ctx, "trigger", buff);
2028             if(offchannel_allowed[(unsigned char)service->trigger])
2029                 saxdb_write_int(ctx, "offchannel", 1);
2030         }
2031         saxdb_write_string(ctx, "description", service->bot->info);
2032         saxdb_write_string(ctx, "hostname", service->bot->hostname);
2033         if (service->bot->modes) {
2034             irc_user_modes(service->bot, modes, sizeof(modes));
2035             saxdb_write_string(ctx, "modes", modes);
2036         }
2037         if (service->privileged)
2038             saxdb_write_string(ctx, "privileged", "1");
2039         saxdb_end_record(ctx);
2040     }
2041     saxdb_end_record(ctx);
2042
2043     saxdb_start_record(ctx, "services", 1);
2044     for (it = dict_first(services); it; it = iter_next(it)) {
2045         service = iter_data(it);
2046         saxdb_start_record(ctx, service->bot->nick, 1);
2047         for (it2 = dict_first(service->commands); it2; it2 = iter_next(it2))
2048             modcmd_saxdb_write_command(ctx, iter_data(it2));
2049         saxdb_end_record(ctx);
2050     }
2051     saxdb_end_record(ctx);
2052
2053     saxdb_start_record(ctx, "helpfiles", 1);
2054     slist.size = 0;
2055     for (it = dict_first(services); it; it = iter_next(it)) {
2056         service = iter_data(it);
2057         slist.used = 0;
2058         for (ii = 0; ii < service->modules.used; ++ii)
2059             string_list_append(&slist, service->modules.list[ii]->name);
2060         saxdb_write_string_list(ctx, iter_key(it), &slist);
2061     }
2062     if (slist.list)
2063         free(slist.list);
2064     saxdb_end_record(ctx);
2065
2066     return 0;
2067 }
2068
2069 static int
2070 append_entry(const char *key, UNUSED_ARG(void *data), void *extra) {
2071     struct helpfile_expansion *exp = extra;
2072     int row = exp->value.table.length++;
2073     exp->value.table.contents[row] = calloc(1, sizeof(char*));
2074     exp->value.table.contents[row][0] = key;
2075     return 0;
2076 }
2077
2078 static struct helpfile_expansion
2079 modcmd_expand(const char *variable) {
2080     struct helpfile_expansion exp;
2081     extern struct userNode *message_source;
2082     struct service *service;
2083
2084     service = dict_find(services, message_source->nick, NULL);
2085     if (!irccasecmp(variable, "index")) {
2086         exp.type = HF_TABLE;
2087         exp.value.table.length = 1;
2088         exp.value.table.width = 1;
2089         exp.value.table.flags = TABLE_REPEAT_ROWS;
2090         exp.value.table.contents = calloc(dict_size(service->commands)+1, sizeof(char**));
2091         exp.value.table.contents[0] = calloc(1, sizeof(char*));
2092         exp.value.table.contents[0][0] = "Commands:";
2093         dict_foreach(service->commands, append_entry, &exp);
2094         return exp;
2095     } else if (!irccasecmp(variable, "languages")) {
2096         struct string_buffer sbuf;
2097         dict_iterator_t it;
2098         sbuf.used = sbuf.size = 0;
2099         sbuf.list = NULL;
2100         for (it = dict_first(languages); it; it = iter_next(it)) {
2101             string_buffer_append_string(&sbuf, iter_key(it));
2102             string_buffer_append(&sbuf, ' ');
2103         }
2104         sbuf.list[--sbuf.used] = 0;
2105         exp.type = HF_STRING;
2106         exp.value.str = sbuf.list;
2107         return exp;
2108     }
2109     exp.type = HF_STRING;
2110     exp.value.str = NULL;
2111     return exp;
2112 }
2113
2114 static void
2115 modcmd_load_bots(struct dict *db, int default_nick) {
2116     dict_iterator_t it;
2117
2118     for (it = dict_first(db); it; it = iter_next(it)) {
2119         struct record_data *rd;
2120         struct service *svc;
2121         const char *nick, *desc, *hostname, *modes;
2122
2123         rd = iter_data(it);
2124         if (rd->type != RECDB_OBJECT) {
2125             log_module(MAIN_LOG, LOG_ERROR, "Bad type for 'bots/%s' in modcmd db (expected object).", iter_key(it));
2126             continue;
2127         }
2128         nick = database_get_data(rd->d.object, "nick", RECDB_QSTRING);
2129         if (!nick) {
2130             if (default_nick)
2131                 nick = iter_key(it);
2132             else
2133                 continue;
2134         }
2135         svc = service_find(nick);
2136         desc = database_get_data(rd->d.object, "description", RECDB_QSTRING);
2137         hostname = database_get_data(rd->d.object, "hostname", RECDB_QSTRING);
2138         modes = database_get_data(rd->d.object, "modes", RECDB_QSTRING);
2139         if (desc) {
2140             if (!svc)
2141                 svc = service_register(AddLocalUser(nick, nick, hostname, desc, modes));
2142             else if (hostname)
2143                 strcpy(svc->bot->hostname, hostname);
2144             desc = database_get_data(rd->d.object, "trigger", RECDB_QSTRING);
2145             if (desc) {
2146                 svc->trigger = desc[0];
2147                 desc = database_get_data(rd->d.object, "offchannel", RECDB_QSTRING);
2148                 if(desc)
2149                     offchannel_allowed[(unsigned char)svc->trigger] = atoi(desc);
2150             }
2151             desc = database_get_data(rd->d.object, "privileged", RECDB_QSTRING);
2152             if (desc && (true_string(desc) || enabled_string(desc)))
2153                 svc->privileged = 1;
2154         }
2155     }
2156 }
2157
2158 static void
2159 modcmd_conf_read(void) {
2160     modcmd_load_bots(conf_get_data("services", RECDB_OBJECT), 0);
2161 }
2162
2163 void
2164 modcmd_init(void) {
2165     qsort(modcmd_flags, ArrayLength(modcmd_flags)-1, sizeof(modcmd_flags[0]), flags_qsort);
2166     modules = dict_new();
2167     dict_set_free_data(modules, free_module);
2168     services = dict_new();
2169     dict_set_free_data(services, free_service);
2170     reg_nick_change_func(modcmd_nick_change);
2171     reg_exit_func(modcmd_cleanup);
2172     conf_register_reload(modcmd_conf_read);
2173
2174     modcmd_module = module_register("modcmd", MAIN_LOG, "modcmd.help", modcmd_expand);
2175     bind_command = modcmd_register(modcmd_module, "bind", cmd_bind, 4, MODCMD_KEEP_BOUND, "oper_level", "800", NULL);
2176     help_command = modcmd_register(modcmd_module, "help", cmd_help, 1, 0, "flags", "+nolog", NULL);
2177     modcmd_register(modcmd_module, "command", cmd_command, 2, 0, "flags", "+nolog", NULL);
2178     modcmd_register(modcmd_module, "modcmd", cmd_modcmd, 2, MODCMD_KEEP_BOUND, "template", "bind", NULL);
2179     modcmd_register(modcmd_module, "god", cmd_god, 0, MODCMD_REQUIRE_AUTHED, "flags", "+oper,+networkhelper", NULL);
2180     modcmd_register(modcmd_module, "readhelp", cmd_readhelp, 2, 0, "oper_level", "650", NULL);
2181     modcmd_register(modcmd_module, "timecmd", cmd_timecmd, 2, 0, "oper_level", "1", NULL);
2182     modcmd_register(modcmd_module, "unbind", cmd_unbind, 3, 0, "template", "bind", NULL);
2183     modcmd_register(modcmd_module, "joiner", cmd_joiner, 1, 0, NULL);
2184     modcmd_register(modcmd_module, "stats modules", cmd_stats_modules, 1, 0, "flags", "+oper", NULL);
2185     modcmd_register(modcmd_module, "stats services", cmd_stats_services, 1, 0, "flags", "+oper", NULL);
2186     modcmd_register(modcmd_module, "showcommands", cmd_showcommands, 1, 0, "flags", "+acceptchan", NULL);
2187     modcmd_register(modcmd_module, "helpfiles", cmd_helpfiles, 2, 0, "template", "bind", NULL);
2188     modcmd_register(modcmd_module, "service add", cmd_service_add, 4, 0, "flags", "+oper", NULL);
2189     modcmd_register(modcmd_module, "service rename", cmd_service_rename, 3, 0, "flags", "+oper", NULL);
2190     modcmd_register(modcmd_module, "service trigger", cmd_service_trigger, 2, 0, "flags", "+oper", NULL);
2191     modcmd_register(modcmd_module, "service offchannel", cmd_service_offchannel, 2, 0, "flags", "+oper", NULL);
2192     modcmd_register(modcmd_module, "service privileged", cmd_service_privileged, 2, 0, "flags", "+oper", NULL);
2193     modcmd_register(modcmd_module, "service remove", cmd_service_remove, 2, 0, "flags", "+oper", NULL);
2194     modcmd_register(modcmd_module, "dumpmessages", cmd_dump_messages, 1, 0, "oper_level", "1000", NULL);
2195     modcmd_register(modcmd_module, "tell", cmd_tell, 3, 0, "flags", "+oper", NULL);
2196     version_command = modcmd_register(modcmd_module, "version", cmd_version, 1, 0, NULL);
2197     message_register_table(msgtab);
2198 }
2199
2200 static void
2201 modcmd_db_load_command(struct service *service, const char *cmdname, struct dict *obj) {
2202     struct svccmd *svccmd;
2203     struct module *module;
2204     struct modcmd *modcmd;
2205     struct string_list *slist;
2206     const char *str, *sep;
2207     char buf[MAXLEN];
2208
2209     str = database_get_data(obj, "command", RECDB_QSTRING);
2210     if (!str) {
2211         log_module(MAIN_LOG, LOG_ERROR, "Missing command for service %s command %s in modcmd.db", service->bot->nick, cmdname);
2212         return;
2213     }
2214     sep = strchr(str, '.');
2215     if (!sep) {
2216         log_module(MAIN_LOG, LOG_ERROR, "Invalid command %s for service %s command %s in modcmd.db", str, service->bot->nick, cmdname);
2217         return;
2218     }
2219     memcpy(buf, str, sep-str);
2220     buf[sep-str] = 0;
2221     if (!(module = module_find(buf))) {
2222         log_module(MAIN_LOG, LOG_ERROR, "Unknown module %s for service %s command %s in modcmd.db", buf, service->bot->nick, cmdname);
2223         return;
2224     }
2225     if (!(modcmd = dict_find(module->commands, sep+1, NULL))) {
2226         log_module(MAIN_LOG, LOG_ERROR, "Unknown command %s in module %s for service %s command %s", sep+1, module->name, service->bot->nick, cmdname);
2227         return;
2228     }
2229     /* Now that we know we have a command to use, fill in the basics. */
2230     svccmd = calloc(1, sizeof(*svccmd));
2231     svccmd_insert(service, strdup(cmdname), svccmd, modcmd);
2232     if ((str = database_get_data(obj, "template", RECDB_QSTRING))) {
2233         add_pending_template(svccmd, str);
2234     } else {
2235         svccmd_copy_rules(svccmd, modcmd->defaults);
2236     }
2237     if ((str = database_get_data(obj, "account_flags", RECDB_QSTRING))) {
2238         svccmd->req_account_flags = svccmd->deny_account_flags = 0;
2239         svccmd_configure(svccmd, NULL, service->bot, "account_flags", str);
2240     }
2241     if ((str = database_get_data(obj, "flags", RECDB_QSTRING))) {
2242         svccmd->flags = 0;
2243         svccmd_configure(svccmd, NULL, service->bot, "flags", str);
2244     }
2245     if ((str = database_get_data(obj, "oper_access", RECDB_QSTRING))
2246         || (str = database_get_data(obj, "opserv_level", RECDB_QSTRING))) {
2247         svccmd_configure(svccmd, NULL, service->bot, "oper_access", str);
2248     }
2249     if ((str = database_get_data(obj, "channel_access", RECDB_QSTRING))
2250         || (str = database_get_data(obj, "chanserv_level", RECDB_QSTRING))) {
2251         svccmd_configure(svccmd, NULL, service->bot, "channel_access", str);
2252     }
2253     if ((slist = database_get_data(obj, "aliased", RECDB_STRING_LIST))) {
2254         unsigned int nn;
2255         svccmd->alias.used = svccmd->alias.size = slist->used;
2256         svccmd->alias.list = calloc(svccmd->alias.size, sizeof(svccmd->alias.list[0]));
2257         for (nn=0; nn<slist->used; ++nn)
2258             svccmd->alias.list[nn] = strdup(slist->list[nn]);
2259     }
2260     modcmd_set_effective_flags(svccmd);
2261 }
2262
2263 static struct svccmd *
2264 service_make_alias(struct service *service, const char *alias, ...) {
2265     char *arg, *argv[MAXNUMPARAMS];
2266     unsigned int nn, argc;
2267     struct svccmd *svccmd, *template;
2268     va_list args;
2269
2270     va_start(args, alias);
2271     argc = 0;
2272     while (1) {
2273         arg = va_arg(args, char*);
2274         if (!arg)
2275             break;
2276         argv[argc++] = arg;
2277     }
2278     va_end(args);
2279     svccmd = calloc(1, sizeof(*svccmd));
2280     if (!(template = svccmd_resolve_name(svccmd, argv[0]))) {
2281         log_module(MAIN_LOG, LOG_ERROR, "Invalid base command %s for alias %s in service %s", argv[0], alias, service->bot->nick);
2282         free(svccmd->name);
2283         free(svccmd);
2284         return NULL;
2285     }
2286     if (argc > 1) {
2287         svccmd->alias.used = svccmd->alias.size = argc;
2288         svccmd->alias.list = calloc(svccmd->alias.size, sizeof(svccmd->alias.list[0]));
2289         for (nn=0; nn<argc; nn++)
2290             svccmd->alias.list[nn] = strdup(argv[nn]);
2291     }
2292     svccmd_insert(service, strdup(alias), svccmd, template->command);
2293     svccmd_copy_rules(svccmd, template);
2294     return svccmd;
2295 }
2296
2297 static int saxdb_present;
2298
2299 static int
2300 modcmd_saxdb_read(struct dict *db) {
2301     struct dict *db2;
2302     dict_iterator_t it, it2;
2303     struct record_data *rd, *rd2;
2304     struct service *service;
2305
2306     modcmd_load_bots(database_get_data(db, "bots", RECDB_OBJECT), 1);
2307     db2 = database_get_data(db, "services", RECDB_OBJECT);
2308     if (!db2) {
2309         log_module(MAIN_LOG, LOG_ERROR, "Missing section 'services' in modcmd db.");
2310         return 1;
2311     }
2312     for (it = dict_first(db2); it; it = iter_next(it)) {
2313         rd = iter_data(it);
2314         if (rd->type != RECDB_OBJECT) {
2315             log_module(MAIN_LOG, LOG_ERROR, "Bad type for 'services/%s' in modcmd db (expected object).", iter_key(it));
2316             continue;
2317         }
2318         if (!(service = service_find(iter_key(it)))) {
2319             log_module(MAIN_LOG, LOG_ERROR, "Unknown service '%s' listed in modcmd db.", iter_key(it));
2320             continue;
2321         }
2322         for (it2 = dict_first(rd->d.object); it2; it2 = iter_next(it2)) {
2323             rd2 = iter_data(it2);
2324             if (rd2->type != RECDB_OBJECT) {
2325                 log_module(MAIN_LOG, LOG_ERROR, "Bad type for 'services/%s/%s' in modcmd db (expected object).", iter_key(it), iter_key(it2));
2326                 continue;
2327             }
2328             modcmd_db_load_command(service, iter_key(it2), rd2->d.object);
2329         }
2330     }
2331     db2 = database_get_data(db, "helpfiles", RECDB_OBJECT);
2332     for (it = dict_first(db2); it; it = iter_next(it)) {
2333         struct module *module;
2334         struct string_list *slist;
2335         unsigned int ii;
2336
2337         rd = iter_data(it);
2338         if (rd->type != RECDB_STRING_LIST) {
2339             log_module(MAIN_LOG, LOG_ERROR, "Bad type for 'helpfiles/%s' in modcmd db (expected string list).", iter_key(it));
2340             continue;
2341         }
2342         slist = rd->d.slist;
2343         if (!(service = service_find(iter_key(it)))) {
2344             /* We probably whined about the service being missing above. */
2345             continue;
2346         }
2347         service->modules.used = 0;
2348         for (ii=0; ii<slist->used; ++ii) {
2349             if (!(module = dict_find(modules, slist->list[ii], NULL))) {
2350                 log_module(MAIN_LOG, LOG_ERROR, "Unknown module '%s' listed in modcmd 'helpfiles/%s'.", slist->list[ii], iter_key(it));
2351                 continue;
2352             }
2353             module_list_append(&service->modules, module);
2354         }
2355     }
2356     saxdb_present = 1;
2357     return 0;
2358 }
2359
2360 static void
2361 create_default_binds(void) {
2362     /* Which services should import which modules by default? */
2363     struct {
2364         const char *svcname;
2365         /* C is lame and requires a fixed size for this array.
2366          * Be sure you NULL-terminate each array and increment the
2367          * size here if you add more default modules to any
2368          * service. */
2369         const char *modnames[8];
2370     } def_binds[] = {
2371         { "ChanServ", { "ChanServ", NULL } },
2372         { "Global", { "Global", NULL } },
2373         { "NickServ", { "NickServ", NULL } },
2374         { "OpServ", { "OpServ", "modcmd", "sendmail", "saxdb", "proxycheck", NULL } },
2375         { NULL, { NULL } }
2376     };
2377     unsigned int ii, jj;
2378     char buf[128], *nick;
2379     struct service *service;
2380     struct module *module;
2381
2382     for (ii = 0; def_binds[ii].svcname; ++ii) {
2383         sprintf(buf, "services/%s/nick", def_binds[ii].svcname);
2384         if (!(nick = conf_get_data(buf, RECDB_QSTRING)))
2385             continue;
2386         if (!(service = service_find(nick)))
2387             continue;
2388         if (dict_size(service->commands) > 0)
2389             continue;
2390
2391         /* Bind the default modules for this service to it */
2392         for (jj = 0; def_binds[ii].modnames[jj]; ++jj) {
2393             if (!(module = module_find(def_binds[ii].modnames[jj])))
2394                 continue;
2395             service_bind_module(service, module);
2396         }
2397
2398         /* Bind the help and version commands to this service */
2399         service_bind_modcmd(service, help_command, help_command->name);
2400         service_bind_modcmd(service, version_command, version_command->name);
2401
2402         /* Now some silly hax.. (aliases that most people want) */
2403         if (!irccasecmp(def_binds[ii].svcname, "ChanServ")) {
2404             service_make_alias(service, "addowner", "*chanserv.adduser", "$1", "owner", NULL);
2405             service_make_alias(service, "addcoowner", "*chanserv.adduser", "$1", "coowner", NULL);
2406             service_make_alias(service, "addmaster", "*chanserv.adduser", "$1", "master", NULL);
2407             service_make_alias(service, "addop", "*chanserv.adduser", "$1", "op", NULL);
2408             service_make_alias(service, "addpeon", "*chanserv.adduser", "$1", "peon", NULL);
2409             service_make_alias(service, "delowner", "*chanserv.deluser", "owner", "$1", NULL);
2410             service_make_alias(service, "delcoowner", "*chanserv.deluser", "coowner", "$1", NULL);
2411             service_make_alias(service, "delmaster", "*chanserv.deluser", "master", "$1", NULL);
2412             service_make_alias(service, "delop", "*chanserv.deluser", "op", "$1", NULL);
2413             service_make_alias(service, "delpeon", "*chanserv.deluser", "peon", "$1", NULL);
2414             service_make_alias(service, "command", "*modcmd.command", NULL);
2415             service_make_alias(service, "god", "*modcmd.god", NULL);
2416         } else if (!irccasecmp(def_binds[ii].svcname, "OpServ")) {
2417             struct svccmd *svccmd;
2418             svccmd = service_make_alias(service, "stats", "*modcmd.joiner", NULL);
2419             svccmd->min_opserv_level = 101;
2420             svccmd = service_make_alias(service, "devnull", "*modcmd.joiner", NULL);
2421             svccmd->min_opserv_level = 200;
2422             svccmd = service_make_alias(service, "service", "*modcmd.joiner", NULL);
2423             svccmd->min_opserv_level = 900;
2424         }
2425     }
2426 }
2427
2428 static void
2429 import_aliases_db() {
2430     struct dict *db;
2431     dict_iterator_t it, it2;
2432     struct record_data *rd, *rd2;
2433     struct service *service;
2434     struct module *module;
2435
2436     if (!(db = parse_database("aliases.db")))
2437         return;
2438     for (it = dict_first(db); it; it = iter_next(it)) {
2439         service = service_find(iter_key(it));
2440         if (!service)
2441             continue;
2442         module = module_find(service->bot->nick);
2443         rd = iter_data(it);
2444         if (rd->type != RECDB_OBJECT)
2445             continue;
2446         for (it2 = dict_first(rd->d.object); it2; it2 = iter_next(it2)) {
2447             struct modcmd *command;
2448             rd2 = iter_data(it2);
2449             if (rd2->type != RECDB_QSTRING)
2450                 continue;
2451             command = dict_find(module->commands, rd2->d.qstring, NULL);
2452             if (!command)
2453                 continue;
2454             service_bind_modcmd(service, command, iter_key(it2));
2455         }
2456     }
2457 }
2458
2459 void
2460 modcmd_finalize(void) {
2461     dict_iterator_t it;
2462
2463     /* Check databases. */
2464     saxdb_register("modcmd", modcmd_saxdb_read, modcmd_saxdb_write);
2465     create_default_binds();
2466     if (!saxdb_present)
2467         import_aliases_db();
2468
2469     /* Register services for their triggers. */
2470     for (it = dict_first(services); it; it = iter_next(it)) {
2471         struct service *svc = iter_data(it);
2472         if (svc->trigger)
2473             reg_chanmsg_func(svc->trigger, svc->bot, modcmd_chanmsg);
2474     }
2475
2476     /* Resolve command rule-templates. */
2477     while (pending_templates) {
2478         struct pending_template *ptempl = pending_templates;
2479         struct svccmd *svccmd;
2480
2481         pending_templates = ptempl->next;
2482         /* Only overwrite the current template if we have a valid template. */
2483         if (!strcmp(ptempl->base, "*")) {
2484             /* Do nothing. */
2485         } else if ((svccmd = svccmd_resolve_name(ptempl->cmd, ptempl->base))) {
2486             svccmd_copy_rules(ptempl->cmd, svccmd);
2487         } else {
2488             assert(ptempl->cmd->parent);
2489             log_module(MAIN_LOG, LOG_ERROR, "Unable to resolve template name %s for command %s in service %s.", ptempl->base, ptempl->cmd->name, ptempl->cmd->parent->bot->nick);
2490         }
2491         free(ptempl->base);
2492         free(ptempl);
2493     }
2494 }