blob: a22098db08fdee6f36dd2b4855c796158e50c918 [file] [log] [blame]
Sami Tolvanena739ff32015-12-03 14:26:30 +00001/*
2 * Copyright (C) 2015 Google, Inc.
3 *
4 * Author: Sami Tolvanen <samitolvanen@google.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 */
11
12#ifndef DM_VERITY_FEC_H
13#define DM_VERITY_FEC_H
14
Sami Tolvanendc994402016-03-30 14:10:13 -070015#include "dm.h"
16#include "dm-core.h"
Sami Tolvanena739ff32015-12-03 14:26:30 +000017#include "dm-verity.h"
18#include <linux/rslib.h>
19
20/* Reed-Solomon(M, N) parameters */
21#define DM_VERITY_FEC_RSM 255
22#define DM_VERITY_FEC_MAX_RSN 253
23#define DM_VERITY_FEC_MIN_RSN 231 /* ~10% space overhead */
24
25/* buffers for deinterleaving and decoding */
26#define DM_VERITY_FEC_BUF_PREALLOC 1 /* buffers to preallocate */
27#define DM_VERITY_FEC_BUF_RS_BITS 4 /* 1 << RS blocks per buffer */
28/* we need buffers for at most 1 << block size RS blocks */
29#define DM_VERITY_FEC_BUF_MAX \
30 (1 << (PAGE_SHIFT - DM_VERITY_FEC_BUF_RS_BITS))
31
32#define DM_VERITY_OPT_FEC_DEV "use_fec_from_device"
33#define DM_VERITY_OPT_FEC_BLOCKS "fec_blocks"
34#define DM_VERITY_OPT_FEC_START "fec_start"
35#define DM_VERITY_OPT_FEC_ROOTS "fec_roots"
36
37/* configuration */
38struct dm_verity_fec {
39 struct dm_dev *dev; /* parity data device */
40 struct dm_bufio_client *data_bufio; /* for data dev access */
41 struct dm_bufio_client *bufio; /* for parity data access */
42 sector_t start; /* parity data start in blocks */
43 sector_t blocks; /* number of blocks covered */
44 sector_t rounds; /* number of interleaving rounds */
45 sector_t hash_blocks; /* blocks covered after v->hash_start */
46 unsigned char roots; /* number of parity bytes, M-N of RS(M, N) */
47 unsigned char rsn; /* N of RS(M, N) */
48 mempool_t *rs_pool; /* mempool for fio->rs */
49 mempool_t *prealloc_pool; /* mempool for preallocated buffers */
50 mempool_t *extra_pool; /* mempool for extra buffers */
51 mempool_t *output_pool; /* mempool for output */
52 struct kmem_cache *cache; /* cache for buffers */
Sami Tolvanendc994402016-03-30 14:10:13 -070053 atomic_t corrected; /* corrected errors */
54 struct dm_kobject_holder kobj_holder; /* for sysfs attributes */
Sami Tolvanena739ff32015-12-03 14:26:30 +000055};
56
57/* per-bio data */
58struct dm_verity_fec_io {
59 struct rs_control *rs; /* Reed-Solomon state */
60 int erasures[DM_VERITY_FEC_MAX_RSN]; /* erasures for decode_rs8 */
61 u8 *bufs[DM_VERITY_FEC_BUF_MAX]; /* bufs for deinterleaving */
62 unsigned nbufs; /* number of buffers allocated */
63 u8 *output; /* buffer for corrected output */
64 size_t output_pos;
65};
66
67#ifdef CONFIG_DM_VERITY_FEC
68
69/* each feature parameter requires a value */
70#define DM_VERITY_OPTS_FEC 8
71
72extern bool verity_fec_is_enabled(struct dm_verity *v);
73
74extern int verity_fec_decode(struct dm_verity *v, struct dm_verity_io *io,
75 enum verity_block_type type, sector_t block,
76 u8 *dest, struct bvec_iter *iter);
77
78extern unsigned verity_fec_status_table(struct dm_verity *v, unsigned sz,
79 char *result, unsigned maxlen);
80
81extern void verity_fec_finish_io(struct dm_verity_io *io);
82extern void verity_fec_init_io(struct dm_verity_io *io);
83
84extern bool verity_is_fec_opt_arg(const char *arg_name);
85extern int verity_fec_parse_opt_args(struct dm_arg_set *as,
86 struct dm_verity *v, unsigned *argc,
87 const char *arg_name);
88
89extern void verity_fec_dtr(struct dm_verity *v);
90
91extern int verity_fec_ctr_alloc(struct dm_verity *v);
92extern int verity_fec_ctr(struct dm_verity *v);
93
94#else /* !CONFIG_DM_VERITY_FEC */
95
96#define DM_VERITY_OPTS_FEC 0
97
98static inline bool verity_fec_is_enabled(struct dm_verity *v)
99{
100 return false;
101}
102
103static inline int verity_fec_decode(struct dm_verity *v,
104 struct dm_verity_io *io,
105 enum verity_block_type type,
106 sector_t block, u8 *dest,
107 struct bvec_iter *iter)
108{
109 return -EOPNOTSUPP;
110}
111
112static inline unsigned verity_fec_status_table(struct dm_verity *v,
113 unsigned sz, char *result,
114 unsigned maxlen)
115{
116 return sz;
117}
118
119static inline void verity_fec_finish_io(struct dm_verity_io *io)
120{
121}
122
123static inline void verity_fec_init_io(struct dm_verity_io *io)
124{
125}
126
127static inline bool verity_is_fec_opt_arg(const char *arg_name)
128{
129 return false;
130}
131
132static inline int verity_fec_parse_opt_args(struct dm_arg_set *as,
133 struct dm_verity *v,
134 unsigned *argc,
135 const char *arg_name)
136{
137 return -EINVAL;
138}
139
140static inline void verity_fec_dtr(struct dm_verity *v)
141{
142}
143
144static inline int verity_fec_ctr_alloc(struct dm_verity *v)
145{
146 return 0;
147}
148
149static inline int verity_fec_ctr(struct dm_verity *v)
150{
151 return 0;
152}
153
154#endif /* CONFIG_DM_VERITY_FEC */
155
156#endif /* DM_VERITY_FEC_H */