OSDN Git Service

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