be2net: Fix initialization sequence for Lancer
[linux-2.6/btrfs-unstable.git] / security / selinux / netlink.c
blob8a77725423e0848e671a1f5bdb021fa414de6059
1 /*
2 * Netlink event notifications for SELinux.
4 * Author: James Morris <jmorris@redhat.com>
6 * Copyright (C) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
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.
12 #include <linux/init.h>
13 #include <linux/types.h>
14 #include <linux/slab.h>
15 #include <linux/stddef.h>
16 #include <linux/kernel.h>
17 #include <linux/export.h>
18 #include <linux/skbuff.h>
19 #include <linux/netlink.h>
20 #include <linux/selinux_netlink.h>
21 #include <net/net_namespace.h>
22 #include <net/netlink.h>
24 #include "security.h"
26 static struct sock *selnl;
28 static int selnl_msglen(int msgtype)
30 int ret = 0;
32 switch (msgtype) {
33 case SELNL_MSG_SETENFORCE:
34 ret = sizeof(struct selnl_msg_setenforce);
35 break;
37 case SELNL_MSG_POLICYLOAD:
38 ret = sizeof(struct selnl_msg_policyload);
39 break;
41 default:
42 BUG();
44 return ret;
47 static void selnl_add_payload(struct nlmsghdr *nlh, int len, int msgtype, void *data)
49 switch (msgtype) {
50 case SELNL_MSG_SETENFORCE: {
51 struct selnl_msg_setenforce *msg = nlmsg_data(nlh);
53 memset(msg, 0, len);
54 msg->val = *((int *)data);
55 break;
58 case SELNL_MSG_POLICYLOAD: {
59 struct selnl_msg_policyload *msg = nlmsg_data(nlh);
61 memset(msg, 0, len);
62 msg->seqno = *((u32 *)data);
63 break;
66 default:
67 BUG();
71 static void selnl_notify(int msgtype, void *data)
73 int len;
74 sk_buff_data_t tmp;
75 struct sk_buff *skb;
76 struct nlmsghdr *nlh;
78 len = selnl_msglen(msgtype);
80 skb = alloc_skb(NLMSG_SPACE(len), GFP_USER);
81 if (!skb)
82 goto oom;
84 tmp = skb->tail;
85 nlh = nlmsg_put(skb, 0, 0, msgtype, len, 0);
86 if (!nlh)
87 goto out_kfree_skb;
88 selnl_add_payload(nlh, len, msgtype, data);
89 nlh->nlmsg_len = skb->tail - tmp;
90 NETLINK_CB(skb).dst_group = SELNLGRP_AVC;
91 netlink_broadcast(selnl, skb, 0, SELNLGRP_AVC, GFP_USER);
92 out:
93 return;
95 out_kfree_skb:
96 kfree_skb(skb);
97 oom:
98 printk(KERN_ERR "SELinux: OOM in %s\n", __func__);
99 goto out;
102 void selnl_notify_setenforce(int val)
104 selnl_notify(SELNL_MSG_SETENFORCE, &val);
107 void selnl_notify_policyload(u32 seqno)
109 selnl_notify(SELNL_MSG_POLICYLOAD, &seqno);
112 static int __init selnl_init(void)
114 struct netlink_kernel_cfg cfg = {
115 .groups = SELNLGRP_MAX,
118 selnl = netlink_kernel_create(&init_net, NETLINK_SELINUX,
119 THIS_MODULE, &cfg);
120 if (selnl == NULL)
121 panic("SELinux: Cannot create netlink socket.");
122 netlink_set_nonroot(NETLINK_SELINUX, NL_NONROOT_RECV);
123 return 0;
126 __initcall(selnl_init);