blob: 5abcc0461ee1aad83db9a3bd4e7238d71436d391 [file] [log] [blame]
Chris Masonc8b97812008-10-29 14:49:59 -04001/*
2 * Copyright (C) 2008 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/kernel.h>
20#include <linux/bio.h>
21#include <linux/buffer_head.h>
22#include <linux/file.h>
23#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
Chris Masonc8b97812008-10-29 14:49:59 -040029#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
33#include <linux/bit_spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
David Sterbafe308532017-05-31 17:14:56 +020035#include <linux/sched/mm.h>
Timofey Titovets19562432017-10-08 16:11:59 +030036#include <linux/log2.h>
Chris Masonc8b97812008-10-29 14:49:59 -040037#include "ctree.h"
38#include "disk-io.h"
39#include "transaction.h"
40#include "btrfs_inode.h"
41#include "volumes.h"
42#include "ordered-data.h"
Chris Masonc8b97812008-10-29 14:49:59 -040043#include "compression.h"
44#include "extent_io.h"
45#include "extent_map.h"
46
David Sterbae128f9c2017-10-31 17:24:26 +010047static const char* const btrfs_compress_types[] = { "", "zlib", "lzo", "zstd" };
48
49const char* btrfs_compress_type2str(enum btrfs_compression_type type)
50{
51 switch (type) {
52 case BTRFS_COMPRESS_ZLIB:
53 case BTRFS_COMPRESS_LZO:
54 case BTRFS_COMPRESS_ZSTD:
55 case BTRFS_COMPRESS_NONE:
56 return btrfs_compress_types[type];
57 }
58
59 return NULL;
60}
61
Anand Jain8140dc32017-05-26 15:44:58 +080062static int btrfs_decompress_bio(struct compressed_bio *cb);
Eric Sandeen48a3b632013-04-25 20:41:01 +000063
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040064static inline int compressed_bio_size(struct btrfs_fs_info *fs_info,
Chris Masond20f7042008-12-08 16:58:54 -050065 unsigned long disk_size)
66{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040067 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +020068
Chris Masond20f7042008-12-08 16:58:54 -050069 return sizeof(struct compressed_bio) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -040070 (DIV_ROUND_UP(disk_size, fs_info->sectorsize)) * csum_size;
Chris Masond20f7042008-12-08 16:58:54 -050071}
72
Nikolay Borisovf898ac62017-02-20 13:50:54 +020073static int check_compressed_csum(struct btrfs_inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -050074 struct compressed_bio *cb,
75 u64 disk_start)
76{
77 int ret;
Chris Masond20f7042008-12-08 16:58:54 -050078 struct page *page;
79 unsigned long i;
80 char *kaddr;
81 u32 csum;
82 u32 *cb_sum = &cb->sums;
83
Nikolay Borisovf898ac62017-02-20 13:50:54 +020084 if (inode->flags & BTRFS_INODE_NODATASUM)
Chris Masond20f7042008-12-08 16:58:54 -050085 return 0;
86
87 for (i = 0; i < cb->nr_pages; i++) {
88 page = cb->compressed_pages[i];
89 csum = ~(u32)0;
90
Cong Wang7ac687d2011-11-25 23:14:28 +080091 kaddr = kmap_atomic(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030092 csum = btrfs_csum_data(kaddr, csum, PAGE_SIZE);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +010093 btrfs_csum_final(csum, (u8 *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +080094 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -050095
96 if (csum != *cb_sum) {
Nikolay Borisovf898ac62017-02-20 13:50:54 +020097 btrfs_print_data_csum_error(inode, disk_start, csum,
Nikolay Borisov0970a222017-02-20 13:50:53 +020098 *cb_sum, cb->mirror_num);
Chris Masond20f7042008-12-08 16:58:54 -050099 ret = -EIO;
100 goto fail;
101 }
102 cb_sum++;
103
104 }
105 ret = 0;
106fail:
107 return ret;
108}
109
Chris Masonc8b97812008-10-29 14:49:59 -0400110/* when we finish reading compressed pages from the disk, we
111 * decompress them and then run the bio end_io routines on the
112 * decompressed pages (in the inode address space).
113 *
114 * This allows the checksumming and other IO error handling routines
115 * to work normally
116 *
117 * The compressed pages are freed here, and it must be run
118 * in process context
119 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200120static void end_compressed_bio_read(struct bio *bio)
Chris Masonc8b97812008-10-29 14:49:59 -0400121{
Chris Masonc8b97812008-10-29 14:49:59 -0400122 struct compressed_bio *cb = bio->bi_private;
123 struct inode *inode;
124 struct page *page;
125 unsigned long index;
Liu Bocf1167d2017-09-20 17:50:18 -0600126 unsigned int mirror = btrfs_io_bio(bio)->mirror_num;
Liu Boe6311f22017-09-20 17:50:19 -0600127 int ret = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400128
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200129 if (bio->bi_status)
Chris Masonc8b97812008-10-29 14:49:59 -0400130 cb->errors = 1;
131
132 /* if there are more bios still pending for this compressed
133 * extent, just exit
134 */
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200135 if (!refcount_dec_and_test(&cb->pending_bios))
Chris Masonc8b97812008-10-29 14:49:59 -0400136 goto out;
137
Liu Bocf1167d2017-09-20 17:50:18 -0600138 /*
139 * Record the correct mirror_num in cb->orig_bio so that
140 * read-repair can work properly.
141 */
142 ASSERT(btrfs_io_bio(cb->orig_bio));
143 btrfs_io_bio(cb->orig_bio)->mirror_num = mirror;
144 cb->mirror_num = mirror;
145
Liu Boe6311f22017-09-20 17:50:19 -0600146 /*
147 * Some IO in this cb have failed, just skip checksum as there
148 * is no way it could be correct.
149 */
150 if (cb->errors == 1)
151 goto csum_failed;
152
Chris Masond20f7042008-12-08 16:58:54 -0500153 inode = cb->inode;
Nikolay Borisovf898ac62017-02-20 13:50:54 +0200154 ret = check_compressed_csum(BTRFS_I(inode), cb,
Kent Overstreet4f024f32013-10-11 15:44:27 -0700155 (u64)bio->bi_iter.bi_sector << 9);
Chris Masond20f7042008-12-08 16:58:54 -0500156 if (ret)
157 goto csum_failed;
158
Chris Masonc8b97812008-10-29 14:49:59 -0400159 /* ok, we're the last bio for this extent, lets start
160 * the decompression.
161 */
Anand Jain8140dc32017-05-26 15:44:58 +0800162 ret = btrfs_decompress_bio(cb);
163
Chris Masond20f7042008-12-08 16:58:54 -0500164csum_failed:
Chris Masonc8b97812008-10-29 14:49:59 -0400165 if (ret)
166 cb->errors = 1;
167
168 /* release the compressed pages */
169 index = 0;
170 for (index = 0; index < cb->nr_pages; index++) {
171 page = cb->compressed_pages[index];
172 page->mapping = NULL;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300173 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400174 }
175
176 /* do io completion on the original bio */
Chris Mason771ed682008-11-06 22:02:51 -0500177 if (cb->errors) {
Chris Masonc8b97812008-10-29 14:49:59 -0400178 bio_io_error(cb->orig_bio);
Chris Masond20f7042008-12-08 16:58:54 -0500179 } else {
Kent Overstreet2c30c712013-11-07 12:20:26 -0800180 int i;
181 struct bio_vec *bvec;
Chris Masond20f7042008-12-08 16:58:54 -0500182
183 /*
184 * we have verified the checksum already, set page
185 * checked so the end_io handlers know about it
186 */
David Sterbac09abff2017-07-13 18:10:07 +0200187 ASSERT(!bio_flagged(bio, BIO_CLONED));
Kent Overstreet2c30c712013-11-07 12:20:26 -0800188 bio_for_each_segment_all(bvec, cb->orig_bio, i)
Chris Masond20f7042008-12-08 16:58:54 -0500189 SetPageChecked(bvec->bv_page);
Kent Overstreet2c30c712013-11-07 12:20:26 -0800190
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200191 bio_endio(cb->orig_bio);
Chris Masond20f7042008-12-08 16:58:54 -0500192 }
Chris Masonc8b97812008-10-29 14:49:59 -0400193
194 /* finally free the cb struct */
195 kfree(cb->compressed_pages);
196 kfree(cb);
197out:
198 bio_put(bio);
199}
200
201/*
202 * Clear the writeback bits on all of the file
203 * pages for a compressed write
204 */
Filipe Manana7bdcefc2014-10-07 01:48:26 +0100205static noinline void end_compressed_writeback(struct inode *inode,
206 const struct compressed_bio *cb)
Chris Masonc8b97812008-10-29 14:49:59 -0400207{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300208 unsigned long index = cb->start >> PAGE_SHIFT;
209 unsigned long end_index = (cb->start + cb->len - 1) >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -0400210 struct page *pages[16];
211 unsigned long nr_pages = end_index - index + 1;
212 int i;
213 int ret;
214
Filipe Manana7bdcefc2014-10-07 01:48:26 +0100215 if (cb->errors)
216 mapping_set_error(inode->i_mapping, -EIO);
217
Chris Masond3977122009-01-05 21:25:51 -0500218 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400219 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -0500220 min_t(unsigned long,
221 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400222 if (ret == 0) {
223 nr_pages -= 1;
224 index += 1;
225 continue;
226 }
227 for (i = 0; i < ret; i++) {
Filipe Manana7bdcefc2014-10-07 01:48:26 +0100228 if (cb->errors)
229 SetPageError(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400230 end_page_writeback(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300231 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400232 }
233 nr_pages -= ret;
234 index += ret;
235 }
236 /* the inode may be gone now */
Chris Masonc8b97812008-10-29 14:49:59 -0400237}
238
239/*
240 * do the cleanup once all the compressed pages hit the disk.
241 * This will clear writeback on the file pages and free the compressed
242 * pages.
243 *
244 * This also calls the writeback end hooks for the file pages so that
245 * metadata and checksums can be updated in the file.
246 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200247static void end_compressed_bio_write(struct bio *bio)
Chris Masonc8b97812008-10-29 14:49:59 -0400248{
249 struct extent_io_tree *tree;
250 struct compressed_bio *cb = bio->bi_private;
251 struct inode *inode;
252 struct page *page;
253 unsigned long index;
254
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200255 if (bio->bi_status)
Chris Masonc8b97812008-10-29 14:49:59 -0400256 cb->errors = 1;
257
258 /* if there are more bios still pending for this compressed
259 * extent, just exit
260 */
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200261 if (!refcount_dec_and_test(&cb->pending_bios))
Chris Masonc8b97812008-10-29 14:49:59 -0400262 goto out;
263
264 /* ok, we're the last bio for this extent, step one is to
265 * call back into the FS and do all the end_io operations
266 */
267 inode = cb->inode;
268 tree = &BTRFS_I(inode)->io_tree;
Chris Mason70b99e62008-10-31 12:46:39 -0400269 cb->compressed_pages[0]->mapping = cb->inode->i_mapping;
Chris Masonc8b97812008-10-29 14:49:59 -0400270 tree->ops->writepage_end_io_hook(cb->compressed_pages[0],
271 cb->start,
272 cb->start + cb->len - 1,
Filipe Manana7bdcefc2014-10-07 01:48:26 +0100273 NULL,
Anand Jain2dbe0c72017-10-14 08:35:56 +0800274 bio->bi_status ?
275 BLK_STS_OK : BLK_STS_NOTSUPP);
Chris Mason70b99e62008-10-31 12:46:39 -0400276 cb->compressed_pages[0]->mapping = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -0400277
Filipe Manana7bdcefc2014-10-07 01:48:26 +0100278 end_compressed_writeback(inode, cb);
Chris Masonc8b97812008-10-29 14:49:59 -0400279 /* note, our inode could be gone now */
280
281 /*
282 * release the compressed pages, these came from alloc_page and
283 * are not attached to the inode at all
284 */
285 index = 0;
286 for (index = 0; index < cb->nr_pages; index++) {
287 page = cb->compressed_pages[index];
288 page->mapping = NULL;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300289 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400290 }
291
292 /* finally free the cb struct */
293 kfree(cb->compressed_pages);
294 kfree(cb);
295out:
296 bio_put(bio);
297}
298
299/*
300 * worker function to build and submit bios for previously compressed pages.
301 * The corresponding pages in the inode should be marked for writeback
302 * and the compressed pages should have a reference on them for dropping
303 * when the IO is complete.
304 *
305 * This also checksums the file bytes and gets things ready for
306 * the end io hooks.
307 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200308blk_status_t btrfs_submit_compressed_write(struct inode *inode, u64 start,
Chris Masonc8b97812008-10-29 14:49:59 -0400309 unsigned long len, u64 disk_start,
310 unsigned long compressed_len,
311 struct page **compressed_pages,
Liu Bof82b7352017-10-23 23:18:16 -0600312 unsigned long nr_pages,
313 unsigned int write_flags)
Chris Masonc8b97812008-10-29 14:49:59 -0400314{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400315 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonc8b97812008-10-29 14:49:59 -0400316 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -0400317 struct compressed_bio *cb;
318 unsigned long bytes_left;
319 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
David Sterba306e16c2011-04-19 14:29:38 +0200320 int pg_index = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400321 struct page *page;
322 u64 first_byte = disk_start;
323 struct block_device *bdev;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200324 blk_status_t ret;
Li Zefane55179b2011-07-14 03:16:47 +0000325 int skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masonc8b97812008-10-29 14:49:59 -0400326
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300327 WARN_ON(start & ((u64)PAGE_SIZE - 1));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400328 cb = kmalloc(compressed_bio_size(fs_info, compressed_len), GFP_NOFS);
Yoshinori Sanodac97e52011-02-15 12:01:42 +0000329 if (!cb)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200330 return BLK_STS_RESOURCE;
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200331 refcount_set(&cb->pending_bios, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400332 cb->errors = 0;
333 cb->inode = inode;
334 cb->start = start;
335 cb->len = len;
Chris Masond20f7042008-12-08 16:58:54 -0500336 cb->mirror_num = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400337 cb->compressed_pages = compressed_pages;
338 cb->compressed_len = compressed_len;
339 cb->orig_bio = NULL;
340 cb->nr_pages = nr_pages;
341
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400342 bdev = fs_info->fs_devices->latest_bdev;
Chris Masonc8b97812008-10-29 14:49:59 -0400343
David Sterbac821e7f32017-06-02 18:35:36 +0200344 bio = btrfs_bio_alloc(bdev, first_byte);
Liu Bof82b7352017-10-23 23:18:16 -0600345 bio->bi_opf = REQ_OP_WRITE | write_flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400346 bio->bi_private = cb;
347 bio->bi_end_io = end_compressed_bio_write;
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200348 refcount_set(&cb->pending_bios, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400349
350 /* create and submit bios for the compressed pages */
351 bytes_left = compressed_len;
David Sterba306e16c2011-04-19 14:29:38 +0200352 for (pg_index = 0; pg_index < cb->nr_pages; pg_index++) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200353 int submit = 0;
354
David Sterba306e16c2011-04-19 14:29:38 +0200355 page = compressed_pages[pg_index];
Chris Masonc8b97812008-10-29 14:49:59 -0400356 page->mapping = inode->i_mapping;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700357 if (bio->bi_iter.bi_size)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200358 submit = io_tree->ops->merge_bio_hook(page, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300359 PAGE_SIZE,
Chris Masonc8b97812008-10-29 14:49:59 -0400360 bio, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400361
Chris Mason70b99e62008-10-31 12:46:39 -0400362 page->mapping = NULL;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200363 if (submit || bio_add_page(bio, page, PAGE_SIZE, 0) <
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300364 PAGE_SIZE) {
Chris Masonaf09abf2008-11-07 12:35:44 -0500365 /*
366 * inc the count before we submit the bio so
367 * we know the end IO handler won't happen before
368 * we inc the count. Otherwise, the cb might get
369 * freed before we're done setting it up
370 */
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200371 refcount_inc(&cb->pending_bios);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400372 ret = btrfs_bio_wq_end_io(fs_info, bio,
373 BTRFS_WQ_ENDIO_DATA);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100374 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400375
Li Zefane55179b2011-07-14 03:16:47 +0000376 if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400377 ret = btrfs_csum_one_bio(inode, bio, start, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100378 BUG_ON(ret); /* -ENOMEM */
Li Zefane55179b2011-07-14 03:16:47 +0000379 }
Chris Masond20f7042008-12-08 16:58:54 -0500380
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400381 ret = btrfs_map_bio(fs_info, bio, 0, 1);
Liu Bof5daf2c2016-06-22 18:32:06 -0700382 if (ret) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200383 bio->bi_status = ret;
Liu Bof5daf2c2016-06-22 18:32:06 -0700384 bio_endio(bio);
385 }
Chris Masonc8b97812008-10-29 14:49:59 -0400386
David Sterbac821e7f32017-06-02 18:35:36 +0200387 bio = btrfs_bio_alloc(bdev, first_byte);
Liu Bof82b7352017-10-23 23:18:16 -0600388 bio->bi_opf = REQ_OP_WRITE | write_flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400389 bio->bi_private = cb;
390 bio->bi_end_io = end_compressed_bio_write;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300391 bio_add_page(bio, page, PAGE_SIZE, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400392 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300393 if (bytes_left < PAGE_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400394 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -0500395 "bytes left %lu compress len %lu nr %lu",
Chris Masoncfbc2462008-10-30 13:22:14 -0400396 bytes_left, cb->compressed_len, cb->nr_pages);
397 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300398 bytes_left -= PAGE_SIZE;
399 first_byte += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -0500400 cond_resched();
Chris Masonc8b97812008-10-29 14:49:59 -0400401 }
Chris Masonc8b97812008-10-29 14:49:59 -0400402
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400403 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100404 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400405
Li Zefane55179b2011-07-14 03:16:47 +0000406 if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400407 ret = btrfs_csum_one_bio(inode, bio, start, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100408 BUG_ON(ret); /* -ENOMEM */
Li Zefane55179b2011-07-14 03:16:47 +0000409 }
Chris Masond20f7042008-12-08 16:58:54 -0500410
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400411 ret = btrfs_map_bio(fs_info, bio, 0, 1);
Liu Bof5daf2c2016-06-22 18:32:06 -0700412 if (ret) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200413 bio->bi_status = ret;
Liu Bof5daf2c2016-06-22 18:32:06 -0700414 bio_endio(bio);
415 }
Chris Masonc8b97812008-10-29 14:49:59 -0400416
Chris Masonc8b97812008-10-29 14:49:59 -0400417 return 0;
418}
419
Christoph Hellwig2a4d0c92016-11-25 09:07:51 +0100420static u64 bio_end_offset(struct bio *bio)
421{
422 struct bio_vec *last = &bio->bi_io_vec[bio->bi_vcnt - 1];
423
424 return page_offset(last->bv_page) + last->bv_len + last->bv_offset;
425}
426
Chris Mason771ed682008-11-06 22:02:51 -0500427static noinline int add_ra_bio_pages(struct inode *inode,
428 u64 compressed_end,
429 struct compressed_bio *cb)
430{
431 unsigned long end_index;
David Sterba306e16c2011-04-19 14:29:38 +0200432 unsigned long pg_index;
Chris Mason771ed682008-11-06 22:02:51 -0500433 u64 last_offset;
434 u64 isize = i_size_read(inode);
435 int ret;
436 struct page *page;
437 unsigned long nr_pages = 0;
438 struct extent_map *em;
439 struct address_space *mapping = inode->i_mapping;
Chris Mason771ed682008-11-06 22:02:51 -0500440 struct extent_map_tree *em_tree;
441 struct extent_io_tree *tree;
442 u64 end;
443 int misses = 0;
444
Christoph Hellwig2a4d0c92016-11-25 09:07:51 +0100445 last_offset = bio_end_offset(cb->orig_bio);
Chris Mason771ed682008-11-06 22:02:51 -0500446 em_tree = &BTRFS_I(inode)->extent_tree;
447 tree = &BTRFS_I(inode)->io_tree;
448
449 if (isize == 0)
450 return 0;
451
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300452 end_index = (i_size_read(inode) - 1) >> PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -0500453
Chris Masond3977122009-01-05 21:25:51 -0500454 while (last_offset < compressed_end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300455 pg_index = last_offset >> PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -0500456
David Sterba306e16c2011-04-19 14:29:38 +0200457 if (pg_index > end_index)
Chris Mason771ed682008-11-06 22:02:51 -0500458 break;
459
460 rcu_read_lock();
David Sterba306e16c2011-04-19 14:29:38 +0200461 page = radix_tree_lookup(&mapping->page_tree, pg_index);
Chris Mason771ed682008-11-06 22:02:51 -0500462 rcu_read_unlock();
Johannes Weiner0cd61442014-04-03 14:47:46 -0700463 if (page && !radix_tree_exceptional_entry(page)) {
Chris Mason771ed682008-11-06 22:02:51 -0500464 misses++;
465 if (misses > 4)
466 break;
467 goto next;
468 }
469
Michal Hockoc62d2552015-11-06 16:28:49 -0800470 page = __page_cache_alloc(mapping_gfp_constraint(mapping,
471 ~__GFP_FS));
Chris Mason771ed682008-11-06 22:02:51 -0500472 if (!page)
473 break;
474
Michal Hockoc62d2552015-11-06 16:28:49 -0800475 if (add_to_page_cache_lru(page, mapping, pg_index, GFP_NOFS)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300476 put_page(page);
Chris Mason771ed682008-11-06 22:02:51 -0500477 goto next;
478 }
479
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300480 end = last_offset + PAGE_SIZE - 1;
Chris Mason771ed682008-11-06 22:02:51 -0500481 /*
482 * at this point, we have a locked page in the page cache
483 * for these bytes in the file. But, we have to make
484 * sure they map to this compressed extent on disk.
485 */
486 set_page_extent_mapped(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100487 lock_extent(tree, last_offset, end);
Chris Mason890871b2009-09-02 16:24:52 -0400488 read_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500489 em = lookup_extent_mapping(em_tree, last_offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300490 PAGE_SIZE);
Chris Mason890871b2009-09-02 16:24:52 -0400491 read_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500492
493 if (!em || last_offset < em->start ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300494 (last_offset + PAGE_SIZE > extent_map_end(em)) ||
Kent Overstreet4f024f32013-10-11 15:44:27 -0700495 (em->block_start >> 9) != cb->orig_bio->bi_iter.bi_sector) {
Chris Mason771ed682008-11-06 22:02:51 -0500496 free_extent_map(em);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100497 unlock_extent(tree, last_offset, end);
Chris Mason771ed682008-11-06 22:02:51 -0500498 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300499 put_page(page);
Chris Mason771ed682008-11-06 22:02:51 -0500500 break;
501 }
502 free_extent_map(em);
503
504 if (page->index == end_index) {
505 char *userpage;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300506 size_t zero_offset = isize & (PAGE_SIZE - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500507
508 if (zero_offset) {
509 int zeros;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300510 zeros = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +0800511 userpage = kmap_atomic(page);
Chris Mason771ed682008-11-06 22:02:51 -0500512 memset(userpage + zero_offset, 0, zeros);
513 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +0800514 kunmap_atomic(userpage);
Chris Mason771ed682008-11-06 22:02:51 -0500515 }
516 }
517
518 ret = bio_add_page(cb->orig_bio, page,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300519 PAGE_SIZE, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500520
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300521 if (ret == PAGE_SIZE) {
Chris Mason771ed682008-11-06 22:02:51 -0500522 nr_pages++;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300523 put_page(page);
Chris Mason771ed682008-11-06 22:02:51 -0500524 } else {
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100525 unlock_extent(tree, last_offset, end);
Chris Mason771ed682008-11-06 22:02:51 -0500526 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300527 put_page(page);
Chris Mason771ed682008-11-06 22:02:51 -0500528 break;
529 }
530next:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300531 last_offset += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -0500532 }
Chris Mason771ed682008-11-06 22:02:51 -0500533 return 0;
534}
535
Chris Masonc8b97812008-10-29 14:49:59 -0400536/*
537 * for a compressed read, the bio we get passed has all the inode pages
538 * in it. We don't actually do IO on those pages but allocate new ones
539 * to hold the compressed pages on disk.
540 *
Kent Overstreet4f024f32013-10-11 15:44:27 -0700541 * bio->bi_iter.bi_sector points to the compressed extent on disk
Chris Masonc8b97812008-10-29 14:49:59 -0400542 * bio->bi_io_vec points to all of the inode pages
Chris Masonc8b97812008-10-29 14:49:59 -0400543 *
544 * After the compressed pages are read, we copy the bytes into the
545 * bio we were passed and then call the bio end_io calls
546 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200547blk_status_t btrfs_submit_compressed_read(struct inode *inode, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -0400548 int mirror_num, unsigned long bio_flags)
549{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400550 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonc8b97812008-10-29 14:49:59 -0400551 struct extent_io_tree *tree;
552 struct extent_map_tree *em_tree;
553 struct compressed_bio *cb;
Chris Masonc8b97812008-10-29 14:49:59 -0400554 unsigned long compressed_len;
555 unsigned long nr_pages;
David Sterba306e16c2011-04-19 14:29:38 +0200556 unsigned long pg_index;
Chris Masonc8b97812008-10-29 14:49:59 -0400557 struct page *page;
558 struct block_device *bdev;
559 struct bio *comp_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700560 u64 cur_disk_byte = (u64)bio->bi_iter.bi_sector << 9;
Chris Masone04ca622008-11-10 11:44:58 -0500561 u64 em_len;
562 u64 em_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400563 struct extent_map *em;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200564 blk_status_t ret = BLK_STS_RESOURCE;
Josef Bacik15e3004a2012-10-05 13:39:50 -0400565 int faili = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500566 u32 *sums;
Chris Masonc8b97812008-10-29 14:49:59 -0400567
568 tree = &BTRFS_I(inode)->io_tree;
569 em_tree = &BTRFS_I(inode)->extent_tree;
570
571 /* we need the actual starting offset of this extent in the file */
Chris Mason890871b2009-09-02 16:24:52 -0400572 read_lock(&em_tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -0400573 em = lookup_extent_mapping(em_tree,
574 page_offset(bio->bi_io_vec->bv_page),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300575 PAGE_SIZE);
Chris Mason890871b2009-09-02 16:24:52 -0400576 read_unlock(&em_tree->lock);
Tsutomu Itoh285190d2012-02-16 16:23:58 +0900577 if (!em)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200578 return BLK_STS_IOERR;
Chris Masonc8b97812008-10-29 14:49:59 -0400579
Chris Masond20f7042008-12-08 16:58:54 -0500580 compressed_len = em->block_len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400581 cb = kmalloc(compressed_bio_size(fs_info, compressed_len), GFP_NOFS);
liubo6b82ce82011-01-26 06:21:39 +0000582 if (!cb)
583 goto out;
584
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200585 refcount_set(&cb->pending_bios, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400586 cb->errors = 0;
587 cb->inode = inode;
Chris Masond20f7042008-12-08 16:58:54 -0500588 cb->mirror_num = mirror_num;
589 sums = &cb->sums;
Chris Masonc8b97812008-10-29 14:49:59 -0400590
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500591 cb->start = em->orig_start;
Chris Masone04ca622008-11-10 11:44:58 -0500592 em_len = em->len;
593 em_start = em->start;
Chris Masond20f7042008-12-08 16:58:54 -0500594
Chris Masonc8b97812008-10-29 14:49:59 -0400595 free_extent_map(em);
Chris Masone04ca622008-11-10 11:44:58 -0500596 em = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -0400597
Christoph Hellwig81381052016-11-25 09:07:50 +0100598 cb->len = bio->bi_iter.bi_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400599 cb->compressed_len = compressed_len;
Li Zefan261507a02010-12-17 14:21:50 +0800600 cb->compress_type = extent_compress_type(bio_flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400601 cb->orig_bio = bio;
602
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300603 nr_pages = DIV_ROUND_UP(compressed_len, PAGE_SIZE);
David Sterba31e818f2015-02-20 18:00:26 +0100604 cb->compressed_pages = kcalloc(nr_pages, sizeof(struct page *),
Chris Masonc8b97812008-10-29 14:49:59 -0400605 GFP_NOFS);
liubo6b82ce82011-01-26 06:21:39 +0000606 if (!cb->compressed_pages)
607 goto fail1;
608
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400609 bdev = fs_info->fs_devices->latest_bdev;
Chris Masonc8b97812008-10-29 14:49:59 -0400610
David Sterba306e16c2011-04-19 14:29:38 +0200611 for (pg_index = 0; pg_index < nr_pages; pg_index++) {
612 cb->compressed_pages[pg_index] = alloc_page(GFP_NOFS |
Chris Masonc8b97812008-10-29 14:49:59 -0400613 __GFP_HIGHMEM);
Josef Bacik15e3004a2012-10-05 13:39:50 -0400614 if (!cb->compressed_pages[pg_index]) {
615 faili = pg_index - 1;
Dan Carpenter0e9350d2017-06-19 13:55:37 +0300616 ret = BLK_STS_RESOURCE;
liubo6b82ce82011-01-26 06:21:39 +0000617 goto fail2;
Josef Bacik15e3004a2012-10-05 13:39:50 -0400618 }
Chris Masonc8b97812008-10-29 14:49:59 -0400619 }
Josef Bacik15e3004a2012-10-05 13:39:50 -0400620 faili = nr_pages - 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400621 cb->nr_pages = nr_pages;
622
Filipe Manana7f042a82016-01-27 19:17:20 +0000623 add_ra_bio_pages(inode, em_start + em_len, cb);
Chris Mason771ed682008-11-06 22:02:51 -0500624
Chris Mason771ed682008-11-06 22:02:51 -0500625 /* include any pages we added in add_ra-bio_pages */
Christoph Hellwig81381052016-11-25 09:07:50 +0100626 cb->len = bio->bi_iter.bi_size;
Chris Mason771ed682008-11-06 22:02:51 -0500627
David Sterbac821e7f32017-06-02 18:35:36 +0200628 comp_bio = btrfs_bio_alloc(bdev, cur_disk_byte);
Mike Christie37226b22016-06-05 14:31:52 -0500629 bio_set_op_attrs (comp_bio, REQ_OP_READ, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400630 comp_bio->bi_private = cb;
631 comp_bio->bi_end_io = end_compressed_bio_read;
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200632 refcount_set(&cb->pending_bios, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400633
David Sterba306e16c2011-04-19 14:29:38 +0200634 for (pg_index = 0; pg_index < nr_pages; pg_index++) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200635 int submit = 0;
636
David Sterba306e16c2011-04-19 14:29:38 +0200637 page = cb->compressed_pages[pg_index];
Chris Masonc8b97812008-10-29 14:49:59 -0400638 page->mapping = inode->i_mapping;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300639 page->index = em_start >> PAGE_SHIFT;
Chris Masond20f7042008-12-08 16:58:54 -0500640
Kent Overstreet4f024f32013-10-11 15:44:27 -0700641 if (comp_bio->bi_iter.bi_size)
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200642 submit = tree->ops->merge_bio_hook(page, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300643 PAGE_SIZE,
Chris Masonc8b97812008-10-29 14:49:59 -0400644 comp_bio, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400645
Chris Mason70b99e62008-10-31 12:46:39 -0400646 page->mapping = NULL;
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200647 if (submit || bio_add_page(comp_bio, page, PAGE_SIZE, 0) <
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300648 PAGE_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400649 ret = btrfs_bio_wq_end_io(fs_info, comp_bio,
650 BTRFS_WQ_ENDIO_DATA);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100651 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400652
Chris Masonaf09abf2008-11-07 12:35:44 -0500653 /*
654 * inc the count before we submit the bio so
655 * we know the end IO handler won't happen before
656 * we inc the count. Otherwise, the cb might get
657 * freed before we're done setting it up
658 */
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200659 refcount_inc(&cb->pending_bios);
Chris Masonaf09abf2008-11-07 12:35:44 -0500660
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200661 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400662 ret = btrfs_lookup_bio_sums(inode, comp_bio,
663 sums);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100664 BUG_ON(ret); /* -ENOMEM */
Chris Masond20f7042008-12-08 16:58:54 -0500665 }
David Sterbaed6078f2014-06-05 01:59:57 +0200666 sums += DIV_ROUND_UP(comp_bio->bi_iter.bi_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400667 fs_info->sectorsize);
Chris Masond20f7042008-12-08 16:58:54 -0500668
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400669 ret = btrfs_map_bio(fs_info, comp_bio, mirror_num, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200670 if (ret) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200671 comp_bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200672 bio_endio(comp_bio);
673 }
Chris Masonc8b97812008-10-29 14:49:59 -0400674
David Sterbac821e7f32017-06-02 18:35:36 +0200675 comp_bio = btrfs_bio_alloc(bdev, cur_disk_byte);
Mike Christie37226b22016-06-05 14:31:52 -0500676 bio_set_op_attrs(comp_bio, REQ_OP_READ, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500677 comp_bio->bi_private = cb;
678 comp_bio->bi_end_io = end_compressed_bio_read;
679
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300680 bio_add_page(comp_bio, page, PAGE_SIZE, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400681 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300682 cur_disk_byte += PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -0400683 }
Chris Masonc8b97812008-10-29 14:49:59 -0400684
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400685 ret = btrfs_bio_wq_end_io(fs_info, comp_bio, BTRFS_WQ_ENDIO_DATA);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100686 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400687
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000688 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400689 ret = btrfs_lookup_bio_sums(inode, comp_bio, sums);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100690 BUG_ON(ret); /* -ENOMEM */
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000691 }
Chris Masond20f7042008-12-08 16:58:54 -0500692
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400693 ret = btrfs_map_bio(fs_info, comp_bio, mirror_num, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200694 if (ret) {
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200695 comp_bio->bi_status = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200696 bio_endio(comp_bio);
697 }
Chris Masonc8b97812008-10-29 14:49:59 -0400698
Chris Masonc8b97812008-10-29 14:49:59 -0400699 return 0;
liubo6b82ce82011-01-26 06:21:39 +0000700
701fail2:
Josef Bacik15e3004a2012-10-05 13:39:50 -0400702 while (faili >= 0) {
703 __free_page(cb->compressed_pages[faili]);
704 faili--;
705 }
liubo6b82ce82011-01-26 06:21:39 +0000706
707 kfree(cb->compressed_pages);
708fail1:
709 kfree(cb);
710out:
711 free_extent_map(em);
712 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400713}
Li Zefan261507a02010-12-17 14:21:50 +0800714
Timofey Titovets17b5a6c2017-09-28 17:33:37 +0300715/*
716 * Heuristic uses systematic sampling to collect data from the input data
717 * range, the logic can be tuned by the following constants:
718 *
719 * @SAMPLING_READ_SIZE - how many bytes will be copied from for each sample
720 * @SAMPLING_INTERVAL - range from which the sampled data can be collected
721 */
722#define SAMPLING_READ_SIZE (16)
723#define SAMPLING_INTERVAL (256)
724
725/*
726 * For statistical analysis of the input data we consider bytes that form a
727 * Galois Field of 256 objects. Each object has an attribute count, ie. how
728 * many times the object appeared in the sample.
729 */
730#define BUCKET_SIZE (256)
731
732/*
733 * The size of the sample is based on a statistical sampling rule of thumb.
734 * The common way is to perform sampling tests as long as the number of
735 * elements in each cell is at least 5.
736 *
737 * Instead of 5, we choose 32 to obtain more accurate results.
738 * If the data contain the maximum number of symbols, which is 256, we obtain a
739 * sample size bound by 8192.
740 *
741 * For a sample of at most 8KB of data per data range: 16 consecutive bytes
742 * from up to 512 locations.
743 */
744#define MAX_SAMPLE_SIZE (BTRFS_MAX_UNCOMPRESSED * \
745 SAMPLING_READ_SIZE / SAMPLING_INTERVAL)
746
747struct bucket_item {
748 u32 count;
749};
Timofey Titovets4e439a02017-09-28 17:33:36 +0300750
751struct heuristic_ws {
Timofey Titovets17b5a6c2017-09-28 17:33:37 +0300752 /* Partial copy of input data */
753 u8 *sample;
Timofey Titovetsa440d482017-09-28 17:33:38 +0300754 u32 sample_size;
Timofey Titovets17b5a6c2017-09-28 17:33:37 +0300755 /* Buckets store counters for each byte value */
756 struct bucket_item *bucket;
Timofey Titovets440c8402017-12-04 00:30:33 +0300757 /* Sorting buffer */
758 struct bucket_item *bucket_b;
Timofey Titovets4e439a02017-09-28 17:33:36 +0300759 struct list_head list;
760};
761
762static void free_heuristic_ws(struct list_head *ws)
763{
764 struct heuristic_ws *workspace;
765
766 workspace = list_entry(ws, struct heuristic_ws, list);
767
Timofey Titovets17b5a6c2017-09-28 17:33:37 +0300768 kvfree(workspace->sample);
769 kfree(workspace->bucket);
Timofey Titovets440c8402017-12-04 00:30:33 +0300770 kfree(workspace->bucket_b);
Timofey Titovets4e439a02017-09-28 17:33:36 +0300771 kfree(workspace);
772}
773
774static struct list_head *alloc_heuristic_ws(void)
775{
776 struct heuristic_ws *ws;
777
778 ws = kzalloc(sizeof(*ws), GFP_KERNEL);
779 if (!ws)
780 return ERR_PTR(-ENOMEM);
781
Timofey Titovets17b5a6c2017-09-28 17:33:37 +0300782 ws->sample = kvmalloc(MAX_SAMPLE_SIZE, GFP_KERNEL);
783 if (!ws->sample)
784 goto fail;
Timofey Titovets4e439a02017-09-28 17:33:36 +0300785
Timofey Titovets17b5a6c2017-09-28 17:33:37 +0300786 ws->bucket = kcalloc(BUCKET_SIZE, sizeof(*ws->bucket), GFP_KERNEL);
787 if (!ws->bucket)
788 goto fail;
789
Timofey Titovets440c8402017-12-04 00:30:33 +0300790 ws->bucket_b = kcalloc(BUCKET_SIZE, sizeof(*ws->bucket_b), GFP_KERNEL);
791 if (!ws->bucket_b)
792 goto fail;
793
Timofey Titovets17b5a6c2017-09-28 17:33:37 +0300794 INIT_LIST_HEAD(&ws->list);
Timofey Titovets4e439a02017-09-28 17:33:36 +0300795 return &ws->list;
Timofey Titovets17b5a6c2017-09-28 17:33:37 +0300796fail:
797 free_heuristic_ws(&ws->list);
798 return ERR_PTR(-ENOMEM);
Timofey Titovets4e439a02017-09-28 17:33:36 +0300799}
800
801struct workspaces_list {
Byongho Leed9187642015-10-14 14:05:24 +0900802 struct list_head idle_ws;
803 spinlock_t ws_lock;
David Sterba6ac10a62016-04-27 02:15:15 +0200804 /* Number of free workspaces */
805 int free_ws;
806 /* Total number of allocated workspaces */
807 atomic_t total_ws;
808 /* Waiters for a free workspace */
Byongho Leed9187642015-10-14 14:05:24 +0900809 wait_queue_head_t ws_wait;
Timofey Titovets4e439a02017-09-28 17:33:36 +0300810};
811
812static struct workspaces_list btrfs_comp_ws[BTRFS_COMPRESS_TYPES];
813
814static struct workspaces_list btrfs_heuristic_ws;
Li Zefan261507a02010-12-17 14:21:50 +0800815
David Sterbae8c9f182015-01-02 18:23:10 +0100816static const struct btrfs_compress_op * const btrfs_compress_op[] = {
Li Zefan261507a02010-12-17 14:21:50 +0800817 &btrfs_zlib_compress,
Li Zefana6fa6fa2010-10-25 15:12:26 +0800818 &btrfs_lzo_compress,
Nick Terrell5c1aab12017-08-09 19:39:02 -0700819 &btrfs_zstd_compress,
Li Zefan261507a02010-12-17 14:21:50 +0800820};
821
Jeff Mahoney143bede2012-03-01 14:56:26 +0100822void __init btrfs_init_compress(void)
Li Zefan261507a02010-12-17 14:21:50 +0800823{
Timofey Titovets4e439a02017-09-28 17:33:36 +0300824 struct list_head *workspace;
Li Zefan261507a02010-12-17 14:21:50 +0800825 int i;
826
Timofey Titovets4e439a02017-09-28 17:33:36 +0300827 INIT_LIST_HEAD(&btrfs_heuristic_ws.idle_ws);
828 spin_lock_init(&btrfs_heuristic_ws.ws_lock);
829 atomic_set(&btrfs_heuristic_ws.total_ws, 0);
830 init_waitqueue_head(&btrfs_heuristic_ws.ws_wait);
David Sterbaf77dd0d2016-04-27 02:55:15 +0200831
Timofey Titovets4e439a02017-09-28 17:33:36 +0300832 workspace = alloc_heuristic_ws();
833 if (IS_ERR(workspace)) {
834 pr_warn(
835 "BTRFS: cannot preallocate heuristic workspace, will try later\n");
836 } else {
837 atomic_set(&btrfs_heuristic_ws.total_ws, 1);
838 btrfs_heuristic_ws.free_ws = 1;
839 list_add(workspace, &btrfs_heuristic_ws.idle_ws);
840 }
841
842 for (i = 0; i < BTRFS_COMPRESS_TYPES; i++) {
Byongho Leed9187642015-10-14 14:05:24 +0900843 INIT_LIST_HEAD(&btrfs_comp_ws[i].idle_ws);
844 spin_lock_init(&btrfs_comp_ws[i].ws_lock);
David Sterba6ac10a62016-04-27 02:15:15 +0200845 atomic_set(&btrfs_comp_ws[i].total_ws, 0);
Byongho Leed9187642015-10-14 14:05:24 +0900846 init_waitqueue_head(&btrfs_comp_ws[i].ws_wait);
David Sterbaf77dd0d2016-04-27 02:55:15 +0200847
848 /*
849 * Preallocate one workspace for each compression type so
850 * we can guarantee forward progress in the worst case
851 */
852 workspace = btrfs_compress_op[i]->alloc_workspace();
853 if (IS_ERR(workspace)) {
Jeff Mahoney62e85572016-09-20 10:05:01 -0400854 pr_warn("BTRFS: cannot preallocate compression workspace, will try later\n");
David Sterbaf77dd0d2016-04-27 02:55:15 +0200855 } else {
856 atomic_set(&btrfs_comp_ws[i].total_ws, 1);
857 btrfs_comp_ws[i].free_ws = 1;
858 list_add(workspace, &btrfs_comp_ws[i].idle_ws);
859 }
Li Zefan261507a02010-12-17 14:21:50 +0800860 }
Li Zefan261507a02010-12-17 14:21:50 +0800861}
862
863/*
David Sterbae721e492016-04-27 02:41:17 +0200864 * This finds an available workspace or allocates a new one.
865 * If it's not possible to allocate a new one, waits until there's one.
866 * Preallocation makes a forward progress guarantees and we do not return
867 * errors.
Li Zefan261507a02010-12-17 14:21:50 +0800868 */
Timofey Titovets4e439a02017-09-28 17:33:36 +0300869static struct list_head *__find_workspace(int type, bool heuristic)
Li Zefan261507a02010-12-17 14:21:50 +0800870{
871 struct list_head *workspace;
872 int cpus = num_online_cpus();
873 int idx = type - 1;
David Sterbafe308532017-05-31 17:14:56 +0200874 unsigned nofs_flag;
Timofey Titovets4e439a02017-09-28 17:33:36 +0300875 struct list_head *idle_ws;
876 spinlock_t *ws_lock;
877 atomic_t *total_ws;
878 wait_queue_head_t *ws_wait;
879 int *free_ws;
Li Zefan261507a02010-12-17 14:21:50 +0800880
Timofey Titovets4e439a02017-09-28 17:33:36 +0300881 if (heuristic) {
882 idle_ws = &btrfs_heuristic_ws.idle_ws;
883 ws_lock = &btrfs_heuristic_ws.ws_lock;
884 total_ws = &btrfs_heuristic_ws.total_ws;
885 ws_wait = &btrfs_heuristic_ws.ws_wait;
886 free_ws = &btrfs_heuristic_ws.free_ws;
887 } else {
888 idle_ws = &btrfs_comp_ws[idx].idle_ws;
889 ws_lock = &btrfs_comp_ws[idx].ws_lock;
890 total_ws = &btrfs_comp_ws[idx].total_ws;
891 ws_wait = &btrfs_comp_ws[idx].ws_wait;
892 free_ws = &btrfs_comp_ws[idx].free_ws;
893 }
894
Li Zefan261507a02010-12-17 14:21:50 +0800895again:
Byongho Leed9187642015-10-14 14:05:24 +0900896 spin_lock(ws_lock);
897 if (!list_empty(idle_ws)) {
898 workspace = idle_ws->next;
Li Zefan261507a02010-12-17 14:21:50 +0800899 list_del(workspace);
David Sterba6ac10a62016-04-27 02:15:15 +0200900 (*free_ws)--;
Byongho Leed9187642015-10-14 14:05:24 +0900901 spin_unlock(ws_lock);
Li Zefan261507a02010-12-17 14:21:50 +0800902 return workspace;
903
904 }
David Sterba6ac10a62016-04-27 02:15:15 +0200905 if (atomic_read(total_ws) > cpus) {
Li Zefan261507a02010-12-17 14:21:50 +0800906 DEFINE_WAIT(wait);
907
Byongho Leed9187642015-10-14 14:05:24 +0900908 spin_unlock(ws_lock);
909 prepare_to_wait(ws_wait, &wait, TASK_UNINTERRUPTIBLE);
David Sterba6ac10a62016-04-27 02:15:15 +0200910 if (atomic_read(total_ws) > cpus && !*free_ws)
Li Zefan261507a02010-12-17 14:21:50 +0800911 schedule();
Byongho Leed9187642015-10-14 14:05:24 +0900912 finish_wait(ws_wait, &wait);
Li Zefan261507a02010-12-17 14:21:50 +0800913 goto again;
914 }
David Sterba6ac10a62016-04-27 02:15:15 +0200915 atomic_inc(total_ws);
Byongho Leed9187642015-10-14 14:05:24 +0900916 spin_unlock(ws_lock);
Li Zefan261507a02010-12-17 14:21:50 +0800917
David Sterbafe308532017-05-31 17:14:56 +0200918 /*
919 * Allocation helpers call vmalloc that can't use GFP_NOFS, so we have
920 * to turn it off here because we might get called from the restricted
921 * context of btrfs_compress_bio/btrfs_compress_pages
922 */
923 nofs_flag = memalloc_nofs_save();
Timofey Titovets4e439a02017-09-28 17:33:36 +0300924 if (heuristic)
925 workspace = alloc_heuristic_ws();
926 else
927 workspace = btrfs_compress_op[idx]->alloc_workspace();
David Sterbafe308532017-05-31 17:14:56 +0200928 memalloc_nofs_restore(nofs_flag);
929
Li Zefan261507a02010-12-17 14:21:50 +0800930 if (IS_ERR(workspace)) {
David Sterba6ac10a62016-04-27 02:15:15 +0200931 atomic_dec(total_ws);
Byongho Leed9187642015-10-14 14:05:24 +0900932 wake_up(ws_wait);
David Sterbae721e492016-04-27 02:41:17 +0200933
934 /*
935 * Do not return the error but go back to waiting. There's a
936 * workspace preallocated for each type and the compression
937 * time is bounded so we get to a workspace eventually. This
938 * makes our caller's life easier.
David Sterba523567162016-04-27 03:07:39 +0200939 *
940 * To prevent silent and low-probability deadlocks (when the
941 * initial preallocation fails), check if there are any
942 * workspaces at all.
David Sterbae721e492016-04-27 02:41:17 +0200943 */
David Sterba523567162016-04-27 03:07:39 +0200944 if (atomic_read(total_ws) == 0) {
945 static DEFINE_RATELIMIT_STATE(_rs,
946 /* once per minute */ 60 * HZ,
947 /* no burst */ 1);
948
949 if (__ratelimit(&_rs)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400950 pr_warn("BTRFS: no compression workspaces, low memory, retrying\n");
David Sterba523567162016-04-27 03:07:39 +0200951 }
952 }
David Sterbae721e492016-04-27 02:41:17 +0200953 goto again;
Li Zefan261507a02010-12-17 14:21:50 +0800954 }
955 return workspace;
956}
957
Timofey Titovets4e439a02017-09-28 17:33:36 +0300958static struct list_head *find_workspace(int type)
959{
960 return __find_workspace(type, false);
961}
962
Li Zefan261507a02010-12-17 14:21:50 +0800963/*
964 * put a workspace struct back on the list or free it if we have enough
965 * idle ones sitting around
966 */
Timofey Titovets4e439a02017-09-28 17:33:36 +0300967static void __free_workspace(int type, struct list_head *workspace,
968 bool heuristic)
Li Zefan261507a02010-12-17 14:21:50 +0800969{
970 int idx = type - 1;
Timofey Titovets4e439a02017-09-28 17:33:36 +0300971 struct list_head *idle_ws;
972 spinlock_t *ws_lock;
973 atomic_t *total_ws;
974 wait_queue_head_t *ws_wait;
975 int *free_ws;
976
977 if (heuristic) {
978 idle_ws = &btrfs_heuristic_ws.idle_ws;
979 ws_lock = &btrfs_heuristic_ws.ws_lock;
980 total_ws = &btrfs_heuristic_ws.total_ws;
981 ws_wait = &btrfs_heuristic_ws.ws_wait;
982 free_ws = &btrfs_heuristic_ws.free_ws;
983 } else {
984 idle_ws = &btrfs_comp_ws[idx].idle_ws;
985 ws_lock = &btrfs_comp_ws[idx].ws_lock;
986 total_ws = &btrfs_comp_ws[idx].total_ws;
987 ws_wait = &btrfs_comp_ws[idx].ws_wait;
988 free_ws = &btrfs_comp_ws[idx].free_ws;
989 }
Li Zefan261507a02010-12-17 14:21:50 +0800990
Byongho Leed9187642015-10-14 14:05:24 +0900991 spin_lock(ws_lock);
Nick Terrell26b28dc2017-06-29 10:57:26 -0700992 if (*free_ws <= num_online_cpus()) {
Byongho Leed9187642015-10-14 14:05:24 +0900993 list_add(workspace, idle_ws);
David Sterba6ac10a62016-04-27 02:15:15 +0200994 (*free_ws)++;
Byongho Leed9187642015-10-14 14:05:24 +0900995 spin_unlock(ws_lock);
Li Zefan261507a02010-12-17 14:21:50 +0800996 goto wake;
997 }
Byongho Leed9187642015-10-14 14:05:24 +0900998 spin_unlock(ws_lock);
Li Zefan261507a02010-12-17 14:21:50 +0800999
Timofey Titovets4e439a02017-09-28 17:33:36 +03001000 if (heuristic)
1001 free_heuristic_ws(workspace);
1002 else
1003 btrfs_compress_op[idx]->free_workspace(workspace);
David Sterba6ac10a62016-04-27 02:15:15 +02001004 atomic_dec(total_ws);
Li Zefan261507a02010-12-17 14:21:50 +08001005wake:
David Sterbaa83342a2015-02-16 19:36:47 +01001006 /*
1007 * Make sure counter is updated before we wake up waiters.
1008 */
Josef Bacik66657b32012-08-01 15:36:24 -04001009 smp_mb();
Byongho Leed9187642015-10-14 14:05:24 +09001010 if (waitqueue_active(ws_wait))
1011 wake_up(ws_wait);
Li Zefan261507a02010-12-17 14:21:50 +08001012}
1013
Timofey Titovets4e439a02017-09-28 17:33:36 +03001014static void free_workspace(int type, struct list_head *ws)
1015{
1016 return __free_workspace(type, ws, false);
1017}
1018
Li Zefan261507a02010-12-17 14:21:50 +08001019/*
1020 * cleanup function for module exit
1021 */
1022static void free_workspaces(void)
1023{
1024 struct list_head *workspace;
1025 int i;
1026
Timofey Titovets4e439a02017-09-28 17:33:36 +03001027 while (!list_empty(&btrfs_heuristic_ws.idle_ws)) {
1028 workspace = btrfs_heuristic_ws.idle_ws.next;
1029 list_del(workspace);
1030 free_heuristic_ws(workspace);
1031 atomic_dec(&btrfs_heuristic_ws.total_ws);
1032 }
1033
Li Zefan261507a02010-12-17 14:21:50 +08001034 for (i = 0; i < BTRFS_COMPRESS_TYPES; i++) {
Byongho Leed9187642015-10-14 14:05:24 +09001035 while (!list_empty(&btrfs_comp_ws[i].idle_ws)) {
1036 workspace = btrfs_comp_ws[i].idle_ws.next;
Li Zefan261507a02010-12-17 14:21:50 +08001037 list_del(workspace);
1038 btrfs_compress_op[i]->free_workspace(workspace);
David Sterba6ac10a62016-04-27 02:15:15 +02001039 atomic_dec(&btrfs_comp_ws[i].total_ws);
Li Zefan261507a02010-12-17 14:21:50 +08001040 }
1041 }
1042}
1043
1044/*
David Sterba38c31462017-02-14 19:04:07 +01001045 * Given an address space and start and length, compress the bytes into @pages
1046 * that are allocated on demand.
Li Zefan261507a02010-12-17 14:21:50 +08001047 *
David Sterbaf51d2b52017-09-15 17:36:57 +02001048 * @type_level is encoded algorithm and level, where level 0 means whatever
1049 * default the algorithm chooses and is opaque here;
1050 * - compression algo are 0-3
1051 * - the level are bits 4-7
1052 *
David Sterba4d3a8002017-02-14 19:04:07 +01001053 * @out_pages is an in/out parameter, holds maximum number of pages to allocate
1054 * and returns number of actually allocated pages
Li Zefan261507a02010-12-17 14:21:50 +08001055 *
David Sterba38c31462017-02-14 19:04:07 +01001056 * @total_in is used to return the number of bytes actually read. It
1057 * may be smaller than the input length if we had to exit early because we
Li Zefan261507a02010-12-17 14:21:50 +08001058 * ran out of room in the pages array or because we cross the
1059 * max_out threshold.
1060 *
David Sterba38c31462017-02-14 19:04:07 +01001061 * @total_out is an in/out parameter, must be set to the input length and will
1062 * be also used to return the total number of compressed bytes
Li Zefan261507a02010-12-17 14:21:50 +08001063 *
David Sterba38c31462017-02-14 19:04:07 +01001064 * @max_out tells us the max number of bytes that we're allowed to
Li Zefan261507a02010-12-17 14:21:50 +08001065 * stuff into pages
1066 */
David Sterbaf51d2b52017-09-15 17:36:57 +02001067int btrfs_compress_pages(unsigned int type_level, struct address_space *mapping,
David Sterba38c31462017-02-14 19:04:07 +01001068 u64 start, struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +08001069 unsigned long *out_pages,
1070 unsigned long *total_in,
David Sterbae5d74902017-02-14 19:45:05 +01001071 unsigned long *total_out)
Li Zefan261507a02010-12-17 14:21:50 +08001072{
1073 struct list_head *workspace;
1074 int ret;
David Sterbaf51d2b52017-09-15 17:36:57 +02001075 int type = type_level & 0xF;
Li Zefan261507a02010-12-17 14:21:50 +08001076
1077 workspace = find_workspace(type);
Li Zefan261507a02010-12-17 14:21:50 +08001078
David Sterbaf51d2b52017-09-15 17:36:57 +02001079 btrfs_compress_op[type - 1]->set_level(workspace, type_level);
Li Zefan261507a02010-12-17 14:21:50 +08001080 ret = btrfs_compress_op[type-1]->compress_pages(workspace, mapping,
David Sterba38c31462017-02-14 19:04:07 +01001081 start, pages,
David Sterba4d3a8002017-02-14 19:04:07 +01001082 out_pages,
David Sterbae5d74902017-02-14 19:45:05 +01001083 total_in, total_out);
Li Zefan261507a02010-12-17 14:21:50 +08001084 free_workspace(type, workspace);
1085 return ret;
1086}
1087
1088/*
1089 * pages_in is an array of pages with compressed data.
1090 *
1091 * disk_start is the starting logical offset of this array in the file
1092 *
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001093 * orig_bio contains the pages from the file that we want to decompress into
Li Zefan261507a02010-12-17 14:21:50 +08001094 *
1095 * srclen is the number of bytes in pages_in
1096 *
1097 * The basic idea is that we have a bio that was created by readpages.
1098 * The pages in the bio are for the uncompressed data, and they may not
1099 * be contiguous. They all correspond to the range of bytes covered by
1100 * the compressed extent.
1101 */
Anand Jain8140dc32017-05-26 15:44:58 +08001102static int btrfs_decompress_bio(struct compressed_bio *cb)
Li Zefan261507a02010-12-17 14:21:50 +08001103{
1104 struct list_head *workspace;
1105 int ret;
Anand Jain8140dc32017-05-26 15:44:58 +08001106 int type = cb->compress_type;
Li Zefan261507a02010-12-17 14:21:50 +08001107
1108 workspace = find_workspace(type);
Anand Jaine1ddce72017-05-26 15:44:59 +08001109 ret = btrfs_compress_op[type - 1]->decompress_bio(workspace, cb);
Li Zefan261507a02010-12-17 14:21:50 +08001110 free_workspace(type, workspace);
Anand Jaine1ddce72017-05-26 15:44:59 +08001111
Li Zefan261507a02010-12-17 14:21:50 +08001112 return ret;
1113}
1114
1115/*
1116 * a less complex decompression routine. Our compressed data fits in a
1117 * single page, and we want to read a single page out of it.
1118 * start_byte tells us the offset into the compressed data we're interested in
1119 */
1120int btrfs_decompress(int type, unsigned char *data_in, struct page *dest_page,
1121 unsigned long start_byte, size_t srclen, size_t destlen)
1122{
1123 struct list_head *workspace;
1124 int ret;
1125
1126 workspace = find_workspace(type);
Li Zefan261507a02010-12-17 14:21:50 +08001127
1128 ret = btrfs_compress_op[type-1]->decompress(workspace, data_in,
1129 dest_page, start_byte,
1130 srclen, destlen);
1131
1132 free_workspace(type, workspace);
1133 return ret;
1134}
1135
Alexey Charkov8e4eef72011-02-02 21:15:35 +00001136void btrfs_exit_compress(void)
Li Zefan261507a02010-12-17 14:21:50 +08001137{
1138 free_workspaces();
1139}
Li Zefan3a39c182010-11-08 15:22:19 +08001140
1141/*
1142 * Copy uncompressed data from working buffer to pages.
1143 *
1144 * buf_start is the byte offset we're of the start of our workspace buffer.
1145 *
1146 * total_out is the last byte of the buffer
1147 */
David Sterba14a33572017-02-14 17:58:04 +01001148int btrfs_decompress_buf2page(const char *buf, unsigned long buf_start,
Li Zefan3a39c182010-11-08 15:22:19 +08001149 unsigned long total_out, u64 disk_start,
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001150 struct bio *bio)
Li Zefan3a39c182010-11-08 15:22:19 +08001151{
1152 unsigned long buf_offset;
1153 unsigned long current_buf_start;
1154 unsigned long start_byte;
Omar Sandoval6e78b3f2017-02-10 15:03:35 -08001155 unsigned long prev_start_byte;
Li Zefan3a39c182010-11-08 15:22:19 +08001156 unsigned long working_bytes = total_out - buf_start;
1157 unsigned long bytes;
1158 char *kaddr;
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001159 struct bio_vec bvec = bio_iter_iovec(bio, bio->bi_iter);
Li Zefan3a39c182010-11-08 15:22:19 +08001160
1161 /*
1162 * start byte is the first byte of the page we're currently
1163 * copying into relative to the start of the compressed data.
1164 */
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001165 start_byte = page_offset(bvec.bv_page) - disk_start;
Li Zefan3a39c182010-11-08 15:22:19 +08001166
1167 /* we haven't yet hit data corresponding to this page */
1168 if (total_out <= start_byte)
1169 return 1;
1170
1171 /*
1172 * the start of the data we care about is offset into
1173 * the middle of our working buffer
1174 */
1175 if (total_out > start_byte && buf_start < start_byte) {
1176 buf_offset = start_byte - buf_start;
1177 working_bytes -= buf_offset;
1178 } else {
1179 buf_offset = 0;
1180 }
1181 current_buf_start = buf_start;
1182
1183 /* copy bytes from the working buffer into the pages */
1184 while (working_bytes > 0) {
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001185 bytes = min_t(unsigned long, bvec.bv_len,
1186 PAGE_SIZE - buf_offset);
Li Zefan3a39c182010-11-08 15:22:19 +08001187 bytes = min(bytes, working_bytes);
Li Zefan3a39c182010-11-08 15:22:19 +08001188
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001189 kaddr = kmap_atomic(bvec.bv_page);
1190 memcpy(kaddr + bvec.bv_offset, buf + buf_offset, bytes);
1191 kunmap_atomic(kaddr);
1192 flush_dcache_page(bvec.bv_page);
1193
Li Zefan3a39c182010-11-08 15:22:19 +08001194 buf_offset += bytes;
1195 working_bytes -= bytes;
1196 current_buf_start += bytes;
1197
1198 /* check if we need to pick another page */
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001199 bio_advance(bio, bytes);
1200 if (!bio->bi_iter.bi_size)
1201 return 0;
1202 bvec = bio_iter_iovec(bio, bio->bi_iter);
Omar Sandoval6e78b3f2017-02-10 15:03:35 -08001203 prev_start_byte = start_byte;
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001204 start_byte = page_offset(bvec.bv_page) - disk_start;
Li Zefan3a39c182010-11-08 15:22:19 +08001205
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001206 /*
Omar Sandoval6e78b3f2017-02-10 15:03:35 -08001207 * We need to make sure we're only adjusting
1208 * our offset into compression working buffer when
1209 * we're switching pages. Otherwise we can incorrectly
1210 * keep copying when we were actually done.
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001211 */
Omar Sandoval6e78b3f2017-02-10 15:03:35 -08001212 if (start_byte != prev_start_byte) {
1213 /*
1214 * make sure our new page is covered by this
1215 * working buffer
1216 */
1217 if (total_out <= start_byte)
1218 return 1;
Li Zefan3a39c182010-11-08 15:22:19 +08001219
Omar Sandoval6e78b3f2017-02-10 15:03:35 -08001220 /*
1221 * the next page in the biovec might not be adjacent
1222 * to the last page, but it might still be found
1223 * inside this working buffer. bump our offset pointer
1224 */
1225 if (total_out > start_byte &&
1226 current_buf_start < start_byte) {
1227 buf_offset = start_byte - buf_start;
1228 working_bytes = total_out - start_byte;
1229 current_buf_start = buf_start + buf_offset;
1230 }
Li Zefan3a39c182010-11-08 15:22:19 +08001231 }
1232 }
1233
1234 return 1;
1235}
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +03001236
Timofey Titovets19562432017-10-08 16:11:59 +03001237/*
1238 * Shannon Entropy calculation
1239 *
1240 * Pure byte distribution analysis fails to determine compressiability of data.
1241 * Try calculating entropy to estimate the average minimum number of bits
1242 * needed to encode the sampled data.
1243 *
1244 * For convenience, return the percentage of needed bits, instead of amount of
1245 * bits directly.
1246 *
1247 * @ENTROPY_LVL_ACEPTABLE - below that threshold, sample has low byte entropy
1248 * and can be compressible with high probability
1249 *
1250 * @ENTROPY_LVL_HIGH - data are not compressible with high probability
1251 *
1252 * Use of ilog2() decreases precision, we lower the LVL to 5 to compensate.
1253 */
1254#define ENTROPY_LVL_ACEPTABLE (65)
1255#define ENTROPY_LVL_HIGH (80)
1256
1257/*
1258 * For increasead precision in shannon_entropy calculation,
1259 * let's do pow(n, M) to save more digits after comma:
1260 *
1261 * - maximum int bit length is 64
1262 * - ilog2(MAX_SAMPLE_SIZE) -> 13
1263 * - 13 * 4 = 52 < 64 -> M = 4
1264 *
1265 * So use pow(n, 4).
1266 */
1267static inline u32 ilog2_w(u64 n)
1268{
1269 return ilog2(n * n * n * n);
1270}
1271
1272static u32 shannon_entropy(struct heuristic_ws *ws)
1273{
1274 const u32 entropy_max = 8 * ilog2_w(2);
1275 u32 entropy_sum = 0;
1276 u32 p, p_base, sz_base;
1277 u32 i;
1278
1279 sz_base = ilog2_w(ws->sample_size);
1280 for (i = 0; i < BUCKET_SIZE && ws->bucket[i].count > 0; i++) {
1281 p = ws->bucket[i].count;
1282 p_base = ilog2_w(p);
1283 entropy_sum += p * (sz_base - p_base);
1284 }
1285
1286 entropy_sum /= ws->sample_size;
1287 return entropy_sum * 100 / entropy_max;
1288}
1289
Timofey Titovets440c8402017-12-04 00:30:33 +03001290#define RADIX_BASE 4U
1291#define COUNTERS_SIZE (1U << RADIX_BASE)
Timofey Titovets858177d2017-09-28 17:33:41 +03001292
Timofey Titovets440c8402017-12-04 00:30:33 +03001293static u8 get4bits(u64 num, int shift) {
1294 u8 low4bits;
1295
1296 num >>= shift;
1297 /* Reverse order */
1298 low4bits = (COUNTERS_SIZE - 1) - (num % COUNTERS_SIZE);
1299 return low4bits;
1300}
1301
Timofey Titovets440c8402017-12-04 00:30:33 +03001302/*
1303 * Use 4 bits as radix base
1304 * Use 16 u32 counters for calculating new possition in buf array
1305 *
1306 * @array - array that will be sorted
1307 * @array_buf - buffer array to store sorting results
1308 * must be equal in size to @array
1309 * @num - array size
Timofey Titovets440c8402017-12-04 00:30:33 +03001310 */
David Sterba23ae8c62017-12-12 20:35:02 +01001311static void radix_sort(struct bucket_item *array, struct bucket_item *array_buf,
David Sterba36243c92017-12-12 20:35:02 +01001312 int num)
Timofey Titovets440c8402017-12-04 00:30:33 +03001313{
1314 u64 max_num;
1315 u64 buf_num;
1316 u32 counters[COUNTERS_SIZE];
1317 u32 new_addr;
1318 u32 addr;
1319 int bitlen;
1320 int shift;
1321 int i;
1322
1323 /*
1324 * Try avoid useless loop iterations for small numbers stored in big
1325 * counters. Example: 48 33 4 ... in 64bit array
1326 */
David Sterba23ae8c62017-12-12 20:35:02 +01001327 max_num = array[0].count;
Timofey Titovets440c8402017-12-04 00:30:33 +03001328 for (i = 1; i < num; i++) {
David Sterba23ae8c62017-12-12 20:35:02 +01001329 buf_num = array[i].count;
Timofey Titovets440c8402017-12-04 00:30:33 +03001330 if (buf_num > max_num)
1331 max_num = buf_num;
1332 }
1333
1334 buf_num = ilog2(max_num);
1335 bitlen = ALIGN(buf_num, RADIX_BASE * 2);
1336
1337 shift = 0;
1338 while (shift < bitlen) {
1339 memset(counters, 0, sizeof(counters));
1340
1341 for (i = 0; i < num; i++) {
David Sterba23ae8c62017-12-12 20:35:02 +01001342 buf_num = array[i].count;
Timofey Titovets440c8402017-12-04 00:30:33 +03001343 addr = get4bits(buf_num, shift);
1344 counters[addr]++;
1345 }
1346
1347 for (i = 1; i < COUNTERS_SIZE; i++)
1348 counters[i] += counters[i - 1];
1349
1350 for (i = num - 1; i >= 0; i--) {
David Sterba23ae8c62017-12-12 20:35:02 +01001351 buf_num = array[i].count;
Timofey Titovets440c8402017-12-04 00:30:33 +03001352 addr = get4bits(buf_num, shift);
1353 counters[addr]--;
1354 new_addr = counters[addr];
David Sterba7add17b2017-12-12 20:35:02 +01001355 array_buf[new_addr] = array[i];
Timofey Titovets440c8402017-12-04 00:30:33 +03001356 }
1357
1358 shift += RADIX_BASE;
1359
1360 /*
1361 * Normal radix expects to move data from a temporary array, to
1362 * the main one. But that requires some CPU time. Avoid that
1363 * by doing another sort iteration to original array instead of
1364 * memcpy()
1365 */
1366 memset(counters, 0, sizeof(counters));
1367
1368 for (i = 0; i < num; i ++) {
David Sterba23ae8c62017-12-12 20:35:02 +01001369 buf_num = array_buf[i].count;
Timofey Titovets440c8402017-12-04 00:30:33 +03001370 addr = get4bits(buf_num, shift);
1371 counters[addr]++;
1372 }
1373
1374 for (i = 1; i < COUNTERS_SIZE; i++)
1375 counters[i] += counters[i - 1];
1376
1377 for (i = num - 1; i >= 0; i--) {
David Sterba23ae8c62017-12-12 20:35:02 +01001378 buf_num = array_buf[i].count;
Timofey Titovets440c8402017-12-04 00:30:33 +03001379 addr = get4bits(buf_num, shift);
1380 counters[addr]--;
1381 new_addr = counters[addr];
David Sterba7add17b2017-12-12 20:35:02 +01001382 array[new_addr] = array_buf[i];
Timofey Titovets440c8402017-12-04 00:30:33 +03001383 }
1384
1385 shift += RADIX_BASE;
1386 }
Timofey Titovets858177d2017-09-28 17:33:41 +03001387}
1388
1389/*
1390 * Size of the core byte set - how many bytes cover 90% of the sample
1391 *
1392 * There are several types of structured binary data that use nearly all byte
1393 * values. The distribution can be uniform and counts in all buckets will be
1394 * nearly the same (eg. encrypted data). Unlikely to be compressible.
1395 *
1396 * Other possibility is normal (Gaussian) distribution, where the data could
1397 * be potentially compressible, but we have to take a few more steps to decide
1398 * how much.
1399 *
1400 * @BYTE_CORE_SET_LOW - main part of byte values repeated frequently,
1401 * compression algo can easy fix that
1402 * @BYTE_CORE_SET_HIGH - data have uniform distribution and with high
1403 * probability is not compressible
1404 */
1405#define BYTE_CORE_SET_LOW (64)
1406#define BYTE_CORE_SET_HIGH (200)
1407
1408static int byte_core_set_size(struct heuristic_ws *ws)
1409{
1410 u32 i;
1411 u32 coreset_sum = 0;
1412 const u32 core_set_threshold = ws->sample_size * 90 / 100;
1413 struct bucket_item *bucket = ws->bucket;
1414
1415 /* Sort in reverse order */
David Sterba36243c92017-12-12 20:35:02 +01001416 radix_sort(ws->bucket, ws->bucket_b, BUCKET_SIZE);
Timofey Titovets858177d2017-09-28 17:33:41 +03001417
1418 for (i = 0; i < BYTE_CORE_SET_LOW; i++)
1419 coreset_sum += bucket[i].count;
1420
1421 if (coreset_sum > core_set_threshold)
1422 return i;
1423
1424 for (; i < BYTE_CORE_SET_HIGH && bucket[i].count > 0; i++) {
1425 coreset_sum += bucket[i].count;
1426 if (coreset_sum > core_set_threshold)
1427 break;
1428 }
1429
1430 return i;
1431}
1432
Timofey Titovetsa288e922017-09-28 17:33:40 +03001433/*
1434 * Count byte values in buckets.
1435 * This heuristic can detect textual data (configs, xml, json, html, etc).
1436 * Because in most text-like data byte set is restricted to limited number of
1437 * possible characters, and that restriction in most cases makes data easy to
1438 * compress.
1439 *
1440 * @BYTE_SET_THRESHOLD - consider all data within this byte set size:
1441 * less - compressible
1442 * more - need additional analysis
1443 */
1444#define BYTE_SET_THRESHOLD (64)
1445
1446static u32 byte_set_size(const struct heuristic_ws *ws)
1447{
1448 u32 i;
1449 u32 byte_set_size = 0;
1450
1451 for (i = 0; i < BYTE_SET_THRESHOLD; i++) {
1452 if (ws->bucket[i].count > 0)
1453 byte_set_size++;
1454 }
1455
1456 /*
1457 * Continue collecting count of byte values in buckets. If the byte
1458 * set size is bigger then the threshold, it's pointless to continue,
1459 * the detection technique would fail for this type of data.
1460 */
1461 for (; i < BUCKET_SIZE; i++) {
1462 if (ws->bucket[i].count > 0) {
1463 byte_set_size++;
1464 if (byte_set_size > BYTE_SET_THRESHOLD)
1465 return byte_set_size;
1466 }
1467 }
1468
1469 return byte_set_size;
1470}
1471
Timofey Titovets1fe4f6f2017-09-28 17:33:39 +03001472static bool sample_repeated_patterns(struct heuristic_ws *ws)
1473{
1474 const u32 half_of_sample = ws->sample_size / 2;
1475 const u8 *data = ws->sample;
1476
1477 return memcmp(&data[0], &data[half_of_sample], half_of_sample) == 0;
1478}
1479
Timofey Titovetsa440d482017-09-28 17:33:38 +03001480static void heuristic_collect_sample(struct inode *inode, u64 start, u64 end,
1481 struct heuristic_ws *ws)
1482{
1483 struct page *page;
1484 u64 index, index_end;
1485 u32 i, curr_sample_pos;
1486 u8 *in_data;
1487
1488 /*
1489 * Compression handles the input data by chunks of 128KiB
1490 * (defined by BTRFS_MAX_UNCOMPRESSED)
1491 *
1492 * We do the same for the heuristic and loop over the whole range.
1493 *
1494 * MAX_SAMPLE_SIZE - calculated under assumption that heuristic will
1495 * process no more than BTRFS_MAX_UNCOMPRESSED at a time.
1496 */
1497 if (end - start > BTRFS_MAX_UNCOMPRESSED)
1498 end = start + BTRFS_MAX_UNCOMPRESSED;
1499
1500 index = start >> PAGE_SHIFT;
1501 index_end = end >> PAGE_SHIFT;
1502
1503 /* Don't miss unaligned end */
1504 if (!IS_ALIGNED(end, PAGE_SIZE))
1505 index_end++;
1506
1507 curr_sample_pos = 0;
1508 while (index < index_end) {
1509 page = find_get_page(inode->i_mapping, index);
1510 in_data = kmap(page);
1511 /* Handle case where the start is not aligned to PAGE_SIZE */
1512 i = start % PAGE_SIZE;
1513 while (i < PAGE_SIZE - SAMPLING_READ_SIZE) {
1514 /* Don't sample any garbage from the last page */
1515 if (start > end - SAMPLING_READ_SIZE)
1516 break;
1517 memcpy(&ws->sample[curr_sample_pos], &in_data[i],
1518 SAMPLING_READ_SIZE);
1519 i += SAMPLING_INTERVAL;
1520 start += SAMPLING_INTERVAL;
1521 curr_sample_pos += SAMPLING_READ_SIZE;
1522 }
1523 kunmap(page);
1524 put_page(page);
1525
1526 index++;
1527 }
1528
1529 ws->sample_size = curr_sample_pos;
1530}
1531
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +03001532/*
1533 * Compression heuristic.
1534 *
1535 * For now is's a naive and optimistic 'return true', we'll extend the logic to
1536 * quickly (compared to direct compression) detect data characteristics
1537 * (compressible/uncompressible) to avoid wasting CPU time on uncompressible
1538 * data.
1539 *
1540 * The following types of analysis can be performed:
1541 * - detect mostly zero data
1542 * - detect data with low "byte set" size (text, etc)
1543 * - detect data with low/high "core byte" set
1544 *
1545 * Return non-zero if the compression should be done, 0 otherwise.
1546 */
1547int btrfs_compress_heuristic(struct inode *inode, u64 start, u64 end)
1548{
Timofey Titovets4e439a02017-09-28 17:33:36 +03001549 struct list_head *ws_list = __find_workspace(0, true);
1550 struct heuristic_ws *ws;
Timofey Titovetsa440d482017-09-28 17:33:38 +03001551 u32 i;
1552 u8 byte;
Timofey Titovets19562432017-10-08 16:11:59 +03001553 int ret = 0;
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +03001554
Timofey Titovets4e439a02017-09-28 17:33:36 +03001555 ws = list_entry(ws_list, struct heuristic_ws, list);
1556
Timofey Titovetsa440d482017-09-28 17:33:38 +03001557 heuristic_collect_sample(inode, start, end, ws);
1558
Timofey Titovets1fe4f6f2017-09-28 17:33:39 +03001559 if (sample_repeated_patterns(ws)) {
1560 ret = 1;
1561 goto out;
1562 }
1563
Timofey Titovetsa440d482017-09-28 17:33:38 +03001564 memset(ws->bucket, 0, sizeof(*ws->bucket)*BUCKET_SIZE);
1565
1566 for (i = 0; i < ws->sample_size; i++) {
1567 byte = ws->sample[i];
1568 ws->bucket[byte].count++;
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +03001569 }
1570
Timofey Titovetsa288e922017-09-28 17:33:40 +03001571 i = byte_set_size(ws);
1572 if (i < BYTE_SET_THRESHOLD) {
1573 ret = 2;
1574 goto out;
1575 }
1576
Timofey Titovets858177d2017-09-28 17:33:41 +03001577 i = byte_core_set_size(ws);
1578 if (i <= BYTE_CORE_SET_LOW) {
1579 ret = 3;
1580 goto out;
1581 }
1582
1583 if (i >= BYTE_CORE_SET_HIGH) {
1584 ret = 0;
1585 goto out;
1586 }
1587
Timofey Titovets19562432017-10-08 16:11:59 +03001588 i = shannon_entropy(ws);
1589 if (i <= ENTROPY_LVL_ACEPTABLE) {
1590 ret = 4;
1591 goto out;
1592 }
1593
1594 /*
1595 * For the levels below ENTROPY_LVL_HIGH, additional analysis would be
1596 * needed to give green light to compression.
1597 *
1598 * For now just assume that compression at that level is not worth the
1599 * resources because:
1600 *
1601 * 1. it is possible to defrag the data later
1602 *
1603 * 2. the data would turn out to be hardly compressible, eg. 150 byte
1604 * values, every bucket has counter at level ~54. The heuristic would
1605 * be confused. This can happen when data have some internal repeated
1606 * patterns like "abbacbbc...". This can be detected by analyzing
1607 * pairs of bytes, which is too costly.
1608 */
1609 if (i < ENTROPY_LVL_HIGH) {
1610 ret = 5;
1611 goto out;
1612 } else {
1613 ret = 0;
1614 goto out;
1615 }
1616
Timofey Titovets1fe4f6f2017-09-28 17:33:39 +03001617out:
Timofey Titovets4e439a02017-09-28 17:33:36 +03001618 __free_workspace(0, ws_list, true);
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +03001619 return ret;
1620}
David Sterbaf51d2b52017-09-15 17:36:57 +02001621
1622unsigned int btrfs_compress_str2level(const char *str)
1623{
1624 if (strncmp(str, "zlib", 4) != 0)
1625 return 0;
1626
Adam Borowskifa4d8852017-09-15 17:36:58 +02001627 /* Accepted form: zlib:1 up to zlib:9 and nothing left after the number */
1628 if (str[4] == ':' && '1' <= str[5] && str[5] <= '9' && str[6] == 0)
1629 return str[5] - '0';
David Sterbaf51d2b52017-09-15 17:36:57 +02001630
Qu Wenruoeae8d822017-11-06 10:43:18 +08001631 return BTRFS_ZLIB_DEFAULT_LEVEL;
David Sterbaf51d2b52017-09-15 17:36:57 +02001632}