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