diff options
author | Philipp Reisner <philipp.reisner@linbit.com> | 2009-10-01 22:40:11 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-02 13:54:18 -0400 |
commit | cc44578b5a508889beb8ae3ccd4d2bbdf17bc86c (patch) | |
tree | 404dea134f659856a275c2f89cdb6ee623806213 /drivers/video/uvesafb.c | |
parent | 98a5783af02f4c9b87b676d7bbda6258045cfc76 (diff) |
uvesafb/connector: Disallow unpliviged users to send netlink packets
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/video/uvesafb.c')
-rw-r--r-- | drivers/video/uvesafb.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/uvesafb.c b/drivers/video/uvesafb.c index aa7cd959cced..e35232a18571 100644 --- a/drivers/video/uvesafb.c +++ b/drivers/video/uvesafb.c | |||
@@ -72,6 +72,9 @@ static void uvesafb_cn_callback(struct cn_msg *msg, struct netlink_skb_parms *ns | |||
72 | struct uvesafb_task *utask; | 72 | struct uvesafb_task *utask; |
73 | struct uvesafb_ktask *task; | 73 | struct uvesafb_ktask *task; |
74 | 74 | ||
75 | if (!cap_raised(nsp->eff_cap, CAP_SYS_ADMIN)) | ||
76 | return; | ||
77 | |||
75 | if (msg->seq >= UVESAFB_TASKS_MAX) | 78 | if (msg->seq >= UVESAFB_TASKS_MAX) |
76 | return; | 79 | return; |
77 | 80 | ||