-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtcpserver_kqueue.c
125 lines (110 loc) · 3.98 KB
/
tcpserver_kqueue.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#include <stdio.h>
#include <stdlib.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/event.h>
#include <string.h>
#include <unistd.h>
int main()
{
// All needed variables.
int socket_listen_fd,
portno = 1815,
client_len,
socket_connection_fd,
kq,
new_events;
struct kevent change_event[4],
event[4];
struct sockaddr_in serv_addr,
client_addr;
// Create socket.
if (((socket_listen_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0))
{
perror("ERROR opening socket");
exit(1);
}
// Create socket structure and bind to ip address.
bzero((char *)&serv_addr, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = INADDR_ANY;
serv_addr.sin_port = htons(portno);
if (bind(socket_listen_fd, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) < 0)
{
perror("Error binding socket");
exit(1);
}
// Start listening.
listen(socket_listen_fd, 3);
client_len = sizeof(client_addr);
// Prepare the kqueue.
kq = kqueue();
// Create event 'filter', these are the events we want to monitor.
// Here we want to monitor: socket_listen_fd, for the events: EVFILT_READ
// (when there is data to be read on the socket), and perform the following
// actions on this kevent: EV_ADD and EV_ENABLE (add the event to the kqueue
// and enable it).
EV_SET(change_event, socket_listen_fd, EVFILT_READ, EV_ADD | EV_ENABLE, 0, 0, 0);
// Register kevent with the kqueue.
if (kevent(kq, change_event, 1, NULL, 0, NULL) == -1)
{
perror("kevent");
exit(1);
}
// Actual event loop.
for (;;)
{
// Check for new events, but do not register new events with
// the kqueue. Hence the 2nd and 3rd arguments are NULL, 0.
// Only handle 1 new event per iteration in the loop; 5th
// argument is 1.
new_events = kevent(kq, NULL, 0, event, 1, NULL);
if (new_events == -1)
{
perror("kevent");
exit(1);
}
for (int i = 0; new_events > i; i++)
{
printf("amount of new events: %d\n", new_events);
int event_fd = event[i].ident;
// When the client disconnects an EOF is sent. By closing the file
// descriptor the event is automatically removed from the kqueue.
if (event[i].flags & EV_EOF)
{
printf("Client has disconnected\n");
close(event_fd);
}
// If the new event's file descriptor is the same as the listening
// socket's file descriptor, we are sure that a new client wants
// to connect to our socket.
else if (event_fd == socket_listen_fd)
{
printf("New connection coming in...\n");
// Incoming socket connection on the listening socket.
// Create a new socket for the actual connection to client.
socket_connection_fd = accept(event_fd, (struct sockaddr *)&client_addr, (socklen_t *)&client_len);
if (socket_connection_fd == -1)
{
perror("Accept socket error");
}
// Put this new socket connection also as a 'filter' event
// to watch in kqueue, so we can now watch for events on this
// new socket.
EV_SET(change_event, socket_connection_fd, EVFILT_READ, EV_ADD, 0, 0, NULL);
if (kevent(kq, change_event, 1, NULL, 0, NULL) < 0)
{
perror("kevent error");
}
}
else if (event[i].filter & EVFILT_READ)
{
// Read bytes from socket
char buf[1024];
size_t bytes_read = recv(event_fd, buf, sizeof(buf), 0);
printf("read %zu bytes\n", bytes_read);
}
}
}
return 0;
}