blob: e957259c9367cf78632ca5515aa3065a44d1439a [file] [log] [blame]
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +05301/*
2 * sfe_ipv4_tcp.c
3 * Shortcut forwarding engine - IPv4 TCP implementation
4 *
5 * Copyright (c) 2013-2016, 2019-2020, The Linux Foundation. All rights reserved.
Guduri Prathyusha5f27e232022-01-06 14:39:04 +05306 * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +05307 *
8 * Permission to use, copy, modify, and/or distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 */
20
21#include <linux/skbuff.h>
22#include <net/tcp.h>
23#include <linux/etherdevice.h>
24#include <linux/lockdep.h>
25
26#include "sfe_debug.h"
27#include "sfe_api.h"
28#include "sfe.h"
29#include "sfe_flow_cookie.h"
30#include "sfe_ipv4.h"
Guduri Prathyusha79a5fee2021-11-11 17:59:10 +053031#include "sfe_pppoe.h"
Wayne Tanbb7f1782021-12-13 11:16:04 -080032#include "sfe_vlan.h"
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +053033
34/*
35 * sfe_ipv4_process_tcp_option_sack()
36 * Parse TCP SACK option and update ack according
37 */
38static bool sfe_ipv4_process_tcp_option_sack(const struct tcphdr *th, const u32 data_offs,
39 u32 *ack)
40{
41 u32 length = sizeof(struct tcphdr);
42 u8 *ptr = (u8 *)th + length;
43
44 /*
45 * Ignore processing if TCP packet has only TIMESTAMP option.
46 */
47 if (likely(data_offs == length + TCPOLEN_TIMESTAMP + 1 + 1)
48 && likely(ptr[0] == TCPOPT_NOP)
49 && likely(ptr[1] == TCPOPT_NOP)
50 && likely(ptr[2] == TCPOPT_TIMESTAMP)
51 && likely(ptr[3] == TCPOLEN_TIMESTAMP)) {
52 return true;
53 }
54
55 /*
56 * TCP options. Parse SACK option.
57 */
58 while (length < data_offs) {
59 u8 size;
60 u8 kind;
61
62 ptr = (u8 *)th + length;
63 kind = *ptr;
64
65 /*
66 * NOP, for padding
67 * Not in the switch because to fast escape and to not calculate size
68 */
69 if (kind == TCPOPT_NOP) {
70 length++;
71 continue;
72 }
73
74 if (kind == TCPOPT_SACK) {
75 u32 sack = 0;
76 u8 re = 1 + 1;
77
78 size = *(ptr + 1);
79 if ((size < (1 + 1 + TCPOLEN_SACK_PERBLOCK))
80 || ((size - (1 + 1)) % (TCPOLEN_SACK_PERBLOCK))
81 || (size > (data_offs - length))) {
82 return false;
83 }
84
85 re += 4;
86 while (re < size) {
87 u32 sack_re;
88 u8 *sptr = ptr + re;
89 sack_re = (sptr[0] << 24) | (sptr[1] << 16) | (sptr[2] << 8) | sptr[3];
90 if (sack_re > sack) {
91 sack = sack_re;
92 }
93 re += TCPOLEN_SACK_PERBLOCK;
94 }
95 if (sack > *ack) {
96 *ack = sack;
97 }
98 length += size;
99 continue;
100 }
101 if (kind == TCPOPT_EOL) {
102 return true;
103 }
104 size = *(ptr + 1);
105 if (size < 2) {
106 return false;
107 }
108 length += size;
109 }
110
111 return true;
112}
113
114/*
115 * sfe_ipv4_recv_tcp()
116 * Handle TCP packet receives and forwarding.
117 */
118int sfe_ipv4_recv_tcp(struct sfe_ipv4 *si, struct sk_buff *skb, struct net_device *dev,
Ken Zhu88c58152021-12-09 15:12:06 -0800119 unsigned int len, struct iphdr *iph, unsigned int ihl, bool sync_on_find, struct sfe_l2_info *l2_info)
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530120{
121 struct tcphdr *tcph;
122 __be32 src_ip;
123 __be32 dest_ip;
124 __be16 src_port;
125 __be16 dest_port;
126 struct sfe_ipv4_connection_match *cm;
127 struct sfe_ipv4_connection_match *counter_cm;
128 u8 ttl;
129 u32 flags;
130 struct net_device *xmit_dev;
131 bool ret;
Ratheesh Kannotha3cf0e02021-12-09 09:44:10 +0530132 bool hw_csum;
Ratheesh Kannoth71fc51e2022-01-05 10:02:47 +0530133 bool bridge_flow;
Ken Zhu7e38d1a2021-11-30 17:31:46 -0800134 bool fast_xmit;
135 netdev_features_t features;
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530136
137 /*
Wayne Tanbb7f1782021-12-13 11:16:04 -0800138 * Is our packet too short to contain a valid TCP header?
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530139 */
140 if (unlikely(!pskb_may_pull(skb, (sizeof(struct tcphdr) + ihl)))) {
141 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_HEADER_INCOMPLETE);
142 DEBUG_TRACE("packet too short for TCP header\n");
143 return 0;
144 }
145
146 /*
147 * Read the IP address and port information. Read the IP header data first
148 * because we've almost certainly got that in the cache. We may not yet have
149 * the TCP header cached though so allow more time for any prefetching.
150 */
151 src_ip = iph->saddr;
152 dest_ip = iph->daddr;
153
154 tcph = (struct tcphdr *)(skb->data + ihl);
155 src_port = tcph->source;
156 dest_port = tcph->dest;
157 flags = tcp_flag_word(tcph);
158
159 rcu_read_lock();
160
161 /*
162 * Look for a connection match.
163 */
164#ifdef CONFIG_NF_FLOW_COOKIE
165 cm = si->sfe_flow_cookie_table[skb->flow_cookie & SFE_FLOW_COOKIE_MASK].match;
166 if (unlikely(!cm)) {
167 cm = sfe_ipv4_find_connection_match_rcu(si, dev, IPPROTO_TCP, src_ip, src_port, dest_ip, dest_port);
168 }
169#else
170 cm = sfe_ipv4_find_connection_match_rcu(si, dev, IPPROTO_TCP, src_ip, src_port, dest_ip, dest_port);
171#endif
172 if (unlikely(!cm)) {
173 /*
174 * We didn't get a connection but as TCP is connection-oriented that
175 * may be because this is a non-fast connection (not running established).
176 * For diagnostic purposes we differentiate this here.
177 */
178 if (likely((flags & (TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_FIN | TCP_FLAG_ACK)) == TCP_FLAG_ACK)) {
179
180 rcu_read_unlock();
181 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_NO_CONNECTION_FAST_FLAGS);
182 DEBUG_TRACE("no connection found - fast flags\n");
183 return 0;
184 }
185
186 rcu_read_unlock();
187 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_NO_CONNECTION_SLOW_FLAGS);
188 DEBUG_TRACE("no connection found - slow flags: 0x%x\n",
189 flags & (TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_FIN | TCP_FLAG_ACK));
190 return 0;
191 }
192
193 /*
Ratheesh Kannoth5dee3772022-01-18 11:27:14 +0530194 * Source interface validate.
195 */
196 if (unlikely((cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_SRC_INTERFACE_CHECK) && (cm->match_dev != dev))) {
197 struct sfe_ipv4_connection *c = cm->connection;
198 spin_lock_bh(&si->lock);
199 ret = sfe_ipv4_remove_connection(si, c);
200 spin_unlock_bh(&si->lock);
201
202 if (ret) {
203 sfe_ipv4_flush_connection(si, c, SFE_SYNC_REASON_FLUSH);
204 }
205 rcu_read_unlock();
206 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_INVALID_SRC_IFACE);
207 DEBUG_TRACE("flush on wrong source interface check failure\n");
208 return 0;
209 }
210
211 /*
212 * If our packet has beern marked as "flush on find" we can't actually
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530213 * forward it in the fast path, but now that we've found an associated
Ken Zhu88c58152021-12-09 15:12:06 -0800214 * connection we need sync its status before throw it slow path.
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530215 */
Ken Zhu88c58152021-12-09 15:12:06 -0800216 if (unlikely(sync_on_find)) {
217 sfe_ipv4_sync_status(si, cm->connection, SFE_SYNC_REASON_STATS);
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530218 rcu_read_unlock();
219
220 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_IP_OPTIONS_OR_INITIAL_FRAGMENT);
Ken Zhu88c58152021-12-09 15:12:06 -0800221 DEBUG_TRACE("Sync on find\n");
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530222 return 0;
223 }
224
225#ifdef CONFIG_XFRM
226 /*
227 * We can't accelerate the flow on this direction, just let it go
228 * through the slow path.
229 */
230 if (unlikely(!cm->flow_accel)) {
231 rcu_read_unlock();
232 this_cpu_inc(si->stats_pcpu->packets_not_forwarded64);
233 return 0;
234 }
235#endif
Ratheesh Kannoth71fc51e2022-01-05 10:02:47 +0530236
Wayne Tanbb7f1782021-12-13 11:16:04 -0800237 /*
238 * Do we expect an ingress VLAN tag for this flow?
239 */
240 if (unlikely(!sfe_vlan_validate_ingress_tag(skb, cm->ingress_vlan_hdr_cnt, cm->ingress_vlan_hdr, l2_info))) {
241 rcu_read_unlock();
242 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_INGRESS_VLAN_TAG_MISMATCH);
243 DEBUG_TRACE("VLAN tag mismatch. skb=%px\n", skb);
244 return 0;
245 }
246
Ratheesh Kannoth71fc51e2022-01-05 10:02:47 +0530247 bridge_flow = !!(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_BRIDGE_FLOW);
248
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530249 /*
250 * Does our TTL allow forwarding?
251 */
Ratheesh Kannoth71fc51e2022-01-05 10:02:47 +0530252 if (likely(!bridge_flow)) {
253 ttl = iph->ttl;
254 if (unlikely(ttl < 2)) {
Ken Zhu88c58152021-12-09 15:12:06 -0800255 sfe_ipv4_sync_status(si, cm->connection, SFE_SYNC_REASON_STATS);
Ratheesh Kannoth71fc51e2022-01-05 10:02:47 +0530256 rcu_read_unlock();
Ken Zhu88c58152021-12-09 15:12:06 -0800257
Ratheesh Kannoth71fc51e2022-01-05 10:02:47 +0530258 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_SMALL_TTL);
Ken Zhu88c58152021-12-09 15:12:06 -0800259 DEBUG_TRACE("TTL too low\n");
Ratheesh Kannoth71fc51e2022-01-05 10:02:47 +0530260 return 0;
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530261 }
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530262 }
263
264 /*
265 * If our packet is larger than the MTU of the transmit interface then
266 * we can't forward it easily.
267 */
268 if (unlikely((len > cm->xmit_dev_mtu) && !skb_is_gso(skb))) {
Ken Zhu88c58152021-12-09 15:12:06 -0800269 sfe_ipv4_sync_status(si, cm->connection, SFE_SYNC_REASON_STATS);
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530270 rcu_read_unlock();
Ken Zhu88c58152021-12-09 15:12:06 -0800271
Wayne Tanbb7f1782021-12-13 11:16:04 -0800272 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_IP_OPTIONS_OR_INITIAL_FRAGMENT);
Ken Zhu88c58152021-12-09 15:12:06 -0800273 DEBUG_TRACE("Larger than MTU\n");
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530274 return 0;
275 }
276
277 /*
278 * Look at our TCP flags. Anything missing an ACK or that has RST, SYN or FIN
279 * set is not a fast path packet.
280 */
281 if (unlikely((flags & (TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_FIN | TCP_FLAG_ACK)) != TCP_FLAG_ACK)) {
282 struct sfe_ipv4_connection *c = cm->connection;
283 spin_lock_bh(&si->lock);
284 ret = sfe_ipv4_remove_connection(si, c);
285 spin_unlock_bh(&si->lock);
286
287 DEBUG_TRACE("TCP flags: 0x%x are not fast\n",
288 flags & (TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_FIN | TCP_FLAG_ACK));
289 if (ret) {
290 sfe_ipv4_flush_connection(si, c, SFE_SYNC_REASON_FLUSH);
291 }
292 rcu_read_unlock();
293 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_FLAGS);
294 return 0;
295 }
296
297 counter_cm = cm->counter_match;
298
299 /*
300 * Are we doing sequence number checking?
301 */
302 if (likely(!(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_NO_SEQ_CHECK))) {
303 u32 seq;
304 u32 ack;
305 u32 sack;
306 u32 data_offs;
307 u32 end;
308 u32 left_edge;
309 u32 scaled_win;
310 u32 max_end;
311
312 /*
313 * Is our sequence fully past the right hand edge of the window?
314 */
315 seq = ntohl(tcph->seq);
316 if (unlikely((s32)(seq - (cm->protocol_state.tcp.max_end + 1)) > 0)) {
317 struct sfe_ipv4_connection *c = cm->connection;
318 spin_lock_bh(&si->lock);
319 ret = sfe_ipv4_remove_connection(si, c);
320 spin_unlock_bh(&si->lock);
321
322 DEBUG_TRACE("seq: %u exceeds right edge: %u\n",
323 seq, cm->protocol_state.tcp.max_end + 1);
324 if (ret) {
325 sfe_ipv4_flush_connection(si, c, SFE_SYNC_REASON_FLUSH);
326 }
327 rcu_read_unlock();
328 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_SEQ_EXCEEDS_RIGHT_EDGE);
329 return 0;
330 }
331
332 /*
333 * Check that our TCP data offset isn't too short.
334 */
335 data_offs = tcph->doff << 2;
336 if (unlikely(data_offs < sizeof(struct tcphdr))) {
337 struct sfe_ipv4_connection *c = cm->connection;
338 spin_lock_bh(&si->lock);
339 ret = sfe_ipv4_remove_connection(si, c);
340 spin_unlock_bh(&si->lock);
341
342 DEBUG_TRACE("TCP data offset: %u, too small\n", data_offs);
343 if (ret) {
344 sfe_ipv4_flush_connection(si, c, SFE_SYNC_REASON_FLUSH);
345 }
346 rcu_read_unlock();
347 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_SMALL_DATA_OFFS);
348 return 0;
349 }
350
351 /*
352 * Update ACK according to any SACK option.
353 */
354 ack = ntohl(tcph->ack_seq);
355 sack = ack;
356 if (unlikely(!sfe_ipv4_process_tcp_option_sack(tcph, data_offs, &sack))) {
357 struct sfe_ipv4_connection *c = cm->connection;
358 spin_lock_bh(&si->lock);
359 ret = sfe_ipv4_remove_connection(si, c);
360 spin_unlock_bh(&si->lock);
361
362 DEBUG_TRACE("TCP option SACK size is wrong\n");
363 if (ret) {
364 sfe_ipv4_flush_connection(si, c, SFE_SYNC_REASON_FLUSH);
365 }
366 rcu_read_unlock();
367 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_BAD_SACK);
368 return 0;
369 }
370
371 /*
372 * Check that our TCP data offset isn't past the end of the packet.
373 */
374 data_offs += sizeof(struct iphdr);
375 if (unlikely(len < data_offs)) {
376 struct sfe_ipv4_connection *c = cm->connection;
377 spin_lock_bh(&si->lock);
378 ret = sfe_ipv4_remove_connection(si, c);
379 spin_unlock_bh(&si->lock);
380
381 DEBUG_TRACE("TCP data offset: %u, past end of packet: %u\n",
382 data_offs, len);
383 if (ret) {
384 sfe_ipv4_flush_connection(si, c, SFE_SYNC_REASON_FLUSH);
385 }
386 rcu_read_unlock();
387 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_BIG_DATA_OFFS);
388 return 0;
389 }
390
391 end = seq + len - data_offs;
392
393 /*
394 * Is our sequence fully before the left hand edge of the window?
395 */
396 if (unlikely((s32)(end - (cm->protocol_state.tcp.end
397 - counter_cm->protocol_state.tcp.max_win - 1)) < 0)) {
398 struct sfe_ipv4_connection *c = cm->connection;
399 spin_lock_bh(&si->lock);
400 ret = sfe_ipv4_remove_connection(si, c);
401 spin_unlock_bh(&si->lock);
402
403 DEBUG_TRACE("seq: %u before left edge: %u\n",
404 end, cm->protocol_state.tcp.end - counter_cm->protocol_state.tcp.max_win - 1);
405 if (ret) {
406 sfe_ipv4_flush_connection(si, c, SFE_SYNC_REASON_FLUSH);
407 }
408 rcu_read_unlock();
409 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_SEQ_BEFORE_LEFT_EDGE);
410 return 0;
411 }
412
413 /*
414 * Are we acking data that is to the right of what has been sent?
415 */
416 if (unlikely((s32)(sack - (counter_cm->protocol_state.tcp.end + 1)) > 0)) {
417 struct sfe_ipv4_connection *c = cm->connection;
418 spin_lock_bh(&si->lock);
419 ret = sfe_ipv4_remove_connection(si, c);
420 spin_unlock_bh(&si->lock);
421
422 DEBUG_TRACE("ack: %u exceeds right edge: %u\n",
423 sack, counter_cm->protocol_state.tcp.end + 1);
424 if (ret) {
425 sfe_ipv4_flush_connection(si, c, SFE_SYNC_REASON_FLUSH);
426 }
427 rcu_read_unlock();
428 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_ACK_EXCEEDS_RIGHT_EDGE);
429 return 0;
430 }
431
432 /*
433 * Is our ack too far before the left hand edge of the window?
434 */
435 left_edge = counter_cm->protocol_state.tcp.end
436 - cm->protocol_state.tcp.max_win
437 - SFE_IPV4_TCP_MAX_ACK_WINDOW
438 - 1;
439 if (unlikely((s32)(sack - left_edge) < 0)) {
440 struct sfe_ipv4_connection *c = cm->connection;
441 spin_lock_bh(&si->lock);
442 ret = sfe_ipv4_remove_connection(si, c);
443 spin_unlock_bh(&si->lock);
444
445 DEBUG_TRACE("ack: %u before left edge: %u\n", sack, left_edge);
446 if (ret) {
447 sfe_ipv4_flush_connection(si, c, SFE_SYNC_REASON_FLUSH);
448 }
449 rcu_read_unlock();
450 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_TCP_ACK_BEFORE_LEFT_EDGE);
451 return 0;
452 }
453
454 /*
455 * Have we just seen the largest window size yet for this connection? If yes
456 * then we need to record the new value.
457 */
458 scaled_win = ntohs(tcph->window) << cm->protocol_state.tcp.win_scale;
459 scaled_win += (sack - ack);
460 if (unlikely(cm->protocol_state.tcp.max_win < scaled_win)) {
461 cm->protocol_state.tcp.max_win = scaled_win;
462 }
463
464 /*
465 * If our sequence and/or ack numbers have advanced then record the new state.
466 */
467 if (likely((s32)(end - cm->protocol_state.tcp.end) >= 0)) {
468 cm->protocol_state.tcp.end = end;
469 }
470
471 max_end = sack + scaled_win;
472 if (likely((s32)(max_end - counter_cm->protocol_state.tcp.max_end) >= 0)) {
473 counter_cm->protocol_state.tcp.max_end = max_end;
474 }
475 }
476
477 /*
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530478 * Check if skb was cloned. If it was, unshare it. Because
479 * the data area is going to be written in this path and we don't want to
480 * change the cloned skb's data section.
481 */
482 if (unlikely(skb_cloned(skb))) {
483 DEBUG_TRACE("%px: skb is a cloned skb\n", skb);
484 skb = skb_unshare(skb, GFP_ATOMIC);
485 if (!skb) {
486 DEBUG_WARN("Failed to unshare the cloned skb\n");
487 rcu_read_unlock();
488 return 0;
489 }
490
491 /*
492 * Update the iph and tcph pointers with the unshared skb's data area.
493 */
494 iph = (struct iphdr *)skb->data;
495 tcph = (struct tcphdr *)(skb->data + ihl);
496 }
497
498 /*
Guduri Prathyusha5f27e232022-01-06 14:39:04 +0530499 * For PPPoE packets, match server MAC and session id
500 */
501 if (unlikely(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_PPPOE_DECAP)) {
502 struct pppoe_hdr *ph;
503 struct ethhdr *eth;
504
505 if (unlikely(!sfe_l2_parse_flag_check(l2_info, SFE_L2_PARSE_FLAGS_PPPOE_INGRESS))) {
506 rcu_read_unlock();
507 DEBUG_TRACE("%px: PPPoE header not present in packet for PPPoE rule\n", skb);
508 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_INCORRECT_PPPOE_PARSING);
509 return 0;
510 }
511
512 ph = (struct pppoe_hdr *)(skb->head + sfe_l2_pppoe_hdr_offset_get(l2_info));
513 eth = (struct ethhdr *)(skb->head + sfe_l2_hdr_offset_get(l2_info));
514 if (unlikely(cm->pppoe_session_id != ntohs(ph->sid)) || unlikely(!(ether_addr_equal((u8*)cm->pppoe_remote_mac, (u8 *)eth->h_source)))) {
515 DEBUG_TRACE("%px: PPPoE sessions with session IDs %d and %d or server MACs %pM and %pM did not match\n",
516 skb, cm->pppoe_session_id, htons(ph->sid), cm->pppoe_remote_mac, eth->h_source);
517 rcu_read_unlock();
518 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_INVALID_PPPOE_SESSION);
519 return 0;
520 }
521 skb->protocol = htons(l2_info->protocol);
522 this_cpu_inc(si->stats_pcpu->pppoe_decap_packets_forwarded64);
523
524 } else if (unlikely(sfe_l2_parse_flag_check(l2_info, SFE_L2_PARSE_FLAGS_PPPOE_INGRESS))) {
525
526 /*
Guduri Prathyusha034d6352022-01-12 16:49:04 +0530527 * If packet contains PPPoE header but CME doesn't contain PPPoE flag yet we are exceptioning the packet to linux
Guduri Prathyusha5f27e232022-01-06 14:39:04 +0530528 */
Guduri Prathyusha034d6352022-01-12 16:49:04 +0530529 if (unlikely(!(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_BRIDGE_FLOW))) {
530 rcu_read_unlock();
531 DEBUG_TRACE("%px: CME doesn't contain PPPoE flag but packet has PPPoE header\n", skb);
532 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_PPPOE_NOT_SET_IN_CME);
533 return 0;
534 }
535
536 /*
537 * For bridged flows when packet contains PPPoE header, restore the header back and forward to xmit interface
538 */
539 __skb_push(skb, (sizeof(struct pppoe_hdr) + sizeof(struct sfe_ppp_hdr)));
540 l2_info->l2_hdr_size -= (sizeof(struct pppoe_hdr) + sizeof(struct sfe_ppp_hdr));
541 this_cpu_inc(si->stats_pcpu->pppoe_bridge_packets_forwarded64);
Guduri Prathyusha5f27e232022-01-06 14:39:04 +0530542 }
543
544 /*
Wayne Tanbb7f1782021-12-13 11:16:04 -0800545 * Check if skb has enough headroom to write L2 headers
546 */
547 if (unlikely(skb_headroom(skb) < cm->l2_hdr_size)) {
548 rcu_read_unlock();
549 DEBUG_WARN("%px: Not enough headroom: %u\n", skb, skb_headroom(skb));
550 sfe_ipv4_exception_stats_inc(si, SFE_IPV4_EXCEPTION_EVENT_NO_HEADROOM);
551 return 0;
552 }
553
554 /*
Guduri Prathyusha5f27e232022-01-06 14:39:04 +0530555 * From this point on we're good to modify the packet.
556 */
557
558 /*
Guduri Prathyusha79a5fee2021-11-11 17:59:10 +0530559 * For PPPoE flows, add PPPoE header before L2 header is added.
560 */
Guduri Prathyusha034d6352022-01-12 16:49:04 +0530561 if (unlikely(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_PPPOE_ENCAP)) {
Wayne Tanbb7f1782021-12-13 11:16:04 -0800562 sfe_pppoe_add_header(skb, cm->pppoe_session_id, PPP_IP);
Guduri Prathyusha79a5fee2021-11-11 17:59:10 +0530563 this_cpu_inc(si->stats_pcpu->pppoe_encap_packets_forwarded64);
564 }
565
566 /*
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530567 * Update DSCP
568 */
569 if (unlikely(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_DSCP_REMARK)) {
570 iph->tos = (iph->tos & SFE_IPV4_DSCP_MASK) | cm->dscp;
571 }
572
573 /*
574 * Decrement our TTL.
575 */
Ratheesh Kannoth71fc51e2022-01-05 10:02:47 +0530576 if (likely(!bridge_flow)) {
577 iph->ttl = ttl - 1;
578 }
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530579
580 /*
Ratheesh Kannotha3cf0e02021-12-09 09:44:10 +0530581 * Enable HW csum if rx checksum is verified and xmit interface is CSUM offload capable.
582 * Note: If L4 csum at Rx was found to be incorrect, we (router) should use incremental L4 checksum here
583 * so that HW does not re-calculate/replace the L4 csum
584 */
585 hw_csum = !!(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_CSUM_OFFLOAD) && (skb->ip_summed == CHECKSUM_UNNECESSARY);
586
587 /*
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530588 * Do we have to perform translations of the source address/port?
589 */
590 if (unlikely(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_XLATE_SRC)) {
591 u16 tcp_csum;
592 u32 sum;
593
594 iph->saddr = cm->xlate_src_ip;
595 tcph->source = cm->xlate_src_port;
596
Ratheesh Kannotha3cf0e02021-12-09 09:44:10 +0530597 if (unlikely(!hw_csum)) {
598 tcp_csum = tcph->check;
599 if (unlikely(skb->ip_summed == CHECKSUM_PARTIAL)) {
600 sum = tcp_csum + cm->xlate_src_partial_csum_adjustment;
601 } else {
602 sum = tcp_csum + cm->xlate_src_csum_adjustment;
603 }
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530604
Ratheesh Kannotha3cf0e02021-12-09 09:44:10 +0530605 sum = (sum & 0xffff) + (sum >> 16);
606 tcph->check = (u16)sum;
607 }
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530608 }
609
610 /*
611 * Do we have to perform translations of the destination address/port?
612 */
613 if (unlikely(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_XLATE_DEST)) {
614 u16 tcp_csum;
615 u32 sum;
616
617 iph->daddr = cm->xlate_dest_ip;
618 tcph->dest = cm->xlate_dest_port;
619
Ratheesh Kannotha3cf0e02021-12-09 09:44:10 +0530620 if (unlikely(!hw_csum)) {
621 tcp_csum = tcph->check;
622 if (unlikely(skb->ip_summed == CHECKSUM_PARTIAL)) {
623 sum = tcp_csum + cm->xlate_dest_partial_csum_adjustment;
624 } else {
625 sum = tcp_csum + cm->xlate_dest_csum_adjustment;
626 }
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530627
Ratheesh Kannotha3cf0e02021-12-09 09:44:10 +0530628 sum = (sum & 0xffff) + (sum >> 16);
629 tcph->check = (u16)sum;
630 }
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530631 }
632
633 /*
Ratheesh Kannotha3cf0e02021-12-09 09:44:10 +0530634 * If HW checksum offload is not possible, full L3 checksum and incremental L4 checksum
635 * are used to update the packet. Setting ip_summed to CHECKSUM_UNNECESSARY ensures checksum is
636 * not recalculated further in packet path.
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530637 */
Ratheesh Kannotha3cf0e02021-12-09 09:44:10 +0530638 if (likely(hw_csum)) {
639 skb->ip_summed = CHECKSUM_PARTIAL;
640 } else {
641 iph->check = sfe_ipv4_gen_ip_csum(iph);
642 skb->ip_summed = CHECKSUM_UNNECESSARY;
643 }
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530644
645 /*
646 * Update traffic stats.
647 */
648 atomic_inc(&cm->rx_packet_count);
649 atomic_add(len, &cm->rx_byte_count);
650
651 xmit_dev = cm->xmit_dev;
652 skb->dev = xmit_dev;
653
654 /*
Wayne Tanbb7f1782021-12-13 11:16:04 -0800655 * Check to see if we need to add VLAN tags
656 */
657 if (unlikely(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_INSERT_EGRESS_VLAN_TAG)) {
658 sfe_vlan_add_tag(skb, cm->egress_vlan_hdr_cnt, cm->egress_vlan_hdr);
659 }
660
661 /*
662 * Check to see if we need to write an Ethernet header.
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530663 */
664 if (likely(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_WRITE_L2_HDR)) {
665 if (unlikely(!(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_WRITE_FAST_ETH_HDR))) {
Guduri Prathyusha5f27e232022-01-06 14:39:04 +0530666 dev_hard_header(skb, xmit_dev, ntohs(skb->protocol),
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530667 cm->xmit_dest_mac, cm->xmit_src_mac, len);
668 } else {
669 /*
670 * For the simple case we write this really fast.
671 */
672 struct ethhdr *eth = (struct ethhdr *)__skb_push(skb, ETH_HLEN);
673
Guduri Prathyusha5f27e232022-01-06 14:39:04 +0530674 eth->h_proto = skb->protocol;
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530675
676 ether_addr_copy((u8 *)eth->h_dest, (u8 *)cm->xmit_dest_mac);
677 ether_addr_copy((u8 *)eth->h_source, (u8 *)cm->xmit_src_mac);
678 }
679 }
680
681 /*
682 * Update priority of skb.
683 */
684 if (unlikely(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_PRIORITY_REMARK)) {
685 skb->priority = cm->priority;
686 }
687
688 /*
689 * Mark outgoing packet
690 */
Ken Zhu37040ea2021-09-09 21:11:15 -0700691 if (unlikely(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_MARK)) {
Ken Zhu306a68f2022-01-20 09:00:43 -0800692 skb->mark = cm->mark;
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530693 }
694
Ken Zhu7e38d1a2021-11-30 17:31:46 -0800695 /*
696 * For the first packets, check if it could got fast xmit.
697 */
698 if (unlikely(!(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_FAST_XMIT_FLOW_CHECKED)
699 && (cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_FAST_XMIT_DEV_ADMISSION))){
700 cm->features = netif_skb_features(skb);
701 if (likely(sfe_fast_xmit_check(skb, cm->features))) {
702 cm->flags |= SFE_IPV4_CONNECTION_MATCH_FLAG_FAST_XMIT;
703 }
704 cm->flags |= SFE_IPV4_CONNECTION_MATCH_FLAG_FAST_XMIT_FLOW_CHECKED;
705 }
706 features = cm->features;
707 fast_xmit = !!(cm->flags & SFE_IPV4_CONNECTION_MATCH_FLAG_FAST_XMIT);
708
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530709 rcu_read_unlock();
710
711 this_cpu_inc(si->stats_pcpu->packets_forwarded64);
712
713 /*
714 * We're going to check for GSO flags when we transmit the packet so
715 * start fetching the necessary cache line now.
716 */
717 prefetch(skb_shinfo(skb));
718
719 /*
Ken Zhu7e38d1a2021-11-30 17:31:46 -0800720 * We do per packet condition check before we could fast xmit the
721 * packet.
722 */
723 if (likely(fast_xmit && dev_fast_xmit(skb, xmit_dev, features))) {
724 this_cpu_inc(si->stats_pcpu->packets_fast_xmited64);
725 return 1;
726 }
727
728 /*
Ratheesh Kannoth6307bec2021-11-25 08:26:39 +0530729 * Mark that this packet has been fast forwarded.
730 */
731 skb->fast_forwarded = 1;
732
733 /*
734 * Send the packet on its way.
735 */
736 dev_queue_xmit(skb);
737
738 return 1;
739}