Bug 66161 - Use the same token label for trust token as libnssckbi.so
Summary: Use the same token label for trust token as libnssckbi.so
Status: RESOLVED WONTFIX
Alias: None
Product: p11-glue
Classification: Unclassified
Component: p11-kit (show other bugs)
Version: unspecified
Hardware: Other All
: medium normal
Assignee: Stef Walter
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-25 14:43 UTC by Stef Walter
Modified: 2017-01-18 19:53 UTC (History)
7 users (show)

See Also:
i915 platform:
i915 features:


Attachments
trust: Use NSS's name for default trust token (1.50 KB, patch)
2013-06-25 14:49 UTC, Stef Walter
Details | Splinter Review

Description Stef Walter 2013-06-25 14:43:14 UTC
Several NSS using applications check the token label for the default builtin certificates before using trust from that store.
    
Since p11-kit-trust.so is supposed to (also) be a drop in replacement for libnssckbi.so, use the same token name.
    
NSS likes tokens to have unique labels. However this is a replacement for the libnssckbi.so tokens, and thus using the same token and certificate labels is not a surprise.
Comment 1 Stef Walter 2013-06-25 14:44:52 UTC
Here's a mozilla bug which tracks fixing the issue in the Mozilla PSM code: https://bugzilla.mozilla.org/show_bug.cgi?id=880269
Comment 2 Stef Walter 2013-06-25 14:49:24 UTC
Created attachment 81414 [details] [review]
trust: Use NSS's name for default trust token

Several NSS using applications check the token label for the default
builtin certificates before using trust from that store.

Sicne p11-kit-trust.so is supposed to (also) be a drop in replacement
for libnssckbi.so, use the same token name.

NSS likes tokens to have unique labels. However this is a replacement
for the libnssckbi.so tokens, and thus using the same token and
certificate labels is not a surprise.
Comment 3 Stef Walter 2013-06-25 14:53:25 UTC
The attached patch changes only the "Default Trust" token to the NSS label of  "Builtin Object Token". The certificates/trust on this token are the ones installed by rpms, not the ones configured by the system administrator.

This matches the intents of applications that check the token label (like Firefox's extension install code): that the certificate and trust policy have come from the builtin set and not a configured source.

With this patch we allow p11-kit-trust.so to be a drop in replacement for libnssckbi.so as it was designed to be.

I still think that the way this check is done in Firefox and other apps is dubious (see my comments on mozilla bug).
Comment 4 Robert Relyea 2013-06-25 17:17:18 UTC
I think this is a bad idea. The issue that this was supposed to deal with looks like it will be resolved upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=880269#c5 (Dan Veditz is the mozilla security guy, If he agrees, then it's likely to happen).

Let's not start off on the wrong foot here because of this issue. There is already a way to determine if a module is a 'built-ins' module without hacking up the token name.

bob
Comment 5 Stef Walter 2013-06-26 14:23:16 UTC
(In reply to comment #4)
> I think this is a bad idea. The issue that this was supposed to deal with
> looks like it will be resolved upstream:
> https://bugzilla.mozilla.org/show_bug.cgi?id=880269#c5 (Dan Veditz is the
> mozilla security guy, If he agrees, then it's likely to happen).

Well there are lots more upstreams. This string is found in many projects.

> Let's not start off on the wrong foot here because of this issue. There is
> already a way to determine if a module is a 'built-ins' module without
> hacking up the token name.

I won't be pushing this into p11-kit upstream, based on the discussion here and on IRC.

However if a downstream OS needs to have the p11-kit-trust module be a compatible drop-in replacement for libnssckbi.so (eg: to use in a point version of a stable Linux distribution), this patch can be used to accomplish that.
Comment 6 Kai Engert 2017-01-17 16:01:45 UTC
I would like to reopen this issue, and request that we create a finer grainer solution than the one originally suggested.

In the meantime, the situation has become worse in Fedora land.

In comment 4, Bob assumed that in order to solve the problems, it would be sufficient to distinguish between CAs stored in a 'built-ins' module, CAs that aren't.

That's no longer sufficient for the most recent issue we're seeing.

Mozilla has decided to impose additional constraints on the root CAs that they ship with Firefox. For example, for certificates issued after a certain date, they require that a subject-alt-name is present, and they no longer accept the domain name in the subject CN as sufficient.

On Fedora, where admin installed private CAs are provided to Firefox as part of our p11-kit-trust module, Firefox imposes those same constraints on the enterprise issued certificates, too.

As a result, Fedora Firefox rejects certificates issued by private CA deployments, see https://bugzilla.redhat.com/show_bug.cgi?id=1400293#c9

I've reported the issue to Mozilla, but the developer thinks the issue needs to be fixed outside of Firefox, because Firefox itself is working correctly, it's only because of our modifications to the trust module that things are failing:
https://bugzilla.mozilla.org/show_bug.cgi?id=1324096

There is an additional known bug. HPKP (http public key pinning) in Firefox is broken on Fedora. You can find the detailed explanation why it's broken here: https://bugzilla.redhat.com/show_bug.cgi?id=1207335

The situation is worse here, because enabling pinning for sites from private CAs, which might be use for MITM boxes, could lock out users from accessing the sites again, when roaming across networks with portable devices across networks.

So, despite the fact that Mozilla has recently changed their code to no longer check the token name for an exact match, but rather use the "has builtins" to identify the token
 ( https://hg.mozilla.org/mozilla-central/rev/50a6f462a97c )
that still doesn't help us.

We need a solution that solves both of the following:

(a) only the root CAs that Mozilla ships are considered built-in status,
    to ensure
    (1) only those will be allowed for public web pinning,
    and
    (2) only those will be enforced to comply with the additional 
        constraints that Mozilla wants on the public web

(b) all CAs installed by a local deployment, that isn't part of the
    public web, should be on a module that doesn't match 
    Mozilla's built-in properties


My older idea for a solution was:
- introduce a third category into p11-kit-trust, in addition to 
  the already existing "system trust" and "default trust".
- name that new third category "builtin object module",
  with the identical name of the old libnssckbi.so module
- change p11-kit-trust, so that it assigns the CAs to the new
  category based on the input filename,
  e.g. if a file scanned by p11-kit-trust is named with a prefix like
    mozilla-nss-*
  then it gets into the "builtin object module" category,
  and other ones go into the categories as before
  This approach would have the benefit, that we don't change the behavior
  of deployments, that are already installing private CAs into the /usr
  location.
  (Because we probably cannot be certain that Stef's ealier simply assumption
  is correct, not all deployments might install local CAs into /etc,
  some might use rpm packages to install local CAs into /usr).

But with the new change made by Mozilla, I'm no longer sure this solution is sufficient.

I believe that locally installed CAs shouldn't be in a module that has the "is builtin module" status?
Comment 7 Kai Engert 2017-01-18 19:53:52 UTC
I suggest that we use a fresh bug for the new solution.

Because the discussion in this bug was focused on changing the token name, but because we seem to require a more advanced solution, I'll flip this bug back to WONTFIX.

I have filed this new bug: 99453


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.