View Javadoc

1   /**
2    * This file Copyright (c) 2003-2011 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.jaas.sp;
35  
36  
37  import info.magnolia.cms.security.Realm;
38  import info.magnolia.cms.security.User;
39  import info.magnolia.cms.security.auth.callback.RealmCallback;
40  import info.magnolia.cms.security.auth.callback.UserCallback;
41  import info.magnolia.cms.util.BooleanUtil;
42  
43  import java.io.IOException;
44  import java.util.LinkedHashSet;
45  import java.util.Map;
46  import java.util.Set;
47  
48  import javax.security.auth.Subject;
49  import javax.security.auth.callback.Callback;
50  import javax.security.auth.callback.CallbackHandler;
51  import javax.security.auth.callback.NameCallback;
52  import javax.security.auth.callback.PasswordCallback;
53  import javax.security.auth.callback.UnsupportedCallbackException;
54  import javax.security.auth.login.LoginException;
55  import javax.security.auth.spi.LoginModule;
56  
57  import org.apache.commons.lang.ArrayUtils;
58  import org.apache.commons.lang.StringUtils;
59  import org.slf4j.Logger;
60  import org.slf4j.LoggerFactory;
61  
62  
63  /**
64   * Abstract implementation of the <code>LoginModule</code> providing common methods and constants implementation.
65   * @author Sameer Charles
66   * $Id: AbstractLoginModule.java 41137 2011-01-06 18:19:25Z gjoseph $
67   */
68  public abstract class AbstractLoginModule implements LoginModule {
69  
70      // magnolia specific option to define if "this" module needs to be
71      // skipped based on previous (in JAAS module chain) module status
72      public static final String OPTION_SKIP_ON_PREVIOUS_SUCCESS = "skip_on_previous_success";
73  
74      public static final String OPTION_REALM = "realm";
75  
76      public static final String OPTION_USE_REALM_CALLBACK= "use_realm_callback";
77  
78      public static final String STATUS = "statusValue";
79  
80      public static final int STATUS_SUCCEEDED = 1;
81  
82      /**
83       * @deprecated use STATUS_SUCCEEDED
84       */
85      public static final int STATUS_SUCCEDED = STATUS_SUCCEEDED;
86  
87      public static final int STATUS_FAILED = 2;
88  
89      public static final int STATUS_SKIPPED = 3;
90  
91      public static final int STATUS_UNAVAILABLE = 4;
92  
93       // TODO: implement the following commonly supported flags to allow single signon with third party modules
94  
95      //If true, the first LoginModule in the stack saves the password entered,
96      // and subsequent LoginModules also try to use it. If authentication fails,
97      // the LoginModules prompt for a new password and retry the authentication.
98      public static final String TRY_FIRST_PASS = "try_first_pass";
99  
100     //If true, the first LoginModule in the stack saves the password entered,
101     // and subsequent LoginModules also try to use it.
102     // LoginModules do not prompt for a new password if authentication fails (authentication simply fails).
103     public static final String USE_FIRST_PASS = "use_first_pass";
104 
105     //If true, the first LoginModule in the stack saves the password entered,
106     // and subsequent LoginModules attempt to map it into their service-specific password.
107     // If authentication fails, the LoginModules prompt for a new password and retry the authentication.
108     public static final String TRY_MAPPED_PASS = "try_mapped_pass";
109 
110     //If true, the first LoginModule in the stack saves the password entered,
111     // and subsequent LoginModules attempt to map it into their service-specific password.
112     // LoginModules do not prompt for a new password if authentication fails (authentication simply fails).
113     public static final String USE_MAPPED_PASS = "use_mapped_pass";
114 
115     public Subject subject;
116 
117     public CallbackHandler callbackHandler;
118 
119     public Map sharedState;
120 
121     public Map options;
122 
123     public String name;
124 
125     public char[] pswd;
126 
127     /**
128      * The realm we login into. Initialized by the option realm.
129      */
130     protected String realm = Realm.REALM_ALL;
131 
132     /**
133      * Allow the client to define the realm he logs into. Default value is false
134      */
135     protected boolean useRealmCallback;
136 
137     // this status is sent back to the LoginModule chain
138     public boolean success;
139 
140     protected Logger log = LoggerFactory.getLogger(getClass());
141 
142     private boolean skipOnPreviousSuccess;
143 
144 
145     /**
146      *
147      */
148     public AbstractLoginModule() {
149 
150     }
151 
152     public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options) {
153         this.subject = subject;
154         this.callbackHandler = callbackHandler;
155         this.sharedState = sharedState;
156         this.options = options;
157         // don't overwrite group and roles set in the shared state
158         if (this.sharedState.get("groupNames") == null)
159         {
160             this.sharedState.put("groupNames", new LinkedHashSet());
161         }
162         if (this.sharedState.get("roleNames") == null)
163         {
164             this.sharedState.put("roleNames", new LinkedHashSet());
165         }
166         this.realm = StringUtils.defaultIfEmpty((String) options.get(OPTION_REALM), Realm.DEFAULT_REALM);
167 
168         this.useRealmCallback = BooleanUtil.toBoolean((String) options.get(OPTION_USE_REALM_CALLBACK), true);
169         this.skipOnPreviousSuccess = BooleanUtil.toBoolean((String) options.get(OPTION_SKIP_ON_PREVIOUS_SUCCESS), false);
170     }
171 
172     public boolean login() throws LoginException {
173         if (this.getSkip()) {
174             return true;
175         }
176 
177         if (this.callbackHandler == null) {
178             throw new LoginException("Error: no CallbackHandler available");
179         }
180 
181         Callback[] callbacks = new Callback[2];
182         callbacks[0] = new NameCallback("name");
183         callbacks[1] = new PasswordCallback("pswd", false);
184 
185         // if the realm is not defined in the jaas configuration
186         // we ask use a callback to get the value
187         if(this.useRealmCallback){
188             callbacks = (Callback[]) ArrayUtils.add(callbacks, new RealmCallback());
189         }
190 
191         this.success = false;
192         try {
193             this.callbackHandler.handle(callbacks);
194             this.name = ((NameCallback) callbacks[0]).getName();
195             this.pswd = ((PasswordCallback) callbacks[1]).getPassword();
196             if(this.useRealmCallback){
197                 this.realm = StringUtils.defaultIfEmpty(((RealmCallback)callbacks[2]).getRealm(), this.realm);
198             }
199 
200             this.validateUser();
201 
202             // FIXME we do that only to be compatible to the old way jaas modules were written
203             if(this instanceof UserAwareLoginModule){
204                 User user = ((UserAwareLoginModule)this).getUser();
205                 if(user != null){
206                     this.callbackHandler.handle(new Callback[]{new UserCallback(user)});
207                 }
208             }
209         } catch (IOException ioe) {
210             if (log.isDebugEnabled()) {
211                 log.debug("Exception caught", ioe);
212             }
213             throw new LoginException(ioe.toString());
214         } catch (UnsupportedCallbackException ce) {
215             if (log.isDebugEnabled()) {
216                 log.debug(ce.getMessage(), ce);
217             }
218             throw new LoginException(ce.getCallback().toString() + " not available");
219         }
220 
221         this.success = true;
222 
223         this.setSharedStatus(STATUS_SUCCEEDED);
224         return this.success;
225     }
226 
227 
228     /**
229      * Updates subject with ACL and other properties.
230      */
231     public boolean commit() throws LoginException {
232         /**
233          * If login module failed to authenticate then this method should simply return false
234          * instead of throwing an exception - refer to specs for more details
235          * */
236         if (!this.success) {
237             return false;
238         }
239         this.setEntity();
240         this.setACL();
241         return true;
242     }
243 
244     public boolean abort() throws LoginException {
245         return this.release();
246     }
247 
248     public boolean logout() throws LoginException {
249         return this.release();
250     }
251 
252     /**
253      * @return shared status value as set by this LoginModule
254      * */
255     public int getSharedStatus() {
256         Integer status = (Integer) this.sharedState.get(STATUS);
257         if (null != status) {
258             return status.intValue();
259         }
260         return STATUS_UNAVAILABLE;
261     }
262 
263     /**
264      * Sets shared status value to be used by subsequent LoginModule(s).
265      * */
266     public void setSharedStatus(int status) {
267         this.sharedState.put(STATUS, new Integer(status));
268     }
269 
270     /**
271      * Tests if the option skip_on_previous_success is set to true and preceding LoginModule was successful.
272      * */
273     protected boolean getSkip() {
274         return skipOnPreviousSuccess && this.getSharedStatus() == STATUS_SUCCEEDED;
275     }
276 
277     public void setGroupNames(Set names) {
278         this.getGroupNames().addAll(names);
279     }
280 
281     public void addGroupName(String groupName) {
282         getGroupNames().add(groupName);
283     }
284 
285     public Set getGroupNames() {
286         return (Set) this.sharedState.get("groupNames");
287     }
288 
289     public void setRoleNames(Set names) {
290         this.getRoleNames().addAll(names);
291     }
292 
293     public void addRoleName(String roleName) {
294         getRoleNames().add(roleName);
295     }
296 
297     public Set getRoleNames() {
298         return (Set) this.sharedState.get("roleNames");
299     }
300 
301     /**
302      * Releases all associated memory.
303      */
304     public abstract boolean release();
305 
306     /**
307      * Checks if the credentials exist in the repository.
308      * @throws LoginException or specific subclasses to report failures.
309      */
310     public abstract void validateUser() throws LoginException;
311 
312     /**
313      * Sets user details.
314      */
315     public abstract void setEntity();
316 
317     /**
318      * Sets access control list from the user, roles and groups.
319      */
320     public abstract void setACL();
321 
322 }