Blame view

net/netlabel/netlabel_user.h 1.93 KB
d15c345fe   Paul Moore   [NetLabel]: core ...
1
2
3
4
5
6
7
  /*
   * NetLabel NETLINK Interface
   *
   * This file defines the NETLINK interface for the NetLabel system.  The
   * NetLabel system manages static and dynamic label mappings for network
   * protocols such as CIPSO and RIPSO.
   *
82c21bfab   Paul Moore   doc: Update the e...
8
   * Author: Paul Moore <paul@paul-moore.com>
d15c345fe   Paul Moore   [NetLabel]: core ...
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
   *
   */
  
  /*
   * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
   *
   * This program is free software;  you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY;  without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
   * the GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program;  if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
   *
   */
  
  #ifndef _NETLABEL_USER_H
  #define _NETLABEL_USER_H
7a0e1d602   Paul Moore   [NetLabel]: add s...
33
  #include <linux/types.h>
d15c345fe   Paul Moore   [NetLabel]: core ...
34
35
  #include <linux/skbuff.h>
  #include <linux/capability.h>
32f50cdee   Paul Moore   [NetLabel]: add a...
36
  #include <linux/audit.h>
7a0e1d602   Paul Moore   [NetLabel]: add s...
37
  #include <net/netlink.h>
d15c345fe   Paul Moore   [NetLabel]: core ...
38
  #include <net/genetlink.h>
7a0e1d602   Paul Moore   [NetLabel]: add s...
39
  #include <net/netlabel.h>
d15c345fe   Paul Moore   [NetLabel]: core ...
40
41
42
43
  
  /* NetLabel NETLINK helper functions */
  
  /**
95d4e6be2   Paul Moore   [NetLabel]: audit...
44
45
46
47
48
49
50
   * netlbl_netlink_auditinfo - Fetch the audit information from a NETLINK msg
   * @skb: the packet
   * @audit_info: NetLabel audit information
   */
  static inline void netlbl_netlink_auditinfo(struct sk_buff *skb,
  					    struct netlbl_audit *audit_info)
  {
c53fa1ed9   Patrick McHardy   netlink: kill log...
51
52
53
  	security_task_getsecid(current, &audit_info->secid);
  	audit_info->loginuid = audit_get_loginuid(current);
  	audit_info->sessionid = audit_get_sessionid(current);
95d4e6be2   Paul Moore   [NetLabel]: audit...
54
  }
d15c345fe   Paul Moore   [NetLabel]: core ...
55
56
57
  /* NetLabel NETLINK I/O functions */
  
  int netlbl_netlink_init(void);
d15c345fe   Paul Moore   [NetLabel]: core ...
58

32f50cdee   Paul Moore   [NetLabel]: add a...
59
  /* NetLabel Audit Functions */
95d4e6be2   Paul Moore   [NetLabel]: audit...
60
61
  struct audit_buffer *netlbl_audit_start_common(int type,
  					      struct netlbl_audit *audit_info);
32f50cdee   Paul Moore   [NetLabel]: add a...
62

d15c345fe   Paul Moore   [NetLabel]: core ...
63
  #endif