LCOV - code coverage report
Current view: top level - security - lsm_audit.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 0 248 0.0 %
Date: 2022-04-01 14:17:54 Functions: 0 6 0.0 %
Branches: 0 125 0.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0-only
       2                 :            : /*
       3                 :            :  * common LSM auditing functions
       4                 :            :  *
       5                 :            :  * Based on code written for SELinux by :
       6                 :            :  *                      Stephen Smalley, <sds@tycho.nsa.gov>
       7                 :            :  *                      James Morris <jmorris@redhat.com>
       8                 :            :  * Author : Etienne Basset, <etienne.basset@ensta.org>
       9                 :            :  */
      10                 :            : 
      11                 :            : #include <linux/types.h>
      12                 :            : #include <linux/stddef.h>
      13                 :            : #include <linux/kernel.h>
      14                 :            : #include <linux/gfp.h>
      15                 :            : #include <linux/fs.h>
      16                 :            : #include <linux/init.h>
      17                 :            : #include <net/sock.h>
      18                 :            : #include <linux/un.h>
      19                 :            : #include <net/af_unix.h>
      20                 :            : #include <linux/audit.h>
      21                 :            : #include <linux/ipv6.h>
      22                 :            : #include <linux/ip.h>
      23                 :            : #include <net/ip.h>
      24                 :            : #include <net/ipv6.h>
      25                 :            : #include <linux/tcp.h>
      26                 :            : #include <linux/udp.h>
      27                 :            : #include <linux/dccp.h>
      28                 :            : #include <linux/sctp.h>
      29                 :            : #include <linux/lsm_audit.h>
      30                 :            : #include <linux/security.h>
      31                 :            : 
      32                 :            : /**
      33                 :            :  * ipv4_skb_to_auditdata : fill auditdata from skb
      34                 :            :  * @skb : the skb
      35                 :            :  * @ad : the audit data to fill
      36                 :            :  * @proto : the layer 4 protocol
      37                 :            :  *
      38                 :            :  * return  0 on success
      39                 :            :  */
      40                 :          0 : int ipv4_skb_to_auditdata(struct sk_buff *skb,
      41                 :            :                 struct common_audit_data *ad, u8 *proto)
      42                 :            : {
      43                 :          0 :         int ret = 0;
      44                 :          0 :         struct iphdr *ih;
      45                 :            : 
      46         [ #  # ]:          0 :         ih = ip_hdr(skb);
      47         [ #  # ]:          0 :         if (ih == NULL)
      48                 :            :                 return -EINVAL;
      49                 :            : 
      50                 :          0 :         ad->u.net->v4info.saddr = ih->saddr;
      51                 :          0 :         ad->u.net->v4info.daddr = ih->daddr;
      52                 :            : 
      53         [ #  # ]:          0 :         if (proto)
      54                 :          0 :                 *proto = ih->protocol;
      55                 :            :         /* non initial fragment */
      56         [ #  # ]:          0 :         if (ntohs(ih->frag_off) & IP_OFFSET)
      57                 :            :                 return 0;
      58                 :            : 
      59   [ #  #  #  #  :          0 :         switch (ih->protocol) {
                      # ]
      60                 :            :         case IPPROTO_TCP: {
      61         [ #  # ]:          0 :                 struct tcphdr *th = tcp_hdr(skb);
      62         [ #  # ]:          0 :                 if (th == NULL)
      63                 :            :                         break;
      64                 :            : 
      65                 :          0 :                 ad->u.net->sport = th->source;
      66                 :          0 :                 ad->u.net->dport = th->dest;
      67                 :          0 :                 break;
      68                 :            :         }
      69                 :            :         case IPPROTO_UDP: {
      70         [ #  # ]:          0 :                 struct udphdr *uh = udp_hdr(skb);
      71         [ #  # ]:          0 :                 if (uh == NULL)
      72                 :            :                         break;
      73                 :            : 
      74                 :          0 :                 ad->u.net->sport = uh->source;
      75                 :          0 :                 ad->u.net->dport = uh->dest;
      76                 :          0 :                 break;
      77                 :            :         }
      78                 :            :         case IPPROTO_DCCP: {
      79         [ #  # ]:          0 :                 struct dccp_hdr *dh = dccp_hdr(skb);
      80         [ #  # ]:          0 :                 if (dh == NULL)
      81                 :            :                         break;
      82                 :            : 
      83                 :          0 :                 ad->u.net->sport = dh->dccph_sport;
      84                 :          0 :                 ad->u.net->dport = dh->dccph_dport;
      85                 :          0 :                 break;
      86                 :            :         }
      87                 :            :         case IPPROTO_SCTP: {
      88         [ #  # ]:          0 :                 struct sctphdr *sh = sctp_hdr(skb);
      89         [ #  # ]:          0 :                 if (sh == NULL)
      90                 :            :                         break;
      91                 :          0 :                 ad->u.net->sport = sh->source;
      92                 :          0 :                 ad->u.net->dport = sh->dest;
      93                 :          0 :                 break;
      94                 :            :         }
      95                 :            :         default:
      96                 :            :                 ret = -EINVAL;
      97                 :            :         }
      98                 :          0 :         return ret;
      99                 :            : }
     100                 :            : #if IS_ENABLED(CONFIG_IPV6)
     101                 :            : /**
     102                 :            :  * ipv6_skb_to_auditdata : fill auditdata from skb
     103                 :            :  * @skb : the skb
     104                 :            :  * @ad : the audit data to fill
     105                 :            :  * @proto : the layer 4 protocol
     106                 :            :  *
     107                 :            :  * return  0 on success
     108                 :            :  */
     109                 :          0 : int ipv6_skb_to_auditdata(struct sk_buff *skb,
     110                 :            :                 struct common_audit_data *ad, u8 *proto)
     111                 :            : {
     112                 :          0 :         int offset, ret = 0;
     113                 :          0 :         struct ipv6hdr *ip6;
     114                 :          0 :         u8 nexthdr;
     115                 :          0 :         __be16 frag_off;
     116                 :            : 
     117         [ #  # ]:          0 :         ip6 = ipv6_hdr(skb);
     118         [ #  # ]:          0 :         if (ip6 == NULL)
     119                 :            :                 return -EINVAL;
     120                 :          0 :         ad->u.net->v6info.saddr = ip6->saddr;
     121                 :          0 :         ad->u.net->v6info.daddr = ip6->daddr;
     122                 :          0 :         ret = 0;
     123                 :            :         /* IPv6 can have several extension header before the Transport header
     124                 :            :          * skip them */
     125                 :          0 :         offset = skb_network_offset(skb);
     126                 :          0 :         offset += sizeof(*ip6);
     127                 :          0 :         nexthdr = ip6->nexthdr;
     128                 :          0 :         offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
     129         [ #  # ]:          0 :         if (offset < 0)
     130                 :            :                 return 0;
     131         [ #  # ]:          0 :         if (proto)
     132                 :          0 :                 *proto = nexthdr;
     133   [ #  #  #  #  :          0 :         switch (nexthdr) {
                      # ]
     134                 :          0 :         case IPPROTO_TCP: {
     135                 :          0 :                 struct tcphdr _tcph, *th;
     136                 :            : 
     137                 :          0 :                 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
     138         [ #  # ]:          0 :                 if (th == NULL)
     139                 :            :                         break;
     140                 :            : 
     141                 :          0 :                 ad->u.net->sport = th->source;
     142                 :          0 :                 ad->u.net->dport = th->dest;
     143                 :          0 :                 break;
     144                 :            :         }
     145                 :          0 :         case IPPROTO_UDP: {
     146                 :          0 :                 struct udphdr _udph, *uh;
     147                 :            : 
     148                 :          0 :                 uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
     149         [ #  # ]:          0 :                 if (uh == NULL)
     150                 :            :                         break;
     151                 :            : 
     152                 :          0 :                 ad->u.net->sport = uh->source;
     153                 :          0 :                 ad->u.net->dport = uh->dest;
     154                 :          0 :                 break;
     155                 :            :         }
     156                 :          0 :         case IPPROTO_DCCP: {
     157                 :          0 :                 struct dccp_hdr _dccph, *dh;
     158                 :            : 
     159                 :          0 :                 dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
     160         [ #  # ]:          0 :                 if (dh == NULL)
     161                 :            :                         break;
     162                 :            : 
     163                 :          0 :                 ad->u.net->sport = dh->dccph_sport;
     164                 :          0 :                 ad->u.net->dport = dh->dccph_dport;
     165                 :          0 :                 break;
     166                 :            :         }
     167                 :          0 :         case IPPROTO_SCTP: {
     168                 :          0 :                 struct sctphdr _sctph, *sh;
     169                 :            : 
     170                 :          0 :                 sh = skb_header_pointer(skb, offset, sizeof(_sctph), &_sctph);
     171         [ #  # ]:          0 :                 if (sh == NULL)
     172                 :            :                         break;
     173                 :          0 :                 ad->u.net->sport = sh->source;
     174                 :          0 :                 ad->u.net->dport = sh->dest;
     175                 :          0 :                 break;
     176                 :            :         }
     177                 :            :         default:
     178                 :            :                 ret = -EINVAL;
     179                 :            :         }
     180                 :            :         return ret;
     181                 :            : }
     182                 :            : #endif
     183                 :            : 
     184                 :            : 
     185                 :          0 : static inline void print_ipv6_addr(struct audit_buffer *ab,
     186                 :            :                                    struct in6_addr *addr, __be16 port,
     187                 :            :                                    char *name1, char *name2)
     188                 :            : {
     189         [ #  # ]:          0 :         if (!ipv6_addr_any(addr))
     190                 :          0 :                 audit_log_format(ab, " %s=%pI6c", name1, addr);
     191         [ #  # ]:          0 :         if (port)
     192                 :          0 :                 audit_log_format(ab, " %s=%d", name2, ntohs(port));
     193                 :          0 : }
     194                 :            : 
     195                 :          0 : static inline void print_ipv4_addr(struct audit_buffer *ab, __be32 addr,
     196                 :            :                                    __be16 port, char *name1, char *name2)
     197                 :            : {
     198         [ #  # ]:          0 :         if (addr)
     199                 :          0 :                 audit_log_format(ab, " %s=%pI4", name1, &addr);
     200         [ #  # ]:          0 :         if (port)
     201                 :          0 :                 audit_log_format(ab, " %s=%d", name2, ntohs(port));
     202                 :          0 : }
     203                 :            : 
     204                 :            : /**
     205                 :            :  * dump_common_audit_data - helper to dump common audit data
     206                 :            :  * @a : common audit data
     207                 :            :  *
     208                 :            :  */
     209                 :          0 : static void dump_common_audit_data(struct audit_buffer *ab,
     210                 :            :                                    struct common_audit_data *a)
     211                 :            : {
     212                 :          0 :         char comm[sizeof(current->comm)];
     213                 :            : 
     214                 :            :         /*
     215                 :            :          * To keep stack sizes in check force programers to notice if they
     216                 :            :          * start making this union too large!  See struct lsm_network_audit
     217                 :            :          * as an example of how to deal with large data.
     218                 :            :          */
     219                 :          0 :         BUILD_BUG_ON(sizeof(a->u) > sizeof(void *)*2);
     220                 :            : 
     221                 :          0 :         audit_log_format(ab, " pid=%d comm=", task_tgid_nr(current));
     222                 :          0 :         audit_log_untrustedstring(ab, memcpy(comm, current->comm, sizeof(comm)));
     223                 :            : 
     224   [ #  #  #  #  :          0 :         switch (a->type) {
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
     225                 :            :         case LSM_AUDIT_DATA_NONE:
     226                 :          0 :                 return;
     227                 :          0 :         case LSM_AUDIT_DATA_IPC:
     228                 :          0 :                 audit_log_format(ab, " key=%d ", a->u.ipc_id);
     229                 :          0 :                 break;
     230                 :          0 :         case LSM_AUDIT_DATA_CAP:
     231                 :          0 :                 audit_log_format(ab, " capability=%d ", a->u.cap);
     232                 :          0 :                 break;
     233                 :          0 :         case LSM_AUDIT_DATA_PATH: {
     234                 :          0 :                 struct inode *inode;
     235                 :            : 
     236                 :          0 :                 audit_log_d_path(ab, " path=", &a->u.path);
     237                 :            : 
     238         [ #  # ]:          0 :                 inode = d_backing_inode(a->u.path.dentry);
     239         [ #  # ]:          0 :                 if (inode) {
     240                 :          0 :                         audit_log_format(ab, " dev=");
     241                 :          0 :                         audit_log_untrustedstring(ab, inode->i_sb->s_id);
     242                 :          0 :                         audit_log_format(ab, " ino=%lu", inode->i_ino);
     243                 :            :                 }
     244                 :            :                 break;
     245                 :            :         }
     246                 :          0 :         case LSM_AUDIT_DATA_FILE: {
     247                 :          0 :                 struct inode *inode;
     248                 :            : 
     249                 :          0 :                 audit_log_d_path(ab, " path=", &a->u.file->f_path);
     250                 :            : 
     251         [ #  # ]:          0 :                 inode = file_inode(a->u.file);
     252         [ #  # ]:          0 :                 if (inode) {
     253                 :          0 :                         audit_log_format(ab, " dev=");
     254                 :          0 :                         audit_log_untrustedstring(ab, inode->i_sb->s_id);
     255                 :          0 :                         audit_log_format(ab, " ino=%lu", inode->i_ino);
     256                 :            :                 }
     257                 :            :                 break;
     258                 :            :         }
     259                 :          0 :         case LSM_AUDIT_DATA_IOCTL_OP: {
     260                 :          0 :                 struct inode *inode;
     261                 :            : 
     262                 :          0 :                 audit_log_d_path(ab, " path=", &a->u.op->path);
     263                 :            : 
     264                 :          0 :                 inode = a->u.op->path.dentry->d_inode;
     265         [ #  # ]:          0 :                 if (inode) {
     266                 :          0 :                         audit_log_format(ab, " dev=");
     267                 :          0 :                         audit_log_untrustedstring(ab, inode->i_sb->s_id);
     268                 :          0 :                         audit_log_format(ab, " ino=%lu", inode->i_ino);
     269                 :            :                 }
     270                 :            : 
     271                 :          0 :                 audit_log_format(ab, " ioctlcmd=0x%hx", a->u.op->cmd);
     272                 :          0 :                 break;
     273                 :            :         }
     274                 :          0 :         case LSM_AUDIT_DATA_DENTRY: {
     275                 :          0 :                 struct inode *inode;
     276                 :            : 
     277                 :          0 :                 audit_log_format(ab, " name=");
     278                 :          0 :                 audit_log_untrustedstring(ab, a->u.dentry->d_name.name);
     279                 :            : 
     280         [ #  # ]:          0 :                 inode = d_backing_inode(a->u.dentry);
     281         [ #  # ]:          0 :                 if (inode) {
     282                 :          0 :                         audit_log_format(ab, " dev=");
     283                 :          0 :                         audit_log_untrustedstring(ab, inode->i_sb->s_id);
     284                 :          0 :                         audit_log_format(ab, " ino=%lu", inode->i_ino);
     285                 :            :                 }
     286                 :            :                 break;
     287                 :            :         }
     288                 :          0 :         case LSM_AUDIT_DATA_INODE: {
     289                 :          0 :                 struct dentry *dentry;
     290                 :          0 :                 struct inode *inode;
     291                 :            : 
     292                 :          0 :                 inode = a->u.inode;
     293                 :          0 :                 dentry = d_find_alias(inode);
     294         [ #  # ]:          0 :                 if (dentry) {
     295                 :          0 :                         audit_log_format(ab, " name=");
     296                 :          0 :                         audit_log_untrustedstring(ab,
     297                 :          0 :                                          dentry->d_name.name);
     298                 :          0 :                         dput(dentry);
     299                 :            :                 }
     300                 :          0 :                 audit_log_format(ab, " dev=");
     301                 :          0 :                 audit_log_untrustedstring(ab, inode->i_sb->s_id);
     302                 :          0 :                 audit_log_format(ab, " ino=%lu", inode->i_ino);
     303                 :          0 :                 break;
     304                 :            :         }
     305                 :          0 :         case LSM_AUDIT_DATA_TASK: {
     306                 :          0 :                 struct task_struct *tsk = a->u.tsk;
     307         [ #  # ]:          0 :                 if (tsk) {
     308         [ #  # ]:          0 :                         pid_t pid = task_tgid_nr(tsk);
     309         [ #  # ]:          0 :                         if (pid) {
     310                 :          0 :                                 char comm[sizeof(tsk->comm)];
     311                 :          0 :                                 audit_log_format(ab, " opid=%d ocomm=", pid);
     312                 :          0 :                                 audit_log_untrustedstring(ab,
     313                 :            :                                     memcpy(comm, tsk->comm, sizeof(comm)));
     314                 :            :                         }
     315                 :            :                 }
     316                 :            :                 break;
     317                 :            :         }
     318                 :          0 :         case LSM_AUDIT_DATA_NET:
     319         [ #  # ]:          0 :                 if (a->u.net->sk) {
     320                 :          0 :                         struct sock *sk = a->u.net->sk;
     321                 :          0 :                         struct unix_sock *u;
     322                 :          0 :                         struct unix_address *addr;
     323                 :          0 :                         int len = 0;
     324                 :          0 :                         char *p = NULL;
     325                 :            : 
     326   [ #  #  #  # ]:          0 :                         switch (sk->sk_family) {
     327                 :            :                         case AF_INET: {
     328                 :          0 :                                 struct inet_sock *inet = inet_sk(sk);
     329                 :            : 
     330                 :          0 :                                 print_ipv4_addr(ab, inet->inet_rcv_saddr,
     331                 :          0 :                                                 inet->inet_sport,
     332                 :            :                                                 "laddr", "lport");
     333                 :          0 :                                 print_ipv4_addr(ab, inet->inet_daddr,
     334                 :          0 :                                                 inet->inet_dport,
     335                 :            :                                                 "faddr", "fport");
     336                 :          0 :                                 break;
     337                 :            :                         }
     338                 :            : #if IS_ENABLED(CONFIG_IPV6)
     339                 :            :                         case AF_INET6: {
     340                 :          0 :                                 struct inet_sock *inet = inet_sk(sk);
     341                 :            : 
     342                 :          0 :                                 print_ipv6_addr(ab, &sk->sk_v6_rcv_saddr,
     343                 :          0 :                                                 inet->inet_sport,
     344                 :            :                                                 "laddr", "lport");
     345                 :          0 :                                 print_ipv6_addr(ab, &sk->sk_v6_daddr,
     346                 :          0 :                                                 inet->inet_dport,
     347                 :            :                                                 "faddr", "fport");
     348                 :          0 :                                 break;
     349                 :            :                         }
     350                 :            : #endif
     351                 :            :                         case AF_UNIX:
     352                 :          0 :                                 u = unix_sk(sk);
     353                 :          0 :                                 addr = smp_load_acquire(&u->addr);
     354         [ #  # ]:          0 :                                 if (!addr)
     355                 :            :                                         break;
     356         [ #  # ]:          0 :                                 if (u->path.dentry) {
     357                 :          0 :                                         audit_log_d_path(ab, " path=", &u->path);
     358                 :          0 :                                         break;
     359                 :            :                                 }
     360                 :          0 :                                 len = addr->len-sizeof(short);
     361                 :          0 :                                 p = &addr->name->sun_path[0];
     362                 :          0 :                                 audit_log_format(ab, " path=");
     363         [ #  # ]:          0 :                                 if (*p)
     364                 :          0 :                                         audit_log_untrustedstring(ab, p);
     365                 :            :                                 else
     366                 :          0 :                                         audit_log_n_hex(ab, p, len);
     367                 :            :                                 break;
     368                 :            :                         }
     369                 :          0 :                 }
     370                 :            : 
     371      [ #  #  # ]:          0 :                 switch (a->u.net->family) {
     372                 :          0 :                 case AF_INET:
     373                 :          0 :                         print_ipv4_addr(ab, a->u.net->v4info.saddr,
     374                 :          0 :                                         a->u.net->sport,
     375                 :            :                                         "saddr", "src");
     376                 :          0 :                         print_ipv4_addr(ab, a->u.net->v4info.daddr,
     377                 :          0 :                                         a->u.net->dport,
     378                 :            :                                         "daddr", "dest");
     379                 :          0 :                         break;
     380                 :          0 :                 case AF_INET6:
     381                 :          0 :                         print_ipv6_addr(ab, &a->u.net->v6info.saddr,
     382                 :          0 :                                         a->u.net->sport,
     383                 :            :                                         "saddr", "src");
     384                 :          0 :                         print_ipv6_addr(ab, &a->u.net->v6info.daddr,
     385                 :          0 :                                         a->u.net->dport,
     386                 :            :                                         "daddr", "dest");
     387                 :          0 :                         break;
     388                 :            :                 }
     389         [ #  # ]:          0 :                 if (a->u.net->netif > 0) {
     390                 :          0 :                         struct net_device *dev;
     391                 :            : 
     392                 :            :                         /* NOTE: we always use init's namespace */
     393                 :          0 :                         dev = dev_get_by_index(&init_net, a->u.net->netif);
     394         [ #  # ]:          0 :                         if (dev) {
     395                 :          0 :                                 audit_log_format(ab, " netif=%s", dev->name);
     396                 :          0 :                                 dev_put(dev);
     397                 :            :                         }
     398                 :            :                 }
     399                 :            :                 break;
     400                 :            : #ifdef CONFIG_KEYS
     401                 :          0 :         case LSM_AUDIT_DATA_KEY:
     402                 :          0 :                 audit_log_format(ab, " key_serial=%u", a->u.key_struct.key);
     403         [ #  # ]:          0 :                 if (a->u.key_struct.key_desc) {
     404                 :          0 :                         audit_log_format(ab, " key_desc=");
     405                 :          0 :                         audit_log_untrustedstring(ab, a->u.key_struct.key_desc);
     406                 :            :                 }
     407                 :            :                 break;
     408                 :            : #endif
     409                 :          0 :         case LSM_AUDIT_DATA_KMOD:
     410                 :          0 :                 audit_log_format(ab, " kmod=");
     411                 :          0 :                 audit_log_untrustedstring(ab, a->u.kmod_name);
     412                 :          0 :                 break;
     413                 :          0 :         case LSM_AUDIT_DATA_IBPKEY: {
     414                 :          0 :                 struct in6_addr sbn_pfx;
     415                 :            : 
     416                 :          0 :                 memset(&sbn_pfx.s6_addr, 0,
     417                 :            :                        sizeof(sbn_pfx.s6_addr));
     418                 :          0 :                 memcpy(&sbn_pfx.s6_addr, &a->u.ibpkey->subnet_prefix,
     419                 :            :                        sizeof(a->u.ibpkey->subnet_prefix));
     420                 :          0 :                 audit_log_format(ab, " pkey=0x%x subnet_prefix=%pI6c",
     421                 :          0 :                                  a->u.ibpkey->pkey, &sbn_pfx);
     422                 :          0 :                 break;
     423                 :            :         }
     424                 :          0 :         case LSM_AUDIT_DATA_IBENDPORT:
     425                 :          0 :                 audit_log_format(ab, " device=%s port_num=%u",
     426                 :          0 :                                  a->u.ibendport->dev_name,
     427                 :          0 :                                  a->u.ibendport->port);
     428                 :          0 :                 break;
     429                 :          0 :         case LSM_AUDIT_DATA_LOCKDOWN:
     430                 :          0 :                 audit_log_format(ab, " lockdown_reason=");
     431                 :          0 :                 audit_log_string(ab, lockdown_reasons[a->u.reason]);
     432                 :            :                 break;
     433                 :            :         } /* switch (a->type) */
     434                 :          0 : }
     435                 :            : 
     436                 :            : /**
     437                 :            :  * common_lsm_audit - generic LSM auditing function
     438                 :            :  * @a:  auxiliary audit data
     439                 :            :  * @pre_audit: lsm-specific pre-audit callback
     440                 :            :  * @post_audit: lsm-specific post-audit callback
     441                 :            :  *
     442                 :            :  * setup the audit buffer for common security information
     443                 :            :  * uses callback to print LSM specific information
     444                 :            :  */
     445                 :          0 : void common_lsm_audit(struct common_audit_data *a,
     446                 :            :         void (*pre_audit)(struct audit_buffer *, void *),
     447                 :            :         void (*post_audit)(struct audit_buffer *, void *))
     448                 :            : {
     449                 :          0 :         struct audit_buffer *ab;
     450                 :            : 
     451         [ #  # ]:          0 :         if (a == NULL)
     452                 :            :                 return;
     453                 :            :         /* we use GFP_ATOMIC so we won't sleep */
     454                 :          0 :         ab = audit_log_start(audit_context(), GFP_ATOMIC | __GFP_NOWARN,
     455                 :            :                              AUDIT_AVC);
     456                 :            : 
     457         [ #  # ]:          0 :         if (ab == NULL)
     458                 :            :                 return;
     459                 :            : 
     460         [ #  # ]:          0 :         if (pre_audit)
     461                 :          0 :                 pre_audit(ab, a);
     462                 :            : 
     463                 :          0 :         dump_common_audit_data(ab, a);
     464                 :            : 
     465         [ #  # ]:          0 :         if (post_audit)
     466                 :          0 :                 post_audit(ab, a);
     467                 :            : 
     468                 :          0 :         audit_log_end(ab);
     469                 :            : }

Generated by: LCOV version 1.14