]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/usermanager.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / usermanager.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Dennis Friis <peavey@inspircd.org>
6  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
7  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include "inspircd.h"
24 #include "xline.h"
25 #include "iohook.h"
26
27 UserManager::UserManager()
28         : unregistered_count(0)
29 {
30 }
31
32 UserManager::~UserManager()
33 {
34         for (user_hash::iterator i = clientlist.begin(); i != clientlist.end(); ++i)
35         {
36                 delete i->second;
37         }
38 }
39
40 /* add a client connection to the sockets list */
41 void UserManager::AddUser(int socket, ListenSocket* via, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server)
42 {
43         /* NOTE: Calling this one parameter constructor for User automatically
44          * allocates a new UUID and places it in the hash_map.
45          */
46         LocalUser* New = NULL;
47         try
48         {
49                 New = new LocalUser(socket, client, server);
50         }
51         catch (...)
52         {
53                 ServerInstance->Logs->Log("USERS", LOG_DEFAULT, "*** WTF *** Duplicated UUID! -- Crack smoking monkeys have been unleashed.");
54                 ServerInstance->SNO->WriteToSnoMask('a', "WARNING *** Duplicate UUID allocated!");
55                 return;
56         }
57         UserIOHandler* eh = &New->eh;
58
59         // If this listener has an IO hook provider set then tell it about the connection
60         if (via->iohookprov)
61                 via->iohookprov->OnAccept(eh, client, server);
62
63         ServerInstance->Logs->Log("USERS", LOG_DEBUG, "New user fd: %d", socket);
64
65         this->unregistered_count++;
66
67         /* The users default nick is their UUID */
68         New->nick = New->uuid;
69         this->clientlist[New->nick] = New;
70
71         New->registered = REG_NONE;
72         New->signon = ServerInstance->Time() + ServerInstance->Config->dns_timeout;
73         New->lastping = 1;
74
75         this->AddClone(New);
76
77         this->local_users.push_front(New);
78
79         if (this->local_users.size() > ServerInstance->Config->SoftLimit)
80         {
81                 ServerInstance->SNO->WriteToSnoMask('a', "Warning: softlimit value has been reached: %d clients", ServerInstance->Config->SoftLimit);
82                 this->QuitUser(New,"No more connections allowed");
83                 return;
84         }
85
86         /*
87          * First class check. We do this again in FullConnect after DNS is done, and NICK/USER is recieved.
88          * See my note down there for why this is required. DO NOT REMOVE. :) -- w00t
89          */
90         New->SetClass();
91
92         /*
93          * Check connect class settings and initialise settings into User.
94          * This will be done again after DNS resolution. -- w00t
95          */
96         New->CheckClass(ServerInstance->Config->CCOnConnect);
97         if (New->quitting)
98                 return;
99
100         /*
101          * even with bancache, we still have to keep User::exempt current.
102          * besides that, if we get a positive bancache hit, we still won't fuck
103          * them over if they are exempt. -- w00t
104          */
105         New->exempt = (ServerInstance->XLines->MatchesLine("E",New) != NULL);
106
107         BanCacheHit* const b = ServerInstance->BanCache.GetHit(New->GetIPString());
108         if (b)
109         {
110                 if (!b->Type.empty() && !New->exempt)
111                 {
112                         /* user banned */
113                         ServerInstance->Logs->Log("BANCACHE", LOG_DEBUG, "BanCache: Positive hit for " + New->GetIPString());
114                         if (!ServerInstance->Config->XLineMessage.empty())
115                                 New->WriteNotice("*** " +  ServerInstance->Config->XLineMessage);
116                         this->QuitUser(New, b->Reason);
117                         return;
118                 }
119                 else
120                 {
121                         ServerInstance->Logs->Log("BANCACHE", LOG_DEBUG, "BanCache: Negative hit for " + New->GetIPString());
122                 }
123         }
124         else
125         {
126                 if (!New->exempt)
127                 {
128                         XLine* r = ServerInstance->XLines->MatchesLine("Z",New);
129
130                         if (r)
131                         {
132                                 r->Apply(New);
133                                 return;
134                         }
135                 }
136         }
137
138         if (!SocketEngine::AddFd(eh, FD_WANT_FAST_READ | FD_WANT_EDGE_WRITE))
139         {
140                 ServerInstance->Logs->Log("USERS", LOG_DEBUG, "Internal error on new connection");
141                 this->QuitUser(New, "Internal error handling connection");
142         }
143
144         if (ServerInstance->Config->RawLog)
145                 New->WriteNotice("*** Raw I/O logging is enabled on this server. All messages, passwords, and commands are being recorded.");
146
147         FOREACH_MOD(OnSetUserIP, (New));
148         if (New->quitting)
149                 return;
150
151         FOREACH_MOD(OnUserInit, (New));
152 }
153
154 void UserManager::QuitUser(User* user, const std::string& quitreason, const std::string* operreason)
155 {
156         if (user->quitting)
157         {
158                 ServerInstance->Logs->Log("USERS", LOG_DEFAULT, "ERROR: Tried to quit quitting user: " + user->nick);
159                 return;
160         }
161
162         if (IS_SERVER(user))
163         {
164                 ServerInstance->Logs->Log("USERS", LOG_DEFAULT, "ERROR: Tried to quit server user: " + user->nick);
165                 return;
166         }
167
168         user->quitting = true;
169
170         ServerInstance->Logs->Log("USERS", LOG_DEBUG, "QuitUser: %s=%s '%s'", user->uuid.c_str(), user->nick.c_str(), quitreason.c_str());
171         user->Write("ERROR :Closing link: (%s@%s) [%s]", user->ident.c_str(), user->host.c_str(), operreason ? operreason->c_str() : quitreason.c_str());
172
173         std::string reason;
174         reason.assign(quitreason, 0, ServerInstance->Config->Limits.MaxQuit);
175         if (!operreason)
176                 operreason = &reason;
177
178         ServerInstance->GlobalCulls.AddItem(user);
179
180         if (user->registered == REG_ALL)
181         {
182                 FOREACH_MOD(OnUserQuit, (user, reason, *operreason));
183                 user->WriteCommonQuit(reason, *operreason);
184         }
185         else
186                 unregistered_count--;
187
188         if (IS_LOCAL(user))
189         {
190                 LocalUser* lu = IS_LOCAL(user);
191                 FOREACH_MOD(OnUserDisconnect, (lu));
192                 lu->eh.Close();
193
194                 if (lu->registered == REG_ALL)
195                         ServerInstance->SNO->WriteToSnoMask('q',"Client exiting: %s (%s) [%s]", user->GetFullRealHost().c_str(), user->GetIPString().c_str(), operreason->c_str());
196                 local_users.erase(lu);
197         }
198
199         if (!clientlist.erase(user->nick))
200                 ServerInstance->Logs->Log("USERS", LOG_DEFAULT, "ERROR: Nick not found in clientlist, cannot remove: " + user->nick);
201
202         uuidlist.erase(user->uuid);
203         user->PurgeEmptyChannels();
204 }
205
206 void UserManager::AddClone(User* user)
207 {
208         CloneCounts& counts = clonemap[user->GetCIDRMask()];
209         counts.global++;
210         if (IS_LOCAL(user))
211                 counts.local++;
212 }
213
214 void UserManager::RemoveCloneCounts(User *user)
215 {
216         CloneMap::iterator it = clonemap.find(user->GetCIDRMask());
217         if (it != clonemap.end())
218         {
219                 CloneCounts& counts = it->second;
220                 counts.global--;
221                 if (counts.global == 0)
222                 {
223                         // No more users from this IP, remove entry from the map
224                         clonemap.erase(it);
225                         return;
226                 }
227
228                 if (IS_LOCAL(user))
229                         counts.local--;
230         }
231 }
232
233 const UserManager::CloneCounts& UserManager::GetCloneCounts(User* user) const
234 {
235         CloneMap::const_iterator it = clonemap.find(user->GetCIDRMask());
236         if (it != clonemap.end())
237                 return it->second;
238         else
239                 return zeroclonecounts;
240 }
241
242 void UserManager::ServerNoticeAll(const char* text, ...)
243 {
244         std::string message;
245         VAFORMAT(message, text, text);
246         message = "NOTICE $" + ServerInstance->Config->ServerName + " :" + message;
247
248         for (LocalList::const_iterator i = local_users.begin(); i != local_users.end(); ++i)
249         {
250                 User* t = *i;
251                 t->WriteServ(message);
252         }
253 }
254
255 void UserManager::GarbageCollect()
256 {
257         // Reset the already_sent IDs so we don't wrap it around and drop a message
258         LocalUser::already_sent_id = 0;
259         for (LocalList::const_iterator i = local_users.begin(); i != local_users.end(); ++i)
260         {
261                 (**i).already_sent = 0;
262                 (**i).RemoveExpiredInvites();
263         }
264 }
265
266 /* this returns true when all modules are satisfied that the user should be allowed onto the irc server
267  * (until this returns true, a user will block in the waiting state, waiting to connect up to the
268  * registration timeout maximum seconds)
269  */
270 bool UserManager::AllModulesReportReady(LocalUser* user)
271 {
272         ModResult res;
273         FIRST_MOD_RESULT(OnCheckReady, res, (user));
274         return (res == MOD_RES_PASSTHRU);
275 }
276
277 /**
278  * This function is called once a second from the mainloop.
279  * It is intended to do background checking on all the user structs, e.g.
280  * stuff like ping checks, registration timeouts, etc.
281  */
282 void UserManager::DoBackgroundUserStuff()
283 {
284         /*
285          * loop over all local users..
286          */
287         for (LocalList::iterator i = local_users.begin(); i != local_users.end(); ++i)
288         {
289                 LocalUser* curr = *i;
290
291                 if (curr->CommandFloodPenalty || curr->eh.getSendQSize())
292                 {
293                         unsigned int rate = curr->MyClass->GetCommandRate();
294                         if (curr->CommandFloodPenalty > rate)
295                                 curr->CommandFloodPenalty -= rate;
296                         else
297                                 curr->CommandFloodPenalty = 0;
298                         curr->eh.OnDataReady();
299                 }
300
301                 switch (curr->registered)
302                 {
303                         case REG_ALL:
304                                 if (ServerInstance->Time() > curr->nping)
305                                 {
306                                         // This user didn't answer the last ping, remove them
307                                         if (!curr->lastping)
308                                         {
309                                                 time_t time = ServerInstance->Time() - (curr->nping - curr->MyClass->GetPingTime());
310                                                 const std::string message = "Ping timeout: " + ConvToStr(time) + (time != 1 ? " seconds" : " second");
311                                                 this->QuitUser(curr, message);
312                                                 continue;
313                                         }
314
315                                         curr->Write("PING :" + ServerInstance->Config->ServerName);
316                                         curr->lastping = 0;
317                                         curr->nping = ServerInstance->Time() + curr->MyClass->GetPingTime();
318                                 }
319                                 break;
320                         case REG_NICKUSER:
321                                 if (AllModulesReportReady(curr))
322                                 {
323                                         /* User has sent NICK/USER, modules are okay, DNS finished. */
324                                         curr->FullConnect();
325                                         continue;
326                                 }
327                                 break;
328                 }
329
330                 if (curr->registered != REG_ALL && (ServerInstance->Time() > (curr->age + curr->MyClass->GetRegTimeout())))
331                 {
332                         /*
333                          * registration timeout -- didnt send USER/NICK/HOST
334                          * in the time specified in their connection class.
335                          */
336                         this->QuitUser(curr, "Registration timeout");
337                         continue;
338                 }
339         }
340 }