lsm_audit.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) lsm_audit.c (1a93a6eac32a2853177f10e274b9b761b42356eb)
1/*
2 * common LSM auditing functions
3 *
4 * Based on code written for SELinux by :
5 * Stephen Smalley, <sds@epoch.ncsc.mil>
6 * James Morris <jmorris@redhat.com>
7 * Author : Etienne Basset, <etienne.basset@ensta.org>
8 *

--- 85 unchanged lines hidden (view full) ---

94 ad->u.net->dport = sh->dest;
95 break;
96 }
97 default:
98 ret = -EINVAL;
99 }
100 return ret;
101}
1/*
2 * common LSM auditing functions
3 *
4 * Based on code written for SELinux by :
5 * Stephen Smalley, <sds@epoch.ncsc.mil>
6 * James Morris <jmorris@redhat.com>
7 * Author : Etienne Basset, <etienne.basset@ensta.org>
8 *

--- 85 unchanged lines hidden (view full) ---

94 ad->u.net->dport = sh->dest;
95 break;
96 }
97 default:
98 ret = -EINVAL;
99 }
100 return ret;
101}
102#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
102#if IS_ENABLED(CONFIG_IPV6)
103/**
104 * ipv6_skb_to_auditdata : fill auditdata from skb
105 * @skb : the skb
106 * @ad : the audit data to fill
107 * @proto : the layer 4 protocol
108 *
109 * return 0 on success
110 */

--- 326 unchanged lines hidden ---
103/**
104 * ipv6_skb_to_auditdata : fill auditdata from skb
105 * @skb : the skb
106 * @ad : the audit data to fill
107 * @proto : the layer 4 protocol
108 *
109 * return 0 on success
110 */

--- 326 unchanged lines hidden ---