]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/socket.cpp
Add OnSendWhoLine hook, and use it in the oper hiding modules
[user/henk/code/inspircd.git] / src / socket.cpp
index 22069b87dd4629b814fe496b690d113be0e30527..ccae48a6d7cc654e2f7db2f063e5191f4dbd3595 100644 (file)
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *               <Craig@chatspike.net>
- *     
- * Written by Craig Edwards, Craig McLure, and others.
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
+ *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
  */
 
-#include <string>
-#include "configreader.h"
-#include "socket.h"
+/* $Core */
+
 #include "inspircd.h"
-#include "inspstring.h"
-#include "helperfuncs.h"
+#include "socket.h"
 #include "socketengine.h"
-#include "message.h"
-
-extern InspIRCd* ServerInstance;
-extern ServerConfig* Config;
-extern time_t TIME;
+using irc::sockets::sockaddrs;
 
 /** This will bind a socket to a port. It works for UDP/TCP.
- * If a hostname is given to bind to, the function will first
- * attempt to resolve the hostname, then bind to the IP the 
- * hostname resolves to. This is a blocking lookup blocking for
- * a maximum of one second before it times out, using the DNS
- * server specified in the configuration file.
- */ 
-bool BindSocket(int sockfd, insp_sockaddr client, insp_sockaddr server, int port, char* addr)
+ * It can only bind to IP addresses, if you wish to bind to hostnames
+ * you should first resolve them using class 'Resolver'.
+ */
+bool InspIRCd::BindSocket(int sockfd, int port, const char* addr, bool dolisten)
 {
-       memset(&server,0,sizeof(server));
-       insp_inaddr addy;
-       bool resolved = false;
-       char resolved_addr[128];
+       sockaddrs servaddr;
+       int ret;
 
-       if (*addr == '*')
-               *addr = 0;
+       if (*addr == '*' || *addr == '\0')
+               addr = NULL;
 
-       if (*addr && !inet_aton(addr,&addy))
-       {
-               /* If they gave a hostname, bind to the IP it resolves to */
-               if (CleanAndResolve(resolved_addr, addr, true, 1))
-               {
-                       inet_aton(resolved_addr,&addy);
-                       log(DEFAULT,"Resolved binding '%s' -> '%s'",addr,resolved_addr);
-                       server.sin_addr = addy;
-                       resolved = true;
-               }
-               else
-               {
-                       log(DEFAULT,"WARNING: Could not resolve '%s' to an IP for binding to on port %d",addr,port);
-                       return false;
-               }
-       }
-       server.sin_family = AF_FAMILY;
-       if (!resolved)
+       if (port == -1 && !addr)
        {
-               if (!*addr)
-               {
-                       server.sin_addr.s_addr = htonl(INADDR_ANY);
-               }
-               else
-               {
-                       server.sin_addr = addy;
-               }
+               /* Port -1: Means UDP IPV4 port binding - Special case
+                * used by DNS engine.
+                */
+               memset(&servaddr, 0, sizeof(servaddr));
+               servaddr.in4.sin_family = AF_INET;
        }
-       server.sin_port = htons(port);
-       if (bind(sockfd,(struct sockaddr*)&server,sizeof(server)) < 0)
+       else if (!irc::sockets::aptosa(addr, port, &servaddr))
+               return false;
+
+       ret = SE->Bind(sockfd, &servaddr.sa, sa_size(servaddr));
+
+       if (ret < 0)
        {
                return false;
        }
        else
        {
-               log(DEBUG,"Bound port %s:%d",*addr ? addr : "*",port);
-               if (listen(sockfd, Config->MaxConn) == -1)
+               if (dolisten)
                {
-                       log(DEFAULT,"ERROR in listen(): %s",strerror(errno));
-                       return false;
+                       if (SE->Listen(sockfd, Config->MaxConn) == -1)
+                       {
+                               this->Logs->Log("SOCKET",DEFAULT,"ERROR in listen(): %s",strerror(errno));
+                               return false;
+                       }
+                       else
+                       {
+                               this->Logs->Log("SOCKET",DEBUG,"New socket binding for %d with listen: %s:%d", sockfd, addr, port);
+                               SE->NonBlocking(sockfd);
+                               return true;
+                       }
                }
                else
                {
-                       NonBlocking(sockfd);
+                       this->Logs->Log("SOCKET",DEBUG,"New socket binding for %d without listen: %s:%d", sockfd, addr, port);
                        return true;
                }
        }
 }
 
-
 // Open a TCP Socket
-int OpenTCPSocket()
+int irc::sockets::OpenTCPSocket(const char* addr, int socktype)
 {
        int sockfd;
        int on = 1;
-       struct linger linger = { 0 };
-  
-       if ((sockfd = socket (AF_FAMILY, SOCK_STREAM, 0)) < 0)
+       addr = addr;
+       struct linger linger = { 0, 0 };
+       if (!*addr)
+       {
+#ifdef IPV6
+               sockfd = socket (PF_INET6, socktype, 0);
+               if (sockfd < 0)
+#endif
+                       sockfd = socket (PF_INET, socktype, 0);
+       }
+       else if (strchr(addr,':'))
+               sockfd = socket (PF_INET6, socktype, 0);
+       else
+               sockfd = socket (PF_INET, socktype, 0);
+
+       if (sockfd < 0)
        {
-               log(DEFAULT,"Error creating TCP socket: %s",strerror(errno));
-               return (ERROR);
+               return ERROR;
        }
        else
        {
@@ -112,138 +101,183 @@ int OpenTCPSocket()
                /* This is BSD compatible, setting l_onoff to 0 is *NOT* http://web.irc.org/mla/ircd-dev/msg02259.html */
                linger.l_onoff = 1;
                linger.l_linger = 1;
-               setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &linger,sizeof(linger));
+               setsockopt(sockfd, SOL_SOCKET, SO_LINGER, &linger, sizeof(linger));
                return (sockfd);
        }
 }
 
-bool HasPort(int port, char* addr)
-{
-       for (unsigned long count = 0; count < ServerInstance->stats->BoundPortCount; count++)
-       {
-               if ((port == Config->ports[count]) && (!strcasecmp(Config->addrs[count],addr)))
-               {
-                       return true;
-               }
-       }
-       return false;
-}
-
-int BindPorts(bool bail)
+// XXX: it would be VERY nice to genericize this so all listen stuff (server/client) could use the one function. -- w00t
+int InspIRCd::BindPorts(FailedPortList &failed_ports)
 {
-       char configToken[MAXBUF], Addr[MAXBUF], Type[MAXBUF];
-       insp_sockaddr client, server;
-       int clientportcount = 0;
-       int BoundPortCount = 0;
+       char configToken[MAXBUF], Addr[MAXBUF], Type[MAXBUF], Desc[MAXBUF];
+       int bound = 0;
+       std::vector<ListenSocketBase*> old_ports(ports.begin(), ports.end());
 
-       if (!bail)
+       for (int count = 0; count < Config->ConfValueEnum("bind"); count++)
        {
-               int InitialPortCount = ServerInstance->stats->BoundPortCount;
-               log(DEBUG,"Initial port count: %d",InitialPortCount);
+               Config->ConfValue("bind", "port", count, configToken, MAXBUF);
+               Config->ConfValue("bind", "address", count, Addr, MAXBUF);
+               Config->ConfValue("bind", "type", count, Type, MAXBUF);
+               Config->ConfValue("bind", "ssl", count, Desc, MAXBUF);
 
-               for (int count = 0; count < Config->ConfValueEnum(Config->config_data, "bind"); count++)
-               {
-                       Config->ConfValue(Config->config_data, "bind", "port", count, configToken, MAXBUF);
-                       Config->ConfValue(Config->config_data, "bind", "address", count, Addr, MAXBUF);
-                       Config->ConfValue(Config->config_data, "bind", "type", count, Type, MAXBUF);
+               if (strncmp(Addr, "::ffff:", 7) == 0)
+                       this->Logs->Log("SOCKET",DEFAULT, "Using 4in6 (::ffff:) isn't recommended. You should bind IPv4 addresses directly instead.");
 
-                       if (((!*Type) || (!strcmp(Type,"clients"))) && (!HasPort(atoi(configToken),Addr)))
+               if ((!*Type) || (!strcmp(Type,"clients")))
+               {
+                       irc::portparser portrange(configToken, false);
+                       int portno = -1;
+                       while (0 != (portno = portrange.GetToken()))
                        {
-                               // modules handle server bind types now
-                               Config->ports[clientportcount+InitialPortCount] = atoi(configToken);
                                if (*Addr == '*')
                                        *Addr = 0;
 
-                               strlcpy(Config->addrs[clientportcount+InitialPortCount],Addr,256);
-                               clientportcount++;
-                               log(DEBUG,"NEW binding %s:%s [%s] from config",Addr,configToken, Type);
-                       }
-               }
-               int PortCount = clientportcount;
-               if (PortCount)
-               {
-                       for (int count = InitialPortCount; count < InitialPortCount + PortCount; count++)
-                       {
-                               if ((Config->openSockfd[count] = OpenTCPSocket()) == ERROR)
-                               {
-                                       log(DEBUG,"Bad fd %d binding port [%s:%d]",Config->openSockfd[count],Config->addrs[count],Config->ports[count]);
-                                       return ERROR;
-                               }
-                               if (!BindSocket(Config->openSockfd[count],client,server,Config->ports[count],Config->addrs[count]))
+                               irc::sockets::sockaddrs bindspec;
+                               irc::sockets::aptosa(Addr, portno, &bindspec);
+                               std::string bind_readable = irc::sockets::satouser(&bindspec);
+
+                               bool skip = false;
+                               for (std::vector<ListenSocketBase *>::iterator n = old_ports.begin(); n != old_ports.end(); ++n)
                                {
-                                       log(DEFAULT,"Failed to bind port [%s:%d]: %s",Config->addrs[count],Config->ports[count],strerror(errno));
+                                       if ((*n)->GetBindDesc() == bind_readable)
+                                       {
+                                               skip = true;
+                                               old_ports.erase(n);
+                                               break;
+                                       }
                                }
-                               else
+                               if (!skip)
                                {
-                                       /* Associate the new open port with a slot in the socket engine */
-                                       if (Config->openSockfd[count] > -1)
+                                       ClientListenSocket *ll = new ClientListenSocket(this, portno, Addr);
+                                       if (ll->GetFd() > -1)
                                        {
-                                               ServerInstance->SE->AddFd(Config->openSockfd[count],true,X_LISTEN);
-                                               BoundPortCount++;
+                                               bound++;
+                                               ll->SetDescription(*Desc ? Desc : "plaintext");
+                                               ports.push_back(ll);
+                                       }
+                                       else
+                                       {
+                                               failed_ports.push_back(std::make_pair(bind_readable, strerror(errno)));
                                        }
                                }
                        }
-                       return InitialPortCount + BoundPortCount;
-               }
-               else
-               {
-                       log(DEBUG,"There is nothing new to bind!");
                }
-               return InitialPortCount;
        }
 
-       for (int count = 0; count < Config->ConfValueEnum(Config->config_data, "bind"); count++)
+       std::vector<ListenSocketBase *>::iterator n = ports.begin();
+       for (std::vector<ListenSocketBase *>::iterator o = old_ports.begin(); o != old_ports.end(); ++o)
        {
-               Config->ConfValue(Config->config_data, "bind", "port", count, configToken, MAXBUF);
-               Config->ConfValue(Config->config_data, "bind", "address", count, Addr, MAXBUF);
-               Config->ConfValue(Config->config_data, "bind", "type", count, Type, MAXBUF);
-
-               if ((!*Type) || (!strcmp(Type,"clients")))
+               while (n != ports.end() && *n != *o)
+                       n++;
+               if (n == ports.end())
                {
-                       // modules handle server bind types now
-                       Config->ports[clientportcount] = atoi(configToken);
-
-                       // If the client put bind "*", this is an unrealism.
-                       // We don't actually support this as documented, but
-                       // i got fed up of people trying it, so now it converts
-                       // it to an empty string meaning the same 'bind to all'.
-                       if (*Addr == '*')
-                               *Addr = 0;
-
-                       strlcpy(Config->addrs[clientportcount],Addr,256);
-                       clientportcount++;
-                       log(DEBUG,"Binding %s:%s [%s] from config",Addr,configToken, Type);
+                       this->Logs->Log("SOCKET",ERROR,"Port bindings slipped out of vector, aborting close!");
+                       break;
                }
+
+               this->Logs->Log("SOCKET",DEFAULT, "Port binding %s was removed from the config file, closing.",
+                       (*n)->GetBindDesc().c_str());
+               delete *n;
+
+               // this keeps the iterator valid, pointing to the next element
+               n = ports.erase(n);
        }
 
-       int PortCount = clientportcount;
+       return bound;
+}
 
-       for (int count = 0; count < PortCount; count++)
+bool irc::sockets::aptosa(const char* addr, int port, irc::sockets::sockaddrs* sa)
+{
+       memset(sa, 0, sizeof(*sa));
+       if (!addr || !*addr)
        {
-               if ((Config->openSockfd[BoundPortCount] = OpenTCPSocket()) == ERROR)
-               {
-                       log(DEBUG,"Bad fd %d binding port [%s:%d]",Config->openSockfd[BoundPortCount],Config->addrs[count],Config->ports[count]);
-                       return ERROR;
-               }
+#ifdef IPV6
+               sa->in6.sin6_family = AF_INET6;
+               sa->in6.sin6_port = htons(port);
+#else
+               sa->in4.sin_family = AF_INET;
+               sa->in4.sin_port = htons(port);
+#endif
+               return true;
+       }
+       else if (inet_pton(AF_INET, addr, &sa->in4.sin_addr) > 0)
+       {
+               sa->in4.sin_family = AF_INET;
+               sa->in4.sin_port = htons(port);
+               return true;
+       }
+       else if (inet_pton(AF_INET6, addr, &sa->in6.sin6_addr) > 0)
+       {
+               sa->in6.sin6_family = AF_INET6;
+               sa->in6.sin6_port = htons(port);
+               return true;
+       }
+       return false;
+}
+
+bool irc::sockets::satoap(const irc::sockets::sockaddrs* sa, std::string& addr, int &port) {
+       char addrv[INET6_ADDRSTRLEN+1];
+       if (sa->sa.sa_family == AF_INET)
+       {
+               if (!inet_ntop(AF_INET, &sa->in4.sin_addr, addrv, sizeof(addrv)))
+                       return false;
+               addr = addrv;
+               port = ntohs(sa->in4.sin_port);
+               return true;
+       }
+       else if (sa->sa.sa_family == AF_INET6)
+       {
+               if (!inet_ntop(AF_INET6, &sa->in6.sin6_addr, addrv, sizeof(addrv)))
+                       return false;
+               addr = addrv;
+               port = ntohs(sa->in6.sin6_port);
+               return true;
+       }
+       return false;
+}
+
+static const char all_zero[16] = {0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0 };
 
-               if (!BindSocket(Config->openSockfd[BoundPortCount],client,server,Config->ports[count],Config->addrs[count]))
+std::string irc::sockets::satouser(const irc::sockets::sockaddrs* sa) {
+       char buffer[MAXBUF];
+       if (sa->sa.sa_family == AF_INET)
+       {
+               if (sa->in4.sin_addr.s_addr == 0)
                {
-                       log(DEFAULT,"Failed to bind port [%s:%d]: %s",Config->addrs[count],Config->ports[count],strerror(errno));
+                       sprintf(buffer, "*:%u", ntohs(sa->in4.sin_port));
                }
                else
                {
-                       /* well we at least bound to one socket so we'll continue */
-                       BoundPortCount++;
+                       const uint8_t* bits = reinterpret_cast<const uint8_t*>(&sa->in4.sin_addr);
+                       sprintf(buffer, "%d.%d.%d.%d:%u", bits[0], bits[1], bits[2], bits[3], ntohs(sa->in4.sin_port));
                }
        }
-
-       /* if we didn't bind to anything then abort */
-       if (!BoundPortCount)
+       else if (sa->sa.sa_family == AF_INET6)
        {
-               log(DEFAULT,"No ports bound, bailing!");
-               printf("\nERROR: Could not bind any of %d ports! Please check your configuration.\n\n", PortCount);
-               return ERROR;
+               if (!memcmp(all_zero, &sa->in6.sin6_addr, 16))
+               {
+                       sprintf(buffer, "*:%u", ntohs(sa->in6.sin6_port));
+               }
+               else
+               {
+                       buffer[0] = '[';
+                       if (!inet_ntop(AF_INET6, &sa->in6.sin6_addr, buffer+1, MAXBUF - 10))
+                               return "<unknown>"; // should never happen, buffer is large enough
+                       int len = strlen(buffer);
+                       // no need for snprintf, buffer has at least 9 chars left, max short len = 5
+                       sprintf(buffer + len, "]:%u", ntohs(sa->in6.sin6_port));
+               }
        }
+       else
+               return "<unknown>";
+       return std::string(buffer);
+}
 
-       return BoundPortCount;
+int irc::sockets::sa_size(irc::sockets::sockaddrs& sa)
+{
+       if (sa.sa.sa_family == AF_INET)
+               return sizeof(sa.in4);
+       if (sa.sa.sa_family == AF_INET6)
+               return sizeof(sa.in6);
+       return 0;
 }