Modify return value of snat_out2in_lb(VPP-985) 33/8433/1
authordongjuan <dong.juan1@zte.com.cn>
Fri, 15 Sep 2017 02:21:07 +0000 (10:21 +0800)
committerdongjuan <dong.juan1@zte.com.cn>
Fri, 15 Sep 2017 02:21:07 +0000 (10:21 +0800)
in order to trace session_index

Change-Id: I4433155fbe21635f8a997523e2c7900c6a7569af
Signed-off-by: dongjuan <dong.juan1@zte.com.cn>
src/plugins/nat/in2out.c [changed mode: 0644->0755]
src/plugins/nat/out2in.c [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index d0a1323..9196ccb
@@ -1370,7 +1370,7 @@ create_ses:
     vnet_buffer(b)->sw_if_index[VLIB_TX] = sm->outside_fib_index;
 }
 
-static void
+static snat_session_t *
 snat_in2out_lb (snat_main_t *sm,
                 vlib_buffer_t * b,
                 ip4_header_t * ip,
@@ -1417,7 +1417,7 @@ snat_in2out_lb (snat_main_t *sm,
       l_key.protocol = proto;
       l_key.fib_index = rx_fib_index;
       if (snat_static_mapping_match(sm, l_key, &e_key, 0, 0))
-        return;
+        return 0;
 
       u_key.addr = ip->src_address;
       u_key.fib_index = rx_fib_index;
@@ -1515,6 +1515,7 @@ snat_in2out_lb (snat_main_t *sm,
   s->last_heard = now;
   s->total_pkts++;
   s->total_bytes += vlib_buffer_length_in_chain (vm, b);
+  return s;
 }
 
 static inline uword
@@ -1677,7 +1678,7 @@ snat_in2out_node_fn_inline (vlib_main_t * vm,
                 {
                   if (is_slow_path)
                     {
-                      snat_in2out_lb(sm, b0, ip0, rx_fib_index0, thread_index,
+                      s0 = snat_in2out_lb(sm, b0, ip0, rx_fib_index0, thread_index,
                                      now, vm);
                       goto trace00;
                     }
@@ -1848,7 +1849,7 @@ snat_in2out_node_fn_inline (vlib_main_t * vm,
                 {
                   if (is_slow_path)
                     {
-                      snat_in2out_lb(sm, b1, ip1, rx_fib_index1, thread_index,
+                      s1 = snat_in2out_lb(sm, b1, ip1, rx_fib_index1, thread_index,
                                      now, vm);
                       goto trace01;
                     }
@@ -2056,7 +2057,7 @@ snat_in2out_node_fn_inline (vlib_main_t * vm,
                 {
                   if (is_slow_path)
                     {
-                      snat_in2out_lb(sm, b0, ip0, rx_fib_index0, thread_index,
+                      s0 = snat_in2out_lb(sm, b0, ip0, rx_fib_index0, thread_index,
                                      now, vm);
                       goto trace0;
                     }
old mode 100644 (file)
new mode 100755 (executable)
index 55a750e..52adc8a
@@ -750,7 +750,7 @@ snat_out2in_unknown_proto (snat_main_t *sm,
                       s->per_user_index);
 }
 
-static void
+static snat_session_t *
 snat_out2in_lb (snat_main_t *sm,
                 vlib_buffer_t * b,
                 ip4_header_t * ip,
@@ -797,7 +797,7 @@ snat_out2in_lb (snat_main_t *sm,
       e_key.protocol = proto;
       e_key.fib_index = rx_fib_index;
       if (snat_static_mapping_match(sm, e_key, &l_key, 1, 0))
-        return;
+        return 0;
 
       u_key.addr = l_key.addr;
       u_key.fib_index = l_key.fib_index;
@@ -894,6 +894,7 @@ snat_out2in_lb (snat_main_t *sm,
   s->last_heard = now;
   s->total_pkts++;
   s->total_bytes += vlib_buffer_length_in_chain (vm, b);
+  return s;
 }
 
 static uword
@@ -1044,7 +1045,7 @@ snat_out2in_node_fn (vlib_main_t * vm,
             {
               if (PREDICT_FALSE (value0.value == ~0ULL))
                 {
-                  snat_out2in_lb(sm, b0, ip0, rx_fib_index0, thread_index, now,
+                  s0 = snat_out2in_lb(sm, b0, ip0, rx_fib_index0, thread_index, now,
                                  vm);
                   goto trace0;
                 }
@@ -1195,7 +1196,7 @@ snat_out2in_node_fn (vlib_main_t * vm,
             {
               if (PREDICT_FALSE (value1.value == ~0ULL))
                 {
-                  snat_out2in_lb(sm, b1, ip1, rx_fib_index1, thread_index, now,
+                  s1 = snat_out2in_lb(sm, b1, ip1, rx_fib_index1, thread_index, now,
                                  vm);
                   goto trace1;
                 }
@@ -1383,7 +1384,7 @@ snat_out2in_node_fn (vlib_main_t * vm,
             {
               if (PREDICT_FALSE (value0.value == ~0ULL))
                 {
-                  snat_out2in_lb(sm, b0, ip0, rx_fib_index0, thread_index, now,
+                  s0 = snat_out2in_lb(sm, b0, ip0, rx_fib_index0, thread_index, now,
                                  vm);
                   goto trace00;
                 }