Implement item #1011114, #997053
[srvx.git] / src / opserv.c
1 /* opserv.c - IRC Operator assistance service
2  * Copyright 2000-2004 srvx Development Team
3  *
4  * This file is part of srvx.
5  *
6  * srvx is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with srvx; if not, write to the Free Software Foundation,
18  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
19  */
20
21 #include "conf.h"
22 #include "gline.h"
23 #include "global.h"
24 #include "nickserv.h"
25 #include "modcmd.h"
26 #include "opserv.h"
27 #include "timeq.h"
28 #include "saxdb.h"
29
30 #ifdef HAVE_SYS_TIMES_H
31 #include <sys/times.h>
32 #endif
33 #ifdef HAVE_NETINET_IN_H
34 #include <netinet/in.h>
35 #endif
36 #ifdef HAVE_ARPA_INET_H
37 #include <arpa/inet.h>
38 #endif
39
40 #define OPSERV_CONF_NAME "services/opserv"
41
42 #define KEY_ALERT_CHANNEL "alert_channel"
43 #define KEY_ALERT_CHANNEL_MODES "alert_channel_modes"
44 #define KEY_DEBUG_CHANNEL "debug_channel"
45 #define KEY_DEBUG_CHANNEL_MODES "debug_channel_modes"
46 #define KEY_UNTRUSTED_MAX "untrusted_max"
47 #define KEY_PURGE_LOCK_DELAY "purge_lock_delay"
48 #define KEY_JOIN_FLOOD_MODERATE "join_flood_moderate"
49 #define KEY_JOIN_FLOOD_MODERATE_THRESH "join_flood_moderate_threshold"
50 #define KEY_NICK "nick"
51 #define KEY_JOIN_POLICER "join_policer"
52 #define KEY_NEW_USER_POLICER "new_user_policer"
53 #define KEY_REASON "reason"
54 #define KEY_RESERVES "reserves"
55 #define KEY_IDENT "username" /* for compatibility with 1.0 DBs */
56 #define KEY_HOSTNAME "hostname"
57 #define KEY_DESC "description"
58 #define KEY_BAD_WORDS "bad"
59 #define KEY_EXEMPT_CHANNELS "exempt"
60 #define KEY_SECRET_WORDS "secret"
61 #define KEY_TRUSTED_HOSTS "trusted"
62 #define KEY_OWNER "owner"
63 #define KEY_GAGS "gags"
64 #define KEY_ALERTS "alerts"
65 #define KEY_REACTION "reaction"
66 #define KEY_DISCRIM "discrim"
67 #define KEY_WARN "chanwarn"
68 #define KEY_MAX "max"
69 #define KEY_TIME "time"
70 #define KEY_MAX_CLIENTS "max_clients"
71 #define KEY_LIMIT "limit"
72 #define KEY_EXPIRES "expires"
73 #define KEY_STAFF_AUTH_CHANNEL "staff_auth_channel"
74 #define KEY_STAFF_AUTH_CHANNEL_MODES "staff_auth_channel_modes"
75 #define KEY_CLONE_GLINE_DURATION "clone_gline_duration"
76 #define KEY_BLOCK_GLINE_DURATION "block_gline_duration"
77 #define KEY_ISSUER "issuer"
78 #define KEY_ISSUED "issued"
79
80 #define IDENT_FORMAT            "%s [%s@%s/%s]"
81 #define IDENT_DATA(user)        user->nick, user->ident, user->hostname, inet_ntoa(user->ip)
82 #define MAX_CHANNELS_WHOIS      50
83 #define OSMSG_PART_REASON       "%s has no reason."
84 #define OSMSG_KICK_REQUESTED    "Kick requested by %s."
85 #define OSMSG_KILL_REQUESTED    "Kill requested by %s."
86 #define OSMSG_GAG_REQUESTED     "Gag requested by %s."
87
88 static const struct message_entry msgtab[] = {
89     { "OSMSG_USER_ACCESS_IS", "$b%s$b (account $b%s$b) has %d access." },
90     { "OSMSG_LEVEL_TOO_LOW", "You lack sufficient access to use this command." },
91     { "OSMSG_NEED_CHANNEL", "You must specify a channel for $b%s$b." },
92     { "OSMSG_INVALID_IRCMASK", "$b%s$b is an invalid IRC hostmask." },
93     { "OSMSG_ADDED_BAN", "I have banned $b%s$b from $b%s$b." },
94     { "OSMSG_GLINE_ISSUED", "G-line issued for $b%s$b." },
95     { "OSMSG_GLINE_REMOVED", "G-line removed for $b%s$b." },
96     { "OSMSG_GLINE_FORCE_REMOVED", "Unknown/expired G-line removed for $b%s$b." },
97     { "OSMSG_GLINES_ONE_REFRESHED", "All G-lines resent to $b%s$b." },
98     { "OSMSG_GLINES_REFRESHED", "All G-lines refreshed." },
99     { "OSMSG_CLEARBANS_DONE", "Cleared all bans from channel $b%s$b." },
100     { "OSMSG_CLEARMODES_DONE", "Cleared all modes from channel $b%s$b." },
101     { "OSMSG_NO_CHANNEL_MODES", "Channel $b%s$b had no modes to clear." },
102     { "OSMSG_DEOP_DONE", "Deopped the requested lusers." },
103     { "OSMSG_DEOPALL_DONE", "Deopped everyone on $b%s$b." },
104     { "OSMSG_NO_DEBUG_CHANNEL", "No debug channel has been configured." },
105     { "OSMSG_INVITE_DONE", "Invited $b%s$b to $b%s$b." },
106     { "OSMSG_ALREADY_THERE", "You are already in $b%s$b." },
107     { "OSMSG_JOIN_DONE", "I have joined $b%s$b." },
108     { "OSMSG_ALREADY_JOINED", "I am already in $b%s$b." },
109     { "OSMSG_NOT_ON_CHANNEL", "$b%s$b does not seem to be on $b%s$b." },
110     { "OSMSG_KICKALL_DONE", "I have cleared out %s." },
111     { "OSMSG_LEAVING", "Leaving $b%s$b." },
112     { "OSMSG_MODE_SET", "I have set the modes for $b%s$b." },
113     { "OSMSG_OP_DONE", "Opped the requested lusers." },
114     { "OSMSG_OPALL_DONE", "Opped everyone on $b%s$b." },
115     { "OSMSG_WHOIS_IDENT", "%s (%s@%s) from %d.%d.%d.%d" },
116     { "OSMSG_WHOIS_NICK", "Nick    : %s" },
117     { "OSMSG_WHOIS_HOST", "Host    : %s@%s" },
118     { "OSMSG_WHOIS_FAKEHOST", "Fakehost: %s" },
119     { "OSMSG_WHOIS_IP",   "Real IP : %s" },
120     { "OSMSG_WHOIS_MODES", "Modes   : +%s " },
121     { "OSMSG_WHOIS_INFO", "Info    : %s" },
122     { "OSMSG_WHOIS_NUMERIC", "Numnick : %s" },
123     { "OSMSG_WHOIS_SERVER", "Server  : %s" },
124     { "OSMSG_WHOIS_NICK_AGE", "Nick Age: %s" },
125     { "OSMSG_WHOIS_ACCOUNT", "Account : %s" },
126     { "OSMSG_WHOIS_CHANNELS", "Channels: %s" },
127     { "OSMSG_WHOIS_HIDECHANS", "Channel list omitted for your sanity." },
128     { "OSMSG_UNBAN_DONE", "Ban(s) removed from channel %s." },
129     { "OSMSG_CHANNEL_VOICED", "All users on %s voiced." },
130     { "OSMSG_CHANNEL_DEVOICED", "All voiced users on %s de-voiced." },
131     { "OSMSG_BAD_MODIFIER", "Unknown bad-word modifier $b%s$b." },
132     { "OSMSG_BAD_REDUNDANT", "$b%s$b is already covered by a bad word ($b%s$b)." },
133     { "OSMSG_BAD_GROWING", "Replacing bad word $b%s$b with shorter bad word $b%s$b." },
134     { "OSMSG_BAD_NUKING", " .. and removing redundant bad word $b%s$b." },
135     { "OSMSG_ADDED_BAD", "Added $b%s$b to the bad-word list." },
136     { "OSMSG_REMOVED_BAD", "Removed $b%s$b from the bad-word list." },
137     { "OSMSG_NOT_BAD_WORD", "$b%s$b is not a bad word." },
138     { "OSMSG_ADDED_EXEMPTION", "Added $b%s$b to the bad-word exemption list." },
139     { "OSMSG_ADDED_EXEMPTIONS", "Added %d exception(s) to the bad word list." },
140     { "OSMSG_REMOVED_EXEMPTION", "Removed $b%s$b from the exemption list." },
141     { "OSMSG_NOT_EXEMPT", "$b%s$b is not on the exempt list." },
142     { "OSMSG_ALREADY_TRUSTED", "Host $b%s$b is already trusted (use $bdeltrust$b and then $baddtrust$b to adjust)." },
143     { "OSMSG_NOT_TRUSTED", "Host $b%s$b is not trusted." },
144     { "OSMSG_BAD_IP", "$b%s$b is not a valid IP address" },
145     { "OSMSG_BAD_NUMBER", "$b%s$b is not a number" },
146     { "OSMSG_ADDED_TRUSTED", "Added trusted hosts to the trusted-hosts list." },
147     { "OSMSG_UPDATED_TRUSTED", "Updated trusted host $b%s$b." },
148     { "OSMSG_REMOVED_TRUSTED", "Removed trusted hosts from the trusted-hosts list." },
149     { "OSMSG_CLONE_EXISTS", "Nick $b%s$b is already in use." },
150     { "OSMSG_NOT_A_HOSTMASK", "The hostmask must be in user@host form." },
151     { "OSMSG_BADWORD_LIST", "Bad words: %s" },
152     { "OSMSG_EXEMPTED_LIST", "Exempted channels: %s" },
153     { "OSMSG_GLINE_COUNT", "There are %d glines active on the network." },
154     { "OSMSG_LINKS_SERVER", "%s%s (%u clients; %s)" },
155     { "OSMSG_MAX_CLIENTS", "Max clients: %d at %s" },
156     { "OSMSG_NETWORK_INFO", "Total users: %d (%d invisible, %d opers)" },
157     { "OSMSG_RESERVED_LIST", "List of reserved nicks:" },
158     { "OSMSG_TRUSTED_LIST", "List of trusted hosts:" },
159     { "OSMSG_HOST_IS_TRUSTED", "%s (%s; set %s ago by %s; expires %s: %s)" },
160     { "OSMSG_HOST_NOT_TRUSTED", "%s does not have a special trust." },
161     { "OSMSG_UPTIME_STATS", "Uptime: %s (%u lines processed, CPU time %.2fu/%.2fs)" },
162     { "OSMSG_LINE_DUMPED", "Raw line sent." },
163     { "OSMSG_RAW_PARSE_ERROR", "Error parsing raw line (not dumping to uplink)." },
164     { "OSMSG_COLLIDED_NICK", "Now temporarily holding nick $b%s$b." },
165     { "OSMSG_RESERVED_NICK", "Now reserving nick $b%s$b." },
166     { "OSMSG_NICK_UNRESERVED", "Nick $b%s$b is no longer reserved." },
167     { "OSMSG_NOT_RESERVED", "Nick $b%s$b is not reserved." },
168     { "OSMSG_ILLEGAL_REASON", "This channel is illegal." },
169     { "OSMSG_ILLEGAL_KILL_REASON", "Joined an illegal modeless channel - do not repeat." },
170     { "OSMSG_ILLEGAL_CHANNEL", "$b%s$b is an ILLEGAL channel. Do not re-join it." },
171     { "OSMSG_FLOOD_MODERATE", "This channel has been temporarily moderated due to a possible join flood attack detected in this channel; network staff have been notified and will investigate." },
172     { "OSMSG_CLONE_WARNING", "WARNING: You have connected the maximum permitted number of clients from one IP address (clones).  If you connect any more, your host will be temporarily banned from the network." },
173     { "OSMSG_CLONE_ADDED", "Added clone $b%s$b." },
174     { "OSMSG_CLONE_FAILED", "Unable to add user $b%s$b." },
175     { "OSMSG_NOT_A_CLONE", "Har har.  $b%s$b isn't a clone." },
176     { "OSMSG_CLONE_REMOVED", "Removed clone $b%s$b." },
177     { "OSMSG_CLONE_JOINED", "$b%s$b has joined $b%s$b." },
178     { "OSMSG_CLONE_PARTED", "$b%s$b has left $b%s$b." },
179     { "OSMSG_OPS_GIVEN", "I have given ops in $b%s$b to $b%s$b." },
180     { "OSMSG_CLONE_SAID", "$b%s$b has spoken to $b%s$b." },
181     { "OSMSG_UNKNOWN_SUBCOMMAND", "$b%s$b is not a valid subcommand of $b%s$b." },
182     { "OSMSG_UNKNOWN_OPTION", "$b%s$b has not been set." },
183     { "OSMSG_OPTION_IS", "$b%s$b is set to $b%s$b." },
184     { "OSMSG_OPTION_ROOT", "The following keys can be queried:" },
185     { "OSMSG_OPTION_LIST", "$b%s$b contains the following values:" },
186     { "OSMSG_OPTION_KEYS", "$b%s$b contains the following keys:" },
187     { "OSMSG_OPTION_LIST_EMPTY", "Empty list." },
188     { "OSMSG_SET_NOT_SET", "$b%s$b does not exist, and cannot be set." },
189     { "OSMSG_SET_BAD_TYPE", "$b%s$b is not a string, and cannot be set." },
190     { "OSMSG_SET_SUCCESS", "$b%s$b has been set to $b%s$b." },
191     { "OSMSG_SETTIME_SUCCESS", "Set time for servers named like $b%s$b." },
192     { "OSMSG_BAD_ACTION", "Unrecognized trace action $b%s$b." },
193     { "OSMSG_USER_SEARCH_RESULTS", "The following users were found:" },
194     { "OSMSG_CHANNEL_SEARCH_RESULTS", "The following channels were found:" },
195     { "OSMSG_GLINE_SEARCH_RESULTS", "The following glines were found:" },
196     { "OSMSG_LOG_SEARCH_RESULTS", "The following log entries were found:" },
197     { "OSMSG_GSYNC_RUNNING", "Synchronizing glines from %s." },
198     { "OSMSG_GTRACE_FORMAT", "%s (issued %s by %s, expires %s): %s" },
199     { "OSMSG_GAG_APPLIED", "Gagged $b%s$b, affecting %d users." },
200     { "OSMSG_GAG_ADDED", "Gagged $b%s$b." },
201     { "OSMSG_REDUNDANT_GAG", "Gag $b%s$b is redundant." },
202     { "OSMSG_GAG_NOT_FOUND", "Could not find gag $b%s$b." },
203     { "OSMSG_NO_GAGS", "No gags have been set." },
204     { "OSMSG_UNGAG_APPLIED", "Ungagged $b%s$b, affecting %d users." },
205     { "OSMSG_UNGAG_ADDED", "Ungagged $b%s$b." },
206     { "OSMSG_TIMEQ_INFO", "%u events in timeq; next in %lu seconds." },
207     { "OSMSG_ALERT_EXISTS", "An alert named $b%s$b already exists." },
208     { "OSMSG_UNKNOWN_REACTION", "Unknown alert reaction $b%s$b." },
209     { "OSMSG_ADDED_ALERT", "Added alert named $b%s$b." },
210     { "OSMSG_REMOVED_ALERT", "Removed alert named $b%s$b." },
211     { "OSMSG_NO_SUCH_ALERT", "No alert named $b%s$b could be found." },
212     { "OSMSG_ALERT_IS", "%s (by %s, reaction %s): %s" },
213     { "OSMSG_ALERTS_LIST", "Current $O alerts:" },
214     { "OSMSG_REHASH_COMPLETE", "Completed rehash of configuration database." },
215     { "OSMSG_REHASH_FAILED", "Rehash of configuration database failed, previous configuration is intact." },
216     { "OSMSG_REOPEN_COMPLETE", "Closed and reopened all log files." },
217     { "OSMSG_RECONNECTING", "Reconnecting to my uplink." },
218     { "OSMSG_NUMERIC_COLLIDE", "Numeric %d (%s) is already in use." },
219     { "OSMSG_NAME_COLLIDE", "That name is already in use." },
220     { "OSMSG_SRV_CREATE_FAILED", "Server creation failed -- check log files." },
221     { "OSMSG_SERVER_JUPED", "Added new jupe server %s." },
222     { "OSMSG_SERVER_NOT_JUPE", "That server is not a juped server." },
223     { "OSMSG_SERVER_UNJUPED", "Server jupe removed." },
224     { "OSMSG_WARN_ADDED", "Added channel activity warning for $b%s$b (%s)" },
225     { "OSMSG_WARN_EXISTS", "Channel activity warning for $b%s$b already exists." },
226     { "OSMSG_WARN_DELETED", "Removed channel activity warning for $b%s$b" },
227     { "OSMSG_WARN_NOEXIST", "Channel activity warning for $b%s$b does not exist." },
228     { "OSMSG_WARN_LISTSTART", "Channel activity warnings:" },
229     { "OSMSG_WARN_LISTENTRY", "%s (%s)" },
230     { "OSMSG_WARN_LISTEND", "End of activity warning list." },
231     { "OSMSG_UPLINK_CONNECTING", "Establishing connection with %s (%s:%d)." },
232     { "OSMSG_CURRENT_UPLINK", "$b%s$b is already the current uplink." },
233     { "OSMSG_INVALID_UPLINK", "$b%s$b is not a valid uplink name." },
234     { "OSMSG_UPLINK_DISABLED", "$b%s$b is a disabled or unavailable uplink." },
235     { "OSMSG_UPLINK_START", "Uplink $b%s$b:" },
236     { "OSMSG_UPLINK_ADDRESS", "Address: %s:%d" },
237     { "OSMSG_STUPID_GLINE", "Gline %s?  Now $bthat$b would be smooth." },
238     { "OSMSG_ACCOUNTMASK_AUTHED", "Invalid criteria: it is impossible to match an account mask but not be authed" },
239     { "OSMSG_CHANINFO_HEADER", "%s Information" },
240     { "OSMSG_CHANINFO_TIMESTAMP", "Created on: %a %b %d %H:%M:%S %Y (%s)" },
241     { "OSMSG_CHANINFO_MODES", "Modes: %s" },
242     { "OSMSG_CHANINFO_MODES_BADWORD", "Modes: %s; bad-word channel" },
243     { "OSMSG_CHANINFO_TOPIC", "Topic (set by %%s, %a %b %d %H:%M:%S %Y): %%s" },
244     { "OSMSG_CHANINFO_TOPIC_UNKNOWN", "Topic: (none / not gathered)" },
245     { "OSMSG_CHANINFO_BAN_COUNT", "Bans (%d):" },
246     { "OSMSG_CHANINFO_BAN", "%%s by %%s (%a %b %d %H:%M:%S %Y)" },
247     { "OSMSG_CHANINFO_MANY_USERS", "%d users (\"/msg $S %s %s users\" for the list)" },
248     { "OSMSG_CHANINFO_USER_COUNT", "Users (%d):" },
249     { "OSMSG_CSEARCH_CHANNEL_INFO", "%s [%d users] %s %s" },
250     { NULL, NULL }
251 };
252
253 #define OPSERV_SYNTAX() svccmd_send_help(user, opserv, cmd)
254
255 typedef int (*discrim_search_func)(struct userNode *match, void *extra);
256
257 struct userNode *opserv;
258
259 static dict_t opserv_chan_warn; /* data is char* */
260 static dict_t opserv_reserved_nick_dict; /* data is struct userNode* */
261 static struct string_list *opserv_bad_words;
262 static dict_t opserv_exempt_channels; /* data is not used */
263 static dict_t opserv_trusted_hosts; /* data is struct trusted_host* */
264 static dict_t opserv_hostinfo_dict; /* data is struct opserv_hostinfo* */
265 static dict_t opserv_user_alerts; /* data is struct opserv_user_alert* */
266 static dict_t opserv_nick_based_alerts; /* data is struct opserv_user_alert* */
267 static dict_t opserv_channel_alerts; /* data is struct opserv_user_alert* */
268 static struct module *opserv_module;
269 static struct log_type *OS_LOG;
270 static unsigned int new_user_flood;
271 static char *level_strings[1001];
272
273 static struct {
274     struct chanNode *debug_channel;
275     struct chanNode *alert_channel;
276     struct chanNode *staff_auth_channel;
277     struct policer_params *join_policer_params;
278     struct policer new_user_policer;
279     unsigned long untrusted_max;
280     unsigned long clone_gline_duration;
281     unsigned long block_gline_duration;
282     unsigned long purge_lock_delay;
283     unsigned long join_flood_moderate;
284     unsigned long join_flood_moderate_threshold;
285 } opserv_conf;
286
287 struct trusted_host {
288     char *ipaddr;
289     char *issuer;
290     char *reason;
291     unsigned long limit;
292     time_t issued;
293     time_t expires;
294 };
295
296 struct gag_entry {
297     char *mask;
298     char *owner;
299     char *reason;
300     time_t expires;
301     struct gag_entry *next;
302 };
303
304 static struct gag_entry *gagList;
305
306 struct opserv_hostinfo {
307     struct userList clients;
308     struct trusted_host *trusted;
309 };
310
311 static void
312 opserv_free_hostinfo(void *data)
313 {
314     struct opserv_hostinfo *ohi = data;
315     userList_clean(&ohi->clients);
316     free(ohi);
317 }
318
319 typedef struct opservDiscrim {
320     struct chanNode *channel;
321     char *mask_nick, *mask_ident, *mask_host, *mask_info, *server, *ip_mask_str, *reason, *accountmask;
322     unsigned long limit, ip_mask;
323     struct in_addr ip_addr;
324     unsigned int min_level, max_level, domain_depth, duration, min_clones, min_channels, max_channels;
325     unsigned int match_opers : 1, option_log : 1;
326     unsigned int chan_req_modes : 2, chan_no_modes : 2;
327     int authed : 2, info_space : 2;
328     time_t min_ts, max_ts;
329 } *discrim_t;
330
331 struct discrim_and_source {
332     discrim_t discrim;
333     struct userNode *source;
334     dict_t dict;
335     unsigned int disp_limit;
336 };
337
338 static discrim_t opserv_discrim_create(struct userNode *user, unsigned int argc, char *argv[], int allow_channel);
339 static unsigned int opserv_discrim_search(discrim_t discrim, discrim_search_func dsf, void *data);
340 static int gag_helper_func(struct userNode *match, void *extra);
341 static int ungag_helper_func(struct userNode *match, void *extra);
342
343 typedef enum {
344     REACT_NOTICE,
345     REACT_KILL,
346     REACT_GLINE
347 } opserv_alert_reaction;
348
349 struct opserv_user_alert {
350     char *owner;
351     char *text_discrim, *split_discrim;
352     discrim_t discrim;
353     opserv_alert_reaction reaction;
354 };
355
356 /* funny type to make it acceptible to dict_set_free_data, far below */
357 static void
358 opserv_free_user_alert(void *data)
359 {
360     struct opserv_user_alert *alert = data;
361     if (alert->discrim->channel)
362         UnlockChannel(alert->discrim->channel);
363     free(alert->owner);
364     free(alert->text_discrim);
365     free(alert->split_discrim);
366     free(alert->discrim->reason);
367     free(alert->discrim);
368     free(alert);
369 }
370
371 #define opserv_debug(format...) do { if (opserv_conf.debug_channel) send_channel_notice(opserv_conf.debug_channel , opserv , ## format); } while (0)
372 #define opserv_alert(format...) do { if (opserv_conf.alert_channel) send_channel_notice(opserv_conf.alert_channel , opserv , ## format); } while (0)
373
374 /* A lot of these commands are very similar to what ChanServ can do,
375  * but OpServ can do them even on channels that aren't registered.
376  */
377
378 static MODCMD_FUNC(cmd_access)
379 {
380     struct handle_info *hi;
381     const char *target;
382     unsigned int res;
383
384     target = (argc > 1) ? (const char*)argv[1] : user->nick;
385     if (!irccasecmp(target, "*")) {
386         nickserv_show_oper_accounts(user, cmd);
387         return 1;
388     }
389     if (!(hi = modcmd_get_handle_info(user, target)))
390         return 0;
391     res = (argc > 2) ? oper_try_set_access(user, cmd->parent->bot, hi, strtoul(argv[2], NULL, 0)) : 0;
392     reply("OSMSG_USER_ACCESS_IS", target, hi->handle, hi->opserv_level);
393     return res;
394 }
395
396 static MODCMD_FUNC(cmd_ban)
397 {
398     struct mod_chanmode change;
399     struct userNode *victim;
400
401     mod_chanmode_init(&change);
402     change.argc = 1;
403     change.args[0].mode = MODE_BAN;
404     if (is_ircmask(argv[1]))
405         change.args[0].u.hostmask = strdup(argv[1]);
406     else if ((victim = GetUserH(argv[1])))
407         change.args[0].u.hostmask = generate_hostmask(victim, 0);
408     else {
409         reply("OSMSG_INVALID_IRCMASK", argv[1]);
410         return 0;
411     }
412     modcmd_chanmode_announce(&change);
413     reply("OSMSG_ADDED_BAN", change.args[0].u.hostmask, channel->name);
414     free((char*)change.args[0].u.hostmask);
415     return 1;
416 }
417
418 static MODCMD_FUNC(cmd_chaninfo)
419 {
420     char buffer[MAXLEN];
421     const char *fmt;
422     struct banNode *ban;
423     struct modeNode *moden;
424     unsigned int n;
425
426     reply("OSMSG_CHANINFO_HEADER", channel->name);
427     fmt = user_find_message(user, "OSMSG_CHANINFO_TIMESTAMP");
428     strftime(buffer, sizeof(buffer), fmt, gmtime(&channel->timestamp));
429     send_message_type(4, user, cmd->parent->bot, "%s", buffer);
430     irc_make_chanmode(channel, buffer);
431     if (channel->bad_channel)
432         reply("OSMSG_CHANINFO_MODES_BADWORD", buffer);
433     else
434         reply("OSMSG_CHANINFO_MODES", buffer);
435     if (channel->topic_time) {
436         fmt = user_find_message(user, "OSMSG_CHANINFO_TOPIC");
437         strftime(buffer, sizeof(buffer), fmt, gmtime(&channel->topic_time));
438         send_message_type(4, user, cmd->parent->bot, buffer, channel->topic_nick, channel->topic);
439     } else {
440         irc_fetchtopic(cmd->parent->bot, channel->name);
441         reply("OSMSG_CHANINFO_TOPIC_UNKNOWN");
442     }
443     if (channel->banlist.used) {
444         reply("OSMSG_CHANINFO_BAN_COUNT", channel->banlist.used);
445         fmt = user_find_message(user, "OSMSG_CHANINFO_BAN");
446         for (n = 0; n < channel->banlist.used; n++) {
447             ban = channel->banlist.list[n];
448             strftime(buffer, sizeof(buffer), fmt, localtime(&ban->set));
449             send_message_type(4, user, cmd->parent->bot, buffer, ban->ban, ban->who);
450         }
451     }
452     if ((argc < 2) && (channel->members.used >= 50)) {
453         /* early out unless they ask for users */
454         reply("OSMSG_CHANINFO_MANY_USERS", channel->members.used, argv[0], channel->name);
455         return 1;
456     }
457     reply("OSMSG_CHANINFO_USER_COUNT", channel->members.used);
458     for (n=0; n<channel->members.used; n++) {
459         moden = channel->members.list[n];
460         if (moden->modes & MODE_CHANOP)
461             send_message_type(4, user, cmd->parent->bot, " @%s (%s@%s)", moden->user->nick, moden->user->ident, moden->user->hostname);
462     }
463     for (n=0; n<channel->members.used; n++) {
464         moden = channel->members.list[n];
465         if ((moden->modes & (MODE_CHANOP|MODE_VOICE)) == MODE_VOICE)
466             send_message_type(4, user, cmd->parent->bot, " +%s (%s@%s)", moden->user->nick, moden->user->ident, moden->user->hostname);
467     }
468     for (n=0; n<channel->members.used; n++) {
469         moden = channel->members.list[n];
470         if ((moden->modes & (MODE_CHANOP|MODE_VOICE)) == 0)
471             send_message_type(4, user, cmd->parent->bot, "  %s (%s@%s)", moden->user->nick, moden->user->ident, moden->user->hostname);
472     }
473     return 1;
474 }
475
476 static MODCMD_FUNC(cmd_warn) 
477 {
478     char *reason, *message;
479
480     if (!IsChannelName(argv[1])) {
481         reply("OSMSG_NEED_CHANNEL", argv[0]);
482         return 0;
483     }
484     reason = dict_find(opserv_chan_warn, argv[1], NULL);
485     if (reason) {
486         reply("OSMSG_WARN_EXISTS", argv[1]);
487         return 0;
488     }
489     if (argv[2])
490         reason = strdup(unsplit_string(argv+2, argc-2, NULL));
491     else
492         reason = strdup("No reason");
493     dict_insert(opserv_chan_warn, strdup(argv[1]), reason);
494     reply("OSMSG_WARN_ADDED", argv[1], reason);
495     if (dict_find(channels, argv[1], NULL)) {
496         message = alloca(strlen(reason) + strlen(argv[1]) + 55);
497         sprintf(message, "Channel activity warning for channel %s: %s", argv[1], reason);
498         global_message(MESSAGE_RECIPIENT_OPERS, message);
499     }
500     return 1;
501 }
502
503 static MODCMD_FUNC(cmd_unwarn)
504 {
505     if ((argc < 2) || !IsChannelName(argv[1])) {
506         reply("OSMSG_NEED_CHANNEL", argv[0]);
507         return 0;
508     }
509     if (!dict_remove(opserv_chan_warn, argv[1])) {
510         reply("OSMSG_WARN_NOEXIST", argv[1]);
511         return 0;
512     }
513     reply("OSMSG_WARN_DELETED", argv[1]);
514     return 1;
515 }
516
517 static MODCMD_FUNC(cmd_clearbans)
518 {
519     struct mod_chanmode *change;
520     unsigned int ii;
521
522     change = mod_chanmode_alloc(channel->banlist.used);
523     for (ii=0; ii<channel->banlist.used; ii++) {
524         change->args[ii].mode = MODE_REMOVE | MODE_BAN;
525         change->args[ii].u.hostmask = channel->banlist.list[ii]->ban;
526     }
527     modcmd_chanmode_announce(change);
528     mod_chanmode_free(change);
529     reply("OSMSG_CLEARBANS_DONE", channel->name);
530     return 1;
531 }
532
533 static MODCMD_FUNC(cmd_clearmodes)
534 {
535     struct mod_chanmode change;
536
537     if (!channel->modes) {
538         reply("OSMSG_NO_CHANNEL_MODES", channel->name);
539         return 0;
540     }
541     mod_chanmode_init(&change);
542     change.modes_clear = channel->modes;
543     modcmd_chanmode_announce(&change);
544     reply("OSMSG_CLEARMODES_DONE", channel->name);
545     return 1;
546 }
547
548 static MODCMD_FUNC(cmd_deop)
549 {
550     struct mod_chanmode *change;
551     unsigned int arg, count;
552
553     change = mod_chanmode_alloc(argc-1);
554     for (arg = 1, count = 0; arg < argc; ++arg) {
555         struct userNode *victim = GetUserH(argv[arg]);
556         struct modeNode *mn;
557         if (!victim || IsService(victim)
558             || !(mn = GetUserMode(channel, victim))
559             || !(mn->modes & MODE_CHANOP))
560             continue;
561         change->args[count].mode = MODE_REMOVE | MODE_CHANOP;
562         change->args[count++].u.member = mn;
563     }
564     if (count) {
565         change->argc = count;
566         modcmd_chanmode_announce(change);
567     }
568     mod_chanmode_free(change);
569     reply("OSMSG_DEOP_DONE");
570     return 1;
571 }
572
573 static MODCMD_FUNC(cmd_deopall)
574 {
575     struct mod_chanmode *change;
576     unsigned int ii, count;
577
578     change = mod_chanmode_alloc(channel->members.used);
579     for (ii = count = 0; ii < channel->members.used; ++ii) {
580         struct modeNode *mn = channel->members.list[ii];
581         if (IsService(mn->user) || !(mn->modes & MODE_CHANOP))
582             continue;
583         change->args[count].mode = MODE_REMOVE | MODE_CHANOP;
584         change->args[count++].u.member = mn;
585     }
586     if (count) {
587         change->argc = count;
588         modcmd_chanmode_announce(change);
589     }
590     mod_chanmode_free(change);
591     reply("OSMSG_DEOPALL_DONE", channel->name);
592     return 1;
593 }
594
595 static MODCMD_FUNC(cmd_rehash)
596 {
597     extern char *services_config;
598
599     if (conf_read(services_config))
600         reply("OSMSG_REHASH_COMPLETE");
601     else
602         reply("OSMSG_REHASH_FAILED");
603     return 1;
604 }
605
606 static MODCMD_FUNC(cmd_reopen)
607 {
608     log_reopen();
609     reply("OSMSG_REOPEN_COMPLETE");
610     return 1;
611 }
612
613 static MODCMD_FUNC(cmd_reconnect)
614 {
615     reply("OSMSG_RECONNECTING");
616     irc_squit(self, "Reconnecting.", NULL);
617     return 1;
618 }
619
620 static MODCMD_FUNC(cmd_jupe)
621 {
622     extern int force_n2k;
623     struct server *newsrv;
624     unsigned int num;
625     char numeric[COMBO_NUMERIC_LEN+1], srvdesc[SERVERDESCRIPTMAX+1];
626
627     num = atoi(argv[2]);
628     if ((num < 64) && !force_n2k) {
629         inttobase64(numeric, num, 1);
630         inttobase64(numeric+1, 64*64-1, 2);
631     } else {
632         inttobase64(numeric, num, 2);
633         inttobase64(numeric+2, 64*64*64-1, 3);
634     }
635 #ifdef WITH_PROTOCOL_P10
636     if (GetServerN(numeric)) {
637         reply("OSMSG_NUMERIC_COLLIDE", num, numeric);
638         return 0;
639     }
640 #endif
641     if (GetServerH(argv[1])) {
642         reply("OSMSG_NAME_COLLIDE");
643         return 0;
644     }
645     snprintf(srvdesc, sizeof(srvdesc), "JUPE %s", unsplit_string(argv+3, argc-3, NULL));
646     newsrv = AddServer(self, argv[1], 1, now, now, numeric, srvdesc);
647     if (!newsrv) {
648         reply("OSMSG_SRV_CREATE_FAILED");
649         return 0;
650     }
651     irc_server(newsrv);
652     reply("OSMSG_SERVER_JUPED", argv[1]);
653     return 1;
654 }
655
656 static MODCMD_FUNC(cmd_unjupe)
657 {
658     struct server *srv;
659     char *reason;
660
661     srv = GetServerH(argv[1]);
662     if (!srv) {
663         reply("MSG_SERVER_UNKNOWN", argv[1]);
664         return 0;
665     }
666     if (strncmp(srv->description, "JUPE", 4)) {
667         reply("OSMSG_SERVER_NOT_JUPE");
668         return 0;
669     }
670     reason = (argc > 2) ? unsplit_string(argv+2, argc-2, NULL) : "Unjuping server";
671     DelServer(srv, 1, reason);
672     reply("OSMSG_SERVER_UNJUPED");
673     return 1;
674 }
675
676 static MODCMD_FUNC(cmd_jump)
677 {
678     extern struct cManagerNode cManager;
679     void uplink_select(char *name);
680     struct uplinkNode *uplink_find(char *name);
681     struct uplinkNode *uplink;
682     char *target;
683
684     target = unsplit_string(argv+1, argc-1, NULL);
685
686     if (!strcmp(cManager.uplink->name, target)) {
687         reply("OSMSG_CURRENT_UPLINK", cManager.uplink->name);
688         return 0;
689     }
690
691     uplink = uplink_find(target);
692     if (!uplink) {
693         reply("OSMSG_INVALID_UPLINK", target);
694         return 0;
695     }
696     if (uplink->flags & UPLINK_UNAVAILABLE) {
697         reply("OSMSG_UPLINK_DISABLED", uplink->name);
698         return 0;
699     }
700
701     reply("OSMSG_UPLINK_CONNECTING", uplink->name, uplink->host, uplink->port);
702     uplink_select(target);
703     irc_squit(self, "Reconnecting.", NULL);
704     return 1;
705 }
706
707 static MODCMD_FUNC(cmd_die)
708 {
709     char *reason, *text;
710
711     text = unsplit_string(argv+1, argc-1, NULL);
712     reason = alloca(strlen(text) + strlen(user->nick) + 20);
713     sprintf(reason, "Disconnected by %s [%s]", user->nick, text);
714     irc_squit(self, reason, text);
715     quit_services = 1;
716     return 1;
717 }
718
719 static MODCMD_FUNC(cmd_restart)
720 {
721     extern int services_argc;
722     extern char **services_argv;
723     char **restart_argv, *reason, *text;
724
725     text = unsplit_string(argv+1, argc-1, NULL);
726     reason = alloca(strlen(text) + strlen(user->nick) + 17);
727     sprintf(reason, "Restarted by %s [%s]", user->nick, text);
728     irc_squit(self, reason, text);
729
730     /* Append a NULL to the end of argv[]. */
731     restart_argv = (char **)alloca((services_argc + 1) * sizeof(char *));
732     memcpy(restart_argv, services_argv, services_argc * sizeof(char *));
733     restart_argv[services_argc] = NULL;
734
735     call_exit_funcs();
736
737     /* Don't blink. */
738     execv(services_argv[0], restart_argv);
739
740     /* If we're still here, that means something went wrong. Reconnect. */
741     return 1;
742 }
743
744 static struct gline *
745 opserv_block(struct userNode *target, char *src_handle, char *reason, unsigned long duration)
746 {
747     char *mask;
748     mask = alloca(MAXLEN);
749     snprintf(mask, MAXLEN, "*@%s", target->hostname);
750     if (!reason) {
751         reason = alloca(MAXLEN);
752         snprintf(reason, MAXLEN, "G-line requested by %s.", src_handle);
753     }
754     if (!duration) duration = opserv_conf.block_gline_duration;
755     return gline_add(src_handle, mask, duration, reason, now, 1);
756 }
757
758 static MODCMD_FUNC(cmd_block)
759 {
760     struct userNode *target;
761     struct gline *gline;
762     char *reason;
763
764     target = GetUserH(argv[1]);
765     if (!target) {
766         reply("MSG_NICK_UNKNOWN", argv[1]);
767         return 0;
768     }
769     if (IsService(target)) {
770         reply("MSG_SERVICE_IMMUNE", target->nick);
771         return 0;
772     }
773     reason = (argc > 2) ? unsplit_string(argv+2, argc-2, NULL) : NULL;
774     gline = opserv_block(target, user->handle_info->handle, reason, 0);
775     reply("OSMSG_GLINE_ISSUED", gline->target);
776     return 1;
777 }
778
779 static MODCMD_FUNC(cmd_gline)
780 {
781     unsigned long duration;
782     char *reason;
783     struct gline *gline;
784
785     reason = unsplit_string(argv+3, argc-3, NULL);
786     if (!is_gline(argv[1]) && !IsChannelName(argv[1]) && (argv[1][0] != '&')) {
787         reply("MSG_INVALID_GLINE", argv[1]);
788         return 0;
789     }
790     if (!argv[1][strspn(argv[1], "#&*?@.")] && (strlen(argv[1]) < 10)) {
791         reply("OSMSG_STUPID_GLINE", argv[1]);
792         return 0;
793     }
794     duration = ParseInterval(argv[2]);
795     if (!duration) {
796         reply("MSG_INVALID_DURATION", argv[2]);
797         return 0;
798     }
799     gline = gline_add(user->handle_info->handle, argv[1], duration, reason, now, 1);
800     reply("OSMSG_GLINE_ISSUED", gline->target);
801     return 1;
802 }
803
804 static MODCMD_FUNC(cmd_ungline)
805 {
806     if (gline_remove(argv[1], 1))
807         reply("OSMSG_GLINE_REMOVED", argv[1]);
808     else
809         reply("OSMSG_GLINE_FORCE_REMOVED", argv[1]);
810     return 1;
811 }
812
813 static MODCMD_FUNC(cmd_refreshg)
814 {
815     if (argc > 1) {
816         unsigned int count;
817         dict_iterator_t it;
818         struct server *srv;
819
820         for (it=dict_first(servers), count=0; it; it=iter_next(it)) {
821             srv = iter_data(it);
822             if ((srv == self) || !match_ircglob(srv->name, argv[1]))
823                 continue;
824             gline_refresh_server(srv);
825             reply("OSMSG_GLINES_ONE_REFRESHED", srv->name);
826             count++;
827         }
828         if (!count) {
829             reply("MSG_SERVER_UNKNOWN", argv[1]);
830             return 0;
831         }
832     } else {
833         gline_refresh_all();
834         reply("OSMSG_GLINES_REFRESHED");
835     }
836     return 1;
837 }
838
839 static void
840 opserv_ison(struct userNode *tell, struct userNode *target, const char *message)
841 {
842     struct modeNode *mn;
843     unsigned int count, here_len, n, maxlen;
844     char buff[MAXLEN];
845
846     maxlen = tell->handle_info ? tell->handle_info->screen_width : 0;
847     if (!maxlen)
848         maxlen = MAX_LINE_SIZE;
849     for (n=count=0; n<target->channels.used; n++) {
850         mn = target->channels.list[n];
851         here_len = strlen(mn->channel->name);
852         if ((count + here_len + 4) > maxlen) {
853             buff[count] = 0;
854             send_message(tell, opserv, message, buff);
855             count = 0;
856         }
857         if (mn->modes & MODE_CHANOP)
858             buff[count++] = '@';
859         if (mn->modes & MODE_VOICE)
860             buff[count++] = '+';
861         memcpy(buff+count, mn->channel->name, here_len);
862         count += here_len;
863         buff[count++] = ' ';
864     }
865     if (count) {
866         buff[count] = 0;
867         send_message(tell, opserv, message, buff);
868     }
869 }
870
871 static MODCMD_FUNC(cmd_inviteme)
872 {
873     struct userNode *target;
874
875     if (argc < 2) {
876         target = user;
877     } else {
878         target = GetUserH(argv[1]);
879         if (!target) {
880             reply("MSG_NICK_UNKNOWN", argv[1]);
881             return 0;
882         }
883     }
884     if (opserv_conf.debug_channel == NULL) {
885         reply("OSMSG_NO_DEBUG_CHANNEL");
886         return 0;
887     }
888     if (GetUserMode(opserv_conf.debug_channel, user)) {
889         reply("OSMSG_ALREADY_THERE", opserv_conf.debug_channel->name);
890         return 0;
891     }
892     irc_invite(cmd->parent->bot, target, opserv_conf.debug_channel);
893     if (target != user)
894         reply("OSMSG_INVITE_DONE", target->nick, opserv_conf.debug_channel->name);
895     return 1;
896 }
897
898 static MODCMD_FUNC(cmd_invite)
899 {
900     if (GetUserMode(channel, user)) {
901         reply("OSMSG_ALREADY_THERE", channel->name);
902         return 0;
903     }
904     irc_invite(cmd->parent->bot, user, channel);
905     return 1;
906 }
907
908 static MODCMD_FUNC(cmd_join)
909 {
910     struct userNode *bot = cmd->parent->bot;
911
912     if (!IsChannelName(argv[1])) {
913         reply("MSG_NOT_CHANNEL_NAME");
914         return 0;
915     } else if (!(channel = GetChannel(argv[1]))) {
916         channel = AddChannel(argv[1], now, NULL, NULL);
917         AddChannelUser(bot, channel)->modes |= MODE_CHANOP;
918     } else if (GetUserMode(channel, bot)) {
919         reply("OSMSG_ALREADY_JOINED", channel->name);
920         return 0;
921     } else {
922         struct mod_chanmode change;
923         mod_chanmode_init(&change);
924         change.argc = 1;
925         change.args[0].mode = MODE_CHANOP;
926         change.args[0].u.member = AddChannelUser(bot, channel);
927         modcmd_chanmode_announce(&change);
928     }
929     irc_fetchtopic(bot, channel->name);
930     reply("OSMSG_JOIN_DONE", channel->name);
931     return 1;
932 }
933
934 static MODCMD_FUNC(cmd_kick)
935 {
936     struct userNode *target;
937     char *reason;
938
939     if (argc < 3) {
940         reason = alloca(strlen(OSMSG_KICK_REQUESTED)+strlen(user->nick)+1);
941         sprintf(reason, OSMSG_KICK_REQUESTED, user->nick);
942     } else {
943         reason = unsplit_string(argv+2, argc-2, NULL);
944     }
945     target = GetUserH(argv[1]);
946     if (!target) {
947         reply("MSG_NICK_UNKNOWN", argv[1]);
948         return 0;
949     }
950     if (!GetUserMode(channel, target)) {
951         reply("OSMSG_NOT_ON_CHANNEL", target->nick, channel->name);
952         return 0;
953     }
954     KickChannelUser(target, channel, cmd->parent->bot, reason);
955     return 1;
956 }
957
958 static MODCMD_FUNC(cmd_kickall)
959 {
960     unsigned int limit, n, inchan;
961     struct modeNode *mn;
962     char *reason;
963     struct userNode *bot = cmd->parent->bot;
964
965     /* ircu doesn't let servers KICK users, so if OpServ's not in the
966      * channel, we have to join it in temporarily. */
967     if (!(inchan = GetUserMode(channel, bot) ? 1 : 0)) {
968         struct mod_chanmode change;
969         mod_chanmode_init(&change);
970         change.args[0].mode = MODE_CHANOP;
971         change.args[0].u.member = AddChannelUser(bot, channel);
972         modcmd_chanmode_announce(&change);
973     }
974     if (argc < 2) {
975         reason = alloca(strlen(OSMSG_KICK_REQUESTED)+strlen(user->nick)+1);
976         sprintf(reason, OSMSG_KICK_REQUESTED, user->nick);
977     } else {
978         reason = unsplit_string(argv+1, argc-1, NULL);
979     }
980     limit = user->handle_info->opserv_level;
981     for (n=channel->members.used; n>0;) {
982         mn = channel->members.list[--n];
983         if (IsService(mn->user)
984             || (mn->user->handle_info
985                 && (mn->user->handle_info->opserv_level >= limit))) {
986             continue;
987         }
988         KickChannelUser(mn->user, channel, bot, reason);
989     }
990     if (!inchan)
991         DelChannelUser(bot, channel, "My work here is done", 0);
992     reply("OSMSG_KICKALL_DONE", channel->name);
993     return 1;
994 }
995
996 static MODCMD_FUNC(cmd_kickban)
997 {
998     struct mod_chanmode change;
999     struct userNode *target;
1000     char *reason;
1001     char *mask;
1002
1003     if (argc == 2) {
1004         reason = alloca(strlen(OSMSG_KICK_REQUESTED)+strlen(user->nick)+1);
1005         sprintf(reason, OSMSG_KICK_REQUESTED, user->nick);
1006     } else {
1007         reason = unsplit_string(argv+2, argc-2, NULL);
1008     }
1009     target = GetUserH(argv[1]);
1010     if (!target) {
1011         reply("MSG_NICK_UNKNOWN", argv[1]);
1012         return 0;
1013     }
1014     if (!GetUserMode(channel, target)) {
1015         reply("OSMSG_NOT_ON_CHANNEL", target->nick, channel->name);
1016         return 0;
1017     }
1018     mod_chanmode_init(&change);
1019     change.argc = 1;
1020     change.args[0].mode = MODE_BAN;
1021     change.args[0].u.hostmask = mask = generate_hostmask(target, 0);
1022     modcmd_chanmode_announce(&change);
1023     KickChannelUser(target, channel, cmd->parent->bot, reason);
1024     free(mask);
1025     return 1;
1026 }
1027
1028 static MODCMD_FUNC(cmd_kickbanall)
1029 {
1030     struct modeNode *mn;
1031     struct userNode *bot = cmd->parent->bot;
1032     struct mod_chanmode *change;
1033     char *reason;
1034     unsigned int limit, n, inchan;
1035
1036     /* ircu doesn't let servers KICK users, so if OpServ's not in the
1037      * channel, we have to join it in temporarily. */
1038     if (!(inchan = GetUserMode(channel, bot) ? 1 : 0)) {
1039         change = mod_chanmode_alloc(2);
1040         change->args[0].mode = MODE_CHANOP;
1041         change->args[0].u.member = AddChannelUser(bot, channel);
1042         change->args[1].mode = MODE_BAN;
1043         change->args[1].u.hostmask = "*!*@*";
1044     } else {
1045         change = mod_chanmode_alloc(1);
1046         change->args[0].mode = MODE_BAN;
1047         change->args[0].u.hostmask = "*!*@*";
1048     }
1049     modcmd_chanmode_announce(change);
1050     mod_chanmode_free(change);
1051     if (argc < 2) {
1052         reason = alloca(strlen(OSMSG_KICK_REQUESTED)+strlen(user->nick)+1);
1053         sprintf(reason, OSMSG_KICK_REQUESTED, user->nick);
1054     } else {
1055         reason = unsplit_string(argv+1, argc-1, NULL);
1056     }
1057     /* now kick them */
1058     limit = user->handle_info->opserv_level;
1059     for (n=channel->members.used; n>0; ) {
1060         mn = channel->members.list[--n];
1061         if (IsService(mn->user)
1062             || (mn->user->handle_info
1063                 && (mn->user->handle_info->opserv_level >= limit))) {
1064             continue;
1065         }
1066         KickChannelUser(mn->user, channel, bot, reason);
1067     }
1068     if (!inchan)
1069         DelChannelUser(bot, channel, "My work here is done", 0);
1070     reply("OSMSG_KICKALL_DONE", channel->name);
1071     return 1;    
1072 }
1073
1074 static MODCMD_FUNC(cmd_part)
1075 {
1076     char *reason;
1077
1078     if (!IsChannelName(argv[1])) {
1079         reply("MSG_NOT_CHANNEL_NAME");
1080         return 0;
1081     }
1082     if ((channel = GetChannel(argv[1]))) {
1083         if (!GetUserMode(channel, cmd->parent->bot)) {
1084             reply("OSMSG_NOT_ON_CHANNEL", cmd->parent->bot->nick, channel->name);
1085             return 0;
1086         }
1087         reason = (argc < 3) ? "Leaving." : unsplit_string(argv+2, argc-2, NULL);
1088         reply("OSMSG_LEAVING", channel->name);
1089         DelChannelUser(cmd->parent->bot, channel, reason, 0);
1090     }
1091     return 1;
1092 }
1093
1094 static MODCMD_FUNC(cmd_mode)
1095 {
1096     if (!modcmd_chanmode(argv+1, argc-1, MCP_ALLOW_OVB|MCP_KEY_FREE|MC_ANNOUNCE)) {
1097         reply("MSG_INVALID_MODES", unsplit_string(argv+1, argc-1, NULL));
1098         return 0;
1099     }
1100     reply("OSMSG_MODE_SET", channel->name);
1101     return 1;
1102 }
1103
1104 static MODCMD_FUNC(cmd_op)
1105 {
1106     struct mod_chanmode *change;
1107     unsigned int arg, count;
1108
1109     change = mod_chanmode_alloc(argc-1);
1110     for (arg = 1, count = 0; arg < argc; ++arg) {
1111         struct userNode *victim;
1112         struct modeNode *mn;
1113         if (!(victim = GetUserH(argv[arg])))
1114             continue;
1115         if (!(mn =  GetUserMode(channel, victim)))
1116             continue;
1117         if (mn->modes & MODE_CHANOP)
1118             continue;
1119         change->args[count].mode = MODE_CHANOP;
1120         change->args[count++].u.member = mn;
1121     }
1122     if (count) {
1123         change->argc = count;
1124         modcmd_chanmode_announce(change);
1125     }
1126     mod_chanmode_free(change);
1127     reply("OSMSG_OP_DONE");
1128     return 1;
1129 }
1130
1131 static MODCMD_FUNC(cmd_opall)
1132 {
1133     struct mod_chanmode *change;
1134     unsigned int ii, count;
1135
1136     change = mod_chanmode_alloc(channel->members.used);
1137     for (ii = count = 0; ii < channel->members.used; ++ii) {
1138         struct modeNode *mn = channel->members.list[ii];
1139         if (mn->modes & MODE_CHANOP)
1140             continue;
1141         change->args[count].mode = MODE_CHANOP;
1142         change->args[count++].u.member = mn;
1143     }
1144     if (count) {
1145         change->argc = count;
1146         modcmd_chanmode_announce(change);
1147     }
1148     mod_chanmode_free(change);
1149     reply("OSMSG_OPALL_DONE", channel->name);
1150     return 1;
1151 }
1152
1153 static MODCMD_FUNC(cmd_whois)
1154 {
1155     struct userNode *target;
1156     char buffer[128];
1157     int bpos, herelen;
1158
1159 #ifdef WITH_PROTOCOL_P10
1160     if (argv[1][0] == '*')
1161         target = GetUserN(argv[1]+1);
1162     else
1163 #endif
1164     target = GetUserH(argv[1]);
1165     if (!target) {
1166         reply("MSG_NICK_UNKNOWN", argv[1]);
1167         return 0;
1168     }
1169     reply("OSMSG_WHOIS_NICK", target->nick);
1170     reply("OSMSG_WHOIS_HOST", target->ident, target->hostname);
1171     if (IsFakeHost(target))
1172         reply("OSMSG_WHOIS_FAKEHOST", target->fakehost);
1173     reply("OSMSG_WHOIS_IP", inet_ntoa(target->ip));
1174     if (target->modes) {
1175         bpos = 0;
1176 #define buffer_cat(str) (herelen = strlen(str), memcpy(buffer+bpos, str, herelen), bpos += herelen)
1177         if (IsInvisible(target)) buffer[bpos++] = 'i';
1178         if (IsWallOp(target)) buffer[bpos++] = 'w';
1179         if (IsOper(target)) buffer[bpos++] = 'o';
1180         if (IsGlobal(target)) buffer[bpos++] = 'g';
1181         if (IsServNotice(target)) buffer[bpos++] = 's';
1182         if (IsHelperIrcu(target)) buffer[bpos++] = 'h';
1183         if (IsService(target)) buffer[bpos++] = 'k';
1184         if (IsDeaf(target)) buffer[bpos++] = 'd';
1185         if (IsHiddenHost(target)) buffer[bpos++] = 'x';
1186         if (IsGagged(target)) buffer_cat(" (gagged)");
1187         if (IsRegistering(target)) buffer_cat(" (registered account)");
1188         buffer[bpos] = 0;
1189         if (bpos > 0)
1190             reply("OSMSG_WHOIS_MODES", buffer);
1191     }
1192     reply("OSMSG_WHOIS_INFO", target->info);
1193 #ifdef WITH_PROTOCOL_P10
1194     reply("OSMSG_WHOIS_NUMERIC", target->numeric);
1195 #endif
1196     reply("OSMSG_WHOIS_SERVER", target->uplink->name);
1197     reply("OSMSG_WHOIS_ACCOUNT", (target->handle_info ? target->handle_info->handle : "Not authenticated"));
1198     intervalString(buffer, now - target->timestamp, user->handle_info);
1199     reply("OSMSG_WHOIS_NICK_AGE", buffer);
1200     if (target->channels.used <= MAX_CHANNELS_WHOIS)
1201         opserv_ison(user, target, "OSMSG_WHOIS_CHANNELS");
1202     else
1203         reply("OSMSG_WHOIS_HIDECHANS");
1204     return 1;
1205 }
1206
1207 static MODCMD_FUNC(cmd_unban)
1208 {
1209     struct mod_chanmode change;
1210     mod_chanmode_init(&change);
1211     change.argc = 1;
1212     change.args[0].mode = MODE_REMOVE | MODE_BAN;
1213     change.args[0].u.hostmask = argv[1];
1214     modcmd_chanmode_announce(&change);
1215     reply("OSMSG_UNBAN_DONE", channel->name);
1216     return 1;
1217 }
1218
1219 static MODCMD_FUNC(cmd_voiceall)
1220 {
1221     struct mod_chanmode *change;
1222     unsigned int ii, count;
1223
1224     change = mod_chanmode_alloc(channel->members.used);
1225     for (ii = count = 0; ii < channel->members.used; ++ii) {
1226         struct modeNode *mn = channel->members.list[ii];
1227         if (mn->modes & (MODE_CHANOP|MODE_VOICE))
1228             continue;
1229         change->args[count].mode = MODE_VOICE;
1230         change->args[count++].u.member = mn;
1231     }
1232     if (count) {
1233         change->argc = count;
1234         modcmd_chanmode_announce(change);
1235     }
1236     mod_chanmode_free(change);
1237     reply("OSMSG_CHANNEL_VOICED", channel->name);
1238     return 1;
1239 }
1240
1241 static MODCMD_FUNC(cmd_devoiceall)
1242 {
1243     struct mod_chanmode *change;
1244     unsigned int ii, count;
1245
1246     change = mod_chanmode_alloc(channel->members.used);
1247     for (ii = count = 0; ii < channel->members.used; ++ii) {
1248         struct modeNode *mn = channel->members.list[ii];
1249         if (!(mn->modes & MODE_VOICE))
1250             continue;
1251         change->args[count].mode = MODE_REMOVE | MODE_VOICE;
1252         change->args[count++].u.member = mn;
1253     }
1254     if (count) {
1255         change->argc = count;
1256         modcmd_chanmode_announce(change);
1257     }
1258     mod_chanmode_free(change);
1259     reply("OSMSG_CHANNEL_DEVOICED", channel->name);
1260     return 1;
1261 }
1262
1263 static MODCMD_FUNC(cmd_stats_bad) {
1264     dict_iterator_t it;
1265     unsigned int ii, end, here_len;
1266     char buffer[400];
1267
1268     /* Show the bad word list.. */
1269     for (ii=end=0; ii<opserv_bad_words->used; ii++) {
1270         here_len = strlen(opserv_bad_words->list[ii]);
1271         if ((end + here_len + 2) > sizeof(buffer)) {
1272             buffer[end] = 0;
1273             reply("OSMSG_BADWORD_LIST", buffer);
1274             end = 0;
1275         }
1276         memcpy(buffer+end, opserv_bad_words->list[ii], here_len);
1277         end += here_len;
1278         buffer[end++] = ' ';
1279     }
1280     buffer[end] = 0;
1281     reply("OSMSG_BADWORD_LIST", buffer);
1282
1283     /* Show the exemption list.. */
1284     for (it=dict_first(opserv_exempt_channels), end=0; it; it=iter_next(it)) {
1285         here_len = strlen(iter_key(it));
1286         if ((end + here_len + 2) > sizeof(buffer)) {
1287             buffer[end] = 0;
1288             reply("OSMSG_EXEMPTED_LIST", buffer);
1289             end = 0;
1290         }
1291         memcpy(buffer+end, iter_key(it), here_len);
1292         end += here_len;
1293         buffer[end++] = ' ';
1294     }
1295     buffer[end] = 0;
1296     reply("OSMSG_EXEMPTED_LIST", buffer);
1297     return 1;
1298 }
1299
1300 static MODCMD_FUNC(cmd_stats_glines) {
1301     reply("OSMSG_GLINE_COUNT", gline_count());
1302     return 1;
1303 }
1304
1305 static void
1306 trace_links(struct userNode *bot, struct userNode *user, struct server *server, unsigned int depth) {
1307     unsigned int nn, pos;
1308     char buffer[400];
1309
1310     for (nn=1; nn<=depth; nn<<=1) ;
1311     for (pos=0, nn>>=1; nn>1; ) {
1312         nn >>= 1;
1313         buffer[pos++] = (depth & nn) ? ((nn == 1) ? '`' : ' ') : '|';
1314         buffer[pos++] = (nn == 1) ? '-': ' ';
1315     }
1316     buffer[pos] = 0;
1317     send_message(user, bot, "OSMSG_LINKS_SERVER", buffer, server->name, server->clients, server->description);
1318     if (!server->children.used)
1319         return;
1320     for (nn=0; nn<server->children.used-1; nn++) {
1321         trace_links(bot, user, server->children.list[nn], depth<<1);
1322     }
1323     trace_links(bot, user, server->children.list[nn], (depth<<1)|1);
1324 }
1325
1326 static MODCMD_FUNC(cmd_stats_links) {
1327     trace_links(cmd->parent->bot, user, self, 1);
1328     return 1;
1329 }
1330
1331
1332 static MODCMD_FUNC(cmd_stats_max) {
1333     reply("OSMSG_MAX_CLIENTS", max_clients, asctime(localtime(&max_clients_time)));
1334     return 1;
1335 }
1336
1337 static MODCMD_FUNC(cmd_stats_network) {
1338     struct helpfile_table tbl;
1339     unsigned int nn, tot_clients;
1340     dict_iterator_t it;
1341
1342     tot_clients = dict_size(clients);
1343     reply("OSMSG_NETWORK_INFO", tot_clients, invis_clients, curr_opers.used);
1344     tbl.length = dict_size(servers)+1;
1345     tbl.width = 3;
1346     tbl.flags = TABLE_NO_FREE;
1347     tbl.contents = calloc(tbl.length, sizeof(*tbl.contents));
1348     tbl.contents[0] = calloc(tbl.width, sizeof(**tbl.contents));
1349     tbl.contents[0][0] = "Server Name";
1350     tbl.contents[0][1] = "Clients";
1351     tbl.contents[0][2] = "Load";
1352     for (it=dict_first(servers), nn=1; it; it=iter_next(it)) {
1353         struct server *server = iter_data(it);
1354         char *buffer = malloc(32);
1355         tbl.contents[nn] = calloc(tbl.width, sizeof(**tbl.contents));
1356         tbl.contents[nn][0] = server->name;
1357         tbl.contents[nn][1] = buffer;
1358         sprintf(buffer, "%u", server->clients);
1359         tbl.contents[nn][2] = buffer + 16;
1360         sprintf(buffer+16, "%3.3g%%", ((double)server->clients/tot_clients)*100);
1361         nn++;
1362     }
1363     table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
1364     for (nn=1; nn<tbl.length; nn++) {
1365         free((char*)tbl.contents[nn][1]);
1366         free(tbl.contents[nn]);
1367     }
1368     free(tbl.contents[0]);
1369     free(tbl.contents);
1370     return 1;
1371 }
1372
1373 static MODCMD_FUNC(cmd_stats_network2) {
1374     struct helpfile_table tbl;
1375     unsigned int nn;
1376     dict_iterator_t it;
1377
1378     tbl.length = dict_size(servers)+1;
1379     tbl.width = 3;
1380     tbl.flags = TABLE_NO_FREE;
1381     tbl.contents = calloc(tbl.length, sizeof(*tbl.contents));
1382     tbl.contents[0] = calloc(tbl.width, sizeof(**tbl.contents));
1383     tbl.contents[0][0] = "Server Name";
1384     tbl.contents[0][1] = "Numeric";
1385     tbl.contents[0][2] = "Link Time";
1386     for (it=dict_first(servers), nn=1; it; it=iter_next(it)) {
1387         struct server *server = iter_data(it);
1388         char *buffer = malloc(64);
1389         int ofs;
1390
1391         tbl.contents[nn] = calloc(tbl.width, sizeof(**tbl.contents));
1392         tbl.contents[nn][0] = server->name;
1393 #ifdef WITH_PROTOCOL_P10
1394         sprintf(buffer, "%s (%ld)", server->numeric, base64toint(server->numeric, strlen(server->numeric)));
1395 #else
1396         buffer[0] = 0;
1397 #endif
1398         tbl.contents[nn][1] = buffer;
1399         ofs = strlen(buffer) + 1;
1400         intervalString(buffer + ofs, now - server->link, user->handle_info);
1401         if (server->self_burst)
1402             strcat(buffer + ofs, " Bursting");
1403         tbl.contents[nn][2] = buffer + ofs;
1404         nn++;
1405     }
1406     table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
1407     for (nn=1; nn<tbl.length; nn++) {
1408         free((char*)tbl.contents[nn][1]);
1409         free(tbl.contents[nn]);
1410     }
1411     free(tbl.contents[0]);
1412     free(tbl.contents);
1413     return 1;
1414 }
1415
1416 static MODCMD_FUNC(cmd_stats_reserved) {
1417     dict_iterator_t it;
1418
1419     reply("OSMSG_RESERVED_LIST");
1420     for (it = dict_first(opserv_reserved_nick_dict); it; it = iter_next(it))
1421         send_message_type(4, user, cmd->parent->bot, "%s", iter_key(it));
1422     return 1;
1423 }
1424
1425 static MODCMD_FUNC(cmd_stats_trusted) {
1426     dict_iterator_t it;
1427     struct trusted_host *th;
1428     char length[INTERVALLEN], issued[INTERVALLEN], limit[32];
1429
1430     if (argc > 1) {
1431         th = dict_find(opserv_trusted_hosts, argv[1], NULL);
1432         if (th) {
1433             if (th->issued)
1434                 intervalString(issued, now - th->issued, user->handle_info);
1435             if (th->expires)
1436                 intervalString(length, th->expires - now, user->handle_info);
1437             if (th->limit)
1438                 sprintf(limit, "limit %lu", th->limit);
1439             reply("OSMSG_HOST_IS_TRUSTED",
1440                   th->ipaddr,
1441                   (th->limit ? limit : "no limit"),
1442                   (th->issued ? issued : "some time"),
1443                   (th->issuer ? th->issuer : "<unknown>"),
1444                   (th->expires ? length : "never"),
1445                   (th->reason ? th->reason : "<unknown>"));
1446         } else {
1447             reply("OSMSG_HOST_NOT_TRUSTED", argv[1]);
1448         }
1449     } else {
1450         reply("OSMSG_TRUSTED_LIST");
1451         for (it = dict_first(opserv_trusted_hosts); it; it = iter_next(it)) {
1452             th = iter_data(it);
1453             if (th->issued)
1454                 intervalString(issued, now - th->issued, user->handle_info);
1455             if (th->expires)
1456                 intervalString(length, th->expires - now, user->handle_info);
1457             if (th->limit)
1458                 sprintf(limit, "limit %lu", th->limit);
1459             reply("OSMSG_HOST_IS_TRUSTED", iter_key(it),
1460                   (th->limit ? limit : "no limit"),
1461                   (th->issued ? issued : "some time"),
1462                   (th->issuer ? th->issuer : "<unknown>"),
1463                   (th->expires ? length : "never"),
1464                   (th->reason ? th->reason : "<unknown>"));
1465         }
1466     }
1467     return 1;
1468 }
1469
1470 static MODCMD_FUNC(cmd_stats_uplink) {
1471     extern struct cManagerNode cManager;
1472     struct uplinkNode *uplink;
1473
1474     uplink = cManager.uplink;
1475     reply("OSMSG_UPLINK_START", uplink->name);
1476     reply("OSMSG_UPLINK_ADDRESS", uplink->host, uplink->port);
1477     return 1;
1478 }
1479
1480 static MODCMD_FUNC(cmd_stats_uptime) {
1481     char uptime[INTERVALLEN];
1482     struct tms buf;
1483     extern time_t boot_time;
1484     extern int lines_processed;
1485     static long clocks_per_sec;
1486
1487     if (!clocks_per_sec) {
1488 #if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
1489         clocks_per_sec = sysconf(_SC_CLK_TCK);
1490         if (clocks_per_sec <= 0)
1491 #endif
1492         {
1493             log_module(OS_LOG, LOG_ERROR, "Unable to query sysconf(_SC_CLK_TCK), output of 'stats uptime' will be wrong");
1494             clocks_per_sec = CLOCKS_PER_SEC;
1495         }
1496     }
1497     intervalString(uptime, time(NULL)-boot_time, user->handle_info);
1498     times(&buf);
1499     reply("OSMSG_UPTIME_STATS",
1500           uptime, lines_processed,
1501           buf.tms_utime/(double)clocks_per_sec,
1502           buf.tms_stime/(double)clocks_per_sec);
1503     return 1;
1504 }
1505
1506 static MODCMD_FUNC(cmd_stats_alerts) {
1507     dict_iterator_t it;
1508     struct opserv_user_alert *alert;
1509     const char *reaction;
1510
1511     reply("OSMSG_ALERTS_LIST");
1512     for (it = dict_first(opserv_user_alerts); it; it = iter_next(it)) {
1513         alert = iter_data(it);
1514         switch (alert->reaction) {
1515         case REACT_NOTICE: reaction = "notice"; break;
1516         case REACT_KILL: reaction = "kill"; break;
1517         case REACT_GLINE: reaction = "gline"; break;
1518         default: reaction = "<unknown>"; break;
1519         }
1520         reply("OSMSG_ALERT_IS", iter_key(it), alert->owner, reaction, alert->text_discrim);
1521     }
1522     return 1;
1523 }
1524
1525 static MODCMD_FUNC(cmd_stats_gags) {
1526     struct gag_entry *gag;
1527     struct helpfile_table table;
1528     unsigned int nn;
1529
1530     if (!gagList) {
1531         reply("OSMSG_NO_GAGS");
1532         return 1;
1533     }
1534     for (nn=0, gag=gagList; gag; nn++, gag=gag->next) ;
1535     table.length = nn+1;
1536     table.width = 4;
1537     table.flags = TABLE_NO_FREE;
1538     table.contents = calloc(table.length, sizeof(char**));
1539     table.contents[0] = calloc(table.width, sizeof(char*));
1540     table.contents[0][0] = "Mask";
1541     table.contents[0][1] = "Owner";
1542     table.contents[0][2] = "Expires";
1543     table.contents[0][3] = "Reason";
1544     for (nn=1, gag=gagList; gag; nn++, gag=gag->next) {
1545         char expstr[INTERVALLEN];
1546         if (gag->expires)
1547             intervalString(expstr, gag->expires - now, user->handle_info);
1548         else
1549             strcpy(expstr, "Never");
1550         table.contents[nn] = calloc(table.width, sizeof(char*));
1551         table.contents[nn][0] = gag->mask;
1552         table.contents[nn][1] = gag->owner;
1553         table.contents[nn][2] = strdup(expstr);
1554         table.contents[nn][3] = gag->reason;
1555     }
1556     table_send(cmd->parent->bot, user->nick, 0, NULL, table);
1557     for (nn=1; nn<table.length; nn++) {
1558         free((char*)table.contents[nn][2]);
1559         free(table.contents[nn]);
1560     }
1561     free(table.contents[0]);
1562     free(table.contents);
1563     return 1;
1564 }
1565
1566 static MODCMD_FUNC(cmd_stats_timeq) {
1567     reply("OSMSG_TIMEQ_INFO", timeq_size(), timeq_next()-now);
1568     return 1;
1569 }
1570
1571 static MODCMD_FUNC(cmd_stats_warn) {
1572     dict_iterator_t it;
1573
1574     reply("OSMSG_WARN_LISTSTART");
1575     for (it=dict_first(opserv_chan_warn); it; it=iter_next(it))
1576         reply("OSMSG_WARN_LISTENTRY", iter_key(it), (char*)iter_data(it));
1577     reply("OSMSG_WARN_LISTEND");
1578     return 1;
1579 }
1580
1581 static MODCMD_FUNC(cmd_dump)
1582 {
1583     char linedup[MAXLEN], *original;
1584
1585     original = unsplit_string(argv+1, argc-1, NULL);
1586     safestrncpy(linedup, original, sizeof(linedup));
1587     /* assume it's only valid IRC if we can parse it */
1588     if (parse_line(linedup, 1)) {
1589         irc_raw(original);
1590         reply("OSMSG_LINE_DUMPED");
1591     } else
1592         reply("OSMSG_RAW_PARSE_ERROR");
1593     return 1;
1594 }
1595
1596 static MODCMD_FUNC(cmd_raw)
1597 {
1598     char linedup[MAXLEN], *original;
1599
1600     original = unsplit_string(argv+1, argc-1, NULL);
1601     safestrncpy(linedup, original, sizeof(linedup));
1602     /* Try to parse the line before sending it; if it's too wrong,
1603      * maybe it will core us instead of our uplink. */
1604     parse_line(linedup, 1);
1605     irc_raw(original);
1606     reply("OSMSG_LINE_DUMPED");
1607     return 1;
1608 }
1609
1610 static struct userNode *
1611 opserv_add_reserve(struct svccmd *cmd, struct userNode *user, const char *nick, const char *ident, const char *host, const char *desc)
1612 {
1613     struct userNode *resv = GetUserH(nick);
1614     if (resv) {
1615         if (IsService(resv)) {
1616             reply("MSG_SERVICE_IMMUNE", resv->nick);
1617             return NULL;
1618         }
1619         if (resv->handle_info
1620             && resv->handle_info->opserv_level > user->handle_info->opserv_level) {
1621             reply("OSMSG_LEVEL_TOO_LOW");
1622             return NULL;
1623         }
1624     }
1625     if ((resv = AddClone(nick, ident, host, desc))) {
1626         dict_insert(opserv_reserved_nick_dict, resv->nick, resv);
1627     }
1628     return resv;
1629 }
1630
1631 static MODCMD_FUNC(cmd_collide)
1632 {
1633     struct userNode *resv;
1634
1635     resv = opserv_add_reserve(cmd, user, argv[1], argv[2], argv[3], unsplit_string(argv+4, argc-4, NULL));
1636     if (resv) {
1637         reply("OSMSG_COLLIDED_NICK", resv->nick);
1638         return 1;
1639     } else {
1640         reply("OSMSG_CLONE_FAILED", argv[1]);
1641         return 0;
1642     }
1643 }
1644
1645 static MODCMD_FUNC(cmd_reserve)
1646 {
1647     struct userNode *resv;
1648
1649     resv = opserv_add_reserve(cmd, user, argv[1], argv[2], argv[3], unsplit_string(argv+4, argc-4, NULL));
1650     if (resv) {
1651         resv->modes |= FLAGS_PERSISTENT;
1652         reply("OSMSG_RESERVED_NICK", resv->nick);
1653         return 1;
1654     } else {
1655         reply("OSMSG_CLONE_FAILED", argv[1]);
1656         return 0;
1657     }
1658 }
1659
1660 static int
1661 free_reserve(char *nick)
1662 {
1663     struct userNode *resv;
1664     unsigned int rlen;
1665     char *reason;
1666
1667     resv = dict_find(opserv_reserved_nick_dict, nick, NULL);
1668     if (!resv)
1669         return 0;
1670
1671     rlen = strlen(resv->nick)+strlen(OSMSG_PART_REASON);
1672     reason = alloca(rlen);
1673     snprintf(reason, rlen, OSMSG_PART_REASON, resv->nick);
1674     DelUser(resv, NULL, 1, reason);
1675     dict_remove(opserv_reserved_nick_dict, nick);
1676     return 1;
1677 }
1678
1679 static MODCMD_FUNC(cmd_unreserve)
1680 {
1681     if (free_reserve(argv[1]))
1682         reply("OSMSG_NICK_UNRESERVED", argv[1]);
1683     else
1684         reply("OSMSG_NOT_RESERVED", argv[1]);
1685     return 1;
1686 }
1687
1688 static void
1689 opserv_part_channel(void *data)
1690 {
1691     DelChannelUser(opserv, data, "Leaving.", 0);
1692 }
1693
1694 static int alert_check_user(const char *key, void *data, void *extra);
1695
1696 static int
1697 opserv_new_user_check(struct userNode *user)
1698 {
1699     struct opserv_hostinfo *ohi;
1700     struct gag_entry *gag;
1701
1702     /* Check to see if we should ignore them entirely. */
1703     if (IsLocal(user) || IsService(user))
1704         return 0;
1705
1706     /* Check for alerts, and stop if we find one that kills them. */
1707     if (dict_foreach(opserv_user_alerts, alert_check_user, user))
1708         return 1;
1709
1710     /* Gag them if appropriate. */
1711     for (gag = gagList; gag; gag = gag->next) {
1712         if (user_matches_glob(user, gag->mask, 1)) {
1713             gag_helper_func(user, NULL);
1714             break;
1715         }
1716     }
1717
1718     /* Add to host info struct */
1719     if (!(ohi = dict_find(opserv_hostinfo_dict, inet_ntoa(user->ip), NULL))) {
1720         ohi = calloc(1, sizeof(*ohi));
1721         dict_insert(opserv_hostinfo_dict, strdup(inet_ntoa(user->ip)), ohi);
1722         userList_init(&ohi->clients);
1723     }
1724     userList_append(&ohi->clients, user);
1725
1726     /* Only warn of new user floods outside of bursts. */
1727     if (!user->uplink->burst) {
1728         if (!policer_conforms(&opserv_conf.new_user_policer, now, 10)) {
1729             if (!new_user_flood) {
1730                 new_user_flood = 1;
1731                 opserv_alert("Warning: Possible new-user flood.");
1732             }
1733         } else {
1734             new_user_flood = 0;
1735         }
1736     }
1737
1738     /* Only warn or G-line if there's an untrusted max and their IP is sane. */
1739     if (opserv_conf.untrusted_max && user->ip.s_addr && (ntohl(user->ip.s_addr) != INADDR_LOOPBACK)) {
1740         struct trusted_host *th = dict_find(opserv_trusted_hosts, inet_ntoa(user->ip), NULL);
1741         unsigned int limit = th ? th->limit : opserv_conf.untrusted_max;
1742         if (!limit) {
1743             /* 0 means unlimited hosts */
1744         } else if (ohi->clients.used == limit) {
1745             unsigned int nn;
1746             for (nn=0; nn<ohi->clients.used; nn++)
1747                 send_message(ohi->clients.list[nn], opserv, "OSMSG_CLONE_WARNING");
1748         } else if (ohi->clients.used > limit) {
1749             char target[18];
1750             sprintf(target, "*@%s", inet_ntoa(user->ip));
1751             gline_add(opserv->nick, target, opserv_conf.clone_gline_duration, "AUTO Excessive connections from a single host.", now, 1);
1752         }
1753     }
1754
1755     return 0;
1756 }
1757
1758 static void
1759 opserv_user_cleanup(struct userNode *user, UNUSED_ARG(struct userNode *killer), UNUSED_ARG(const char *why))
1760 {
1761     struct opserv_hostinfo *ohi;
1762
1763     if (IsLocal(user)) {
1764         /* Try to remove it from the reserved nick dict without
1765          * calling free_reserve, because that would call DelUser(),
1766          * and we'd loop back to here. */
1767         dict_remove(opserv_reserved_nick_dict, user->nick);
1768         return;
1769     }
1770     if ((ohi = dict_find(opserv_hostinfo_dict, inet_ntoa(user->ip), NULL))) {
1771         userList_remove(&ohi->clients, user);
1772         if (ohi->clients.used == 0) dict_remove(opserv_hostinfo_dict, inet_ntoa(user->ip));
1773     }
1774 }
1775
1776 int
1777 opserv_bad_channel(const char *name)
1778 {
1779     unsigned int found;
1780
1781     dict_find(opserv_exempt_channels, name, &found);
1782     if (found)
1783         return 0;
1784
1785     if (gline_find(name))
1786         return 1;
1787
1788     for (found=0; found<opserv_bad_words->used; ++found)
1789         if (irccasestr(name, opserv_bad_words->list[found]))
1790             return 1;
1791
1792     return 0;
1793 }
1794
1795 static void
1796 opserv_shutdown_channel(struct chanNode *channel, const char *reason)
1797 {
1798     struct mod_chanmode *change;
1799     unsigned int nn;
1800
1801     change = mod_chanmode_alloc(2);
1802     change->modes_set = MODE_SECRET | MODE_INVITEONLY;
1803     change->args[0].mode = MODE_CHANOP;
1804     change->args[0].u.member = AddChannelUser(opserv, channel);
1805     change->args[1].mode = MODE_BAN;
1806     change->args[1].u.hostmask = "*!*@*";
1807     mod_chanmode_announce(opserv, channel, change);
1808     mod_chanmode_free(change);
1809     for (nn=channel->members.used; nn>0; ) {
1810         struct modeNode *mNode = channel->members.list[--nn];
1811         if (IsService(mNode->user))
1812             continue;
1813         KickChannelUser(mNode->user, channel, opserv, user_find_message(mNode->user, reason));
1814     }
1815     timeq_add(now + opserv_conf.purge_lock_delay, opserv_part_channel, channel);
1816 }
1817
1818 static void
1819 opserv_channel_check(struct chanNode *newchan)
1820 {
1821     char *warning;
1822
1823     if (!newchan->join_policer.params) {
1824         newchan->join_policer.last_req = now;
1825         newchan->join_policer.params = opserv_conf.join_policer_params;
1826     }
1827     if ((warning = dict_find(opserv_chan_warn, newchan->name, NULL))) {
1828         char message[MAXLEN];
1829         snprintf(message, sizeof(message), "Channel activity warning for channel %s: %s", newchan->name, warning);
1830         global_message(MESSAGE_RECIPIENT_OPERS, message);
1831     }
1832
1833     /* Wait until the join check to shut channels down. */
1834     newchan->bad_channel = opserv_bad_channel(newchan->name);
1835 }
1836
1837 static void
1838 opserv_channel_delete(struct chanNode *chan)
1839 {
1840     timeq_del(0, opserv_part_channel, chan, TIMEQ_IGNORE_WHEN);
1841 }
1842
1843 static int
1844 opserv_join_check(struct modeNode *mNode)
1845 {
1846     struct userNode *user = mNode->user;
1847     struct chanNode *channel = mNode->channel;
1848     const char *msg;
1849
1850     if (IsService(user))
1851         return 0;
1852
1853     dict_foreach(opserv_channel_alerts, alert_check_user, user);
1854
1855     if (channel->bad_channel) {
1856         opserv_debug("Found $b%s$b in bad-word channel $b%s$b; removing the user.", user->nick, channel->name);
1857         if (channel->name[0] != '#')
1858             DelUser(user, opserv, 1, "OSMSG_ILLEGAL_KILL_REASON");
1859         else if (!GetUserMode(channel, opserv))
1860             opserv_shutdown_channel(channel, "OSMSG_ILLEGAL_REASON");
1861         else {
1862             send_message(user, opserv, "OSMSG_ILLEGAL_CHANNEL", channel->name);
1863             msg = user_find_message(user, "OSMSG_ILLEGAL_REASON");
1864             KickChannelUser(user, channel, opserv, msg);
1865         }
1866         return 1;
1867     }
1868
1869     if (user->uplink->burst)
1870         return 0;
1871     if (policer_conforms(&channel->join_policer, now, 1.0)) {
1872         channel->join_flooded = 0;
1873         return 0;
1874     }
1875     if (!channel->join_flooded) {
1876         /* Don't moderate the channel unless it is activated and
1877            the number of users in the channel is over the threshold. */
1878         struct mod_chanmode change;
1879         mod_chanmode_init(&change);
1880         channel->join_flooded = 1;
1881         if (opserv_conf.join_flood_moderate && (channel->members.used > opserv_conf.join_flood_moderate_threshold)) {
1882             if (!GetUserMode(channel, opserv)) {
1883                 /* If we aren't in the channel, join it. */
1884                 change.args[0].mode = MODE_CHANOP;
1885                 change.args[0].u.member = AddChannelUser(opserv, channel);
1886                 change.argc++;
1887             }
1888             if (!(channel->modes & MODE_MODERATED))
1889                 change.modes_set |= MODE_MODERATED;
1890             if (change.modes_set || change.argc)
1891                 mod_chanmode_announce(opserv, channel, &change);
1892             send_target_message(0, channel->name, opserv, "OSMSG_FLOOD_MODERATE");
1893             opserv_alert("Warning: Possible join flood in %s (currently %d users; channel moderated).", channel->name, channel->members.used);
1894         } else {
1895             opserv_alert("Warning: Possible join flood in %s (currently %d users).", channel->name, channel->members.used);
1896         }
1897     }
1898     log_module(OS_LOG, LOG_INFO, "Join to %s during flood: "IDENT_FORMAT, channel->name, IDENT_DATA(user));
1899     return 0;
1900 }
1901
1902 static int
1903 opserv_add_bad_word(struct svccmd *cmd, struct userNode *user, const char *new_bad) {
1904     unsigned int bad_idx;
1905
1906     for (bad_idx = 0; bad_idx < opserv_bad_words->used; ++bad_idx) {
1907         char *orig_bad = opserv_bad_words->list[bad_idx];
1908         if (irccasestr(new_bad, orig_bad)) {
1909             if (user)
1910                 reply("OSMSG_BAD_REDUNDANT", new_bad, orig_bad);
1911             return 0;
1912         } else if (irccasestr(orig_bad, new_bad)) {
1913             if (user)
1914                 reply("OSMSG_BAD_GROWING", orig_bad, new_bad);
1915             free(orig_bad);
1916             opserv_bad_words->list[bad_idx] = strdup(new_bad);
1917             for (bad_idx++; bad_idx < opserv_bad_words->used; bad_idx++) {
1918                 orig_bad = opserv_bad_words->list[bad_idx];
1919                 if (!irccasestr(orig_bad, new_bad))
1920                     continue;
1921                 if (user)
1922                     reply("OSMSG_BAD_NUKING", orig_bad);
1923                 string_list_delete(opserv_bad_words, bad_idx);
1924                 bad_idx--;
1925                 free(orig_bad);
1926             }
1927             return 1;
1928         }
1929     }
1930     string_list_append(opserv_bad_words, strdup(new_bad));
1931     if (user)
1932         reply("OSMSG_ADDED_BAD", new_bad);
1933     return 1;
1934 }
1935
1936 static MODCMD_FUNC(cmd_addbad)
1937 {
1938     unsigned int arg, count;
1939     dict_iterator_t it;
1940     int bad_found, exempt_found;
1941
1942     /* Create the bad word if it doesn't exist. */
1943     bad_found = !opserv_add_bad_word(cmd, user, argv[1]);
1944
1945     /* Look for exception modifiers. */
1946     for (arg=2; arg<argc; arg++) {
1947         if (!irccasecmp(argv[arg], "except")) {
1948             reply("MSG_DEPRECATED_COMMAND", "addbad ... except", "addexempt");
1949             if (++arg > argc) {
1950                 reply("MSG_MISSING_PARAMS", "except");
1951                 break;
1952             }
1953             for (count = 0; (arg < argc) && IsChannelName(argv[arg]); arg++) {
1954                 dict_find(opserv_exempt_channels, argv[arg], &exempt_found);
1955                 if (!exempt_found) {
1956                     dict_insert(opserv_exempt_channels, strdup(argv[arg]), NULL);
1957                     count++;
1958                 }
1959             }
1960             reply("OSMSG_ADDED_EXEMPTIONS", count);
1961         } else {
1962             reply("MSG_DEPRECATED_COMMAND", "addbad (with modifiers)", "addbad");
1963             reply("OSMSG_BAD_MODIFIER", argv[arg]);
1964         }
1965     }
1966
1967     /* Scan for existing channels that match the new bad word. */
1968     if (!bad_found) {
1969         for (it = dict_first(channels); it; it = iter_next(it)) {
1970             struct chanNode *channel = iter_data(it);
1971
1972             if (!opserv_bad_channel(channel->name))
1973                 continue;
1974             channel->bad_channel = 1;
1975             if (channel->name[0] == '#')
1976                 opserv_shutdown_channel(channel, "OSMSG_ILLEGAL_REASON");
1977             else {
1978                 unsigned int nn;
1979                 for (nn=0; nn<channel->members.used; nn++) {
1980                     struct userNode *user = channel->members.list[nn]->user;
1981                     DelUser(user, cmd->parent->bot, 1, "OSMSG_ILLEGAL_KILL_REASON");
1982                 }
1983             }
1984         }
1985     }
1986
1987     return 1;
1988 }
1989
1990 static MODCMD_FUNC(cmd_delbad)
1991 {
1992     dict_iterator_t it;
1993     unsigned int nn;
1994
1995     for (nn=0; nn<opserv_bad_words->used; nn++) {
1996         if (!irccasecmp(opserv_bad_words->list[nn], argv[1])) {
1997             string_list_delete(opserv_bad_words, nn);
1998             for (it = dict_first(channels); it; it = iter_next(it)) {
1999                 channel = iter_data(it);
2000                 if (irccasestr(channel->name, argv[1])
2001                     && !opserv_bad_channel(channel->name)) {
2002                     DelChannelUser(cmd->parent->bot, channel, "Channel name no longer contains a bad word.", 1);
2003                     timeq_del(0, opserv_part_channel, channel, TIMEQ_IGNORE_WHEN);
2004                     channel->bad_channel = 0;
2005                 }
2006             }
2007             reply("OSMSG_REMOVED_BAD", argv[1]);
2008             return 1;
2009         }
2010     }
2011     reply("OSMSG_NOT_BAD_WORD", argv[1]);
2012     return 0;
2013 }
2014
2015 static MODCMD_FUNC(cmd_addexempt)
2016 {
2017     const char *chanName;
2018
2019     if ((argc > 1) && IsChannelName(argv[1])) {
2020         chanName = argv[1];
2021     } else {
2022         reply("MSG_NOT_CHANNEL_NAME");
2023         OPSERV_SYNTAX();
2024         return 0;
2025     }
2026     dict_insert(opserv_exempt_channels, strdup(chanName), NULL);
2027     channel = GetChannel(chanName);
2028     if (channel) {
2029         if (channel->bad_channel) {
2030             DelChannelUser(cmd->parent->bot, channel, "Channel is now exempt from bad-word checking.", 1);
2031             timeq_del(0, opserv_part_channel, channel, TIMEQ_IGNORE_WHEN);
2032         }
2033         channel->bad_channel = 0;
2034     }
2035     reply("OSMSG_ADDED_EXEMPTION", chanName);
2036     return 1;
2037 }
2038
2039 static MODCMD_FUNC(cmd_delexempt)
2040 {
2041     const char *chanName;
2042
2043     if ((argc > 1) && IsChannelName(argv[1])) {
2044         chanName = argv[1];
2045     } else {
2046         reply("MSG_NOT_CHANNEL_NAME");
2047         OPSERV_SYNTAX();
2048         return 0;
2049     }
2050     if (!dict_remove(opserv_exempt_channels, chanName)) {
2051         reply("OSMSG_NOT_EXEMPT", chanName);
2052         return 0;
2053     }
2054     reply("OSMSG_REMOVED_EXEMPTION", chanName);
2055     return 1;
2056 }
2057
2058 static void
2059 opserv_expire_trusted_host(void *data)
2060 {
2061     struct trusted_host *th = data;
2062     dict_remove(opserv_trusted_hosts, th->ipaddr);
2063 }
2064
2065 static void
2066 opserv_add_trusted_host(const char *ipaddr, unsigned int limit, const char *issuer, time_t issued, time_t expires, const char *reason)
2067 {
2068     struct trusted_host *th;
2069     th = calloc(1, sizeof(*th));
2070     if (!th)
2071         return;
2072     th->ipaddr = strdup(ipaddr);
2073     th->reason = reason ? strdup(reason) : NULL;
2074     th->issuer = issuer ? strdup(issuer) : NULL;
2075     th->issued = issued;
2076     th->limit = limit;
2077     th->expires = expires;
2078     dict_insert(opserv_trusted_hosts, th->ipaddr, th);
2079     if (th->expires)
2080         timeq_add(th->expires, opserv_expire_trusted_host, th);
2081 }
2082
2083 static void
2084 free_trusted_host(void *data)
2085 {
2086     struct trusted_host *th = data;
2087     free(th->ipaddr);
2088     free(th->reason);
2089     free(th->issuer);
2090     free(th);
2091 }
2092
2093 static MODCMD_FUNC(cmd_addtrust)
2094 {
2095     unsigned long interval;
2096     char *reason, *tmp;
2097     struct in_addr tmpaddr;
2098     unsigned int count;
2099
2100     if (dict_find(opserv_trusted_hosts, argv[1], NULL)) {
2101         reply("OSMSG_ALREADY_TRUSTED", argv[1]);
2102         return 0;
2103     }
2104
2105     if (!inet_aton(argv[1], &tmpaddr)) {
2106         reply("OSMSG_BAD_IP", argv[1]);
2107         return 0;
2108     }
2109
2110     count = strtoul(argv[2], &tmp, 10);
2111     if (*tmp != '\0') {
2112         reply("OSMSG_BAD_NUMBER", argv[2]);
2113         return 0;
2114     }
2115
2116     interval = ParseInterval(argv[3]);
2117     if (!interval && strcmp(argv[3], "0")) {
2118         reply("MSG_INVALID_DURATION", argv[3]);
2119         return 0;
2120     }
2121
2122     reason = unsplit_string(argv+4, argc-4, NULL);
2123     opserv_add_trusted_host(argv[1], count, user->handle_info->handle, now, interval ? (now + interval) : 0, reason);
2124     reply("OSMSG_ADDED_TRUSTED");
2125     return 1;
2126 }
2127
2128 static MODCMD_FUNC(cmd_edittrust)
2129 {
2130     unsigned long interval;
2131     struct trusted_host *th;
2132     char *reason, *tmp;
2133     unsigned int count;
2134
2135     th = dict_find(opserv_trusted_hosts, argv[1], NULL);
2136     if (!th) {
2137         reply("OSMSG_NOT_TRUSTED", argv[1]);
2138         return 0;
2139     }
2140     count = strtoul(argv[2], &tmp, 10);
2141     if (!count || *tmp) {
2142         reply("OSMSG_BAD_NUMBER", argv[2]);
2143         return 0;
2144     }
2145     interval = ParseInterval(argv[3]);
2146     if (!interval && strcmp(argv[3], "0")) {
2147         reply("MSG_INVALID_DURATION", argv[3]);
2148         return 0;
2149     }
2150     reason = unsplit_string(argv+4, argc-4, NULL);
2151     if (th->expires)
2152         timeq_del(th->expires, opserv_expire_trusted_host, th, 0);
2153
2154     free(th->reason);
2155     th->reason = strdup(reason);
2156     free(th->issuer);
2157     th->issuer = strdup(user->handle_info->handle);
2158     th->issued = now;
2159     th->limit = count;
2160     if (interval) {
2161         th->expires = now + interval;
2162         timeq_add(th->expires, opserv_expire_trusted_host, th);
2163     } else
2164         th->expires = 0;
2165     reply("OSMSG_UPDATED_TRUSTED", th->ipaddr);
2166     return 1;
2167 }
2168
2169 static MODCMD_FUNC(cmd_deltrust)
2170 {
2171     unsigned int n;
2172
2173     for (n=1; n<argc; n++) {
2174         struct trusted_host *th = dict_find(opserv_trusted_hosts, argv[n], NULL);
2175         if (!th)
2176             continue;
2177         if (th->expires)
2178             timeq_del(th->expires, opserv_expire_trusted_host, th, 0);
2179         dict_remove(opserv_trusted_hosts, argv[n]);
2180     }
2181     reply("OSMSG_REMOVED_TRUSTED");
2182     return 1;
2183 }
2184
2185 /* This doesn't use dict_t because it's a little simpler to open-code the
2186  * comparisons (and simpler arg-passing for the ADD subcommand).
2187  */
2188 static MODCMD_FUNC(cmd_clone)
2189 {
2190     int i;
2191     struct userNode *clone;
2192
2193     clone = GetUserH(argv[2]);
2194     if (!irccasecmp(argv[1], "ADD")) {
2195         char *userinfo;
2196         char ident[USERLEN+1];
2197
2198         if (argc < 5) {
2199             reply("MSG_MISSING_PARAMS", argv[1]);
2200             OPSERV_SYNTAX();
2201             return 0;
2202         }
2203         if (clone) {
2204             reply("OSMSG_CLONE_EXISTS", argv[2]);
2205             return 0;
2206         }
2207         userinfo = unsplit_string(argv+4, argc-4, NULL);
2208         for (i=0; argv[3][i] && (i<USERLEN); i++) {
2209             if (argv[3][i] == '@') {
2210                 ident[i++] = 0;
2211                 break;
2212             } else {
2213                 ident[i] = argv[3][i];
2214             }
2215         }
2216         if (!argv[3][i] || (i==USERLEN)) {
2217             reply("OSMSG_NOT_A_HOSTMASK");
2218             return 0;
2219         }
2220         if (!(clone = AddClone(argv[2], ident, argv[3]+i, userinfo))) {
2221             reply("OSMSG_CLONE_FAILED", argv[2]);
2222             return 0;
2223         }
2224         reply("OSMSG_CLONE_ADDED", clone->nick);
2225         return 1;
2226     }
2227     if (!clone) {
2228         reply("MSG_NICK_UNKNOWN", argv[2]);
2229         return 0;
2230     }
2231     if (clone->uplink != self || IsService(clone)) {
2232         reply("OSMSG_NOT_A_CLONE", clone->nick);
2233         return 0;
2234     }
2235     if (!irccasecmp(argv[1], "REMOVE")) {
2236         const char *reason;
2237         if (argc > 3) {
2238             reason = unsplit_string(argv+3, argc-3, NULL);
2239         } else {
2240             char *tmp;
2241             tmp = alloca(strlen(clone->nick) + strlen(OSMSG_PART_REASON));
2242             sprintf(tmp, OSMSG_PART_REASON, clone->nick);
2243             reason = tmp;
2244         }
2245         DelUser(clone, NULL, 1, reason);
2246         reply("OSMSG_CLONE_REMOVED", argv[2]);
2247         return 1;
2248     }
2249     if (argc < 4) {
2250         reply("MSG_MISSING_PARAMS", argv[1]);
2251         OPSERV_SYNTAX();
2252         return 0;
2253     }
2254     channel = GetChannel(argv[3]);
2255     if (!irccasecmp(argv[1], "JOIN")) {
2256         if (!channel
2257             && !(channel = AddChannel(argv[3], now, NULL, NULL))) {
2258             reply("MSG_CHANNEL_UNKNOWN", argv[3]);
2259             return 0;
2260         }
2261         AddChannelUser(clone, channel);
2262         reply("OSMSG_CLONE_JOINED", clone->nick, channel->name);
2263         return 1;
2264     }
2265     if (!irccasecmp(argv[1], "PART")) {
2266         if (!channel) {
2267             reply("MSG_CHANNEL_UNKNOWN", argv[3]);
2268             return 0;
2269         }
2270         if (!GetUserMode(channel, clone)) {
2271             reply("OSMSG_NOT_ON_CHANNEL", clone->nick, channel->name);
2272             return 0;
2273         }
2274         reply("OSMSG_CLONE_PARTED", clone->nick, channel->name);
2275         DelChannelUser(clone, channel, "Leaving.", 0);
2276         return 1;
2277     }
2278     if (!irccasecmp(argv[1], "OP")) {
2279         struct mod_chanmode change;
2280         if (!channel) {
2281             reply("MSG_CHANNEL_UNKNOWN", argv[3]);
2282             return 0;
2283         }
2284         mod_chanmode_init(&change);
2285         change.argc = 1;
2286         change.args[0].mode = MODE_CHANOP;
2287         change.args[0].u.member = GetUserMode(channel, clone);
2288         if (!change.args[0].u.member) {
2289             reply("OSMSG_NOT_ON_CHANNEL", clone->nick, channel->name);
2290             return 0;
2291         }
2292         modcmd_chanmode_announce(&change);
2293         reply("OSMSG_OPS_GIVEN", channel->name, clone->nick);
2294         return 1;
2295     }
2296     if (argc < 5) {
2297         reply("MSG_MISSING_PARAMS", argv[1]);
2298         OPSERV_SYNTAX();
2299         return 0;
2300     }
2301     if (!irccasecmp(argv[1], "SAY")) {
2302         char *text = unsplit_string(argv+4, argc-4, NULL);
2303         irc_privmsg(clone, argv[3], text);
2304         reply("OSMSG_CLONE_SAID", clone->nick, argv[3]);
2305         return 1;
2306     }
2307     reply("OSMSG_UNKNOWN_SUBCOMMAND", argv[1], argv[0]);
2308     return 0;
2309 }
2310
2311 static struct helpfile_expansion
2312 opserv_help_expand(const char *variable)
2313 {
2314     extern struct userNode *message_source;
2315     struct helpfile_expansion exp;
2316     struct service *service;
2317     struct svccmd *cmd;
2318     dict_iterator_t it;
2319     int row;
2320     unsigned int level;
2321
2322     if (!(service = service_find(message_source->nick))) {
2323         exp.type = HF_STRING;
2324         exp.value.str = NULL;
2325     } else if (!irccasecmp(variable, "index")) {
2326         exp.type = HF_TABLE;
2327         exp.value.table.length = 1;
2328         exp.value.table.width = 2;
2329         exp.value.table.flags = TABLE_REPEAT_HEADERS | TABLE_REPEAT_ROWS;
2330         exp.value.table.contents = calloc(dict_size(service->commands)+1, sizeof(char**));
2331         exp.value.table.contents[0] = calloc(exp.value.table.width, sizeof(char*));
2332         exp.value.table.contents[0][0] = "Command";
2333         exp.value.table.contents[0][1] = "Level";
2334         for (it=dict_first(service->commands); it; it=iter_next(it)) {
2335             cmd = iter_data(it);
2336             row = exp.value.table.length++;
2337             exp.value.table.contents[row] = calloc(exp.value.table.width, sizeof(char*));
2338             exp.value.table.contents[row][0] = iter_key(it);
2339             level = cmd->min_opserv_level;
2340             if (!level_strings[level]) {
2341                 level_strings[level] = malloc(16);
2342                 snprintf(level_strings[level], 16, "%3d", level);
2343             }
2344             exp.value.table.contents[row][1] = level_strings[level];
2345         }
2346     } else if (!strncasecmp(variable, "level", 5)) {
2347         cmd = dict_find(service->commands, variable+6, NULL);
2348         exp.type = HF_STRING;
2349         if (cmd) {
2350             level = cmd->min_opserv_level;
2351             exp.value.str = malloc(16);
2352             snprintf(exp.value.str, 16, "%3d", level);
2353         } else {
2354             exp.value.str = NULL;
2355         }
2356     } else {
2357         exp.type = HF_STRING;
2358         exp.value.str = NULL;
2359     }
2360     return exp;
2361 }
2362
2363 struct modcmd *
2364 opserv_define_func(const char *name, modcmd_func_t *func, int min_level, int reqchan, int min_argc)
2365 {
2366     char buf[16], *flags = NULL;
2367     unsigned int iflags = 0;
2368     sprintf(buf, "%d", min_level);
2369     switch (reqchan) {
2370     case 1: flags = "+acceptchan"; break;
2371     case 3: flags = "+acceptpluschan"; /* fall through */
2372     case 2: iflags = MODCMD_REQUIRE_CHANNEL; break;
2373     }
2374     if (flags) {
2375         return modcmd_register(opserv_module, name, func, min_argc, iflags, "level", buf, "flags", flags, "flags", "+oper", NULL);
2376     } else {
2377         return modcmd_register(opserv_module, name, func, min_argc, iflags, "level", buf, "flags", "+oper", NULL);
2378     }
2379 }
2380
2381 int add_reserved(const char *key, void *data, void *extra)
2382 {
2383     struct record_data *rd = data;
2384     const char *ident, *hostname, *desc;
2385     struct userNode *reserve;
2386     ident = database_get_data(rd->d.object, KEY_IDENT, RECDB_QSTRING);
2387     if (!ident) {
2388         log_module(OS_LOG, LOG_ERROR, "Missing ident for reserve of %s", key);
2389         return 0;
2390     }
2391     hostname = database_get_data(rd->d.object, KEY_HOSTNAME, RECDB_QSTRING);
2392     if (!hostname) {
2393         log_module(OS_LOG, LOG_ERROR, "Missing hostname for reserve of %s", key);
2394         return 0;
2395     }
2396     desc = database_get_data(rd->d.object, KEY_DESC, RECDB_QSTRING);
2397     if (!desc) {
2398         log_module(OS_LOG, LOG_ERROR, "Missing description for reserve of %s", key);
2399         return 0;
2400     }
2401     if ((reserve = AddClone(key, ident, hostname, desc))) {
2402         reserve->modes |= FLAGS_PERSISTENT;
2403         dict_insert(extra, reserve->nick, reserve);
2404     }
2405     return 0;
2406 }
2407
2408 static unsigned int
2409 foreach_matching_user(const char *hostmask, discrim_search_func func, void *extra)
2410 {
2411     discrim_t discrim;
2412     char *dupmask;
2413     unsigned int matched;
2414
2415     if (!self->uplink) return 0;
2416     discrim = calloc(1, sizeof(*discrim));
2417     discrim->limit = dict_size(clients);
2418     discrim->max_level = ~0;
2419     discrim->max_ts = now;
2420     discrim->max_channels = INT_MAX;
2421     discrim->authed = -1;
2422     discrim->info_space = -1;
2423     dupmask = strdup(hostmask);
2424     if (split_ircmask(dupmask, &discrim->mask_nick, &discrim->mask_ident, &discrim->mask_host)) {
2425         if (discrim->mask_host && !discrim->mask_host[strspn(discrim->mask_host, "0123456789.?*")]) {
2426             if (!parse_ipmask(discrim->mask_host, &discrim->ip_addr, &discrim->ip_mask)) {
2427                 log_module(OS_LOG, LOG_ERROR, "Couldn't parse %s as an IP mask!", discrim->mask_host);
2428                 free(discrim);
2429                 free(dupmask);
2430                 return 0;
2431             }
2432             discrim->mask_host = 0;
2433         }
2434         matched = opserv_discrim_search(discrim, func, extra);
2435     } else {
2436         log_module(OS_LOG, LOG_ERROR, "Couldn't split IRC mask for gag %s!", hostmask);
2437         matched = 0;
2438     }
2439     free(discrim);
2440     free(dupmask);
2441     return matched;
2442 }
2443
2444 static unsigned int
2445 gag_free(struct gag_entry *gag)
2446 {
2447     unsigned int ungagged;
2448
2449     /* Remove from gag list */
2450     if (gagList == gag) {
2451         gagList = gag->next;
2452     } else {
2453         struct gag_entry *prev;
2454         for (prev = gagList; prev->next != gag; prev = prev->next) ;
2455         prev->next = gag->next;
2456     }
2457
2458     ungagged = foreach_matching_user(gag->mask, ungag_helper_func, NULL);
2459
2460     /* Deallocate storage */
2461     free(gag->reason);
2462     free(gag->owner);
2463     free(gag->mask);
2464     free(gag);
2465
2466     return ungagged;
2467 }
2468
2469 static void
2470 gag_expire(void *data)
2471 {
2472     gag_free(data);
2473 }
2474
2475 unsigned int
2476 gag_create(const char *mask, const char *owner, const char *reason, time_t expires)
2477 {
2478     struct gag_entry *gag;
2479
2480     /* Create gag and put it into linked list */
2481     gag = calloc(1, sizeof(*gag));
2482     gag->mask = strdup(mask);
2483     gag->owner = strdup(owner ? owner : "<unknown>");
2484     gag->reason = strdup(reason ? reason : "<unknown>");
2485     gag->expires = expires;
2486     if (gag->expires)
2487         timeq_add(gag->expires, gag_expire, gag);
2488     gag->next = gagList;
2489     gagList = gag;
2490
2491     /* If we're linked, see if who the gag applies to */
2492     return foreach_matching_user(mask, gag_helper_func, gag);
2493 }
2494
2495 static int
2496 add_gag_helper(const char *key, void *data, UNUSED_ARG(void *extra))
2497 {
2498     struct record_data *rd = data;
2499     char *owner, *reason, *expstr;
2500     time_t expires;
2501
2502     owner = database_get_data(rd->d.object, KEY_OWNER, RECDB_QSTRING);
2503     reason = database_get_data(rd->d.object, KEY_REASON, RECDB_QSTRING);
2504     expstr = database_get_data(rd->d.object, KEY_EXPIRES, RECDB_QSTRING);
2505     expires = expstr ? strtoul(expstr, NULL, 0) : 0;
2506     gag_create(key, owner, reason, expires);
2507
2508     return 0;
2509 }
2510
2511 static struct opserv_user_alert *
2512 opserv_add_user_alert(struct userNode *req, const char *name, opserv_alert_reaction reaction, const char *text_discrim)
2513 {
2514     unsigned int wordc;
2515     char *wordv[MAXNUMPARAMS], *discrim_copy;
2516     struct opserv_user_alert *alert;
2517     char *name_dup;
2518
2519     if (dict_find(opserv_user_alerts, name, NULL)) {
2520         send_message(req, opserv, "OSMSG_ALERT_EXISTS", name);
2521         return NULL;
2522     }
2523     alert = malloc(sizeof(*alert));
2524     alert->owner = strdup(req->handle_info ? req->handle_info->handle : req->nick);
2525     alert->text_discrim = strdup(text_discrim);
2526     discrim_copy = strdup(text_discrim); /* save a copy of the discrim */
2527     wordc = split_line(discrim_copy, false, ArrayLength(wordv), wordv);
2528     alert->discrim = opserv_discrim_create(req, wordc, wordv, 0);
2529     if (!alert->discrim) {
2530         free(alert->text_discrim);
2531         free(discrim_copy);
2532         free(alert);
2533         return NULL;
2534     }
2535     alert->split_discrim = discrim_copy;
2536     name_dup = strdup(name);
2537     if (!alert->discrim->reason)
2538         alert->discrim->reason = strdup(name);
2539     alert->reaction = reaction;
2540     dict_insert(opserv_user_alerts, name_dup, alert);
2541     if (alert->discrim->channel)
2542         dict_insert(opserv_channel_alerts, name_dup, alert);
2543     else if (alert->discrim->mask_nick)
2544         dict_insert(opserv_nick_based_alerts, name_dup, alert);
2545     return alert;
2546 }
2547
2548 static int
2549 add_chan_warn(const char *key, void *data, UNUSED_ARG(void *extra))
2550 {
2551     struct record_data *rd = data;
2552     char *reason = GET_RECORD_QSTRING(rd);
2553
2554     /* i hope this can't happen */
2555     if (!reason)
2556         reason = "No Reason";
2557
2558     dict_insert(opserv_chan_warn, strdup(key), strdup(reason));
2559     return 0;
2560 }
2561
2562 static int
2563 add_user_alert(const char *key, void *data, UNUSED_ARG(void *extra))
2564 {
2565     dict_t alert_dict;
2566     const char *discrim, *react, *owner;
2567     opserv_alert_reaction reaction;
2568     struct opserv_user_alert *alert;
2569
2570     if (!(alert_dict = GET_RECORD_OBJECT((struct record_data *)data))) {
2571         log_module(OS_LOG, LOG_ERROR, "Bad type (not a record) for alert %s.", key);
2572         return 1;
2573     }
2574     discrim = database_get_data(alert_dict, KEY_DISCRIM, RECDB_QSTRING);
2575     react = database_get_data(alert_dict, KEY_REACTION, RECDB_QSTRING);
2576     if (!react || !irccasecmp(react, "notice"))
2577         reaction = REACT_NOTICE;
2578     else if (!irccasecmp(react, "kill"))
2579         reaction = REACT_KILL;
2580     else if (!irccasecmp(react, "gline"))
2581         reaction = REACT_GLINE;
2582     else {
2583         log_module(OS_LOG, LOG_ERROR, "Invalid reaction %s for alert %s.", react, key);
2584         return 0;
2585     }
2586     alert = opserv_add_user_alert(opserv, key, reaction, discrim);
2587     if (!alert) {
2588         log_module(OS_LOG, LOG_ERROR, "Unable to create alert %s from database.", key);
2589         return 0;
2590     }
2591     owner = database_get_data(alert_dict, KEY_OWNER, RECDB_QSTRING);
2592     free(alert->owner);
2593     alert->owner = strdup(owner ? owner : "<unknown>");
2594     return 0;
2595 }
2596
2597 static int
2598 trusted_host_read(const char *host, void *data, UNUSED_ARG(void *extra))
2599 {
2600     struct record_data *rd = data;
2601     const char *limit, *str, *reason, *issuer;
2602     time_t issued, expires;
2603
2604     if (rd->type == RECDB_QSTRING) {
2605         /* old style host by itself */
2606         limit = GET_RECORD_QSTRING(rd);
2607         issued = 0;
2608         issuer = NULL;
2609         expires = 0;
2610         reason = NULL;
2611     } else if (rd->type == RECDB_OBJECT) {
2612         dict_t obj = GET_RECORD_OBJECT(rd);
2613         /* new style structure */
2614         limit = database_get_data(obj, KEY_LIMIT, RECDB_QSTRING);
2615         str = database_get_data(obj, KEY_EXPIRES, RECDB_QSTRING);
2616         expires = str ? ParseInterval(str) : 0;
2617         reason = database_get_data(obj, KEY_REASON, RECDB_QSTRING);
2618         issuer = database_get_data(obj, KEY_ISSUER, RECDB_QSTRING);
2619         str = database_get_data(obj, KEY_ISSUED, RECDB_QSTRING);
2620         issued = str ? ParseInterval(str) : 0;
2621     } else
2622         return 0;
2623
2624     if (expires && (expires < now))
2625         return 0;
2626     opserv_add_trusted_host(host, (limit ? strtoul(limit, NULL, 0) : 0), issuer, issued, expires, reason);
2627     return 0;
2628 }
2629
2630 static int
2631 opserv_saxdb_read(struct dict *conf_db)
2632 {
2633     dict_t object;
2634     struct record_data *rd;
2635     dict_iterator_t it;
2636     unsigned int nn;
2637
2638     if ((object = database_get_data(conf_db, KEY_RESERVES, RECDB_OBJECT)))
2639         dict_foreach(object, add_reserved, opserv_reserved_nick_dict);
2640     if ((rd = database_get_path(conf_db, KEY_BAD_WORDS))) {
2641         switch (rd->type) {
2642         case RECDB_STRING_LIST:
2643             /* Add words one by one just in case there are overlaps from an old DB. */
2644             for (nn=0; nn<rd->d.slist->used; ++nn)
2645                 opserv_add_bad_word(NULL, NULL, rd->d.slist->list[nn]);
2646             break;
2647         case RECDB_OBJECT:
2648             for (it=dict_first(rd->d.object); it; it=iter_next(it)) {
2649                 opserv_add_bad_word(NULL, NULL, iter_key(it));
2650                 rd = iter_data(it);
2651                 if (rd->type == RECDB_STRING_LIST)
2652                     for (nn=0; nn<rd->d.slist->used; nn++)
2653                         dict_insert(opserv_exempt_channels, strdup(rd->d.slist->list[nn]), NULL);
2654             }
2655             break;
2656         default:
2657             /* do nothing */;
2658         }
2659     }
2660     if ((rd = database_get_path(conf_db, KEY_EXEMPT_CHANNELS))
2661         && (rd->type == RECDB_STRING_LIST)) {
2662         for (nn=0; nn<rd->d.slist->used; ++nn)
2663             dict_insert(opserv_exempt_channels, strdup(rd->d.slist->list[nn]), NULL);
2664     }
2665     if ((object = database_get_data(conf_db, KEY_MAX_CLIENTS, RECDB_OBJECT))) {
2666         char *str;
2667         if ((str = database_get_data(object, KEY_MAX, RECDB_QSTRING)))
2668             max_clients = atoi(str);
2669         if ((str = database_get_data(object, KEY_TIME, RECDB_QSTRING)))
2670             max_clients_time = atoi(str);
2671     }
2672     if ((object = database_get_data(conf_db, KEY_TRUSTED_HOSTS, RECDB_OBJECT)))
2673         dict_foreach(object, trusted_host_read, opserv_trusted_hosts);
2674     if ((object = database_get_data(conf_db, KEY_GAGS, RECDB_OBJECT)))
2675         dict_foreach(object, add_gag_helper, NULL);
2676     if ((object = database_get_data(conf_db, KEY_ALERTS, RECDB_OBJECT)))
2677         dict_foreach(object, add_user_alert, NULL);
2678     if ((object = database_get_data(conf_db, KEY_WARN, RECDB_OBJECT)))
2679         dict_foreach(object, add_chan_warn, NULL);
2680     return 0;
2681 }
2682
2683 static int
2684 opserv_saxdb_write(struct saxdb_context *ctx)
2685 {
2686     struct string_list *slist;
2687     dict_iterator_t it;
2688
2689     /* reserved nicks */
2690     if (dict_size(opserv_reserved_nick_dict)) {
2691         saxdb_start_record(ctx, KEY_RESERVES, 1);
2692         for (it = dict_first(opserv_reserved_nick_dict); it; it = iter_next(it)) {
2693             struct userNode *user = iter_data(it);
2694             if (!IsPersistent(user)) continue;
2695             saxdb_start_record(ctx, iter_key(it), 0);
2696             saxdb_write_string(ctx, KEY_IDENT, user->ident);
2697             saxdb_write_string(ctx, KEY_HOSTNAME, user->hostname);
2698             saxdb_write_string(ctx, KEY_DESC, user->info);
2699             saxdb_end_record(ctx);
2700         }
2701         saxdb_end_record(ctx);
2702     }
2703     /* bad word set */
2704     if (opserv_bad_words->used) {
2705         saxdb_write_string_list(ctx, KEY_BAD_WORDS, opserv_bad_words);
2706     }
2707     /* insert exempt channel names */
2708     if (dict_size(opserv_exempt_channels)) {
2709         slist = alloc_string_list(dict_size(opserv_exempt_channels));
2710         for (it=dict_first(opserv_exempt_channels); it; it=iter_next(it)) {
2711             string_list_append(slist, strdup(iter_key(it)));
2712         }
2713         saxdb_write_string_list(ctx, KEY_EXEMPT_CHANNELS, slist);
2714         free_string_list(slist);
2715     }
2716     /* trusted hosts takes a little more work */
2717     if (dict_size(opserv_trusted_hosts)) {
2718         saxdb_start_record(ctx, KEY_TRUSTED_HOSTS, 1);
2719         for (it = dict_first(opserv_trusted_hosts); it; it = iter_next(it)) {
2720             struct trusted_host *th = iter_data(it);
2721             saxdb_start_record(ctx, iter_key(it), 0);
2722             if (th->limit) saxdb_write_int(ctx, KEY_LIMIT, th->limit);
2723             if (th->expires) saxdb_write_int(ctx, KEY_EXPIRES, th->expires);
2724             if (th->issued) saxdb_write_int(ctx, KEY_ISSUED, th->issued);
2725             if (th->issuer) saxdb_write_string(ctx, KEY_ISSUER, th->issuer);
2726             if (th->reason) saxdb_write_string(ctx, KEY_REASON, th->reason);
2727             saxdb_end_record(ctx);
2728         }
2729         saxdb_end_record(ctx);
2730     }
2731     /* gags */
2732     if (gagList) {
2733         struct gag_entry *gag;
2734         saxdb_start_record(ctx, KEY_GAGS, 1);
2735         for (gag = gagList; gag; gag = gag->next) {
2736             saxdb_start_record(ctx, gag->mask, 0);
2737             saxdb_write_string(ctx, KEY_OWNER, gag->owner);
2738             saxdb_write_string(ctx, KEY_REASON, gag->reason);
2739             if (gag->expires) saxdb_write_int(ctx, KEY_EXPIRES, gag->expires);
2740             saxdb_end_record(ctx);
2741         }
2742         saxdb_end_record(ctx);
2743     }
2744     /* channel warnings */
2745     if (dict_size(opserv_chan_warn)) {
2746         saxdb_start_record(ctx, KEY_WARN, 0);
2747         for (it = dict_first(opserv_chan_warn); it; it = iter_next(it)) {
2748             saxdb_write_string(ctx, iter_key(it), iter_data(it));
2749         }
2750         saxdb_end_record(ctx);
2751     }
2752     /* alerts */
2753     if (dict_size(opserv_user_alerts)) {
2754         saxdb_start_record(ctx, KEY_ALERTS, 1);
2755         for (it = dict_first(opserv_user_alerts); it; it = iter_next(it)) {
2756             struct opserv_user_alert *alert = iter_data(it);
2757             const char *reaction;
2758             saxdb_start_record(ctx, iter_key(it), 0);
2759             saxdb_write_string(ctx, KEY_DISCRIM, alert->text_discrim);
2760             saxdb_write_string(ctx, KEY_OWNER, alert->owner);
2761             switch (alert->reaction) {
2762             case REACT_NOTICE: reaction = "notice"; break;
2763             case REACT_KILL: reaction = "kill"; break;
2764             case REACT_GLINE: reaction = "gline"; break;
2765             default:
2766                 reaction = NULL;
2767                 log_module(OS_LOG, LOG_ERROR, "Invalid reaction type %d for alert %s (while writing database).", alert->reaction, iter_key(it));
2768                 break;
2769             }
2770             if (reaction) saxdb_write_string(ctx, KEY_REACTION, reaction);
2771             saxdb_end_record(ctx);
2772         }
2773         saxdb_end_record(ctx);
2774     }
2775     /* max clients */
2776     saxdb_start_record(ctx, KEY_MAX_CLIENTS, 0);
2777     saxdb_write_int(ctx, KEY_MAX, max_clients);
2778     saxdb_write_int(ctx, KEY_TIME, max_clients_time);
2779     saxdb_end_record(ctx);
2780     return 0;
2781 }
2782
2783 static int
2784 query_keys_helper(const char *key, UNUSED_ARG(void *data), void *extra)
2785 {
2786     send_message_type(4, extra, opserv, "$b%s$b", key);
2787     return 0;
2788 }
2789
2790 static MODCMD_FUNC(cmd_query)
2791 {
2792     struct record_data *rd;
2793     unsigned int i;
2794     char *nodename;
2795
2796     if (argc < 2) {
2797         reply("OSMSG_OPTION_ROOT");
2798         conf_enum_root(query_keys_helper, user);
2799         return 1;
2800     }
2801
2802     nodename = unsplit_string(argv+1, argc-1, NULL);
2803     if (!(rd = conf_get_node(nodename))) {
2804         reply("OSMSG_UNKNOWN_OPTION", nodename);
2805         return 0;
2806     }
2807
2808     if (rd->type == RECDB_QSTRING)
2809         reply("OSMSG_OPTION_IS", nodename, rd->d.qstring);
2810     else if (rd->type == RECDB_STRING_LIST) {
2811         reply("OSMSG_OPTION_LIST", nodename);
2812         if (rd->d.slist->used)
2813             for (i=0; i<rd->d.slist->used; i++)
2814                 send_message_type(4, user, cmd->parent->bot, "$b%s$b", rd->d.slist->list[i]);
2815         else
2816             reply("OSMSG_OPTION_LIST_EMPTY");
2817     } else if (rd->type == RECDB_OBJECT) {
2818         reply("OSMSG_OPTION_KEYS", nodename);
2819         dict_foreach(rd->d.object, query_keys_helper, user);
2820     }
2821
2822     return 1;
2823 }
2824
2825 static MODCMD_FUNC(cmd_set)
2826 {
2827     struct record_data *rd;
2828
2829     /* I originally wanted to be able to fully manipulate the config
2830        db with this, but i wussed out. feel free to fix this - you'll
2831        need to handle quoted strings which have been split, and likely
2832        invent a syntax for it. -Zoot */
2833
2834     if (!(rd = conf_get_node(argv[1]))) {
2835         reply("OSMSG_SET_NOT_SET", argv[1]);
2836         return 0;
2837     }
2838
2839     if (rd->type != RECDB_QSTRING) {
2840         reply("OSMSG_SET_BAD_TYPE", argv[1]);
2841         return 0;
2842     }
2843
2844     free(rd->d.qstring);
2845     rd->d.qstring = strdup(argv[2]);
2846     conf_call_reload_funcs();
2847     reply("OSMSG_SET_SUCCESS", argv[1], argv[2]);
2848     return 1;
2849 }
2850
2851 static MODCMD_FUNC(cmd_settime)
2852 {
2853     const char *srv_name_mask = "*";
2854     time_t new_time = now;
2855
2856     if (argc > 1)
2857         srv_name_mask = argv[1];
2858     if (argc > 2)
2859         new_time = time(NULL);
2860     irc_settime(srv_name_mask, new_time);
2861     reply("OSMSG_SETTIME_SUCCESS", srv_name_mask);
2862     return 1;
2863 }
2864
2865 static discrim_t
2866 opserv_discrim_create(struct userNode *user, unsigned int argc, char *argv[], int allow_channel)
2867 {
2868     unsigned int i, j;
2869     discrim_t discrim;
2870
2871     discrim = calloc(1, sizeof(*discrim));
2872     discrim->limit = 250;
2873     discrim->max_level = ~0;
2874     discrim->max_ts = INT_MAX;
2875     discrim->domain_depth = 2;
2876     discrim->max_channels = INT_MAX;
2877     discrim->authed = -1;
2878     discrim->info_space = -1;
2879
2880     for (i=0; i<argc; i++) {
2881         if (irccasecmp(argv[i], "log") == 0) {
2882             discrim->option_log = 1;
2883             continue;
2884         }
2885         /* Assume all other criteria require arguments. */
2886         if (i == argc - 1) {
2887             send_message(user, opserv, "MSG_MISSING_PARAMS", argv[i]);
2888             goto fail;
2889         }
2890         if (irccasecmp(argv[i], "mask") == 0) {
2891             if (!is_ircmask(argv[++i])) {
2892                 send_message(user, opserv, "OSMSG_INVALID_IRCMASK", argv[i]);
2893                 goto fail;
2894             }
2895             if (!split_ircmask(argv[i],
2896                                &discrim->mask_nick,
2897                                &discrim->mask_ident,
2898                                &discrim->mask_host)) {
2899                 send_message(user, opserv, "OSMSG_INVALID_IRCMASK", argv[i]);
2900                 goto fail;
2901             }
2902         } else if (irccasecmp(argv[i], "nick") == 0) {
2903             discrim->mask_nick = argv[++i];
2904         } else if (irccasecmp(argv[i], "ident") == 0) {
2905             discrim->mask_ident = argv[++i];
2906         } else if (irccasecmp(argv[i], "host") == 0) {
2907             discrim->mask_host = argv[++i];
2908         } else if (irccasecmp(argv[i], "info") == 0) {
2909             discrim->mask_info = argv[++i];
2910         } else if (irccasecmp(argv[i], "server") == 0) {
2911             discrim->server = argv[++i];
2912         } else if (irccasecmp(argv[i], "ip") == 0) {
2913             j = parse_ipmask(argv[++i], &discrim->ip_addr, &discrim->ip_mask);
2914             if (!j) discrim->ip_mask_str = argv[i];
2915     } else if (irccasecmp(argv[i], "account") == 0) {
2916         if (discrim->authed == 0) {
2917             send_message(user, opserv, "OSMSG_ACCOUNTMASK_AUTHED");
2918             goto fail;
2919         }
2920         discrim->accountmask = argv[++i];
2921         discrim->authed = 1;
2922     } else if (irccasecmp(argv[i], "authed") == 0) {
2923         i++; /* true_string and false_string are macros! */
2924         if (true_string(argv[i])) {
2925             discrim->authed = 1;
2926         } else if (false_string(argv[i])) {
2927             if (discrim->accountmask) {
2928                 send_message(user, opserv, "OSMSG_ACCOUNTMASK_AUTHED");
2929                 goto fail;
2930             }
2931             discrim->authed = 0;
2932         } else {
2933             send_message(user, opserv, "MSG_INVALID_BINARY", argv[i]);
2934             goto fail;
2935         }
2936     } else if (irccasecmp(argv[i], "info_space") == 0) {
2937         /* XXX: A hack because you can't check explicitly for a space through
2938          * any other means */
2939         i++;
2940         if (true_string(argv[i])) {
2941             discrim->info_space = 1;
2942         } else if (false_string(argv[i])) {
2943             discrim->info_space = 0;
2944         } else {
2945             send_message(user, opserv, "MSG_INVALID_BINARY", argv[i]);
2946             goto fail;
2947         }
2948     } else if (irccasecmp(argv[i], "duration") == 0) {
2949         discrim->duration = ParseInterval(argv[++i]);
2950         } else if (irccasecmp(argv[i], "channel") == 0) {
2951             for (j=0, i++; ; j++) {
2952                 switch (argv[i][j]) {
2953                 case '#':
2954                     goto find_channel;
2955                 case '-':
2956                     discrim->chan_no_modes  |= MODE_CHANOP | MODE_VOICE;
2957                     break;
2958                 case '+':
2959                     discrim->chan_req_modes |= MODE_VOICE;
2960                     discrim->chan_no_modes  |= MODE_CHANOP;
2961                     break;
2962                 case '@':
2963                     discrim->chan_req_modes |= MODE_CHANOP;
2964                     break;
2965                 case '\0':
2966                     send_message(user, opserv, "MSG_NOT_CHANNEL_NAME");
2967                     goto fail;
2968                 }
2969             }
2970           find_channel:
2971             discrim->chan_no_modes &= ~discrim->chan_req_modes;
2972             if (!(discrim->channel = GetChannel(argv[i]+j))) {
2973                 /* secretly "allow_channel" now means "if a channel name is
2974                  * specified, require that it currently exist" */
2975                 if (allow_channel) {
2976                     send_message(user, opserv, "MSG_CHANNEL_UNKNOWN", argv[i]);
2977                     goto fail;
2978                 } else {
2979                     discrim->channel = AddChannel(argv[i]+j, now, NULL, NULL);
2980                 }
2981             }
2982             LockChannel(discrim->channel);
2983         } else if (irccasecmp(argv[i], "numchannels") == 0) {
2984             discrim->min_channels = discrim->max_channels = strtoul(argv[++i], NULL, 10);
2985         } else if (irccasecmp(argv[i], "limit") == 0) {
2986             discrim->limit = strtoul(argv[++i], NULL, 10);
2987         } else if (irccasecmp(argv[i], "reason") == 0) {
2988             discrim->reason = strdup(unsplit_string(argv+i+1, argc-i-1, NULL));
2989             i = argc;
2990         } else if (irccasecmp(argv[i], "last") == 0) {
2991             discrim->min_ts = now - ParseInterval(argv[++i]);
2992         } else if ((irccasecmp(argv[i], "linked") == 0)
2993                    || (irccasecmp(argv[i], "nickage") == 0)) {
2994             const char *cmp = argv[++i];
2995             if (cmp[0] == '<') {
2996                 if (cmp[1] == '=') {
2997                     discrim->min_ts = now - ParseInterval(cmp+2);
2998                 } else {
2999                     discrim->min_ts = now - (ParseInterval(cmp+1) - 1);
3000                 }
3001             } else if (cmp[0] == '>') {
3002                 if (cmp[1] == '=') {
3003                     discrim->max_ts = now - ParseInterval(cmp+2);
3004                 } else {
3005                     discrim->max_ts = now - (ParseInterval(cmp+1) - 1);
3006                 }
3007             } else {
3008                 discrim->min_ts = now - ParseInterval(cmp+2);
3009             }
3010         } else if (irccasecmp(argv[i], "access") == 0) {
3011             const char *cmp = argv[++i];
3012             if (cmp[0] == '<') {
3013                 if (discrim->min_level == 0) discrim->min_level = 1;
3014                 if (cmp[1] == '=') {
3015                     discrim->max_level = strtoul(cmp+2, NULL, 0);
3016                 } else {
3017                     discrim->max_level = strtoul(cmp+1, NULL, 0) - 1;
3018                 }
3019             } else if (cmp[0] == '=') {
3020                 discrim->min_level = discrim->max_level = strtoul(cmp+1, NULL, 0);
3021             } else if (cmp[0] == '>') {
3022                 if (cmp[1] == '=') {
3023                     discrim->min_level = strtoul(cmp+2, NULL, 0);
3024                 } else {
3025                     discrim->min_level = strtoul(cmp+1, NULL, 0) + 1;
3026                 }
3027             } else {
3028                 discrim->min_level = strtoul(cmp+2, NULL, 0);
3029             }
3030         } else if ((irccasecmp(argv[i], "abuse") == 0)
3031                    && (irccasecmp(argv[++i], "opers") == 0)) {
3032             discrim->match_opers = 1;
3033         } else if (irccasecmp(argv[i], "depth") == 0) {
3034             discrim->domain_depth = strtoul(argv[++i], NULL, 0);
3035         } else if (irccasecmp(argv[i], "clones") == 0) {
3036             discrim->min_clones = strtoul(argv[++i], NULL, 0);
3037         } else {
3038             send_message(user, opserv, "MSG_INVALID_CRITERIA", argv[i]);
3039             goto fail;
3040         }
3041     }
3042
3043     if (discrim->mask_nick && !strcmp(discrim->mask_nick, "*")) {
3044         discrim->mask_nick = 0;
3045     }
3046     if (discrim->mask_ident && !strcmp(discrim->mask_ident, "*")) {
3047         discrim->mask_ident = 0;
3048     }
3049     if (discrim->mask_info && !strcmp(discrim->mask_info, "*")) {
3050         discrim->mask_info = 0;
3051     }
3052     if (discrim->mask_host && !discrim->mask_host[strspn(discrim->mask_host, "*.")]) {
3053         discrim->mask_host = 0;
3054     }
3055     return discrim;
3056   fail:
3057     free(discrim);
3058     return NULL;
3059 }
3060
3061 static int
3062 discrim_match(discrim_t discrim, struct userNode *user)
3063 {
3064     unsigned int access;
3065
3066     if ((user->timestamp < discrim->min_ts)
3067         || (user->timestamp > discrim->max_ts)
3068         || (user->channels.used < discrim->min_channels)
3069         || (user->channels.used > discrim->max_channels)
3070         || (discrim->authed == 0 && user->handle_info)
3071         || (discrim->authed == 1 && !user->handle_info)
3072         || (discrim->info_space == 0 && user->info[0] == ' ')
3073         || (discrim->info_space == 1 && user->info[0] != ' ')
3074         || (discrim->mask_nick && !match_ircglob(user->nick, discrim->mask_nick))
3075         || (discrim->mask_ident && !match_ircglob(user->ident, discrim->mask_ident))
3076         || (discrim->mask_host && !match_ircglob(user->hostname, discrim->mask_host))
3077         || (discrim->mask_info && !match_ircglob(user->info, discrim->mask_info))
3078         || (discrim->server && !match_ircglob(user->uplink->name, discrim->server))
3079         || (discrim->accountmask && (!user->handle_info || !match_ircglob(user->handle_info->handle, discrim->accountmask)))
3080         || (discrim->ip_mask && !MATCH_IPMASK(user->ip, discrim->ip_addr, discrim->ip_mask))) {
3081         return 0;
3082     }
3083     if (discrim->channel && !GetUserMode(discrim->channel, user)) return 0;
3084     access = user->handle_info ? user->handle_info->opserv_level : 0;
3085     if ((access < discrim->min_level)
3086         || (access > discrim->max_level)) {
3087         return 0;
3088     }
3089     if (discrim->ip_mask_str) {
3090         if (!match_ircglob(inet_ntoa(user->ip), discrim->ip_mask_str)) return 0;
3091     }
3092     if (discrim->min_clones > 1) {
3093         struct opserv_hostinfo *ohi = dict_find(opserv_hostinfo_dict, inet_ntoa(user->ip), NULL);
3094         if (!ohi || (ohi->clients.used < discrim->min_clones)) return 0;
3095     }
3096     return 1;
3097 }
3098
3099 static unsigned int
3100 opserv_discrim_search(discrim_t discrim, discrim_search_func dsf, void *data)
3101 {
3102     unsigned int nn, count;
3103     struct userList matched;
3104
3105     userList_init(&matched);
3106     /* Try most optimized search methods first */
3107     if (discrim->channel) {
3108         for (nn=0;
3109                 (nn < discrim->channel->members.used)
3110                 && (matched.used < discrim->limit);
3111                 nn++) {
3112             struct modeNode *mn = discrim->channel->members.list[nn];
3113             if (((mn->modes & discrim->chan_req_modes) != discrim->chan_req_modes)
3114                     || ((mn->modes & discrim->chan_no_modes) != 0)) {
3115                 continue;
3116             }
3117             if (discrim_match(discrim, mn->user)) {
3118                 userList_append(&matched, mn->user);
3119             }
3120         }
3121     } else if (discrim->ip_mask_str && !discrim->ip_mask_str[strcspn(discrim->ip_mask_str, "?*")]) {
3122         struct opserv_hostinfo *ohi = dict_find(opserv_hostinfo_dict, discrim->ip_mask_str, NULL);
3123         if (!ohi) {
3124             userList_clean(&matched);
3125             return 0;
3126         }
3127         for (nn=0; (nn<ohi->clients.used) && (matched.used < discrim->limit); nn++) {
3128             if (discrim_match(discrim, ohi->clients.list[nn])) {
3129                 userList_append(&matched, ohi->clients.list[nn]);
3130             }
3131         }
3132     } else {
3133         dict_iterator_t it;
3134         for (it=dict_first(clients); it && (matched.used < discrim->limit); it=iter_next(it)) {
3135             if (discrim_match(discrim, iter_data(it))) {
3136                 userList_append(&matched, iter_data(it));
3137             }
3138         }
3139     }
3140
3141     if (!matched.used) {
3142         userList_clean(&matched);
3143         return 0;
3144     }
3145
3146     if (discrim->option_log) {
3147         log_module(OS_LOG, LOG_INFO, "Logging matches for search:");
3148     }
3149     for (nn=0; nn<matched.used; nn++) {
3150         struct userNode *user = matched.list[nn];
3151         if (discrim->option_log) {
3152             log_module(OS_LOG, LOG_INFO, "  %s!%s@%s", user->nick, user->ident, user->hostname);
3153         }
3154         if (dsf(user, data)) {
3155             /* If a search function returns true, it ran into a
3156                problem. Stop going through the list. */
3157             break;
3158         }
3159     }
3160     if (discrim->option_log) {
3161         log_module(OS_LOG, LOG_INFO, "End of matching users.");
3162     }
3163     count = matched.used;
3164     userList_clean(&matched);
3165     return count;
3166 }
3167
3168 static int
3169 trace_print_func(struct userNode *match, void *extra)
3170 {
3171     struct discrim_and_source *das = extra;
3172     if (match->handle_info) {
3173         send_message_type(4, das->source, opserv, "%s!%s@%s %s", match->nick, match->ident, match->hostname, match->handle_info->handle);
3174     } else {
3175         send_message_type(4, das->source, opserv, "%s!%s@%s", match->nick, match->ident, match->hostname);
3176     }
3177     return 0;
3178 }
3179
3180 static int
3181 trace_count_func(UNUSED_ARG(struct userNode *match), UNUSED_ARG(void *extra))
3182 {
3183     return 0;
3184 }
3185
3186 static int
3187 is_oper_victim(struct userNode *user, struct userNode *target, int match_opers)
3188 {
3189     return !(IsService(target)
3190              || (!match_opers && IsOper(target))
3191              || (target->handle_info
3192                  && target->handle_info->opserv_level > user->handle_info->opserv_level));
3193 }
3194
3195 static int
3196 trace_gline_func(struct userNode *match, void *extra)
3197 {
3198     struct discrim_and_source *das = extra;
3199
3200     if (is_oper_victim(das->source, match, das->discrim->match_opers)) {
3201         opserv_block(match, das->source->handle_info->handle, das->discrim->reason, das->discrim->duration);
3202     }
3203
3204     return 0;
3205 }
3206
3207 static int
3208 trace_kill_func(struct userNode *match, void *extra)
3209 {
3210     struct discrim_and_source *das = extra;
3211
3212     if (is_oper_victim(das->source, match, das->discrim->match_opers)) {
3213         char *reason;
3214         if (das->discrim->reason) {
3215             reason = das->discrim->reason;
3216         } else {
3217             reason = alloca(strlen(OSMSG_KILL_REQUESTED)+strlen(das->source->nick)+1);
3218             sprintf(reason, OSMSG_KILL_REQUESTED, das->source->nick);
3219         }
3220         DelUser(match, opserv, 1, reason);
3221     }
3222
3223     return 0;
3224 }
3225
3226 static int
3227 is_gagged(char *mask)
3228 {
3229     struct gag_entry *gag;
3230
3231     for (gag = gagList; gag; gag = gag->next) {
3232         if (match_ircglobs(gag->mask, mask)) return 1;
3233     }
3234     return 0;
3235 }
3236
3237 static int
3238 trace_gag_func(struct userNode *match, void *extra)
3239 {
3240     struct discrim_and_source *das = extra;
3241
3242     if (is_oper_victim(das->source, match, das->discrim->match_opers)) {
3243         char *reason, *mask;
3244         int masksize;
3245         if (das->discrim->reason) {
3246             reason = das->discrim->reason;
3247         } else {
3248             reason = alloca(strlen(OSMSG_GAG_REQUESTED)+strlen(das->source->nick)+1);
3249             sprintf(reason, OSMSG_GAG_REQUESTED, das->source->nick);
3250         }
3251         masksize = 5+strlen(match->hostname);
3252         mask = alloca(masksize);
3253         snprintf(mask, masksize, "*!*@%s", match->hostname);
3254         if (!is_gagged(mask)) {
3255             gag_create(mask, das->source->handle_info->handle, reason,
3256                        das->discrim->duration ? (now + das->discrim->duration) : 0);
3257         }
3258     }
3259
3260     return 0;
3261 }
3262
3263 static int
3264 trace_domains_func(struct userNode *match, void *extra)
3265 {
3266     struct discrim_and_source *das = extra;
3267     unsigned long *count;
3268     unsigned int depth;
3269     char *hostname;
3270
3271     if (!match->hostname[strspn(match->hostname, "0123456789.")]) {
3272         char ipmask[16];
3273         unsigned long matchip = ntohl(match->ip.s_addr);
3274         /* raw IP address.. use up to first three octets of IP */
3275         switch (das->discrim->domain_depth) {
3276         default:
3277             snprintf(ipmask, sizeof(ipmask), "%lu.%lu.%lu.*", (matchip>>24)&255, (matchip>>16)&255, (matchip>>8)&255);
3278             break;
3279         case 2:
3280             snprintf(ipmask, sizeof(ipmask), "%lu.%lu.*", (matchip>>24)&255, (matchip>>16)&255);
3281             break;
3282         case 1:
3283             snprintf(ipmask, sizeof(ipmask), "%lu.*", (matchip>>24)&255);
3284             break;
3285         }
3286         hostname = ipmask;
3287     } else {
3288         hostname = match->hostname + strlen(match->hostname);
3289         for (depth=das->discrim->domain_depth; 
3290              depth && (hostname > match->hostname);
3291              depth--) {
3292             hostname--;
3293             while ((hostname > match->hostname) && (*hostname != '.')) hostname--;
3294         }
3295         if (*hostname == '.') hostname++; /* advance past last dot we saw */
3296     }
3297     if (!(count = dict_find(das->dict, hostname, NULL))) {
3298         count = calloc(1, sizeof(*count));
3299         dict_insert(das->dict, strdup(hostname), count);
3300     }
3301     (*count)++;
3302     return 0;
3303 }
3304
3305 static int
3306 opserv_show_hostinfo(const char *key, void *data, void *extra)
3307 {
3308     unsigned long *count = data;
3309     struct discrim_and_source *das = extra;
3310
3311     send_message_type(4, das->source, opserv, "%s %lu", key, *count);
3312     return !--das->disp_limit;
3313 }
3314
3315 static MODCMD_FUNC(cmd_trace)
3316 {
3317     struct discrim_and_source das;
3318     discrim_search_func action;
3319     unsigned int matches;
3320     struct svccmd *subcmd;
3321     char buf[MAXLEN];
3322
3323     sprintf(buf, "trace %s", argv[1]);
3324     if (!(subcmd = dict_find(cmd->parent->commands, buf, NULL))) {
3325         reply("OSMSG_BAD_ACTION", argv[1]);
3326         return 0;
3327     }
3328     if (!svccmd_can_invoke(user, cmd->parent->bot, subcmd, channel, SVCCMD_NOISY))
3329         return 0;
3330     if (!irccasecmp(argv[1], "print"))
3331         action = trace_print_func;
3332     else if (!irccasecmp(argv[1], "count"))
3333         action = trace_count_func;
3334     else if (!irccasecmp(argv[1], "domains"))
3335         action = trace_domains_func;
3336     else if (!irccasecmp(argv[1], "gline"))
3337         action = trace_gline_func;
3338     else if (!irccasecmp(argv[1], "kill"))
3339         action = trace_kill_func;
3340     else if (!irccasecmp(argv[1], "gag"))
3341         action = trace_gag_func;
3342     else {
3343         reply("OSMSG_BAD_ACTION", argv[1]);
3344         return 0;
3345     }
3346
3347     if (user->handle_info->opserv_level < subcmd->min_opserv_level) {
3348         reply("OSMSG_LEVEL_TOO_LOW");
3349         return 0;
3350     }
3351
3352     das.dict = NULL;
3353     das.source = user;
3354     das.discrim = opserv_discrim_create(user, argc-2, argv+2, 1);
3355     if (!das.discrim)
3356         return 0;
3357
3358     if (action == trace_print_func)
3359         reply("OSMSG_USER_SEARCH_RESULTS");
3360     else if (action == trace_count_func)
3361         das.discrim->limit = INT_MAX;
3362     else if ((action == trace_gline_func) && !das.discrim->duration)
3363         das.discrim->duration = opserv_conf.block_gline_duration;
3364     else if (action == trace_domains_func) {
3365         das.dict = dict_new();
3366         dict_set_free_data(das.dict, free);
3367         dict_set_free_keys(das.dict, free);
3368         das.disp_limit = das.discrim->limit;
3369         das.discrim->limit = INT_MAX;
3370     }
3371     matches = opserv_discrim_search(das.discrim, action, &das);
3372
3373     if (action == trace_domains_func)
3374         dict_foreach(das.dict, opserv_show_hostinfo, &das);
3375
3376     if (matches)
3377         reply("MSG_MATCH_COUNT", matches);
3378     else
3379         reply("MSG_NO_MATCHES");
3380
3381     if (das.discrim->channel)
3382         UnlockChannel(das.discrim->channel);
3383     free(das.discrim->reason);
3384     free(das.discrim);
3385     dict_delete(das.dict);
3386     return 1;
3387 }
3388
3389 typedef void (*cdiscrim_search_func)(struct chanNode *match, void *data);
3390
3391 typedef struct channel_discrim {
3392     char *name, *topic;
3393
3394     unsigned int min_users, max_users;
3395     time_t min_ts, max_ts;
3396     unsigned int limit;
3397 } *cdiscrim_t;
3398
3399 static cdiscrim_t opserv_cdiscrim_create(struct userNode *user, unsigned int argc, char *argv[]);
3400 static unsigned int opserv_cdiscrim_search(cdiscrim_t discrim, cdiscrim_search_func dsf, void *data);
3401
3402 static time_t
3403 smart_parse_time(const char *str) {
3404     /* If an interval-style string is given, treat as time before now.
3405      * If it's all digits, treat directly as a Unix timestamp. */
3406     return str[strspn(str, "0123456789")] ? (time_t)(now - ParseInterval(str)) : (time_t)atoi(str);
3407 }
3408
3409 static cdiscrim_t
3410 opserv_cdiscrim_create(struct userNode *user, unsigned int argc, char *argv[])
3411 {
3412     cdiscrim_t discrim;
3413     unsigned int i;
3414
3415     discrim = calloc(1, sizeof(*discrim));
3416     discrim->limit = 25;
3417
3418     for (i = 0; i < argc; i++) {
3419         /* Assume all criteria require arguments. */
3420         if (i == (argc - 1)) {
3421             send_message(user, opserv, "MSG_MISSING_PARAMS", argv[i]);
3422             return NULL;
3423         }
3424
3425         if (!irccasecmp(argv[i], "name"))
3426             discrim->name = argv[++i];
3427         else if (!irccasecmp(argv[i], "topic"))
3428             discrim->topic = argv[++i];
3429         else if (!irccasecmp(argv[i], "users")) {
3430             const char *cmp = argv[++i];
3431             if (cmp[0] == '<') {
3432                 if (cmp[1] == '=')
3433                     discrim->max_users = strtoul(cmp+2, NULL, 0);
3434                 else
3435                     discrim->max_users = strtoul(cmp+1, NULL, 0) - 1;
3436             } else if (cmp[0] == '=') {
3437                 discrim->min_users = discrim->max_users = strtoul(cmp+1, NULL, 0);
3438             } else if (cmp[0] == '>') {
3439                 if (cmp[1] == '=')
3440                     discrim->min_users = strtoul(cmp+2, NULL, 0);
3441                 else
3442                     discrim->min_users = strtoul(cmp+1, NULL, 0) + 1;
3443             } else {
3444                 discrim->min_users = strtoul(cmp+2, NULL, 0);
3445             }
3446         } else if (!irccasecmp(argv[i], "timestamp")) {
3447             const char *cmp = argv[++i];
3448             if (cmp[0] == '<') {
3449                 if (cmp[1] == '=')
3450                     discrim->max_ts = smart_parse_time(cmp+2);
3451                 else
3452                     discrim->max_ts = smart_parse_time(cmp+1)-1;
3453             } else if (cmp[0] == '=') {
3454                 discrim->min_ts = discrim->max_ts = smart_parse_time(cmp+1);
3455             } else if (cmp[0] == '>') {
3456                 if (cmp[1] == '=')
3457                     discrim->min_ts = smart_parse_time(cmp+2);
3458                 else
3459                     discrim->min_ts = smart_parse_time(cmp+1)+1;
3460             } else {
3461                 discrim->min_ts = smart_parse_time(cmp);
3462             }
3463         } else if (!irccasecmp(argv[i], "limit")) {
3464             discrim->limit = strtoul(argv[++i], NULL, 10);
3465         } else {
3466             send_message(user, opserv, "MSG_INVALID_CRITERIA", argv[i]);
3467             goto fail;
3468         }
3469     }
3470
3471     if (discrim->name && !strcmp(discrim->name, "*"))
3472         discrim->name = 0;
3473     if (discrim->topic && !strcmp(discrim->topic, "*"))
3474         discrim->topic = 0;
3475
3476     return discrim;
3477   fail:
3478     free(discrim);
3479     return NULL;
3480 }
3481
3482 static int
3483 cdiscrim_match(cdiscrim_t discrim, struct chanNode *chan)
3484 {
3485     if ((discrim->name && !match_ircglob(chan->name, discrim->name)) ||
3486         (discrim->topic && !match_ircglob(chan->topic, discrim->topic)) ||
3487         (discrim->min_users && chan->members.used < discrim->min_users) ||
3488         (discrim->max_users && chan->members.used > discrim->max_users) ||
3489         (discrim->min_ts && chan->timestamp < discrim->min_ts) ||
3490             (discrim->max_ts && chan->timestamp > discrim->max_ts)) {
3491         return 0;
3492     }
3493     return 1;
3494 }
3495
3496 static unsigned int opserv_cdiscrim_search(cdiscrim_t discrim, cdiscrim_search_func dsf, void *data)
3497 {
3498     unsigned int count = 0;
3499     dict_iterator_t it, next;
3500
3501     for (it = dict_first(channels); it && count < discrim->limit ; it = next) {
3502         struct chanNode *chan = iter_data(it);
3503
3504         /* Hold on to the next channel in case we decide to
3505            add actions that destructively modify the channel. */
3506         next = iter_next(it);
3507         if ((chan->members.used > 0) && cdiscrim_match(discrim, chan)) {
3508             dsf(chan, data);
3509             count++;
3510         }
3511     }
3512
3513     return count;
3514 }
3515
3516 void channel_count(UNUSED_ARG(struct chanNode *channel), UNUSED_ARG(void *data))
3517 {
3518 }
3519
3520 void channel_print(struct chanNode *channel, void *data)
3521 {
3522     char modes[MAXLEN];
3523     irc_make_chanmode(channel, modes);
3524     send_message(data, opserv, "OSMSG_CSEARCH_CHANNEL_INFO", channel->name, channel->members.used, modes, channel->topic);
3525 }
3526
3527 static MODCMD_FUNC(cmd_csearch)
3528 {
3529     cdiscrim_t discrim;
3530     unsigned int matches;
3531     cdiscrim_search_func action;
3532     struct svccmd *subcmd;
3533     char buf[MAXLEN];
3534
3535     if (!irccasecmp(argv[1], "count"))
3536         action = channel_count;
3537     else if (!irccasecmp(argv[1], "print"))
3538         action = channel_print;
3539     else {
3540         reply("OSMSG_BAD_ACTION", argv[1]);
3541         return 0;
3542     }
3543
3544     sprintf(buf, "%s %s", argv[0], argv[0]);
3545     if ((subcmd = dict_find(cmd->parent->commands, buf, NULL))
3546         && !svccmd_can_invoke(user, cmd->parent->bot, subcmd, channel, SVCCMD_NOISY)) {
3547         return 0;
3548     }
3549
3550     discrim = opserv_cdiscrim_create(user, argc - 2, argv + 2);
3551     if (!discrim)
3552         return 0;
3553
3554     if (action == channel_print)
3555         reply("OSMSG_CHANNEL_SEARCH_RESULTS");
3556     else if (action == channel_count)
3557         discrim->limit = INT_MAX;
3558
3559     matches = opserv_cdiscrim_search(discrim, action, user);
3560
3561     if (matches)
3562         reply("MSG_MATCH_COUNT", matches);
3563     else
3564         reply("MSG_NO_MATCHES");
3565
3566     free(discrim);
3567     return 1;
3568 }
3569
3570 static MODCMD_FUNC(cmd_gsync)
3571 {
3572     struct server *src;
3573     if (argc > 1) {
3574         src = GetServerH(argv[1]);
3575         if (!src) {
3576             reply("MSG_SERVER_UNKNOWN", argv[1]);
3577             return 0;
3578         }
3579     } else {
3580         src = self->uplink;
3581     }
3582     irc_stats(cmd->parent->bot, src, 'G');
3583     reply("OSMSG_GSYNC_RUNNING", src->name);
3584     return 1;
3585 }
3586
3587 struct gline_extra {
3588     struct userNode *user;
3589     struct string_list *glines;
3590 };
3591
3592 static void
3593 gtrace_print_func(struct gline *gline, void *extra)
3594 {
3595     struct gline_extra *xtra = extra;
3596     char *when_text, set_text[20];
3597     strftime(set_text, sizeof(set_text), "%Y-%m-%d", localtime(&gline->issued));
3598     when_text = asctime(localtime(&gline->expires));
3599     when_text[strlen(when_text)-1] = 0; /* strip lame \n */
3600     send_message(xtra->user, opserv, "OSMSG_GTRACE_FORMAT", gline->target, set_text, gline->issuer, when_text, gline->reason);
3601 }
3602
3603 static void
3604 gtrace_count_func(UNUSED_ARG(struct gline *gline), UNUSED_ARG(void *extra))
3605 {
3606 }
3607
3608 static void
3609 gtrace_ungline_func(struct gline *gline, void *extra)
3610 {
3611     struct gline_extra *xtra = extra;
3612     string_list_append(xtra->glines, strdup(gline->target));
3613 }
3614
3615 static MODCMD_FUNC(cmd_gtrace)
3616 {
3617     struct gline_discrim *discrim;
3618     gline_search_func action;
3619     unsigned int matches, nn;
3620     struct gline_extra extra;
3621     struct svccmd *subcmd;
3622     char buf[MAXLEN];
3623
3624     if (!irccasecmp(argv[1], "print"))
3625         action = gtrace_print_func;
3626     else if (!irccasecmp(argv[1], "count"))
3627         action = gtrace_count_func;
3628     else if (!irccasecmp(argv[1], "ungline"))
3629         action = gtrace_ungline_func;
3630     else {
3631         reply("OSMSG_BAD_ACTION", argv[1]);
3632         return 0;
3633     }
3634     sprintf(buf, "%s %s", argv[0], argv[0]);
3635     if ((subcmd = dict_find(cmd->parent->commands, buf, NULL))
3636         && !svccmd_can_invoke(user, cmd->parent->bot, subcmd, channel, SVCCMD_NOISY)) {
3637         return 0;
3638     }
3639
3640     discrim = gline_discrim_create(user, cmd->parent->bot, argc-2, argv+2);
3641     if (!discrim)
3642         return 0;
3643
3644     if (action == gtrace_print_func)
3645         reply("OSMSG_GLINE_SEARCH_RESULTS");
3646     else if (action == gtrace_count_func)
3647         discrim->limit = INT_MAX;
3648
3649     extra.user = user;
3650     extra.glines = alloc_string_list(4);
3651     matches = gline_discrim_search(discrim, action, &extra);
3652
3653     if (action == gtrace_ungline_func)
3654         for (nn=0; nn<extra.glines->used; nn++)
3655             gline_remove(extra.glines->list[nn], 1);
3656     free_string_list(extra.glines);
3657
3658     if (matches)
3659         reply("MSG_MATCH_COUNT", matches);
3660     else
3661         reply("MSG_NO_MATCHES");
3662     free(discrim->alt_target_mask);
3663     free(discrim);
3664     return 1;
3665 }
3666
3667 static int
3668 alert_check_user(const char *key, void *data, void *extra)
3669 {
3670     struct opserv_user_alert *alert = data;
3671     struct userNode *user = extra;
3672
3673     if (!discrim_match(alert->discrim, user))
3674         return 0;
3675
3676     if ((alert->reaction != REACT_NOTICE)
3677         && IsOper(user)
3678         && !alert->discrim->match_opers) {
3679         return 0;
3680     }
3681
3682     /* The user matches the alert criteria, so trigger the reaction. */
3683     if (alert->discrim->option_log)
3684         log_module(OS_LOG, LOG_INFO, "Alert %s triggered by user %s!%s@%s (%s).", key, user->nick, user->ident, user->hostname, alert->discrim->reason);
3685
3686     /* Return 1 to halt alert matching, such as when killing the user
3687        that triggered the alert. */
3688     switch (alert->reaction) {
3689     case REACT_KILL:
3690         DelUser(user, opserv, 1, alert->discrim->reason);
3691         return 1;
3692     case REACT_GLINE:
3693         opserv_block(user, alert->owner, alert->discrim->reason, alert->discrim->duration);
3694         return 1;
3695     default:
3696         log_module(OS_LOG, LOG_ERROR, "Invalid reaction type %d for alert %s.", alert->reaction, key);
3697         /* fall through to REACT_NOTICE case */
3698     case REACT_NOTICE:
3699         opserv_alert("Alert $b%s$b triggered by user $b%s$b!%s@%s (%s).", key, user->nick, user->ident, user->hostname, alert->discrim->reason);
3700         break;
3701     }
3702     return 0;
3703 }
3704
3705 static void
3706 opserv_alert_check_nick(struct userNode *user, UNUSED_ARG(const char *old_nick))
3707 {
3708     struct gag_entry *gag;
3709     dict_foreach(opserv_nick_based_alerts, alert_check_user, user);
3710     /* Gag them if appropriate (and only if). */
3711     user->modes &= ~FLAGS_GAGGED;
3712     for (gag = gagList; gag; gag = gag->next) {
3713         if (user_matches_glob(user, gag->mask, 1)) {
3714             gag_helper_func(user, NULL);
3715             break;
3716         }
3717     }
3718 }
3719
3720 static void
3721 opserv_staff_alert(struct userNode *user, UNUSED_ARG(struct handle_info *old_handle))
3722 {
3723     const char *type;
3724
3725     if (!opserv_conf.staff_auth_channel
3726         || user->uplink->burst
3727         || !user->handle_info)
3728         return;
3729     else if (user->handle_info->opserv_level)
3730         type = "OPER";
3731     else if (IsNetworkHelper(user))
3732         type = "NETWORK HELPER";
3733     else if (IsSupportHelper(user))
3734         type = "SUPPORT HELPER";
3735     else
3736         return;
3737
3738     if (user->ip.s_addr)
3739         send_channel_notice(opserv_conf.staff_auth_channel, opserv, IDENT_FORMAT" authed to %s account %s", IDENT_DATA(user), type, user->handle_info->handle);
3740     else
3741         send_channel_notice(opserv_conf.staff_auth_channel, opserv, "%s [%s@%s] authed to %s account %s", user->nick, user->ident, user->hostname, type, user->handle_info->handle);
3742 }
3743
3744 static MODCMD_FUNC(cmd_log)
3745 {
3746     struct logSearch *discrim;
3747     unsigned int matches;
3748     struct logReport report;
3749
3750     discrim = log_discrim_create(cmd->parent->bot, user, argc, argv);
3751     if (!discrim)
3752         return 0;
3753
3754     reply("OSMSG_LOG_SEARCH_RESULTS");
3755     report.reporter = opserv;
3756     report.user = user;
3757     matches = log_entry_search(discrim, log_report_entry, &report);
3758
3759     if (matches)
3760         reply("MSG_MATCH_COUNT", matches);
3761     else
3762         reply("MSG_NO_MATCHES");
3763
3764     free(discrim);
3765     return 1;
3766 }
3767
3768 static int
3769 gag_helper_func(struct userNode *match, UNUSED_ARG(void *extra))
3770 {
3771     if (IsOper(match) || IsLocal(match))
3772         return 0;
3773     match->modes |= FLAGS_GAGGED;
3774     return 0;
3775 }
3776
3777 static MODCMD_FUNC(cmd_gag)
3778 {
3779     struct gag_entry *gag;
3780     unsigned int gagged;
3781     unsigned long duration;
3782     char *reason;
3783
3784     reason = unsplit_string(argv + 3, argc - 3, NULL);
3785
3786     if (!is_ircmask(argv[1])) {
3787         reply("OSMSG_INVALID_IRCMASK", argv[1]);
3788         return 0;
3789     }
3790
3791     for (gag = gagList; gag; gag = gag->next)
3792         if (match_ircglobs(gag->mask, argv[1]))
3793             break;
3794
3795     if (gag) {
3796         reply("OSMSG_REDUNDANT_GAG", argv[1]);
3797         return 0;
3798     }
3799
3800     duration = ParseInterval(argv[2]);
3801     gagged = gag_create(argv[1], user->handle_info->handle, reason, (duration?now+duration:0));
3802
3803     if (gagged)
3804         reply("OSMSG_GAG_APPLIED", argv[1], gagged);
3805     else
3806         reply("OSMSG_GAG_ADDED", argv[1]);
3807     return 1;
3808 }
3809
3810 static int
3811 ungag_helper_func(struct userNode *match, UNUSED_ARG(void *extra))
3812 {
3813     match->modes &= ~FLAGS_GAGGED;
3814     return 0;
3815 }
3816
3817 static MODCMD_FUNC(cmd_ungag)
3818 {
3819     struct gag_entry *gag;
3820     unsigned int ungagged;
3821
3822     for (gag = gagList; gag; gag = gag->next)
3823         if (!strcmp(gag->mask, argv[1]))
3824             break;
3825
3826     if (!gag) {
3827         reply("OSMSG_GAG_NOT_FOUND", argv[1]);
3828         return 0;
3829     }
3830
3831     timeq_del(gag->expires, gag_expire, gag, 0);
3832     ungagged = gag_free(gag);
3833
3834     if (ungagged)
3835         reply("OSMSG_UNGAG_APPLIED", argv[1], ungagged);
3836     else
3837         reply("OSMSG_UNGAG_ADDED", argv[1]);
3838     return 1;
3839 }
3840
3841 static MODCMD_FUNC(cmd_addalert)
3842 {
3843     opserv_alert_reaction reaction;
3844     struct svccmd *subcmd;
3845     const char *name;
3846     char buf[MAXLEN];
3847
3848     name = argv[1];
3849     sprintf(buf, "addalert %s", argv[2]);
3850     if (!(subcmd = dict_find(cmd->parent->commands, buf, NULL))) {
3851         reply("OSMSG_UNKNOWN_REACTION", argv[2]);
3852         return 0;
3853     }
3854     if (!irccasecmp(argv[2], "notice"))
3855         reaction = REACT_NOTICE;
3856     else if (!irccasecmp(argv[2], "kill"))
3857         reaction = REACT_KILL;
3858     else if (!irccasecmp(argv[2], "gline"))
3859         reaction = REACT_GLINE;
3860     else {
3861         reply("OSMSG_UNKNOWN_REACTION", argv[2]);
3862         return 0;
3863     }
3864     if (!svccmd_can_invoke(user, cmd->parent->bot, subcmd, channel, SVCCMD_NOISY)
3865         || !opserv_add_user_alert(user, name, reaction, unsplit_string(argv + 3, argc - 3, NULL)))
3866         return 0;
3867     reply("OSMSG_ADDED_ALERT", name);
3868     return 1;
3869 }
3870
3871 static MODCMD_FUNC(cmd_delalert)
3872 {
3873     unsigned int i;
3874     for (i=1; i<argc; i++) {
3875         dict_remove(opserv_nick_based_alerts, argv[i]);
3876         dict_remove(opserv_channel_alerts, argv[i]);
3877         if (dict_remove(opserv_user_alerts, argv[i]))
3878             reply("OSMSG_REMOVED_ALERT", argv[i]);
3879         else
3880             reply("OSMSG_NO_SUCH_ALERT", argv[i]);
3881     }
3882     return 1;
3883 }
3884
3885 static void
3886 opserv_conf_read(void)
3887 {
3888     struct record_data *rd;
3889     dict_t conf_node, child;
3890     const char *str, *str2;
3891     struct policer_params *pp;
3892     dict_iterator_t it;
3893
3894     rd = conf_get_node(OPSERV_CONF_NAME);
3895     if (!rd || rd->type != RECDB_OBJECT) {
3896         log_module(OS_LOG, LOG_ERROR, "config node `%s' is missing or has wrong type.", OPSERV_CONF_NAME);
3897         return;
3898     }
3899     conf_node = rd->d.object;
3900     str = database_get_data(conf_node, KEY_DEBUG_CHANNEL, RECDB_QSTRING);
3901     if (opserv && str) {
3902         str2 = database_get_data(conf_node, KEY_DEBUG_CHANNEL_MODES, RECDB_QSTRING);
3903         if (!str2)
3904             str2 = "+tinms";
3905         opserv_conf.debug_channel = AddChannel(str, now, str2, NULL);
3906         AddChannelUser(opserv, opserv_conf.debug_channel)->modes |= MODE_CHANOP;
3907     } else {
3908         opserv_conf.debug_channel = NULL;
3909     }
3910     str = database_get_data(conf_node, KEY_ALERT_CHANNEL, RECDB_QSTRING);
3911     if (opserv && str) {
3912         str2 = database_get_data(conf_node, KEY_ALERT_CHANNEL_MODES, RECDB_QSTRING);
3913         if (!str2)
3914             str2 = "+tns";
3915         opserv_conf.alert_channel = AddChannel(str, now, str2, NULL);
3916         AddChannelUser(opserv, opserv_conf.alert_channel)->modes |= MODE_CHANOP;
3917     } else {
3918         opserv_conf.alert_channel = NULL;
3919     }
3920     str = database_get_data(conf_node, KEY_STAFF_AUTH_CHANNEL, RECDB_QSTRING);
3921     if (opserv && str) {
3922         str2 = database_get_data(conf_node, KEY_STAFF_AUTH_CHANNEL_MODES, RECDB_QSTRING);
3923         if (!str2)
3924             str2 = "+timns";
3925         opserv_conf.staff_auth_channel = AddChannel(str, now, str2, NULL);
3926         AddChannelUser(opserv, opserv_conf.staff_auth_channel)->modes |= MODE_CHANOP;
3927     } else {
3928         opserv_conf.staff_auth_channel = NULL;
3929     }
3930     str = database_get_data(conf_node, KEY_UNTRUSTED_MAX, RECDB_QSTRING);
3931     opserv_conf.untrusted_max = str ? strtoul(str, NULL, 0) : 5;
3932     str = database_get_data(conf_node, KEY_PURGE_LOCK_DELAY, RECDB_QSTRING);
3933     opserv_conf.purge_lock_delay = str ? strtoul(str, NULL, 0) : 60;
3934     str = database_get_data(conf_node, KEY_JOIN_FLOOD_MODERATE, RECDB_QSTRING);
3935     opserv_conf.join_flood_moderate = str ? strtoul(str, NULL, 0) : 1;
3936     str = database_get_data(conf_node, KEY_JOIN_FLOOD_MODERATE_THRESH, RECDB_QSTRING);
3937     opserv_conf.join_flood_moderate_threshold = str ? strtoul(str, NULL, 0) : 50;
3938     str = database_get_data(conf_node, KEY_NICK, RECDB_QSTRING);
3939     if (opserv && str)
3940         NickChange(opserv, str, 0);
3941     str = database_get_data(conf_node, KEY_CLONE_GLINE_DURATION, RECDB_QSTRING);
3942     opserv_conf.clone_gline_duration = str ? ParseInterval(str) : 3600;
3943     str = database_get_data(conf_node, KEY_BLOCK_GLINE_DURATION, RECDB_QSTRING);
3944     opserv_conf.block_gline_duration = str ? ParseInterval(str) : 3600;
3945
3946     if (!opserv_conf.join_policer_params)
3947         opserv_conf.join_policer_params = policer_params_new();
3948     policer_params_set(opserv_conf.join_policer_params, "size", "20");
3949     policer_params_set(opserv_conf.join_policer_params, "drain-rate", "1");
3950     if ((child = database_get_data(conf_node, KEY_JOIN_POLICER, RECDB_OBJECT)))
3951         dict_foreach(child, set_policer_param, opserv_conf.join_policer_params);
3952
3953     for (it = dict_first(channels); it; it = iter_next(it)) {
3954         struct chanNode *cNode = iter_data(it);
3955         cNode->join_policer.params = opserv_conf.join_policer_params;
3956     }
3957
3958     if (opserv_conf.new_user_policer.params)
3959         pp = opserv_conf.new_user_policer.params;
3960     else
3961         pp = opserv_conf.new_user_policer.params = policer_params_new();
3962     policer_params_set(pp, "size", "200");
3963     policer_params_set(pp, "drain-rate", "3");
3964     if ((child = database_get_data(conf_node, KEY_NEW_USER_POLICER, RECDB_OBJECT)))
3965         dict_foreach(child, set_policer_param, pp);
3966 }
3967
3968 static void
3969 opserv_db_init(void) {
3970     /* set up opserv_trusted_hosts dict */
3971     dict_delete(opserv_trusted_hosts);
3972     opserv_trusted_hosts = dict_new();
3973     dict_set_free_data(opserv_trusted_hosts, free_trusted_host);
3974     /* set up opserv_chan_warn dict */
3975     dict_delete(opserv_chan_warn);
3976     opserv_chan_warn = dict_new();
3977     dict_set_free_keys(opserv_chan_warn, free);
3978     dict_set_free_data(opserv_chan_warn, free);
3979     /* set up opserv_user_alerts */
3980     dict_delete(opserv_channel_alerts);
3981     opserv_channel_alerts = dict_new();
3982     dict_delete(opserv_nick_based_alerts);
3983     opserv_nick_based_alerts = dict_new();
3984     dict_delete(opserv_user_alerts);
3985     opserv_user_alerts = dict_new();
3986     dict_set_free_keys(opserv_user_alerts, free);
3987     dict_set_free_data(opserv_user_alerts, opserv_free_user_alert);
3988     /* set up opserv_bad_words */
3989     free_string_list(opserv_bad_words);
3990     opserv_bad_words = alloc_string_list(4);
3991     /* and opserv_exempt_channels */
3992     dict_delete(opserv_exempt_channels);
3993     opserv_exempt_channels = dict_new();
3994     dict_set_free_keys(opserv_exempt_channels, free);
3995 }
3996
3997 static void
3998 opserv_db_cleanup(void)
3999 {
4000     unsigned int nn;
4001
4002     dict_delete(opserv_chan_warn);
4003     dict_delete(opserv_reserved_nick_dict);
4004     free_string_list(opserv_bad_words);
4005     dict_delete(opserv_exempt_channels);
4006     dict_delete(opserv_trusted_hosts);
4007     unreg_del_user_func(opserv_user_cleanup);
4008     dict_delete(opserv_hostinfo_dict);
4009     dict_delete(opserv_nick_based_alerts);
4010     dict_delete(opserv_channel_alerts);
4011     dict_delete(opserv_user_alerts);
4012     for (nn=0; nn<ArrayLength(level_strings); ++nn)
4013         free(level_strings[nn]);
4014     while (gagList)
4015         gag_free(gagList);
4016     policer_params_delete(opserv_conf.join_policer_params);
4017     policer_params_delete(opserv_conf.new_user_policer.params);
4018 }
4019
4020 void
4021 init_opserv(const char *nick)
4022 {
4023     OS_LOG = log_register_type("OpServ", "file:opserv.log");
4024     if (nick) {
4025         const char *modes = conf_get_data("services/opserv/modes", RECDB_QSTRING);
4026         opserv = AddService(nick, modes ? modes : NULL, "Oper Services", NULL);
4027     }
4028     conf_register_reload(opserv_conf_read);
4029
4030     memset(level_strings, 0, sizeof(level_strings));
4031     opserv_module = module_register("OpServ", OS_LOG, "opserv.help", opserv_help_expand);
4032     opserv_define_func("ACCESS", cmd_access, 0, 0, 0);
4033     opserv_define_func("ADDALERT", cmd_addalert, 800, 0, 4);
4034     opserv_define_func("ADDALERT NOTICE", NULL, 0, 0, 0);
4035     opserv_define_func("ADDALERT GLINE", NULL, 900, 0, 0);
4036     opserv_define_func("ADDALERT KILL", NULL, 900, 0, 0);
4037     opserv_define_func("ADDBAD", cmd_addbad, 800, 0, 2);
4038     opserv_define_func("ADDEXEMPT", cmd_addexempt, 800, 0, 2);
4039     opserv_define_func("ADDTRUST", cmd_addtrust, 800, 0, 5);
4040     opserv_define_func("BAN", cmd_ban, 100, 2, 2);
4041     opserv_define_func("BLOCK", cmd_block, 100, 0, 2);
4042     opserv_define_func("CHANINFO", cmd_chaninfo, 0, 3, 0);
4043     opserv_define_func("CLEARBANS", cmd_clearbans, 300, 2, 0);
4044     opserv_define_func("CLEARMODES", cmd_clearmodes, 400, 2, 0);
4045     opserv_define_func("CLONE", cmd_clone, 999, 0, 3);
4046     opserv_define_func("COLLIDE", cmd_collide, 800, 0, 5);
4047     opserv_define_func("CSEARCH", cmd_csearch, 100, 0, 3);
4048     opserv_define_func("CSEARCH COUNT", cmd_csearch, 0, 0, 0);
4049     opserv_define_func("CSEARCH PRINT", cmd_csearch, 0, 0, 0);
4050     opserv_define_func("DELALERT", cmd_delalert, 800, 0, 2);
4051     opserv_define_func("DELBAD", cmd_delbad, 800, 0, 2);
4052     opserv_define_func("DELEXEMPT", cmd_delexempt, 800, 0, 2);
4053     opserv_define_func("DELTRUST", cmd_deltrust, 800, 0, 2);
4054     opserv_define_func("DEOP", cmd_deop, 100, 2, 2);
4055     opserv_define_func("DEOPALL", cmd_deopall, 400, 2, 0);
4056     opserv_define_func("DEVOICEALL", cmd_devoiceall, 300, 2, 0);
4057     opserv_define_func("DIE", cmd_die, 900, 0, 2);
4058     opserv_define_func("DUMP", cmd_dump, 999, 0, 2);
4059     opserv_define_func("EDITTRUST", cmd_edittrust, 800, 0, 5);
4060     opserv_define_func("GAG", cmd_gag, 600, 0, 4);
4061     opserv_define_func("GLINE", cmd_gline, 600, 0, 4);
4062     opserv_define_func("GSYNC", cmd_gsync, 600, 0, 0);
4063     opserv_define_func("GTRACE", cmd_gtrace, 100, 0, 3);
4064     opserv_define_func("GTRACE COUNT", NULL, 0, 0, 0);
4065     opserv_define_func("GTRACE PRINT", NULL, 0, 0, 0);
4066     opserv_define_func("INVITE", cmd_invite, 100, 2, 0);
4067     opserv_define_func("INVITEME", cmd_inviteme, 100, 0, 0);
4068     opserv_define_func("JOIN", cmd_join, 601, 0, 2);
4069     opserv_define_func("JUMP", cmd_jump, 900, 0, 2);
4070     opserv_define_func("JUPE", cmd_jupe, 900, 0, 4);
4071     opserv_define_func("KICK", cmd_kick, 100, 2, 2);
4072     opserv_define_func("KICKALL", cmd_kickall, 400, 2, 0);
4073     opserv_define_func("KICKBAN", cmd_kickban, 100, 2, 2);
4074     opserv_define_func("KICKBANALL", cmd_kickbanall, 450, 2, 0);
4075     opserv_define_func("LOG", cmd_log, 900, 0, 2);
4076     opserv_define_func("MODE", cmd_mode, 100, 2, 2);
4077     opserv_define_func("OP", cmd_op, 100, 2, 2);
4078     opserv_define_func("OPALL", cmd_opall, 400, 2, 0);
4079     opserv_define_func("PART", cmd_part, 601, 0, 2);
4080     opserv_define_func("QUERY", cmd_query, 0, 0, 0);
4081     opserv_define_func("RAW", cmd_raw, 999, 0, 2);
4082     opserv_define_func("RECONNECT", cmd_reconnect, 900, 0, 0);
4083     opserv_define_func("REFRESHG", cmd_refreshg, 600, 0, 0);
4084     opserv_define_func("REHASH", cmd_rehash, 900, 0, 0);
4085     opserv_define_func("REOPEN", cmd_reopen, 900, 0, 0);
4086     opserv_define_func("RESERVE", cmd_reserve, 800, 0, 5);
4087     opserv_define_func("RESTART", cmd_restart, 900, 0, 2);
4088     opserv_define_func("SET", cmd_set, 900, 0, 3);
4089     opserv_define_func("SETTIME", cmd_settime, 901, 0, 0);
4090     opserv_define_func("STATS ALERTS", cmd_stats_alerts, 0, 0, 0);
4091     opserv_define_func("STATS BAD", cmd_stats_bad, 0, 0, 0);
4092     opserv_define_func("STATS GAGS", cmd_stats_gags, 0, 0, 0);
4093     opserv_define_func("STATS GLINES", cmd_stats_glines, 0, 0, 0);
4094     opserv_define_func("STATS LINKS", cmd_stats_links, 0, 0, 0);
4095     opserv_define_func("STATS MAX", cmd_stats_max, 0, 0, 0);
4096     opserv_define_func("STATS NETWORK", cmd_stats_network, 0, 0, 0);
4097     opserv_define_func("STATS NETWORK2", cmd_stats_network2, 0, 0, 0);
4098     opserv_define_func("STATS RESERVED", cmd_stats_reserved, 0, 0, 0);
4099     opserv_define_func("STATS TIMEQ", cmd_stats_timeq, 0, 0, 0);
4100     opserv_define_func("STATS TRUSTED", cmd_stats_trusted, 0, 0, 0);
4101     opserv_define_func("STATS UPLINK", cmd_stats_uplink, 0, 0, 0);
4102     opserv_define_func("STATS UPTIME", cmd_stats_uptime, 0, 0, 0);
4103     opserv_define_func("STATS WARN", cmd_stats_warn, 0, 0, 0);
4104     opserv_define_func("TRACE", cmd_trace, 100, 0, 3);
4105     opserv_define_func("TRACE PRINT", NULL, 0, 0, 0);
4106     opserv_define_func("TRACE COUNT", NULL, 0, 0, 0);
4107     opserv_define_func("TRACE DOMAINS", NULL, 0, 0, 0);
4108     opserv_define_func("TRACE GLINE", NULL, 600, 0, 0);
4109     opserv_define_func("TRACE GAG", NULL, 600, 0, 0);
4110     opserv_define_func("TRACE KILL", NULL, 600, 0, 0);
4111     opserv_define_func("UNBAN", cmd_unban, 100, 2, 2);
4112     opserv_define_func("UNGAG", cmd_ungag, 600, 0, 2);
4113     opserv_define_func("UNGLINE", cmd_ungline, 600, 0, 2);
4114     modcmd_register(opserv_module, "GTRACE UNGLINE", NULL, 0, 0, "template", "ungline", NULL);
4115     opserv_define_func("UNJUPE", cmd_unjupe, 900, 0, 2);
4116     opserv_define_func("UNRESERVE", cmd_unreserve, 800, 0, 2);
4117     opserv_define_func("UNWARN", cmd_unwarn, 800, 0, 0);
4118     opserv_define_func("VOICEALL", cmd_voiceall, 300, 2, 0);
4119     opserv_define_func("WARN", cmd_warn, 800, 0, 2);
4120     opserv_define_func("WHOIS", cmd_whois, 0, 0, 2);
4121
4122     opserv_reserved_nick_dict = dict_new();
4123     opserv_hostinfo_dict = dict_new();
4124     dict_set_free_keys(opserv_hostinfo_dict, free);
4125     dict_set_free_data(opserv_hostinfo_dict, opserv_free_hostinfo);
4126
4127     reg_new_user_func(opserv_new_user_check);
4128     reg_nick_change_func(opserv_alert_check_nick);
4129     reg_del_user_func(opserv_user_cleanup);
4130     reg_new_channel_func(opserv_channel_check);
4131     reg_del_channel_func(opserv_channel_delete);
4132     reg_join_func(opserv_join_check);
4133     reg_auth_func(opserv_staff_alert);
4134
4135     opserv_db_init();
4136     saxdb_register("OpServ", opserv_saxdb_read, opserv_saxdb_write);
4137     if (nick)
4138         service_register(opserv)->trigger = '?';
4139
4140     reg_exit_func(opserv_db_cleanup);
4141     message_register_table(msgtab);
4142 }