Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/stddef.h> |
| 16 | #include <linux/kernel.h> |
Paul Gortmaker | 44fc7ea | 2011-05-26 20:52:10 -0400 | [diff] [blame] | 17 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/skbuff.h> |
| 19 | #include <linux/netlink.h> |
| 20 | #include <linux/selinux_netlink.h> |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 21 | #include <net/net_namespace.h> |
David S. Miller | 01f534d | 2012-06-26 21:41:57 -0700 | [diff] [blame] | 22 | #include <net/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
James Morris | 6a3fbe8 | 2011-08-30 12:09:15 +1000 | [diff] [blame] | 24 | #include "security.h" |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | static struct sock *selnl; |
| 27 | |
| 28 | static int selnl_msglen(int msgtype) |
| 29 | { |
| 30 | int ret = 0; |
Eric Paris | c544c02 | 2008-04-18 17:38:24 -0400 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | switch (msgtype) { |
| 33 | case SELNL_MSG_SETENFORCE: |
| 34 | ret = sizeof(struct selnl_msg_setenforce); |
| 35 | break; |
Eric Paris | c544c02 | 2008-04-18 17:38:24 -0400 | [diff] [blame] | 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | case SELNL_MSG_POLICYLOAD: |
| 38 | ret = sizeof(struct selnl_msg_policyload); |
| 39 | break; |
Eric Paris | c544c02 | 2008-04-18 17:38:24 -0400 | [diff] [blame] | 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | default: |
| 42 | BUG(); |
| 43 | } |
| 44 | return ret; |
| 45 | } |
| 46 | |
| 47 | static void selnl_add_payload(struct nlmsghdr *nlh, int len, int msgtype, void *data) |
| 48 | { |
| 49 | switch (msgtype) { |
| 50 | case SELNL_MSG_SETENFORCE: { |
David S. Miller | 01f534d | 2012-06-26 21:41:57 -0700 | [diff] [blame] | 51 | struct selnl_msg_setenforce *msg = nlmsg_data(nlh); |
Eric Paris | c544c02 | 2008-04-18 17:38:24 -0400 | [diff] [blame] | 52 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | memset(msg, 0, len); |
| 54 | msg->val = *((int *)data); |
| 55 | break; |
| 56 | } |
Eric Paris | c544c02 | 2008-04-18 17:38:24 -0400 | [diff] [blame] | 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | case SELNL_MSG_POLICYLOAD: { |
David S. Miller | 01f534d | 2012-06-26 21:41:57 -0700 | [diff] [blame] | 59 | struct selnl_msg_policyload *msg = nlmsg_data(nlh); |
Eric Paris | c544c02 | 2008-04-18 17:38:24 -0400 | [diff] [blame] | 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | memset(msg, 0, len); |
| 62 | msg->seqno = *((u32 *)data); |
| 63 | break; |
| 64 | } |
| 65 | |
| 66 | default: |
| 67 | BUG(); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | static void selnl_notify(int msgtype, void *data) |
| 72 | { |
| 73 | int len; |
Arnaldo Carvalho de Melo | 27a884d | 2007-04-19 20:29:13 -0700 | [diff] [blame] | 74 | sk_buff_data_t tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | struct sk_buff *skb; |
| 76 | struct nlmsghdr *nlh; |
Eric Paris | c544c02 | 2008-04-18 17:38:24 -0400 | [diff] [blame] | 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | len = selnl_msglen(msgtype); |
Eric Paris | c544c02 | 2008-04-18 17:38:24 -0400 | [diff] [blame] | 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | skb = alloc_skb(NLMSG_SPACE(len), GFP_USER); |
| 81 | if (!skb) |
| 82 | goto oom; |
| 83 | |
| 84 | tmp = skb->tail; |
David S. Miller | 01f534d | 2012-06-26 21:41:57 -0700 | [diff] [blame] | 85 | nlh = nlmsg_put(skb, 0, 0, msgtype, len, 0); |
| 86 | if (!nlh) |
| 87 | goto out_kfree_skb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | selnl_add_payload(nlh, len, msgtype, data); |
| 89 | nlh->nlmsg_len = skb->tail - tmp; |
Patrick McHardy | ac6d439 | 2005-08-14 19:29:52 -0700 | [diff] [blame] | 90 | NETLINK_CB(skb).dst_group = SELNLGRP_AVC; |
| 91 | netlink_broadcast(selnl, skb, 0, SELNLGRP_AVC, GFP_USER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | out: |
| 93 | return; |
Eric Paris | c544c02 | 2008-04-18 17:38:24 -0400 | [diff] [blame] | 94 | |
David S. Miller | 01f534d | 2012-06-26 21:41:57 -0700 | [diff] [blame] | 95 | out_kfree_skb: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | kfree_skb(skb); |
| 97 | oom: |
Harvey Harrison | dd6f953 | 2008-03-06 10:03:59 +1100 | [diff] [blame] | 98 | printk(KERN_ERR "SELinux: OOM in %s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | goto out; |
| 100 | } |
| 101 | |
| 102 | void selnl_notify_setenforce(int val) |
| 103 | { |
| 104 | selnl_notify(SELNL_MSG_SETENFORCE, &val); |
| 105 | } |
| 106 | |
| 107 | void selnl_notify_policyload(u32 seqno) |
| 108 | { |
| 109 | selnl_notify(SELNL_MSG_POLICYLOAD, &seqno); |
| 110 | } |
| 111 | |
| 112 | static int __init selnl_init(void) |
| 113 | { |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 114 | struct netlink_kernel_cfg cfg = { |
| 115 | .groups = SELNLGRP_MAX, |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 116 | .flags = NL_CFG_F_NONROOT_RECV, |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 117 | }; |
| 118 | |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 119 | selnl = netlink_kernel_create(&init_net, NETLINK_SELINUX, &cfg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | if (selnl == NULL) |
| 121 | panic("SELinux: Cannot create netlink socket."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | return 0; |
| 123 | } |
| 124 | |
| 125 | __initcall(selnl_init); |