[vpp-dev] vpp got stucked after bridge and loop interfaces is created and snat is configured #nat44

2021-08-19 Thread g . goodian
vpp version: 21.06
vpp main core will be stucked after bridge and loop interfaces and snat is 
configured, here is my topology.

/--\/--\/--\
  
|  ||  ||  |
 
|client  enp0s8  GE0/2/0   vpp  GE0/5/0  enp0s10  server   |
|  ||  ||  |   
\--/\--/\--/ 

  192.0.2.0/24192.168.3.0/24 and here is my 
configuration:
nat44 enable
nat44 forwarding enable
nat44 add int address GigabitEthernet5/0/0
set int nat44 in GigabitEthernet2/0/0 out GigabitEthernet5/0/0 output-feature
create tap id 0
set interface state tap0 up
set int l2 bridge GigabitEthernet2/0/0 1
set int l2 bridge tap0 1
create loopback interface
set int l2 bridge loop0 1 bvi
set int ip addr loop0 192.0.2.11/24
set int state loop0 up

vpp will be stucked after a few ping from client to server, here is backtrace 
info in gdb:
#0  0x7f980557f0d1 in internal_mallinfo (m=0x7f97bb18b040) at 
/usr/src/debug/vpp-0.1/src/vppinfra/dlmalloc.c:2099
#1  0x7f98055707d7 in mspace_mallinfo (msp=) at 
/usr/src/debug/vpp-0.1/src/vppinfra/dlmalloc.c:4803
#2  clib_mem_get_heap_usage (heap=, 
usage=usage@entry=0x7f97bb05df40) at 
/usr/src/debug/vpp-0.1/src/vppinfra/mem_dlmalloc.c:475
#3  0x55c1903304fa in do_stat_segment_updates (sm=0x55c1903c7ac0 
) at /usr/src/debug/vpp-0.1/src/vpp/stats/stat_segment.c:661
#4  stat_segment_collector_process (vm=0x7f98056b2680 , 
rt=, f=) at 
/usr/src/debug/vpp-0.1/src/vpp/stats/stat_segment.c:761
#5  0x7f9805648897 in vlib_process_bootstrap (_a=) at 
/usr/src/debug/vpp-0.1/src/vlib/main.c:1477
#6  0x7f9805587d80 in clib_calljmp () from /lib64/libvppinfra.so.0.1
#7  0x7f97bd38add0 in ?? ()

after debugs i found the reason, vpp counts the packets through snat, it store 
the result in nm->counters.fastpath.in2out.icmp, which is a vector struct, the 
size of the vector is based on interfaces index, based on my configures above, 
the size is 3, but after i configured loop and bridge interfaces, both the new 
interface index is bigger than 3. when packets pass through snat, it thought 
packet is received from loop interface, and then got out of bonds when writing 
vector.
and my question is:
1.based on my configuration above, does packets counts saved to loop interface 
is correct?
2.Besides avoiding misconfiguration, how to fix it?
thanks a lot.

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#19985): https://lists.fd.io/g/vpp-dev/message/19985
Mute This Topic: https://lists.fd.io/mt/84995915/21656
Mute #nat44:https://lists.fd.io/g/vpp-dev/mutehashtag/nat44
Group Owner: vpp-dev+ow...@lists.fd.io
Unsubscribe: https://lists.fd.io/g/vpp-dev/unsub [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [vpp-dev] vpp got stucked after bridge and loop interfaces is created and snat is configured #nat44

2021-08-21 Thread g . goodian
it seems that the patch works for me, thanks.

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#20006): https://lists.fd.io/g/vpp-dev/message/20006
Mute This Topic: https://lists.fd.io/mt/84995915/21656
Mute #nat44:https://lists.fd.io/g/vpp-dev/mutehashtag/nat44
Group Owner: vpp-dev+ow...@lists.fd.io
Unsubscribe: https://lists.fd.io/g/vpp-dev/unsub [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [vpp-dev] vpp got stucked after bridge and loop interfaces is created and snat is configured #nat44

2021-08-21 Thread g . goodian
I'm using v21.06, commit:bb7418cf9ba89edef031d7ca5114d22afce8b8c5, it seems 
that the patch fix the problem, thanks for your reply.

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#20007): https://lists.fd.io/g/vpp-dev/message/20007
Mute This Topic: https://lists.fd.io/mt/84995915/21656
Mute #nat44:https://lists.fd.io/g/vpp-dev/mutehashtag/nat44
Group Owner: vpp-dev+ow...@lists.fd.io
Unsubscribe: https://lists.fd.io/g/vpp-dev/unsub [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[vpp-dev] #ipsec IPSec tunnel got broken when rekey packet lost

2021-11-08 Thread g . goodian
I'm using vpp 21.06, and sometimes my ipsec tunnel got broken, after debug i 
got the reason:
The initiator send IKEV2_EXCHANGE_CREATE_CHILD_SA packet to responder to rekey 
ipsec sa after lifetime;
the responder got the packet and do rekey process, but the response packet got 
lost, then the initiator will retry to send the rekey packet,
but in this time the responder can't get child sa with the spi in the packet 
and do nothing (according to rfc 7269, it should better send NO_AS_FOUND to the 
initiator),
the initiator deleted ipsec sa after 5 time retries, but the responder will 
never delete it's ipsec sa and it's ipip interface.

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#20446): https://lists.fd.io/g/vpp-dev/message/20446
Mute This Topic: https://lists.fd.io/mt/86905486/21656
Mute #ipsec:https://lists.fd.io/g/vpp-dev/mutehashtag/ipsec
Group Owner: vpp-dev+ow...@lists.fd.io
Unsubscribe: https://lists.fd.io/g/vpp-dev/unsub [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[vpp-dev] #ipsec IPSec tunnel got broken when rekey packet lost

2021-11-08 Thread g . goodian
[Edited Message Follows]

I'm using vpp 21.06, and sometimes my ipsec tunnel got broken, after debug i 
got the reason:
The initiator send IKEV2_EXCHANGE_CREATE_CHILD_SA packet to responder to rekey 
ipsec sa after lifetime;
the responder got the packet and do rekey process, but the response packet got 
lost, then the initiator will retry to send the rekey packet,
but in this time the responder can't get child sa with the spi in the packet 
and do nothing,
the initiator deleted ipsec sa after 5 time retries, but the responder will 
never delete it's ipsec sa and it's ipip interface.

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#20446): https://lists.fd.io/g/vpp-dev/message/20446
Mute This Topic: https://lists.fd.io/mt/86905486/21656
Mute #ipsec:https://lists.fd.io/g/vpp-dev/mutehashtag/ipsec
Group Owner: vpp-dev+ow...@lists.fd.io
Unsubscribe: https://lists.fd.io/g/vpp-dev/unsub [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-