linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: "Pali Rohár" <pali@kernel.org>
Cc: Marcel Holtmann <marcel@holtmann.org>,
	Johan Hedberg <johan.hedberg@gmail.com>,
	"David S. Miller" <davem@davemloft.net>,
	Jakub Kicinski <kuba@kernel.org>, Pavel Machek <pavel@ucw.cz>,
	Luiz Augusto von Dentz <luiz.dentz@gmail.com>,
	Sebastian Reichel <sre@kernel.org>,
	David Heidelberg <david@ixit.cz>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	linux-bluetooth@vger.kernel.org, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: Removal of HCI commands, userspace bluetooth regression?
Date: Wed, 30 Sep 2020 11:20:43 +0200	[thread overview]
Message-ID: <20200930092043.GB1580803@kroah.com> (raw)
In-Reply-To: <20200930082534.rrck6qb3fntm25wz@pali>

On Wed, Sep 30, 2020 at 10:25:34AM +0200, Pali Rohár wrote:
> On Wednesday 30 September 2020 10:02:05 Greg Kroah-Hartman wrote:
> > On Tue, Sep 29, 2020 at 11:32:54PM +0200, Pali Rohár wrote:
> > > CCing other lists and maintainers, hopefully, somebody would have a time to look at it...
> > > 
> > > On Saturday 08 August 2020 15:27:47 Pali Rohár wrote:
> > > > On Wednesday 15 April 2020 00:56:18 Pali Rohár wrote:
> > > > > On Sunday 09 February 2020 14:21:37 Pali Rohár wrote:
> > > > > > On Saturday 04 January 2020 11:24:36 Pali Rohár wrote:
> > > > > > > On Saturday 04 January 2020 10:44:52 Marcel Holtmann wrote:
> > > > > > > > Hi Pali,
> > > > > > > > 
> > > > > > > > > I wrote a simple script "sco_features.pl" which show all supported
> > > > > > > > > codecs by local HCI bluetooth adapter. Script is available at:
> > > > > > > > > 
> > > > > > > > > https://github.com/pali/hsphfpd-prototype/blob/prototype/sco_features.pl
> > > > > > > > > 
> > > > > > > > > And I found out that OCF_READ_LOCAL_CODECS HCI command cannot be send by
> > > > > > > > > non-root user. Kernel returns "Operation not permitted" error.
> > > > > > > > > 
> > > > > > > > > What is reason that kernel blocks OCF_READ_LOCAL_CODECS command for
> > > > > > > > > non-root users? Without it (audio) application does not know which
> > > > > > > > > codecs local bluetooth adapter supports.
> > > > > > > > > 
> > > > > > > > > E.g. OCF_READ_LOCAL_EXT_FEATURES or OCF_READ_VOICE_SETTING commands can
> > > > > > > > > be send also by non-root user and kernel does not block them.
> > > > > > > > 
> > > > > > > > actually the direct access to HCI commands is being removed. So we have no plans to add new commands into the list since that it what the kernel is suppose to handle. If we wanted to expose this, then it has to be via mgmt.
> > > > > > > 
> > > > > > > Hi Marcel! Thank you for information. I have not know that this API is
> > > > > > > "deprecated" and is going to be removed. But userspace audio
> > > > > > > applications need to know what bluetooth adapter supports, so can you
> > > > > > > export result of these commands to userspace? My script linked above
> > > > > > > calls: OCF_READ_VOICE_SETTING, OCF_READ_LOCAL_COMMANDS,
> > > > > > > OCF_READ_LOCAL_EXT_FEATURES, OCF_READ_LOCAL_CODECS
> > > > > > 
> > > > > > Hello! Just a gently reminder for this question. How to retrieve
> > > > > > information about supported codecs from userspace by non-root user?
> > > > > > Because running all bluetooth audio applications by root is not really a
> > > > > > solution. Plus if above API for root user is going to be removed, what
> > > > > > is a replacement?
> > > > > 
> > > > > Hello!
> > > > > 
> > > > > I have not got any answer to my email from Marcel for months, so I'm
> > > > > adding other developers to loop. Could somebody tell me that is the
> > > > > replacement API if above one is going to be removed?
> > > > > 
> > > > > I was not able to find any documentation where could be described this
> > > > > API nor information about deprecation / removal.
> > > > > 
> > > > > And are you aware of the fact that removing of API could potentially
> > > > > break existing applications?
> > > > > 
> > > > > I really need to know which API should I use, because when I use API
> > > > > which is going to be removed, then my application stops working. And I
> > > > > really want to avoid it.
> > > > > 
> > > > > Also I have not got any response yet, how can I read list of supported
> > > > > codecs by bluetooth adapter by ordinary non-root user? Audio application
> > > > > needs to know list of supported codecs and it is really insane to run it
> > > > > as root.
> > > > 
> > > > Hello! This is just another reminder that I have not got any reply to
> > > > this email.
> > > > 
> > > > Does silence mean that audio applications are expected to work only
> > > > under root account and ordinary users are not able to use audio and list
> > > > supported codecs?
> > > 
> > > Hello! I have not got any reply for this issue for 10 months and if you
> > > are going to remove (or after these 10 months you already did it?)
> > > existing HCI API from kernel it would break existing and working
> > > userspace application. How do you want to handle such regressions?
> > 
> > What git commit caused this regression?
> 
> Hello! Marcel in January wrote that access for HCI commands is being
> removed from kernel. I do not know if he managed to do it in since
> January, but I'm going to check it...

So you don't see a regression/problem, but are saying there is one?

odd...

  reply	other threads:[~2020-09-30  9:20 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-28 17:12 OCF_READ_LOCAL_CODECS is permitted only for root user Pali Rohár
2020-01-04  9:44 ` Marcel Holtmann
2020-01-04 10:24   ` Pali Rohár
2020-02-09 13:21     ` Pali Rohár
2020-04-14 22:56       ` Removal of HCI commands? (Was: Re: OCF_READ_LOCAL_CODECS is permitted only for root user) Pali Rohár
2020-08-08 13:27         ` Pali Rohár
2020-09-29 21:32           ` Removal of HCI commands, userspace bluetooth regression? Pali Rohár
2020-09-30  8:02             ` Greg Kroah-Hartman
2020-09-30  8:16               ` Marcel Holtmann
2020-09-30  9:20                 ` Greg Kroah-Hartman
2020-09-30  9:49                   ` Pali Rohár
2020-09-30  8:25               ` Pali Rohár
2020-09-30  9:20                 ` Greg Kroah-Hartman [this message]
2020-09-30  9:46                   ` Pali Rohár
2020-09-30 10:54                     ` Greg Kroah-Hartman
2020-09-30 11:00                       ` Pali Rohár
2020-09-30 11:20                         ` Greg Kroah-Hartman
2020-09-30 11:51                           ` Pali Rohár
2020-09-30 12:02                             ` Greg Kroah-Hartman

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=20200930092043.GB1580803@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=davem@davemloft.net \
    --cc=david@ixit.cz \
    --cc=johan.hedberg@gmail.com \
    --cc=kuba@kernel.org \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luiz.dentz@gmail.com \
    --cc=marcel@holtmann.org \
    --cc=netdev@vger.kernel.org \
    --cc=pali@kernel.org \
    --cc=pavel@ucw.cz \
    --cc=sre@kernel.org \
    --cc=torvalds@linux-foundation.org \
    /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;
as well as URLs for NNTP newsgroup(s).