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