ronnie
2022-10-23 1972b0e7ed50e5b37c5633d662ea03d23b15499c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * Copyright (C) 2014 Allwinner Ltd.
 *
 * Author:
 *    Ryan Chen <ryanchen@allwinnertech.com>
 *
 * 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, version 2 of the
 * License.
 *
 * File: fivm_crypto.c
 */
 
#include <linux/kernel.h>
#include <linux/file.h>
#include <linux/crypto.h>
#include <linux/scatterlist.h>
#include <linux/err.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include "fivm.h"
 
static char *fivm_hash = "sha256";
static int init_desc(struct hash_desc *desc)
{
   int rc;
 
   desc->tfm = crypto_alloc_hash(fivm_hash, 0, CRYPTO_ALG_ASYNC);
   if (IS_ERR(desc->tfm)) {
       pr_info("FIVM: failed to load %s transform: %ld\n",
           fivm_hash, PTR_ERR(desc->tfm));
       rc = PTR_ERR(desc->tfm);
       return rc;
   }
   desc->flags = 0;
   rc = crypto_hash_init(desc);
   if (rc)
       crypto_free_hash(desc->tfm);
   return rc;
}
 
int fivm_calc_hash(struct file *file, char *digest)
{
   struct hash_desc desc;
   struct scatterlist sg[1];
   loff_t i_size, offset = 0;
   char *rbuf;
   int rc;
 
   rc = init_desc(&desc);
   if (rc != 0)
       return rc;
 
   rbuf = kzalloc(PAGE_SIZE, GFP_KERNEL);
   if (!rbuf) {
       rc = -ENOMEM;
       goto out;
   }
   i_size = i_size_read(file->f_path.dentry->d_inode);
   while (offset < i_size) {
       int rbuf_len;
       rbuf_len = kernel_read(file, offset, rbuf, PAGE_SIZE);
       if (rbuf_len < 0) {
           rc = rbuf_len;
           break;
       }
       if (rbuf_len == 0)
           break;
       offset += rbuf_len;
       sg_init_one(sg, rbuf, rbuf_len);
 
       rc = crypto_hash_update(&desc, sg, rbuf_len);
       if (rc)
           break;
   }
   kfree(rbuf);
   if (!rc)
       rc = crypto_hash_final(&desc, digest);
out:
   crypto_free_hash(desc.tfm);
   return rc;
}