blob: 0e147b6914ad1c9d1f7bb66967e8cabc39f2f94c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Netlink event notifications for SELinux.
3 *
4 * Author: James Morris <jmorris@redhat.com>
5 *
6 * Copyright (C) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2,
10 * as published by the Free Software Foundation.
11 */
12#include <linux/init.h>
13#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/stddef.h>
16#include <linux/kernel.h>
17#include <linux/list.h>
18#include <linux/skbuff.h>
19#include <linux/netlink.h>
20#include <linux/selinux_netlink.h>
Eric W. Biedermanb4b51022007-09-12 13:05:38 +020021#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23static struct sock *selnl;
24
25static int selnl_msglen(int msgtype)
26{
27 int ret = 0;
Eric Parisc544c022008-04-18 17:38:24 -040028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 switch (msgtype) {
30 case SELNL_MSG_SETENFORCE:
31 ret = sizeof(struct selnl_msg_setenforce);
32 break;
Eric Parisc544c022008-04-18 17:38:24 -040033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 case SELNL_MSG_POLICYLOAD:
35 ret = sizeof(struct selnl_msg_policyload);
36 break;
Eric Parisc544c022008-04-18 17:38:24 -040037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 default:
39 BUG();
40 }
41 return ret;
42}
43
44static void selnl_add_payload(struct nlmsghdr *nlh, int len, int msgtype, void *data)
45{
46 switch (msgtype) {
47 case SELNL_MSG_SETENFORCE: {
48 struct selnl_msg_setenforce *msg = NLMSG_DATA(nlh);
Eric Parisc544c022008-04-18 17:38:24 -040049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 memset(msg, 0, len);
51 msg->val = *((int *)data);
52 break;
53 }
Eric Parisc544c022008-04-18 17:38:24 -040054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 case SELNL_MSG_POLICYLOAD: {
56 struct selnl_msg_policyload *msg = NLMSG_DATA(nlh);
Eric Parisc544c022008-04-18 17:38:24 -040057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 memset(msg, 0, len);
59 msg->seqno = *((u32 *)data);
60 break;
61 }
62
63 default:
64 BUG();
65 }
66}
67
68static void selnl_notify(int msgtype, void *data)
69{
70 int len;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -070071 sk_buff_data_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 struct sk_buff *skb;
73 struct nlmsghdr *nlh;
Eric Parisc544c022008-04-18 17:38:24 -040074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 len = selnl_msglen(msgtype);
Eric Parisc544c022008-04-18 17:38:24 -040076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 skb = alloc_skb(NLMSG_SPACE(len), GFP_USER);
78 if (!skb)
79 goto oom;
80
81 tmp = skb->tail;
82 nlh = NLMSG_PUT(skb, 0, 0, msgtype, len);
83 selnl_add_payload(nlh, len, msgtype, data);
84 nlh->nlmsg_len = skb->tail - tmp;
Patrick McHardyac6d4392005-08-14 19:29:52 -070085 NETLINK_CB(skb).dst_group = SELNLGRP_AVC;
86 netlink_broadcast(selnl, skb, 0, SELNLGRP_AVC, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087out:
88 return;
Eric Parisc544c022008-04-18 17:38:24 -040089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090nlmsg_failure:
91 kfree_skb(skb);
92oom:
Harvey Harrisondd6f9532008-03-06 10:03:59 +110093 printk(KERN_ERR "SELinux: OOM in %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 goto out;
95}
96
97void selnl_notify_setenforce(int val)
98{
99 selnl_notify(SELNL_MSG_SETENFORCE, &val);
100}
101
102void selnl_notify_policyload(u32 seqno)
103{
104 selnl_notify(SELNL_MSG_POLICYLOAD, &seqno);
105}
106
107static int __init selnl_init(void)
108{
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200109 selnl = netlink_kernel_create(&init_net, NETLINK_SELINUX,
110 SELNLGRP_MAX, NULL, NULL, THIS_MODULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if (selnl == NULL)
112 panic("SELinux: Cannot create netlink socket.");
Eric Parisc544c022008-04-18 17:38:24 -0400113 netlink_set_nonroot(NETLINK_SELINUX, NL_NONROOT_RECV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return 0;
115}
116
117__initcall(selnl_init);