Git Product home page Git Product logo

tar-diff's Introduction

tar-diff

tar-diff is a golang library and set of commandline tools to diff and patch tar files.

pkg/tar-diff and the tar-diff takes two (optionally compressed) tar files and generates a single file representing the delta between them.

pkg/tar-patch takes a tardiff and the uncompressed contents (such as an extracted directory) of the first tarfile and reconstructs (binary identically) the second tarfile (uncompressed).

Example:

$ tar-diff old.tar.gz new.tar.gz delta.tardiff
$ tar xf old.tar.gz -C extracted/
$ tar-patch delta.tardiff extracted/ reconstructed.tar
$ zcat new.tar.gz | shasum
$ shasum reconstructed.tar

The main usecase for tar-diff is for more efficient distribution of OCI images. These images are typically transferred as compressed tar files, but the content is refered to and validated by the checksum of the uncomressed content. This makes it possible to use an extracted earlier version of and image in combination with a tardiff to reconstruct and validate the current version of the image.

Delta compression is based on bsdiff and zstd compression.

The tar-diff file-format is described in file-format.md

License

tar-diff is licensed under the Apache License, Version 2.0. See LICENSE for the full license text.

tar-diff's People

Contributors

alexlarsson avatar owtaylor avatar tomsweeneyredhat 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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tar-diff's Issues

Mis-applied tardiff

Found an example of tars that don't diff and patch correctly

$ curl -O https://fishsoup.net/misc/ubi8-8.0-129.tar.gz
$ curl -O https://fishsoup.net/misc/ubi8-8.0-154.tar.gz
$ tar-diff ubi8-8.0-129.tar.gz ubi8-8.0-154.tar.gz ubi8 .tardiff
$ mkdir ubi8-8.0-129
$ tar -C ubi8-8.0-129 -xf ubi8-8.0-129.tar.gz 
$ tar-patch ubi8.tardiff ubi8-8.0-129 ubi8-8.0-154-reconstructed.tar
$ zcat  ubi8-8.0-154.tar.gz | sha256sum
25311323356d6a4a125dd592d8827054a9d14ef8e161ea2c073571a087346013
$ sha256sum ubi8-8.0-154-reconstructed.tar
6d25ba633a6297a61b001d3340bc92b6dd1938b0caf8c56686885402071822f2
  • The reconstructed tar file has the right number of bytes
  • It unpacks into a file system tree with the right files, and the right size and permissions
  • The contents of two files are wrong:
    • usr/lib64/python3.6/__pycache__/_pydecimal.cpython-36.pyc
    • usr/lib64/python3.6/__pycache__/gettext.cpython-36.pyc
  • If you repack the tarballs with GNU tar or libarchive's bsdtar, the problem doesn't occur

All a bit mysterious! :-)

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.