1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (C) 2008 Oracle. All rights reserved. 4 */ 5 6 #include <linux/kernel.h> 7 #include <linux/bio.h> 8 #include <linux/file.h> 9 #include <linux/fs.h> 10 #include <linux/pagemap.h> 11 #include <linux/pagevec.h> 12 #include <linux/highmem.h> 13 #include <linux/kthread.h> 14 #include <linux/time.h> 15 #include <linux/init.h> 16 #include <linux/string.h> 17 #include <linux/backing-dev.h> 18 #include <linux/writeback.h> 19 #include <linux/psi.h> 20 #include <linux/slab.h> 21 #include <linux/sched/mm.h> 22 #include <linux/log2.h> 23 #include <linux/shrinker.h> 24 #include "misc.h" 25 #include "ctree.h" 26 #include "fs.h" 27 #include "btrfs_inode.h" 28 #include "bio.h" 29 #include "ordered-data.h" 30 #include "compression.h" 31 #include "extent_io.h" 32 #include "extent_map.h" 33 #include "subpage.h" 34 #include "messages.h" 35 #include "super.h" 36 37 static struct bio_set btrfs_compressed_bioset; 38 39 static const char* const btrfs_compress_types[] = { "", "zlib", "lzo", "zstd" }; 40 41 const char* btrfs_compress_type2str(enum btrfs_compression_type type) 42 { 43 switch (type) { 44 case BTRFS_COMPRESS_ZLIB: 45 case BTRFS_COMPRESS_LZO: 46 case BTRFS_COMPRESS_ZSTD: 47 case BTRFS_COMPRESS_NONE: 48 return btrfs_compress_types[type]; 49 default: 50 break; 51 } 52 53 return NULL; 54 } 55 56 static inline struct compressed_bio *to_compressed_bio(struct btrfs_bio *bbio) 57 { 58 return container_of(bbio, struct compressed_bio, bbio); 59 } 60 61 static struct compressed_bio *alloc_compressed_bio(struct btrfs_inode *inode, 62 u64 start, blk_opf_t op, 63 btrfs_bio_end_io_t end_io) 64 { 65 struct btrfs_bio *bbio; 66 67 bbio = btrfs_bio(bio_alloc_bioset(NULL, BTRFS_MAX_COMPRESSED_PAGES, op, 68 GFP_NOFS, &btrfs_compressed_bioset)); 69 btrfs_bio_init(bbio, inode, start, end_io, NULL); 70 return to_compressed_bio(bbio); 71 } 72 73 bool btrfs_compress_is_valid_type(const char *str, size_t len) 74 { 75 int i; 76 77 for (i = 1; i < ARRAY_SIZE(btrfs_compress_types); i++) { 78 size_t comp_len = strlen(btrfs_compress_types[i]); 79 80 if (len < comp_len) 81 continue; 82 83 if (!strncmp(btrfs_compress_types[i], str, comp_len)) 84 return true; 85 } 86 return false; 87 } 88 89 static int compression_decompress_bio(struct list_head *ws, 90 struct compressed_bio *cb) 91 { 92 switch (cb->compress_type) { 93 case BTRFS_COMPRESS_ZLIB: return zlib_decompress_bio(ws, cb); 94 case BTRFS_COMPRESS_LZO: return lzo_decompress_bio(ws, cb); 95 case BTRFS_COMPRESS_ZSTD: return zstd_decompress_bio(ws, cb); 96 case BTRFS_COMPRESS_NONE: 97 default: 98 /* 99 * This can't happen, the type is validated several times 100 * before we get here. 101 */ 102 BUG(); 103 } 104 } 105 106 static int compression_decompress(int type, struct list_head *ws, 107 const u8 *data_in, struct folio *dest_folio, 108 unsigned long dest_pgoff, size_t srclen, size_t destlen) 109 { 110 switch (type) { 111 case BTRFS_COMPRESS_ZLIB: return zlib_decompress(ws, data_in, dest_folio, 112 dest_pgoff, srclen, destlen); 113 case BTRFS_COMPRESS_LZO: return lzo_decompress(ws, data_in, dest_folio, 114 dest_pgoff, srclen, destlen); 115 case BTRFS_COMPRESS_ZSTD: return zstd_decompress(ws, data_in, dest_folio, 116 dest_pgoff, srclen, destlen); 117 case BTRFS_COMPRESS_NONE: 118 default: 119 /* 120 * This can't happen, the type is validated several times 121 * before we get here. 122 */ 123 BUG(); 124 } 125 } 126 127 static int btrfs_decompress_bio(struct compressed_bio *cb); 128 129 /* 130 * Global cache of last unused pages for compression/decompression. 131 */ 132 static struct btrfs_compr_pool { 133 struct shrinker *shrinker; 134 spinlock_t lock; 135 struct list_head list; 136 int count; 137 int thresh; 138 } compr_pool; 139 140 static unsigned long btrfs_compr_pool_count(struct shrinker *sh, struct shrink_control *sc) 141 { 142 int ret; 143 144 /* 145 * We must not read the values more than once if 'ret' gets expanded in 146 * the return statement so we don't accidentally return a negative 147 * number, even if the first condition finds it positive. 148 */ 149 ret = READ_ONCE(compr_pool.count) - READ_ONCE(compr_pool.thresh); 150 151 return ret > 0 ? ret : 0; 152 } 153 154 static unsigned long btrfs_compr_pool_scan(struct shrinker *sh, struct shrink_control *sc) 155 { 156 LIST_HEAD(remove); 157 struct list_head *tmp, *next; 158 int freed; 159 160 if (compr_pool.count == 0) 161 return SHRINK_STOP; 162 163 /* For now, just simply drain the whole list. */ 164 spin_lock(&compr_pool.lock); 165 list_splice_init(&compr_pool.list, &remove); 166 freed = compr_pool.count; 167 compr_pool.count = 0; 168 spin_unlock(&compr_pool.lock); 169 170 list_for_each_safe(tmp, next, &remove) { 171 struct page *page = list_entry(tmp, struct page, lru); 172 173 ASSERT(page_ref_count(page) == 1); 174 put_page(page); 175 } 176 177 return freed; 178 } 179 180 /* 181 * Common wrappers for page allocation from compression wrappers 182 */ 183 struct folio *btrfs_alloc_compr_folio(struct btrfs_fs_info *fs_info) 184 { 185 struct folio *folio = NULL; 186 187 /* For bs > ps cases, no cached folio pool for now. */ 188 if (fs_info->block_min_order) 189 goto alloc; 190 191 spin_lock(&compr_pool.lock); 192 if (compr_pool.count > 0) { 193 folio = list_first_entry(&compr_pool.list, struct folio, lru); 194 list_del_init(&folio->lru); 195 compr_pool.count--; 196 } 197 spin_unlock(&compr_pool.lock); 198 199 if (folio) 200 return folio; 201 202 alloc: 203 return folio_alloc(GFP_NOFS, fs_info->block_min_order); 204 } 205 206 void btrfs_free_compr_folio(struct folio *folio) 207 { 208 bool do_free = false; 209 210 /* The folio is from bs > ps fs, no cached pool for now. */ 211 if (folio_order(folio)) 212 goto free; 213 214 spin_lock(&compr_pool.lock); 215 if (compr_pool.count > compr_pool.thresh) { 216 do_free = true; 217 } else { 218 list_add(&folio->lru, &compr_pool.list); 219 compr_pool.count++; 220 } 221 spin_unlock(&compr_pool.lock); 222 223 if (!do_free) 224 return; 225 226 free: 227 ASSERT(folio_ref_count(folio) == 1); 228 folio_put(folio); 229 } 230 231 static void end_bbio_compressed_read(struct btrfs_bio *bbio) 232 { 233 struct compressed_bio *cb = to_compressed_bio(bbio); 234 blk_status_t status = bbio->bio.bi_status; 235 struct folio_iter fi; 236 237 if (!status) 238 status = errno_to_blk_status(btrfs_decompress_bio(cb)); 239 240 btrfs_bio_end_io(cb->orig_bbio, status); 241 bio_for_each_folio_all(fi, &bbio->bio) 242 btrfs_free_compr_folio(fi.folio); 243 bio_put(&bbio->bio); 244 } 245 246 /* 247 * Clear the writeback bits on all of the file 248 * pages for a compressed write 249 */ 250 static noinline void end_compressed_writeback(const struct compressed_bio *cb) 251 { 252 struct inode *inode = &cb->bbio.inode->vfs_inode; 253 struct btrfs_fs_info *fs_info = inode_to_fs_info(inode); 254 pgoff_t index = cb->start >> PAGE_SHIFT; 255 const pgoff_t end_index = (cb->start + cb->len - 1) >> PAGE_SHIFT; 256 struct folio_batch fbatch; 257 int i; 258 int ret; 259 260 ret = blk_status_to_errno(cb->bbio.bio.bi_status); 261 if (ret) 262 mapping_set_error(inode->i_mapping, ret); 263 264 folio_batch_init(&fbatch); 265 while (index <= end_index) { 266 ret = filemap_get_folios(inode->i_mapping, &index, end_index, 267 &fbatch); 268 269 if (ret == 0) 270 return; 271 272 for (i = 0; i < ret; i++) { 273 struct folio *folio = fbatch.folios[i]; 274 275 btrfs_folio_clamp_clear_writeback(fs_info, folio, 276 cb->start, cb->len); 277 } 278 folio_batch_release(&fbatch); 279 } 280 /* the inode may be gone now */ 281 } 282 283 /* 284 * Do the cleanup once all the compressed pages hit the disk. This will clear 285 * writeback on the file pages and free the compressed pages. 286 * 287 * This also calls the writeback end hooks for the file pages so that metadata 288 * and checksums can be updated in the file. 289 */ 290 static void end_bbio_compressed_write(struct btrfs_bio *bbio) 291 { 292 struct compressed_bio *cb = to_compressed_bio(bbio); 293 struct folio_iter fi; 294 295 btrfs_finish_ordered_extent(cb->bbio.ordered, NULL, cb->start, cb->len, 296 cb->bbio.bio.bi_status == BLK_STS_OK); 297 298 if (cb->writeback) 299 end_compressed_writeback(cb); 300 /* Note, our inode could be gone now. */ 301 bio_for_each_folio_all(fi, &bbio->bio) 302 btrfs_free_compr_folio(fi.folio); 303 bio_put(&cb->bbio.bio); 304 } 305 306 /* 307 * worker function to build and submit bios for previously compressed pages. 308 * The corresponding pages in the inode should be marked for writeback 309 * and the compressed pages should have a reference on them for dropping 310 * when the IO is complete. 311 * 312 * This also checksums the file bytes and gets things ready for 313 * the end io hooks. 314 */ 315 void btrfs_submit_compressed_write(struct btrfs_ordered_extent *ordered, 316 struct compressed_bio *cb) 317 { 318 struct btrfs_inode *inode = ordered->inode; 319 struct btrfs_fs_info *fs_info = inode->root->fs_info; 320 321 ASSERT(IS_ALIGNED(ordered->file_offset, fs_info->sectorsize)); 322 ASSERT(IS_ALIGNED(ordered->num_bytes, fs_info->sectorsize)); 323 /* 324 * This flag determines if we should clear the writeback flag from the 325 * page cache. But this function is only utilized by encoded writes, it 326 * never goes through the page cache. 327 */ 328 ASSERT(!cb->writeback); 329 330 cb->start = ordered->file_offset; 331 cb->len = ordered->num_bytes; 332 ASSERT(cb->bbio.bio.bi_iter.bi_size == ordered->disk_num_bytes); 333 cb->compressed_len = ordered->disk_num_bytes; 334 cb->bbio.bio.bi_iter.bi_sector = ordered->disk_bytenr >> SECTOR_SHIFT; 335 cb->bbio.ordered = ordered; 336 337 btrfs_submit_bbio(&cb->bbio, 0); 338 } 339 340 /* 341 * Allocate a compressed write bio for @inode file offset @start length @len. 342 * 343 * The caller still needs to properly queue all folios and populate involved 344 * members. 345 */ 346 struct compressed_bio *btrfs_alloc_compressed_write(struct btrfs_inode *inode, 347 u64 start, u64 len) 348 { 349 struct compressed_bio *cb; 350 351 cb = alloc_compressed_bio(inode, start, REQ_OP_WRITE, end_bbio_compressed_write); 352 cb->start = start; 353 cb->len = len; 354 cb->writeback = false; 355 return cb; 356 } 357 358 /* 359 * Add extra pages in the same compressed file extent so that we don't need to 360 * re-read the same extent again and again. 361 * 362 * NOTE: this won't work well for subpage, as for subpage read, we lock the 363 * full page then submit bio for each compressed/regular extents. 364 * 365 * This means, if we have several sectors in the same page points to the same 366 * on-disk compressed data, we will re-read the same extent many times and 367 * this function can only help for the next page. 368 */ 369 static noinline int add_ra_bio_pages(struct inode *inode, 370 u64 compressed_end, 371 struct compressed_bio *cb, 372 int *memstall, unsigned long *pflags) 373 { 374 struct btrfs_fs_info *fs_info = inode_to_fs_info(inode); 375 pgoff_t end_index; 376 struct bio *orig_bio = &cb->orig_bbio->bio; 377 u64 cur = cb->orig_bbio->file_offset + orig_bio->bi_iter.bi_size; 378 u64 isize = i_size_read(inode); 379 int ret; 380 struct folio *folio; 381 struct extent_map *em; 382 struct address_space *mapping = inode->i_mapping; 383 struct extent_map_tree *em_tree; 384 struct extent_io_tree *tree; 385 int sectors_missed = 0; 386 387 em_tree = &BTRFS_I(inode)->extent_tree; 388 tree = &BTRFS_I(inode)->io_tree; 389 390 if (isize == 0) 391 return 0; 392 393 /* 394 * For current subpage support, we only support 64K page size, 395 * which means maximum compressed extent size (128K) is just 2x page 396 * size. 397 * This makes readahead less effective, so here disable readahead for 398 * subpage for now, until full compressed write is supported. 399 */ 400 if (fs_info->sectorsize < PAGE_SIZE) 401 return 0; 402 403 /* For bs > ps cases, we don't support readahead for compressed folios for now. */ 404 if (fs_info->block_min_order) 405 return 0; 406 407 end_index = (i_size_read(inode) - 1) >> PAGE_SHIFT; 408 409 while (cur < compressed_end) { 410 pgoff_t page_end; 411 pgoff_t pg_index = cur >> PAGE_SHIFT; 412 u32 add_size; 413 414 if (pg_index > end_index) 415 break; 416 417 folio = filemap_get_folio(mapping, pg_index); 418 if (!IS_ERR(folio)) { 419 u64 folio_sz = folio_size(folio); 420 u64 offset = offset_in_folio(folio, cur); 421 422 folio_put(folio); 423 sectors_missed += (folio_sz - offset) >> 424 fs_info->sectorsize_bits; 425 426 /* Beyond threshold, no need to continue */ 427 if (sectors_missed > 4) 428 break; 429 430 /* 431 * Jump to next page start as we already have page for 432 * current offset. 433 */ 434 cur += (folio_sz - offset); 435 continue; 436 } 437 438 folio = filemap_alloc_folio(mapping_gfp_constraint(mapping, ~__GFP_FS), 439 0, NULL); 440 if (!folio) 441 break; 442 443 if (filemap_add_folio(mapping, folio, pg_index, GFP_NOFS)) { 444 /* There is already a page, skip to page end */ 445 cur += folio_size(folio); 446 folio_put(folio); 447 continue; 448 } 449 450 if (!*memstall && folio_test_workingset(folio)) { 451 psi_memstall_enter(pflags); 452 *memstall = 1; 453 } 454 455 ret = set_folio_extent_mapped(folio); 456 if (ret < 0) { 457 folio_unlock(folio); 458 folio_put(folio); 459 break; 460 } 461 462 page_end = (pg_index << PAGE_SHIFT) + folio_size(folio) - 1; 463 btrfs_lock_extent(tree, cur, page_end, NULL); 464 read_lock(&em_tree->lock); 465 em = btrfs_lookup_extent_mapping(em_tree, cur, page_end + 1 - cur); 466 read_unlock(&em_tree->lock); 467 468 /* 469 * At this point, we have a locked page in the page cache for 470 * these bytes in the file. But, we have to make sure they map 471 * to this compressed extent on disk. 472 */ 473 if (!em || cur < em->start || 474 (cur + fs_info->sectorsize > btrfs_extent_map_end(em)) || 475 (btrfs_extent_map_block_start(em) >> SECTOR_SHIFT) != 476 orig_bio->bi_iter.bi_sector) { 477 btrfs_free_extent_map(em); 478 btrfs_unlock_extent(tree, cur, page_end, NULL); 479 folio_unlock(folio); 480 folio_put(folio); 481 break; 482 } 483 add_size = min(btrfs_extent_map_end(em), page_end + 1) - cur; 484 btrfs_free_extent_map(em); 485 btrfs_unlock_extent(tree, cur, page_end, NULL); 486 487 if (folio_contains(folio, end_index)) { 488 size_t zero_offset = offset_in_folio(folio, isize); 489 490 if (zero_offset) { 491 int zeros; 492 zeros = folio_size(folio) - zero_offset; 493 folio_zero_range(folio, zero_offset, zeros); 494 } 495 } 496 497 if (!bio_add_folio(orig_bio, folio, add_size, 498 offset_in_folio(folio, cur))) { 499 folio_unlock(folio); 500 folio_put(folio); 501 break; 502 } 503 /* 504 * If it's subpage, we also need to increase its 505 * subpage::readers number, as at endio we will decrease 506 * subpage::readers and to unlock the page. 507 */ 508 if (fs_info->sectorsize < PAGE_SIZE) 509 btrfs_folio_set_lock(fs_info, folio, cur, add_size); 510 folio_put(folio); 511 cur += add_size; 512 } 513 return 0; 514 } 515 516 /* 517 * for a compressed read, the bio we get passed has all the inode pages 518 * in it. We don't actually do IO on those pages but allocate new ones 519 * to hold the compressed pages on disk. 520 * 521 * bio->bi_iter.bi_sector points to the compressed extent on disk 522 * bio->bi_io_vec points to all of the inode pages 523 * 524 * After the compressed pages are read, we copy the bytes into the 525 * bio we were passed and then call the bio end_io calls 526 */ 527 void btrfs_submit_compressed_read(struct btrfs_bio *bbio) 528 { 529 struct btrfs_inode *inode = bbio->inode; 530 struct btrfs_fs_info *fs_info = inode->root->fs_info; 531 struct extent_map_tree *em_tree = &inode->extent_tree; 532 struct compressed_bio *cb; 533 unsigned int compressed_len; 534 const u32 min_folio_size = btrfs_min_folio_size(fs_info); 535 u64 file_offset = bbio->file_offset; 536 u64 em_len; 537 u64 em_start; 538 struct extent_map *em; 539 unsigned long pflags; 540 int memstall = 0; 541 int ret; 542 543 /* we need the actual starting offset of this extent in the file */ 544 read_lock(&em_tree->lock); 545 em = btrfs_lookup_extent_mapping(em_tree, file_offset, fs_info->sectorsize); 546 read_unlock(&em_tree->lock); 547 if (!em) { 548 ret = -EIO; 549 goto out; 550 } 551 552 ASSERT(btrfs_extent_map_is_compressed(em)); 553 compressed_len = em->disk_num_bytes; 554 555 cb = alloc_compressed_bio(inode, file_offset, REQ_OP_READ, 556 end_bbio_compressed_read); 557 558 cb->start = em->start - em->offset; 559 em_len = em->len; 560 em_start = em->start; 561 562 cb->len = bbio->bio.bi_iter.bi_size; 563 cb->compressed_len = compressed_len; 564 cb->compress_type = btrfs_extent_map_compression(em); 565 cb->orig_bbio = bbio; 566 cb->bbio.csum_search_commit_root = bbio->csum_search_commit_root; 567 568 btrfs_free_extent_map(em); 569 570 for (int i = 0; i * min_folio_size < compressed_len; i++) { 571 struct folio *folio; 572 u32 cur_len = min(compressed_len - i * min_folio_size, min_folio_size); 573 574 folio = btrfs_alloc_compr_folio(fs_info); 575 if (!folio) { 576 ret = -ENOMEM; 577 goto out_free_bio; 578 } 579 580 ret = bio_add_folio(&cb->bbio.bio, folio, cur_len, 0); 581 if (unlikely(!ret)) { 582 folio_put(folio); 583 ret = -EINVAL; 584 goto out_free_bio; 585 } 586 } 587 ASSERT(cb->bbio.bio.bi_iter.bi_size == compressed_len); 588 589 add_ra_bio_pages(&inode->vfs_inode, em_start + em_len, cb, &memstall, 590 &pflags); 591 592 cb->len = bbio->bio.bi_iter.bi_size; 593 cb->bbio.bio.bi_iter.bi_sector = bbio->bio.bi_iter.bi_sector; 594 595 if (memstall) 596 psi_memstall_leave(&pflags); 597 598 btrfs_submit_bbio(&cb->bbio, 0); 599 return; 600 601 out_free_bio: 602 cleanup_compressed_bio(cb); 603 out: 604 btrfs_bio_end_io(bbio, errno_to_blk_status(ret)); 605 } 606 607 /* 608 * Heuristic uses systematic sampling to collect data from the input data 609 * range, the logic can be tuned by the following constants: 610 * 611 * @SAMPLING_READ_SIZE - how many bytes will be copied from for each sample 612 * @SAMPLING_INTERVAL - range from which the sampled data can be collected 613 */ 614 #define SAMPLING_READ_SIZE (16) 615 #define SAMPLING_INTERVAL (256) 616 617 /* 618 * For statistical analysis of the input data we consider bytes that form a 619 * Galois Field of 256 objects. Each object has an attribute count, ie. how 620 * many times the object appeared in the sample. 621 */ 622 #define BUCKET_SIZE (256) 623 624 /* 625 * The size of the sample is based on a statistical sampling rule of thumb. 626 * The common way is to perform sampling tests as long as the number of 627 * elements in each cell is at least 5. 628 * 629 * Instead of 5, we choose 32 to obtain more accurate results. 630 * If the data contain the maximum number of symbols, which is 256, we obtain a 631 * sample size bound by 8192. 632 * 633 * For a sample of at most 8KB of data per data range: 16 consecutive bytes 634 * from up to 512 locations. 635 */ 636 #define MAX_SAMPLE_SIZE (BTRFS_MAX_UNCOMPRESSED * \ 637 SAMPLING_READ_SIZE / SAMPLING_INTERVAL) 638 639 struct bucket_item { 640 u32 count; 641 }; 642 643 struct heuristic_ws { 644 /* Partial copy of input data */ 645 u8 *sample; 646 u32 sample_size; 647 /* Buckets store counters for each byte value */ 648 struct bucket_item *bucket; 649 /* Sorting buffer */ 650 struct bucket_item *bucket_b; 651 struct list_head list; 652 }; 653 654 static void free_heuristic_ws(struct list_head *ws) 655 { 656 struct heuristic_ws *workspace; 657 658 workspace = list_entry(ws, struct heuristic_ws, list); 659 660 kvfree(workspace->sample); 661 kfree(workspace->bucket); 662 kfree(workspace->bucket_b); 663 kfree(workspace); 664 } 665 666 static struct list_head *alloc_heuristic_ws(struct btrfs_fs_info *fs_info) 667 { 668 struct heuristic_ws *ws; 669 670 ws = kzalloc_obj(*ws); 671 if (!ws) 672 return ERR_PTR(-ENOMEM); 673 674 ws->sample = kvmalloc(MAX_SAMPLE_SIZE, GFP_KERNEL); 675 if (!ws->sample) 676 goto fail; 677 678 ws->bucket = kzalloc_objs(*ws->bucket, BUCKET_SIZE); 679 if (!ws->bucket) 680 goto fail; 681 682 ws->bucket_b = kzalloc_objs(*ws->bucket_b, BUCKET_SIZE); 683 if (!ws->bucket_b) 684 goto fail; 685 686 INIT_LIST_HEAD(&ws->list); 687 return &ws->list; 688 fail: 689 free_heuristic_ws(&ws->list); 690 return ERR_PTR(-ENOMEM); 691 } 692 693 const struct btrfs_compress_levels btrfs_heuristic_compress = { 0 }; 694 695 static const struct btrfs_compress_levels * const btrfs_compress_levels[] = { 696 /* The heuristic is represented as compression type 0 */ 697 &btrfs_heuristic_compress, 698 &btrfs_zlib_compress, 699 &btrfs_lzo_compress, 700 &btrfs_zstd_compress, 701 }; 702 703 static struct list_head *alloc_workspace(struct btrfs_fs_info *fs_info, int type, int level) 704 { 705 switch (type) { 706 case BTRFS_COMPRESS_NONE: return alloc_heuristic_ws(fs_info); 707 case BTRFS_COMPRESS_ZLIB: return zlib_alloc_workspace(fs_info, level); 708 case BTRFS_COMPRESS_LZO: return lzo_alloc_workspace(fs_info); 709 case BTRFS_COMPRESS_ZSTD: return zstd_alloc_workspace(fs_info, level); 710 default: 711 /* 712 * This can't happen, the type is validated several times 713 * before we get here. 714 */ 715 BUG(); 716 } 717 } 718 719 static void free_workspace(int type, struct list_head *ws) 720 { 721 switch (type) { 722 case BTRFS_COMPRESS_NONE: return free_heuristic_ws(ws); 723 case BTRFS_COMPRESS_ZLIB: return zlib_free_workspace(ws); 724 case BTRFS_COMPRESS_LZO: return lzo_free_workspace(ws); 725 case BTRFS_COMPRESS_ZSTD: return zstd_free_workspace(ws); 726 default: 727 /* 728 * This can't happen, the type is validated several times 729 * before we get here. 730 */ 731 BUG(); 732 } 733 } 734 735 static int alloc_workspace_manager(struct btrfs_fs_info *fs_info, 736 enum btrfs_compression_type type) 737 { 738 struct workspace_manager *gwsm; 739 struct list_head *workspace; 740 741 ASSERT(fs_info->compr_wsm[type] == NULL); 742 gwsm = kzalloc_obj(*gwsm); 743 if (!gwsm) 744 return -ENOMEM; 745 746 INIT_LIST_HEAD(&gwsm->idle_ws); 747 spin_lock_init(&gwsm->ws_lock); 748 atomic_set(&gwsm->total_ws, 0); 749 init_waitqueue_head(&gwsm->ws_wait); 750 fs_info->compr_wsm[type] = gwsm; 751 752 /* 753 * Preallocate one workspace for each compression type so we can 754 * guarantee forward progress in the worst case 755 */ 756 workspace = alloc_workspace(fs_info, type, 0); 757 if (IS_ERR(workspace)) { 758 btrfs_warn(fs_info, 759 "cannot preallocate compression workspace for %s, will try later", 760 btrfs_compress_type2str(type)); 761 } else { 762 atomic_set(&gwsm->total_ws, 1); 763 gwsm->free_ws = 1; 764 list_add(workspace, &gwsm->idle_ws); 765 } 766 return 0; 767 } 768 769 static void free_workspace_manager(struct btrfs_fs_info *fs_info, 770 enum btrfs_compression_type type) 771 { 772 struct list_head *ws; 773 struct workspace_manager *gwsm = fs_info->compr_wsm[type]; 774 775 /* ZSTD uses its own workspace manager, should enter here. */ 776 ASSERT(type != BTRFS_COMPRESS_ZSTD && type < BTRFS_NR_COMPRESS_TYPES); 777 if (!gwsm) 778 return; 779 fs_info->compr_wsm[type] = NULL; 780 while (!list_empty(&gwsm->idle_ws)) { 781 ws = gwsm->idle_ws.next; 782 list_del(ws); 783 free_workspace(type, ws); 784 atomic_dec(&gwsm->total_ws); 785 } 786 kfree(gwsm); 787 } 788 789 /* 790 * This finds an available workspace or allocates a new one. 791 * If it's not possible to allocate a new one, waits until there's one. 792 * Preallocation makes a forward progress guarantees and we do not return 793 * errors. 794 */ 795 struct list_head *btrfs_get_workspace(struct btrfs_fs_info *fs_info, int type, int level) 796 { 797 struct workspace_manager *wsm = fs_info->compr_wsm[type]; 798 struct list_head *workspace; 799 int cpus = num_online_cpus(); 800 unsigned nofs_flag; 801 struct list_head *idle_ws; 802 spinlock_t *ws_lock; 803 atomic_t *total_ws; 804 wait_queue_head_t *ws_wait; 805 int *free_ws; 806 807 ASSERT(wsm); 808 idle_ws = &wsm->idle_ws; 809 ws_lock = &wsm->ws_lock; 810 total_ws = &wsm->total_ws; 811 ws_wait = &wsm->ws_wait; 812 free_ws = &wsm->free_ws; 813 814 again: 815 spin_lock(ws_lock); 816 if (!list_empty(idle_ws)) { 817 workspace = idle_ws->next; 818 list_del(workspace); 819 (*free_ws)--; 820 spin_unlock(ws_lock); 821 return workspace; 822 823 } 824 if (atomic_read(total_ws) > cpus) { 825 DEFINE_WAIT(wait); 826 827 spin_unlock(ws_lock); 828 prepare_to_wait(ws_wait, &wait, TASK_UNINTERRUPTIBLE); 829 if (atomic_read(total_ws) > cpus && !*free_ws) 830 schedule(); 831 finish_wait(ws_wait, &wait); 832 goto again; 833 } 834 atomic_inc(total_ws); 835 spin_unlock(ws_lock); 836 837 /* 838 * Allocation helpers call vmalloc that can't use GFP_NOFS, so we have 839 * to turn it off here because we might get called from the restricted 840 * context of btrfs_compress_bio/btrfs_compress_pages 841 */ 842 nofs_flag = memalloc_nofs_save(); 843 workspace = alloc_workspace(fs_info, type, level); 844 memalloc_nofs_restore(nofs_flag); 845 846 if (IS_ERR(workspace)) { 847 atomic_dec(total_ws); 848 wake_up(ws_wait); 849 850 /* 851 * Do not return the error but go back to waiting. There's a 852 * workspace preallocated for each type and the compression 853 * time is bounded so we get to a workspace eventually. This 854 * makes our caller's life easier. 855 * 856 * To prevent silent and low-probability deadlocks (when the 857 * initial preallocation fails), check if there are any 858 * workspaces at all. 859 */ 860 if (atomic_read(total_ws) == 0) { 861 static DEFINE_RATELIMIT_STATE(_rs, 862 /* once per minute */ 60 * HZ, 863 /* no burst */ 1); 864 865 if (__ratelimit(&_rs)) 866 btrfs_warn(fs_info, 867 "no compression workspaces, low memory, retrying"); 868 } 869 goto again; 870 } 871 return workspace; 872 } 873 874 static struct list_head *get_workspace(struct btrfs_fs_info *fs_info, int type, int level) 875 { 876 switch (type) { 877 case BTRFS_COMPRESS_NONE: return btrfs_get_workspace(fs_info, type, level); 878 case BTRFS_COMPRESS_ZLIB: return zlib_get_workspace(fs_info, level); 879 case BTRFS_COMPRESS_LZO: return btrfs_get_workspace(fs_info, type, level); 880 case BTRFS_COMPRESS_ZSTD: return zstd_get_workspace(fs_info, level); 881 default: 882 /* 883 * This can't happen, the type is validated several times 884 * before we get here. 885 */ 886 BUG(); 887 } 888 } 889 890 /* 891 * put a workspace struct back on the list or free it if we have enough 892 * idle ones sitting around 893 */ 894 void btrfs_put_workspace(struct btrfs_fs_info *fs_info, int type, struct list_head *ws) 895 { 896 struct workspace_manager *gwsm = fs_info->compr_wsm[type]; 897 struct list_head *idle_ws; 898 spinlock_t *ws_lock; 899 atomic_t *total_ws; 900 wait_queue_head_t *ws_wait; 901 int *free_ws; 902 903 ASSERT(gwsm); 904 idle_ws = &gwsm->idle_ws; 905 ws_lock = &gwsm->ws_lock; 906 total_ws = &gwsm->total_ws; 907 ws_wait = &gwsm->ws_wait; 908 free_ws = &gwsm->free_ws; 909 910 spin_lock(ws_lock); 911 if (*free_ws <= num_online_cpus()) { 912 list_add(ws, idle_ws); 913 (*free_ws)++; 914 spin_unlock(ws_lock); 915 goto wake; 916 } 917 spin_unlock(ws_lock); 918 919 free_workspace(type, ws); 920 atomic_dec(total_ws); 921 wake: 922 cond_wake_up(ws_wait); 923 } 924 925 static void put_workspace(struct btrfs_fs_info *fs_info, int type, struct list_head *ws) 926 { 927 switch (type) { 928 case BTRFS_COMPRESS_NONE: return btrfs_put_workspace(fs_info, type, ws); 929 case BTRFS_COMPRESS_ZLIB: return btrfs_put_workspace(fs_info, type, ws); 930 case BTRFS_COMPRESS_LZO: return btrfs_put_workspace(fs_info, type, ws); 931 case BTRFS_COMPRESS_ZSTD: return zstd_put_workspace(fs_info, ws); 932 default: 933 /* 934 * This can't happen, the type is validated several times 935 * before we get here. 936 */ 937 BUG(); 938 } 939 } 940 941 /* 942 * Adjust @level according to the limits of the compression algorithm or 943 * fallback to default 944 */ 945 static int btrfs_compress_set_level(unsigned int type, int level) 946 { 947 const struct btrfs_compress_levels *levels = btrfs_compress_levels[type]; 948 949 if (level == 0) 950 level = levels->default_level; 951 else 952 level = clamp(level, levels->min_level, levels->max_level); 953 954 return level; 955 } 956 957 /* 958 * Check whether the @level is within the valid range for the given type. 959 */ 960 bool btrfs_compress_level_valid(unsigned int type, int level) 961 { 962 const struct btrfs_compress_levels *levels = btrfs_compress_levels[type]; 963 964 return levels->min_level <= level && level <= levels->max_level; 965 } 966 967 /* Wrapper around find_get_page(), with extra error message. */ 968 int btrfs_compress_filemap_get_folio(struct address_space *mapping, u64 start, 969 struct folio **in_folio_ret) 970 { 971 struct folio *in_folio; 972 973 /* 974 * The compressed write path should have the folio locked already, thus 975 * we only need to grab one reference. 976 */ 977 in_folio = filemap_get_folio(mapping, start >> PAGE_SHIFT); 978 if (IS_ERR(in_folio)) { 979 struct btrfs_inode *inode = BTRFS_I(mapping->host); 980 981 btrfs_crit(inode->root->fs_info, 982 "failed to get page cache, root %lld ino %llu file offset %llu", 983 btrfs_root_id(inode->root), btrfs_ino(inode), start); 984 return -ENOENT; 985 } 986 *in_folio_ret = in_folio; 987 return 0; 988 } 989 990 /* 991 * Given an address space and start and length, compress the page cache 992 * contents into @cb. 993 * 994 * @type_level: is encoded algorithm and level, where level 0 means whatever 995 * default the algorithm chooses and is opaque here; 996 * - compression algo are 0-3 997 * - the level are bits 4-7 998 * 999 * @cb->bbio.bio.bi_iter.bi_size will indicate the compressed data size. 1000 * The bi_size may not be sectorsize aligned, thus the caller still need 1001 * to do the round up before submission. 1002 * 1003 * This function will allocate compressed folios with btrfs_alloc_compr_folio(), 1004 * thus callers must make sure the endio function and error handling are using 1005 * btrfs_free_compr_folio() to release those folios. 1006 * This is already done in end_bbio_compressed_write() and cleanup_compressed_bio(). 1007 */ 1008 struct compressed_bio *btrfs_compress_bio(struct btrfs_inode *inode, 1009 u64 start, u32 len, unsigned int type, 1010 int level, blk_opf_t write_flags) 1011 { 1012 struct btrfs_fs_info *fs_info = inode->root->fs_info; 1013 struct list_head *workspace; 1014 struct compressed_bio *cb; 1015 int ret; 1016 1017 cb = alloc_compressed_bio(inode, start, REQ_OP_WRITE | write_flags, 1018 end_bbio_compressed_write); 1019 cb->start = start; 1020 cb->len = len; 1021 cb->writeback = true; 1022 cb->compress_type = type; 1023 1024 level = btrfs_compress_set_level(type, level); 1025 workspace = get_workspace(fs_info, type, level); 1026 switch (type) { 1027 case BTRFS_COMPRESS_ZLIB: 1028 ret = zlib_compress_bio(workspace, cb); 1029 break; 1030 case BTRFS_COMPRESS_LZO: 1031 ret = lzo_compress_bio(workspace, cb); 1032 break; 1033 case BTRFS_COMPRESS_ZSTD: 1034 ret = zstd_compress_bio(workspace, cb); 1035 break; 1036 case BTRFS_COMPRESS_NONE: 1037 default: 1038 /* 1039 * This can happen when compression races with remount setting 1040 * it to 'no compress', while caller doesn't call 1041 * inode_need_compress() to check if we really need to 1042 * compress. 1043 * 1044 * Not a big deal, just need to inform caller that we 1045 * haven't allocated any pages yet. 1046 */ 1047 ret = -E2BIG; 1048 } 1049 1050 put_workspace(fs_info, type, workspace); 1051 if (ret < 0) { 1052 cleanup_compressed_bio(cb); 1053 return ERR_PTR(ret); 1054 } 1055 return cb; 1056 } 1057 1058 static int btrfs_decompress_bio(struct compressed_bio *cb) 1059 { 1060 struct btrfs_fs_info *fs_info = cb_to_fs_info(cb); 1061 struct list_head *workspace; 1062 int ret; 1063 int type = cb->compress_type; 1064 1065 workspace = get_workspace(fs_info, type, 0); 1066 ret = compression_decompress_bio(workspace, cb); 1067 put_workspace(fs_info, type, workspace); 1068 1069 if (!ret) 1070 zero_fill_bio(&cb->orig_bbio->bio); 1071 return ret; 1072 } 1073 1074 /* 1075 * a less complex decompression routine. Our compressed data fits in a 1076 * single page, and we want to read a single page out of it. 1077 * dest_pgoff tells us the offset into the destination folio where we write the 1078 * decompressed data. 1079 */ 1080 int btrfs_decompress(int type, const u8 *data_in, struct folio *dest_folio, 1081 unsigned long dest_pgoff, size_t srclen, size_t destlen) 1082 { 1083 struct btrfs_fs_info *fs_info = folio_to_fs_info(dest_folio); 1084 struct list_head *workspace; 1085 const u32 sectorsize = fs_info->sectorsize; 1086 int ret; 1087 1088 /* 1089 * The full destination folio range should not exceed the folio size. 1090 * And the @destlen should not exceed sectorsize, as this is only called for 1091 * inline file extents, which should not exceed sectorsize. 1092 */ 1093 ASSERT(dest_pgoff + destlen <= folio_size(dest_folio) && destlen <= sectorsize); 1094 1095 workspace = get_workspace(fs_info, type, 0); 1096 ret = compression_decompress(type, workspace, data_in, dest_folio, 1097 dest_pgoff, srclen, destlen); 1098 put_workspace(fs_info, type, workspace); 1099 1100 return ret; 1101 } 1102 1103 int btrfs_alloc_compress_wsm(struct btrfs_fs_info *fs_info) 1104 { 1105 int ret; 1106 1107 ret = alloc_workspace_manager(fs_info, BTRFS_COMPRESS_NONE); 1108 if (ret < 0) 1109 goto error; 1110 ret = alloc_workspace_manager(fs_info, BTRFS_COMPRESS_ZLIB); 1111 if (ret < 0) 1112 goto error; 1113 ret = alloc_workspace_manager(fs_info, BTRFS_COMPRESS_LZO); 1114 if (ret < 0) 1115 goto error; 1116 ret = zstd_alloc_workspace_manager(fs_info); 1117 if (ret < 0) 1118 goto error; 1119 return 0; 1120 error: 1121 btrfs_free_compress_wsm(fs_info); 1122 return ret; 1123 } 1124 1125 void btrfs_free_compress_wsm(struct btrfs_fs_info *fs_info) 1126 { 1127 free_workspace_manager(fs_info, BTRFS_COMPRESS_NONE); 1128 free_workspace_manager(fs_info, BTRFS_COMPRESS_ZLIB); 1129 free_workspace_manager(fs_info, BTRFS_COMPRESS_LZO); 1130 zstd_free_workspace_manager(fs_info); 1131 } 1132 1133 int __init btrfs_init_compress(void) 1134 { 1135 if (bioset_init(&btrfs_compressed_bioset, BIO_POOL_SIZE, 1136 offsetof(struct compressed_bio, bbio.bio), 1137 BIOSET_NEED_BVECS)) 1138 return -ENOMEM; 1139 1140 compr_pool.shrinker = shrinker_alloc(SHRINKER_NONSLAB, "btrfs-compr-pages"); 1141 if (!compr_pool.shrinker) 1142 return -ENOMEM; 1143 1144 spin_lock_init(&compr_pool.lock); 1145 INIT_LIST_HEAD(&compr_pool.list); 1146 compr_pool.count = 0; 1147 /* 128K / 4K = 32, for 8 threads is 256 pages. */ 1148 compr_pool.thresh = BTRFS_MAX_COMPRESSED / PAGE_SIZE * 8; 1149 compr_pool.shrinker->count_objects = btrfs_compr_pool_count; 1150 compr_pool.shrinker->scan_objects = btrfs_compr_pool_scan; 1151 compr_pool.shrinker->batch = 32; 1152 compr_pool.shrinker->seeks = DEFAULT_SEEKS; 1153 shrinker_register(compr_pool.shrinker); 1154 1155 return 0; 1156 } 1157 1158 void __cold btrfs_exit_compress(void) 1159 { 1160 /* For now scan drains all pages and does not touch the parameters. */ 1161 btrfs_compr_pool_scan(NULL, NULL); 1162 shrinker_free(compr_pool.shrinker); 1163 1164 bioset_exit(&btrfs_compressed_bioset); 1165 } 1166 1167 /* 1168 * The bvec is a single page bvec from a bio that contains folios from a filemap. 1169 * 1170 * Since the folio may be a large one, and if the bv_page is not a head page of 1171 * a large folio, then page->index is unreliable. 1172 * 1173 * Thus we need this helper to grab the proper file offset. 1174 */ 1175 static u64 file_offset_from_bvec(const struct bio_vec *bvec) 1176 { 1177 const struct page *page = bvec->bv_page; 1178 const struct folio *folio = page_folio(page); 1179 1180 return (page_pgoff(folio, page) << PAGE_SHIFT) + bvec->bv_offset; 1181 } 1182 1183 /* 1184 * Copy decompressed data from working buffer to pages. 1185 * 1186 * @buf: The decompressed data buffer 1187 * @buf_len: The decompressed data length 1188 * @decompressed: Number of bytes that are already decompressed inside the 1189 * compressed extent 1190 * @cb: The compressed extent descriptor 1191 * @orig_bio: The original bio that the caller wants to read for 1192 * 1193 * An easier to understand graph is like below: 1194 * 1195 * |<- orig_bio ->| |<- orig_bio->| 1196 * |<------- full decompressed extent ----->| 1197 * |<----------- @cb range ---->| 1198 * | |<-- @buf_len -->| 1199 * |<--- @decompressed --->| 1200 * 1201 * Note that, @cb can be a subpage of the full decompressed extent, but 1202 * @cb->start always has the same as the orig_file_offset value of the full 1203 * decompressed extent. 1204 * 1205 * When reading compressed extent, we have to read the full compressed extent, 1206 * while @orig_bio may only want part of the range. 1207 * Thus this function will ensure only data covered by @orig_bio will be copied 1208 * to. 1209 * 1210 * Return 0 if we have copied all needed contents for @orig_bio. 1211 * Return >0 if we need continue decompress. 1212 */ 1213 int btrfs_decompress_buf2page(const char *buf, u32 buf_len, 1214 struct compressed_bio *cb, u32 decompressed) 1215 { 1216 struct bio *orig_bio = &cb->orig_bbio->bio; 1217 /* Offset inside the full decompressed extent */ 1218 u32 cur_offset; 1219 1220 cur_offset = decompressed; 1221 /* The main loop to do the copy */ 1222 while (cur_offset < decompressed + buf_len) { 1223 struct bio_vec bvec; 1224 size_t copy_len; 1225 u32 copy_start; 1226 /* Offset inside the full decompressed extent */ 1227 u32 bvec_offset; 1228 void *kaddr; 1229 1230 bvec = bio_iter_iovec(orig_bio, orig_bio->bi_iter); 1231 /* 1232 * cb->start may underflow, but subtracting that value can still 1233 * give us correct offset inside the full decompressed extent. 1234 */ 1235 bvec_offset = file_offset_from_bvec(&bvec) - cb->start; 1236 1237 /* Haven't reached the bvec range, exit */ 1238 if (decompressed + buf_len <= bvec_offset) 1239 return 1; 1240 1241 copy_start = max(cur_offset, bvec_offset); 1242 copy_len = min(bvec_offset + bvec.bv_len, 1243 decompressed + buf_len) - copy_start; 1244 ASSERT(copy_len); 1245 1246 /* 1247 * Extra range check to ensure we didn't go beyond 1248 * @buf + @buf_len. 1249 */ 1250 ASSERT(copy_start - decompressed < buf_len); 1251 1252 kaddr = bvec_kmap_local(&bvec); 1253 memcpy(kaddr, buf + copy_start - decompressed, copy_len); 1254 kunmap_local(kaddr); 1255 1256 cur_offset += copy_len; 1257 bio_advance(orig_bio, copy_len); 1258 /* Finished the bio */ 1259 if (!orig_bio->bi_iter.bi_size) 1260 return 0; 1261 } 1262 return 1; 1263 } 1264 1265 /* 1266 * Shannon Entropy calculation 1267 * 1268 * Pure byte distribution analysis fails to determine compressibility of data. 1269 * Try calculating entropy to estimate the average minimum number of bits 1270 * needed to encode the sampled data. 1271 * 1272 * For convenience, return the percentage of needed bits, instead of amount of 1273 * bits directly. 1274 * 1275 * @ENTROPY_LVL_ACEPTABLE - below that threshold, sample has low byte entropy 1276 * and can be compressible with high probability 1277 * 1278 * @ENTROPY_LVL_HIGH - data are not compressible with high probability 1279 * 1280 * Use of ilog2() decreases precision, we lower the LVL to 5 to compensate. 1281 */ 1282 #define ENTROPY_LVL_ACEPTABLE (65) 1283 #define ENTROPY_LVL_HIGH (80) 1284 1285 /* 1286 * For increased precision in shannon_entropy calculation, 1287 * let's do pow(n, M) to save more digits after comma: 1288 * 1289 * - maximum int bit length is 64 1290 * - ilog2(MAX_SAMPLE_SIZE) -> 13 1291 * - 13 * 4 = 52 < 64 -> M = 4 1292 * 1293 * So use pow(n, 4). 1294 */ 1295 static inline u32 ilog2_w(u64 n) 1296 { 1297 return ilog2(n * n * n * n); 1298 } 1299 1300 static u32 shannon_entropy(struct heuristic_ws *ws) 1301 { 1302 const u32 entropy_max = 8 * ilog2_w(2); 1303 u32 entropy_sum = 0; 1304 u32 p, p_base, sz_base; 1305 u32 i; 1306 1307 sz_base = ilog2_w(ws->sample_size); 1308 for (i = 0; i < BUCKET_SIZE && ws->bucket[i].count > 0; i++) { 1309 p = ws->bucket[i].count; 1310 p_base = ilog2_w(p); 1311 entropy_sum += p * (sz_base - p_base); 1312 } 1313 1314 entropy_sum /= ws->sample_size; 1315 return entropy_sum * 100 / entropy_max; 1316 } 1317 1318 #define RADIX_BASE 4U 1319 #define COUNTERS_SIZE (1U << RADIX_BASE) 1320 1321 static u8 get4bits(u64 num, int shift) { 1322 u8 low4bits; 1323 1324 num >>= shift; 1325 /* Reverse order */ 1326 low4bits = (COUNTERS_SIZE - 1) - (num % COUNTERS_SIZE); 1327 return low4bits; 1328 } 1329 1330 /* 1331 * Use 4 bits as radix base 1332 * Use 16 u32 counters for calculating new position in buf array 1333 * 1334 * @array - array that will be sorted 1335 * @array_buf - buffer array to store sorting results 1336 * must be equal in size to @array 1337 * @num - array size 1338 */ 1339 static void radix_sort(struct bucket_item *array, struct bucket_item *array_buf, 1340 int num) 1341 { 1342 u64 max_num; 1343 u64 buf_num; 1344 u32 counters[COUNTERS_SIZE]; 1345 u32 new_addr; 1346 u32 addr; 1347 int bitlen; 1348 int shift; 1349 int i; 1350 1351 /* 1352 * Try avoid useless loop iterations for small numbers stored in big 1353 * counters. Example: 48 33 4 ... in 64bit array 1354 */ 1355 max_num = array[0].count; 1356 for (i = 1; i < num; i++) { 1357 buf_num = array[i].count; 1358 if (buf_num > max_num) 1359 max_num = buf_num; 1360 } 1361 1362 buf_num = ilog2(max_num); 1363 bitlen = ALIGN(buf_num, RADIX_BASE * 2); 1364 1365 shift = 0; 1366 while (shift < bitlen) { 1367 memset(counters, 0, sizeof(counters)); 1368 1369 for (i = 0; i < num; i++) { 1370 buf_num = array[i].count; 1371 addr = get4bits(buf_num, shift); 1372 counters[addr]++; 1373 } 1374 1375 for (i = 1; i < COUNTERS_SIZE; i++) 1376 counters[i] += counters[i - 1]; 1377 1378 for (i = num - 1; i >= 0; i--) { 1379 buf_num = array[i].count; 1380 addr = get4bits(buf_num, shift); 1381 counters[addr]--; 1382 new_addr = counters[addr]; 1383 array_buf[new_addr] = array[i]; 1384 } 1385 1386 shift += RADIX_BASE; 1387 1388 /* 1389 * Normal radix expects to move data from a temporary array, to 1390 * the main one. But that requires some CPU time. Avoid that 1391 * by doing another sort iteration to original array instead of 1392 * memcpy() 1393 */ 1394 memset(counters, 0, sizeof(counters)); 1395 1396 for (i = 0; i < num; i ++) { 1397 buf_num = array_buf[i].count; 1398 addr = get4bits(buf_num, shift); 1399 counters[addr]++; 1400 } 1401 1402 for (i = 1; i < COUNTERS_SIZE; i++) 1403 counters[i] += counters[i - 1]; 1404 1405 for (i = num - 1; i >= 0; i--) { 1406 buf_num = array_buf[i].count; 1407 addr = get4bits(buf_num, shift); 1408 counters[addr]--; 1409 new_addr = counters[addr]; 1410 array[new_addr] = array_buf[i]; 1411 } 1412 1413 shift += RADIX_BASE; 1414 } 1415 } 1416 1417 /* 1418 * Size of the core byte set - how many bytes cover 90% of the sample 1419 * 1420 * There are several types of structured binary data that use nearly all byte 1421 * values. The distribution can be uniform and counts in all buckets will be 1422 * nearly the same (eg. encrypted data). Unlikely to be compressible. 1423 * 1424 * Other possibility is normal (Gaussian) distribution, where the data could 1425 * be potentially compressible, but we have to take a few more steps to decide 1426 * how much. 1427 * 1428 * @BYTE_CORE_SET_LOW - main part of byte values repeated frequently, 1429 * compression algo can easy fix that 1430 * @BYTE_CORE_SET_HIGH - data have uniform distribution and with high 1431 * probability is not compressible 1432 */ 1433 #define BYTE_CORE_SET_LOW (64) 1434 #define BYTE_CORE_SET_HIGH (200) 1435 1436 static int byte_core_set_size(struct heuristic_ws *ws) 1437 { 1438 u32 i; 1439 u32 coreset_sum = 0; 1440 const u32 core_set_threshold = ws->sample_size * 90 / 100; 1441 struct bucket_item *bucket = ws->bucket; 1442 1443 /* Sort in reverse order */ 1444 radix_sort(ws->bucket, ws->bucket_b, BUCKET_SIZE); 1445 1446 for (i = 0; i < BYTE_CORE_SET_LOW; i++) 1447 coreset_sum += bucket[i].count; 1448 1449 if (coreset_sum > core_set_threshold) 1450 return i; 1451 1452 for (; i < BYTE_CORE_SET_HIGH && bucket[i].count > 0; i++) { 1453 coreset_sum += bucket[i].count; 1454 if (coreset_sum > core_set_threshold) 1455 break; 1456 } 1457 1458 return i; 1459 } 1460 1461 /* 1462 * Count byte values in buckets. 1463 * This heuristic can detect textual data (configs, xml, json, html, etc). 1464 * Because in most text-like data byte set is restricted to limited number of 1465 * possible characters, and that restriction in most cases makes data easy to 1466 * compress. 1467 * 1468 * @BYTE_SET_THRESHOLD - consider all data within this byte set size: 1469 * less - compressible 1470 * more - need additional analysis 1471 */ 1472 #define BYTE_SET_THRESHOLD (64) 1473 1474 static u32 byte_set_size(const struct heuristic_ws *ws) 1475 { 1476 u32 i; 1477 u32 byte_set_size = 0; 1478 1479 for (i = 0; i < BYTE_SET_THRESHOLD; i++) { 1480 if (ws->bucket[i].count > 0) 1481 byte_set_size++; 1482 } 1483 1484 /* 1485 * Continue collecting count of byte values in buckets. If the byte 1486 * set size is bigger then the threshold, it's pointless to continue, 1487 * the detection technique would fail for this type of data. 1488 */ 1489 for (; i < BUCKET_SIZE; i++) { 1490 if (ws->bucket[i].count > 0) { 1491 byte_set_size++; 1492 if (byte_set_size > BYTE_SET_THRESHOLD) 1493 return byte_set_size; 1494 } 1495 } 1496 1497 return byte_set_size; 1498 } 1499 1500 static bool sample_repeated_patterns(struct heuristic_ws *ws) 1501 { 1502 const u32 half_of_sample = ws->sample_size / 2; 1503 const u8 *data = ws->sample; 1504 1505 return memcmp(&data[0], &data[half_of_sample], half_of_sample) == 0; 1506 } 1507 1508 static void heuristic_collect_sample(struct inode *inode, u64 start, u64 end, 1509 struct heuristic_ws *ws) 1510 { 1511 struct page *page; 1512 pgoff_t index, index_end; 1513 u32 i, curr_sample_pos; 1514 u8 *in_data; 1515 1516 /* 1517 * Compression handles the input data by chunks of 128KiB 1518 * (defined by BTRFS_MAX_UNCOMPRESSED) 1519 * 1520 * We do the same for the heuristic and loop over the whole range. 1521 * 1522 * MAX_SAMPLE_SIZE - calculated under assumption that heuristic will 1523 * process no more than BTRFS_MAX_UNCOMPRESSED at a time. 1524 */ 1525 if (end - start > BTRFS_MAX_UNCOMPRESSED) 1526 end = start + BTRFS_MAX_UNCOMPRESSED; 1527 1528 index = start >> PAGE_SHIFT; 1529 index_end = end >> PAGE_SHIFT; 1530 1531 /* Don't miss unaligned end */ 1532 if (!PAGE_ALIGNED(end)) 1533 index_end++; 1534 1535 curr_sample_pos = 0; 1536 while (index < index_end) { 1537 page = find_get_page(inode->i_mapping, index); 1538 in_data = kmap_local_page(page); 1539 /* Handle case where the start is not aligned to PAGE_SIZE */ 1540 i = start % PAGE_SIZE; 1541 while (i < PAGE_SIZE - SAMPLING_READ_SIZE) { 1542 /* Don't sample any garbage from the last page */ 1543 if (start > end - SAMPLING_READ_SIZE) 1544 break; 1545 memcpy(&ws->sample[curr_sample_pos], &in_data[i], 1546 SAMPLING_READ_SIZE); 1547 i += SAMPLING_INTERVAL; 1548 start += SAMPLING_INTERVAL; 1549 curr_sample_pos += SAMPLING_READ_SIZE; 1550 } 1551 kunmap_local(in_data); 1552 put_page(page); 1553 1554 index++; 1555 } 1556 1557 ws->sample_size = curr_sample_pos; 1558 } 1559 1560 /* 1561 * Compression heuristic. 1562 * 1563 * The following types of analysis can be performed: 1564 * - detect mostly zero data 1565 * - detect data with low "byte set" size (text, etc) 1566 * - detect data with low/high "core byte" set 1567 * 1568 * Return non-zero if the compression should be done, 0 otherwise. 1569 */ 1570 int btrfs_compress_heuristic(struct btrfs_inode *inode, u64 start, u64 end) 1571 { 1572 struct btrfs_fs_info *fs_info = inode->root->fs_info; 1573 struct list_head *ws_list = get_workspace(fs_info, 0, 0); 1574 struct heuristic_ws *ws; 1575 u32 i; 1576 u8 byte; 1577 int ret = 0; 1578 1579 ws = list_entry(ws_list, struct heuristic_ws, list); 1580 1581 heuristic_collect_sample(&inode->vfs_inode, start, end, ws); 1582 1583 if (sample_repeated_patterns(ws)) { 1584 ret = 1; 1585 goto out; 1586 } 1587 1588 memset(ws->bucket, 0, sizeof(*ws->bucket)*BUCKET_SIZE); 1589 1590 for (i = 0; i < ws->sample_size; i++) { 1591 byte = ws->sample[i]; 1592 ws->bucket[byte].count++; 1593 } 1594 1595 i = byte_set_size(ws); 1596 if (i < BYTE_SET_THRESHOLD) { 1597 ret = 2; 1598 goto out; 1599 } 1600 1601 i = byte_core_set_size(ws); 1602 if (i <= BYTE_CORE_SET_LOW) { 1603 ret = 3; 1604 goto out; 1605 } 1606 1607 if (i >= BYTE_CORE_SET_HIGH) { 1608 ret = 0; 1609 goto out; 1610 } 1611 1612 i = shannon_entropy(ws); 1613 if (i <= ENTROPY_LVL_ACEPTABLE) { 1614 ret = 4; 1615 goto out; 1616 } 1617 1618 /* 1619 * For the levels below ENTROPY_LVL_HIGH, additional analysis would be 1620 * needed to give green light to compression. 1621 * 1622 * For now just assume that compression at that level is not worth the 1623 * resources because: 1624 * 1625 * 1. it is possible to defrag the data later 1626 * 1627 * 2. the data would turn out to be hardly compressible, eg. 150 byte 1628 * values, every bucket has counter at level ~54. The heuristic would 1629 * be confused. This can happen when data have some internal repeated 1630 * patterns like "abbacbbc...". This can be detected by analyzing 1631 * pairs of bytes, which is too costly. 1632 */ 1633 if (i < ENTROPY_LVL_HIGH) { 1634 ret = 5; 1635 goto out; 1636 } else { 1637 ret = 0; 1638 goto out; 1639 } 1640 1641 out: 1642 put_workspace(fs_info, 0, ws_list); 1643 return ret; 1644 } 1645 1646 /* 1647 * Convert the compression suffix (eg. after "zlib" starting with ":") to level. 1648 * 1649 * If the resulting level exceeds the algo's supported levels, it will be clamped. 1650 * 1651 * Return <0 if no valid string can be found. 1652 * Return 0 if everything is fine. 1653 */ 1654 int btrfs_compress_str2level(unsigned int type, const char *str, int *level_ret) 1655 { 1656 int level = 0; 1657 int ret; 1658 1659 if (!type) { 1660 *level_ret = btrfs_compress_set_level(type, level); 1661 return 0; 1662 } 1663 1664 if (str[0] == ':') { 1665 ret = kstrtoint(str + 1, 10, &level); 1666 if (ret) 1667 return ret; 1668 } 1669 1670 *level_ret = btrfs_compress_set_level(type, level); 1671 return 0; 1672 } 1673