<div dir="ltr">Hi all,<div>I've been recently testing 5.3.x/master siptrace module, in particular the new trace mode "t" vs the legacy flag + sip_trace() mode and I've found some issues with the handling of CANCEL. Specifically, I've tested the following scenarios:</div>1) sip_trace_mode("t") on the initial INVITE only: received ACK for negative replies not captured<br>2) sip_trace_mode("t") on the initial INVITE and on neg ACK: received ACK captured twice<br>3) setflag and sip_trace() on the initial INVITE only: received CANCEL and ACK not captured (outgoing yes)<br>4) setflag and sip_trace() on the initial INVITE and ACK: received CANCEL not captured, received ACK captured twice<br>5) setflag and sip_trace() for each message (legacy): received CANCEL and 200 captured twice, received ACK captured twice<div><br></div><div>Digging into the module's code the "culprit" looks to be trace_is_off function (<a href="https://github.com/kamailio/kamailio/blob/2768f8ce1cf6da242674e7e40c8e76eb6c630f6b/src/modules/siptrace/siptrace.c#L66">https://github.com/kamailio/kamailio/blob/2768f8ce1cf6da242674e7e40c8e76eb6c630f6b/src/modules/siptrace/siptrace.c#L66</a>) and the places where it is called.</div><div>E.g.: for the case 1), when a negative reply is received, trace_tm_neg_ack_in is called, which calls inside trace_is_off (<a href="https://github.com/kamailio/kamailio/blob/2768f8ce1cf6da242674e7e40c8e76eb6c630f6b/src/modules/siptrace/siptrace.c#L1661">https://github.com/kamailio/kamailio/blob/2768f8ce1cf6da242674e7e40c8e76eb6c630f6b/src/modules/siptrace/siptrace.c#L1661</a>), which cannot be true unless the ACK has been marked for capture in the script, in which case it will be capture twice (case 2). The same applies to the CANCEL for case 3), in trace_onreq_out (callback for TMCB_E2ECANCEL_IN) trace_is_off because the incoming message is not flagged. Case 3) should theoretically behave like case 1) according to commit <a href="https://github.com/kamailio/kamailio/commit/40e09d8625184f19ff5666a2848cbb8c6212db26">https://github.com/kamailio/kamailio/commit/40e09d8625184f19ff5666a2848cbb8c6212db26</a>.</div><div><br></div><div>I'm not really sure if (and how) modify the trace_is_off function or not calling it in specific cases. E.g.: why calling it in trace_tm_neg_ack_in? This callback is set when we explicity want to trace a transaction, so why checking inside if tracing is on? Maybe I'm missing something, but I think that probably the different behaviors of the modes should be better specified/decided.</div><div><br></div><div>Best regards,</div><div><br></div><div>Federico</div></div>