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
|
/*___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: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
package com.sun.grid.security.login;
import com.sun.grid.util.expect.Expect;
import com.sun.grid.util.expect.ExpectBuffer;
import com.sun.grid.util.expect.ExpectHandler;
import com.sun.grid.util.expect.ExpectPasswordHandler;
import com.sun.grid.util.expect.ExpectStringHandler;
import java.io.IOException;
import java.util.HashSet;
import java.util.Set;
import java.util.StringTokenizer;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.security.auth.login.LoginException;
/**
* This class used by the <code>UnixLoginModule</code> to execute the authuser binary
*
*/
class AuthUserWrapper {
private static final Logger LOGGER = Logger.getLogger(AuthUserWrapper.class.getName(), RB.BUNDLE);
private String [] command;
private AuthUserWrapper(String [] command) {
this.command = command;
}
/**
* Create a new instance of <code>AuthUserWrapper</code> which uses
* the PAM authentication system.
*
* @param authuser path the the authuser binary
* @param pamServiceName name of the user pam service
* @return the <code>AuthUserWrapper</code>.
*/
public static AuthUserWrapper newInstanceForPam(String authuser, String pamServiceName) {
return new AuthUserWrapper( new String [] {
authuser, "pam", "-s", pamServiceName
});
}
/**
* Create a new instance of <code>AuthUserWrapper</code> which uses
* the authentication system of the operation system
*
* @param authuser path the the authuser binary
* @return the <code>AuthUserWrapper</code>.
*/
public static AuthUserWrapper newInstance(String authuser) {
return new AuthUserWrapper( new String [] {
authuser, "system"
});
}
/**
* Authenticate a user
*
* @param username username
* @param password the password
* @throws javax.security.auth.login.LoginException <ul>
* <li>if the authuser binary reports and error (authuser exited with status 2)</li>
* <li>if the authuser can not be started</li>
* <li>if the authuser has been interrupted</li>
* </ul>
* @return <ul>
* <li><code>null</code> if <code>username</code> of <code>password</code> is invalid.
* (authuser exited with status 1)
* </li>
* <li> else a <code>Set</code> containing <ul>
* <li> a {@link com.sun.grid.security.login.UserPrincipal} of the authenticated user</li>
* <li> a {@link com.sun.grid.security.login.NumericUserPrincipal} with the user id
* of the authenticated user</li>
* <li> a {@link com.sun.grid.security.login.NumericGroupPrincipal} for each group the authenticated
* user belongs too</li>
* </ul></li>
* </ul>
*/
public Set authenticate(final String username, final char[] password) throws LoginException {
Set ret = null;
Expect expect = new Expect(command);
expect.add(new ExpectStringHandler("username: ", username.toCharArray()));
expect.add(new ExpectPasswordHandler("password: ", password));
PrincipalHandler principalHandler = new PrincipalHandler(username);
expect.add(principalHandler);
ErrorHandler errorHandler = new ErrorHandler();
expect.add(errorHandler);
try {
int exitCode = expect.exec(60*1000);
// exit codes are defined in juti.h (see auth_result_t)
// 0 means success, 1 means invalid username of password,
// 2 means error
switch(exitCode) {
case 0: // success
LOGGER.log(Level.FINE, "authuser.success", username);
return principalHandler.getPrinicipals();
case 1: // authentication failed
LOGGER.log(Level.FINE, "authuser.failed", username);
return null;
default:
if(errorHandler.getError() == null) {
throw RB.newLoginException("authuser.error.unknown",
new Object [] { new Integer(exitCode) });
} else {
throw RB.newLoginException("authuser.error",
new Object [] { errorHandler.getError() });
}
}
} catch (InterruptedException ex) {
throw RB.newLoginException("authuser.error.interrupted");
} catch (IOException ex) {
throw RB.newLoginException("authuser.error.io", ex,
new Object [] { ex.getLocalizedMessage() });
}
}
/**
* Handles error message of the authuser
*/
class ErrorHandler implements ExpectHandler {
String error;
public void handle(Expect expect, ExpectBuffer buffer) throws IOException {
String msg = buffer.consumeLine("Error: ");
if(msg != null) {
error = msg.trim();
}
}
public String getError() {
return error;
}
}
/**
* Handles the uid and gid output of the authuser
*/
class PrincipalHandler implements ExpectHandler {
private Set principals = new HashSet();
private String username;
public PrincipalHandler(String username) {
this.username = username;
}
public void handle(Expect expect, ExpectBuffer buffer) throws IOException {
String line = buffer.consumeLine("uid ");
if(line != null) {
UserPrincipal up = new UserPrincipal(username);
principals.add(up);
line = line.trim();
NumericUserPrincipal p = new NumericUserPrincipal(line);
principals.add(p);
}
line = buffer.consumeLine("gid ");
if(line != null) {
StringTokenizer st = new StringTokenizer(line.trim(), ",");
boolean primaryGroup = true;
while(st.hasMoreTokens()) {
String groupName = st.nextToken();
int index = groupName.indexOf('(');
if(index >= 0) {
int endIndex = groupName.indexOf(')', index);
if(endIndex > index) {
String gid = groupName.substring(index+1, endIndex);
groupName = groupName.substring(0,index);
NumericGroupPrincipal p = new NumericGroupPrincipal(gid, primaryGroup);
principals.add(p);
}
}
GroupPrincipal p = new GroupPrincipal(groupName, primaryGroup);
principals.add(p);
primaryGroup = false;
}
}
}
public Set getPrinicipals() {
return principals;
}
}
}
|