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.auth.callback.RealmCallback;
39  import info.magnolia.cms.util.BooleanUtil;
40  
41  import java.io.IOException;
42  import java.util.LinkedHashSet;
43  import java.util.Map;
44  import java.util.Set;
45  
46  import javax.security.auth.Subject;
47  import javax.security.auth.callback.Callback;
48  import javax.security.auth.callback.CallbackHandler;
49  import javax.security.auth.callback.NameCallback;
50  import javax.security.auth.callback.PasswordCallback;
51  import javax.security.auth.callback.UnsupportedCallbackException;
52  import javax.security.auth.login.LoginException;
53  import javax.security.auth.spi.LoginModule;
54  
55  import org.apache.commons.lang.ArrayUtils;
56  import org.apache.commons.lang.StringUtils;
57  import org.slf4j.Logger;
58  import org.slf4j.LoggerFactory;
59  
60  
61  /**
62   * Abstract implementation of the <code>LoginModule</code> providing common methods and constants implementation.
63   * @author Sameer Charles
64   * $Id: AbstractLoginModule.java 50229 2011-10-20 16:10:16Z tmattsson $
65   */
66  public abstract class AbstractLoginModule implements LoginModule {
67  
68      // magnolia specific option to define if "this" module needs to be
69      // skipped based on previous (in JAAS module chain) module status
70      public static final String OPTION_SKIP_ON_PREVIOUS_SUCCESS = "skip_on_previous_success";
71  
72      public static final String OPTION_REALM = "realm";
73  
74      public static final String OPTION_USE_REALM_CALLBACK= "use_realm_callback";
75  
76      public static final String STATUS = "statusValue";
77  
78      public static final int STATUS_SUCCEEDED = 1;
79  
80      /**
81       * @deprecated use STATUS_SUCCEEDED
82       */
83      @Deprecated
84      public static final int STATUS_SUCCEDED = STATUS_SUCCEEDED;
85  
86      public static final int STATUS_FAILED = 2;
87  
88      public static final int STATUS_SKIPPED = 3;
89  
90      public static final int STATUS_UNAVAILABLE = 4;
91  
92      // TODO: implement the following commonly supported flags to allow single signon with third party modules
93  
94      //If true, the first LoginModule in the stack saves the password entered,
95      // and subsequent LoginModules also try to use it. If authentication fails,
96      // the LoginModules prompt for a new password and retry the authentication.
97      public static final String TRY_FIRST_PASS = "try_first_pass";
98  
99      //If true, the first LoginModule in the stack saves the password entered,
100     // and subsequent LoginModules also try to use it.
101     // LoginModules do not prompt for a new password if authentication fails (authentication simply fails).
102     public static final String USE_FIRST_PASS = "use_first_pass";
103 
104     //If true, the first LoginModule in the stack saves the password entered,
105     // and subsequent LoginModules attempt to map it into their service-specific password.
106     // If authentication fails, the LoginModules prompt for a new password and retry the authentication.
107     public static final String TRY_MAPPED_PASS = "try_mapped_pass";
108 
109     //If true, the first LoginModule in the stack saves the password entered,
110     // and subsequent LoginModules attempt to map it into their service-specific password.
111     // LoginModules do not prompt for a new password if authentication fails (authentication simply fails).
112     public static final String USE_MAPPED_PASS = "use_mapped_pass";
113 
114     public Subject subject;
115 
116     public CallbackHandler callbackHandler;
117 
118     public Map<String, Object> sharedState;
119 
120     public Map<String, Object> options;
121 
122     public String name;
123 
124     public char[] pswd;
125 
126     /**
127      * The realm we login into. Initialized by the option realm.
128      */
129     protected Realm realm = Realm.REALM_ALL;
130 
131     /**
132      * Allow the client to define the realm he logs into. Default value is false
133      */
134     protected boolean useRealmCallback;
135 
136     // this status is sent back to the LoginModule chain
137     public boolean success;
138 
139     protected Logger log = LoggerFactory.getLogger(getClass());
140 
141     private boolean skipOnPreviousSuccess;
142 
143 
144     /**
145      *
146      */
147     public AbstractLoginModule() {
148 
149     }
150 
151     @Override
152     public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, final 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             this.sharedState.put("groupNames", new LinkedHashSet<String>());
160         }
161         if (this.sharedState.get("roleNames") == null) {
162             this.sharedState.put("roleNames", new LinkedHashSet<String>());
163         }
164         String realmName = (String) options.get(OPTION_REALM);
165         this.realm = StringUtils.isBlank(realmName) ? Realm.DEFAULT_REALM : Realm.Factory.newRealm(realmName);
166 
167         this.useRealmCallback = BooleanUtil.toBoolean((String) options.get(OPTION_USE_REALM_CALLBACK), true);
168         this.skipOnPreviousSuccess = BooleanUtil.toBoolean((String) options.get(OPTION_SKIP_ON_PREVIOUS_SUCCESS), false);
169     }
170 
171     @Override
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                 String aRealm = ((RealmCallback) callbacks[2]).getRealm();
198                 this.realm = StringUtils.isBlank(aRealm) ? this.realm : Realm.Factory.newRealm(aRealm);
199             }
200 
201             this.validateUser();
202         } catch (IOException ioe) {
203             log.debug("Exception caught", ioe);
204             throw new LoginException(ioe.toString());
205         } catch (UnsupportedCallbackException ce) {
206             log.debug(ce.getMessage(), ce);
207             throw new LoginException(ce.getCallback().toString() + " not available");
208         }
209 
210         // TODO: should not we set success BEFORE calling validateUser to give it chance to decide whether to throw an exception or reset the value to false?
211         this.success = true;
212         this.setSharedStatus(STATUS_SUCCEEDED);
213         return this.success;
214     }
215 
216 
217     /**
218      * Updates subject with ACL and other properties.
219      */
220     @Override
221     public boolean commit() throws LoginException {
222         /**
223          * If login module failed to authenticate then this method should simply return false
224          * instead of throwing an exception - refer to specs for more details
225          * */
226         if (!this.success) {
227             return false;
228         }
229         this.setEntity();
230         this.setACL();
231         return true;
232     }
233 
234     @Override
235     public boolean abort() throws LoginException {
236         return this.release();
237     }
238 
239     @Override
240     public boolean logout() throws LoginException {
241         return this.release();
242     }
243 
244     /**
245      * @return shared status value as set by this LoginModule
246      * */
247     public int getSharedStatus() {
248         Integer status = (Integer) this.sharedState.get(STATUS);
249         if (null != status) {
250             return status.intValue();
251         }
252         return STATUS_UNAVAILABLE;
253     }
254 
255     /**
256      * Sets shared status value to be used by subsequent LoginModule(s).
257      * */
258     public void setSharedStatus(int status) {
259         this.sharedState.put(STATUS, new Integer(status));
260     }
261 
262     /**
263      * Tests if the option skip_on_previous_success is set to true and preceding LoginModule was successful.
264      * */
265     protected boolean getSkip() {
266         return skipOnPreviousSuccess && this.getSharedStatus() == STATUS_SUCCEEDED;
267     }
268 
269     public void setGroupNames(Set<String> names) {
270         this.getGroupNames().addAll(names);
271     }
272 
273     public void addGroupName(String groupName) {
274         getGroupNames().add(groupName);
275     }
276 
277     public Set<String> getGroupNames() {
278         return (Set<String>) this.sharedState.get("groupNames");
279     }
280 
281     public void setRoleNames(Set<String> names) {
282         this.getRoleNames().addAll(names);
283     }
284 
285     public void addRoleName(String roleName) {
286         getRoleNames().add(roleName);
287     }
288 
289     public Set<String> getRoleNames() {
290         return (Set<String>) this.sharedState.get("roleNames");
291     }
292 
293     /**
294      * Releases all associated memory.
295      */
296     public boolean release() {
297         return true;
298     }
299 
300     /**
301      * Checks if the credentials exist in the repository.
302      * @throws LoginException or specific subclasses to report failures.
303      */
304     public abstract void validateUser() throws LoginException;
305 
306     /**
307      * Sets user details.
308      */
309     public abstract void setEntity();
310 
311     /**
312      * Sets access control list from the user, roles and groups.
313      */
314     public abstract void setACL();
315 
316 }