scatterwalk.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Cryptographic API.
  3. *
  4. * Cipher operations.
  5. *
  6. * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
  7. * 2002 Adam J. Richter <adam@yggdrasil.com>
  8. * 2004 Jean-Luc Cooke <jlcooke@certainkey.com>
  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. #include <linux/kernel.h>
  17. #include <linux/mm.h>
  18. #include <linux/pagemap.h>
  19. #include <linux/highmem.h>
  20. #include <asm/scatterlist.h>
  21. #include "internal.h"
  22. #include "scatterwalk.h"
  23. enum km_type crypto_km_types[] = {
  24. KM_USER0,
  25. KM_USER1,
  26. KM_SOFTIRQ0,
  27. KM_SOFTIRQ1,
  28. };
  29. static void memcpy_dir(void *buf, void *sgdata, size_t nbytes, int out)
  30. {
  31. if (out)
  32. memcpy(sgdata, buf, nbytes);
  33. else
  34. memcpy(buf, sgdata, nbytes);
  35. }
  36. void scatterwalk_start(struct scatter_walk *walk, struct scatterlist *sg)
  37. {
  38. unsigned int rest_of_page;
  39. walk->sg = sg;
  40. walk->page = sg->page;
  41. walk->len_this_segment = sg->length;
  42. BUG_ON(!sg->length);
  43. rest_of_page = PAGE_CACHE_SIZE - (sg->offset & (PAGE_CACHE_SIZE - 1));
  44. walk->len_this_page = min(sg->length, rest_of_page);
  45. walk->offset = sg->offset;
  46. }
  47. void scatterwalk_map(struct scatter_walk *walk, int out)
  48. {
  49. walk->data = crypto_kmap(walk->page, out) + walk->offset;
  50. }
  51. static inline void scatterwalk_unmap(struct scatter_walk *walk, int out)
  52. {
  53. /* walk->data may be pointing the first byte of the next page;
  54. however, we know we transfered at least one byte. So,
  55. walk->data - 1 will be a virtual address in the mapped page. */
  56. crypto_kunmap(walk->data - 1, out);
  57. }
  58. static void scatterwalk_pagedone(struct scatter_walk *walk, int out,
  59. unsigned int more)
  60. {
  61. if (out)
  62. flush_dcache_page(walk->page);
  63. if (more) {
  64. walk->len_this_segment -= walk->len_this_page;
  65. if (walk->len_this_segment) {
  66. walk->page++;
  67. walk->len_this_page = min(walk->len_this_segment,
  68. (unsigned)PAGE_CACHE_SIZE);
  69. walk->offset = 0;
  70. }
  71. else
  72. scatterwalk_start(walk, sg_next(walk->sg));
  73. }
  74. }
  75. void scatterwalk_done(struct scatter_walk *walk, int out, int more)
  76. {
  77. scatterwalk_unmap(walk, out);
  78. if (walk->len_this_page == 0 || !more)
  79. scatterwalk_pagedone(walk, out, more);
  80. }
  81. /*
  82. * Do not call this unless the total length of all of the fragments
  83. * has been verified as multiple of the block size.
  84. */
  85. int scatterwalk_copychunks(void *buf, struct scatter_walk *walk,
  86. size_t nbytes, int out)
  87. {
  88. while (nbytes > walk->len_this_page) {
  89. memcpy_dir(buf, walk->data, walk->len_this_page, out);
  90. buf += walk->len_this_page;
  91. nbytes -= walk->len_this_page;
  92. scatterwalk_unmap(walk, out);
  93. scatterwalk_pagedone(walk, out, 1);
  94. scatterwalk_map(walk, out);
  95. }
  96. memcpy_dir(buf, walk->data, nbytes, out);
  97. return nbytes;
  98. }