All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ] mesh: Add authorization checks for Manager iface methods
@ 2019-10-30  6:27 Inga Stotland
  2019-11-04 17:56 ` Gix, Brian
  0 siblings, 1 reply; 2+ messages in thread
From: Inga Stotland @ 2019-10-30  6:27 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: brian.gix, Inga Stotland

This adds a check for org.bluez.mesh.Manager1 interface calls to
validate that a message sender, i.e. thatt the sender is the original
owner of the node object generated on Attach() method call.
If the check fails, org.bluez.mesh.Error.NotAuthorized is returned.
---
 mesh/manager.c | 60 +++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 57 insertions(+), 3 deletions(-)

diff --git a/mesh/manager.c b/mesh/manager.c
index 633597659..b39ea6ed7 100644
--- a/mesh/manager.c
+++ b/mesh/manager.c
@@ -287,6 +287,10 @@ static struct l_dbus_message *import_node_call(struct l_dbus *dbus,
 	uint8_t num_ele;
 	uint8_t *key;
 	uint32_t n;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "qyay", &primary, &num_ele,
 								&iter_key))
@@ -311,6 +315,10 @@ static struct l_dbus_message *delete_node_call(struct l_dbus *dbus,
 	struct mesh_net *net = node_get_net(node);
 	uint16_t primary;
 	uint8_t num_ele;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "qy", &primary, &num_ele))
 		return dbus_error(msg, MESH_ERROR_INVALID_ARGS, NULL);
@@ -368,6 +376,10 @@ static struct l_dbus_message *start_scan_call(struct l_dbus *dbus,
 	uint16_t duration;
 	struct mesh_io *io;
 	struct mesh_net *net;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "q", &duration))
 		return dbus_error(msg, MESH_ERROR_INVALID_ARGS, NULL);
@@ -402,11 +414,17 @@ static struct l_dbus_message *cancel_scan_call(struct l_dbus *dbus,
 						void *user_data)
 {
 	struct mesh_node *node = user_data;
+	const char *sender = l_dbus_message_get_sender(msg);
 
-	if (scan_node != node)
-		return dbus_error(msg, MESH_ERROR_BUSY, NULL);
+	if (strcmp(sender, node_get_owner(node)) || !node_is_provisioner(node))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
-	scan_cancel(NULL, node);
+	if (scan_node) {
+		if (scan_node != node)
+			return dbus_error(msg, MESH_ERROR_BUSY, NULL);
+
+		scan_cancel(NULL, node);
+	}
 
 	return l_dbus_message_new_method_return(msg);
 }
@@ -446,6 +464,10 @@ static struct l_dbus_message *create_subnet_call(struct l_dbus *dbus,
 	struct mesh_node *node = user_data;
 	uint8_t key[16];
 	uint16_t net_idx;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "q", &net_idx) ||
 						net_idx == PRIMARY_NET_IDX)
@@ -464,6 +486,10 @@ static struct l_dbus_message *update_subnet_call(struct l_dbus *dbus,
 	struct mesh_node *node = user_data;
 	struct keyring_net_key key;
 	uint16_t net_idx;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "q", &net_idx) ||
 						net_idx > MAX_KEY_IDX)
@@ -501,6 +527,10 @@ static struct l_dbus_message *delete_subnet_call(struct l_dbus *dbus,
 {
 	struct mesh_node *node = user_data;
 	uint16_t net_idx;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "q", &net_idx) ||
 						net_idx > MAX_KEY_IDX)
@@ -520,6 +550,10 @@ static struct l_dbus_message *import_subnet_call(struct l_dbus *dbus,
 	uint16_t net_idx;
 	uint8_t *key;
 	uint32_t n;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "qay", &net_idx, &iter_key))
 		return dbus_error(msg, MESH_ERROR_INVALID_ARGS, NULL);
@@ -574,6 +608,10 @@ static struct l_dbus_message *create_appkey_call(struct l_dbus *dbus,
 	struct mesh_node *node = user_data;
 	uint16_t net_idx, app_idx;
 	uint8_t key[16];
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "qq", &net_idx, &app_idx))
 		return dbus_error(msg, MESH_ERROR_INVALID_ARGS, NULL);
@@ -591,6 +629,10 @@ static struct l_dbus_message *update_appkey_call(struct l_dbus *dbus,
 	struct keyring_net_key net_key;
 	struct keyring_app_key app_key;
 	uint16_t app_idx;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "q", &app_idx) ||
 							app_idx > MAX_KEY_IDX)
@@ -618,6 +660,10 @@ static struct l_dbus_message *delete_appkey_call(struct l_dbus *dbus,
 {
 	struct mesh_node *node = user_data;
 	uint16_t app_idx;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "q", &app_idx))
 		return dbus_error(msg, MESH_ERROR_INVALID_ARGS, NULL);
@@ -636,6 +682,10 @@ static struct l_dbus_message *import_appkey_call(struct l_dbus *dbus,
 	uint16_t net_idx, app_idx;
 	uint8_t *key;
 	uint32_t n;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "qqay", &net_idx, &app_idx,
 								&iter_key))
@@ -657,6 +707,10 @@ static struct l_dbus_message *set_key_phase_call(struct l_dbus *dbus,
 	struct keyring_net_key key;
 	uint16_t net_idx;
 	uint8_t phase;
+	const char *sender = l_dbus_message_get_sender(msg);
+
+	if (strcmp(sender, node_get_owner(node)))
+		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
 
 	if (!l_dbus_message_get_arguments(msg, "qy", &net_idx, &phase) ||
 					phase == KEY_REFRESH_PHASE_ONE ||
-- 
2.21.0


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

* Re: [PATCH BlueZ] mesh: Add authorization checks for Manager iface methods
  2019-10-30  6:27 [PATCH BlueZ] mesh: Add authorization checks for Manager iface methods Inga Stotland
@ 2019-11-04 17:56 ` Gix, Brian
  0 siblings, 0 replies; 2+ messages in thread
From: Gix, Brian @ 2019-11-04 17:56 UTC (permalink / raw)
  To: linux-bluetooth, Stotland, Inga

Applied

On Tue, 2019-10-29 at 23:27 -0700, Inga Stotland wrote:
> This adds a check for org.bluez.mesh.Manager1 interface calls to
> validate that a message sender, i.e. thatt the sender is the original
> owner of the node object generated on Attach() method call.
> If the check fails, org.bluez.mesh.Error.NotAuthorized is returned.
> ---
>  mesh/manager.c | 60 +++++++++++++++++++++++++++++++++++++++++++++++---
>  1 file changed, 57 insertions(+), 3 deletions(-)
> 
> diff --git a/mesh/manager.c b/mesh/manager.c
> index 633597659..b39ea6ed7 100644
> --- a/mesh/manager.c
> +++ b/mesh/manager.c
> @@ -287,6 +287,10 @@ static struct l_dbus_message *import_node_call(struct l_dbus *dbus,
>  	uint8_t num_ele;
>  	uint8_t *key;
>  	uint32_t n;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "qyay", &primary, &num_ele,
>  								&iter_key))
> @@ -311,6 +315,10 @@ static struct l_dbus_message *delete_node_call(struct l_dbus *dbus,
>  	struct mesh_net *net = node_get_net(node);
>  	uint16_t primary;
>  	uint8_t num_ele;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "qy", &primary, &num_ele))
>  		return dbus_error(msg, MESH_ERROR_INVALID_ARGS, NULL);
> @@ -368,6 +376,10 @@ static struct l_dbus_message *start_scan_call(struct l_dbus *dbus,
>  	uint16_t duration;
>  	struct mesh_io *io;
>  	struct mesh_net *net;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "q", &duration))
>  		return dbus_error(msg, MESH_ERROR_INVALID_ARGS, NULL);
> @@ -402,11 +414,17 @@ static struct l_dbus_message *cancel_scan_call(struct l_dbus *dbus,
>  						void *user_data)
>  {
>  	struct mesh_node *node = user_data;
> +	const char *sender = l_dbus_message_get_sender(msg);
>  
> -	if (scan_node != node)
> -		return dbus_error(msg, MESH_ERROR_BUSY, NULL);
> +	if (strcmp(sender, node_get_owner(node)) || !node_is_provisioner(node))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
> -	scan_cancel(NULL, node);
> +	if (scan_node) {
> +		if (scan_node != node)
> +			return dbus_error(msg, MESH_ERROR_BUSY, NULL);
> +
> +		scan_cancel(NULL, node);
> +	}
>  
>  	return l_dbus_message_new_method_return(msg);
>  }
> @@ -446,6 +464,10 @@ static struct l_dbus_message *create_subnet_call(struct l_dbus *dbus,
>  	struct mesh_node *node = user_data;
>  	uint8_t key[16];
>  	uint16_t net_idx;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "q", &net_idx) ||
>  						net_idx == PRIMARY_NET_IDX)
> @@ -464,6 +486,10 @@ static struct l_dbus_message *update_subnet_call(struct l_dbus *dbus,
>  	struct mesh_node *node = user_data;
>  	struct keyring_net_key key;
>  	uint16_t net_idx;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "q", &net_idx) ||
>  						net_idx > MAX_KEY_IDX)
> @@ -501,6 +527,10 @@ static struct l_dbus_message *delete_subnet_call(struct l_dbus *dbus,
>  {
>  	struct mesh_node *node = user_data;
>  	uint16_t net_idx;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "q", &net_idx) ||
>  						net_idx > MAX_KEY_IDX)
> @@ -520,6 +550,10 @@ static struct l_dbus_message *import_subnet_call(struct l_dbus *dbus,
>  	uint16_t net_idx;
>  	uint8_t *key;
>  	uint32_t n;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "qay", &net_idx, &iter_key))
>  		return dbus_error(msg, MESH_ERROR_INVALID_ARGS, NULL);
> @@ -574,6 +608,10 @@ static struct l_dbus_message *create_appkey_call(struct l_dbus *dbus,
>  	struct mesh_node *node = user_data;
>  	uint16_t net_idx, app_idx;
>  	uint8_t key[16];
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "qq", &net_idx, &app_idx))
>  		return dbus_error(msg, MESH_ERROR_INVALID_ARGS, NULL);
> @@ -591,6 +629,10 @@ static struct l_dbus_message *update_appkey_call(struct l_dbus *dbus,
>  	struct keyring_net_key net_key;
>  	struct keyring_app_key app_key;
>  	uint16_t app_idx;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "q", &app_idx) ||
>  							app_idx > MAX_KEY_IDX)
> @@ -618,6 +660,10 @@ static struct l_dbus_message *delete_appkey_call(struct l_dbus *dbus,
>  {
>  	struct mesh_node *node = user_data;
>  	uint16_t app_idx;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "q", &app_idx))
>  		return dbus_error(msg, MESH_ERROR_INVALID_ARGS, NULL);
> @@ -636,6 +682,10 @@ static struct l_dbus_message *import_appkey_call(struct l_dbus *dbus,
>  	uint16_t net_idx, app_idx;
>  	uint8_t *key;
>  	uint32_t n;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "qqay", &net_idx, &app_idx,
>  								&iter_key))
> @@ -657,6 +707,10 @@ static struct l_dbus_message *set_key_phase_call(struct l_dbus *dbus,
>  	struct keyring_net_key key;
>  	uint16_t net_idx;
>  	uint8_t phase;
> +	const char *sender = l_dbus_message_get_sender(msg);
> +
> +	if (strcmp(sender, node_get_owner(node)))
> +		return dbus_error(msg, MESH_ERROR_NOT_AUTHORIZED, NULL);
>  
>  	if (!l_dbus_message_get_arguments(msg, "qy", &net_idx, &phase) ||
>  					phase == KEY_REFRESH_PHASE_ONE ||

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

end of thread, other threads:[~2019-11-04 17:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-30  6:27 [PATCH BlueZ] mesh: Add authorization checks for Manager iface methods Inga Stotland
2019-11-04 17:56 ` Gix, Brian

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.