aef38870aaf2256e5aff1659273e05c0cee656d9
[platform/upstream/cryptsetup.git] / lib / verity / verity.h
1 /*
2  * dm-verity volume handling
3  *
4  * Copyright (C) 2012, Red Hat, Inc. All rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * version 2 as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19
20 #ifndef _VERITY_H
21 #define _VERITY_H
22
23 #include <unistd.h>
24 #include "config.h"
25
26 #define VERITY_SIGNATURE        "verity\0\0"
27 #define VERITY_MAX_LEVELS       63
28 #define VERITY_MAX_SALT_SIZE    384
29
30 struct crypt_device;
31 struct crypt_params_verity;
32
33 int VERITY_read_sb(struct crypt_device *cd,
34                    const char *device,
35                    uint64_t sb_offset,
36                    struct crypt_params_verity *params);
37
38 int VERITY_write_sb(struct crypt_device *cd,
39                    const char *device,
40                    uint64_t sb_offset,
41                    struct crypt_params_verity *params);
42
43 int VERITY_activate(struct crypt_device *cd,
44                      const char *name,
45                      const char *hash_device,
46                      const char *root_hash,
47                      size_t root_hash_size,
48                      struct crypt_params_verity *verity_hdr,
49                      uint32_t activation_flags);
50
51 int VERITY_verify(struct crypt_device *cd,
52                 struct crypt_params_verity *verity_hdr,
53                 const char *data_device,
54                 const char *hash_device,
55                 const char *root_hash,
56                 size_t root_hash_size);
57
58 int VERITY_create(struct crypt_device *cd,
59                   struct crypt_params_verity *verity_hdr,
60                   const char *data_device,
61                   const char *hash_device,
62                   char *root_hash,
63                   size_t root_hash_size);
64
65 uint64_t VERITY_hash_offset_block(struct crypt_params_verity *params);
66
67 #endif