]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
chan_pjsip.c: Check for channel and session to not be NULL in hangup
authoragupta <abhay@avissol.com>
Thu, 6 Jun 2019 12:48:18 +0000 (18:18 +0530)
committerGeorge Joseph <gjoseph@digium.com>
Mon, 10 Jun 2019 12:41:06 +0000 (06:41 -0600)
We have seen some rare case of segmentation fault in hangup function
and we could notice that channel pointer was NULL.  Debug log shows
that there is a 200 OK answer and SIP timeout at the same time.  It
looks that while the SIP session was being destroyed due to timeout
call hangup due to answer event lead to race condition and channel
is being destroyed from two different places.  The check ensures we
check it not to be NULL before freeing it.

ASTERISK-25371

Change-Id: I19f6566830640625e08f7b87bfe15758ad33a778

channels/chan_pjsip.c

index f2187efb29e0820cc7f10bebc18bef6abe20b1bc..e61a40828e5d7517d8f962c0c5220e3c198f5f93 100644 (file)
@@ -2336,18 +2336,27 @@ static int hangup(void *data)
        struct hangup_data *h_data = data;
        struct ast_channel *ast = h_data->chan;
        struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
-       struct ast_sip_session *session = channel->session;
-       int cause = h_data->cause;
-
        /*
-        * It's possible that session_terminate might cause the session to be destroyed
-        * immediately so we need to keep a reference to it so we can NULL session->channel
-        * afterwards.
+        * Before cleaning we have to ensure that channel or its session is not NULL
+        * we have seen rare case when taskprocessor calls hangup but channel is NULL
+        * due to SIP session timeout and answer happening at the same time
         */
-       ast_sip_session_terminate(ao2_bump(session), cause);
-       clear_session_and_channel(session, ast);
-       ao2_cleanup(session);
-       ao2_cleanup(channel);
+       if (channel) {
+               struct ast_sip_session *session = channel->session;
+               if (session) {
+                       int cause = h_data->cause;
+
+                       /*
+                       * It's possible that session_terminate might cause the session to be destroyed
+                       * immediately so we need to keep a reference to it so we can NULL session->channel
+                       * afterwards.
+                       */
+                       ast_sip_session_terminate(ao2_bump(session), cause);
+                       clear_session_and_channel(session, ast);
+                       ao2_cleanup(session);
+               }
+               ao2_cleanup(channel);
+       }
        ao2_cleanup(h_data);
        return 0;
 }