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