ostree/src/libostree
Vivek Dasmohapatra b6d77f6ad6 fetcher: Return NOT_FOUND when the HTTP code is 410 or 404
This will be used by the pull code to download optional data.
2013-08-23 12:15:49 -04:00
..
README.md core: Associate branches with remotes, move trigger runs into checkout 2012-04-03 23:46:34 -04:00
ostree-1.pc.in Install a shared library 2013-07-26 19:25:07 -04:00
ostree-chain-input-stream.c libostree: Fix many gtk-doc warnings 2013-08-17 08:41:31 -04:00
ostree-chain-input-stream.h core: Fix all introspection warnings 2013-07-27 10:13:30 -04:00
ostree-checksum-input-stream.c libostree: Fix many gtk-doc warnings 2013-08-17 08:41:31 -04:00
ostree-checksum-input-stream.h Switch to #pragma once for headers 2013-07-09 18:53:22 -04:00
ostree-core.c libostree: Delete some leftover remnant API for archive files 2013-08-17 14:08:04 -04:00
ostree-core.h libostree: Delete some leftover remnant API for archive files 2013-08-17 14:08:04 -04:00
ostree-diff.c core: Fix all introspection warnings 2013-07-27 10:13:30 -04:00
ostree-diff.h core: Fix all introspection warnings 2013-07-27 10:13:30 -04:00
ostree-fetcher.c fetcher: Return NOT_FOUND when the HTTP code is 410 or 404 2013-08-23 12:15:49 -04:00
ostree-fetcher.h core: Fix all introspection warnings 2013-07-27 10:13:30 -04:00
ostree-libarchive-input-stream.c Install a shared library 2013-07-26 19:25:07 -04:00
ostree-libarchive-input-stream.h Switch to #pragma once for headers 2013-07-09 18:53:22 -04:00
ostree-mutable-tree.c libostree: Fix many gtk-doc warnings 2013-08-17 08:41:31 -04:00
ostree-mutable-tree.h Switch to #pragma once for headers 2013-07-09 18:53:22 -04:00
ostree-repo-checkout.c libostree: Check out directories depth-first in serial, switch to sync API 2013-08-21 09:22:37 -04:00
ostree-repo-file-enumerator.c Install a shared library 2013-07-26 19:25:07 -04:00
ostree-repo-file-enumerator.h Switch to #pragma once for headers 2013-07-09 18:53:22 -04:00
ostree-repo-file.c core: Reduce API surface for file access 2013-07-31 00:35:53 -04:00
ostree-repo-file.h Switch to #pragma once for headers 2013-07-09 18:53:22 -04:00
ostree-repo-libarchive.c Install a shared library 2013-07-26 19:25:07 -04:00
ostree-repo-private.h libostree: Delete some leftover remnant API for archive files 2013-08-17 14:08:04 -04:00
ostree-repo-prune.c libostree: Extend gtk-doc coverage for refs and prune APIs 2013-08-19 10:32:08 -04:00
ostree-repo-pull.c Use { 0, } for structure initialization rather than memset() 2013-08-18 07:20:46 -04:00
ostree-repo-refs.c libostree: Extend gtk-doc coverage for refs and prune APIs 2013-08-19 10:32:08 -04:00
ostree-repo-traverse.c Add ostree_commit_get_parent() to get parent from variant 2013-08-15 06:52:53 +02:00
ostree-repo.c libostree: Increase gtk-doc coverage of ostree-repo.[ch] 2013-08-17 13:57:22 -04:00
ostree-repo.h libostree: Check out directories depth-first in serial, switch to sync API 2013-08-21 09:22:37 -04:00
ostree-types.h core: Drop duplicated type declarations 2013-08-17 08:23:28 -04:00
ostree.h Install a shared library 2013-07-26 19:25:07 -04:00

README.md

Repository design

At the heart of OSTree is the repository. It's very similar to git, with the idea of content-addressed storage. However, OSTree is designed to store operating system binaries, not source code. There are several consequences to this. The key difference as compared to git is that the OSTree definition of "content" includes key Unix metadata such as owner uid/gid, as well as all extended attributes.

Essentially OSTree is designed so that if two files have the same OSTree checksum, it's safe to replace them with a hard link. This fundamental design means that an OSTree repository imposes negligible overhead. In contrast, a git repository stores copies of zlib-compressed data.

Key differences versus git

  • As mentioned above, extended attributes and owner uid/gid are versioned
  • Optimized for Unix hardlinks between repository and checkout
  • SHA256 instead of SHA1
  • Support for empty directories

Binary files

While this is still in planning, I plan to heavily optimize OSTree for versioning ELF operating systems. In industry jargon, this would be "content-aware storage".

Trimming history

OSTree will also be optimized to trim intermediate history; in theory one can regenerate binaries from corresponding (git) source code, so we don't need to keep all possible builds over time.

MILESTONE 1

  • Basic pack files (like git)

MILESTONE 2

  • Store checksums as ay
  • Drop version/metadata from tree/dirmeta objects
  • Add index size to superindex, pack size to index
    • So pull can calculate how much we need to download
  • Split pack files into metadata/data
  • pull: Extract all we can from each packfile one at a time, then delete it
  • Restructure repository so that links can be generated as a cache; i.e. objects/raw, pack files are now the canonical
  • For files, checksum combination of metadata variant + raw data
    • i.e. there is only OSTREE_OBJECT_TYPE_FILE (again)

MILESTONE 3

  • Drop archive/raw distinction - archive repositories always generate packfiles per commit
  • Include git packv4 ideas:
    • metadata packfiles have string dictionary (tree filenames and checksums)
    • data packfiles match up similar objects
  • Rolling checksums for partitioning large files? Kernel debuginfo
  • Improved pack clustering
    • file fingerprinting?
  • ELF-x86 aware deltas

git: http://git-scm.com/ Venti: http://plan9.bell-labs.com/magic/man2html/6/venti Elephant FS: http://www.hpl.hp.com/personal/Alistair_Veitch/papers/elephant-hotos/index.html

Compression

xdelta: http://xdelta.org/ Bsdiff: http://www.daemonology.net/bsdiff/ xz: http://tukaani.org/xz/