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