Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / net / netlabel / netlabel_user.h
blob6d7f4ab46c2bd7499d726eac6b5190332e87e69c
1 /*
2 * NetLabel NETLINK Interface
4 * This file defines the NETLINK interface for the NetLabel system. The
5 * NetLabel system manages static and dynamic label mappings for network
6 * protocols such as CIPSO and RIPSO.
8 * Author: Paul Moore <paul.moore@hp.com>
13 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
23 * the GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #ifndef _NETLABEL_USER_H
32 #define _NETLABEL_USER_H
34 #include <linux/types.h>
35 #include <linux/skbuff.h>
36 #include <linux/capability.h>
37 #include <linux/audit.h>
38 #include <net/netlink.h>
39 #include <net/genetlink.h>
40 #include <net/netlabel.h>
42 /* NetLabel NETLINK helper functions */
44 /**
45 * netlbl_netlink_auditinfo - Fetch the audit information from a NETLINK msg
46 * @skb: the packet
47 * @audit_info: NetLabel audit information
49 static inline void netlbl_netlink_auditinfo(struct sk_buff *skb,
50 struct netlbl_audit *audit_info)
52 audit_info->secid = NETLINK_CB(skb).sid;
53 audit_info->loginuid = NETLINK_CB(skb).loginuid;
56 /* NetLabel NETLINK I/O functions */
58 int netlbl_netlink_init(void);
60 /* NetLabel Audit Functions */
62 struct audit_buffer *netlbl_audit_start_common(int type,
63 struct netlbl_audit *audit_info);
65 #endif