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