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