]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - net/netlabel/netlabel_user.h
Merge tag 'selinux-pr-20191007' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-jammy-kernel.git] / net / netlabel / netlabel_user.h
CommitLineData
1ccea77e 1/* SPDX-License-Identifier: GPL-2.0-or-later */
d15c345f
PM
2/*
3 * NetLabel NETLINK Interface
4 *
5 * This file defines the NETLINK interface for the NetLabel system. The
6 * NetLabel system manages static and dynamic label mappings for network
7 * protocols such as CIPSO and RIPSO.
8 *
82c21bfa 9 * Author: Paul Moore <paul@paul-moore.com>
d15c345f
PM
10 */
11
12/*
13 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
d15c345f
PM
14 */
15
16#ifndef _NETLABEL_USER_H
17#define _NETLABEL_USER_H
18
7a0e1d60 19#include <linux/types.h>
d15c345f
PM
20#include <linux/skbuff.h>
21#include <linux/capability.h>
32f50cde 22#include <linux/audit.h>
7a0e1d60 23#include <net/netlink.h>
d15c345f 24#include <net/genetlink.h>
7a0e1d60 25#include <net/netlabel.h>
d15c345f
PM
26
27/* NetLabel NETLINK helper functions */
28
95d4e6be
PM
29/**
30 * netlbl_netlink_auditinfo - Fetch the audit information from a NETLINK msg
31 * @skb: the packet
32 * @audit_info: NetLabel audit information
33 */
34static inline void netlbl_netlink_auditinfo(struct sk_buff *skb,
35 struct netlbl_audit *audit_info)
36{
c53fa1ed
PM
37 security_task_getsecid(current, &audit_info->secid);
38 audit_info->loginuid = audit_get_loginuid(current);
39 audit_info->sessionid = audit_get_sessionid(current);
95d4e6be
PM
40}
41
d15c345f
PM
42/* NetLabel NETLINK I/O functions */
43
44int netlbl_netlink_init(void);
d15c345f 45
32f50cde
PM
46/* NetLabel Audit Functions */
47
95d4e6be
PM
48struct audit_buffer *netlbl_audit_start_common(int type,
49 struct netlbl_audit *audit_info);
32f50cde 50
d15c345f 51#endif