Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2008 Oracle.  All rights reserved.
  4 */
  5
  6#include <linux/kernel.h>
  7#include <linux/slab.h>
  8#include <linux/mm.h>
  9#include <linux/init.h>
 10#include <linux/err.h>
 11#include <linux/sched.h>
 12#include <linux/pagemap.h>
 13#include <linux/bio.h>
 14#include <linux/lzo.h>
 15#include <linux/refcount.h>
 16#include "messages.h"
 17#include "compression.h"
 18#include "ctree.h"
 19#include "super.h"
 20
 21#define LZO_LEN	4
 22
 23/*
 24 * Btrfs LZO compression format
 25 *
 26 * Regular and inlined LZO compressed data extents consist of:
 27 *
 28 * 1.  Header
 29 *     Fixed size. LZO_LEN (4) bytes long, LE32.
 30 *     Records the total size (including the header) of compressed data.
 31 *
 32 * 2.  Segment(s)
 33 *     Variable size. Each segment includes one segment header, followed by data
 34 *     payload.
 35 *     One regular LZO compressed extent can have one or more segments.
 36 *     For inlined LZO compressed extent, only one segment is allowed.
 37 *     One segment represents at most one sector of uncompressed data.
 38 *
 39 * 2.1 Segment header
 40 *     Fixed size. LZO_LEN (4) bytes long, LE32.
 41 *     Records the total size of the segment (not including the header).
 42 *     Segment header never crosses sector boundary, thus it's possible to
 43 *     have at most 3 padding zeros at the end of the sector.
 44 *
 45 * 2.2 Data Payload
 46 *     Variable size. Size up limit should be lzo1x_worst_compress(sectorsize)
 47 *     which is 4419 for a 4KiB sectorsize.
 48 *
 49 * Example with 4K sectorsize:
 50 * Page 1:
 51 *          0     0x2   0x4   0x6   0x8   0xa   0xc   0xe     0x10
 52 * 0x0000   |  Header   | SegHdr 01 | Data payload 01 ...     |
 53 * ...
 54 * 0x0ff0   | SegHdr  N | Data payload  N     ...          |00|
 55 *                                                          ^^ padding zeros
 56 * Page 2:
 57 * 0x1000   | SegHdr N+1| Data payload N+1 ...                |
 58 */
 59
 60#define WORKSPACE_BUF_LENGTH	(lzo1x_worst_compress(PAGE_SIZE))
 61#define WORKSPACE_CBUF_LENGTH	(lzo1x_worst_compress(PAGE_SIZE))
 62
 63struct workspace {
 64	void *mem;
 65	void *buf;	/* where decompressed data goes */
 66	void *cbuf;	/* where compressed data goes */
 67	struct list_head list;
 68};
 69
 70static struct workspace_manager wsm;
 71
 72void lzo_free_workspace(struct list_head *ws)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 73{
 74	struct workspace *workspace = list_entry(ws, struct workspace, list);
 75
 76	kvfree(workspace->buf);
 77	kvfree(workspace->cbuf);
 78	kvfree(workspace->mem);
 79	kfree(workspace);
 80}
 81
 82struct list_head *lzo_alloc_workspace(unsigned int level)
 83{
 84	struct workspace *workspace;
 85
 86	workspace = kzalloc(sizeof(*workspace), GFP_KERNEL);
 87	if (!workspace)
 88		return ERR_PTR(-ENOMEM);
 89
 90	workspace->mem = kvmalloc(LZO1X_MEM_COMPRESS, GFP_KERNEL);
 91	workspace->buf = kvmalloc(WORKSPACE_BUF_LENGTH, GFP_KERNEL);
 92	workspace->cbuf = kvmalloc(WORKSPACE_CBUF_LENGTH, GFP_KERNEL);
 93	if (!workspace->mem || !workspace->buf || !workspace->cbuf)
 94		goto fail;
 95
 96	INIT_LIST_HEAD(&workspace->list);
 97
 98	return &workspace->list;
 99fail:
100	lzo_free_workspace(&workspace->list);
101	return ERR_PTR(-ENOMEM);
102}
103
104static inline void write_compress_length(char *buf, size_t len)
105{
106	__le32 dlen;
107
108	dlen = cpu_to_le32(len);
109	memcpy(buf, &dlen, LZO_LEN);
110}
111
112static inline size_t read_compress_length(const char *buf)
113{
114	__le32 dlen;
115
116	memcpy(&dlen, buf, LZO_LEN);
117	return le32_to_cpu(dlen);
118}
119
120/*
121 * Will do:
122 *
123 * - Write a segment header into the destination
124 * - Copy the compressed buffer into the destination
125 * - Make sure we have enough space in the last sector to fit a segment header
126 *   If not, we will pad at most (LZO_LEN (4)) - 1 bytes of zeros.
127 *
128 * Will allocate new pages when needed.
129 */
130static int copy_compressed_data_to_page(char *compressed_data,
131					size_t compressed_size,
132					struct page **out_pages,
133					unsigned long max_nr_page,
134					u32 *cur_out,
135					const u32 sectorsize)
136{
137	u32 sector_bytes_left;
138	u32 orig_out;
139	struct page *cur_page;
140	char *kaddr;
141
142	if ((*cur_out / PAGE_SIZE) >= max_nr_page)
143		return -E2BIG;
144
145	/*
146	 * We never allow a segment header crossing sector boundary, previous
147	 * run should ensure we have enough space left inside the sector.
148	 */
149	ASSERT((*cur_out / sectorsize) == (*cur_out + LZO_LEN - 1) / sectorsize);
150
151	cur_page = out_pages[*cur_out / PAGE_SIZE];
152	/* Allocate a new page */
153	if (!cur_page) {
154		cur_page = alloc_page(GFP_NOFS);
155		if (!cur_page)
156			return -ENOMEM;
157		out_pages[*cur_out / PAGE_SIZE] = cur_page;
158	}
159
160	kaddr = kmap_local_page(cur_page);
161	write_compress_length(kaddr + offset_in_page(*cur_out),
162			      compressed_size);
163	*cur_out += LZO_LEN;
164
165	orig_out = *cur_out;
166
167	/* Copy compressed data */
168	while (*cur_out - orig_out < compressed_size) {
169		u32 copy_len = min_t(u32, sectorsize - *cur_out % sectorsize,
170				     orig_out + compressed_size - *cur_out);
171
172		kunmap_local(kaddr);
173
174		if ((*cur_out / PAGE_SIZE) >= max_nr_page)
175			return -E2BIG;
176
177		cur_page = out_pages[*cur_out / PAGE_SIZE];
178		/* Allocate a new page */
179		if (!cur_page) {
180			cur_page = alloc_page(GFP_NOFS);
181			if (!cur_page)
182				return -ENOMEM;
183			out_pages[*cur_out / PAGE_SIZE] = cur_page;
184		}
185		kaddr = kmap_local_page(cur_page);
186
187		memcpy(kaddr + offset_in_page(*cur_out),
188		       compressed_data + *cur_out - orig_out, copy_len);
189
190		*cur_out += copy_len;
191	}
192
193	/*
194	 * Check if we can fit the next segment header into the remaining space
195	 * of the sector.
196	 */
197	sector_bytes_left = round_up(*cur_out, sectorsize) - *cur_out;
198	if (sector_bytes_left >= LZO_LEN || sector_bytes_left == 0)
199		goto out;
200
201	/* The remaining size is not enough, pad it with zeros */
202	memset(kaddr + offset_in_page(*cur_out), 0,
203	       sector_bytes_left);
204	*cur_out += sector_bytes_left;
205
206out:
207	kunmap_local(kaddr);
208	return 0;
209}
210
211int lzo_compress_pages(struct list_head *ws, struct address_space *mapping,
212		u64 start, struct page **pages, unsigned long *out_pages,
213		unsigned long *total_in, unsigned long *total_out)
214{
215	struct workspace *workspace = list_entry(ws, struct workspace, list);
216	const u32 sectorsize = btrfs_sb(mapping->host->i_sb)->sectorsize;
217	struct page *page_in = NULL;
218	char *sizes_ptr;
219	const unsigned long max_nr_page = *out_pages;
220	int ret = 0;
221	/* Points to the file offset of input data */
222	u64 cur_in = start;
223	/* Points to the current output byte */
224	u32 cur_out = 0;
225	u32 len = *total_out;
 
 
 
 
 
 
 
 
 
 
 
 
226
227	ASSERT(max_nr_page > 0);
228	*out_pages = 0;
229	*total_out = 0;
230	*total_in = 0;
231
 
 
 
232	/*
233	 * Skip the header for now, we will later come back and write the total
234	 * compressed size
235	 */
236	cur_out += LZO_LEN;
237	while (cur_in < start + len) {
238		char *data_in;
239		const u32 sectorsize_mask = sectorsize - 1;
240		u32 sector_off = (cur_in - start) & sectorsize_mask;
241		u32 in_len;
242		size_t out_len;
243
244		/* Get the input page first */
245		if (!page_in) {
246			page_in = find_get_page(mapping, cur_in >> PAGE_SHIFT);
247			ASSERT(page_in);
248		}
249
250		/* Compress at most one sector of data each time */
251		in_len = min_t(u32, start + len - cur_in, sectorsize - sector_off);
252		ASSERT(in_len);
253		data_in = kmap_local_page(page_in);
254		ret = lzo1x_1_compress(data_in +
255				       offset_in_page(cur_in), in_len,
256				       workspace->cbuf, &out_len,
257				       workspace->mem);
258		kunmap_local(data_in);
259		if (ret < 0) {
260			pr_debug("BTRFS: lzo in loop returned %d\n", ret);
261			ret = -EIO;
262			goto out;
263		}
264
265		ret = copy_compressed_data_to_page(workspace->cbuf, out_len,
266						   pages, max_nr_page,
267						   &cur_out, sectorsize);
268		if (ret < 0)
269			goto out;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
270
271		cur_in += in_len;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
273		/*
274		 * Check if we're making it bigger after two sectors.  And if
275		 * it is so, give up.
276		 */
277		if (cur_in - start > sectorsize * 2 && cur_in - start < cur_out) {
278			ret = -E2BIG;
279			goto out;
280		}
281
282		/* Check if we have reached page boundary */
283		if (IS_ALIGNED(cur_in, PAGE_SIZE)) {
284			put_page(page_in);
285			page_in = NULL;
286		}
 
 
 
 
 
 
 
 
 
 
287	}
288
289	/* Store the size of all chunks of compressed data */
290	sizes_ptr = kmap_local_page(pages[0]);
291	write_compress_length(sizes_ptr, cur_out);
292	kunmap_local(sizes_ptr);
293
294	ret = 0;
295	*total_out = cur_out;
296	*total_in = cur_in - start;
297out:
298	if (page_in)
299		put_page(page_in);
300	*out_pages = DIV_ROUND_UP(cur_out, PAGE_SIZE);
301	return ret;
302}
303
304/*
305 * Copy the compressed segment payload into @dest.
306 *
307 * For the payload there will be no padding, just need to do page switching.
308 */
309static void copy_compressed_segment(struct compressed_bio *cb,
310				    char *dest, u32 len, u32 *cur_in)
311{
312	u32 orig_in = *cur_in;
313
314	while (*cur_in < orig_in + len) {
315		struct page *cur_page;
316		u32 copy_len = min_t(u32, PAGE_SIZE - offset_in_page(*cur_in),
317					  orig_in + len - *cur_in);
318
319		ASSERT(copy_len);
320		cur_page = cb->compressed_pages[*cur_in / PAGE_SIZE];
 
321
322		memcpy_from_page(dest + *cur_in - orig_in, cur_page,
323				 offset_in_page(*cur_in), copy_len);
324
325		*cur_in += copy_len;
 
 
 
 
 
 
 
 
 
 
326	}
 
 
327}
328
329int lzo_decompress_bio(struct list_head *ws, struct compressed_bio *cb)
330{
331	struct workspace *workspace = list_entry(ws, struct workspace, list);
332	const struct btrfs_fs_info *fs_info = btrfs_sb(cb->inode->i_sb);
333	const u32 sectorsize = fs_info->sectorsize;
334	char *kaddr;
335	int ret;
336	/* Compressed data length, can be unaligned */
337	u32 len_in;
338	/* Offset inside the compressed data */
339	u32 cur_in = 0;
340	/* Bytes decompressed so far */
341	u32 cur_out = 0;
342
343	kaddr = kmap_local_page(cb->compressed_pages[0]);
344	len_in = read_compress_length(kaddr);
345	kunmap_local(kaddr);
346	cur_in += LZO_LEN;
 
 
 
 
 
 
 
347
 
 
348	/*
349	 * LZO header length check
350	 *
351	 * The total length should not exceed the maximum extent length,
352	 * and all sectors should be used.
353	 * If this happens, it means the compressed extent is corrupted.
 
354	 */
355	if (len_in > min_t(size_t, BTRFS_MAX_COMPRESSED, cb->compressed_len) ||
356	    round_up(len_in, sectorsize) < cb->compressed_len) {
357		btrfs_err(fs_info,
358			"invalid lzo header, lzo len %u compressed len %u",
359			len_in, cb->compressed_len);
360		return -EUCLEAN;
361	}
362
363	/* Go through each lzo segment */
364	while (cur_in < len_in) {
365		struct page *cur_page;
366		/* Length of the compressed segment */
367		u32 seg_len;
368		u32 sector_bytes_left;
369		size_t out_len = lzo1x_worst_compress(sectorsize);
 
 
 
 
370
371		/*
372		 * We should always have enough space for one segment header
373		 * inside current sector.
 
 
374		 */
375		ASSERT(cur_in / sectorsize ==
376		       (cur_in + LZO_LEN - 1) / sectorsize);
377		cur_page = cb->compressed_pages[cur_in / PAGE_SIZE];
378		ASSERT(cur_page);
379		kaddr = kmap_local_page(cur_page);
380		seg_len = read_compress_length(kaddr + offset_in_page(cur_in));
381		kunmap_local(kaddr);
382		cur_in += LZO_LEN;
383
384		if (seg_len > WORKSPACE_CBUF_LENGTH) {
385			/*
386			 * seg_len shouldn't be larger than we have allocated
387			 * for workspace->cbuf
388			 */
389			btrfs_err(fs_info, "unexpectedly large lzo segment len %u",
390					seg_len);
391			ret = -EIO;
392			goto out;
 
393		}
394
395		/* Copy the compressed segment payload into workspace */
396		copy_compressed_segment(cb, workspace->cbuf, seg_len, &cur_in);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
397
398		/* Decompress the data */
399		ret = lzo1x_decompress_safe(workspace->cbuf, seg_len,
400					    workspace->buf, &out_len);
 
 
401		if (ret != LZO_E_OK) {
402			btrfs_err(fs_info, "failed to decompress");
403			ret = -EIO;
404			goto out;
405		}
406
407		/* Copy the data into inode pages */
408		ret = btrfs_decompress_buf2page(workspace->buf, out_len, cb, cur_out);
409		cur_out += out_len;
410
411		/* All data read, exit */
412		if (ret == 0)
413			goto out;
414		ret = 0;
415
416		/* Check if the sector has enough space for a segment header */
417		sector_bytes_left = sectorsize - (cur_in % sectorsize);
418		if (sector_bytes_left >= LZO_LEN)
419			continue;
420
421		/* Skip the padding zeros */
422		cur_in += sector_bytes_left;
423	}
424out:
 
425	if (!ret)
426		zero_fill_bio(cb->orig_bio);
427	return ret;
428}
429
430int lzo_decompress(struct list_head *ws, const u8 *data_in,
431		struct page *dest_page, unsigned long start_byte, size_t srclen,
432		size_t destlen)
 
433{
434	struct workspace *workspace = list_entry(ws, struct workspace, list);
435	size_t in_len;
436	size_t out_len;
437	size_t max_segment_len = WORKSPACE_BUF_LENGTH;
438	int ret = 0;
439	char *kaddr;
440	unsigned long bytes;
441
442	if (srclen < LZO_LEN || srclen > max_segment_len + LZO_LEN * 2)
443		return -EUCLEAN;
444
445	in_len = read_compress_length(data_in);
446	if (in_len != srclen)
447		return -EUCLEAN;
448	data_in += LZO_LEN;
449
450	in_len = read_compress_length(data_in);
451	if (in_len != srclen - LZO_LEN * 2) {
452		ret = -EUCLEAN;
453		goto out;
454	}
455	data_in += LZO_LEN;
456
457	out_len = PAGE_SIZE;
458	ret = lzo1x_decompress_safe(data_in, in_len, workspace->buf, &out_len);
459	if (ret != LZO_E_OK) {
460		pr_warn("BTRFS: decompress failed!\n");
461		ret = -EIO;
462		goto out;
463	}
464
465	if (out_len < start_byte) {
466		ret = -EIO;
467		goto out;
468	}
469
470	/*
471	 * the caller is already checking against PAGE_SIZE, but lets
472	 * move this check closer to the memcpy/memset
473	 */
474	destlen = min_t(unsigned long, destlen, PAGE_SIZE);
475	bytes = min_t(unsigned long, destlen, out_len - start_byte);
476
477	kaddr = kmap_local_page(dest_page);
478	memcpy(kaddr, workspace->buf + start_byte, bytes);
479
480	/*
481	 * btrfs_getblock is doing a zero on the tail of the page too,
482	 * but this will cover anything missing from the decompressed
483	 * data.
484	 */
485	if (bytes < destlen)
486		memset(kaddr+bytes, 0, destlen-bytes);
487	kunmap_local(kaddr);
488out:
489	return ret;
490}
491
492const struct btrfs_compress_op btrfs_lzo_compress = {
493	.workspace_manager	= &wsm,
 
 
 
 
 
 
 
 
494	.max_level		= 1,
495	.default_level		= 1,
496};
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (C) 2008 Oracle.  All rights reserved.
  4 */
  5
  6#include <linux/kernel.h>
  7#include <linux/slab.h>
  8#include <linux/mm.h>
  9#include <linux/init.h>
 10#include <linux/err.h>
 11#include <linux/sched.h>
 12#include <linux/pagemap.h>
 13#include <linux/bio.h>
 14#include <linux/lzo.h>
 15#include <linux/refcount.h>
 
 16#include "compression.h"
 
 
 17
 18#define LZO_LEN	4
 19
 20/*
 21 * Btrfs LZO compression format
 22 *
 23 * Regular and inlined LZO compressed data extents consist of:
 24 *
 25 * 1.  Header
 26 *     Fixed size. LZO_LEN (4) bytes long, LE32.
 27 *     Records the total size (including the header) of compressed data.
 28 *
 29 * 2.  Segment(s)
 30 *     Variable size. Each segment includes one segment header, followed by data
 31 *     payload.
 32 *     One regular LZO compressed extent can have one or more segments.
 33 *     For inlined LZO compressed extent, only one segment is allowed.
 34 *     One segment represents at most one page of uncompressed data.
 35 *
 36 * 2.1 Segment header
 37 *     Fixed size. LZO_LEN (4) bytes long, LE32.
 38 *     Records the total size of the segment (not including the header).
 39 *     Segment header never crosses page boundary, thus it's possible to
 40 *     have at most 3 padding zeros at the end of the page.
 41 *
 42 * 2.2 Data Payload
 43 *     Variable size. Size up limit should be lzo1x_worst_compress(PAGE_SIZE)
 44 *     which is 4419 for a 4KiB page.
 45 *
 46 * Example:
 47 * Page 1:
 48 *          0     0x2   0x4   0x6   0x8   0xa   0xc   0xe     0x10
 49 * 0x0000   |  Header   | SegHdr 01 | Data payload 01 ...     |
 50 * ...
 51 * 0x0ff0   | SegHdr  N | Data payload  N     ...          |00|
 52 *                                                          ^^ padding zeros
 53 * Page 2:
 54 * 0x1000   | SegHdr N+1| Data payload N+1 ...                |
 55 */
 56
 
 
 
 57struct workspace {
 58	void *mem;
 59	void *buf;	/* where decompressed data goes */
 60	void *cbuf;	/* where compressed data goes */
 61	struct list_head list;
 62};
 63
 64static struct workspace_manager wsm;
 65
 66static void lzo_init_workspace_manager(void)
 67{
 68	btrfs_init_workspace_manager(&wsm, &btrfs_lzo_compress);
 69}
 70
 71static void lzo_cleanup_workspace_manager(void)
 72{
 73	btrfs_cleanup_workspace_manager(&wsm);
 74}
 75
 76static struct list_head *lzo_get_workspace(unsigned int level)
 77{
 78	return btrfs_get_workspace(&wsm, level);
 79}
 80
 81static void lzo_put_workspace(struct list_head *ws)
 82{
 83	btrfs_put_workspace(&wsm, ws);
 84}
 85
 86static void lzo_free_workspace(struct list_head *ws)
 87{
 88	struct workspace *workspace = list_entry(ws, struct workspace, list);
 89
 90	kvfree(workspace->buf);
 91	kvfree(workspace->cbuf);
 92	kvfree(workspace->mem);
 93	kfree(workspace);
 94}
 95
 96static struct list_head *lzo_alloc_workspace(unsigned int level)
 97{
 98	struct workspace *workspace;
 99
100	workspace = kzalloc(sizeof(*workspace), GFP_KERNEL);
101	if (!workspace)
102		return ERR_PTR(-ENOMEM);
103
104	workspace->mem = kvmalloc(LZO1X_MEM_COMPRESS, GFP_KERNEL);
105	workspace->buf = kvmalloc(lzo1x_worst_compress(PAGE_SIZE), GFP_KERNEL);
106	workspace->cbuf = kvmalloc(lzo1x_worst_compress(PAGE_SIZE), GFP_KERNEL);
107	if (!workspace->mem || !workspace->buf || !workspace->cbuf)
108		goto fail;
109
110	INIT_LIST_HEAD(&workspace->list);
111
112	return &workspace->list;
113fail:
114	lzo_free_workspace(&workspace->list);
115	return ERR_PTR(-ENOMEM);
116}
117
118static inline void write_compress_length(char *buf, size_t len)
119{
120	__le32 dlen;
121
122	dlen = cpu_to_le32(len);
123	memcpy(buf, &dlen, LZO_LEN);
124}
125
126static inline size_t read_compress_length(const char *buf)
127{
128	__le32 dlen;
129
130	memcpy(&dlen, buf, LZO_LEN);
131	return le32_to_cpu(dlen);
132}
133
134static int lzo_compress_pages(struct list_head *ws,
135			      struct address_space *mapping,
136			      u64 start,
137			      struct page **pages,
138			      unsigned long *out_pages,
139			      unsigned long *total_in,
140			      unsigned long *total_out)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
141{
142	struct workspace *workspace = list_entry(ws, struct workspace, list);
 
 
 
 
143	int ret = 0;
144	char *data_in;
145	char *cpage_out;
146	int nr_pages = 0;
147	struct page *in_page = NULL;
148	struct page *out_page = NULL;
149	unsigned long bytes_left;
150	unsigned long len = *total_out;
151	unsigned long nr_dest_pages = *out_pages;
152	const unsigned long max_out = nr_dest_pages * PAGE_SIZE;
153	size_t in_len;
154	size_t out_len;
155	char *buf;
156	unsigned long tot_in = 0;
157	unsigned long tot_out = 0;
158	unsigned long pg_bytes_left;
159	unsigned long out_offset;
160	unsigned long bytes;
161
 
162	*out_pages = 0;
163	*total_out = 0;
164	*total_in = 0;
165
166	in_page = find_get_page(mapping, start >> PAGE_SHIFT);
167	data_in = kmap(in_page);
168
169	/*
170	 * store the size of all chunks of compressed data in
171	 * the first 4 bytes
172	 */
173	out_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
174	if (out_page == NULL) {
175		ret = -ENOMEM;
176		goto out;
177	}
178	cpage_out = kmap(out_page);
179	out_offset = LZO_LEN;
180	tot_out = LZO_LEN;
181	pages[0] = out_page;
182	nr_pages = 1;
183	pg_bytes_left = PAGE_SIZE - LZO_LEN;
184
185	/* compress at most one page of data each time */
186	in_len = min(len, PAGE_SIZE);
187	while (tot_in < len) {
188		ret = lzo1x_1_compress(data_in, in_len, workspace->cbuf,
189				       &out_len, workspace->mem);
190		if (ret != LZO_E_OK) {
191			pr_debug("BTRFS: lzo in loop returned %d\n",
192			       ret);
 
 
 
 
 
193			ret = -EIO;
194			goto out;
195		}
196
197		/* store the size of this chunk of compressed data */
198		write_compress_length(cpage_out + out_offset, out_len);
199		tot_out += LZO_LEN;
200		out_offset += LZO_LEN;
201		pg_bytes_left -= LZO_LEN;
202
203		tot_in += in_len;
204		tot_out += out_len;
205
206		/* copy bytes from the working buffer into the pages */
207		buf = workspace->cbuf;
208		while (out_len) {
209			bytes = min_t(unsigned long, pg_bytes_left, out_len);
210
211			memcpy(cpage_out + out_offset, buf, bytes);
212
213			out_len -= bytes;
214			pg_bytes_left -= bytes;
215			buf += bytes;
216			out_offset += bytes;
217
218			/*
219			 * we need another page for writing out.
220			 *
221			 * Note if there's less than 4 bytes left, we just
222			 * skip to a new page.
223			 */
224			if ((out_len == 0 && pg_bytes_left < LZO_LEN) ||
225			    pg_bytes_left == 0) {
226				if (pg_bytes_left) {
227					memset(cpage_out + out_offset, 0,
228					       pg_bytes_left);
229					tot_out += pg_bytes_left;
230				}
231
232				/* we're done, don't allocate new page */
233				if (out_len == 0 && tot_in >= len)
234					break;
235
236				kunmap(out_page);
237				if (nr_pages == nr_dest_pages) {
238					out_page = NULL;
239					ret = -E2BIG;
240					goto out;
241				}
242
243				out_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
244				if (out_page == NULL) {
245					ret = -ENOMEM;
246					goto out;
247				}
248				cpage_out = kmap(out_page);
249				pages[nr_pages++] = out_page;
250
251				pg_bytes_left = PAGE_SIZE;
252				out_offset = 0;
253			}
254		}
255
256		/* we're making it bigger, give up */
257		if (tot_in > 8192 && tot_in < tot_out) {
 
 
 
258			ret = -E2BIG;
259			goto out;
260		}
261
262		/* we're all done */
263		if (tot_in >= len)
264			break;
265
266		if (tot_out > max_out)
267			break;
268
269		bytes_left = len - tot_in;
270		kunmap(in_page);
271		put_page(in_page);
272
273		start += PAGE_SIZE;
274		in_page = find_get_page(mapping, start >> PAGE_SHIFT);
275		data_in = kmap(in_page);
276		in_len = min(bytes_left, PAGE_SIZE);
277	}
278
279	if (tot_out >= tot_in) {
280		ret = -E2BIG;
281		goto out;
282	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
284	/* store the size of all chunks of compressed data */
285	cpage_out = kmap(pages[0]);
286	write_compress_length(cpage_out, tot_out);
287
288	kunmap(pages[0]);
 
289
290	ret = 0;
291	*total_out = tot_out;
292	*total_in = tot_in;
293out:
294	*out_pages = nr_pages;
295	if (out_page)
296		kunmap(out_page);
297
298	if (in_page) {
299		kunmap(in_page);
300		put_page(in_page);
301	}
302
303	return ret;
304}
305
306static int lzo_decompress_bio(struct list_head *ws, struct compressed_bio *cb)
307{
308	struct workspace *workspace = list_entry(ws, struct workspace, list);
309	int ret = 0, ret2;
310	char *data_in;
311	unsigned long page_in_index = 0;
312	size_t srclen = cb->compressed_len;
313	unsigned long total_pages_in = DIV_ROUND_UP(srclen, PAGE_SIZE);
314	unsigned long buf_start;
315	unsigned long buf_offset = 0;
316	unsigned long bytes;
317	unsigned long working_bytes;
318	size_t in_len;
319	size_t out_len;
320	const size_t max_segment_len = lzo1x_worst_compress(PAGE_SIZE);
321	unsigned long in_offset;
322	unsigned long in_page_bytes_left;
323	unsigned long tot_in;
324	unsigned long tot_out;
325	unsigned long tot_len;
326	char *buf;
327	bool may_late_unmap, need_unmap;
328	struct page **pages_in = cb->compressed_pages;
329	u64 disk_start = cb->start;
330	struct bio *orig_bio = cb->orig_bio;
331
332	data_in = kmap(pages_in[0]);
333	tot_len = read_compress_length(data_in);
334	/*
335	 * Compressed data header check.
336	 *
337	 * The real compressed size can't exceed the maximum extent length, and
338	 * all pages should be used (whole unused page with just the segment
339	 * header is not possible).  If this happens it means the compressed
340	 * extent is corrupted.
341	 */
342	if (tot_len > min_t(size_t, BTRFS_MAX_COMPRESSED, srclen) ||
343	    tot_len < srclen - PAGE_SIZE) {
344		ret = -EUCLEAN;
345		goto done;
 
 
346	}
347
348	tot_in = LZO_LEN;
349	in_offset = LZO_LEN;
350	in_page_bytes_left = PAGE_SIZE - LZO_LEN;
351
352	tot_out = 0;
353
354	while (tot_in < tot_len) {
355		in_len = read_compress_length(data_in + in_offset);
356		in_page_bytes_left -= LZO_LEN;
357		in_offset += LZO_LEN;
358		tot_in += LZO_LEN;
359
360		/*
361		 * Segment header check.
362		 *
363		 * The segment length must not exceed the maximum LZO
364		 * compression size, nor the total compressed size.
365		 */
366		if (in_len > max_segment_len || tot_in + in_len > tot_len) {
367			ret = -EUCLEAN;
368			goto done;
369		}
 
 
 
 
370
371		tot_in += in_len;
372		working_bytes = in_len;
373		may_late_unmap = need_unmap = false;
374
375		/* fast path: avoid using the working buffer */
376		if (in_page_bytes_left >= in_len) {
377			buf = data_in + in_offset;
378			bytes = in_len;
379			may_late_unmap = true;
380			goto cont;
381		}
382
383		/* copy bytes from the pages into the working buffer */
384		buf = workspace->cbuf;
385		buf_offset = 0;
386		while (working_bytes) {
387			bytes = min(working_bytes, in_page_bytes_left);
388
389			memcpy(buf + buf_offset, data_in + in_offset, bytes);
390			buf_offset += bytes;
391cont:
392			working_bytes -= bytes;
393			in_page_bytes_left -= bytes;
394			in_offset += bytes;
395
396			/* check if we need to pick another page */
397			if ((working_bytes == 0 && in_page_bytes_left < LZO_LEN)
398			    || in_page_bytes_left == 0) {
399				tot_in += in_page_bytes_left;
400
401				if (working_bytes == 0 && tot_in >= tot_len)
402					break;
403
404				if (page_in_index + 1 >= total_pages_in) {
405					ret = -EIO;
406					goto done;
407				}
408
409				if (may_late_unmap)
410					need_unmap = true;
411				else
412					kunmap(pages_in[page_in_index]);
413
414				data_in = kmap(pages_in[++page_in_index]);
415
416				in_page_bytes_left = PAGE_SIZE;
417				in_offset = 0;
418			}
419		}
420
421		out_len = max_segment_len;
422		ret = lzo1x_decompress_safe(buf, in_len, workspace->buf,
423					    &out_len);
424		if (need_unmap)
425			kunmap(pages_in[page_in_index - 1]);
426		if (ret != LZO_E_OK) {
427			pr_warn("BTRFS: decompress failed\n");
428			ret = -EIO;
429			break;
430		}
431
432		buf_start = tot_out;
433		tot_out += out_len;
 
 
 
 
 
 
434
435		ret2 = btrfs_decompress_buf2page(workspace->buf, buf_start,
436						 tot_out, disk_start, orig_bio);
437		if (ret2 == 0)
438			break;
 
 
 
439	}
440done:
441	kunmap(pages_in[page_in_index]);
442	if (!ret)
443		zero_fill_bio(orig_bio);
444	return ret;
445}
446
447static int lzo_decompress(struct list_head *ws, unsigned char *data_in,
448			  struct page *dest_page,
449			  unsigned long start_byte,
450			  size_t srclen, size_t destlen)
451{
452	struct workspace *workspace = list_entry(ws, struct workspace, list);
453	size_t in_len;
454	size_t out_len;
455	size_t max_segment_len = lzo1x_worst_compress(PAGE_SIZE);
456	int ret = 0;
457	char *kaddr;
458	unsigned long bytes;
459
460	if (srclen < LZO_LEN || srclen > max_segment_len + LZO_LEN * 2)
461		return -EUCLEAN;
462
463	in_len = read_compress_length(data_in);
464	if (in_len != srclen)
465		return -EUCLEAN;
466	data_in += LZO_LEN;
467
468	in_len = read_compress_length(data_in);
469	if (in_len != srclen - LZO_LEN * 2) {
470		ret = -EUCLEAN;
471		goto out;
472	}
473	data_in += LZO_LEN;
474
475	out_len = PAGE_SIZE;
476	ret = lzo1x_decompress_safe(data_in, in_len, workspace->buf, &out_len);
477	if (ret != LZO_E_OK) {
478		pr_warn("BTRFS: decompress failed!\n");
479		ret = -EIO;
480		goto out;
481	}
482
483	if (out_len < start_byte) {
484		ret = -EIO;
485		goto out;
486	}
487
488	/*
489	 * the caller is already checking against PAGE_SIZE, but lets
490	 * move this check closer to the memcpy/memset
491	 */
492	destlen = min_t(unsigned long, destlen, PAGE_SIZE);
493	bytes = min_t(unsigned long, destlen, out_len - start_byte);
494
495	kaddr = kmap_atomic(dest_page);
496	memcpy(kaddr, workspace->buf + start_byte, bytes);
497
498	/*
499	 * btrfs_getblock is doing a zero on the tail of the page too,
500	 * but this will cover anything missing from the decompressed
501	 * data.
502	 */
503	if (bytes < destlen)
504		memset(kaddr+bytes, 0, destlen-bytes);
505	kunmap_atomic(kaddr);
506out:
507	return ret;
508}
509
510const struct btrfs_compress_op btrfs_lzo_compress = {
511	.init_workspace_manager	= lzo_init_workspace_manager,
512	.cleanup_workspace_manager = lzo_cleanup_workspace_manager,
513	.get_workspace		= lzo_get_workspace,
514	.put_workspace		= lzo_put_workspace,
515	.alloc_workspace	= lzo_alloc_workspace,
516	.free_workspace		= lzo_free_workspace,
517	.compress_pages		= lzo_compress_pages,
518	.decompress_bio		= lzo_decompress_bio,
519	.decompress		= lzo_decompress,
520	.max_level		= 1,
521	.default_level		= 1,
522};