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 | |
David Sterba | ff76386 | 2017-02-14 19:30:39 +0100 | [diff] [blame] | 11 | /* |
| 12 | * We want to make sure that amount of RAM required to uncompress an extent is |
| 13 | * reasonable, so we limit the total size in ram of a compressed extent to |
| 14 | * 128k. This is a crucial number because it also controls how easily we can |
| 15 | * spread reads across cpus for decompression. |
| 16 | * |
| 17 | * We also want to make sure the amount of IO required to do a random read is |
| 18 | * reasonably small, so we limit the size of a compressed extent to 128k. |
| 19 | */ |
| 20 | |
| 21 | /* Maximum length of compressed data stored on disk */ |
| 22 | #define BTRFS_MAX_COMPRESSED (SZ_128K) |
| 23 | /* Maximum size of data before compression */ |
| 24 | #define BTRFS_MAX_UNCOMPRESSED (SZ_128K) |
| 25 | |
Qu Wenruo | eae8d82 | 2017-11-06 10:43:18 +0800 | [diff] [blame] | 26 | #define BTRFS_ZLIB_DEFAULT_LEVEL 3 |
| 27 | |
Anand Jain | e1ddce7 | 2017-05-26 15:44:59 +0800 | [diff] [blame] | 28 | struct compressed_bio { |
| 29 | /* number of bios pending for this compressed extent */ |
| 30 | refcount_t pending_bios; |
| 31 | |
| 32 | /* the pages with the compressed data on them */ |
| 33 | struct page **compressed_pages; |
| 34 | |
| 35 | /* inode that owns this data */ |
| 36 | struct inode *inode; |
| 37 | |
| 38 | /* starting offset in the inode for our pages */ |
| 39 | u64 start; |
| 40 | |
| 41 | /* number of bytes in the inode we're working on */ |
| 42 | unsigned long len; |
| 43 | |
| 44 | /* number of bytes on disk */ |
| 45 | unsigned long compressed_len; |
| 46 | |
| 47 | /* the compression algorithm for this bio */ |
| 48 | int compress_type; |
| 49 | |
| 50 | /* number of compressed pages in the array */ |
| 51 | unsigned long nr_pages; |
| 52 | |
| 53 | /* IO errors */ |
| 54 | int errors; |
| 55 | int mirror_num; |
| 56 | |
| 57 | /* for reads, this is the bio we are copying the data into */ |
| 58 | struct bio *orig_bio; |
| 59 | |
| 60 | /* |
| 61 | * the start of a variable length array of checksums only |
| 62 | * used by reads |
| 63 | */ |
Johannes Thumshirn | 10fe6ca | 2019-05-22 10:19:02 +0200 | [diff] [blame] | 64 | u8 sums[]; |
Anand Jain | e1ddce7 | 2017-05-26 15:44:59 +0800 | [diff] [blame] | 65 | }; |
| 66 | |
Dennis Zhou | 1972708 | 2019-02-04 15:19:57 -0500 | [diff] [blame] | 67 | static inline unsigned int btrfs_compress_type(unsigned int type_level) |
| 68 | { |
| 69 | return (type_level & 0xF); |
| 70 | } |
| 71 | |
| 72 | static inline unsigned int btrfs_compress_level(unsigned int type_level) |
| 73 | { |
| 74 | return ((type_level & 0xF0) >> 4); |
| 75 | } |
| 76 | |
Liu Bo | f5c29bd | 2017-11-02 17:21:50 -0600 | [diff] [blame] | 77 | void __init btrfs_init_compress(void); |
David Sterba | e67c718 | 2018-02-19 17:24:18 +0100 | [diff] [blame] | 78 | void __cold btrfs_exit_compress(void); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 79 | |
David Sterba | f51d2b5 | 2017-09-15 17:36:57 +0200 | [diff] [blame] | 80 | int btrfs_compress_pages(unsigned int type_level, struct address_space *mapping, |
David Sterba | 38c3146 | 2017-02-14 19:04:07 +0100 | [diff] [blame] | 81 | u64 start, struct page **pages, |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 82 | unsigned long *out_pages, |
| 83 | unsigned long *total_in, |
David Sterba | e5d7490 | 2017-02-14 19:45:05 +0100 | [diff] [blame] | 84 | unsigned long *total_out); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 85 | int btrfs_decompress(int type, unsigned char *data_in, struct page *dest_page, |
| 86 | unsigned long start_byte, size_t srclen, size_t destlen); |
David Sterba | 14a3357 | 2017-02-14 17:58:04 +0100 | [diff] [blame] | 87 | int btrfs_decompress_buf2page(const char *buf, unsigned long buf_start, |
Li Zefan | 3a39c18 | 2010-11-08 15:22:19 +0800 | [diff] [blame] | 88 | unsigned long total_out, u64 disk_start, |
Christoph Hellwig | 974b1ad | 2016-11-25 09:07:46 +0100 | [diff] [blame] | 89 | struct bio *bio); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 90 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 91 | blk_status_t btrfs_submit_compressed_write(struct inode *inode, u64 start, |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 92 | unsigned long len, u64 disk_start, |
| 93 | unsigned long compressed_len, |
| 94 | struct page **compressed_pages, |
Liu Bo | f82b735 | 2017-10-23 23:18:16 -0600 | [diff] [blame] | 95 | unsigned long nr_pages, |
Chris Mason | ec39f76 | 2019-07-10 12:28:17 -0700 | [diff] [blame] | 96 | unsigned int write_flags, |
| 97 | struct cgroup_subsys_state *blkcg_css); |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 98 | 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] | 99 | int mirror_num, unsigned long bio_flags); |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 100 | |
Dennis Zhou | d0ab62c | 2019-02-04 15:20:05 -0500 | [diff] [blame] | 101 | unsigned int btrfs_compress_str2level(unsigned int type, const char *str); |
David Sterba | f51d2b5 | 2017-09-15 17:36:57 +0200 | [diff] [blame] | 102 | |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 103 | enum btrfs_compression_type { |
| 104 | BTRFS_COMPRESS_NONE = 0, |
| 105 | BTRFS_COMPRESS_ZLIB = 1, |
| 106 | BTRFS_COMPRESS_LZO = 2, |
Nick Terrell | 5c1aab1 | 2017-08-09 19:39:02 -0700 | [diff] [blame] | 107 | BTRFS_COMPRESS_ZSTD = 3, |
Chengguang Xu | ce96b7f | 2019-10-10 15:59:57 +0800 | [diff] [blame] | 108 | BTRFS_NR_COMPRESS_TYPES = 4, |
Anand Jain | ebb8765 | 2016-03-10 17:26:59 +0800 | [diff] [blame] | 109 | }; |
| 110 | |
Dennis Zhou | 92ee5530 | 2019-02-04 15:20:03 -0500 | [diff] [blame] | 111 | struct workspace_manager { |
| 112 | const struct btrfs_compress_op *ops; |
| 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 | |
| 123 | void btrfs_init_workspace_manager(struct workspace_manager *wsm, |
| 124 | const struct btrfs_compress_op *ops); |
Dennis Zhou | 7bf4994 | 2019-02-04 15:20:04 -0500 | [diff] [blame] | 125 | struct list_head *btrfs_get_workspace(struct workspace_manager *wsm, |
| 126 | unsigned int level); |
Dennis Zhou | 92ee5530 | 2019-02-04 15:20:03 -0500 | [diff] [blame] | 127 | void btrfs_put_workspace(struct workspace_manager *wsm, struct list_head *ws); |
| 128 | void btrfs_cleanup_workspace_manager(struct workspace_manager *wsm); |
| 129 | |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 130 | struct btrfs_compress_op { |
Dennis Zhou | 92ee5530 | 2019-02-04 15:20:03 -0500 | [diff] [blame] | 131 | void (*init_workspace_manager)(void); |
| 132 | |
| 133 | void (*cleanup_workspace_manager)(void); |
| 134 | |
Dennis Zhou | 7bf4994 | 2019-02-04 15:20:04 -0500 | [diff] [blame] | 135 | struct list_head *(*get_workspace)(unsigned int level); |
Dennis Zhou | 92ee5530 | 2019-02-04 15:20:03 -0500 | [diff] [blame] | 136 | |
| 137 | void (*put_workspace)(struct list_head *ws); |
| 138 | |
Dennis Zhou | 7bf4994 | 2019-02-04 15:20:04 -0500 | [diff] [blame] | 139 | struct list_head *(*alloc_workspace)(unsigned int level); |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 140 | |
| 141 | void (*free_workspace)(struct list_head *workspace); |
| 142 | |
David Sterba | be951045 | 2019-10-02 00:53:31 +0200 | [diff] [blame^] | 143 | struct workspace_manager *workspace_manager; |
David Sterba | e18333a | 2019-08-09 16:25:34 +0200 | [diff] [blame] | 144 | /* Maximum level supported by the compression algorithm */ |
| 145 | unsigned int max_level; |
| 146 | unsigned int default_level; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 147 | }; |
| 148 | |
Dennis Zhou | ca4ac36 | 2019-02-04 15:19:59 -0500 | [diff] [blame] | 149 | /* The heuristic workspaces are managed via the 0th workspace manager */ |
Chengguang Xu | ce96b7f | 2019-10-10 15:59:57 +0800 | [diff] [blame] | 150 | #define BTRFS_NR_WORKSPACE_MANAGERS BTRFS_NR_COMPRESS_TYPES |
Dennis Zhou | ca4ac36 | 2019-02-04 15:19:59 -0500 | [diff] [blame] | 151 | |
| 152 | extern const struct btrfs_compress_op btrfs_heuristic_compress; |
David Sterba | e8c9f18 | 2015-01-02 18:23:10 +0100 | [diff] [blame] | 153 | extern const struct btrfs_compress_op btrfs_zlib_compress; |
| 154 | extern const struct btrfs_compress_op btrfs_lzo_compress; |
Nick Terrell | 5c1aab1 | 2017-08-09 19:39:02 -0700 | [diff] [blame] | 155 | extern const struct btrfs_compress_op btrfs_zstd_compress; |
Li Zefan | 261507a0 | 2010-12-17 14:21:50 +0800 | [diff] [blame] | 156 | |
David Sterba | e128f9c | 2017-10-31 17:24:26 +0100 | [diff] [blame] | 157 | const char* btrfs_compress_type2str(enum btrfs_compression_type type); |
Johannes Thumshirn | aa53e3b | 2019-06-06 12:07:15 +0200 | [diff] [blame] | 158 | bool btrfs_compress_is_valid_type(const char *str, size_t len); |
David Sterba | e128f9c | 2017-10-31 17:24:26 +0100 | [diff] [blame] | 159 | |
David Sterba | b0c1fe1 | 2019-08-09 16:49:06 +0200 | [diff] [blame] | 160 | unsigned int btrfs_compress_set_level(int type, unsigned level); |
| 161 | |
Timofey Titovets | c2fcdcd | 2017-07-17 16:52:58 +0300 | [diff] [blame] | 162 | int btrfs_compress_heuristic(struct inode *inode, u64 start, u64 end); |
| 163 | |
Chris Mason | c8b9781 | 2008-10-29 14:49:59 -0400 | [diff] [blame] | 164 | #endif |