-
Notifications
You must be signed in to change notification settings - Fork 71
/
stream.c
218 lines (194 loc) · 7.62 KB
/
stream.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
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
/*
* 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 "stream.h"
#include "coef.h"
#include "common.h"
#include "flow.h"
#include "print.h"
#include "snaps.h"
#include "socket.h"
#include "stats.h"
#include "thread.h"
static void *stream_alloc(struct thread *t)
{
const struct options *opts = t->opts;
if (!t->f_mbuf) {
t->f_mbuf = malloc_or_die(opts->buffer_size, t->cb);
if (opts->enable_write)
fill_random(t->f_mbuf, opts->buffer_size);
}
return t->f_mbuf;
}
static uint32_t stream_events(struct thread *t)
{
const struct options *opts = t->opts;
uint32_t events = EPOLLRDHUP;
if (opts->enable_write)
events |= EPOLLOUT;
if (opts->enable_read)
events |= EPOLLIN;
if (opts->edge_trigger)
events |= EPOLLET;
return events;
}
void stream_handler(struct flow *f, uint32_t events)
{
static const uint64_t NSEC_PER_SEC = 1000*1000*1000;
struct neper_stat *stat = flow_stat(f);
struct thread *t = flow_thread(f);
void *mbuf = flow_mbuf(f);
int fd = flow_fd(f);
const struct neper_snaps *snaps;
const struct options *opts = t->opts;
/*
* The actual size can be calculated with CMSG_SPACE(sizeof(struct X)),
* where X is unnamed structs defined in kernel source tree based on IP versions.
* net/ipv4/ip_sockglue.c:ip_recv_error()
* net/ipv6/datagram.c:ipv6_recv_error()
* For IPv6, it's
* struct {
* struct sock_extended_err ee; // 16
* struct sockaddr_in6 offender; // 28
* } errhdr;
* As of Linux 5.15, CMSG_SPACE() is 16 + 16 + 28, rounds up to 64.
* Choosing 128 should last for a while.
*/
char control[128];
struct msghdr msg = {
.msg_control = control,
.msg_controllen = sizeof(control),
};
ssize_t n;
if (events & (EPOLLHUP | EPOLLRDHUP))
return flow_delete(f);
snaps = stat->snaps(stat);
if (neper_snaps_count(snaps) == 0)
stat->event(t, stat, 0, false, NULL);
if (events & EPOLLIN)
do {
do {
n = recv(fd, mbuf, opts->buffer_size,
opts->recv_flags);
} while(n == -1 && errno == EINTR);
t->io_stats.rx_ops++;
t->io_stats.rx_bytes += n > 0 ? n : 0;
if (n == -1) {
if (errno != EAGAIN)
PLOG_ERROR(t->cb, "read");
break;
}
if (n == 0) {
flow_delete(f);
return;
}
stat->event(t, stat, n, false, NULL);
} while (opts->edge_trigger);
if (events & EPOLLOUT)
do {
n = send(fd, mbuf, opts->buffer_size, opts->send_flags);
t->io_stats.tx_ops++;
t->io_stats.tx_bytes += n > 0 ? n : 0;
if (n == -1) {
if (errno != EAGAIN)
PLOG_ERROR(t->cb, "send");
return;
}
if (opts->delay) {
struct timespec ts;
ts.tv_sec = opts->delay / NSEC_PER_SEC;
ts.tv_nsec = opts->delay % NSEC_PER_SEC;
nanosleep(&ts, NULL);
}
} while (opts->edge_trigger);
if (events & EPOLLERR) {
do {
n = recvmsg(fd, &msg, MSG_ERRQUEUE);
} while(n == -1 && errno == EINTR);
if (n == -1) {
if (errno != EAGAIN)
PLOG_ERROR(t->cb, "recvmsg() on ERRQUEUE failed");
return;
}
/*
* No need to process anything for the purpose of benchmarking,
* as flow_mbuf(f) won't be released before flow is terminated.
*
* Maybe examine sock_extended_err.ee_code to find out whether
* zerocopy actually happened. i.e. SO_EE_CODE_ZEROCOPY_COPIED
* e.g. Linux kernel tools/testing/selftests/net/msg_zerocopy.c
*/
}
if (opts->split_bidir && !opts->client &&
events & EPOLLOUT && events & EPOLLOUT) {
/* See comments in flow.c on bidirectional traffic:
* we use one socket per direction, incoming data means
* this socket is used for client writes and the server should
* stop writing there. This is meant to be called only once;
* leaving only EPOLLIN prevents this to be called again
* without having to store extra state.
*/
flow_mod(f, stream_handler, EPOLLIN, true);
}
}
int stream_report(struct thread *ts)
{
const struct options *opts = ts[0].opts;
const char *path = opts->all_samples;
struct callbacks *cb = ts[0].cb;
FILE *csv = NULL;
if (!opts->enable_read)
return 0;
if (path)
csv = print_header(path, "bytes_read,bytes_read/s", "\n", cb);
struct neper_coef *coef = neper_stat_print(ts, csv, NULL);
if (!coef) {
LOG_ERROR(ts->cb, "%s: not able to find coef", __func__);
return -1;
}
const struct rate_conversion *units = opts->throughput_opt;
if (units) {
double thru = coef->thruput(coef);
/* This is only run by the control thread */
struct options *w_opts = (struct options *)opts;
w_opts->local_rate = 8*thru; /* bits/s */
if (!units->unit)
units = auto_unit(thru, units, cb);
thru /= units->bytes_per_second;
PRINT(cb, "throughput", "%.2f", thru);
PRINT(cb, "throughput_units", "%s", units->unit);
}
if (csv)
fclose(csv);
coef->fini(coef);
return 0;
}
static struct neper_stat *neper_stream_init(struct flow *f)
{
return neper_stat_init(f, NULL, 0);
}
void stream_flow_init(struct thread *t, int fd)
{
const struct flow_create_args args = {
.thread = t,
.fd = fd,
.events = stream_events(t),
.opaque = NULL,
.handler = stream_handler,
.stat = neper_stream_init,
.mbuf_alloc = stream_alloc
};
flow_create(&args);
}