]> jfr.im git - irc/evilnet/x3.git/blob - src/opserv.c
tweaks
[irc/evilnet/x3.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 x3.
5 *
6 * x3 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 "common.h"
23 #include "gline.h"
24 #include "global.h"
25 #include "nickserv.h"
26 #include "modcmd.h"
27 #include "modules.h"
28 #include "proto.h"
29 #include "opserv.h"
30 #include "timeq.h"
31 #include "saxdb.h"
32 #include "shun.h"
33
34 #include <tre/regex.h>
35
36 #ifdef HAVE_SYS_TIMES_H
37 #include <sys/times.h>
38 #endif
39 #ifdef HAVE_NETINET_IN_H
40 #include <netinet/in.h>
41 #endif
42 #ifdef HAVE_ARPA_INET_H
43 #include <arpa/inet.h>
44 #endif
45
46
47 #define OPSERV_CONF_NAME "services/opserv"
48
49 #define KEY_ALERT_CHANNEL "alert_channel"
50 #define KEY_ALERT_CHANNEL_MODES "alert_channel_modes"
51 #define KEY_DEBUG_CHANNEL "debug_channel"
52 #define KEY_DEBUG_CHANNEL_MODES "debug_channel_modes"
53 #define KEY_UNTRUSTED_MAX "untrusted_max"
54 #define KEY_PURGE_LOCK_DELAY "purge_lock_delay"
55 #define KEY_JOIN_FLOOD_MODERATE "join_flood_moderate"
56 #define KEY_JOIN_FLOOD_MODERATE_THRESH "join_flood_moderate_threshold"
57 #define KEY_NICK "nick"
58 #define KEY_JOIN_POLICER "join_policer"
59 #define KEY_NEW_USER_POLICER "new_user_policer"
60 #define KEY_AUTOJOIN_CHANNELS "autojoin_channels"
61 #define KEY_REASON "reason"
62 #define KEY_RESERVES "reserves"
63 #define KEY_IDENT "username" /* for compatibility with 1.0 DBs */
64 #define KEY_HOSTNAME "hostname"
65 #define KEY_DESC "description"
66 #define KEY_BAD_WORDS "bad"
67 #define KEY_EXEMPT_CHANNELS "exempt"
68 #define KEY_SECRET_WORDS "secret"
69 #define KEY_TRUSTED_HOSTS "trusted"
70 #define KEY_OWNER "owner"
71 #define KEY_GAGS "gags"
72 #define KEY_ALERTS "alerts"
73 #define KEY_REACTION "reaction"
74 #define KEY_DISCRIM "discrim"
75 #define KEY_WARN "chanwarn"
76 #define KEY_MAX "max"
77 #define KEY_TIME "time"
78 #define KEY_MAX_CLIENTS "max_clients"
79 #define KEY_LIMIT "limit"
80 #define KEY_EXPIRES "expires"
81 #define KEY_STAFF_AUTH_CHANNEL "staff_auth_channel"
82 #define KEY_STAFF_AUTH_CHANNEL_MODES "staff_auth_channel_modes"
83 #define KEY_CLONE_GLINE_DURATION "clone_gline_duration"
84 #define KEY_BLOCK_GLINE_DURATION "block_gline_duration"
85 #define KEY_BLOCK_SHUN_DURATION "block_shun_duration"
86 #define KEY_ISSUER "issuer"
87 #define KEY_ISSUED "issued"
88 #define KEY_ADMIN_LEVEL "admin_level"
89 #define KEY_SILENT_LEVEL "silent_level"
90 #define KEY_UPLINK "uplink"
91 #define KEY_SECOND "secondaryuplink"
92 #define KEY_PORT "port"
93 #define KEY_KARMA "karma"
94 #define KEY_OFFLINE "offline"
95 #define KEY_ROUTINGPLAN "routingplan"
96 #define KEY_ROUTINGPLAN_OPTIONS "routingplan_options"
97 #define KEY_DEFCON1 "DefCon1"
98 #define KEY_DEFCON2 "DefCon2"
99 #define KEY_DEFCON3 "DefCon3"
100 #define KEY_DEFCON4 "DefCon4"
101 #define KEY_DEFCON_LEVEL "DefConLevel"
102 #define KEY_DEFCON_CHANMODES "DefConChanModes"
103 #define KEY_DEFCON_SESSION_LIMIT "DefConSessionLimit"
104 #define KEY_DEFCON_TIMEOUT "DefConTimeOut"
105 #define KEY_DEFCON_GLOBAL "GlobalOnDefcon"
106 #define KEY_DEFCON_GLOBAL_MORE "GlobalOnDefconMore"
107 #define KEY_DEFCON_MESSAGE "DefconMessage"
108 #define KEY_DEFCON_OFF_MESSAGE "DefConOffMessage"
109 #define KEY_DEFCON_GLINE_DURATION "DefConGlineExpire"
110 #define KEY_DEFCON_GLINE_REASON "DefConGlineReason"
111
112 /* Routing karma values: */
113 /* What value we start out with when new servers are added: */
114 #define KARMA_DEFAULT 10
115 /* max, min */
116 #define KARMA_MAX 10
117 #define KARMA_MIN -10
118 /* ping out, reduce karma by this much: */
119 #define KARMA_PINGOUT -8
120 /* read err, reduce karma by this much: */
121 #define KARMA_READERROR -5
122 /* every 24 hours everyone gets this much added (so we eventually re-try bad servers) */
123 #define KARMA_ENTROPE 1
124 /* every 24 hours servers linked for 24 hours get an additional ammount: */
125 #define KARMA_RELIABLE 1
126 /* How often to run entrope and reliable checks */
127 #define KARMA_TIMER 86400 /* 1 day */
128
129 #define ROUTING_CONNECT_TIMEOUT 30 /* 30 seconds */
130
131 #define IDENT_FORMAT "%s [%s@%s/%s]"
132 #define IDENT_DATA(user) user->nick, user->ident, user->hostname, irc_ntoa(&user->ip)
133 #define MAX_CHANNELS_WHOIS 50
134 #define OSMSG_PART_REASON "%s has no reason."
135 #define OSMSG_KICK_REQUESTED "Kick requested by %s."
136 #define OSMSG_KILL_REQUESTED "Kill requested by %s."
137 #define OSMSG_GAG_REQUESTED "Gag requested by %s."
138
139 static const struct message_entry msgtab[] = {
140 { "OSMSG_BAR", "----------------------------------------" },
141 { "OSMSG_USER_ACCESS_IS", "$b%s$b (account $b%s$b) has %d access." },
142 { "OSMSG_LEVEL_TOO_LOW", "You lack sufficient access to use this command." },
143 { "OSMSG_NEED_CHANNEL", "You must specify a channel for $b%s$b." },
144 { "OSMSG_INVALID_IRCMASK", "$b%s$b is an invalid IRC hostmask." },
145 { "OSMSG_ADDED_BAN", "I have banned $b%s$b from $b%s$b." },
146 { "OSMSG_SHUN_ISSUED", "Shun issued for $b%s$b." },
147 { "OSMSG_SHUN_REMOVED", "Shun removed for $b%s$b." },
148 { "OSMSG_SHUN_FORCE_REMOVED", "Unknown/expired Shun removed for $b%s$b." },
149 { "OSMSG_SHUN_ONE_REFRESHED", "All Shuns resent to $b%s$b." },
150 { "OSMSG_SHUN_REFRESHED", "All Shuns refreshed." },
151 { "OSMSG_GLINE_ISSUED", "G-line issued for $b%s$b." },
152 { "OSMSG_GLINE_REMOVED", "G-line removed for $b%s$b." },
153 { "OSMSG_GLINE_FORCE_REMOVED", "Unknown/expired G-line removed for $b%s$b." },
154 { "OSMSG_GLINES_ONE_REFRESHED", "All G-lines resent to $b%s$b." },
155 { "OSMSG_GLINES_REFRESHED", "All G-lines refreshed." },
156 { "OSMSG_CLEARBANS_DONE", "Cleared all bans from channel $b%s$b." },
157 { "OSMSG_CLEARMODES_DONE", "Cleared all modes from channel $b%s$b." },
158 { "OSMSG_NO_CHANNEL_MODES", "Channel $b%s$b had no modes to clear." },
159 { "OSMSG_DEOP_DONE", "Deopped the requested lusers." },
160 { "OSMSG_DEOPALL_DONE", "Deopped everyone on $b%s$b." },
161 { "OSMSG_DEHOP_DONE", "Dehalfopped the requested lusers." },
162 { "OSMSG_DEHOPALL_DONE", "Dehalfopped everyone on $b%s$b." },
163 { "OSMSG_NO_DEBUG_CHANNEL", "No debug channel has been configured." },
164 { "OSMSG_INVITE_DONE", "Invited $b%s$b to $b%s$b." },
165 { "OSMSG_ALREADY_THERE", "You are already in $b%s$b." },
166 { "OSMSG_JOIN_DONE", "I have joined $b%s$b." },
167 { "OSMSG_ALREADY_JOINED", "I am already in $b%s$b." },
168 { "OSMSG_NOT_ON_CHANNEL", "$b%s$b does not seem to be on $b%s$b." },
169 { "OSMSG_KICKALL_DONE", "I have cleared out %s." },
170 { "OSMSG_LEAVING", "Leaving $b%s$b." },
171 { "OSMSG_MODE_SET", "I have set the modes for $b%s$b." },
172 { "OSMSG_OP_DONE", "Opped the requested lusers." },
173 { "OSMSG_OPALL_DONE", "Opped everyone on $b%s$b." },
174 { "OSMSG_HOP_DONE", "Halfopped the requested lusers." },
175 { "OSMSG_HOPALL_DONE", "Halfopped everyone on $b%s$b." },
176 { "OSMSG_WHOIS_IDENT", "%s (%s@%s) from %d.%d.%d.%d" },
177 { "OSMSG_WHOIS_NICK", "Nick : %s" },
178 { "OSMSG_WHOIS_HOST", "Host : %s@%s" },
179 { "OSMSG_WHOIS_FAKEHOST", "Fakehost : %s" },
180 { "OSMSG_WHOIS_CRYPT_HOST", "Crypt Host : %s" },
181 { "OSMSG_WHOIS_CRYPT_IP", "Crypt IP : %s" },
182 { "OSMSG_WHOIS_IP", "Real IP : %s" },
183 { "OSMSG_WHOIS_COUNTRY", "Country : %s" },
184 { "OSMSG_WHOIS_COUNTRY_CODE","Country Code : %s" },
185 { "OSMSG_WHOIS_CITY", "City : %s" },
186 { "OSMSG_WHOIS_REGION", "Region/State : %s" },
187 { "OSMSG_WHOIS_POSTAL_CODE","Postal Code : %s" },
188 { "OSMSG_WHOIS_LATITUDE", "Latitude : %f" },
189 { "OSMSG_WHOIS_LONGITUDE", "Longitude : %f" },
190 { "OSMSG_WHOIS_MAP", "Map : %s" },
191 { "OSMSG_WHOIS_DMA_CODE", "DMA Code : %d" },
192 { "OSMSG_WHOIS_AREA_CODE", "Area Code : %d" },
193 { "OSMSG_WHOIS_MODES", "Modes : +%s " },
194 { "OSMSG_WHOIS_INFO", "Info : %s" },
195 { "OSMSG_WHOIS_NUMERIC", "Numnick : %s" },
196 { "OSMSG_WHOIS_SERVER", "Server : %s" },
197 { "OSMSG_WHOIS_NICK_AGE", "Nick Age : %s" },
198 { "OSMSG_WHOIS_ACCOUNT", "Account : %s" },
199 { "OSMSG_WHOIS_PRIVS", "IRCd Privs : %s" },
200 { "OSMSG_WHOIS_CHANNELS", "Channels : %s" },
201 { "OSMSG_WHOIS_HIDECHANS", "Channel list omitted for your sanity." },
202 { "OSMSG_UNBAN_DONE", "Ban(s) removed from channel %s." },
203 { "OSMSG_CHANNEL_VOICED", "All users on %s voiced." },
204 { "OSMSG_CHANNEL_DEVOICED", "All voiced users on %s de-voiced." },
205 { "OSMSG_BAD_MODIFIER", "Unknown bad-word modifier $b%s$b." },
206 { "OSMSG_BAD_REDUNDANT", "$b%s$b is already covered by a bad word ($b%s$b)." },
207 { "OSMSG_BAD_GROWING", "Replacing bad word $b%s$b with shorter bad word $b%s$b." },
208 { "OSMSG_BAD_NUKING", " .. and removing redundant bad word $b%s$b." },
209 { "OSMSG_ADDED_BAD", "Added $b%s$b to the bad-word list." },
210 { "OSMSG_REMOVED_BAD", "Removed $b%s$b from the bad-word list." },
211 { "OSMSG_NOT_BAD_WORD", "$b%s$b is not a bad word." },
212 { "OSMSG_ADDED_EXEMPTION", "Added $b%s$b to the bad-word exemption list." },
213 { "OSMSG_ADDED_EXEMPTIONS", "Added %d exception(s) to the bad word list." },
214 { "OSMSG_REMOVED_EXEMPTION", "Removed $b%s$b from the exemption list." },
215 { "OSMSG_NOT_EXEMPT", "$b%s$b is not on the exempt list." },
216 { "OSMSG_ALREADY_TRUSTED", "Host $b%s$b is already trusted (use $bdeltrust$b and then $baddtrust$b to adjust)." },
217 { "OSMSG_NOT_TRUSTED", "Host $b%s$b is not trusted." },
218 { "OSMSG_BAD_IP", "$b%s$b is not a valid IP address" },
219 { "OSMSG_BAD_NUMBER", "$b%s$b is not a number" },
220 { "OSMSG_ADDED_TRUSTED", "Added trusted hosts to the trusted-hosts list." },
221 { "OSMSG_UPDATED_TRUSTED", "Updated trusted host $b%s$b." },
222 { "OSMSG_REMOVED_TRUSTED", "Removed trusted hosts from the trusted-hosts list." },
223 { "OSMSG_CLONE_EXISTS", "Nick $b%s$b is already in use." },
224 { "OSMSG_NOT_A_HOSTMASK", "The hostmask must be in user@host form." },
225 { "OSMSG_BADWORD_LIST", "Bad words: %s" },
226 { "OSMSG_EXEMPTED_LIST", "Exempted channels: %s" },
227 { "OSMSG_GLINE_COUNT", "There are %d glines active on the network." },
228 { "OSMSG_SHUN_COUNT", "There are %d shuns active on the network." },
229 { "OSMSG_LINKS_SERVER", "%s%s (%u clients; %s)" },
230 { "OSMSG_MAX_CLIENTS", "Max clients: %d at %s" },
231 { "OSMSG_NETWORK_INFO", "Total users: %d (%d invisible, %d opers)" },
232 { "OSMSG_RESERVED_LIST", "List of reserved nicks:" },
233 { "OSMSG_TRUSTED_LIST", "$bTrusted Hosts$b" },
234 { "OSMSG_TRUSTED_LIST_HEADER", "IP Address Limit By Time" },
235 { "OSMSG_HOST_IS_TRUSTED", "%-15s %-5s %-10s set %s ago, expires %s" },
236 { "OSMSG_HOST_IS_TRUSTED_DESC", " Reason: %s" },
237 { "OSMSG_TRUSTED_LIST_BAR", "----------------------------------------" },
238 { "OSMSG_TRUSTED_LIST_END", "----------End of Trusted Hosts----------" },
239 { "OSMSG_HOST_NOT_TRUSTED", "%s does not have a special trust." },
240 { "OSMSG_UPTIME_STATS", "Uptime: %s (%u lines processed, CPU time %.2fu/%.2fs)" },
241 { "OSMSG_LINE_DUMPED", "Raw line sent." },
242 { "OSMSG_RAW_PARSE_ERROR", "Error parsing raw line (not dumping to uplink)." },
243 { "OSMSG_COLLIDED_NICK", "Now temporarily holding nick $b%s$b." },
244 { "OSMSG_RESERVED_NICK", "Now reserving nick $b%s$b." },
245 { "OSMSG_NICK_UNRESERVED", "Nick $b%s$b is no longer reserved." },
246 { "OSMSG_NOT_RESERVED", "Nick $b%s$b is not reserved." },
247 { "OSMSG_ILLEGAL_REASON", "This channel is illegal." },
248 { "OSMSG_ILLEGAL_KILL_REASON", "Joined an illegal modeless channel - do not repeat." },
249 { "OSMSG_ILLEGAL_CHANNEL", "$b%s$b is an ILLEGAL channel. Do not re-join it." },
250 { "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." },
251 { "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." },
252 { "OSMSG_CLONE_ADDED", "Added clone $b%s$b." },
253 { "OSMSG_CLONE_FAILED", "Unable to add user $b%s$b." },
254 { "OSMSG_NOT_A_CLONE", "Har har. $b%s$b isn't a clone." },
255 { "OSMSG_CLONE_REMOVED", "Removed clone $b%s$b." },
256 { "OSMSG_CLONE_JOINED", "$b%s$b has joined $b%s$b." },
257 { "OSMSG_CLONE_PARTED", "$b%s$b has left $b%s$b." },
258 { "OSMSG_OPS_GIVEN", "I have given ops in $b%s$b to $b%s$b." },
259 { "OSMSG_HOPS_GIVEN", "I have given halfops in $b%s$b to $b%s$b." },
260 { "OSMSG_CLONE_SAID", "$b%s$b has spoken to $b%s$b." },
261 { "OSMSG_UNKNOWN_SUBCOMMAND", "$b%s$b is not a valid subcommand of $b%s$b." },
262 { "OSMSG_UNKNOWN_OPTION", "$b%s$b has not been set." },
263 { "OSMSG_OPTION_IS", "$b%s$b is set to $b%s$b." },
264 { "OSMSG_OPTION_ROOT", "The following keys can be queried:" },
265 { "OSMSG_OPTION_LIST", "$b%s$b contains the following values:" },
266 { "OSMSG_OPTION_KEYS", "$b%s$b contains the following keys:" },
267 { "OSMSG_OPTION_LIST_EMPTY", "Empty list." },
268 { "OSMSG_SET_NOT_SET", "$b%s$b does not exist, and cannot be set." },
269 { "OSMSG_SET_BAD_TYPE", "$b%s$b is not a string, and cannot be set." },
270 { "OSMSG_SET_SUCCESS", "$b%s$b has been set to $b%s$b." },
271 { "OSMSG_SETTIME_SUCCESS", "Set time for servers named like $b%s$b." },
272 { "OSMSG_BAD_ACTION", "Unrecognized trace action $b%s$b." },
273 { "OSMSG_USER_SEARCH_RESULTS", "The following users were found:" },
274 { "OSMSG_USER_SEARCH_HEADER", "Nick User@Host (Account)" },
275 { "OSMSG_USER_SEARCH_BAR", "-------------------------------------------" },
276 { "OSMSG_USER_SEARCH_COUNT", "There were %4u matches" },
277 { "OSMSG_USER_SEARCH_COUNT_BAR", "------------ Found %4u matches -----------" },
278 { "OSMSG_CHANNEL_SEARCH_RESULTS", "The following channels were found:" },
279 { "OSMSG_GLINE_SEARCH_RESULTS", "The following glines were found:" },
280 { "OSMSG_SHUN_SEARCH_RESULTS", "The following shun were found:" },
281 { "OSMSG_LOG_SEARCH_RESULTS", "The following log entries were found:" },
282 { "OSMSG_GSYNC_RUNNING", "Synchronizing glines from %s." },
283 { "OSMSG_SSYNC_RUNNING", "Synchronizing shuns from %s." },
284 { "OSMSG_GTRACE_FORMAT", "%s (issued %s by %s, expires %s): %s" },
285 { "OSMSG_STRACE_FORMAT", "%s (issued %s by %s, expires %s): %s" },
286 { "OSMSG_GAG_APPLIED", "Gagged $b%s$b, affecting %d users." },
287 { "OSMSG_GAG_ADDED", "Gagged $b%s$b." },
288 { "OSMSG_REDUNDANT_GAG", "Gag $b%s$b is redundant." },
289 { "OSMSG_GAG_NOT_FOUND", "Could not find gag $b%s$b." },
290 { "OSMSG_NO_GAGS", "No gags have been set." },
291 { "OSMSG_UNGAG_APPLIED", "Ungagged $b%s$b, affecting %d users." },
292 { "OSMSG_UNGAG_ADDED", "Ungagged $b%s$b." },
293 { "OSMSG_TIMEQ_INFO", "%u events in timeq; next in %lu seconds." },
294 { "OSMSG_ALERT_EXISTS", "An alert named $b%s$b already exists." },
295 { "OSMSG_UNKNOWN_REACTION", "Unknown alert reaction $b%s$b." },
296 { "OSMSG_ADDED_ALERT", "Added alert named $b%s$b." },
297 { "OSMSG_REMOVED_ALERT", "Removed alert named $b%s$b." },
298 { "OSMSG_NO_SUCH_ALERT", "No alert named $b%s$b could be found." },
299 { "OSMSG_ALERTS_LIST", "$bCurrent $O alerts$b" },
300 { "OSMSG_ALERTS_BAR", "----------------------------------------------" },
301 { "OSMSG_ALERTS_HEADER", "Name Action (by Oper)" },
302 { "OSMSG_ALERTS_DESC", " Criteria: %s" },
303 { "OSMSG_ALERT_IS", "$b%-20s$b %-6s (by %s)" },
304 { "OSMSG_ALERT_END", "----------------End of Alerts-----------------" },
305 /* routing messages */
306 { "OSMSG_ROUTINGPLAN_LIST", "$bRouting Plans$b" },
307 { "OSMSG_ROUTINGPLAN_BAR", "----------------------------------------------" },
308 { "OSMSG_ROUTINGPLAN_END", "-------------End of Routing Plans-------------" },
309 { "OSMSG_ROUTINGPLAN_OPTION", "%s is set to %s" },
310 { "OSMSG_ROUTINGPLAN_ACTIVE", "Auto routing is active, using plan '%s'." },
311 { "OSMSG_ROUTING_ACTIVATION_ERROR", "There was an error activating the routing plan. Check for loops, and make sure the map includes my own uplink." },
312 { "OSMSG_ROUTINGPLAN_OPTION_NOT_FOUND", "There is no routing plan option '%s'." },
313 { "OSMSG_ROUTINGPLAN_OPTION_NOT_SET", "Option '%s' is not currently set." },
314 { "OSMSG_ROUTINGPLAN_NAME", "$b%s:$b" },
315 { "OSMSG_ROUTINGPLAN_SERVER"," %s:%d <-- %s[%d/%s] (%s)" },
316 { "OSMSG_ADDPLAN_SUCCESS", "Added new routing plan '%s'." },
317 { "OSMSG_ADDPLAN_FAILED", "Could not add new plan '%s' (does it already exist?)." },
318 { "OSMSG_INVALID_PLAN", "That routing plan name is not valid." },
319 { "OSMSG_PLAN_DELETED", "The routing plan was sucessfully deleted." },
320 { "OSMSG_PLAN_NOT_FOUND", "There is no routing plan called '%s'." },
321 { "OSMSG_PLAN_SERVER_ADDED", "Added %s to the routing plan." },
322 { "OSMSG_PLAN_SERVER_DELETED", "The server has been deleted." },
323 { "OSMSG_PLAN_SERVER_NOT_FOUND", "The server '%s' was not found in that routing plan." },
324 { "OSMSG_ROUTING_DISABLED", "Routing is now disabled." },
325 { "OSMSG_DOWNLINKS_FORMAT_A", "%s%s-$b%s$b [%s]" },
326 { "OSMSG_DOWNLINKS_FORMAT_B", "$b%s$b (me)" },
327 { "OSMSG_ROUTELIST_EMPTY", "No servers in route list" },
328 { "OSMSG_ROUTELIST_AS_PLANNED", "Routing plan: Servers as they SHOULD be linked" },
329 { "OSMSG_MAP_CENTERED", "map %s centered, Maxdepth:%d" },
330 { "OSMSG_NO_SERVERS_MISSING", "No servers are missing." },
331 { "OSMSG_CONNECTING_MISSING", "Attempted to connect %d missing servers." },
332 { "OSMSG_CONNECT", "->connect %s %d %s" },
333 { "OSMSG_SQUIT", "->squit %s" },
334 { "OSMSG_COULDNT_FIND_SERVER", "Couldnt find %s, so using %s to link %s" },
335 { "OSMSG_INSPECTING_SERVER", "Inspecting server [%s]" },
336 { "OSMSG_REROUTING_ACC_MAP", "Rerouting network according to loaded map.." },
337 { "OSMSG_REROUTING_NOTCONFIGURED", "You have not configured routing. See $/msg $O help routing$b." },
338 { "OSMSG_CONNECTING_MISSING_ONLY", "Connecting missing servers only.." },
339 { "OSMSG_NO_ROUTING_NECESSARY", "No rerouting appears necessary." },
340 { "OSMSG_TESTING_REROUTE", "Testing Reroute(): Commands not sent to socket.." },
341 { "OSMSG_INVALID_DIRECTIVE", "Reroute(): Invalid directive %s", },
342 { "OSMSG_UPLINKS_MISSING", "%d servers' uplinks were missing, and were not connected." },
343 { "OSMSG_REROUTE_COMPLETE", "Reroute complete: Moved %d, connected %d, total %d changes." },
344 /* end of routing */
345 { "OSMSG_REHASH_COMPLETE", "Completed rehash of configuration database." },
346 { "OSMSG_REHASH_FAILED", "Rehash of configuration database failed, previous configuration is intact." },
347 { "OSMSG_REOPEN_COMPLETE", "Closed and reopened all log files." },
348 { "OSMSG_RECONNECTING", "Reconnecting to my uplink." },
349 { "OSMSG_NUMERIC_COLLIDE", "Numeric %d (%s) is already in use." },
350 { "OSMSG_NAME_COLLIDE", "That name is already in use." },
351 { "OSMSG_SRV_CREATE_FAILED", "Server creation failed -- check log files." },
352 { "OSMSG_SERVER_JUPED", "Added new jupe server %s." },
353 { "OSMSG_INVALID_NUMERIC", "Invalid numeric" },
354 { "OSMSG_INVALID_SERVERNAME", "Server name must contain a '.'." },
355 { "OSMSG_SERVER_NOT_JUPE", "That server is not a juped server." },
356 { "OSMSG_SERVER_UNJUPED", "Server jupe removed." },
357 /*
358 { "OSMSG_WARN_ADDED", "Added channel activity warning for $b%s$b (%s)" },
359 { "OSMSG_WARN_EXISTS", "Channel activity warning for $b%s$b already exists." },
360 { "OSMSG_WARN_DELETED", "Removed channel activity warning for $b%s$b" },
361 { "OSMSG_WARN_NOEXIST", "Channel activity warning for $b%s$b does not exist." },
362 { "OSMSG_WARN_LISTSTART", "Channel activity warnings:" },
363 { "OSMSG_WARN_LISTENTRY", "%s (%s)" },
364 { "OSMSG_WARN_LISTEND", "End of activity warning list." },
365 */
366 { "OSMSG_UPLINK_CONNECTING", "Establishing connection with %s (%s:%d)." },
367 { "OSMSG_CURRENT_UPLINK", "$b%s$b is already the current uplink." },
368 { "OSMSG_INVALID_UPLINK", "$b%s$b is not a valid uplink name." },
369 { "OSMSG_UPLINK_DISABLED", "$b%s$b is a disabled or unavailable uplink." },
370 { "OSMSG_UPLINK_START", "Uplink $b%s$b:" },
371 { "OSMSG_UPLINK_ADDRESS", "Address: %s:%d" },
372 { "OSMSG_STUPID_GLINE", "Gline %s? Now $bthat$b would be smooth." },
373 { "OSMSG_STUPID_SHUN", "Shun %s? Now $bthat$b would be smooth." },
374 { "OSMSG_ACCOUNTMASK_AUTHED", "Invalid criteria: it is impossible to match an account mask but not be authed" },
375 { "OSMSG_CHANINFO_HEADER", "%s Information" },
376 { "OSMSG_CHANINFO_TIMESTAMP", "Created on: %a %b %d %H:%M:%S %Y (%s)" },
377 { "OSMSG_CHANINFO_MODES", "Modes: %s" },
378 { "OSMSG_CHANINFO_MODES_BADWORD", "Modes: %s; bad-word channel" },
379 { "OSMSG_CHANINFO_TOPIC", "Topic (set by %%s, %a %b %d %H:%M:%S %Y): %%s" },
380 { "OSMSG_CHANINFO_TOPIC_UNKNOWN", "Topic: (none / not gathered)" },
381 { "OSMSG_CHANINFO_BAN_COUNT", "Bans (%d):" },
382 { "OSMSG_CHANINFO_BAN", "%%s by %%s (%a %b %d %H:%M:%S %Y)" },
383 { "OSMSG_CHANINFO_EXEMPT_COUNT", "Exempts (%d):" },
384 { "OSMSG_CHANINFO_EXEMPT", "%%s by %%s (%a %b %d %H:%M:%S %Y)" },
385 { "OSMSG_CHANINFO_MANY_USERS", "%d users (\"/msg $S %s %s users\" for the list)" },
386 { "OSMSG_CHANINFO_USER_COUNT", "Users (%d):" },
387 { "OSMSG_CSEARCH_CHANNEL_INFO", "%s [%d users] %s %s" },
388 { "OSMSG_INVALID_REGEX", "Invalid regex: %s: %s (%d)" },
389 { "OSMSG_TRACK_DISABLED", "Tracking is not currently compiled into X3" },
390 { "OSMSG_MAXUSERS_RESET", "Max clients has been reset to $b%d$b" },
391
392 { "OSMSG_DEFCON_INVALID", "DefCon level %d is invalid, please choose a value between 1 and 5" },
393 { "OSMSG_DEFCON_ALLOWING_ALL", "DefCon is at level 5 and allowing everything" },
394 { "OSMSG_DEFCON_DISALLOWING", "DefCon is at level %d and enforcing:" },
395 { "OSMSG_DEFCON_NO_NEW_CHANNELS", "No Channel Registrations" },
396 { "OSMSG_DEFCON_NO_NEW_NICKS", "No Nickname/Account Registrations" },
397 { "OSMSG_DEFCON_NO_MODE_CHANGE", "No Channel Mode Changes" },
398 { "OSMSG_DEFCON_NO_NEW_CLIENTS", "No New Clients" },
399 { "OSMSG_DEFCON_FORCE_CHANMODES", "Forcing Channel Mode(s): %s" },
400 { "OSMSG_DEFCON_REDUCE_SESSION", "Forcing Reduced Session: %d" },
401 { "OSMSG_DEFCON_OPER_ONLY", "Allowing Services Communication With Opers Only" },
402 { "OSMSG_DEFCON_SILENT_OPER_ONLY", "Allowing Services Communication With Opers Only AND Silently Ignoring Regular Users" },
403 { "OSMSG_DEFCON_GLINE_NEW_CLIENTS", "Glining New Clients" },
404 { "OSMSG_DEFCON_SHUN_NEW_CLIENTS", "Shunning New Clients" },
405 { "OSMSG_DEFCON_NO_NEW_MEMOS", "Disallowing New Memos" },
406
407 { "OSMSG_PRIV_UNKNOWN", "Unknown privilege flag %s, see /msg $O HELP PRIVFLAGS for a flag list" },
408 { "OSMSG_PRIV_SET", "Privilege flag %s has been %sset" },
409
410 { NULL, NULL }
411 };
412
413 #define OPSERV_SYNTAX() svccmd_send_help_brief(user, opserv, cmd)
414
415 int DefConLevel = 5;
416 int DefCon[6];
417 int DefConTimeOut;
418 int GlobalOnDefcon = 0;
419 int GlobalOnDefconMore = 0;
420 int DefConGlineExpire;
421 int DefConModesSet = 0;
422 unsigned int DefConSessionLimit;
423 char *DefConChanModes;
424 char *DefConGlineReason;
425 char *DefConMessage;
426 char *DefConOffMessage;
427
428 extern void add_track_user(struct userNode *user);
429 typedef int (*discrim_search_func)(struct userNode *match, void *extra);
430
431 struct userNode *opserv;
432 static struct service *opserv_service;
433
434 /*static dict_t opserv_chan_warn; */ /* data is char* */
435 static dict_t opserv_reserved_nick_dict; /* data is struct userNode* */
436 static struct string_list *opserv_bad_words;
437 static dict_t opserv_exempt_channels; /* data is not used */
438 static dict_t opserv_trusted_hosts; /* data is struct trusted_host* */
439 static dict_t opserv_routing_plans; /* data is struct routingPlan */
440 static dict_t opserv_routing_plan_options; /* data is a dict_t key->val list*/
441 static dict_t opserv_waiting_connections; /* data is struct waitingConnection */
442 static dict_t opserv_hostinfo_dict; /* data is struct opserv_hostinfo* */
443 static dict_t opserv_user_alerts; /* data is struct opserv_user_alert* */
444 static dict_t opserv_nick_based_alerts; /* data is struct opserv_user_alert* */
445 static dict_t opserv_channel_alerts; /* data is struct opserv_user_alert* */
446 static struct module *opserv_module;
447 static struct log_type *OS_LOG;
448 static unsigned int new_user_flood;
449 static char *level_strings[1001];
450 struct string_list *autojoin_channels;
451 struct route *opserv_route = NULL; /* Main active routing table from activate_routing()*/
452
453 static struct {
454 struct chanNode *debug_channel;
455 struct chanNode *alert_channel;
456 struct chanNode *staff_auth_channel;
457 struct policer_params *join_policer_params;
458 struct policer new_user_policer;
459 unsigned long untrusted_max;
460 unsigned long clone_gline_duration;
461 unsigned long block_gline_duration;
462 unsigned long block_shun_duration;
463 unsigned long purge_lock_delay;
464 unsigned long join_flood_moderate;
465 unsigned long join_flood_moderate_threshold;
466 unsigned long admin_level;
467 unsigned long silent_level;
468 } opserv_conf;
469
470 struct trusted_host {
471 char *ipaddr;
472 char *issuer;
473 char *reason;
474 unsigned long limit;
475 time_t issued;
476 time_t expires;
477 };
478
479 struct gag_entry {
480 char *mask;
481 char *owner;
482 char *reason;
483 time_t expires;
484 struct gag_entry *next;
485 };
486
487 static struct gag_entry *gagList;
488
489 struct opserv_hostinfo {
490 struct userList clients;
491 struct trusted_host *trusted;
492 };
493
494 static void
495 opserv_free_hostinfo(void *data)
496 {
497 struct opserv_hostinfo *ohi = data;
498 userList_clean(&ohi->clients);
499 free(ohi);
500 }
501
502 static void
503 opserv_free_waiting_connection(void *data)
504 {
505 struct waitingConnection *wc = data;
506 free(wc->server);
507 free(wc->target);
508 free(wc);
509 }
510
511 typedef struct opservDiscrim {
512 struct chanNode *channel;
513 char *mask_nick, *mask_ident, *mask_host, *mask_info, *server, *reason, *accountmask;
514 irc_in_addr_t ip_mask;
515 unsigned long limit;
516 time_t min_ts, max_ts;
517 regex_t regex_nick, regex_ident, regex_host, regex_info;
518 unsigned int has_regex_nick : 1, has_regex_ident : 1, has_regex_host : 1, has_regex_info : 1;
519 unsigned int min_level, max_level, domain_depth, duration, min_clones, min_channels, max_channels;
520 unsigned char ip_mask_bits;
521 unsigned int match_opers : 1, option_log : 1;
522 unsigned int chan_req_modes : 2, chan_no_modes : 2;
523 int authed : 2, info_space : 2;
524 unsigned int intra_scmp : 2, intra_dcmp : 2;
525 unsigned int use_regex : 1;
526 unsigned int silent : 1;
527 } *discrim_t;
528
529 struct discrim_and_source {
530 discrim_t discrim;
531 struct userNode *source;
532 struct userNode *destination;
533 dict_t dict;
534 unsigned int disp_limit;
535 };
536
537 static discrim_t opserv_discrim_create(struct userNode *user, struct userNode *bot, unsigned int argc, char *argv[], int allow_channel);
538 static unsigned int opserv_discrim_search(discrim_t discrim, discrim_search_func dsf, void *data);
539 static int gag_helper_func(struct userNode *match, void *extra);
540 static int ungag_helper_func(struct userNode *match, void *extra);
541
542 typedef enum {
543 REACT_NOTICE,
544 REACT_KILL,
545 // REACT_SILENT,
546 REACT_GLINE,
547 REACT_TRACK,
548 REACT_SHUN
549 } opserv_alert_reaction;
550
551 struct opserv_user_alert {
552 char *owner;
553 char *text_discrim, *split_discrim;
554 discrim_t discrim;
555 opserv_alert_reaction reaction;
556 };
557
558 /* funny type to make it acceptible to dict_set_free_data, far below */
559 static void
560 opserv_free_user_alert(void *data)
561 {
562 struct opserv_user_alert *alert = data;
563 if (alert->discrim->channel)
564 UnlockChannel(alert->discrim->channel);
565 free(alert->owner);
566 free(alert->text_discrim);
567 free(alert->split_discrim);
568 if(alert->discrim->has_regex_nick)
569 regfree(&alert->discrim->regex_nick);
570 if(alert->discrim->has_regex_ident)
571 regfree(&alert->discrim->regex_ident);
572 if(alert->discrim->has_regex_host)
573 regfree(&alert->discrim->regex_host);
574 if(alert->discrim->has_regex_info)
575 regfree(&alert->discrim->regex_info);
576 free(alert->discrim->reason);
577 free(alert->discrim);
578 free(alert);
579 }
580
581 #define opserv_debug(format...) do { if (opserv_conf.debug_channel) send_channel_notice(opserv_conf.debug_channel , opserv , ## format); } while (0)
582 #define opserv_alert(format...) do { if (opserv_conf.alert_channel) send_channel_notice(opserv_conf.alert_channel , opserv , ## format); } while (0)
583
584
585 char *defconReverseModes(const char *modes)
586 {
587 char *newmodes = NULL;
588 unsigned int i = 0;
589 if (!modes) {
590 return NULL;
591 }
592 if (!(newmodes = malloc(sizeof(char) * strlen(modes) + 1))) {
593 return NULL;
594 }
595 for (i = 0; i < strlen(modes); i++) {
596 if (modes[i] == '+')
597 newmodes[i] = '-';
598 else if (modes[i] == '-')
599 newmodes[i] = '+';
600 else
601 newmodes[i] = modes[i];
602 }
603 newmodes[i] = '\0';
604 return newmodes;
605 }
606
607 int checkDefCon(int level)
608 {
609 return DefCon[DefConLevel] & level;
610 }
611
612 void showDefConSettings(struct userNode *user, struct svccmd *cmd)
613 {
614 if (DefConLevel == 5) {
615 reply("OSMSG_DEFCON_ALLOWING_ALL");
616 return;
617 } else
618 reply("OSMSG_DEFCON_DISALLOWING", DefConLevel);
619
620 if (checkDefCon(DEFCON_NO_NEW_CHANNELS))
621 reply("OSMSG_DEFCON_NO_NEW_CHANNELS");
622
623 if (checkDefCon(DEFCON_NO_NEW_NICKS))
624 reply("OSMSG_DEFCON_NO_NEW_NICKS");
625
626 if (checkDefCon(DEFCON_NO_MODE_CHANGE))
627 reply("OSMSG_DEFCON_NO_MODE_CHANGE");
628
629 if (checkDefCon(DEFCON_FORCE_CHAN_MODES) && (DefConChanModes))
630 reply("OSMSG_DEFCON_FORCE_CHANMODES", DefConChanModes);
631
632 if (checkDefCon(DEFCON_REDUCE_SESSION))
633 reply("OSMSG_DEFCON_REDUCE_SESSION", DefConSessionLimit);
634
635 if (checkDefCon(DEFCON_NO_NEW_CLIENTS))
636 reply("OSMSG_DEFCON_NO_NEW_CLIENTS");
637
638 if (checkDefCon(DEFCON_OPER_ONLY))
639 reply("OSMSG_DEFCON_OPER_ONLY");
640
641 if (checkDefCon(DEFCON_SILENT_OPER_ONLY))
642 reply("OSMSG_DEFCON_SILENT_OPER_ONLY");
643
644 if (checkDefCon(DEFCON_GLINE_NEW_CLIENTS))
645 reply("OSMSG_DEFCON_GLINE_NEW_CLIENTS");
646
647 if (checkDefCon(DEFCON_SHUN_NEW_CLIENTS))
648 reply("OSMSG_DEFCON_SHUN_NEW_CLIENTS");
649
650 if (checkDefCon(DEFCON_NO_NEW_MEMOS))
651 reply("OSMSG_DEFCON_NO_NEW_MEMOS");
652
653 return;
654 }
655
656 void do_mass_mode(char *modes)
657 {
658 dict_iterator_t it;
659
660 if (!modes)
661 return;
662
663 for (it = dict_first(channels); it; it = iter_next(it)) {
664 struct chanNode *chan = iter_data(it);
665
666 irc_mode(opserv, chan, modes);
667 }
668
669 }
670
671 void DefConProcess(struct userNode *user)
672 {
673 char *newmodes;
674
675 if (GlobalOnDefcon)
676 global_message_args(MESSAGE_RECIPIENT_LUSERS, "DEFCON_NETWORK_CHANGED", DefConLevel);
677
678 if (GlobalOnDefconMore && GlobalOnDefcon)
679 global_message(MESSAGE_RECIPIENT_LUSERS, DefConMessage);
680
681 if ((DefConLevel == 5) && !GlobalOnDefconMore && !GlobalOnDefcon)
682 global_message(MESSAGE_RECIPIENT_LUSERS, DefConOffMessage);
683
684 if (user)
685 global_message_args(MESSAGE_RECIPIENT_OPERS, "DEFCON_OPER_LEVEL_CHANGE", user->nick, DefConLevel);
686 else
687 global_message_args(MESSAGE_RECIPIENT_OPERS, "DEFCON_TIMEOUT_LEVEL_CHANGE", DefConLevel);
688
689 if (checkDefCon(DEFCON_FORCE_CHAN_MODES)) {
690 if (DefConChanModes && !DefConModesSet) {
691 if (DefConChanModes[0] == '+' || DefConChanModes[0] == '-') {
692 do_mass_mode(DefConChanModes);
693 DefConModesSet = 1;
694 }
695 }
696 } else {
697 if (DefConChanModes && (DefConModesSet != 0)) {
698 if (DefConChanModes[0] == '+' || DefConChanModes[0] == '-') {
699 if ((newmodes = defconReverseModes(DefConChanModes))) {
700 do_mass_mode(newmodes);
701 free(newmodes);
702 }
703 DefConModesSet = 0;
704 }
705 }
706 }
707
708 return;
709 }
710
711 void
712 defcon_timeout(UNUSED_ARG(void *data))
713 {
714 DefConLevel = 5;
715 DefConProcess(NULL);
716 }
717
718 static MODCMD_FUNC(cmd_defcon)
719 {
720 if ((argc < 2) || (atoi(argv[1]) == DefConLevel)) {
721 showDefConSettings(user, cmd);
722 return 1;
723 }
724
725 if ((atoi(argv[1]) < 1) || (atoi(argv[1]) > 5)) {
726 reply("OSMSG_DEFCON_INVALID", atoi(argv[1]));
727 return 0;
728 }
729
730 DefConLevel = atoi(argv[1]);
731 showDefConSettings(user, cmd);
732
733 if (DefConTimeOut > 0) {
734 timeq_del(0, defcon_timeout, NULL, TIMEQ_IGNORE_DATA & TIMEQ_IGNORE_WHEN);
735 timeq_add(now + DefConTimeOut, defcon_timeout, NULL);
736 }
737
738 DefConProcess(user);
739 return 1;
740 }
741
742 /* TODO
743 static MODCMD_FUNC(cmd_privallow)
744 {
745 //privallow servername/username +/-flag (global is set in conf)
746 }
747
748 static MODCMD_FUNC(cmd_privdissallow)
749 {
750 //privdisallow servername/username +/-flag (global is set in conf)
751 }
752
753 static MODCMD_FUNC(cmd_privlist)
754 {
755 //privlist servername/user (global with none)
756 }
757 */
758
759 static MODCMD_FUNC(cmd_privset)
760 {
761 struct userNode *target;
762 char *flag;
763 int add = PRIV_ADD;
764
765 flag = argv[2];
766 if (*flag == '-') {
767 add = PRIV_DEL;
768 flag++;
769 } else if (*flag == '+') {
770 add = PRIV_ADD;
771 flag++;
772 }
773
774 target = GetUserH(argv[1]);
775 if (!target) {
776 reply("MSG_NICK_UNKNOWN", argv[1]);
777 return 0;
778 }
779
780 if (check_priv(flag)) {
781 irc_privs(target, flag, add);
782 reply("OSMSG_PRIV_SET", argv[2], (add == 1) ? "" : "un");
783 } else {
784 reply("OSMSG_PRIV_UNKNOWN", argv[2]);
785 return 0;
786 }
787
788 return 1;
789 }
790
791 /* A lot of these commands are very similar to what ChanServ can do,
792 * but OpServ can do them even on channels that aren't registered.
793 */
794
795 static MODCMD_FUNC(cmd_access)
796 {
797 struct handle_info *hi;
798 const char *target;
799 unsigned int res;
800
801 target = (argc > 1) ? (const char*)argv[1] : user->nick;
802 if (!irccasecmp(target, "*")) {
803 nickserv_show_oper_accounts(user, cmd);
804 return 1;
805 }
806 if (!(hi = modcmd_get_handle_info(user, target)))
807 return 0;
808 res = (argc > 2) ? oper_try_set_access(user, opserv_service->bot, hi, strtoul(argv[2], NULL, 0)) : 0;
809 reply("OSMSG_USER_ACCESS_IS", target, hi->handle, hi->opserv_level);
810 return res;
811 }
812
813 static MODCMD_FUNC(cmd_ban)
814 {
815 struct mod_chanmode change;
816 struct userNode *victim;
817
818 mod_chanmode_init(&change);
819 change.argc = 1;
820 change.args[0].mode = MODE_BAN;
821 if (is_ircmask(argv[1]))
822 change.args[0].u.hostmask = strdup(argv[1]);
823 else if ((victim = GetUserH(argv[1])))
824 change.args[0].u.hostmask = generate_hostmask(victim, 0);
825 else {
826 reply("OSMSG_INVALID_IRCMASK", argv[1]);
827 return 0;
828 }
829 modcmd_chanmode_announce(&change);
830 reply("OSMSG_ADDED_BAN", change.args[0].u.hostmask, channel->name);
831 free((char*)change.args[0].u.hostmask);
832 return 1;
833 }
834
835 static MODCMD_FUNC(cmd_chaninfo)
836 {
837 char buffer[MAXLEN];
838 const char *fmt;
839 struct banNode *ban;
840 struct exemptNode *exempt;
841 struct modeNode *moden;
842 unsigned int n;
843
844 reply("OSMSG_CHANINFO_HEADER", channel->name);
845 fmt = user_find_message(user, "OSMSG_CHANINFO_TIMESTAMP");
846 strftime(buffer, sizeof(buffer), fmt, gmtime(&channel->timestamp));
847 send_message_type(4, user, cmd->parent->bot, "%s", buffer);
848 irc_make_chanmode(channel, buffer);
849 if (channel->bad_channel)
850 reply("OSMSG_CHANINFO_MODES_BADWORD", buffer);
851 else
852 reply("OSMSG_CHANINFO_MODES", buffer);
853 if (channel->topic_time) {
854 fmt = user_find_message(user, "OSMSG_CHANINFO_TOPIC");
855 strftime(buffer, sizeof(buffer), fmt, gmtime(&channel->topic_time));
856 send_message_type(4, user, cmd->parent->bot, buffer, channel->topic_nick, channel->topic);
857 } else {
858 irc_fetchtopic(cmd->parent->bot, channel->name);
859 reply("OSMSG_CHANINFO_TOPIC_UNKNOWN");
860 }
861 if (channel->banlist.used) {
862 reply("OSMSG_CHANINFO_BAN_COUNT", channel->banlist.used);
863 fmt = user_find_message(user, "OSMSG_CHANINFO_BAN");
864 for (n = 0; n < channel->banlist.used; n++) {
865 ban = channel->banlist.list[n];
866 strftime(buffer, sizeof(buffer), fmt, localtime(&ban->set));
867 send_message_type(4, user, cmd->parent->bot, buffer, ban->ban, ban->who);
868 }
869 }
870 if (channel->exemptlist.used) {
871 reply("OSMSG_CHANINFO_EXEMPT_COUNT", channel->exemptlist.used);
872 fmt = user_find_message(user, "OSMSG_CHANINFO_EXEMPT");
873 for (n = 0; n < channel->exemptlist.used; n++) {
874 exempt = channel->exemptlist.list[n];
875 strftime(buffer, sizeof(buffer), fmt, localtime(&exempt->set));
876 send_message_type(4, user, cmd->parent->bot, buffer, exempt->exempt, exempt->who);
877 }
878 }
879 if ((argc < 2) && (channel->members.used >= 50)) {
880 /* early out unless they ask for users */
881 reply("OSMSG_CHANINFO_MANY_USERS", channel->members.used, argv[0], channel->name);
882 return 1;
883 }
884 reply("OSMSG_CHANINFO_USER_COUNT", channel->members.used);
885 for (n=0; n<channel->members.used; n++) {
886 moden = channel->members.list[n];
887 if (moden->modes & MODE_CHANOP) {
888 if (moden->oplevel >= 0)
889 send_message_type(4, user, cmd->parent->bot, " @%s:%d (%s@%s)", moden->user->nick, moden->oplevel, moden->user->ident, moden->user->hostname);
890 else
891 send_message_type(4, user, cmd->parent->bot, " @%s (%s@%s)", moden->user->nick, moden->user->ident, moden->user->hostname);
892 }
893 }
894 for (n=0; n<channel->members.used; n++) {
895 moden = channel->members.list[n];
896 if ((moden->modes & (MODE_CHANOP|MODE_HALFOP|MODE_VOICE)) == MODE_HALFOP)
897 send_message_type(4, user, cmd->parent->bot, " %s%s (%s@%s)", "%", moden->user->nick, moden->user->ident, moden->user->hostname);
898 }
899 for (n=0; n<channel->members.used; n++) {
900 moden = channel->members.list[n];
901 if ((moden->modes & (MODE_CHANOP|MODE_HALFOP|MODE_VOICE)) == MODE_VOICE)
902 send_message_type(4, user, cmd->parent->bot, " +%s (%s@%s)", moden->user->nick, moden->user->ident, moden->user->hostname);
903 }
904 for (n=0; n<channel->members.used; n++) {
905 moden = channel->members.list[n];
906 if ((moden->modes & (MODE_CHANOP|MODE_HALFOP|MODE_VOICE)) == 0)
907 send_message_type(4, user, cmd->parent->bot, " %s (%s@%s)", moden->user->nick, moden->user->ident, moden->user->hostname);
908 }
909 return 1;
910 }
911
912 /* This command has been replaced by 'alert notice channel #foo' */
913 /*
914 static MODCMD_FUNC(cmd_warn)
915 {
916 char *reason, *message;
917
918 if (!IsChannelName(argv[1])) {
919 reply("OSMSG_NEED_CHANNEL", argv[0]);
920 return 0;
921 }
922 reason = dict_find(opserv_chan_warn, argv[1], NULL);
923 if (reason) {
924 reply("OSMSG_WARN_EXISTS", argv[1]);
925 return 0;
926 }
927 if (argv[2])
928 reason = strdup(unsplit_string(argv+2, argc-2, NULL));
929 else
930 reason = strdup("No reason");
931 dict_insert(opserv_chan_warn, strdup(argv[1]), reason);
932 reply("OSMSG_WARN_ADDED", argv[1], reason);
933 if (dict_find(channels, argv[1], NULL)) {
934 global_message_args(MESSAGE_RECIPIENT_OPERS, "OSMSG_CHANNEL_ACTIVITY_WARN" argv[1], reason);
935 }
936 return 1;
937 }
938
939 static MODCMD_FUNC(cmd_unwarn)
940 {
941 if ((argc < 2) || !IsChannelName(argv[1])) {
942 reply("OSMSG_NEED_CHANNEL", argv[0]);
943 return 0;
944 }
945 if (!dict_remove(opserv_chan_warn, argv[1])) {
946 reply("OSMSG_WARN_NOEXIST", argv[1]);
947 return 0;
948 }
949 reply("OSMSG_WARN_DELETED", argv[1]);
950 return 1;
951 }
952 */
953
954 static MODCMD_FUNC(cmd_clearbans)
955 {
956 struct mod_chanmode *change;
957 unsigned int ii;
958
959 change = mod_chanmode_alloc(channel->banlist.used);
960 for (ii=0; ii<channel->banlist.used; ii++) {
961 change->args[ii].mode = MODE_REMOVE | MODE_BAN;
962 change->args[ii].u.hostmask = strdup(channel->banlist.list[ii]->ban);
963 }
964 modcmd_chanmode_announce(change);
965 for (ii=0; ii<change->argc; ++ii)
966 free((char*)change->args[ii].u.hostmask);
967 mod_chanmode_free(change);
968 reply("OSMSG_CLEARBANS_DONE", channel->name);
969 return 1;
970 }
971
972 static MODCMD_FUNC(cmd_clearmodes)
973 {
974 struct mod_chanmode change;
975
976 if (!channel->modes) {
977 reply("OSMSG_NO_CHANNEL_MODES", channel->name);
978 return 0;
979 }
980 mod_chanmode_init(&change);
981 change.modes_clear = channel->modes;
982 modcmd_chanmode_announce(&change);
983 reply("OSMSG_CLEARMODES_DONE", channel->name);
984 return 1;
985 }
986
987 static MODCMD_FUNC(cmd_deop)
988 {
989 struct mod_chanmode *change;
990 unsigned int arg, count;
991
992 change = mod_chanmode_alloc(argc-1);
993 for (arg = 1, count = 0; arg < argc; ++arg) {
994 struct userNode *victim = GetUserH(argv[arg]);
995 struct modeNode *mn;
996 if (!victim || IsService(victim)
997 || !(mn = GetUserMode(channel, victim))
998 || !(mn->modes & MODE_CHANOP))
999 continue;
1000 change->args[count].mode = MODE_REMOVE | MODE_CHANOP;
1001 change->args[count++].u.member = mn;
1002 }
1003 if (count) {
1004 change->argc = count;
1005 modcmd_chanmode_announce(change);
1006 }
1007 mod_chanmode_free(change);
1008 reply("OSMSG_DEOP_DONE");
1009 return 1;
1010 }
1011
1012 static MODCMD_FUNC(cmd_dehop)
1013 {
1014 struct mod_chanmode *change;
1015 unsigned int arg, count;
1016
1017 change = mod_chanmode_alloc(argc-1);
1018 for (arg = 1, count = 0; arg < argc; ++arg) {
1019 struct userNode *victim = GetUserH(argv[arg]);
1020 struct modeNode *mn;
1021 if (!victim || IsService(victim)
1022 || !(mn = GetUserMode(channel, victim))
1023 || !(mn->modes & MODE_HALFOP))
1024 continue;
1025 change->args[count].mode = MODE_REMOVE | MODE_HALFOP;
1026 change->args[count++].u.member = mn;
1027 }
1028 if (count) {
1029 change->argc = count;
1030 modcmd_chanmode_announce(change);
1031 }
1032 mod_chanmode_free(change);
1033 reply("OSMSG_DEHOP_DONE");
1034 return 1;
1035 }
1036
1037 static MODCMD_FUNC(cmd_deopall)
1038 {
1039 struct mod_chanmode *change;
1040 unsigned int ii, count;
1041
1042 change = mod_chanmode_alloc(channel->members.used);
1043 for (ii = count = 0; ii < channel->members.used; ++ii) {
1044 struct modeNode *mn = channel->members.list[ii];
1045 if (IsService(mn->user) || !(mn->modes & MODE_CHANOP))
1046 continue;
1047 change->args[count].mode = MODE_REMOVE | MODE_CHANOP;
1048 change->args[count++].u.member = mn;
1049 }
1050 if (count) {
1051 change->argc = count;
1052 modcmd_chanmode_announce(change);
1053 }
1054 mod_chanmode_free(change);
1055 reply("OSMSG_DEOPALL_DONE", channel->name);
1056 return 1;
1057 }
1058
1059 static MODCMD_FUNC(cmd_dehopall)
1060 {
1061 struct mod_chanmode *change;
1062 unsigned int ii, count;
1063
1064 change = mod_chanmode_alloc(channel->members.used);
1065 for (ii = count = 0; ii < channel->members.used; ++ii) {
1066 struct modeNode *mn = channel->members.list[ii];
1067 if (IsService(mn->user) || !(mn->modes & MODE_HALFOP))
1068 continue;
1069 change->args[count].mode = MODE_REMOVE | MODE_HALFOP;
1070 change->args[count++].u.member = mn;
1071 }
1072 if (count) {
1073 change->argc = count;
1074 modcmd_chanmode_announce(change);
1075 }
1076 mod_chanmode_free(change);
1077 reply("OSMSG_DEHOPALL_DONE", channel->name);
1078 return 1;
1079 }
1080
1081 static MODCMD_FUNC(cmd_resetmax)
1082 {
1083 max_clients = dict_size(clients);
1084 max_clients_time = now;
1085 reply("OSMSG_MAXUSERS_RESET", max_clients);
1086 return 1;
1087 }
1088
1089 static MODCMD_FUNC(cmd_rehash)
1090 {
1091 extern char *services_config;
1092
1093 if (conf_read(services_config))
1094 reply("OSMSG_REHASH_COMPLETE");
1095 else
1096 reply("OSMSG_REHASH_FAILED");
1097 return 1;
1098 }
1099
1100 static MODCMD_FUNC(cmd_reopen)
1101 {
1102 log_reopen();
1103 reply("OSMSG_REOPEN_COMPLETE");
1104 return 1;
1105 }
1106
1107 static MODCMD_FUNC(cmd_reconnect)
1108 {
1109 reply("OSMSG_RECONNECTING");
1110 irc_squit(self, "Reconnecting.", NULL);
1111 return 1;
1112 }
1113
1114 static MODCMD_FUNC(cmd_jupe)
1115 {
1116 extern int force_n2k;
1117 struct server *newsrv;
1118 unsigned int num;
1119 char numeric[COMBO_NUMERIC_LEN+1], srvdesc[SERVERDESCRIPTMAX+1];
1120
1121 num = atoi(argv[2]);
1122 if(num == 0) {
1123 reply("OSMSG_INVALID_NUMERIC");
1124 return 0;
1125 }
1126 if ((num < 64) && !force_n2k) {
1127 inttobase64(numeric, num, 1);
1128 inttobase64(numeric+1, 64*64-1, 2);
1129 } else {
1130 inttobase64(numeric, num, 2);
1131 inttobase64(numeric+2, 64*64*64-1, 3);
1132 }
1133 #ifdef WITH_PROTOCOL_P10
1134 if (GetServerN(numeric)) {
1135 reply("OSMSG_NUMERIC_COLLIDE", num, numeric);
1136 return 0;
1137 }
1138 #endif
1139 if (GetServerH(argv[1])) {
1140 reply("OSMSG_NAME_COLLIDE");
1141 return 0;
1142 }
1143 snprintf(srvdesc, sizeof(srvdesc), "JUPE %s", unsplit_string(argv+3, argc-3, NULL));
1144 if(!strchr(argv[1], '.')) {
1145 reply("OSMSG_INVALID_SERVERNAME");
1146 return 0;
1147 }
1148 newsrv = AddServer(self, argv[1], 1, now, now, numeric, srvdesc);
1149 if (!newsrv) {
1150 reply("OSMSG_SRV_CREATE_FAILED");
1151 return 0;
1152 }
1153 irc_server(newsrv);
1154 reply("OSMSG_SERVER_JUPED", argv[1]);
1155 return 1;
1156 }
1157
1158 static MODCMD_FUNC(cmd_unjupe)
1159 {
1160 struct server *srv;
1161 char *reason;
1162
1163 srv = GetServerH(argv[1]);
1164 if (!srv) {
1165 reply("MSG_SERVER_UNKNOWN", argv[1]);
1166 return 0;
1167 }
1168 if (strncmp(srv->description, "JUPE", 4)) {
1169 reply("OSMSG_SERVER_NOT_JUPE");
1170 return 0;
1171 }
1172 reason = (argc > 2) ? unsplit_string(argv+2, argc-2, NULL) : "Unjuping server";
1173 DelServer(srv, 1, reason);
1174 reply("OSMSG_SERVER_UNJUPED");
1175 return 1;
1176 }
1177
1178 static MODCMD_FUNC(cmd_jump)
1179 {
1180 extern struct cManagerNode cManager;
1181 void uplink_select(char *name);
1182 struct uplinkNode *uplink_find(char *name);
1183 struct uplinkNode *uplink;
1184 char *target;
1185
1186 target = unsplit_string(argv+1, argc-1, NULL);
1187
1188 if (!strcmp(cManager.uplink->name, target)) {
1189 reply("OSMSG_CURRENT_UPLINK", cManager.uplink->name);
1190 return 0;
1191 }
1192
1193 uplink = uplink_find(target);
1194 if (!uplink) {
1195 reply("OSMSG_INVALID_UPLINK", target);
1196 return 0;
1197 }
1198 if (uplink->flags & UPLINK_UNAVAILABLE) {
1199 reply("OSMSG_UPLINK_DISABLED", uplink->name);
1200 return 0;
1201 }
1202
1203 reply("OSMSG_UPLINK_CONNECTING", uplink->name, uplink->host, uplink->port);
1204 uplink_select(target);
1205 irc_squit(self, "Reconnecting.", NULL);
1206 return 1;
1207 }
1208
1209 static MODCMD_FUNC(cmd_die)
1210 {
1211 char *reason, *text;
1212
1213 text = unsplit_string(argv+1, argc-1, NULL);
1214 reason = alloca(strlen(text) + strlen(user->nick) + 20);
1215 sprintf(reason, "Disconnected by %s [%s]", user->nick, text);
1216 irc_squit(self, reason, text);
1217 quit_services = 1;
1218 return 1;
1219 }
1220
1221 static MODCMD_FUNC(cmd_restart)
1222 {
1223 extern int services_argc;
1224 extern char **services_argv;
1225 char **restart_argv, *reason, *text;
1226
1227 text = unsplit_string(argv+1, argc-1, NULL);
1228 reason = alloca(strlen(text) + strlen(user->nick) + 17);
1229 sprintf(reason, "Restarted by %s [%s]", user->nick, text);
1230 irc_squit(self, reason, text);
1231
1232 /* Append a NULL to the end of argv[]. */
1233 restart_argv = (char **)alloca((services_argc + 1) * sizeof(char *));
1234 memcpy(restart_argv, services_argv, services_argc * sizeof(char *));
1235 restart_argv[services_argc] = NULL;
1236
1237 call_exit_funcs();
1238
1239 /* Don't blink. */
1240 execv(services_argv[0], restart_argv);
1241
1242 /* If we're still here, that means something went wrong. Reconnect. */
1243 return 1;
1244 }
1245
1246 static struct gline *
1247 opserv_block(struct userNode *target, char *src_handle, char *reason, unsigned long duration, int silent)
1248 {
1249 char mask[IRC_NTOP_MAX_SIZE+3] = { '*', '@', '\0' };
1250 irc_ntop(mask + 2, sizeof(mask) - 2, &target->ip);
1251 if (!reason)
1252 snprintf(reason = alloca(MAXLEN), MAXLEN,
1253 "G-line requested by %s.", src_handle);
1254 if (!duration)
1255 duration = opserv_conf.block_gline_duration;
1256 return gline_add(src_handle, mask, duration, reason, now, 1, silent ? 1 : 0);
1257 }
1258
1259 static MODCMD_FUNC(cmd_block)
1260 {
1261 struct userNode *target;
1262 struct gline *gline;
1263 char *reason;
1264
1265 target = GetUserH(argv[1]);
1266 if (!target) {
1267 reply("MSG_NICK_UNKNOWN", argv[1]);
1268 return 0;
1269 }
1270 if (IsService(target)) {
1271 reply("MSG_SERVICE_IMMUNE", target->nick);
1272 return 0;
1273 }
1274 reason = (argc > 2) ? unsplit_string(argv+2, argc-2, NULL) : NULL;
1275 gline = opserv_block(target, user->handle_info->handle, reason, 0, 0);
1276 reply("OSMSG_GLINE_ISSUED", gline->target);
1277 return 1;
1278 }
1279
1280 static MODCMD_FUNC(cmd_gline)
1281 {
1282 unsigned long duration;
1283 char *reason;
1284 struct gline *gline;
1285
1286 reason = unsplit_string(argv+3, argc-3, NULL);
1287 if (!is_gline(argv[1]) && !IsChannelName(argv[1]) && (argv[1][0] != '&')) {
1288 reply("MSG_INVALID_GLINE", argv[1]);
1289 return 0;
1290 }
1291 if (!argv[1][strspn(argv[1], "#&*?@.")] && (strlen(argv[1]) < 10)) {
1292 reply("OSMSG_STUPID_GLINE", argv[1]);
1293 return 0;
1294 }
1295 duration = ParseInterval(argv[2]);
1296 if (!duration) {
1297 reply("MSG_INVALID_DURATION", argv[2]);
1298 return 0;
1299 }
1300 gline = gline_add(user->handle_info->handle, argv[1], duration, reason, now, 1, 0);
1301 reply("OSMSG_GLINE_ISSUED", gline->target);
1302 return 1;
1303 }
1304
1305 static MODCMD_FUNC(cmd_ungline)
1306 {
1307 if (gline_remove(argv[1], 1))
1308 reply("OSMSG_GLINE_REMOVED", argv[1]);
1309 else
1310 reply("OSMSG_GLINE_FORCE_REMOVED", argv[1]);
1311 return 1;
1312 }
1313
1314 static MODCMD_FUNC(cmd_refreshg)
1315 {
1316 if (argc > 1) {
1317 unsigned int count;
1318 dict_iterator_t it;
1319 struct server *srv;
1320
1321 for (it=dict_first(servers), count=0; it; it=iter_next(it)) {
1322 srv = iter_data(it);
1323 if ((srv == self) || !match_ircglob(srv->name, argv[1]))
1324 continue;
1325 gline_refresh_server(srv);
1326 reply("OSMSG_GLINES_ONE_REFRESHED", srv->name);
1327 count++;
1328 }
1329 if (!count) {
1330 reply("MSG_SERVER_UNKNOWN", argv[1]);
1331 return 0;
1332 }
1333 } else {
1334 gline_refresh_all();
1335 reply("OSMSG_GLINES_REFRESHED");
1336 }
1337 return 1;
1338 }
1339
1340 static struct shun *
1341 opserv_shun(struct userNode *target, char *src_handle, char *reason, unsigned long duration)
1342 {
1343 char *mask;
1344 mask = alloca(MAXLEN);
1345 snprintf(mask, MAXLEN, "*@%s", target->hostname);
1346 if (!reason) {
1347 reason = alloca(MAXLEN);
1348 snprintf(reason, MAXLEN, "Shun requested by %s.", src_handle);
1349 }
1350 if (!duration) duration = opserv_conf.block_shun_duration;
1351 return shun_add(src_handle, mask, duration, reason, now, 1);
1352 }
1353
1354 static MODCMD_FUNC(cmd_sblock)
1355 {
1356 struct userNode *target;
1357 struct shun *shun;
1358 char *reason;
1359
1360 target = GetUserH(argv[1]);
1361 if (!target) {
1362 reply("MSG_NICK_UNKNOWN", argv[1]);
1363 return 0;
1364 }
1365 if (IsService(target)) {
1366 reply("MSG_SERVICE_IMMUNE", target->nick);
1367 return 0;
1368 }
1369 reason = (argc > 2) ? unsplit_string(argv+2, argc-2, NULL) : NULL;
1370 shun = opserv_shun(target, user->handle_info->handle, reason, 0);
1371 reply("OSMSG_SHUN_ISSUED", shun->target);
1372 return 1;
1373 }
1374
1375 static MODCMD_FUNC(cmd_shun)
1376 {
1377 unsigned long duration;
1378 char *reason;
1379 struct shun *shun;
1380
1381 reason = unsplit_string(argv+3, argc-3, NULL);
1382 if (!is_shun(argv[1]) && !IsChannelName(argv[1]) && (argv[1][0] != '&')) {
1383 reply("MSG_INVALID_SHUN", argv[1]);
1384 return 0;
1385 }
1386 if (!argv[1][strspn(argv[1], "#&*?@.")] && (strlen(argv[1]) < 10)) {
1387 reply("OSMSG_STUPID_SHUN", argv[1]);
1388 return 0;
1389 }
1390 duration = ParseInterval(argv[2]);
1391 if (!duration) {
1392 reply("MSG_INVALID_DURATION", argv[2]);
1393 return 0;
1394 }
1395 shun = shun_add(user->handle_info->handle, argv[1], duration, reason, now, 1);
1396 reply("OSMSG_SHUN_ISSUED", shun->target);
1397 return 1;
1398 }
1399
1400 static MODCMD_FUNC(cmd_unshun)
1401 {
1402 if (shun_remove(argv[1], 1))
1403 reply("OSMSG_SHUN_REMOVED", argv[1]);
1404 else
1405 reply("OSMSG_SHUN_FORCE_REMOVED", argv[1]);
1406 return 1;
1407 }
1408
1409 static MODCMD_FUNC(cmd_refreshs)
1410 {
1411 if (argc > 1) {
1412 unsigned int count;
1413 dict_iterator_t it;
1414 struct server *srv;
1415
1416 for (it=dict_first(servers), count=0; it; it=iter_next(it)) {
1417 srv = iter_data(it);
1418 if ((srv == self) || !match_ircglob(srv->name, argv[1]))
1419 continue;
1420 shun_refresh_server(srv);
1421 reply("OSMSG_SHUNS_ONE_REFRESHED", srv->name);
1422 count++;
1423 }
1424 if (!count) {
1425 reply("MSG_SERVER_UNKNOWN", argv[1]);
1426 return 0;
1427 }
1428 } else {
1429 shun_refresh_all();
1430 reply("OSMSG_SHUNS_REFRESHED");
1431 }
1432 return 1;
1433 }
1434
1435 static void
1436 opserv_ison(struct userNode *tell, struct userNode *target, const char *message)
1437 {
1438 struct modeNode *mn;
1439 unsigned int count, here_len, n, maxlen;
1440 char buff[MAXLEN];
1441
1442 maxlen = tell->handle_info ? tell->handle_info->screen_width : 0;
1443 if (!maxlen)
1444 maxlen = MAX_LINE_SIZE;
1445 for (n=count=0; n<target->channels.used; n++) {
1446 mn = target->channels.list[n];
1447 here_len = strlen(mn->channel->name);
1448 if ((count + here_len + 4) > maxlen) {
1449 buff[count] = 0;
1450 send_message(tell, opserv, message, buff);
1451 count = 0;
1452 }
1453 if (mn->modes & MODE_CHANOP)
1454 buff[count++] = '@';
1455 if (mn->modes & MODE_HALFOP)
1456 buff[count++] = '%';
1457 if (mn->modes & MODE_VOICE)
1458 buff[count++] = '+';
1459 memcpy(buff+count, mn->channel->name, here_len);
1460 count += here_len;
1461 buff[count++] = ' ';
1462 }
1463 if (count) {
1464 buff[count] = 0;
1465 send_message(tell, opserv, message, buff);
1466 }
1467 }
1468
1469 static MODCMD_FUNC(cmd_inviteme)
1470 {
1471 struct userNode *target;
1472
1473 if (argc < 2) {
1474 target = user;
1475 } else {
1476 target = GetUserH(argv[1]);
1477 if (!target) {
1478 reply("MSG_NICK_UNKNOWN", argv[1]);
1479 return 0;
1480 }
1481 }
1482 if (opserv_conf.debug_channel == NULL) {
1483 reply("OSMSG_NO_DEBUG_CHANNEL");
1484 return 0;
1485 }
1486 if (GetUserMode(opserv_conf.debug_channel, user)) {
1487 reply("OSMSG_ALREADY_THERE", opserv_conf.debug_channel->name);
1488 return 0;
1489 }
1490 irc_invite(cmd->parent->bot, target, opserv_conf.debug_channel);
1491 if (target != user)
1492 reply("OSMSG_INVITE_DONE", target->nick, opserv_conf.debug_channel->name);
1493 return 1;
1494 }
1495
1496 static MODCMD_FUNC(cmd_invite)
1497 {
1498 if (GetUserMode(channel, user)) {
1499 reply("OSMSG_ALREADY_THERE", channel->name);
1500 return 0;
1501 }
1502 irc_invite(cmd->parent->bot, user, channel);
1503 return 1;
1504 }
1505
1506 static MODCMD_FUNC(cmd_join)
1507 {
1508 struct userNode *bot = cmd->parent->bot;
1509
1510 if (!IsChannelName(argv[1])) {
1511 reply("MSG_NOT_CHANNEL_NAME");
1512 return 0;
1513 } else if (!(channel = GetChannel(argv[1]))) {
1514 channel = AddChannel(argv[1], now, NULL, NULL, NULL);
1515 AddChannelUser(bot, channel)->modes |= MODE_CHANOP;
1516 } else if (GetUserMode(channel, bot)) {
1517 reply("OSMSG_ALREADY_JOINED", channel->name);
1518 return 0;
1519 } else {
1520 struct mod_chanmode change;
1521 mod_chanmode_init(&change);
1522 change.argc = 1;
1523 change.args[0].mode = MODE_CHANOP;
1524 change.args[0].u.member = AddChannelUser(bot, channel);
1525 modcmd_chanmode_announce(&change);
1526 }
1527 irc_fetchtopic(bot, channel->name);
1528 reply("OSMSG_JOIN_DONE", channel->name);
1529 return 1;
1530 }
1531
1532 static MODCMD_FUNC(cmd_kick)
1533 {
1534 struct userNode *target;
1535 char *reason;
1536
1537 if (argc < 3) {
1538 reason = alloca(strlen(OSMSG_KICK_REQUESTED)+strlen(user->nick)+1);
1539 sprintf(reason, OSMSG_KICK_REQUESTED, user->nick);
1540 } else {
1541 reason = unsplit_string(argv+2, argc-2, NULL);
1542 }
1543 target = GetUserH(argv[1]);
1544 if (!target) {
1545 reply("MSG_NICK_UNKNOWN", argv[1]);
1546 return 0;
1547 }
1548 if (!GetUserMode(channel, target)) {
1549 reply("OSMSG_NOT_ON_CHANNEL", target->nick, channel->name);
1550 return 0;
1551 }
1552 KickChannelUser(target, channel, cmd->parent->bot, reason);
1553 return 1;
1554 }
1555
1556 static MODCMD_FUNC(cmd_kickall)
1557 {
1558 unsigned int limit, n, inchan;
1559 struct modeNode *mn;
1560 char *reason;
1561 struct userNode *bot = cmd->parent->bot;
1562
1563 /* ircu doesn't let servers KICK users, so if OpServ's not in the
1564 * channel, we have to join it in temporarily. */
1565 if (!(inchan = GetUserMode(channel, bot) ? 1 : 0)) {
1566 struct mod_chanmode change;
1567 mod_chanmode_init(&change);
1568 change.args[0].mode = MODE_CHANOP;
1569 change.args[0].u.member = AddChannelUser(bot, channel);
1570 modcmd_chanmode_announce(&change);
1571 }
1572 if (argc < 2) {
1573 reason = alloca(strlen(OSMSG_KICK_REQUESTED)+strlen(user->nick)+1);
1574 sprintf(reason, OSMSG_KICK_REQUESTED, user->nick);
1575 } else {
1576 reason = unsplit_string(argv+1, argc-1, NULL);
1577 }
1578 limit = user->handle_info->opserv_level;
1579 for (n=channel->members.used; n>0;) {
1580 mn = channel->members.list[--n];
1581 if (IsService(mn->user)
1582 || (mn->user->handle_info
1583 && (mn->user->handle_info->opserv_level >= limit))) {
1584 continue;
1585 }
1586 KickChannelUser(mn->user, channel, bot, reason);
1587 }
1588 if (!inchan)
1589 DelChannelUser(bot, channel, "My work here is done", 0);
1590 reply("OSMSG_KICKALL_DONE", channel->name);
1591 return 1;
1592 }
1593
1594 static MODCMD_FUNC(cmd_kickban)
1595 {
1596 struct mod_chanmode change;
1597 struct userNode *target;
1598 char *reason;
1599 char *mask;
1600
1601 if (argc == 2) {
1602 reason = alloca(strlen(OSMSG_KICK_REQUESTED)+strlen(user->nick)+1);
1603 sprintf(reason, OSMSG_KICK_REQUESTED, user->nick);
1604 } else {
1605 reason = unsplit_string(argv+2, argc-2, NULL);
1606 }
1607 target = GetUserH(argv[1]);
1608 if (!target) {
1609 reply("MSG_NICK_UNKNOWN", argv[1]);
1610 return 0;
1611 }
1612 if (!GetUserMode(channel, target)) {
1613 reply("OSMSG_NOT_ON_CHANNEL", target->nick, channel->name);
1614 return 0;
1615 }
1616 mod_chanmode_init(&change);
1617 change.argc = 1;
1618 change.args[0].mode = MODE_BAN;
1619 change.args[0].u.hostmask = mask = generate_hostmask(target, 0);
1620 modcmd_chanmode_announce(&change);
1621 KickChannelUser(target, channel, cmd->parent->bot, reason);
1622 free(mask);
1623 return 1;
1624 }
1625
1626 static MODCMD_FUNC(cmd_kickbanall)
1627 {
1628 struct modeNode *mn;
1629 struct userNode *bot = cmd->parent->bot;
1630 struct mod_chanmode *change;
1631 char *reason;
1632 unsigned int limit, n, inchan;
1633
1634 /* ircu doesn't let servers KICK users, so if OpServ's not in the
1635 * channel, we have to join it in temporarily. */
1636 if (!(inchan = GetUserMode(channel, bot) ? 1 : 0)) {
1637 change = mod_chanmode_alloc(2);
1638 change->args[0].mode = MODE_CHANOP;
1639 change->args[0].u.member = AddChannelUser(bot, channel);
1640 change->args[1].mode = MODE_BAN;
1641 change->args[1].u.hostmask = "*!*@*";
1642 } else {
1643 change = mod_chanmode_alloc(1);
1644 change->args[0].mode = MODE_BAN;
1645 change->args[0].u.hostmask = "*!*@*";
1646 }
1647 modcmd_chanmode_announce(change);
1648 mod_chanmode_free(change);
1649 if (argc < 2) {
1650 reason = alloca(strlen(OSMSG_KICK_REQUESTED)+strlen(user->nick)+1);
1651 sprintf(reason, OSMSG_KICK_REQUESTED, user->nick);
1652 } else {
1653 reason = unsplit_string(argv+1, argc-1, NULL);
1654 }
1655 /* now kick them */
1656 limit = user->handle_info->opserv_level;
1657 for (n=channel->members.used; n>0; ) {
1658 mn = channel->members.list[--n];
1659 if (IsService(mn->user)
1660 || (mn->user->handle_info
1661 && (mn->user->handle_info->opserv_level >= limit))) {
1662 continue;
1663 }
1664 KickChannelUser(mn->user, channel, bot, reason);
1665 }
1666 if (!inchan)
1667 DelChannelUser(bot, channel, "My work here is done", 0);
1668 reply("OSMSG_KICKALL_DONE", channel->name);
1669 return 1;
1670 }
1671
1672 static MODCMD_FUNC(cmd_part)
1673 {
1674 char *reason;
1675
1676 if (!IsChannelName(argv[1])) {
1677 reply("MSG_NOT_CHANNEL_NAME");
1678 return 0;
1679 }
1680 if ((channel = GetChannel(argv[1]))) {
1681 if (!GetUserMode(channel, cmd->parent->bot)) {
1682 reply("OSMSG_NOT_ON_CHANNEL", cmd->parent->bot->nick, channel->name);
1683 return 0;
1684 }
1685 reason = (argc < 3) ? "Leaving." : unsplit_string(argv+2, argc-2, NULL);
1686 reply("OSMSG_LEAVING", channel->name);
1687 DelChannelUser(cmd->parent->bot, channel, reason, 0);
1688 }
1689 return 1;
1690 }
1691
1692 static MODCMD_FUNC(cmd_mode)
1693 {
1694 if (!modcmd_chanmode(argv+1, argc-1, MCP_ALLOW_OVB|MCP_KEY_FREE|MC_ANNOUNCE)) {
1695 reply("MSG_INVALID_MODES", unsplit_string(argv+1, argc-1, NULL));
1696 return 0;
1697 }
1698 reply("OSMSG_MODE_SET", channel->name);
1699 return 1;
1700 }
1701
1702 static MODCMD_FUNC(cmd_op)
1703 {
1704 struct mod_chanmode *change;
1705 unsigned int arg, count;
1706
1707 change = mod_chanmode_alloc(argc-1);
1708 for (arg = 1, count = 0; arg < argc; ++arg) {
1709 struct userNode *victim;
1710 struct modeNode *mn;
1711 if (!(victim = GetUserH(argv[arg])))
1712 continue;
1713 if (!(mn = GetUserMode(channel, victim)))
1714 continue;
1715 if (mn->modes & MODE_CHANOP)
1716 continue;
1717 change->args[count].mode = MODE_CHANOP;
1718 change->args[count++].u.member = mn;
1719 }
1720 if (count) {
1721 change->argc = count;
1722 modcmd_chanmode_announce(change);
1723 }
1724 mod_chanmode_free(change);
1725 reply("OSMSG_OP_DONE");
1726 return 1;
1727 }
1728
1729 static MODCMD_FUNC(cmd_hop)
1730 {
1731 struct mod_chanmode *change;
1732 unsigned int arg, count;
1733
1734 change = mod_chanmode_alloc(argc-1);
1735 for (arg = 1, count = 0; arg < argc; ++arg) {
1736 struct userNode *victim;
1737 struct modeNode *mn;
1738 if (!(victim = GetUserH(argv[arg])))
1739 continue;
1740 if (!(mn = GetUserMode(channel, victim)))
1741 continue;
1742 if (mn->modes & MODE_HALFOP)
1743 continue;
1744 change->args[count].mode = MODE_HALFOP;
1745 change->args[count++].u.member = mn;
1746 }
1747 if (count) {
1748 change->argc = count;
1749 modcmd_chanmode_announce(change);
1750 }
1751 mod_chanmode_free(change);
1752 reply("OSMSG_HOP_DONE");
1753 return 1;
1754 }
1755
1756 static MODCMD_FUNC(cmd_opall)
1757 {
1758 struct mod_chanmode *change;
1759 unsigned int ii, count;
1760
1761 change = mod_chanmode_alloc(channel->members.used);
1762 for (ii = count = 0; ii < channel->members.used; ++ii) {
1763 struct modeNode *mn = channel->members.list[ii];
1764 if (mn->modes & MODE_CHANOP)
1765 continue;
1766 change->args[count].mode = MODE_CHANOP;
1767 change->args[count++].u.member = mn;
1768 }
1769 if (count) {
1770 change->argc = count;
1771 modcmd_chanmode_announce(change);
1772 }
1773 mod_chanmode_free(change);
1774 reply("OSMSG_OPALL_DONE", channel->name);
1775 return 1;
1776 }
1777
1778 static MODCMD_FUNC(cmd_hopall)
1779 {
1780 struct mod_chanmode *change;
1781 unsigned int ii, count;
1782
1783 change = mod_chanmode_alloc(channel->members.used);
1784 for (ii = count = 0; ii < channel->members.used; ++ii) {
1785 struct modeNode *mn = channel->members.list[ii];
1786 if (mn->modes & MODE_HALFOP)
1787 continue;
1788 change->args[count].mode = MODE_HALFOP;
1789 change->args[count++].u.member = mn;
1790 }
1791 if (count) {
1792 change->argc = count;
1793 modcmd_chanmode_announce(change);
1794 }
1795 mod_chanmode_free(change);
1796 reply("OSMSG_HOPALL_DONE", channel->name);
1797 return 1;
1798 }
1799
1800 static MODCMD_FUNC(cmd_whois)
1801 {
1802 struct userNode *target;
1803 char buffer[128];
1804 int bpos, herelen;
1805
1806 #ifdef WITH_PROTOCOL_P10
1807 if (argv[1][0] == '*')
1808 target = GetUserN(argv[1]+1);
1809 else
1810 #endif
1811 target = GetUserH(argv[1]);
1812 if (!target) {
1813 reply("MSG_NICK_UNKNOWN", argv[1]);
1814 return 0;
1815 }
1816 reply("OSMSG_WHOIS_NICK", target->nick);
1817 reply("OSMSG_WHOIS_HOST", target->ident, target->hostname);
1818 if (IsFakeHost(target))
1819 reply("OSMSG_WHOIS_FAKEHOST", target->fakehost);
1820 reply("OSMSG_WHOIS_CRYPT_HOST", target->crypthost);
1821 reply("OSMSG_WHOIS_CRYPT_IP", target->cryptip);
1822 reply("OSMSG_WHOIS_IP", irc_ntoa(&target->ip));
1823
1824 if (target->city) {
1825 reply("OSMSG_WHOIS_COUNTRY", target->country_name);
1826 reply("OSMSG_WHOIS_COUNTRY_CODE", target->country_code);
1827 reply("OSMSG_WHOIS_CITY", target->city);
1828 reply("OSMSG_WHOIS_REGION", target->region);
1829
1830 reply("OSMSG_WHOIS_POSTAL_CODE", target->postal_code);
1831 reply("OSMSG_WHOIS_LATITUDE", target->latitude);
1832 reply("OSMSG_WHOIS_LONGITUDE", target->longitude);
1833 /* Only show a map url if we have a city, latitude and longitude.
1834 * Theres not much point of latitude and longitude coordinates are
1835 * returned but no city, the coordinates are useless.
1836 */
1837 if (target->latitude && target->longitude && target->city) {
1838 char map_url[MAXLEN];
1839 snprintf(map_url, sizeof(map_url), "http://www.mapquest.com/maps/map.adp?searchtype=address&formtype=address&latlongtype=decimal&latitude=%f&longitude=%f",
1840 target->latitude, target->longitude);
1841 reply("OSMSG_WHOIS_MAP", map_url);
1842 }
1843 reply("OSMSG_WHOIS_DMA_CODE", target->dma_code);
1844 reply("OSMSG_WHOIS_AREA_CODE", target->area_code);
1845 } else if (target->country_name) {
1846 reply("OSMSG_WHOIS_COUNTRY", target->country_name);
1847 }
1848
1849 if (target->modes) {
1850 bpos = 0;
1851 #define buffer_cat(str) (herelen = strlen(str), memcpy(buffer+bpos, str, herelen), bpos += herelen)
1852 if (IsInvisible(target)) buffer[bpos++] = 'i';
1853 if (IsWallOp(target)) buffer[bpos++] = 'w';
1854 if (IsOper(target)) buffer[bpos++] = 'o';
1855 if (IsGlobal(target)) buffer[bpos++] = 'g';
1856 if (IsServNotice(target)) buffer[bpos++] = 's';
1857
1858 // sethost - reed/apples
1859 // if (IsHelperIrcu(target)) buffer[bpos++] = 'h';
1860 if (IsSetHost(target)) buffer[bpos++] = 'h';
1861
1862 if (IsService(target)) buffer[bpos++] = 'k';
1863 if (IsDeaf(target)) buffer[bpos++] = 'd';
1864 if (target->handle_info) buffer[bpos++] = 'r';
1865 if (IsHiddenHost(target)) buffer[bpos++] = 'x';
1866 if (IsGagged(target)) buffer_cat(" (gagged)");
1867 if (IsRegistering(target)) buffer_cat(" (registered account)");
1868 buffer[bpos] = 0;
1869 if (bpos > 0)
1870 reply("OSMSG_WHOIS_MODES", buffer);
1871 }
1872 reply("OSMSG_WHOIS_INFO", target->info);
1873 #ifdef WITH_PROTOCOL_P10
1874 reply("OSMSG_WHOIS_NUMERIC", target->numeric);
1875 #endif
1876 reply("OSMSG_WHOIS_SERVER", target->uplink->name);
1877 reply("OSMSG_WHOIS_ACCOUNT", (target->handle_info ? target->handle_info->handle : "Not authenticated"));
1878
1879 reply("OSMSG_WHOIS_PRIVS", client_report_privs(target));
1880
1881 intervalString(buffer, now - target->timestamp, user->handle_info);
1882 reply("OSMSG_WHOIS_NICK_AGE", buffer);
1883 if (target->channels.used <= MAX_CHANNELS_WHOIS)
1884 opserv_ison(user, target, "OSMSG_WHOIS_CHANNELS");
1885 else
1886 reply("OSMSG_WHOIS_HIDECHANS");
1887 return 1;
1888 }
1889
1890 static MODCMD_FUNC(cmd_unban)
1891 {
1892 struct mod_chanmode change;
1893 mod_chanmode_init(&change);
1894 change.argc = 1;
1895 change.args[0].mode = MODE_REMOVE | MODE_BAN;
1896 change.args[0].u.hostmask = argv[1];
1897 modcmd_chanmode_announce(&change);
1898 reply("OSMSG_UNBAN_DONE", channel->name);
1899 return 1;
1900 }
1901
1902 static MODCMD_FUNC(cmd_voiceall)
1903 {
1904 struct mod_chanmode *change;
1905 unsigned int ii, count;
1906
1907 change = mod_chanmode_alloc(channel->members.used);
1908 for (ii = count = 0; ii < channel->members.used; ++ii) {
1909 struct modeNode *mn = channel->members.list[ii];
1910 if (mn->modes & (MODE_CHANOP|MODE_HALFOP|MODE_VOICE))
1911 continue;
1912 change->args[count].mode = MODE_VOICE;
1913 change->args[count++].u.member = mn;
1914 }
1915 if (count) {
1916 change->argc = count;
1917 modcmd_chanmode_announce(change);
1918 }
1919 mod_chanmode_free(change);
1920 reply("OSMSG_CHANNEL_VOICED", channel->name);
1921 return 1;
1922 }
1923
1924 static MODCMD_FUNC(cmd_devoiceall)
1925 {
1926 struct mod_chanmode *change;
1927 unsigned int ii, count;
1928
1929 change = mod_chanmode_alloc(channel->members.used);
1930 for (ii = count = 0; ii < channel->members.used; ++ii) {
1931 struct modeNode *mn = channel->members.list[ii];
1932 if (!(mn->modes & MODE_VOICE))
1933 continue;
1934 change->args[count].mode = MODE_REMOVE | MODE_VOICE;
1935 change->args[count++].u.member = mn;
1936 }
1937 if (count) {
1938 change->argc = count;
1939 modcmd_chanmode_announce(change);
1940 }
1941 mod_chanmode_free(change);
1942 reply("OSMSG_CHANNEL_DEVOICED", channel->name);
1943 return 1;
1944 }
1945
1946 static MODCMD_FUNC(cmd_stats_bad) {
1947 dict_iterator_t it;
1948 unsigned int ii, end, here_len;
1949 char buffer[400];
1950
1951 /* Show the bad word list.. */
1952 /* TODO: convert nonprinting chars like bold to $b etc in a usable way */
1953 for (ii=end=0; ii<opserv_bad_words->used; ii++) {
1954 here_len = strlen(opserv_bad_words->list[ii]);
1955 /* If the line is full output it & start again */
1956 if ((end + here_len + 2) > sizeof(buffer)) {
1957 buffer[end] = 0;
1958 reply("OSMSG_BADWORD_LIST", buffer);
1959 end = 0;
1960 }
1961 memcpy(buffer+end, opserv_bad_words->list[ii], here_len);
1962 end += here_len;
1963 buffer[end++] = ' ';
1964 }
1965 buffer[end] = 0;
1966 reply("OSMSG_BADWORD_LIST", buffer);
1967
1968 /* Show the exemption list.. */
1969 for (it=dict_first(opserv_exempt_channels), end=0; it; it=iter_next(it)) {
1970 here_len = strlen(iter_key(it));
1971 if ((end + here_len + 2) > sizeof(buffer)) {
1972 buffer[end] = 0;
1973 reply("OSMSG_EXEMPTED_LIST", buffer);
1974 end = 0;
1975 }
1976 memcpy(buffer+end, iter_key(it), here_len);
1977 end += here_len;
1978 buffer[end++] = ' ';
1979 }
1980 buffer[end] = 0;
1981 reply("OSMSG_EXEMPTED_LIST", buffer);
1982 return 1;
1983 }
1984
1985 static MODCMD_FUNC(cmd_stats_glines) {
1986 reply("OSMSG_GLINE_COUNT", gline_count());
1987 return 1;
1988 }
1989
1990 static MODCMD_FUNC(cmd_stats_shuns) {
1991 reply("OSMSG_SHUN_COUNT", shun_count());
1992 return 1;
1993 }
1994
1995 static void
1996 trace_links(struct userNode *bot, struct userNode *user, struct server *server, unsigned int depth) {
1997 unsigned int nn, pos;
1998 char buffer[400];
1999
2000 for (nn=1; nn<=depth; nn<<=1) ;
2001 for (pos=0, nn>>=1; nn>1; ) {
2002 nn >>= 1;
2003 buffer[pos++] = (depth & nn) ? ((nn == 1) ? '`' : ' ') : '|';
2004 buffer[pos++] = (nn == 1) ? '-': ' ';
2005 }
2006 buffer[pos] = 0;
2007 send_message(user, bot, "OSMSG_LINKS_SERVER", buffer, server->name, server->clients, server->description);
2008 if (!server->children.used)
2009 return;
2010 for (nn=0; nn<server->children.used-1; nn++) {
2011 trace_links(bot, user, server->children.list[nn], depth<<1);
2012 }
2013 trace_links(bot, user, server->children.list[nn], (depth<<1)|1);
2014 }
2015
2016 static MODCMD_FUNC(cmd_stats_links) {
2017 trace_links(cmd->parent->bot, user, self, 1);
2018 return 1;
2019 }
2020
2021
2022 static MODCMD_FUNC(cmd_stats_max) {
2023 reply("OSMSG_MAX_CLIENTS", max_clients, asctime(localtime(&max_clients_time)));
2024 return 1;
2025 }
2026
2027 static MODCMD_FUNC(cmd_stats_network) {
2028 struct helpfile_table tbl;
2029 unsigned int nn, tot_clients;
2030 dict_iterator_t it;
2031
2032 tot_clients = dict_size(clients);
2033 reply("OSMSG_NETWORK_INFO", tot_clients, invis_clients, curr_opers.used);
2034 tbl.length = dict_size(servers)+1;
2035 tbl.width = 3;
2036 tbl.flags = TABLE_NO_FREE;
2037 tbl.contents = calloc(tbl.length, sizeof(*tbl.contents));
2038 tbl.contents[0] = calloc(tbl.width, sizeof(**tbl.contents));
2039 tbl.contents[0][0] = "Server Name";
2040 tbl.contents[0][1] = "Clients";
2041 tbl.contents[0][2] = "Load";
2042 for (it=dict_first(servers), nn=1; it; it=iter_next(it)) {
2043 struct server *server = iter_data(it);
2044 char *buffer = malloc(32);
2045 tbl.contents[nn] = calloc(tbl.width, sizeof(**tbl.contents));
2046 tbl.contents[nn][0] = server->name;
2047 tbl.contents[nn][1] = buffer;
2048 sprintf(buffer, "%u", server->clients);
2049 tbl.contents[nn][2] = buffer + 16;
2050 sprintf(buffer+16, "%3.3g%%", ((double)server->clients/tot_clients)*100);
2051 nn++;
2052 }
2053 table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
2054 for (nn=1; nn<tbl.length; nn++) {
2055 free((char*)tbl.contents[nn][1]);
2056 free(tbl.contents[nn]);
2057 }
2058 free(tbl.contents[0]);
2059 free(tbl.contents);
2060 return 1;
2061 }
2062
2063 static MODCMD_FUNC(cmd_stats_network2) {
2064 struct helpfile_table tbl;
2065 unsigned int nn;
2066 dict_iterator_t it;
2067
2068 tbl.length = dict_size(servers)+1;
2069 tbl.width = 3;
2070 tbl.flags = TABLE_NO_FREE;
2071 tbl.contents = calloc(tbl.length, sizeof(*tbl.contents));
2072 tbl.contents[0] = calloc(tbl.width, sizeof(**tbl.contents));
2073 tbl.contents[0][0] = "Server Name";
2074 tbl.contents[0][1] = "Numeric";
2075 tbl.contents[0][2] = "Link Time";
2076 for (it=dict_first(servers), nn=1; it; it=iter_next(it)) {
2077 struct server *server = iter_data(it);
2078 char *buffer = malloc(64);
2079 int ofs;
2080
2081 tbl.contents[nn] = calloc(tbl.width, sizeof(**tbl.contents));
2082 tbl.contents[nn][0] = server->name;
2083 #ifdef WITH_PROTOCOL_P10
2084 sprintf(buffer, "%s (%ld)", server->numeric, base64toint(server->numeric, strlen(server->numeric)));
2085 #else
2086 buffer[0] = 0;
2087 #endif
2088 tbl.contents[nn][1] = buffer;
2089 ofs = strlen(buffer) + 1;
2090 intervalString(buffer + ofs, now - server->link, user->handle_info);
2091 if (server->self_burst)
2092 strcat(buffer + ofs, " Bursting");
2093 tbl.contents[nn][2] = buffer + ofs;
2094 nn++;
2095 }
2096 table_send(cmd->parent->bot, user->nick, 0, 0, tbl);
2097 for (nn=1; nn<tbl.length; nn++) {
2098 free((char*)tbl.contents[nn][1]);
2099 free(tbl.contents[nn]);
2100 }
2101 free(tbl.contents[0]);
2102 free(tbl.contents);
2103 return 1;
2104 }
2105
2106 static MODCMD_FUNC(cmd_stats_reserved) {
2107 dict_iterator_t it;
2108
2109 reply("OSMSG_RESERVED_LIST");
2110 for (it = dict_first(opserv_reserved_nick_dict); it; it = iter_next(it))
2111 send_message_type(4, user, cmd->parent->bot, "%s", iter_key(it));
2112 return 1;
2113 }
2114
2115 static MODCMD_FUNC(cmd_stats_trusted) {
2116 dict_iterator_t it;
2117 struct trusted_host *th;
2118 char length[INTERVALLEN], issued[INTERVALLEN], limit[32];
2119
2120 reply("OSMSG_TRUSTED_LIST");
2121 reply("OSMSG_TRUSTED_LIST_BAR");
2122 reply("OSMSG_TRUSTED_LIST_HEADER");
2123 reply("OSMSG_TRUSTED_LIST_BAR");
2124 if (argc > 1) {
2125 th = dict_find(opserv_trusted_hosts, argv[1], NULL);
2126 if (th) {
2127 if (th->issued)
2128 intervalString(issued, now - th->issued, user->handle_info);
2129 if (th->expires)
2130 intervalString(length, th->expires - now, user->handle_info);
2131 if (th->limit)
2132 sprintf(limit, "%lu", th->limit);
2133 reply("OSMSG_HOST_IS_TRUSTED",
2134 th->ipaddr,
2135 (th->limit ? limit : "none"),
2136 (th->issuer ? th->issuer : "<unknown>"),
2137 (th->issued ? issued : "some time"),
2138 (th->expires ? length : "never"));
2139 reply("OSMSG_HOST_IS_TRUSTED_DESC", (th->reason ? th->reason : "<unknown>"));
2140 } else {
2141 reply("OSMSG_HOST_NOT_TRUSTED", argv[1]);
2142 }
2143 } else {
2144 for (it = dict_first(opserv_trusted_hosts); it; it = iter_next(it)) {
2145 th = iter_data(it);
2146 if (th->issued)
2147 intervalString(issued, now - th->issued, user->handle_info);
2148 if (th->expires)
2149 intervalString(length, th->expires - now, user->handle_info);
2150 if (th->limit)
2151 sprintf(limit, "%lu", th->limit);
2152 reply("OSMSG_HOST_IS_TRUSTED", iter_key(it),
2153 (th->limit ? limit : "none"),
2154 (th->issuer ? th->issuer : "<unknown>"),
2155 (th->issued ? issued : "some time"),
2156 (th->expires ? length : "never"));
2157 reply("OSMSG_HOST_IS_TRUSTED_DESC", (th->reason ? th->reason : "<unknown>"));
2158 }
2159 }
2160 reply("OSMSG_TRUSTED_LIST_END");
2161 return 1;
2162 }
2163
2164 static MODCMD_FUNC(cmd_stats_uplink) {
2165 extern struct cManagerNode cManager;
2166 struct uplinkNode *uplink;
2167
2168 uplink = cManager.uplink;
2169 reply("OSMSG_UPLINK_START", uplink->name);
2170 reply("OSMSG_UPLINK_ADDRESS", uplink->host, uplink->port);
2171 return 1;
2172 }
2173
2174 static MODCMD_FUNC(cmd_stats_uptime) {
2175 char uptime[INTERVALLEN];
2176 struct tms buf;
2177 extern time_t boot_time;
2178 extern int lines_processed;
2179 static long clocks_per_sec;
2180
2181 if (!clocks_per_sec) {
2182 #if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
2183 clocks_per_sec = sysconf(_SC_CLK_TCK);
2184 if (clocks_per_sec <= 0)
2185 #endif
2186 {
2187 log_module(OS_LOG, LOG_ERROR, "Unable to query sysconf(_SC_CLK_TCK), output of 'stats uptime' will be wrong");
2188 clocks_per_sec = CLOCKS_PER_SEC;
2189 }
2190 }
2191 intervalString(uptime, time(NULL)-boot_time, user->handle_info);
2192 times(&buf);
2193 reply("OSMSG_UPTIME_STATS",
2194 uptime, lines_processed,
2195 buf.tms_utime/(double)clocks_per_sec,
2196 buf.tms_stime/(double)clocks_per_sec);
2197 return 1;
2198 }
2199
2200 static MODCMD_FUNC(cmd_stats_alerts) {
2201 dict_iterator_t it;
2202 struct opserv_user_alert *alert;
2203 const char *reaction;
2204
2205 reply("OSMSG_ALERTS_LIST");
2206 reply("OSMSG_ALERTS_BAR");
2207 reply("OSMSG_ALERTS_HEADER");
2208 reply("OSMSG_ALERTS_BAR");
2209 for (it = dict_first(opserv_user_alerts); it; it = iter_next(it)) {
2210 alert = iter_data(it);
2211 switch (alert->reaction) {
2212 case REACT_NOTICE: reaction = "notice"; break;
2213 case REACT_KILL: reaction = "kill"; break;
2214 // case REACT_SILENT: reaction = "silent"; break;
2215 case REACT_GLINE: reaction = "gline"; break;
2216 case REACT_TRACK: reaction = "track"; break;
2217 case REACT_SHUN: reaction = "shun"; break;
2218 default: reaction = "<unknown>"; break;
2219 }
2220 reply("OSMSG_ALERT_IS", iter_key(it), reaction, alert->owner);
2221 reply("OSMSG_ALERTS_DESC", alert->text_discrim);
2222 }
2223 reply("OSMSG_ALERT_END");
2224 return 1;
2225 }
2226
2227 static MODCMD_FUNC(cmd_stats_gags) {
2228 struct gag_entry *gag;
2229 struct helpfile_table table;
2230 unsigned int nn;
2231
2232 if (!gagList) {
2233 reply("OSMSG_NO_GAGS");
2234 return 1;
2235 }
2236 for (nn=0, gag=gagList; gag; nn++, gag=gag->next) ;
2237 table.length = nn+1;
2238 table.width = 4;
2239 table.flags = TABLE_NO_FREE;
2240 table.contents = calloc(table.length, sizeof(char**));
2241 table.contents[0] = calloc(table.width, sizeof(char*));
2242 table.contents[0][0] = "Mask";
2243 table.contents[0][1] = "Owner";
2244 table.contents[0][2] = "Expires";
2245 table.contents[0][3] = "Reason";
2246 for (nn=1, gag=gagList; gag; nn++, gag=gag->next) {
2247 char expstr[INTERVALLEN];
2248 if (gag->expires)
2249 intervalString(expstr, gag->expires - now, user->handle_info);
2250 else
2251 strcpy(expstr, "Never");
2252 table.contents[nn] = calloc(table.width, sizeof(char*));
2253 table.contents[nn][0] = gag->mask;
2254 table.contents[nn][1] = gag->owner;
2255 table.contents[nn][2] = strdup(expstr);
2256 table.contents[nn][3] = gag->reason;
2257 }
2258 table_send(cmd->parent->bot, user->nick, 0, NULL, table);
2259 for (nn=1; nn<table.length; nn++) {
2260 free((char*)table.contents[nn][2]);
2261 free(table.contents[nn]);
2262 }
2263 free(table.contents[0]);
2264 free(table.contents);
2265 return 1;
2266 }
2267
2268 static MODCMD_FUNC(cmd_stats_timeq) {
2269 reply("OSMSG_TIMEQ_INFO", timeq_size(), timeq_next()-now);
2270 return 1;
2271 }
2272
2273 /*
2274 static MODCMD_FUNC(cmd_stats_warn) {
2275 dict_iterator_t it;
2276
2277 reply("OSMSG_WARN_LISTSTART");
2278 for (it=dict_first(opserv_chan_warn); it; it=iter_next(it))
2279 reply("OSMSG_WARN_LISTENTRY", iter_key(it), (char*)iter_data(it));
2280 reply("OSMSG_WARN_LISTEND");
2281 return 1;
2282 }
2283 */
2284
2285 #if defined(WITH_MALLOC_X3)
2286 static MODCMD_FUNC(cmd_stats_memory) {
2287 extern unsigned long alloc_count, alloc_size;
2288 send_message_type(MSG_TYPE_NOXLATE, user, cmd->parent->bot,
2289 "%u allocations totalling %u bytes.",
2290 alloc_count, alloc_size);
2291 return 1;
2292 }
2293 #elif defined(WITH_MALLOC_SLAB)
2294 static MODCMD_FUNC(cmd_stats_memory) {
2295 extern unsigned long slab_alloc_count, slab_count, slab_alloc_size;
2296 extern unsigned long big_alloc_count, big_alloc_size;
2297 send_message_type(MSG_TYPE_NOXLATE, user, cmd->parent->bot,
2298 "%u allocations in %u slabs totalling %u bytes.",
2299 slab_alloc_count, slab_count, slab_alloc_size);
2300 send_message_type(MSG_TYPE_NOXLATE, user, cmd->parent->bot,
2301 "%u big allocations totalling %u bytes.",
2302 big_alloc_count, big_alloc_size);
2303 return 1;
2304 }
2305 #endif
2306
2307 static MODCMD_FUNC(cmd_dump)
2308 {
2309 char linedup[MAXLEN], original[MAXLEN];
2310
2311 unsplit_string(argv+1, argc-1, original);
2312 safestrncpy(linedup, original, sizeof(linedup));
2313 /* assume it's only valid IRC if we can parse it */
2314 if (parse_line(linedup, 1)) {
2315 irc_raw(original);
2316 reply("OSMSG_LINE_DUMPED");
2317 } else
2318 reply("OSMSG_RAW_PARSE_ERROR");
2319 return 1;
2320 }
2321
2322 static MODCMD_FUNC(cmd_raw)
2323 {
2324 char linedup[MAXLEN], original[MAXLEN];
2325
2326 unsplit_string(argv+1, argc-1, original);
2327 safestrncpy(linedup, original, sizeof(linedup));
2328 /* Try to parse the line before sending it; if it's too wrong,
2329 * maybe it will core us instead of our uplink. */
2330 parse_line(linedup, 1);
2331 irc_raw(original);
2332 reply("OSMSG_LINE_DUMPED");
2333 return 1;
2334 }
2335
2336 static struct userNode *
2337 opserv_add_reserve(struct svccmd *cmd, struct userNode *user, const char *nick, const char *ident, const char *host, const char *desc)
2338 {
2339 struct userNode *resv = GetUserH(nick);
2340 if (resv) {
2341 if (IsService(resv)) {
2342 reply("MSG_SERVICE_IMMUNE", resv->nick);
2343 return NULL;
2344 }
2345 if (resv->handle_info
2346 && resv->handle_info->opserv_level > user->handle_info->opserv_level) {
2347 reply("OSMSG_LEVEL_TOO_LOW");
2348 return NULL;
2349 }
2350 }
2351 if ((resv = AddClone(nick, ident, host, desc))) {
2352 dict_insert(opserv_reserved_nick_dict, resv->nick, resv);
2353 }
2354 return resv;
2355 }
2356
2357 static MODCMD_FUNC(cmd_collide)
2358 {
2359 struct userNode *resv;
2360
2361 resv = opserv_add_reserve(cmd, user, argv[1], argv[2], argv[3], unsplit_string(argv+4, argc-4, NULL));
2362 if (resv) {
2363 reply("OSMSG_COLLIDED_NICK", resv->nick);
2364 return 1;
2365 } else {
2366 reply("OSMSG_CLONE_FAILED", argv[1]);
2367 return 0;
2368 }
2369 }
2370
2371 static MODCMD_FUNC(cmd_reserve)
2372 {
2373 struct userNode *resv;
2374
2375 resv = opserv_add_reserve(cmd, user, argv[1], argv[2], argv[3], unsplit_string(argv+4, argc-4, NULL));
2376 if (resv) {
2377 resv->modes |= FLAGS_PERSISTENT;
2378 reply("OSMSG_RESERVED_NICK", resv->nick);
2379 return 1;
2380 } else {
2381 reply("OSMSG_CLONE_FAILED", argv[1]);
2382 return 0;
2383 }
2384 }
2385
2386 static int
2387 free_reserve(char *nick)
2388 {
2389 struct userNode *resv;
2390 unsigned int rlen;
2391 char *reason;
2392
2393 resv = dict_find(opserv_reserved_nick_dict, nick, NULL);
2394 if (!resv)
2395 return 0;
2396
2397 rlen = strlen(resv->nick)+strlen(OSMSG_PART_REASON);
2398 reason = alloca(rlen);
2399 snprintf(reason, rlen, OSMSG_PART_REASON, resv->nick);
2400 DelUser(resv, NULL, 1, reason);
2401 dict_remove(opserv_reserved_nick_dict, nick);
2402 return 1;
2403 }
2404
2405 static MODCMD_FUNC(cmd_unreserve)
2406 {
2407 if (free_reserve(argv[1]))
2408 reply("OSMSG_NICK_UNRESERVED", argv[1]);
2409 else
2410 reply("OSMSG_NOT_RESERVED", argv[1]);
2411 return 1;
2412 }
2413
2414 static void
2415 opserv_part_channel(void *data)
2416 {
2417 DelChannelUser(opserv, data, "Leaving.", 0);
2418 }
2419
2420 static int alert_check_user(const char *key, void *data, void *extra);
2421
2422 static int
2423 opserv_new_user_check(struct userNode *user)
2424 {
2425 struct opserv_hostinfo *ohi;
2426 struct gag_entry *gag;
2427 char addr[IRC_NTOP_MAX_SIZE];
2428
2429 /* Check to see if we should ignore them entirely. */
2430 if (IsLocal(user) || IsService(user))
2431 return 0;
2432
2433 /* Check for alerts, and stop if we find one that kills them. */
2434 if (dict_foreach(opserv_user_alerts, alert_check_user, user))
2435 return 1;
2436
2437 /* Gag them if appropriate. */
2438 for (gag = gagList; gag; gag = gag->next) {
2439 if (user_matches_glob(user, gag->mask, MATCH_USENICK)) {
2440 gag_helper_func(user, NULL);
2441 break;
2442 }
2443 }
2444
2445 /* Add to host info struct */
2446 irc_ntop(addr, sizeof(addr), &user->ip);
2447 if (!(ohi = dict_find(opserv_hostinfo_dict, addr, NULL))) {
2448 ohi = calloc(1, sizeof(*ohi));
2449 dict_insert(opserv_hostinfo_dict, strdup(addr), ohi);
2450 userList_init(&ohi->clients);
2451 }
2452 userList_append(&ohi->clients, user);
2453
2454 /* Only warn of new user floods outside of bursts. */
2455 if (!user->uplink->burst) {
2456 if (!policer_conforms(&opserv_conf.new_user_policer, now, 10)) {
2457 if (!new_user_flood) {
2458 new_user_flood = 1;
2459 opserv_alert("Warning: Possible new-user flood.");
2460 }
2461 } else {
2462 new_user_flood = 0;
2463 }
2464 }
2465
2466 if (checkDefCon(DEFCON_NO_NEW_CLIENTS)) {
2467 irc_kill(opserv, user, DefConGlineReason);
2468 return 0;
2469 }
2470
2471 if ( (checkDefCon(DEFCON_GLINE_NEW_CLIENTS) || checkDefCon(DEFCON_SHUN_NEW_CLIENTS)) && !IsOper(user)) {
2472 char target[IRC_NTOP_MAX_SIZE + 3] = { '*', '@', '\0' };
2473
2474 strcpy(target + 2, user->hostname);
2475 if (checkDefCon(DEFCON_GLINE_NEW_CLIENTS))
2476 gline_add(opserv->nick, target, DefConGlineExpire, DefConGlineReason, now, 1, 0);
2477 else if (checkDefCon(DEFCON_SHUN_NEW_CLIENTS))
2478 shun_add(opserv->nick, target, DefConGlineExpire, DefConGlineReason, now, 1);
2479
2480 return 0;
2481 }
2482
2483 /* Only warn or G-line if there's an untrusted max and their IP is sane. */
2484 if (opserv_conf.untrusted_max
2485 && irc_in_addr_is_valid(user->ip)
2486 && !irc_in_addr_is_loopback(user->ip)) {
2487 struct trusted_host *th = dict_find(opserv_trusted_hosts, addr, NULL);
2488 unsigned int limit = th ? th->limit : opserv_conf.untrusted_max;
2489
2490 if (checkDefCon(DEFCON_REDUCE_SESSION) && !th)
2491 limit = DefConSessionLimit;
2492
2493 if (!limit) {
2494 /* 0 means unlimited hosts */
2495 } else if (ohi->clients.used == limit) {
2496 unsigned int nn;
2497 for (nn=0; nn<ohi->clients.used; nn++)
2498 send_message(ohi->clients.list[nn], opserv, "OSMSG_CLONE_WARNING");
2499 } else if (ohi->clients.used > limit) {
2500 char target[IRC_NTOP_MAX_SIZE + 3] = { '*', '@', '\0' };
2501 strcpy(target + 2, addr);
2502 gline_add(opserv->nick, target, opserv_conf.clone_gline_duration, "Excessive connections from a single host.", now, 1, 1);
2503 }
2504 }
2505
2506 return 0;
2507 }
2508
2509 static void
2510 opserv_user_cleanup(struct userNode *user, UNUSED_ARG(struct userNode *killer), UNUSED_ARG(const char *why))
2511 {
2512 struct opserv_hostinfo *ohi;
2513 char addr[IRC_NTOP_MAX_SIZE];
2514
2515 if (IsLocal(user)) {
2516 /* Try to remove it from the reserved nick dict without
2517 * calling free_reserve, because that would call DelUser(),
2518 * and we'd loop back to here. */
2519 dict_remove(opserv_reserved_nick_dict, user->nick);
2520 return;
2521 }
2522 irc_ntop(addr, sizeof(addr), &user->ip);
2523 if ((ohi = dict_find(opserv_hostinfo_dict, addr, NULL))) {
2524 userList_remove(&ohi->clients, user);
2525 if (ohi->clients.used == 0)
2526 dict_remove(opserv_hostinfo_dict, addr);
2527 }
2528 }
2529
2530 int
2531 opserv_bad_channel(const char *name)
2532 {
2533 unsigned int found;
2534 int present;
2535
2536 dict_find(opserv_exempt_channels, name, &present);
2537 if (present)
2538 return 0;
2539
2540 if (gline_find(name))
2541 return 1;
2542
2543 for (found=0; found<opserv_bad_words->used; ++found)
2544 if (irccasestr(name, opserv_bad_words->list[found]))
2545 return 1;
2546
2547 return 0;
2548 }
2549
2550 static void
2551 opserv_shutdown_channel(struct chanNode *channel, const char *reason)
2552 {
2553 struct mod_chanmode *change;
2554 unsigned int nn;
2555
2556 change = mod_chanmode_alloc(2);
2557 change->modes_set = MODE_SECRET | MODE_INVITEONLY;
2558 change->args[0].mode = MODE_CHANOP;
2559 change->args[0].u.member = AddChannelUser(opserv, channel);
2560 change->args[1].mode = MODE_BAN;
2561 change->args[1].u.hostmask = "*!*@*";
2562 mod_chanmode_announce(opserv, channel, change);
2563 mod_chanmode_free(change);
2564 for (nn=channel->members.used; nn>0; ) {
2565 struct modeNode *mNode = channel->members.list[--nn];
2566 if (IsService(mNode->user))
2567 continue;
2568 KickChannelUser(mNode->user, channel, opserv, user_find_message(mNode->user, reason));
2569 }
2570 timeq_add(now + opserv_conf.purge_lock_delay, opserv_part_channel, channel);
2571 }
2572
2573 static void
2574 opserv_channel_check(struct chanNode *newchan)
2575 {
2576 /*char *warning; */
2577
2578 if (!newchan->join_policer.params) {
2579 newchan->join_policer.last_req = now;
2580 newchan->join_policer.params = opserv_conf.join_policer_params;
2581 }
2582 /*
2583 if ((warning = dict_find(opserv_chan_warn, newchan->name, NULL))) {
2584 global_message_args(MESSAGE_RECIPIENT_OPERS, "OSMSG_CHANNEL_ACTIVITY_WARN", newchan->name, warning);
2585 }
2586 */
2587
2588 /* Wait until the join check to shut channels down. */
2589 newchan->bad_channel = opserv_bad_channel(newchan->name);
2590 }
2591
2592 static void
2593 opserv_channel_delete(struct chanNode *chan)
2594 {
2595 timeq_del(0, opserv_part_channel, chan, TIMEQ_IGNORE_WHEN);
2596 }
2597
2598 static int
2599 opserv_join_check(struct modeNode *mNode)
2600 {
2601 struct userNode *user = mNode->user;
2602 struct chanNode *channel = mNode->channel;
2603 const char *msg;
2604
2605 if (IsService(user))
2606 return 0;
2607
2608 dict_foreach(opserv_channel_alerts, alert_check_user, user);
2609
2610 if (channel->bad_channel) {
2611 opserv_debug("Found $b%s$b in bad-word channel $b%s$b; removing the user.", user->nick, channel->name);
2612 if (channel->name[0] != '#')
2613 DelUser(user, opserv, 1, "OSMSG_ILLEGAL_KILL_REASON");
2614 else if (!GetUserMode(channel, opserv))
2615 opserv_shutdown_channel(channel, "OSMSG_ILLEGAL_REASON");
2616 else {
2617 send_message(user, opserv, "OSMSG_ILLEGAL_CHANNEL", channel->name);
2618 msg = user_find_message(user, "OSMSG_ILLEGAL_REASON");
2619 KickChannelUser(user, channel, opserv, msg);
2620 }
2621 return 1;
2622 }
2623
2624 if (user->uplink->burst)
2625 return 0;
2626 if (policer_conforms(&channel->join_policer, now, 1.0)) {
2627 channel->join_flooded = 0;
2628 return 0;
2629 }
2630 if (!channel->join_flooded) {
2631 /* Don't moderate the channel unless it is activated and
2632 the number of users in the channel is over the threshold. */
2633 struct mod_chanmode change;
2634 mod_chanmode_init(&change);
2635 channel->join_flooded = 1;
2636 if (opserv_conf.join_flood_moderate && (channel->members.used > opserv_conf.join_flood_moderate_threshold)) {
2637 if (!GetUserMode(channel, opserv)) {
2638 /* If we aren't in the channel, join it. */
2639 change.args[0].mode = MODE_CHANOP;
2640 change.args[0].u.member = AddChannelUser(opserv, channel);
2641 change.argc++;
2642 }
2643 if (!(channel->modes & MODE_MODERATED))
2644 change.modes_set |= MODE_MODERATED;
2645 if (change.modes_set || change.argc)
2646 mod_chanmode_announce(opserv, channel, &change);
2647 send_target_message(0, channel->name, opserv, "OSMSG_FLOOD_MODERATE");
2648 opserv_alert("Warning: Possible join flood in %s (currently %d users; channel moderated).", channel->name, channel->members.used);
2649 } else {
2650 opserv_alert("Warning: Possible join flood in %s (currently %d users).", channel->name, channel->members.used);
2651 }
2652 }
2653 log_module(OS_LOG, LOG_INFO, "Join to %s during flood: "IDENT_FORMAT, channel->name, IDENT_DATA(user));
2654 return 0;
2655 }
2656
2657 static int
2658 opserv_add_bad_word(struct svccmd *cmd, struct userNode *user, const char *new_bad) {
2659 unsigned int bad_idx;
2660
2661 for (bad_idx = 0; bad_idx < opserv_bad_words->used; ++bad_idx) {
2662 char *orig_bad = opserv_bad_words->list[bad_idx];
2663 if (irccasestr(new_bad, orig_bad)) {
2664 if (user)
2665 reply("OSMSG_BAD_REDUNDANT", new_bad, orig_bad);
2666 return 0;
2667 } else if (irccasestr(orig_bad, new_bad)) {
2668 if (user)
2669 reply("OSMSG_BAD_GROWING", orig_bad, new_bad);
2670 free(orig_bad);
2671 opserv_bad_words->list[bad_idx] = strdup(new_bad);
2672 for (bad_idx++; bad_idx < opserv_bad_words->used; bad_idx++) {
2673 orig_bad = opserv_bad_words->list[bad_idx];
2674 if (!irccasestr(orig_bad, new_bad))
2675 continue;
2676 if (user)
2677 reply("OSMSG_BAD_NUKING", orig_bad);
2678 string_list_delete(opserv_bad_words, bad_idx);
2679 bad_idx--;
2680 free(orig_bad);
2681 }
2682 return 1;
2683 }
2684 }
2685 string_list_append(opserv_bad_words, strdup(new_bad));
2686 if (user)
2687 reply("OSMSG_ADDED_BAD", new_bad);
2688 return 1;
2689 }
2690
2691 static int
2692 opserv_routing_plan_add_server(struct routingPlan *rp, const char *name, const char *uplink, const unsigned int port, int karma, const char *second, const unsigned int offline)
2693 {
2694 struct routingPlanServer *rps;
2695 rps = calloc(1, sizeof(*rps));
2696 if(!rps)
2697 return 0;
2698 /* duplicate servers replace */
2699 rps->uplink = strdup(uplink);
2700 if(second)
2701 rps->secondaryuplink = strdup(second);
2702 else
2703 rps->secondaryuplink = NULL;
2704 rps->port = port ? port : 4400; /* lame hardcodede default port. maybe get from config file somewhere? */
2705 rps->karma = karma;
2706 rps->offline = offline; /* 1 = yes, 0 = no */
2707 dict_insert(rp->servers, strdup(name), rps);
2708 log_module(OS_LOG, LOG_DEBUG, "Adding rp server %s with uplink %s", name, uplink);
2709 return 1;
2710 }
2711
2712 static void
2713 free_routing_plan_server(void *data)
2714 {
2715 struct routingPlanServer *rps = data;
2716 free(rps->uplink);
2717 if(rps->secondaryuplink)
2718 free(rps->secondaryuplink);
2719 free(rps);
2720 }
2721
2722 struct routingPlan*
2723 opserv_add_routing_plan(const char *name)
2724 {
2725 struct routingPlan *rp;
2726 rp = calloc(1, sizeof(*rp));
2727 if (!rp)
2728 return NULL;
2729 if(dict_find(opserv_routing_plans, name, NULL))
2730 return NULL; /* plan already exists */
2731 rp->servers = dict_new();
2732 dict_set_free_data(rp->servers, free_routing_plan_server);
2733
2734 dict_insert(opserv_routing_plans, strdup(name), rp);
2735 /* TODO: check for duplicate */
2736 return rp;
2737 }
2738
2739 static void
2740 free_routing_plan(void *data)
2741 {
2742 struct routingPlan *rp = data;
2743 /* delete all the servers attached to this plan */
2744 dict_delete(rp->servers);
2745 /* free the plan struct */
2746 free(rp);
2747 }
2748
2749 /*************************************************
2750 * Functions to handle the active routing struct */
2751
2752 struct routeList
2753 *find_routeList_server(struct route *route, const char *server)
2754 {
2755 struct routeList *rptr;
2756 if(!server)
2757 return(NULL);
2758 for(rptr = route->servers;rptr;rptr=rptr->next) {
2759 if(!strcasecmp(rptr->server, server))
2760 return(rptr);
2761 }
2762 return(NULL);
2763 }
2764
2765 /* Wipes out the routing structure, freeing properly.
2766 * note: does NOT free itself, we just re-use it usually.*/
2767 void
2768 wipe_route_list(struct route *route) {
2769 struct routeList *nextptr, *rptr;
2770 if(!route)
2771 return;
2772 for(rptr = opserv_route->servers; rptr; rptr=nextptr)
2773 {
2774 nextptr = rptr->next;
2775 free(rptr->server);
2776 if(rptr->uplink)
2777 free(rptr->uplink);
2778 if(rptr->secondaryuplink)
2779 free(rptr->secondaryuplink);
2780 free(rptr);
2781 }
2782 route->centered = true;
2783 route->count = 0;
2784 route->maxdepth = 0;
2785 route->servers = NULL;
2786 }
2787
2788
2789 int
2790 rank_outside_rec(struct route *route, char *server, int count)
2791 {
2792 struct routeList *rptr;
2793 int n, max = 0;
2794 int i = 0;
2795 if(count > 256) { /* XXX: 256 becomes max # of servers this works with, whats the real #? */
2796 return -1;
2797 }
2798 for(rptr = route->servers; rptr; rptr = rptr->next) {
2799 i++;
2800 if(!strcasecmp(server, rptr->uplink)) {
2801 log_module(MAIN_LOG, LOG_DEBUG, "%d:%d: rank_outside_rec(%s) calling rank_outside_rec(%s)", count, i, rptr->server, rptr->uplink);
2802 n = rank_outside_rec(route, rptr->server, count +1);
2803 if(n < 0) /* handle error condition */
2804 return n;
2805 if(n > max)
2806 max = n;
2807 }
2808 }
2809 if((rptr = find_routeList_server(route, server))) {
2810 rptr->outsideness = max;
2811 return(max + 1);
2812 }
2813 else {
2814 log_module(MAIN_LOG, LOG_ERROR, "routing struct rank_outsideness() couldnt find %s", server);
2815 return 0;
2816 }
2817 }
2818
2819 int
2820 rank_outsideness(struct route *route)
2821 {
2822 log_module(MAIN_LOG, LOG_DEBUG, "rank_outsideness(): Running...");
2823 route->maxdepth = rank_outside_rec(route, self->uplink->name, 0) - 1;
2824 if(route->maxdepth < 0) { /* if the rank failed, remove route */
2825 log_module(MAIN_LOG, LOG_WARNING, "The active routing plan has a loop! auto routing disabled.");
2826 wipe_route_list(route);
2827 return false;
2828 }
2829 return true;
2830 }
2831
2832
2833 /* Add servers to the routing structure */
2834 void
2835 add_routestruct_server(struct route *route, const char *server, unsigned int port, char *uplink, char *secondary)
2836 {
2837 struct routeList *rptr;
2838 char *hname;
2839 if(find_routeList_server(route, server))
2840 {
2841 log_module(MAIN_LOG, LOG_WARNING, "Routing structure add server Skipping duplicate [%s]. This should never really be possible.", server);
2842 return;
2843 }
2844 rptr = calloc(1, sizeof(*rptr));
2845 rptr->server = strdup(server);
2846 rptr->port = port;
2847 if(!uplink) {
2848 hname = conf_get_data("server/hostname", RECDB_QSTRING);
2849 uplink = hname;
2850 }
2851 rptr->uplink = strdup(uplink);
2852 if(secondary)
2853 rptr->secondaryuplink = strdup(secondary);
2854 /* tack this server on the front of the list */
2855 rptr->next = route->servers;
2856 route->servers = rptr;
2857 route->count++;
2858
2859 #ifdef notdef /* I dont quite get this. there could be uncentered things
2860 * added after our own uplink, and this function doesnt center
2861 * as it adds. -Rubin */
2862 /* If the map hasnt been centered yet... */
2863 if(route->centered == false) {
2864 /* AND we just added our own uplink to it... */
2865 if(!strcasecmp(server, self->uplink->name)) {
2866 change_route_uplinks(route); /* recenter it, n mark it centered. */
2867 }
2868 }
2869 #endif
2870 }
2871
2872 /* Recenter the routing struct around our current uplink */
2873 int
2874 change_route_uplinks(struct route *route)
2875 {
2876 struct routeList *rptr;
2877 char lastserver[MAXLEN];
2878 char nextserver[MAXLEN];
2879
2880 if(!route->servers)
2881 return false; /* no map to recenter */
2882 log_module(MAIN_LOG, LOG_DEBUG, "change_route_uplinks(): running...");
2883 char *servicename = conf_get_data("server/hostname", RECDB_QSTRING);
2884 strcpy(lastserver, servicename);
2885 rptr = find_routeList_server(route, self->uplink->name);
2886 if(!rptr) {
2887 log_module(MAIN_LOG, LOG_ERROR, "Cannot convert routing map to center: My uplink is not on the map! Marking map as uncentered.");
2888 route->centered = false;
2889 return false;
2890 }
2891 if(!strcasecmp(rptr->uplink, servicename)) {
2892 log_module(MAIN_LOG, LOG_DEBUG, "Already centered");
2893 }
2894 else { /* else, center it */
2895 while(rptr) {
2896 strcpy(nextserver, rptr->uplink);
2897 log_module(MAIN_LOG, LOG_DEBUG, "change_route_uplinks() changing %s uplink to %s.", rptr->server, lastserver);
2898 free(rptr->uplink);
2899 rptr->uplink = strdup(lastserver);
2900 strcpy(lastserver, rptr->server);
2901 rptr = find_routeList_server(route, nextserver);
2902 }
2903 }
2904 if(rank_outsideness(route) > 0) {
2905 route->centered = true;
2906 return true;
2907 }
2908 else
2909 return false;
2910 }
2911
2912 int
2913 activate_routing(struct svccmd *cmd, struct userNode *user, char *plan_name)
2914 {
2915 static struct routingPlan *rp;
2916 dict_iterator_t it;
2917 char *karma;
2918
2919 if(plan_name) { /* make this the new active plan */
2920 if(!strcmp(plan_name, "*")) {
2921 /* disable routing */
2922 dict_remove(opserv_routing_plan_options, "ACTIVE");
2923 plan_name = NULL;
2924 }
2925 else {
2926 rp = dict_find(opserv_routing_plans, plan_name, NULL);
2927 if(!rp) {
2928 if(cmd && user)
2929 reply("OSMSG_PLAN_NOT_FOUND", plan_name);
2930 else {
2931 /* since it doesnt exist, remove the active setting */
2932 dict_remove(opserv_routing_plan_options, plan_name);
2933 }
2934 log_module(MAIN_LOG, LOG_ERROR, "activate_routing() couldnt find active routing plan!");
2935 return 0;
2936 }
2937 }
2938 }
2939 else { /* find the active plan in settings */
2940 plan_name = dict_find(opserv_routing_plan_options, "ACTIVE", NULL);
2941 }
2942 if(!plan_name) { /* deactivated, or no plan was set active */
2943 /* TODO: delete routing map if it exists */
2944 wipe_route_list(opserv_route);
2945 return 1;
2946 }
2947
2948 karma = dict_find(opserv_routing_plan_options, "KARMA", NULL);
2949
2950 rp = dict_find(opserv_routing_plans, plan_name, NULL);
2951
2952 /* this should really be done during opserv init */
2953 if(!opserv_route)
2954 opserv_route = calloc(1, sizeof(*opserv_route));
2955
2956 /* Delete the existing active route */
2957 wipe_route_list(opserv_route);
2958
2959 for(it = dict_first(rp->servers); it; it = iter_next(it)) {
2960 const char* servername = iter_key(it);
2961 struct routingPlanServer *rps = iter_data(it),
2962 *rp_uplink, *rp_second = NULL;
2963 char *uplink = rps->uplink;
2964 rp_uplink = dict_find(rp->servers, rps->uplink, NULL);
2965 if(rps->secondaryuplink)
2966 rp_second = dict_find(rp->servers, rps->secondaryuplink, NULL);
2967
2968 /* If the normal uplink has bad karma, don't use it as a hub,
2969 * switch to the secondary uplink.
2970 */
2971 if(karma && enabled_string(karma) && rp_uplink && rp_uplink->karma < 0) {
2972 if(rps->secondaryuplink) {
2973 uplink = rps->secondaryuplink;
2974 /* unless the secondary uplinks karma is worse than the uplink. */
2975 if((rp_second = dict_find(rp->servers, uplink, NULL)) && rp_second->karma < rp_uplink->karma)
2976 uplink = rps->uplink;
2977 }
2978 }
2979 /*
2980 * If _WE_ have bad karma, don't link us to our normal uplink, maybe
2981 * its a bad route. switch to secondary. Important: dont neg karma when we arnt on
2982 * our primary uplink, or we'll get stuck on secondary when THAT link is worse.
2983 */
2984 if(karma && enabled_string(karma) && (rps->karma < 0 || rps->offline) ) {
2985 if(rps->secondaryuplink) {
2986 uplink = rps->secondaryuplink;
2987 }
2988 }
2989 log_module(MAIN_LOG, LOG_DEBUG, "activate_routing() adding %s:%d %s", servername, rps->port, uplink);
2990 add_routestruct_server(opserv_route, servername, rps->port, uplink, NULL);
2991 }
2992 if(change_route_uplinks(opserv_route))
2993 return 1;
2994 else if(user) {
2995 reply("OSMSG_ROUTING_ACTIVATION_ERROR");
2996 activate_routing(cmd, user, "*");
2997 return 0;
2998 }
2999 return 1;
3000 }
3001
3002 /*******************************************************
3003 * Functions to handle online route configuration via opserv
3004 */
3005 static void route_show_option(struct svccmd *cmd, struct userNode *user, char *name)
3006 {
3007 char *value = dict_find(opserv_routing_plan_options, name, NULL);
3008 if(value) {
3009 if(!strcmp("RETRY_PERIOD", name)) { /* Show as an interval */
3010 char buff[INTERVALLEN+1];
3011 reply("OSMSG_ROUTINGPLAN_OPTION", name, intervalString(buff, atoi(value), user->handle_info));
3012 }
3013 else if(!strcmp("ACTIVE", name)) {
3014 if(opserv_route && opserv_route->servers)
3015 reply("OSMSG_ROUTINGPLAN_ACTIVE", value);
3016 else
3017 reply("OSMSG_ROUTINGPLAN_OPTION_NOT_SET", name);
3018 }
3019 else {
3020 reply("OSMSG_ROUTINGPLAN_OPTION", name, value);
3021 }
3022 }
3023 else {
3024 reply("OSMSG_ROUTINGPLAN_OPTION_NOT_SET", name);
3025 }
3026 }
3027
3028 static void route_show_options(struct svccmd *cmd, struct userNode *user)
3029 {
3030 char *options[] = {"ACTIVE", "RETRY_PERIOD", "CONN_PINGOUT", "CONN_READERROR", "KARMA", "DEFAULT_PORT", NULL};
3031 int i;
3032 for(i = 0; options[i]; i++) {
3033 route_show_option(cmd, user, options[i]);
3034 }
3035 }
3036
3037 /* called from timeq */
3038 void routing_connect_timeout(void *data)
3039 {
3040 struct waitingConnection *wc = data;
3041 struct server *target = GetServerH(wc->target);
3042 if(!target) {
3043 dict_remove(opserv_waiting_connections, wc->server);
3044 return; /* server we wanted to connect new server to is gone, just give up */
3045 }
3046 routing_handle_connect_failure(target, wc->server, "Connection timed out");
3047 /* the following invalidates server variable! */
3048 dict_remove(opserv_waiting_connections, wc->server);
3049 }
3050
3051 void routing_delete_connect_timer(char *server)
3052 {
3053 struct waitingConnection *wc = dict_find(opserv_waiting_connections, server, 0);
3054 if(wc) {
3055 timeq_del(0, routing_connect_timeout, wc, TIMEQ_IGNORE_WHEN);
3056 dict_remove(opserv_waiting_connections, server);
3057 }
3058 }
3059
3060
3061 void
3062 routing_connect_server(char *server, int port, struct server *to)
3063 {
3064 struct waitingConnection *wc = calloc(sizeof(*wc), 1);
3065
3066 wc->server = strdup(server);
3067 wc->target = strdup(to->name);
3068 dict_insert(opserv_waiting_connections, strdup(server), wc);
3069 timeq_add(now + ROUTING_CONNECT_TIMEOUT, routing_connect_timeout, wc);
3070
3071 irc_connect(opserv, server, port, to);
3072 }
3073
3074 int
3075 routing_connect_one(struct route *route, char *server)
3076 {
3077 struct routeList *rptr;
3078 struct server *sptr, *suptr;
3079 for(rptr = route->servers; rptr; rptr = rptr->next) {
3080 if(!strcasecmp(rptr->server, server)) {
3081 /* this is the one, connect it */
3082 suptr = GetServerH(rptr->uplink);
3083 sptr = GetServerH(rptr->server);
3084 if(sptr)
3085 return 1; /* already linked */
3086 if(suptr) {
3087 routing_connect_server(rptr->server, rptr->port, suptr);
3088 return 1; /* attempted link */
3089 }
3090 return 0; /* its uplink isnt here to link to */
3091 }
3092 }
3093 log_module(MAIN_LOG, LOG_DEBUG, "Tried to link %s but its not in the active routing struct!", server);
3094 return 0; /* server wasnt found in active route struct. */
3095 }
3096
3097 int routing_connect_children(struct route *route, char *server)
3098 {
3099 struct routeList *rptr;
3100 struct server *sptr, *suptr;
3101 for(rptr = route->servers; rptr; rptr = rptr->next) {
3102 if(!strcasecmp(rptr->uplink, server)) {
3103 /* this is the one, connect it */
3104 suptr = GetServerH(rptr->uplink);
3105 sptr = GetServerH(rptr->server);
3106 if(sptr)
3107 continue; /* already linked */
3108 if(suptr) {
3109 routing_connect_server(rptr->server, rptr->port, suptr);
3110 continue; /* attempted link */
3111 }
3112 continue; /* its uplink isnt here to link to */
3113 }
3114 }
3115 return 1; /* server wasnt found in active route struct ?! */
3116 }
3117
3118 int reroute(struct route *route, struct userNode *user, struct svccmd *cmd, char *directive)
3119 {
3120 struct routeList *rptr;
3121 struct server *sptr, *suptr;
3122 int connect = 0, move = 0, missing = 0, i;
3123 char d = toupper(*directive);
3124
3125 if(!route || !route->servers) {
3126 reply("OSMSG_REROUTING_NOTCONFIGURED");
3127 return 0;
3128 }
3129 if(user) {
3130 if(d == 'N') { /* normal */
3131 irc_wallops("%s", "Attempting a reroute of the network according to loaded map...");
3132 reply("OSMSG_REROUTING_ACC_MAP");
3133 }
3134 else if(d == 'C') { /* only connect */
3135 reply("OSMSG_CONNECTING_MISSING_ONLY");
3136 }
3137 else if(d == 'T') { /* test */
3138 reply("OSMSG_TESTING_REROUTE");
3139 }
3140 else
3141 {
3142 reply("OSMSG_INVALID_DIRECTIVE", directive);
3143 return 0;
3144 }
3145 }
3146 for(i = 0; i <= route->maxdepth-1; i++) {
3147 for(rptr = route->servers; rptr; rptr = rptr->next) {
3148 if(rptr->outsideness == i) {
3149 /* debugging */
3150 if(user && d=='T')
3151 reply("OSMSG_INSPECTING_SERVER", rptr->server);
3152 suptr = GetServerH(rptr->uplink);
3153 if(!suptr) {
3154 if(rptr->secondaryuplink && (suptr = GetServerH(rptr->secondaryuplink))) {
3155 if(user)
3156 reply("OSMSG_COULDNT_FIND_SERVER", rptr->uplink, rptr->secondaryuplink, rptr->server);
3157 }
3158 }
3159 if(suptr) { /* if the proper uplink is connected.. */
3160 sptr = GetServerH(rptr->server);
3161 if(d == 'C' && sptr) {
3162 continue; /* Already linked */
3163 }
3164 /* If server is missing or the uplinks are not the same then... */
3165 else if(!sptr || strcasecmp(sptr->uplink->name, rptr->uplink)) {
3166 if(!sptr) {
3167 connect++;
3168 }
3169 else { /* Server is already connected somewhere */
3170 if(strcasecmp(sptr->uplink->name, rptr->uplink)) {
3171 if(d != 'T') { /* do it for real */
3172 irc_squit_route(sptr, "%s issued reroute.", user ? user->nick : opserv->nick);
3173 }
3174 else { /* just pretend */
3175 reply("OSMSG_SQUIT", rptr->server);
3176 }
3177 move++;
3178 }
3179 }
3180 if(d != 'T') /* do the real thing */
3181 routing_connect_server(rptr->server, rptr->port, suptr);
3182 else /* just pretend */
3183 reply("OSMSG_CONNECT", rptr->server, rptr->port, suptr->name);
3184 }
3185 }
3186 else {
3187 log_module(MAIN_LOG, LOG_DEBUG, "server uplink %s was not found, cant connect %s", rptr->uplink, rptr->server);
3188 missing++;
3189 }
3190 } /* outsideness = 1 */
3191 } /* rptr */
3192 } /* maxdepth */
3193 if(user) { /* report on what we did */
3194 if(!strcasecmp(directive, "C")) {
3195 if(connect > 0)
3196 reply("OSMSG_CONNECTING_MISSING", connect);
3197 else
3198 reply("OSMSG_NO_SERVERS_MISSING");
3199 }
3200 else {
3201 if(move+connect > 0)
3202 reply("OSMSG_REROUTE_COMPLETE", move, connect, move+connect);
3203 else
3204 reply("OSMSG_NO_ROUTING_NECESSARY");
3205 if(missing > 0)
3206 reply("OSMSG_UPLINKS_MISSING", missing);
3207 }
3208 }
3209 return(move+connect);
3210 }
3211
3212 static MODCMD_FUNC(cmd_reroute) {
3213 char* upper;
3214 upper = argv[1];
3215 if(reroute(opserv_route, user, cmd, upper))
3216 return 1;
3217 else
3218 return 0;
3219 }
3220
3221 /* reroute_timer(run)
3222 * run - if it is null, just setup the timer
3223 * but dont run reroute now. otherwise reroute
3224 * and setup timer.
3225 */
3226 void reroute_timer(void *data) {
3227 if(!opserv_route || !opserv_route->servers)
3228 return; /* no active route */
3229 char *retry_period = dict_find(opserv_routing_plan_options, "RETRY_PERIOD", NULL);
3230 if(!retry_period)
3231 return; /* retry_period invalid */
3232 unsigned int freq = atoi(retry_period);
3233 if(freq < 1)
3234 return; /* retry_period set to 0, disable */
3235
3236 /* Do the reroute C attempt */
3237 if(data)
3238 reroute(opserv_route, NULL, NULL, "C");
3239
3240 /* Re-add ourselves to the timer queue */
3241 timeq_add(now + freq, reroute_timer, "run");
3242 }
3243
3244 void routing_change_karma(struct routingPlanServer *rps, const char *server, int change) {
3245
3246 int oldkarma = rps->karma;
3247 rps->karma += change;
3248 if(rps->karma < KARMA_MIN)
3249 rps->karma = KARMA_MIN;
3250 if(rps->karma > KARMA_MAX)
3251 rps->karma = KARMA_MAX;
3252 log_module(MAIN_LOG, LOG_DEBUG, "Changing %s karma by %d. new karma %d.", server, change, rps->karma);
3253 if(oldkarma > 0 && rps->karma < 0) {
3254 /* we just crossed over to negitive */
3255 log_module(MAIN_LOG, LOG_INFO, "Server %s just went negitive karma!", server);
3256 activate_routing(NULL, NULL, NULL);
3257 }
3258 else if(oldkarma < 0 && rps->karma > 0) {
3259 /* we just crossed over to positive */
3260 log_module(MAIN_LOG, LOG_INFO, "Server %s just went back positive karma.", server);
3261 activate_routing(NULL, NULL, NULL);
3262 }
3263 }
3264
3265 void routing_karma_timer(void *data) {
3266 time_t next;
3267 time_t timer_init = data ? atoi(data) : 0;
3268 char buf[MAXLEN];
3269
3270 log_module(MAIN_LOG, LOG_DEBUG, "routing_karma_timer() is running. timer_init=%d.", (unsigned int) timer_init);
3271
3272 /* If theres a time passed in, dont run unless that time is overdue. */
3273 if(!timer_init || (timer_init < now)) {
3274 if(opserv_route && opserv_route->servers) {
3275 char *active = dict_find(opserv_routing_plan_options, "ACTIVE", NULL);
3276 struct routingPlan *rp;
3277 if(active && (rp = dict_find(opserv_routing_plans, active, NULL))) {
3278 dict_iterator_t it;
3279 /* Walk through each server in the active routing plan.. */
3280 for(it = dict_first(rp->servers); it; it = iter_next(it)) {
3281 struct routingPlanServer *rps = iter_data(it);
3282 struct server *server = GetServerH(iter_key(it));
3283 /* Give everyone +KARMA_ENTROPE just for nothing */
3284 routing_change_karma(rps, iter_key(it), KARMA_ENTROPE);
3285 /* give an additonal +KARMA_RELIABLE to servers that
3286 * have been linked at least KARMA_TIMER seconds. */
3287 if(server && (server->link < (now - KARMA_TIMER) ) ) {
3288 routing_change_karma(rps, iter_key(it), KARMA_RELIABLE);
3289 }
3290 }
3291 }
3292 }
3293 }
3294 if(timer_init > now) /* loading a saved value */
3295 next = timer_init;
3296 else /* no scheduled timer, or we missed it. start from now */
3297 next = now + KARMA_TIMER;
3298 /* Save when karma_timer should run again in case we restart before then */
3299 log_module(MAIN_LOG, LOG_DEBUG, "routing_karma_timer() scheduling self to run again at %d", (unsigned int) next);
3300 sprintf(buf, "%u", (unsigned int) next);
3301 dict_insert(opserv_routing_plan_options, "KARMA_TIMER", strdup(buf));
3302 /* add a timer to run this again .. */
3303 timeq_add(next, routing_karma_timer, NULL);
3304 }
3305
3306 void routing_handle_neg_karma(char *server, char *uplink, int change)
3307 {
3308 /* if server's primary uplink is uplink, OR, uplink's primary uplink is server,
3309 * then whichever one, gets its karma changed. */
3310 char *active = dict_find(opserv_routing_plan_options, "ACTIVE", NULL);
3311 struct routingPlan *rp;
3312 struct routingPlanServer *rps;
3313 if(!active)
3314 return;
3315 if(!(rp = dict_find(opserv_routing_plans, active, NULL)))
3316 return;
3317 if((rps = dict_find(rp->servers, server, NULL))) {
3318 if(!strcasecmp(rps->uplink, uplink)) {
3319 /* server's uplink is uplink */
3320 routing_change_karma(rps, server, change);
3321 return;
3322 }
3323 }
3324 if((rps = dict_find(rp->servers, uplink, NULL))) {
3325 if(!strcasecmp(rps->uplink, server)) {
3326 /* uplink's uplink is server */
3327 routing_change_karma(rps, uplink, change);
3328 return;
3329 }
3330 }
3331 }
3332
3333 void
3334 routing_handle_squit(char *server, char *uplink, char *message)
3335 {
3336 log_module(MAIN_LOG, LOG_DEBUG, "Routing_handle_squit(%s, %s)", server, message);
3337
3338 char *val;
3339
3340 if(match_ircglob(message, "Ping timeout")) {
3341 routing_handle_neg_karma(server, uplink, KARMA_PINGOUT);
3342 /* if conn_pingout is true, try to reconnect it obaying karma rules. */
3343
3344 val = dict_find(opserv_routing_plan_options, "CONN_PINGOUT", 0);
3345 if(val && enabled_string(val))
3346 routing_connect_one(opserv_route, server);
3347 }
3348 else if(match_ircglob(message, "Read error:*")) {
3349 routing_handle_neg_karma(server, uplink, KARMA_READERROR);
3350 /* if conn_readerror is true, try to reconnect it obaying karma rules. */
3351 val = dict_find(opserv_routing_plan_options, "CONN_READERROR", 0);
3352 if(val && enabled_string(val))
3353 routing_connect_one(opserv_route, server);
3354 }
3355 /* Else whats the message (an oper squit it?) dont interfere */
3356 }
3357
3358 void
3359 routing_handle_connect(char *server, char *uplink)
3360 {
3361 char *active;
3362 struct routingPlan *rp;
3363 struct routingPlanServer *rps;
3364 dict_iterator_t it;
3365
3366 log_module(MAIN_LOG, LOG_DEBUG, "routing_handle_connect(%s, %s)", server, uplink);
3367 /* delete a pending connection timer, if any */
3368 routing_delete_connect_timer(server);
3369 /* check if routing is active... */
3370 active = dict_find(opserv_routing_plan_options, "ACTIVE", NULL);
3371 if(!active)
3372 return;
3373 rp = dict_find(opserv_routing_plans, active, NULL);
3374 if(!rp)
3375 return;
3376
3377 /* If its offline, mark it online again.. */
3378 if((rps = dict_find(rp->servers, server, NULL))) {
3379 if(rps->offline == true) {
3380 rps->offline = false;
3381 if(rps->secondaryuplink) {
3382 /* re-activate to move it back to its primary */
3383 activate_routing(NULL, NULL, NULL);
3384 }
3385 }
3386 /* if there are any servers missing who have this server as uplink try to connect them. */
3387 routing_connect_children(opserv_route, server);
3388 }
3389 /* foreach server x3 knows about, if the uplink is this server, call this function on the child. */
3390 for (it=dict_first(servers); it; it=iter_next(it)) {
3391 struct server *sptr = iter_data(it);
3392 if(sptr && sptr->uplink && !strcasecmp(server, sptr->uplink->name)) {
3393 log_module(MAIN_LOG, LOG_DEBUG, "routing_handle_connect calling self on %s's leaf %s", server, sptr->name);
3394 routing_handle_connect(sptr->name, sptr->uplink->name);
3395 }
3396 }
3397 }
3398
3399 /* Handle a failed attempt at connecting servers
3400 * - we should only get here regarding servers X3 attempted to link, other
3401 * opers link messages go to them not to us
3402 */
3403 void
3404 routing_handle_connect_failure(struct server *source, char *server, char *message)
3405 {
3406 char *active;
3407 struct routingPlan *rp;
3408 struct routingPlanServer *rps;
3409 log_module(MAIN_LOG, LOG_ERROR, "Failed to connect %s to %s: %s", server, source->name, message);
3410 /* remove the waiting connection n timeq */
3411 routing_delete_connect_timer(server);
3412 /* check if routing is active.. */
3413 active = dict_find(opserv_routing_plan_options, "ACTIVE", NULL);
3414 if(!active)
3415 return;
3416 rp = dict_find(opserv_routing_plans, active, NULL);
3417 if(!rp)
3418 return;
3419
3420 if( ((rps = dict_find(rp->servers, server, NULL)) && !strcasecmp(rps->uplink, source->name))) {
3421 /* failed to connect to its primary uplink */
3422 if(rps->offline == false) {
3423 rps->offline = true;
3424 if(rps->secondaryuplink) {
3425 /* re-activate routing so the secondary
3426 * becomes its uplink, and try again */
3427 activate_routing(NULL, NULL, NULL);
3428 /* attempt to link it again. */
3429 routing_connect_one(opserv_route, server);
3430 /* TODO: reconnect any missing servers who
3431 * normally connect to server, using their backups.
3432 * Probably should just issue a reroute C here. */
3433 }
3434 }
3435 }
3436 }
3437
3438 /* Delete any existing timers, and start the timer again
3439 * using the passed time for the first run.
3440 * - this is called during a retry_period change
3441 * before it has saved the new value. */
3442 void reroute_timer_reset(unsigned int time)
3443 {
3444 timeq_del(0, reroute_timer, NULL, TIMEQ_IGNORE_DATA & TIMEQ_IGNORE_WHEN);
3445 timeq_add(now + time, reroute_timer, "run");
3446 }
3447
3448 static MODCMD_FUNC(cmd_routing_set)
3449 {
3450 char *option = argv[1];
3451 char *options[] = {"ACTIVE", "RETRY_PERIOD", "CONN_PINGOUT", "CONN_READERROR", "KARMA", "DEFAULT_PORT", NULL};
3452 int i;
3453 if(argc < 2) {
3454 route_show_options(cmd, user);
3455 }
3456 else {
3457 char *found_option = NULL;
3458 for(i = 0; options[i]; i++) {
3459 if(!strcasecmp(options[i], option))
3460 found_option = options[i];
3461 }
3462 if(!found_option) {
3463 reply("OSMSG_ROUTINGPLAN_OPTION_NOT_FOUND", option);
3464 return 0;
3465 }
3466 if(argc > 2) {
3467 char *value = argv[2];
3468 char buff[MAXLEN]; /* whats the max length of unsigned int as printf'd? */
3469 if(!strcmp(found_option, "ACTIVE")) { /* must be an existing route. */
3470 if(disabled_string(value) || false_string(value)) {
3471 /* make none of the maps active */
3472 activate_routing(cmd, user, "*");
3473 reply("OSMSG_ROUTING_DISABLED");
3474 return 1;
3475 }
3476 else if(!activate_routing(cmd, user, value)) {
3477 /* neg reply handled in activate_routing */
3478 return 0;
3479 }
3480 }
3481 if(!strcmp(found_option, "CONN_READERROR") || !strcmp(found_option, "CONN_PINGOUT") ||
3482 !strcmp(found_option, "KARMA") ) {
3483 if( enabled_string(value)) {
3484 value = "ENABLED";
3485 }
3486 else if( disabled_string(value) ) {
3487 value = "DISABLED";
3488 }
3489 else {
3490 reply("MSG_INVALID_BINARY", value);
3491 return 0;
3492 }
3493 }
3494 if(!strcmp(found_option, "RETRY_PERIOD")) {
3495 unsigned int duration = ParseInterval(value);
3496 sprintf(buff, "%d", duration);
3497 value = buff;
3498 reroute_timer_reset(duration);
3499 }
3500 /* set the value here */
3501 dict_remove(opserv_routing_plan_options, found_option);
3502 dict_insert(opserv_routing_plan_options, strdup(found_option), strdup(value));
3503 route_show_option(cmd, user, found_option);
3504 }
3505 else {
3506 /* show the current value */
3507 route_show_option(cmd, user, found_option);
3508 }
3509 }
3510 return 1;
3511 }
3512
3513 static MODCMD_FUNC(cmd_stats_routing_plans) {
3514 dict_iterator_t rpit;
3515 dict_iterator_t it;
3516 struct routingPlan *rp;
3517 reply("OSMSG_ROUTINGPLAN_LIST");
3518 reply("OSMSG_ROUTINGPLAN_BAR");
3519 for(rpit = dict_first(opserv_routing_plans); rpit; rpit = iter_next(rpit)) {
3520 const char* name = iter_key(rpit);
3521 rp = iter_data(rpit);
3522 reply("OSMSG_ROUTINGPLAN_NAME", name);
3523 for(it = dict_first(rp->servers); it; it = iter_next(it)) {
3524 const char* servername = iter_key(it);
3525 struct routingPlanServer *rps = iter_data(it);
3526 reply("OSMSG_ROUTINGPLAN_SERVER", servername, rps->port, rps->uplink, rps->karma, rps->offline? "offline" : "online", rps->secondaryuplink ? rps->secondaryuplink : "None");
3527 }
3528
3529 }
3530 reply("OSMSG_ROUTINGPLAN_END");
3531 route_show_options(cmd, user);
3532 return 1;
3533 }
3534
3535
3536 static MODCMD_FUNC(cmd_routing_addplan)
3537 {
3538 char *name;
3539 name = argv[1];
3540 /* dont allow things like 'off', 'false', '0' because thats how we disable routing. */
3541 if(*name && !disabled_string(name) && !false_string(name)) {
3542 if(opserv_add_routing_plan(name)) {
3543 reply("OSMSG_ADDPLAN_SUCCESS", name);
3544 return 1;
3545 }
3546 else {
3547 reply("OSMSG_ADDPLAN_FAILED", name);
3548 return 0;
3549 }
3550 }
3551 else
3552 {
3553 reply("OSMSG_INVALID_PLAN");
3554 return 0;
3555 }
3556 }
3557
3558 static MODCMD_FUNC(cmd_routing_delplan)
3559 {
3560 char *name = argv[1];
3561 if( dict_remove(opserv_routing_plans, name) ) {
3562 char *active = dict_find(opserv_routing_plan_options, "ACTIVE", NULL);
3563 if(active && !strcasecmp(active, name)) {
3564 /* if this was the active plan, disable routing */
3565 activate_routing(cmd, user, "*");
3566 reply("OSMSG_ROUTING_DISABLED");
3567 }
3568 reply("OSMSG_PLAN_DELETED");
3569 return 1;
3570 }
3571 else {
3572 reply("OSMSG_PLAN_NOT_FOUND", name);
3573 return 0;
3574 }
3575 }
3576
3577 static MODCMD_FUNC(cmd_routing_addserver)
3578 {
3579 char *plan;
3580 char *server;
3581 char *portstr;
3582 char *uplink;
3583 char *second;
3584 unsigned int port;
3585 struct routingPlan *rp;
3586
3587 plan = argv[1];
3588 server = strdup(argv[2]);
3589 server = strtok(server, ":");
3590 portstr = strtok(NULL, ":");
3591 if(portstr)
3592 port = atoi(portstr);
3593 else {
3594 char *str = dict_find(opserv_routing_plan_options, "DEFAULT_PORT", NULL);
3595 uplink = argv[3];
3596 port = str ? atoi(str) : 0;
3597 }
3598 uplink = argv[3];
3599 if(argc > 4)
3600 second = argv[4];
3601 else
3602 second = NULL;
3603
3604 if( (rp = dict_find(opserv_routing_plans, plan, 0))) {
3605 char *active;
3606 opserv_routing_plan_add_server(rp, server, uplink, port, KARMA_DEFAULT, second, 0);
3607 reply("OSMSG_PLAN_SERVER_ADDED", server);
3608 if((active = dict_find(opserv_routing_plan_options, "ACTIVE", 0)) && !strcasecmp(plan, active)) {
3609 /* re-activate routing with new info */
3610 activate_routing(cmd, user, NULL);
3611 }
3612
3613 free(server);
3614 return 1;
3615 }
3616 else {
3617 reply("OSMSG_PLAN_NOT_FOUND", plan);
3618 free(server);
3619 return 0;
3620 }
3621 }
3622
3623 static MODCMD_FUNC(cmd_routing_delserver)
3624 {
3625 char *plan;
3626 char *server;
3627 struct routingPlan *rp;
3628 plan = argv[1];
3629 server = argv[2];
3630 if( (rp = dict_find(opserv_routing_plans, plan, 0))) {
3631 if(dict_remove(rp->servers, server)) {
3632 char *active;
3633 reply("OSMSG_PLAN_SERVER_DELETED");
3634 if((active = dict_find(opserv_routing_plan_options, "ACTIVE", 0)) && !strcasecmp(plan, active)) {
3635 /* re-activate routing with new info */
3636 activate_routing(cmd, user, NULL);
3637 }
3638
3639 return 1;
3640 }
3641 else {
3642 reply("OSMSG_PLAN_SERVER_NOT_FOUND", server);
3643 return 0;
3644 }
3645 }
3646 else {
3647 reply("OSMSG_PLAN_NOT_FOUND", plan);
3648 return 0;
3649 }
3650 }
3651
3652
3653 /*************************************************
3654 * Functions to deal with 'route map' command */
3655
3656 /* Figures out how many downlinks there are for proper
3657 * drawing of the route map */
3658 int
3659 num_route_downlinks(struct route *route, char *name)
3660 {
3661 struct routeList *rptr;
3662 int num = 0;
3663 rptr = route->servers;
3664 while(rptr) {
3665 if(!strcasecmp(rptr->uplink, name))
3666 num++;
3667 rptr = rptr->next;
3668 }
3669 return num;
3670 }
3671
3672 void
3673 show_route_downlinks(struct svccmd *cmd, struct route *route, struct userNode *user, char *name, char *prevpre, char *arrowchar, int reset)
3674 {
3675 struct routeList *servPtr;
3676 struct server *sptr;
3677 int j;
3678 char pre[MAXLEN];
3679 char *nextpre;
3680 char *status;
3681 int num = 0;
3682 static int depth = 0;
3683
3684 if(reset)
3685 depth = 0;
3686
3687 nextpre = malloc(MAXLEN);
3688 strcpy(pre, prevpre);
3689
3690 sptr = GetServerH(name);
3691 if((servPtr = find_routeList_server(route, name))) {
3692 if(!sptr)
3693 status = " ";
3694 else if (!strcasecmp(sptr->uplink->name, servPtr->uplink))
3695 status = "X";
3696 else if(servPtr->secondaryuplink && !strcasecmp(sptr->name, servPtr->secondaryuplink))
3697 status = "/";
3698 else
3699 status = "!";
3700 reply("OSMSG_DOWNLINKS_FORMAT_A", pre, arrowchar, name, status);
3701 }
3702 else
3703 reply("OSMSG_DOWNLINKS_FORMAT_B", self->name);
3704 j = num_route_downlinks(route, name);
3705 servPtr = route->servers;
3706 while(servPtr) {
3707 if(!strcasecmp(servPtr->uplink, name)) {
3708 strcpy(nextpre, pre);
3709 if(depth++ > 0) {
3710 if(arrowchar[0] == '`')
3711 strcat(nextpre, " ");
3712 else
3713 strcat(nextpre, "| ");
3714 }
3715 if(j > ++num) {
3716 show_route_downlinks(cmd, route, user, servPtr->server, nextpre, "|", 0);
3717 }
3718 else {
3719 show_route_downlinks(cmd, route, user, servPtr->server, nextpre, "`", 0);
3720 }
3721 }
3722 servPtr = servPtr->next;
3723 }
3724 free(nextpre);
3725 }
3726
3727 int
3728 show_route_map(struct route *route, struct userNode *user, struct svccmd *cmd)
3729 {
3730 if(!route || !route->servers) {
3731 reply("OSMSG_ROUTELIST_EMPTY");
3732 return 0;
3733 }
3734
3735 char *serviceName = conf_get_data("server/hostname", RECDB_QSTRING);
3736 reply("OSMSG_ROUTELIST_AS_PLANNED");
3737 show_route_downlinks(cmd, route, user, serviceName, "", "`", 1);
3738 reply("OSMSG_MAP_CENTERED", route->centered ? "is" : "is not", route->maxdepth);
3739 return 1;
3740 }
3741
3742 static MODCMD_FUNC(cmd_routing_map)
3743 {
3744 show_route_map(opserv_route, user, cmd);
3745 return 1;
3746 }
3747
3748
3749
3750
3751 /* End of auto routing functions *
3752 *********************************/
3753
3754 static MODCMD_FUNC(cmd_addbad)
3755 {
3756 unsigned int arg, count;
3757 dict_iterator_t it;
3758 int bad_found, exempt_found;
3759
3760 /* Create the bad word if it doesn't exist. */
3761 bad_found = !opserv_add_bad_word(cmd, user, argv[1]);
3762
3763 /* Look for exception modifiers. */
3764 for (arg=2; arg<argc; arg++) {
3765 if (!irccasecmp(argv[arg], "except")) {
3766 reply("MSG_DEPRECATED_COMMAND", "addbad ... except", "addexempt");
3767 if (++arg > argc) {
3768 reply("MSG_MISSING_PARAMS", "except");
3769 break;
3770 }
3771 for (count = 0; (arg < argc) && IsChannelName(argv[arg]); arg++) {
3772 dict_find(opserv_exempt_channels, argv[arg], &exempt_found);
3773 if (!exempt_found) {
3774 dict_insert(opserv_exempt_channels, strdup(argv[arg]), NULL);
3775 count++;
3776 }
3777 }
3778 reply("OSMSG_ADDED_EXEMPTIONS", count);
3779 } else {
3780 reply("MSG_DEPRECATED_COMMAND", "addbad (with modifiers)", "addbad");
3781 reply("OSMSG_BAD_MODIFIER", argv[arg]);
3782 }
3783 }
3784
3785 /* Scan for existing channels that match the new bad word. */
3786 if (!bad_found) {
3787 for (it = dict_first(channels); it; it = iter_next(it)) {
3788 struct chanNode *channel = iter_data(it);
3789
3790 if (!opserv_bad_channel(channel->name))
3791 continue;
3792 channel->bad_channel = 1;
3793 if (channel->name[0] == '#')
3794 opserv_shutdown_channel(channel, "OSMSG_ILLEGAL_REASON");
3795 else {
3796 unsigned int nn;
3797 for (nn=0; nn<channel->members.used; nn++) {
3798 struct userNode *user = channel->members.list[nn]->user;
3799 DelUser(user, cmd->parent->bot, 1, "OSMSG_ILLEGAL_KILL_REASON");
3800 }
3801 }
3802 }
3803 }
3804
3805 return 1;
3806 }
3807
3808 static MODCMD_FUNC(cmd_delbad)
3809 {
3810 dict_iterator_t it;
3811 unsigned int nn;
3812
3813 for (nn=0; nn<opserv_bad_words->used; nn++) {
3814 if (!irccasecmp(opserv_bad_words->list[nn], argv[1])) {
3815 string_list_delete(opserv_bad_words, nn);
3816 for (it = dict_first(channels); it; it = iter_next(it)) {
3817 channel = iter_data(it);
3818 if (irccasestr(channel->name, argv[1])
3819 && !opserv_bad_channel(channel->name)) {
3820 DelChannelUser(cmd->parent->bot, channel, "Channel name no longer contains a bad word.", 1);
3821 timeq_del(0, opserv_part_channel, channel, TIMEQ_IGNORE_WHEN);
3822 channel->bad_channel = 0;
3823 }
3824 }
3825 reply("OSMSG_REMOVED_BAD", argv[1]);
3826 return 1;
3827 }
3828 }
3829 reply("OSMSG_NOT_BAD_WORD", argv[1]);
3830 return 0;
3831 }
3832
3833 static MODCMD_FUNC(cmd_addexempt)
3834 {
3835 const char *chanName;
3836
3837 if ((argc > 1) && IsChannelName(argv[1])) {
3838 chanName = argv[1];
3839 } else {
3840 reply("MSG_NOT_CHANNEL_NAME");
3841 OPSERV_SYNTAX();
3842 return 0;
3843 }
3844 dict_insert(opserv_exempt_channels, strdup(chanName), NULL);
3845 channel = GetChannel(chanName);
3846 if (channel) {
3847 if (channel->bad_channel) {
3848 DelChannelUser(cmd->parent->bot, channel, "Channel is now exempt from bad-word checking.", 1);
3849 timeq_del(0, opserv_part_channel, channel, TIMEQ_IGNORE_WHEN);
3850 }
3851 channel->bad_channel = 0;
3852 }
3853 reply("OSMSG_ADDED_EXEMPTION", chanName);
3854 return 1;
3855 }
3856
3857 static MODCMD_FUNC(cmd_delexempt)
3858 {
3859 const char *chanName;
3860
3861 if ((argc > 1) && IsChannelName(argv[1])) {
3862 chanName = argv[1];
3863 } else {
3864 reply("MSG_NOT_CHANNEL_NAME");
3865 OPSERV_SYNTAX();
3866 return 0;
3867 }
3868 if (!dict_remove(opserv_exempt_channels, chanName)) {
3869 reply("OSMSG_NOT_EXEMPT", chanName);
3870 return 0;
3871 }
3872 reply("OSMSG_REMOVED_EXEMPTION", chanName);
3873 return 1;
3874 }
3875
3876 static void
3877 opserv_expire_trusted_host(void *data)
3878 {
3879 struct trusted_host *th = data;
3880 dict_remove(opserv_trusted_hosts, th->ipaddr);
3881 }
3882
3883 static void
3884 opserv_add_trusted_host(const char *ipaddr, unsigned int limit, const char *issuer, time_t issued, time_t expires, const char *reason)
3885 {
3886 struct trusted_host *th;
3887 th = calloc(1, sizeof(*th));
3888 if (!th)
3889 return;
3890 th->ipaddr = strdup(ipaddr);
3891 th->reason = reason ? strdup(reason) : NULL;
3892 th->issuer = issuer ? strdup(issuer) : NULL;
3893 th->issued = issued;
3894 th->limit = limit;
3895 th->expires = expires;
3896 dict_insert(opserv_trusted_hosts, th->ipaddr, th);
3897 if (th->expires)
3898 timeq_add(th->expires, opserv_expire_trusted_host, th);
3899 }
3900
3901 static void
3902 free_trusted_host(void *data)
3903 {
3904 struct trusted_host *th = data;
3905 free(th->ipaddr);
3906 free(th->reason);
3907 free(th->issuer);
3908 free(th);
3909 }
3910
3911 static MODCMD_FUNC(cmd_addtrust)
3912 {
3913 unsigned long interval;
3914 char *reason, *tmp;
3915 irc_in_addr_t tmpaddr;
3916 unsigned int count;
3917
3918 if (dict_find(opserv_trusted_hosts, argv[1], NULL)) {
3919 reply("OSMSG_ALREADY_TRUSTED", argv[1]);
3920 return 0;
3921 }
3922
3923 if (!irc_pton(&tmpaddr, NULL, argv[1])) {
3924 reply("OSMSG_BAD_IP", argv[1]);
3925 return 0;
3926 }
3927
3928 count = strtoul(argv[2], &tmp, 10);
3929 if (*tmp != '\0') {
3930 reply("OSMSG_BAD_NUMBER", argv[2]);
3931 return 0;
3932 }
3933
3934 interval = ParseInterval(argv[3]);
3935 if (!interval && strcmp(argv[3], "0")) {
3936 reply("MSG_INVALID_DURATION", argv[3]);
3937 return 0;
3938 }
3939
3940 reason = unsplit_string(argv+4, argc-4, NULL);
3941 opserv_add_trusted_host(argv[1], count, user->handle_info->handle, now, interval ? (now + interval) : 0, reason);
3942 reply("OSMSG_ADDED_TRUSTED");
3943 return 1;
3944 }
3945
3946 static MODCMD_FUNC(cmd_edittrust)
3947 {
3948 unsigned long interval;
3949 struct trusted_host *th;
3950 char *reason, *tmp;
3951 unsigned int count;
3952
3953 th = dict_find(opserv_trusted_hosts, argv[1], NULL);
3954 if (!th) {
3955 reply("OSMSG_NOT_TRUSTED", argv[1]);
3956 return 0;
3957 }
3958 count = strtoul(argv[2], &tmp, 10);
3959 if (!count || *tmp) {
3960 reply("OSMSG_BAD_NUMBER", argv[2]);
3961 return 0;
3962 }
3963 interval = ParseInterval(argv[3]);
3964 if (!interval && strcmp(argv[3], "0")) {
3965 reply("MSG_INVALID_DURATION", argv[3]);
3966 return 0;
3967 }
3968 reason = unsplit_string(argv+4, argc-4, NULL);
3969 if (th->expires)
3970 timeq_del(th->expires, opserv_expire_trusted_host, th, 0);
3971
3972 free(th->reason);
3973 th->reason = strdup(reason);
3974 free(th->issuer);
3975 th->issuer = strdup(user->handle_info->handle);
3976 th->issued = now;
3977 th->limit = count;
3978 if (interval) {
3979 th->expires = now + interval;
3980 timeq_add(th->expires, opserv_expire_trusted_host, th);
3981 } else
3982 th->expires = 0;
3983 reply("OSMSG_UPDATED_TRUSTED", th->ipaddr);
3984 return 1;
3985 }
3986
3987 static MODCMD_FUNC(cmd_deltrust)
3988 {
3989 unsigned int n;
3990
3991 for (n=1; n<argc; n++) {
3992 struct trusted_host *th = dict_find(opserv_trusted_hosts, argv[n], NULL);
3993 if (!th)
3994 continue;
3995 if (th->expires)
3996 timeq_del(th->expires, opserv_expire_trusted_host, th, 0);
3997 dict_remove(opserv_trusted_hosts, argv[n]);
3998 }
3999 reply("OSMSG_REMOVED_TRUSTED");
4000 return 1;
4001 }
4002
4003 /* This doesn't use dict_t because it's a little simpler to open-code the
4004 * comparisons (and simpler arg-passing for the ADD subcommand).
4005 */
4006 static MODCMD_FUNC(cmd_clone)
4007 {
4008 int i;
4009 struct userNode *clone;
4010
4011 clone = GetUserH(argv[2]);
4012 if (!irccasecmp(argv[1], "ADD")) {
4013 char *userinfo;
4014 char ident[USERLEN+1];
4015
4016 if (argc < 5) {
4017 reply("MSG_MISSING_PARAMS", argv[1]);
4018 OPSERV_SYNTAX();
4019 return 0;
4020 }
4021 if (clone) {
4022 reply("OSMSG_CLONE_EXISTS", argv[2]);
4023 return 0;
4024 }
4025 userinfo = unsplit_string(argv+4, argc-4, NULL);
4026 for (i=0; argv[3][i] && (i<USERLEN); i++) {
4027 if (argv[3][i] == '@') {
4028 ident[i++] = 0;
4029 break;
4030 } else {
4031 ident[i] = argv[3][i];
4032 }
4033 }
4034 if (!argv[3][i] || (i==USERLEN)) {
4035 reply("OSMSG_NOT_A_HOSTMASK");
4036 return 0;
4037 }
4038 if (!(clone = AddClone(argv[2], ident, argv[3]+i, userinfo))) {
4039 reply("OSMSG_CLONE_FAILED", argv[2]);
4040 return 0;
4041 }
4042 reply("OSMSG_CLONE_ADDED", clone->nick);
4043 return 1;
4044 }
4045 if (!clone) {
4046 reply("MSG_NICK_UNKNOWN", argv[2]);
4047 return 0;
4048 }
4049 if (clone->uplink != self || IsService(clone)) {
4050 reply("OSMSG_NOT_A_CLONE", clone->nick);
4051 return 0;
4052 }
4053 if (!irccasecmp(argv[1], "REMOVE")) {
4054 const char *reason;
4055 if (argc > 3) {
4056 reason = unsplit_string(argv+3, argc-3, NULL);
4057 } else {
4058 char *tmp;
4059 tmp = alloca(strlen(clone->nick) + strlen(OSMSG_PART_REASON));
4060 sprintf(tmp, OSMSG_PART_REASON, clone->nick);
4061 reason = tmp;
4062 }
4063 DelUser(clone, NULL, 1, reason);
4064 reply("OSMSG_CLONE_REMOVED", argv[2]);
4065 return 1;
4066 }
4067 if (argc < 4) {
4068 reply("MSG_MISSING_PARAMS", argv[1]);
4069 OPSERV_SYNTAX();
4070 return 0;
4071 }
4072 channel = GetChannel(argv[3]);
4073 if (!irccasecmp(argv[1], "JOIN")) {
4074 if (!channel
4075 && !(channel = AddChannel(argv[3], now, NULL, NULL, NULL))) {
4076 reply("MSG_CHANNEL_UNKNOWN", argv[3]);
4077 return 0;
4078 }
4079 AddChannelUser(clone, channel);
4080 reply("OSMSG_CLONE_JOINED", clone->nick, channel->name);
4081 return 1;
4082 }
4083 if (!irccasecmp(argv[1], "PART")) {
4084 if (!channel) {
4085 reply("MSG_CHANNEL_UNKNOWN", argv[3]);
4086 return 0;
4087 }
4088 if (!GetUserMode(channel, clone)) {
4089 reply("OSMSG_NOT_ON_CHANNEL", clone->nick, channel->name);
4090 return 0;
4091 }
4092 reply("OSMSG_CLONE_PARTED", clone->nick, channel->name);
4093 DelChannelUser(clone, channel, "Leaving.", 0);
4094 return 1;
4095 }
4096 if (!irccasecmp(argv[1], "OP")) {
4097 struct mod_chanmode change;
4098 if (!channel) {
4099 reply("MSG_CHANNEL_UNKNOWN", argv[3]);
4100 return 0;
4101 }
4102 mod_chanmode_init(&change);
4103 change.argc = 1;
4104 change.args[0].mode = MODE_CHANOP;
4105 change.args[0].u.member = GetUserMode(channel, clone);
4106 if (!change.args[0].u.member) {
4107 reply("OSMSG_NOT_ON_CHANNEL", clone->nick, channel->name);
4108 return 0;
4109 }
4110 modcmd_chanmode_announce(&change);
4111 reply("OSMSG_OPS_GIVEN", channel->name, clone->nick);
4112 return 1;
4113 }
4114 if (!irccasecmp(argv[1], "HOP")) {
4115 struct mod_chanmode change;
4116 if (!channel) {
4117 reply("MSG_CHANNEL_UNKNOWN", argv[3]);
4118 return 0;
4119 }
4120 mod_chanmode_init(&change);
4121 change.argc = 1;
4122 change.args[0].mode = MODE_HALFOP;
4123 change.args[0].u.member = GetUserMode(channel, clone);
4124 if (!change.args[0].u.member) {
4125 reply("OSMSG_NOT_ON_CHANNEL", clone->nick, channel->name);
4126 return 0;
4127 }
4128 modcmd_chanmode_announce(&change);
4129 reply("OSMSG_HOPS_GIVEN", channel->name, clone->nick);
4130 return 1;
4131 }
4132 if (argc < 5) {
4133 reply("MSG_MISSING_PARAMS", argv[1]);
4134 OPSERV_SYNTAX();
4135 return 0;
4136 }
4137 if (!irccasecmp(argv[1], "SAY")) {
4138 char *text = unsplit_string(argv+4, argc-4, NULL);
4139 irc_privmsg(clone, argv[3], text);
4140 reply("OSMSG_CLONE_SAID", clone->nick, argv[3]);
4141 return 1;
4142 }
4143 reply("OSMSG_UNKNOWN_SUBCOMMAND", argv[1], argv[0]);
4144 return 0;
4145 }
4146
4147 static struct helpfile_expansion
4148 opserv_help_expand(const char *variable)
4149 {
4150 extern struct userNode *message_source;
4151 struct helpfile_expansion exp;
4152 struct service *service;
4153 struct svccmd *cmd;
4154 dict_iterator_t it;
4155 int row;
4156 unsigned int level;
4157
4158 if (!(service = service_find(message_source->nick))) {
4159 exp.type = HF_STRING;
4160 exp.value.str = NULL;
4161 } else if (!irccasecmp(variable, "index")) {
4162 exp.type = HF_TABLE;
4163 exp.value.table.length = 1;
4164 exp.value.table.width = 2;
4165 exp.value.table.flags = TABLE_REPEAT_HEADERS | TABLE_REPEAT_ROWS;
4166 exp.value.table.contents = calloc(dict_size(service->commands)+1, sizeof(char**));
4167 exp.value.table.contents[0] = calloc(exp.value.table.width, sizeof(char*));
4168 exp.value.table.contents[0][0] = "Command";
4169 exp.value.table.contents[0][1] = "Level";
4170 for (it=dict_first(service->commands); it; it=iter_next(it)) {
4171 cmd = iter_data(it);
4172 row = exp.value.table.length++;
4173 exp.value.table.contents[row] = calloc(exp.value.table.width, sizeof(char*));
4174 exp.value.table.contents[row][0] = iter_key(it);
4175 level = cmd->min_opserv_level;
4176 if (!level_strings[level]) {
4177 level_strings[level] = malloc(16);
4178 snprintf(level_strings[level], 16, "%3d", level);
4179 }
4180 exp.value.table.contents[row][1] = level_strings[level];
4181 }
4182 } else if (!strncasecmp(variable, "level", 5)) {
4183 cmd = dict_find(service->commands, variable+6, NULL);
4184 exp.type = HF_STRING;
4185 if (cmd) {
4186 level = cmd->min_opserv_level;
4187 exp.value.str = malloc(16);
4188 snprintf(exp.value.str, 16, "%3d", level);
4189 } else {
4190 exp.value.str = NULL;
4191 }
4192 } else {
4193 exp.type = HF_STRING;
4194 exp.value.str = NULL;
4195 }
4196 return exp;
4197 }
4198
4199 struct modcmd *
4200 opserv_define_func(const char *name, modcmd_func_t *func, int min_level, int reqchan, int min_argc)
4201 {
4202 char buf[16], *flags = NULL;
4203 unsigned int iflags = 0;
4204 sprintf(buf, "%d", min_level);
4205 switch (reqchan) {
4206 case 1: flags = "+acceptchan"; break;
4207 case 3: flags = "+acceptpluschan"; /* fall through */
4208 case 2: iflags = MODCMD_REQUIRE_CHANNEL; break;
4209 }
4210 if (flags) {
4211 return modcmd_register(opserv_module, name, func, min_argc, iflags, "level", buf, "flags", flags, "flags", "+oper", NULL);
4212 } else {
4213 return modcmd_register(opserv_module, name, func, min_argc, iflags, "level", buf, "flags", "+oper", NULL);
4214 }
4215 }
4216
4217 int add_reserved(const char *key, void *data, void *extra)
4218 {
4219 struct chanNode *chan;
4220 struct record_data *rd = data;
4221 const char *ident, *hostname, *desc;
4222 unsigned int i;
4223 struct userNode *reserve;
4224 ident = database_get_data(rd->d.object, KEY_IDENT, RECDB_QSTRING);
4225 if (!ident) {
4226 log_module(OS_LOG, LOG_ERROR, "Missing ident for reserve of %s", key);
4227 return 0;
4228 }
4229 hostname = database_get_data(rd->d.object, KEY_HOSTNAME, RECDB_QSTRING);
4230 if (!hostname) {
4231 log_module(OS_LOG, LOG_ERROR, "Missing hostname for reserve of %s", key);
4232 return 0;
4233 }
4234 desc = database_get_data(rd->d.object, KEY_DESC, RECDB_QSTRING);
4235 if (!desc) {
4236 log_module(OS_LOG, LOG_ERROR, "Missing description for reserve of %s", key);
4237 return 0;
4238 }
4239 if ((reserve = AddClone(key, ident, hostname, desc))) {
4240 reserve->modes |= FLAGS_PERSISTENT;
4241 dict_insert(extra, reserve->nick, reserve);
4242 }
4243
4244 if (autojoin_channels && reserve) {
4245 for (i = 0; i < autojoin_channels->used; i++) {
4246 chan = AddChannel(autojoin_channels->list[i], now, "+nt", NULL, NULL);
4247 AddChannelUser(reserve, chan)->modes |= MODE_VOICE;
4248 }
4249 }
4250
4251 return 0;
4252 }
4253
4254 static unsigned int
4255 foreach_matching_user(const char *hostmask, discrim_search_func func, void *extra)
4256 {
4257 discrim_t discrim;
4258 char *dupmask;
4259 unsigned int matched;
4260
4261 if (!self->uplink) return 0;
4262 discrim = calloc(1, sizeof(*discrim));
4263 discrim->limit = dict_size(clients);
4264 discrim->max_level = ~0;
4265 discrim->max_ts = now;
4266 discrim->max_channels = INT_MAX;
4267 discrim->authed = -1;
4268 discrim->info_space = -1;
4269 discrim->intra_scmp = 0;
4270 discrim->intra_dcmp = 0;
4271 discrim->use_regex = 0;
4272 discrim->silent = 0;
4273 dupmask = strdup(hostmask);
4274 if (split_ircmask(dupmask, &discrim->mask_nick, &discrim->mask_ident, &discrim->mask_host)) {
4275 if (!irc_pton(&discrim->ip_mask, &discrim->ip_mask_bits, discrim->mask_host))
4276 discrim->ip_mask_bits = 0;
4277 matched = opserv_discrim_search(discrim, func, extra);
4278 } else {
4279 log_module(OS_LOG, LOG_ERROR, "Couldn't split IRC mask for gag %s!", hostmask);
4280 matched = 0;
4281 }
4282 free(discrim);
4283 free(dupmask);
4284 return matched;
4285 }
4286
4287 static unsigned int
4288 gag_free(struct gag_entry *gag)
4289 {
4290 unsigned int ungagged;
4291
4292 /* Remove from gag list */
4293 if (gagList == gag) {
4294 gagList = gag->next;
4295 } else {
4296 struct gag_entry *prev;
4297 for (prev = gagList; prev->next != gag; prev = prev->next) ;
4298 prev->next = gag->next;
4299 }
4300
4301 ungagged = foreach_matching_user(gag->mask, ungag_helper_func, NULL);
4302
4303 /* Deallocate storage */
4304 free(gag->reason);
4305 free(gag->owner);
4306 free(gag->mask);
4307 free(gag);
4308
4309 return ungagged;
4310 }
4311
4312 static void
4313 gag_expire(void *data)
4314 {
4315 gag_free(data);
4316 }
4317
4318 unsigned int
4319 gag_create(const char *mask, const char *owner, const char *reason, time_t expires)
4320 {
4321 struct gag_entry *gag;
4322
4323 /* Create gag and put it into linked list */
4324 gag = calloc(1, sizeof(*gag));
4325 gag->mask = strdup(mask);
4326 gag->owner = strdup(owner ? owner : "<unknown>");
4327 gag->reason = strdup(reason ? reason : "<unknown>");
4328 gag->expires = expires;
4329 if (gag->expires)
4330 timeq_add(gag->expires, gag_expire, gag);
4331 gag->next = gagList;
4332 gagList = gag;
4333
4334 /* If we're linked, see if who the gag applies to */
4335 return foreach_matching_user(mask, gag_helper_func, gag);
4336 }
4337
4338 static int
4339 add_gag_helper(const char *key, void *data, UNUSED_ARG(void *extra))
4340 {
4341 struct record_data *rd = data;
4342 char *owner, *reason, *expstr;
4343 time_t expires;
4344
4345 owner = database_get_data(rd->d.object, KEY_OWNER, RECDB_QSTRING);
4346 reason = database_get_data(rd->d.object, KEY_REASON, RECDB_QSTRING);
4347 expstr = database_get_data(rd->d.object, KEY_EXPIRES, RECDB_QSTRING);
4348 expires = expstr ? strtoul(expstr, NULL, 0) : 0;
4349 gag_create(key, owner, reason, expires);
4350
4351 return 0;
4352 }
4353
4354 static struct opserv_user_alert *
4355 opserv_add_user_alert(struct userNode *req, const char *name, opserv_alert_reaction reaction, const char *text_discrim)
4356 {
4357 unsigned int wordc;
4358 char *wordv[MAXNUMPARAMS], *discrim_copy;
4359 struct opserv_user_alert *alert;
4360 char *name_dup;
4361
4362 if (dict_find(opserv_user_alerts, name, NULL)) {
4363 send_message(req, opserv, "OSMSG_ALERT_EXISTS", name);
4364 return NULL;
4365 }
4366 alert = malloc(sizeof(*alert));
4367 alert->owner = strdup(req->handle_info ? req->handle_info->handle : req->nick);
4368 alert->text_discrim = strdup(text_discrim);
4369 discrim_copy = strdup(text_discrim); /* save a copy of the discrim */
4370 wordc = split_line(discrim_copy, false, ArrayLength(wordv), wordv);
4371 alert->discrim = opserv_discrim_create(req, opserv, wordc, wordv, 0);
4372 if (!alert->discrim) {
4373 free(alert->text_discrim);
4374 free(discrim_copy);
4375 free(alert);
4376 return NULL;
4377 }
4378 alert->split_discrim = discrim_copy;
4379 name_dup = strdup(name);
4380 if (!alert->discrim->reason)
4381 alert->discrim->reason = strdup(name);
4382 alert->reaction = reaction;
4383 dict_insert(opserv_user_alerts, name_dup, alert);
4384 /* Stick the alert into the appropriate additional alert dict(s).
4385 * For channel alerts, we only use channels and min_channels;
4386 * max_channels would have to be checked on /part, which we do not
4387 * yet do, and which seems of questionable value.
4388 */
4389 if (alert->discrim->channel || alert->discrim->min_channels)
4390 dict_insert(opserv_channel_alerts, name_dup, alert);
4391 if (alert->discrim->mask_nick)
4392 dict_insert(opserv_nick_based_alerts, name_dup, alert);
4393 return alert;
4394 }
4395
4396 /*
4397 static int
4398 add_chan_warn(const char *key, void *data, UNUSED_ARG(void *extra))
4399 {
4400 struct record_data *rd = data;
4401 char *reason = GET_RECORD_QSTRING(rd);
4402
4403 * i hope this can't happen *
4404 if (!reason)
4405 reason = "No Reason";
4406
4407 dict_insert(opserv_chan_warn, strdup(key), strdup(reason));
4408 return 0;
4409 }
4410 */
4411
4412
4413 static int
4414 add_user_alert(const char *key, void *data, UNUSED_ARG(void *extra))
4415 {
4416 dict_t alert_dict;
4417 const char *discrim, *react, *owner;
4418 opserv_alert_reaction reaction;
4419 struct opserv_user_alert *alert;
4420
4421 if (!(alert_dict = GET_RECORD_OBJECT((struct record_data *)data))) {
4422 log_module(OS_LOG, LOG_ERROR, "Bad type (not a record) for alert %s.", key);
4423 return 1;
4424 }
4425 discrim = database_get_data(alert_dict, KEY_DISCRIM, RECDB_QSTRING);
4426 react = database_get_data(alert_dict, KEY_REACTION, RECDB_QSTRING);
4427 if (!react || !irccasecmp(react, "notice"))
4428 reaction = REACT_NOTICE;
4429 else if (!irccasecmp(react, "kill"))
4430 reaction = REACT_KILL;
4431 /*
4432 else if (!irccasecmp(react, "silent"))
4433 reaction = REACT_SILENT;
4434 */
4435 else if (!irccasecmp(react, "gline"))
4436 reaction = REACT_GLINE;
4437 else if (!irccasecmp(react, "track"))
4438 reaction = REACT_TRACK;
4439 else if (!irccasecmp(react, "shun"))
4440 reaction = REACT_SHUN;
4441 else {
4442 log_module(OS_LOG, LOG_ERROR, "Invalid reaction %s for alert %s.", react, key);
4443 return 0;
4444 }
4445 alert = opserv_add_user_alert(opserv, key, reaction, discrim);
4446 if (!alert) {
4447 log_module(OS_LOG, LOG_ERROR, "Unable to create alert %s from database.", key);
4448 return 0;
4449 }
4450 owner = database_get_data(alert_dict, KEY_OWNER, RECDB_QSTRING);
4451 free(alert->owner);
4452 alert->owner = strdup(owner ? owner : "<unknown>");
4453 return 0;
4454 }
4455
4456 static int
4457 trusted_host_read(const char *host, void *data, UNUSED_ARG(void *extra))
4458 {
4459 struct record_data *rd = data;
4460 const char *limit, *str, *reason, *issuer;
4461 time_t issued, expires;
4462
4463 if (rd->type == RECDB_QSTRING) {
4464 /* old style host by itself */
4465 limit = GET_RECORD_QSTRING(rd);
4466 issued = 0;
4467 issuer = NULL;
4468 expires = 0;
4469 reason = NULL;
4470 } else if (rd->type == RECDB_OBJECT) {
4471 dict_t obj = GET_RECORD_OBJECT(rd);
4472 /* new style structure */
4473 limit = database_get_data(obj, KEY_LIMIT, RECDB_QSTRING);
4474 str = database_get_data(obj, KEY_EXPIRES, RECDB_QSTRING);
4475 expires = str ? ParseInterval(str) : 0;
4476 reason = database_get_data(obj, KEY_REASON, RECDB_QSTRING);
4477 issuer = database_get_data(obj, KEY_ISSUER, RECDB_QSTRING);
4478 str = database_get_data(obj, KEY_ISSUED, RECDB_QSTRING);
4479 issued = str ? ParseInterval(str) : 0;
4480 } else
4481 return 0;
4482
4483 if (expires && (expires < now))
4484 return 0;
4485 opserv_add_trusted_host(host, (limit ? strtoul(limit, NULL, 0) : 0), issuer, issued, expires, reason);
4486 return 0;
4487 }
4488
4489 static int
4490 add_routing_plan_server(const char *name, void *data, void *rp)
4491 {
4492 struct record_data *rd = data;
4493 const char *uplink, *portstr, *karma, *second, *offline;
4494
4495 dict_t obj = GET_RECORD_OBJECT(rd);
4496 if(rd->type == RECDB_OBJECT) {
4497 uplink = database_get_data(obj, KEY_UPLINK, RECDB_QSTRING);
4498 second = database_get_data(obj, KEY_SECOND, RECDB_QSTRING);
4499 portstr = database_get_data(obj, KEY_PORT, RECDB_QSTRING);
4500 karma = database_get_data(obj, KEY_KARMA, RECDB_QSTRING);
4501 offline = database_get_data(obj, KEY_OFFLINE, RECDB_QSTRING);
4502 /* create routing plan server named key, with uplink uplink. */
4503 opserv_routing_plan_add_server(rp, name, uplink, portstr ? atoi(portstr) : 0,
4504 karma ? atoi(karma) : KARMA_DEFAULT, second,
4505 offline ? atoi(offline) : 0);
4506 }
4507 return 0;
4508
4509 }
4510
4511 static int
4512 routing_plan_set_option(const char *name, void *data, UNUSED_ARG(void *extra))
4513 {
4514 struct record_data *rd = data;
4515 if(rd->type == RECDB_QSTRING)
4516 {
4517 char *value = GET_RECORD_QSTRING(rd);
4518 dict_insert(opserv_routing_plan_options, strdup(name), strdup(value));
4519 }
4520 return 0;
4521 }
4522
4523 static int
4524 add_routing_plan(const char *name, void *data, UNUSED_ARG(void *extra))
4525 {
4526 struct record_data *rd = data;
4527 struct routingPlan *rp;
4528
4529 if(rd->type == RECDB_OBJECT) {
4530 dict_t obj = GET_RECORD_OBJECT(rd);
4531 rp = opserv_add_routing_plan(name);
4532 dict_foreach(obj, add_routing_plan_server, rp);
4533 }
4534 return 0;
4535 }
4536
4537 static int
4538 opserv_saxdb_read(struct dict *conf_db)
4539 {
4540 dict_t object;
4541 struct record_data *rd;
4542 dict_iterator_t it;
4543 unsigned int nn;
4544
4545 if ((object = database_get_data(conf_db, KEY_RESERVES, RECDB_OBJECT)))
4546 dict_foreach(object, add_reserved, opserv_reserved_nick_dict);
4547 if ((rd = database_get_path(conf_db, KEY_BAD_WORDS))) {
4548 switch (rd->type) {
4549 case RECDB_STRING_LIST:
4550 /* Add words one by one just in case there are overlaps from an old DB. */
4551 for (nn=0; nn<rd->d.slist->used; ++nn)
4552 opserv_add_bad_word(NULL, NULL, rd->d.slist->list[nn]);
4553 break;
4554 case RECDB_OBJECT:
4555 for (it=dict_first(rd->d.object); it; it=iter_next(it)) {
4556 opserv_add_bad_word(NULL, NULL, iter_key(it));
4557 rd = iter_data(it);
4558 if (rd->type == RECDB_STRING_LIST)
4559 for (nn=0; nn<rd->d.slist->used; nn++)
4560 dict_insert(opserv_exempt_channels, strdup(rd->d.slist->list[nn]), NULL);
4561 }
4562 break;
4563 default:
4564 /* do nothing */;
4565 }
4566 }
4567 if ((rd = database_get_path(conf_db, KEY_EXEMPT_CHANNELS))
4568 && (rd->type == RECDB_STRING_LIST)) {
4569 for (nn=0; nn<rd->d.slist->used; ++nn)
4570 dict_insert(opserv_exempt_channels, strdup(rd->d.slist->list[nn]), NULL);
4571 }
4572 if ((object = database_get_data(conf_db, KEY_MAX_CLIENTS, RECDB_OBJECT))) {
4573 char *str;
4574 if ((str = database_get_data(object, KEY_MAX, RECDB_QSTRING)))
4575 max_clients = atoi(str);
4576 if ((str = database_get_data(object, KEY_TIME, RECDB_QSTRING)))
4577 max_clients_time = atoi(str);
4578 }
4579 if ((object = database_get_data(conf_db, KEY_TRUSTED_HOSTS, RECDB_OBJECT)))
4580 dict_foreach(object, trusted_host_read, opserv_trusted_hosts);
4581 if ((object = database_get_data(conf_db, KEY_GAGS, RECDB_OBJECT)))
4582 dict_foreach(object, add_gag_helper, NULL);
4583 if ((object = database_get_data(conf_db, KEY_ALERTS, RECDB_OBJECT)))
4584 dict_foreach(object, add_user_alert, NULL);
4585 /*
4586 if ((object = database_get_data(conf_db, KEY_WARN, RECDB_OBJECT)))
4587 dict_foreach(object, add_chan_warn, NULL);
4588 */
4589
4590 if ((object = database_get_data(conf_db, KEY_ROUTINGPLAN, RECDB_OBJECT)))
4591 dict_foreach(object, add_routing_plan, NULL);
4592
4593 if ((object = database_get_data(conf_db, KEY_ROUTINGPLAN_OPTIONS, RECDB_OBJECT)))
4594 dict_foreach(object, routing_plan_set_option, NULL);
4595
4596 return 0;
4597 }
4598
4599 static int
4600 opserv_saxdb_write(struct saxdb_context *ctx)
4601 {
4602 struct string_list *slist;
4603 dict_iterator_t it;
4604
4605 /* reserved nicks */
4606 if (dict_size(opserv_reserved_nick_dict)) {
4607 saxdb_start_record(ctx, KEY_RESERVES, 1);
4608 for (it = dict_first(opserv_reserved_nick_dict); it; it = iter_next(it)) {
4609 struct userNode *user = iter_data(it);
4610 if (!IsPersistent(user)) continue;
4611 saxdb_start_record(ctx, iter_key(it), 0);
4612 saxdb_write_string(ctx, KEY_IDENT, user->ident);
4613 saxdb_write_string(ctx, KEY_HOSTNAME, user->hostname);
4614 saxdb_write_string(ctx, KEY_DESC, user->info);
4615 saxdb_end_record(ctx);
4616 }
4617 saxdb_end_record(ctx);
4618 }
4619 /* bad word set */
4620 if (opserv_bad_words->used) {
4621 saxdb_write_string_list(ctx, KEY_BAD_WORDS, opserv_bad_words);
4622 }
4623 /* routing plan options */
4624 if (dict_size(opserv_routing_plan_options)) {
4625 saxdb_start_record(ctx, KEY_ROUTINGPLAN_OPTIONS, 1);
4626 for(it = dict_first(opserv_routing_plan_options); it; it = iter_next(it)) {
4627 saxdb_write_string(ctx, iter_key(it), iter_data(it));
4628 }
4629 saxdb_end_record(ctx);
4630 }
4631 /* routing plans */
4632 if (dict_size(opserv_routing_plans)) {
4633 dict_iterator_t svrit;
4634 struct routingPlan *rp;
4635 struct routingPlanServer *rps;
4636 saxdb_start_record(ctx, KEY_ROUTINGPLAN, 1);
4637 for (it = dict_first(opserv_routing_plans); it; it = iter_next(it)) {
4638 rp = iter_data(it);
4639 saxdb_start_record(ctx, iter_key(it), 0);
4640 for(svrit = dict_first(rp->servers); svrit; svrit = iter_next(svrit)) {
4641 char buf[MAXLEN];
4642 rps = iter_data(svrit);
4643 saxdb_start_record(ctx, iter_key(svrit), 0);
4644 saxdb_write_string(ctx, KEY_UPLINK, rps->uplink);
4645 if(rps->secondaryuplink)
4646 saxdb_write_string(ctx, KEY_SECOND, rps->secondaryuplink);
4647 sprintf(buf, "%d", rps->port);
4648 saxdb_write_string(ctx, KEY_PORT, buf);
4649 sprintf(buf, "%d", rps->karma);
4650 saxdb_write_string(ctx, KEY_KARMA, buf);
4651 sprintf(buf, "%d", rps->offline);
4652 saxdb_write_string(ctx, KEY_OFFLINE, buf);
4653 saxdb_end_record(ctx);
4654 }
4655 saxdb_end_record(ctx);
4656 }
4657 saxdb_end_record(ctx);
4658 }
4659 /* insert exempt channel names */
4660 if (dict_size(opserv_exempt_channels)) {
4661 slist = alloc_string_list(dict_size(opserv_exempt_channels));
4662 for (it=dict_first(opserv_exempt_channels); it; it=iter_next(it)) {
4663 string_list_append(slist, strdup(iter_key(it)));
4664 }
4665 saxdb_write_string_list(ctx, KEY_EXEMPT_CHANNELS, slist);
4666 free_string_list(slist);
4667 }
4668 /* trusted hosts takes a little more work */
4669 if (dict_size(opserv_trusted_hosts)) {
4670 saxdb_start_record(ctx, KEY_TRUSTED_HOSTS, 1);
4671 for (it = dict_first(opserv_trusted_hosts); it; it = iter_next(it)) {
4672 struct trusted_host *th = iter_data(it);
4673 saxdb_start_record(ctx, iter_key(it), 0);
4674 if (th->limit) saxdb_write_int(ctx, KEY_LIMIT, th->limit);
4675 if (th->expires) saxdb_write_int(ctx, KEY_EXPIRES, th->expires);
4676 if (th->issued) saxdb_write_int(ctx, KEY_ISSUED, th->issued);
4677 if (th->issuer) saxdb_write_string(ctx, KEY_ISSUER, th->issuer);
4678 if (th->reason) saxdb_write_string(ctx, KEY_REASON, th->reason);
4679 saxdb_end_record(ctx);
4680 }
4681 saxdb_end_record(ctx);
4682 }
4683 /* gags */
4684 if (gagList) {
4685 struct gag_entry *gag;
4686 saxdb_start_record(ctx, KEY_GAGS, 1);
4687 for (gag = gagList; gag; gag = gag->next) {
4688 saxdb_start_record(ctx, gag->mask, 0);
4689 saxdb_write_string(ctx, KEY_OWNER, gag->owner);
4690 saxdb_write_string(ctx, KEY_REASON, gag->reason);
4691 if (gag->expires) saxdb_write_int(ctx, KEY_EXPIRES, gag->expires);
4692 saxdb_end_record(ctx);
4693 }
4694 saxdb_end_record(ctx);
4695 }
4696 /* channel warnings */
4697 /*
4698 if (dict_size(opserv_chan_warn)) {
4699 saxdb_start_record(ctx, KEY_WARN, 0);
4700 for (it = dict_first(opserv_chan_warn); it; it = iter_next(it)) {
4701 saxdb_write_string(ctx, iter_key(it), iter_data(it));
4702 }
4703 saxdb_end_record(ctx);
4704 }
4705 */
4706 /* alerts */
4707 if (dict_size(opserv_user_alerts)) {
4708 saxdb_start_record(ctx, KEY_ALERTS, 1);
4709 for (it = dict_first(opserv_user_alerts); it; it = iter_next(it)) {
4710 struct opserv_user_alert *alert = iter_data(it);
4711 const char *reaction;
4712 saxdb_start_record(ctx, iter_key(it), 0);
4713 saxdb_write_string(ctx, KEY_DISCRIM, alert->text_discrim);
4714 saxdb_write_string(ctx, KEY_OWNER, alert->owner);
4715 switch (alert->reaction) {
4716 case REACT_NOTICE: reaction = "notice"; break;
4717 case REACT_KILL: reaction = "kill"; break;
4718 // case REACT_SILENT: reaction = "silent"; break;
4719 case REACT_GLINE: reaction = "gline"; break;
4720 case REACT_TRACK: reaction = "track"; break;
4721 case REACT_SHUN: reaction = "shun"; break;
4722 default:
4723 reaction = NULL;
4724 log_module(OS_LOG, LOG_ERROR, "Invalid reaction type %d for alert %s (while writing database).", alert->reaction, iter_key(it));
4725 break;
4726 }
4727 if (reaction) saxdb_write_string(ctx, KEY_REACTION, reaction);
4728 saxdb_end_record(ctx);
4729 }
4730 saxdb_end_record(ctx);
4731 }
4732 /* max clients */
4733 saxdb_start_record(ctx, KEY_MAX_CLIENTS, 0);
4734 saxdb_write_int(ctx, KEY_MAX, max_clients);
4735 saxdb_write_int(ctx, KEY_TIME, max_clients_time);
4736 saxdb_end_record(ctx);
4737 return 0;
4738 }
4739
4740 static int
4741 query_keys_helper(const char *key, UNUSED_ARG(void *data), void *extra)
4742 {
4743 send_message_type(4, extra, opserv, "$b%s$b", key);
4744 return 0;
4745 }
4746
4747 static MODCMD_FUNC(cmd_query)
4748 {
4749 struct record_data *rd;
4750 unsigned int i;
4751 char *nodename;
4752
4753 if (argc < 2) {
4754 reply("OSMSG_OPTION_ROOT");
4755 conf_enum_root(query_keys_helper, user);
4756 return 1;
4757 }
4758
4759 nodename = unsplit_string(argv+1, argc-1, NULL);
4760 if (!(rd = conf_get_node(nodename))) {
4761 reply("OSMSG_UNKNOWN_OPTION", nodename);
4762 return 0;
4763 }
4764
4765 if (rd->type == RECDB_QSTRING)
4766 reply("OSMSG_OPTION_IS", nodename, rd->d.qstring);
4767 else if (rd->type == RECDB_STRING_LIST) {
4768 reply("OSMSG_OPTION_LIST", nodename);
4769 if (rd->d.slist->used)
4770 for (i=0; i<rd->d.slist->used; i++)
4771 send_message_type(4, user, cmd->parent->bot, "$b%s$b", rd->d.slist->list[i]);
4772 else
4773 reply("OSMSG_OPTION_LIST_EMPTY");
4774 } else if (rd->type == RECDB_OBJECT) {
4775 reply("OSMSG_OPTION_KEYS", nodename);
4776 dict_foreach(rd->d.object, query_keys_helper, user);
4777 }
4778
4779 return 1;
4780 }
4781
4782 static MODCMD_FUNC(cmd_set)
4783 {
4784 struct record_data *rd;
4785
4786 /* I originally wanted to be able to fully manipulate the config
4787 db with this, but i wussed out. feel free to fix this - you'll
4788 need to handle quoted strings which have been split, and likely
4789 invent a syntax for it. -Zoot */
4790
4791 if (!(rd = conf_get_node(argv[1]))) {
4792 reply("OSMSG_SET_NOT_SET", argv[1]);
4793 return 0;
4794 }
4795
4796 if (rd->type != RECDB_QSTRING) {
4797 reply("OSMSG_SET_BAD_TYPE", argv[1]);
4798 return 0;
4799 }
4800
4801 free(rd->d.qstring);
4802 rd->d.qstring = strdup(argv[2]);
4803 conf_call_reload_funcs();
4804 reply("OSMSG_SET_SUCCESS", argv[1], argv[2]);
4805 return 1;
4806 }
4807
4808 static MODCMD_FUNC(cmd_settime)
4809 {
4810 const char *srv_name_mask = "*";
4811 time_t new_time = now;
4812
4813 if (argc > 1)
4814 srv_name_mask = argv[1];
4815 if (argc > 2)
4816 new_time = time(NULL);
4817 irc_settime(srv_name_mask, new_time);
4818 reply("OSMSG_SETTIME_SUCCESS", srv_name_mask);
4819 return 1;
4820 }
4821
4822 static discrim_t
4823 opserv_discrim_create(struct userNode *user, struct userNode *bot, unsigned int argc, char *argv[], int allow_channel)
4824 {
4825 unsigned int i, j;
4826 discrim_t discrim;
4827
4828 discrim = calloc(1, sizeof(*discrim));
4829 discrim->limit = 250;
4830 discrim->max_level = ~0;
4831 discrim->max_ts = INT_MAX;
4832 discrim->domain_depth = 2;
4833 discrim->max_channels = INT_MAX;
4834 discrim->authed = -1;
4835 discrim->info_space = -1;
4836 discrim->intra_dcmp = 0;
4837 discrim->intra_scmp = 0;
4838 discrim->use_regex = 0;
4839 discrim->silent = 0;
4840
4841 for (i=0; i<argc; i++) {
4842 if (irccasecmp(argv[i], "log") == 0) {
4843 discrim->option_log = 1;
4844 continue;
4845 }
4846 /* Assume all other criteria require arguments. */
4847 if (i == argc - 1) {
4848 send_message(user, bot, "MSG_MISSING_PARAMS", argv[i]);
4849 goto fail;
4850 }
4851 if (argv[i+1][0] == '&') {
4852 /* Looking for intra-userNode matches */
4853 char *tmp = &(argv[i+1][1]);
4854 if (strcasecmp(tmp, argv[i]) != 0) { /* Don't allow "nick &nick" etc */
4855 if (!strcasecmp(tmp, "nick"))
4856 discrim->intra_dcmp = 1;
4857 else if (!strcasecmp(tmp, "ident"))
4858 discrim->intra_dcmp = 2;
4859 else if (!strcasecmp(tmp, "info"))
4860 discrim->intra_dcmp = 3;
4861 }
4862 }
4863 if (irccasecmp(argv[i], "mask") == 0) {
4864 if (!is_ircmask(argv[++i])) {
4865 send_message(user, bot, "OSMSG_INVALID_IRCMASK", argv[i]);
4866 goto fail;
4867 }
4868 if (!split_ircmask(argv[i],
4869 &discrim->mask_nick,
4870 &discrim->mask_ident,
4871 &discrim->mask_host)) {
4872 send_message(user, bot, "OSMSG_INVALID_IRCMASK", argv[i]);
4873 goto fail;
4874 }
4875 } else if (irccasecmp(argv[i], "nick") == 0) {
4876 i++;
4877 if (discrim->intra_dcmp > 0)
4878 discrim->intra_scmp = 1;
4879 else
4880 discrim->mask_nick = argv[i];
4881 } else if (irccasecmp(argv[i], "ident") == 0) {
4882 i++;
4883 if (discrim->intra_dcmp > 0)
4884 discrim->intra_scmp = 2;
4885 else
4886 discrim->mask_ident = argv[i];
4887 } else if (irccasecmp(argv[i], "host") == 0) {
4888 discrim->mask_host = argv[++i];
4889 } else if (irccasecmp(argv[i], "info") == 0) {
4890 i++;
4891 if (discrim->intra_dcmp > 0)
4892 discrim->intra_scmp = 3;
4893 else
4894 discrim->mask_info = argv[i];
4895 } else if (irccasecmp(argv[i], "server") == 0) {
4896 discrim->server = argv[++i];
4897 } else if (irccasecmp(argv[i], "ip") == 0) {
4898 j = irc_pton(&discrim->ip_mask, &discrim->ip_mask_bits, argv[++i]);
4899 if (!j) {
4900 send_message(user, bot, "OSMSG_BAD_IP", argv[i]);
4901 goto fail;
4902 }
4903 } else if (irccasecmp(argv[i], "account") == 0) {
4904 if (discrim->authed == 0) {
4905 send_message(user, bot, "OSMSG_ACCOUNTMASK_AUTHED");
4906 goto fail;
4907 }
4908 discrim->accountmask = argv[++i];
4909 discrim->authed = 1;
4910 } else if (irccasecmp(argv[i], "authed") == 0) {
4911 i++; /* true_string and false_string are macros! */
4912 if (true_string(argv[i])) {
4913 discrim->authed = 1;
4914 } else if (false_string(argv[i])) {
4915 if (discrim->accountmask) {
4916 send_message(user, bot, "OSMSG_ACCOUNTMASK_AUTHED");
4917 goto fail;
4918 }
4919 discrim->authed = 0;
4920 } else {
4921 send_message(user, bot, "MSG_INVALID_BINARY", argv[i]);
4922 goto fail;
4923 }
4924 } else if (irccasecmp(argv[i], "info_space") == 0) {
4925 /* XXX: A hack because you can't check explicitly for a space through
4926 * any other means */
4927 i++;
4928 if (true_string(argv[i])) {
4929 discrim->info_space = 1;
4930 } else if (false_string(argv[i])) {
4931 discrim->info_space = 0;
4932 } else {
4933 send_message(user, bot, "MSG_INVALID_BINARY", argv[i]);
4934 goto fail;
4935 }
4936 } else if (irccasecmp(argv[i], "regex") == 0) {
4937 i++;
4938 if (true_string(argv[i])) {
4939 discrim->use_regex = 1;
4940 } else if (false_string(argv[i])) {
4941 discrim->use_regex = 0;
4942 } else {
4943 send_message(user, bot, "MSG_INVALID_BINARY", argv[i]);
4944 goto fail;
4945 }
4946 } else if (irccasecmp(argv[i], "silent") == 0) {
4947 i++;
4948 if(user != opserv && !oper_has_access(user, opserv, opserv_conf.silent_level, 0)) {
4949 goto fail;
4950 } else if (true_string(argv[i])) {
4951 discrim->silent = 1;
4952 } else if (false_string(argv[i])) {
4953 discrim->silent = 0;
4954 } else {
4955 send_message(user, bot, "MSG_INVALID_BINARY", argv[i]);
4956 goto fail;
4957 }
4958 } else if (irccasecmp(argv[i], "duration") == 0) {
4959 discrim->duration = ParseInterval(argv[++i]);
4960 } else if (irccasecmp(argv[i], "channel") == 0) {
4961 for (j=0, i++; ; j++) {
4962 switch (argv[i][j]) {
4963 case '#':
4964 goto find_channel;
4965 case '-':
4966 discrim->chan_no_modes |= MODE_CHANOP | MODE_HALFOP | MODE_VOICE;
4967 break;
4968 case '+':
4969 discrim->chan_req_modes |= MODE_VOICE;
4970 discrim->chan_no_modes |= MODE_CHANOP;
4971 discrim->chan_no_modes |= MODE_HALFOP;
4972 break;
4973 case '%':
4974 discrim->chan_req_modes |= MODE_HALFOP;
4975 discrim->chan_no_modes |= MODE_CHANOP;
4976 discrim->chan_no_modes |= MODE_VOICE;
4977 break;
4978 case '@':
4979 discrim->chan_req_modes |= MODE_CHANOP;
4980 break;
4981 case '\0':
4982 send_message(user, bot, "MSG_NOT_CHANNEL_NAME");
4983 goto fail;
4984 }
4985 }
4986 find_channel:
4987 discrim->chan_no_modes &= ~discrim->chan_req_modes;
4988 if (!(discrim->channel = GetChannel(argv[i]+j))) {
4989 /* secretly "allow_channel" now means "if a channel name is
4990 * specified, require that it currently exist" */
4991 if (allow_channel) {
4992 send_message(user, bot, "MSG_CHANNEL_UNKNOWN", argv[i]);
4993 goto fail;
4994 } else {
4995 discrim->channel = AddChannel(argv[i]+j, now, NULL, NULL, NULL);
4996 }
4997 }
4998 LockChannel(discrim->channel);
4999 } else if (irccasecmp(argv[i], "numchannels") == 0) {
5000 discrim->min_channels = discrim->max_channels = strtoul(argv[++i], NULL, 10);
5001 } else if (irccasecmp(argv[i], "limit") == 0) {
5002 discrim->limit = strtoul(argv[++i], NULL, 10);
5003 } else if (irccasecmp(argv[i], "reason") == 0) {
5004 discrim->reason = strdup(unsplit_string(argv+i+1, argc-i-1, NULL));
5005 i = argc;
5006 } else if (irccasecmp(argv[i], "last") == 0) {
5007 discrim->min_ts = now - ParseInterval(argv[++i]);
5008 } else if ((irccasecmp(argv[i], "linked") == 0)
5009 || (irccasecmp(argv[i], "nickage") == 0)) {
5010 const char *cmp = argv[++i];
5011 if (cmp[0] == '<') {
5012 if (cmp[1] == '=') {
5013 discrim->min_ts = now - ParseInterval(cmp+2);
5014 } else {
5015 discrim->min_ts = now - (ParseInterval(cmp+1) - 1);
5016 }
5017 } else if (cmp[0] == '>') {
5018 if (cmp[1] == '=') {
5019 discrim->max_ts = now - ParseInterval(cmp+2);
5020 } else {
5021 discrim->max_ts = now - (ParseInterval(cmp+1) - 1);
5022 }
5023 } else {
5024 discrim->min_ts = now - ParseInterval(cmp+2);
5025 }
5026 } else if (irccasecmp(argv[i], "access") == 0) {
5027 const char *cmp = argv[++i];
5028 if (cmp[0] == '<') {
5029 if (discrim->min_level == 0) discrim->min_level = 1;
5030 if (cmp[1] == '=') {
5031 discrim->max_level = strtoul(cmp+2, NULL, 0);
5032 } else {
5033 discrim->max_level = strtoul(cmp+1, NULL, 0) - 1;
5034 }
5035 } else if (cmp[0] == '=') {
5036 discrim->min_level = discrim->max_level = strtoul(cmp+1, NULL, 0);
5037 } else if (cmp[0] == '>') {
5038 if (cmp[1] == '=') {
5039 discrim->min_level = strtoul(cmp+2, NULL, 0);
5040 } else {
5041 discrim->min_level = strtoul(cmp+1, NULL, 0) + 1;
5042 }
5043 } else {
5044 discrim->min_level = strtoul(cmp+2, NULL, 0);
5045 }
5046 } else if ((irccasecmp(argv[i], "abuse") == 0)
5047 && (irccasecmp(argv[++i], "opers") == 0)) {
5048 discrim->match_opers = 1;
5049 } else if (irccasecmp(argv[i], "depth") == 0) {
5050 discrim->domain_depth = strtoul(argv[++i], NULL, 0);
5051 } else if (irccasecmp(argv[i], "clones") == 0) {
5052 discrim->min_clones = strtoul(argv[++i], NULL, 0);
5053 } else {
5054 send_message(user, bot, "MSG_INVALID_CRITERIA", argv[i]);
5055 goto fail;
5056 }
5057 }
5058
5059 if (discrim->mask_nick && !strcmp(discrim->mask_nick, "*")) {
5060 discrim->mask_nick = 0;
5061 }
5062 if (discrim->mask_ident && !strcmp(discrim->mask_ident, "*")) {
5063 discrim->mask_ident = 0;
5064 }
5065 if (discrim->mask_info && !strcmp(discrim->mask_info, "*")) {
5066 discrim->mask_info = 0;
5067 }
5068 if (discrim->mask_host && !discrim->mask_host[strspn(discrim->mask_host, "*.")]) {
5069 discrim->mask_host = 0;
5070 }
5071
5072 if(discrim->use_regex)
5073 {
5074 if(discrim->mask_nick)
5075 {
5076 int err = regcomp(&discrim->regex_nick, discrim->mask_nick, REG_EXTENDED|REG_ICASE|REG_NOSUB);
5077 discrim->has_regex_nick = !err;
5078 if(err)
5079 {
5080 char buff[256];
5081 buff[regerror(err, &discrim->regex_nick, buff, sizeof(buff))] = 0;
5082
5083 send_message(user, bot, "OSMSG_INVALID_REGEX", discrim->mask_nick, buff, err);
5084 goto regfail;
5085 }
5086 }
5087
5088 if(discrim->mask_ident)
5089 {
5090 int err = regcomp(&discrim->regex_ident, discrim->mask_ident, REG_EXTENDED|REG_ICASE|REG_NOSUB);
5091 discrim->has_regex_ident = !err;
5092 if(err)
5093 {
5094 char buff[256];
5095 buff[regerror(err, &discrim->regex_ident, buff, sizeof(buff))] = 0;
5096
5097 send_message(user, bot, "OSMSG_INVALID_REGEX", discrim->mask_ident, buff, err);
5098 goto regfail;
5099 }
5100 }
5101
5102 if(discrim->mask_host)
5103 {
5104 int err = regcomp(&discrim->regex_host, discrim->mask_host, REG_EXTENDED|REG_ICASE|REG_NOSUB);
5105 discrim->has_regex_host = !err;
5106 if(err)
5107 {
5108 char buff[256];
5109 buff[regerror(err, &discrim->regex_host, buff, sizeof(buff))] = 0;
5110
5111 send_message(user, bot, "OSMSG_INVALID_REGEX", discrim->mask_host, buff, err);
5112 goto regfail;
5113 }
5114 }
5115
5116 if(discrim->mask_info)
5117 {
5118 int err = regcomp(&discrim->regex_info, discrim->mask_info, REG_EXTENDED|REG_ICASE|REG_NOSUB);
5119 discrim->has_regex_info = !err;
5120 if(err)
5121 {
5122 char buff[256];
5123 buff[regerror(err, &discrim->regex_info, buff, sizeof(buff))] = 0;
5124
5125 send_message(user, bot, "OSMSG_INVALID_REGEX", discrim->mask_info, buff, err);
5126 goto regfail;
5127 }
5128 }
5129 }
5130
5131 return discrim;
5132
5133 fail:
5134 free(discrim);
5135 return NULL;
5136
5137 regfail:
5138 if(discrim->has_regex_nick)
5139 regfree(&discrim->regex_nick);
5140 if(discrim->has_regex_ident)
5141 regfree(&discrim->regex_ident);
5142 if(discrim->has_regex_host)
5143 regfree(&discrim->regex_host);
5144 if(discrim->has_regex_info)
5145 regfree(&discrim->regex_info);
5146
5147 free(discrim);
5148 return NULL;
5149 }
5150
5151 static int
5152 discrim_match(discrim_t discrim, struct userNode *user)
5153 {
5154 unsigned int access;
5155 char *scmp=NULL, *dcmp=NULL;
5156
5157 if ((user->timestamp < discrim->min_ts)
5158 || (user->timestamp > discrim->max_ts)
5159 || (user->channels.used < discrim->min_channels)
5160 || (user->channels.used > discrim->max_channels)
5161 || (discrim->authed == 0 && user->handle_info)
5162 || (discrim->authed == 1 && !user->handle_info)
5163 || (discrim->info_space == 0 && user->info[0] == ' ')
5164 || (discrim->info_space == 1 && user->info[0] != ' ')
5165 || (discrim->server && !match_ircglob(user->uplink->name, discrim->server))
5166 || (discrim->accountmask && (!user->handle_info || !match_ircglob(user->handle_info->handle, discrim->accountmask)))
5167 || (discrim->ip_mask_bits && !irc_check_mask(&user->ip, &discrim->ip_mask, discrim->ip_mask_bits))
5168 )
5169 return 0;
5170
5171 if (discrim->channel && !GetUserMode(discrim->channel, user))
5172 return 0;
5173
5174 if(discrim->use_regex)
5175 {
5176 if((discrim->has_regex_nick && regexec(&discrim->regex_nick, user->nick, 0, 0, 0))
5177 || (discrim->has_regex_ident && regexec(&discrim->regex_ident, user->ident, 0, 0, 0))
5178 || (discrim->has_regex_host && regexec(&discrim->regex_host, user->hostname, 0, 0, 0))
5179 || (discrim->has_regex_info && regexec(&discrim->regex_info, user->info, 0, 0, 0))) {
5180 return 0;
5181 }
5182 }
5183 else
5184 {
5185 if ((discrim->mask_nick && !match_ircglob(user->nick, discrim->mask_nick))
5186 || (discrim->mask_ident && !match_ircglob(user->ident, discrim->mask_ident))
5187 || (discrim->mask_host && !match_ircglob(user->hostname, discrim->mask_host))
5188 || (discrim->mask_info && !match_ircglob(user->info, discrim->mask_info))) {
5189 return 0;
5190 }
5191 }
5192
5193 if ((discrim->intra_scmp > 0 && discrim->intra_dcmp > 0)) {
5194 switch(discrim->intra_scmp) {
5195 case 1: scmp=user->nick; break;
5196 case 2: scmp=user->ident; break;
5197 case 3:
5198 scmp=user->info;
5199 if (discrim->info_space == 1) scmp++;
5200 break;
5201 }
5202 switch(discrim->intra_dcmp) {
5203 case 1: dcmp=user->nick; break;
5204 case 2: dcmp=user->ident; break;
5205 case 3: /* When checking INFO, and info_space is enabled
5206 * ignore the first character in a search
5207 * XXX: Should we ignore ALL leading whitespace?
5208 * Also, what about ignoring ~ in ident?
5209 */
5210 dcmp=user->info;
5211 if (discrim->info_space == 1) dcmp++;
5212 break;
5213 }
5214 if (irccasecmp(scmp,dcmp))
5215 return 0;
5216 }
5217
5218 access = user->handle_info ? user->handle_info->opserv_level : 0;
5219 if ((access < discrim->min_level)
5220 || (access > discrim->max_level)) {
5221 return 0;
5222 }
5223 if (discrim->min_clones > 1) {
5224 struct opserv_hostinfo *ohi = dict_find(opserv_hostinfo_dict, irc_ntoa(&user->ip), NULL);
5225 if (!ohi || (ohi->clients.used < discrim->min_clones))
5226 return 0;
5227 }
5228 return 1;
5229 }
5230
5231 static unsigned int
5232 opserv_discrim_search(discrim_t discrim, discrim_search_func dsf, void *data)
5233 {
5234 unsigned int nn, count;
5235 struct userList matched;
5236
5237 userList_init(&matched);
5238 /* Try most optimized search methods first */
5239 if (discrim->channel) {
5240 for (nn=0;
5241 (nn < discrim->channel->members.used)
5242 && (matched.used < discrim->limit);
5243 nn++) {
5244 struct modeNode *mn = discrim->channel->members.list[nn];
5245 if (((mn->modes & discrim->chan_req_modes) != discrim->chan_req_modes)
5246 || ((mn->modes & discrim->chan_no_modes) != 0)) {
5247 continue;
5248 }
5249 if (discrim_match(discrim, mn->user)) {
5250 userList_append(&matched, mn->user);
5251 }
5252 }
5253 } else if (discrim->ip_mask_bits == 128) {
5254 struct opserv_hostinfo *ohi = dict_find(opserv_hostinfo_dict, irc_ntoa(&discrim->ip_mask), NULL);
5255 if (!ohi) {
5256 userList_clean(&matched);
5257 return 0;
5258 }
5259 for (nn=0; (nn<ohi->clients.used) && (matched.used < discrim->limit); nn++) {
5260 if (discrim_match(discrim, ohi->clients.list[nn])) {
5261 userList_append(&matched, ohi->clients.list[nn]);
5262 }
5263 }
5264 } else {
5265 dict_iterator_t it;
5266 for (it=dict_first(clients); it && (matched.used < discrim->limit); it=iter_next(it)) {
5267 if (discrim_match(discrim, iter_data(it))) {
5268 userList_append(&matched, iter_data(it));
5269 }
5270 }
5271 }
5272
5273 if (!matched.used) {
5274 userList_clean(&matched);
5275 return 0;
5276 }
5277
5278 if (discrim->option_log) {
5279 log_module(OS_LOG, LOG_INFO, "Logging matches for search:");
5280 }
5281 for (nn=0; nn<matched.used; nn++) {
5282 struct userNode *user = matched.list[nn];
5283 if (discrim->option_log) {
5284 log_module(OS_LOG, LOG_INFO, " %s!%s@%s", user->nick, user->ident, user->hostname);
5285 }
5286 if (dsf(user, data)) {
5287 /* If a search function returns true, it ran into a
5288 problem. Stop going through the list. */
5289 break;
5290 }
5291 }
5292 if (discrim->option_log) {
5293 log_module(OS_LOG, LOG_INFO, "End of matching users.");
5294 }
5295 count = matched.used;
5296 userList_clean(&matched);
5297 return count;
5298 }
5299
5300 static int
5301 trace_print_func(struct userNode *match, void *extra)
5302 {
5303 struct discrim_and_source *das = extra;
5304 if (match->handle_info) {
5305 send_message_type(4, das->source, das->destination, "%-15s\002 \002%10s\002@\002%s (%s)", match->nick, match->ident, match->hostname, match->handle_info->handle);
5306 } else {
5307 send_message_type(4, das->source, das->destination, "%-15s\002 \002%10s\002@\002%s", match->nick, match->ident, match->hostname);
5308 }
5309 return 0;
5310 }
5311
5312 static int
5313 trace_count_func(UNUSED_ARG(struct userNode *match), UNUSED_ARG(void *extra))
5314 {
5315 return 0;
5316 }
5317
5318 static int
5319 is_oper_victim(struct userNode *user, struct userNode *target, int match_opers)
5320 {
5321 return !(IsService(target)
5322 || (!match_opers && IsOper(target))
5323 || (target->handle_info
5324 && target->handle_info->opserv_level > user->handle_info->opserv_level));
5325 }
5326
5327 static int
5328 trace_gline_func(struct userNode *match, void *extra)
5329 {
5330 struct discrim_and_source *das = extra;
5331
5332 if (is_oper_victim(das->source, match, das->discrim->match_opers)) {
5333 opserv_block(match, das->source->handle_info->handle, das->discrim->reason, das->discrim->duration, das->discrim->silent);
5334 }
5335
5336 return 0;
5337 }
5338
5339 static int
5340 trace_shun_func(struct userNode *match, void *extra)
5341 {
5342 struct discrim_and_source *das = extra;
5343
5344 if (is_oper_victim(das->source, match, das->discrim->match_opers)) {
5345 opserv_shun(match, das->source->handle_info->handle, das->discrim->reason, das->discrim->duration);
5346 }
5347
5348 return 0;
5349 }
5350
5351 static int
5352 trace_kill_func(struct userNode *match, void *extra)
5353 {
5354 struct discrim_and_source *das = extra;
5355
5356 if (is_oper_victim(das->source, match, das->discrim->match_opers)) {
5357 char *reason;
5358 if (das->discrim->reason) {
5359 reason = das->discrim->reason;
5360 } else {
5361 reason = alloca(strlen(OSMSG_KILL_REQUESTED)+strlen(das->source->nick)+1);
5362 sprintf(reason, OSMSG_KILL_REQUESTED, das->source->nick);
5363 }
5364 DelUser(match, opserv, 1, reason);
5365 }
5366
5367 return 0;
5368 }
5369
5370 static int
5371 is_gagged(char *mask)
5372 {
5373 struct gag_entry *gag;
5374
5375 for (gag = gagList; gag; gag = gag->next) {
5376 if (match_ircglobs(gag->mask, mask)) return 1;
5377 }
5378 return 0;
5379 }
5380
5381 static int
5382 trace_gag_func(struct userNode *match, void *extra)
5383 {
5384 struct discrim_and_source *das = extra;
5385
5386 if (is_oper_victim(das->source, match, das->discrim->match_opers)) {
5387 char *reason, *mask;
5388 int masksize;
5389 if (das->discrim->reason) {
5390 reason = das->discrim->reason;
5391 } else {
5392 reason = alloca(strlen(OSMSG_GAG_REQUESTED)+strlen(das->source->nick)+1);
5393 sprintf(reason, OSMSG_GAG_REQUESTED, das->source->nick);
5394 }
5395 masksize = 5+strlen(match->hostname);
5396 mask = alloca(masksize);
5397 snprintf(mask, masksize, "*!*@%s", match->hostname);
5398 if (!is_gagged(mask)) {
5399 gag_create(mask, das->source->handle_info->handle, reason,
5400 das->discrim->duration ? (now + das->discrim->duration) : 0);
5401 }
5402 }
5403
5404 return 0;
5405 }
5406
5407 static int
5408 trace_domains_func(struct userNode *match, void *extra)
5409 {
5410 struct discrim_and_source *das = extra;
5411 irc_in_addr_t ip;
5412 unsigned long *count;
5413 unsigned int depth;
5414 char *hostname;
5415 char ipmask[IRC_NTOP_MASK_MAX_SIZE];
5416
5417 if (irc_pton(&ip, NULL, match->hostname)) {
5418 if (irc_in_addr_is_ipv4(ip)) {
5419 unsigned long matchip = ntohl(ip.in6_32[3]);
5420 /* raw IP address.. use up to first three octets of IP */
5421 switch (das->discrim->domain_depth) {
5422 default:
5423 snprintf(ipmask, sizeof(ipmask), "%lu.%lu.%lu.*", (matchip>>24)&255, (matchip>>16)&255, (matchip>>8)&255);
5424 break;
5425 case 2:
5426 snprintf(ipmask, sizeof(ipmask), "%lu.%lu.*", (matchip>>24)&255, (matchip>>16)&255);
5427 break;
5428 case 1:
5429 snprintf(ipmask, sizeof(ipmask), "%lu.*", (matchip>>24)&255);
5430 break;
5431 }
5432 } else if (irc_in_addr_is_ipv6(ip)) {
5433 switch (das->discrim->domain_depth) {
5434 case 1: depth = 16; goto ipv6_pfx;
5435 case 2: depth = 24; goto ipv6_pfx;
5436 case 3: depth = 32; goto ipv6_pfx;
5437 default: depth = das->discrim->domain_depth;
5438 ipv6_pfx:
5439 irc_ntop_mask(ipmask, sizeof(ipmask), &ip, depth);
5440 }
5441 } else safestrncpy(ipmask, match->hostname, sizeof(ipmask));
5442 ipmask[sizeof(ipmask) - 1] = '\0';
5443 hostname = ipmask;
5444 } else {
5445 hostname = match->hostname + strlen(match->hostname);
5446 for (depth=das->discrim->domain_depth;
5447 depth && (hostname > match->hostname);
5448 depth--) {
5449 hostname--;
5450 while ((hostname > match->hostname) && (*hostname != '.')) hostname--;
5451 }
5452 if (*hostname == '.') hostname++; /* advance past last dot we saw */
5453 }
5454 if (!(count = dict_find(das->dict, hostname, NULL))) {
5455 count = calloc(1, sizeof(*count));
5456 dict_insert(das->dict, strdup(hostname), count);
5457 }
5458 (*count)++;
5459 return 0;
5460 }
5461
5462 static int
5463 opserv_show_hostinfo(const char *key, void *data, void *extra)
5464 {
5465 unsigned long *count = data;
5466 struct discrim_and_source *das = extra;
5467
5468 send_message_type(4, das->source, das->destination, "%s %lu", key, *count);
5469 return !--das->disp_limit;
5470 }
5471
5472 static MODCMD_FUNC(cmd_trace)
5473 {
5474 struct discrim_and_source das;
5475 discrim_search_func action;
5476 unsigned int matches;
5477 struct svccmd *subcmd;
5478 char buf[MAXLEN];
5479
5480 sprintf(buf, "trace %s", argv[1]);
5481 if (!(subcmd = dict_find(opserv_service->commands, buf, NULL))) {
5482 reply("OSMSG_BAD_ACTION", argv[1]);
5483 return 0;
5484 }
5485 if (!svccmd_can_invoke(user, opserv_service->bot, subcmd, channel, SVCCMD_NOISY))
5486 return 0;
5487 if (!irccasecmp(argv[1], "print"))
5488 action = trace_print_func;
5489 else if (!irccasecmp(argv[1], "count"))
5490 action = trace_count_func;
5491 else if (!irccasecmp(argv[1], "domains"))
5492 action = trace_domains_func;
5493 else if (!irccasecmp(argv[1], "gline"))
5494 action = trace_gline_func;
5495 else if (!irccasecmp(argv[1], "shun"))
5496 action = trace_shun_func;
5497 else if (!irccasecmp(argv[1], "kill"))
5498 action = trace_kill_func;
5499 else if (!irccasecmp(argv[1], "gag"))
5500 action = trace_gag_func;
5501 else {
5502 reply("OSMSG_BAD_ACTION", argv[1]);
5503 return 0;
5504 }
5505
5506 if (user->handle_info->opserv_level < subcmd->min_opserv_level) {
5507 reply("OSMSG_LEVEL_TOO_LOW");
5508 return 0;
5509 }
5510
5511 das.dict = NULL;
5512 das.source = user;
5513 das.destination = cmd->parent->bot;
5514 das.discrim = opserv_discrim_create(user, cmd->parent->bot, argc-2, argv+2, 1);
5515 if (!das.discrim)
5516 return 0;
5517
5518 if (action == trace_print_func)
5519 {
5520 reply("OSMSG_USER_SEARCH_RESULTS");
5521 reply("OSMSG_USER_SEARCH_BAR");
5522 reply("OSMSG_USER_SEARCH_HEADER");
5523 reply("OSMSG_USER_SEARCH_BAR");
5524 }
5525 else if (action == trace_count_func)
5526 das.discrim->limit = INT_MAX;
5527 else if ((action == trace_gline_func) && !das.discrim->duration)
5528 das.discrim->duration = opserv_conf.block_gline_duration;
5529 else if ((action == trace_shun_func) && !das.discrim->duration)
5530 das.discrim->duration = opserv_conf.block_shun_duration;
5531 else if (action == trace_domains_func) {
5532 das.dict = dict_new();
5533 dict_set_free_data(das.dict, free);
5534 dict_set_free_keys(das.dict, free);
5535 das.disp_limit = das.discrim->limit;
5536 das.discrim->limit = INT_MAX;
5537 }
5538 matches = opserv_discrim_search(das.discrim, action, &das);
5539
5540 if (action == trace_domains_func)
5541 dict_foreach(das.dict, opserv_show_hostinfo, &das);
5542
5543 if (matches)
5544 {
5545 if(action == trace_print_func)
5546 reply("OSMSG_USER_SEARCH_COUNT_BAR", matches);
5547 else
5548 reply("OSMSG_USER_SEARCH_COUNT", matches);
5549 }
5550 else
5551 reply("MSG_NO_MATCHES");
5552
5553 if (das.discrim->channel)
5554 UnlockChannel(das.discrim->channel);
5555 free(das.discrim->reason);
5556
5557 if(das.discrim->has_regex_nick)
5558 regfree(&das.discrim->regex_nick);
5559 if(das.discrim->has_regex_ident)
5560 regfree(&das.discrim->regex_ident);
5561 if(das.discrim->has_regex_host)
5562 regfree(&das.discrim->regex_host);
5563 if(das.discrim->has_regex_info)
5564 regfree(&das.discrim->regex_info);
5565
5566 free(das.discrim);
5567 dict_delete(das.dict);
5568 return 1;
5569 }
5570
5571 typedef void (*cdiscrim_search_func)(struct chanNode *match, void *data, struct userNode *bot);
5572
5573 typedef struct channel_discrim {
5574 char *name, *topic;
5575
5576 unsigned int min_users, max_users;
5577 time_t min_ts, max_ts;
5578 unsigned int limit;
5579 } *cdiscrim_t;
5580
5581 static cdiscrim_t opserv_cdiscrim_create(struct userNode *user, struct userNode *bot, unsigned int argc, char *argv[]);
5582 static unsigned int opserv_cdiscrim_search(cdiscrim_t discrim, cdiscrim_search_func dsf, void *data, struct userNode *bot);
5583
5584 static time_t
5585 smart_parse_time(const char *str) {
5586 /* If an interval-style string is given, treat as time before now.
5587 * If it's all digits, treat directly as a Unix timestamp. */
5588 return str[strspn(str, "0123456789")] ? (time_t)(now - ParseInterval(str)) : (time_t)atoi(str);
5589 }
5590
5591 static cdiscrim_t
5592 opserv_cdiscrim_create(struct userNode *user, struct userNode *bot, unsigned int argc, char *argv[])
5593 {
5594 cdiscrim_t discrim;
5595 unsigned int i;
5596
5597 discrim = calloc(1, sizeof(*discrim));
5598 discrim->limit = 25;
5599
5600 for (i = 0; i < argc; i++) {
5601 /* Assume all criteria require arguments. */
5602 if (i == (argc - 1)) {
5603 send_message(user, bot, "MSG_MISSING_PARAMS", argv[i]);
5604 return NULL;
5605 }
5606
5607 if (!irccasecmp(argv[i], "name"))
5608 discrim->name = argv[++i];
5609 else if (!irccasecmp(argv[i], "topic"))
5610 discrim->topic = argv[++i];
5611 else if (!irccasecmp(argv[i], "users")) {
5612 const char *cmp = argv[++i];
5613 if (cmp[0] == '<') {
5614 if (cmp[1] == '=')
5615 discrim->max_users = strtoul(cmp+2, NULL, 0);
5616 else
5617 discrim->max_users = strtoul(cmp+1, NULL, 0) - 1;
5618 } else if (cmp[0] == '=') {
5619 discrim->min_users = discrim->max_users = strtoul(cmp+1, NULL, 0);
5620 } else if (cmp[0] == '>') {
5621 if (cmp[1] == '=')
5622 discrim->min_users = strtoul(cmp+2, NULL, 0);
5623 else
5624 discrim->min_users = strtoul(cmp+1, NULL, 0) + 1;
5625 } else {
5626 discrim->min_users = strtoul(cmp+2, NULL, 0);
5627 }
5628 } else if (!irccasecmp(argv[i], "timestamp")) {
5629 const char *cmp = argv[++i];
5630 if (cmp[0] == '<') {
5631 if (cmp[1] == '=')
5632 discrim->max_ts = smart_parse_time(cmp+2);
5633 else
5634 discrim->max_ts = smart_parse_time(cmp+1)-1;
5635 } else if (cmp[0] == '=') {
5636 discrim->min_ts = discrim->max_ts = smart_parse_time(cmp+1);
5637 } else if (cmp[0] == '>') {
5638 if (cmp[1] == '=')
5639 discrim->min_ts = smart_parse_time(cmp+2);
5640 else
5641 discrim->min_ts = smart_parse_time(cmp+1)+1;
5642 } else {
5643 discrim->min_ts = smart_parse_time(cmp);
5644 }
5645 } else if (!irccasecmp(argv[i], "limit")) {
5646 discrim->limit = strtoul(argv[++i], NULL, 10);
5647 } else {
5648 send_message(user, bot, "MSG_INVALID_CRITERIA", argv[i]);
5649 goto fail;
5650 }
5651 }
5652
5653 if (discrim->name && !strcmp(discrim->name, "*"))
5654 discrim->name = 0;
5655 if (discrim->topic && !strcmp(discrim->topic, "*"))
5656 discrim->topic = 0;
5657
5658 return discrim;
5659 fail:
5660 free(discrim);
5661 return NULL;
5662 }
5663
5664 static int
5665 cdiscrim_match(cdiscrim_t discrim, struct chanNode *chan)
5666 {
5667 if ((discrim->name && !match_ircglob(chan->name, discrim->name)) ||
5668 (discrim->topic && !match_ircglob(chan->topic, discrim->topic)) ||
5669 (discrim->min_users && chan->members.used < discrim->min_users) ||
5670 (discrim->max_users && chan->members.used > discrim->max_users) ||
5671 (discrim->min_ts && chan->timestamp < discrim->min_ts) ||
5672 (discrim->max_ts && chan->timestamp > discrim->max_ts)) {
5673 return 0;
5674 }
5675 return 1;
5676 }
5677
5678 static unsigned int opserv_cdiscrim_search(cdiscrim_t discrim, cdiscrim_search_func dsf, void *data, struct userNode *bot)
5679 {
5680 unsigned int count = 0;
5681 dict_iterator_t it, next;
5682
5683 for (it = dict_first(channels); it && count < discrim->limit ; it = next) {
5684 struct chanNode *chan = iter_data(it);
5685
5686 /* Hold on to the next channel in case we decide to
5687 add actions that destructively modify the channel. */
5688 next = iter_next(it);
5689 if ((chan->members.used > 0) && cdiscrim_match(discrim, chan)) {
5690 dsf(chan, data, bot);
5691 count++;
5692 }
5693 }
5694
5695 return count;
5696 }
5697
5698 void channel_count(UNUSED_ARG(struct chanNode *channel), UNUSED_ARG(void *data), UNUSED_ARG(struct userNode *bot))
5699 {
5700 }
5701
5702 void channel_print(struct chanNode *channel, void *data, struct userNode *bot)
5703 {
5704 char modes[MAXLEN];
5705 irc_make_chanmode(channel, modes);
5706 send_message(data, bot, "OSMSG_CSEARCH_CHANNEL_INFO", channel->name, channel->members.used, modes, channel->topic);
5707 }
5708
5709 static MODCMD_FUNC(cmd_csearch)
5710 {
5711 cdiscrim_t discrim;
5712 unsigned int matches;
5713 cdiscrim_search_func action;
5714 struct svccmd *subcmd;
5715 char buf[MAXLEN];
5716
5717 if (!irccasecmp(argv[1], "count"))
5718 action = channel_count;
5719 else if (!irccasecmp(argv[1], "print"))
5720 action = channel_print;
5721 else {
5722 reply("OSMSG_BAD_ACTION", argv[1]);
5723 return 0;
5724 }
5725
5726 sprintf(buf, "%s %s", argv[0], argv[0]);
5727 if ((subcmd = dict_find(opserv_service->commands, buf, NULL))
5728 && !svccmd_can_invoke(user, opserv_service->bot, subcmd, channel, SVCCMD_NOISY)) {
5729 return 0;
5730 }
5731
5732 discrim = opserv_cdiscrim_create(user, cmd->parent->bot, argc - 2, argv + 2);
5733 if (!discrim)
5734 return 0;
5735
5736 if (action == channel_print)
5737 reply("OSMSG_CHANNEL_SEARCH_RESULTS");
5738 else if (action == channel_count)
5739 discrim->limit = INT_MAX;
5740
5741 matches = opserv_cdiscrim_search(discrim, action, user, cmd->parent->bot);
5742
5743 if (matches)
5744 reply("MSG_MATCH_COUNT", matches);
5745 else
5746 reply("MSG_NO_MATCHES");
5747
5748 free(discrim);
5749 return 1;
5750 }
5751
5752 static MODCMD_FUNC(cmd_gsync)
5753 {
5754 struct server *src;
5755 if (argc > 1) {
5756 src = GetServerH(argv[1]);
5757 if (!src) {
5758 reply("MSG_SERVER_UNKNOWN", argv[1]);
5759 return 0;
5760 }
5761 } else {
5762 src = self->uplink;
5763 }
5764 irc_stats(cmd->parent->bot, src, 'G');
5765 reply("OSMSG_GSYNC_RUNNING", src->name);
5766 return 1;
5767 }
5768
5769 static MODCMD_FUNC(cmd_ssync)
5770 {
5771 struct server *src;
5772 if (argc > 1) {
5773 src = GetServerH(argv[1]);
5774 if (!src) {
5775 reply("MSG_SERVER_UNKNOWN", argv[1]);
5776 return 0;
5777 }
5778 } else {
5779 src = self->uplink;
5780 }
5781 irc_stats(cmd->parent->bot, src, 'S');
5782 reply("OSMSG_SSYNC_RUNNING", src->name);
5783 return 1;
5784 }
5785
5786 struct gline_extra {
5787 struct userNode *user;
5788 struct string_list *glines;
5789 struct userNode *bot;
5790 };
5791
5792 static void
5793 gtrace_print_func(struct gline *gline, void *extra)
5794 {
5795 struct gline_extra *xtra = extra;
5796 char *when_text, set_text[20];
5797 strftime(set_text, sizeof(set_text), "%Y-%m-%d", localtime(&gline->issued));
5798 when_text = asctime(localtime(&gline->expires));
5799 when_text[strlen(when_text)-1] = 0; /* strip lame \n */
5800 send_message(xtra->user, xtra->bot, "OSMSG_GTRACE_FORMAT", gline->target, set_text, gline->issuer, when_text, gline->reason);
5801 }
5802
5803 static void
5804 gtrace_count_func(UNUSED_ARG(struct gline *gline), UNUSED_ARG(void *extra))
5805 {
5806 }
5807
5808 static void
5809 gtrace_ungline_func(struct gline *gline, void *extra)
5810 {
5811 struct gline_extra *xtra = extra;
5812 string_list_append(xtra->glines, strdup(gline->target));
5813 }
5814
5815 static MODCMD_FUNC(cmd_gtrace)
5816 {
5817 struct gline_discrim *discrim;
5818 gline_search_func action;
5819 unsigned int matches, nn;
5820 struct gline_extra extra;
5821 struct svccmd *subcmd;
5822 char buf[MAXLEN];
5823
5824 if (!irccasecmp(argv[1], "print"))
5825 action = gtrace_print_func;
5826 else if (!irccasecmp(argv[1], "count"))
5827 action = gtrace_count_func;
5828 else if (!irccasecmp(argv[1], "ungline"))
5829 action = gtrace_ungline_func;
5830 else {
5831 reply("OSMSG_BAD_ACTION", argv[1]);
5832 return 0;
5833 }
5834 sprintf(buf, "%s %s", argv[0], argv[0]);
5835 if ((subcmd = dict_find(opserv_service->commands, buf, NULL))
5836 && !svccmd_can_invoke(user, opserv_service->bot, subcmd, channel, SVCCMD_NOISY)) {
5837 return 0;
5838 }
5839
5840 discrim = gline_discrim_create(user, cmd->parent->bot, argc-2, argv+2);
5841 if (!discrim)
5842 return 0;
5843
5844 if (action == gtrace_print_func)
5845 reply("OSMSG_GLINE_SEARCH_RESULTS");
5846 else if (action == gtrace_count_func)
5847 discrim->limit = INT_MAX;
5848
5849 extra.user = user;
5850 extra.glines = alloc_string_list(4);
5851 extra.bot = cmd->parent->bot;
5852 matches = gline_discrim_search(discrim, action, &extra);
5853
5854 if (action == gtrace_ungline_func)
5855 for (nn=0; nn<extra.glines->used; nn++)
5856 gline_remove(extra.glines->list[nn], 1);
5857 free_string_list(extra.glines);
5858
5859 if (matches)
5860 reply("MSG_MATCH_COUNT", matches);
5861 else
5862 reply("MSG_NO_MATCHES");
5863 free(discrim->alt_target_mask);
5864 free(discrim);
5865 return 1;
5866 }
5867
5868 struct shun_extra {
5869 struct userNode *user;
5870 struct string_list *shuns;
5871 struct userNode *bot;
5872 };
5873
5874 static void
5875 strace_print_func(struct shun *shun, void *extra)
5876 {
5877 struct shun_extra *xtra = extra;
5878 char *when_text, set_text[20];
5879 strftime(set_text, sizeof(set_text), "%Y-%m-%d", localtime(&shun->issued));
5880 when_text = asctime(localtime(&shun->expires));
5881 when_text[strlen(when_text)-1] = 0; /* strip lame \n */
5882 send_message(xtra->user, xtra->bot, "OSMSG_STRACE_FORMAT", shun->target, set_text, shun->issuer, when_text, shun->reason);
5883 }
5884
5885 static void
5886 strace_count_func(UNUSED_ARG(struct shun *shun), UNUSED_ARG(void *extra))
5887 {
5888 }
5889
5890 static void
5891 strace_unshun_func(struct shun *shun, void *extra)
5892 {
5893 struct shun_extra *xtra = extra;
5894 string_list_append(xtra->shuns, strdup(shun->target));
5895 }
5896
5897 static MODCMD_FUNC(cmd_strace)
5898 {
5899 struct shun_discrim *discrim;
5900 shun_search_func action;
5901 unsigned int matches, nn;
5902 struct shun_extra extra;
5903 struct svccmd *subcmd;
5904 char buf[MAXLEN];
5905
5906 if (!irccasecmp(argv[1], "print"))
5907 action = strace_print_func;
5908 else if (!irccasecmp(argv[1], "count"))
5909 action = strace_count_func;
5910 else if (!irccasecmp(argv[1], "unshun"))
5911 action = strace_unshun_func;
5912 else {
5913 reply("OSMSG_BAD_ACTION", argv[1]);
5914 return 0;
5915 }
5916 sprintf(buf, "%s %s", argv[0], argv[0]);
5917 if ((subcmd = dict_find(opserv_service->commands, buf, NULL))
5918 && !svccmd_can_invoke(user, opserv_service->bot, subcmd, channel, SVCCMD_NOISY)) {
5919 return 0;
5920 }
5921
5922 discrim = shun_discrim_create(user, cmd->parent->bot, argc-2, argv+2);
5923 if (!discrim)
5924 return 0;
5925
5926 if (action == strace_print_func)
5927 reply("OSMSG_SHUN_SEARCH_RESULTS");
5928 else if (action == strace_count_func)
5929 discrim->limit = INT_MAX;
5930
5931 extra.user = user;
5932 extra.shuns = alloc_string_list(4);
5933 extra.bot = cmd->parent->bot;
5934 matches = shun_discrim_search(discrim, action, &extra);
5935
5936 if (action == strace_unshun_func)
5937 for (nn=0; nn<extra.shuns->used; nn++)
5938 shun_remove(extra.shuns->list[nn], 1);
5939 free_string_list(extra.shuns);
5940
5941 if (matches)
5942 reply("MSG_MATCH_COUNT", matches);
5943 else
5944 reply("MSG_NO_MATCHES");
5945 free(discrim->alt_target_mask);
5946 free(discrim);
5947 return 1;
5948 }
5949
5950 static int
5951 alert_check_user(const char *key, void *data, void *extra)
5952 {
5953 struct opserv_user_alert *alert = data;
5954 struct userNode *user = extra;
5955
5956 if (!discrim_match(alert->discrim, user))
5957 return 0;
5958
5959 if ((alert->reaction != REACT_NOTICE)
5960 && IsOper(user)
5961 && !alert->discrim->match_opers) {
5962 return 0;
5963 }
5964
5965 /* The user matches the alert criteria, so trigger the reaction. */
5966 if (alert->discrim->option_log)
5967 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);
5968
5969 /* Return 1 to halt alert matching, such as when killing the user
5970 that triggered the alert. */
5971 switch (alert->reaction) {
5972 case REACT_KILL:
5973 DelUser(user, opserv, 1, alert->discrim->reason);
5974 return 1;
5975 /*
5976 case REACT_SILENT:
5977 opserv_block(user, alert->owner, alert->discrim->reason, alert->discrim->duration, 1);
5978 return 1;
5979 */
5980 case REACT_GLINE:
5981 opserv_block(user, alert->owner, alert->discrim->reason, alert->discrim->duration, alert->discrim->silent);
5982 return 1;
5983 case REACT_SHUN:
5984 opserv_shun(user, alert->owner, alert->discrim->reason, alert->discrim->duration);
5985 return 1;
5986 default:
5987 log_module(OS_LOG, LOG_ERROR, "Invalid reaction type %d for alert %s.", alert->reaction, key);
5988 /* fall through to REACT_NOTICE case */
5989 case REACT_NOTICE:
5990 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);
5991 break;
5992 case REACT_TRACK:
5993 #ifdef HAVE_TRACK
5994 opserv_alert("Alert $b%s$b triggered by user $b%s$b!%s@%s (%s) (Tracking).", key, user->nick, user->ident, user->hostname, alert->discrim->reason);
5995 add_track_user(user);
5996 #endif
5997 break;
5998 }
5999 return 0;
6000 }
6001
6002 static void
6003 opserv_alert_check_nick(struct userNode *user, UNUSED_ARG(const char *old_nick))
6004 {
6005 struct gag_entry *gag;
6006 dict_foreach(opserv_nick_based_alerts, alert_check_user, user);
6007 /* Gag them if appropriate (and only if). */
6008 user->modes &= ~FLAGS_GAGGED;
6009 for (gag = gagList; gag; gag = gag->next) {
6010 if (user_matches_glob(user, gag->mask, MATCH_USENICK)) {
6011 gag_helper_func(user, NULL);
6012 break;
6013 }
6014 }
6015 }
6016
6017 static void
6018 opserv_staff_alert(struct userNode *user, UNUSED_ARG(struct handle_info *old_handle))
6019 {
6020 const char *type;
6021
6022 if (!opserv_conf.staff_auth_channel
6023 || user->uplink->burst
6024 || !user->handle_info)
6025 return;
6026 else if (user->handle_info->opserv_level)
6027 type = "OPER";
6028 else if (IsNetworkHelper(user))
6029 type = "NETWORK HELPER";
6030 else if (IsSupportHelper(user))
6031 type = "SUPPORT HELPER";
6032 else
6033 return;
6034
6035 if (irc_in_addr_is_valid(user->ip))
6036 send_channel_notice(opserv_conf.staff_auth_channel, opserv, IDENT_FORMAT" authed to %s account %s", IDENT_DATA(user), type, user->handle_info->handle);
6037 else
6038 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);
6039 }
6040
6041 static MODCMD_FUNC(cmd_log)
6042 {
6043 struct logSearch *discrim;
6044 unsigned int matches;
6045 struct logReport report;
6046
6047 discrim = log_discrim_create(cmd->parent->bot, user, argc, argv);
6048 if (!discrim)
6049 return 0;
6050
6051 reply("OSMSG_LOG_SEARCH_RESULTS");
6052 report.reporter = opserv;
6053 report.user = user;
6054 matches = log_entry_search(discrim, log_report_entry, &report);
6055
6056 if (matches)
6057 reply("MSG_MATCH_COUNT", matches);
6058 else
6059 reply("MSG_NO_MATCHES");
6060
6061 free(discrim);
6062 return 1;
6063 }
6064
6065 static int
6066 gag_helper_func(struct userNode *match, UNUSED_ARG(void *extra))
6067 {
6068 if (IsOper(match) || IsLocal(match))
6069 return 0;
6070 match->modes |= FLAGS_GAGGED;
6071 return 0;
6072 }
6073
6074 static MODCMD_FUNC(cmd_gag)
6075 {
6076 struct gag_entry *gag;
6077 unsigned int gagged;
6078 unsigned long duration;
6079 char *reason;
6080
6081 reason = unsplit_string(argv + 3, argc - 3, NULL);
6082
6083 if (!is_ircmask(argv[1])) {
6084 reply("OSMSG_INVALID_IRCMASK", argv[1]);
6085 return 0;
6086 }
6087
6088 for (gag = gagList; gag; gag = gag->next)
6089 if (match_ircglobs(gag->mask, argv[1]))
6090 break;
6091
6092 if (gag) {
6093 reply("OSMSG_REDUNDANT_GAG", argv[1]);
6094 return 0;
6095 }
6096
6097 duration = ParseInterval(argv[2]);
6098 gagged = gag_create(argv[1], user->handle_info->handle, reason, (duration?now+duration:0));
6099
6100 if (gagged)
6101 reply("OSMSG_GAG_APPLIED", argv[1], gagged);
6102 else
6103 reply("OSMSG_GAG_ADDED", argv[1]);
6104 return 1;
6105 }
6106
6107 static int
6108 ungag_helper_func(struct userNode *match, UNUSED_ARG(void *extra))
6109 {
6110 match->modes &= ~FLAGS_GAGGED;
6111 return 0;
6112 }
6113
6114 static MODCMD_FUNC(cmd_ungag)
6115 {
6116 struct gag_entry *gag;
6117 unsigned int ungagged;
6118
6119 for (gag = gagList; gag; gag = gag->next)
6120 if (!strcmp(gag->mask, argv[1]))
6121 break;
6122
6123 if (!gag) {
6124 reply("OSMSG_GAG_NOT_FOUND", argv[1]);
6125 return 0;
6126 }
6127
6128 timeq_del(gag->expires, gag_expire, gag, 0);
6129 ungagged = gag_free(gag);
6130
6131 if (ungagged)
6132 reply("OSMSG_UNGAG_APPLIED", argv[1], ungagged);
6133 else
6134 reply("OSMSG_UNGAG_ADDED", argv[1]);
6135 return 1;
6136 }
6137
6138 static MODCMD_FUNC(cmd_addalert)
6139 {
6140 opserv_alert_reaction reaction;
6141 struct svccmd *subcmd;
6142 const char *name;
6143 char buf[MAXLEN];
6144
6145 name = argv[1];
6146 sprintf(buf, "addalert %s", argv[2]);
6147 if (!(subcmd = dict_find(opserv_service->commands, buf, NULL))) {
6148 reply("OSMSG_UNKNOWN_REACTION", argv[2]);
6149 return 0;
6150 }
6151 if (!irccasecmp(argv[2], "notice"))
6152 reaction = REACT_NOTICE;
6153 else if (!irccasecmp(argv[2], "kill"))
6154 reaction = REACT_KILL;
6155 /*
6156 else if (!irccasecmp(argv[2], "silent"))
6157 reaction = REACT_SILENT;
6158 */
6159 else if (!irccasecmp(argv[2], "gline"))
6160 reaction = REACT_GLINE;
6161 else if (!irccasecmp(argv[2], "track")) {
6162 #ifndef HAVE_TRACK
6163 reply("OSMSG_TRACK_DISABLED");
6164 return 0;
6165 #else
6166 reaction = REACT_TRACK;
6167 #endif
6168 } else if (!irccasecmp(argv[2], "shun"))
6169 reaction = REACT_SHUN;
6170 else {
6171 reply("OSMSG_UNKNOWN_REACTION", argv[2]);
6172 return 0;
6173 }
6174 if (!svccmd_can_invoke(user, opserv_service->bot, subcmd, channel, SVCCMD_NOISY)
6175 || !opserv_add_user_alert(user, name, reaction, unsplit_string(argv + 3, argc - 3, NULL)))
6176 return 0;
6177 reply("OSMSG_ADDED_ALERT", name);
6178 return 1;
6179 }
6180
6181 static MODCMD_FUNC(cmd_delalert)
6182 {
6183 unsigned int i;
6184 for (i=1; i<argc; i++) {
6185 dict_remove(opserv_nick_based_alerts, argv[i]);
6186 dict_remove(opserv_channel_alerts, argv[i]);
6187 if (dict_remove(opserv_user_alerts, argv[i]))
6188 reply("OSMSG_REMOVED_ALERT", argv[i]);
6189 else
6190 reply("OSMSG_NO_SUCH_ALERT", argv[i]);
6191 }
6192 return 1;
6193 }
6194
6195 static void
6196 opserv_conf_read(void)
6197 {
6198 struct chanNode *chan;
6199 unsigned int i;
6200 struct record_data *rd;
6201 dict_t conf_node, child;
6202 const char *str, *str2;
6203 struct policer_params *pp;
6204 dict_iterator_t it;
6205
6206 rd = conf_get_node(OPSERV_CONF_NAME);
6207 if (!rd || rd->type != RECDB_OBJECT) {
6208 log_module(OS_LOG, LOG_ERROR, "config node `%s' is missing or has wrong type.", OPSERV_CONF_NAME);
6209 return;
6210 }
6211 conf_node = rd->d.object;
6212 str = database_get_data(conf_node, KEY_DEBUG_CHANNEL, RECDB_QSTRING);
6213 if (opserv && str) {
6214 str2 = database_get_data(conf_node, KEY_DEBUG_CHANNEL_MODES, RECDB_QSTRING);
6215 if (!str2)
6216 str2 = "+tinms";
6217 opserv_conf.debug_channel = AddChannel(str, now, str2, NULL, NULL);
6218 AddChannelUser(opserv, opserv_conf.debug_channel)->modes |= MODE_CHANOP;
6219 } else {
6220 opserv_conf.debug_channel = NULL;
6221 }
6222 str = database_get_data(conf_node, KEY_ALERT_CHANNEL, RECDB_QSTRING);
6223 if (opserv && str) {
6224 str2 = database_get_data(conf_node, KEY_ALERT_CHANNEL_MODES, RECDB_QSTRING);
6225 if (!str2)
6226 str2 = "+tns";
6227 opserv_conf.alert_channel = AddChannel(str, now, str2, NULL, NULL);
6228 AddChannelUser(opserv, opserv_conf.alert_channel)->modes |= MODE_CHANOP;
6229 } else {
6230 opserv_conf.alert_channel = NULL;
6231 }
6232 str = database_get_data(conf_node, KEY_STAFF_AUTH_CHANNEL, RECDB_QSTRING);
6233 if (opserv && str) {
6234 str2 = database_get_data(conf_node, KEY_STAFF_AUTH_CHANNEL_MODES, RECDB_QSTRING);
6235 if (!str2)
6236 str2 = "+timns";
6237 opserv_conf.staff_auth_channel = AddChannel(str, now, str2, NULL, NULL);
6238 AddChannelUser(opserv, opserv_conf.staff_auth_channel)->modes |= MODE_CHANOP;
6239 } else {
6240 opserv_conf.staff_auth_channel = NULL;
6241 }
6242
6243 str = database_get_data(conf_node, KEY_ADMIN_LEVEL, RECDB_QSTRING);
6244 opserv_conf.admin_level = str ? strtoul(str, NULL, 0): 800;
6245
6246 str = database_get_data(conf_node, KEY_SILENT_LEVEL, RECDB_QSTRING);
6247 opserv_conf.silent_level = str ? strtoul(str, NULL, 0): 700;
6248
6249 str = database_get_data(conf_node, KEY_UNTRUSTED_MAX, RECDB_QSTRING);
6250 opserv_conf.untrusted_max = str ? strtoul(str, NULL, 0) : 5;
6251 str = database_get_data(conf_node, KEY_PURGE_LOCK_DELAY, RECDB_QSTRING);
6252 opserv_conf.purge_lock_delay = str ? strtoul(str, NULL, 0) : 60;
6253 str = database_get_data(conf_node, KEY_JOIN_FLOOD_MODERATE, RECDB_QSTRING);
6254 opserv_conf.join_flood_moderate = str ? strtoul(str, NULL, 0) : 1;
6255 str = database_get_data(conf_node, KEY_JOIN_FLOOD_MODERATE_THRESH, RECDB_QSTRING);
6256 opserv_conf.join_flood_moderate_threshold = str ? strtoul(str, NULL, 0) : 50;
6257 str = database_get_data(conf_node, KEY_NICK, RECDB_QSTRING);
6258 if (opserv && str)
6259 NickChange(opserv, str, 0);
6260
6261 str = database_get_data(conf_node, KEY_CLONE_GLINE_DURATION, RECDB_QSTRING);
6262 opserv_conf.clone_gline_duration = str ? ParseInterval(str) : 3600;
6263 str = database_get_data(conf_node, KEY_BLOCK_GLINE_DURATION, RECDB_QSTRING);
6264 opserv_conf.block_gline_duration = str ? ParseInterval(str) : 3600;
6265
6266 free_string_list(autojoin_channels);
6267 autojoin_channels = database_get_data(conf_node, KEY_AUTOJOIN_CHANNELS, RECDB_STRING_LIST);
6268
6269 if(autojoin_channels)
6270 autojoin_channels = string_list_copy(autojoin_channels);
6271
6272 if (autojoin_channels && opserv) {
6273 for (i = 0; i < autojoin_channels->used; i++) {
6274 chan = AddChannel(autojoin_channels->list[i], now, "+nt", NULL, NULL);
6275 AddChannelUser(opserv, chan)->modes |= MODE_CHANOP;
6276 }
6277 }
6278
6279 str = database_get_data(conf_node, KEY_BLOCK_SHUN_DURATION, RECDB_QSTRING);
6280 opserv_conf.block_shun_duration = str ? ParseInterval(str) : 3600;
6281
6282 if (!opserv_conf.join_policer_params)
6283 opserv_conf.join_policer_params = policer_params_new();
6284 policer_params_set(opserv_conf.join_policer_params, "size", "20");
6285 policer_params_set(opserv_conf.join_policer_params, "drain-rate", "1");
6286 if ((child = database_get_data(conf_node, KEY_JOIN_POLICER, RECDB_OBJECT)))
6287 dict_foreach(child, set_policer_param, opserv_conf.join_policer_params);
6288
6289 for (it = dict_first(channels); it; it = iter_next(it)) {
6290 struct chanNode *cNode = iter_data(it);
6291 cNode->join_policer.params = opserv_conf.join_policer_params;
6292 }
6293
6294 if (opserv_conf.new_user_policer.params)
6295 pp = opserv_conf.new_user_policer.params;
6296 else
6297 pp = opserv_conf.new_user_policer.params = policer_params_new();
6298 policer_params_set(pp, "size", "200");
6299 policer_params_set(pp, "drain-rate", "3");
6300 if ((child = database_get_data(conf_node, KEY_NEW_USER_POLICER, RECDB_OBJECT)))
6301 dict_foreach(child, set_policer_param, pp);
6302
6303 /* Defcon configuration */
6304 DefCon[0] = 0;
6305 str = database_get_data(conf_node, KEY_DEFCON1, RECDB_QSTRING);
6306 DefCon[1] = str ? atoi(str) : 415;
6307 str = database_get_data(conf_node, KEY_DEFCON2, RECDB_QSTRING);
6308 DefCon[2] = str ? atoi(str) : 159;
6309 str = database_get_data(conf_node, KEY_DEFCON3, RECDB_QSTRING);
6310 DefCon[3] = str ? atoi(str) : 31;
6311 str = database_get_data(conf_node, KEY_DEFCON4, RECDB_QSTRING);
6312 DefCon[4] = str? atoi(str) : 23;
6313 DefCon[5] = 0;
6314
6315 str = database_get_data(conf_node, KEY_DEFCON_LEVEL, RECDB_QSTRING);
6316 DefConLevel = str ? atoi(str) : 5;
6317
6318 str = database_get_data(conf_node, KEY_DEFCON_CHANMODES, RECDB_QSTRING);
6319 DefConChanModes = str ? strdup(str) : "+r";
6320
6321 str = database_get_data(conf_node, KEY_DEFCON_SESSION_LIMIT, RECDB_QSTRING);
6322 DefConSessionLimit = str ? atoi(str) : 2;
6323
6324 str = database_get_data(conf_node, KEY_DEFCON_TIMEOUT, RECDB_QSTRING);
6325 DefConTimeOut = str ? ParseInterval(str) : 900;
6326
6327 str = database_get_data(conf_node, KEY_DEFCON_GLINE_DURATION, RECDB_QSTRING);
6328 DefConGlineExpire = str ? ParseInterval(str) : 300;
6329
6330 str = database_get_data(conf_node, KEY_DEFCON_GLOBAL, RECDB_QSTRING);
6331 GlobalOnDefcon = str ? atoi(str) : 0;
6332
6333 str = database_get_data(conf_node, KEY_DEFCON_GLOBAL_MORE, RECDB_QSTRING);
6334 GlobalOnDefconMore = str ? atoi(str) : 0;
6335
6336 str = database_get_data(conf_node, KEY_DEFCON_MESSAGE, RECDB_QSTRING);
6337 DefConMessage = str ? strdup(str) : "Put your message to send your users here. Dont forget to uncomment GlobalOnDefconMore";
6338
6339 str = database_get_data(conf_node, KEY_DEFCON_OFF_MESSAGE, RECDB_QSTRING);
6340 DefConOffMessage = str? strdup(str) : "Services are now back to normal, sorry for any inconvenience";
6341
6342 str = database_get_data(conf_node, KEY_DEFCON_GLINE_REASON, RECDB_QSTRING);
6343 DefConGlineReason = str ? strdup(str) : "This network is currently not accepting connections, please try again later";
6344 }
6345
6346 /* lame way to export opserv_conf value to nickserv.c ... */
6347 unsigned int
6348 opserv_conf_admin_level()
6349 {
6350 return(opserv_conf.admin_level);
6351 }
6352
6353 static void
6354 opserv_db_init(void) {
6355 /* set up opserv_trusted_hosts dict */
6356 dict_delete(opserv_trusted_hosts);
6357 opserv_trusted_hosts = dict_new();
6358 dict_set_free_data(opserv_trusted_hosts, free_trusted_host);
6359
6360 opserv_routing_plan_options = dict_new();
6361
6362 opserv_routing_plans = dict_new();
6363 dict_set_free_data(opserv_routing_plans, free_routing_plan);
6364 /* set up opserv_chan_warn dict */
6365
6366 /* alert trace notice channel #x replaces warnings
6367 dict_delete(opserv_chan_warn);
6368 opserv_chan_warn = dict_new();
6369 dict_set_free_keys(opserv_chan_warn, free);
6370 dict_set_free_data(opserv_chan_warn, free);
6371 */
6372 /* set up opserv_user_alerts */
6373 dict_delete(opserv_channel_alerts);
6374 opserv_channel_alerts = dict_new();
6375 dict_delete(opserv_nick_based_alerts);
6376 opserv_nick_based_alerts = dict_new();
6377 dict_delete(opserv_user_alerts);
6378 opserv_user_alerts = dict_new();
6379 dict_set_free_keys(opserv_user_alerts, free);
6380 dict_set_free_data(opserv_user_alerts, opserv_free_user_alert);
6381 /* set up opserv_bad_words */
6382 free_string_list(opserv_bad_words);
6383 opserv_bad_words = alloc_string_list(4);
6384 /* and opserv_exempt_channels */
6385 dict_delete(opserv_exempt_channels);
6386 opserv_exempt_channels = dict_new();
6387 dict_set_free_keys(opserv_exempt_channels, free);
6388 }
6389
6390 static void
6391 opserv_db_cleanup(void)
6392 {
6393 unsigned int nn;
6394
6395 /* dict_delete(opserv_chan_warn); */
6396 dict_delete(opserv_reserved_nick_dict);
6397 free_string_list(opserv_bad_words);
6398 dict_delete(opserv_exempt_channels);
6399 dict_delete(opserv_trusted_hosts);
6400 unreg_del_user_func(opserv_user_cleanup);
6401 dict_delete(opserv_hostinfo_dict);
6402 dict_delete(opserv_nick_based_alerts);
6403 dict_delete(opserv_channel_alerts);
6404 dict_delete(opserv_user_alerts);
6405 for (nn=0; nn<ArrayLength(level_strings); ++nn)
6406 free(level_strings[nn]);
6407 while (gagList)
6408 gag_free(gagList);
6409 policer_params_delete(opserv_conf.join_policer_params);
6410 policer_params_delete(opserv_conf.new_user_policer.params);
6411 }
6412
6413 void
6414 init_opserv(const char *nick)
6415 {
6416 OS_LOG = log_register_type("OpServ", "file:opserv.log");
6417 if (nick) {
6418 const char *modes = conf_get_data("services/opserv/modes", RECDB_QSTRING);
6419 opserv = AddService(nick, modes ? modes : NULL, "Oper Services", NULL);
6420 }
6421 conf_register_reload(opserv_conf_read);
6422
6423 memset(level_strings, 0, sizeof(level_strings));
6424 opserv_module = module_register("OpServ", OS_LOG, "opserv.help", opserv_help_expand);
6425 opserv_define_func("ACCESS", cmd_access, 0, 0, 0);
6426 opserv_define_func("ADDALERT", cmd_addalert, 800, 0, 4);
6427 opserv_define_func("ADDALERT NOTICE", NULL, 0, 0, 0);
6428 opserv_define_func("ADDALERT SILENT", NULL, 900, 0, 0);
6429 opserv_define_func("ADDALERT GLINE", NULL, 900, 0, 0);
6430 opserv_define_func("ADDALERT SHUN", NULL, 900, 0, 0);
6431 opserv_define_func("ADDALERT TRACK", NULL, 900, 0, 0);
6432 opserv_define_func("ADDALERT KILL", NULL, 900, 0, 0);
6433 opserv_define_func("ADDBAD", cmd_addbad, 800, 0, 2);
6434 opserv_define_func("ADDEXEMPT", cmd_addexempt, 800, 0, 2);
6435 opserv_define_func("ADDTRUST", cmd_addtrust, 800, 0, 5);
6436 opserv_define_func("BAN", cmd_ban, 100, 2, 2);
6437 opserv_define_func("BLOCK", cmd_block, 100, 0, 2);
6438 opserv_define_func("CHANINFO", cmd_chaninfo, 0, 3, 0);
6439 opserv_define_func("CLEARBANS", cmd_clearbans, 300, 2, 0);
6440 opserv_define_func("CLEARMODES", cmd_clearmodes, 400, 2, 0);
6441 opserv_define_func("CLONE", cmd_clone, 999, 0, 3);
6442 opserv_define_func("COLLIDE", cmd_collide, 800, 0, 5);
6443 opserv_define_func("CSEARCH", cmd_csearch, 100, 0, 3);
6444 opserv_define_func("CSEARCH COUNT", cmd_csearch, 0, 0, 0);
6445 opserv_define_func("CSEARCH PRINT", cmd_csearch, 0, 0, 0);
6446 opserv_define_func("DELALERT", cmd_delalert, 800, 0, 2);
6447 opserv_define_func("DELBAD", cmd_delbad, 800, 0, 2);
6448 opserv_define_func("DELEXEMPT", cmd_delexempt, 800, 0, 2);
6449 opserv_define_func("DELTRUST", cmd_deltrust, 800, 0, 2);
6450 opserv_define_func("DEOP", cmd_deop, 100, 2, 2);
6451 opserv_define_func("DEOPALL", cmd_deopall, 400, 2, 0);
6452 opserv_define_func("DEFCON", cmd_defcon, 900, 0, 0);
6453 opserv_define_func("DEHOP", cmd_dehop, 100, 2, 2);
6454 opserv_define_func("DEHOPALL", cmd_dehopall, 400, 2, 0);
6455 opserv_define_func("DEVOICEALL", cmd_devoiceall, 300, 2, 0);
6456 opserv_define_func("DIE", cmd_die, 900, 0, 2);
6457 opserv_define_func("DUMP", cmd_dump, 999, 0, 2);
6458 opserv_define_func("EDITTRUST", cmd_edittrust, 800, 0, 5);
6459 opserv_define_func("GAG", cmd_gag, 600, 0, 4);
6460 opserv_define_func("GLINE", cmd_gline, 600, 0, 4);
6461 opserv_define_func("GSYNC", cmd_gsync, 600, 0, 0);
6462 opserv_define_func("GTRACE", cmd_gtrace, 100, 0, 3);
6463 opserv_define_func("GTRACE COUNT", NULL, 0, 0, 0);
6464 opserv_define_func("GTRACE PRINT", NULL, 0, 0, 0);
6465 opserv_define_func("SBLOCK", cmd_sblock, 100, 0, 2);
6466 opserv_define_func("SHUN", cmd_shun, 600, 0, 4);
6467 opserv_define_func("SSYNC", cmd_ssync, 600, 0, 0);
6468 opserv_define_func("STRACE", cmd_strace, 100, 0, 3);
6469 opserv_define_func("STRACE COUNT", NULL, 0, 0, 0);
6470 opserv_define_func("STRACE PRINT", NULL, 0, 0, 0);
6471 opserv_define_func("INVITE", cmd_invite, 100, 2, 0);
6472 opserv_define_func("INVITEME", cmd_inviteme, 100, 0, 0);
6473 opserv_define_func("JOIN", cmd_join, 601, 0, 2);
6474 opserv_define_func("JUMP", cmd_jump, 900, 0, 2);
6475 opserv_define_func("JUPE", cmd_jupe, 900, 0, 4);
6476 opserv_define_func("KICK", cmd_kick, 100, 2, 2);
6477 opserv_define_func("KICKALL", cmd_kickall, 400, 2, 0);
6478 opserv_define_func("KICKBAN", cmd_kickban, 100, 2, 2);
6479 opserv_define_func("KICKBANALL", cmd_kickbanall, 450, 2, 0);
6480 opserv_define_func("LOG", cmd_log, 900, 0, 2);
6481 opserv_define_func("MODE", cmd_mode, 100, 2, 2);
6482 opserv_define_func("OP", cmd_op, 100, 2, 2);
6483 opserv_define_func("OPALL", cmd_opall, 400, 2, 0);
6484 opserv_define_func("HOP", cmd_hop, 100, 2, 2);
6485 opserv_define_func("HOPALL", cmd_hopall, 400, 2, 0);
6486 opserv_define_func("MAP", cmd_stats_links, 0, 0, 0);
6487 opserv_define_func("PRIVSET", cmd_privset, 900, 0, 3);
6488 opserv_define_func("PART", cmd_part, 601, 0, 2);
6489 opserv_define_func("QUERY", cmd_query, 0, 0, 0);
6490 opserv_define_func("RAW", cmd_raw, 999, 0, 2);
6491 opserv_define_func("RECONNECT", cmd_reconnect, 900, 0, 0);
6492 opserv_define_func("REFRESHG", cmd_refreshg, 600, 0, 0);
6493 opserv_define_func("REFRESHS", cmd_refreshs, 600, 0, 0);
6494 opserv_define_func("REHASH", cmd_rehash, 900, 0, 0);
6495 opserv_define_func("REOPEN", cmd_reopen, 900, 0, 0);
6496 opserv_define_func("RESETMAX", cmd_resetmax, 900, 0, 0);
6497 opserv_define_func("RESERVE", cmd_reserve, 800, 0, 5);
6498 opserv_define_func("RESTART", cmd_restart, 900, 0, 2);
6499 opserv_define_func("ROUTING ADDPLAN", cmd_routing_addplan, 800, 0, 2);
6500 opserv_define_func("ROUTING DELPLAN", cmd_routing_delplan, 800, 0, 2);
6501 opserv_define_func("ROUTING ADDSERVER", cmd_routing_addserver, 800, 0, 4);
6502 opserv_define_func("ROUTING DELSERVER", cmd_routing_delserver, 800, 0, 3);
6503 opserv_define_func("ROUTING MAP", cmd_routing_map, 800, 0, 0);
6504 opserv_define_func("ROUTING SET", cmd_routing_set, 800, 0, 0);
6505 opserv_define_func("REROUTE", cmd_reroute, 800, 0, 2);
6506 opserv_define_func("SET", cmd_set, 900, 0, 3);
6507 opserv_define_func("SETTIME", cmd_settime, 901, 0, 0);
6508 opserv_define_func("STATS ALERTS", cmd_stats_alerts, 0, 0, 0);
6509 opserv_define_func("STATS BAD", cmd_stats_bad, 0, 0, 0);
6510 opserv_define_func("STATS GAGS", cmd_stats_gags, 0, 0, 0);
6511 opserv_define_func("STATS GLINES", cmd_stats_glines, 0, 0, 0);
6512 opserv_define_func("STATS SHUNS", cmd_stats_shuns, 0, 0, 0);
6513 opserv_define_func("STATS LINKS", cmd_stats_links, 0, 0, 0);
6514 opserv_define_func("STATS MAX", cmd_stats_max, 0, 0, 0);
6515 opserv_define_func("STATS NETWORK", cmd_stats_network, 0, 0, 0);
6516 opserv_define_func("STATS NETWORK2", cmd_stats_network2, 0, 0, 0);
6517 opserv_define_func("STATS RESERVED", cmd_stats_reserved, 0, 0, 0);
6518 opserv_define_func("STATS ROUTING", cmd_stats_routing_plans, 0, 0, 0);
6519 opserv_define_func("STATS TIMEQ", cmd_stats_timeq, 0, 0, 0);
6520 opserv_define_func("STATS TRUSTED", cmd_stats_trusted, 0, 0, 0);
6521 opserv_define_func("STATS UPLINK", cmd_stats_uplink, 0, 0, 0);
6522 opserv_define_func("STATS UPTIME", cmd_stats_uptime, 0, 0, 0);
6523 /* opserv_define_func("STATS WARN", cmd_stats_warn, 0, 0, 0); */
6524 #if defined(WITH_MALLOC_X3) || defined(WITH_MALLOC_SLAB)
6525 opserv_define_func("STATS MEMORY", cmd_stats_memory, 0, 0, 0);
6526 #endif
6527 opserv_define_func("TRACE", cmd_trace, 100, 0, 3);
6528 opserv_define_func("TRACE PRINT", NULL, 0, 0, 0);
6529 opserv_define_func("TRACE COUNT", NULL, 0, 0, 0);
6530 opserv_define_func("TRACE DOMAINS", NULL, 0, 0, 0);
6531 opserv_define_func("TRACE GLINE", NULL, 600, 0, 0);
6532 opserv_define_func("TRACE SHUN", NULL, 600, 0, 0);
6533 opserv_define_func("TRACE GAG", NULL, 600, 0, 0);
6534 opserv_define_func("TRACE KILL", NULL, 600, 0, 0);
6535 opserv_define_func("UNBAN", cmd_unban, 100, 2, 2);
6536 opserv_define_func("UNGAG", cmd_ungag, 600, 0, 2);
6537 opserv_define_func("UNGLINE", cmd_ungline, 600, 0, 2);
6538 modcmd_register(opserv_module, "GTRACE UNGLINE", NULL, 0, 0, "template", "ungline", NULL);
6539 opserv_define_func("UNSHUN", cmd_unshun, 600, 0, 2);
6540 modcmd_register(opserv_module, "GTRACE UNSHUN", NULL, 0, 0, "template", "unshun", NULL);
6541 opserv_define_func("UNJUPE", cmd_unjupe, 900, 0, 2);
6542 opserv_define_func("UNRESERVE", cmd_unreserve, 800, 0, 2);
6543 /* opserv_define_func("UNWARN", cmd_unwarn, 800, 0, 0); */
6544 opserv_define_func("VOICEALL", cmd_voiceall, 300, 2, 0);
6545 /* opserv_define_func("WARN", cmd_warn, 800, 0, 2); */
6546 opserv_define_func("WHOIS", cmd_whois, 0, 0, 2);
6547
6548 opserv_reserved_nick_dict = dict_new();
6549 opserv_hostinfo_dict = dict_new();
6550
6551 dict_set_free_keys(opserv_hostinfo_dict, free);
6552 dict_set_free_data(opserv_hostinfo_dict, opserv_free_hostinfo);
6553
6554 opserv_waiting_connections = dict_new();
6555 dict_set_free_data(opserv_waiting_connections, opserv_free_waiting_connection);
6556
6557 reg_new_user_func(opserv_new_user_check);
6558 reg_nick_change_func(opserv_alert_check_nick);
6559 reg_del_user_func(opserv_user_cleanup);
6560 reg_new_channel_func(opserv_channel_check);
6561 reg_del_channel_func(opserv_channel_delete);
6562 reg_join_func(opserv_join_check);
6563 reg_auth_func(opserv_staff_alert);
6564
6565 opserv_db_init();
6566 saxdb_register("OpServ", opserv_saxdb_read, opserv_saxdb_write);
6567 if (nick)
6568 {
6569 opserv_service = service_register(opserv);
6570 opserv_service->trigger = '?';
6571 }
6572
6573 /* start auto-routing system */
6574 reroute_timer(NULL);
6575 /* start the karma timer, using the saved one if available */
6576 routing_karma_timer(dict_find(opserv_routing_plan_options, "KARMA_TIMER", NULL));
6577
6578 reg_exit_func(opserv_db_cleanup);
6579 message_register_table(msgtab);
6580 }