All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ] btmon-logger: Fix stack corruption
@ 2024-01-21 10:03 Mariusz Kozłowski
  2024-01-21 11:06 ` [BlueZ] " bluez.test.bot
  2024-01-22 18:27 ` [PATCH BlueZ] " Luiz Augusto von Dentz
  0 siblings, 2 replies; 5+ messages in thread
From: Mariusz Kozłowski @ 2024-01-21 10:03 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Mariusz Kozłowski

Version 3 capability masks are 64 bits in size.
---
 tools/btmon-logger.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tools/btmon-logger.c b/tools/btmon-logger.c
index a770ad575..1f6db3751 100644
--- a/tools/btmon-logger.c
+++ b/tools/btmon-logger.c
@@ -161,14 +161,14 @@ extern int capset(struct __user_cap_header_struct *header,
 static void drop_capabilities(void)
 {
 	struct __user_cap_header_struct header;
-	struct __user_cap_data_struct cap;
+	struct __user_cap_data_struct cap[_LINUX_CAPABILITY_U32S_3];
 	unsigned int mask;
 	int err;
 
 	header.version = _LINUX_CAPABILITY_VERSION_3;
 	header.pid = 0;
 
-	err = capget(&header, &cap);
+	err = capget(&header, cap);
 	if (err) {
 		perror("Unable to get current capabilities");
 		return;
@@ -177,11 +177,11 @@ static void drop_capabilities(void)
 	/* not needed anymore since monitor socket is already open */
 	mask = ~CAP_TO_MASK(CAP_NET_RAW);
 
-	cap.effective &= mask;
-	cap.permitted &= mask;
-	cap.inheritable &= mask;
+	cap[0].effective &= mask;
+	cap[0].permitted &= mask;
+	cap[0].inheritable &= mask;
 
-	err = capset(&header, &cap);
+	err = capset(&header, cap);
 	if (err)
 		perror("Failed to set capabilities");
 }
-- 
2.34.1


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

end of thread, other threads:[~2024-02-12  8:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-21 10:03 [PATCH BlueZ] btmon-logger: Fix stack corruption Mariusz Kozłowski
2024-01-21 11:06 ` [BlueZ] " bluez.test.bot
2024-01-22 18:27 ` [PATCH BlueZ] " Luiz Augusto von Dentz
2024-01-23  8:12   ` Mariusz Kozlowski
2024-02-12  8:30     ` Mariusz Kozlowski

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.