aboutsummaryrefslogtreecommitdiffstats
path: root/docs/cpta/trending/ip6-2n-clx-x710.rst
blob: 92b519bfc220fcec17dded099d96b48a78e6893e (plain)
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

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o
2n-clx-x710
-----------

78b-ip6routing-base-scale-[avf,dpdk,af_xdp]
```````````````````````````````````````````

2t1c
::::

.. raw:: html

    <a name="78b-2t1c-base-dpdk"></a>
    <a name="78b-2t1c-scale-dpdk"></a>
    <a name="78b-2t1c-base-avf"></a>
    <a name="78b-2t1c-scale-avf"></a>
    <a name="78b-2t1c-base-af_xdp"></a>
    <a name="78b-2t1c-scale-af_xdp"></a>
    <center>
    Links to builds:
    <a href="https://packagecloud.io/app/fdio/master/search?dist=ubuntu%2Fbionic" target="_blank">vpp-ref</a>,
    <a href="https://jenkins.fd.io/view/csit/job/csit-vpp-perf-mrr-daily-master-2n-clx" target="_blank">csit-ref</a>
    <iframe width="1100" height="800" frameborder="0" scrolling="no" src="../_static/vpp/2n-clx-x710-78b-2t1c-ip6-base-scale-avf-dpdk.html"></iframe>
    <p><br></p>
    </center>

4t2c
::::

.. raw:: html

    <a name="78b-4t2c-base-dpdk"></a>
    <a name="78b-4t2c-scale-dpdk"></a>
    <a name="78b-4t2c-base-avf"></a>
    <a name="78b-4t2c-scale-avf"></a>
    <a name="78b-4t2c-base-af_xdp"></a>
    <a name="78b-4t2c-scale-af_xdp"></a>
    <center>
    Links to builds:
    <a href="https://packagecloud.io/app/fdio/master/search?dist=ubuntu%2Fbionic" target="_blank">vpp-ref</a>,
    <a href="https://jenkins.fd.io/view/csit/job/csit-vpp-perf-mrr-daily-master-2n-clx" target="_blank">csit-ref</a>
    <iframe width="1100" height="800" frameborder="0" scrolling="no" src="../_static/vpp/2n-clx-x710-78b-4t2c-ip6-base-scale-avf-dpdk.html"></iframe>
    <p><br></p>
    </center>

8t4c
::::

.. raw:: html

    <a name="78b-8t4c-base-dpdk"></a>
    <a name="78b-8t4c-scale-dpdk"></a>
    <a name="78b-8t4c-base-avf"></a>
    <a name="78b-8t4c-scale-avf"></a>
    <a name="78b-8t4c-base-af_xdp"></a>
    <a name="78b-8t4c-scale-af_xdp"></a>
    <center>
    Links to builds:
    <a href="https://packagecloud.io/app/fdio/master/search?dist=ubuntu%2Fbionic" target="_blank">vpp-ref</a>,
    <a href="https://jenkins.fd.io/view/csit/job/csit-vpp-perf-mrr-daily-master-2n-clx" target="_blank">csit-ref</a>
    <iframe width="1100" height="800" frameborder="0" scrolling="no" src="../_static/vpp/2n-clx-x710-78b-8t4c-ip6-base-scale-avf-dpdk.html"></iframe>
    <p><br></p>
    </center>
6_in2out_error_strings[] = { #define _(sym,string) string, foreach_nat66_in2out_error #undef _ }; typedef enum { NAT66_IN2OUT_NEXT_IP6_LOOKUP, NAT66_IN2OUT_NEXT_DROP, NAT66_IN2OUT_N_NEXT, } nat66_in2out_next_t; static inline u8 nat66_not_translate (u32 rx_fib_index, ip6_address_t ip6_addr) { nat66_main_t *nm = &nat66_main; u32 sw_if_index; snat_interface_t *i; fib_node_index_t fei = FIB_NODE_INDEX_INVALID; fib_prefix_t pfx = { .fp_proto = FIB_PROTOCOL_IP6, .fp_len = 128, .fp_addr = { .ip6 = ip6_addr, }, }; fei = fib_table_lookup (rx_fib_index, &pfx); if (FIB_NODE_INDEX_INVALID == fei) return 1; sw_if_index = fib_entry_get_resolving_interface (fei); if (sw_if_index == ~0) { fei = fib_table_lookup (nm->outside_fib_index, &pfx); if (FIB_NODE_INDEX_INVALID == fei) return 1; sw_if_index = fib_entry_get_resolving_interface (fei); } /* *INDENT-OFF* */ pool_foreach (i, nm->interfaces, ({ /* NAT packet aimed at outside interface */ if (nat_interface_is_outside (i) && sw_if_index == i->sw_if_index) return 0; })); /* *INDENT-ON* */ return 1; } VLIB_NODE_FN (nat66_in2out_node) (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * frame) { u32 n_left_from, *from, *to_next; nat66_in2out_next_t next_index; u32 pkts_processed = 0; u32 thread_index = vm->thread_index; nat66_main_t *nm = &nat66_main; from = vlib_frame_vector_args (frame); n_left_from = frame->n_vectors; next_index = node->cached_next_index; while (n_left_from > 0) { u32 n_left_to_next; vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); while (n_left_from > 0 && n_left_to_next > 0) { u32 bi0; vlib_buffer_t *b0; u32 next0 = NAT66_IN2OUT_NEXT_IP6_LOOKUP; ip6_header_t *ip60; u16 l4_offset0, frag_offset0; u8 l4_protocol0; nat66_static_mapping_t *sm0; u32 sw_if_index0, fib_index0; udp_header_t *udp0; tcp_header_t *tcp0; icmp46_header_t *icmp0; u16 *checksum0 = 0; ip_csum_t csum0; /* speculatively enqueue b0 to the current next frame */ bi0 = from[0]; to_next[0] = bi0; from += 1; to_next += 1; n_left_from -= 1; n_left_to_next -= 1; b0 = vlib_get_buffer (vm, bi0); ip60 = vlib_buffer_get_current (b0); if (PREDICT_FALSE (ip6_parse (ip60, b0->current_length, &l4_protocol0, &l4_offset0, &frag_offset0))) { next0 = NAT66_IN2OUT_NEXT_DROP; b0->error = node->errors[NAT66_IN2OUT_ERROR_UNKNOWN]; goto trace0; } sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX]; fib_index0 = fib_table_get_index_for_sw_if_index (FIB_PROTOCOL_IP6, sw_if_index0); if (nat66_not_translate (fib_index0, ip60->dst_address)) goto trace0; sm0 = nat66_static_mapping_get (&ip60->src_address, fib_index0, 1); if (PREDICT_FALSE (!sm0)) { goto trace0; } if (l4_protocol0 == IP_PROTOCOL_UDP) { udp0 = (udp_header_t *) u8_ptr_add (ip60, l4_offset0); checksum0 = &udp0->checksum; } else if (l4_protocol0 == IP_PROTOCOL_TCP) { tcp0 = (tcp_header_t *) u8_ptr_add (ip60, l4_offset0); checksum0 = &tcp0->checksum; } else if (l4_protocol0 == IP_PROTOCOL_ICMP6) { icmp0 = (icmp46_header_t *) u8_ptr_add (ip60, l4_offset0); checksum0 = &icmp0->checksum; } else goto skip_csum0; csum0 = ip_csum_sub_even (*checksum0, ip60->src_address.as_u64[0]); csum0 = ip_csum_sub_even (csum0, ip60->src_address.as_u64[1]); csum0 = ip_csum_add_even (csum0, sm0->e_addr.as_u64[0]); csum0 = ip_csum_add_even (csum0, sm0->e_addr.as_u64[1]); *checksum0 = ip_csum_fold (csum0); skip_csum0: ip60->src_address.as_u64[0] = sm0->e_addr.as_u64[0]; ip60->src_address.as_u64[1] = sm0->e_addr.as_u64[1]; vlib_increment_combined_counter (&nm->session_counters, thread_index, sm0 - nm->sm, 1, vlib_buffer_length_in_chain (vm, b0)); trace0: if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE) && (b0->flags & VLIB_BUFFER_IS_TRACED))) { nat66_in2out_trace_t *t = vlib_add_trace (vm, node, b0, sizeof (*t)); t->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX]; t->next_index = next0; } pkts_processed += next0 != NAT66_IN2OUT_NEXT_DROP; /* verify speculative enqueue, maybe switch current next frame */ vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, n_left_to_next, bi0, next0); } vlib_put_next_frame (vm, node, next_index, n_left_to_next); } vlib_node_increment_counter (vm, nm->in2out_node_index, NAT66_IN2OUT_ERROR_IN2OUT_PACKETS, pkts_processed); return frame->n_vectors; } /* *INDENT-OFF* */ VLIB_REGISTER_NODE (nat66_in2out_node) = { .name = "nat66-in2out", .vector_size = sizeof (u32), .format_trace = format_nat66_in2out_trace, .type = VLIB_NODE_TYPE_INTERNAL, .n_errors = ARRAY_LEN (nat66_in2out_error_strings), .error_strings = nat66_in2out_error_strings, .n_next_nodes = NAT66_IN2OUT_N_NEXT, /* edit / add dispositions here */ .next_nodes = { [NAT66_IN2OUT_NEXT_DROP] = "error-drop", [NAT66_IN2OUT_NEXT_IP6_LOOKUP] = "ip6-lookup", }, }; /* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */