Skip to content

Commit ca0c8eb

Browse files
committed
Merge pull request #3528 from vladpaiu/fix_inject_before_relay
fix: update cloned msg under lock to avoid races with branch injection (cherry picked from commit b868e00)
1 parent a3e44bd commit ca0c8eb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

modules/tm/tm.c

+6-5
Original file line numberDiff line numberDiff line change
@@ -1294,11 +1294,6 @@ static int w_t_relay( struct sip_msg *p_msg , void *flags, struct proxy_l *prox
12941294
tm_has_request_disponsition_no_cancel(p_msg)==0 )
12951295
t->flags|=T_MULTI_200OK_FLAG;
12961296

1297-
/* update the transaction only if in REQUEST route; for other types
1298-
of routes we do not want to inherit the local changes */
1299-
if (route_type==REQUEST_ROUTE)
1300-
update_cloned_msg_from_msg( t->uas.request, p_msg);
1301-
13021297
if (route_type==FAILURE_ROUTE) {
13031298
/* If called from failure route we need reset the branch counter to
13041299
* ignore the previous set of branches (already terminated) */
@@ -1308,6 +1303,12 @@ static int w_t_relay( struct sip_msg *p_msg , void *flags, struct proxy_l *prox
13081303
* created, better lock here to avoid any overlapping with
13091304
* branch injection from other processes */
13101305
LOCK_REPLIES(t);
1306+
1307+
/* update the transaction only if in REQUEST route; for other types
1308+
of routes we do not want to inherit the local changes */
1309+
if (route_type==REQUEST_ROUTE)
1310+
update_cloned_msg_from_msg( t->uas.request, p_msg);
1311+
13111312
ret = t_forward_nonack( t, p_msg, p, 1/*reset*/,1/*locked*/);
13121313
UNLOCK_REPLIES(t);
13131314
}

0 commit comments

Comments
 (0)