1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2008 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
14 /* $Core: libIRCDsocket */
18 #include "socketengine.h"
21 using namespace irc::sockets;
23 /* Used when comparing CIDR masks for the modulus bits left over.
24 * A lot of ircd's seem to do this:
25 * ((-1) << (8 - (mask % 8)))
26 * But imho, it sucks in comparison to a nice neat lookup table.
28 const unsigned char inverted_bits[8] = { 0x00, /* 00000000 - 0 bits - never actually used */
29 0x80, /* 10000000 - 1 bits */
30 0xC0, /* 11000000 - 2 bits */
31 0xE0, /* 11100000 - 3 bits */
32 0xF0, /* 11110000 - 4 bits */
33 0xF8, /* 11111000 - 5 bits */
34 0xFC, /* 11111100 - 6 bits */
35 0xFE /* 11111110 - 7 bits */
39 ListenSocket::ListenSocket(InspIRCd* Instance, int port, char* addr) : ServerInstance(Instance), desc("plaintext"), bind_addr(addr), bind_port(port)
41 this->SetFd(OpenTCPSocket(addr));
42 if (this->GetFd() > -1)
44 if (!Instance->BindSocket(this->fd,port,addr))
47 if ((!*addr) || (strchr(addr,':')))
48 this->family = AF_INET6;
51 this->family = AF_INET;
52 Instance->SE->AddFd(this);
56 ListenSocket::~ListenSocket()
58 if (this->GetFd() > -1)
60 ServerInstance->SE->DelFd(this);
61 ServerInstance->Log(DEBUG,"Shut down listener on fd %d", this->fd);
62 if (ServerInstance->SE->Shutdown(this, 2) || ServerInstance->SE->Close(this))
63 ServerInstance->Log(DEBUG,"Failed to cancel listener: %s", strerror(errno));
68 void ListenSocket::HandleEvent(EventType, int)
70 sockaddr* sock_us = new sockaddr[2]; // our port number
71 sockaddr* client = new sockaddr[2];
72 socklen_t uslen, length; // length of our port number
73 int incomingSockfd, in_port;
76 if (this->family == AF_INET6)
78 uslen = sizeof(sockaddr_in6);
79 length = sizeof(sockaddr_in6);
84 uslen = sizeof(sockaddr_in);
85 length = sizeof(sockaddr_in);
88 incomingSockfd = ServerInstance->SE->Accept(this, (sockaddr*)client, &length);
90 if ((incomingSockfd > -1) && (!ServerInstance->SE->GetSockName(this, sock_us, &uslen)))
94 if (this->family == AF_INET6)
96 inet_ntop(AF_INET6, &((const sockaddr_in6*)client)->sin6_addr, buf, sizeof(buf));
97 in_port = ntohs(((sockaddr_in6*)sock_us)->sin6_port);
102 inet_ntop(AF_INET, &((const sockaddr_in*)client)->sin_addr, buf, sizeof(buf));
103 in_port = ntohs(((sockaddr_in*)sock_us)->sin_port);
106 ServerInstance->SE->NonBlocking(incomingSockfd);
108 if (ServerInstance->Config->GetIOHook(in_port))
112 ServerInstance->Config->GetIOHook(in_port)->OnRawSocketAccept(incomingSockfd, buf, in_port);
114 catch (CoreException& modexcept)
116 ServerInstance->Log(DEBUG,"%s threw an exception: %s", modexcept.GetSource(), modexcept.GetReason());
119 ServerInstance->stats->statsAccept++;
120 ServerInstance->Users->AddClient(ServerInstance, incomingSockfd, in_port, false, this->family, client);
124 ServerInstance->SE->Shutdown(incomingSockfd, 2);
125 ServerInstance->SE->Close(incomingSockfd);
126 ServerInstance->stats->statsRefused++;
132 /* Match raw bytes using CIDR bit matching, used by higher level MatchCIDR() */
133 bool irc::sockets::MatchCIDRBits(unsigned char* address, unsigned char* mask, unsigned int mask_bits)
135 unsigned int divisor = mask_bits / 8; /* Number of whole bytes in the mask */
136 unsigned int modulus = mask_bits % 8; /* Remaining bits in the mask after whole bytes are dealt with */
138 /* First (this is faster) compare the odd bits with logic ops */
140 if ((address[divisor] & inverted_bits[modulus]) != (mask[divisor] & inverted_bits[modulus]))
141 /* If they dont match, return false */
144 /* Secondly (this is slower) compare the whole bytes */
145 if (memcmp(address, mask, divisor))
148 /* The address matches the mask, to mask_bits bits of mask */
152 /* Match CIDR, but dont attempt to match() against leading *!*@ sections */
153 bool irc::sockets::MatchCIDR(const char* address, const char* cidr_mask)
155 return MatchCIDR(address, cidr_mask, false);
158 /* Match CIDR strings, e.g. 127.0.0.1 to 127.0.0.0/8 or 3ffe:1:5:6::8 to 3ffe:1::0/32
159 * If you have a lot of hosts to match, youre probably better off building your mask once
160 * and then using the lower level MatchCIDRBits directly.
162 * This will also attempt to match any leading usernames or nicknames on the mask, using
163 * match(), when match_with_username is true.
165 bool irc::sockets::MatchCIDR(const char* address, const char* cidr_mask, bool match_with_username)
167 unsigned char addr_raw[16];
168 unsigned char mask_raw[16];
169 unsigned int bits = 0;
172 /* The caller is trying to match ident@<mask>/bits.
173 * Chop off the ident@ portion, use match() on it
176 if (match_with_username)
178 /* Duplicate the strings, and try to find the position
179 * of the @ symbol in each */
180 char* address_dupe = strdup(address);
181 char* cidr_dupe = strdup(cidr_mask);
183 /* Use strchr not strrchr, because its going to be nearer to the left */
184 char* username_mask_pos = strrchr(cidr_dupe, '@');
185 char* username_addr_pos = strrchr(address_dupe, '@');
187 /* Both strings have an @ symbol in them */
188 if (username_mask_pos && username_addr_pos)
190 /* Zero out the location of the @ symbol */
191 *username_mask_pos = *username_addr_pos = 0;
193 /* Try and match() the strings before the @
194 * symbols, and recursively call MatchCIDR without
195 * username matching enabled to match the host part.
197 bool result = (match(address_dupe, cidr_dupe) && MatchCIDR(username_addr_pos + 1, username_mask_pos + 1, false));
199 /* Free the stuff we created */
203 /* Return a result */
208 /* One or both didnt have an @ in,
213 mask = strdup(cidr_mask);
218 /* Make a copy of the cidr mask string,
219 * we're going to change it
221 mask = strdup(cidr_mask);
228 /* Use strrchr for this, its nearer to the right */
229 char* bits_chars = strrchr(mask,'/');
233 bits = atoi(bits_chars + 1);
238 /* No 'number of bits' field! */
243 #ifdef SUPPORT_IP6LINKS
244 in6_addr address_in6;
247 if (inet_pton(AF_INET6, address, &address_in6) > 0)
249 if (inet_pton(AF_INET6, mask, &mask_in6) > 0)
251 memcpy(&addr_raw, &address_in6.s6_addr, 16);
252 memcpy(&mask_raw, &mask_in6.s6_addr, 16);
259 /* The address was valid ipv6, but the mask
260 * that goes with it wasnt.
268 if (inet_pton(AF_INET, address, &address_in4) > 0)
270 if (inet_pton(AF_INET, mask, &mask_in4) > 0)
272 memcpy(&addr_raw, &address_in4.s_addr, 4);
273 memcpy(&mask_raw, &mask_in4.s_addr, 4);
280 /* The address was valid ipv4,
281 * but the mask that went with it wasnt.
289 /* The address was neither ipv4 or ipv6 */
294 /* Low-level-match the bits in the raw data */
296 return MatchCIDRBits(addr_raw, mask_raw, bits);
299 /** This will bind a socket to a port. It works for UDP/TCP.
300 * It can only bind to IP addresses, if you wish to bind to hostnames
301 * you should first resolve them using class 'Resolver'.
303 bool InspIRCd::BindSocket(int sockfd, int port, char* addr, bool dolisten)
305 /* We allocate 2 of these, because sockaddr_in6 is larger than sockaddr (ugh, hax) */
306 sockaddr* server = new sockaddr[2];
307 memset(server,0,sizeof(sockaddr)*2);
317 /* There is an address here. Is it ipv6? */
318 if (strchr(addr,':'))
322 if (inet_pton(AF_INET6, addr, &addy) < 1)
328 ((sockaddr_in6*)server)->sin6_family = AF_INET6;
329 memcpy(&(((sockaddr_in6*)server)->sin6_addr), &addy, sizeof(in6_addr));
330 ((sockaddr_in6*)server)->sin6_port = htons(port);
331 size = sizeof(sockaddr_in6);
337 if (inet_pton(AF_INET, addr, &addy) < 1)
343 ((sockaddr_in*)server)->sin_family = AF_INET;
344 ((sockaddr_in*)server)->sin_addr = addy;
345 ((sockaddr_in*)server)->sin_port = htons(port);
346 size = sizeof(sockaddr_in);
353 /* Port -1: Means UDP IPV4 port binding - Special case
354 * used by DNS engine.
356 ((sockaddr_in*)server)->sin_family = AF_INET;
357 ((sockaddr_in*)server)->sin_addr.s_addr = htonl(INADDR_ANY);
358 ((sockaddr_in*)server)->sin_port = 0;
359 size = sizeof(sockaddr_in);
363 /* Theres no address here, default to ipv6 bind to all */
364 ((sockaddr_in6*)server)->sin6_family = AF_INET6;
365 memset(&(((sockaddr_in6*)server)->sin6_addr), 0, sizeof(in6_addr));
366 ((sockaddr_in6*)server)->sin6_port = htons(port);
367 size = sizeof(sockaddr_in6);
371 /* If we aren't built with ipv6, the choice becomes simple */
372 ((sockaddr_in*)server)->sin_family = AF_INET;
375 /* There is an address here. */
377 if (inet_pton(AF_INET, addr, &addy) < 1)
382 ((sockaddr_in*)server)->sin_addr = addy;
386 /* Bind ipv4 to all */
387 ((sockaddr_in*)server)->sin_addr.s_addr = htonl(INADDR_ANY);
389 /* Bind ipv4 port number */
390 ((sockaddr_in*)server)->sin_port = htons(port);
391 size = sizeof(sockaddr_in);
393 ret = SE->Bind(sockfd, server, size);
404 if (SE->Listen(sockfd, Config->MaxConn) == -1)
406 this->Log(DEFAULT,"ERROR in listen(): %s",strerror(errno));
411 this->Log(DEBUG,"New socket binding for %d with listen: %s:%d", sockfd, addr, port);
412 SE->NonBlocking(sockfd);
418 this->Log(DEBUG,"New socket binding for %d without listen: %s:%d", sockfd, addr, port);
425 int irc::sockets::OpenTCPSocket(char* addr, int socktype)
430 struct linger linger = { 0, 0 };
432 if (strchr(addr,':') || (!*addr))
433 sockfd = socket (PF_INET6, socktype, 0);
435 sockfd = socket (PF_INET, socktype, 0);
438 if ((sockfd = socket (PF_INET, socktype, 0)) < 0)
445 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, (char*)&on, sizeof(on));
446 /* This is BSD compatible, setting l_onoff to 0 is *NOT* http://web.irc.org/mla/ircd-dev/msg02259.html */
449 setsockopt(sockfd, SOL_SOCKET, SO_LINGER, (char*)&linger,sizeof(linger));
454 int InspIRCd::BindPorts(bool, int &ports_found, FailedPortList &failed_ports)
456 char configToken[MAXBUF], Addr[MAXBUF], Type[MAXBUF];
458 bool started_with_nothing = (Config->ports.size() == 0);
459 std::vector<std::pair<std::string, int> > old_ports;
461 /* XXX: Make a copy of the old ip/port pairs here */
462 for (std::vector<ListenSocket*>::iterator o = Config->ports.begin(); o != Config->ports.end(); ++o)
463 old_ports.push_back(make_pair((*o)->GetIP(), (*o)->GetPort()));
465 for (int count = 0; count < Config->ConfValueEnum(Config->config_data, "bind"); count++)
467 Config->ConfValue(Config->config_data, "bind", "port", count, configToken, MAXBUF);
468 Config->ConfValue(Config->config_data, "bind", "address", count, Addr, MAXBUF);
469 Config->ConfValue(Config->config_data, "bind", "type", count, Type, MAXBUF);
471 if (strncmp(Addr, "::ffff:", 7) == 0)
472 this->Log(DEFAULT, "Using 4in6 (::ffff:) isn't recommended. You should bind IPv4 addresses directly instead.");
474 if ((!*Type) || (!strcmp(Type,"clients")))
476 irc::portparser portrange(configToken, false);
478 while ((portno = portrange.GetToken()))
484 for (std::vector<ListenSocket*>::iterator n = Config->ports.begin(); n != Config->ports.end(); ++n)
486 if (((*n)->GetIP() == Addr) && ((*n)->GetPort() == portno))
489 /* XXX: Here, erase from our copy of the list */
490 for (std::vector<std::pair<std::string, int> >::iterator k = old_ports.begin(); k != old_ports.end(); ++k)
492 if ((k->first == Addr) && (k->second == portno))
502 ListenSocket* ll = new ListenSocket(this, portno, Addr);
503 if (ll->GetFd() > -1)
506 Config->ports.push_back(ll);
510 failed_ports.push_back(std::make_pair(Addr, portno));
518 /* XXX: Here, anything left in our copy list, close as removed */
519 if (!started_with_nothing)
521 for (size_t k = 0; k < old_ports.size(); ++k)
523 for (std::vector<ListenSocket*>::iterator n = Config->ports.begin(); n != Config->ports.end(); ++n)
525 if (((*n)->GetIP() == old_ports[k].first) && ((*n)->GetPort() == old_ports[k].second))
527 this->Log(DEFAULT,"Port binding %s:%d was removed from the config file, closing.", old_ports[k].first.c_str(), old_ports[k].second);
529 Config->ports.erase(n);
539 const char* irc::sockets::insp_ntoa(insp_inaddr n)
541 static char buf[1024];
542 inet_ntop(AF_FAMILY, &n, buf, sizeof(buf));
546 int irc::sockets::insp_aton(const char* a, insp_inaddr* n)
548 return inet_pton(AF_FAMILY, a, n);