shash.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  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_finup(desc, data, len, out);
  130. }
  131. int crypto_shash_digest(struct shash_desc *desc, const u8 *data,
  132. unsigned int len, u8 *out)
  133. {
  134. struct crypto_shash *tfm = desc->tfm;
  135. struct shash_alg *shash = crypto_shash_alg(tfm);
  136. unsigned long alignmask = crypto_shash_alignmask(tfm);
  137. if (((unsigned long)data | (unsigned long)out) & alignmask ||
  138. !shash->digest)
  139. return shash_digest_unaligned(desc, data, len, out);
  140. return shash->digest(desc, data, len, out);
  141. }
  142. EXPORT_SYMBOL_GPL(crypto_shash_digest);
  143. static int shash_no_export(struct shash_desc *desc, void *out)
  144. {
  145. return -ENOSYS;
  146. }
  147. static int shash_no_import(struct shash_desc *desc, const void *in)
  148. {
  149. return -ENOSYS;
  150. }
  151. static int shash_async_setkey(struct crypto_ahash *tfm, const u8 *key,
  152. unsigned int keylen)
  153. {
  154. struct crypto_shash **ctx = crypto_ahash_ctx(tfm);
  155. return crypto_shash_setkey(*ctx, key, keylen);
  156. }
  157. static int shash_async_init(struct ahash_request *req)
  158. {
  159. struct crypto_shash **ctx = crypto_ahash_ctx(crypto_ahash_reqtfm(req));
  160. struct shash_desc *desc = ahash_request_ctx(req);
  161. desc->tfm = *ctx;
  162. desc->flags = req->base.flags;
  163. return crypto_shash_init(desc);
  164. }
  165. static int shash_async_update(struct ahash_request *req)
  166. {
  167. struct shash_desc *desc = ahash_request_ctx(req);
  168. struct crypto_hash_walk walk;
  169. int nbytes;
  170. for (nbytes = crypto_hash_walk_first(req, &walk); nbytes > 0;
  171. nbytes = crypto_hash_walk_done(&walk, nbytes))
  172. nbytes = crypto_shash_update(desc, walk.data, nbytes);
  173. return nbytes;
  174. }
  175. static int shash_async_final(struct ahash_request *req)
  176. {
  177. return crypto_shash_final(ahash_request_ctx(req), req->result);
  178. }
  179. static int shash_async_digest(struct ahash_request *req)
  180. {
  181. struct scatterlist *sg = req->src;
  182. unsigned int offset = sg->offset;
  183. unsigned int nbytes = req->nbytes;
  184. int err;
  185. if (nbytes < min(sg->length, ((unsigned int)(PAGE_SIZE)) - offset)) {
  186. struct crypto_shash **ctx =
  187. crypto_ahash_ctx(crypto_ahash_reqtfm(req));
  188. struct shash_desc *desc = ahash_request_ctx(req);
  189. void *data;
  190. desc->tfm = *ctx;
  191. desc->flags = req->base.flags;
  192. data = crypto_kmap(sg_page(sg), 0);
  193. err = crypto_shash_digest(desc, data + offset, nbytes,
  194. req->result);
  195. crypto_kunmap(data, 0);
  196. crypto_yield(desc->flags);
  197. goto out;
  198. }
  199. err = shash_async_init(req);
  200. if (err)
  201. goto out;
  202. err = shash_async_update(req);
  203. if (err)
  204. goto out;
  205. err = shash_async_final(req);
  206. out:
  207. return err;
  208. }
  209. static void crypto_exit_shash_ops_async(struct crypto_tfm *tfm)
  210. {
  211. struct crypto_shash **ctx = crypto_tfm_ctx(tfm);
  212. crypto_free_shash(*ctx);
  213. }
  214. static int crypto_init_shash_ops_async(struct crypto_tfm *tfm)
  215. {
  216. struct crypto_alg *calg = tfm->__crt_alg;
  217. struct shash_alg *alg = __crypto_shash_alg(calg);
  218. struct ahash_tfm *crt = &tfm->crt_ahash;
  219. struct crypto_shash **ctx = crypto_tfm_ctx(tfm);
  220. struct crypto_shash *shash;
  221. if (!crypto_mod_get(calg))
  222. return -EAGAIN;
  223. shash = crypto_create_tfm(calg, &crypto_shash_type);
  224. if (IS_ERR(shash)) {
  225. crypto_mod_put(calg);
  226. return PTR_ERR(shash);
  227. }
  228. *ctx = shash;
  229. tfm->exit = crypto_exit_shash_ops_async;
  230. crt->init = shash_async_init;
  231. crt->update = shash_async_update;
  232. crt->final = shash_async_final;
  233. crt->digest = shash_async_digest;
  234. crt->setkey = shash_async_setkey;
  235. crt->digestsize = alg->digestsize;
  236. crt->reqsize = sizeof(struct shash_desc) + crypto_shash_descsize(shash);
  237. return 0;
  238. }
  239. static int shash_compat_setkey(struct crypto_hash *tfm, const u8 *key,
  240. unsigned int keylen)
  241. {
  242. struct shash_desc *desc = crypto_hash_ctx(tfm);
  243. return crypto_shash_setkey(desc->tfm, key, keylen);
  244. }
  245. static int shash_compat_init(struct hash_desc *hdesc)
  246. {
  247. struct shash_desc *desc = crypto_hash_ctx(hdesc->tfm);
  248. desc->flags = hdesc->flags;
  249. return crypto_shash_init(desc);
  250. }
  251. static int shash_compat_update(struct hash_desc *hdesc, struct scatterlist *sg,
  252. unsigned int len)
  253. {
  254. struct shash_desc *desc = crypto_hash_ctx(hdesc->tfm);
  255. struct crypto_hash_walk walk;
  256. int nbytes;
  257. for (nbytes = crypto_hash_walk_first_compat(hdesc, &walk, sg, len);
  258. nbytes > 0; nbytes = crypto_hash_walk_done(&walk, nbytes))
  259. nbytes = crypto_shash_update(desc, walk.data, nbytes);
  260. return nbytes;
  261. }
  262. static int shash_compat_final(struct hash_desc *hdesc, u8 *out)
  263. {
  264. return crypto_shash_final(crypto_hash_ctx(hdesc->tfm), out);
  265. }
  266. static int shash_compat_digest(struct hash_desc *hdesc, struct scatterlist *sg,
  267. unsigned int nbytes, u8 *out)
  268. {
  269. unsigned int offset = sg->offset;
  270. int err;
  271. if (nbytes < min(sg->length, ((unsigned int)(PAGE_SIZE)) - offset)) {
  272. struct shash_desc *desc = crypto_hash_ctx(hdesc->tfm);
  273. void *data;
  274. desc->flags = hdesc->flags;
  275. data = crypto_kmap(sg_page(sg), 0);
  276. err = crypto_shash_digest(desc, data + offset, nbytes, out);
  277. crypto_kunmap(data, 0);
  278. crypto_yield(desc->flags);
  279. goto out;
  280. }
  281. err = shash_compat_init(hdesc);
  282. if (err)
  283. goto out;
  284. err = shash_compat_update(hdesc, sg, nbytes);
  285. if (err)
  286. goto out;
  287. err = shash_compat_final(hdesc, out);
  288. out:
  289. return err;
  290. }
  291. static void crypto_exit_shash_ops_compat(struct crypto_tfm *tfm)
  292. {
  293. struct shash_desc *desc= crypto_tfm_ctx(tfm);
  294. crypto_free_shash(desc->tfm);
  295. }
  296. static int crypto_init_shash_ops_compat(struct crypto_tfm *tfm)
  297. {
  298. struct hash_tfm *crt = &tfm->crt_hash;
  299. struct crypto_alg *calg = tfm->__crt_alg;
  300. struct shash_alg *alg = __crypto_shash_alg(calg);
  301. struct shash_desc *desc = crypto_tfm_ctx(tfm);
  302. struct crypto_shash *shash;
  303. if (!crypto_mod_get(calg))
  304. return -EAGAIN;
  305. shash = crypto_create_tfm(calg, &crypto_shash_type);
  306. if (IS_ERR(shash)) {
  307. crypto_mod_put(calg);
  308. return PTR_ERR(shash);
  309. }
  310. desc->tfm = shash;
  311. tfm->exit = crypto_exit_shash_ops_compat;
  312. crt->init = shash_compat_init;
  313. crt->update = shash_compat_update;
  314. crt->final = shash_compat_final;
  315. crt->digest = shash_compat_digest;
  316. crt->setkey = shash_compat_setkey;
  317. crt->digestsize = alg->digestsize;
  318. return 0;
  319. }
  320. static int crypto_init_shash_ops(struct crypto_tfm *tfm, u32 type, u32 mask)
  321. {
  322. switch (mask & CRYPTO_ALG_TYPE_MASK) {
  323. case CRYPTO_ALG_TYPE_HASH_MASK:
  324. return crypto_init_shash_ops_compat(tfm);
  325. case CRYPTO_ALG_TYPE_AHASH_MASK:
  326. return crypto_init_shash_ops_async(tfm);
  327. }
  328. return -EINVAL;
  329. }
  330. static unsigned int crypto_shash_ctxsize(struct crypto_alg *alg, u32 type,
  331. u32 mask)
  332. {
  333. struct shash_alg *salg = __crypto_shash_alg(alg);
  334. switch (mask & CRYPTO_ALG_TYPE_MASK) {
  335. case CRYPTO_ALG_TYPE_HASH_MASK:
  336. return sizeof(struct shash_desc) + salg->descsize;
  337. case CRYPTO_ALG_TYPE_AHASH_MASK:
  338. return sizeof(struct crypto_shash *);
  339. }
  340. return 0;
  341. }
  342. static int crypto_shash_init_tfm(struct crypto_tfm *tfm,
  343. const struct crypto_type *frontend)
  344. {
  345. return 0;
  346. }
  347. static unsigned int crypto_shash_extsize(struct crypto_alg *alg,
  348. const struct crypto_type *frontend)
  349. {
  350. return alg->cra_ctxsize;
  351. }
  352. static void crypto_shash_show(struct seq_file *m, struct crypto_alg *alg)
  353. __attribute__ ((unused));
  354. static void crypto_shash_show(struct seq_file *m, struct crypto_alg *alg)
  355. {
  356. struct shash_alg *salg = __crypto_shash_alg(alg);
  357. seq_printf(m, "type : shash\n");
  358. seq_printf(m, "blocksize : %u\n", alg->cra_blocksize);
  359. seq_printf(m, "digestsize : %u\n", salg->digestsize);
  360. seq_printf(m, "descsize : %u\n", salg->descsize);
  361. }
  362. static const struct crypto_type crypto_shash_type = {
  363. .ctxsize = crypto_shash_ctxsize,
  364. .extsize = crypto_shash_extsize,
  365. .init = crypto_init_shash_ops,
  366. .init_tfm = crypto_shash_init_tfm,
  367. #ifdef CONFIG_PROC_FS
  368. .show = crypto_shash_show,
  369. #endif
  370. .maskclear = ~CRYPTO_ALG_TYPE_MASK,
  371. .maskset = CRYPTO_ALG_TYPE_MASK,
  372. .type = CRYPTO_ALG_TYPE_SHASH,
  373. .tfmsize = offsetof(struct crypto_shash, base),
  374. };
  375. struct crypto_shash *crypto_alloc_shash(const char *alg_name, u32 type,
  376. u32 mask)
  377. {
  378. return crypto_alloc_tfm(alg_name, &crypto_shash_type, type, mask);
  379. }
  380. EXPORT_SYMBOL_GPL(crypto_alloc_shash);
  381. static int shash_prepare_alg(struct shash_alg *alg)
  382. {
  383. struct crypto_alg *base = &alg->base;
  384. if (alg->digestsize > PAGE_SIZE / 8 ||
  385. alg->descsize > PAGE_SIZE / 8 ||
  386. alg->statesize > PAGE_SIZE / 8)
  387. return -EINVAL;
  388. base->cra_type = &crypto_shash_type;
  389. base->cra_flags &= ~CRYPTO_ALG_TYPE_MASK;
  390. base->cra_flags |= CRYPTO_ALG_TYPE_SHASH;
  391. if (!alg->import)
  392. alg->import = shash_no_import;
  393. if (!alg->export)
  394. alg->export = shash_no_export;
  395. return 0;
  396. }
  397. int crypto_register_shash(struct shash_alg *alg)
  398. {
  399. struct crypto_alg *base = &alg->base;
  400. int err;
  401. err = shash_prepare_alg(alg);
  402. if (err)
  403. return err;
  404. return crypto_register_alg(base);
  405. }
  406. EXPORT_SYMBOL_GPL(crypto_register_shash);
  407. int crypto_unregister_shash(struct shash_alg *alg)
  408. {
  409. return crypto_unregister_alg(&alg->base);
  410. }
  411. EXPORT_SYMBOL_GPL(crypto_unregister_shash);
  412. int shash_register_instance(struct crypto_template *tmpl,
  413. struct shash_instance *inst)
  414. {
  415. int err;
  416. err = shash_prepare_alg(&inst->alg);
  417. if (err)
  418. return err;
  419. return crypto_register_instance(tmpl, shash_crypto_instance(inst));
  420. }
  421. EXPORT_SYMBOL_GPL(shash_register_instance);
  422. void shash_free_instance(struct crypto_instance *inst)
  423. {
  424. crypto_drop_spawn(crypto_instance_ctx(inst));
  425. kfree(shash_instance(inst));
  426. }
  427. EXPORT_SYMBOL_GPL(shash_free_instance);
  428. int crypto_init_shash_spawn(struct crypto_shash_spawn *spawn,
  429. struct shash_alg *alg,
  430. struct crypto_instance *inst)
  431. {
  432. return crypto_init_spawn2(&spawn->base, &alg->base, inst,
  433. &crypto_shash_type);
  434. }
  435. EXPORT_SYMBOL_GPL(crypto_init_shash_spawn);
  436. struct shash_alg *shash_attr_alg(struct rtattr *rta, u32 type, u32 mask)
  437. {
  438. struct crypto_alg *alg;
  439. alg = crypto_attr_alg2(rta, &crypto_shash_type, type, mask);
  440. return IS_ERR(alg) ? ERR_CAST(alg) :
  441. container_of(alg, struct shash_alg, base);
  442. }
  443. EXPORT_SYMBOL_GPL(shash_attr_alg);
  444. MODULE_LICENSE("GPL");
  445. MODULE_DESCRIPTION("Synchronous cryptographic hash type");