Hi There, 

We found a situation where topos seems to break, let me explain... Assuming the 
following scenario:

```
Caller ---- Callee
A: ------INVITE----->   Record-Route:A.A.A.A, Record-Route:B.B.B.B
B: <-----200 OK------   

C: <-----INVITE------   Route: A.A.A.A, B.B.B.B
D: ------200 OK----->   Record-Route:B.B.B.B, Record-Route:A.A.A.A (reversed 
order)

E: <======INVITE=====   Route: B.B.B.B, A.A.A.A (wrong)
```

A and B establish the connection from caller to callee, and topos works fine.

C (re-INVITE from callee) sends the Route header according to the Record-Routes 
from the original INVITE (A)

D is the 200 OK sent from the caller to the first re-INVITE (C) coming from the 
callee, with the Record-Route headers reversed, because is the order in which 
the callee received them; and according to the RFC it's working as intended:

```
When a UAS responds to a request with a response that establishes a
dialog (such as a 2xx to INVITE), the UAS MUST copy all Record-Route
header field values from the request into the response (including the
URIs, URI parameters, and any Record-Route header field parameters,
whether they are known or unknown to the UAS) and MUST maintain the
order of those values.

[...] 

[When a UAC receives a response...]
The route set MUST be set to the list of URIs in the Record-Route
header field from the response, taken in reverse order and preserving
all URI parameters.
```

E takes the Route order from the last 200 OK ignoring they are in reversed 
order and assuming the top one is the first one, when it should be the other 
way around, sending to an IP address not reachable from the callee. And I think 
here is the issue, topos should not update the path on the Record-Routes from a 
200 OK but if it does, it should take the reverse order

When disabling topos, everything works fine, or with topos enabled, by setting 
rr_update=0 works for us, but what if there is a real path update, rr_update=0 
wouldn't work for us anymore. The Kamailio version is 5.8.0-rc0

Let me know if you need more information.

Thanks a lot,
Javi


-- 
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3778
You are receiving this because you are subscribed to this thread.

Message ID: <kamailio/kamailio/issues/3...@github.com>
_______________________________________________
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org

Reply via email to