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>
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)
16 #include <linux/kernel.h>
18 #include <linux/pagemap.h>
19 #include <linux/highmem.h>
21 #include <asm/scatterlist.h>
23 #include "scatterwalk.h"
25 enum km_type crypto_km_types
[] = {
32 static void memcpy_dir(void *buf
, void *sgdata
, size_t nbytes
, int out
)
35 memcpy(sgdata
, buf
, nbytes
);
37 memcpy(buf
, sgdata
, nbytes
);
40 void scatterwalk_start(struct scatter_walk
*walk
, struct scatterlist
*sg
)
42 unsigned int rest_of_page
;
46 walk
->page
= sg
->page
;
47 walk
->len_this_segment
= sg
->length
;
51 rest_of_page
= PAGE_CACHE_SIZE
- (sg
->offset
& (PAGE_CACHE_SIZE
- 1));
52 walk
->len_this_page
= min(sg
->length
, rest_of_page
);
53 walk
->offset
= sg
->offset
;
56 void scatterwalk_map(struct scatter_walk
*walk
, int out
)
58 walk
->data
= crypto_kmap(walk
->page
, out
) + walk
->offset
;
61 static inline void scatterwalk_unmap(struct scatter_walk
*walk
, int out
)
63 /* walk->data may be pointing the first byte of the next page;
64 however, we know we transfered at least one byte. So,
65 walk->data - 1 will be a virtual address in the mapped page. */
66 crypto_kunmap(walk
->data
- 1, out
);
69 static void scatterwalk_pagedone(struct scatter_walk
*walk
, int out
,
73 flush_dcache_page(walk
->page
);
76 walk
->len_this_segment
-= walk
->len_this_page
;
78 if (walk
->len_this_segment
) {
80 walk
->len_this_page
= min(walk
->len_this_segment
,
81 (unsigned)PAGE_CACHE_SIZE
);
85 scatterwalk_start(walk
, sg_next(walk
->sg
));
89 void scatterwalk_done(struct scatter_walk
*walk
, int out
, int more
)
91 scatterwalk_unmap(walk
, out
);
92 if (walk
->len_this_page
== 0 || !more
)
93 scatterwalk_pagedone(walk
, out
, more
);
97 * Do not call this unless the total length of all of the fragments
98 * has been verified as multiple of the block size.
100 int scatterwalk_copychunks(void *buf
, struct scatter_walk
*walk
,
101 size_t nbytes
, int out
)
103 while (nbytes
> walk
->len_this_page
) {
104 memcpy_dir(buf
, walk
->data
, walk
->len_this_page
, out
);
105 buf
+= walk
->len_this_page
;
106 nbytes
-= walk
->len_this_page
;
108 scatterwalk_unmap(walk
, out
);
109 scatterwalk_pagedone(walk
, out
, 1);
110 scatterwalk_map(walk
, out
);
113 memcpy_dir(buf
, walk
->data
, nbytes
, out
);