1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
|
/* PluginAppletSecurityContext -- execute plugin JNI messages
Copyright (C) 2008, 2010 Red Hat
This file is part of IcedTea.
IcedTea 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.
IcedTea 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 IcedTea; 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 sun.applet;
import java.lang.reflect.Array;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.net.MalformedURLException;
import java.net.URL;
import java.security.AccessControlContext;
import java.security.AccessControlException;
import java.security.AccessController;
import java.security.AllPermission;
import java.security.BasicPermission;
import java.security.CodeSource;
import java.security.Permissions;
import java.security.PrivilegedAction;
import java.security.ProtectionDomain;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import net.sourceforge.jnlp.DefaultLaunchHandler;
import net.sourceforge.jnlp.runtime.JNLPRuntime;
import net.sourceforge.jnlp.util.logging.OutputController;
import netscape.javascript.JSObject;
import netscape.javascript.JSObjectCreatePermission;
import netscape.javascript.JSUtil;
class Signature {
private String signature;
private int currentIndex;
private List<Class<?>> typeList;
private static final char ARRAY = '[';
private static final char OBJECT = 'L';
private static final char SIGNATURE_ENDCLASS = ';';
private static final char SIGNATURE_FUNC = '(';
private static final char SIGNATURE_ENDFUNC = ')';
private static final char VOID = 'V';
private static final char BOOLEAN = 'Z';
private static final char BYTE = 'B';
private static final char CHARACTER = 'C';
private static final char SHORT = 'S';
private static final char INTEGER = 'I';
private static final char LONG = 'J';
private static final char FLOAT = 'F';
private static final char DOUBLE = 'D';
private String nextTypeName() {
char key = signature.charAt(currentIndex++);
switch (key) {
case ARRAY:
return nextTypeName() + "[]";
case OBJECT:
int endClass = signature.indexOf(SIGNATURE_ENDCLASS, currentIndex);
String retVal = signature.substring(currentIndex, endClass);
retVal = retVal.replace('/', '.');
currentIndex = endClass + 1;
return retVal;
// FIXME: generated bytecode with classes named after
// primitives will not work in this scheme -- those
// classes will be incorrectly treated as primitive
// types.
case VOID:
return "void";
case BOOLEAN:
return "boolean";
case BYTE:
return "byte";
case CHARACTER:
return "char";
case SHORT:
return "short";
case INTEGER:
return "int";
case LONG:
return "long";
case FLOAT:
return "float";
case DOUBLE:
return "double";
case SIGNATURE_ENDFUNC:
return null;
case SIGNATURE_FUNC:
return nextTypeName();
default:
throw new IllegalArgumentException(
"Invalid JNI signature character '" + key + "'");
}
}
public Signature(String signature, ClassLoader cl) {
this.signature = signature;
currentIndex = 0;
typeList = new ArrayList<>(10);
String elem;
while (currentIndex < signature.length()) {
elem = nextTypeName();
if (elem == null) {
continue;
}
Class<?> primitive = primitiveNameToType(elem);
if (primitive != null) {
typeList.add(primitive);
}
else {
int dimsize = 0;
int n = elem.indexOf('[');
if (n != -1) {
String arrayType = elem.substring(0, n);
dimsize++;
n = elem.indexOf('[', n + 1);
while (n != -1) {
dimsize++;
n = elem.indexOf('[', n + 1);
}
int[] dims = new int[dimsize];
primitive = primitiveNameToType(arrayType);
if (primitive != null) {
typeList.add(Array.newInstance(primitive, dims)
.getClass());
} else {
typeList.add(Array.newInstance(
getClass(arrayType, cl), dims).getClass());
}
} else {
typeList.add(getClass(elem, cl));
}
}
}
if (signature.length() < 2) {
throw new IllegalArgumentException("Invalid JNI signature '"
+ signature + "'");
}
}
public static Class<?> getClass(String name, ClassLoader cl) {
Class<?> c = null;
try {
c = Class.forName(name);
} catch (ClassNotFoundException cnfe) {
PluginDebug.debug("Class ", name, " not found in primordial loader. Looking in ", cl);
try {
c = cl.loadClass(name);
} catch (ClassNotFoundException e) {
throw (new RuntimeException(new ClassNotFoundException("Unable to find class " + name)));
}
}
return c;
}
public static Class<?> primitiveNameToType(String name) {
switch (name) {
case "void":
return Void.TYPE;
case "boolean":
return Boolean.TYPE;
case "byte":
return Byte.TYPE;
case "char":
return Character.TYPE;
case "short":
return Short.TYPE;
case "int":
return Integer.TYPE;
case "long":
return Long.TYPE;
case "float":
return Float.TYPE;
case "double":
return Double.TYPE;
default:
return null;
}
}
public Class<?>[] getClassArray() {
return typeList.subList(0, typeList.size()).toArray(new Class<?>[] {});
}
}
public class PluginAppletSecurityContext {
private static Map<ClassLoader, URL> classLoaders = new HashMap<>();
private static Map<Integer, ClassLoader> instanceClassLoaders = new HashMap<>();
private PluginObjectStore store = PluginObjectStore.getInstance();
private Throwable throwable = null;
private ClassLoader liveconnectLoader = ClassLoader.getSystemClassLoader();
int identifier = 0;
private static PluginStreamHandler streamhandler;
long startTime = 0;
/* Package-private constructor that allows for bypassing security manager installation.
* This is useful for testing. Note that while the public constructor should be used otherwise,
* the security installation can't be bypassed if it has already occurred.*/
PluginAppletSecurityContext(int identifier, boolean ensureSecurityContext) {
this.identifier = identifier;
if (ensureSecurityContext) {
// We need a security manager.. and since there is a good chance that
// an applet will be loaded at some point, we should make it the SM
// that JNLPRuntime will try to install
if (System.getSecurityManager() == null) {
JNLPRuntime.initialize(/* isApplication */false);
JNLPRuntime.setDefaultLaunchHandler(new DefaultLaunchHandler(OutputController.getLogger()));
}
JNLPRuntime.disableExit();
}
URL u = null;
try {
u = new URL("file://");
} catch (Exception e) {
OutputController.getLogger().log(OutputController.Level.ERROR_ALL,e);
}
PluginAppletSecurityContext.classLoaders.put(liveconnectLoader, u);
}
public PluginAppletSecurityContext(int identifier) {
this(identifier, true);
}
private static <V> V parseCall(String s, ClassLoader cl, Class<V> c) {
if (c == Integer.class) {
return c.cast(new Integer(s));
}
else if (c == String.class) {
return c.cast(s);
}
else if (c == Signature.class) {
return c.cast(new Signature(s, cl));
}
else {
throw new RuntimeException("Unexpected call value.");
}
}
private Object parseArgs(String s, Class<?> c) {
if (c == Boolean.TYPE || c == Boolean.class) {
return Boolean.valueOf(s);
}
else if (c == Byte.TYPE || c == Byte.class) {
return new Byte(s);
}
else if (c == Character.TYPE || c == Character.class) {
String[] bytes = s.split("_");
int low = Integer.parseInt(bytes[0]);
int high = Integer.parseInt(bytes[1]);
int full = ((high << 8) & 0x0ff00) | (low & 0x0ff);
return (char) full;
} else if (c == Short.TYPE || c == Short.class) {
return new Short(s);
}
else if (c == Integer.TYPE || c == Integer.class) {
return new Integer(s);
}
else if (c == Long.TYPE || c == Long.class) {
return new Long(s);
}
else if (c == Float.TYPE || c == Float.class) {
return new Float(s);
}
else if (c == Double.TYPE || c == Double.class) {
return new Double(s);
}
else {
return store.getObject(new Integer(s));
}
}
public void associateSrc(ClassLoader cl, URL src) {
PluginDebug.debug("Associating ", cl, " with ", src);
PluginAppletSecurityContext.classLoaders.put(cl, src);
}
public void associateInstance(Integer i, ClassLoader cl) {
PluginDebug.debug("Associating ", cl, " with instance ", i);
PluginAppletSecurityContext.instanceClassLoaders.put(i, cl);
}
public static void setStreamhandler(PluginStreamHandler sh) {
streamhandler = sh;
}
public static PluginStreamHandler getStreamhandler() {
return streamhandler;
}
public static Map<String, String> getLoaderInfo() {
Map<String, String> map = new HashMap<>();
for (ClassLoader loader : PluginAppletSecurityContext.classLoaders.keySet()) {
map.put(loader.getClass().getName(), classLoaders.get(loader).toString());
}
return map;
}
private static long privilegedJSObjectUnbox(final JSObject js) {
return AccessController.doPrivileged(new PrivilegedAction<Long>() {
@Override
public Long run() {
return JSUtil.getJSObjectInternalReference(js);
}
});
}
/**
* Create a string that identifies a Java object precisely, for passing to
* Javascript.
*
* For builtin value types, a 'literalreturn' prefix is used and the object
* is passed with a string representation.
*
* For JSObject's, a 'jsobject' prefix is used and the object is passed
* with the JSObject's internal identifier.
*
* For other Java objects, an object store reference is used.
*
* @param obj the object for which to create an identifier
* @param type the type to use for representation decisions
* @param unboxPrimitives whether to treat boxed primitives as value types
* @return an identifier string
*/
public String toObjectIDString(Object obj, Class<?> type, boolean unboxPrimitives) {
/* Void (can occur from declared return type), pass special "void" string: */
if (type == Void.TYPE) {
return "literalreturn void";
}
/* Null, pass special "null" string: */
if (obj == null) {
return "literalreturn null";
}
/* Primitive, accurately represented by its toString() form: */
boolean returnAsString = ( type == Boolean.TYPE
|| type == Byte.TYPE
|| type == Short.TYPE
|| type == Integer.TYPE
|| type == Long.TYPE );
if (unboxPrimitives) {
returnAsString = ( returnAsString
|| type == Boolean.class
|| type == Byte.class
|| type == Short.class
|| type == Integer.class
|| type == Long.class);
}
if (returnAsString) {
return "literalreturn " + obj.toString();
}
/* Floating point number, we ensure we give enough precision: */
if ( type == Float.TYPE || type == Double.TYPE ||
( unboxPrimitives && (type == Float.class || type == Double.class) )) {
return "literalreturn " + String.format("%308.308e", obj);
}
/* Character that should be returned as number: */
if (type == Character.TYPE || (unboxPrimitives && type == Character.class)) {
return "literalreturn " + (int) (Character) obj;
}
/* JSObject, unwrap underlying Javascript reference: */
if (type == netscape.javascript.JSObject.class) {
long reference = privilegedJSObjectUnbox((JSObject)obj);
return "jsobject " + Long.toString(reference);
}
/* Other kind of object, track this object and return our reference: */
store.reference(obj);
return store.getIdentifier(obj).toString();
}
public void handleMessage(int reference, String src, AccessControlContext callContext, String message) {
startTime = new java.util.Date().getTime();
try {
if (message.startsWith("FindClass")) {
ClassLoader cl;
Class<?> c;
cl = liveconnectLoader;
String[] args = message.split(" ");
Integer instance = new Integer(args[1]);
String className = args[2].replace('/', '.');
PluginDebug.debug("Searching for class ", className, " in ", cl);
try {
c = cl.loadClass(className);
store.reference(c);
write(reference, "FindClass " + store.getIdentifier(c));
} catch (ClassNotFoundException cnfe) {
cl = PluginAppletSecurityContext.instanceClassLoaders.get(instance);
PluginDebug.debug("Not found. Looking in ", cl);
if (instance != 0 && cl != null) {
try {
c = cl.loadClass(className);
store.reference(c);
write(reference, "FindClass " + store.getIdentifier(c));
} catch (ClassNotFoundException cnfe2) {
write(reference, "FindClass 0");
}
} else {
write(reference, "FindClass 0");
}
}
} else if (message.startsWith("GetStaticMethodID")
|| message.startsWith("GetMethodID")) {
String[] args = message.split(" ");
Integer classID = parseCall(args[1], null, Integer.class);
String methodName = parseCall(args[2], null, String.class);
Signature signature = parseCall(args[3], ((Class) store.getObject(classID)).getClassLoader(), Signature.class);
Object[] a = signature.getClassArray();
Class<?> c;
if (message.startsWith("GetStaticMethodID") ||
methodName.equals("<init>") ||
methodName.equals("<clinit>")) {
c = (Class<?>) store.getObject(classID);
}
else {
c = store.getObject(classID).getClass();
}
Method m;
Constructor<?> cs;
Object o;
if (methodName.equals("<init>")
|| methodName.equals("<clinit>")) {
o = cs = c.getConstructor(signature.getClassArray());
store.reference(cs);
} else {
o = m = c.getMethod(methodName, signature.getClassArray());
store.reference(m);
}
PluginDebug.debug(o, " has id ", store.getIdentifier(o));
write(reference, args[0] + " " + store.getIdentifier(o));
} else if (message.startsWith("GetStaticFieldID")
|| message.startsWith("GetFieldID")) {
String[] args = message.split(" ");
Integer classID = parseCall(args[1], null, Integer.class);
Integer fieldID = parseCall(args[2], null, Integer.class);
String fieldName = (String) store.getObject(fieldID);
Class<?> c = (Class<?>) store.getObject(classID);
PluginDebug.debug("GetStaticFieldID/GetFieldID got class=", c.getName());
Field f;
f = c.getField(fieldName);
store.reference(f);
write(reference, "GetStaticFieldID " + store.getIdentifier(f));
} else if (message.startsWith("GetStaticField")) {
String[] args = message.split(" ");
String type = parseCall(args[1], null, String.class);
Integer classID = parseCall(args[1], null, Integer.class);
Integer fieldID = parseCall(args[2], null, Integer.class);
final Class<?> c = (Class<?>) store.getObject(classID);
final Field f = (Field) store.getObject(fieldID);
AccessControlContext acc = callContext != null ? callContext : getClosedAccessControlContext();
checkPermission(src, c, acc);
Object ret = AccessController.doPrivileged(new PrivilegedAction<Object>() {
@Override
public Object run() {
try {
return f.get(c);
} catch (Throwable t) {
return t;
}
}
}, acc);
if (ret instanceof Throwable) {
throw (Throwable) ret;
}
String objIDStr = toObjectIDString(ret, f.getType(), false /*do not unbox primitives*/);
write(reference, "GetStaticField " + objIDStr);
} else if (message.startsWith("GetValue")) {
String[] args = message.split(" ");
Integer index = parseCall(args[1], null, Integer.class);
Object ret = store.getObject(index);
Class<?> retClass = ret != null ? ret.getClass() : null;
String objIDStr = toObjectIDString(ret, retClass, true /*unbox primitives*/);
write(reference, "GetValue " + objIDStr);
} else if (message.startsWith("SetStaticField") ||
message.startsWith("SetField")) {
String[] args = message.split(" ");
Integer classOrObjectID = parseCall(args[1], null, Integer.class);
Integer fieldID = parseCall(args[2], null, Integer.class);
Object value = store.getObject(parseCall(args[3], null, Integer.class));
final Object o = store.getObject(classOrObjectID);
final Field f = (Field) store.getObject(fieldID);
final Object fValue = MethodOverloadResolver.getCostAndCastedObject(value, f.getType()).getCastedObject();
AccessControlContext acc = callContext != null ? callContext : getClosedAccessControlContext();
checkPermission(src, message.startsWith("SetStaticField") ? (Class) o : o.getClass(), acc);
Object ret = AccessController.doPrivileged(new PrivilegedAction<Object>() {
@Override
public Object run() {
try {
f.set(o, fValue);
} catch (Throwable t) {
return t;
}
return null;
}
}, acc);
if (ret instanceof Throwable) {
throw (Throwable) ret;
}
write(reference, "SetField");
} else if (message.startsWith("GetObjectArrayElement")) {
String[] args = message.split(" ");
Integer arrayID = parseCall(args[1], null, Integer.class);
Integer index = parseCall(args[2], null, Integer.class);
Object array = store.getObject(arrayID);
Object ret = Array.get(array, index);
Class<?> retClass = array.getClass().getComponentType(); // prevent auto-boxing influence
String objIDStr = toObjectIDString(ret, retClass, false /*do not unbox primitives*/);
write(reference, "GetObjectArrayElement " + objIDStr);
} else if (message.startsWith("SetObjectArrayElement")) {
String[] args = message.split(" ");
Integer arrayID = parseCall(args[1], null, Integer.class);
Integer index = parseCall(args[2], null, Integer.class);
Integer objectID = parseCall(args[3], null, Integer.class);
Object value = store.getObject(objectID);
// Cast the object to appropriate type before insertion
value = MethodOverloadResolver.getCostAndCastedObject(value, store.getObject(arrayID).getClass().getComponentType()).getCastedObject();
Array.set(store.getObject(arrayID), index, value);
write(reference, "SetObjectArrayElement");
} else if (message.startsWith("GetArrayLength")) {
String[] args = message.split(" ");
Integer arrayID = parseCall(args[1], null, Integer.class);
Object o = store.getObject(arrayID);
int len = 0;
len = Array.getLength(o);
write(reference, "GetArrayLength " + Array.getLength(o));
} else if (message.startsWith("GetField")) {
String[] args = message.split(" ");
String type = parseCall(args[1], null, String.class);
Integer objectID = parseCall(args[1], null, Integer.class);
Integer fieldID = parseCall(args[2], null, Integer.class);
final Object o = store.getObject(objectID);
final Field f = (Field) store.getObject(fieldID);
AccessControlContext acc = callContext != null ? callContext : getClosedAccessControlContext();
checkPermission(src, o.getClass(), acc);
Object ret = AccessController.doPrivileged(new PrivilegedAction<Object>() {
@Override
public Object run() {
try {
return f.get(o);
} catch (Throwable t) {
return t;
}
}
}, acc);
if (ret instanceof Throwable) {
throw (Throwable) ret;
}
String objIDStr = toObjectIDString(ret, f.getType(), false /*do not unbox primitives*/);
write(reference, "GetField " + objIDStr);
} else if (message.startsWith("GetObjectClass")) {
int oid = Integer.parseInt(message.substring("GetObjectClass"
.length() + 1));
Class<?> c = store.getObject(oid).getClass();
store.reference(c);
write(reference, "GetObjectClass " + store.getIdentifier(c));
} else if (message.startsWith("CallMethod") ||
message.startsWith("CallStaticMethod")) {
String[] args = message.split(" ");
Integer objectID = parseCall(args[1], null, Integer.class);
String methodName = parseCall(args[2], null, String.class);
Object o = null;
Class<?> c;
if (message.startsWith("CallMethod")) {
o = store.getObject(objectID);
c = o.getClass();
} else {
c = (Class<?>) store.getObject(objectID);
}
// Discard first 3 parts of message
Object[] arguments = new Object[args.length - 3];
for (int i = 0; i < arguments.length; i++) {
arguments[i] = store.getObject(parseCall(args[3 + i], null, Integer.class));
PluginDebug.debug("GOT ARG: ", arguments[i]);
}
MethodOverloadResolver.ResolvedMethod rm =
MethodOverloadResolver.getBestMatchMethod(c, methodName, arguments);
if (rm == null) {
write(reference, "Error: No suitable method named " + methodName + " with matching args found");
return;
}
final Method m = rm.getMethod();
final Object[] castedArgs = rm.getCastedParameters();
PluginDebug.debug("Calling method ", m, " on object ", o
, " (", c, ") with ", Arrays.toString(castedArgs));
AccessControlContext acc = callContext != null ? callContext : getClosedAccessControlContext();
checkPermission(src, c, acc);
final Object[] fArguments = castedArgs;
final Object callableObject = o;
// Set the method accessible prior to calling. See:
// http://forums.sun.com/thread.jspa?threadID=332001&start=15&tstart=0
m.setAccessible(true);
Object ret = AccessController.doPrivileged(new PrivilegedAction<Object>() {
@Override
public Object run() {
try {
return m.invoke(callableObject, fArguments);
} catch (Throwable t) {
return t;
}
}
}, acc);
if (ret instanceof Throwable) {
throw (Throwable) ret;
}
String retO;
if (ret == null) {
retO = "null";
} else {
retO = m.getReturnType().toString();
}
PluginDebug.debug("Calling ", m, " on ", o, " with ",
Arrays.toString(castedArgs), " and that returned: ", ret,
" of type ", retO);
String objIDStr = toObjectIDString(ret, m.getReturnType(), false /*do not unbox primitives*/);
write(reference, "CallMethod " + objIDStr);
} else if (message.startsWith("GetSuperclass")) {
String[] args = message.split(" ");
Integer classID = parseCall(args[1], null, Integer.class);
Class<?> c;
Class<?> ret;
c = (Class) store.getObject(classID);
ret = c.getSuperclass();
store.reference(ret);
write(reference, "GetSuperclass " + store.getIdentifier(ret));
} else if (message.startsWith("IsAssignableFrom")) {
String[] args = message.split(" ");
Integer classID = parseCall(args[1], null, Integer.class);
Integer superclassID = parseCall(args[2], null, Integer.class);
Class<?> clz = (Class<?>) store.getObject(classID);
Class<?> sup = (Class<?>) store.getObject(superclassID);
boolean result = sup.isAssignableFrom(clz);
write(reference, "IsAssignableFrom " + (result ? "1" : "0"));
} else if (message.startsWith("IsInstanceOf")) {
String[] args = message.split(" ");
Integer objectID = parseCall(args[1], null, Integer.class);
Integer classID = parseCall(args[2], null, Integer.class);
Object o = store.getObject(objectID);
Class<?> c = (Class<?>) store.getObject(classID);
boolean result = c.isInstance(o);
write(reference, "IsInstanceOf " + (result ? "1" : "0"));
} else if (message.startsWith("GetStringUTFLength")) {
String[] args = message.split(" ");
Integer stringID = parseCall(args[1], null, Integer.class);
String o;
byte[] b = null;
o = (String) store.getObject(stringID);
b = o.getBytes("UTF-8");
write(reference, "GetStringUTFLength " + o.length());
} else if (message.startsWith("GetStringLength")) {
String[] args = message.split(" ");
Integer stringID = parseCall(args[1], null, Integer.class);
String o;
byte[] b = null;
o = (String) store.getObject(stringID);
b = o.getBytes("UTF-16LE");
write(reference, "GetStringLength " + o.length());
} else if (message.startsWith("GetStringUTFChars")) {
String[] args = message.split(" ");
Integer stringID = parseCall(args[1], null, Integer.class);
String o;
StringBuffer buf = null;
o = (String) store.getObject(stringID);
byte[] b = o.getBytes("UTF-8");
buf = new StringBuffer(b.length * 2);
buf.append(b.length);
for (int i = 0; i < b.length; i++) {
buf.append(" ").append(Integer.toString(((int) b[i]) & 0x0ff, 16));
}
write(reference, "GetStringUTFChars " + buf);
} else if (message.startsWith("GetStringChars")) {
String[] args = message.split(" ");
Integer stringID = parseCall(args[1], null, Integer.class);
String o;
StringBuffer buf = null;
o = (String) store.getObject(stringID);
// FIXME: LiveConnect uses UCS-2.
byte[] b = o.getBytes("UTF-16LE");
buf = new StringBuffer(b.length * 2);
buf.append(b.length);
for (int i = 0; i < b.length; i++) {
buf.append(" ").append(Integer.toString(((int) b[i]) & 0x0ff, 16));
}
PluginDebug.debug("Java: GetStringChars: ", o);
PluginDebug.debug(" String BYTES: ", buf);
write(reference, "GetStringChars " + buf);
} else if (message.startsWith("GetToStringValue")) {
String[] args = message.split(" ");
Integer objectID = parseCall(args[1], null, Integer.class);
String o;
StringBuffer buf = null;
o = store.getObject(objectID).toString();
byte[] b = o.getBytes("UTF-8");
buf = new StringBuffer(b.length * 2);
buf.append(b.length);
for (int i = 0; i < b.length; i++) {
buf.append(" ").append(Integer.toString(((int) b[i]) & 0x0ff, 16));
}
write(reference, "GetToStringValue " + buf);
} else if (message.startsWith("NewArray")) {
String[] args = message.split(" ");
String type = parseCall(args[1], null, String.class);
Integer length = parseCall(args[2], null, Integer.class);
Object newArray;
Class<?> c;
if (type.equals("bool")) {
c = Boolean.class;
} else if (type.equals("double")) {
c = Double.class;
} else if (type.equals("int")) {
c = Integer.class;
} else if (type.equals("string")) {
c = String.class;
} else if (isInt(type)) {
c = (Class<?>) store.getObject(Integer.parseInt(type));
} else {
c = JSObject.class;
}
if (args.length > 3) {
newArray = Array.newInstance(c, new int[] { length, parseCall(args[3], null, Integer.class) });
}
else {
newArray = Array.newInstance(c, length);
}
store.reference(newArray);
write(reference, "NewArray " + store.getIdentifier(newArray));
} else if (message.startsWith("HasMethod")) {
String[] args = message.split(" ");
Integer classNameID = parseCall(args[1], null, Integer.class);
Integer methodNameID = parseCall(args[2], null, Integer.class);
Class<?> c = (Class<?>) store.getObject(classNameID);
String methodName = (String) store.getObject(methodNameID);
Method method = null;
Method[] classMethods = c.getMethods();
for (Method m : classMethods) {
if (m.getName().equals(methodName)) {
method = m;
break;
}
}
int hasMethod = (method != null) ? 1 : 0;
write(reference, "HasMethod " + hasMethod);
} else if (message.startsWith("HasPackage")) {
String[] args = message.split(" ");
Integer instance = parseCall(args[1], null, Integer.class);
Integer nameID = parseCall(args[2], null, Integer.class);
String pkgName = (String) store.getObject(nameID);
Package pkg = Package.getPackage(pkgName);
int hasPkg = (pkg != null) ? 1 : 0;
write(reference, "HasPackage " + hasPkg);
} else if (message.startsWith("HasField")) {
String[] args = message.split(" ");
Integer classNameID = parseCall(args[1], null, Integer.class);
Integer fieldNameID = parseCall(args[2], null, Integer.class);
Class<?> c = (Class<?>) store.getObject(classNameID);
String fieldName = (String) store.getObject(fieldNameID);
Field field = null;
Field[] classFields = c.getFields();
for (Field f : classFields) {
if (f.getName().equals(fieldName)) {
field = f;
break;
}
}
int hasField = (field != null) ? 1 : 0;
write(reference, "HasField " + hasField);
} else if (message.startsWith("NewObjectArray")) {
String[] args = message.split(" ");
Integer length = parseCall(args[1], null, Integer.class);
Integer classID = parseCall(args[2], null, Integer.class);
Integer objectID = parseCall(args[3], null, Integer.class);
Object newArray;
newArray = Array.newInstance((Class) store.getObject(classID),
length);
Object[] array = (Object[]) newArray;
for (int i = 0; i < array.length; i++) {
array[i] = store.getObject(objectID);
}
store.reference(newArray);
write(reference, "NewObjectArray "
+ store.getIdentifier(newArray));
} else if (message.startsWith("NewObjectWithConstructor")) {
String[] args = message.split(" ");
Integer classID = parseCall(args[1], null, Integer.class);
Integer methodID = parseCall(args[2], null, Integer.class);
final Constructor<?> m = (Constructor<?>) store.getObject(methodID);
Class[] argTypes = m.getParameterTypes();
Object[] arguments = new Object[argTypes.length];
for (int i = 0; i < argTypes.length; i++) {
arguments[i] = parseArgs(args[3 + i], argTypes[i]);
}
final Object[] fArguments = arguments;
AccessControlContext acc = callContext != null ? callContext : getClosedAccessControlContext();
Class<?> c = (Class<?>) store.getObject(classID);
checkPermission(src, c, acc);
Object ret = AccessController.doPrivileged(new PrivilegedAction<Object>() {
@Override
public Object run() {
try {
return m.newInstance(fArguments);
} catch (Throwable t) {
return t;
}
}
}, acc);
if (ret instanceof Throwable) {
throw (Throwable) ret;
}
store.reference(ret);
write(reference, "NewObject " + store.getIdentifier(ret));
} else if (message.startsWith("NewObject")) {
String[] args = message.split(" ");
Integer classID = parseCall(args[1], null, Integer.class);
Class<?> c = (Class<?>) store.getObject(classID);
// Discard first 2 parts of message
Object[] arguments = new Object[args.length - 2];
for (int i = 0; i < arguments.length; i++) {
arguments[i] = store.getObject(parseCall(args[2 + i],
null, Integer.class));
PluginDebug.debug("GOT ARG: ", arguments[i]);
}
MethodOverloadResolver.ResolvedMethod resolvedConstructor =
MethodOverloadResolver.getBestMatchConstructor(c, arguments);
if (resolvedConstructor == null) {
write(reference,
"Error: No suitable constructor with matching args found");
return;
}
final Constructor<?> cons = resolvedConstructor.getConstructor();
final Object[] castedArgs = resolvedConstructor.getCastedParameters();
PluginDebug.debug("Calling constructor on class ", c,
" with ", Arrays.toString(castedArgs));
AccessControlContext acc = callContext != null ? callContext : getClosedAccessControlContext();
checkPermission(src, c, acc);
Object ret = AccessController.doPrivileged(new PrivilegedAction<Object>() {
@Override
public Object run() {
try {
return cons.newInstance(castedArgs);
} catch (Throwable t) {
return t;
}
}
}, acc);
if (ret instanceof Throwable) {
throw (Throwable) ret;
}
store.reference(ret);
write(reference, "NewObject " + store.getIdentifier(ret));
} else if (message.startsWith("NewStringUTF")) {
PluginDebug.debug("MESSAGE: ", message);
String[] args = message.split(" ");
int length = new Integer(args[1]);
byte[] byteArray = new byte[length];
int i = 0;
int j = 2;
int c;
while (i < length) {
c = Integer.parseInt(args[j++], 16);
byteArray[i++] = (byte) c;
}
String ret = new String(byteArray, "UTF-8");
PluginDebug.debug("NEWSTRINGUTF: ", ret);
store.reference(ret);
write(reference, "NewStringUTF " + store.getIdentifier(ret));
} else if (message.startsWith("NewString")) {
PluginDebug.debug("MESSAGE: ", message);
String[] args = message.split(" ");
Integer strlength = parseCall(args[1], null, Integer.class);
int bytelength = 2 * strlength;
byte[] byteArray = new byte[bytelength];
String ret;
for (int i = 0; i < strlength; i++) {
int c = parseCall(args[2 + i], null, Integer.class);
PluginDebug.debug("char ", i, " ", c);
// Low.
byteArray[2 * i] = (byte) (c & 0x0ff);
// High.
byteArray[2 * i + 1] = (byte) ((c >> 8) & 0x0ff);
}
ret = new String(byteArray, 0, bytelength, "UTF-16LE");
PluginDebug.debug("NEWSTRING: ", ret);
store.reference(ret);
write(reference, "NewString " + store.getIdentifier(ret));
} else if (message.startsWith("ExceptionOccurred")) {
PluginDebug.debug("EXCEPTION: ", throwable);
if (throwable != null) {
store.reference(throwable);
}
write(reference, "ExceptionOccurred "
+ store.getIdentifier(throwable));
} else if (message.startsWith("ExceptionClear")) {
if (throwable != null && store.contains(throwable)) {
store.unreference(store.getIdentifier(throwable));
}
throwable = null;
write(reference, "ExceptionClear");
} else if (message.startsWith("DeleteGlobalRef")) {
String[] args = message.split(" ");
Integer id = parseCall(args[1], null, Integer.class);
store.unreference(id);
write(reference, "DeleteGlobalRef");
} else if (message.startsWith("DeleteLocalRef")) {
String[] args = message.split(" ");
Integer id = parseCall(args[1], null, Integer.class);
store.unreference(id);
write(reference, "DeleteLocalRef");
} else if (message.startsWith("NewGlobalRef")) {
String[] args = message.split(" ");
Integer id = parseCall(args[1], null, Integer.class);
store.reference(store.getObject(id));
write(reference, "NewGlobalRef " + id);
} else if (message.startsWith("GetClassName")) {
String[] args = message.split(" ");
Integer objectID = parseCall(args[1], null, Integer.class);
Object o = store.getObject(objectID);
write(reference, "GetClassName " + o.getClass().getName());
} else if (message.startsWith("GetClassID")) {
String[] args = message.split(" ");
Integer objectID = parseCall(args[1], null, Integer.class);
store.reference(store.getObject(objectID).getClass());
write(reference, "GetClassID " + store.getIdentifier(store.getObject(objectID).getClass()));
}
} catch (Throwable t) {
OutputController.getLogger().log(OutputController.Level.ERROR_ALL,t);
String msg = t.getCause() != null ? t.getCause().getMessage() : t.getMessage();
// add an identifier string to let javaside know of the type of error
// check for cause as well, since the top level exception will be InvocationTargetException in most cases
if (t instanceof AccessControlException || t.getCause() instanceof AccessControlException) {
msg = "LiveConnectPermissionNeeded " + msg;
}
write(reference, " Error " + msg);
// ExceptionOccured is only called after Callmethod() by mozilla. So
// for exceptions that are not related to CallMethod, we need a way
// to log them. This is how we do it.. send an error message to the
// c++ side to let it know that something went wrong, and it will do
// the right thing to let mozilla know
// Store the cause as the actual exception. This is needed because
// the exception we get here will always be an
// "InvocationTargetException" due to the use of reflection above
if (message.startsWith("CallMethod") || message.startsWith("CallStaticMethod")) {
throwable = t.getCause();
}
}
}
/**
* Checks if the calling script is allowed to access the specified class
*
* @param jsSrc The source of the script
* @param target The target class that the script is trying to access
* @param acc AccessControlContext for this execution
* @throws AccessControlException If the script has insufficient permissions
*/
public void checkPermission(String jsSrc, Class<?> target, AccessControlContext acc) throws AccessControlException {
// NPRuntime does not allow cross-site calling. We therefore always
// allow this, for the time being
}
private void write(int reference, String message) {
PluginDebug.debug("appletviewer writing ", message);
streamhandler.write("context " + identifier + " reference " + reference
+ " " + message);
}
public void prePopulateLCClasses() {
int classID;
prepopulateClass("netscape/javascript/JSObject");
classID = prepopulateClass("netscape/javascript/JSException");
prepopulateMethod(classID, "<init>", "(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;I)");
prepopulateMethod(classID, "<init>", "(ILjava/lang/Object;)");
prepopulateField(classID, "lineno");
prepopulateField(classID, "tokenIndex");
prepopulateField(classID, "source");
prepopulateField(classID, "filename");
prepopulateField(classID, "wrappedExceptionType");
prepopulateField(classID, "wrappedException");
classID = prepopulateClass("netscape/javascript/JSUtil");
prepopulateMethod(classID, "getStackTrace", "(Ljava/lang/Throwable;)");
prepopulateClass("java/lang/Object");
classID = prepopulateClass("java/lang/Class");
prepopulateMethod(classID, "getMethods", "()");
prepopulateMethod(classID, "getConstructors", "()");
prepopulateMethod(classID, "getFields", "()");
prepopulateMethod(classID, "getName", "()");
prepopulateMethod(classID, "isArray", "()");
prepopulateMethod(classID, "getComponentType", "()");
prepopulateMethod(classID, "getModifiers", "()");
classID = prepopulateClass("java/lang/reflect/Method");
prepopulateMethod(classID, "getName", "()");
prepopulateMethod(classID, "getParameterTypes", "()");
prepopulateMethod(classID, "getReturnType", "()");
prepopulateMethod(classID, "getModifiers", "()");
classID = prepopulateClass("java/lang/reflect/Constructor");
prepopulateMethod(classID, "getParameterTypes", "()");
prepopulateMethod(classID, "getModifiers", "()");
classID = prepopulateClass("java/lang/reflect/Field");
prepopulateMethod(classID, "getName", "()");
prepopulateMethod(classID, "getType", "()");
prepopulateMethod(classID, "getModifiers", "()");
classID = prepopulateClass("java/lang/reflect/Array");
prepopulateMethod(classID, "newInstance", "(Ljava/lang/Class;I)");
classID = prepopulateClass("java/lang/Throwable");
prepopulateMethod(classID, "toString", "()");
prepopulateMethod(classID, "getMessage", "()");
classID = prepopulateClass("java/lang/System");
prepopulateMethod(classID, "identityHashCode", "(Ljava/lang/Object;)");
classID = prepopulateClass("java/lang/Boolean");
prepopulateMethod(classID, "booleanValue", "()");
prepopulateMethod(classID, "<init>", "(Z)");
classID = prepopulateClass("java/lang/Double");
prepopulateMethod(classID, "doubleValue", "()");
prepopulateMethod(classID, "<init>", "(D)");
classID = prepopulateClass("java/lang/Void");
prepopulateField(classID, "TYPE");
prepopulateClass("java/lang/String");
prepopulateClass("java/applet/Applet");
}
private int prepopulateClass(String name) {
name = name.replace('/', '.');
ClassLoader cl = liveconnectLoader;
Class<?> c = null;
try {
c = cl.loadClass(name);
store.reference(c);
} catch (ClassNotFoundException cnfe) {
// do nothing ... this should never happen
OutputController.getLogger().log(OutputController.Level.ERROR_ALL,cnfe);
}
return store.getIdentifier(c);
}
private int prepopulateMethod(int classID, String methodName, String signatureStr) {
Signature signature = parseCall(signatureStr, ((Class) store.getObject(classID)).getClassLoader(), Signature.class);
Object[] a = signature.getClassArray();
Class<?> c = (Class<?>) store.getObject(classID);
Method m = null;
try {
if (methodName.equals("<init>")
|| methodName.equals("<clinit>")) {
Constructor<?> cs = c.getConstructor(signature.getClassArray());
store.reference(cs);
} else {
m = c.getMethod(methodName, signature.getClassArray());
store.reference(m);
}
} catch (NoSuchMethodException e) {
// should never happen
OutputController.getLogger().log(OutputController.Level.ERROR_ALL,e);
}
return store.getIdentifier(m);
}
private int prepopulateField(int classID, String fieldName) {
Class<?> c = (Class<?>) store.getObject(classID);
Field f = null;
try {
f = c.getField(fieldName);
} catch (SecurityException e) {
// should never happen
OutputController.getLogger().log(OutputController.Level.ERROR_ALL,e);
} catch (NoSuchFieldException e) {
// should never happen
OutputController.getLogger().log(OutputController.Level.ERROR_ALL,e);
}
store.reference(f);
return store.getIdentifier(f);
}
public void dumpStore() {
store.dump();
}
public Object getObject(int identifier) {
return store.getObject(identifier);
}
public int getIdentifier(Object o) {
return store.getIdentifier(o);
}
public void store(Object o) {
store.reference(o);
}
/**
* @return a "closed" AccessControlContext i.e. no permissions to get out of sandbox.
*/
public AccessControlContext getClosedAccessControlContext() {
// Deny everything
Permissions p = new Permissions();
ProtectionDomain pd = new ProtectionDomain(null, p);
return new AccessControlContext(new ProtectionDomain[] { pd });
}
public AccessControlContext getAccessControlContext(String[] nsPrivilegeList, String src) {
Permissions grantedPermissions = new Permissions();
for (String privilege : nsPrivilegeList) {
switch (privilege) {
case "UniversalBrowserRead":
BrowserReadPermission bp = new BrowserReadPermission();
grantedPermissions.add(bp);
break;
case "UniversalJavaPermission":
AllPermission ap = new AllPermission();
grantedPermissions.add(ap);
break;
}
}
CodeSource cs = new CodeSource((URL) null, (java.security.cert.Certificate[]) null);
if (src != null && src.length() > 0) {
try {
cs = new CodeSource(new URL(src + "/"), (java.security.cert.Certificate[]) null);
} catch (MalformedURLException mfue) {
// do nothing
}
if (src.equals("[System]")) {
grantedPermissions.add(new JSObjectCreatePermission());
}
} else {
JSObjectCreatePermission perm = new JSObjectCreatePermission();
grantedPermissions.add(perm);
}
ProtectionDomain pd = new ProtectionDomain(cs, grantedPermissions, null, null);
// Add to hashmap
return new AccessControlContext(new ProtectionDomain[] { pd });
}
// private static final == inline
private static final boolean isInt(Object o) {
boolean isInt = false;
try {
Integer.parseInt((String) o);
isInt = true;
} catch (Exception e) {
// don't care
}
return isInt;
}
class BrowserReadPermission extends BasicPermission {
public BrowserReadPermission() {
super("browserRead");
}
}
}
|