* [PATCH BlueZ] mesh: Add provisioning algorithms config
@ 2024-08-28 5:32 Junho Lee
2024-08-28 7:01 ` [BlueZ] " bluez.test.bot
0 siblings, 1 reply; 2+ messages in thread
From: Junho Lee @ 2024-08-28 5:32 UTC (permalink / raw)
To: linux-bluetooth
I added the Algorithms config to the conf file because there was a
`TODO` comment waiting to be added to the config file, and it was a
mutable config.
I also removed the duplicate initialization code for Provisioning
Timeout and Algorithms.
Signed-off-by: Junho Lee <tot0roprog@gmail.com>
---
mesh/mesh-main.conf | 5 +++++
mesh/mesh.c | 8 ++++----
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/mesh/mesh-main.conf b/mesh/mesh-main.conf
index aca9e6fa5..72154493e 100644
--- a/mesh/mesh-main.conf
+++ b/mesh/mesh-main.conf
@@ -41,3 +41,8 @@
# Setting this value to zero means there's no timeout.
# Defaults to 60.
#ProvTimeout = 60
+
+# Bitmask of supported provisioning security algorithms.
+# Valid range: 0-65535
+# Defaults to 1.
+#Algorithms = 1
diff --git a/mesh/mesh.c b/mesh/mesh.c
index 91cf25175..49d252e5e 100644
--- a/mesh/mesh.c
+++ b/mesh/mesh.c
@@ -245,6 +245,10 @@ static void parse_settings(const char *mesh_conf_fname)
if (l_settings_get_uint(settings, "General", "ProvTimeout", &value))
mesh.prov_timeout = value;
+ if (l_settings_get_uint(settings, "General", "Algorithms", &value) &&
+ value <= 65535)
+ mesh.algorithms = value;
+
done:
l_settings_free(settings);
}
@@ -262,10 +266,6 @@ bool mesh_init(const char *config_dir, const char *mesh_conf_fname,
mesh_model_init();
mesh_agent_init();
- /* TODO: read mesh.conf */
- mesh.prov_timeout = DEFAULT_PROV_TIMEOUT;
- mesh.algorithms = DEFAULT_ALGORITHMS;
-
storage_dir = config_dir ? config_dir : MESH_STORAGEDIR;
l_info("Loading node configuration from %s", storage_dir);
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: [BlueZ] mesh: Add provisioning algorithms config
2024-08-28 5:32 [PATCH BlueZ] mesh: Add provisioning algorithms config Junho Lee
@ 2024-08-28 7:01 ` bluez.test.bot
0 siblings, 0 replies; 2+ messages in thread
From: bluez.test.bot @ 2024-08-28 7:01 UTC (permalink / raw)
To: linux-bluetooth, tot0roprog
[-- Attachment #1: Type: text/plain, Size: 948 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=884079
---Test result---
Test Summary:
CheckPatch PASS 0.36 seconds
GitLint PASS 0.25 seconds
BuildEll PASS 27.14 seconds
BluezMake PASS 1626.17 seconds
MakeCheck PASS 13.70 seconds
MakeDistcheck PASS 176.40 seconds
CheckValgrind PASS 251.86 seconds
CheckSmatch PASS 357.54 seconds
bluezmakeextell PASS 119.80 seconds
IncrementalBuild PASS 1399.35 seconds
ScanBuild PASS 998.01 seconds
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-08-28 7:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-28 5:32 [PATCH BlueZ] mesh: Add provisioning algorithms config Junho Lee
2024-08-28 7:01 ` [BlueZ] " bluez.test.bot
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.