SCC Overview

From JogampWiki
Revision as of 16:31, 12 September 2013 by Sgothel (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Source Certification Contract (SCC)

Question:

Are You Who You Say You Are?

Answer:

Trust the Source, User

The acronym SCC is not related to the Sirius Cybernetics Corporation or any of their superficial design flaws :)

Overview

Are You Who You Say You Are?

This question doesn't make clear Who is who, or who are we talking about?

When attempting to run a binary object on your system, users need to trust the binary and its original source code.

The question should ask for the authorship of the binary and it's assumed source code, hence SCC authenticates the binary against the source code it claims to be originated from.

SCC answers:

This binary is produced by this set of source code, which is trusted by these people.

SCC verifies whether a binary object's signature matches its assumed source code signatures.

SCC provides a list of personal signatures who trust this source code, as well as a list of personal signatures who trust this binary object. Hence SCC incorporates a chain of trust.

Motivation

SCC was conceived in this discussion in our IRC channel, 2013-09-12.

What's wrong with current binary distribution models?

Certificate based security, is not secure

Certificates are designed for identification. Certificate based security is based on the idea that if you know who the author is you can trust the binary’s this person hands out. The fallacy with certificate based security thinking is that people who own a certificate identity do not automatically write secure code.

See our overview, how SCC solves this issue.

Signed Applets are privileged

Certificates may grant extra privileges that a simple application should not have, this makes certified application break outside a security sandbox. An application that is run outside the sandbox is naturally less secure compared to one unsigned application running inside the sandbox. http://docs.oracle.com/javase/tutorial/deployment/applet/security.html

Revocation is hard using certificate based security because you need to tell the supplier/author of the application to revoke and re-deploy all its applications using a new certificate if a flaw is found in one of the authors applications.

Hence it is considered most secure not to sign an Applet and hence not to grant extra privileges, which would allow the Applet to reach out of its otherwise considered secure sandbox.

Further Readings ..

The authors of the following references came to the same conclusions independently.

Design

Each tag has a unique cryptographic signature, either providing a hash value over source code or binary objects.

Source and binary tags are stored in an accessible source code repositories (SCR).

The source tag is provided at build time.

The binary tags are generated at each build and retroactively added to the SCR.

The binary contains both, source and binary tags, i.e. it claims a source code identification while providing it's own binary identification.

Developers may associate their personal signature to the source tag if they trust its code.

Developers may associate their personal signature to the binary tags if they trust its code and build.

Auth-1: SCC validates the binary against its tag and whether both tags exist in the SCR and are equal.

Auth-2: SCC may show personal signatures associate to the source and binary tags, allowing the user to make a choice based on the chain of trust.

Revocation

Revocation of a single binary tag is possible by simply removing the binary tag from the SCR.