On 18-11-2018 10:38:51 +0100, Michał Górny wrote:
> On Sun, 2018-11-18 at 10:16 +0100, Fabian Groffen wrote:
> > On 17-11-2018 12:21:40 +0100, Michał Górny wrote:
> > > Problems with the current binary package format
> > > -----------------------------------------------
> > > 
> > > The following problems were identified with the package format currently
> > > in use:
> > > 
> > > 1. **The packages rely on custom binary archive format to store
> > >    metadata.**  It is entirely Gentoo invented, and requires dedicated
> > >    tooling to work with it.  In fact, the reference implementation
> > >    in Portage does not even include a CLI tool to work with tbz2
> > >    packages; an unofficial implementation is provided as part
> > >    of portage-utils toolkit [#PORTAGE-UTILS]_.
> > 
> > I think you should rewrite this section to the argument that the
> > metadata is hard to edit, and that there is only one tool to do so
> > (except a python interface from Portage?).
> > On a separate note, I don't think portage-utils can be considered
> > "unofficial", it is a Gentoo official project as far as I am aware.
> 
> In this context, Portage is 'official'.  Portage-utils is a project
> that's developed entirely separately from Portage and doesn't use
> Portage APIs but instead reinvents everything.  As such, it is easy for
> the two to go out of sync.  Or for one of them to have bugs that
> the other one doesn't have (say, with endianness).

I'm not sure if it's actually true, I was under the impression the same
author(s) worked on the Portage as well as portage-utils code.  Anyway,
aren't quickpkg and emerge enough from a user's perspective?

> > > 2. **The format relies on obscure compressor feature of ignoring
> > >    trailing garbage**.  While this behavior is traditionally implemented
> > >    by many compressors, the original reasons for it have become long
> > >    irrelevant and it is not surprising that new compressors do not
> > >    support it.  In particular, Portage already hit this problem twice:
> > >    once when users replaced bzip2 with parallel-capable pbzip2
> > >    implementation [#PBZIP2]_, and the second time when support for zstd
> > >    compressor was added [#ZSTD]_.
> > 
> > I think this is actually the result of a rather opportunistic
> > implementation.  The fault is that we chose to use an extension that
> > suggests the file is a regular compressed tarball.
> > When one detects that a file is xpak padded, it is trivial to feed the
> > decompressor just the relevant part of the datastream.  The format
> > itself isn't bad, and doesn't rely on obscure behaviour.
> 
> Except if you don't have the proper tools installed.  In which case
> the 'opportunistic' behavior made it possible to extract the contents
> without special tools... except when it actually happens not to work
> anymore.  Roy's reply indicates that there is actually interest in this
> design feature.

Your point is that the format is broken (== relies on obscure compressor
feature).  My point is that the format simply requires a special tool.
The fact that we prefer to use existing tools doesn't imply in any way
that the format is broken to me.
I think you should rewrite your point to mention that you don't want to
use a tool that doesn't exist in @system (?) to unpack a binpkg.  My
guess is that you could use some head/tail magic in a script if the
trailing block is upsetting the decompressor.

I'm not saying this may look ugly, I'm just saying that your point seems
biased.

> > > 3. **Placing metadata at the end of file makes partial fetches
> > >    complex.**  While it is technically possible to obtain package
> > >    metadata remotely without fetching the whole package, it usually
> > >    requires e.g. 2-3 HTTP requests with rather complex driver.  For
> > >    comparison, if metadata was placed at the beginning of the file,
> > >    early-terminated pipeline with a single fetch request would suffice.
> > 
> > I think this point needs to be quantified somewhat why it is so
> > important.
> > I may be wrong, but the average binpkg is small, <1MiB, bigger packages
> > are <50MiB.
> > So what is the gain to be saved here?  A "few" MiBs for what operation
> > exactly?  I say "few" because I know for some users this is actually not
> > just a blib before it's downloaded.  So if this is possible to achieve,
> > in what scenarios is this going to be used (and is this often?).
> 
> Last I checked, Gentoo aimed to support more users than the 'majority'
> of people with high-throughput Internet access.  If there's no cost
> in doing things better, why not do them better?

You didn't address the critical question, but instead just repeated what
I said.
So again, why do you need to read just the metadata?

> > > 4. **Extending the format with OpenPGP signatures is non-trivial.**
> > >    Depending on the implementation details, it either requires fetching
> > >    additional detached signature, breaking backwards compatibility or
> > >    introducing more custom logic to reassemble OpenPGP packets.
> > 
> > I think one could add an extra key to the xpak that holds a gpg sig or
> > something.  Perhaps this point is better phrased as that current binpkgs
> > don't have any validation options defined.
> 
> ...which extra key would mean that the two disjoint implementations
> in use would need more custom code that extracts the signature,
> reconstructs signed data for verification and verifies it.  Or, in other
> words, that user needs even more custom tooling to manually verify
> the package he just fetched.

I don't see your point.  If you define what the package format looks
like, you just need to implement that.  There is no point in having a
binpkg format that Portage doesn't implement properly.  Portage is
well-equipped to implement any of the approaches.  A user should use
Portage to install a package.  A poweruser could use a separate tool for
a scenario where he/she's in charge of keeping things sane.  Relevancy?

I just don't agree that extending the format is non-trivial.  You seem
to have no arguments other than adding "custom logic", which is what you
eventually also do in the reference implementation of your new approach.

> > > 5. **Metadata is not compressed.**  This is not a significant problem,
> > >    it is just listed for completeness.
> > > 
> > > 
> > > Goals for a new container format
> > > --------------------------------
> > > 
> > > The following goals have been set for a replacement format:
> > > 
> > > 1. **The packages must remain contained in a single file.**  As a matter
> > >    of user convenience, it should be possible to transfer binary
> > >    packages without having to use multiple files, and to install them
> > >    from any location.
> > > 
> > > 2. **The file format must be entirely based on common file formats,
> > >    respecting best practices, with as little customization as necessary
> > >    to satisfy the requirements.**  In particular, it is unacceptable
> > >    to create new binary formats.
> > 
> > I take this as your personal opinion.  I don't quite get why it is
> > unacceptable to create a new binary format though.  In particular when
> > you're looking for efficiency, such format could serve your purposes.
> > As long as it's clearly defined, I don't see the problem with a binary
> > format either.
> > Could you add why it is you think binary formats are unacceptable here?
> 
> Because custom binary formats require specialized tooling, and are
> a royal PITA when the user wants to do something that the author of
> specialized tooling just happened not to think worthwhile, or when
> the tooling is not available for some reason.  And before you ask really
> silly questions, yes, I did fight binary packages over hex editor
> at some point.

Which I still don't understand, to be frank.  I think even Portage
exposes python APIs to get to the data.

> The most trivial case is an attempted recovery of a broken system.
> If you don't have Portage working and don't have portage-utils
> installed, do you really prefer a custom format which will require you
> to fetch and compile special tools?  Or is one that can be processed
> with tools you're quite likely to have on every system, like tar?

Well, I think the idea behind the original binpkg format was to use tar
directly on the files in emergency scenarios like these...
The assumption was bzip2 decompressor and tar being available.
I think it is an example of how you add something, while still allowing
to fallback on existing tools.

> > > 3. **The file format should provide for partial fetching of binary
> > >    packages.**  It should be possible to easily fetch and read
> > >    the package metadata without having to download the whole package.
> > 
> > Like above, what is the use-case here?  Why would you want this?  I
> > think I'm missing something here.
> 
> Does this harm anything?  Even if there's little real use for this, is
> there any harm in supporting it?  Are we supposed to do things the other
> way around with no benefit just because you don't see any real use for
> it?

Well, you make a huge point out of it.  And if it isn't used, then why
bother so much about it.  Then it just looks like you want to use it as
an argument to get rid of something you just don't like.

In my opinion you better just say "hey I would like to implement this
binpkg format, because I think it would be easier to support with
minimal tools since it doesn't have custom features".  I would have
nothing against that.  Simple and elegant is nice, you don't need to
invent arguments for that, in my opinion.

Fabian

> > > 4. **The file format must provide support for OpenPGP signatures.**
> > >    Preferably, it should use standard OpenPGP message formats.
> > > 
> > > 5. **The file format must allow for efficient metadata updates.**
> > >    In particular, it should be possible to update the metadata without
> > >    having to recompress package files.
> > > 
> > > 6. **The file format should account for easy recognition both through
> > >    filename and through contents.**  Preferably, it should have distinct
> > >    features making it possible to detect it via file(1).
> > > 
> > > 7. **The file format should allow for metadata compression.**
> > > 
> > > 8. **The file format should make future extensions easily possible
> > >    without breaking backwards compatibility.**
> > 
> > 
> 
> -- 
> Best regards,
> Michał Górny



-- 
Fabian Groffen
Gentoo on a different level

Attachment: signature.asc
Description: PGP signature

Reply via email to