/* PrivateCredentialPermission.java -- permissions governing private credentials. Copyright (C) 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ package javax.security.auth; import java.io.Serializable; import java.security.Permission; import java.security.PermissionCollection; import java.util.HashSet; import java.util.Iterator; import java.util.Set; import java.util.StringTokenizer; /** * A permission governing access to a private credential. The action of this * permission is always "read" -- meaning that the private credential * information can be read from an object. * *
The target of this permission is formatted as follows:
* *CredentialClassName ( PrinicpalClassName PrincipalName )*
CredentialClassName is either the name of a private credential
* class name, or a wildcard character ('*'
).
* PrinicpalClassName is the class name of a principal object, and
* PrincipalName is a string representing the principal, or the
* wildcard character.
"read"
.
*/
public PrivateCredentialPermission (final String name, String actions)
{
super(name);
actions = actions.trim().toLowerCase();
if (!"read".equals (actions))
{
throw new IllegalArgumentException("actions must be \"read\"");
}
StringTokenizer st = new StringTokenizer (name, " \"'");
principals = new HashSet();
if (st.countTokens() < 3 || (st.countTokens() & 1) == 0)
{
throw new IllegalArgumentException ("badly formed credential name");
}
credentialClass = st.nextToken();
while (st.hasMoreTokens())
{
principals.add (new CredOwner (st.nextToken(), st.nextToken()));
}
testing = false; // WTF ever.
}
// Instance methods.
// -------------------------------------------------------------------------
public boolean equals (Object o)
{
if (! (o instanceof PrivateCredentialPermission))
{
return false;
}
PrivateCredentialPermission that = (PrivateCredentialPermission) o;
if (!that.getActions().equals (getActions()))
{
return false;
}
if (!that.getCredentialClass().equals (getCredentialClass()))
{
return false;
}
final String[][] principals = getPrincipals();
final String[][] that_principals = that.getPrincipals();
if (that_principals == null)
{
return false;
}
if (that_principals.length != principals.length)
{
return false;
}
for (int i = 0; i < principals.length; i++)
{
if (!principals[i][0].equals (that_principals[i][0]) ||
!principals[i][1].equals (that_principals[i][1]))
{
return false;
}
}
return true;
}
/**
* Returns the actions this permission encompasses. For private credential
* permissions, this is always the string "read"
.
*
* @return The list of actions.
*/
public String getActions()
{
return "read";
}
/**
* Returns the credential class name that was embedded in this permission's
* target name.
*
* @return The credential class name.
*/
public String getCredentialClass()
{
return credentialClass;
}
/**
* Returns the principal list that was embedded in this permission's target
* name.
*
* Each element of the returned array is a pair; the first element is the * principal class name, and the second is the principal name. * * @return The principal list. */ public String[][] getPrincipals() { String[][] ret = new String[principals.size()][]; Iterator it = principals.iterator(); for (int i = 0; i < principals.size() && it.hasNext(); i++) { CredOwner co = (CredOwner) it.next(); ret[i] = new String[] { co.getPrincipalClass(), co.getPrincipalName() }; } return ret; } public int hashCode() { return credentialClass.hashCode() + principals.hashCode(); } /** * Test if this permission implies another. This method returns true if: * *
[ * P "foo" ] implies [ C P "foo" ]
[ C P1 "foo" ] implies [ C P1 "foo" P2 "bar" ]
[ C P1 "*" ] implies [ C P1 "foo" ]