David Sterba | 9888c34 | 2018-04-03 19:16:55 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2008 Oracle. All rights reserved. |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 4 | */ |
| 5 | |
David Sterba | 9888c34 | 2018-04-03 19:16:55 +0200 | [diff] [blame] | 6 | #ifndef BTRFS_COMPRESSION_H |
| 7 | #define BTRFS_COMPRESSION_H |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 8 | |
Qu Wenruo | d5c1d68 | 2018-05-17 13:52:22 +0800 | [diff] [blame] | 9 | #include <linux/sizes.h> |
| 10 | |
Nikolay Borisov | c7ee181 | 2020-06-03 08:55:16 +0300 | [diff] [blame] | 11 | struct btrfs_inode; |
| 12 | |
David Sterba | ff76386 | 2017-02-14 19:30:39 +0100 | [diff] [blame] | 13 | /* |
| 14 | * We want to make sure that amount of RAM required to uncompress an extent is |
| 15 | * reasonable, so we limit the total size in ram of a compressed extent to |
| 16 | * 128k. This is a crucial number because it also controls how easily we can |
| 17 | * spread reads across cpus for decompression. |
| 18 | * |
| 19 | * We also want to make sure the amount of IO required to do a random read is |
| 20 | * reasonably small, so we limit the size of a compressed extent to 128k. |
| 21 | */ |
| 22 | |
| 23 | /* Maximum length of compressed data stored on disk */ |
| 24 | #define BTRFS_MAX_COMPRESSED (SZ_128K) |
| 25 | /* Maximum size of data before compression */ |
| 26 | #define BTRFS_MAX_UNCOMPRESSED (SZ_128K) |
| 27 | |
Qu Wenruo | eae8d82 | 2017-11-06 10:43:18 +0800 | [diff] [blame] | 28 | #define BTRFS_ZLIB_DEFAULT_LEVEL 3 |
| 29 | |
Anand Jain | e1ddce7 | 2017-05-26 15:44:59 +0800 | [diff] [blame] | 30 | struct compressed_bio { |
Qu Wenruo | 6ec9765 | 2021-09-27 15:21:48 +0800 | [diff] [blame] | 31 | /* Number of sectors with unfinished IO (unsubmitted or unfinished) */ |
| 32 | refcount_t pending_sectors; |
Anand Jain | e1ddce7 | 2017-05-26 15:44:59 +0800 | [diff] [blame] | 33 | |
David Sterba | 282ab3f | 2019-10-14 14:38:33 +0200 | [diff] [blame] | 34 | /* Number of compressed pages in the array */ |
| 35 | unsigned int nr_pages; |
| 36 | |
Anand Jain | e1ddce7 | 2017-05-26 15:44:59 +0800 | [diff] [blame] | 37 | /* the pages with the compressed data on them */ |
| 38 | struct page **compressed_pages; |
| 39 | |
| 40 | /* inode that owns this data */ |
| 41 | struct inode *inode; |
| 42 | |
| 43 | /* starting offset in the inode for our pages */ |
| 44 | u64 start; |
| 45 | |
David Sterba | 282ab3f | 2019-10-14 14:38:33 +0200 | [diff] [blame] | 46 | /* Number of bytes in the inode we're working on */ |
| 47 | unsigned int len; |
Anand Jain | e1ddce7 | 2017-05-26 15:44:59 +0800 | [diff] [blame] | 48 | |
David Sterba | 282ab3f | 2019-10-14 14:38:33 +0200 | [diff] [blame] | 49 | /* Number of bytes on disk */ |
| 50 | unsigned int compressed_len; |
Anand Jain | e1ddce7 | 2017-05-26 15:44:59 +0800 | [diff] [blame] | 51 | |
David Sterba | 282ab3f | 2019-10-14 14:38:33 +0200 | [diff] [blame] | 52 | /* The compression algorithm for this bio */ |
| 53 | u8 compress_type; |
Anand Jain | e1ddce7 | 2017-05-26 15:44:59 +0800 | [diff] [blame] | 54 | |
| 55 | /* IO errors */ |
David Sterba | 282ab3f | 2019-10-14 14:38:33 +0200 | [diff] [blame] | 56 | u8 errors; |
Anand Jain | e1ddce7 | 2017-05-26 15:44:59 +0800 | [diff] [blame] | 57 | int mirror_num; |
| 58 | |
| 59 | /* for reads, this is the bio we are copying the data into */ |
| 60 | struct bio *orig_bio; |
| 61 | |
| 62 | /* |
| 63 | * the start of a variable length array of checksums only |
| 64 | * used by reads |
| 65 | */ |
Johannes Thumshirn | 10fe6ca | 2019-05-22 10:19:02 +0200 | [diff] [blame] | 66 | u8 sums[]; |
Anand Jain | e1ddce7 | 2017-05-26 15:44:59 +0800 | [diff] [blame] | 67 | }; |
| 68 | |
Dennis Zhou | 1972708 | 2019-02-04 15:19:57 -0500 | [diff] [blame] | 69 | static inline unsigned int btrfs_compress_type(unsigned int type_level) |
| 70 | { |
| 71 | return (type_level & 0xF); |
| 72 | } |
| 73 | |
| 74 | static inline unsigned int btrfs_compress_level(unsigned int type_level) |
| 75 | { |
| 76 | return ((type_level & 0xF0) >> 4); |
| 77 | } |
| 78 | |
Liu Bo | f5c29bd | 2017-11-02 17:21:50 -0600 | [diff] [blame] | 79 | void __init btrfs_init_compress(void); |
David Sterba | e67c718 | 2018-02-19 17:24:18 +0100 | [diff] [blame] | 80 | void __cold btrfs_exit_compress(void); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 81 | |
David Sterba | f51d2b5 | 2017-09-15 17:36:57 +0200 | [diff] [blame] | 82 | int btrfs_compress_pages(unsigned int type_level, struct address_space *mapping, |
David Sterba | 38c3146 | 2017-02-14 19:04:07 +0100 | [diff] [blame] | 83 | u64 start, struct page **pages, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 84 | unsigned long *out_pages, |
| 85 | unsigned long *total_in, |
David Sterba | e5d7490 | 2017-02-14 19:45:05 +0100 | [diff] [blame] | 86 | unsigned long *total_out); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 87 | int btrfs_decompress(int type, unsigned char *data_in, struct page *dest_page, |
| 88 | unsigned long start_byte, size_t srclen, size_t destlen); |
Qu Wenruo | 1c3dc17 | 2021-07-05 10:00:58 +0800 | [diff] [blame] | 89 | int btrfs_decompress_buf2page(const char *buf, u32 buf_len, |
| 90 | struct compressed_bio *cb, u32 decompressed); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 91 | |
Nikolay Borisov | c7ee181 | 2020-06-03 08:55:16 +0300 | [diff] [blame] | 92 | blk_status_t btrfs_submit_compressed_write(struct btrfs_inode *inode, u64 start, |
Anand Jain | 65b5355 | 2021-05-29 17:48:35 +0800 | [diff] [blame] | 93 | unsigned int len, u64 disk_start, |
| 94 | unsigned int compressed_len, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 95 | struct page **compressed_pages, |
Anand Jain | 65b5355 | 2021-05-29 17:48:35 +0800 | [diff] [blame] | 96 | unsigned int nr_pages, |
Chris Mason | ec39f76 | 2019-07-10 12:28:17 -0700 | [diff] [blame] | 97 | unsigned int write_flags, |
| 98 | struct cgroup_subsys_state *blkcg_css); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 99 | blk_status_t btrfs_submit_compressed_read(struct inode *inode, struct bio *bio, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 100 | int mirror_num, unsigned long bio_flags); |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 101 | |
Dennis Zhou | d0ab62c | 2019-02-04 15:20:05 -0500 | [diff] [blame] | 102 | unsigned int btrfs_compress_str2level(unsigned int type, const char *str); |
David Sterba | f51d2b5 | 2017-09-15 17:36:57 +0200 | [diff] [blame] | 103 | |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 104 | enum btrfs_compression_type { |
| 105 | BTRFS_COMPRESS_NONE = 0, |
| 106 | BTRFS_COMPRESS_ZLIB = 1, |
| 107 | BTRFS_COMPRESS_LZO = 2, |
Nick Terrell | 5c1aab1 | 2017-08-09 19:39:02 -0700 | [diff] [blame] | 108 | BTRFS_COMPRESS_ZSTD = 3, |
Chengguang Xu | ce96b7f | 2019-10-10 15:59:57 +0800 | [diff] [blame] | 109 | BTRFS_NR_COMPRESS_TYPES = 4, |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 110 | }; |
| 111 | |
Dennis Zhou | 92ee5530 | 2019-02-04 15:20:03 -0500 | [diff] [blame] | 112 | struct workspace_manager { |
Dennis Zhou | 92ee5530 | 2019-02-04 15:20:03 -0500 | [diff] [blame] | 113 | struct list_head idle_ws; |
| 114 | spinlock_t ws_lock; |
| 115 | /* Number of free workspaces */ |
| 116 | int free_ws; |
| 117 | /* Total number of allocated workspaces */ |
| 118 | atomic_t total_ws; |
| 119 | /* Waiters for a free workspace */ |
| 120 | wait_queue_head_t ws_wait; |
| 121 | }; |
| 122 | |
David Sterba | 5907a9b | 2019-10-04 02:50:28 +0200 | [diff] [blame] | 123 | struct list_head *btrfs_get_workspace(int type, unsigned int level); |
David Sterba | a3bbd2a | 2019-10-04 02:50:28 +0200 | [diff] [blame] | 124 | void btrfs_put_workspace(int type, struct list_head *ws); |
Dennis Zhou | 92ee5530 | 2019-02-04 15:20:03 -0500 | [diff] [blame] | 125 | |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 126 | struct btrfs_compress_op { |
David Sterba | be951045 | 2019-10-02 00:53:31 +0200 | [diff] [blame] | 127 | struct workspace_manager *workspace_manager; |
David Sterba | e18333a | 2019-08-09 16:25:34 +0200 | [diff] [blame] | 128 | /* Maximum level supported by the compression algorithm */ |
| 129 | unsigned int max_level; |
| 130 | unsigned int default_level; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 131 | }; |
| 132 | |
Dennis Zhou | ca4ac36 | 2019-02-04 15:19:59 -0500 | [diff] [blame] | 133 | /* The heuristic workspaces are managed via the 0th workspace manager */ |
Chengguang Xu | ce96b7f | 2019-10-10 15:59:57 +0800 | [diff] [blame] | 134 | #define BTRFS_NR_WORKSPACE_MANAGERS BTRFS_NR_COMPRESS_TYPES |
Dennis Zhou | ca4ac36 | 2019-02-04 15:19:59 -0500 | [diff] [blame] | 135 | |
| 136 | extern const struct btrfs_compress_op btrfs_heuristic_compress; |
David Sterba | e8c9f18 | 2015-01-02 18:23:10 +0100 | [diff] [blame] | 137 | extern const struct btrfs_compress_op btrfs_zlib_compress; |
| 138 | extern const struct btrfs_compress_op btrfs_lzo_compress; |
Nick Terrell | 5c1aab1 | 2017-08-09 19:39:02 -0700 | [diff] [blame] | 139 | extern const struct btrfs_compress_op btrfs_zstd_compress; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 140 | |
David Sterba | e128f9c | 2017-10-31 17:24:26 +0100 | [diff] [blame] | 141 | const char* btrfs_compress_type2str(enum btrfs_compression_type type); |
Johannes Thumshirn | aa53e3b | 2019-06-06 12:07:15 +0200 | [diff] [blame] | 142 | bool btrfs_compress_is_valid_type(const char *str, size_t len); |
David Sterba | e128f9c | 2017-10-31 17:24:26 +0100 | [diff] [blame] | 143 | |
Timofey Titovets | c2fcdcd | 2017-07-17 16:52:58 +0300 | [diff] [blame] | 144 | int btrfs_compress_heuristic(struct inode *inode, u64 start, u64 end); |
| 145 | |
David Sterba | cb4c919 | 2020-08-17 10:58:38 +0200 | [diff] [blame] | 146 | int zlib_compress_pages(struct list_head *ws, struct address_space *mapping, |
| 147 | u64 start, struct page **pages, unsigned long *out_pages, |
| 148 | unsigned long *total_in, unsigned long *total_out); |
| 149 | int zlib_decompress_bio(struct list_head *ws, struct compressed_bio *cb); |
| 150 | int zlib_decompress(struct list_head *ws, unsigned char *data_in, |
| 151 | struct page *dest_page, unsigned long start_byte, size_t srclen, |
| 152 | size_t destlen); |
| 153 | struct list_head *zlib_alloc_workspace(unsigned int level); |
| 154 | void zlib_free_workspace(struct list_head *ws); |
| 155 | struct list_head *zlib_get_workspace(unsigned int level); |
| 156 | |
| 157 | int lzo_compress_pages(struct list_head *ws, struct address_space *mapping, |
| 158 | u64 start, struct page **pages, unsigned long *out_pages, |
| 159 | unsigned long *total_in, unsigned long *total_out); |
| 160 | int lzo_decompress_bio(struct list_head *ws, struct compressed_bio *cb); |
| 161 | int lzo_decompress(struct list_head *ws, unsigned char *data_in, |
| 162 | struct page *dest_page, unsigned long start_byte, size_t srclen, |
| 163 | size_t destlen); |
| 164 | struct list_head *lzo_alloc_workspace(unsigned int level); |
| 165 | void lzo_free_workspace(struct list_head *ws); |
| 166 | |
| 167 | int zstd_compress_pages(struct list_head *ws, struct address_space *mapping, |
| 168 | u64 start, struct page **pages, unsigned long *out_pages, |
| 169 | unsigned long *total_in, unsigned long *total_out); |
| 170 | int zstd_decompress_bio(struct list_head *ws, struct compressed_bio *cb); |
| 171 | int zstd_decompress(struct list_head *ws, unsigned char *data_in, |
| 172 | struct page *dest_page, unsigned long start_byte, size_t srclen, |
| 173 | size_t destlen); |
| 174 | void zstd_init_workspace_manager(void); |
| 175 | void zstd_cleanup_workspace_manager(void); |
| 176 | struct list_head *zstd_alloc_workspace(unsigned int level); |
| 177 | void zstd_free_workspace(struct list_head *ws); |
| 178 | struct list_head *zstd_get_workspace(unsigned int level); |
| 179 | void zstd_put_workspace(struct list_head *ws); |
| 180 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 181 | #endif |