Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Block chaining cipher operations. |
| 3 | * |
| 4 | * Generic encrypt/decrypt wrapper for ciphers, handles operations across |
| 5 | * multiple page boundaries by using temporary blocks. In user context, |
| 6 | * the kernel is given a chance to schedule us once per page. |
| 7 | * |
| 8 | * Copyright (c) 2006 Herbert Xu <herbert@gondor.apana.org.au> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify it |
| 11 | * under the terms of the GNU General Public License as published by the Free |
| 12 | * Software Foundation; either version 2 of the License, or (at your option) |
| 13 | * any later version. |
| 14 | * |
| 15 | */ |
| 16 | |
Herbert Xu | d1a2fd5 | 2015-05-11 17:47:49 +0800 | [diff] [blame] | 17 | #include <crypto/aead.h> |
Herbert Xu | ecfc432 | 2007-12-05 21:08:36 +1100 | [diff] [blame] | 18 | #include <crypto/internal/skcipher.h> |
Herbert Xu | 42c271c | 2007-12-07 18:52:49 +0800 | [diff] [blame] | 19 | #include <crypto/scatterwalk.h> |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 20 | #include <linux/errno.h> |
Herbert Xu | fb46984 | 2006-12-10 10:45:28 +1100 | [diff] [blame] | 21 | #include <linux/hardirq.h> |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 22 | #include <linux/kernel.h> |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 23 | #include <linux/module.h> |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 24 | #include <linux/seq_file.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/string.h> |
Steffen Klassert | 50496a1 | 2011-09-27 07:41:54 +0200 | [diff] [blame] | 27 | #include <linux/cryptouser.h> |
| 28 | #include <net/netlink.h> |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 29 | |
| 30 | #include "internal.h" |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 31 | |
| 32 | enum { |
| 33 | BLKCIPHER_WALK_PHYS = 1 << 0, |
| 34 | BLKCIPHER_WALK_SLOW = 1 << 1, |
| 35 | BLKCIPHER_WALK_COPY = 1 << 2, |
| 36 | BLKCIPHER_WALK_DIFF = 1 << 3, |
| 37 | }; |
| 38 | |
| 39 | static int blkcipher_walk_next(struct blkcipher_desc *desc, |
| 40 | struct blkcipher_walk *walk); |
| 41 | static int blkcipher_walk_first(struct blkcipher_desc *desc, |
| 42 | struct blkcipher_walk *walk); |
| 43 | |
| 44 | static inline void blkcipher_map_src(struct blkcipher_walk *walk) |
| 45 | { |
Cong Wang | f0dfc0b | 2011-11-25 23:14:17 +0800 | [diff] [blame] | 46 | walk->src.virt.addr = scatterwalk_map(&walk->in); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | static inline void blkcipher_map_dst(struct blkcipher_walk *walk) |
| 50 | { |
Cong Wang | f0dfc0b | 2011-11-25 23:14:17 +0800 | [diff] [blame] | 51 | walk->dst.virt.addr = scatterwalk_map(&walk->out); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | static inline void blkcipher_unmap_src(struct blkcipher_walk *walk) |
| 55 | { |
Cong Wang | f0dfc0b | 2011-11-25 23:14:17 +0800 | [diff] [blame] | 56 | scatterwalk_unmap(walk->src.virt.addr); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | static inline void blkcipher_unmap_dst(struct blkcipher_walk *walk) |
| 60 | { |
Cong Wang | f0dfc0b | 2011-11-25 23:14:17 +0800 | [diff] [blame] | 61 | scatterwalk_unmap(walk->dst.virt.addr); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 62 | } |
| 63 | |
Herbert Xu | e4630f9 | 2007-09-09 08:45:21 +0100 | [diff] [blame] | 64 | /* Get a spot of the specified length that does not straddle a page. |
| 65 | * The caller needs to ensure that there is enough space for this operation. |
| 66 | */ |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 67 | static inline u8 *blkcipher_get_spot(u8 *start, unsigned int len) |
| 68 | { |
Herbert Xu | e4630f9 | 2007-09-09 08:45:21 +0100 | [diff] [blame] | 69 | u8 *end_page = (u8 *)(((unsigned long)(start + len - 1)) & PAGE_MASK); |
Ingo Oeser | 5aaff0c | 2007-09-19 19:11:41 +0800 | [diff] [blame] | 70 | return max(start, end_page); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 71 | } |
| 72 | |
Eric Biggers | afd5c42 | 2018-07-23 10:54:57 -0700 | [diff] [blame] | 73 | static inline void blkcipher_done_slow(struct blkcipher_walk *walk, |
| 74 | unsigned int bsize) |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 75 | { |
| 76 | u8 *addr; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 77 | |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 78 | addr = (u8 *)ALIGN((unsigned long)walk->buffer, walk->alignmask + 1); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 79 | addr = blkcipher_get_spot(addr, bsize); |
| 80 | scatterwalk_copychunks(addr, &walk->out, bsize, 1); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 81 | } |
| 82 | |
Eric Biggers | afd5c42 | 2018-07-23 10:54:57 -0700 | [diff] [blame] | 83 | static inline void blkcipher_done_fast(struct blkcipher_walk *walk, |
| 84 | unsigned int n) |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 85 | { |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 86 | if (walk->flags & BLKCIPHER_WALK_COPY) { |
| 87 | blkcipher_map_dst(walk); |
| 88 | memcpy(walk->dst.virt.addr, walk->page, n); |
| 89 | blkcipher_unmap_dst(walk); |
| 90 | } else if (!(walk->flags & BLKCIPHER_WALK_PHYS)) { |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 91 | if (walk->flags & BLKCIPHER_WALK_DIFF) |
| 92 | blkcipher_unmap_dst(walk); |
Peter Zijlstra | 61ecdb80 | 2010-10-26 14:21:47 -0700 | [diff] [blame] | 93 | blkcipher_unmap_src(walk); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | scatterwalk_advance(&walk->in, n); |
| 97 | scatterwalk_advance(&walk->out, n); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | int blkcipher_walk_done(struct blkcipher_desc *desc, |
| 101 | struct blkcipher_walk *walk, int err) |
| 102 | { |
Eric Biggers | afd5c42 | 2018-07-23 10:54:57 -0700 | [diff] [blame] | 103 | unsigned int n; /* bytes processed */ |
| 104 | bool more; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 105 | |
Eric Biggers | afd5c42 | 2018-07-23 10:54:57 -0700 | [diff] [blame] | 106 | if (unlikely(err < 0)) |
| 107 | goto finish; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 108 | |
Eric Biggers | afd5c42 | 2018-07-23 10:54:57 -0700 | [diff] [blame] | 109 | n = walk->nbytes - err; |
| 110 | walk->total -= n; |
| 111 | more = (walk->total != 0); |
| 112 | |
| 113 | if (likely(!(walk->flags & BLKCIPHER_WALK_SLOW))) { |
| 114 | blkcipher_done_fast(walk, n); |
| 115 | } else { |
| 116 | if (WARN_ON(err)) { |
| 117 | /* unexpected case; didn't process all bytes */ |
Herbert Xu | 7607bd8 | 2007-10-04 15:24:05 +0800 | [diff] [blame] | 118 | err = -EINVAL; |
Eric Biggers | afd5c42 | 2018-07-23 10:54:57 -0700 | [diff] [blame] | 119 | goto finish; |
| 120 | } |
| 121 | blkcipher_done_slow(walk, n); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 122 | } |
| 123 | |
Eric Biggers | afd5c42 | 2018-07-23 10:54:57 -0700 | [diff] [blame] | 124 | scatterwalk_done(&walk->in, 0, more); |
| 125 | scatterwalk_done(&walk->out, 1, more); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 126 | |
Eric Biggers | afd5c42 | 2018-07-23 10:54:57 -0700 | [diff] [blame] | 127 | if (more) { |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 128 | crypto_yield(desc->flags); |
| 129 | return blkcipher_walk_next(desc, walk); |
| 130 | } |
Eric Biggers | afd5c42 | 2018-07-23 10:54:57 -0700 | [diff] [blame] | 131 | err = 0; |
| 132 | finish: |
| 133 | walk->nbytes = 0; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 134 | if (walk->iv != desc->info) |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 135 | memcpy(desc->info, walk->iv, walk->ivsize); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 136 | if (walk->buffer != walk->page) |
| 137 | kfree(walk->buffer); |
| 138 | if (walk->page) |
| 139 | free_page((unsigned long)walk->page); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 140 | return err; |
| 141 | } |
| 142 | EXPORT_SYMBOL_GPL(blkcipher_walk_done); |
| 143 | |
| 144 | static inline int blkcipher_next_slow(struct blkcipher_desc *desc, |
| 145 | struct blkcipher_walk *walk, |
| 146 | unsigned int bsize, |
| 147 | unsigned int alignmask) |
| 148 | { |
| 149 | unsigned int n; |
Herbert Xu | 7061378 | 2007-09-29 21:24:23 +0800 | [diff] [blame] | 150 | unsigned aligned_bsize = ALIGN(bsize, alignmask + 1); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 151 | |
| 152 | if (walk->buffer) |
| 153 | goto ok; |
| 154 | |
| 155 | walk->buffer = walk->page; |
| 156 | if (walk->buffer) |
| 157 | goto ok; |
| 158 | |
Herbert Xu | 2614de1 | 2007-10-04 14:49:00 +0800 | [diff] [blame] | 159 | n = aligned_bsize * 3 - (alignmask + 1) + |
Herbert Xu | e4630f9 | 2007-09-09 08:45:21 +0100 | [diff] [blame] | 160 | (alignmask & ~(crypto_tfm_ctx_alignment() - 1)); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 161 | walk->buffer = kmalloc(n, GFP_ATOMIC); |
| 162 | if (!walk->buffer) |
| 163 | return blkcipher_walk_done(desc, walk, -ENOMEM); |
| 164 | |
| 165 | ok: |
| 166 | walk->dst.virt.addr = (u8 *)ALIGN((unsigned long)walk->buffer, |
| 167 | alignmask + 1); |
| 168 | walk->dst.virt.addr = blkcipher_get_spot(walk->dst.virt.addr, bsize); |
Herbert Xu | 7061378 | 2007-09-29 21:24:23 +0800 | [diff] [blame] | 169 | walk->src.virt.addr = blkcipher_get_spot(walk->dst.virt.addr + |
| 170 | aligned_bsize, bsize); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 171 | |
| 172 | scatterwalk_copychunks(walk->src.virt.addr, &walk->in, bsize, 0); |
| 173 | |
| 174 | walk->nbytes = bsize; |
| 175 | walk->flags |= BLKCIPHER_WALK_SLOW; |
| 176 | |
| 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | static inline int blkcipher_next_copy(struct blkcipher_walk *walk) |
| 181 | { |
| 182 | u8 *tmp = walk->page; |
| 183 | |
| 184 | blkcipher_map_src(walk); |
| 185 | memcpy(tmp, walk->src.virt.addr, walk->nbytes); |
| 186 | blkcipher_unmap_src(walk); |
| 187 | |
| 188 | walk->src.virt.addr = tmp; |
| 189 | walk->dst.virt.addr = tmp; |
| 190 | |
| 191 | return 0; |
| 192 | } |
| 193 | |
| 194 | static inline int blkcipher_next_fast(struct blkcipher_desc *desc, |
| 195 | struct blkcipher_walk *walk) |
| 196 | { |
| 197 | unsigned long diff; |
| 198 | |
| 199 | walk->src.phys.page = scatterwalk_page(&walk->in); |
| 200 | walk->src.phys.offset = offset_in_page(walk->in.offset); |
| 201 | walk->dst.phys.page = scatterwalk_page(&walk->out); |
| 202 | walk->dst.phys.offset = offset_in_page(walk->out.offset); |
| 203 | |
| 204 | if (walk->flags & BLKCIPHER_WALK_PHYS) |
| 205 | return 0; |
| 206 | |
| 207 | diff = walk->src.phys.offset - walk->dst.phys.offset; |
| 208 | diff |= walk->src.virt.page - walk->dst.virt.page; |
| 209 | |
| 210 | blkcipher_map_src(walk); |
| 211 | walk->dst.virt.addr = walk->src.virt.addr; |
| 212 | |
| 213 | if (diff) { |
| 214 | walk->flags |= BLKCIPHER_WALK_DIFF; |
| 215 | blkcipher_map_dst(walk); |
| 216 | } |
| 217 | |
| 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | static int blkcipher_walk_next(struct blkcipher_desc *desc, |
| 222 | struct blkcipher_walk *walk) |
| 223 | { |
Herbert Xu | 7607bd8 | 2007-10-04 15:24:05 +0800 | [diff] [blame] | 224 | unsigned int bsize; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 225 | unsigned int n; |
| 226 | int err; |
| 227 | |
| 228 | n = walk->total; |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 229 | if (unlikely(n < walk->cipher_blocksize)) { |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 230 | desc->flags |= CRYPTO_TFM_RES_BAD_BLOCK_LEN; |
| 231 | return blkcipher_walk_done(desc, walk, -EINVAL); |
| 232 | } |
| 233 | |
Herbert Xu | acdb04d | 2016-09-13 14:43:29 +0800 | [diff] [blame] | 234 | bsize = min(walk->walk_blocksize, n); |
| 235 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 236 | walk->flags &= ~(BLKCIPHER_WALK_SLOW | BLKCIPHER_WALK_COPY | |
| 237 | BLKCIPHER_WALK_DIFF); |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 238 | if (!scatterwalk_aligned(&walk->in, walk->alignmask) || |
| 239 | !scatterwalk_aligned(&walk->out, walk->alignmask)) { |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 240 | walk->flags |= BLKCIPHER_WALK_COPY; |
| 241 | if (!walk->page) { |
| 242 | walk->page = (void *)__get_free_page(GFP_ATOMIC); |
| 243 | if (!walk->page) |
| 244 | n = 0; |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | n = scatterwalk_clamp(&walk->in, n); |
| 249 | n = scatterwalk_clamp(&walk->out, n); |
| 250 | |
| 251 | if (unlikely(n < bsize)) { |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 252 | err = blkcipher_next_slow(desc, walk, bsize, walk->alignmask); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 253 | goto set_phys_lowmem; |
| 254 | } |
| 255 | |
| 256 | walk->nbytes = n; |
| 257 | if (walk->flags & BLKCIPHER_WALK_COPY) { |
| 258 | err = blkcipher_next_copy(walk); |
| 259 | goto set_phys_lowmem; |
| 260 | } |
| 261 | |
| 262 | return blkcipher_next_fast(desc, walk); |
| 263 | |
| 264 | set_phys_lowmem: |
| 265 | if (walk->flags & BLKCIPHER_WALK_PHYS) { |
| 266 | walk->src.phys.page = virt_to_page(walk->src.virt.addr); |
| 267 | walk->dst.phys.page = virt_to_page(walk->dst.virt.addr); |
| 268 | walk->src.phys.offset &= PAGE_SIZE - 1; |
| 269 | walk->dst.phys.offset &= PAGE_SIZE - 1; |
| 270 | } |
| 271 | return err; |
| 272 | } |
| 273 | |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 274 | static inline int blkcipher_copy_iv(struct blkcipher_walk *walk) |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 275 | { |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 276 | unsigned bs = walk->walk_blocksize; |
| 277 | unsigned aligned_bs = ALIGN(bs, walk->alignmask + 1); |
| 278 | unsigned int size = aligned_bs * 2 + |
| 279 | walk->ivsize + max(aligned_bs, walk->ivsize) - |
| 280 | (walk->alignmask + 1); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 281 | u8 *iv; |
| 282 | |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 283 | size += walk->alignmask & ~(crypto_tfm_ctx_alignment() - 1); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 284 | walk->buffer = kmalloc(size, GFP_ATOMIC); |
| 285 | if (!walk->buffer) |
| 286 | return -ENOMEM; |
| 287 | |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 288 | iv = (u8 *)ALIGN((unsigned long)walk->buffer, walk->alignmask + 1); |
Herbert Xu | 7061378 | 2007-09-29 21:24:23 +0800 | [diff] [blame] | 289 | iv = blkcipher_get_spot(iv, bs) + aligned_bs; |
| 290 | iv = blkcipher_get_spot(iv, bs) + aligned_bs; |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 291 | iv = blkcipher_get_spot(iv, walk->ivsize); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 292 | |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 293 | walk->iv = memcpy(iv, walk->iv, walk->ivsize); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | int blkcipher_walk_virt(struct blkcipher_desc *desc, |
| 298 | struct blkcipher_walk *walk) |
| 299 | { |
| 300 | walk->flags &= ~BLKCIPHER_WALK_PHYS; |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 301 | walk->walk_blocksize = crypto_blkcipher_blocksize(desc->tfm); |
| 302 | walk->cipher_blocksize = walk->walk_blocksize; |
| 303 | walk->ivsize = crypto_blkcipher_ivsize(desc->tfm); |
| 304 | walk->alignmask = crypto_blkcipher_alignmask(desc->tfm); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 305 | return blkcipher_walk_first(desc, walk); |
| 306 | } |
| 307 | EXPORT_SYMBOL_GPL(blkcipher_walk_virt); |
| 308 | |
| 309 | int blkcipher_walk_phys(struct blkcipher_desc *desc, |
| 310 | struct blkcipher_walk *walk) |
| 311 | { |
| 312 | walk->flags |= BLKCIPHER_WALK_PHYS; |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 313 | walk->walk_blocksize = crypto_blkcipher_blocksize(desc->tfm); |
| 314 | walk->cipher_blocksize = walk->walk_blocksize; |
| 315 | walk->ivsize = crypto_blkcipher_ivsize(desc->tfm); |
| 316 | walk->alignmask = crypto_blkcipher_alignmask(desc->tfm); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 317 | return blkcipher_walk_first(desc, walk); |
| 318 | } |
| 319 | EXPORT_SYMBOL_GPL(blkcipher_walk_phys); |
| 320 | |
| 321 | static int blkcipher_walk_first(struct blkcipher_desc *desc, |
| 322 | struct blkcipher_walk *walk) |
| 323 | { |
Herbert Xu | fb46984 | 2006-12-10 10:45:28 +1100 | [diff] [blame] | 324 | if (WARN_ON_ONCE(in_irq())) |
| 325 | return -EDEADLK; |
| 326 | |
Jason A. Donenfeld | 70d906b | 2015-12-06 02:51:37 +0100 | [diff] [blame] | 327 | walk->iv = desc->info; |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 328 | walk->nbytes = walk->total; |
| 329 | if (unlikely(!walk->total)) |
| 330 | return 0; |
| 331 | |
| 332 | walk->buffer = NULL; |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 333 | if (unlikely(((unsigned long)walk->iv & walk->alignmask))) { |
| 334 | int err = blkcipher_copy_iv(walk); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 335 | if (err) |
| 336 | return err; |
| 337 | } |
| 338 | |
| 339 | scatterwalk_start(&walk->in, walk->in.sg); |
| 340 | scatterwalk_start(&walk->out, walk->out.sg); |
| 341 | walk->page = NULL; |
| 342 | |
| 343 | return blkcipher_walk_next(desc, walk); |
| 344 | } |
| 345 | |
Herbert Xu | 7607bd8 | 2007-10-04 15:24:05 +0800 | [diff] [blame] | 346 | int blkcipher_walk_virt_block(struct blkcipher_desc *desc, |
| 347 | struct blkcipher_walk *walk, |
| 348 | unsigned int blocksize) |
| 349 | { |
| 350 | walk->flags &= ~BLKCIPHER_WALK_PHYS; |
Ard Biesheuvel | 822be00 | 2014-03-04 13:28:38 +0800 | [diff] [blame] | 351 | walk->walk_blocksize = blocksize; |
| 352 | walk->cipher_blocksize = crypto_blkcipher_blocksize(desc->tfm); |
| 353 | walk->ivsize = crypto_blkcipher_ivsize(desc->tfm); |
| 354 | walk->alignmask = crypto_blkcipher_alignmask(desc->tfm); |
Herbert Xu | 7607bd8 | 2007-10-04 15:24:05 +0800 | [diff] [blame] | 355 | return blkcipher_walk_first(desc, walk); |
| 356 | } |
| 357 | EXPORT_SYMBOL_GPL(blkcipher_walk_virt_block); |
| 358 | |
Ard Biesheuvel | 4f7f1d7 | 2014-03-04 13:28:39 +0800 | [diff] [blame] | 359 | int blkcipher_aead_walk_virt_block(struct blkcipher_desc *desc, |
| 360 | struct blkcipher_walk *walk, |
| 361 | struct crypto_aead *tfm, |
| 362 | unsigned int blocksize) |
| 363 | { |
| 364 | walk->flags &= ~BLKCIPHER_WALK_PHYS; |
| 365 | walk->walk_blocksize = blocksize; |
| 366 | walk->cipher_blocksize = crypto_aead_blocksize(tfm); |
| 367 | walk->ivsize = crypto_aead_ivsize(tfm); |
| 368 | walk->alignmask = crypto_aead_alignmask(tfm); |
| 369 | return blkcipher_walk_first(desc, walk); |
| 370 | } |
| 371 | EXPORT_SYMBOL_GPL(blkcipher_aead_walk_virt_block); |
| 372 | |
Herbert Xu | 791b4d5 | 2007-08-23 16:23:01 +0800 | [diff] [blame] | 373 | static int setkey_unaligned(struct crypto_tfm *tfm, const u8 *key, |
| 374 | unsigned int keylen) |
Sebastian Siewior | ca7c393 | 2007-05-19 19:51:21 +1000 | [diff] [blame] | 375 | { |
| 376 | struct blkcipher_alg *cipher = &tfm->__crt_alg->cra_blkcipher; |
| 377 | unsigned long alignmask = crypto_tfm_alg_alignmask(tfm); |
| 378 | int ret; |
| 379 | u8 *buffer, *alignbuffer; |
| 380 | unsigned long absize; |
| 381 | |
| 382 | absize = keylen + alignmask; |
| 383 | buffer = kmalloc(absize, GFP_ATOMIC); |
| 384 | if (!buffer) |
| 385 | return -ENOMEM; |
| 386 | |
| 387 | alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1); |
| 388 | memcpy(alignbuffer, key, keylen); |
| 389 | ret = cipher->setkey(tfm, alignbuffer, keylen); |
Sebastian Siewior | 0681717 | 2007-08-03 20:33:47 +0800 | [diff] [blame] | 390 | memset(alignbuffer, 0, keylen); |
Sebastian Siewior | ca7c393 | 2007-05-19 19:51:21 +1000 | [diff] [blame] | 391 | kfree(buffer); |
| 392 | return ret; |
| 393 | } |
| 394 | |
Herbert Xu | 791b4d5 | 2007-08-23 16:23:01 +0800 | [diff] [blame] | 395 | static int setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen) |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 396 | { |
| 397 | struct blkcipher_alg *cipher = &tfm->__crt_alg->cra_blkcipher; |
Sebastian Siewior | ca7c393 | 2007-05-19 19:51:21 +1000 | [diff] [blame] | 398 | unsigned long alignmask = crypto_tfm_alg_alignmask(tfm); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 399 | |
| 400 | if (keylen < cipher->min_keysize || keylen > cipher->max_keysize) { |
| 401 | tfm->crt_flags |= CRYPTO_TFM_RES_BAD_KEY_LEN; |
| 402 | return -EINVAL; |
| 403 | } |
| 404 | |
Sebastian Siewior | ca7c393 | 2007-05-19 19:51:21 +1000 | [diff] [blame] | 405 | if ((unsigned long)key & alignmask) |
| 406 | return setkey_unaligned(tfm, key, keylen); |
| 407 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 408 | return cipher->setkey(tfm, key, keylen); |
| 409 | } |
| 410 | |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 411 | static int async_setkey(struct crypto_ablkcipher *tfm, const u8 *key, |
| 412 | unsigned int keylen) |
| 413 | { |
| 414 | return setkey(crypto_ablkcipher_tfm(tfm), key, keylen); |
| 415 | } |
| 416 | |
| 417 | static int async_encrypt(struct ablkcipher_request *req) |
| 418 | { |
| 419 | struct crypto_tfm *tfm = req->base.tfm; |
| 420 | struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher; |
| 421 | struct blkcipher_desc desc = { |
| 422 | .tfm = __crypto_blkcipher_cast(tfm), |
| 423 | .info = req->info, |
| 424 | .flags = req->base.flags, |
| 425 | }; |
| 426 | |
| 427 | |
| 428 | return alg->encrypt(&desc, req->dst, req->src, req->nbytes); |
| 429 | } |
| 430 | |
| 431 | static int async_decrypt(struct ablkcipher_request *req) |
| 432 | { |
| 433 | struct crypto_tfm *tfm = req->base.tfm; |
| 434 | struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher; |
| 435 | struct blkcipher_desc desc = { |
| 436 | .tfm = __crypto_blkcipher_cast(tfm), |
| 437 | .info = req->info, |
| 438 | .flags = req->base.flags, |
| 439 | }; |
| 440 | |
| 441 | return alg->decrypt(&desc, req->dst, req->src, req->nbytes); |
| 442 | } |
| 443 | |
Herbert Xu | 27d2a33 | 2007-01-24 20:50:26 +1100 | [diff] [blame] | 444 | static unsigned int crypto_blkcipher_ctxsize(struct crypto_alg *alg, u32 type, |
| 445 | u32 mask) |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 446 | { |
| 447 | struct blkcipher_alg *cipher = &alg->cra_blkcipher; |
| 448 | unsigned int len = alg->cra_ctxsize; |
| 449 | |
Herbert Xu | 332f8840 | 2007-11-15 22:36:07 +0800 | [diff] [blame] | 450 | if ((mask & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_MASK && |
| 451 | cipher->ivsize) { |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 452 | len = ALIGN(len, (unsigned long)alg->cra_alignmask + 1); |
| 453 | len += cipher->ivsize; |
| 454 | } |
| 455 | |
| 456 | return len; |
| 457 | } |
| 458 | |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 459 | static int crypto_init_blkcipher_ops_async(struct crypto_tfm *tfm) |
| 460 | { |
| 461 | struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher; |
| 462 | struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher; |
| 463 | |
| 464 | crt->setkey = async_setkey; |
| 465 | crt->encrypt = async_encrypt; |
| 466 | crt->decrypt = async_decrypt; |
Herbert Xu | ecfc432 | 2007-12-05 21:08:36 +1100 | [diff] [blame] | 467 | crt->base = __crypto_ablkcipher_cast(tfm); |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 468 | crt->ivsize = alg->ivsize; |
| 469 | |
| 470 | return 0; |
| 471 | } |
| 472 | |
| 473 | static int crypto_init_blkcipher_ops_sync(struct crypto_tfm *tfm) |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 474 | { |
| 475 | struct blkcipher_tfm *crt = &tfm->crt_blkcipher; |
| 476 | struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher; |
| 477 | unsigned long align = crypto_tfm_alg_alignmask(tfm) + 1; |
| 478 | unsigned long addr; |
| 479 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 480 | crt->setkey = setkey; |
| 481 | crt->encrypt = alg->encrypt; |
| 482 | crt->decrypt = alg->decrypt; |
| 483 | |
| 484 | addr = (unsigned long)crypto_tfm_ctx(tfm); |
| 485 | addr = ALIGN(addr, align); |
| 486 | addr += ALIGN(tfm->__crt_alg->cra_ctxsize, align); |
| 487 | crt->iv = (void *)addr; |
| 488 | |
| 489 | return 0; |
| 490 | } |
| 491 | |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 492 | static int crypto_init_blkcipher_ops(struct crypto_tfm *tfm, u32 type, u32 mask) |
| 493 | { |
| 494 | struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher; |
| 495 | |
| 496 | if (alg->ivsize > PAGE_SIZE / 8) |
| 497 | return -EINVAL; |
| 498 | |
Herbert Xu | 332f8840 | 2007-11-15 22:36:07 +0800 | [diff] [blame] | 499 | if ((mask & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_MASK) |
Herbert Xu | 32e3983 | 2007-03-24 14:35:34 +1100 | [diff] [blame] | 500 | return crypto_init_blkcipher_ops_sync(tfm); |
| 501 | else |
| 502 | return crypto_init_blkcipher_ops_async(tfm); |
| 503 | } |
| 504 | |
Herbert Xu | 3acc847 | 2011-11-03 23:46:07 +1100 | [diff] [blame] | 505 | #ifdef CONFIG_NET |
Steffen Klassert | 50496a1 | 2011-09-27 07:41:54 +0200 | [diff] [blame] | 506 | static int crypto_blkcipher_report(struct sk_buff *skb, struct crypto_alg *alg) |
| 507 | { |
| 508 | struct crypto_report_blkcipher rblkcipher; |
| 509 | |
Mathias Krause | 9a5467b | 2013-02-05 18:19:13 +0100 | [diff] [blame] | 510 | strncpy(rblkcipher.type, "blkcipher", sizeof(rblkcipher.type)); |
| 511 | strncpy(rblkcipher.geniv, alg->cra_blkcipher.geniv ?: "<default>", |
| 512 | sizeof(rblkcipher.geniv)); |
Stafford Horne | 5810485 | 2018-06-25 21:45:37 +0900 | [diff] [blame] | 513 | rblkcipher.geniv[sizeof(rblkcipher.geniv) - 1] = '\0'; |
Steffen Klassert | 50496a1 | 2011-09-27 07:41:54 +0200 | [diff] [blame] | 514 | |
| 515 | rblkcipher.blocksize = alg->cra_blocksize; |
| 516 | rblkcipher.min_keysize = alg->cra_blkcipher.min_keysize; |
| 517 | rblkcipher.max_keysize = alg->cra_blkcipher.max_keysize; |
| 518 | rblkcipher.ivsize = alg->cra_blkcipher.ivsize; |
| 519 | |
David S. Miller | 6662df3 | 2012-04-01 20:19:05 -0400 | [diff] [blame] | 520 | if (nla_put(skb, CRYPTOCFGA_REPORT_BLKCIPHER, |
| 521 | sizeof(struct crypto_report_blkcipher), &rblkcipher)) |
| 522 | goto nla_put_failure; |
Steffen Klassert | 50496a1 | 2011-09-27 07:41:54 +0200 | [diff] [blame] | 523 | return 0; |
| 524 | |
| 525 | nla_put_failure: |
| 526 | return -EMSGSIZE; |
| 527 | } |
Herbert Xu | 3acc847 | 2011-11-03 23:46:07 +1100 | [diff] [blame] | 528 | #else |
| 529 | static int crypto_blkcipher_report(struct sk_buff *skb, struct crypto_alg *alg) |
| 530 | { |
| 531 | return -ENOSYS; |
| 532 | } |
| 533 | #endif |
Steffen Klassert | 50496a1 | 2011-09-27 07:41:54 +0200 | [diff] [blame] | 534 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 535 | static void crypto_blkcipher_show(struct seq_file *m, struct crypto_alg *alg) |
Herbert Xu | 03f5d8c | 2006-12-31 10:42:06 +1100 | [diff] [blame] | 536 | __attribute__ ((unused)); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 537 | static void crypto_blkcipher_show(struct seq_file *m, struct crypto_alg *alg) |
| 538 | { |
| 539 | seq_printf(m, "type : blkcipher\n"); |
| 540 | seq_printf(m, "blocksize : %u\n", alg->cra_blocksize); |
| 541 | seq_printf(m, "min keysize : %u\n", alg->cra_blkcipher.min_keysize); |
| 542 | seq_printf(m, "max keysize : %u\n", alg->cra_blkcipher.max_keysize); |
| 543 | seq_printf(m, "ivsize : %u\n", alg->cra_blkcipher.ivsize); |
Herbert Xu | 23508e1 | 2007-11-27 21:33:24 +0800 | [diff] [blame] | 544 | seq_printf(m, "geniv : %s\n", alg->cra_blkcipher.geniv ?: |
| 545 | "<default>"); |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 546 | } |
| 547 | |
| 548 | const struct crypto_type crypto_blkcipher_type = { |
| 549 | .ctxsize = crypto_blkcipher_ctxsize, |
| 550 | .init = crypto_init_blkcipher_ops, |
| 551 | #ifdef CONFIG_PROC_FS |
| 552 | .show = crypto_blkcipher_show, |
| 553 | #endif |
Steffen Klassert | 50496a1 | 2011-09-27 07:41:54 +0200 | [diff] [blame] | 554 | .report = crypto_blkcipher_report, |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 555 | }; |
| 556 | EXPORT_SYMBOL_GPL(crypto_blkcipher_type); |
| 557 | |
Herbert Xu | 5cde0af | 2006-08-22 00:07:53 +1000 | [diff] [blame] | 558 | MODULE_LICENSE("GPL"); |
| 559 | MODULE_DESCRIPTION("Generic block chaining cipher type"); |