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