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