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