]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/usermanager.cpp
Remote /MAP (that now doesn't confuse clients ;p)
[user/henk/code/inspircd.git] / src / usermanager.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core: libIRCDusermanager */
15
16 #include "inspircd.h"
17 #include "xline.h"
18 #include "bancache.h"
19
20 /* add a client connection to the sockets list */
21 void UserManager::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, int socketfamily, sockaddr* ip, const std::string &targetip)
22 {
23         /* NOTE: Calling this one parameter constructor for User automatically
24          * allocates a new UUID and places it in the hash_map.
25          */
26         User* New = NULL;
27         try
28         {
29                 New = new User(Instance);
30         }
31         catch (...)
32         {
33                 Instance->Logs->Log("USERS", DEFAULT,"*** WTF *** Duplicated UUID! -- Crack smoking monkies have been unleashed.");
34                 Instance->SNO->WriteToSnoMask('A', "WARNING *** Duplicate UUID allocated!");
35                 return;
36         }
37
38         char ipaddr[MAXBUF];
39 #ifdef IPV6
40         if (socketfamily == AF_INET6)
41                 inet_ntop(AF_INET6, &((const sockaddr_in6*)ip)->sin6_addr, ipaddr, sizeof(ipaddr));
42         else
43 #endif
44                 inet_ntop(AF_INET, &((const sockaddr_in*)ip)->sin_addr, ipaddr, sizeof(ipaddr));
45
46         New->SetFd(socket);
47         New->SetSockAddr(socketfamily, ipaddr, port);
48
49         /* Give each of the modules an attempt to hook the user for I/O */
50         FOREACH_MOD_I(Instance, I_OnHookUserIO, OnHookUserIO(New, targetip));
51
52         if (New->io)
53         {
54                 try
55                 {
56                         New->io->OnRawSocketAccept(socket, ipaddr, port);
57                 }
58                 catch (CoreException& modexcept)
59                 {
60                         ServerInstance->Logs->Log("SOCKET", DEBUG,"%s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason());
61                 }
62         }
63
64         Instance->Logs->Log("USERS", DEBUG,"New user fd: %d", socket);
65
66         int j = 0;
67
68         this->unregistered_count++;
69
70         (*(this->clientlist))[New->uuid] = New;
71
72         /* The users default nick is their UUID */
73         strlcpy(New->nick, New->uuid, NICKMAX - 1);
74
75         New->server = Instance->FindServerNamePtr(Instance->Config->ServerName);
76         /* We don't need range checking here, we KNOW 'unknown\0' will fit into the ident field. */
77         strcpy(New->ident, "unknown");
78
79         New->registered = REG_NONE;
80         New->signon = Instance->Time() + Instance->Config->dns_timeout;
81         New->lastping = 1;
82
83         /* Smarter than your average bear^H^H^H^Hset of strlcpys. */
84         for (const char* temp = New->GetIPString(); *temp && j < 64; temp++, j++)
85                 New->dhost[j] = New->host[j] = *temp;
86         New->dhost[j] = New->host[j] = 0;
87
88         Instance->Users->AddLocalClone(New);
89         Instance->Users->AddGlobalClone(New);
90
91         /*
92          * First class check. We do this again in FullConnect after DNS is done, and NICK/USER is recieved.
93          * See my note down there for why this is required. DO NOT REMOVE. :) -- w00t
94          */
95         ConnectClass* i = New->SetClass();
96
97         if (!i)
98         {
99                 User::QuitUser(Instance, New, "Access denied by configuration");
100                 return;
101         }
102
103         /*
104          * Check connect class settings and initialise settings into User.
105          * This will be done again after DNS resolution. -- w00t
106          */
107         New->CheckClass();
108
109         this->local_users.push_back(New);
110
111         if ((this->local_users.size() > Instance->Config->SoftLimit) || (this->local_users.size() >= (unsigned int)Instance->SE->GetMaxFds()))
112         {
113                 Instance->SNO->WriteToSnoMask('A', "Warning: softlimit value has been reached: %d clients", Instance->Config->SoftLimit);
114                 User::QuitUser(Instance, New,"No more connections allowed");
115                 return;
116         }
117
118         /*
119          * XXX -
120          * this is done as a safety check to keep the file descriptors within range of fd_ref_table.
121          * its a pretty big but for the moment valid assumption:
122          * file descriptors are handed out starting at 0, and are recycled as theyre freed.
123          * therefore if there is ever an fd over 65535, 65536 clients must be connected to the
124          * irc server at once (or the irc server otherwise initiating this many connections, files etc)
125          * which for the time being is a physical impossibility (even the largest networks dont have more
126          * than about 10,000 users on ONE server!)
127          */
128         if (socket >= Instance->SE->GetMaxFds())
129         {
130                 User::QuitUser(Instance, New, "Server is full");
131                 return;
132         }
133
134         /*
135          * even with bancache, we still have to keep User::exempt current.
136          * besides that, if we get a positive bancache hit, we still won't fuck
137          * them over if they are exempt. -- w00t
138          */
139         New->exempt = (Instance->XLines->MatchesLine("E",New) != NULL);
140
141         if (BanCacheHit *b = Instance->BanCache->GetHit(New->GetIPString()))
142         {
143                 if (!b->Type.empty() && !New->exempt)
144                 {
145                         /* user banned */
146                         Instance->Logs->Log("BANCACHE", DEBUG, std::string("BanCache: Positive hit for ") + New->GetIPString());
147                         if (*Instance->Config->MoronBanner)
148                                 New->WriteServ("NOTICE %s :*** %s", New->nick, Instance->Config->MoronBanner);
149                         User::QuitUser(Instance, New, b->Reason);
150                         return;
151                 }
152                 else
153                 {
154                         Instance->Logs->Log("BANCACHE", DEBUG, std::string("BanCache: Negative hit for ") + New->GetIPString());
155                 }
156         }
157         else
158         {
159                 if (!New->exempt)
160                 {
161                         XLine* r = Instance->XLines->MatchesLine("Z",New);
162
163                         if (r)
164                         {
165                                 r->Apply(New);
166                                 return;
167                         }
168                 }
169         }
170
171         if (!Instance->SE->AddFd(New))
172         {
173                 Instance->Logs->Log("USERS", DEBUG,"Internal error on new connection");
174                 User::QuitUser(Instance, New, "Internal error handling connection");
175         }
176
177         /* NOTE: even if dns lookups are *off*, we still need to display this.
178          * BOPM and other stuff requires it.
179          */
180         New->WriteServ("NOTICE Auth :*** Looking up your hostname...");
181
182         if (Instance->Config->NoUserDns)
183         {
184                 New->dns_done = true;
185         }
186         else
187         {
188                 New->StartDNSLookup();
189         }
190 }
191
192 void UserManager::AddLocalClone(User *user)
193 {
194         clonemap::iterator x = local_clones.find(user->GetIPString());
195         if (x != local_clones.end())
196                 x->second++;
197         else
198                 local_clones[user->GetIPString()] = 1;
199 }
200
201 void UserManager::AddGlobalClone(User *user)
202 {
203         clonemap::iterator y = global_clones.find(user->GetIPString());
204         if (y != global_clones.end())
205                 y->second++;
206         else
207                 global_clones[user->GetIPString()] = 1;
208 }
209
210 void UserManager::RemoveCloneCounts(User *user)
211 {
212         clonemap::iterator x = local_clones.find(user->GetIPString());
213         if (x != local_clones.end())
214         {
215                 x->second--;
216                 if (!x->second)
217                 {
218                         local_clones.erase(x);
219                 }
220         }
221         
222         clonemap::iterator y = global_clones.find(user->GetIPString());
223         if (y != global_clones.end())
224         {
225                 y->second--;
226                 if (!y->second)
227                 {
228                         global_clones.erase(y);
229                 }
230         }
231 }
232
233 unsigned long UserManager::GlobalCloneCount(User *user)
234 {
235         clonemap::iterator x = global_clones.find(user->GetIPString());
236         if (x != global_clones.end())
237                 return x->second;
238         else
239                 return 0;
240 }
241
242 unsigned long UserManager::LocalCloneCount(User *user)
243 {
244         clonemap::iterator x = local_clones.find(user->GetIPString());
245         if (x != local_clones.end())
246                 return x->second;
247         else
248                 return 0;
249 }
250
251 /* this function counts all users connected, wether they are registered or NOT. */
252 unsigned int UserManager::UserCount()
253 {
254         /*
255          * XXX: Todo:
256          *  As part of this restructuring, move clientlist/etc fields into usermanager.
257          *      -- w00t
258          */
259         return this->clientlist->size();
260 }
261
262 /* this counts only registered users, so that the percentages in /MAP don't mess up */
263 unsigned int UserManager::RegisteredUserCount()
264 {
265         return this->clientlist->size() - this->UnregisteredUserCount();
266 }
267
268 /* return how many users are opered */
269 unsigned int UserManager::OperCount()
270 {
271         return this->all_opers.size();
272 }
273
274 /* return how many users are unregistered */
275 unsigned int UserManager::UnregisteredUserCount()
276 {
277         return this->unregistered_count;
278 }
279
280 /* return how many local registered users there are */
281 unsigned int UserManager::LocalUserCount()
282 {
283         /* Doesnt count unregistered clients */
284         return (this->local_users.size() - this->UnregisteredUserCount());
285 }
286
287 void UserManager::ServerNoticeAll(const char* text, ...)
288 {
289         if (!text)
290                 return;
291
292         char textbuffer[MAXBUF];
293         char formatbuffer[MAXBUF];
294         va_list argsPtr;
295         va_start (argsPtr, text);
296         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
297         va_end(argsPtr);
298
299         snprintf(formatbuffer,MAXBUF,"NOTICE $%s :%s", ServerInstance->Config->ServerName, textbuffer);
300
301         for (std::vector<User*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
302         {
303                 User* t = *i;
304                 t->WriteServ(std::string(formatbuffer));
305         }
306 }
307
308 void UserManager::ServerPrivmsgAll(const char* text, ...)
309 {
310         if (!text)
311                 return;
312
313         char textbuffer[MAXBUF];
314         char formatbuffer[MAXBUF];
315         va_list argsPtr;
316         va_start (argsPtr, text);
317         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
318         va_end(argsPtr);
319
320         snprintf(formatbuffer,MAXBUF,"PRIVMSG $%s :%s", ServerInstance->Config->ServerName, textbuffer);
321
322         for (std::vector<User*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
323         {
324                 User* t = *i;
325                 t->WriteServ(std::string(formatbuffer));
326         }
327 }
328
329 void UserManager::WriteMode(const char* modes, int flags, const char* text, ...)
330 {
331         char textbuffer[MAXBUF];
332         int modelen;
333         va_list argsPtr;
334
335         if (!text || !modes || !flags)
336         {
337                 ServerInstance->Logs->Log("USERS", DEFAULT,"*** BUG *** WriteMode was given an invalid parameter");
338                 return;
339         }
340
341         va_start(argsPtr, text);
342         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
343         va_end(argsPtr);
344         modelen = strlen(modes);
345
346         if (flags == WM_AND)
347         {
348                 for (std::vector<User*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
349                 {
350                         User* t = *i;
351                         bool send_to_user = true;
352
353                         for (int n = 0; n < modelen; n++)
354                         {
355                                 if (!t->IsModeSet(modes[n]))
356                                 {
357                                         send_to_user = false;
358                                         break;
359                                 }
360                         }
361                         if (send_to_user)
362                         {
363                                 t->WriteServ("NOTICE %s :%s", t->nick, textbuffer);
364                         }
365                 }
366         }
367         else if (flags == WM_OR)
368         {
369                 for (std::vector<User*>::const_iterator i = local_users.begin(); i != local_users.end(); i++)
370                 {
371                         User* t = *i;
372                         bool send_to_user = false;
373
374                         for (int n = 0; n < modelen; n++)
375                         {
376                                 if (t->IsModeSet(modes[n]))
377                                 {
378                                         send_to_user = true;
379                                         break;
380                                 }
381                         }
382
383                         if (send_to_user)
384                         {
385                                 t->WriteServ("NOTICE %s :%s", t->nick, textbuffer);
386                         }
387                 }
388         }
389 }
390
391 /* return how many users have a given mode e.g. 'a' */
392 int UserManager::ModeCount(const char mode)
393 {
394         ModeHandler* mh = this->ServerInstance->Modes->FindMode(mode, MODETYPE_USER);
395
396         if (mh)
397                 return mh->GetCount();
398         else
399                 return 0;
400 }
401
402
403