]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/socketengines/socketengine_ports.cpp
Replace SocketEngine::GetName() with INSPIRCD_SOCKETENGINE_NAME define
[user/henk/code/inspircd.git] / src / socketengines / socketengine_ports.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22 #include "exitcodes.h"
23
24 #ifndef __sun
25 # error You need Solaris 10 or later to make use of this code.
26 #endif
27
28 #include <vector>
29 #include <string>
30 #include <map>
31 #include "inspircd.h"
32 #include "socketengine.h"
33 #include <port.h>
34 #include <iostream>
35 #include <ulimit.h>
36
37 /** A specialisation of the SocketEngine class, designed to use solaris 10 I/O completion ports
38  */
39 class PortsEngine : public SocketEngine
40 {
41 private:
42         /** These are used by ports to hold socket events
43          */
44         std::vector<port_event_t> events;
45         int EngineHandle;
46 public:
47         /** Create a new PortsEngine
48          */
49         PortsEngine();
50         /** Delete a PortsEngine
51          */
52         virtual ~PortsEngine();
53         virtual bool AddFd(EventHandler* eh, int event_mask);
54         virtual void OnSetEvent(EventHandler* eh, int old_mask, int new_mask);
55         virtual void DelFd(EventHandler* eh);
56         virtual int DispatchEvents();
57 };
58
59 PortsEngine::PortsEngine() : events(1)
60 {
61         int max = ulimit(4, 0);
62         if (max > 0)
63         {
64                 MAX_DESCRIPTORS = max;
65         }
66         else
67         {
68                 ServerInstance->Logs->Log("SOCKET", LOG_DEFAULT, "ERROR: Can't determine maximum number of open sockets!");
69                 std::cout << "ERROR: Can't determine maximum number of open sockets!" << std::endl;
70                 ServerInstance->QuickExit(EXIT_STATUS_SOCKETENGINE);
71         }
72         EngineHandle = port_create();
73
74         if (EngineHandle == -1)
75         {
76                 ServerInstance->Logs->Log("SOCKET", LOG_SPARSE, "ERROR: Could not initialize socket engine: %s", strerror(errno));
77                 ServerInstance->Logs->Log("SOCKET", LOG_SPARSE, "ERROR: This is a fatal error, exiting now.");
78                 std::cout << "ERROR: Could not initialize socket engine: " << strerror(errno) << std::endl;
79                 std::cout << "ERROR: This is a fatal error, exiting now." << std::endl;
80                 ServerInstance->QuickExit(EXIT_STATUS_SOCKETENGINE);
81         }
82         CurrentSetSize = 0;
83 }
84
85 PortsEngine::~PortsEngine()
86 {
87         this->Close(EngineHandle);
88 }
89
90 static int mask_to_events(int event_mask)
91 {
92         int rv = 0;
93         if (event_mask & (FD_WANT_POLL_READ | FD_WANT_FAST_READ))
94                 rv |= POLLRDNORM;
95         if (event_mask & (FD_WANT_POLL_WRITE | FD_WANT_FAST_WRITE | FD_WANT_SINGLE_WRITE))
96                 rv |= POLLWRNORM;
97         return rv;
98 }
99
100 bool PortsEngine::AddFd(EventHandler* eh, int event_mask)
101 {
102         int fd = eh->GetFd();
103         if ((fd < 0) || (fd > GetMaxFds() - 1))
104                 return false;
105
106         if (!SocketEngine::AddFd(eh))
107                 return false;
108
109         SocketEngine::SetEventMask(eh, event_mask);
110         port_associate(EngineHandle, PORT_SOURCE_FD, fd, mask_to_events(event_mask), eh);
111
112         ServerInstance->Logs->Log("SOCKET", LOG_DEBUG, "New file descriptor: %d", fd);
113         CurrentSetSize++;
114         ResizeDouble(events);
115
116         return true;
117 }
118
119 void PortsEngine::OnSetEvent(EventHandler* eh, int old_mask, int new_mask)
120 {
121         if (mask_to_events(new_mask) != mask_to_events(old_mask))
122                 port_associate(EngineHandle, PORT_SOURCE_FD, eh->GetFd(), mask_to_events(new_mask), eh);
123 }
124
125 void PortsEngine::DelFd(EventHandler* eh)
126 {
127         int fd = eh->GetFd();
128         if ((fd < 0) || (fd > GetMaxFds() - 1))
129                 return;
130
131         port_dissociate(EngineHandle, PORT_SOURCE_FD, fd);
132
133         CurrentSetSize--;
134         SocketEngine::DelFd(eh);
135
136         ServerInstance->Logs->Log("SOCKET", LOG_DEBUG, "Remove file descriptor: %d", fd);
137 }
138
139 int PortsEngine::DispatchEvents()
140 {
141         struct timespec poll_time;
142
143         poll_time.tv_sec = 1;
144         poll_time.tv_nsec = 0;
145
146         unsigned int nget = 1; // used to denote a retrieve request.
147         int ret = port_getn(EngineHandle, &events[0], events.size(), &nget, &poll_time);
148         ServerInstance->UpdateTime();
149
150         // first handle an error condition
151         if (ret == -1)
152                 return -1;
153
154         TotalEvents += nget;
155
156         unsigned int i;
157         for (i = 0; i < nget; i++)
158         {
159                 port_event_t& ev = events[i];
160
161                 if (ev.portev_source != PORT_SOURCE_FD)
162                         continue;
163
164                 // Copy these in case the vector gets resized and ev invalidated
165                 const int fd = ev.portev_object;
166                 const int portev_events = ev.portev_events;
167                 EventHandler* eh = GetRef(fd);
168                 if (!eh)
169                         continue;
170
171                 int mask = eh->GetEventMask();
172                 if (portev_events & POLLWRNORM)
173                         mask &= ~(FD_WRITE_WILL_BLOCK | FD_WANT_FAST_WRITE | FD_WANT_SINGLE_WRITE);
174                 if (portev_events & POLLRDNORM)
175                         mask &= ~FD_READ_WILL_BLOCK;
176                 // reinsert port for next time around, pretending to be one-shot for writes
177                 SetEventMask(eh, mask);
178                 port_associate(EngineHandle, PORT_SOURCE_FD, fd, mask_to_events(mask), eh);
179                 if (portev_events & POLLRDNORM)
180                 {
181                         ReadEvents++;
182                         eh->HandleEvent(EVENT_READ);
183                         if (eh != GetRef(fd))
184                                 continue;
185                 }
186                 if (portev_events & POLLWRNORM)
187                 {
188                         WriteEvents++;
189                         eh->HandleEvent(EVENT_WRITE);
190                 }
191         }
192
193         return (int)i;
194 }
195
196 SocketEngine* CreateSocketEngine()
197 {
198         return new PortsEngine;
199 }