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