Skip to content
Snippets Groups Projects
Commit 24836479 authored by Philipp Reisner's avatar Philipp Reisner Committed by David S. Miller
Browse files

dm/connector: Only process connector packages from privileged processes

parent f1489cfb
Branches
Tags
No related merge requests found
...@@ -133,6 +133,9 @@ static void cn_ulog_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp) ...@@ -133,6 +133,9 @@ static void cn_ulog_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp)
{ {
struct dm_ulog_request *tfr = (struct dm_ulog_request *)(msg + 1); struct dm_ulog_request *tfr = (struct dm_ulog_request *)(msg + 1);
if (!cap_raised(nsp->eff_cap, CAP_SYS_ADMIN))
return;
spin_lock(&receiving_list_lock); spin_lock(&receiving_list_lock);
if (msg->len == 0) if (msg->len == 0)
fill_pkg(msg, NULL); fill_pkg(msg, NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment