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