Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0-only
2 : : /*
3 : : * Netlink event notifications for SELinux.
4 : : *
5 : : * Author: James Morris <jmorris@redhat.com>
6 : : *
7 : : * Copyright (C) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
8 : : */
9 : : #include <linux/init.h>
10 : : #include <linux/types.h>
11 : : #include <linux/slab.h>
12 : : #include <linux/stddef.h>
13 : : #include <linux/kernel.h>
14 : : #include <linux/export.h>
15 : : #include <linux/skbuff.h>
16 : : #include <linux/selinux_netlink.h>
17 : : #include <net/net_namespace.h>
18 : : #include <net/netlink.h>
19 : :
20 : : #include "security.h"
21 : :
22 : : static struct sock *selnl;
23 : :
24 : 0 : static int selnl_msglen(int msgtype)
25 : : {
26 : 0 : int ret = 0;
27 : :
28 : 0 : switch (msgtype) {
29 : : case SELNL_MSG_SETENFORCE:
30 : : ret = sizeof(struct selnl_msg_setenforce);
31 : : break;
32 : :
33 : : case SELNL_MSG_POLICYLOAD:
34 : : ret = sizeof(struct selnl_msg_policyload);
35 : : break;
36 : :
37 : 0 : default:
38 : 0 : BUG();
39 : : }
40 : 0 : return ret;
41 : : }
42 : :
43 : 0 : static void selnl_add_payload(struct nlmsghdr *nlh, int len, int msgtype, void *data)
44 : : {
45 [ # # # ]: 0 : switch (msgtype) {
46 : : case SELNL_MSG_SETENFORCE: {
47 : 0 : struct selnl_msg_setenforce *msg = nlmsg_data(nlh);
48 : :
49 : 0 : memset(msg, 0, len);
50 : 0 : msg->val = *((int *)data);
51 : 0 : break;
52 : : }
53 : :
54 : : case SELNL_MSG_POLICYLOAD: {
55 : 0 : struct selnl_msg_policyload *msg = nlmsg_data(nlh);
56 : :
57 : 0 : memset(msg, 0, len);
58 : 0 : msg->seqno = *((u32 *)data);
59 : 0 : break;
60 : : }
61 : :
62 : 0 : default:
63 : 0 : BUG();
64 : : }
65 : 0 : }
66 : :
67 : 0 : static void selnl_notify(int msgtype, void *data)
68 : : {
69 : 0 : int len;
70 : 0 : sk_buff_data_t tmp;
71 : 0 : struct sk_buff *skb;
72 : 0 : struct nlmsghdr *nlh;
73 : :
74 [ # # ]: 0 : len = selnl_msglen(msgtype);
75 : :
76 : 0 : skb = nlmsg_new(len, GFP_USER);
77 [ # # ]: 0 : if (!skb)
78 : 0 : goto oom;
79 : :
80 : 0 : tmp = skb->tail;
81 : 0 : nlh = nlmsg_put(skb, 0, 0, msgtype, len, 0);
82 [ # # ]: 0 : if (!nlh)
83 : 0 : goto out_kfree_skb;
84 : 0 : selnl_add_payload(nlh, len, msgtype, data);
85 : 0 : nlh->nlmsg_len = skb->tail - tmp;
86 : 0 : NETLINK_CB(skb).dst_group = SELNLGRP_AVC;
87 : 0 : netlink_broadcast(selnl, skb, 0, SELNLGRP_AVC, GFP_USER);
88 : 0 : out:
89 : 0 : return;
90 : :
91 : : out_kfree_skb:
92 : 0 : kfree_skb(skb);
93 : 0 : oom:
94 : 0 : pr_err("SELinux: OOM in %s\n", __func__);
95 : 0 : goto out;
96 : : }
97 : :
98 : 0 : void selnl_notify_setenforce(int val)
99 : : {
100 : 0 : selnl_notify(SELNL_MSG_SETENFORCE, &val);
101 : 0 : }
102 : :
103 : 0 : void selnl_notify_policyload(u32 seqno)
104 : : {
105 : 0 : selnl_notify(SELNL_MSG_POLICYLOAD, &seqno);
106 : 0 : }
107 : :
108 : 3 : static int __init selnl_init(void)
109 : : {
110 : 3 : struct netlink_kernel_cfg cfg = {
111 : : .groups = SELNLGRP_MAX,
112 : : .flags = NL_CFG_F_NONROOT_RECV,
113 : : };
114 : :
115 : 3 : selnl = netlink_kernel_create(&init_net, NETLINK_SELINUX, &cfg);
116 [ - + ]: 3 : if (selnl == NULL)
117 : 0 : panic("SELinux: Cannot create netlink socket.");
118 : 3 : return 0;
119 : : }
120 : :
121 : : __initcall(selnl_init);
|