Release 4.11 security/selinux/netlink.c
/*
* Netlink event notifications for SELinux.
*
* Author: James Morris <jmorris@redhat.com>
*
* Copyright (C) 2004 Red Hat, Inc., James Morris <jmorris@redhat.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*/
#include <linux/init.h>
#include <linux/types.h>
#include <linux/slab.h>
#include <linux/stddef.h>
#include <linux/kernel.h>
#include <linux/export.h>
#include <linux/skbuff.h>
#include <linux/selinux_netlink.h>
#include <net/net_namespace.h>
#include <net/netlink.h>
#include "security.h"
static struct sock *selnl;
static int selnl_msglen(int msgtype)
{
int ret = 0;
switch (msgtype) {
case SELNL_MSG_SETENFORCE:
ret = sizeof(struct selnl_msg_setenforce);
break;
case SELNL_MSG_POLICYLOAD:
ret = sizeof(struct selnl_msg_policyload);
break;
default:
BUG();
}
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 51 | 100.00% | 1 | 100.00% |
Total | 51 | 100.00% | 1 | 100.00% |
static void selnl_add_payload(struct nlmsghdr *nlh, int len, int msgtype, void *data)
{
switch (msgtype) {
case SELNL_MSG_SETENFORCE: {
struct selnl_msg_setenforce *msg = nlmsg_data(nlh);
memset(msg, 0, len);
msg->val = *((int *)data);
break;
}
case SELNL_MSG_POLICYLOAD: {
struct selnl_msg_policyload *msg = nlmsg_data(nlh);
memset(msg, 0, len);
msg->seqno = *((u32 *)data);
break;
}
default:
BUG();
}
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 107 | 100.00% | 2 | 100.00% |
Total | 107 | 100.00% | 2 | 100.00% |
static void selnl_notify(int msgtype, void *data)
{
int len;
sk_buff_data_t tmp;
struct sk_buff *skb;
struct nlmsghdr *nlh;
len = selnl_msglen(msgtype);
skb = nlmsg_new(len, GFP_USER);
if (!skb)
goto oom;
tmp = skb->tail;
nlh = nlmsg_put(skb, 0, 0, msgtype, len, 0);
if (!nlh)
goto out_kfree_skb;
selnl_add_payload(nlh, len, msgtype, data);
nlh->nlmsg_len = skb->tail - tmp;
NETLINK_CB(skb).dst_group = SELNLGRP_AVC;
netlink_broadcast(selnl, skb, 0, SELNLGRP_AVC, GFP_USER);
out:
return;
out_kfree_skb:
kfree_skb(skb);
oom:
printk(KERN_ERR "SELinux: OOM in %s\n", __func__);
goto out;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 137 | 91.33% | 2 | 28.57% |
Patrick McHardy | 10 | 6.67% | 2 | 28.57% |
Hong Zhi Guo | 1 | 0.67% | 1 | 14.29% |
Arnaldo Carvalho de Melo | 1 | 0.67% | 1 | 14.29% |
Harvey Harrison | 1 | 0.67% | 1 | 14.29% |
Total | 150 | 100.00% | 7 | 100.00% |
void selnl_notify_setenforce(int val)
{
selnl_notify(SELNL_MSG_SETENFORCE, &val);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
void selnl_notify_policyload(u32 seqno)
{
selnl_notify(SELNL_MSG_POLICYLOAD, &seqno);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
static int __init selnl_init(void)
{
struct netlink_kernel_cfg cfg = {
.groups = SELNLGRP_MAX,
.flags = NL_CFG_F_NONROOT_RECV,
};
selnl = netlink_kernel_create(&init_net, NETLINK_SELINUX, &cfg);
if (selnl == NULL)
panic("SELinux: Cannot create netlink socket.");
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 31 | 59.62% | 1 | 25.00% |
Pablo Neira Ayuso | 18 | 34.62% | 2 | 50.00% |
Eric W. Biedermann | 3 | 5.77% | 1 | 25.00% |
Total | 52 | 100.00% | 4 | 100.00% |
__initcall(selnl_init);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 393 | 89.93% | 2 | 15.38% |
Pablo Neira Ayuso | 18 | 4.12% | 2 | 15.38% |
Patrick McHardy | 10 | 2.29% | 2 | 15.38% |
Eric W. Biedermann | 6 | 1.37% | 1 | 7.69% |
James Morris | 3 | 0.69% | 1 | 7.69% |
Paul Gortmaker | 3 | 0.69% | 1 | 7.69% |
Hong Zhi Guo | 1 | 0.23% | 1 | 7.69% |
Harvey Harrison | 1 | 0.23% | 1 | 7.69% |
Arnaldo Carvalho de Melo | 1 | 0.23% | 1 | 7.69% |
Tejun Heo | 1 | 0.23% | 1 | 7.69% |
Total | 437 | 100.00% | 13 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.