forked from nvf-crucio/PROX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenl4_bundle.c
More file actions
executable file
·387 lines (320 loc) · 11.1 KB
/
genl4_bundle.c
File metadata and controls
executable file
·387 lines (320 loc) · 11.1 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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/*
Copyright(c) 2010-2016 Intel Corporation.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of Intel Corporation nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <string.h>
#include <rte_hash.h>
#include <rte_memory.h>
#include <rte_hash_crc.h>
#include <rte_cycles.h>
#include <rte_version.h>
#include "prox_malloc.h"
#include "prox_assert.h"
#include "cdf.h"
#include "defines.h"
#include "genl4_bundle.h"
#include "log.h"
#include "pkt_parser.h"
#include "prox_lua_types.h"
#if RTE_VERSION < RTE_VERSION_NUM(1,8,0,0)
#define RTE_CACHE_LINE_SIZE CACHE_LINE_SIZE
#define RTE_CACHE_LINE_ROUNDUP CACHE_LINE_ROUNDUP
#endif
/* zero on success */
int bundle_ctx_pool_create(const char *name, uint32_t n_elems, struct bundle_ctx_pool *ret, uint32_t *occur, uint32_t n_occur, struct bundle_cfg *cfg, int socket_id)
{
size_t memsize;
uint8_t *mem;
const struct rte_hash_parameters params = {
.name = name,
.entries = rte_align32pow2(n_elems) * 8,
//.bucket_entries = 8,
.key_len = sizeof(struct pkt_tuple),
.hash_func = rte_hash_crc,
.hash_func_init_val = 0,
.socket_id = socket_id,
};
ret->hash = rte_hash_create(¶ms);
if (NULL == ret->hash)
return -1;
uint32_t rand_pool_size = 0, tot_occur = 0;
if (occur) {
for (uint32_t i = 0; i < n_occur; ++i) {
tot_occur += occur[i];
}
rand_pool_size = (n_elems + (tot_occur - 1))/tot_occur*tot_occur;
}
memsize = 0;
memsize += RTE_CACHE_LINE_ROUNDUP(params.entries * sizeof(ret->hash_entries[0]));
memsize += RTE_CACHE_LINE_ROUNDUP(n_elems * sizeof(ret->free_bundles[0]));
memsize += RTE_CACHE_LINE_ROUNDUP(n_elems * sizeof(ret->bundles[0]));
if (occur)
memsize += RTE_CACHE_LINE_ROUNDUP(rand_pool_size * sizeof(ret->occur));
mem = prox_zmalloc(memsize, socket_id);
if (NULL == mem)
return -1;
ret->hash_entries = (struct bundle_ctx **) mem;
mem += RTE_CACHE_LINE_ROUNDUP(params.entries * sizeof(ret->hash_entries[0]));
ret->free_bundles = (struct bundle_ctx **) mem;
mem += RTE_CACHE_LINE_ROUNDUP(n_elems * sizeof(ret->free_bundles[0]));
if (occur) {
ret->occur = (uint32_t *)mem;
mem += RTE_CACHE_LINE_ROUNDUP(rand_pool_size * sizeof(ret->occur));
ret->seed = rte_rdtsc();
size_t cur_occur = 0;
size_t j = 0;
for (uint32_t i = 0; i < rand_pool_size; ++i) {
while (j >= occur[cur_occur]) {
cur_occur++;
if (cur_occur == n_occur)
cur_occur = 0;
j = 0;
}
j++;
ret->occur[i] = cur_occur;
}
ret->n_occur = rand_pool_size;
}
ret->bundles = (struct bundle_ctx *) mem;
ret->bundle_cfg = cfg;
for (unsigned i = 0; i < n_elems; ++i) {
ret->free_bundles[i] = &ret->bundles[i];
}
ret->n_free_bundles = n_elems;
ret->tot_bundles = n_elems;
return 0;
}
struct bundle_ctx *bundle_ctx_pool_get(struct bundle_ctx_pool *p)
{
if (p->n_free_bundles > 0)
return p->free_bundles[--p->n_free_bundles];
return NULL;
}
static struct bundle_cfg *bundle_ctx_get_cfg(struct bundle_ctx_pool *p)
{
uint32_t rand = 0;
/* get rand in [0, RAND_MAX rounded down] */
do {
rand = rand_r(&p->seed);
} while (rand >= RAND_MAX/p->n_occur*p->n_occur);
rand /= RAND_MAX/p->n_occur;
PROX_ASSERT(p->n_occur);
PROX_ASSERT(rand < p->n_occur);
uint32_t r = p->occur[rand];
p->occur[rand] = p->occur[--p->n_occur];
return &p->bundle_cfg[r];
}
static void bundle_ctx_put_cfg(struct bundle_ctx_pool *p, const struct bundle_cfg *cfg)
{
if (p->occur) {
uint32_t r = cfg - p->bundle_cfg;
p->occur[p->n_occur++] = r;
}
}
struct bundle_ctx *bundle_ctx_pool_get_w_cfg(struct bundle_ctx_pool *p)
{
if (p->n_free_bundles > 0) {
struct bundle_ctx *ret = p->free_bundles[--p->n_free_bundles];
ret->cfg = bundle_ctx_get_cfg(p);
return ret;
}
return NULL;
}
void bundle_ctx_pool_put(struct bundle_ctx_pool *p, struct bundle_ctx *bundle)
{
bundle_ctx_put_cfg(p, bundle->cfg);
p->free_bundles[p->n_free_bundles++] = bundle;
}
static void bundle_cleanup(struct bundle_ctx *bundle)
{
if (bundle->heap_ref.elem != NULL) {
heap_del(bundle->heap, &bundle->heap_ref);
}
}
static int bundle_iterate_streams(struct bundle_ctx *bundle, struct bundle_ctx_pool *pool, unsigned *seed, struct l4_stats *l4_stats)
{
enum l4gen_peer peer;
int ret = 0, old;
while (bundle->ctx.stream_cfg->is_ended(&bundle->ctx)) {
if (bundle->ctx.stream_cfg->proto == IPPROTO_TCP) {
if (bundle->ctx.retransmits == 0)
l4_stats->tcp_finished_no_retransmit++;
else
l4_stats->tcp_finished_retransmit++;
}
else
l4_stats->udp_finished++;
if (bundle->stream_idx + 1 != bundle->cfg->n_stream_cfgs) {
ret = 1;
bundle->stream_idx++;
stream_ctx_reset_move(&bundle->ctx, bundle->cfg->stream_cfgs[bundle->stream_idx]);
/* Update tuple */
old = rte_hash_del_key(pool->hash, &bundle->tuple);
if (old < 0) {
plogx_err("Failed to delete key while trying to change tuple: %d (%s)\n",old, strerror(-old));
}
plogx_dbg("Moving to stream with idx %d\n", bundle->stream_idx);
/* In case there are multiple streams, clients
randomized but ports fixed, it is still
possible to hit an infinite loop here. The
situations is hit if a client:port is
connected to a server:port in one of the
streams while client:port is regenerated
for the first stream. There is no conflict
yet since the server:port is
different. Note that this is bug since a
client:port can only have one open
connection. */
int retries = 0;
do {
bundle_create_tuple(&bundle->tuple, &bundle->cfg->clients, bundle->ctx.stream_cfg, 0, seed);
ret = rte_hash_lookup(pool->hash, (const void *)&bundle->tuple);
if (++retries == 1000) {
plogx_warn("Already tried 1K times\n");
plogx_warn("Going from %d to %d\n", bundle->stream_idx -1, bundle->stream_idx);
}
} while (ret >= 0);
ret = rte_hash_add_key(pool->hash, &bundle->tuple);
if (ret < 0) {
plogx_err("Failed to add key while moving to next stream!\n");
return -1;
}
pool->hash_entries[ret] = pool->hash_entries[old];
if (bundle->ctx.stream_cfg->proto == IPPROTO_TCP)
l4_stats->tcp_created++;
else
l4_stats->udp_created++;
}
else {
int a = rte_hash_del_key(pool->hash, &bundle->tuple);
if (a < 0) {
plogx_err("Del failed (%d)! during finished all bundle (%d)\n", a, bundle->cfg->n_stream_cfgs);
exit(-1);
}
bundle_cleanup(bundle);
bundle_ctx_pool_put(pool, bundle);
return -1;
}
}
return ret;
}
void bundle_create_tuple(struct pkt_tuple *tp, const struct host_set *clients, const struct stream_cfg *stream_cfg, int rnd_ip, unsigned *seed)
{
tp->dst_port = clients->port;
tp->dst_port &= ~clients->port_mask;
tp->dst_port |= rand_r(seed) & clients->port_mask;
if (rnd_ip) {
tp->dst_addr = clients->ip;
tp->dst_addr &= ~clients->ip_mask;
tp->dst_addr |= rand_r(seed) & clients->ip_mask;
}
tp->src_addr = stream_cfg->servers.ip;
tp->src_port = stream_cfg->servers.port;
plogx_dbg("bundle_create_tuple() with proto = %x, %d\n", stream_cfg->proto, rnd_ip);
tp->proto_id = stream_cfg->proto;
tp->l2_types[0] = 0x0008;
}
void bundle_init_w_cfg(struct bundle_ctx *bundle, const struct bundle_cfg *cfg, struct heap *heap, enum l4gen_peer peer, unsigned *seed)
{
bundle->cfg = cfg;
bundle_init(bundle, heap, peer, seed);
}
void bundle_init(struct bundle_ctx *bundle, struct heap *heap, enum l4gen_peer peer, unsigned *seed)
{
bundle->heap_ref.elem = NULL;
bundle->heap = heap;
memset(&bundle->ctx, 0, sizeof(bundle->ctx));
// TODO; assert that there is at least one stream
bundle->stream_idx = 0;
stream_ctx_init(&bundle->ctx, peer, bundle->cfg->stream_cfgs[bundle->stream_idx], &bundle->tuple);
bundle_create_tuple(&bundle->tuple, &bundle->cfg->clients, bundle->ctx.stream_cfg, peer == PEER_CLIENT, seed);
}
void bundle_expire(struct bundle_ctx *bundle, struct bundle_ctx_pool *pool, struct l4_stats *l4_stats)
{
struct pkt_tuple *pt = &bundle->tuple;
plogx_dbg("Client = "IPv4_BYTES_FMT":%d, Server = "IPv4_BYTES_FMT":%d\n",
IPv4_BYTES(((uint8_t*)&pt->dst_addr)),
rte_bswap16(pt->dst_port),
IPv4_BYTES(((uint8_t*)&pt->src_addr)),
rte_bswap16(pt->src_port));
int a = rte_hash_del_key(pool->hash, bundle);
if (a < 0) {
plogx_err("Del failed with error %d: '%s'\n", a, strerror(-a));
plogx_err("ended = %d\n", bundle->ctx.flags & STREAM_CTX_F_TCP_ENDED);
}
if (bundle->ctx.stream_cfg->proto == IPPROTO_TCP)
l4_stats->tcp_expired++;
else
l4_stats->udp_expired++;
bundle_cleanup(bundle);
bundle_ctx_pool_put(pool, bundle);
}
int bundle_proc_data(struct bundle_ctx *bundle, struct rte_mbuf *mbuf, struct l4_meta *l4_meta, struct bundle_ctx_pool *pool, unsigned *seed, struct l4_stats *l4_stats)
{
int ret;
uint64_t next_tsc;
if (bundle->heap_ref.elem != NULL) {
heap_del(bundle->heap, &bundle->heap_ref);
}
if (bundle_iterate_streams(bundle, pool, seed, l4_stats) < 0)
return -1;
uint32_t retx_before = bundle->ctx.retransmits;
next_tsc = UINT64_MAX;
ret = bundle->ctx.stream_cfg->proc(&bundle->ctx, mbuf, l4_meta, &next_tsc);
if (bundle->ctx.flags & STREAM_CTX_F_EXPIRED) {
bundle_expire(bundle, pool, l4_stats);
return -1;
}
else if (next_tsc != UINT64_MAX) {
heap_add(bundle->heap, &bundle->heap_ref, rte_rdtsc() + next_tsc);
}
l4_stats->tcp_retransmits += bundle->ctx.retransmits - retx_before;
if (bundle_iterate_streams(bundle, pool, seed, l4_stats) > 0) {
if (bundle->heap_ref.elem != NULL) {
heap_del(bundle->heap, &bundle->heap_ref);
}
heap_add(bundle->heap, &bundle->heap_ref, rte_rdtsc());
}
return ret;
}
uint32_t bundle_cfg_length(struct bundle_cfg *cfg)
{
uint32_t ret = 0;
for (uint32_t i = 0; i < cfg->n_stream_cfgs; ++i) {
ret += cfg->stream_cfgs[i]->n_bytes;
}
return ret;
}
uint32_t bundle_cfg_max_n_segments(struct bundle_cfg *cfg)
{
uint32_t ret = 0;
uint32_t cur;
for (uint32_t i = 0; i < cfg->n_stream_cfgs; ++i) {
cur = stream_cfg_max_n_segments(cfg->stream_cfgs[i]);
ret = ret > cur? ret: cur;
}
return ret;
}