From: Szymon Janc <szymon.janc@codecoup.pl>
To: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH BlueZ] shared/att: Fix possible crash when security is changed
Date: Wed, 20 Dec 2017 20:58:50 +0100 [thread overview]
Message-ID: <2929752.klXrzWnKQI@ix> (raw)
In-Reply-To: <20171220162751.9276-1-luiz.dentz@gmail.com>
Hi Luiz,
On Wednesday, 20 December 2017 17:27:51 CET Luiz Augusto von Dentz wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
>
> When resending a PDU due to secure change the timeout_id shall also be
> removed otherwise the following crash may occur:
>
> Invalid read of size 8
> at 0x489639: timeout_cb (att.c:405)
> by 0x49417C: timeout_callback (timeout-glib.c:34)
> by 0x4E84AB2: ??? (in /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2)
> by 0x4E84049: g_main_context_dispatch (in
> /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2) by 0x4E843EF: ??? (in
> /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2) by 0x4E84711:
> g_main_loop_run (in /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2) by
> 0x40B51F: main (main.c:770)
> Address 0x6ce5830 is 32 bytes inside a block of size 192 free'd
> at 0x4C2EDEB: free (in
> /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) by 0x48A89D:
> disconnect_cb (att.c:593)
> by 0x493D54: watch_callback (io-glib.c:170)
> by 0x4E84049: g_main_context_dispatch (in
> /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2) by 0x4E843EF: ??? (in
> /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2) by 0x4E84711:
> g_main_loop_run (in /lib/x86_64-linux-gnu/libglib-2.0.so.0.4800.2) by
> 0x40B51F: main (main.c:770)
> ---
> src/shared/att.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/src/shared/att.c b/src/shared/att.c
> index 8d58156c1..0aab246d6 100644
> --- a/src/shared/att.c
> +++ b/src/shared/att.c
> @@ -642,6 +642,12 @@ static bool handle_error_rsp(struct bt_att *att,
> uint8_t *pdu, if (!change_security(att, rsp->ecode))
> return false;
>
> + /* Remove timeout_id if outstanding */
> + if (op->timeout_id) {
> + timeout_remove(op->timeout_id);
> + op->timeout_id = 0;
> + }
> +
> util_debug(att->debug_callback, att->debug_data,
> "Retrying operation %p", op);
Applied, thanks.
--
pozdrawiam
Szymon Janc
prev parent reply other threads:[~2017-12-20 19:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-20 16:27 [PATCH BlueZ] shared/att: Fix possible crash when security is changed Luiz Augusto von Dentz
2017-12-20 19:58 ` Szymon Janc [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2929752.klXrzWnKQI@ix \
--to=szymon.janc@codecoup.pl \
--cc=linux-bluetooth@vger.kernel.org \
--cc=luiz.dentz@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox