shash.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. /*
  2. * Synchronous Cryptographic Hash operations.
  3. *
  4. * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
  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. #include <crypto/scatterwalk.h>
  13. #include <crypto/internal/hash.h>
  14. #include <linux/err.h>
  15. #include <linux/kernel.h>
  16. #include <linux/module.h>
  17. #include <linux/slab.h>
  18. #include <linux/seq_file.h>
  19. #include "internal.h"
  20. static const struct crypto_type crypto_shash_type;
  21. static int shash_setkey_unaligned(struct crypto_shash *tfm, const u8 *key,
  22. unsigned int keylen)
  23. {
  24. struct shash_alg *shash = crypto_shash_alg(tfm);
  25. unsigned long alignmask = crypto_shash_alignmask(tfm);
  26. unsigned long absize;
  27. u8 *buffer, *alignbuffer;
  28. int err;
  29. absize = keylen + (alignmask & ~(CRYPTO_MINALIGN - 1));
  30. buffer = kmalloc(absize, GFP_KERNEL);
  31. if (!buffer)
  32. return -ENOMEM;
  33. alignbuffer = (u8 *)ALIGN((unsigned long)buffer, alignmask + 1);
  34. memcpy(alignbuffer, key, keylen);
  35. err = shash->setkey(tfm, alignbuffer, keylen);
  36. memset(alignbuffer, 0, keylen);
  37. kfree(buffer);
  38. return err;
  39. }
  40. int crypto_shash_setkey(struct crypto_shash *tfm, const u8 *key,
  41. unsigned int keylen)
  42. {
  43. struct shash_alg *shash = crypto_shash_alg(tfm);
  44. unsigned long alignmask = crypto_shash_alignmask(tfm);
  45. if (!shash->setkey)
  46. return -ENOSYS;
  47. if ((unsigned long)key & alignmask)
  48. return shash_setkey_unaligned(tfm, key, keylen);
  49. return shash->setkey(tfm, key, keylen);
  50. }
  51. EXPORT_SYMBOL_GPL(crypto_shash_setkey);
  52. static inline unsigned int shash_align_buffer_size(unsigned len,
  53. unsigned long mask)
  54. {
  55. return len + (mask & ~(__alignof__(u8 __attribute__ ((aligned))) - 1));
  56. }
  57. static int shash_update_unaligned(struct shash_desc *desc, const u8 *data,
  58. unsigned int len)
  59. {
  60. struct crypto_shash *tfm = desc->tfm;
  61. struct shash_alg *shash = crypto_shash_alg(tfm);
  62. unsigned long alignmask = crypto_shash_alignmask(tfm);
  63. unsigned int unaligned_len = alignmask + 1 -
  64. ((unsigned long)data & alignmask);
  65. u8 buf[shash_align_buffer_size(unaligned_len, alignmask)]
  66. __attribute__ ((aligned));
  67. if (unaligned_len > len)
  68. unaligned_len = len;
  69. memcpy(buf, data, unaligned_len);
  70. return shash->update(desc, buf, unaligned_len) ?:
  71. shash->update(desc, data + unaligned_len, len - unaligned_len);
  72. }
  73. int crypto_shash_update(struct shash_desc *desc, const u8 *data,
  74. unsigned int len)
  75. {
  76. struct crypto_shash *tfm = desc->tfm;
  77. struct shash_alg *shash = crypto_shash_alg(tfm);
  78. unsigned long alignmask = crypto_shash_alignmask(tfm);
  79. if ((unsigned long)data & alignmask)
  80. return shash_update_unaligned(desc, data, len);
  81. return shash->update(desc, data, len);
  82. }
  83. EXPORT_SYMBOL_GPL(crypto_shash_update);
  84. static int shash_final_unaligned(struct shash_desc *desc, u8 *out)
  85. {
  86. struct crypto_shash *tfm = desc->tfm;
  87. unsigned long alignmask = crypto_shash_alignmask(tfm);
  88. struct shash_alg *shash = crypto_shash_alg(tfm);
  89. unsigned int ds = crypto_shash_digestsize(tfm);
  90. u8 buf[shash_align_buffer_size(ds, alignmask)]
  91. __attribute__ ((aligned));
  92. int err;
  93. err = shash->final(desc, buf);
  94. memcpy(out, buf, ds);
  95. return err;
  96. }
  97. int crypto_shash_final(struct shash_desc *desc, u8 *out)
  98. {
  99. struct crypto_shash *tfm = desc->tfm;
  100. struct shash_alg *shash = crypto_shash_alg(tfm);
  101. unsigned long alignmask = crypto_shash_alignmask(tfm);
  102. if ((unsigned long)out & alignmask)
  103. return shash_final_unaligned(desc, out);
  104. return shash->final(desc, out);
  105. }
  106. EXPORT_SYMBOL_GPL(crypto_shash_final);
  107. static int shash_finup_unaligned(struct shash_desc *desc, const u8 *data,
  108. unsigned int len, u8 *out)
  109. {
  110. return crypto_shash_update(desc, data, len) ?:
  111. crypto_shash_final(desc, out);
  112. }
  113. int crypto_shash_finup(struct shash_desc *desc, const u8 *data,
  114. unsigned int len, u8 *out)
  115. {
  116. struct crypto_shash *tfm = desc->tfm;
  117. struct shash_alg *shash = crypto_shash_alg(tfm);
  118. unsigned long alignmask = crypto_shash_alignmask(tfm);
  119. if (((unsigned long)data | (unsigned long)out) & alignmask ||
  120. !shash->finup)
  121. return shash_finup_unaligned(desc, data, len, out);
  122. return shash->finup(desc, data, len, out);
  123. }
  124. EXPORT_SYMBOL_GPL(crypto_shash_finup);
  125. static int shash_digest_unaligned(struct shash_desc *desc, const u8 *data,
  126. unsigned int len, u8 *out)
  127. {
  128. return crypto_shash_init(desc) ?:
  129. crypto_shash_update(desc, data, len) ?:
  130. crypto_shash_final(desc, out);
  131. }
  132. int crypto_shash_digest(struct shash_desc *desc, const u8 *data,
  133. unsigned int len, u8 *out)
  134. {
  135. struct crypto_shash *tfm = desc->tfm;
  136. struct shash_alg *shash = crypto_shash_alg(tfm);
  137. unsigned long alignmask = crypto_shash_alignmask(tfm);
  138. if (((unsigned long)data | (unsigned long)out) & alignmask ||
  139. !shash->digest)
  140. return shash_digest_unaligned(desc, data, len, out);
  141. return shash->digest(desc, data, len, out);
  142. }
  143. EXPORT_SYMBOL_GPL(crypto_shash_digest);
  144. int crypto_shash_import(struct shash_desc *desc, const u8 *in)
  145. {
  146. struct crypto_shash *tfm = desc->tfm;
  147. struct shash_alg *alg = crypto_shash_alg(tfm);
  148. memcpy(shash_desc_ctx(desc), in, crypto_shash_descsize(tfm));
  149. if (alg->reinit)
  150. alg->reinit(desc);
  151. return 0;
  152. }
  153. EXPORT_SYMBOL_GPL(crypto_shash_import);
  154. static int shash_async_setkey(struct crypto_ahash *tfm, const u8 *key,
  155. unsigned int keylen)
  156. {
  157. struct crypto_shash **ctx = crypto_ahash_ctx(tfm);
  158. return crypto_shash_setkey(*ctx, key, keylen);
  159. }
  160. static int shash_async_init(struct ahash_request *req)
  161. {
  162. struct crypto_shash **ctx = crypto_ahash_ctx(crypto_ahash_reqtfm(req));
  163. struct shash_desc *desc = ahash_request_ctx(req);
  164. desc->tfm = *ctx;
  165. desc->flags = req->base.flags;
  166. return crypto_shash_init(desc);
  167. }
  168. static int shash_async_update(struct ahash_request *req)
  169. {
  170. struct shash_desc *desc = ahash_request_ctx(req);
  171. struct crypto_hash_walk walk;
  172. int nbytes;
  173. for (nbytes = crypto_hash_walk_first(req, &walk); nbytes > 0;
  174. nbytes = crypto_hash_walk_done(&walk, nbytes))
  175. nbytes = crypto_shash_update(desc, walk.data, nbytes);
  176. return nbytes;
  177. }
  178. static int shash_async_final(struct ahash_request *req)
  179. {
  180. return crypto_shash_final(ahash_request_ctx(req), req->result);
  181. }
  182. static int shash_async_digest(struct ahash_request *req)
  183. {
  184. struct scatterlist *sg = req->src;
  185. unsigned int offset = sg->offset;
  186. unsigned int nbytes = req->nbytes;
  187. int err;
  188. if (nbytes < min(sg->length, ((unsigned int)(PAGE_SIZE)) - offset)) {
  189. struct crypto_shash **ctx =
  190. crypto_ahash_ctx(crypto_ahash_reqtfm(req));
  191. struct shash_desc *desc = ahash_request_ctx(req);
  192. void *data;
  193. desc->tfm = *ctx;
  194. desc->flags = req->base.flags;
  195. data = crypto_kmap(sg_page(sg), 0);
  196. err = crypto_shash_digest(desc, data + offset, nbytes,
  197. req->result);
  198. crypto_kunmap(data, 0);
  199. crypto_yield(desc->flags);
  200. goto out;
  201. }
  202. err = shash_async_init(req);
  203. if (err)
  204. goto out;
  205. err = shash_async_update(req);
  206. if (err)
  207. goto out;
  208. err = shash_async_final(req);
  209. out:
  210. return err;
  211. }
  212. static void crypto_exit_shash_ops_async(struct crypto_tfm *tfm)
  213. {
  214. struct crypto_shash **ctx = crypto_tfm_ctx(tfm);
  215. crypto_free_shash(*ctx);
  216. }
  217. static int crypto_init_shash_ops_async(struct crypto_tfm *tfm)
  218. {
  219. struct crypto_alg *calg = tfm->__crt_alg;
  220. struct shash_alg *alg = __crypto_shash_alg(calg);
  221. struct ahash_tfm *crt = &tfm->crt_ahash;
  222. struct crypto_shash **ctx = crypto_tfm_ctx(tfm);
  223. struct crypto_shash *shash;
  224. if (!crypto_mod_get(calg))
  225. return -EAGAIN;
  226. shash = crypto_create_tfm(calg, &crypto_shash_type);
  227. if (IS_ERR(shash)) {
  228. crypto_mod_put(calg);
  229. return PTR_ERR(shash);
  230. }
  231. *ctx = shash;
  232. tfm->exit = crypto_exit_shash_ops_async;
  233. crt->init = shash_async_init;
  234. crt->update = shash_async_update;
  235. crt->final = shash_async_final;
  236. crt->digest = shash_async_digest;
  237. crt->setkey = shash_async_setkey;
  238. crt->digestsize = alg->digestsize;
  239. crt->reqsize = sizeof(struct shash_desc) + crypto_shash_descsize(shash);
  240. return 0;
  241. }
  242. static int shash_compat_setkey(struct crypto_hash *tfm, const u8 *key,
  243. unsigned int keylen)
  244. {
  245. struct shash_desc *desc = crypto_hash_ctx(tfm);
  246. return crypto_shash_setkey(desc->tfm, key, keylen);
  247. }
  248. static int shash_compat_init(struct hash_desc *hdesc)
  249. {
  250. struct shash_desc *desc = crypto_hash_ctx(hdesc->tfm);
  251. desc->flags = hdesc->flags;
  252. return crypto_shash_init(desc);
  253. }
  254. static int shash_compat_update(struct hash_desc *hdesc, struct scatterlist *sg,
  255. unsigned int len)
  256. {
  257. struct shash_desc *desc = crypto_hash_ctx(hdesc->tfm);
  258. struct crypto_hash_walk walk;
  259. int nbytes;
  260. for (nbytes = crypto_hash_walk_first_compat(hdesc, &walk, sg, len);
  261. nbytes > 0; nbytes = crypto_hash_walk_done(&walk, nbytes))
  262. nbytes = crypto_shash_update(desc, walk.data, nbytes);
  263. return nbytes;
  264. }
  265. static int shash_compat_final(struct hash_desc *hdesc, u8 *out)
  266. {
  267. return crypto_shash_final(crypto_hash_ctx(hdesc->tfm), out);
  268. }
  269. static int shash_compat_digest(struct hash_desc *hdesc, struct scatterlist *sg,
  270. unsigned int nbytes, u8 *out)
  271. {
  272. unsigned int offset = sg->offset;
  273. int err;
  274. if (nbytes < min(sg->length, ((unsigned int)(PAGE_SIZE)) - offset)) {
  275. struct shash_desc *desc = crypto_hash_ctx(hdesc->tfm);
  276. void *data;
  277. desc->flags = hdesc->flags;
  278. data = crypto_kmap(sg_page(sg), 0);
  279. err = crypto_shash_digest(desc, data + offset, nbytes, out);
  280. crypto_kunmap(data, 0);
  281. crypto_yield(desc->flags);
  282. goto out;
  283. }
  284. err = shash_compat_init(hdesc);
  285. if (err)
  286. goto out;
  287. err = shash_compat_update(hdesc, sg, nbytes);
  288. if (err)
  289. goto out;
  290. err = shash_compat_final(hdesc, out);
  291. out:
  292. return err;
  293. }
  294. static void crypto_exit_shash_ops_compat(struct crypto_tfm *tfm)
  295. {
  296. struct shash_desc *desc= crypto_tfm_ctx(tfm);
  297. crypto_free_shash(desc->tfm);
  298. }
  299. static int crypto_init_shash_ops_compat(struct crypto_tfm *tfm)
  300. {
  301. struct hash_tfm *crt = &tfm->crt_hash;
  302. struct crypto_alg *calg = tfm->__crt_alg;
  303. struct shash_alg *alg = __crypto_shash_alg(calg);
  304. struct shash_desc *desc = crypto_tfm_ctx(tfm);
  305. struct crypto_shash *shash;
  306. if (!crypto_mod_get(calg))
  307. return -EAGAIN;
  308. shash = crypto_create_tfm(calg, &crypto_shash_type);
  309. if (IS_ERR(shash)) {
  310. crypto_mod_put(calg);
  311. return PTR_ERR(shash);
  312. }
  313. desc->tfm = shash;
  314. tfm->exit = crypto_exit_shash_ops_compat;
  315. crt->init = shash_compat_init;
  316. crt->update = shash_compat_update;
  317. crt->final = shash_compat_final;
  318. crt->digest = shash_compat_digest;
  319. crt->setkey = shash_compat_setkey;
  320. crt->digestsize = alg->digestsize;
  321. return 0;
  322. }
  323. static int crypto_init_shash_ops(struct crypto_tfm *tfm, u32 type, u32 mask)
  324. {
  325. switch (mask & CRYPTO_ALG_TYPE_MASK) {
  326. case CRYPTO_ALG_TYPE_HASH_MASK:
  327. return crypto_init_shash_ops_compat(tfm);
  328. case CRYPTO_ALG_TYPE_AHASH_MASK:
  329. return crypto_init_shash_ops_async(tfm);
  330. }
  331. return -EINVAL;
  332. }
  333. static unsigned int crypto_shash_ctxsize(struct crypto_alg *alg, u32 type,
  334. u32 mask)
  335. {
  336. struct shash_alg *salg = __crypto_shash_alg(alg);
  337. switch (mask & CRYPTO_ALG_TYPE_MASK) {
  338. case CRYPTO_ALG_TYPE_HASH_MASK:
  339. return sizeof(struct shash_desc) + salg->descsize;
  340. case CRYPTO_ALG_TYPE_AHASH_MASK:
  341. return sizeof(struct crypto_shash *);
  342. }
  343. return 0;
  344. }
  345. static int crypto_shash_init_tfm(struct crypto_tfm *tfm,
  346. const struct crypto_type *frontend)
  347. {
  348. return 0;
  349. }
  350. static unsigned int crypto_shash_extsize(struct crypto_alg *alg,
  351. const struct crypto_type *frontend)
  352. {
  353. return alg->cra_ctxsize;
  354. }
  355. static void crypto_shash_show(struct seq_file *m, struct crypto_alg *alg)
  356. __attribute__ ((unused));
  357. static void crypto_shash_show(struct seq_file *m, struct crypto_alg *alg)
  358. {
  359. struct shash_alg *salg = __crypto_shash_alg(alg);
  360. seq_printf(m, "type : shash\n");
  361. seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
  362. seq_printf(m, "digestsize : %u\n", salg->digestsize);
  363. seq_printf(m, "descsize : %u\n", salg->descsize);
  364. }
  365. static const struct crypto_type crypto_shash_type = {
  366. .ctxsize = crypto_shash_ctxsize,
  367. .extsize = crypto_shash_extsize,
  368. .init = crypto_init_shash_ops,
  369. .init_tfm = crypto_shash_init_tfm,
  370. #ifdef CONFIG_PROC_FS
  371. .show = crypto_shash_show,
  372. #endif
  373. .maskclear = ~CRYPTO_ALG_TYPE_MASK,
  374. .maskset = CRYPTO_ALG_TYPE_MASK,
  375. .type = CRYPTO_ALG_TYPE_SHASH,
  376. .tfmsize = offsetof(struct crypto_shash, base),
  377. };
  378. struct crypto_shash *crypto_alloc_shash(const char *alg_name, u32 type,
  379. u32 mask)
  380. {
  381. return crypto_alloc_tfm(alg_name, &crypto_shash_type, type, mask);
  382. }
  383. EXPORT_SYMBOL_GPL(crypto_alloc_shash);
  384. int crypto_register_shash(struct shash_alg *alg)
  385. {
  386. struct crypto_alg *base = &alg->base;
  387. if (alg->digestsize > PAGE_SIZE / 8 ||
  388. alg->descsize > PAGE_SIZE / 8)
  389. return -EINVAL;
  390. base->cra_type = &crypto_shash_type;
  391. base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
  392. base->cra_flags |= CRYPTO_ALG_TYPE_SHASH;
  393. return crypto_register_alg(base);
  394. }
  395. EXPORT_SYMBOL_GPL(crypto_register_shash);
  396. int crypto_unregister_shash(struct shash_alg *alg)
  397. {
  398. return crypto_unregister_alg(&alg->base);
  399. }
  400. EXPORT_SYMBOL_GPL(crypto_unregister_shash);
  401. MODULE_LICENSE("GPL");
  402. MODULE_DESCRIPTION("Synchronous cryptographic hash type");