]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/usermanager.cpp
Add RAWIO log level which is more verbose than DEBUG
[user/henk/code/inspircd.git] / src / usermanager.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "xline.h"
16 #include "bancache.h"
17
18 /* add a client connection to the sockets list */
19 void UserManager::AddUser(int socket, ListenSocket* via, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server)
20 {
21         /* NOTE: Calling this one parameter constructor for User automatically
22          * allocates a new UUID and places it in the hash_map.
23          */
24         LocalUser* New = NULL;
25         try
26         {
27                 New = new LocalUser(socket, client, server);
28         }
29         catch (...)
30         {
31                 ServerInstance->Logs->Log("USERS", DEFAULT,"*** WTF *** Duplicated UUID! -- Crack smoking monkies have been unleashed.");
32                 ServerInstance->SNO->WriteToSnoMask('a', "WARNING *** Duplicate UUID allocated!");
33                 return;
34         }
35         UserIOHandler* eh = &New->eh;
36
37         /* Give each of the modules an attempt to hook the user for I/O */
38         FOREACH_MOD(I_OnHookIO, OnHookIO(eh, via));
39
40         if (eh->GetIOHook())
41         {
42                 try
43                 {
44                         eh->GetIOHook()->OnStreamSocketAccept(eh, client, server);
45                 }
46                 catch (CoreException& modexcept)
47                 {
48                         ServerInstance->Logs->Log("SOCKET", DEBUG,"%s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason());
49                 }
50         }
51
52         ServerInstance->Logs->Log("USERS", DEBUG,"New user fd: %d", socket);
53
54         this->unregistered_count++;
55
56         /* The users default nick is their UUID */
57         New->nick.assign(New->uuid, 0, ServerInstance->Config->Limits.NickMax);
58         (*(this->clientlist))[New->nick] = New;
59
60         New->ident.assign("unknown");
61
62         New->registered = REG_NONE;
63         New->signon = ServerInstance->Time() + ServerInstance->Config->dns_timeout;
64         New->lastping = 1;
65
66         /* Smarter than your average bear^H^H^H^Hset of strlcpys. */
67         New->dhost.assign(New->GetIPString(), 0, 64);
68         New->host.assign(New->GetIPString(), 0, 64);
69
70         ServerInstance->Users->AddLocalClone(New);
71         ServerInstance->Users->AddGlobalClone(New);
72
73         this->local_users.push_back(New);
74
75         if ((this->local_users.size() > ServerInstance->Config->SoftLimit) || (this->local_users.size() >= (unsigned int)ServerInstance->SE->GetMaxFds()))
76         {
77                 ServerInstance->SNO->WriteToSnoMask('a', "Warning: softlimit value has been reached: %d clients", ServerInstance->Config->SoftLimit);
78                 this->QuitUser(New,"No more connections allowed");
79                 return;
80         }
81
82         /*
83          * First class check. We do this again in FullConnect after DNS is done, and NICK/USER is recieved.
84          * See my note down there for why this is required. DO NOT REMOVE. :) -- w00t
85          */
86         New->SetClass();
87
88         /*
89          * Check connect class settings and initialise settings into User.
90          * This will be done again after DNS resolution. -- w00t
91          */
92         New->CheckClass();
93         if (New->quitting)
94                 return;
95
96         /*
97          * even with bancache, we still have to keep User::exempt current.
98          * besides that, if we get a positive bancache hit, we still won't fuck
99          * them over if they are exempt. -- w00t
100          */
101         New->exempt = (ServerInstance->XLines->MatchesLine("E",New) != NULL);
102
103         if (BanCacheHit *b = ServerInstance->BanCache->GetHit(New->GetIPString()))
104         {
105                 if (!b->Type.empty() && !New->exempt)
106                 {
107                         /* user banned */
108                         ServerInstance->Logs->Log("BANCACHE", DEBUG, std::string("BanCache: Positive hit for ") + New->GetIPString());
109                         if (!ServerInstance->Config->MoronBanner.empty())
110                                 New->WriteServ("NOTICE %s :*** %s", New->nick.c_str(), ServerInstance->Config->MoronBanner.c_str());
111                         this->QuitUser(New, b->Reason);
112                         return;
113                 }
114                 else
115                 {
116                         ServerInstance->Logs->Log("BANCACHE", DEBUG, std::string("BanCache: Negative hit for ") + New->GetIPString());
117                 }
118         }
119         else
120         {
121                 if (!New->exempt)
122                 {
123                         XLine* r = ServerInstance->XLines->MatchesLine("Z",New);
124
125                         if (r)
126                         {
127                                 r->Apply(New);
128                                 return;
129                         }
130                 }
131         }
132
133         if (!ServerInstance->SE->AddFd(eh, FD_WANT_FAST_READ | FD_WANT_EDGE_WRITE))
134         {
135                 ServerInstance->Logs->Log("USERS", DEBUG,"Internal error on new connection");
136                 this->QuitUser(New, "Internal error handling connection");
137         }
138
139         /* NOTE: even if dns lookups are *off*, we still need to display this.
140          * BOPM and other stuff requires it.
141          */
142         New->WriteServ("NOTICE Auth :*** Looking up your hostname...");
143         if (ServerInstance->Config->RawLog)
144                 New->WriteServ("NOTICE Auth :*** Raw I/O logging is enabled on this server. All messages, passwords, and commands are being recorded.");
145
146         FOREACH_MOD(I_OnUserInit,OnUserInit(New));
147
148         if (ServerInstance->Config->NoUserDns)
149         {
150                 New->WriteServ("NOTICE %s :*** Skipping host resolution (disabled by server administrator)", New->nick.c_str());
151                 New->dns_done = true;
152         }
153         else
154         {
155                 New->StartDNSLookup();
156         }
157 }
158
159 void UserManager::QuitUser(User *user, const std::string &quitreason, const char* operreason)
160 {
161         if (user->quitting)
162         {
163                 ServerInstance->Logs->Log("CULLLIST",DEBUG, "*** Warning *** - You tried to quit a user (%s) twice. Did your module call QuitUser twice?", user->nick.c_str());
164                 return;
165         }
166
167         if (IS_SERVER(user))
168         {
169                 ServerInstance->Logs->Log("CULLLIST",DEBUG, "*** Warning *** - You tried to quit a fake user (%s)", user->nick.c_str());
170                 return;
171         }
172
173         user->quitting = true;
174
175         ServerInstance->Logs->Log("USERS", DEBUG, "QuitUser: %s=%s '%s'", user->uuid.c_str(), user->nick.c_str(), quitreason.c_str());
176         user->Write("ERROR :Closing link: (%s@%s) [%s]", user->ident.c_str(), user->host.c_str(), *operreason ? operreason : quitreason.c_str());
177
178         std::string reason;
179         std::string oper_reason;
180         reason.assign(quitreason, 0, ServerInstance->Config->Limits.MaxQuit);
181         if (operreason && *operreason)
182                 oper_reason.assign(operreason, 0, ServerInstance->Config->Limits.MaxQuit);
183         else
184                 oper_reason = quitreason;
185
186         ServerInstance->GlobalCulls.AddItem(user);
187
188         if (user->registered == REG_ALL)
189         {
190                 FOREACH_MOD(I_OnUserQuit,OnUserQuit(user, reason, oper_reason));
191                 user->WriteCommonQuit(reason, oper_reason);
192         }
193
194         if (user->registered != REG_ALL)
195                 if (ServerInstance->Users->unregistered_count)
196                         ServerInstance->Users->unregistered_count--;
197
198         if (IS_LOCAL(user))
199         {
200                 LocalUser* lu = IS_LOCAL(user);
201                 FOREACH_MOD(I_OnUserDisconnect,OnUserDisconnect(lu));
202                 lu->eh.Close();
203         }
204
205         /*
206          * this must come before the ServerInstance->SNO->WriteToSnoMaskso that it doesnt try to fill their buffer with anything
207          * if they were an oper with +sn +qQ.
208          */
209         if (user->registered == REG_ALL)
210         {
211                 if (IS_LOCAL(user))
212                 {
213                         if (!user->quietquit)
214                         {
215                                 ServerInstance->SNO->WriteToSnoMask('q',"Client exiting: %s!%s@%s [%s] (%s)",
216                                         user->nick.c_str(), user->ident.c_str(), user->host.c_str(), oper_reason.c_str(), user->GetIPString());
217                         }
218                 }
219                 else
220                 {
221                         if ((!ServerInstance->SilentULine(user->server)) && (!user->quietquit))
222                         {
223                                 ServerInstance->SNO->WriteToSnoMask('Q',"Client exiting on server %s: %s!%s@%s [%s] (%s)",
224                                         user->server.c_str(), user->nick.c_str(), user->ident.c_str(), user->host.c_str(), oper_reason.c_str(), user->GetIPString());
225                         }
226                 }
227                 user->AddToWhoWas();
228         }
229
230         user_hash::iterator iter = this->clientlist->find(user->nick);
231
232         if (iter != this->clientlist->end())
233                 this->clientlist->erase(iter);
234         else
235                 ServerInstance->Logs->Log("USERS", DEBUG, "iter == clientlist->end, can't remove them from hash... problematic..");
236
237         ServerInstance->Users->uuidlist->erase(user->uuid);
238 }
239
240
241 void UserManager::AddLocalClone(User *user)
242 {
243         clonemap::iterator x;
244         x = local_clones.find(user->GetCIDRMask());
245         if (x != local_clones.end())
246                 x->second++;
247         else
248                 local_clones[user->GetCIDRMask()] = 1;
249 }
250
251 void UserManager::AddGlobalClone(User *user)
252 {
253         clonemap::iterator x;
254
255         x = global_clones.find(user->GetCIDRMask());
256         if (x != global_clones.end())
257                 x->second++;
258         else
259                 global_clones[user->GetCIDRMask()] = 1;
260 }
261
262 void UserManager::RemoveCloneCounts(User *user)
263 {
264         if (IS_LOCAL(user))
265         {
266                 clonemap::iterator x = local_clones.find(user->GetCIDRMask());
267                 if (x != local_clones.end())
268                 {
269                         x->second--;
270                         if (!x->second)
271                         {
272                                 local_clones.erase(x);
273                         }
274                 }
275         }
276
277         clonemap::iterator y = global_clones.find(user->GetCIDRMask());
278         if (y != global_clones.end())
279         {
280                 y->second--;
281                 if (!y->second)
282                 {
283                         global_clones.erase(y);
284                 }
285         }
286 }
287
288 unsigned long UserManager::GlobalCloneCount(User *user)
289 {
290         clonemap::iterator x = global_clones.find(user->GetCIDRMask());
291         if (x != global_clones.end())
292                 return x->second;
293         else
294                 return 0;
295 }
296
297 unsigned long UserManager::LocalCloneCount(User *user)
298 {
299         clonemap::iterator x = local_clones.find(user->GetCIDRMask());
300         if (x != local_clones.end())
301                 return x->second;
302         else
303                 return 0;
304 }
305
306 /* this function counts all users connected, wether they are registered or NOT. */
307 unsigned int UserManager::UserCount()
308 {
309         /*
310          * XXX: Todo:
311          *  As part of this restructuring, move clientlist/etc fields into usermanager.
312          *      -- w00t
313          */
314         return this->clientlist->size();
315 }
316
317 /* this counts only registered users, so that the percentages in /MAP don't mess up */
318 unsigned int UserManager::RegisteredUserCount()
319 {
320         return this->clientlist->size() - this->UnregisteredUserCount();
321 }
322
323 /* return how many users are opered */
324 unsigned int UserManager::OperCount()
325 {
326         return this->all_opers.size();
327 }
328
329 /* return how many users are unregistered */
330 unsigned int UserManager::UnregisteredUserCount()
331 {
332         return this->unregistered_count;
333 }
334
335 /* return how many local registered users there are */
336 unsigned int UserManager::LocalUserCount()
337 {
338         /* Doesnt count unregistered clients */
339         return (this->local_users.size() - this->UnregisteredUserCount());
340 }
341
342 void UserManager::ServerNoticeAll(const char* text, ...)
343 {
344         if (!text)
345                 return;
346
347         char textbuffer[MAXBUF];
348         char formatbuffer[MAXBUF];
349         va_list argsPtr;
350         va_start (argsPtr, text);
351         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
352         va_end(argsPtr);
353
354         snprintf(formatbuffer,MAXBUF,"NOTICE $%s :%s", ServerInstance->Config->ServerName.c_str(), textbuffer);
355
356         for (std::vector<LocalUser*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
357         {
358                 User* t = *i;
359                 t->WriteServ(std::string(formatbuffer));
360         }
361 }
362
363 void UserManager::ServerPrivmsgAll(const char* text, ...)
364 {
365         if (!text)
366                 return;
367
368         char textbuffer[MAXBUF];
369         char formatbuffer[MAXBUF];
370         va_list argsPtr;
371         va_start (argsPtr, text);
372         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
373         va_end(argsPtr);
374
375         snprintf(formatbuffer,MAXBUF,"PRIVMSG $%s :%s", ServerInstance->Config->ServerName.c_str(), textbuffer);
376
377         for (std::vector<LocalUser*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
378         {
379                 User* t = *i;
380                 t->WriteServ(std::string(formatbuffer));
381         }
382 }
383
384
385 /* return how many users have a given mode e.g. 'a' */
386 int UserManager::ModeCount(const char mode)
387 {
388         int c = 0;
389         for(user_hash::iterator i = clientlist->begin(); i != clientlist->end(); ++i)
390         {
391                 User* u = i->second;
392                 if (u->modes[mode-65])
393                         c++;
394         }
395         return c;
396 }