LCOV - code coverage report
Current view: top level - security/apparmor - crypto.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 32 0.0 %
Date: 2014-02-18 Functions: 0 3 0.0 %
Branches: 0 18 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * AppArmor security module
       3                 :            :  *
       4                 :            :  * This file contains AppArmor policy loading interface function definitions.
       5                 :            :  *
       6                 :            :  * Copyright 2013 Canonical Ltd.
       7                 :            :  *
       8                 :            :  * This program is free software; you can redistribute it and/or
       9                 :            :  * modify it under the terms of the GNU General Public License as
      10                 :            :  * published by the Free Software Foundation, version 2 of the
      11                 :            :  * License.
      12                 :            :  *
      13                 :            :  * Fns to provide a checksum of policy that has been loaded this can be
      14                 :            :  * compared to userspace policy compiles to check loaded policy is what
      15                 :            :  * it should be.
      16                 :            :  */
      17                 :            : 
      18                 :            : #include <crypto/hash.h>
      19                 :            : 
      20                 :            : #include "include/apparmor.h"
      21                 :            : #include "include/crypto.h"
      22                 :            : 
      23                 :            : static unsigned int apparmor_hash_size;
      24                 :            : 
      25                 :            : static struct crypto_shash *apparmor_tfm;
      26                 :            : 
      27                 :          0 : unsigned int aa_hash_size(void)
      28                 :            : {
      29                 :          0 :         return apparmor_hash_size;
      30                 :            : }
      31                 :            : 
      32                 :          0 : int aa_calc_profile_hash(struct aa_profile *profile, u32 version, void *start,
      33                 :            :                          size_t len)
      34                 :            : {
      35                 :            :         struct {
      36                 :            :                 struct shash_desc shash;
      37                 :          0 :                 char ctx[crypto_shash_descsize(apparmor_tfm)];
      38                 :          0 :         } desc;
      39                 :            :         int error = -ENOMEM;
      40                 :          0 :         u32 le32_version = cpu_to_le32(version);
      41                 :            : 
      42         [ #  # ]:          0 :         if (!apparmor_tfm)
      43                 :            :                 return 0;
      44                 :            : 
      45                 :          0 :         profile->hash = kzalloc(apparmor_hash_size, GFP_KERNEL);
      46         [ #  # ]:          0 :         if (!profile->hash)
      47                 :            :                 goto fail;
      48                 :            : 
      49                 :          0 :         desc.shash.tfm = apparmor_tfm;
      50                 :          0 :         desc.shash.flags = 0;
      51                 :            : 
      52                 :          0 :         error = crypto_shash_init(&desc.shash);
      53         [ #  # ]:          0 :         if (error)
      54                 :            :                 goto fail;
      55                 :          0 :         error = crypto_shash_update(&desc.shash, (u8 *) &le32_version, 4);
      56         [ #  # ]:          0 :         if (error)
      57                 :            :                 goto fail;
      58                 :          0 :         error = crypto_shash_update(&desc.shash, (u8 *) start, len);
      59         [ #  # ]:          0 :         if (error)
      60                 :            :                 goto fail;
      61                 :          0 :         error = crypto_shash_final(&desc.shash, profile->hash);
      62         [ #  # ]:          0 :         if (error)
      63                 :            :                 goto fail;
      64                 :            : 
      65                 :            :         return 0;
      66                 :            : 
      67                 :            : fail:
      68                 :          0 :         kfree(profile->hash);
      69                 :          0 :         profile->hash = NULL;
      70                 :            : 
      71                 :          0 :         return error;
      72                 :            : }
      73                 :            : 
      74                 :          0 : static int __init init_profile_hash(void)
      75                 :            : {
      76                 :            :         struct crypto_shash *tfm;
      77                 :            : 
      78         [ #  # ]:          0 :         if (!apparmor_initialized)
      79                 :            :                 return 0;
      80                 :            : 
      81                 :          0 :         tfm = crypto_alloc_shash("sha1", 0, CRYPTO_ALG_ASYNC);
      82         [ #  # ]:          0 :         if (IS_ERR(tfm)) {
      83                 :            :                 int error = PTR_ERR(tfm);
      84         [ #  # ]:          0 :                 AA_ERROR("failed to setup profile sha1 hashing: %d\n", error);
      85                 :          0 :                 return error;
      86                 :            :         }
      87                 :          0 :         apparmor_tfm = tfm;
      88                 :          0 :         apparmor_hash_size = crypto_shash_digestsize(apparmor_tfm);
      89                 :            : 
      90                 :          0 :         aa_info_message("AppArmor sha1 policy hashing enabled");
      91                 :            : 
      92                 :          0 :         return 0;
      93                 :            : }
      94                 :            : 
      95                 :            : late_initcall(init_profile_hash);

Generated by: LCOV version 1.9