Browse Source

dsp: check ac before access the service id

Check the audio client and apr before retrieving the
service_id and avoid the race condition b/w q6asm_session_free
and get_service_id calls with mutex lock.

Change-Id: I05c5fb872f866c79c909123b595df345da828967
Signed-off-by: Prasad Kumpatla <[email protected]>
Prasad Kumpatla 5 years ago
parent
commit
e1bb075244
1 changed files with 11 additions and 2 deletions
  1. 11 2
      dsp/q6asm.c

+ 11 - 2
dsp/q6asm.c

@@ -10907,14 +10907,23 @@ EXPORT_SYMBOL(q6asm_get_path_delay);
 
 int q6asm_get_apr_service_id(int session_id)
 {
+	int service_id;
+
 	pr_debug("%s:\n", __func__);
 
 	if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
 		pr_err("%s: invalid session_id = %d\n", __func__, session_id);
 		return -EINVAL;
 	}
-
-	return ((struct apr_svc *)(session[session_id].ac)->apr)->id;
+	mutex_lock(&session[session_id].mutex_lock_per_session);
+	if (session[session_id].ac != NULL)
+		if ((session[session_id].ac)->apr != NULL) {
+			service_id = ((struct apr_svc *)(session[session_id].ac)->apr)->id;
+			mutex_unlock(&session[session_id].mutex_lock_per_session);
+			return service_id;
+	}
+	mutex_unlock(&session[session_id].mutex_lock_per_session);
+	return -EINVAL;
 }
 
 uint8_t q6asm_get_asm_stream_id(int session_id)