Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
51177629
Commit
51177629
authored
Feb 18, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SELINUX]: Forgot to add these in previous commit.
parent
b797f128
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
150 additions
and
0 deletions
+150
-0
include/linux/selinux_netlink.h
include/linux/selinux_netlink.h
+37
-0
security/selinux/netlink.c
security/selinux/netlink.c
+113
-0
No files found.
include/linux/selinux_netlink.h
0 → 100644
View file @
51177629
/*
* 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.
*/
#ifndef _LINUX_SELINUX_NETLINK_H
#define _LINUX_SELINUX_NETLINK_H
/* Message types. */
#define SELNL_MSG_BASE 0x10
enum
{
SELNL_MSG_SETENFORCE
=
SELNL_MSG_BASE
,
SELNL_MSG_POLICYLOAD
,
SELNL_MSG_MAX
};
/* Multicast groups */
#define SELNL_GRP_NONE 0x00000000
#define SELNL_GRP_AVC 0x00000001
/* AVC notifications */
#define SELNL_GRP_ALL 0xffffffff
/* Message structures */
struct
selnl_msg_setenforce
{
int32_t
val
;
};
struct
selnl_msg_policyload
{
u_int32_t
seqno
;
};
#endif
/* _LINUX_SELINUX_NETLINK_H */
security/selinux/netlink.c
0 → 100644
View file @
51177629
/*
* 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/stddef.h>
#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/skbuff.h>
#include <linux/netlink.h>
#include <linux/selinux_netlink.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
;
}
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
();
}
}
static
void
selnl_notify
(
int
msgtype
,
void
*
data
)
{
int
len
;
unsigned
char
*
tmp
;
struct
sk_buff
*
skb
;
struct
nlmsghdr
*
nlh
;
len
=
selnl_msglen
(
msgtype
);
skb
=
alloc_skb
(
NLMSG_SPACE
(
len
),
GFP_USER
);
if
(
!
skb
)
goto
oom
;
tmp
=
skb
->
tail
;
nlh
=
NLMSG_PUT
(
skb
,
0
,
0
,
msgtype
,
len
);
selnl_add_payload
(
nlh
,
len
,
msgtype
,
data
);
nlh
->
nlmsg_len
=
skb
->
tail
-
tmp
;
netlink_broadcast
(
selnl
,
skb
,
0
,
SELNL_GRP_AVC
,
GFP_USER
);
out:
return
;
nlmsg_failure:
kfree_skb
(
skb
);
oom:
printk
(
KERN_ERR
"SELinux: OOM in %s
\n
"
,
__FUNCTION__
);
goto
out
;
}
void
selnl_notify_setenforce
(
int
val
)
{
selnl_notify
(
SELNL_MSG_SETENFORCE
,
&
val
);
}
void
selnl_notify_policyload
(
u32
seqno
)
{
selnl_notify
(
SELNL_MSG_POLICYLOAD
,
&
seqno
);
}
static
int
__init
selnl_init
(
void
)
{
selnl
=
netlink_kernel_create
(
NETLINK_SELINUX
,
NULL
);
if
(
selnl
==
NULL
)
panic
(
"SELinux: Cannot create netlink socket."
);
netlink_set_nonroot
(
NETLINK_SELINUX
,
NL_NONROOT_RECV
);
return
0
;
}
__initcall
(
selnl_init
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment