-
Notifications
You must be signed in to change notification settings - Fork 72
/
loop.c
92 lines (81 loc) · 3.09 KB
/
loop.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
/*
* Copyright 2016 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "common.h"
#include "flow.h"
#include "loop.h"
#include "socket.h"
#include "thread.h"
static void handler_stop(struct flow *f, uint32_t events)
{
struct thread *t = flow_thread(f);
t->stop = 1;
}
/*
* The main event loop, used by both clients and servers. Calls various init
* functions and then processes events until the thread is marked as stopped.
*/
void *loop(struct thread *t)
{
const struct options *opts = t->opts;
struct epoll_event *events;
const struct flow_create_args args = {
.thread = t,
.fd = t->stop_efd,
.events = EPOLLIN,
.opaque = NULL,
.handler = handler_stop,
.mbuf_alloc = NULL,
.stat = NULL
};
flow_create(&args);
/* Server sockets must be created in order
* so that the ebpf filter works.
* Client sockets don't need to be so but we apply this logic anyway.
* Wait for its turn to do fn_loop_init() according to t->index.
*/
pthread_mutex_lock(t->loop_init_m);
while (*t->loop_inited < t->index)
pthread_cond_wait(t->loop_init_c, t->loop_init_m);
t->fn->fn_loop_init(t);
(*t->loop_inited)++;
pthread_cond_broadcast(t->loop_init_c);
pthread_mutex_unlock(t->loop_init_m);
events = calloc_or_die(opts->maxevents, sizeof(*events), t->cb);
/* support for rate limited flows */
t->rl.pending_flows = calloc_or_die(t->flow_limit, sizeof(struct flow *), t->cb);
t->rl.next_event = ~0ULL; /* no pending timeouts */
t->rl.pending_count = 0; /* no pending flows */
pthread_barrier_wait(t->ready);
while (!t->stop) {
/* Serve pending event, compute timeout to next event */
int ms = flow_serve_pending(t);
int nfds = epoll_wait(t->epfd, events, opts->maxevents, ms);
int i;
if (nfds == -1) {
if (errno == EINTR)
continue;
PLOG_FATAL(t->cb, "epoll_wait");
}
for (i = 0; i < nfds && !t->stop; i++)
flow_event(&events[i]);
}
thread_flush_stat(t);
free(events);
do_close(t->epfd);
/* TODO: The first flow object is leaking here... */
/* This is technically a thread callback so it must return a (void *) */
return NULL;
}