All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Pali Rohár" <pali@kernel.org>
To: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
Cc: "linux-bluetooth@vger.kernel.org"
	<linux-bluetooth@vger.kernel.org>,
	David Heidelberg <david@ixit.cz>
Subject: Re: [PATCH 1/3] src/profile: Distinguish between zero-set HFP AG features and unset HFP AG features
Date: Tue, 14 Apr 2020 00:26:16 +0200	[thread overview]
Message-ID: <20200413222616.bbcarvdwh3fyfnus@pali> (raw)
In-Reply-To: <CABBYNZLmE1D0sUpxwLJ=2++_Be18LBWj=2KwSyLs+tSAStAE2w@mail.gmail.com>

On Monday 13 April 2020 14:07:15 Luiz Augusto von Dentz wrote:
> Hi Pali,
> 
> On Mon, Apr 13, 2020 at 1:42 PM Pali Rohár <pali@kernel.org> wrote:
> >
> > On Monday 13 April 2020 13:24:56 Luiz Augusto von Dentz wrote:
> > > Hi Pali,
> > >
> > > On Mon, Apr 13, 2020 at 12:51 PM Pali Rohár <pali@kernel.org> wrote:
> > > >
> > > > On Monday 13 April 2020 12:41:44 Luiz Augusto von Dentz wrote:
> > > > > Hi Pali,
> > > > >
> > > > > On Mon, Apr 13, 2020 at 10:58 AM Pali Rohár <pali@kernel.org> wrote:
> > > > > >
> > > > > > On Monday 13 April 2020 10:47:04 Luiz Augusto von Dentz wrote:
> > > > > > > Hi Pali,
> > > > > > >
> > > > > > > On Mon, Apr 13, 2020 at 10:17 AM Pali Rohár <pali@kernel.org> wrote:
> > > > > > > >
> > > > > > > > On Monday 13 April 2020 09:58:34 Luiz Augusto von Dentz wrote:
> > > > > > > > > Hi Pali,
> > > > > > > > >
> > > > > > > > > On Mon, Apr 13, 2020 at 9:52 AM Pali Rohár <pali@kernel.org> wrote:
> > > > > > > > > >
> > > > > > > > > > On Monday 13 April 2020 09:44:14 Luiz Augusto von Dentz wrote:
> > > > > > > > > > > On Mon, Apr 13, 2020 at 9:25 AM Pali Rohár <pali@kernel.org> wrote:
> > > > > > > > > > > > @@ -1750,15 +1758,19 @@ static int ext_disconnect_dev(struct btd_service *service)
> > > > > > > > > > > >  static char *get_hfp_hf_record(struct ext_profile *ext, struct ext_io *l2cap,
> > > > > > > > > > > >                                                         struct ext_io *rfcomm)
> > > > > > > > > > > >  {
> > > > > > > > > > > > +       /* HFP 1.7.2: By default features bitfield is 0b000000 */
> > > > > > > > > > > >         return g_strdup_printf(HFP_HF_RECORD, rfcomm->chan, ext->version,
> > > > > > > > > > > > -                                               ext->name, ext->features);
> > > > > > > > > > > > +                               ext->name,
> > > > > > > > > > > > +                               ext->have_features ? ext->features : 0x0);
> > > > > > > > > > > >  }
> > > > > > > > > > > >
> > > > > > > > > > > >  static char *get_hfp_ag_record(struct ext_profile *ext, struct ext_io *l2cap,
> > > > > > > > > > > >                                                         struct ext_io *rfcomm)
> > > > > > > > > > > >  {
> > > > > > > > > > > > +       /* HFP 1.7.2: By default features bitfield is 0b001001 */
> > > > > > > > > > > >         return g_strdup_printf(HFP_AG_RECORD, rfcomm->chan, ext->version,
> > > > > > > > > > > > -                                               ext->name, ext->features);
> > > > > > > > > > > > +                               ext->name,
> > > > > > > > > > > > +                               ext->have_features ? ext->features : 0x9);
> > > > > > > > > > >
> > > > > > > > > > > I wonder why you didn't just initialize the features wiht 0x9 instead
> > > > > > > > > > > of adding a flag to track it, btw add a define with value 0x09 like
> > > > > > > > > > > HFP_DEFAULT_FEATURES that way it is clearer why we are doing this.
> > > > > > > > > >
> > > > > > > > > > This function get_hfp_ag_record() is for parsing local features. You are
> > > > > > > > > > right that for local features we do not need a flag to track it.
> > > > > > > > > >
> > > > > > > > > > But flag for tracking is needed for parsing remote features. And to have
> > > > > > > > > > unified code for storing local and remote features it is easier to have
> > > > > > > > > > always a flag for checking if features were provided or not.
> > > > > > > > >
> > > > > > > > > Im not following you about the remote features beinf different, I
> > > > > > > > > though both would be could be initialized in the same way and then if
> > > > > > > > > we read a different value from the SDP record we just overwrite it.
> > > > > > > >
> > > > > > > > But in this case we put these default remote features to HFP DBus agent
> > > > > > > > like if they were specified in SDP. Default value is specific for
> > > > > > > > profile version. And if e.g. new HFP version defines a new bit in
> > > > > > > > features with its own default value then HFP DBus agent would not be
> > > > > > > > able to distinguish between state when remote device did not specified
> > > > > > > > any value (as bluez will put there some defaults) and when remote device
> > > > > > > > specified same features as bluez has defined in its current default
> > > > > > > > value.
> > > > > > >
> > > > > > > Different version may have different defaults but we can initialize
> > > > > > > them correctly.
> > > > > >
> > > > > > But we do not know default values for future versions which have not
> > > > > > been released yet. There would be a problem if user run current
> > > > > > bluez daemon e.g. in 5 years when new version of HFP profile would be
> > > > > > released and remote device would use it.
> > > > >
> > > > > We would have to match what is the features that the agent can handle.
> > > >
> > > > But we do not know what features can agent handle. There is no API for
> > > > it.
> > >
> > > Yes we do, the version would tell exactly what features the agent can handle.
> >
> > No. Endpoints (local agent or remote device) does not have to support
> > all features provided by version. This is why feature list exist.
> 
> Support no, understand yes, it must understand all the values exposed
> by the remote features if it support the version, and here Im
> suggesting just the default values so it surprises me the sort
> assertive tone.

It really does not have to even understand those bits. Remote device may
support 1.7, local device only 1.5. When doing establishment of SLC
connection both sides exchange via AT commands what they support and
remote device from that can know that local device is not able to
support some feature bits (because e.g. they were added in new version
1.7 which is not supported by local device 1.5).

> > > > Agent which works in AG role accept connections from remote HF role.
> > > > Agent register to bluez with AG role features. HF and AG features are
> > > > different and bluez has absolutely no idea what features can agent
> > > > accept from remote device.
> > >
> > > The version needs to be compatible no matter if the features are
> > > different for AG/HF.
> >
> > This is not truth. Version X is compatible with all versions less then
> > X. So if remote device support version 1.5, then it can connect to our
> > local dbus agent which is running at version 1.7. And version 1.7 is
> > registered to bluez. In HFP spec is written how implementation should
> > deal with this backward compatibility. It is at protocol level, so it
> > cannot be done in bluez, only in application which implements HFP
> > protocol, therefore external DBus HFP agent.
> 
> Yes it needs to be backward compatible, but what Im saying is that the
> agent need to be able to understand the features bits, how else would
> then it goes and enable events, etc, via AT commands, and actually
> although your protocol can handle 1.7 the remote side may only be
> handling 1.5 features then essentially all features are limited to
> 1.5. Im not sure why we always come to this bits and pieces in our
> discussions, it is as if I was not involved with any of this in the
> past, I know pretty well how HFP operates, in fact most profiles work
> in the same way regarding the version, the record only indicates what
> is maximum supported version and all version previous to that shall
> work so at protocol level you just downgrade the version according to
> what both sides can supports, what we cannot do is to upgrade the
> version so features from e.g. 1.8 shall never creep into the features
> bits since they wouldn't be compatible.

I'm not saying that agent does not need to understand those feature
bits. Agent of course needs to understand meaning for version which it
implements.

I'm saying that bluez does not have to know meaning of these bits.

> > > > > > > > Before and also after this change remote features are not send to HFP
> > > > > > > > DBus agent when they were not specified by remote device.
> > > > > > > >
> > > > > > > > After your suggestion HFP DBus agent would not be able to check if
> > > > > > > > remote device provided features or not. And this is I think a
> > > > > > > > regression.
> > > > > > >
> > > > > > > I don't think we can consider a regression to always provide features,
> > > > > > > besides what would be the reason for the agent to know if the features
> > > > > > > were from the SDP record or they are auto initiliazed?
> > > > > >
> > > > > > Autoinitialized for which version? Bluez has currently defined default
> > > > > > values for HFP 1.7. But DBus agent can register HFP profile also for
> > > > > > version 1.5 or also 1.8.
> > > > > >
> > > > > > To which value should it be autoinitialized when remote device announce
> > > > > > that is in version 1.8 but does not specify features (= default for
> > > > > > version 1.8 should be used)? The only option which make sense is to not
> > > > > > autoinitiaze this value as version 1.8 was not released yet and now we
> > > > > > do not know what would be the default value.
> > > > >
> > > > > We should probably use the mininum version of the client and server,
> > > > > so if the device supports 1.8 but our agent is 1.5 it should default
> > > > > to 1.5, this actually would have to be done anyway because othewise we
> > > > > would make agents duplicating the logic of handling the features
> > > > > properly so we might as well try to consolidate this on the daemon and
> > > > > only expose the features that can actually be used in the session,
> > > > > that means the autoinitilize logic the to take into account both the
> > > > > device and agent version.
> > > >
> > > > And what would happen if both agent and remote device supports 1.8?
> > >
> > > Then 1.8 defaults are used, if the daemon don't support 1.8 then the
> > > agent cannot register for 1.8 to begin with.
> >
> > bluez daemon does not implement HFP profile. It is external DBus agent
> > which implements it. Bluez provides just some default values for SDP
> > records, but external DBus agent can provide own SDP values including
> > version number and feature list.
> 
> Yes and in order to construct a valid SDP record it needs to
> understand the version and features.

Bluez does not need to understand meaning of particular bits in features
u16 value. And currently it even does not understand it. bluez just
pass-through those bits from agent to SDP record. In bluez there is no
code for parsing or generating meaning of bits in feature.

> > So default version numberin bluez is meaningless for HFP implementation
> > in external DBus agent.
> >
> > > > When remote device do specified features, default one should be used.
> > > > So this cannot be solved with some default values in bluez.
> > >
> > > Like I said before, bluez controls the SDP record so it will need to
> > > understand what features are supported based on version, this is
> >
> > Why it needs to know it? It just export SDP features which agent can
> > provides on its own. Bluez is not doing more then providing SDP records.
> 
> Read above, we still need to construct a valid SDP record, this
> shouldn't be a big change compared to what you already have all we
> would be doing is:

Yes, constructing of valid SDP record is needed to done by bluez. But
agent API can provide: version, feature bits (and possibly channels).

> 1. version = MIN(remote_version, local_version)
> 2. features =  default_features(version)
> 3. features = get_features()

Problem is that AG features are different of HF features. And agent
provides via DBus API only its features (AG part). So bluez does not
have all information from agent to do mix of features supported by
remote side and client side. So with current bluez DBus API it is
impossible.

> 4. NewConnectiion(version, features)
> 
> Then all the agents out there would don't need to keep doing on their own.

Yes, if existing bluez API would force agents to provide all needed
informations (both local and remote feature bits), then bluez can
implement that mixing of features. But because bluez API is backward
compatible, current implementation does not support it, it is not
possible to implement. And so agents need to implement that feature bits
exchange by its own.

> > > exactly why we want the daemon to control the sdp record so we don't
> > > have the agents dealing version compatibility, etc.
> > >
> > > > > > > I that was
> > > > > > > really necessary Id just dump the whole record as a ServiceRecord
> > > > > > > option and leave it up to the client to parse it.
> > > > > > >
> > > > > > > > > > I can put these default values in profile-role specific macros e.g.:
> > > > > > > > > >
> > > > > > > > > > #define HFP_AG_DEFAULT_FEATURES 0x09
> > > > > > > > > > #define HFP_HF_DEFAULT_FEATURES 0x00
> > > > > > > > > > #define HSP_HS_DEFAULT_VOLCNTRL "false"
> > > > > > > > >
> > > > > > > > > Don't bother with default that are 0x00/false, we can assume this is
> > > > > > > > > implicit when allocating the memory everything is set to 0 so these
> > > > > > > > > defines wouldn't be needed in the first place.
> > > > > > > > >
> > > > > > > > > > Or do you prefer different names?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > --
> > > > > > > > > Luiz Augusto von Dentz
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --
> > > > > > > Luiz Augusto von Dentz
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > > Luiz Augusto von Dentz
> > >
> > >
> > >
> > > --
> > > Luiz Augusto von Dentz
> 
> 
> 
> -- 
> Luiz Augusto von Dentz

  reply	other threads:[~2020-04-13 22:26 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-12 17:29 bluez: Export SDP "Remote audio volume control" item for HSP profile Pali Rohár
2019-12-12 19:42 ` Luiz Augusto von Dentz
2019-12-12 23:03   ` Pali Rohár
2020-02-09 13:02     ` Pali Rohár
2020-03-20 13:01       ` Pali Rohár
2020-03-20 17:48         ` Luiz Augusto von Dentz
2020-03-21 18:40           ` Pali Rohár
2020-03-21 19:54             ` Pali Rohár
2020-04-13 16:25               ` [PATCH 0/3] " Pali Rohár
2020-04-13 16:25                 ` [PATCH 1/3] src/profile: Distinguish between zero-set HFP AG features and unset HFP AG features Pali Rohár
2020-04-13 16:44                   ` Luiz Augusto von Dentz
2020-04-13 16:52                     ` Pali Rohár
2020-04-13 16:58                       ` Luiz Augusto von Dentz
2020-04-13 17:17                         ` Pali Rohár
2020-04-13 17:47                           ` Luiz Augusto von Dentz
2020-04-13 17:58                             ` Pali Rohár
2020-04-13 19:41                               ` Luiz Augusto von Dentz
2020-04-13 19:51                                 ` Pali Rohár
2020-04-13 20:24                                   ` Luiz Augusto von Dentz
2020-04-13 20:42                                     ` Pali Rohár
2020-04-13 21:07                                       ` Luiz Augusto von Dentz
2020-04-13 22:26                                         ` Pali Rohár [this message]
2020-04-13 16:25                 ` [PATCH 2/3] src/profile: Export Remote Audio Volume Control SDP value for HSP HS role via first bit in features value Pali Rohár
2020-04-13 16:25                 ` [PATCH 3/3] src/profile: Add default SDP record for Headset role of HSP 1.2 profile with Erratum 3507 Pali Rohár
2020-04-13 16:51                   ` Luiz Augusto von Dentz
2020-04-14  0:09                 ` [PATCH 0/3] bluez: Export SDP "Remote audio volume control" item for HSP profile Luiz Augusto von Dentz
2020-04-14  8:09                   ` Pali Rohár
2020-04-14 19:53                   ` Pali Rohár
2020-04-14 20:28                     ` Luiz Augusto von Dentz
2020-04-14 20:46                       ` [PATCH] doc: Update documentation for HSP and HFP profiles Pali Rohár
2020-04-14 21:03                         ` Luiz Augusto von Dentz

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=20200413222616.bbcarvdwh3fyfnus@pali \
    --to=pali@kernel.org \
    --cc=david@ixit.cz \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.