2ec8c6f81cd1298c17204702460b932b687fe61f
[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) %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 = 4;
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         extra = calloc(2, tbl.length);
1610         for (ii=1, it=dict_first(services); it; it=iter_next(it), ii++) {
1611             service = iter_data(it);
1612             tbl.contents[ii] = calloc(tbl.width, sizeof(tbl.contents[ii][0]));
1613             tbl.contents[ii][0] = service->bot->nick;
1614             tbl.contents[ii][1] = (service->commands && dict_size(service->commands) ? strtab(dict_size(service->commands)) : strtab(0));
1615             tbl.contents[ii][2] = service->privileged ? "yes" : "no";
1616             extra[ii*2] = service->trigger;
1617             tbl.contents[ii][3] = extra+ii*2;
1618         }
1619         table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
1620         free(extra);
1621         return 0;
1622     } else if (!(service = dict_find(services, argv[1], NULL))) {
1623         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1624         return 0;
1625     } else {
1626         tbl.length = dict_size(service->commands) + 1;
1627         tbl.width = 5;
1628         tbl.flags = TABLE_PAD_LEFT | TABLE_NO_FREE;
1629         tbl.contents = calloc(tbl.length, sizeof(tbl.contents[0]));
1630         tbl.contents[0] = calloc(tbl.width, sizeof(tbl.contents[0][0]));
1631         tbl.contents[0][0] = "Command";
1632         tbl.contents[0][1] = "Module";
1633         tbl.contents[0][2] = "ModCmd";
1634         tbl.contents[0][3] = "Alias?";
1635         tbl.contents[0][4] = strdup("Uses");
1636         for (ii=1, it=dict_first(service->commands); it; it=iter_next(it), ii++) {
1637             svccmd = iter_data(it);
1638             tbl.contents[ii] = calloc(tbl.width, sizeof(tbl.contents[ii][0]));
1639             tbl.contents[ii][0] = svccmd->name;
1640             tbl.contents[ii][1] = svccmd->command->parent->name;
1641             tbl.contents[ii][2] = svccmd->command->name;
1642             tbl.contents[ii][3] = svccmd->alias.used ? "yes" : "no";
1643             tbl.contents[ii][4] = extra = malloc(12);
1644             sprintf(extra, "%u", svccmd->uses);
1645         }
1646         reply("MCMSG_SERVICE_INFO", service->bot->nick);
1647         table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
1648         for (ii=0; ii<tbl.length; ii++) {
1649             free((char*)tbl.contents[ii][4]);
1650             free(tbl.contents[ii]);
1651         }
1652         free(tbl.contents);
1653         return 0;
1654     }
1655 }
1656
1657 static MODCMD_FUNC(cmd_showcommands) {
1658     struct svccmd_list commands;
1659     struct helpfile_table tbl;
1660     struct svccmd *svccmd;
1661     dict_iterator_t it;
1662     unsigned int ii, ignore_flags = 0;
1663     unsigned int max_opserv_level = 1000;
1664     unsigned short max_chanserv_level = 500;
1665     char show_opserv_level = 0, show_channel_access = 0;
1666
1667     /* Check to see what the max access they want to see is. */
1668     for (ii=1; ii<argc; ++ii) {
1669         if (isdigit(argv[ii][0]))
1670             max_opserv_level = atoi(argv[ii]);
1671         else
1672             max_chanserv_level = user_level_from_name(argv[ii], UL_OWNER);
1673     }
1674
1675     /* Find the matching commands. */
1676     svccmd_list_init(&commands);
1677     if (cmd->parent->privileged)
1678         ignore_flags = MODCMD_REQUIRE_OPER;
1679     for (it = dict_first(cmd->parent->commands); it; it = iter_next(it)) {
1680         svccmd = iter_data(it);
1681         if (strchr(svccmd->name, ' '))
1682             continue;
1683         if (!svccmd_can_invoke(user, svccmd->parent->bot, svccmd, channel, SVCCMD_QUALIFIED))
1684             continue;
1685         if (svccmd->min_opserv_level > max_opserv_level)
1686             continue;
1687         if (svccmd->min_channel_access > max_chanserv_level)
1688             continue;
1689         if (svccmd->min_opserv_level > 0)
1690             show_opserv_level = 1;
1691         if (svccmd->min_channel_access > 0)
1692             show_channel_access = 1;
1693         if (svccmd->effective_flags
1694             & (MODCMD_REQUIRE_STAFF|MODCMD_REQUIRE_HELPING)
1695             & ~ignore_flags) {
1696             show_channel_access = 1;
1697         }
1698         svccmd_list_append(&commands, svccmd);
1699     }
1700
1701     /* Build the table. */
1702     tbl.length = commands.used + 1;
1703     tbl.width = 1 + show_opserv_level + show_channel_access;
1704     tbl.flags = TABLE_REPEAT_ROWS;
1705     tbl.contents = calloc(tbl.length, sizeof(tbl.contents[0]));
1706     tbl.contents[0] = calloc(tbl.width, sizeof(tbl.contents[0][0]));
1707     tbl.contents[0][ii = 0] = "Command";
1708     if (show_opserv_level)
1709         tbl.contents[0][++ii] = "OpServ Level";
1710     if (show_channel_access)
1711         tbl.contents[0][++ii] = "ChanServ Access";
1712     for (ii=0; ii<commands.used; ++ii) {
1713         svccmd = commands.list[ii];
1714         tbl.contents[ii+1] = calloc(tbl.width, sizeof(tbl.contents[0][0]));
1715         tbl.contents[ii+1][0] = svccmd->name;
1716         if (show_opserv_level)
1717             tbl.contents[ii+1][1] = strtab(svccmd->min_opserv_level);
1718         if (show_channel_access) {
1719             const char *access_name;
1720             int flags = svccmd->effective_flags;
1721             if (flags & MODCMD_REQUIRE_HELPING)
1722                 access_name = "helping";
1723             else if (flags & MODCMD_REQUIRE_STAFF) {
1724                 if (flags & MODCMD_REQUIRE_OPER)
1725                     access_name = "oper";
1726                 else if (flags & MODCMD_REQUIRE_NETWORK_HELPER)
1727                     access_name = "net.helper";
1728                 else
1729                     access_name = "staff";
1730             } else
1731                 access_name = strtab(svccmd->min_channel_access);
1732             tbl.contents[ii+1][1+show_opserv_level] = access_name;
1733         }
1734     }
1735     svccmd_list_clean(&commands);
1736     table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
1737     return 0;
1738 }
1739
1740 static MODCMD_FUNC(cmd_helpfiles) {
1741     struct service *service;
1742     unsigned int ii;
1743
1744     if (!(service = dict_find(services, argv[1], NULL))) {
1745         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1746         return 0;
1747     }
1748
1749     if (argc < 3) {
1750         for (ii=0; ii<service->modules.used; ++ii)
1751             reply("MCMSG_HELPFILE_SEQUENCE", ii+1, service->modules.list[ii]->name);
1752         return 0;
1753     }
1754
1755     service->modules.used = 0;
1756     for (ii=0; ii<argc-2; ii++) {
1757         struct module *module = dict_find(modules, argv[ii+2], NULL);
1758         if (!module) {
1759             reply("MCMSG_UNKNOWN_MODULE", argv[ii+2]);
1760             continue;
1761         }
1762         module_list_append(&service->modules, module);
1763     }
1764     reply("MCMSG_HELPFILE_SEQUENCE_SET", service->bot->nick);
1765     return 1;
1766 }
1767
1768 static MODCMD_FUNC(cmd_service_add) {
1769     const char *nick, *hostname, *desc;
1770     struct userNode *bot;
1771
1772     nick = argv[1];
1773     if (!is_valid_nick(nick)) {
1774         reply("MCMSG_BAD_SERVICE_NICK", nick);
1775         return 0;
1776     }
1777     hostname = argv[2];
1778     desc = unsplit_string(argv+3, argc-3, NULL);
1779     bot = GetUserH(nick);
1780     if (bot && IsService(bot)) {
1781         reply("MCMSG_ALREADY_SERVICE", bot->nick);
1782         return 0;
1783     }
1784     bot = AddLocalUser(nick, nick, hostname, desc, NULL);
1785     service_register(bot);
1786     reply("MCMSG_NEW_SERVICE", bot->nick);
1787     return 1;
1788 }
1789
1790 static MODCMD_FUNC(cmd_service_rename) {
1791     struct service *service;
1792
1793     if (!(service = service_find(argv[1]))) {
1794         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1795         return 0;
1796     }
1797     NickChange(service->bot, argv[2], 0);
1798     reply("MCMSG_SERVICE_RENAMED", service->bot->nick);
1799     return 1;
1800 }
1801
1802 static MODCMD_FUNC(cmd_service_trigger) {
1803     struct userNode *bogon;
1804     struct service *service;
1805     int old_oc = 0;
1806
1807     if (!(service = service_find(argv[1]))) {
1808         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1809         return 0;
1810     }
1811     if (argc < 3) {
1812         if (service->trigger)
1813             reply("MCMSG_CURRENT_TRIGGER", service->bot->nick, service->trigger);
1814         else
1815             reply("MCMSG_NO_TRIGGER", service->bot->nick);
1816         return 1;
1817     }
1818     if (service->trigger) {
1819         old_oc = offchannel_allowed[(unsigned char)service->trigger];
1820         offchannel_allowed[(unsigned char)service->trigger] = 0;
1821         reg_chanmsg_func(service->trigger, NULL, NULL);
1822     }
1823     if (!irccasecmp(argv[2], "none") || !irccasecmp(argv[2], "remove")) {
1824         offchannel_allowed[(unsigned char)service->trigger] = 0;
1825         service->trigger = 0;
1826         reply("MCMSG_REMOVED_TRIGGER", service->bot->nick);
1827     } else if ((bogon = get_chanmsg_bot(argv[2][0]))) {
1828         reply("MCMSG_DUPLICATE_TRIGGER", bogon->nick, argv[2][0]);
1829         return 1;
1830     } else {
1831         service->trigger = argv[2][0];
1832         offchannel_allowed[(unsigned char)service->trigger] = old_oc;
1833         reg_chanmsg_func(service->trigger, service->bot, modcmd_chanmsg);
1834         reply("MCMSG_NEW_TRIGGER", service->bot->nick, service->trigger);
1835     }
1836     return 1;
1837 }
1838
1839 static MODCMD_FUNC(cmd_service_offchannel) {
1840     struct service *service;
1841
1842     if (!(service = service_find(argv[1]))) {
1843         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1844         return 0;
1845     }
1846
1847     if(!service->trigger) {
1848         reply("MCMSG_NO_TRIGGER", service->bot->nick);
1849         return 0;
1850     }
1851
1852     if(argc < 3) {
1853         if(offchannel_allowed[(unsigned char)service->trigger])
1854             reply("MCMSG_OFFCHANNEL_IS_ON", service->bot->nick, service->trigger);
1855         else
1856             reply("MCMSG_OFFCHANNEL_IS_OFF", service->bot->nick, service->trigger);
1857         return 1;
1858     }
1859
1860     if(enabled_string(argv[2])) {
1861         offchannel_allowed[(unsigned char)service->trigger] = 1;
1862         reply("MCMSG_OFFCHANNEL_ON", service->bot->nick, service->trigger);
1863     } else if(disabled_string(argv[2])) {
1864         offchannel_allowed[(unsigned char)service->trigger] = 0;
1865         reply("MCMSG_OFFCHANNEL_OFF", service->bot->nick, service->trigger);
1866     } else {
1867         reply("MSG_INVALID_BINARY", argv[2]);
1868         return 0;
1869     }
1870
1871     return 1;
1872 }
1873
1874 static MODCMD_FUNC(cmd_service_privileged) {
1875     struct service *service;
1876     const char *newval;
1877
1878     if (!(service = service_find(argv[1]))) {
1879         reply("MCMSG_UNKNOWN_SERVICE", argv[1]);
1880         return 0;
1881     }
1882     if (argc >= 3)
1883         service->privileged = true_string(argv[2]) || enabled_string(argv[2]);
1884     newval = user_find_message(user, service->privileged ? "MSG_ON" : "MSG_OFF");
1885     reply("MCMSG_SERVICE_PRIVILEGED", service->bot->nick, newval);
1886     return 1;
1887 }
1888
1889 static MODCMD_FUNC(cmd_service_remove) {
1890     char *name, *reason;
1891     struct service *service;
1892
1893     name = argv[1];
1894     if (argc > 2)
1895         reason = unsplit_string(argv+2, argc-2, NULL);
1896     else
1897         reason = "Removing bot";
1898     if (!(service = service_find(name))) {
1899         reply("MCMSG_UNKNOWN_SERVICE", name);
1900         return 0;
1901     }
1902     DelUser(service->bot, NULL, 1, reason);
1903     reply("MCMSG_SERVICE_REMOVED", name);
1904     dict_remove(services, name);
1905     return 1;
1906 }
1907
1908 static MODCMD_FUNC(cmd_dump_messages) {
1909     const char *fname = "strings.db";
1910     struct saxdb_context *ctx;
1911     dict_iterator_t it;
1912     FILE *pf;
1913     int res;
1914
1915     if (!(pf = fopen(fname, "w"))) {
1916         reply("MCMSG_FILE_NOT_OPENED", fname);
1917         return 0;
1918     }
1919     if (!(ctx = saxdb_open_context(pf))) {
1920         reply("MSG_INTERNAL_FAILURE");
1921         return 0;
1922     }
1923     if ((res = setjmp(*saxdb_jmp_buf(ctx))) != 0) {
1924         saxdb_close_context(ctx, 1);
1925         reply("MCMSG_MESSAGE_DUMP_FAILED", strerror(res));
1926         return 0;
1927     } else {
1928         for (it = dict_first(lang_C->messages); it; it = iter_next(it))
1929             saxdb_write_string(ctx, iter_key(it), iter_data(it));
1930         saxdb_close_context(ctx, 1);
1931         reply("MCMSG_MESSAGES_DUMPED", fname);
1932         return 1;
1933     }
1934 }
1935
1936 static MODCMD_FUNC(cmd_version) {
1937     /* This function provides copyright management information to end
1938      * users of srvx. You should not alter, disable or remove this
1939      * command or its accessibility to normal IRC users, except to add
1940      * copyright information pertaining to changes you make to srvx.
1941      */
1942     send_message_type(4, user, cmd->parent->bot, "$b"PACKAGE_STRING"$b ("CODENAME"), Built: "__DATE__", "__TIME__".  Copyright 2000-2008 srvx Development Team.");
1943     if (argc > 1)
1944         send_message_type(4, user, cmd->parent->bot, "%s", git_version);
1945     else
1946         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.webgamesnet.net.");
1947     return 1;
1948 }
1949
1950 static MODCMD_FUNC(cmd_tell) {
1951     struct userNode *target;
1952     char *msg;
1953
1954     target = GetUserH(argv[1]);
1955     msg = unsplit_string(argv + 2, argc - 2, NULL);
1956     if (!target) {
1957         reply("MSG_NOT_TARGET_NAME");
1958         return 0;
1959     }
1960     send_message_type(MSG_TYPE_NOXLATE, target, cmd->parent->bot, "%s", msg);
1961     return 1;
1962 }
1963
1964 void
1965 modcmd_nick_change(struct userNode *user, const char *old_nick) {
1966     struct service *svc;
1967     if (!(svc = dict_find(services, old_nick, NULL)))
1968         return;
1969     dict_remove2(services, old_nick, 1);
1970     dict_insert(services, user->nick, svc);
1971 }
1972
1973 void
1974 modcmd_cleanup(void) {
1975     dict_delete(services);
1976     dict_delete(modules);
1977     if (suf_list)
1978         free(suf_list);
1979 }
1980
1981 static void
1982 modcmd_saxdb_write_command(struct saxdb_context *ctx, struct svccmd *cmd) {
1983     char buf[MAXLEN];
1984     unsigned int nn, len, pos;
1985     struct svccmd *template = cmd->command->defaults;
1986
1987     saxdb_start_record(ctx, cmd->name, 0);
1988     sprintf(buf, "%s.%s", cmd->command->parent->name, cmd->command->name);
1989     saxdb_write_string(ctx, "command", buf);
1990     if (cmd->alias.used)
1991         saxdb_write_string_list(ctx, "aliased", &cmd->alias);
1992     if (cmd->min_opserv_level != template->min_opserv_level)
1993         saxdb_write_int(ctx, "oper_access", cmd->min_opserv_level);
1994     if (cmd->min_staff_level != template->min_staff_level)
1995         saxdb_write_int(ctx, "staff_access", cmd->min_staff_level);
1996     if (cmd->min_channel_access != template->min_channel_access)
1997         saxdb_write_int(ctx, "channel_access", cmd->min_channel_access);
1998     if (cmd->flags != template->flags) {
1999         if (cmd->flags) {
2000             for (nn=pos=0; modcmd_flags[nn].name; ++nn) {
2001                 const struct modcmd_flag *flag = &modcmd_flags[nn];
2002                 if (cmd->flags & flag->flag) {
2003                     buf[pos++] = '+';
2004                     len = strlen(flag->name);
2005                     memcpy(buf+pos, flag->name, len);
2006                     pos += len;
2007                     buf[pos++] = ',';
2008                 }
2009             }
2010         } else {
2011             pos = 1;
2012         }
2013         buf[--pos] = 0;
2014         saxdb_write_string(ctx, "flags", buf);
2015     }
2016     if ((cmd->req_account_flags != template->req_account_flags)
2017         || (cmd->deny_account_flags != template->req_account_flags)) {
2018         pos = 0;
2019         if (cmd->req_account_flags) {
2020             buf[pos++] = '+';
2021             for (nn=0; nn<32; nn++)
2022                 if (cmd->req_account_flags & (1 << nn))
2023                     buf[pos++] = handle_flags[nn];
2024         }
2025         if (cmd->deny_account_flags) {
2026             buf[pos++] = '-';
2027             for (nn=0; nn<32; nn++)
2028                 if (cmd->deny_account_flags & (1 << nn))
2029                     buf[pos++] = handle_flags[nn];
2030         }
2031         buf[pos] = 0;
2032         saxdb_write_string(ctx, "account_flags", buf);
2033     }
2034     saxdb_end_record(ctx);
2035 }
2036
2037 static int
2038 modcmd_saxdb_write(struct saxdb_context *ctx) {
2039     struct string_list slist;
2040     dict_iterator_t it, it2;
2041     struct service *service;
2042     unsigned int ii;
2043
2044     saxdb_start_record(ctx, "bots", 1);
2045     for (it = dict_first(services); it; it = iter_next(it)) {
2046         char buff[16];
2047         char modes[32];
2048
2049         service = iter_data(it);
2050         saxdb_start_record(ctx, service->bot->nick, 1);
2051         if (service->trigger) {
2052             buff[0] = service->trigger;
2053             buff[1] = '\0';
2054             saxdb_write_string(ctx, "trigger", buff);
2055             if(offchannel_allowed[(unsigned char)service->trigger])
2056                 saxdb_write_int(ctx, "offchannel", 1);
2057         }
2058         saxdb_write_string(ctx, "description", service->bot->info);
2059         saxdb_write_string(ctx, "hostname", service->bot->hostname);
2060         if (service->bot->modes) {
2061             irc_user_modes(service->bot, modes, sizeof(modes));
2062             saxdb_write_string(ctx, "modes", modes);
2063         }
2064         if (service->privileged)
2065             saxdb_write_string(ctx, "privileged", "1");
2066         saxdb_end_record(ctx);
2067     }
2068     saxdb_end_record(ctx);
2069
2070     saxdb_start_record(ctx, "services", 1);
2071     for (it = dict_first(services); it; it = iter_next(it)) {
2072         service = iter_data(it);
2073         saxdb_start_record(ctx, service->bot->nick, 1);
2074         for (it2 = dict_first(service->commands); it2; it2 = iter_next(it2))
2075             modcmd_saxdb_write_command(ctx, iter_data(it2));
2076         saxdb_end_record(ctx);
2077     }
2078     saxdb_end_record(ctx);
2079
2080     saxdb_start_record(ctx, "helpfiles", 1);
2081     slist.size = 0;
2082     for (it = dict_first(services); it; it = iter_next(it)) {
2083         service = iter_data(it);
2084         slist.used = 0;
2085         for (ii = 0; ii < service->modules.used; ++ii)
2086             string_list_append(&slist, service->modules.list[ii]->name);
2087         saxdb_write_string_list(ctx, iter_key(it), &slist);
2088     }
2089     if (slist.list)
2090         free(slist.list);
2091     saxdb_end_record(ctx);
2092
2093     return 0;
2094 }
2095
2096 static int
2097 append_entry(const char *key, UNUSED_ARG(void *data), void *extra) {
2098     struct helpfile_expansion *exp = extra;
2099     int row = exp->value.table.length++;
2100     exp->value.table.contents[row] = calloc(1, sizeof(char*));
2101     exp->value.table.contents[row][0] = key;
2102     return 0;
2103 }
2104
2105 static struct helpfile_expansion
2106 modcmd_expand(const char *variable) {
2107     struct helpfile_expansion exp;
2108     extern struct userNode *message_source;
2109     struct service *service;
2110
2111     service = dict_find(services, message_source->nick, NULL);
2112     if (!irccasecmp(variable, "index")) {
2113         exp.type = HF_TABLE;
2114         exp.value.table.length = 1;
2115         exp.value.table.width = 1;
2116         exp.value.table.flags = TABLE_REPEAT_ROWS;
2117         exp.value.table.contents = calloc(dict_size(service->commands)+1, sizeof(char**));
2118         exp.value.table.contents[0] = calloc(1, sizeof(char*));
2119         exp.value.table.contents[0][0] = "Commands:";
2120         dict_foreach(service->commands, append_entry, &exp);
2121         return exp;
2122     } else if (!irccasecmp(variable, "languages")) {
2123         struct string_buffer sbuf;
2124         dict_iterator_t it;
2125         sbuf.used = sbuf.size = 0;
2126         sbuf.list = NULL;
2127         for (it = dict_first(languages); it; it = iter_next(it)) {
2128             string_buffer_append_string(&sbuf, iter_key(it));
2129             string_buffer_append(&sbuf, ' ');
2130         }
2131         sbuf.list[--sbuf.used] = 0;
2132         exp.type = HF_STRING;
2133         exp.value.str = sbuf.list;
2134         return exp;
2135     }
2136     exp.type = HF_STRING;
2137     exp.value.str = NULL;
2138     return exp;
2139 }
2140
2141 static void
2142 modcmd_load_bots(struct dict *db, int default_nick) {
2143     dict_iterator_t it;
2144
2145     for (it = dict_first(db); it; it = iter_next(it)) {
2146         struct record_data *rd;
2147         struct service *svc;
2148         const char *nick, *desc, *hostname, *modes;
2149
2150         rd = iter_data(it);
2151         if (rd->type != RECDB_OBJECT) {
2152             log_module(MAIN_LOG, LOG_ERROR, "Bad type for 'bots/%s' in modcmd db (expected object).", iter_key(it));
2153             continue;
2154         }
2155         nick = database_get_data(rd->d.object, "nick", RECDB_QSTRING);
2156         if (!nick) {
2157             if (default_nick)
2158                 nick = iter_key(it);
2159             else
2160                 continue;
2161         }
2162         svc = service_find(nick);
2163         desc = database_get_data(rd->d.object, "description", RECDB_QSTRING);
2164         hostname = database_get_data(rd->d.object, "hostname", RECDB_QSTRING);
2165         modes = database_get_data(rd->d.object, "modes", RECDB_QSTRING);
2166         if (desc) {
2167             if (!svc)
2168                 svc = service_register(AddLocalUser(nick, nick, hostname, desc, modes));
2169             else if (hostname)
2170                 strcpy(svc->bot->hostname, hostname);
2171             desc = database_get_data(rd->d.object, "trigger", RECDB_QSTRING);
2172             if (desc) {
2173                 svc->trigger = desc[0];
2174                 desc = database_get_data(rd->d.object, "offchannel", RECDB_QSTRING);
2175                 if(desc)
2176                     offchannel_allowed[(unsigned char)svc->trigger] = atoi(desc);
2177             }
2178             desc = database_get_data(rd->d.object, "privileged", RECDB_QSTRING);
2179             if (desc && (true_string(desc) || enabled_string(desc)))
2180                 svc->privileged = 1;
2181         }
2182     }
2183 }
2184
2185 static void
2186 modcmd_conf_read(void) {
2187     modcmd_load_bots(conf_get_data("services", RECDB_OBJECT), 0);
2188 }
2189
2190 void
2191 modcmd_init(void) {
2192     qsort(modcmd_flags, ArrayLength(modcmd_flags)-1, sizeof(modcmd_flags[0]), flags_qsort);
2193     modules = dict_new();
2194     dict_set_free_data(modules, free_module);
2195     services = dict_new();
2196     dict_set_free_data(services, free_service);
2197     reg_nick_change_func(modcmd_nick_change);
2198     reg_exit_func(modcmd_cleanup);
2199     conf_register_reload(modcmd_conf_read);
2200
2201     modcmd_module = module_register("modcmd", MAIN_LOG, "modcmd.help", modcmd_expand);
2202     bind_command = modcmd_register(modcmd_module, "bind", cmd_bind, 4, MODCMD_KEEP_BOUND, "oper_level", "800", NULL);
2203     help_command = modcmd_register(modcmd_module, "help", cmd_help, 1, 0, "flags", "+nolog", NULL);
2204     modcmd_register(modcmd_module, "command", cmd_command, 2, 0, "flags", "+nolog", NULL);
2205     modcmd_register(modcmd_module, "modcmd", cmd_modcmd, 2, MODCMD_KEEP_BOUND, "template", "bind", NULL);
2206     modcmd_register(modcmd_module, "god", cmd_god, 0, MODCMD_REQUIRE_AUTHED, "flags", "+oper,+networkhelper", NULL);
2207     modcmd_register(modcmd_module, "readhelp", cmd_readhelp, 2, 0, "oper_level", "650", NULL);
2208     modcmd_register(modcmd_module, "timecmd", cmd_timecmd, 2, 0, "oper_level", "1", NULL);
2209     modcmd_register(modcmd_module, "unbind", cmd_unbind, 3, 0, "template", "bind", NULL);
2210     modcmd_register(modcmd_module, "joiner", cmd_joiner, 1, 0, NULL);
2211     modcmd_register(modcmd_module, "stats modules", cmd_stats_modules, 1, 0, "flags", "+oper", NULL);
2212     modcmd_register(modcmd_module, "stats services", cmd_stats_services, 1, 0, "flags", "+oper", NULL);
2213     modcmd_register(modcmd_module, "showcommands", cmd_showcommands, 1, 0, "flags", "+acceptchan", NULL);
2214     modcmd_register(modcmd_module, "helpfiles", cmd_helpfiles, 2, 0, "template", "bind", NULL);
2215     modcmd_register(modcmd_module, "service add", cmd_service_add, 4, 0, "flags", "+oper", NULL);
2216     modcmd_register(modcmd_module, "service rename", cmd_service_rename, 3, 0, "flags", "+oper", NULL);
2217     modcmd_register(modcmd_module, "service trigger", cmd_service_trigger, 2, 0, "flags", "+oper", NULL);
2218     modcmd_register(modcmd_module, "service offchannel", cmd_service_offchannel, 2, 0, "flags", "+oper", NULL);
2219     modcmd_register(modcmd_module, "service privileged", cmd_service_privileged, 2, 0, "flags", "+oper", NULL);
2220     modcmd_register(modcmd_module, "service remove", cmd_service_remove, 2, 0, "flags", "+oper", NULL);
2221     modcmd_register(modcmd_module, "dumpmessages", cmd_dump_messages, 1, 0, "oper_level", "1000", NULL);
2222     modcmd_register(modcmd_module, "tell", cmd_tell, 3, 0, "flags", "+oper", NULL);
2223     version_command = modcmd_register(modcmd_module, "version", cmd_version, 1, 0, NULL);
2224     message_register_table(msgtab);
2225 }
2226
2227 static void
2228 modcmd_db_load_command(struct service *service, const char *cmdname, struct dict *obj) {
2229     struct svccmd *svccmd;
2230     struct module *module;
2231     struct modcmd *modcmd;
2232     struct string_list *slist;
2233     const char *str, *sep;
2234     char buf[MAXLEN];
2235
2236     str = database_get_data(obj, "command", RECDB_QSTRING);
2237     if (!str) {
2238         log_module(MAIN_LOG, LOG_ERROR, "Missing command for service %s command %s in modcmd.db", service->bot->nick, cmdname);
2239         return;
2240     }
2241     sep = strchr(str, '.');
2242     if (!sep) {
2243         log_module(MAIN_LOG, LOG_ERROR, "Invalid command %s for service %s command %s in modcmd.db", str, service->bot->nick, cmdname);
2244         return;
2245     }
2246     memcpy(buf, str, sep-str);
2247     buf[sep-str] = 0;
2248     if (!(module = module_find(buf))) {
2249         log_module(MAIN_LOG, LOG_ERROR, "Unknown module %s for service %s command %s in modcmd.db", buf, service->bot->nick, cmdname);
2250         return;
2251     }
2252     if (!(modcmd = dict_find(module->commands, sep+1, NULL))) {
2253         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);
2254         return;
2255     }
2256     /* Now that we know we have a command to use, fill in the basics. */
2257     svccmd = calloc(1, sizeof(*svccmd));
2258     svccmd_insert(service, strdup(cmdname), svccmd, modcmd);
2259     if ((str = database_get_data(obj, "template", RECDB_QSTRING))) {
2260         add_pending_template(svccmd, str);
2261     } else {
2262         svccmd_copy_rules(svccmd, modcmd->defaults);
2263     }
2264     if ((str = database_get_data(obj, "account_flags", RECDB_QSTRING))) {
2265         svccmd->req_account_flags = svccmd->deny_account_flags = 0;
2266         svccmd_configure(svccmd, NULL, service->bot, "account_flags", str);
2267     }
2268     if ((str = database_get_data(obj, "flags", RECDB_QSTRING))) {
2269         svccmd->flags = 0;
2270         svccmd_configure(svccmd, NULL, service->bot, "flags", str);
2271     }
2272     if ((str = database_get_data(obj, "oper_access", RECDB_QSTRING))
2273         || (str = database_get_data(obj, "opserv_level", RECDB_QSTRING))) {
2274         svccmd_configure(svccmd, NULL, service->bot, "oper_access", str);
2275     }
2276     if ((str = database_get_data(obj, "staff_access", RECDB_QSTRING))
2277         || (str = database_get_data(obj, "staff_level", RECDB_QSTRING))) {
2278         svccmd_configure(svccmd, NULL, service->bot, "staff_access", str);
2279     }
2280     if ((str = database_get_data(obj, "channel_access", RECDB_QSTRING))
2281         || (str = database_get_data(obj, "chanserv_level", RECDB_QSTRING))) {
2282         svccmd_configure(svccmd, NULL, service->bot, "channel_access", str);
2283     }
2284     if ((slist = database_get_data(obj, "aliased", RECDB_STRING_LIST))) {
2285         unsigned int nn;
2286         svccmd->alias.used = svccmd->alias.size = slist->used;
2287         svccmd->alias.list = calloc(svccmd->alias.size, sizeof(svccmd->alias.list[0]));
2288         for (nn=0; nn<slist->used; ++nn)
2289             svccmd->alias.list[nn] = strdup(slist->list[nn]);
2290     }
2291     modcmd_set_effective_flags(svccmd);
2292 }
2293
2294 static struct svccmd *
2295 service_make_alias(struct service *service, const char *alias, ...) {
2296     char *arg, *argv[MAXNUMPARAMS];
2297     unsigned int nn, argc;
2298     struct svccmd *svccmd, *template;
2299     va_list args;
2300
2301     va_start(args, alias);
2302     argc = 0;
2303     while (1) {
2304         arg = va_arg(args, char*);
2305         if (!arg)
2306             break;
2307         argv[argc++] = arg;
2308     }
2309     va_end(args);
2310     svccmd = calloc(1, sizeof(*svccmd));
2311     if (!(template = svccmd_resolve_name(svccmd, argv[0]))) {
2312         log_module(MAIN_LOG, LOG_ERROR, "Invalid base command %s for alias %s in service %s", argv[0], alias, service->bot->nick);
2313         free(svccmd->name);
2314         free(svccmd);
2315         return NULL;
2316     }
2317     if (argc > 1) {
2318         svccmd->alias.used = svccmd->alias.size = argc;
2319         svccmd->alias.list = calloc(svccmd->alias.size, sizeof(svccmd->alias.list[0]));
2320         for (nn=0; nn<argc; nn++)
2321             svccmd->alias.list[nn] = strdup(argv[nn]);
2322     }
2323     svccmd_insert(service, strdup(alias), svccmd, template->command);
2324     svccmd_copy_rules(svccmd, template);
2325     return svccmd;
2326 }
2327
2328 static int saxdb_present;
2329
2330 static int
2331 modcmd_saxdb_read(struct dict *db) {
2332     struct dict *db2;
2333     dict_iterator_t it, it2;
2334     struct record_data *rd, *rd2;
2335     struct service *service;
2336
2337     modcmd_load_bots(database_get_data(db, "bots", RECDB_OBJECT), 1);
2338     db2 = database_get_data(db, "services", RECDB_OBJECT);
2339     if (!db2) {
2340         log_module(MAIN_LOG, LOG_ERROR, "Missing section 'services' in modcmd db.");
2341         return 1;
2342     }
2343     for (it = dict_first(db2); it; it = iter_next(it)) {
2344         rd = iter_data(it);
2345         if (rd->type != RECDB_OBJECT) {
2346             log_module(MAIN_LOG, LOG_ERROR, "Bad type for 'services/%s' in modcmd db (expected object).", iter_key(it));
2347             continue;
2348         }
2349         if (!(service = service_find(iter_key(it)))) {
2350             log_module(MAIN_LOG, LOG_ERROR, "Unknown service '%s' listed in modcmd db.", iter_key(it));
2351             continue;
2352         }
2353         for (it2 = dict_first(rd->d.object); it2; it2 = iter_next(it2)) {
2354             rd2 = iter_data(it2);
2355             if (rd2->type != RECDB_OBJECT) {
2356                 log_module(MAIN_LOG, LOG_ERROR, "Bad type for 'services/%s/%s' in modcmd db (expected object).", iter_key(it), iter_key(it2));
2357                 continue;
2358             }
2359             modcmd_db_load_command(service, iter_key(it2), rd2->d.object);
2360         }
2361     }
2362     db2 = database_get_data(db, "helpfiles", RECDB_OBJECT);
2363     for (it = dict_first(db2); it; it = iter_next(it)) {
2364         struct module *module;
2365         struct string_list *slist;
2366         unsigned int ii;
2367
2368         rd = iter_data(it);
2369         if (rd->type != RECDB_STRING_LIST) {
2370             log_module(MAIN_LOG, LOG_ERROR, "Bad type for 'helpfiles/%s' in modcmd db (expected string list).", iter_key(it));
2371             continue;
2372         }
2373         slist = rd->d.slist;
2374         if (!(service = service_find(iter_key(it)))) {
2375             /* We probably whined about the service being missing above. */
2376             continue;
2377         }
2378         service->modules.used = 0;
2379         for (ii=0; ii<slist->used; ++ii) {
2380             if (!(module = dict_find(modules, slist->list[ii], NULL))) {
2381                 log_module(MAIN_LOG, LOG_ERROR, "Unknown module '%s' listed in modcmd 'helpfiles/%s'.", slist->list[ii], iter_key(it));
2382                 continue;
2383             }
2384             module_list_append(&service->modules, module);
2385         }
2386     }
2387     saxdb_present = 1;
2388     return 0;
2389 }
2390
2391 static void
2392 create_default_binds(void) {
2393     /* Which services should import which modules by default? */
2394     struct {
2395         const char *svcname;
2396         /* C is lame and requires a fixed size for this array.
2397          * Be sure you NULL-terminate each array and increment the
2398          * size here if you add more default modules to any
2399          * service. */
2400         const char *modnames[8];
2401     } def_binds[] = {
2402         { "ChanServ", { "ChanServ", NULL } },
2403         { "Global", { "Global", NULL } },
2404         { "NickServ", { "NickServ", NULL } },
2405         { "OpServ", { "OpServ", "modcmd", "sendmail", "saxdb", "proxycheck", NULL } },
2406         { NULL, { NULL } }
2407     };
2408     unsigned int ii, jj;
2409     char buf[128], *nick;
2410     struct service *service;
2411     struct module *module;
2412
2413     for (ii = 0; def_binds[ii].svcname; ++ii) {
2414         sprintf(buf, "services/%s/nick", def_binds[ii].svcname);
2415         if (!(nick = conf_get_data(buf, RECDB_QSTRING)))
2416             continue;
2417         if (!(service = service_find(nick)))
2418             continue;
2419         if (dict_size(service->commands) > 0)
2420             continue;
2421
2422         /* Bind the default modules for this service to it */
2423         for (jj = 0; def_binds[ii].modnames[jj]; ++jj) {
2424             if (!(module = module_find(def_binds[ii].modnames[jj])))
2425                 continue;
2426             service_bind_module(service, module);
2427         }
2428
2429         /* Bind the help and version commands to this service */
2430         service_bind_modcmd(service, help_command, help_command->name);
2431         service_bind_modcmd(service, version_command, version_command->name);
2432
2433         /* Now some silly hax.. (aliases that most people want) */
2434         if (!irccasecmp(def_binds[ii].svcname, "ChanServ")) {
2435             service_make_alias(service, "addowner", "*chanserv.adduser", "$1", "owner", NULL);
2436             service_make_alias(service, "addcoowner", "*chanserv.adduser", "$1", "coowner", NULL);
2437             service_make_alias(service, "addmaster", "*chanserv.adduser", "$1", "master", NULL);
2438             service_make_alias(service, "addop", "*chanserv.adduser", "$1", "op", NULL);
2439             service_make_alias(service, "addpeon", "*chanserv.adduser", "$1", "peon", NULL);
2440             service_make_alias(service, "delowner", "*chanserv.deluser", "owner", "$1", NULL);
2441             service_make_alias(service, "delcoowner", "*chanserv.deluser", "coowner", "$1", NULL);
2442             service_make_alias(service, "delmaster", "*chanserv.deluser", "master", "$1", NULL);
2443             service_make_alias(service, "delop", "*chanserv.deluser", "op", "$1", NULL);
2444             service_make_alias(service, "delpeon", "*chanserv.deluser", "peon", "$1", NULL);
2445             service_make_alias(service, "command", "*modcmd.command", NULL);
2446             service_make_alias(service, "god", "*modcmd.god", NULL);
2447         } else if (!irccasecmp(def_binds[ii].svcname, "OpServ")) {
2448             struct svccmd *svccmd;
2449             svccmd = service_make_alias(service, "stats", "*modcmd.joiner", NULL);
2450             svccmd->min_opserv_level = 101;
2451             svccmd = service_make_alias(service, "devnull", "*modcmd.joiner", NULL);
2452             svccmd->min_opserv_level = 200;
2453             svccmd = service_make_alias(service, "service", "*modcmd.joiner", NULL);
2454             svccmd->min_opserv_level = 900;
2455         }
2456     }
2457 }
2458
2459 static void
2460 import_aliases_db() {
2461     struct dict *db;
2462     dict_iterator_t it, it2;
2463     struct record_data *rd, *rd2;
2464     struct service *service;
2465     struct module *module;
2466
2467     if (!(db = parse_database("aliases.db")))
2468         return;
2469     for (it = dict_first(db); it; it = iter_next(it)) {
2470         service = service_find(iter_key(it));
2471         if (!service)
2472             continue;
2473         module = module_find(service->bot->nick);
2474         rd = iter_data(it);
2475         if (rd->type != RECDB_OBJECT)
2476             continue;
2477         for (it2 = dict_first(rd->d.object); it2; it2 = iter_next(it2)) {
2478             struct modcmd *command;
2479             rd2 = iter_data(it2);
2480             if (rd2->type != RECDB_QSTRING)
2481                 continue;
2482             command = dict_find(module->commands, rd2->d.qstring, NULL);
2483             if (!command)
2484                 continue;
2485             service_bind_modcmd(service, command, iter_key(it2));
2486         }
2487     }
2488 }
2489
2490 void
2491 modcmd_finalize(void) {
2492     dict_iterator_t it;
2493
2494     /* Check databases. */
2495     saxdb_register("modcmd", modcmd_saxdb_read, modcmd_saxdb_write);
2496     create_default_binds();
2497     if (!saxdb_present)
2498         import_aliases_db();
2499
2500     /* Register services for their triggers. */
2501     for (it = dict_first(services); it; it = iter_next(it)) {
2502         struct service *svc = iter_data(it);
2503         if (svc->trigger)
2504             reg_chanmsg_func(svc->trigger, svc->bot, modcmd_chanmsg);
2505     }
2506
2507     /* Resolve command rule-templates. */
2508     while (pending_templates) {
2509         struct pending_template *ptempl = pending_templates;
2510         struct svccmd *svccmd;
2511
2512         pending_templates = ptempl->next;
2513         /* Only overwrite the current template if we have a valid template. */
2514         if (!strcmp(ptempl->base, "*")) {
2515             /* Do nothing. */
2516         } else if ((svccmd = svccmd_resolve_name(ptempl->cmd, ptempl->base))) {
2517             svccmd_copy_rules(ptempl->cmd, svccmd);
2518         } else {
2519             assert(ptempl->cmd->parent);
2520             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);
2521         }
2522         free(ptempl->base);
2523         free(ptempl);
2524     }
2525 }