PropertyPermission.java 8.56 KB
Newer Older
1
/* PropertyPermission.java -- permission to get and set System properties
Dalibor Topic committed
2
   Copyright (C) 1999, 2000, 2002, 2004 Free Software Foundation, Inc.
3 4 5 6 7 8 9

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.
10

11 12 13 14 15 16 17 18 19 20
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., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
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. */
37 38 39


package java.util;
40

Dalibor Topic committed
41
import java.io.IOException;
42 43
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
Dalibor Topic committed
44 45 46 47
import java.io.ObjectStreamField;
import java.security.BasicPermission;
import java.security.Permission;
import java.security.PermissionCollection;
48 49 50 51 52

/**
 * This class represents the permission to access and modify a property.<br>
 *
 * The name is the name of the property, e.g. xxx.  You can also
53
 * use an asterisk "*" as described in BasicPermission.<br>
54
 *
55
 * The action string is a comma-separated list of keywords.  There are
56 57
 * two possible actions:
 * <dl>
58
 * <dt>read</dt>
59
 * <dd>Allows to read the property via <code>System.getProperty</code>.</dd>
60
 * <dt>write</dt>
61 62
 * <dd>Allows to write the property via <code>System.setProperty</code>.</dd>
 * </dl>
63
 *
64 65 66 67
 * The action string is case insensitive (it is converted to lower case).
 *
 * @see Permission
 * @see BasicPermission
68 69 70 71
 * @see SecurityManager
 * @author Jochen Hoenicke
 * @since 1.2
 * @status updated to 1.4
72 73 74 75
 */
public final class PropertyPermission extends BasicPermission
{
  /**
76 77 78 79
   * PropertyPermission uses a more efficient representation than the
   * serialized form; this documents the difference.
   *
   * @serialField action String the action string
80 81 82 83 84 85
   */
  private static final ObjectStreamField[] serialPersistentFields =
  {
    new ObjectStreamField("action", String.class)
  };

86 87 88
  /**
   * Compatible with JDK 1.2+.
   */
89 90
  private static final long serialVersionUID = 885438825399942851L;

91
  /** Permission to read. */
92
  private static final int READ = 1;
93
  /** Permission to write. */
94 95
  private static final int WRITE = 2;

96 97 98 99 100 101 102
  /** The set of actions permitted. */
  // Package visible for use by PropertyPermissionCollection.
  transient int actions;

  /**
   * The String forms of the actions permitted.
   */
103 104 105
  private static final String actionStrings[] =
  {
    "", "read", "write", "read,write"
106 107 108
  };

  /**
109 110 111 112 113 114 115 116 117
   * Constructs a PropertyPermission with the specified property.  Possible
   * actions are read and write, comma-separated and case-insensitive.
   *
   * @param name the name of the property
   * @param actions the action string
   * @throws NullPointerException if name is null
   * @throws IllegalArgumentException if name string contains an
   *         illegal wildcard or actions string contains an illegal action
   *         (this includes a null actions string)
118 119 120 121
   */
  public PropertyPermission(String name, String actions)
  {
    super(name);
122 123
    if (actions == null)
      throw new IllegalArgumentException();
124
    setActions(actions);
125 126 127 128 129
  }

  /**
   * Parse the action string and convert actions from external to internal
   * form.  This will set the internal actions field.
130 131 132 133 134 135
   *
   * @param str the action string
   * @throws IllegalArgumentException if actions string contains an
   *         illegal action
   */
  private void setActions(String str)
136
  {
137 138 139 140 141 142 143 144 145 146 147 148 149 150
    // Initialising the class java.util.Locale ...
    //    tries to initialise the Locale.defaultLocale static
    //    which calls System.getProperty, 
    //    which calls SecurityManager.checkPropertiesAccess,
    //    which creates a PropertyPermission with action "read,write",
    //    which calls setActions("read,write").
    // If we now were to call toLowerCase on 'str',
    //    this would call Locale.getDefault() which returns null
    //       because Locale.defaultLocale hasn't been set yet
    //    then toLowerCase will fail with a null pointer exception.
    // 
    // The solution is to take a punt on 'str' being lower case, and
    // test accordingly.  If that fails, we convert 'str' to lower case 
    // and try the tests again.
151 152 153 154 155 156
    if ("read".equals(str))
      actions = READ;
    else if ("write".equals(str))
      actions = WRITE;
    else if ("read,write".equals(str) || "write,read".equals(str))
      actions = READ | WRITE;
157 158 159 160 161 162 163 164 165 166 167
    else {
      String lstr = str.toLowerCase();
      if ("read".equals(lstr))
	actions = READ;
      else if ("write".equals(lstr))
	actions = WRITE;
      else if ("read,write".equals(lstr) || "write,read".equals(lstr))
	actions = READ | WRITE;
      else
	throw new IllegalArgumentException("illegal action " + str);
    }
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
  }

  /**
   * Reads an object from the stream. This converts the external to the
   * internal representation.
   *
   * @param s the stream to read from
   * @throws IOException if the stream fails
   * @throws ClassNotFoundException if reserialization fails
   */
  private void readObject(ObjectInputStream s)
    throws IOException, ClassNotFoundException
  {
    ObjectInputStream.GetField fields = s.readFields();
    setActions((String) fields.get("actions", null));
  }

  /**
   * Writes an object to the stream. This converts the internal to the
   * external representation.
   *
   * @param s the stram to write to
   * @throws IOException if the stream fails
   */
  private void writeObject(ObjectOutputStream s) throws IOException
  {
    ObjectOutputStream.PutField fields = s.putFields();
    fields.put("actions", getActions());
    s.writeFields();
197 198 199 200 201 202 203
  }

  /**
   * Check if this permission implies p.  This returns true iff all of
   * the following conditions are true:
   * <ul>
   * <li> p is a PropertyPermission </li>
204
   * <li> this.getName() implies p.getName(),
205 206 207
   *  e.g. <code>java.*</code> implies <code>java.home</code> </li>
   * <li> this.getActions is a subset of p.getActions </li>
   * </ul>
208 209 210
   *
   * @param p the permission to check
   * @return true if this permission implies p
211 212 213
   */
  public boolean implies(Permission p)
  {
214 215 216 217 218 219 220 221
    // BasicPermission checks for name and type.
    if (super.implies(p))
      {
        // We have to check the actions.
        PropertyPermission pp = (PropertyPermission) p;
        return (pp.actions & ~actions) == 0;
      }
    return false;
222 223 224
  }

  /**
225
   * Check to see whether this object is the same as another
226 227
   * PropertyPermission object; this is true if it has the same name and
   * actions.
228
   *
229 230
   * @param obj the other object
   * @return true if the two are equivalent
231
   */
232
  public boolean equals(Object obj)
233
  {
234
    return super.equals(obj) && actions == ((PropertyPermission) obj).actions;
235 236 237
  }

  /**
238 239 240 241
   * Returns the hash code for this permission.  It is equivalent to
   * <code>getName().hashCode()</code>.
   *
   * @return the hash code
242
   */
243
  public int hashCode()
244
  {
245
    return super.hashCode();
246 247 248
  }

  /**
249 250 251 252 253
   * Returns the action string.  Note that this may differ from the string
   * given at the constructor:  The actions are converted to lowercase and
   * may be reordered.
   *
   * @return one of "read", "write", or "read,write"
254
   */
255
  public String getActions()
256
  {
257
    return actionStrings[actions];
258 259 260 261 262
  }

  /**
   * Returns a permission collection suitable to take
   * PropertyPermission objects.
263 264
   *
   * @return a new empty PermissionCollection
265
   */
266
  public PermissionCollection newPermissionCollection()
267
  {
268
    return new PropertyPermissionCollection();
269 270
  }
}