scatterwalk.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Cryptographic API.
  3. *
  4. * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
  5. * Copyright (c) 2002 Adam J. Richter <adam@yggdrasil.com>
  6. * Copyright (c) 2004 Jean-Luc Cooke <jlcooke@certainkey.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the Free
  10. * Software Foundation; either version 2 of the License, or (at your option)
  11. * any later version.
  12. *
  13. */
  14. #ifndef _CRYPTO_SCATTERWALK_H
  15. #define _CRYPTO_SCATTERWALK_H
  16. #include <linux/mm.h>
  17. #include <asm/scatterlist.h>
  18. struct scatter_walk {
  19. struct scatterlist *sg;
  20. struct page *page;
  21. void *data;
  22. unsigned int len_this_page;
  23. unsigned int len_this_segment;
  24. unsigned int offset;
  25. };
  26. /* Define sg_next is an inline routine now in case we want to change
  27. scatterlist to a linked list later. */
  28. static inline struct scatterlist *sg_next(struct scatterlist *sg)
  29. {
  30. return sg + 1;
  31. }
  32. static inline int scatterwalk_samebuf(struct scatter_walk *walk_in,
  33. struct scatter_walk *walk_out)
  34. {
  35. return walk_in->page == walk_out->page &&
  36. walk_in->offset == walk_out->offset;
  37. }
  38. static inline unsigned int scatterwalk_clamp(struct scatter_walk *walk,
  39. unsigned int nbytes)
  40. {
  41. return nbytes > walk->len_this_page ? walk->len_this_page : nbytes;
  42. }
  43. static inline void scatterwalk_advance(struct scatter_walk *walk,
  44. unsigned int nbytes)
  45. {
  46. walk->data += nbytes;
  47. walk->offset += nbytes;
  48. walk->len_this_page -= nbytes;
  49. walk->len_this_segment -= nbytes;
  50. }
  51. static inline unsigned int scatterwalk_aligned(struct scatter_walk *walk,
  52. unsigned int alignmask)
  53. {
  54. return !(walk->offset & alignmask);
  55. }
  56. void scatterwalk_start(struct scatter_walk *walk, struct scatterlist *sg);
  57. int scatterwalk_copychunks(void *buf, struct scatter_walk *walk, size_t nbytes, int out);
  58. void scatterwalk_map(struct scatter_walk *walk, int out);
  59. void scatterwalk_done(struct scatter_walk *walk, int out, int more);
  60. #endif /* _CRYPTO_SCATTERWALK_H */