2 // Copyright (c) 2010-2017 Intel Corporation
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
8 // http://www.apache.org/licenses/LICENSE-2.0
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
18 #include <rte_cycles.h>
20 #include <rte_version.h>
22 #include <rte_byteorder.h>
25 #include "prox_lua_types.h"
29 #include "handle_routing.h"
33 #include "prox_port_cfg.h"
36 #include "hash_entry_types.h"
41 #include "prox_shared.h"
42 #include "prox_cksum.h"
43 #include "mbuf_utils.h"
46 struct task_base base;
47 uint8_t runtime_flags;
48 struct lcore_cfg *lconf;
49 struct rte_lpm *ipv4_lpm;
50 struct next_hop *next_hops;
51 uint32_t number_free_rules;
54 uint64_t src_mac[PROX_MAX_PORTS];
57 static void routing_update(struct task_base *tbase, void **data, uint16_t n_msgs)
59 struct task_routing *task = (struct task_routing *)tbase;
60 struct route_msg *msg;
62 for (uint16_t i = 0; i < n_msgs; ++i) {
63 msg = (struct route_msg *)data[i];
65 if (task->number_free_rules == 0) {
66 plog_warn("Failed adding route: %u.%u.%u.%u/%u: lpm table full\n",
67 msg->ip_bytes[0], msg->ip_bytes[1], msg->ip_bytes[2],
68 msg->ip_bytes[3], msg->prefix);
70 if (rte_lpm_add(task->ipv4_lpm, rte_bswap32(msg->ip), msg->prefix, msg->nh)) {
71 plog_warn("Failed adding route: %u.%u.%u.%u/%u\n",
72 msg->ip_bytes[0], msg->ip_bytes[1], msg->ip_bytes[2],
73 msg->ip_bytes[3], msg->prefix);
75 task->number_free_rules--;
81 static void init_task_routing(struct task_base *tbase, struct task_args *targ)
83 struct task_routing *task = (struct task_routing *)tbase;
84 const int socket_id = rte_lcore_to_socket_id(targ->lconf->id);
87 task->lconf = targ->lconf;
88 task->qinq_tag = targ->qinq_tag;
89 task->runtime_flags = targ->runtime_flags;
91 PROX_PANIC(!strcmp(targ->route_table, ""), "route table not specified\n");
92 if (targ->flags & TASK_ARG_LOCAL_LPM) {
93 int ret = lua_to_lpm4(prox_lua(), GLOBAL, targ->route_table, socket_id, &lpm);
94 PROX_PANIC(ret, "Failed to load IPv4 LPM:\n%s\n", get_lua_to_errors());
95 prox_sh_add_socket(socket_id, targ->route_table, lpm);
97 task->number_free_rules = lpm->n_free_rules;
100 lpm = prox_sh_find_socket(socket_id, targ->route_table);
102 int ret = lua_to_lpm4(prox_lua(), GLOBAL, targ->route_table, socket_id, &lpm);
103 PROX_PANIC(ret, "Failed to load IPv4 LPM:\n%s\n", get_lua_to_errors());
104 prox_sh_add_socket(socket_id, targ->route_table, lpm);
107 task->ipv4_lpm = lpm->rte_lpm;
108 task->next_hops = lpm->next_hops;
109 task->number_free_rules = lpm->n_free_rules;
111 for (uint32_t i = 0; i < MAX_HOP_INDEX; i++) {
112 int tx_port = task->next_hops[i].mac_port.out_idx;
113 if ((tx_port > targ->nb_txports - 1) && (tx_port > targ->nb_txrings - 1)) {
114 PROX_PANIC(1, "Routing Table contains port %d but only %d tx port/ %d ring:\n", tx_port, targ->nb_txports, targ->nb_txrings);
118 if (targ->nb_txrings) {
119 struct task_args *dtarg;
121 for (uint32_t i = 0; i < targ->nb_txrings; ++i) {
122 ct = targ->core_task_set[0].core_task[i];
123 dtarg = core_targ_get(ct.core, ct.task);
124 dtarg = find_reachable_task_sending_to_port(dtarg);
125 if (task->runtime_flags & TASK_MPLS_TAGGING) {
126 task->src_mac[i] = (0x0000ffffffffffff & ((*(uint64_t*)&prox_port_cfg[dtarg->tx_port_queue[0].port].eth_addr))) | ((uint64_t)ETYPE_MPLSU << (64 - 16));
128 task->src_mac[i] = (0x0000ffffffffffff & ((*(uint64_t*)&prox_port_cfg[dtarg->tx_port_queue[0].port].eth_addr))) | ((uint64_t)ETYPE_IPv4 << (64 - 16));
132 for (uint32_t i = 0; i < targ->nb_txports; ++i) {
133 if (task->runtime_flags & TASK_MPLS_TAGGING) {
134 task->src_mac[i] = (0x0000ffffffffffff & ((*(uint64_t*)&prox_port_cfg[targ->tx_port_queue[i].port].eth_addr))) | ((uint64_t)ETYPE_MPLSU << (64 - 16));
136 task->src_mac[i] = (0x0000ffffffffffff & ((*(uint64_t*)&prox_port_cfg[targ->tx_port_queue[i].port].eth_addr))) | ((uint64_t)ETYPE_IPv4 << (64 - 16));
141 for (uint32_t i = 0; i < 4; ++i) {
142 task->marking[i] = rte_bswap32(targ->marking[i] << 9);
145 struct prox_port_cfg *port = find_reachable_port(targ);
147 targ->lconf->ctrl_func_m[targ->task] = routing_update;
148 targ->lconf->ctrl_timeout = freq_to_tsc(20);
151 static inline uint8_t handle_routing(struct task_routing *task, struct rte_mbuf *mbuf);
153 static int handle_routing_bulk(struct task_base *tbase, struct rte_mbuf **mbufs, uint16_t n_pkts)
155 struct task_routing *task = (struct task_routing *)tbase;
156 uint8_t out[MAX_PKT_BURST];
159 prefetch_first(mbufs, n_pkts);
161 for (j = 0; j + PREFETCH_OFFSET < n_pkts; ++j) {
162 #ifdef PROX_PREFETCH_OFFSET
163 PREFETCH0(mbufs[j + PREFETCH_OFFSET]);
164 PREFETCH0(rte_pktmbuf_mtod(mbufs[j + PREFETCH_OFFSET - 1], void *));
166 out[j] = handle_routing(task, mbufs[j]);
168 #ifdef PROX_PREFETCH_OFFSET
169 PREFETCH0(rte_pktmbuf_mtod(mbufs[n_pkts - 1], void *));
170 for (; j < n_pkts; ++j) {
171 out[j] = handle_routing(task, mbufs[j]);
175 return task->base.tx_pkt(&task->base, mbufs, n_pkts, out);
178 static void set_l2(struct task_routing *task, struct rte_mbuf *mbuf, uint8_t nh_idx)
180 struct ether_hdr *peth = rte_pktmbuf_mtod(mbuf, struct ether_hdr *);
181 *((uint64_t *)(&peth->d_addr)) = task->next_hops[nh_idx].mac_port_8bytes;
182 *((uint64_t *)(&peth->s_addr)) = task->src_mac[task->next_hops[nh_idx].mac_port.out_idx];
185 static void set_l2_mpls(struct task_routing *task, struct rte_mbuf *mbuf, uint8_t nh_idx)
187 struct ether_hdr *peth = (struct ether_hdr *)rte_pktmbuf_prepend(mbuf, sizeof(struct mpls_hdr));
189 *((uint64_t *)(&peth->d_addr)) = task->next_hops[nh_idx].mac_port_8bytes;
190 *((uint64_t *)(&peth->s_addr)) = task->src_mac[task->next_hops[nh_idx].mac_port.out_idx];
191 /* MPLSU ether_type written as high word of 64bit src_mac prepared by init_task_routing */
192 struct mpls_hdr *mpls = (struct mpls_hdr *)(peth + 1);
194 if (task->runtime_flags & TASK_MARK) {
195 enum rte_meter_color color = rte_sched_port_pkt_read_color(mbuf);
197 *(uint32_t *)mpls = task->next_hops[nh_idx].mpls | task->marking[color] | 0x00010000; // Set BoS to 1
200 *(uint32_t *)mpls = task->next_hops[nh_idx].mpls | 0x00010000; // Set BoS to 1
204 static uint8_t route_ipv4(struct task_routing *task, uint8_t *beg, uint32_t ip_offset, struct rte_mbuf *mbuf)
206 struct ipv4_hdr *ip = (struct ipv4_hdr*)(beg + ip_offset);
207 struct ether_hdr *peth_out;
211 if (unlikely(ip->version_ihl >> 4 != 4)) {
212 plog_warn("Offset: %d\n", ip_offset);
213 plog_warn("Expected to receive IPv4 packet but IP version was %d\n",
214 ip->version_ihl >> 4);
218 switch(ip->next_proto_id) {
220 struct gre_hdr *pgre = (struct gre_hdr *)(ip + 1);
221 dst_ip = ((struct ipv4_hdr *)(pgre + 1))->dst_addr;
226 dst_ip = ip->dst_addr;
229 /* Routing for other protocols is not implemented */
233 #if RTE_VERSION >= RTE_VERSION_NUM(16,4,0,1)
234 uint32_t next_hop_index;
236 uint8_t next_hop_index;
238 if (unlikely(rte_lpm_lookup(task->ipv4_lpm, rte_bswap32(dst_ip), &next_hop_index) != 0)) {
239 uint8_t* dst_ipp = (uint8_t*)&dst_ip;
240 plog_warn("lpm_lookup failed for ip %d.%d.%d.%d: rc = %d\n",
241 dst_ipp[0], dst_ipp[1], dst_ipp[2], dst_ipp[3], -ENOENT);
245 tx_port = task->next_hops[next_hop_index].mac_port.out_idx;
246 if (task->runtime_flags & TASK_MPLS_TAGGING) {
247 uint16_t padlen = rte_pktmbuf_pkt_len(mbuf) - rte_be_to_cpu_16(ip->total_length) - ip_offset;
249 rte_pktmbuf_trim(mbuf, padlen);
252 set_l2_mpls(task, mbuf, next_hop_index);
255 set_l2(task, mbuf, next_hop_index);
260 static inline uint8_t handle_routing(struct task_routing *task, struct rte_mbuf *mbuf)
262 struct qinq_hdr *qinq;
263 struct ether_hdr *peth = rte_pktmbuf_mtod(mbuf, struct ether_hdr *);
265 switch (peth->ether_type) {
267 struct qinq_hdr *qinq = (struct qinq_hdr *)peth;
268 if ((qinq->cvlan.eth_proto != ETYPE_VLAN)) {
269 plog_warn("Unexpected proto in QinQ = %#04x\n", qinq->cvlan.eth_proto);
273 return route_ipv4(task, (uint8_t*)qinq, sizeof(*qinq), mbuf);
276 return route_ipv4(task, (uint8_t*)peth, sizeof(*peth), mbuf);
278 /* skip MPLS headers if any for routing */
279 struct mpls_hdr *mpls = (struct mpls_hdr *)(peth + 1);
280 uint32_t count = sizeof(struct ether_hdr);
281 while (!(mpls->bytes & 0x00010000)) {
283 count += sizeof(struct mpls_hdr);
285 count += sizeof(struct mpls_hdr);
287 return route_ipv4(task, (uint8_t*)peth, count, mbuf);
290 if (peth->ether_type == task->qinq_tag) {
291 struct qinq_hdr *qinq = (struct qinq_hdr *)peth;
292 if ((qinq->cvlan.eth_proto != ETYPE_VLAN)) {
293 plog_warn("Unexpected proto in QinQ = %#04x\n", qinq->cvlan.eth_proto);
297 return route_ipv4(task, (uint8_t*)qinq, sizeof(*qinq), mbuf);
299 plog_warn("Failed routing packet: ether_type %#06x is unknown\n", peth->ether_type);
304 static struct task_init task_init_routing = {
305 .mode_str = "routing",
306 .init = init_task_routing,
307 .handle = handle_routing_bulk,
308 .flag_features = TASK_FEATURE_ROUTING|TASK_FEATURE_TXQ_FLAGS_NOOFFLOADS,
309 .size = sizeof(struct task_routing)
312 __attribute__((constructor)) static void reg_task_routing(void)
314 reg_task(&task_init_routing);