]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/socketengine_kqueue.cpp
Swap around ERROR and SNONOTICE in SendError() so that the server doesnt try and...
[user/henk/code/inspircd.git] / src / socketengine_kqueue.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 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 #include "inspircd.h"
15 #include "exitcodes.h"
16 #include <sys/types.h>
17 #include <sys/event.h>
18 #include <sys/time.h>
19 #include "socketengine_kqueue.h"
20
21
22 KQueueEngine::KQueueEngine(InspIRCd* Instance) : SocketEngine(Instance)
23 {
24         this->RecoverFromFork();
25 }
26
27 void KQueueEngine::RecoverFromFork()
28 {
29         /*
30          * The only bad thing about kqueue is that its fd cant survive a fork and is not inherited.
31          * BUM HATS.
32          * 
33          */
34         EngineHandle = kqueue();
35         if (EngineHandle == -1)
36         {
37                 ServerInstance->Log(SPARSE,"ERROR: Could not initialize socket engine. Your kernel probably does not have the proper features.");
38                 ServerInstance->Log(SPARSE,"ERROR: this is a fatal error, exiting now.");
39                 printf("ERROR: Could not initialize socket engine. Your kernel probably does not have the proper features.");
40                 printf("ERROR: this is a fatal error, exiting now.");
41                 ServerInstance->Exit(EXIT_STATUS_SOCKETENGINE);
42         }
43         CurrentSetSize = 0;
44 }
45
46 KQueueEngine::~KQueueEngine()
47 {
48         this->Close(EngineHandle);
49 }
50
51 bool KQueueEngine::AddFd(EventHandler* eh)
52 {
53         int fd = eh->GetFd();
54
55         if ((fd < 0) || (fd > MAX_DESCRIPTORS))
56                 return false;
57
58         if (GetRemainingFds() <= 1)
59                 return false;
60
61         if (ref[fd])
62                 return false;
63
64         ref[fd] = eh;
65
66         struct kevent ke;
67         EV_SET(&ke, fd, eh->Readable() ? EVFILT_READ : EVFILT_WRITE, EV_ADD, 0, 0, NULL);
68
69         int i = kevent(EngineHandle, &ke, 1, 0, 0, NULL);
70         if (i == -1)
71                 return false;
72
73         CurrentSetSize++;
74
75         ServerInstance->Log(DEBUG,"New file descriptor: %d", fd);
76         return true;
77 }
78
79 bool KQueueEngine::DelFd(EventHandler* eh, bool force)
80 {
81         int fd = eh->GetFd();
82
83         if ((fd < 0) || (fd > MAX_DESCRIPTORS))
84                 return false;
85
86         struct kevent ke;
87         EV_SET(&ke, eh->GetFd(), EVFILT_READ, EV_DELETE, 0, 0, NULL);
88
89         int i = kevent(EngineHandle, &ke, 1, 0, 0, NULL);
90
91         EV_SET(&ke, eh->GetFd(), EVFILT_WRITE, EV_DELETE, 0, 0, NULL);
92
93         int j = kevent(EngineHandle, &ke, 1, 0, 0, NULL);
94
95         if ((j < 0) && (i < 0) && !force)
96                 return false;
97
98         CurrentSetSize--;
99         ref[fd] = NULL;
100
101         ServerInstance->Log(DEBUG,"Remove file descriptor: %d", fd);
102         return true;
103 }
104
105 void KQueueEngine::WantWrite(EventHandler* eh)
106 {
107         /** When changing an item in a kqueue, there is no 'modify' call
108          * as in epoll. Instead, we add the item again, and this overwrites
109          * the original setting rather than adding it twice. See man kqueue.
110          */
111         struct kevent ke;
112         EV_SET(&ke, eh->GetFd(), EVFILT_WRITE, EV_ADD | EV_ONESHOT, 0, 0, NULL);
113         kevent(EngineHandle, &ke, 1, 0, 0, NULL);
114 }
115
116 int KQueueEngine::GetMaxFds()
117 {
118         return MAX_DESCRIPTORS;
119 }
120
121 int KQueueEngine::GetRemainingFds()
122 {
123         return MAX_DESCRIPTORS - CurrentSetSize;
124 }
125
126 int KQueueEngine::DispatchEvents()
127 {
128         ts.tv_nsec = 0;
129         ts.tv_sec = 1;
130         int i = kevent(EngineHandle, NULL, 0, &ke_list[0], MAX_DESCRIPTORS, &ts);
131         for (int j = 0; j < i; j++)
132         {
133                 if (ke_list[j].flags & EV_EOF)
134                 {
135                         /* We love you kqueue, oh yes we do *sings*!
136                          * kqueue gives us the error number directly in the EOF state!
137                          * Unlike smelly epoll and select, where we have to getsockopt
138                          * to get the error, this saves us time and cpu cycles. Go BSD!
139                          */
140                         if (ref[ke_list[j].ident])
141                                 ref[ke_list[j].ident]->HandleEvent(EVENT_ERROR, ke_list[j].fflags);
142                         continue;
143                 }
144                 if (ke_list[j].flags & EVFILT_WRITE)
145                 {
146                         /* This looks wrong but its right. As above, theres no modify
147                          * call in kqueue. See the manpage.
148                          */
149                         struct kevent ke;
150                         EV_SET(&ke, ke_list[j].ident, EVFILT_READ, EV_ADD, 0, 0, NULL);
151                         kevent(EngineHandle, &ke, 1, 0, 0, NULL);
152                         if (ref[ke_list[j].ident])
153                                 ref[ke_list[j].ident]->HandleEvent(EVENT_WRITE);
154                 }
155                 else
156                 {
157                         if (ref[ke_list[j].ident])
158                                 ref[ke_list[j].ident]->HandleEvent(EVENT_READ);
159                 }
160         }
161
162         return i;
163 }
164
165 std::string KQueueEngine::GetName()
166 {
167         return "kqueue";
168 }