Imported GNU Classpath 0.90
[official-gcc.git] / libjava / classpath / gnu / javax / crypto / sasl / plain / PlainServer.java
blob2056884730363ff4e31b962ecdb7dc703315bd20
1 /* PlainServer.java --
2 Copyright (C) 2003, 2006 Free Software Foundation, Inc.
4 This file is a part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or (at
9 your option) any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
19 USA
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
39 package gnu.javax.crypto.sasl.plain;
41 import gnu.java.security.Registry;
42 import gnu.javax.crypto.sasl.NoSuchUserException;
43 import gnu.javax.crypto.sasl.ServerMechanism;
45 import java.io.IOException;
46 import java.io.UnsupportedEncodingException;
47 import java.util.Arrays;
48 import java.util.HashMap;
49 import java.util.Map;
50 import java.util.NoSuchElementException;
51 import java.util.StringTokenizer;
53 import javax.security.sasl.SaslException;
54 import javax.security.sasl.SaslServer;
56 /**
57 * <p>The PLAIN SASL server-side mechanism.</p>
59 public class PlainServer extends ServerMechanism implements SaslServer
62 // Constants and variables
63 // -------------------------------------------------------------------------
65 // Constructor(s)
66 // -------------------------------------------------------------------------
68 public PlainServer()
70 super(Registry.SASL_PLAIN_MECHANISM);
73 // Class methods
74 // -------------------------------------------------------------------------
76 // Instance methods
77 // -------------------------------------------------------------------------
79 // abstract methods implementation -----------------------------------------
81 protected void initMechanism() throws SaslException
85 protected void resetMechanism() throws SaslException
89 // javax.security.sasl.SaslServer interface implementation -----------------
91 public byte[] evaluateResponse(final byte[] response) throws SaslException
93 if (response == null)
95 return null;
97 try
99 final String nullStr = new String("\0");
100 final StringTokenizer strtok = new StringTokenizer(
101 new String(response),
102 nullStr, true);
104 authorizationID = strtok.nextToken();
105 if (!authorizationID.equals(nullStr))
107 strtok.nextToken();
109 else
111 authorizationID = null;
113 final String id = strtok.nextToken();
114 if (id.equals(nullStr))
116 throw new SaslException("No identity given");
118 if (authorizationID == null)
120 authorizationID = id;
122 if ((!authorizationID.equals(nullStr)) && (!authorizationID.equals(id)))
124 throw new SaslException("Delegation not supported");
126 strtok.nextToken();
127 final byte[] pwd;
130 pwd = strtok.nextToken().getBytes("UTF-8");
132 catch (UnsupportedEncodingException x)
134 throw new SaslException("evaluateResponse()", x);
136 if (pwd == null)
138 throw new SaslException("No password given");
140 final byte[] password;
143 password = new String(lookupPassword(id)).getBytes("UTF-8");
145 catch (UnsupportedEncodingException x)
147 throw new SaslException("evaluateResponse()", x);
149 if (!Arrays.equals(pwd, password))
151 throw new SaslException("Password incorrect");
153 this.complete = true;
154 return null;
156 catch (NoSuchElementException x)
158 throw new SaslException("evaluateResponse()", x);
162 protected String getNegotiatedQOP()
164 return Registry.QOP_AUTH;
167 // other methods -----------------------------------------------------------
169 private char[] lookupPassword(final String userName) throws SaslException
173 if (!authenticator.contains(userName))
175 throw new NoSuchUserException(userName);
177 final Map userID = new HashMap();
178 userID.put(Registry.SASL_USERNAME, userName);
179 final Map credentials = authenticator.lookup(userID);
180 final String password = (String) credentials.get(Registry.SASL_PASSWORD);
181 if (password == null)
183 throw new SaslException("lookupPassword()", new InternalError());
185 return password.toCharArray();
187 catch (IOException x)
189 if (x instanceof SaslException)
191 throw (SaslException) x;
193 throw new SaslException("lookupPassword()", x);