]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_ident.cpp
Automatically register ServiceProviders created by modules
[user/henk/code/inspircd.git] / src / modules / m_ident.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007, 2009 John Brooks <john.brooks@dereferenced.net>
6  *   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
7  *   Copyright (C) 2005-2008 Craig Edwards <craigedwards@brainbox.cc>
8  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
9  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #include "inspircd.h"
26
27 /* --------------------------------------------------------------
28  * Note that this is the third incarnation of m_ident. The first
29  * two attempts were pretty crashy, mainly due to the fact we tried
30  * to use InspSocket/BufferedSocket to make them work. This class
31  * is ok for more heavyweight tasks, it does a lot of things behind
32  * the scenes that are not good for ident sockets and it has a huge
33  * memory footprint!
34  *
35  * To fix all the issues that we had in the old ident modules (many
36  * nasty race conditions that would cause segfaults etc) we have
37  * rewritten this module to use a simplified socket object based
38  * directly off EventHandler. As EventHandler only has low level
39  * readability, writeability and error events tied directly to the
40  * socket engine, this makes our lives easier as nothing happens to
41  * our ident lookup class that is outside of this module, or out-
42  * side of the control of the class. There are no timers, internal
43  * events, or such, which will cause the socket to be deleted,
44  * queued for deletion, etc. In fact, theres not even any queueing!
45  *
46  * Using this framework we have a much more stable module.
47  *
48  * A few things to note:
49  *
50  *   O  The only place that may *delete* an active or inactive
51  *      ident socket is OnUserDisconnect in the module class.
52  *      Because this is out of scope of the socket class there is
53  *      no possibility that the socket may ever try to delete
54  *      itself.
55  *
56  *   O  Closure of the ident socket with the Close() method will
57  *      not cause removal of the socket from memory or detatchment
58  *      from its 'parent' User class. It will only flag it as an
59  *      inactive socket in the socket engine.
60  *
61  *   O  Timeouts are handled in OnCheckReaady at the same time as
62  *      checking if the ident socket has a result. This is done
63  *      by checking if the age the of the class (its instantiation
64  *      time) plus the timeout value is greater than the current time.
65  *
66  *  O   The ident socket is able to but should not modify its
67  *      'parent' user directly. Instead the ident socket class sets
68  *      a completion flag and during the next call to OnCheckReady,
69  *      the completion flag will be checked and any result copied to
70  *      that user's class. This again ensures a single point of socket
71  *      deletion for safer, neater code.
72  *
73  *  O   The code in the constructor of the ident socket is taken from
74  *      BufferedSocket but majorly thinned down. It works for both
75  *      IPv4 and IPv6.
76  *
77  *  O   In the event that the ident socket throws a ModuleException,
78  *      nothing is done. This is counted as total and complete
79  *      failure to create a connection.
80  * --------------------------------------------------------------
81  */
82
83 class IdentRequestSocket : public EventHandler
84 {
85  public:
86         LocalUser *user;                        /* User we are attached to */
87         std::string result;             /* Holds the ident string if done */
88         time_t age;
89         bool done;                      /* True if lookup is finished */
90
91         IdentRequestSocket(LocalUser* u) : user(u)
92         {
93                 age = ServerInstance->Time();
94
95                 SetFd(socket(user->server_sa.sa.sa_family, SOCK_STREAM, 0));
96
97                 if (GetFd() == -1)
98                         throw ModuleException("Could not create socket");
99
100                 done = false;
101
102                 irc::sockets::sockaddrs bindaddr;
103                 irc::sockets::sockaddrs connaddr;
104
105                 memcpy(&bindaddr, &user->server_sa, sizeof(bindaddr));
106                 memcpy(&connaddr, &user->client_sa, sizeof(connaddr));
107
108                 if (connaddr.sa.sa_family == AF_INET6)
109                 {
110                         bindaddr.in6.sin6_port = 0;
111                         connaddr.in6.sin6_port = htons(113);
112                 }
113                 else
114                 {
115                         bindaddr.in4.sin_port = 0;
116                         connaddr.in4.sin_port = htons(113);
117                 }
118
119                 /* Attempt to bind (ident requests must come from the ip the query is referring to */
120                 if (ServerInstance->SE->Bind(GetFd(), bindaddr) < 0)
121                 {
122                         this->Close();
123                         throw ModuleException("failed to bind()");
124                 }
125
126                 ServerInstance->SE->NonBlocking(GetFd());
127
128                 /* Attempt connection (nonblocking) */
129                 if (ServerInstance->SE->Connect(this, &connaddr.sa, connaddr.sa_size()) == -1 && errno != EINPROGRESS)
130                 {
131                         this->Close();
132                         throw ModuleException("connect() failed");
133                 }
134
135                 /* Add fd to socket engine */
136                 if (!ServerInstance->SE->AddFd(this, FD_WANT_NO_READ | FD_WANT_POLL_WRITE))
137                 {
138                         this->Close();
139                         throw ModuleException("out of fds");
140                 }
141         }
142
143         void OnConnected()
144         {
145                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "OnConnected()");
146                 ServerInstance->SE->ChangeEventMask(this, FD_WANT_POLL_READ | FD_WANT_NO_WRITE);
147
148                 char req[32];
149
150                 /* Build request in the form 'localport,remoteport\r\n' */
151                 int req_size;
152                 if (user->client_sa.sa.sa_family == AF_INET6)
153                         req_size = snprintf(req, sizeof(req), "%d,%d\r\n",
154                                 ntohs(user->client_sa.in6.sin6_port), ntohs(user->server_sa.in6.sin6_port));
155                 else
156                         req_size = snprintf(req, sizeof(req), "%d,%d\r\n",
157                                 ntohs(user->client_sa.in4.sin_port), ntohs(user->server_sa.in4.sin_port));
158
159                 /* Send failed if we didnt write the whole ident request --
160                  * might as well give up if this happens!
161                  */
162                 if (ServerInstance->SE->Send(this, req, req_size, 0) < req_size)
163                         done = true;
164         }
165
166         void HandleEvent(EventType et, int errornum = 0)
167         {
168                 switch (et)
169                 {
170                         case EVENT_READ:
171                                 /* fd readable event, received ident response */
172                                 ReadResponse();
173                         break;
174                         case EVENT_WRITE:
175                                 /* fd writeable event, successfully connected! */
176                                 OnConnected();
177                         break;
178                         case EVENT_ERROR:
179                                 /* fd error event, ohshi- */
180                                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "EVENT_ERROR");
181                                 /* We *must* Close() here immediately or we get a
182                                  * huge storm of EVENT_ERROR events!
183                                  */
184                                 Close();
185                                 done = true;
186                         break;
187                 }
188         }
189
190         void Close()
191         {
192                 /* Remove ident socket from engine, and close it, but dont detatch it
193                  * from its parent user class, or attempt to delete its memory.
194                  */
195                 if (GetFd() > -1)
196                 {
197                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Close ident socket %d", GetFd());
198                         ServerInstance->SE->DelFd(this);
199                         ServerInstance->SE->Close(GetFd());
200                         this->SetFd(-1);
201                 }
202         }
203
204         bool HasResult()
205         {
206                 return done;
207         }
208
209         void ReadResponse()
210         {
211                 /* We don't really need to buffer for incomplete replies here, since IDENT replies are
212                  * extremely short - there is *no* sane reason it'd be in more than one packet
213                  */
214                 char ibuf[256];
215                 int recvresult = ServerInstance->SE->Recv(this, ibuf, sizeof(ibuf)-1, 0);
216
217                 /* Close (but don't delete from memory) our socket
218                  * and flag as done since the ident lookup has finished
219                  */
220                 Close();
221                 done = true;
222
223                 /* Cant possibly be a valid response shorter than 3 chars,
224                  * because the shortest possible response would look like: '1,1'
225                  */
226                 if (recvresult < 3)
227                         return;
228
229                 ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "ReadResponse()");
230
231                 /* Truncate at the first null character, but first make sure
232                  * there is at least one null char (at the end of the buffer).
233                  */
234                 ibuf[recvresult] = '\0';
235                 std::string buf(ibuf);
236
237                 /* <2 colons: invalid
238                  *  2 colons: reply is an error
239                  * >3 colons: there is a colon in the ident
240                  */
241                 if (std::count(buf.begin(), buf.end(), ':') != 3)
242                         return;
243
244                 std::string::size_type lastcolon = buf.rfind(':');
245
246                 /* Truncate the ident at any characters we don't like, skip leading spaces */
247                 for (std::string::const_iterator i = buf.begin()+lastcolon+1; i != buf.end(); ++i)
248                 {
249                         if (result.size() == ServerInstance->Config->Limits.IdentMax)
250                                 /* Ident is getting too long */
251                                 break;
252
253                         if (*i == ' ')
254                                 continue;
255
256                         /* Add the next char to the result and see if it's still a valid ident,
257                          * according to IsIdent(). If it isn't, then erase what we just added and
258                          * we're done.
259                          */
260                         result += *i;
261                         if (!ServerInstance->IsIdent(result))
262                         {
263                                 result.erase(result.end()-1);
264                                 break;
265                         }
266                 }
267         }
268 };
269
270 class ModuleIdent : public Module
271 {
272         int RequestTimeout;
273         SimpleExtItem<IdentRequestSocket> ext;
274  public:
275         ModuleIdent() : ext("ident_socket", this)
276         {
277         }
278
279         Version GetVersion() CXX11_OVERRIDE
280         {
281                 return Version("Provides support for RFC1413 ident lookups", VF_VENDOR);
282         }
283
284         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
285         {
286                 RequestTimeout = ServerInstance->Config->ConfValue("ident")->getInt("timeout", 5);
287                 if (!RequestTimeout)
288                         RequestTimeout = 5;
289         }
290
291         void OnUserInit(LocalUser *user) CXX11_OVERRIDE
292         {
293                 ConfigTag* tag = user->MyClass->config;
294                 if (!tag->getBool("useident", true))
295                         return;
296
297                 user->WriteNotice("*** Looking up your ident...");
298
299                 try
300                 {
301                         IdentRequestSocket *isock = new IdentRequestSocket(IS_LOCAL(user));
302                         ext.set(user, isock);
303                 }
304                 catch (ModuleException &e)
305                 {
306                         ServerInstance->Logs->Log(MODNAME, LOG_DEBUG, "Ident exception: %s", e.GetReason());
307                 }
308         }
309
310         /* This triggers pretty regularly, we can use it in preference to
311          * creating a Timer object and especially better than creating a
312          * Timer per ident lookup!
313          */
314         ModResult OnCheckReady(LocalUser *user) CXX11_OVERRIDE
315         {
316                 /* Does user have an ident socket attached at all? */
317                 IdentRequestSocket *isock = ext.get(user);
318                 if (!isock)
319                         return MOD_RES_PASSTHRU;
320
321                 time_t compare = isock->age;
322                 compare += RequestTimeout;
323
324                 /* Check for timeout of the socket */
325                 if (ServerInstance->Time() >= compare)
326                 {
327                         /* Ident timeout */
328                         user->WriteNotice("*** Ident request timed out.");
329                 }
330                 else if (!isock->HasResult())
331                 {
332                         // time still good, no result yet... hold the registration
333                         return MOD_RES_DENY;
334                 }
335
336                 /* wooo, got a result (it will be good, or bad) */
337                 if (isock->result.empty())
338                 {
339                         user->ident.insert(0, 1, '~');
340                         user->WriteNotice("*** Could not find your ident, using " + user->ident + " instead.");
341                 }
342                 else
343                 {
344                         user->ident = isock->result;
345                         user->WriteNotice("*** Found your ident, '" + user->ident + "'");
346                 }
347
348                 user->InvalidateCache();
349                 isock->Close();
350                 ext.unset(user);
351                 return MOD_RES_PASSTHRU;
352         }
353
354         ModResult OnSetConnectClass(LocalUser* user, ConnectClass* myclass) CXX11_OVERRIDE
355         {
356                 if (myclass->config->getBool("requireident") && user->ident[0] == '~')
357                         return MOD_RES_DENY;
358                 return MOD_RES_PASSTHRU;
359         }
360
361         void OnCleanup(int target_type, void *item) CXX11_OVERRIDE
362         {
363                 /* Module unloading, tidy up users */
364                 if (target_type == TYPE_USER)
365                 {
366                         LocalUser* user = IS_LOCAL((User*) item);
367                         if (user)
368                                 OnUserDisconnect(user);
369                 }
370         }
371
372         void OnUserDisconnect(LocalUser *user) CXX11_OVERRIDE
373         {
374                 /* User disconnect (generic socket detatch event) */
375                 IdentRequestSocket *isock = ext.get(user);
376                 if (isock)
377                 {
378                         isock->Close();
379                         ext.unset(user);
380                 }
381         }
382 };
383
384 MODULE_INIT(ModuleIdent)