blob: ce57fea2a66f281f346aa919a5cc99690164bac4 [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>
Chris Masonc8b97812008-10-29 14:49:59 -040035#include "ctree.h"
36#include "disk-io.h"
37#include "transaction.h"
38#include "btrfs_inode.h"
39#include "volumes.h"
40#include "ordered-data.h"
Chris Masonc8b97812008-10-29 14:49:59 -040041#include "compression.h"
42#include "extent_io.h"
43#include "extent_map.h"
44
45struct compressed_bio {
46 /* number of bios pending for this compressed extent */
Elena Reshetovaa50299a2017-03-03 10:55:20 +020047 refcount_t pending_bios;
Chris Masonc8b97812008-10-29 14:49:59 -040048
49 /* the pages with the compressed data on them */
50 struct page **compressed_pages;
51
52 /* inode that owns this data */
53 struct inode *inode;
54
55 /* starting offset in the inode for our pages */
56 u64 start;
57
58 /* number of bytes in the inode we're working on */
59 unsigned long len;
60
61 /* number of bytes on disk */
62 unsigned long compressed_len;
63
Li Zefan261507a02010-12-17 14:21:50 +080064 /* the compression algorithm for this bio */
65 int compress_type;
66
Chris Masonc8b97812008-10-29 14:49:59 -040067 /* number of compressed pages in the array */
68 unsigned long nr_pages;
69
70 /* IO errors */
71 int errors;
Chris Masond20f7042008-12-08 16:58:54 -050072 int mirror_num;
Chris Masonc8b97812008-10-29 14:49:59 -040073
74 /* for reads, this is the bio we are copying the data into */
75 struct bio *orig_bio;
Chris Masond20f7042008-12-08 16:58:54 -050076
77 /*
78 * the start of a variable length array of checksums only
79 * used by reads
80 */
81 u32 sums;
Chris Masonc8b97812008-10-29 14:49:59 -040082};
83
Anand Jain8140dc32017-05-26 15:44:58 +080084static int btrfs_decompress_bio(struct compressed_bio *cb);
Eric Sandeen48a3b632013-04-25 20:41:01 +000085
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040086static inline int compressed_bio_size(struct btrfs_fs_info *fs_info,
Chris Masond20f7042008-12-08 16:58:54 -050087 unsigned long disk_size)
88{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040089 u16 csum_size = btrfs_super_csum_size(fs_info->super_copy);
David Sterba6c417612011-04-13 15:41:04 +020090
Chris Masond20f7042008-12-08 16:58:54 -050091 return sizeof(struct compressed_bio) +
Jeff Mahoney0b246af2016-06-22 18:54:23 -040092 (DIV_ROUND_UP(disk_size, fs_info->sectorsize)) * csum_size;
Chris Masond20f7042008-12-08 16:58:54 -050093}
94
Chris Masonc8b97812008-10-29 14:49:59 -040095static struct bio *compressed_bio_alloc(struct block_device *bdev,
96 u64 first_byte, gfp_t gfp_flags)
97{
Kent Overstreetb54ffb72015-05-19 14:31:01 +020098 return btrfs_bio_alloc(bdev, first_byte >> 9, BIO_MAX_PAGES, gfp_flags);
Chris Masonc8b97812008-10-29 14:49:59 -040099}
100
Nikolay Borisovf898ac62017-02-20 13:50:54 +0200101static int check_compressed_csum(struct btrfs_inode *inode,
Chris Masond20f7042008-12-08 16:58:54 -0500102 struct compressed_bio *cb,
103 u64 disk_start)
104{
105 int ret;
Chris Masond20f7042008-12-08 16:58:54 -0500106 struct page *page;
107 unsigned long i;
108 char *kaddr;
109 u32 csum;
110 u32 *cb_sum = &cb->sums;
111
Nikolay Borisovf898ac62017-02-20 13:50:54 +0200112 if (inode->flags & BTRFS_INODE_NODATASUM)
Chris Masond20f7042008-12-08 16:58:54 -0500113 return 0;
114
115 for (i = 0; i < cb->nr_pages; i++) {
116 page = cb->compressed_pages[i];
117 csum = ~(u32)0;
118
Cong Wang7ac687d2011-11-25 23:14:28 +0800119 kaddr = kmap_atomic(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300120 csum = btrfs_csum_data(kaddr, csum, PAGE_SIZE);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +0100121 btrfs_csum_final(csum, (u8 *)&csum);
Cong Wang7ac687d2011-11-25 23:14:28 +0800122 kunmap_atomic(kaddr);
Chris Masond20f7042008-12-08 16:58:54 -0500123
124 if (csum != *cb_sum) {
Nikolay Borisovf898ac62017-02-20 13:50:54 +0200125 btrfs_print_data_csum_error(inode, disk_start, csum,
Nikolay Borisov0970a222017-02-20 13:50:53 +0200126 *cb_sum, cb->mirror_num);
Chris Masond20f7042008-12-08 16:58:54 -0500127 ret = -EIO;
128 goto fail;
129 }
130 cb_sum++;
131
132 }
133 ret = 0;
134fail:
135 return ret;
136}
137
Chris Masonc8b97812008-10-29 14:49:59 -0400138/* when we finish reading compressed pages from the disk, we
139 * decompress them and then run the bio end_io routines on the
140 * decompressed pages (in the inode address space).
141 *
142 * This allows the checksumming and other IO error handling routines
143 * to work normally
144 *
145 * The compressed pages are freed here, and it must be run
146 * in process context
147 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200148static void end_compressed_bio_read(struct bio *bio)
Chris Masonc8b97812008-10-29 14:49:59 -0400149{
Chris Masonc8b97812008-10-29 14:49:59 -0400150 struct compressed_bio *cb = bio->bi_private;
151 struct inode *inode;
152 struct page *page;
153 unsigned long index;
154 int ret;
155
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200156 if (bio->bi_error)
Chris Masonc8b97812008-10-29 14:49:59 -0400157 cb->errors = 1;
158
159 /* if there are more bios still pending for this compressed
160 * extent, just exit
161 */
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200162 if (!refcount_dec_and_test(&cb->pending_bios))
Chris Masonc8b97812008-10-29 14:49:59 -0400163 goto out;
164
Chris Masond20f7042008-12-08 16:58:54 -0500165 inode = cb->inode;
Nikolay Borisovf898ac62017-02-20 13:50:54 +0200166 ret = check_compressed_csum(BTRFS_I(inode), cb,
Kent Overstreet4f024f32013-10-11 15:44:27 -0700167 (u64)bio->bi_iter.bi_sector << 9);
Chris Masond20f7042008-12-08 16:58:54 -0500168 if (ret)
169 goto csum_failed;
170
Chris Masonc8b97812008-10-29 14:49:59 -0400171 /* ok, we're the last bio for this extent, lets start
172 * the decompression.
173 */
Anand Jain8140dc32017-05-26 15:44:58 +0800174 ret = btrfs_decompress_bio(cb);
175
Chris Masond20f7042008-12-08 16:58:54 -0500176csum_failed:
Chris Masonc8b97812008-10-29 14:49:59 -0400177 if (ret)
178 cb->errors = 1;
179
180 /* release the compressed pages */
181 index = 0;
182 for (index = 0; index < cb->nr_pages; index++) {
183 page = cb->compressed_pages[index];
184 page->mapping = NULL;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300185 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400186 }
187
188 /* do io completion on the original bio */
Chris Mason771ed682008-11-06 22:02:51 -0500189 if (cb->errors) {
Chris Masonc8b97812008-10-29 14:49:59 -0400190 bio_io_error(cb->orig_bio);
Chris Masond20f7042008-12-08 16:58:54 -0500191 } else {
Kent Overstreet2c30c712013-11-07 12:20:26 -0800192 int i;
193 struct bio_vec *bvec;
Chris Masond20f7042008-12-08 16:58:54 -0500194
195 /*
196 * we have verified the checksum already, set page
197 * checked so the end_io handlers know about it
198 */
Kent Overstreet2c30c712013-11-07 12:20:26 -0800199 bio_for_each_segment_all(bvec, cb->orig_bio, i)
Chris Masond20f7042008-12-08 16:58:54 -0500200 SetPageChecked(bvec->bv_page);
Kent Overstreet2c30c712013-11-07 12:20:26 -0800201
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200202 bio_endio(cb->orig_bio);
Chris Masond20f7042008-12-08 16:58:54 -0500203 }
Chris Masonc8b97812008-10-29 14:49:59 -0400204
205 /* finally free the cb struct */
206 kfree(cb->compressed_pages);
207 kfree(cb);
208out:
209 bio_put(bio);
210}
211
212/*
213 * Clear the writeback bits on all of the file
214 * pages for a compressed write
215 */
Filipe Manana7bdcefc2014-10-07 01:48:26 +0100216static noinline void end_compressed_writeback(struct inode *inode,
217 const struct compressed_bio *cb)
Chris Masonc8b97812008-10-29 14:49:59 -0400218{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300219 unsigned long index = cb->start >> PAGE_SHIFT;
220 unsigned long end_index = (cb->start + cb->len - 1) >> PAGE_SHIFT;
Chris Masonc8b97812008-10-29 14:49:59 -0400221 struct page *pages[16];
222 unsigned long nr_pages = end_index - index + 1;
223 int i;
224 int ret;
225
Filipe Manana7bdcefc2014-10-07 01:48:26 +0100226 if (cb->errors)
227 mapping_set_error(inode->i_mapping, -EIO);
228
Chris Masond3977122009-01-05 21:25:51 -0500229 while (nr_pages > 0) {
Chris Masonc8b97812008-10-29 14:49:59 -0400230 ret = find_get_pages_contig(inode->i_mapping, index,
Chris Mason5b050f02008-11-11 09:34:41 -0500231 min_t(unsigned long,
232 nr_pages, ARRAY_SIZE(pages)), pages);
Chris Masonc8b97812008-10-29 14:49:59 -0400233 if (ret == 0) {
234 nr_pages -= 1;
235 index += 1;
236 continue;
237 }
238 for (i = 0; i < ret; i++) {
Filipe Manana7bdcefc2014-10-07 01:48:26 +0100239 if (cb->errors)
240 SetPageError(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400241 end_page_writeback(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300242 put_page(pages[i]);
Chris Masonc8b97812008-10-29 14:49:59 -0400243 }
244 nr_pages -= ret;
245 index += ret;
246 }
247 /* the inode may be gone now */
Chris Masonc8b97812008-10-29 14:49:59 -0400248}
249
250/*
251 * do the cleanup once all the compressed pages hit the disk.
252 * This will clear writeback on the file pages and free the compressed
253 * pages.
254 *
255 * This also calls the writeback end hooks for the file pages so that
256 * metadata and checksums can be updated in the file.
257 */
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200258static void end_compressed_bio_write(struct bio *bio)
Chris Masonc8b97812008-10-29 14:49:59 -0400259{
260 struct extent_io_tree *tree;
261 struct compressed_bio *cb = bio->bi_private;
262 struct inode *inode;
263 struct page *page;
264 unsigned long index;
265
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200266 if (bio->bi_error)
Chris Masonc8b97812008-10-29 14:49:59 -0400267 cb->errors = 1;
268
269 /* if there are more bios still pending for this compressed
270 * extent, just exit
271 */
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200272 if (!refcount_dec_and_test(&cb->pending_bios))
Chris Masonc8b97812008-10-29 14:49:59 -0400273 goto out;
274
275 /* ok, we're the last bio for this extent, step one is to
276 * call back into the FS and do all the end_io operations
277 */
278 inode = cb->inode;
279 tree = &BTRFS_I(inode)->io_tree;
Chris Mason70b99e62008-10-31 12:46:39 -0400280 cb->compressed_pages[0]->mapping = cb->inode->i_mapping;
Chris Masonc8b97812008-10-29 14:49:59 -0400281 tree->ops->writepage_end_io_hook(cb->compressed_pages[0],
282 cb->start,
283 cb->start + cb->len - 1,
Filipe Manana7bdcefc2014-10-07 01:48:26 +0100284 NULL,
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200285 bio->bi_error ? 0 : 1);
Chris Mason70b99e62008-10-31 12:46:39 -0400286 cb->compressed_pages[0]->mapping = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -0400287
Filipe Manana7bdcefc2014-10-07 01:48:26 +0100288 end_compressed_writeback(inode, cb);
Chris Masonc8b97812008-10-29 14:49:59 -0400289 /* note, our inode could be gone now */
290
291 /*
292 * release the compressed pages, these came from alloc_page and
293 * are not attached to the inode at all
294 */
295 index = 0;
296 for (index = 0; index < cb->nr_pages; index++) {
297 page = cb->compressed_pages[index];
298 page->mapping = NULL;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300299 put_page(page);
Chris Masonc8b97812008-10-29 14:49:59 -0400300 }
301
302 /* finally free the cb struct */
303 kfree(cb->compressed_pages);
304 kfree(cb);
305out:
306 bio_put(bio);
307}
308
309/*
310 * worker function to build and submit bios for previously compressed pages.
311 * The corresponding pages in the inode should be marked for writeback
312 * and the compressed pages should have a reference on them for dropping
313 * when the IO is complete.
314 *
315 * This also checksums the file bytes and gets things ready for
316 * the end io hooks.
317 */
318int btrfs_submit_compressed_write(struct inode *inode, u64 start,
319 unsigned long len, u64 disk_start,
320 unsigned long compressed_len,
321 struct page **compressed_pages,
322 unsigned long nr_pages)
323{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400324 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonc8b97812008-10-29 14:49:59 -0400325 struct bio *bio = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -0400326 struct compressed_bio *cb;
327 unsigned long bytes_left;
328 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
David Sterba306e16c2011-04-19 14:29:38 +0200329 int pg_index = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400330 struct page *page;
331 u64 first_byte = disk_start;
332 struct block_device *bdev;
333 int ret;
Li Zefane55179b2011-07-14 03:16:47 +0000334 int skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
Chris Masonc8b97812008-10-29 14:49:59 -0400335
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300336 WARN_ON(start & ((u64)PAGE_SIZE - 1));
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400337 cb = kmalloc(compressed_bio_size(fs_info, compressed_len), GFP_NOFS);
Yoshinori Sanodac97e52011-02-15 12:01:42 +0000338 if (!cb)
339 return -ENOMEM;
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200340 refcount_set(&cb->pending_bios, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400341 cb->errors = 0;
342 cb->inode = inode;
343 cb->start = start;
344 cb->len = len;
Chris Masond20f7042008-12-08 16:58:54 -0500345 cb->mirror_num = 0;
Chris Masonc8b97812008-10-29 14:49:59 -0400346 cb->compressed_pages = compressed_pages;
347 cb->compressed_len = compressed_len;
348 cb->orig_bio = NULL;
349 cb->nr_pages = nr_pages;
350
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400351 bdev = fs_info->fs_devices->latest_bdev;
Chris Masonc8b97812008-10-29 14:49:59 -0400352
Chris Masonc8b97812008-10-29 14:49:59 -0400353 bio = compressed_bio_alloc(bdev, first_byte, GFP_NOFS);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530354 if (!bio) {
Yoshinori Sanodac97e52011-02-15 12:01:42 +0000355 kfree(cb);
356 return -ENOMEM;
357 }
Mike Christie37226b22016-06-05 14:31:52 -0500358 bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400359 bio->bi_private = cb;
360 bio->bi_end_io = end_compressed_bio_write;
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200361 refcount_set(&cb->pending_bios, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400362
363 /* create and submit bios for the compressed pages */
364 bytes_left = compressed_len;
David Sterba306e16c2011-04-19 14:29:38 +0200365 for (pg_index = 0; pg_index < cb->nr_pages; pg_index++) {
366 page = compressed_pages[pg_index];
Chris Masonc8b97812008-10-29 14:49:59 -0400367 page->mapping = inode->i_mapping;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700368 if (bio->bi_iter.bi_size)
Mike Christie81a75f672016-06-05 14:31:54 -0500369 ret = io_tree->ops->merge_bio_hook(page, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300370 PAGE_SIZE,
Chris Masonc8b97812008-10-29 14:49:59 -0400371 bio, 0);
372 else
373 ret = 0;
374
Chris Mason70b99e62008-10-31 12:46:39 -0400375 page->mapping = NULL;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300376 if (ret || bio_add_page(bio, page, PAGE_SIZE, 0) <
377 PAGE_SIZE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400378 bio_get(bio);
379
Chris Masonaf09abf2008-11-07 12:35:44 -0500380 /*
381 * inc the count before we submit the bio so
382 * we know the end IO handler won't happen before
383 * we inc the count. Otherwise, the cb might get
384 * freed before we're done setting it up
385 */
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200386 refcount_inc(&cb->pending_bios);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400387 ret = btrfs_bio_wq_end_io(fs_info, bio,
388 BTRFS_WQ_ENDIO_DATA);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100389 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400390
Li Zefane55179b2011-07-14 03:16:47 +0000391 if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400392 ret = btrfs_csum_one_bio(inode, bio, start, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100393 BUG_ON(ret); /* -ENOMEM */
Li Zefane55179b2011-07-14 03:16:47 +0000394 }
Chris Masond20f7042008-12-08 16:58:54 -0500395
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400396 ret = btrfs_map_bio(fs_info, bio, 0, 1);
Liu Bof5daf2c2016-06-22 18:32:06 -0700397 if (ret) {
398 bio->bi_error = ret;
399 bio_endio(bio);
400 }
Chris Masonc8b97812008-10-29 14:49:59 -0400401
402 bio_put(bio);
403
404 bio = compressed_bio_alloc(bdev, first_byte, GFP_NOFS);
Tsutomu Itohe627ee72012-04-12 16:03:56 -0400405 BUG_ON(!bio);
Mike Christie37226b22016-06-05 14:31:52 -0500406 bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400407 bio->bi_private = cb;
408 bio->bi_end_io = end_compressed_bio_write;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300409 bio_add_page(bio, page, PAGE_SIZE, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400410 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300411 if (bytes_left < PAGE_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400412 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -0500413 "bytes left %lu compress len %lu nr %lu",
Chris Masoncfbc2462008-10-30 13:22:14 -0400414 bytes_left, cb->compressed_len, cb->nr_pages);
415 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300416 bytes_left -= PAGE_SIZE;
417 first_byte += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -0500418 cond_resched();
Chris Masonc8b97812008-10-29 14:49:59 -0400419 }
420 bio_get(bio);
421
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400422 ret = btrfs_bio_wq_end_io(fs_info, bio, BTRFS_WQ_ENDIO_DATA);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100423 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400424
Li Zefane55179b2011-07-14 03:16:47 +0000425 if (!skip_sum) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400426 ret = btrfs_csum_one_bio(inode, bio, start, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100427 BUG_ON(ret); /* -ENOMEM */
Li Zefane55179b2011-07-14 03:16:47 +0000428 }
Chris Masond20f7042008-12-08 16:58:54 -0500429
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400430 ret = btrfs_map_bio(fs_info, bio, 0, 1);
Liu Bof5daf2c2016-06-22 18:32:06 -0700431 if (ret) {
432 bio->bi_error = ret;
433 bio_endio(bio);
434 }
Chris Masonc8b97812008-10-29 14:49:59 -0400435
436 bio_put(bio);
437 return 0;
438}
439
Christoph Hellwig2a4d0c92016-11-25 09:07:51 +0100440static u64 bio_end_offset(struct bio *bio)
441{
442 struct bio_vec *last = &bio->bi_io_vec[bio->bi_vcnt - 1];
443
444 return page_offset(last->bv_page) + last->bv_len + last->bv_offset;
445}
446
Chris Mason771ed682008-11-06 22:02:51 -0500447static noinline int add_ra_bio_pages(struct inode *inode,
448 u64 compressed_end,
449 struct compressed_bio *cb)
450{
451 unsigned long end_index;
David Sterba306e16c2011-04-19 14:29:38 +0200452 unsigned long pg_index;
Chris Mason771ed682008-11-06 22:02:51 -0500453 u64 last_offset;
454 u64 isize = i_size_read(inode);
455 int ret;
456 struct page *page;
457 unsigned long nr_pages = 0;
458 struct extent_map *em;
459 struct address_space *mapping = inode->i_mapping;
Chris Mason771ed682008-11-06 22:02:51 -0500460 struct extent_map_tree *em_tree;
461 struct extent_io_tree *tree;
462 u64 end;
463 int misses = 0;
464
Christoph Hellwig2a4d0c92016-11-25 09:07:51 +0100465 last_offset = bio_end_offset(cb->orig_bio);
Chris Mason771ed682008-11-06 22:02:51 -0500466 em_tree = &BTRFS_I(inode)->extent_tree;
467 tree = &BTRFS_I(inode)->io_tree;
468
469 if (isize == 0)
470 return 0;
471
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300472 end_index = (i_size_read(inode) - 1) >> PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -0500473
Chris Masond3977122009-01-05 21:25:51 -0500474 while (last_offset < compressed_end) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300475 pg_index = last_offset >> PAGE_SHIFT;
Chris Mason771ed682008-11-06 22:02:51 -0500476
David Sterba306e16c2011-04-19 14:29:38 +0200477 if (pg_index > end_index)
Chris Mason771ed682008-11-06 22:02:51 -0500478 break;
479
480 rcu_read_lock();
David Sterba306e16c2011-04-19 14:29:38 +0200481 page = radix_tree_lookup(&mapping->page_tree, pg_index);
Chris Mason771ed682008-11-06 22:02:51 -0500482 rcu_read_unlock();
Johannes Weiner0cd61442014-04-03 14:47:46 -0700483 if (page && !radix_tree_exceptional_entry(page)) {
Chris Mason771ed682008-11-06 22:02:51 -0500484 misses++;
485 if (misses > 4)
486 break;
487 goto next;
488 }
489
Michal Hockoc62d2552015-11-06 16:28:49 -0800490 page = __page_cache_alloc(mapping_gfp_constraint(mapping,
491 ~__GFP_FS));
Chris Mason771ed682008-11-06 22:02:51 -0500492 if (!page)
493 break;
494
Michal Hockoc62d2552015-11-06 16:28:49 -0800495 if (add_to_page_cache_lru(page, mapping, pg_index, GFP_NOFS)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300496 put_page(page);
Chris Mason771ed682008-11-06 22:02:51 -0500497 goto next;
498 }
499
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300500 end = last_offset + PAGE_SIZE - 1;
Chris Mason771ed682008-11-06 22:02:51 -0500501 /*
502 * at this point, we have a locked page in the page cache
503 * for these bytes in the file. But, we have to make
504 * sure they map to this compressed extent on disk.
505 */
506 set_page_extent_mapped(page);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100507 lock_extent(tree, last_offset, end);
Chris Mason890871b2009-09-02 16:24:52 -0400508 read_lock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500509 em = lookup_extent_mapping(em_tree, last_offset,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300510 PAGE_SIZE);
Chris Mason890871b2009-09-02 16:24:52 -0400511 read_unlock(&em_tree->lock);
Chris Mason771ed682008-11-06 22:02:51 -0500512
513 if (!em || last_offset < em->start ||
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300514 (last_offset + PAGE_SIZE > extent_map_end(em)) ||
Kent Overstreet4f024f32013-10-11 15:44:27 -0700515 (em->block_start >> 9) != cb->orig_bio->bi_iter.bi_sector) {
Chris Mason771ed682008-11-06 22:02:51 -0500516 free_extent_map(em);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100517 unlock_extent(tree, last_offset, end);
Chris Mason771ed682008-11-06 22:02:51 -0500518 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300519 put_page(page);
Chris Mason771ed682008-11-06 22:02:51 -0500520 break;
521 }
522 free_extent_map(em);
523
524 if (page->index == end_index) {
525 char *userpage;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300526 size_t zero_offset = isize & (PAGE_SIZE - 1);
Chris Mason771ed682008-11-06 22:02:51 -0500527
528 if (zero_offset) {
529 int zeros;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300530 zeros = PAGE_SIZE - zero_offset;
Cong Wang7ac687d2011-11-25 23:14:28 +0800531 userpage = kmap_atomic(page);
Chris Mason771ed682008-11-06 22:02:51 -0500532 memset(userpage + zero_offset, 0, zeros);
533 flush_dcache_page(page);
Cong Wang7ac687d2011-11-25 23:14:28 +0800534 kunmap_atomic(userpage);
Chris Mason771ed682008-11-06 22:02:51 -0500535 }
536 }
537
538 ret = bio_add_page(cb->orig_bio, page,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300539 PAGE_SIZE, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500540
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300541 if (ret == PAGE_SIZE) {
Chris Mason771ed682008-11-06 22:02:51 -0500542 nr_pages++;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300543 put_page(page);
Chris Mason771ed682008-11-06 22:02:51 -0500544 } else {
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100545 unlock_extent(tree, last_offset, end);
Chris Mason771ed682008-11-06 22:02:51 -0500546 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300547 put_page(page);
Chris Mason771ed682008-11-06 22:02:51 -0500548 break;
549 }
550next:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300551 last_offset += PAGE_SIZE;
Chris Mason771ed682008-11-06 22:02:51 -0500552 }
Chris Mason771ed682008-11-06 22:02:51 -0500553 return 0;
554}
555
Chris Masonc8b97812008-10-29 14:49:59 -0400556/*
557 * for a compressed read, the bio we get passed has all the inode pages
558 * in it. We don't actually do IO on those pages but allocate new ones
559 * to hold the compressed pages on disk.
560 *
Kent Overstreet4f024f32013-10-11 15:44:27 -0700561 * bio->bi_iter.bi_sector points to the compressed extent on disk
Chris Masonc8b97812008-10-29 14:49:59 -0400562 * bio->bi_io_vec points to all of the inode pages
Chris Masonc8b97812008-10-29 14:49:59 -0400563 *
564 * After the compressed pages are read, we copy the bytes into the
565 * bio we were passed and then call the bio end_io calls
566 */
567int btrfs_submit_compressed_read(struct inode *inode, struct bio *bio,
568 int mirror_num, unsigned long bio_flags)
569{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400570 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Masonc8b97812008-10-29 14:49:59 -0400571 struct extent_io_tree *tree;
572 struct extent_map_tree *em_tree;
573 struct compressed_bio *cb;
Chris Masonc8b97812008-10-29 14:49:59 -0400574 unsigned long compressed_len;
575 unsigned long nr_pages;
David Sterba306e16c2011-04-19 14:29:38 +0200576 unsigned long pg_index;
Chris Masonc8b97812008-10-29 14:49:59 -0400577 struct page *page;
578 struct block_device *bdev;
579 struct bio *comp_bio;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700580 u64 cur_disk_byte = (u64)bio->bi_iter.bi_sector << 9;
Chris Masone04ca622008-11-10 11:44:58 -0500581 u64 em_len;
582 u64 em_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400583 struct extent_map *em;
liubo6b82ce82011-01-26 06:21:39 +0000584 int ret = -ENOMEM;
Josef Bacik15e3004a2012-10-05 13:39:50 -0400585 int faili = 0;
Chris Masond20f7042008-12-08 16:58:54 -0500586 u32 *sums;
Chris Masonc8b97812008-10-29 14:49:59 -0400587
588 tree = &BTRFS_I(inode)->io_tree;
589 em_tree = &BTRFS_I(inode)->extent_tree;
590
591 /* we need the actual starting offset of this extent in the file */
Chris Mason890871b2009-09-02 16:24:52 -0400592 read_lock(&em_tree->lock);
Chris Masonc8b97812008-10-29 14:49:59 -0400593 em = lookup_extent_mapping(em_tree,
594 page_offset(bio->bi_io_vec->bv_page),
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300595 PAGE_SIZE);
Chris Mason890871b2009-09-02 16:24:52 -0400596 read_unlock(&em_tree->lock);
Tsutomu Itoh285190d2012-02-16 16:23:58 +0900597 if (!em)
598 return -EIO;
Chris Masonc8b97812008-10-29 14:49:59 -0400599
Chris Masond20f7042008-12-08 16:58:54 -0500600 compressed_len = em->block_len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400601 cb = kmalloc(compressed_bio_size(fs_info, compressed_len), GFP_NOFS);
liubo6b82ce82011-01-26 06:21:39 +0000602 if (!cb)
603 goto out;
604
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200605 refcount_set(&cb->pending_bios, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400606 cb->errors = 0;
607 cb->inode = inode;
Chris Masond20f7042008-12-08 16:58:54 -0500608 cb->mirror_num = mirror_num;
609 sums = &cb->sums;
Chris Masonc8b97812008-10-29 14:49:59 -0400610
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500611 cb->start = em->orig_start;
Chris Masone04ca622008-11-10 11:44:58 -0500612 em_len = em->len;
613 em_start = em->start;
Chris Masond20f7042008-12-08 16:58:54 -0500614
Chris Masonc8b97812008-10-29 14:49:59 -0400615 free_extent_map(em);
Chris Masone04ca622008-11-10 11:44:58 -0500616 em = NULL;
Chris Masonc8b97812008-10-29 14:49:59 -0400617
Christoph Hellwig81381052016-11-25 09:07:50 +0100618 cb->len = bio->bi_iter.bi_size;
Chris Masonc8b97812008-10-29 14:49:59 -0400619 cb->compressed_len = compressed_len;
Li Zefan261507a02010-12-17 14:21:50 +0800620 cb->compress_type = extent_compress_type(bio_flags);
Chris Masonc8b97812008-10-29 14:49:59 -0400621 cb->orig_bio = bio;
622
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300623 nr_pages = DIV_ROUND_UP(compressed_len, PAGE_SIZE);
David Sterba31e818f2015-02-20 18:00:26 +0100624 cb->compressed_pages = kcalloc(nr_pages, sizeof(struct page *),
Chris Masonc8b97812008-10-29 14:49:59 -0400625 GFP_NOFS);
liubo6b82ce82011-01-26 06:21:39 +0000626 if (!cb->compressed_pages)
627 goto fail1;
628
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400629 bdev = fs_info->fs_devices->latest_bdev;
Chris Masonc8b97812008-10-29 14:49:59 -0400630
David Sterba306e16c2011-04-19 14:29:38 +0200631 for (pg_index = 0; pg_index < nr_pages; pg_index++) {
632 cb->compressed_pages[pg_index] = alloc_page(GFP_NOFS |
Chris Masonc8b97812008-10-29 14:49:59 -0400633 __GFP_HIGHMEM);
Josef Bacik15e3004a2012-10-05 13:39:50 -0400634 if (!cb->compressed_pages[pg_index]) {
635 faili = pg_index - 1;
636 ret = -ENOMEM;
liubo6b82ce82011-01-26 06:21:39 +0000637 goto fail2;
Josef Bacik15e3004a2012-10-05 13:39:50 -0400638 }
Chris Masonc8b97812008-10-29 14:49:59 -0400639 }
Josef Bacik15e3004a2012-10-05 13:39:50 -0400640 faili = nr_pages - 1;
Chris Masonc8b97812008-10-29 14:49:59 -0400641 cb->nr_pages = nr_pages;
642
Filipe Manana7f042a82016-01-27 19:17:20 +0000643 add_ra_bio_pages(inode, em_start + em_len, cb);
Chris Mason771ed682008-11-06 22:02:51 -0500644
Chris Mason771ed682008-11-06 22:02:51 -0500645 /* include any pages we added in add_ra-bio_pages */
Christoph Hellwig81381052016-11-25 09:07:50 +0100646 cb->len = bio->bi_iter.bi_size;
Chris Mason771ed682008-11-06 22:02:51 -0500647
Chris Masonc8b97812008-10-29 14:49:59 -0400648 comp_bio = compressed_bio_alloc(bdev, cur_disk_byte, GFP_NOFS);
liubo6b82ce82011-01-26 06:21:39 +0000649 if (!comp_bio)
650 goto fail2;
Mike Christie37226b22016-06-05 14:31:52 -0500651 bio_set_op_attrs (comp_bio, REQ_OP_READ, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400652 comp_bio->bi_private = cb;
653 comp_bio->bi_end_io = end_compressed_bio_read;
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200654 refcount_set(&cb->pending_bios, 1);
Chris Masonc8b97812008-10-29 14:49:59 -0400655
David Sterba306e16c2011-04-19 14:29:38 +0200656 for (pg_index = 0; pg_index < nr_pages; pg_index++) {
657 page = cb->compressed_pages[pg_index];
Chris Masonc8b97812008-10-29 14:49:59 -0400658 page->mapping = inode->i_mapping;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300659 page->index = em_start >> PAGE_SHIFT;
Chris Masond20f7042008-12-08 16:58:54 -0500660
Kent Overstreet4f024f32013-10-11 15:44:27 -0700661 if (comp_bio->bi_iter.bi_size)
Mike Christie81a75f672016-06-05 14:31:54 -0500662 ret = tree->ops->merge_bio_hook(page, 0,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300663 PAGE_SIZE,
Chris Masonc8b97812008-10-29 14:49:59 -0400664 comp_bio, 0);
665 else
666 ret = 0;
667
Chris Mason70b99e62008-10-31 12:46:39 -0400668 page->mapping = NULL;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300669 if (ret || bio_add_page(comp_bio, page, PAGE_SIZE, 0) <
670 PAGE_SIZE) {
Chris Masonc8b97812008-10-29 14:49:59 -0400671 bio_get(comp_bio);
672
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400673 ret = btrfs_bio_wq_end_io(fs_info, comp_bio,
674 BTRFS_WQ_ENDIO_DATA);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100675 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400676
Chris Masonaf09abf2008-11-07 12:35:44 -0500677 /*
678 * inc the count before we submit the bio so
679 * we know the end IO handler won't happen before
680 * we inc the count. Otherwise, the cb might get
681 * freed before we're done setting it up
682 */
Elena Reshetovaa50299a2017-03-03 10:55:20 +0200683 refcount_inc(&cb->pending_bios);
Chris Masonaf09abf2008-11-07 12:35:44 -0500684
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200685 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400686 ret = btrfs_lookup_bio_sums(inode, comp_bio,
687 sums);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100688 BUG_ON(ret); /* -ENOMEM */
Chris Masond20f7042008-12-08 16:58:54 -0500689 }
David Sterbaed6078f2014-06-05 01:59:57 +0200690 sums += DIV_ROUND_UP(comp_bio->bi_iter.bi_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400691 fs_info->sectorsize);
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) {
Junjie Mao14155ca2016-10-17 09:20:25 +0800695 comp_bio->bi_error = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200696 bio_endio(comp_bio);
697 }
Chris Masonc8b97812008-10-29 14:49:59 -0400698
699 bio_put(comp_bio);
700
701 comp_bio = compressed_bio_alloc(bdev, cur_disk_byte,
702 GFP_NOFS);
Tsutomu Itohe627ee72012-04-12 16:03:56 -0400703 BUG_ON(!comp_bio);
Mike Christie37226b22016-06-05 14:31:52 -0500704 bio_set_op_attrs(comp_bio, REQ_OP_READ, 0);
Chris Mason771ed682008-11-06 22:02:51 -0500705 comp_bio->bi_private = cb;
706 comp_bio->bi_end_io = end_compressed_bio_read;
707
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300708 bio_add_page(comp_bio, page, PAGE_SIZE, 0);
Chris Masonc8b97812008-10-29 14:49:59 -0400709 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300710 cur_disk_byte += PAGE_SIZE;
Chris Masonc8b97812008-10-29 14:49:59 -0400711 }
712 bio_get(comp_bio);
713
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400714 ret = btrfs_bio_wq_end_io(fs_info, comp_bio, BTRFS_WQ_ENDIO_DATA);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100715 BUG_ON(ret); /* -ENOMEM */
Chris Masonc8b97812008-10-29 14:49:59 -0400716
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000717 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400718 ret = btrfs_lookup_bio_sums(inode, comp_bio, sums);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100719 BUG_ON(ret); /* -ENOMEM */
Tsutomu Itohc2db1072011-03-01 06:48:31 +0000720 }
Chris Masond20f7042008-12-08 16:58:54 -0500721
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400722 ret = btrfs_map_bio(fs_info, comp_bio, mirror_num, 0);
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200723 if (ret) {
Junjie Mao14155ca2016-10-17 09:20:25 +0800724 comp_bio->bi_error = ret;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200725 bio_endio(comp_bio);
726 }
Chris Masonc8b97812008-10-29 14:49:59 -0400727
728 bio_put(comp_bio);
729 return 0;
liubo6b82ce82011-01-26 06:21:39 +0000730
731fail2:
Josef Bacik15e3004a2012-10-05 13:39:50 -0400732 while (faili >= 0) {
733 __free_page(cb->compressed_pages[faili]);
734 faili--;
735 }
liubo6b82ce82011-01-26 06:21:39 +0000736
737 kfree(cb->compressed_pages);
738fail1:
739 kfree(cb);
740out:
741 free_extent_map(em);
742 return ret;
Chris Masonc8b97812008-10-29 14:49:59 -0400743}
Li Zefan261507a02010-12-17 14:21:50 +0800744
Byongho Leed9187642015-10-14 14:05:24 +0900745static struct {
746 struct list_head idle_ws;
747 spinlock_t ws_lock;
David Sterba6ac10a62016-04-27 02:15:15 +0200748 /* Number of free workspaces */
749 int free_ws;
750 /* Total number of allocated workspaces */
751 atomic_t total_ws;
752 /* Waiters for a free workspace */
Byongho Leed9187642015-10-14 14:05:24 +0900753 wait_queue_head_t ws_wait;
754} btrfs_comp_ws[BTRFS_COMPRESS_TYPES];
Li Zefan261507a02010-12-17 14:21:50 +0800755
David Sterbae8c9f182015-01-02 18:23:10 +0100756static const struct btrfs_compress_op * const btrfs_compress_op[] = {
Li Zefan261507a02010-12-17 14:21:50 +0800757 &btrfs_zlib_compress,
Li Zefana6fa6fa2010-10-25 15:12:26 +0800758 &btrfs_lzo_compress,
Li Zefan261507a02010-12-17 14:21:50 +0800759};
760
Jeff Mahoney143bede2012-03-01 14:56:26 +0100761void __init btrfs_init_compress(void)
Li Zefan261507a02010-12-17 14:21:50 +0800762{
763 int i;
764
765 for (i = 0; i < BTRFS_COMPRESS_TYPES; i++) {
David Sterbaf77dd0d2016-04-27 02:55:15 +0200766 struct list_head *workspace;
767
Byongho Leed9187642015-10-14 14:05:24 +0900768 INIT_LIST_HEAD(&btrfs_comp_ws[i].idle_ws);
769 spin_lock_init(&btrfs_comp_ws[i].ws_lock);
David Sterba6ac10a62016-04-27 02:15:15 +0200770 atomic_set(&btrfs_comp_ws[i].total_ws, 0);
Byongho Leed9187642015-10-14 14:05:24 +0900771 init_waitqueue_head(&btrfs_comp_ws[i].ws_wait);
David Sterbaf77dd0d2016-04-27 02:55:15 +0200772
773 /*
774 * Preallocate one workspace for each compression type so
775 * we can guarantee forward progress in the worst case
776 */
777 workspace = btrfs_compress_op[i]->alloc_workspace();
778 if (IS_ERR(workspace)) {
Jeff Mahoney62e85572016-09-20 10:05:01 -0400779 pr_warn("BTRFS: cannot preallocate compression workspace, will try later\n");
David Sterbaf77dd0d2016-04-27 02:55:15 +0200780 } else {
781 atomic_set(&btrfs_comp_ws[i].total_ws, 1);
782 btrfs_comp_ws[i].free_ws = 1;
783 list_add(workspace, &btrfs_comp_ws[i].idle_ws);
784 }
Li Zefan261507a02010-12-17 14:21:50 +0800785 }
Li Zefan261507a02010-12-17 14:21:50 +0800786}
787
788/*
David Sterbae721e492016-04-27 02:41:17 +0200789 * This finds an available workspace or allocates a new one.
790 * If it's not possible to allocate a new one, waits until there's one.
791 * Preallocation makes a forward progress guarantees and we do not return
792 * errors.
Li Zefan261507a02010-12-17 14:21:50 +0800793 */
794static struct list_head *find_workspace(int type)
795{
796 struct list_head *workspace;
797 int cpus = num_online_cpus();
798 int idx = type - 1;
799
Byongho Leed9187642015-10-14 14:05:24 +0900800 struct list_head *idle_ws = &btrfs_comp_ws[idx].idle_ws;
801 spinlock_t *ws_lock = &btrfs_comp_ws[idx].ws_lock;
David Sterba6ac10a62016-04-27 02:15:15 +0200802 atomic_t *total_ws = &btrfs_comp_ws[idx].total_ws;
Byongho Leed9187642015-10-14 14:05:24 +0900803 wait_queue_head_t *ws_wait = &btrfs_comp_ws[idx].ws_wait;
David Sterba6ac10a62016-04-27 02:15:15 +0200804 int *free_ws = &btrfs_comp_ws[idx].free_ws;
Li Zefan261507a02010-12-17 14:21:50 +0800805again:
Byongho Leed9187642015-10-14 14:05:24 +0900806 spin_lock(ws_lock);
807 if (!list_empty(idle_ws)) {
808 workspace = idle_ws->next;
Li Zefan261507a02010-12-17 14:21:50 +0800809 list_del(workspace);
David Sterba6ac10a62016-04-27 02:15:15 +0200810 (*free_ws)--;
Byongho Leed9187642015-10-14 14:05:24 +0900811 spin_unlock(ws_lock);
Li Zefan261507a02010-12-17 14:21:50 +0800812 return workspace;
813
814 }
David Sterba6ac10a62016-04-27 02:15:15 +0200815 if (atomic_read(total_ws) > cpus) {
Li Zefan261507a02010-12-17 14:21:50 +0800816 DEFINE_WAIT(wait);
817
Byongho Leed9187642015-10-14 14:05:24 +0900818 spin_unlock(ws_lock);
819 prepare_to_wait(ws_wait, &wait, TASK_UNINTERRUPTIBLE);
David Sterba6ac10a62016-04-27 02:15:15 +0200820 if (atomic_read(total_ws) > cpus && !*free_ws)
Li Zefan261507a02010-12-17 14:21:50 +0800821 schedule();
Byongho Leed9187642015-10-14 14:05:24 +0900822 finish_wait(ws_wait, &wait);
Li Zefan261507a02010-12-17 14:21:50 +0800823 goto again;
824 }
David Sterba6ac10a62016-04-27 02:15:15 +0200825 atomic_inc(total_ws);
Byongho Leed9187642015-10-14 14:05:24 +0900826 spin_unlock(ws_lock);
Li Zefan261507a02010-12-17 14:21:50 +0800827
828 workspace = btrfs_compress_op[idx]->alloc_workspace();
829 if (IS_ERR(workspace)) {
David Sterba6ac10a62016-04-27 02:15:15 +0200830 atomic_dec(total_ws);
Byongho Leed9187642015-10-14 14:05:24 +0900831 wake_up(ws_wait);
David Sterbae721e492016-04-27 02:41:17 +0200832
833 /*
834 * Do not return the error but go back to waiting. There's a
835 * workspace preallocated for each type and the compression
836 * time is bounded so we get to a workspace eventually. This
837 * makes our caller's life easier.
David Sterba523567162016-04-27 03:07:39 +0200838 *
839 * To prevent silent and low-probability deadlocks (when the
840 * initial preallocation fails), check if there are any
841 * workspaces at all.
David Sterbae721e492016-04-27 02:41:17 +0200842 */
David Sterba523567162016-04-27 03:07:39 +0200843 if (atomic_read(total_ws) == 0) {
844 static DEFINE_RATELIMIT_STATE(_rs,
845 /* once per minute */ 60 * HZ,
846 /* no burst */ 1);
847
848 if (__ratelimit(&_rs)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400849 pr_warn("BTRFS: no compression workspaces, low memory, retrying\n");
David Sterba523567162016-04-27 03:07:39 +0200850 }
851 }
David Sterbae721e492016-04-27 02:41:17 +0200852 goto again;
Li Zefan261507a02010-12-17 14:21:50 +0800853 }
854 return workspace;
855}
856
857/*
858 * put a workspace struct back on the list or free it if we have enough
859 * idle ones sitting around
860 */
861static void free_workspace(int type, struct list_head *workspace)
862{
863 int idx = type - 1;
Byongho Leed9187642015-10-14 14:05:24 +0900864 struct list_head *idle_ws = &btrfs_comp_ws[idx].idle_ws;
865 spinlock_t *ws_lock = &btrfs_comp_ws[idx].ws_lock;
David Sterba6ac10a62016-04-27 02:15:15 +0200866 atomic_t *total_ws = &btrfs_comp_ws[idx].total_ws;
Byongho Leed9187642015-10-14 14:05:24 +0900867 wait_queue_head_t *ws_wait = &btrfs_comp_ws[idx].ws_wait;
David Sterba6ac10a62016-04-27 02:15:15 +0200868 int *free_ws = &btrfs_comp_ws[idx].free_ws;
Li Zefan261507a02010-12-17 14:21:50 +0800869
Byongho Leed9187642015-10-14 14:05:24 +0900870 spin_lock(ws_lock);
David Sterba6ac10a62016-04-27 02:15:15 +0200871 if (*free_ws < num_online_cpus()) {
Byongho Leed9187642015-10-14 14:05:24 +0900872 list_add(workspace, idle_ws);
David Sterba6ac10a62016-04-27 02:15:15 +0200873 (*free_ws)++;
Byongho Leed9187642015-10-14 14:05:24 +0900874 spin_unlock(ws_lock);
Li Zefan261507a02010-12-17 14:21:50 +0800875 goto wake;
876 }
Byongho Leed9187642015-10-14 14:05:24 +0900877 spin_unlock(ws_lock);
Li Zefan261507a02010-12-17 14:21:50 +0800878
879 btrfs_compress_op[idx]->free_workspace(workspace);
David Sterba6ac10a62016-04-27 02:15:15 +0200880 atomic_dec(total_ws);
Li Zefan261507a02010-12-17 14:21:50 +0800881wake:
David Sterbaa83342a2015-02-16 19:36:47 +0100882 /*
883 * Make sure counter is updated before we wake up waiters.
884 */
Josef Bacik66657b32012-08-01 15:36:24 -0400885 smp_mb();
Byongho Leed9187642015-10-14 14:05:24 +0900886 if (waitqueue_active(ws_wait))
887 wake_up(ws_wait);
Li Zefan261507a02010-12-17 14:21:50 +0800888}
889
890/*
891 * cleanup function for module exit
892 */
893static void free_workspaces(void)
894{
895 struct list_head *workspace;
896 int i;
897
898 for (i = 0; i < BTRFS_COMPRESS_TYPES; i++) {
Byongho Leed9187642015-10-14 14:05:24 +0900899 while (!list_empty(&btrfs_comp_ws[i].idle_ws)) {
900 workspace = btrfs_comp_ws[i].idle_ws.next;
Li Zefan261507a02010-12-17 14:21:50 +0800901 list_del(workspace);
902 btrfs_compress_op[i]->free_workspace(workspace);
David Sterba6ac10a62016-04-27 02:15:15 +0200903 atomic_dec(&btrfs_comp_ws[i].total_ws);
Li Zefan261507a02010-12-17 14:21:50 +0800904 }
905 }
906}
907
908/*
David Sterba38c31462017-02-14 19:04:07 +0100909 * Given an address space and start and length, compress the bytes into @pages
910 * that are allocated on demand.
Li Zefan261507a02010-12-17 14:21:50 +0800911 *
David Sterba4d3a8002017-02-14 19:04:07 +0100912 * @out_pages is an in/out parameter, holds maximum number of pages to allocate
913 * and returns number of actually allocated pages
Li Zefan261507a02010-12-17 14:21:50 +0800914 *
David Sterba38c31462017-02-14 19:04:07 +0100915 * @total_in is used to return the number of bytes actually read. It
916 * may be smaller than the input length if we had to exit early because we
Li Zefan261507a02010-12-17 14:21:50 +0800917 * ran out of room in the pages array or because we cross the
918 * max_out threshold.
919 *
David Sterba38c31462017-02-14 19:04:07 +0100920 * @total_out is an in/out parameter, must be set to the input length and will
921 * be also used to return the total number of compressed bytes
Li Zefan261507a02010-12-17 14:21:50 +0800922 *
David Sterba38c31462017-02-14 19:04:07 +0100923 * @max_out tells us the max number of bytes that we're allowed to
Li Zefan261507a02010-12-17 14:21:50 +0800924 * stuff into pages
925 */
926int btrfs_compress_pages(int type, struct address_space *mapping,
David Sterba38c31462017-02-14 19:04:07 +0100927 u64 start, struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +0800928 unsigned long *out_pages,
929 unsigned long *total_in,
David Sterbae5d74902017-02-14 19:45:05 +0100930 unsigned long *total_out)
Li Zefan261507a02010-12-17 14:21:50 +0800931{
932 struct list_head *workspace;
933 int ret;
934
935 workspace = find_workspace(type);
Li Zefan261507a02010-12-17 14:21:50 +0800936
937 ret = btrfs_compress_op[type-1]->compress_pages(workspace, mapping,
David Sterba38c31462017-02-14 19:04:07 +0100938 start, pages,
David Sterba4d3a8002017-02-14 19:04:07 +0100939 out_pages,
David Sterbae5d74902017-02-14 19:45:05 +0100940 total_in, total_out);
Li Zefan261507a02010-12-17 14:21:50 +0800941 free_workspace(type, workspace);
942 return ret;
943}
944
945/*
946 * pages_in is an array of pages with compressed data.
947 *
948 * disk_start is the starting logical offset of this array in the file
949 *
Christoph Hellwig974b1ad2016-11-25 09:07:46 +0100950 * orig_bio contains the pages from the file that we want to decompress into
Li Zefan261507a02010-12-17 14:21:50 +0800951 *
952 * srclen is the number of bytes in pages_in
953 *
954 * The basic idea is that we have a bio that was created by readpages.
955 * The pages in the bio are for the uncompressed data, and they may not
956 * be contiguous. They all correspond to the range of bytes covered by
957 * the compressed extent.
958 */
Anand Jain8140dc32017-05-26 15:44:58 +0800959static int btrfs_decompress_bio(struct compressed_bio *cb)
Li Zefan261507a02010-12-17 14:21:50 +0800960{
961 struct list_head *workspace;
962 int ret;
Anand Jain8140dc32017-05-26 15:44:58 +0800963 int type = cb->compress_type;
Li Zefan261507a02010-12-17 14:21:50 +0800964
965 workspace = find_workspace(type);
Li Zefan261507a02010-12-17 14:21:50 +0800966
Anand Jain8140dc32017-05-26 15:44:58 +0800967 ret = btrfs_compress_op[type - 1]->decompress_bio(workspace,
968 cb->compressed_pages, cb->start, cb->orig_bio,
969 cb->compressed_len);
970
Li Zefan261507a02010-12-17 14:21:50 +0800971 free_workspace(type, workspace);
972 return ret;
973}
974
975/*
976 * a less complex decompression routine. Our compressed data fits in a
977 * single page, and we want to read a single page out of it.
978 * start_byte tells us the offset into the compressed data we're interested in
979 */
980int btrfs_decompress(int type, unsigned char *data_in, struct page *dest_page,
981 unsigned long start_byte, size_t srclen, size_t destlen)
982{
983 struct list_head *workspace;
984 int ret;
985
986 workspace = find_workspace(type);
Li Zefan261507a02010-12-17 14:21:50 +0800987
988 ret = btrfs_compress_op[type-1]->decompress(workspace, data_in,
989 dest_page, start_byte,
990 srclen, destlen);
991
992 free_workspace(type, workspace);
993 return ret;
994}
995
Alexey Charkov8e4eef72011-02-02 21:15:35 +0000996void btrfs_exit_compress(void)
Li Zefan261507a02010-12-17 14:21:50 +0800997{
998 free_workspaces();
999}
Li Zefan3a39c182010-11-08 15:22:19 +08001000
1001/*
1002 * Copy uncompressed data from working buffer to pages.
1003 *
1004 * buf_start is the byte offset we're of the start of our workspace buffer.
1005 *
1006 * total_out is the last byte of the buffer
1007 */
David Sterba14a33572017-02-14 17:58:04 +01001008int btrfs_decompress_buf2page(const char *buf, unsigned long buf_start,
Li Zefan3a39c182010-11-08 15:22:19 +08001009 unsigned long total_out, u64 disk_start,
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001010 struct bio *bio)
Li Zefan3a39c182010-11-08 15:22:19 +08001011{
1012 unsigned long buf_offset;
1013 unsigned long current_buf_start;
1014 unsigned long start_byte;
Omar Sandoval6e78b3f2017-02-10 15:03:35 -08001015 unsigned long prev_start_byte;
Li Zefan3a39c182010-11-08 15:22:19 +08001016 unsigned long working_bytes = total_out - buf_start;
1017 unsigned long bytes;
1018 char *kaddr;
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001019 struct bio_vec bvec = bio_iter_iovec(bio, bio->bi_iter);
Li Zefan3a39c182010-11-08 15:22:19 +08001020
1021 /*
1022 * start byte is the first byte of the page we're currently
1023 * copying into relative to the start of the compressed data.
1024 */
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001025 start_byte = page_offset(bvec.bv_page) - disk_start;
Li Zefan3a39c182010-11-08 15:22:19 +08001026
1027 /* we haven't yet hit data corresponding to this page */
1028 if (total_out <= start_byte)
1029 return 1;
1030
1031 /*
1032 * the start of the data we care about is offset into
1033 * the middle of our working buffer
1034 */
1035 if (total_out > start_byte && buf_start < start_byte) {
1036 buf_offset = start_byte - buf_start;
1037 working_bytes -= buf_offset;
1038 } else {
1039 buf_offset = 0;
1040 }
1041 current_buf_start = buf_start;
1042
1043 /* copy bytes from the working buffer into the pages */
1044 while (working_bytes > 0) {
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001045 bytes = min_t(unsigned long, bvec.bv_len,
1046 PAGE_SIZE - buf_offset);
Li Zefan3a39c182010-11-08 15:22:19 +08001047 bytes = min(bytes, working_bytes);
Li Zefan3a39c182010-11-08 15:22:19 +08001048
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001049 kaddr = kmap_atomic(bvec.bv_page);
1050 memcpy(kaddr + bvec.bv_offset, buf + buf_offset, bytes);
1051 kunmap_atomic(kaddr);
1052 flush_dcache_page(bvec.bv_page);
1053
Li Zefan3a39c182010-11-08 15:22:19 +08001054 buf_offset += bytes;
1055 working_bytes -= bytes;
1056 current_buf_start += bytes;
1057
1058 /* check if we need to pick another page */
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001059 bio_advance(bio, bytes);
1060 if (!bio->bi_iter.bi_size)
1061 return 0;
1062 bvec = bio_iter_iovec(bio, bio->bi_iter);
Omar Sandoval6e78b3f2017-02-10 15:03:35 -08001063 prev_start_byte = start_byte;
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001064 start_byte = page_offset(bvec.bv_page) - disk_start;
Li Zefan3a39c182010-11-08 15:22:19 +08001065
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001066 /*
Omar Sandoval6e78b3f2017-02-10 15:03:35 -08001067 * We need to make sure we're only adjusting
1068 * our offset into compression working buffer when
1069 * we're switching pages. Otherwise we can incorrectly
1070 * keep copying when we were actually done.
Christoph Hellwig974b1ad2016-11-25 09:07:46 +01001071 */
Omar Sandoval6e78b3f2017-02-10 15:03:35 -08001072 if (start_byte != prev_start_byte) {
1073 /*
1074 * make sure our new page is covered by this
1075 * working buffer
1076 */
1077 if (total_out <= start_byte)
1078 return 1;
Li Zefan3a39c182010-11-08 15:22:19 +08001079
Omar Sandoval6e78b3f2017-02-10 15:03:35 -08001080 /*
1081 * the next page in the biovec might not be adjacent
1082 * to the last page, but it might still be found
1083 * inside this working buffer. bump our offset pointer
1084 */
1085 if (total_out > start_byte &&
1086 current_buf_start < start_byte) {
1087 buf_offset = start_byte - buf_start;
1088 working_bytes = total_out - start_byte;
1089 current_buf_start = buf_start + buf_offset;
1090 }
Li Zefan3a39c182010-11-08 15:22:19 +08001091 }
1092 }
1093
1094 return 1;
1095}