blob: 8001b700ea3ae30a63e5ce151b6865db11dee865 [file] [log] [blame]
David Sterba9888c342018-04-03 19:16:55 +02001/* SPDX-License-Identifier: GPL-2.0 */
Chris Masonc8b97812008-10-29 14:49:59 -04002/*
3 * Copyright (C) 2008 Oracle. All rights reserved.
Chris Masonc8b97812008-10-29 14:49:59 -04004 */
5
David Sterba9888c342018-04-03 19:16:55 +02006#ifndef BTRFS_COMPRESSION_H
7#define BTRFS_COMPRESSION_H
Chris Masonc8b97812008-10-29 14:49:59 -04008
Qu Wenruod5c1d682018-05-17 13:52:22 +08009#include <linux/sizes.h>
10
Nikolay Borisovc7ee1812020-06-03 08:55:16 +030011struct btrfs_inode;
12
David Sterbaff763862017-02-14 19:30:39 +010013/*
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 Wenruoeae8d822017-11-06 10:43:18 +080028#define BTRFS_ZLIB_DEFAULT_LEVEL 3
29
Anand Jaine1ddce72017-05-26 15:44:59 +080030struct compressed_bio {
31 /* number of bios pending for this compressed extent */
32 refcount_t pending_bios;
33
34 /* the pages with the compressed data on them */
35 struct page **compressed_pages;
36
37 /* inode that owns this data */
38 struct inode *inode;
39
40 /* starting offset in the inode for our pages */
41 u64 start;
42
43 /* number of bytes in the inode we're working on */
44 unsigned long len;
45
46 /* number of bytes on disk */
47 unsigned long compressed_len;
48
49 /* the compression algorithm for this bio */
50 int compress_type;
51
52 /* number of compressed pages in the array */
53 unsigned long nr_pages;
54
55 /* IO errors */
56 int errors;
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 Thumshirn10fe6ca2019-05-22 10:19:02 +020066 u8 sums[];
Anand Jaine1ddce72017-05-26 15:44:59 +080067};
68
Dennis Zhou19727082019-02-04 15:19:57 -050069static inline unsigned int btrfs_compress_type(unsigned int type_level)
70{
71 return (type_level & 0xF);
72}
73
74static inline unsigned int btrfs_compress_level(unsigned int type_level)
75{
76 return ((type_level & 0xF0) >> 4);
77}
78
Liu Bof5c29bd2017-11-02 17:21:50 -060079void __init btrfs_init_compress(void);
David Sterbae67c7182018-02-19 17:24:18 +010080void __cold btrfs_exit_compress(void);
Li Zefan261507a02010-12-17 14:21:50 +080081
David Sterbaf51d2b52017-09-15 17:36:57 +020082int btrfs_compress_pages(unsigned int type_level, struct address_space *mapping,
David Sterba38c31462017-02-14 19:04:07 +010083 u64 start, struct page **pages,
Li Zefan261507a02010-12-17 14:21:50 +080084 unsigned long *out_pages,
85 unsigned long *total_in,
David Sterbae5d74902017-02-14 19:45:05 +010086 unsigned long *total_out);
Li Zefan261507a02010-12-17 14:21:50 +080087int btrfs_decompress(int type, unsigned char *data_in, struct page *dest_page,
88 unsigned long start_byte, size_t srclen, size_t destlen);
David Sterba14a33572017-02-14 17:58:04 +010089int btrfs_decompress_buf2page(const char *buf, unsigned long buf_start,
Li Zefan3a39c182010-11-08 15:22:19 +080090 unsigned long total_out, u64 disk_start,
Christoph Hellwig974b1ad2016-11-25 09:07:46 +010091 struct bio *bio);
Li Zefan261507a02010-12-17 14:21:50 +080092
Nikolay Borisovc7ee1812020-06-03 08:55:16 +030093blk_status_t btrfs_submit_compressed_write(struct btrfs_inode *inode, u64 start,
Chris Masonc8b97812008-10-29 14:49:59 -040094 unsigned long len, u64 disk_start,
95 unsigned long compressed_len,
96 struct page **compressed_pages,
Liu Bof82b7352017-10-23 23:18:16 -060097 unsigned long nr_pages,
Chris Masonec39f762019-07-10 12:28:17 -070098 unsigned int write_flags,
99 struct cgroup_subsys_state *blkcg_css);
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200100blk_status_t btrfs_submit_compressed_read(struct inode *inode, struct bio *bio,
Chris Masonc8b97812008-10-29 14:49:59 -0400101 int mirror_num, unsigned long bio_flags);
Anand Jainebb87652016-03-10 17:26:59 +0800102
Dennis Zhoud0ab62c2019-02-04 15:20:05 -0500103unsigned int btrfs_compress_str2level(unsigned int type, const char *str);
David Sterbaf51d2b52017-09-15 17:36:57 +0200104
Anand Jainebb87652016-03-10 17:26:59 +0800105enum btrfs_compression_type {
106 BTRFS_COMPRESS_NONE = 0,
107 BTRFS_COMPRESS_ZLIB = 1,
108 BTRFS_COMPRESS_LZO = 2,
Nick Terrell5c1aab12017-08-09 19:39:02 -0700109 BTRFS_COMPRESS_ZSTD = 3,
Chengguang Xuce96b7f2019-10-10 15:59:57 +0800110 BTRFS_NR_COMPRESS_TYPES = 4,
Anand Jainebb87652016-03-10 17:26:59 +0800111};
112
Dennis Zhou92ee55302019-02-04 15:20:03 -0500113struct workspace_manager {
Dennis Zhou92ee55302019-02-04 15:20:03 -0500114 struct list_head idle_ws;
115 spinlock_t ws_lock;
116 /* Number of free workspaces */
117 int free_ws;
118 /* Total number of allocated workspaces */
119 atomic_t total_ws;
120 /* Waiters for a free workspace */
121 wait_queue_head_t ws_wait;
122};
123
David Sterba5907a9b2019-10-04 02:50:28 +0200124struct list_head *btrfs_get_workspace(int type, unsigned int level);
David Sterbaa3bbd2a2019-10-04 02:50:28 +0200125void btrfs_put_workspace(int type, struct list_head *ws);
Dennis Zhou92ee55302019-02-04 15:20:03 -0500126
Li Zefan261507a02010-12-17 14:21:50 +0800127struct btrfs_compress_op {
David Sterbabe9510452019-10-02 00:53:31 +0200128 struct workspace_manager *workspace_manager;
David Sterbae18333a2019-08-09 16:25:34 +0200129 /* Maximum level supported by the compression algorithm */
130 unsigned int max_level;
131 unsigned int default_level;
Li Zefan261507a02010-12-17 14:21:50 +0800132};
133
Dennis Zhouca4ac362019-02-04 15:19:59 -0500134/* The heuristic workspaces are managed via the 0th workspace manager */
Chengguang Xuce96b7f2019-10-10 15:59:57 +0800135#define BTRFS_NR_WORKSPACE_MANAGERS BTRFS_NR_COMPRESS_TYPES
Dennis Zhouca4ac362019-02-04 15:19:59 -0500136
137extern const struct btrfs_compress_op btrfs_heuristic_compress;
David Sterbae8c9f182015-01-02 18:23:10 +0100138extern const struct btrfs_compress_op btrfs_zlib_compress;
139extern const struct btrfs_compress_op btrfs_lzo_compress;
Nick Terrell5c1aab12017-08-09 19:39:02 -0700140extern const struct btrfs_compress_op btrfs_zstd_compress;
Li Zefan261507a02010-12-17 14:21:50 +0800141
David Sterbae128f9c2017-10-31 17:24:26 +0100142const char* btrfs_compress_type2str(enum btrfs_compression_type type);
Johannes Thumshirnaa53e3b2019-06-06 12:07:15 +0200143bool btrfs_compress_is_valid_type(const char *str, size_t len);
David Sterbae128f9c2017-10-31 17:24:26 +0100144
Timofey Titovetsc2fcdcd2017-07-17 16:52:58 +0300145int btrfs_compress_heuristic(struct inode *inode, u64 start, u64 end);
146
David Sterbacb4c9192020-08-17 10:58:38 +0200147int zlib_compress_pages(struct list_head *ws, struct address_space *mapping,
148 u64 start, struct page **pages, unsigned long *out_pages,
149 unsigned long *total_in, unsigned long *total_out);
150int zlib_decompress_bio(struct list_head *ws, struct compressed_bio *cb);
151int zlib_decompress(struct list_head *ws, unsigned char *data_in,
152 struct page *dest_page, unsigned long start_byte, size_t srclen,
153 size_t destlen);
154struct list_head *zlib_alloc_workspace(unsigned int level);
155void zlib_free_workspace(struct list_head *ws);
156struct list_head *zlib_get_workspace(unsigned int level);
157
158int lzo_compress_pages(struct list_head *ws, struct address_space *mapping,
159 u64 start, struct page **pages, unsigned long *out_pages,
160 unsigned long *total_in, unsigned long *total_out);
161int lzo_decompress_bio(struct list_head *ws, struct compressed_bio *cb);
162int lzo_decompress(struct list_head *ws, unsigned char *data_in,
163 struct page *dest_page, unsigned long start_byte, size_t srclen,
164 size_t destlen);
165struct list_head *lzo_alloc_workspace(unsigned int level);
166void lzo_free_workspace(struct list_head *ws);
167
168int zstd_compress_pages(struct list_head *ws, struct address_space *mapping,
169 u64 start, struct page **pages, unsigned long *out_pages,
170 unsigned long *total_in, unsigned long *total_out);
171int zstd_decompress_bio(struct list_head *ws, struct compressed_bio *cb);
172int zstd_decompress(struct list_head *ws, unsigned char *data_in,
173 struct page *dest_page, unsigned long start_byte, size_t srclen,
174 size_t destlen);
175void zstd_init_workspace_manager(void);
176void zstd_cleanup_workspace_manager(void);
177struct list_head *zstd_alloc_workspace(unsigned int level);
178void zstd_free_workspace(struct list_head *ws);
179struct list_head *zstd_get_workspace(unsigned int level);
180void zstd_put_workspace(struct list_head *ws);
181
Chris Masonc8b97812008-10-29 14:49:59 -0400182#endif