* [PATCH] tools/sdptool: report error when local SDP server is not found
@ 2026-01-28 15:39 Magdalena Trivina Sihotang
2026-01-28 16:47 ` bluez.test.bot
2026-01-28 17:28 ` [PATCH] " Luiz Augusto von Dentz
0 siblings, 2 replies; 3+ messages in thread
From: Magdalena Trivina Sihotang @ 2026-01-28 15:39 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Magdalena Trivina
From: Magdalena Trivina <trivin2024@gmail.com>
Currently, the sdptool add, setattr and setseq commands do not
report any error when the local SDP server is unavailable.
Add an explicit error message so users can distinguish between
successful execution and failure due to a missing local server.
Signed-off-by: Magdalena Trivina Sihotang <trivin2024@gmail.com>
---
tools/sdptool.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/tools/sdptool.c b/tools/sdptool.c
index 4e95a18d0..4f4dd41ac 100644
--- a/tools/sdptool.c
+++ b/tools/sdptool.c
@@ -871,8 +871,10 @@ static int cmd_setattr(int argc, char **argv)
/* Do it */
sess = sdp_connect(BDADDR_ANY, BDADDR_LOCAL, 0);
- if (!sess)
+ if (!sess) {
+ printf("No local SDP server!\n");
return -1;
+ }
status = set_attrib(sess, handle, attrib, argv[2]);
sdp_close(sess);
@@ -1033,8 +1035,10 @@ static int cmd_setseq(int argc, char **argv)
/* Do it */
sess = sdp_connect(BDADDR_ANY, BDADDR_LOCAL, 0);
- if (!sess)
+ if (!sess) {
+ printf("No local SDP server!\n");
return -1;
+ }
status = set_attribseq(sess, handle, attrib, argc, argv);
sdp_close(sess);
@@ -3692,8 +3696,10 @@ static int add_service(bdaddr_t *bdaddr, svc_info_t *si)
return -1;
sess = sdp_connect(&interface, BDADDR_LOCAL, SDP_RETRY_IF_BUSY);
- if (!sess)
+ if (!sess) {
+ printf("No local SDP server!\n");
return -1;
+ }
for (i = 0; service[i].name; i++)
if (!strcasecmp(service[i].name, si->name)) {
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* RE: tools/sdptool: report error when local SDP server is not found
2026-01-28 15:39 [PATCH] tools/sdptool: report error when local SDP server is not found Magdalena Trivina Sihotang
@ 2026-01-28 16:47 ` bluez.test.bot
2026-01-28 17:28 ` [PATCH] " Luiz Augusto von Dentz
1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2026-01-28 16:47 UTC (permalink / raw)
To: linux-bluetooth, trivin2024
[-- Attachment #1: Type: text/plain, Size: 1262 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=1048150
---Test result---
Test Summary:
CheckPatch PENDING 0.31 seconds
GitLint PENDING 0.43 seconds
BuildEll PASS 19.95 seconds
BluezMake PASS 635.71 seconds
MakeCheck PASS 18.34 seconds
MakeDistcheck PASS 243.44 seconds
CheckValgrind PASS 294.09 seconds
CheckSmatch PASS 349.52 seconds
bluezmakeextell PASS 183.15 seconds
IncrementalBuild PENDING 0.40 seconds
ScanBuild PASS 1024.20 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] tools/sdptool: report error when local SDP server is not found
2026-01-28 15:39 [PATCH] tools/sdptool: report error when local SDP server is not found Magdalena Trivina Sihotang
2026-01-28 16:47 ` bluez.test.bot
@ 2026-01-28 17:28 ` Luiz Augusto von Dentz
1 sibling, 0 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2026-01-28 17:28 UTC (permalink / raw)
To: Magdalena Trivina Sihotang; +Cc: linux-bluetooth
Hi Magdalena,
On Wed, Jan 28, 2026 at 11:18 AM Magdalena Trivina Sihotang
<trivin2024@gmail.com> wrote:
>
> From: Magdalena Trivina <trivin2024@gmail.com>
>
> Currently, the sdptool add, setattr and setseq commands do not
> report any error when the local SDP server is unavailable.
>
> Add an explicit error message so users can distinguish between
> successful execution and failure due to a missing local server.
>
> Signed-off-by: Magdalena Trivina Sihotang <trivin2024@gmail.com>
> ---
> tools/sdptool.c | 12 +++++++++---
> 1 file changed, 9 insertions(+), 3 deletions(-)
>
> diff --git a/tools/sdptool.c b/tools/sdptool.c
> index 4e95a18d0..4f4dd41ac 100644
> --- a/tools/sdptool.c
> +++ b/tools/sdptool.c
> @@ -871,8 +871,10 @@ static int cmd_setattr(int argc, char **argv)
>
> /* Do it */
> sess = sdp_connect(BDADDR_ANY, BDADDR_LOCAL, 0);
> - if (!sess)
> + if (!sess) {
> + printf("No local SDP server!\n");
> return -1;
> + }
>
> status = set_attrib(sess, handle, attrib, argv[2]);
> sdp_close(sess);
> @@ -1033,8 +1035,10 @@ static int cmd_setseq(int argc, char **argv)
>
> /* Do it */
> sess = sdp_connect(BDADDR_ANY, BDADDR_LOCAL, 0);
> - if (!sess)
> + if (!sess) {
> + printf("No local SDP server!\n");
> return -1;
> + }
>
> status = set_attribseq(sess, handle, attrib, argc, argv);
> sdp_close(sess);
> @@ -3692,8 +3696,10 @@ static int add_service(bdaddr_t *bdaddr, svc_info_t *si)
> return -1;
>
> sess = sdp_connect(&interface, BDADDR_LOCAL, SDP_RETRY_IF_BUSY);
> - if (!sess)
> + if (!sess) {
> + printf("No local SDP server!\n");
> return -1;
> + }
>
> for (i = 0; service[i].name; i++)
> if (!strcasecmp(service[i].name, si->name)) {
> --
> 2.34.1
Tools such as sdptool shall be considered deprecated, if you want to
add records please use:
https://github.com/bluez/bluez/blob/master/doc/org.bluez.ProfileManager.rst
--
Luiz Augusto von Dentz
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-01-28 17:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-28 15:39 [PATCH] tools/sdptool: report error when local SDP server is not found Magdalena Trivina Sihotang
2026-01-28 16:47 ` bluez.test.bot
2026-01-28 17:28 ` [PATCH] " Luiz Augusto von Dentz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox