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
|
/*
// Copyright (c) 2010-2017 Intel Corporation
//
// 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.
*/
#ifndef _GENL4_BUNDLE_H_
#define _GENL4_BUNDLE_H_
#include "heap.h"
#include "genl4_stream.h"
#include "lconf.h"
/* Configured once and used during packet generation. The structure
describes a single set of consecutive streams. When used at the
server side, it only contains a simple stream to represent a
service. */
struct bundle_cfg {
struct host_set clients;
uint32_t n_stream_cfgs;
struct stream_cfg **stream_cfgs;
};
/* A bundle_ctx represents a an active stream between a client and a
server of servers. */
struct bundle_ctx {
struct pkt_tuple tuple; /* Client IP/PORT generated once at bundle creation time, client PORT and server IP/PORT created when stream_idx++ */
struct heap_ref heap_ref; /* Back reference into heap */
struct heap *heap; /* timer management */
const struct bundle_cfg *cfg; /* configuration time read only structure */
struct stream_ctx ctx; /* state management info for stream_cfg (reset when stream_idx++) */
uint32_t stream_idx; /* iterate through cfg->straem_cfgs */
};
#define BUNDLE_CTX_UPCAST(r) ((struct bundle_ctx *)((uint8_t *)r - offsetof(struct bundle_ctx, heap_ref)))
struct bundle_ctx_pool {
struct rte_hash *hash;
struct bundle_ctx **hash_entries;
struct bundle_ctx **free_bundles;
struct bundle_ctx *bundles; /* Memory containing all communications */
uint32_t *occur;
struct bundle_cfg *bundle_cfg;
uint32_t n_occur;
uint32_t seed;
uint32_t n_free_bundles;
uint32_t tot_bundles;
};
struct l4_stats {
uint64_t bundles_created;
uint64_t tcp_finished_no_retransmit;
uint64_t tcp_finished_retransmit;
uint64_t udp_finished;
uint64_t tcp_created;
uint64_t udp_created;
uint64_t tcp_expired;
uint64_t tcp_retransmits;
uint64_t udp_expired;
};
struct cdf;
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);
struct bundle_ctx *bundle_ctx_pool_get(struct bundle_ctx_pool *p);
struct bundle_ctx *bundle_ctx_pool_get_w_cfg(struct bundle_ctx_pool *p);
void bundle_ctx_pool_put(struct bundle_ctx_pool *p, struct bundle_ctx *bundle);
void bundle_create_tuple(struct pkt_tuple *tp, const struct host_set *clients, const struct stream_cfg *stream_cfg, int rnd_ip, unsigned *seed);
void bundle_init(struct bundle_ctx *bundle, struct heap *heap, enum l4gen_peer peer, unsigned *seed);
void bundle_init_w_cfg(struct bundle_ctx *bundle, const struct bundle_cfg *cfg, struct heap *heap, enum l4gen_peer peer, unsigned *seed);
void bundle_expire(struct bundle_ctx *bundle, struct bundle_ctx_pool *pool, struct l4_stats *l4_stats);
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);
uint32_t bundle_cfg_length(struct bundle_cfg *cfg);
uint32_t bundle_cfg_max_n_segments(struct bundle_cfg *cfg);
#endif /* _GENL4_BUNDLE_H_ */
|