squashfs: extend "page actor" to handle missing pages
authorPhillip Lougher <phillip@squashfs.org.uk>
Sat, 11 Jun 2022 03:21:32 +0000 (04:21 +0100)
committerakpm <akpm@linux-foundation.org>
Fri, 17 Jun 2022 02:58:21 +0000 (19:58 -0700)
Patch series "Squashfs: handle missing pages decompressing into page
cache".

This patchset enables Squashfs to handle missing pages when directly
decompressing datablocks into the page cache.

Previously if the full set of pages needed was not available, Squashfs
would have to fall back to using an intermediate buffer (the older
method), which is slower, involving a memcopy, and it introduces
contention on a shared buffer.

The first patch extends the "page actor" code to handle missing pages.

The second patch updates Squashfs_readpage_block() to use the new
functionality, and removes the code that falls back to using an
intermediate buffer.

This patchset is independent of the readahead work, and it is standalone.
It can be merged on its own.

But the readahead patch for efficiency also needs this patch-set.

This patch (of 2):

This patch extends the "page actor" code to handle missing pages.

Previously if the full set of pages needed to decompress a Squashfs
datablock was unavailable, this would cause decompression to fail on the
missing pages.

In this case direct decompression into the page cache could not be
achieved and the code would fall back to using the older intermediate
buffer method.

With this patch, direct decompression into the page cache can be achieved
with missing pages.

For "multi-shot" decompressors (zlib, xz, zstd), the page actor will
allocate a temporary buffer which is passed to the decompressor, and then
freed by the page actor.

For "single shot" decompressors (lz4, lzo) which decompress into a
contiguous "bounce buffer", and which is then copied into the page cache,
it would be pointless to allocate a temporary buffer, memcpy into it, and
then free it.  For these decompressors -ENOMEM is returned, which
signifies that the memcpy for that page should be skipped.

This also happens if the data block is uncompressed.

Link: https://lkml.kernel.org/r/20220611032133.5743-1-phillip@squashfs.org.uk
Link: https://lkml.kernel.org/r/20220611032133.5743-2-phillip@squashfs.org.uk
Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk>
Cc: Matthew Wilcox (Oracle) <willy@infradead.org>
Cc: Hsin-Yi Wang <hsinyi@chromium.org>
Cc: Xiongwei Song <Xiongwei.Song@windriver.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/squashfs/block.c
fs/squashfs/decompressor.h
fs/squashfs/file_direct.c
fs/squashfs/lz4_wrapper.c
fs/squashfs/lzo_wrapper.c
fs/squashfs/page_actor.c
fs/squashfs/page_actor.h
fs/squashfs/xz_wrapper.c
fs/squashfs/zlib_wrapper.c
fs/squashfs/zstd_wrapper.c

index 8879d052f96c6a0053096e61cb3d400beee78b38..833aca92301f0e1d794bd4a1c1616e0a80fb84cd 100644 (file)
@@ -34,12 +34,15 @@ static int copy_bio_to_actor(struct bio *bio,
                             struct squashfs_page_actor *actor,
                             int offset, int req_length)
 {
-       void *actor_addr = squashfs_first_page(actor);
+       void *actor_addr;
        struct bvec_iter_all iter_all = {};
        struct bio_vec *bvec = bvec_init_iter_all(&iter_all);
        int copied_bytes = 0;
        int actor_offset = 0;
 
+       squashfs_actor_nobuff(actor);
+       actor_addr = squashfs_first_page(actor);
+
        if (WARN_ON_ONCE(!bio_next_segment(bio, &iter_all)))
                return 0;
 
@@ -49,8 +52,9 @@ static int copy_bio_to_actor(struct bio *bio,
 
                bytes_to_copy = min_t(int, bytes_to_copy,
                                      req_length - copied_bytes);
-               memcpy(actor_addr + actor_offset, bvec_virt(bvec) + offset,
-                      bytes_to_copy);
+               if (!IS_ERR(actor_addr))
+                       memcpy(actor_addr + actor_offset, bvec_virt(bvec) +
+                                       offset, bytes_to_copy);
 
                actor_offset += bytes_to_copy;
                copied_bytes += bytes_to_copy;
index 1b9ccfd0aa519bff549d9da24cd04d7a130e3e12..19ab608343895f315825b55eed0274c937fa0f3d 100644 (file)
@@ -20,6 +20,7 @@ struct squashfs_decompressor {
                struct bio *, int, int, struct squashfs_page_actor *);
        int     id;
        char    *name;
+       int     alloc_buffer;
        int     supported;
 };
 
index a4894cc5944719cf96ddd6e9fe9d987760a61446..5af5802f5626cbf97d84047ab611eb369ef26593 100644 (file)
@@ -47,14 +47,6 @@ int squashfs_readpage_block(struct page *target_page, u64 block, int bsize,
        if (page == NULL)
                return res;
 
-       /*
-        * Create a "page actor" which will kmap and kunmap the
-        * page cache pages appropriately within the decompressor
-        */
-       actor = squashfs_page_actor_init_special(page, pages, 0);
-       if (actor == NULL)
-               goto out;
-
        /* Try to grab all the pages covered by the Squashfs block */
        for (missing_pages = 0, i = 0, n = start_index; i < pages; i++, n++) {
                page[i] = (n == target_page->index) ? target_page :
@@ -89,8 +81,19 @@ int squashfs_readpage_block(struct page *target_page, u64 block, int bsize,
                goto out;
        }
 
+       /*
+        * Create a "page actor" which will kmap and kunmap the
+        * page cache pages appropriately within the decompressor
+        */
+       actor = squashfs_page_actor_init_special(msblk, page, pages, 0);
+       if (actor == NULL)
+               goto out;
+
        /* Decompress directly into the page cache buffers */
        res = squashfs_read_data(inode->i_sb, block, bsize, NULL, actor);
+
+       kfree(actor);
+
        if (res < 0)
                goto mark_errored;
 
@@ -116,7 +119,6 @@ int squashfs_readpage_block(struct page *target_page, u64 block, int bsize,
                        put_page(page[i]);
        }
 
-       kfree(actor);
        kfree(page);
 
        return 0;
@@ -135,7 +137,6 @@ mark_errored:
        }
 
 out:
-       kfree(actor);
        kfree(page);
        return res;
 }
index b685b6238316c7f65ba6e187606479f337476e6a..49797729f143837ef5968384103ccec61ae283dd 100644 (file)
@@ -119,10 +119,12 @@ static int lz4_uncompress(struct squashfs_sb_info *msblk, void *strm,
        buff = stream->output;
        while (data) {
                if (bytes <= PAGE_SIZE) {
-                       memcpy(data, buff, bytes);
+                       if (!IS_ERR(data))
+                               memcpy(data, buff, bytes);
                        break;
                }
-               memcpy(data, buff, PAGE_SIZE);
+               if (!IS_ERR(data))
+                       memcpy(data, buff, PAGE_SIZE);
                buff += PAGE_SIZE;
                bytes -= PAGE_SIZE;
                data = squashfs_next_page(output);
@@ -139,5 +141,6 @@ const struct squashfs_decompressor squashfs_lz4_comp_ops = {
        .decompress = lz4_uncompress,
        .id = LZ4_COMPRESSION,
        .name = "lz4",
+       .alloc_buffer = 0,
        .supported = 1
 };
index cb510a631968364b247674ed62746363ebcf9d28..d216aeefa865cea4728822160802fd8844db8bca 100644 (file)
@@ -93,10 +93,12 @@ static int lzo_uncompress(struct squashfs_sb_info *msblk, void *strm,
        buff = stream->output;
        while (data) {
                if (bytes <= PAGE_SIZE) {
-                       memcpy(data, buff, bytes);
+                       if (!IS_ERR(data))
+                               memcpy(data, buff, bytes);
                        break;
                } else {
-                       memcpy(data, buff, PAGE_SIZE);
+                       if (!IS_ERR(data))
+                               memcpy(data, buff, PAGE_SIZE);
                        buff += PAGE_SIZE;
                        bytes -= PAGE_SIZE;
                        data = squashfs_next_page(output);
@@ -116,5 +118,6 @@ const struct squashfs_decompressor squashfs_lzo_comp_ops = {
        .decompress = lzo_uncompress,
        .id = LZO_COMPRESSION,
        .name = "lzo",
+       .alloc_buffer = 0,
        .supported = 1
 };
index 520d323a99ce67d4b1a6b53c27e29e40838c1ba9..b23b780d8f42ece1639bd4bc21ced7743ffc2643 100644 (file)
@@ -7,6 +7,8 @@
 #include <linux/kernel.h>
 #include <linux/slab.h>
 #include <linux/pagemap.h>
+#include "squashfs_fs_sb.h"
+#include "decompressor.h"
 #include "page_actor.h"
 
 /*
@@ -57,29 +59,62 @@ struct squashfs_page_actor *squashfs_page_actor_init(void **buffer,
 }
 
 /* Implementation of page_actor for decompressing directly into page cache. */
+static void *handle_next_page(struct squashfs_page_actor *actor)
+{
+       int max_pages = (actor->length + PAGE_SIZE - 1) >> PAGE_SHIFT;
+
+       if (actor->returned_pages == max_pages)
+               return NULL;
+
+       if ((actor->next_page == actor->pages) ||
+                       (actor->next_index != actor->page[actor->next_page]->index)) {
+               if (actor->alloc_buffer) {
+                       void *tmp_buffer = kmalloc(PAGE_SIZE, GFP_KERNEL);
+
+                       if (tmp_buffer) {
+                               actor->tmp_buffer = tmp_buffer;
+                               actor->next_index++;
+                               actor->returned_pages++;
+                               return tmp_buffer;
+                       }
+               }
+
+               actor->next_index++;
+               actor->returned_pages++;
+               return ERR_PTR(-ENOMEM);
+       }
+
+       actor->next_index++;
+       actor->returned_pages++;
+       return actor->pageaddr = kmap_local_page(actor->page[actor->next_page++]);
+}
+
 static void *direct_first_page(struct squashfs_page_actor *actor)
 {
-       actor->next_page = 1;
-       return actor->pageaddr = kmap_atomic(actor->page[0]);
+       return handle_next_page(actor);
 }
 
 static void *direct_next_page(struct squashfs_page_actor *actor)
 {
        if (actor->pageaddr)
-               kunmap_atomic(actor->pageaddr);
+               kunmap_local(actor->pageaddr);
+
+       kfree(actor->tmp_buffer);
+       actor->pageaddr = actor->tmp_buffer = NULL;
 
-       return actor->pageaddr = actor->next_page == actor->pages ? NULL :
-               kmap_atomic(actor->page[actor->next_page++]);
+       return handle_next_page(actor);
 }
 
 static void direct_finish_page(struct squashfs_page_actor *actor)
 {
        if (actor->pageaddr)
-               kunmap_atomic(actor->pageaddr);
+               kunmap_local(actor->pageaddr);
+
+       kfree(actor->tmp_buffer);
 }
 
-struct squashfs_page_actor *squashfs_page_actor_init_special(struct page **page,
-       int pages, int length)
+struct squashfs_page_actor *squashfs_page_actor_init_special(struct squashfs_sb_info *msblk,
+       struct page **page, int pages, int length)
 {
        struct squashfs_page_actor *actor = kmalloc(sizeof(*actor), GFP_KERNEL);
 
@@ -90,7 +125,11 @@ struct squashfs_page_actor *squashfs_page_actor_init_special(struct page **page,
        actor->page = page;
        actor->pages = pages;
        actor->next_page = 0;
+       actor->returned_pages = 0;
+       actor->next_index = page[0]->index & ~((1 << (msblk->block_log - PAGE_SHIFT)) - 1);
        actor->pageaddr = NULL;
+       actor->tmp_buffer = NULL;
+       actor->alloc_buffer = msblk->decompressor->alloc_buffer;
        actor->squashfs_first_page = direct_first_page;
        actor->squashfs_next_page = direct_next_page;
        actor->squashfs_finish_page = direct_finish_page;
index 2e3073ace0097ba438649eb538897765ffbb4b4f..37523c54256fa7a4696e9b7a37a73b62afc33c28 100644 (file)
@@ -45,6 +45,11 @@ static inline void squashfs_finish_page(struct squashfs_page_actor *actor)
 {
        /* empty */
 }
+
+static inline void squashfs_actor_nobuff(struct squashfs_page_actor *actor)
+{
+       /* empty */
+}
 #else
 struct squashfs_page_actor {
        union {
@@ -52,17 +57,23 @@ struct squashfs_page_actor {
                struct page     **page;
        };
        void    *pageaddr;
+       void    *tmp_buffer;
        void    *(*squashfs_first_page)(struct squashfs_page_actor *);
        void    *(*squashfs_next_page)(struct squashfs_page_actor *);
        void    (*squashfs_finish_page)(struct squashfs_page_actor *);
        int     pages;
        int     length;
        int     next_page;
+       int     alloc_buffer;
+       int     returned_pages;
+       pgoff_t next_index;
 };
 
-extern struct squashfs_page_actor *squashfs_page_actor_init(void **, int, int);
-extern struct squashfs_page_actor *squashfs_page_actor_init_special(struct page
-                                                        **, int, int);
+extern struct squashfs_page_actor *squashfs_page_actor_init(void **buffer,
+                               int pages, int length);
+extern struct squashfs_page_actor *squashfs_page_actor_init_special(
+                               struct squashfs_sb_info *msblk,
+                               struct page **page, int pages, int length);
 static inline void *squashfs_first_page(struct squashfs_page_actor *actor)
 {
        return actor->squashfs_first_page(actor);
@@ -75,5 +86,9 @@ static inline void squashfs_finish_page(struct squashfs_page_actor *actor)
 {
        actor->squashfs_finish_page(actor);
 }
+static inline void squashfs_actor_nobuff(struct squashfs_page_actor *actor)
+{
+       actor->alloc_buffer = 0;
+}
 #endif
 #endif
index 68f6d09bb3a2bc0388b3c34bd303107c5d0968ee..6c49481a2f8c43f65948357935bd769cc29a9e91 100644 (file)
@@ -131,6 +131,10 @@ static int squashfs_xz_uncompress(struct squashfs_sb_info *msblk, void *strm,
        stream->buf.out_pos = 0;
        stream->buf.out_size = PAGE_SIZE;
        stream->buf.out = squashfs_first_page(output);
+       if (IS_ERR(stream->buf.out)) {
+               error = PTR_ERR(stream->buf.out);
+               goto finish;
+       }
 
        for (;;) {
                enum xz_ret xz_err;
@@ -156,7 +160,10 @@ static int squashfs_xz_uncompress(struct squashfs_sb_info *msblk, void *strm,
 
                if (stream->buf.out_pos == stream->buf.out_size) {
                        stream->buf.out = squashfs_next_page(output);
-                       if (stream->buf.out != NULL) {
+                       if (IS_ERR(stream->buf.out)) {
+                               error = PTR_ERR(stream->buf.out);
+                               break;
+                       } else if (stream->buf.out != NULL) {
                                stream->buf.out_pos = 0;
                                total += PAGE_SIZE;
                        }
@@ -171,6 +178,7 @@ static int squashfs_xz_uncompress(struct squashfs_sb_info *msblk, void *strm,
                }
        }
 
+finish:
        squashfs_finish_page(output);
 
        return error ? error : total + stream->buf.out_pos;
@@ -183,5 +191,6 @@ const struct squashfs_decompressor squashfs_xz_comp_ops = {
        .decompress = squashfs_xz_uncompress,
        .id = XZ_COMPRESSION,
        .name = "xz",
+       .alloc_buffer = 1,
        .supported = 1
 };
index a20e9042146bd6f7424104ba66a26b6c8cbde9c0..cbb7afe7bc46792347922ad95da00d988cfd6b53 100644 (file)
@@ -62,6 +62,11 @@ static int zlib_uncompress(struct squashfs_sb_info *msblk, void *strm,
        stream->next_out = squashfs_first_page(output);
        stream->avail_in = 0;
 
+       if (IS_ERR(stream->next_out)) {
+               error = PTR_ERR(stream->next_out);
+               goto finish;
+       }
+
        for (;;) {
                int zlib_err;
 
@@ -85,7 +90,10 @@ static int zlib_uncompress(struct squashfs_sb_info *msblk, void *strm,
 
                if (stream->avail_out == 0) {
                        stream->next_out = squashfs_next_page(output);
-                       if (stream->next_out != NULL)
+                       if (IS_ERR(stream->next_out)) {
+                               error = PTR_ERR(stream->next_out);
+                               break;
+                       } else if (stream->next_out != NULL)
                                stream->avail_out = PAGE_SIZE;
                }
 
@@ -107,6 +115,7 @@ static int zlib_uncompress(struct squashfs_sb_info *msblk, void *strm,
                }
        }
 
+finish:
        squashfs_finish_page(output);
 
        if (!error)
@@ -122,6 +131,7 @@ const struct squashfs_decompressor squashfs_zlib_comp_ops = {
        .decompress = zlib_uncompress,
        .id = ZLIB_COMPRESSION,
        .name = "zlib",
+       .alloc_buffer = 1,
        .supported = 1
 };
 
index c40445dbf38c77fee73422387ce4605ae27a0f92..0e407c4d8b3bc3718727f48bbf5c24193b3bb717 100644 (file)
@@ -80,6 +80,10 @@ static int zstd_uncompress(struct squashfs_sb_info *msblk, void *strm,
 
        out_buf.size = PAGE_SIZE;
        out_buf.dst = squashfs_first_page(output);
+       if (IS_ERR(out_buf.dst)) {
+               error = PTR_ERR(out_buf.dst);
+               goto finish;
+       }
 
        for (;;) {
                size_t zstd_err;
@@ -104,7 +108,10 @@ static int zstd_uncompress(struct squashfs_sb_info *msblk, void *strm,
 
                if (out_buf.pos == out_buf.size) {
                        out_buf.dst = squashfs_next_page(output);
-                       if (out_buf.dst == NULL) {
+                       if (IS_ERR(out_buf.dst)) {
+                               error = PTR_ERR(out_buf.dst);
+                               break;
+                       } else if (out_buf.dst == NULL) {
                                /* Shouldn't run out of pages
                                 * before stream is done.
                                 */
@@ -129,6 +136,8 @@ static int zstd_uncompress(struct squashfs_sb_info *msblk, void *strm,
                }
        }
 
+finish:
+
        squashfs_finish_page(output);
 
        return error ? error : total_out;
@@ -140,5 +149,6 @@ const struct squashfs_decompressor squashfs_zstd_comp_ops = {
        .decompress = zstd_uncompress,
        .id = ZSTD_COMPRESSION,
        .name = "zstd",
+       .alloc_buffer = 1,
        .supported = 1
 };