X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fnat%2Fout2in.c;h=c7eece8897c3158317ba020ca5282fcf018b6e14;hb=70a26ac05f2ab9d4cc0669599b09f654de580f36;hp=c0f5a3c835ae09038ab8bbf665d31560c0679cfe;hpb=ebdf190a9c4a514329de7e5e9b9178c3af055122;p=vpp.git diff --git a/src/plugins/nat/out2in.c b/src/plugins/nat/out2in.c index c0f5a3c835a..c7eece8897c 100755 --- a/src/plugins/nat/out2in.c +++ b/src/plugins/nat/out2in.c @@ -342,6 +342,7 @@ create_bypass_for_fwd(snat_main_t * sm, ip4_header_t * ip, u32 rx_fib_index, snat_user_t *u; snat_session_t *s = 0; snat_main_per_thread_data_t *tsm = &sm->per_thread_data[thread_index]; + f64 now = vlib_time_now (sm->vlib_main); if (ip->protocol == IP_PROTOCOL_ICMP) { @@ -410,12 +411,16 @@ create_bypass_for_fwd(snat_main_t * sm, ip4_header_t * ip, u32 rx_fib_index, if (ip->protocol == IP_PROTOCOL_TCP) { tcp_header_t *tcp = ip4_next_header(ip); - nat44_set_tcp_session_state (sm, s, tcp, thread_index); + if (nat44_set_tcp_session_state_o2i (sm, s, tcp, thread_index)) + return; } /* Per-user LRU list maintenance */ clib_dlist_remove (tsm->list_pool, s->per_user_index); clib_dlist_addtail (tsm->list_pool, s->per_user_list_head_index, s->per_user_index); + /* Accounting */ + s->last_heard = now; + s->total_pkts++; } /** @@ -1043,6 +1048,8 @@ snat_out2in_lb (snat_main_t *sm, src_address); ip->checksum = ip_csum_fold (sum); + vnet_buffer(b)->sw_if_index[VLIB_TX] = s->in2out.fib_index; + if (PREDICT_TRUE(proto == SNAT_PROTOCOL_TCP)) { old_port = tcp->dst_port; @@ -1063,7 +1070,8 @@ snat_out2in_lb (snat_main_t *sm, ip->src_address.as_u32 = s->ext_host_nat_addr.as_u32; } tcp->checksum = ip_csum_fold(sum); - nat44_set_tcp_session_state (sm, s, tcp, thread_index); + if (nat44_set_tcp_session_state_o2i (sm, s, tcp, thread_index)) + return s; } else { @@ -1076,8 +1084,6 @@ snat_out2in_lb (snat_main_t *sm, udp->checksum = 0; } - vnet_buffer(b)->sw_if_index[VLIB_TX] = s->in2out.fib_index; - /* Accounting */ s->last_heard = now; s->total_pkts++; @@ -1306,7 +1312,6 @@ snat_out2in_node_fn (vlib_main_t * vm, ip4_header_t /* cheat */, length /* changed member */); tcp0->checksum = ip_csum_fold(sum0); - nat44_set_tcp_session_state (sm, s0, tcp0, thread_index); } else { @@ -1485,7 +1490,6 @@ snat_out2in_node_fn (vlib_main_t * vm, ip4_header_t /* cheat */, length /* changed member */); tcp1->checksum = ip_csum_fold(sum1); - nat44_set_tcp_session_state (sm, s1, tcp1, thread_index); } else { @@ -1700,7 +1704,6 @@ snat_out2in_node_fn (vlib_main_t * vm, ip4_header_t /* cheat */, length /* changed member */); tcp0->checksum = ip_csum_fold(sum0); - nat44_set_tcp_session_state (sm, s0, tcp0, thread_index); } else { @@ -1969,7 +1972,6 @@ nat44_out2in_reass_node_fn (vlib_main_t * vm, ip4_header_t /* cheat */, length /* changed member */); tcp0->checksum = ip_csum_fold(sum0); - nat44_set_tcp_session_state (sm, s0, tcp0, thread_index); } else {