Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Asynchronous Cryptographic Hash operations. |
| 3 | * |
| 4 | * This is the asynchronous version of hash.c with notification of |
| 5 | * completion via a callback. |
| 6 | * |
| 7 | * Copyright (c) 2008 Loc Ho <lho@amcc.com> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify it |
| 10 | * under the terms of the GNU General Public License as published by the Free |
| 11 | * Software Foundation; either version 2 of the License, or (at your option) |
| 12 | * any later version. |
| 13 | * |
| 14 | */ |
| 15 | |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 16 | #include <crypto/internal/hash.h> |
| 17 | #include <crypto/scatterwalk.h> |
Herbert Xu | 75ecb23 | 2014-05-21 20:56:12 +0800 | [diff] [blame] | 18 | #include <linux/bug.h> |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 19 | #include <linux/err.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/sched.h> |
| 23 | #include <linux/slab.h> |
| 24 | #include <linux/seq_file.h> |
Steffen Klassert | 6238cba | 2011-09-27 07:41:07 +0200 | [diff] [blame] | 25 | #include <linux/cryptouser.h> |
| 26 | #include <net/netlink.h> |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 27 | |
| 28 | #include "internal.h" |
| 29 | |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 30 | struct ahash_request_priv { |
| 31 | crypto_completion_t complete; |
| 32 | void *data; |
| 33 | u8 *result; |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 34 | u32 flags; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 35 | void *ubuf[] CRYPTO_MINALIGN_ATTR; |
| 36 | }; |
| 37 | |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 38 | static inline struct ahash_alg *crypto_ahash_alg(struct crypto_ahash *hash) |
| 39 | { |
| 40 | return container_of(crypto_hash_alg_common(hash), struct ahash_alg, |
| 41 | halg); |
| 42 | } |
| 43 | |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 44 | static int hash_walk_next(struct crypto_hash_walk *walk) |
| 45 | { |
| 46 | unsigned int alignmask = walk->alignmask; |
| 47 | unsigned int offset = walk->offset; |
| 48 | unsigned int nbytes = min(walk->entrylen, |
| 49 | ((unsigned int)(PAGE_SIZE)) - offset); |
| 50 | |
Herbert Xu | 75ecb23 | 2014-05-21 20:56:12 +0800 | [diff] [blame] | 51 | if (walk->flags & CRYPTO_ALG_ASYNC) |
| 52 | walk->data = kmap(walk->pg); |
| 53 | else |
| 54 | walk->data = kmap_atomic(walk->pg); |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 55 | walk->data += offset; |
| 56 | |
Szilveszter Ördög | 23a75ee | 2010-08-06 09:26:38 +0800 | [diff] [blame] | 57 | if (offset & alignmask) { |
| 58 | unsigned int unaligned = alignmask + 1 - (offset & alignmask); |
| 59 | if (nbytes > unaligned) |
| 60 | nbytes = unaligned; |
| 61 | } |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 62 | |
| 63 | walk->entrylen -= nbytes; |
| 64 | return nbytes; |
| 65 | } |
| 66 | |
| 67 | static int hash_walk_new_entry(struct crypto_hash_walk *walk) |
| 68 | { |
| 69 | struct scatterlist *sg; |
| 70 | |
| 71 | sg = walk->sg; |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 72 | walk->offset = sg->offset; |
Herbert Xu | 82b612e | 2016-05-04 17:52:56 +0800 | [diff] [blame] | 73 | walk->pg = sg_page(walk->sg) + (walk->offset >> PAGE_SHIFT); |
| 74 | walk->offset = offset_in_page(walk->offset); |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 75 | walk->entrylen = sg->length; |
| 76 | |
| 77 | if (walk->entrylen > walk->total) |
| 78 | walk->entrylen = walk->total; |
| 79 | walk->total -= walk->entrylen; |
| 80 | |
| 81 | return hash_walk_next(walk); |
| 82 | } |
| 83 | |
| 84 | int crypto_hash_walk_done(struct crypto_hash_walk *walk, int err) |
| 85 | { |
| 86 | unsigned int alignmask = walk->alignmask; |
| 87 | unsigned int nbytes = walk->entrylen; |
| 88 | |
| 89 | walk->data -= walk->offset; |
| 90 | |
| 91 | if (nbytes && walk->offset & alignmask && !err) { |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 92 | walk->offset = ALIGN(walk->offset, alignmask + 1); |
| 93 | walk->data += walk->offset; |
| 94 | |
| 95 | nbytes = min(nbytes, |
| 96 | ((unsigned int)(PAGE_SIZE)) - walk->offset); |
| 97 | walk->entrylen -= nbytes; |
| 98 | |
| 99 | return nbytes; |
| 100 | } |
| 101 | |
Herbert Xu | 75ecb23 | 2014-05-21 20:56:12 +0800 | [diff] [blame] | 102 | if (walk->flags & CRYPTO_ALG_ASYNC) |
| 103 | kunmap(walk->pg); |
| 104 | else { |
| 105 | kunmap_atomic(walk->data); |
| 106 | /* |
| 107 | * The may sleep test only makes sense for sync users. |
| 108 | * Async users don't need to sleep here anyway. |
| 109 | */ |
| 110 | crypto_yield(walk->flags); |
| 111 | } |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 112 | |
| 113 | if (err) |
| 114 | return err; |
| 115 | |
Herbert Xu | d315a0e | 2009-05-31 23:09:22 +1000 | [diff] [blame] | 116 | if (nbytes) { |
| 117 | walk->offset = 0; |
| 118 | walk->pg++; |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 119 | return hash_walk_next(walk); |
Herbert Xu | d315a0e | 2009-05-31 23:09:22 +1000 | [diff] [blame] | 120 | } |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 121 | |
| 122 | if (!walk->total) |
| 123 | return 0; |
| 124 | |
| 125 | walk->sg = scatterwalk_sg_next(walk->sg); |
| 126 | |
| 127 | return hash_walk_new_entry(walk); |
| 128 | } |
| 129 | EXPORT_SYMBOL_GPL(crypto_hash_walk_done); |
| 130 | |
| 131 | int crypto_hash_walk_first(struct ahash_request *req, |
| 132 | struct crypto_hash_walk *walk) |
| 133 | { |
| 134 | walk->total = req->nbytes; |
| 135 | |
Tim Chen | 6d9529c | 2014-07-10 16:18:08 -0700 | [diff] [blame] | 136 | if (!walk->total) { |
| 137 | walk->entrylen = 0; |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 138 | return 0; |
Tim Chen | 6d9529c | 2014-07-10 16:18:08 -0700 | [diff] [blame] | 139 | } |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 140 | |
| 141 | walk->alignmask = crypto_ahash_alignmask(crypto_ahash_reqtfm(req)); |
| 142 | walk->sg = req->src; |
Herbert Xu | 75ecb23 | 2014-05-21 20:56:12 +0800 | [diff] [blame] | 143 | walk->flags = req->base.flags & CRYPTO_TFM_REQ_MASK; |
Herbert Xu | 2003625 | 2008-07-07 22:19:53 +0800 | [diff] [blame] | 144 | |
| 145 | return hash_walk_new_entry(walk); |
| 146 | } |
| 147 | EXPORT_SYMBOL_GPL(crypto_hash_walk_first); |
| 148 | |
Herbert Xu | 75ecb23 | 2014-05-21 20:56:12 +0800 | [diff] [blame] | 149 | int crypto_ahash_walk_first(struct ahash_request *req, |
| 150 | struct crypto_hash_walk *walk) |
| 151 | { |
| 152 | walk->total = req->nbytes; |
| 153 | |
Tim Chen | 6d9529c | 2014-07-10 16:18:08 -0700 | [diff] [blame] | 154 | if (!walk->total) { |
| 155 | walk->entrylen = 0; |
Herbert Xu | 75ecb23 | 2014-05-21 20:56:12 +0800 | [diff] [blame] | 156 | return 0; |
Tim Chen | 6d9529c | 2014-07-10 16:18:08 -0700 | [diff] [blame] | 157 | } |
Herbert Xu | 75ecb23 | 2014-05-21 20:56:12 +0800 | [diff] [blame] | 158 | |
| 159 | walk->alignmask = crypto_ahash_alignmask(crypto_ahash_reqtfm(req)); |
| 160 | walk->sg = req->src; |
| 161 | walk->flags = req->base.flags & CRYPTO_TFM_REQ_MASK; |
| 162 | walk->flags |= CRYPTO_ALG_ASYNC; |
| 163 | |
| 164 | BUILD_BUG_ON(CRYPTO_TFM_REQ_MASK & CRYPTO_ALG_ASYNC); |
| 165 | |
| 166 | return hash_walk_new_entry(walk); |
| 167 | } |
| 168 | EXPORT_SYMBOL_GPL(crypto_ahash_walk_first); |
| 169 | |
Herbert Xu | 5f7082e | 2008-08-31 22:21:09 +1000 | [diff] [blame] | 170 | int crypto_hash_walk_first_compat(struct hash_desc *hdesc, |
| 171 | struct crypto_hash_walk *walk, |
| 172 | struct scatterlist *sg, unsigned int len) |
| 173 | { |
| 174 | walk->total = len; |
| 175 | |
Tim Chen | 6d9529c | 2014-07-10 16:18:08 -0700 | [diff] [blame] | 176 | if (!walk->total) { |
| 177 | walk->entrylen = 0; |
Herbert Xu | 5f7082e | 2008-08-31 22:21:09 +1000 | [diff] [blame] | 178 | return 0; |
Tim Chen | 6d9529c | 2014-07-10 16:18:08 -0700 | [diff] [blame] | 179 | } |
Herbert Xu | 5f7082e | 2008-08-31 22:21:09 +1000 | [diff] [blame] | 180 | |
| 181 | walk->alignmask = crypto_hash_alignmask(hdesc->tfm); |
| 182 | walk->sg = sg; |
Herbert Xu | 75ecb23 | 2014-05-21 20:56:12 +0800 | [diff] [blame] | 183 | walk->flags = hdesc->flags & CRYPTO_TFM_REQ_MASK; |
Herbert Xu | 5f7082e | 2008-08-31 22:21:09 +1000 | [diff] [blame] | 184 | |
| 185 | return hash_walk_new_entry(walk); |
| 186 | } |
| 187 | |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 188 | static int ahash_setkey_unaligned(struct crypto_ahash *tfm, const u8 *key, |
| 189 | unsigned int keylen) |
| 190 | { |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 191 | unsigned long alignmask = crypto_ahash_alignmask(tfm); |
| 192 | int ret; |
| 193 | u8 *buffer, *alignbuffer; |
| 194 | unsigned long absize; |
| 195 | |
| 196 | absize = keylen + alignmask; |
Herbert Xu | 093900c | 2009-07-14 21:48:35 +0800 | [diff] [blame] | 197 | buffer = kmalloc(absize, GFP_KERNEL); |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 198 | if (!buffer) |
| 199 | return -ENOMEM; |
| 200 | |
| 201 | alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1); |
| 202 | memcpy(alignbuffer, key, keylen); |
Herbert Xu | a70c522 | 2009-07-15 20:39:05 +0800 | [diff] [blame] | 203 | ret = tfm->setkey(tfm, alignbuffer, keylen); |
Herbert Xu | 8c32c51 | 2009-07-14 21:35:36 +0800 | [diff] [blame] | 204 | kzfree(buffer); |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 205 | return ret; |
| 206 | } |
| 207 | |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 208 | int crypto_ahash_setkey(struct crypto_ahash *tfm, const u8 *key, |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 209 | unsigned int keylen) |
| 210 | { |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 211 | unsigned long alignmask = crypto_ahash_alignmask(tfm); |
| 212 | |
| 213 | if ((unsigned long)key & alignmask) |
| 214 | return ahash_setkey_unaligned(tfm, key, keylen); |
| 215 | |
Herbert Xu | a70c522 | 2009-07-15 20:39:05 +0800 | [diff] [blame] | 216 | return tfm->setkey(tfm, key, keylen); |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 217 | } |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 218 | EXPORT_SYMBOL_GPL(crypto_ahash_setkey); |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 219 | |
Herbert Xu | 3751f40 | 2008-11-08 08:56:57 +0800 | [diff] [blame] | 220 | static int ahash_nosetkey(struct crypto_ahash *tfm, const u8 *key, |
| 221 | unsigned int keylen) |
| 222 | { |
| 223 | return -ENOSYS; |
| 224 | } |
| 225 | |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 226 | static inline unsigned int ahash_align_buffer_size(unsigned len, |
| 227 | unsigned long mask) |
| 228 | { |
| 229 | return len + (mask & ~(crypto_tfm_ctx_alignment() - 1)); |
| 230 | } |
| 231 | |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 232 | static int ahash_save_req(struct ahash_request *req, crypto_completion_t cplt) |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 233 | { |
| 234 | struct crypto_ahash *tfm = crypto_ahash_reqtfm(req); |
| 235 | unsigned long alignmask = crypto_ahash_alignmask(tfm); |
| 236 | unsigned int ds = crypto_ahash_digestsize(tfm); |
| 237 | struct ahash_request_priv *priv; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 238 | |
| 239 | priv = kmalloc(sizeof(*priv) + ahash_align_buffer_size(ds, alignmask), |
| 240 | (req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP) ? |
Steffen Klassert | 5befbd5 | 2009-07-24 13:56:31 +0800 | [diff] [blame] | 241 | GFP_KERNEL : GFP_ATOMIC); |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 242 | if (!priv) |
| 243 | return -ENOMEM; |
| 244 | |
Marek Vasut | ab6bf4e | 2014-03-14 02:37:04 +0100 | [diff] [blame] | 245 | /* |
| 246 | * WARNING: Voodoo programming below! |
| 247 | * |
| 248 | * The code below is obscure and hard to understand, thus explanation |
| 249 | * is necessary. See include/crypto/hash.h and include/linux/crypto.h |
| 250 | * to understand the layout of structures used here! |
| 251 | * |
| 252 | * The code here will replace portions of the ORIGINAL request with |
| 253 | * pointers to new code and buffers so the hashing operation can store |
| 254 | * the result in aligned buffer. We will call the modified request |
| 255 | * an ADJUSTED request. |
| 256 | * |
| 257 | * The newly mangled request will look as such: |
| 258 | * |
| 259 | * req { |
| 260 | * .result = ADJUSTED[new aligned buffer] |
| 261 | * .base.complete = ADJUSTED[pointer to completion function] |
| 262 | * .base.data = ADJUSTED[*req (pointer to self)] |
| 263 | * .priv = ADJUSTED[new priv] { |
| 264 | * .result = ORIGINAL(result) |
| 265 | * .complete = ORIGINAL(base.complete) |
| 266 | * .data = ORIGINAL(base.data) |
| 267 | * } |
| 268 | */ |
| 269 | |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 270 | priv->result = req->result; |
| 271 | priv->complete = req->base.complete; |
| 272 | priv->data = req->base.data; |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 273 | priv->flags = req->base.flags; |
| 274 | |
Marek Vasut | ab6bf4e | 2014-03-14 02:37:04 +0100 | [diff] [blame] | 275 | /* |
| 276 | * WARNING: We do not backup req->priv here! The req->priv |
| 277 | * is for internal use of the Crypto API and the |
| 278 | * user must _NOT_ _EVER_ depend on it's content! |
| 279 | */ |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 280 | |
| 281 | req->result = PTR_ALIGN((u8 *)priv->ubuf, alignmask + 1); |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 282 | req->base.complete = cplt; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 283 | req->base.data = req; |
| 284 | req->priv = priv; |
| 285 | |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 286 | return 0; |
| 287 | } |
| 288 | |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 289 | static void ahash_restore_req(struct ahash_request *req, int err) |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 290 | { |
| 291 | struct ahash_request_priv *priv = req->priv; |
| 292 | |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 293 | if (!err) |
| 294 | memcpy(priv->result, req->result, |
| 295 | crypto_ahash_digestsize(crypto_ahash_reqtfm(req))); |
| 296 | |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 297 | /* Restore the original crypto request. */ |
| 298 | req->result = priv->result; |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 299 | |
| 300 | ahash_request_set_callback(req, priv->flags, |
| 301 | priv->complete, priv->data); |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 302 | req->priv = NULL; |
| 303 | |
| 304 | /* Free the req->priv.priv from the ADJUSTED request. */ |
| 305 | kzfree(priv); |
| 306 | } |
| 307 | |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 308 | static void ahash_notify_einprogress(struct ahash_request *req) |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 309 | { |
| 310 | struct ahash_request_priv *priv = req->priv; |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 311 | struct crypto_async_request oreq; |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 312 | |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 313 | oreq.data = priv->data; |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 314 | |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 315 | priv->complete(&oreq, -EINPROGRESS); |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | static void ahash_op_unaligned_done(struct crypto_async_request *req, int err) |
| 319 | { |
| 320 | struct ahash_request *areq = req->data; |
| 321 | |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 322 | if (err == -EINPROGRESS) { |
| 323 | ahash_notify_einprogress(areq); |
| 324 | return; |
| 325 | } |
| 326 | |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 327 | /* |
| 328 | * Restore the original request, see ahash_op_unaligned() for what |
| 329 | * goes where. |
| 330 | * |
| 331 | * The "struct ahash_request *req" here is in fact the "req.base" |
| 332 | * from the ADJUSTED request from ahash_op_unaligned(), thus as it |
| 333 | * is a pointer to self, it is also the ADJUSTED "req" . |
| 334 | */ |
| 335 | |
| 336 | /* First copy req->result into req->priv.result */ |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 337 | ahash_restore_req(areq, err); |
Marek Vasut | 1ffc9fb | 2014-03-14 02:37:05 +0100 | [diff] [blame] | 338 | |
| 339 | /* Complete the ORIGINAL request. */ |
| 340 | areq->base.complete(&areq->base, err); |
| 341 | } |
| 342 | |
| 343 | static int ahash_op_unaligned(struct ahash_request *req, |
| 344 | int (*op)(struct ahash_request *)) |
| 345 | { |
| 346 | int err; |
| 347 | |
| 348 | err = ahash_save_req(req, ahash_op_unaligned_done); |
| 349 | if (err) |
| 350 | return err; |
| 351 | |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 352 | err = op(req); |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 353 | if (err == -EINPROGRESS || |
| 354 | (err == -EBUSY && (ahash_request_flags(req) & |
| 355 | CRYPTO_TFM_REQ_MAY_BACKLOG))) |
| 356 | return err; |
| 357 | |
| 358 | ahash_restore_req(req, err); |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 359 | |
| 360 | return err; |
| 361 | } |
| 362 | |
| 363 | static int crypto_ahash_op(struct ahash_request *req, |
| 364 | int (*op)(struct ahash_request *)) |
| 365 | { |
| 366 | struct crypto_ahash *tfm = crypto_ahash_reqtfm(req); |
| 367 | unsigned long alignmask = crypto_ahash_alignmask(tfm); |
| 368 | |
| 369 | if ((unsigned long)req->result & alignmask) |
| 370 | return ahash_op_unaligned(req, op); |
| 371 | |
| 372 | return op(req); |
| 373 | } |
| 374 | |
| 375 | int crypto_ahash_final(struct ahash_request *req) |
| 376 | { |
| 377 | return crypto_ahash_op(req, crypto_ahash_reqtfm(req)->final); |
| 378 | } |
| 379 | EXPORT_SYMBOL_GPL(crypto_ahash_final); |
| 380 | |
| 381 | int crypto_ahash_finup(struct ahash_request *req) |
| 382 | { |
| 383 | return crypto_ahash_op(req, crypto_ahash_reqtfm(req)->finup); |
| 384 | } |
| 385 | EXPORT_SYMBOL_GPL(crypto_ahash_finup); |
| 386 | |
| 387 | int crypto_ahash_digest(struct ahash_request *req) |
| 388 | { |
| 389 | return crypto_ahash_op(req, crypto_ahash_reqtfm(req)->digest); |
| 390 | } |
| 391 | EXPORT_SYMBOL_GPL(crypto_ahash_digest); |
| 392 | |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 393 | static void ahash_def_finup_done2(struct crypto_async_request *req, int err) |
| 394 | { |
| 395 | struct ahash_request *areq = req->data; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 396 | |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 397 | if (err == -EINPROGRESS) |
| 398 | return; |
| 399 | |
| 400 | ahash_restore_req(areq, err); |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 401 | |
Marek Vasut | d4a7a0f | 2014-03-14 02:37:06 +0100 | [diff] [blame] | 402 | areq->base.complete(&areq->base, err); |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | static int ahash_def_finup_finish1(struct ahash_request *req, int err) |
| 406 | { |
| 407 | if (err) |
| 408 | goto out; |
| 409 | |
| 410 | req->base.complete = ahash_def_finup_done2; |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 411 | |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 412 | err = crypto_ahash_reqtfm(req)->final(req); |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 413 | if (err == -EINPROGRESS || |
| 414 | (err == -EBUSY && (ahash_request_flags(req) & |
| 415 | CRYPTO_TFM_REQ_MAY_BACKLOG))) |
| 416 | return err; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 417 | |
| 418 | out: |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 419 | ahash_restore_req(req, err); |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 420 | return err; |
| 421 | } |
| 422 | |
| 423 | static void ahash_def_finup_done1(struct crypto_async_request *req, int err) |
| 424 | { |
| 425 | struct ahash_request *areq = req->data; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 426 | |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 427 | if (err == -EINPROGRESS) { |
| 428 | ahash_notify_einprogress(areq); |
| 429 | return; |
| 430 | } |
| 431 | |
| 432 | areq->base.flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP; |
| 433 | |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 434 | err = ahash_def_finup_finish1(areq, err); |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 435 | if (areq->priv) |
| 436 | return; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 437 | |
Marek Vasut | d4a7a0f | 2014-03-14 02:37:06 +0100 | [diff] [blame] | 438 | areq->base.complete(&areq->base, err); |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | static int ahash_def_finup(struct ahash_request *req) |
| 442 | { |
| 443 | struct crypto_ahash *tfm = crypto_ahash_reqtfm(req); |
Marek Vasut | d4a7a0f | 2014-03-14 02:37:06 +0100 | [diff] [blame] | 444 | int err; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 445 | |
Marek Vasut | d4a7a0f | 2014-03-14 02:37:06 +0100 | [diff] [blame] | 446 | err = ahash_save_req(req, ahash_def_finup_done1); |
| 447 | if (err) |
| 448 | return err; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 449 | |
Marek Vasut | d4a7a0f | 2014-03-14 02:37:06 +0100 | [diff] [blame] | 450 | err = tfm->update(req); |
Herbert Xu | c279814 | 2017-04-10 17:27:57 +0800 | [diff] [blame] | 451 | if (err == -EINPROGRESS || |
| 452 | (err == -EBUSY && (ahash_request_flags(req) & |
| 453 | CRYPTO_TFM_REQ_MAY_BACKLOG))) |
| 454 | return err; |
| 455 | |
Marek Vasut | d4a7a0f | 2014-03-14 02:37:06 +0100 | [diff] [blame] | 456 | return ahash_def_finup_finish1(req, err); |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | static int ahash_no_export(struct ahash_request *req, void *out) |
| 460 | { |
| 461 | return -ENOSYS; |
| 462 | } |
| 463 | |
| 464 | static int ahash_no_import(struct ahash_request *req, const void *in) |
| 465 | { |
| 466 | return -ENOSYS; |
| 467 | } |
| 468 | |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 469 | static int crypto_ahash_init_tfm(struct crypto_tfm *tfm) |
| 470 | { |
| 471 | struct crypto_ahash *hash = __crypto_ahash_cast(tfm); |
| 472 | struct ahash_alg *alg = crypto_ahash_alg(hash); |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 473 | |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 474 | hash->setkey = ahash_nosetkey; |
Herbert Xu | 8c78179 | 2016-01-08 21:28:26 +0800 | [diff] [blame] | 475 | hash->has_setkey = false; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 476 | hash->export = ahash_no_export; |
| 477 | hash->import = ahash_no_import; |
| 478 | |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 479 | if (tfm->__crt_alg->cra_type != &crypto_ahash_type) |
| 480 | return crypto_init_shash_ops_async(tfm); |
| 481 | |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 482 | hash->init = alg->init; |
| 483 | hash->update = alg->update; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 484 | hash->final = alg->final; |
| 485 | hash->finup = alg->finup ?: ahash_def_finup; |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 486 | hash->digest = alg->digest; |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 487 | |
Herbert Xu | 8c78179 | 2016-01-08 21:28:26 +0800 | [diff] [blame] | 488 | if (alg->setkey) { |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 489 | hash->setkey = alg->setkey; |
Herbert Xu | 8c78179 | 2016-01-08 21:28:26 +0800 | [diff] [blame] | 490 | hash->has_setkey = true; |
| 491 | } |
Herbert Xu | 66f6ce5 | 2009-07-15 12:40:40 +0800 | [diff] [blame] | 492 | if (alg->export) |
| 493 | hash->export = alg->export; |
| 494 | if (alg->import) |
| 495 | hash->import = alg->import; |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 496 | |
| 497 | return 0; |
| 498 | } |
| 499 | |
| 500 | static unsigned int crypto_ahash_extsize(struct crypto_alg *alg) |
| 501 | { |
| 502 | if (alg->cra_type == &crypto_ahash_type) |
| 503 | return alg->cra_ctxsize; |
| 504 | |
| 505 | return sizeof(struct crypto_shash *); |
| 506 | } |
| 507 | |
Herbert Xu | 3acc847 | 2011-11-03 23:46:07 +1100 | [diff] [blame] | 508 | #ifdef CONFIG_NET |
Steffen Klassert | 6238cba | 2011-09-27 07:41:07 +0200 | [diff] [blame] | 509 | static int crypto_ahash_report(struct sk_buff *skb, struct crypto_alg *alg) |
| 510 | { |
| 511 | struct crypto_report_hash rhash; |
| 512 | |
Mathias Krause | 9a5467b | 2013-02-05 18:19:13 +0100 | [diff] [blame] | 513 | strncpy(rhash.type, "ahash", sizeof(rhash.type)); |
Steffen Klassert | 6238cba | 2011-09-27 07:41:07 +0200 | [diff] [blame] | 514 | |
| 515 | rhash.blocksize = alg->cra_blocksize; |
| 516 | rhash.digestsize = __crypto_hash_alg_common(alg)->digestsize; |
| 517 | |
David S. Miller | 6662df3 | 2012-04-01 20:19:05 -0400 | [diff] [blame] | 518 | if (nla_put(skb, CRYPTOCFGA_REPORT_HASH, |
| 519 | sizeof(struct crypto_report_hash), &rhash)) |
| 520 | goto nla_put_failure; |
Steffen Klassert | 6238cba | 2011-09-27 07:41:07 +0200 | [diff] [blame] | 521 | return 0; |
| 522 | |
| 523 | nla_put_failure: |
| 524 | return -EMSGSIZE; |
| 525 | } |
Herbert Xu | 3acc847 | 2011-11-03 23:46:07 +1100 | [diff] [blame] | 526 | #else |
| 527 | static int crypto_ahash_report(struct sk_buff *skb, struct crypto_alg *alg) |
| 528 | { |
| 529 | return -ENOSYS; |
| 530 | } |
| 531 | #endif |
Steffen Klassert | 6238cba | 2011-09-27 07:41:07 +0200 | [diff] [blame] | 532 | |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 533 | static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg) |
| 534 | __attribute__ ((unused)); |
| 535 | static void crypto_ahash_show(struct seq_file *m, struct crypto_alg *alg) |
| 536 | { |
| 537 | seq_printf(m, "type : ahash\n"); |
| 538 | seq_printf(m, "async : %s\n", alg->cra_flags & CRYPTO_ALG_ASYNC ? |
| 539 | "yes" : "no"); |
| 540 | seq_printf(m, "blocksize : %u\n", alg->cra_blocksize); |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 541 | seq_printf(m, "digestsize : %u\n", |
| 542 | __crypto_hash_alg_common(alg)->digestsize); |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 543 | } |
| 544 | |
| 545 | const struct crypto_type crypto_ahash_type = { |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 546 | .extsize = crypto_ahash_extsize, |
| 547 | .init_tfm = crypto_ahash_init_tfm, |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 548 | #ifdef CONFIG_PROC_FS |
| 549 | .show = crypto_ahash_show, |
| 550 | #endif |
Steffen Klassert | 6238cba | 2011-09-27 07:41:07 +0200 | [diff] [blame] | 551 | .report = crypto_ahash_report, |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 552 | .maskclear = ~CRYPTO_ALG_TYPE_MASK, |
| 553 | .maskset = CRYPTO_ALG_TYPE_AHASH_MASK, |
| 554 | .type = CRYPTO_ALG_TYPE_AHASH, |
| 555 | .tfmsize = offsetof(struct crypto_ahash, base), |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 556 | }; |
| 557 | EXPORT_SYMBOL_GPL(crypto_ahash_type); |
| 558 | |
Herbert Xu | 88056ec | 2009-07-14 12:28:26 +0800 | [diff] [blame] | 559 | struct crypto_ahash *crypto_alloc_ahash(const char *alg_name, u32 type, |
| 560 | u32 mask) |
| 561 | { |
| 562 | return crypto_alloc_tfm(alg_name, &crypto_ahash_type, type, mask); |
| 563 | } |
| 564 | EXPORT_SYMBOL_GPL(crypto_alloc_ahash); |
| 565 | |
Herbert Xu | 01c2dec | 2009-07-14 14:06:06 +0800 | [diff] [blame] | 566 | static int ahash_prepare_alg(struct ahash_alg *alg) |
| 567 | { |
| 568 | struct crypto_alg *base = &alg->halg.base; |
| 569 | |
| 570 | if (alg->halg.digestsize > PAGE_SIZE / 8 || |
Russell King | e360fb0 | 2015-10-09 20:43:33 +0100 | [diff] [blame] | 571 | alg->halg.statesize > PAGE_SIZE / 8 || |
| 572 | alg->halg.statesize == 0) |
Herbert Xu | 01c2dec | 2009-07-14 14:06:06 +0800 | [diff] [blame] | 573 | return -EINVAL; |
| 574 | |
| 575 | base->cra_type = &crypto_ahash_type; |
| 576 | base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK; |
| 577 | base->cra_flags |= CRYPTO_ALG_TYPE_AHASH; |
| 578 | |
| 579 | return 0; |
| 580 | } |
| 581 | |
| 582 | int crypto_register_ahash(struct ahash_alg *alg) |
| 583 | { |
| 584 | struct crypto_alg *base = &alg->halg.base; |
| 585 | int err; |
| 586 | |
| 587 | err = ahash_prepare_alg(alg); |
| 588 | if (err) |
| 589 | return err; |
| 590 | |
| 591 | return crypto_register_alg(base); |
| 592 | } |
| 593 | EXPORT_SYMBOL_GPL(crypto_register_ahash); |
| 594 | |
| 595 | int crypto_unregister_ahash(struct ahash_alg *alg) |
| 596 | { |
| 597 | return crypto_unregister_alg(&alg->halg.base); |
| 598 | } |
| 599 | EXPORT_SYMBOL_GPL(crypto_unregister_ahash); |
| 600 | |
| 601 | int ahash_register_instance(struct crypto_template *tmpl, |
| 602 | struct ahash_instance *inst) |
| 603 | { |
| 604 | int err; |
| 605 | |
| 606 | err = ahash_prepare_alg(&inst->alg); |
| 607 | if (err) |
| 608 | return err; |
| 609 | |
| 610 | return crypto_register_instance(tmpl, ahash_crypto_instance(inst)); |
| 611 | } |
| 612 | EXPORT_SYMBOL_GPL(ahash_register_instance); |
| 613 | |
| 614 | void ahash_free_instance(struct crypto_instance *inst) |
| 615 | { |
| 616 | crypto_drop_spawn(crypto_instance_ctx(inst)); |
| 617 | kfree(ahash_instance(inst)); |
| 618 | } |
| 619 | EXPORT_SYMBOL_GPL(ahash_free_instance); |
| 620 | |
| 621 | int crypto_init_ahash_spawn(struct crypto_ahash_spawn *spawn, |
| 622 | struct hash_alg_common *alg, |
| 623 | struct crypto_instance *inst) |
| 624 | { |
| 625 | return crypto_init_spawn2(&spawn->base, &alg->base, inst, |
| 626 | &crypto_ahash_type); |
| 627 | } |
| 628 | EXPORT_SYMBOL_GPL(crypto_init_ahash_spawn); |
| 629 | |
| 630 | struct hash_alg_common *ahash_attr_alg(struct rtattr *rta, u32 type, u32 mask) |
| 631 | { |
| 632 | struct crypto_alg *alg; |
| 633 | |
| 634 | alg = crypto_attr_alg2(rta, &crypto_ahash_type, type, mask); |
| 635 | return IS_ERR(alg) ? ERR_CAST(alg) : __crypto_hash_alg_common(alg); |
| 636 | } |
| 637 | EXPORT_SYMBOL_GPL(ahash_attr_alg); |
| 638 | |
Loc Ho | 004a403 | 2008-05-14 20:41:47 +0800 | [diff] [blame] | 639 | MODULE_LICENSE("GPL"); |
| 640 | MODULE_DESCRIPTION("Asynchronous cryptographic hash type"); |