author | never |
Mon, 12 Jul 2010 22:27:18 -0700 | |
changeset 5926 | a36f90d986b6 |
parent 5506 | 202f599c92aa |
child 7970 | af1579474d16 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
5506 | 2 |
* Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package java.security; |
|
27 |
||
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
28 |
import java.util.ArrayList; |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
29 |
import java.util.Collections; |
2 | 30 |
import java.util.Enumeration; |
31 |
import java.util.List; |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
32 |
import java.util.Map; |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
33 |
import java.util.WeakHashMap; |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
34 |
import sun.misc.JavaSecurityProtectionDomainAccess; |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
35 |
import static sun.misc.JavaSecurityProtectionDomainAccess.ProtectionDomainCache; |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
36 |
import sun.misc.SharedSecrets; |
2 | 37 |
import sun.security.util.Debug; |
38 |
import sun.security.util.SecurityConstants; |
|
39 |
||
40 |
/** |
|
41 |
* |
|
42 |
*<p> |
|
43 |
* This ProtectionDomain class encapsulates the characteristics of a domain, |
|
44 |
* which encloses a set of classes whose instances are granted a set |
|
45 |
* of permissions when being executed on behalf of a given set of Principals. |
|
46 |
* <p> |
|
47 |
* A static set of permissions can be bound to a ProtectionDomain when it is |
|
48 |
* constructed; such permissions are granted to the domain regardless of the |
|
49 |
* Policy in force. However, to support dynamic security policies, a |
|
50 |
* ProtectionDomain can also be constructed such that it is dynamically |
|
51 |
* mapped to a set of permissions by the current Policy whenever a permission |
|
52 |
* is checked. |
|
53 |
* <p> |
|
54 |
* |
|
55 |
* @author Li Gong |
|
56 |
* @author Roland Schemers |
|
57 |
* @author Gary Ellison |
|
58 |
*/ |
|
59 |
||
60 |
public class ProtectionDomain { |
|
61 |
||
62 |
/* CodeSource */ |
|
63 |
private CodeSource codesource ; |
|
64 |
||
65 |
/* ClassLoader the protection domain was consed from */ |
|
66 |
private ClassLoader classloader; |
|
67 |
||
68 |
/* Principals running-as within this protection domain */ |
|
69 |
private Principal[] principals; |
|
70 |
||
71 |
/* the rights this protection domain is granted */ |
|
72 |
private PermissionCollection permissions; |
|
73 |
||
74 |
/* if the permissions object has AllPermission */ |
|
75 |
private boolean hasAllPerm = false; |
|
76 |
||
77 |
/* the PermissionCollection is static (pre 1.4 constructor) |
|
78 |
or dynamic (via a policy refresh) */ |
|
79 |
private boolean staticPermissions; |
|
80 |
||
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
81 |
/* |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
82 |
* An object used as a key when the ProtectionDomain is stored in a Map. |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
83 |
*/ |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
84 |
final Key key = new Key(); |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
85 |
|
2 | 86 |
private static final Debug debug = Debug.getInstance("domain"); |
87 |
||
88 |
/** |
|
89 |
* Creates a new ProtectionDomain with the given CodeSource and |
|
90 |
* Permissions. If the permissions object is not null, then |
|
91 |
* <code>setReadOnly())</code> will be called on the passed in |
|
92 |
* Permissions object. The only permissions granted to this domain |
|
93 |
* are the ones specified; the current Policy will not be consulted. |
|
94 |
* |
|
95 |
* @param codesource the codesource associated with this domain |
|
96 |
* @param permissions the permissions granted to this domain |
|
97 |
*/ |
|
98 |
public ProtectionDomain(CodeSource codesource, |
|
99 |
PermissionCollection permissions) { |
|
100 |
this.codesource = codesource; |
|
101 |
if (permissions != null) { |
|
102 |
this.permissions = permissions; |
|
103 |
this.permissions.setReadOnly(); |
|
104 |
if (permissions instanceof Permissions && |
|
105 |
((Permissions)permissions).allPermission != null) { |
|
106 |
hasAllPerm = true; |
|
107 |
} |
|
108 |
} |
|
109 |
this.classloader = null; |
|
110 |
this.principals = new Principal[0]; |
|
111 |
staticPermissions = true; |
|
112 |
} |
|
113 |
||
114 |
/** |
|
115 |
* Creates a new ProtectionDomain qualified by the given CodeSource, |
|
116 |
* Permissions, ClassLoader and array of Principals. If the |
|
117 |
* permissions object is not null, then <code>setReadOnly()</code> |
|
118 |
* will be called on the passed in Permissions object. |
|
119 |
* The permissions granted to this domain are dynamic; they include |
|
120 |
* both the static permissions passed to this constructor, and any |
|
121 |
* permissions granted to this domain by the current Policy at the |
|
122 |
* time a permission is checked. |
|
123 |
* <p> |
|
124 |
* This constructor is typically used by |
|
125 |
* {@link SecureClassLoader ClassLoaders} |
|
126 |
* and {@link DomainCombiner DomainCombiners} which delegate to |
|
127 |
* <code>Policy</code> to actively associate the permissions granted to |
|
128 |
* this domain. This constructor affords the |
|
129 |
* Policy provider the opportunity to augment the supplied |
|
130 |
* PermissionCollection to reflect policy changes. |
|
131 |
* <p> |
|
132 |
* |
|
133 |
* @param codesource the CodeSource associated with this domain |
|
134 |
* @param permissions the permissions granted to this domain |
|
135 |
* @param classloader the ClassLoader associated with this domain |
|
136 |
* @param principals the array of Principals associated with this |
|
137 |
* domain. The contents of the array are copied to protect against |
|
138 |
* subsequent modification. |
|
139 |
* @see Policy#refresh |
|
140 |
* @see Policy#getPermissions(ProtectionDomain) |
|
141 |
* @since 1.4 |
|
142 |
*/ |
|
143 |
public ProtectionDomain(CodeSource codesource, |
|
144 |
PermissionCollection permissions, |
|
145 |
ClassLoader classloader, |
|
146 |
Principal[] principals) { |
|
147 |
this.codesource = codesource; |
|
148 |
if (permissions != null) { |
|
149 |
this.permissions = permissions; |
|
150 |
this.permissions.setReadOnly(); |
|
151 |
if (permissions instanceof Permissions && |
|
152 |
((Permissions)permissions).allPermission != null) { |
|
153 |
hasAllPerm = true; |
|
154 |
} |
|
155 |
} |
|
156 |
this.classloader = classloader; |
|
157 |
this.principals = (principals != null ? principals.clone(): |
|
158 |
new Principal[0]); |
|
159 |
staticPermissions = false; |
|
160 |
} |
|
161 |
||
162 |
/** |
|
163 |
* Returns the CodeSource of this domain. |
|
164 |
* @return the CodeSource of this domain which may be null. |
|
165 |
* @since 1.2 |
|
166 |
*/ |
|
167 |
public final CodeSource getCodeSource() { |
|
168 |
return this.codesource; |
|
169 |
} |
|
170 |
||
171 |
||
172 |
/** |
|
173 |
* Returns the ClassLoader of this domain. |
|
174 |
* @return the ClassLoader of this domain which may be null. |
|
175 |
* |
|
176 |
* @since 1.4 |
|
177 |
*/ |
|
178 |
public final ClassLoader getClassLoader() { |
|
179 |
return this.classloader; |
|
180 |
} |
|
181 |
||
182 |
||
183 |
/** |
|
184 |
* Returns an array of principals for this domain. |
|
185 |
* @return a non-null array of principals for this domain. |
|
186 |
* Returns a new array each time this method is called. |
|
187 |
* |
|
188 |
* @since 1.4 |
|
189 |
*/ |
|
190 |
public final Principal[] getPrincipals() { |
|
191 |
return this.principals.clone(); |
|
192 |
} |
|
193 |
||
194 |
/** |
|
195 |
* Returns the static permissions granted to this domain. |
|
196 |
* |
|
197 |
* @return the static set of permissions for this domain which may be null. |
|
198 |
* @see Policy#refresh |
|
199 |
* @see Policy#getPermissions(ProtectionDomain) |
|
200 |
*/ |
|
201 |
public final PermissionCollection getPermissions() { |
|
202 |
return permissions; |
|
203 |
} |
|
204 |
||
205 |
/** |
|
206 |
* Check and see if this ProtectionDomain implies the permissions |
|
207 |
* expressed in the Permission object. |
|
208 |
* <p> |
|
209 |
* The set of permissions evaluated is a function of whether the |
|
210 |
* ProtectionDomain was constructed with a static set of permissions |
|
211 |
* or it was bound to a dynamically mapped set of permissions. |
|
212 |
* <p> |
|
213 |
* If the ProtectionDomain was constructed to a |
|
214 |
* {@link #ProtectionDomain(CodeSource, PermissionCollection) |
|
215 |
* statically bound} PermissionCollection then the permission will |
|
216 |
* only be checked against the PermissionCollection supplied at |
|
217 |
* construction. |
|
218 |
* <p> |
|
219 |
* However, if the ProtectionDomain was constructed with |
|
220 |
* the constructor variant which supports |
|
221 |
* {@link #ProtectionDomain(CodeSource, PermissionCollection, |
|
222 |
* ClassLoader, java.security.Principal[]) dynamically binding} |
|
223 |
* permissions, then the permission will be checked against the |
|
224 |
* combination of the PermissionCollection supplied at construction and |
|
225 |
* the current Policy binding. |
|
226 |
* <p> |
|
227 |
* |
|
228 |
* @param permission the Permission object to check. |
|
229 |
* |
|
230 |
* @return true if "permission" is implicit to this ProtectionDomain. |
|
231 |
*/ |
|
232 |
public boolean implies(Permission permission) { |
|
233 |
||
234 |
if (hasAllPerm) { |
|
235 |
// internal permission collection already has AllPermission - |
|
236 |
// no need to go to policy |
|
237 |
return true; |
|
238 |
} |
|
239 |
||
240 |
if (!staticPermissions && |
|
241 |
Policy.getPolicyNoCheck().implies(this, permission)) |
|
242 |
return true; |
|
243 |
if (permissions != null) |
|
244 |
return permissions.implies(permission); |
|
245 |
||
246 |
return false; |
|
247 |
} |
|
248 |
||
249 |
/** |
|
250 |
* Convert a ProtectionDomain to a String. |
|
251 |
*/ |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
252 |
@Override public String toString() { |
2 | 253 |
String pals = "<no principals>"; |
254 |
if (principals != null && principals.length > 0) { |
|
255 |
StringBuilder palBuf = new StringBuilder("(principals "); |
|
256 |
||
257 |
for (int i = 0; i < principals.length; i++) { |
|
258 |
palBuf.append(principals[i].getClass().getName() + |
|
259 |
" \"" + principals[i].getName() + |
|
260 |
"\""); |
|
261 |
if (i < principals.length-1) |
|
262 |
palBuf.append(",\n"); |
|
263 |
else |
|
264 |
palBuf.append(")\n"); |
|
265 |
} |
|
266 |
pals = palBuf.toString(); |
|
267 |
} |
|
268 |
||
269 |
// Check if policy is set; we don't want to load |
|
270 |
// the policy prematurely here |
|
271 |
PermissionCollection pc = Policy.isSet() && seeAllp() ? |
|
272 |
mergePermissions(): |
|
273 |
getPermissions(); |
|
274 |
||
275 |
return "ProtectionDomain "+ |
|
276 |
" "+codesource+"\n"+ |
|
277 |
" "+classloader+"\n"+ |
|
278 |
" "+pals+"\n"+ |
|
279 |
" "+pc+"\n"; |
|
280 |
} |
|
281 |
||
282 |
/** |
|
283 |
* Return true (merge policy permissions) in the following cases: |
|
284 |
* |
|
285 |
* . SecurityManager is null |
|
286 |
* |
|
287 |
* . SecurityManager is not null, |
|
288 |
* debug is not null, |
|
289 |
* SecurityManager impelmentation is in bootclasspath, |
|
290 |
* Policy implementation is in bootclasspath |
|
291 |
* (the bootclasspath restrictions avoid recursion) |
|
292 |
* |
|
293 |
* . SecurityManager is not null, |
|
294 |
* debug is null, |
|
295 |
* caller has Policy.getPolicy permission |
|
296 |
*/ |
|
297 |
private static boolean seeAllp() { |
|
298 |
SecurityManager sm = System.getSecurityManager(); |
|
299 |
||
300 |
if (sm == null) { |
|
301 |
return true; |
|
302 |
} else { |
|
303 |
if (debug != null) { |
|
304 |
if (sm.getClass().getClassLoader() == null && |
|
305 |
Policy.getPolicyNoCheck().getClass().getClassLoader() |
|
306 |
== null) { |
|
307 |
return true; |
|
308 |
} |
|
309 |
} else { |
|
310 |
try { |
|
311 |
sm.checkPermission(SecurityConstants.GET_POLICY_PERMISSION); |
|
312 |
return true; |
|
313 |
} catch (SecurityException se) { |
|
314 |
// fall thru and return false |
|
315 |
} |
|
316 |
} |
|
317 |
} |
|
318 |
||
319 |
return false; |
|
320 |
} |
|
321 |
||
322 |
private PermissionCollection mergePermissions() { |
|
323 |
if (staticPermissions) |
|
324 |
return permissions; |
|
325 |
||
326 |
PermissionCollection perms = |
|
327 |
java.security.AccessController.doPrivileged |
|
328 |
(new java.security.PrivilegedAction<PermissionCollection>() { |
|
329 |
public PermissionCollection run() { |
|
330 |
Policy p = Policy.getPolicyNoCheck(); |
|
331 |
return p.getPermissions(ProtectionDomain.this); |
|
332 |
} |
|
333 |
}); |
|
334 |
||
335 |
Permissions mergedPerms = new Permissions(); |
|
336 |
int swag = 32; |
|
337 |
int vcap = 8; |
|
338 |
Enumeration<Permission> e; |
|
339 |
List<Permission> pdVector = new ArrayList<Permission>(vcap); |
|
340 |
List<Permission> plVector = new ArrayList<Permission>(swag); |
|
341 |
||
342 |
// |
|
343 |
// Build a vector of domain permissions for subsequent merge |
|
344 |
if (permissions != null) { |
|
345 |
synchronized (permissions) { |
|
346 |
e = permissions.elements(); |
|
347 |
while (e.hasMoreElements()) { |
|
348 |
pdVector.add(e.nextElement()); |
|
349 |
} |
|
350 |
} |
|
351 |
} |
|
352 |
||
353 |
// |
|
354 |
// Build a vector of Policy permissions for subsequent merge |
|
355 |
if (perms != null) { |
|
356 |
synchronized (perms) { |
|
357 |
e = perms.elements(); |
|
358 |
while (e.hasMoreElements()) { |
|
359 |
plVector.add(e.nextElement()); |
|
360 |
vcap++; |
|
361 |
} |
|
362 |
} |
|
363 |
} |
|
364 |
||
365 |
if (perms != null && permissions != null) { |
|
366 |
// |
|
367 |
// Weed out the duplicates from the policy. Unless a refresh |
|
368 |
// has occured since the pd was consed this should result in |
|
369 |
// an empty vector. |
|
370 |
synchronized (permissions) { |
|
371 |
e = permissions.elements(); // domain vs policy |
|
372 |
while (e.hasMoreElements()) { |
|
373 |
Permission pdp = e.nextElement(); |
|
374 |
Class pdpClass = pdp.getClass(); |
|
375 |
String pdpActions = pdp.getActions(); |
|
376 |
String pdpName = pdp.getName(); |
|
377 |
for (int i = 0; i < plVector.size(); i++) { |
|
378 |
Permission pp = plVector.get(i); |
|
379 |
if (pdpClass.isInstance(pp)) { |
|
380 |
// The equals() method on some permissions |
|
381 |
// have some side effects so this manual |
|
382 |
// comparison is sufficient. |
|
383 |
if (pdpName.equals(pp.getName()) && |
|
384 |
pdpActions.equals(pp.getActions())) { |
|
385 |
plVector.remove(i); |
|
386 |
break; |
|
387 |
} |
|
388 |
} |
|
389 |
} |
|
390 |
} |
|
391 |
} |
|
392 |
} |
|
393 |
||
394 |
if (perms !=null) { |
|
395 |
// the order of adding to merged perms and permissions |
|
396 |
// needs to preserve the bugfix 4301064 |
|
397 |
||
398 |
for (int i = plVector.size()-1; i >= 0; i--) { |
|
399 |
mergedPerms.add(plVector.get(i)); |
|
400 |
} |
|
401 |
} |
|
402 |
if (permissions != null) { |
|
403 |
for (int i = pdVector.size()-1; i >= 0; i--) { |
|
404 |
mergedPerms.add(pdVector.get(i)); |
|
405 |
} |
|
406 |
} |
|
407 |
||
408 |
return mergedPerms; |
|
409 |
} |
|
5183
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
410 |
|
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
411 |
/** |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
412 |
* Used for storing ProtectionDomains as keys in a Map. |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
413 |
*/ |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
414 |
final class Key {} |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
415 |
|
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
416 |
static { |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
417 |
SharedSecrets.setJavaSecurityProtectionDomainAccess( |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
418 |
new JavaSecurityProtectionDomainAccess() { |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
419 |
public ProtectionDomainCache getProtectionDomainCache() { |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
420 |
return new ProtectionDomainCache() { |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
421 |
private final Map<Key, PermissionCollection> map = |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
422 |
Collections.synchronizedMap |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
423 |
(new WeakHashMap<Key, PermissionCollection>()); |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
424 |
public void put(ProtectionDomain pd, |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
425 |
PermissionCollection pc) { |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
426 |
map.put((pd == null ? null : pd.key), pc); |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
427 |
} |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
428 |
public PermissionCollection get(ProtectionDomain pd) { |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
429 |
return pd == null ? map.get(null) : map.get(pd.key); |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
430 |
} |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
431 |
}; |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
432 |
} |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
433 |
}); |
7825d97c4cf2
6633872: Policy/PolicyFile leak dynamic ProtectionDomains.
mullan
parents:
2
diff
changeset
|
434 |
} |
2 | 435 |
} |