Re: [PATCH BlueZ v4 1/2] a2dp: fix incorrect transaction label in setconf phase

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Xiao,

On Thu, Jan 4, 2024 at 12:16 PM Xiao Yao <xiaokeqinhealth@xxxxxxx> wrote:
>
> From: Xiao Yao <xiaoyao@xxxxxxxxxxxxxx>
>
> BLUETOOTH SPECIFICATION Page 61 of 140
> Audio/Video Distribution Transport Protocol Specification (V13)
> 8.4.6 Message integrity verification at receiver side
>
> - The receiver of an AVDTP signaling message shall not interpret corrupted
> messages. Those messages are discarded and no signaling message is returned
> to the sender if no error code is applicable. Possible corrupted messages
> are:
>
>   * Response messages where the transaction label cannot match a previous
>     command sent to the remote device
>
> Consider the following scenario:
> btmon log:
> AVDTP: Discover (0x01) Command (0x00) type 0x00 label 5 nosp 0
> ... ...
> < AVDTP: Set Configuration (0x03) Command (0x00) type 0x00 label 8 nosp 0
> //Currently, a 'set configuration' message has been received from the
> //sender, which contains a transaction label valued at 8. This message
> //was then relayed to A2DP backend(PulseAudio/PipeWire) using the dbus
> //interface.
>   set_configuration()(media.c)
>     dbus_message_new_method_call(..., "SetConfiguration", ...);
>     g_dbus_send_message_with_reply(btd_get_dbus_connection(), ...);
>     dbus_pending_call_set_notify(request->call, endpoint_reply, ...);
>     ...
>
> //The commit "02877c5e9" introduces a reverse discovery logic, resulting
> //in a small probability that the discovery command is issued before the
> //setconfig accept command.
> //Tip: If an artificial delay is added to the audio backend, this issue
> //will invariably occur."
> > AVDTP: Discover (0x01) Command (0x00) type 0x00 label 0 nosp 0
> //After receiving the discover reply, the session->in.transaction is
> //changed to 0
> < AVDTP: Discover (0x01) Response Accept (0x02) type 0x00 label 0 nosp 0
>
> > AVDTP: Set Configuration (0x03) Resp Accept (0x02) type 0 label 0 nosp 0
> //The audio backend reply the dbus message
>   endpoint_reply (media.c)
>     setconf_cb (avdtp.c)
>       //Here avdtp_send sends an incorrect transaction value, causing
>       //the sender to discard the message. (The correct transaction
>       //value is 8)
>       avdtp_send(session, session->in.transaction, AVDTP_MSG_TYPE_ACCEPT,
>                  AVDTP_SET_CONFIGURATION, NULL, 0)
>
> AVDTP: Delay Report (0x0d) Command (0x00) type 0x00 label 1 nosp 0
> ... ...
>
> Therefore, the reverse discovery logic was adjusted to the back of
> setconfig accept to avoid two transmission transactions at the same
> time and fixed the problem.
>
> Signed-off-by: Xiao Yao <xiaoyao@xxxxxxxxxxxxxx>
> ---
> v1 -> v2: Fixed "session->in.transaction" logic err.
> v2 -> v3: Fixed some compile warnings
> v3 -> v4: Adjust the timing of reverse discovery logic
> ---
>  profiles/audio/a2dp.c | 27 ++++++++++++++-------------
>  1 file changed, 14 insertions(+), 13 deletions(-)
>
> diff --git a/profiles/audio/a2dp.c b/profiles/audio/a2dp.c
> index b43161a13..f4ef8aec2 100644
> --- a/profiles/audio/a2dp.c
> +++ b/profiles/audio/a2dp.c
> @@ -586,6 +586,12 @@ done:
>         return FALSE;
>  }
>
> +static void reverse_discover(struct avdtp *session, GSList *seps, int err,
> +                            void *user_data)
> +{
> +       DBG("err %d", err);
> +}
> +
>  static void endpoint_setconf_cb(struct a2dp_setup *setup, gboolean ret)
>  {
>         if (ret == FALSE) {
> @@ -595,6 +601,13 @@ static void endpoint_setconf_cb(struct a2dp_setup *setup, gboolean ret)
>         }
>
>         auto_config(setup);
> +
> +       /* Attempt to reverse discover if there are no remote
> +        * SEPs.
> +        */
> +       if (queue_isempty(setup->chan->seps))
> +               a2dp_discover(setup->session, reverse_discover, NULL);
> +
>         setup_unref(setup);
>  }
>
> @@ -634,12 +647,6 @@ static gboolean endpoint_match_codec_ind(struct avdtp *session,
>         return TRUE;
>  }
>
> -static void reverse_discover(struct avdtp *session, GSList *seps, int err,
> -                                                       void *user_data)
> -{
> -       DBG("err %d", err);
> -}
> -
>  static gboolean endpoint_setconf_ind(struct avdtp *session,
>                                                 struct avdtp_local_sep *sep,
>                                                 struct avdtp_stream *stream,
> @@ -695,14 +702,8 @@ static gboolean endpoint_setconf_ind(struct avdtp *session,
>                                                 setup_ref(setup),
>                                                 endpoint_setconf_cb,
>                                                 a2dp_sep->user_data);
> -               if (ret == 0) {
> -                       /* Attempt to reverse discover if there are no remote
> -                        * SEPs.
> -                        */
> -                       if (queue_isempty(setup->chan->seps))
> -                               a2dp_discover(session, reverse_discover, NULL);

Have you actually test these changes with read devices? I would be
really surprised if this works because you are essentially changing
the reverse discover to when we do initiate AVDTP_SetConfiguration
rather when we receive, which shall never need a reverse discover to
begin with since we are initiating we always perform a discover
anyway, so that most likely is dead code that will never going to
executed.

The real culprit here is that both commands and responses are stored
in the session.in while we should probably have a session.cmd and
session.rsp to be able to handle outstanding requests in each
direction.

> +               if (ret == 0)
>                         return TRUE;
> -               }
>
>                 setup_unref(setup);
>                 setup->err = g_new(struct avdtp_error, 1);
> --
> 2.34.1
>
>


-- 
Luiz Augusto von Dentz





[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux