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
|
/*
* Copyright (c) 2016 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 __FWDTBL_H__
#define __FWDTBL_H__
struct fwd4_key {
uint32_t port;
struct in_addr addr;
} __attribute__((__packed__));
struct fwd6_key {
uint32_t port;
struct in6_addr addr;
} __attribute__((__packed__));
union fwd_key {
struct fwd4_key k4;
struct fwd6_key k6;
};
static struct rte_hash *
fwd_tbl_key_prep(const struct netfe_lcore *fe, uint16_t family,
const struct sockaddr *sa, union fwd_key *key)
{
struct rte_hash *h;
const struct sockaddr_in *sin4;
const struct sockaddr_in6 *sin6;
if (family == AF_INET) {
h = fe->fw4h;
sin4 = (const struct sockaddr_in *)sa;
key->k4.port = sin4->sin_port;
key->k4.addr = sin4->sin_addr;
} else {
h = fe->fw6h;
sin6 = (const struct sockaddr_in6 *)sa;
key->k6.port = sin6->sin6_port;
key->k6.addr = sin6->sin6_addr;
}
return h;
}
static int
fwd_tbl_add(struct netfe_lcore *fe, uint16_t family, const struct sockaddr *sa,
struct netfe_stream *data)
{
int32_t rc;
struct rte_hash *h;
union fwd_key key;
h = fwd_tbl_key_prep(fe, family, sa, &key);
rc = rte_hash_add_key_data(h, &key, data);
return rc;
}
static struct netfe_stream *
fwd_tbl_lkp(struct netfe_lcore *fe, uint16_t family, const struct sockaddr *sa)
{
int rc;
void *d;
struct rte_hash *h;
union fwd_key key;
h = fwd_tbl_key_prep(fe, family, sa, &key);
rc = rte_hash_lookup_data(h, &key, &d);
if (rc < 0)
d = NULL;
return d;
}
static int
fwd_tbl_init(struct netfe_lcore *fe, uint16_t family, uint32_t lcore)
{
int32_t rc;
struct rte_hash **h;
struct rte_hash_parameters hprm;
char buf[RTE_HASH_NAMESIZE];
if (family == AF_INET) {
snprintf(buf, sizeof(buf), "fwd4tbl@%u", lcore);
h = &fe->fw4h;
hprm.key_len = sizeof(struct fwd4_key);
} else {
snprintf(buf, sizeof(buf), "fwd6tbl@%u", lcore);
h = &fe->fw6h;
hprm.key_len = sizeof(struct fwd6_key);
}
hprm.name = buf;
hprm.entries = RTE_MAX(2 * fe->snum, 0x10U);
hprm.socket_id = rte_lcore_to_socket_id(lcore);
hprm.hash_func = NULL;
hprm.hash_func_init_val = 0;
*h = rte_hash_create(&hprm);
if (*h == NULL)
rc = (rte_errno != 0) ? -rte_errno : -ENOMEM;
else
rc = 0;
return rc;
}
#endif /* __FWDTBL_H__ */
|