~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/fs/squashfs/decompressor_single.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*
  3  * Copyright (c) 2013
  4  * Phillip Lougher <phillip@squashfs.org.uk>
  5  */
  6 
  7 #include <linux/types.h>
  8 #include <linux/mutex.h>
  9 #include <linux/slab.h>
 10 #include <linux/bio.h>
 11 
 12 #include "squashfs_fs.h"
 13 #include "squashfs_fs_sb.h"
 14 #include "decompressor.h"
 15 #include "squashfs.h"
 16 
 17 /*
 18  * This file implements single-threaded decompression in the
 19  * decompressor framework
 20  */
 21 
 22 struct squashfs_stream {
 23         void            *stream;
 24         struct mutex    mutex;
 25 };
 26 
 27 static void *squashfs_decompressor_create(struct squashfs_sb_info *msblk,
 28                                                 void *comp_opts)
 29 {
 30         struct squashfs_stream *stream;
 31         int err = -ENOMEM;
 32 
 33         stream = kmalloc(sizeof(*stream), GFP_KERNEL);
 34         if (stream == NULL)
 35                 goto out;
 36 
 37         stream->stream = msblk->decompressor->init(msblk, comp_opts);
 38         if (IS_ERR(stream->stream)) {
 39                 err = PTR_ERR(stream->stream);
 40                 goto out;
 41         }
 42 
 43         kfree(comp_opts);
 44         mutex_init(&stream->mutex);
 45         return stream;
 46 
 47 out:
 48         kfree(stream);
 49         return ERR_PTR(err);
 50 }
 51 
 52 static void squashfs_decompressor_destroy(struct squashfs_sb_info *msblk)
 53 {
 54         struct squashfs_stream *stream = msblk->stream;
 55 
 56         if (stream) {
 57                 msblk->decompressor->free(stream->stream);
 58                 kfree(stream);
 59         }
 60 }
 61 
 62 static int squashfs_decompress(struct squashfs_sb_info *msblk, struct bio *bio,
 63                         int offset, int length,
 64                         struct squashfs_page_actor *output)
 65 {
 66         int res;
 67         struct squashfs_stream *stream = msblk->stream;
 68 
 69         mutex_lock(&stream->mutex);
 70         res = msblk->decompressor->decompress(msblk, stream->stream, bio,
 71                 offset, length, output);
 72         mutex_unlock(&stream->mutex);
 73 
 74         if (res < 0)
 75                 ERROR("%s decompression failed, data probably corrupt\n",
 76                         msblk->decompressor->name);
 77 
 78         return res;
 79 }
 80 
 81 static int squashfs_max_decompressors(void)
 82 {
 83         return 1;
 84 }
 85 
 86 const struct squashfs_decompressor_thread_ops squashfs_decompressor_single = {
 87         .create = squashfs_decompressor_create,
 88         .destroy = squashfs_decompressor_destroy,
 89         .decompress = squashfs_decompress,
 90         .max_decompressors = squashfs_max_decompressors,
 91 };
 92 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php