Skip to main content
summaryrefslogtreecommitdiffstats
blob: b4886e8b54395dd708e04417bf747db54a14b771 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
//
//  ========================================================================
//  Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd.
//  ------------------------------------------------------------------------
//  All rights reserved. This program and the accompanying materials
//  are made available under the terms of the Eclipse Public License v1.0
//  and Apache License v2.0 which accompanies this distribution.
//
//      The Eclipse Public License is available at
//      http://www.eclipse.org/legal/epl-v10.html
//
//      The Apache License v2.0 is available at
//      http://www.opensource.org/licenses/apache2.0.php
//
//  You may elect to redistribute this code under either of these licenses.
//  ========================================================================
//

package org.eclipse.jetty.policy.entry;

import java.security.KeyStoreException;
import java.security.Principal;
import java.security.cert.Certificate;
import java.security.cert.X509Certificate;

import org.eclipse.jetty.policy.PolicyContext;
import org.eclipse.jetty.policy.PolicyException;

public class PrincipalEntry extends AbstractEntry
{
    /**
     * Wildcard value denotes any class and/or any name. Must be asterisk, for proper general expansion and
     * PrivateCredentialsPermission wildcarding
     */
    public static final String WILDCARD = "*"; //$NON-NLS-1$

    /**
     * The classname part of principal clause.
     */
    private String klass;

    /**
     * The name part of principal clause.
     */
    private String name;
    
    /**
     * cached principal if already computed
     */
    private Principal principal;
    
    public Principal toPrincipal( PolicyContext context ) throws PolicyException
    {
        if ( principal != null && !isDirty() )
        {
            return principal;
        }
        
        // if there is no keystore, there is no way to obtain a principal object 
        // TODO validate we need this check
        if ( context.getKeystore() == null )
        {
            return null;
        }

        try
        {
            Certificate certificate = context.getKeystore().getCertificate( name );

            if ( certificate instanceof X509Certificate )
            {
                principal = ( (X509Certificate) certificate ).getSubjectX500Principal();
                return principal;
            }
            else
            {
                throw new PolicyException( "Unknown Certificate, unable to obtain Principal: " + certificate.getType() );
            }
        }
        catch ( KeyStoreException kse )
        {
            throw new PolicyException( kse );
        }
    }

    public void expand( PolicyContext context )
        throws PolicyException
    {
        name = context.evaluate( name );
        
        setExpanded(true);
    }

    public String getKlass()
    {
        return klass;
    }

    public void setKlass( String klass )
    {
        this.klass = klass;
    }

    public String getName()
    {
        return name;
    }

    public void setName( String name )
    {
        this.name = name;
    }
    
    
}

Back to the top