squashfs-tools-ng VS cbindgen

Compare squashfs-tools-ng vs cbindgen and see what are their differences.

cbindgen

A project for generating C bindings from Rust code (by mozilla)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
squashfs-tools-ng cbindgen
7 19
187 2,189
- 1.8%
8.0 7.5
about 1 month ago 7 days ago
C Rust
GNU General Public License v3.0 or later Mozilla Public License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

squashfs-tools-ng

Posts with mentions or reviews of squashfs-tools-ng. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-06.
  • C Strings and my slow descent to madness
    3 projects | news.ycombinator.com | 6 Apr 2023
    ... except that that is also subtly broken.

    It works if you write multiple UTF-8 code-units in one go, but breaks if you send them in several writes, or if you use the ANSI API (with the A suffix). Guess what the Windows implementation of stdio (printf and friends) does.

    I already had some fun with this: https://github.com/AgentD/squashfs-tools-ng/issues/96#issuec...

    And we didn't even discuss command line argument passing yet :-)

    I tried to test it with the only other two languages I know besides English: German and Mandarin. Specifically also, because the later requires multi-byte characters to work. Getting this to work at all in a Windows terminal on an existing, German Windows 7 installation was an adventure on it's own.

    Turns out, trying to write language agnostic command line applications on Windows is a PITA.

  • Getting the maximum of your C compiler, for security
    3 projects | news.ycombinator.com | 31 Aug 2021
    IIRC fanalyzer is a fairly recent addition to gcc. Has it become reasonable usable yet?

    I recall getting a bit excited when I first read about it, but the results I got where rather bizarre (e.g. every single function that allocated memory and returned a pointer to it was labeled as leaking memory).

    It did the fun exercise myself once to riffle through the gcc manpage, cobble together warning flags and massage them into autoconf[1][2].

    There is a very handy m4 script in the util-linux source for testing supported warning flags[3].

    [1] https://git.infradead.org/mtd-utils.git/blob/HEAD:/configure...

    [2] https://github.com/AgentD/squashfs-tools-ng/blob/master/conf...

    [3] https://github.com/karelzak/util-linux/blob/master/m4/compil...

  • Squashfs turning 20, Squashfs tools 4.5 released
    3 projects | news.ycombinator.com | 24 Jul 2021
    > Honestly I think you could be a little more respectful of the project that inspired yours.

    I do. I had a lot of great "Huh? That's clever!" moments while reverse engineering the format and formed a mental image of a clearly brilliant programmer who managed to squeeze the last bits out of some data structures using really clever tricks that I myself probably wouldn't have come up with. During that time I gained a lot of respect for the project and the author.

    Also, please don't forget: the whole project is the filesystem, the tools are just a part of that. I care about this project, which is why I decided to start this effort in the first place. Which I explicitly did not advertise as a replacement, but an augmentation (see [2]).

    > I'd be angry too ... Definitely understandable.

    Yes, I agree! And I can understand why in the heat of the moment you might write something angry and threatening. But certainly not if you've had a few weeks time to calm down and think things over.

    > And you plagiarized part of his readme.

    https://github.com/plougher/squashfs-tools/blob/master/RELEA...

    https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/lin...

    https://github.com/AgentD/squashfs-tools-ng/blob/master/READ...

    Oh yes? Which part?

    > ... calling it spaghetti code (which isn't immediately verifiable)

    Here you go, have fun: https://github.com/plougher/squashfs-tools/blob/master/squas...

    However, I cannot blame anyone here, I totally get how those things happen and have witnessed it myself in action:

    You write a simple tool supporting a larger project. It's written by the seat of your pants without much planning, since it's not big and does one simple job. Then it gets used in production, eventually requirements change, other people pile on patches, but try to keep the diff small, so it's reviewable and it receives maybe a little less care than the actual project it supports. Nobody bothers to overhaul it or write documentation because, hey, it works, and any large changes might risk breaking things.

    Even if nobody is to blame for it, the end result is still the same: an undocumented mess that is hard to wrap your head around if you aren't the original author, who is the only one with the bigger picture.

    I tried for roughly a week to pull the code (there are some more files than this and some of the inter dependencies are nasty) apart into stacked utility libraries and a pure command line parsing front end, with the hopes to maybe get this upstream once it is done. I gave up and decided that at this point I understood enough about the format to start afresh and not touch what I believed to be an unmaintained mess.

  • The Byte Order Fiasco
    7 projects | news.ycombinator.com | 8 May 2021
    FWIW there is an on various BSDs that contains "beXXtoh", "leXXtoh", "htobeXX", "htoleXX" where XX is a number of bits (16, 32, 64).

    That header is also available on Linux, but glibc (and compatible libraries) put named it instead.

    See: man 3 endian (https://linux.die.net/man/3/endian)

    Of course it gets a bit hairier if the code is also supposed to run on other systems.

    MacOS has OSSwapHostToLittleIntXX, OSSwapLittleToHostIntXX, OSSwapHostToBigIntXX and OSSwapBigToHostIntXX in .

    I'm not sure if Windows has something similar, or if it even supports running on big endian machines (if you know, please tell).

    My solution for achieving some portability currently entails cobbling together a "compat.h" header that defines macros for the MacOS functions and including the right headers. Something like this:

    https://github.com/AgentD/squashfs-tools-ng/blob/master/incl...

    This is usually my go-to-solution for working with low level on-disk or on-the-wire binary data structures that demand a specific endianness. In C I use "load/store" style functions that memcpy the data from a buffer into a struct instance and do the endian swapping. The copying is also necessary because the struct in the buffer may not have proper alignment.

    In C++ code, all of this can of course be neatly stowed away in a special class with overloaded operators that transparently takes care of everything and "decays" into a single integer and exactly the above code after compilation, but is IMO somewhat cleaner to read and adds much needed type safety.

  • Tar is an ill-specified format
    3 projects | news.ycombinator.com | 29 Mar 2021
    I once foolishly thought, I'll write a tar parser because, "how hard can it be" [1].

    I simply tried to follow the tar(5) man page[2], and got a reference test set from another website posted previously on HN[3].

    Along the way I discovered that NetBSD pax apparently cannot handle the PAX format[3] and my parser inadvertently uncovered that git-archive was doing the checksums wrong, but nobody noticed because other tar parsers were more lax about it[4].

    As the article describes (as does the man page), tar is actually a really simple format, but there are just so many variants to choose from.

    Turns out, if you strive for maximum compatibility, it's easiest to stick to what GNU tar does. If you think about it, IMO in many ways the GNU project ended up doing "embrace, extend, extinguish" with Unix.

    [1] https://github.com/AgentD/squashfs-tools-ng/tree/master/lib/...

    [2] https://www.freebsd.org/cgi/man.cgi?query=tar&sektion=5

    [3] https://mgorny.pl/articles/portability-of-tar-features.html

    [4] https://www.spinics.net/lists/git/msg363049.html

  • LZ4, an Extremely Fast Compression Algorithm
    9 projects | news.ycombinator.com | 27 Jan 2021
    A while ago I did some simplistic SquashFS pack/unpack benchmarks[1][2]. I was primarily interested in looking at the behavior of my thread-pool based packer, but as a side effect I got a comparison of compressor speed & ratios over the various available compressors for my Debian test image.

    I must say that LZ4 definitely stands out for both compression and uncompression speed, while still being able to cut the data size in half, making it probably quite suitable for life filesystems and network protocols. Particularly interesting was also comparing Zstd and LZ4[3], the former being substantially slower, but at the same time achieving a compression ratio somewhere between zlib and xz, while beating both in time (in my benchmark at least).

    [1] https://github.com/AgentD/squashfs-tools-ng/blob/master/doc/...

    [2] https://github.com/AgentD/squashfs-tools-ng/blob/master/doc/...

    [3] https://github.com/AgentD/squashfs-tools-ng/blob/master/doc/...

cbindgen

Posts with mentions or reviews of cbindgen. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-07.
  • Hello World in Go From Rust
    2 projects | dev.to | 7 Jan 2024
    Golang uses cgo to communicate with external C libraries and Rust uses FFI (Foreign function interfaces) to export C functions. Additionally, a library for automatically generating bindings can be used to generate the header files (.h). In our case, we'll only be exporting two C functions, so using cbindgen is overkill but we'll use it regardless because why not?  Firstly, we'll write the rust functions we want to export. We'll start by creating a new rust library:
  • Ask HN: Automating multi-lang communication with a meta programming language
    1 project | news.ycombinator.com | 11 Oct 2023
    [1]: https://github.com/mozilla/cbindgen
  • Nim v2.0 Released
    49 projects | news.ycombinator.com | 1 Aug 2023
    As a 2-step approach, you could also probably use https://github.com/mozilla/cbindgen and then Nim's native C FFI.
  • ffizz: Build a Beautiful C API in Rust
    6 projects | dev.to | 20 Jun 2023
    The tooling for the first kind -- calling Rust from another language -- is a bit less developed, and tends to rely on code generation that doesn't necessarily produce a natural C API. cbindgen, uniffi, cxx, and Diplomat all take this course.
  • How can I use rust libraries in zig/C
    2 projects | /r/rust | 16 Apr 2023
    There's also cbindgen for automating the generation of C headers once you've got your code in the right shape and you'll also want to read the Rustonomicon.
  • C Strings and my slow descent to madness
    3 projects | news.ycombinator.com | 6 Apr 2023
    You can backport Rust standard library to C using https://github.com/eqrion/cbindgen .
  • Rust FFI and cbindgen: Integrating Embedded Rust Code in C
    2 projects | dev.to | 23 Jan 2023
    Later we'll see what cbindgen essentially does is receive a configuration and a Rust library and then spit out a C header (.h) file. One might think that what cbindgen is doing might not be that special and can be done by hand. In which some cases that might be true if the project is simple enough. Though additionally as the cbindgen documentation states:
  • Nautilus just fucked me. (Gnome paper cuts)
    3 projects | /r/linux | 14 Dec 2022
    Fuck it, I'll take the bait. Rust allows for amazing C interop by allowing for exporting of C types as a dynamic library, like C. Unlike C, this still allows for Rust's advanced checking at compile time. librsvg is one such library that is being used in the GTK ecosystem that is also almost completely Rust. You can use tools like cbindgen to generate C bindings.
  • Hey Rustaceans! Got a question? Ask here! (47/2022)!
    10 projects | /r/rust | 21 Nov 2022
    Or alternatively cbindgen to create the header file from the Rust source.
  • 7 ways to pass a string between 🦀 Rust and C
    3 projects | dev.to | 30 Jul 2022
    The easiest way to obtain the headers for the rust code is to use the cbingen library.

What are some alternatives?

When comparing squashfs-tools-ng and cbindgen you can also consider the following projects:

squashfs-tools - tools to create and extract Squashfs filesystems

rust-bindgen - THIS CRATE IS DEPRECATED, please use https://github.com/servo/rust-bindgen.

7-Zip-zstd - 7-Zip with support for Brotli, Fast-LZMA2, Lizard, LZ4, LZ5 and Zstandard

cxx - Safe interop between Rust and C++

dracut - dracut the event driven initramfs infrastructure

rusty-cheddar - A Rust crate for automatically generating C header files from Rust source file.

zfs - OpenZFS on Linux and FreeBSD

flutter_rust_bridge - Flutter/Dart <-> Rust binding generator, feature-rich, but seamless and simple.

genext2fs - genext2fs - ext2 filesystem generator for embedded systems

tch-rs - Rust bindings for the C++ api of PyTorch.

zstd - Zstandard - Fast real-time compression algorithm

Module Linker - browse modules by clicking directly on "import" statements on GitHub