blob: 4a397cde1a48e4f296332bc8405d78a0ee612a25 [file] [log] [blame]
Paul Moored15c3452006-08-03 16:48:37 -07001/*
2 * NetLabel NETLINK Interface
3 *
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.
7 *
Paul Moore82c21bf2011-08-01 11:10:33 +00008 * Author: Paul Moore <paul@paul-moore.com>
Paul Moored15c3452006-08-03 16:48:37 -07009 *
10 */
11
12/*
13 * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
14 *
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.
19 *
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.
24 *
25 * You should have received a copy of the GNU General Public License
Jeff Kirsherd484ff12013-12-06 09:13:41 -080026 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Paul Moored15c3452006-08-03 16:48:37 -070027 *
28 */
29
30#ifndef _NETLABEL_USER_H
31#define _NETLABEL_USER_H
32
Paul Moore7a0e1d62006-08-29 17:56:04 -070033#include <linux/types.h>
Paul Moored15c3452006-08-03 16:48:37 -070034#include <linux/skbuff.h>
35#include <linux/capability.h>
Paul Moore32f50cd2006-09-28 14:51:47 -070036#include <linux/audit.h>
Paul Moore7a0e1d62006-08-29 17:56:04 -070037#include <net/netlink.h>
Paul Moored15c3452006-08-03 16:48:37 -070038#include <net/genetlink.h>
Paul Moore7a0e1d62006-08-29 17:56:04 -070039#include <net/netlabel.h>
Paul Moored15c3452006-08-03 16:48:37 -070040
41/* NetLabel NETLINK helper functions */
42
43/**
Paul Moore95d4e6b2006-09-29 17:05:05 -070044 * netlbl_netlink_auditinfo - Fetch the audit information from a NETLINK msg
45 * @skb: the packet
46 * @audit_info: NetLabel audit information
47 */
48static inline void netlbl_netlink_auditinfo(struct sk_buff *skb,
49 struct netlbl_audit *audit_info)
50{
Patrick McHardyc53fa1e2011-03-03 10:55:40 -080051 security_task_getsecid(current, &audit_info->secid);
52 audit_info->loginuid = audit_get_loginuid(current);
53 audit_info->sessionid = audit_get_sessionid(current);
Paul Moore95d4e6b2006-09-29 17:05:05 -070054}
55
Paul Moored15c3452006-08-03 16:48:37 -070056/* NetLabel NETLINK I/O functions */
57
58int netlbl_netlink_init(void);
Paul Moored15c3452006-08-03 16:48:37 -070059
Paul Moore32f50cd2006-09-28 14:51:47 -070060/* NetLabel Audit Functions */
61
Paul Moore95d4e6b2006-09-29 17:05:05 -070062struct audit_buffer *netlbl_audit_start_common(int type,
63 struct netlbl_audit *audit_info);
Paul Moore32f50cd2006-09-28 14:51:47 -070064
Paul Moored15c3452006-08-03 16:48:37 -070065#endif