* [PATCH 1/2] Fix possible crash on AVDTP Suspend req timeout
@ 2011-02-02 7:42 Dmitriy Paliy
2011-02-02 7:42 ` [PATCH 2/2] Code cleanup: unnesessary line removed in avdtp.c Dmitriy Paliy
2011-02-02 10:10 ` [PATCH 1/2] Fix possible crash on AVDTP Suspend req timeout Johan Hedberg
0 siblings, 2 replies; 3+ messages in thread
From: Dmitriy Paliy @ 2011-02-02 7:42 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Dmitriy Paliy
This fixes possible bluetoothd crash on AVDTP Suspend request timeout
if A2DP client was destroyed after the request was sent but before its
timeout handled.
If Suspend request times out due to any reason, then references to A2DP
session and stream are cleared in unix_client. Therefore, callback cannot
be removed when unix_client is destroyed (e.g. on incomming call).
After that, consequent Abort request is sent. If the request times out
as well, than stream_state_changed callback is invoked to change AVDTP
state to Idle, which causes crash due to NULL dereferencing.
Therefore, it is important to keep references to AVDTP session and stream
in unix_client until it is destroyed.
---
audio/unix.c | 15 ++++-----------
1 files changed, 4 insertions(+), 11 deletions(-)
diff --git a/audio/unix.c b/audio/unix.c
index a4b92f4..3c47510 100644
--- a/audio/unix.c
+++ b/audio/unix.c
@@ -836,7 +836,6 @@ static void a2dp_suspend_complete(struct avdtp *session,
struct unix_client *client = user_data;
char buf[BT_SUGGESTED_BUFFER_SIZE];
struct bt_stop_stream_rsp *rsp = (void *) buf;
- struct a2dp_data *a2dp = &client->d.a2dp;
if (err)
goto failed;
@@ -854,15 +853,6 @@ failed:
error("suspend failed");
unix_ipc_error(client, BT_STOP_STREAM, EIO);
-
- if (a2dp->sep) {
- a2dp_sep_unlock(a2dp->sep, a2dp->session);
- a2dp->sep = NULL;
- }
-
- avdtp_unref(a2dp->session);
- a2dp->session = NULL;
- a2dp->stream = NULL;
}
static void start_discovery(struct audio_device *dev, struct unix_client *client)
@@ -1272,9 +1262,11 @@ static void start_close(struct audio_device *dev, struct unix_client *client,
case TYPE_SINK:
a2dp = &client->d.a2dp;
- if (client->cb_id > 0)
+ if (client->cb_id > 0) {
avdtp_stream_remove_cb(a2dp->session, a2dp->stream,
client->cb_id);
+ client->cb_id = 0;
+ }
if (a2dp->sep) {
a2dp_sep_unlock(a2dp->sep, a2dp->session);
a2dp->sep = NULL;
@@ -1283,6 +1275,7 @@ static void start_close(struct audio_device *dev, struct unix_client *client,
avdtp_unref(a2dp->session);
a2dp->session = NULL;
}
+ a2dp->stream = NULL;
break;
default:
error("No known services for device");
--
1.7.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH 2/2] Code cleanup: unnesessary line removed in avdtp.c
2011-02-02 7:42 [PATCH 1/2] Fix possible crash on AVDTP Suspend req timeout Dmitriy Paliy
@ 2011-02-02 7:42 ` Dmitriy Paliy
2011-02-02 10:10 ` [PATCH 1/2] Fix possible crash on AVDTP Suspend req timeout Johan Hedberg
1 sibling, 0 replies; 3+ messages in thread
From: Dmitriy Paliy @ 2011-02-02 7:42 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Dmitriy Paliy
---
audio/avdtp.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/audio/avdtp.c b/audio/avdtp.c
index 88e3e8a..cd57747 100644
--- a/audio/avdtp.c
+++ b/audio/avdtp.c
@@ -2666,7 +2666,6 @@ static int send_req(struct avdtp *session, gboolean priority,
goto failed;
}
-
session->req = req;
req->timeout = g_timeout_add_seconds(req->signal_id == AVDTP_ABORT ?
--
1.7.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] Fix possible crash on AVDTP Suspend req timeout
2011-02-02 7:42 [PATCH 1/2] Fix possible crash on AVDTP Suspend req timeout Dmitriy Paliy
2011-02-02 7:42 ` [PATCH 2/2] Code cleanup: unnesessary line removed in avdtp.c Dmitriy Paliy
@ 2011-02-02 10:10 ` Johan Hedberg
1 sibling, 0 replies; 3+ messages in thread
From: Johan Hedberg @ 2011-02-02 10:10 UTC (permalink / raw)
To: Dmitriy Paliy; +Cc: linux-bluetooth
Hi Dmitriy,
On Wed, Feb 02, 2011, Dmitriy Paliy wrote:
> This fixes possible bluetoothd crash on AVDTP Suspend request timeout
> if A2DP client was destroyed after the request was sent but before its
> timeout handled.
>
> If Suspend request times out due to any reason, then references to A2DP
> session and stream are cleared in unix_client. Therefore, callback cannot
> be removed when unix_client is destroyed (e.g. on incomming call).
>
> After that, consequent Abort request is sent. If the request times out
> as well, than stream_state_changed callback is invoked to change AVDTP
> state to Idle, which causes crash due to NULL dereferencing.
>
> Therefore, it is important to keep references to AVDTP session and stream
> in unix_client until it is destroyed.
> ---
> audio/unix.c | 15 ++++-----------
> 1 files changed, 4 insertions(+), 11 deletions(-)
Thanks. Both patches have been pushed upstream.
Johan
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-02-02 10:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-02 7:42 [PATCH 1/2] Fix possible crash on AVDTP Suspend req timeout Dmitriy Paliy
2011-02-02 7:42 ` [PATCH 2/2] Code cleanup: unnesessary line removed in avdtp.c Dmitriy Paliy
2011-02-02 10:10 ` [PATCH 1/2] Fix possible crash on AVDTP Suspend req timeout Johan Hedberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox