linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH BlueZ] adapter: Fix initializing GATT server for BR/EDR only controllers
@ 2018-02-14 11:41 Luiz Augusto von Dentz
  2018-02-14 12:45 ` Szymon Janc
  0 siblings, 1 reply; 2+ messages in thread
From: Luiz Augusto von Dentz @ 2018-02-14 11:41 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

Controller that do not support LE bearer shall not use GATT server for
anything.
---
 src/adapter.c | 14 ++++++++------
 src/main.conf |  2 +-
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/src/adapter.c b/src/adapter.c
index bd5c1e150..8b785dcfd 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -7745,6 +7745,12 @@ static int adapter_register(struct btd_adapter *adapter)
 		agent_unref(agent);
 	}
 
+	/* Don't start GATT database and advertising managers on
+	 * non-LE controllers.
+	 */
+	if (!(adapter->supported_settings & MGMT_SETTING_LE))
+		goto load;
+
 	adapter->database = btd_gatt_database_new(adapter);
 	if (!adapter->database) {
 		btd_error(adapter->dev_id,
@@ -7753,18 +7759,14 @@ static int adapter_register(struct btd_adapter *adapter)
 		return -EINVAL;
 	}
 
-	/* Don't start advertising managers on non-LE controllers. */
-	if (adapter->supported_settings & MGMT_SETTING_LE)
-		adapter->adv_manager = btd_adv_manager_new(adapter);
-	else
-		btd_info(adapter->dev_id,
-			"LEAdvertisingManager skipped, LE unavailable");
+	adapter->adv_manager = btd_adv_manager_new(adapter);
 
 	db = btd_gatt_database_get_db(adapter->database);
 	adapter->db_id = gatt_db_register(db, services_modified,
 							services_modified,
 							adapter, NULL);
 
+load:
 	load_config(adapter);
 	fix_storage(adapter);
 	load_drivers(adapter);
diff --git a/src/main.conf b/src/main.conf
index 21986b386..b3f8bb274 100644
--- a/src/main.conf
+++ b/src/main.conf
@@ -42,7 +42,7 @@
 # Restricts all controllers to the specified transport. Default value
 # is "dual", i.e. both BR/EDR and LE enabled (when supported by the HW).
 # Possible values: "dual", "bredr", "le"
-#ControllerMode = dual
+ControllerMode = bredr
 
 # Enables Multi Profile Specification support. This allows to specify if
 # system supports only Multiple Profiles Single Device (MPSD) configuration
-- 
2.14.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH BlueZ] adapter: Fix initializing GATT server for BR/EDR only controllers
  2018-02-14 11:41 [PATCH BlueZ] adapter: Fix initializing GATT server for BR/EDR only controllers Luiz Augusto von Dentz
@ 2018-02-14 12:45 ` Szymon Janc
  0 siblings, 0 replies; 2+ messages in thread
From: Szymon Janc @ 2018-02-14 12:45 UTC (permalink / raw)
  To: Luiz Augusto von Dentz; +Cc: linux-bluetooth

Hi Luiz,

On Wednesday, 14 February 2018 12:41:33 CET Luiz Augusto von Dentz wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> Controller that do not support LE bearer shall not use GATT server for
> anything.
> ---
>  src/adapter.c | 14 ++++++++------
>  src/main.conf |  2 +-
>  2 files changed, 9 insertions(+), 7 deletions(-)
> 
> diff --git a/src/adapter.c b/src/adapter.c
> index bd5c1e150..8b785dcfd 100644
> --- a/src/adapter.c
> +++ b/src/adapter.c
> @@ -7745,6 +7745,12 @@ static int adapter_register(struct btd_adapter
> *adapter) agent_unref(agent);
>  	}
> 
> +	/* Don't start GATT database and advertising managers on
> +	 * non-LE controllers.
> +	 */
> +	if (!(adapter->supported_settings & MGMT_SETTING_LE))
> +		goto load;
> +
>  	adapter->database = btd_gatt_database_new(adapter);
>  	if (!adapter->database) {
>  		btd_error(adapter->dev_id,
> @@ -7753,18 +7759,14 @@ static int adapter_register(struct btd_adapter
> *adapter) return -EINVAL;
>  	}
> 
> -	/* Don't start advertising managers on non-LE controllers. */
> -	if (adapter->supported_settings & MGMT_SETTING_LE)
> -		adapter->adv_manager = btd_adv_manager_new(adapter);
> -	else
> -		btd_info(adapter->dev_id,
> -			"LEAdvertisingManager skipped, LE unavailable");
> +	adapter->adv_manager = btd_adv_manager_new(adapter);
> 
>  	db = btd_gatt_database_get_db(adapter->database);
>  	adapter->db_id = gatt_db_register(db, services_modified,
>  							services_modified,
>  							adapter, NULL);
> 
> +load:
>  	load_config(adapter);
>  	fix_storage(adapter);
>  	load_drivers(adapter);
> diff --git a/src/main.conf b/src/main.conf
> index 21986b386..b3f8bb274 100644
> --- a/src/main.conf
> +++ b/src/main.conf
> @@ -42,7 +42,7 @@
>  # Restricts all controllers to the specified transport. Default value
>  # is "dual", i.e. both BR/EDR and LE enabled (when supported by the HW).
>  # Possible values: "dual", "bredr", "le"
> -#ControllerMode = dual
> +ControllerMode = bredr

I don't think we want to default to that :)

> 
>  # Enables Multi Profile Specification support. This allows to specify if
>  # system supports only Multiple Profiles Single Device (MPSD) configuration


-- 
pozdrawiam
Szymon Janc



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-02-14 12:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-14 11:41 [PATCH BlueZ] adapter: Fix initializing GATT server for BR/EDR only controllers Luiz Augusto von Dentz
2018-02-14 12:45 ` Szymon Janc

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).