zstd.c 11.1 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
N
Nick Terrell 已提交
2 3 4 5 6
/*
 * Copyright (c) 2016-present, Facebook, Inc.
 * All rights reserved.
 *
 */
7

N
Nick Terrell 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
#include <linux/bio.h>
#include <linux/err.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/pagemap.h>
#include <linux/refcount.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/zstd.h>
#include "compression.h"

#define ZSTD_BTRFS_MAX_WINDOWLOG 17
#define ZSTD_BTRFS_MAX_INPUT (1 << ZSTD_BTRFS_MAX_WINDOWLOG)
#define ZSTD_BTRFS_DEFAULT_LEVEL 3

static ZSTD_parameters zstd_get_btrfs_parameters(size_t src_len)
{
	ZSTD_parameters params = ZSTD_getParams(ZSTD_BTRFS_DEFAULT_LEVEL,
						src_len, 0);

	if (params.cParams.windowLog > ZSTD_BTRFS_MAX_WINDOWLOG)
		params.cParams.windowLog = ZSTD_BTRFS_MAX_WINDOWLOG;
	WARN_ON(src_len > ZSTD_BTRFS_MAX_INPUT);
	return params;
}

struct workspace {
	void *mem;
	size_t size;
	char *buf;
	struct list_head list;
40 41
	ZSTD_inBuffer in_buf;
	ZSTD_outBuffer out_buf;
N
Nick Terrell 已提交
42 43
};

44 45 46 47 48 49 50 51 52 53 54 55
static struct workspace_manager wsm;

static void zstd_init_workspace_manager(void)
{
	btrfs_init_workspace_manager(&wsm, &btrfs_zstd_compress);
}

static void zstd_cleanup_workspace_manager(void)
{
	btrfs_cleanup_workspace_manager(&wsm);
}

56
static struct list_head *zstd_get_workspace(unsigned int level)
57
{
58
	return btrfs_get_workspace(&wsm, level);
59 60 61 62 63 64 65
}

static void zstd_put_workspace(struct list_head *ws)
{
	btrfs_put_workspace(&wsm, ws);
}

N
Nick Terrell 已提交
66 67 68 69 70 71 72 73 74
static void zstd_free_workspace(struct list_head *ws)
{
	struct workspace *workspace = list_entry(ws, struct workspace, list);

	kvfree(workspace->mem);
	kfree(workspace->buf);
	kfree(workspace);
}

75
static struct list_head *zstd_alloc_workspace(unsigned int level)
N
Nick Terrell 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
{
	ZSTD_parameters params =
			zstd_get_btrfs_parameters(ZSTD_BTRFS_MAX_INPUT);
	struct workspace *workspace;

	workspace = kzalloc(sizeof(*workspace), GFP_KERNEL);
	if (!workspace)
		return ERR_PTR(-ENOMEM);

	workspace->size = max_t(size_t,
			ZSTD_CStreamWorkspaceBound(params.cParams),
			ZSTD_DStreamWorkspaceBound(ZSTD_BTRFS_MAX_INPUT));
	workspace->mem = kvmalloc(workspace->size, GFP_KERNEL);
	workspace->buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
	if (!workspace->mem || !workspace->buf)
		goto fail;

	INIT_LIST_HEAD(&workspace->list);

	return &workspace->list;
fail:
	zstd_free_workspace(&workspace->list);
	return ERR_PTR(-ENOMEM);
}

static int zstd_compress_pages(struct list_head *ws,
		struct address_space *mapping,
		u64 start,
		struct page **pages,
		unsigned long *out_pages,
		unsigned long *total_in,
		unsigned long *total_out)
{
	struct workspace *workspace = list_entry(ws, struct workspace, list);
	ZSTD_CStream *stream;
	int ret = 0;
	int nr_pages = 0;
	struct page *in_page = NULL;  /* The current page to read */
	struct page *out_page = NULL; /* The current page to write to */
	unsigned long tot_in = 0;
	unsigned long tot_out = 0;
	unsigned long len = *total_out;
	const unsigned long nr_dest_pages = *out_pages;
	unsigned long max_out = nr_dest_pages * PAGE_SIZE;
	ZSTD_parameters params = zstd_get_btrfs_parameters(len);

	*out_pages = 0;
	*total_out = 0;
	*total_in = 0;

	/* Initialize the stream */
	stream = ZSTD_initCStream(params, len, workspace->mem,
			workspace->size);
	if (!stream) {
		pr_warn("BTRFS: ZSTD_initCStream failed\n");
		ret = -EIO;
		goto out;
	}

	/* map in the first page of input data */
	in_page = find_get_page(mapping, start >> PAGE_SHIFT);
137 138 139
	workspace->in_buf.src = kmap(in_page);
	workspace->in_buf.pos = 0;
	workspace->in_buf.size = min_t(size_t, len, PAGE_SIZE);
N
Nick Terrell 已提交
140 141 142 143 144 145 146 147 148


	/* Allocate and map in the output buffer */
	out_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
	if (out_page == NULL) {
		ret = -ENOMEM;
		goto out;
	}
	pages[nr_pages++] = out_page;
149 150 151
	workspace->out_buf.dst = kmap(out_page);
	workspace->out_buf.pos = 0;
	workspace->out_buf.size = min_t(size_t, max_out, PAGE_SIZE);
N
Nick Terrell 已提交
152 153 154 155

	while (1) {
		size_t ret2;

156 157
		ret2 = ZSTD_compressStream(stream, &workspace->out_buf,
				&workspace->in_buf);
N
Nick Terrell 已提交
158 159 160 161 162 163 164 165
		if (ZSTD_isError(ret2)) {
			pr_debug("BTRFS: ZSTD_compressStream returned %d\n",
					ZSTD_getErrorCode(ret2));
			ret = -EIO;
			goto out;
		}

		/* Check to see if we are making it bigger */
166 167 168
		if (tot_in + workspace->in_buf.pos > 8192 &&
				tot_in + workspace->in_buf.pos <
				tot_out + workspace->out_buf.pos) {
N
Nick Terrell 已提交
169 170 171 172 173
			ret = -E2BIG;
			goto out;
		}

		/* We've reached the end of our output range */
174 175
		if (workspace->out_buf.pos >= max_out) {
			tot_out += workspace->out_buf.pos;
N
Nick Terrell 已提交
176 177 178 179 180
			ret = -E2BIG;
			goto out;
		}

		/* Check if we need more output space */
181
		if (workspace->out_buf.pos == workspace->out_buf.size) {
N
Nick Terrell 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195
			tot_out += PAGE_SIZE;
			max_out -= PAGE_SIZE;
			kunmap(out_page);
			if (nr_pages == nr_dest_pages) {
				out_page = NULL;
				ret = -E2BIG;
				goto out;
			}
			out_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
			if (out_page == NULL) {
				ret = -ENOMEM;
				goto out;
			}
			pages[nr_pages++] = out_page;
196 197 198 199
			workspace->out_buf.dst = kmap(out_page);
			workspace->out_buf.pos = 0;
			workspace->out_buf.size = min_t(size_t, max_out,
							PAGE_SIZE);
N
Nick Terrell 已提交
200 201 202
		}

		/* We've reached the end of the input */
203 204
		if (workspace->in_buf.pos >= len) {
			tot_in += workspace->in_buf.pos;
N
Nick Terrell 已提交
205 206 207 208
			break;
		}

		/* Check if we need more input */
209
		if (workspace->in_buf.pos == workspace->in_buf.size) {
N
Nick Terrell 已提交
210 211 212 213 214 215 216
			tot_in += PAGE_SIZE;
			kunmap(in_page);
			put_page(in_page);

			start += PAGE_SIZE;
			len -= PAGE_SIZE;
			in_page = find_get_page(mapping, start >> PAGE_SHIFT);
217 218 219
			workspace->in_buf.src = kmap(in_page);
			workspace->in_buf.pos = 0;
			workspace->in_buf.size = min_t(size_t, len, PAGE_SIZE);
N
Nick Terrell 已提交
220 221 222 223 224
		}
	}
	while (1) {
		size_t ret2;

225
		ret2 = ZSTD_endStream(stream, &workspace->out_buf);
N
Nick Terrell 已提交
226 227 228 229 230 231 232
		if (ZSTD_isError(ret2)) {
			pr_debug("BTRFS: ZSTD_endStream returned %d\n",
					ZSTD_getErrorCode(ret2));
			ret = -EIO;
			goto out;
		}
		if (ret2 == 0) {
233
			tot_out += workspace->out_buf.pos;
N
Nick Terrell 已提交
234 235
			break;
		}
236 237
		if (workspace->out_buf.pos >= max_out) {
			tot_out += workspace->out_buf.pos;
N
Nick Terrell 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
			ret = -E2BIG;
			goto out;
		}

		tot_out += PAGE_SIZE;
		max_out -= PAGE_SIZE;
		kunmap(out_page);
		if (nr_pages == nr_dest_pages) {
			out_page = NULL;
			ret = -E2BIG;
			goto out;
		}
		out_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
		if (out_page == NULL) {
			ret = -ENOMEM;
			goto out;
		}
		pages[nr_pages++] = out_page;
256 257 258
		workspace->out_buf.dst = kmap(out_page);
		workspace->out_buf.pos = 0;
		workspace->out_buf.size = min_t(size_t, max_out, PAGE_SIZE);
N
Nick Terrell 已提交
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
	}

	if (tot_out >= tot_in) {
		ret = -E2BIG;
		goto out;
	}

	ret = 0;
	*total_in = tot_in;
	*total_out = tot_out;
out:
	*out_pages = nr_pages;
	/* Cleanup */
	if (in_page) {
		kunmap(in_page);
		put_page(in_page);
	}
	if (out_page)
		kunmap(out_page);
	return ret;
}

static int zstd_decompress_bio(struct list_head *ws, struct compressed_bio *cb)
{
	struct workspace *workspace = list_entry(ws, struct workspace, list);
	struct page **pages_in = cb->compressed_pages;
	u64 disk_start = cb->start;
	struct bio *orig_bio = cb->orig_bio;
	size_t srclen = cb->compressed_len;
	ZSTD_DStream *stream;
	int ret = 0;
	unsigned long page_in_index = 0;
	unsigned long total_pages_in = DIV_ROUND_UP(srclen, PAGE_SIZE);
	unsigned long buf_start;
	unsigned long total_out = 0;

	stream = ZSTD_initDStream(
			ZSTD_BTRFS_MAX_INPUT, workspace->mem, workspace->size);
	if (!stream) {
		pr_debug("BTRFS: ZSTD_initDStream failed\n");
		ret = -EIO;
		goto done;
	}

303 304 305
	workspace->in_buf.src = kmap(pages_in[page_in_index]);
	workspace->in_buf.pos = 0;
	workspace->in_buf.size = min_t(size_t, srclen, PAGE_SIZE);
N
Nick Terrell 已提交
306

307 308 309
	workspace->out_buf.dst = workspace->buf;
	workspace->out_buf.pos = 0;
	workspace->out_buf.size = PAGE_SIZE;
N
Nick Terrell 已提交
310 311 312 313

	while (1) {
		size_t ret2;

314 315
		ret2 = ZSTD_decompressStream(stream, &workspace->out_buf,
				&workspace->in_buf);
N
Nick Terrell 已提交
316 317 318 319 320 321 322
		if (ZSTD_isError(ret2)) {
			pr_debug("BTRFS: ZSTD_decompressStream returned %d\n",
					ZSTD_getErrorCode(ret2));
			ret = -EIO;
			goto done;
		}
		buf_start = total_out;
323 324
		total_out += workspace->out_buf.pos;
		workspace->out_buf.pos = 0;
N
Nick Terrell 已提交
325

326 327
		ret = btrfs_decompress_buf2page(workspace->out_buf.dst,
				buf_start, total_out, disk_start, orig_bio);
N
Nick Terrell 已提交
328 329 330
		if (ret == 0)
			break;

331
		if (workspace->in_buf.pos >= srclen)
N
Nick Terrell 已提交
332 333 334 335 336 337
			break;

		/* Check if we've hit the end of a frame */
		if (ret2 == 0)
			break;

338
		if (workspace->in_buf.pos == workspace->in_buf.size) {
N
Nick Terrell 已提交
339 340
			kunmap(pages_in[page_in_index++]);
			if (page_in_index >= total_pages_in) {
341
				workspace->in_buf.src = NULL;
N
Nick Terrell 已提交
342 343 344 345
				ret = -EIO;
				goto done;
			}
			srclen -= PAGE_SIZE;
346 347 348
			workspace->in_buf.src = kmap(pages_in[page_in_index]);
			workspace->in_buf.pos = 0;
			workspace->in_buf.size = min_t(size_t, srclen, PAGE_SIZE);
N
Nick Terrell 已提交
349 350 351 352 353
		}
	}
	ret = 0;
	zero_fill_bio(orig_bio);
done:
354
	if (workspace->in_buf.src)
N
Nick Terrell 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
		kunmap(pages_in[page_in_index]);
	return ret;
}

static int zstd_decompress(struct list_head *ws, unsigned char *data_in,
		struct page *dest_page,
		unsigned long start_byte,
		size_t srclen, size_t destlen)
{
	struct workspace *workspace = list_entry(ws, struct workspace, list);
	ZSTD_DStream *stream;
	int ret = 0;
	size_t ret2;
	unsigned long total_out = 0;
	unsigned long pg_offset = 0;
	char *kaddr;

	stream = ZSTD_initDStream(
			ZSTD_BTRFS_MAX_INPUT, workspace->mem, workspace->size);
	if (!stream) {
		pr_warn("BTRFS: ZSTD_initDStream failed\n");
		ret = -EIO;
		goto finish;
	}

	destlen = min_t(size_t, destlen, PAGE_SIZE);

382 383 384
	workspace->in_buf.src = data_in;
	workspace->in_buf.pos = 0;
	workspace->in_buf.size = srclen;
N
Nick Terrell 已提交
385

386 387 388
	workspace->out_buf.dst = workspace->buf;
	workspace->out_buf.pos = 0;
	workspace->out_buf.size = PAGE_SIZE;
N
Nick Terrell 已提交
389 390

	ret2 = 1;
391 392
	while (pg_offset < destlen
	       && workspace->in_buf.pos < workspace->in_buf.size) {
N
Nick Terrell 已提交
393 394 395 396 397 398 399 400 401 402
		unsigned long buf_start;
		unsigned long buf_offset;
		unsigned long bytes;

		/* Check if the frame is over and we still need more input */
		if (ret2 == 0) {
			pr_debug("BTRFS: ZSTD_decompressStream ended early\n");
			ret = -EIO;
			goto finish;
		}
403 404
		ret2 = ZSTD_decompressStream(stream, &workspace->out_buf,
				&workspace->in_buf);
N
Nick Terrell 已提交
405 406 407 408 409 410 411 412
		if (ZSTD_isError(ret2)) {
			pr_debug("BTRFS: ZSTD_decompressStream returned %d\n",
					ZSTD_getErrorCode(ret2));
			ret = -EIO;
			goto finish;
		}

		buf_start = total_out;
413 414
		total_out += workspace->out_buf.pos;
		workspace->out_buf.pos = 0;
N
Nick Terrell 已提交
415 416 417 418 419 420 421 422 423 424

		if (total_out <= start_byte)
			continue;

		if (total_out > start_byte && buf_start < start_byte)
			buf_offset = start_byte - buf_start;
		else
			buf_offset = 0;

		bytes = min_t(unsigned long, destlen - pg_offset,
425
				workspace->out_buf.size - buf_offset);
N
Nick Terrell 已提交
426 427

		kaddr = kmap_atomic(dest_page);
428 429
		memcpy(kaddr + pg_offset, workspace->out_buf.dst + buf_offset,
				bytes);
N
Nick Terrell 已提交
430 431 432 433 434 435 436 437 438 439 440 441 442 443
		kunmap_atomic(kaddr);

		pg_offset += bytes;
	}
	ret = 0;
finish:
	if (pg_offset < destlen) {
		kaddr = kmap_atomic(dest_page);
		memset(kaddr + pg_offset, 0, destlen - pg_offset);
		kunmap_atomic(kaddr);
	}
	return ret;
}

444 445 446 447
static void zstd_set_level(struct list_head *ws, unsigned int type)
{
}

N
Nick Terrell 已提交
448
const struct btrfs_compress_op btrfs_zstd_compress = {
449 450 451 452
	.init_workspace_manager = zstd_init_workspace_manager,
	.cleanup_workspace_manager = zstd_cleanup_workspace_manager,
	.get_workspace = zstd_get_workspace,
	.put_workspace = zstd_put_workspace,
N
Nick Terrell 已提交
453 454 455 456 457
	.alloc_workspace = zstd_alloc_workspace,
	.free_workspace = zstd_free_workspace,
	.compress_pages = zstd_compress_pages,
	.decompress_bio = zstd_decompress_bio,
	.decompress = zstd_decompress,
458
	.set_level = zstd_set_level,
N
Nick Terrell 已提交
459
};