forked from nvf-crucio/PROX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandle_qos.c
More file actions
executable file
·192 lines (167 loc) · 6.89 KB
/
handle_qos.c
File metadata and controls
executable file
·192 lines (167 loc) · 6.89 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
/*
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 <rte_ip.h>
#include <rte_mbuf.h>
#include <rte_sched.h>
#include "prox_lua.h"
#include "prox_lua_types.h"
#include "etypes.h"
#include "stats.h"
#include "task_init.h"
#include "lconf.h"
#include "task_base.h"
#include "defines.h"
#include "prefetch.h"
#include "handle_qos.h"
#include "log.h"
#include "quit.h"
#include "qinq.h"
#include "prox_cfg.h"
#include "prox_shared.h"
struct task_qos {
struct task_base base;
struct rte_sched_port *sched_port;
uint16_t *user_table;
uint8_t *dscp;
uint32_t nb_buffered_pkts;
uint8_t runtime_flags;
};
uint32_t task_qos_n_pkts_buffered(struct task_base *tbase)
{
struct task_qos *task = (struct task_qos *)tbase;
return task->nb_buffered_pkts;
}
static inline void handle_qos_bulk(struct task_base *tbase, struct rte_mbuf **mbufs, uint16_t n_pkts)
{
struct task_qos *task = (struct task_qos *)tbase;
if (n_pkts) {
if (task->runtime_flags & TASK_CLASSIFY) {
uint16_t j;
#ifdef PROX_PREFETCH_OFFSET
for (j = 0; j < PROX_PREFETCH_OFFSET && j < n_pkts; ++j) {
prefetch_nta(mbufs[j]);
}
for (j = 1; j < PROX_PREFETCH_OFFSET && j < n_pkts; ++j) {
prefetch_nta(rte_pktmbuf_mtod(mbufs[j - 1], void *));
}
#endif
uint8_t queue = 0;
uint8_t tc = 0;
for (j = 0; j + PREFETCH_OFFSET < n_pkts; ++j) {
prefetch_nta(mbufs[j + PREFETCH_OFFSET]);
prefetch_nta(rte_pktmbuf_mtod(mbufs[j + PREFETCH_OFFSET - 1], void *));
const struct qinq_hdr *pqinq = rte_pktmbuf_mtod(mbufs[j], const struct qinq_hdr *);
uint32_t qinq = PKT_TO_LUTQINQ(pqinq->svlan.vlan_tci, pqinq->cvlan.vlan_tci);
if (pqinq->ether_type == ETYPE_IPv4) {
const struct ipv4_hdr *ipv4_hdr = (const struct ipv4_hdr *)(pqinq + 1);
queue = task->dscp[ipv4_hdr->type_of_service >> 2] & 0x3;
tc = task->dscp[ipv4_hdr->type_of_service >> 2] >> 2;
} else {
// Keep queue and tc = 0 for other packet types like ARP
queue = 0;
tc = 0;
}
rte_sched_port_pkt_write(mbufs[j], 0, task->user_table[qinq], tc, queue, 0);
}
#ifdef PROX_PREFETCH_OFFSET
prefetch_nta(rte_pktmbuf_mtod(mbufs[n_pkts - 1], void *));
for (; j < n_pkts; ++j) {
const struct qinq_hdr *pqinq = rte_pktmbuf_mtod(mbufs[j], const struct qinq_hdr *);
uint32_t qinq = PKT_TO_LUTQINQ(pqinq->svlan.vlan_tci, pqinq->cvlan.vlan_tci);
if (pqinq->ether_type == ETYPE_IPv4) {
const struct ipv4_hdr *ipv4_hdr = (const struct ipv4_hdr *)(pqinq + 1);
queue = task->dscp[ipv4_hdr->type_of_service >> 2] & 0x3;
tc = task->dscp[ipv4_hdr->type_of_service >> 2] >> 2;
} else {
// Keep queue and tc = 0 for other packet types like ARP
queue = 0;
tc = 0;
}
rte_sched_port_pkt_write(mbufs[j], 0, task->user_table[qinq], tc, queue, 0);
}
#endif
}
int16_t ret = rte_sched_port_enqueue(task->sched_port, mbufs, n_pkts);
task->nb_buffered_pkts += ret;
TASK_STATS_ADD_IDLE(&task->base.aux->stats, n_pkts - ret);
}
if (task->nb_buffered_pkts) {
n_pkts = rte_sched_port_dequeue(task->sched_port, mbufs, 32);
if (likely(n_pkts)) {
task->nb_buffered_pkts -= n_pkts;
task->base.tx_pkt(&task->base, mbufs, n_pkts, NULL);
}
}
}
static void init_task_qos(struct task_base *tbase, struct task_args *targ)
{
struct task_qos *task = (struct task_qos *)tbase;
const int socket_id = rte_lcore_to_socket_id(targ->lconf->id);
char name[64];
snprintf(name, sizeof(name), "qos_sched_port_%u_%u", targ->lconf->id, 0);
targ->qos_conf.port_params.name = name;
targ->qos_conf.port_params.socket = socket_id;
task->sched_port = rte_sched_port_config(&targ->qos_conf.port_params);
PROX_PANIC(task->sched_port == NULL, "failed to create sched_port");
plog_info("number of pipes: %d\n\n", targ->qos_conf.port_params.n_pipes_per_subport);
int err = rte_sched_subport_config(task->sched_port, 0, targ->qos_conf.subport_params);
PROX_PANIC(err != 0, "Failed setting up sched_port subport, error: %d", err);
/* only single subport and single pipe profile is supported */
for (uint32_t pipe = 0; pipe < targ->qos_conf.port_params.n_pipes_per_subport; ++pipe) {
err = rte_sched_pipe_config(task->sched_port, 0 , pipe, 0);
PROX_PANIC(err != 0, "failed setting up sched port pipe, error: %d", err);
}
task->runtime_flags = targ->runtime_flags;
task->user_table = prox_sh_find_socket(socket_id, "user_table");
if (!task->user_table) {
PROX_PANIC(!strcmp(targ->user_table, ""), "No user table defined\n");
int ret = lua_to_user_table(prox_lua(), GLOBAL, targ->user_table, socket_id, &task->user_table);
PROX_PANIC(ret, "Failed to create user table from config:\n%s\n", get_lua_to_errors());
prox_sh_add_socket(socket_id, "user_table", task->user_table);
}
if (task->runtime_flags & TASK_CLASSIFY) {
PROX_PANIC(!strcmp(targ->dscp, ""), "DSCP table not specified\n");
task->dscp = prox_sh_find_socket(socket_id, targ->dscp);
if (!task->dscp) {
int ret = lua_to_dscp(prox_lua(), GLOBAL, targ->dscp, socket_id, &task->dscp);
PROX_PANIC(ret, "Failed to create dscp table from config:\n%s\n", get_lua_to_errors());
prox_sh_add_socket(socket_id, targ->dscp, task->dscp);
}
}
}
static struct task_init task_init_qos = {
.mode_str = "qos",
.init = init_task_qos,
.handle = handle_qos_bulk,
.flag_features = TASK_FEATURE_CLASSIFY | TASK_FEATURE_NEVER_DISCARDS | TASK_FEATURE_MULTI_RX | TASK_FEATURE_ZERO_RX,
.size = sizeof(struct task_qos)
};
__attribute__((constructor)) static void reg_task_qos(void)
{
reg_task(&task_init_qos);
}