scatterwalk.c 2.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Cryptographic API.
 *
 * Cipher operations.
 *
 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
 *               2002 Adam J. Richter <adam@yggdrasil.com>
 *               2004 Jean-Luc Cooke <jlcooke@certainkey.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 */
#include <linux/kernel.h>
#include <linux/mm.h>
18
#include <linux/module.h>
L
Linus Torvalds 已提交
19 20
#include <linux/pagemap.h>
#include <linux/highmem.h>
21 22
#include <linux/scatterlist.h>

L
Linus Torvalds 已提交
23 24 25
#include "internal.h"
#include "scatterwalk.h"

26
static inline void memcpy_dir(void *buf, void *sgdata, size_t nbytes, int out)
L
Linus Torvalds 已提交
27
{
28 29 30 31
	void *src = out ? buf : sgdata;
	void *dst = out ? sgdata : buf;

	memcpy(dst, src, nbytes);
L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40 41
}

void scatterwalk_start(struct scatter_walk *walk, struct scatterlist *sg)
{
	walk->sg = sg;

	BUG_ON(!sg->length);

	walk->offset = sg->offset;
}
42
EXPORT_SYMBOL_GPL(scatterwalk_start);
L
Linus Torvalds 已提交
43

44
void *scatterwalk_map(struct scatter_walk *walk, int out)
L
Linus Torvalds 已提交
45
{
46 47
	return crypto_kmap(scatterwalk_page(walk), out) +
	       offset_in_page(walk->offset);
L
Linus Torvalds 已提交
48
}
49
EXPORT_SYMBOL_GPL(scatterwalk_map);
L
Linus Torvalds 已提交
50 51 52 53

static void scatterwalk_pagedone(struct scatter_walk *walk, int out,
				 unsigned int more)
{
54 55 56
	if (out) {
		struct page *page;

J
Jens Axboe 已提交
57
		page = sg_page(walk->sg) + ((walk->offset - 1) >> PAGE_SHIFT);
58 59
		flush_dcache_page(page);
	}
L
Linus Torvalds 已提交
60 61

	if (more) {
62 63 64
		walk->offset += PAGE_SIZE - 1;
		walk->offset &= PAGE_MASK;
		if (walk->offset >= walk->sg->offset + walk->sg->length)
65
			scatterwalk_start(walk, scatterwalk_sg_next(walk->sg));
L
Linus Torvalds 已提交
66 67 68 69 70
	}
}

void scatterwalk_done(struct scatter_walk *walk, int out, int more)
{
71
	if (!offset_in_page(walk->offset) || !more)
L
Linus Torvalds 已提交
72 73
		scatterwalk_pagedone(walk, out, more);
}
74
EXPORT_SYMBOL_GPL(scatterwalk_done);
L
Linus Torvalds 已提交
75

76 77
void scatterwalk_copychunks(void *buf, struct scatter_walk *walk,
			    size_t nbytes, int out)
L
Linus Torvalds 已提交
78
{
79 80 81 82 83 84 85 86 87 88 89
	for (;;) {
		unsigned int len_this_page = scatterwalk_pagelen(walk);
		u8 *vaddr;

		if (len_this_page > nbytes)
			len_this_page = nbytes;

		vaddr = scatterwalk_map(walk, out);
		memcpy_dir(buf, vaddr, len_this_page, out);
		scatterwalk_unmap(vaddr, out);

90
		scatterwalk_advance(walk, len_this_page);
91

92 93 94 95 96
		if (nbytes == len_this_page)
			break;

		buf += len_this_page;
		nbytes -= len_this_page;
L
Linus Torvalds 已提交
97 98

		scatterwalk_pagedone(walk, out, 1);
99
	}
L
Linus Torvalds 已提交
100
}
101
EXPORT_SYMBOL_GPL(scatterwalk_copychunks);
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123

void scatterwalk_map_and_copy(void *buf, struct scatterlist *sg,
			      unsigned int start, unsigned int nbytes, int out)
{
	struct scatter_walk walk;
	unsigned int offset = 0;

	for (;;) {
		scatterwalk_start(&walk, sg);

		if (start < offset + sg->length)
			break;

		offset += sg->length;
		sg = sg_next(sg);
	}

	scatterwalk_advance(&walk, start - offset);
	scatterwalk_copychunks(buf, &walk, nbytes, out);
	scatterwalk_done(&walk, out, 0);
}
EXPORT_SYMBOL_GPL(scatterwalk_map_and_copy);