File: GECATrustManagerLoginModule.java

package info (click to toggle)
gridengine 6.2-4
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 51,532 kB
  • ctags: 51,172
  • sloc: ansic: 418,155; java: 37,080; sh: 22,593; jsp: 7,699; makefile: 5,292; csh: 4,244; xml: 2,901; cpp: 2,086; perl: 1,895; tcl: 1,188; lisp: 669; ruby: 642; yacc: 393; lex: 266
file content (293 lines) | stat: -rw-r--r-- 11,228 bytes parent folder | download | duplicates (3)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
 *
 *  The Contents of this file are made available subject to the terms of
 *  the Sun Industry Standards Source License Version 1.2
 *
 *  Sun Microsystems Inc., March, 2001
 *
 *
 *  Sun Industry Standards Source License Version 1.2
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.2 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 *
 *   Copyright: 2006 by Sun Microsystems, Inc
 *
 *   All Rights Reserved.
 *
 ************************************************************************/
/*___INFO__MARK_END__*/

package com.sun.grid.security.login;

import com.sun.org.apache.xerces.internal.impl.dv.util.Base64;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.security.auth.Subject;
import javax.security.auth.callback.Callback;
import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.callback.NameCallback;
import javax.security.auth.callback.PasswordCallback;
import javax.security.auth.callback.UnsupportedCallbackException;
import javax.security.auth.login.LoginException;
import javax.security.auth.spi.LoginModule;

/** 
 */
public class GECATrustManagerLoginModule implements LoginModule {

    private static final Logger log = Logger.getLogger(GECATrustManagerLoginModule.class.getName());
    private static final String AUTHZ_IDENTITY = "authzIdentity";    
    
    private CallbackHandler callbackHandler;
    private Subject subject;

    private UserPrincipal principal;
    private UserPrincipal authzPrincipal;
    private String authzIdentity;
    private String username;
    
    private boolean loginSucceeded;
    private boolean commitSucceeded;

    private final static Map trustManagerMap = new HashMap(2);
    private File caTop;
    
    /**
     * Initialize this </code>LoginModule</code>.
     *
     * @param subject         the current subject
     * @param callbackHandler callbackHandler for retrieving system name and X509 certificate chain
     * @param sharedState     shared state (not used)
     * @param options         options (not used)
     */
    public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options) {
        log.entering("GECATrustManagerLoginModule", "initialize");
        
        String caTopStr = (String)options.get("caTop");
        
        if(caTopStr != null) {
            caTop = new File(caTopStr);
        } else {
            caTop = null;
        }
        log.log(Level.FINE, "caTop = {0}", caTop);
        
        authzIdentity = (String) options.get(AUTHZ_IDENTITY);
        if(authzIdentity != null && authzIdentity.length() == 0) {
            authzIdentity = null;
        }
        log.log(Level.FINE, "authzIdentity = {0}", authzIdentity);
        
        this.subject = subject;
        this.callbackHandler = callbackHandler;
        
        log.exiting("GECATrustManagerLoginModule", "initialize");
    }
    

    /* get the trust manager for a system */
    private static GECATrustManager getTrustManager(File caTop) throws LoginException {
        log.entering("GECATrustManagerLoginModule", "getTrustManager");
        GECATrustManager ret = null;
        synchronized(trustManagerMap) {
            ret = (GECATrustManager)trustManagerMap.get(caTop);
            if(ret == null) {
                ret = new GECATrustManager(caTop);
                trustManagerMap.put(caTop, ret);
            }
        }
        log.exiting("GECATrustManagerLoginModule", "getTrustManager", ret);
        return ret;
    }


    /**
     * Try to login 
     * 
     * @throws javax.security.auth.login.LoginException if the <code>CallbackHandler</code> does not
     *                support the required <code>Callback</code>s or if an <code>Callback</code> throws
     *                an <code>IOException</code>.
     * @return <code>true</code> if the login was successful
     */
    public boolean login() throws LoginException {
        log.entering("GECATrustManagerLoginModule", "login");

        loginSucceeded = false;
        
        if (caTop == null) {
            log.log(Level.FINE, "login failed, have no caTop");
            log.exiting("GECATrustManagerLoginModule", "login", Boolean.valueOf(loginSucceeded));
            return loginSucceeded;
        }
        
        if (!caTop.exists()) {
            log.log(Level.FINE, "login failed, have no caTop {0} does not exist", caTop);
            log.exiting("GECATrustManagerLoginModule", "login", Boolean.valueOf(loginSucceeded));
            return loginSucceeded;
        }
        
        GECATrustManager trustManager = getTrustManager(caTop);

        if(trustManager == null) {
            log.log(Level.FINE, "login failed, no trust manager found");
            log.exiting("GECATrustManagerLoginModule", "login", Boolean.valueOf(loginSucceeded));
            return loginSucceeded;
        }
        
        NameCallback usernameCallback = new NameCallback("username");
        PasswordCallback passwordCallback = new PasswordCallback("password", true);

        try {
            callbackHandler.handle(new Callback[]{usernameCallback, passwordCallback});
        } catch (UnsupportedCallbackException ex) {
            LoginException le = new LoginException("callback is not supported");
            le.initCause(ex);
            throw le;
        } catch (IOException ex) {
            LoginException le = new LoginException("io error in callback handler");
            le.initCause(ex);
            throw le;
        }

        String password = new String(passwordCallback.getPassword());
        Properties props = new Properties();
        try {
            props.load(new ByteArrayInputStream(password.getBytes()));
        } catch (IOException ex) {
            // Can not happen we are reading from a byte array
            log.log(Level.FINE, "login failed, loading password properties failed", ex);
            log.exiting("GECATrustManagerLoginModule", "login", Boolean.valueOf(loginSucceeded));
            return loginSucceeded;
        }
        
        String messageStr = props.getProperty("message");
        if(messageStr == null || messageStr.length() == 0) {
            log.log(Level.FINE, "login failed, message is empty");
            log.exiting("GECATrustManagerLoginModule", "login", Boolean.valueOf(loginSucceeded));
            return loginSucceeded;
        }
        
        String signatureStr = props.getProperty("signature");
        if(signatureStr == null || signatureStr.length() == 0) {
            log.log(Level.FINE, "login failed, signature is empty");
            log.exiting("GECATrustManagerLoginModule", "login", Boolean.valueOf(loginSucceeded));
            return loginSucceeded;
        }
        
        String algorithm = props.getProperty("algorithm");
        if(algorithm == null || algorithm.length() == 0) {
            log.log(Level.FINE, "login failed, algorithm is empty");
            log.exiting("GECATrustManagerLoginModule", "login", Boolean.valueOf(loginSucceeded));
            return loginSucceeded;
        }

        byte[] message = Base64.decode(messageStr);
        if(message == null) {
            log.log(Level.FINE, "login failed, message is not base 64 encoded");
            log.exiting("GECATrustManagerLoginModule", "login", Boolean.valueOf(loginSucceeded));
            return loginSucceeded;
        }
        
        byte[] signature = Base64.decode(signatureStr);
        if(signature == null) {
            log.log(Level.FINE, "login failed, signature is not base 64 encoded");
            log.exiting("GECATrustManagerLoginModule", "login", Boolean.valueOf(loginSucceeded));
            return loginSucceeded;
        }

        if (trustManager.isValidMessage(usernameCallback.getName(), message, signature, algorithm)) {
            log.log(Level.FINE, "login succeeded, message has a valid signature");
            loginSucceeded = true;
            username = usernameCallback.getName();
        } else {
            log.log(Level.FINE, "login failed, message has an invalid signature");
        }
        log.exiting("GECATrustManagerLoginModule", "login", Boolean.valueOf(loginSucceeded));
        return loginSucceeded;
    }

    /**
     * If the login method had success the commit method adds the <code>X500Principal</code>
     * of the subject of the x509 certicate chain to the current subject.
     *
     * @return <code>true</code> if <code>X500Principal</code> has been added to the subject
     * @todo use <code>com.sun.grid.ca.GridCAX500Name to parse the commonn name of the certificate
     */
    public boolean commit() {
        log.entering("GECATrustManagerLoginModule", "commit");

        if (loginSucceeded) {
            principal = new UserPrincipal(username);
            subject.getPrincipals().add(principal);
            username = null;
            if (authzIdentity != null) {
                authzPrincipal = new UserPrincipal(authzIdentity);
                subject.getPrincipals().add(authzPrincipal);
            }
            commitSucceeded = true;
        }

        log.exiting("GECATrustManagerLoginModule", "commit", Boolean.valueOf(commitSucceeded));
        return commitSucceeded;
    }

    /**
     * Abort the login.
     *
     * @return always <code>true</code>
     */
    public boolean abort() {
        log.entering("GECATrustManagerLoginModule", "abort");
        logout();
        log.exiting("GECATrustManagerLoginModule", "abort");
        return true;
    }

    /**
     * logout the current subject
     *
     * @return always <code>true</code>
     */
    public boolean logout() {
        log.entering("GECATrustManagerLoginModule", "logout");

        if (commitSucceeded) {
            if(principal != null) {
                subject.getPrincipals().remove(principal);
            }
            if(authzPrincipal != null) {
                subject.getPrincipals().remove(authzPrincipal);
            }
        }

        subject = null;
        principal = null;
        authzPrincipal = null;
        username = null;
        callbackHandler = null;
        commitSucceeded = false;
        loginSucceeded = false;
        log.exiting("GECATrustManagerLoginModule", "logout");
        return true;
    }

}