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