-
Notifications
You must be signed in to change notification settings - Fork 396
Expand file tree
/
Copy pathsslh-ev.c
More file actions
228 lines (183 loc) · 6.19 KB
/
sslh-ev.c
File metadata and controls
228 lines (183 loc) · 6.19 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
sslh-ev: mono-processus server based on libev
# Copyright (C) 2021 Yves Rutschle
#
# This program is free software; you can redistribute it
# and/or modify it under the terms of the GNU General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE. See the GNU General Public License for more
# details.
#
# The full text for the General Public License is here:
# http://www.gnu.org/licenses/gpl.html
*/
#include <stdlib.h>
#include <ev.h>
#include "gap.h"
#include "log.h"
#include "udp-listener.h"
#include "tcp-listener.h"
const char* server_type = "sslh-ev";
static struct ev_loop* loop;
/* Libev watchers */
struct watchers {
/* one set of ev_io for read, one for write, indexed by file descriptor */
gap_array *ev_ior, *ev_iow;
struct listen_endpoint* listen_sockets;
gap_array* fd2ls; /* Array indexed by file descriptor, pointing to listen_sockets */
};
static void cnx_read_cb(EV_P_ ev_io *w, int revents);
static void cnx_write_cb(EV_P_ ev_io *w, int wevents);
static void cnx_accept_cb(EV_P_ ev_io *w, int revents);
/*******************************************************************************/
/* Helper functions */
/* Enable all accept() watchers */
static void start_accept_watchers(watchers* w, int num_addr_listen)
{
for (int i = 0; i < num_addr_listen; i++) {
ev_io* io = gap_get(w->ev_ior, i);
ev_io_start(EV_A_ io);
}
}
/* Disable all accept() watchers */
static void stop_accept_watchers(watchers* w, int num_addr_listen)
{
for (int i = 0; i < num_addr_listen; i++) {
ev_io* io = gap_get(w->ev_ior, i);
ev_io_stop(EV_A_ io);
}
}
/*******************************************************************************/
static void watchers_init(watchers** w, struct listen_endpoint* listen_sockets,
int num_addr_listen)
{
*w = malloc(sizeof(**w));
(*w)->ev_ior = gap_init(num_addr_listen);
(*w)->ev_iow = gap_init(num_addr_listen);
(*w)->listen_sockets = listen_sockets;
(*w)->fd2ls = gap_init(0);
/* Create watchers for listen sockets */
for (int i = 0; i < num_addr_listen; i++) {
ev_io* io = malloc(sizeof(*io));
ev_io_init(io, &cnx_accept_cb, listen_sockets[i].socketfd, EV_READ);
gap_set((*w)->ev_ior, i, io);
gap_set((*w)->fd2ls, listen_sockets[i].socketfd, &listen_sockets[i]);
set_nonblock(listen_sockets[i].socketfd);
}
start_accept_watchers(*w, num_addr_listen);
}
void watchers_add_read(watchers* w, int fd)
{
ev_io* io = gap_get(w->ev_ior, fd);
if (!io) {
io = malloc(sizeof(*io));
ev_io_init(io, &cnx_read_cb, fd, EV_READ);
ev_io_set(io, fd, EV_READ);
gap_set(w->ev_ior, fd, io);
}
ev_io_start(loop, io);
}
void watchers_del_read(watchers* w, int fd)
{
ev_io* io = gap_get(w->ev_ior, fd);
if (io) ev_io_stop(EV_A_ io);
}
void watchers_add_write(watchers* w, int fd)
{
ev_io* io = gap_get(w->ev_iow, fd);
if (!io) {
io = malloc(sizeof(*io));
ev_io_init(io, &cnx_write_cb, fd, EV_WRITE);
ev_io_set(io, fd, EV_WRITE);
gap_set(w->ev_iow, fd, io);
}
ev_io_start(loop, io);
}
void watchers_del_write(watchers* w, int fd)
{
ev_io* io = gap_get(w->ev_iow, fd);
if (io) ev_io_stop(EV_A_ io);
}
/* /watchers */
#include "processes.h"
/* Libev callbacks */
static void cnx_read_cb(EV_P_ ev_io *w, int revents)
{
struct loop_info* info = ev_userdata(EV_A);
cnx_read_process(info, w->fd);
}
static void cnx_write_cb(EV_P_ ev_io *w, int wevents)
{
struct loop_info* info = ev_userdata(EV_A);
cnx_write_process(info, w->fd);
}
/* Timer expired: destroy timer, restart the accept watchers */
static void restart_accept_cb( EV_P_ ev_timer *timer, int revents)
{
struct loop_info* info = ev_userdata(EV_A);
ev_timer_stop(EV_A_ timer);
free(timer);
start_accept_watchers(info->watchers, info->num_addr_listen);
}
/* Stop the accept() io watchers, start a timer
*/
static void temporary_stop_accept_watchers(ev_io* io)
{
struct loop_info* info = ev_userdata(EV_A);
ev_timer* timer = malloc(sizeof(*timer));
stop_accept_watchers(info->watchers, info->num_addr_listen);
ev_timer_init(timer, &restart_accept_cb, 1, 0);
ev_timer_start(EV_A_ timer);
}
/* The accept() callback, called when there is READ activity.
*
* accept()ing when the process as reached its file descriptor limit (ulimit -n) is can of worms with no solution (see libev's manual "The special problem of accept()ing when you can't").
* When that happens, the strategy is: Disable all listening sockets, start a 1
* second timer, enable all listening sockets. This is terrible, but apparently
* the best we can do */
static void cnx_accept_cb(EV_P_ ev_io *w, int revents)
{
struct loop_info* info = ev_userdata(EV_A);
if (!cnx_accept_process(info, gap_get(info->watchers->fd2ls, w->fd))) {
switch (errno) {
case EMFILE:
case ENFILE: /* Not sure ENFILE should be included here */
/* cancel accepting for a while */
temporary_stop_accept_watchers(w);
default:
break;
}
}
}
void sigchld_cb(EV_P_ ev_child *w, int revents)
{
struct loop_info* info = ev_userdata(EV_A);
ev_child_stop(EV_A_ w);
decrease_forked_connection(info, w->pid);
free(w);
}
void watcher_sigchld(struct loop_info* fd_info, struct connection* cnx, pid_t pid)
{
ev_child* cw = malloc(sizeof(*cw));
ev_child_init(cw, sigchld_cb, pid, 0);
ev_child_start(EV_DEFAULT_ cw);
}
void main_loop(struct listen_endpoint listen_sockets[], int num_addr_listen)
{
struct loop_info ev_info;
loop = EV_DEFAULT;
loop_init(&ev_info, listen_sockets, num_addr_listen);
watchers_init(&ev_info.watchers, listen_sockets, num_addr_listen);
ev_set_userdata(EV_A_ &ev_info);
ev_run(EV_A_ 0);
}
void main_inetd(void) {
print_message(msg_config_error, "inetd mode is not supported in libev mode\n");
exit(1);
}