Coder Social home page Coder Social logo

erofs / erofs-utils Goto Github PK

View Code? Open in Web Editor NEW
85.0 5.0 38.0 1.16 MB

A github erofs-utils fork for community development

Home Page: https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git

License: Other

Makefile 0.78% Shell 0.22% M4 3.18% C 94.28% C++ 1.54%

erofs-utils's Introduction

erofs-utils
===========

Userspace tools for EROFS filesystem, currently including:

  mkfs.erofs    filesystem formatter
  erofsfuse     FUSE daemon alternative
  dump.erofs    filesystem analyzer
  fsck.erofs    filesystem compatibility & consistency checker as well
                as extractor


EROFS filesystem overview
-------------------------

EROFS filesystem stands for Enhanced Read-Only File System.  It aims to
form a generic read-only filesystem solution for various read-only use
cases instead of just focusing on storage space saving without
considering any side effects of runtime performance.

Typically EROFS could be considered in the following use scenarios:
  - Firmwares in performance-sensitive systems, such as system
    partitions of Android smartphones;

  - Mountable immutable images such as container images for effective
    metadata & data access compared with tar, cpio or other local
    filesystems (e.g. ext4, XFS, btrfs, etc.)

  - FSDAX-enabled rootfs for secure containers (Linux 5.15+);

  - Live CDs which need a set of files with another high-performance
    algorithm to optimize startup time; others files for archival
    purposes only are not needed;

  - and more.

Note that all EROFS metadata is uncompressed by design, so that you
could take EROFS as a drop-in read-only replacement of ext4, XFS,
btrfs, etc. without any compression-based dependencies and EROFS can
bring more effective filesystem accesses to users with reduced
metadata.

For more details of EROFS filesystem itself, please refer to:
https://www.kernel.org/doc/html/next/filesystems/erofs.html

For more details on how to build erofs-utils, see `docs/INSTALL.md`.

For more details about filesystem performance, see
`docs/PERFORMANCE.md`.


mkfs.erofs
----------

Two main kinds of EROFS images can be generated: (un)compressed images.

 - For uncompressed images, there will be no compressed files in these
   images.  However, an EROFS image can contain files which consist of
   various aligned data blocks and then a tail that is stored inline in
   order to compact images [1].

 - For compressed images, it will try to use the given algorithms first
   for each regular file and see if storage space can be saved with
   compression. If not, it will fall back to an uncompressed file.

Note that EROFS supports per-file compression configuration, proper
configuration options need to be enabled to parse compressed files by
the Linux kernel.

How to generate EROFS images
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Compression algorithms could be specified with the command-line option
`-z` to build a compressed EROFS image from a local directory:
 $ mkfs.erofs -zlz4hc foo.erofs.img foo/

Supported algorithms by the Linux kernel:
 - LZ4 (Linux 5.3+);
 - LZMA (Linux 5.16+);
 - DEFLATE (Linux 6.6+);
 - Zstandard (Linux 6.10+).

Alternatively, generate an uncompressed EROFS from a local directory:
 $ mkfs.erofs foo.erofs.img foo/

Additionally, you can specify a higher compression level to get a
(slightly) smaller image than the default level:
 $ mkfs.erofs -zlz4hc,12 foo.erofs.img foo/

Multi-threaded support can be explicitly enabled with the ./configure
option `--enable-multithreading`; otherwise, single-threaded compression
will be used for now.  It may take more time on multiprocessor platforms
if multi-threaded support is not enabled.

Currently, both `-Efragments` (not `-Eall-fragments`) and `-Ededupe`
don't support multi-threading due to time limitations.

Reproducible builds
~~~~~~~~~~~~~~~~~~~

Reproducible builds are typically used for verification and security,
ensuring the same binaries/distributions to be reproduced in a
deterministic way.

Images generated by the same version of `mkfs.erofs` will be identical
to previous runs if the same input is specified, and the same options
are used.

Specifically, variable timestamps and filesystem UUIDs can result in
unreproducible EROFS images.  `-T` and `-U` can be used to fix them.

How to generate EROFS big pcluster images (Linux 5.13+)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

By default, EROFS formatter compresses data into separate one-block
(e.g. 4KiB) filesystem physical clusters for outstanding random read
performance.  In other words, each EROFS filesystem block can be
independently decompressed.  However, other similar filesystems
typically compress data into "blocks" of 128KiB or more for much smaller
images.  Users may prefer smaller images for archiving purposes, even if
random performance is compromised with those configurations, and even
worse when using 4KiB blocks.

In order to fulfill users' needs, big plusters has been introduced
since Linux 5.13, in which each physical clusters will be more than one
blocks.

Specifically, `-C` is used to specify the maximum size of each pcluster
in bytes:
 $ mkfs.erofs -zlz4hc -C65536 foo.erofs.img foo/

Thus, in this case, pcluster sizes can be up to 64KiB.

Note that large pcluster size can degrade random performance (though it
may improve sequential read performance for typical storage devices), so
please evaluate carefully in advance.  Alternatively, you can make
per-(sub)file compression strategies according to file access patterns
if needed.

How to generate EROFS images with multiple algorithms
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

It's possible to generate an EROFS image with files in different
algorithms due to various purposes.  For example, LZMA for archival
purposes and LZ4 for runtime purposes.

In order to use alternative algorithms, just specify two or more
compressing configurations together separated by ':' like below:
    -zlzma:lz4hc,12:lzma,9 -C32768

Although mkfs still choose the first one by default, you could try to
write a compress-hints file like below:
    4096  1 .*\.so$
    32768 2 .*\.txt$
    4096    sbin/.*$
    16384 0 .*

and specify with `--compress-hints=` so that ".so" files will use
"lz4hc,12" compression with 4k pclusters, ".txt" files will use
"lzma,9" compression with 32k pclusters, files  under "/sbin" will use
the default "lzma" compression with 4k plusters and other files will
use "lzma" compression with 16k pclusters.

Note that the largest pcluster size should be specified with the "-C"
option (here 32k pcluster size), otherwise all larger pclusters will be
limited.

How to generate well-compressed EROFS images
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Even if EROFS is not designed for such purposes in the beginning, it
could still produce some smaller images (not always) compared to other
approaches with better performance (see `docs/PERFORMANCE.md`).  In
order to build well-compressed EROFS images, try the following options:
 -C1048576                     (5.13+)
 -Eztailpacking                (5.16+)
 -Efragments / -Eall-fragments ( 6.1+);
 -Ededupe                      ( 6.1+).

Also EROFS uses lz4hc level 9 by default, whereas some other approaches
use lz4hc level 12 by default.  So please explicitly specify
`-zlz4hc,12 ` for comparison purposes.

How to generate legacy EROFS images (Linux 4.19+)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Decompression inplace and compacted indexes have been introduced in
Linux v5.3, which are not forward-compatible with older kernels.

In order to generate _legacy_ EROFS images for old kernels,
consider adding "-E legacy-compress" to the command line, e.g.

 $ mkfs.erofs -E legacy-compress -zlz4hc foo.erofs.img foo/

For Linux kernel >= 5.3, legacy EROFS images are _NOT recommended_
due to runtime performance loss compared with non-legacy images.

Obsoleted erofs.mkfs
~~~~~~~~~~~~~~~~~~~~

There is an original erofs.mkfs version developed by Li Guifu,
which was replaced by the new erofs-utils implementation.

git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git -b obsoleted_mkfs

PLEASE NOTE: This version is highly _NOT recommended_ now.


erofsfuse
---------

erofsfuse is introduced to support EROFS format for various platforms
(including older linux kernels) and new on-disk features iteration.
It can also be used as an unpacking tool for unprivileged users.

It supports fixed-sized output decompression *without* any in-place
I/O or in-place decompression optimization. Also like the other FUSE
implementations, it suffers from most common performance issues (e.g.
significant I/O overhead, double caching, etc.)

Therefore, NEVER use it if performance is the top concern.

How to mount an EROFS image with erofsfuse
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

As the other FUSE implementations, it's quite easy to mount by using
erofsfuse, e.g.:
 $ erofsfuse foo.erofs.img foo/

Alternatively, to make it run in foreground (with debugging level 3):
 $ erofsfuse -f --dbglevel=3 foo.erofs.img foo/

To debug erofsfuse (also automatically run in foreground):
 $ erofsfuse -d foo.erofs.img foo/

To unmount an erofsfuse mountpoint as a non-root user:
 $ fusermount -u foo/


dump.erofs and fsck.erofs
-------------------------

dump.erofs and fsck.erofs are used to analyze, check, and extract
EROFS filesystems. Note that extended attributes and ACLs are still
unsupported when extracting images with fsck.erofs.

Note that fragment extraction with fsck.erofs could be slow now and
it needs to be optimized later.  If you are interested, contribution
is, as always, welcome.


Contribution
------------

erofs-utils is a part of EROFS filesystem project, which is completely
community-driven open source software.  If you have interest in EROFS,
feel free to send feedback and/or patches to:
  linux-erofs mailing list   <[email protected]>


Comments
--------

[1] According to the EROFS on-disk format, the tail blocks of files
    could be inlined aggressively with their metadata (called
    tail-packing) in order to minimize the extra I/Os and the storage
    space.

erofs-utils's People

Contributors

aglexport avatar comixhe avatar dm0- avatar dvandercorp avatar eriksjolund avatar ffontaine avatar haruue avatar helloc avatar hjn-1 avatar hsiangkao avatar huww98 avatar igoreisberg avatar iyenli avatar jengelh avatar jonathansmithguo avatar kraj avatar lostjeffle avatar mbaynton avatar mofishzz avatar nabijaczleweli avatar nolange avatar old-memories avatar ownia avatar pcc avatar pratik32 avatar salvete avatar stopire avatar taigerhu avatar watatuki avatar yawqi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

erofs-utils's Issues

big difference between squashfs and erofs size image

Hello,
I want to change squashfs to erofs image to performance issue, but my first test is very not exiting :
/usr/local/bin/mkfs.erofs -zlz4hc foo.erofs.img /run/WORK/CHROOT.NEW/
=> foo.erofs.img = 553 Mo

mksquashfs /run/WORK/CHROOT.NEW/ tmp/chroot.sqfs -noappend -comp lz4 -no-xattrs
=> /tmp/chroot.fs = 290 Mo

Erofs only compress image without any optimization found in squashfs ?

Regards,
Nicolas

[kind reminder] report issues or submiting patches via mailing list

This github repo is only an internal working branch myself.

The perferred way is to report issues or submiting patches via erofs mailing list:
[email protected] (Unmoderated mailing list)

Also see (It's also applicable to erofs-utils since it's a Linux kernel related userspace project):
https://www.kernel.org/doc/html/latest/process/submitting-patches.html

Note in particular the requirements for the Developer's Certification of Origin (aka the Signed-off-by tag). That has specific legal meanings (for example, you are certifying that your employer allows
you to contribute to open source projects, or at least, this open source project), so please take a close look at that.

[fuzzing] global-buffer-overflow

Original report: https://github.com/erofs/erofsnightly/actions/runs/10172576269/job/28135408276

Reproducible image (base64-encoded gzipped blob):
H4sICLInqWYAA2Vyb2ZzZnNja19saWJmdXp6ZXJfT1BXWWFrAGNgZWBg+P//fzcDCDAyIFOYYC4u
CTDQApMvmRkYKoH0PJ95qVUMExgUMRUC7fvNgGQVIxsDA1NSEpC1pBEs+58NoRKbAZgAbA6yGZhK
+CGUDwODIw5D/vMTYxVVABd52gzwSV5EYruiyPwlzzZigAPtjMYKmPEGAc0A1Wz98x9b2sQGgAr/
YRN3IM1CRjD6hkP20cOvD3afq9UDZloGHgYVIOmMz6upIAJUZIAyGVIm/Q/Kf8g5HyLDsQGh1RM7
uMgKkuoGGgEylrjMTgigZmMmdlzqhksm1KKSOR+pZA4UoMUlDfwPzx8slJgCSYgMAJRQJ58LBwAA

关于experimental分支的fragments和dedup特性在android上的几个bug

给aosp加上了最新的erofs-utils支持,4.19的高通865内核除了dax和fscache特性其他的也都从主线backport了,核心代码对比上游几乎没有差异了,不过最新两个特性出现了些bug,虽然是experimental,但是还是说下吧

AcmeUI/android_external_erofs-utils@5b93190

fragments支持在load android的fsconfig下packed inode得跳过,要不然查找不到路径(


Handling packed_file ...failed to find rblock: %d
in canned fs_config

Out of space? Out of inodes? The tree size of /home/tarsin/Acme/out/soong/.temp/tmp3d41sibp is 990187520 bytes (944 MB), with reserved space of 0 bytes (0 MB).


而且加上这个patch虽然能输出文件了,我bp的内核也没法读取,会触发这个https://github.com/torvalds/linux/blob/725737e7c21d2d25a4312c2aaa82a52bd03e3126/block/blk-core.c#L525, 虽然和上游代码高度一致,不过也不排除我bp的有问题

还有就是在开启dedup特性的时候制作某些镜像(比如android的vendor镜像)mkfs直接死循环了(等了十多分钟什么也没有输出,一直在占用一个线程的cpu时间,我还没去调试,如果您需要测试文件的话我可以传下

A couple of questions on EROFS

Hi Gao Xiang,

Good works on EROFS! I have a couple of questions, hope you can help to answer them.

  1. Comparing with lz4, lzma will make the size small, but decompression time will be longer, do you have any benchmark test results for lz4 and lzma in terms of size and performance.
  2. Do you plan to add lzma support for EROFS-Utils in buildroot?
  3. Do you plan to add zstd support for EROFS in kernel?

Thanks,
--Don

Build failed without `--with-lz4-libdir`

I tried to build this project with:

$ ./autogen.sh
$ ./configure
$ make

and got following configure error:

checking for lz4.h... yes
checking for LZ4_compress_destSize in -llz4... no
configure: error: Cannot find proper lz4 version (>= 1.8.0)

I am sure that I have lz4 1.9.2 installed, so I checked config.log and saw these link error:

configure:10419: checking for LZ4_compress_destSize in -llz4
configure:10444: gcc -o conftest -g -O2   -L  conftest.c -llz4   >&5
/usr/bin/ld: /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../../../../lib/Scrt1.o: in function `_start':
(.text+0x24): undefined reference to `main'
collect2: error: ld returned 1 exit status

This error is caused by an empty -L flag in the gcc command. I looked into configure.ac and found:
https://github.com/hsiangkao/erofs-utils/blob/dd37a983616706414e2e4232e2aa96b56a09fed6/configure.ac#L177

When the $with_lz4_libdir is an empty string, LDFLAGS=-L ${LDFLAGS}, that's why we got the empty -L.

Here is a working patch for dd37a98:

diff --git a/configure.ac b/configure.ac
index f925358..01a95e4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -174,7 +174,7 @@ if test "x$enable_lz4" = "xyes"; then
 
   if test "x${have_lz4h}" = "xyes" ; then
     saved_LDFLAGS=${LDFLAGS}
-    LDFLAGS="-L$with_lz4_libdir ${LDFLAGS}"
+    LDFLAGS="-L$LZ4_LIBS ${LDFLAGS}"
     AC_CHECK_LIB(lz4, LZ4_compress_destSize, [
       have_lz4="yes"
       have_lz4hc="yes"

Please fix it.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.