blob: 042b4c010f3d045c6520af8d73af41d1fbc11bc8 [file] [log] [blame]
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 * Dalvik bytecode structural verifier. The only public entry point
19 * (except for a few shared utility functions) is dvmVerifyCodeFlow().
20 *
21 * TODO: might benefit from a signature-->class lookup cache. Could avoid
22 * some string-peeling and wouldn't need to compute hashes.
23 *
24 * TODO: we do too much stuff in here that could be done in the static
25 * verification pass. It's convenient, because we have all of the
26 * necessary information, but it's more efficient to do it over in
27 * DexVerify.c because in here we may have to process instructions
28 * multiple times.
29 */
30#include "Dalvik.h"
31#include "analysis/CodeVerify.h"
Andy McFadden2e1ee502010-03-24 13:25:53 -070032#include "analysis/Optimize.h"
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080033#include "analysis/RegisterMap.h"
34#include "libdex/DexCatch.h"
35#include "libdex/InstrUtils.h"
36
37#include <stddef.h>
38
39
40/*
41 * We don't need to store the register data for many instructions, because
42 * we either only need it at branch points (for verification) or GC points
43 * and branches (for verification + type-precise register analysis).
44 */
45typedef enum RegisterTrackingMode {
46 kTrackRegsBranches,
47 kTrackRegsGcPoints,
48 kTrackRegsAll
49} RegisterTrackingMode;
50
51/*
52 * Set this to enable dead code scanning. This is not required, but it's
53 * very useful when testing changes to the verifier (to make sure we're not
54 * skipping over stuff) and for checking the optimized output from "dx".
55 * The only reason not to do it is that it slightly increases the time
56 * required to perform verification.
57 */
58#define DEAD_CODE_SCAN true
59
60static bool gDebugVerbose = false; // TODO: remove this
61
62#if 0
63int gDvm__totalInstr = 0;
64int gDvm__gcInstr = 0;
65int gDvm__gcData = 0;
66int gDvm__gcSimpleData = 0;
67#endif
68
69/*
70 * Selectively enable verbose debug logging -- use this to activate
71 * dumpRegTypes() calls for all instructions in the specified method.
72 */
73static inline bool doVerboseLogging(const Method* meth) {
74 return false; /* COMMENT OUT to enable verbose debugging */
75
The Android Open Source Project99409882009-03-18 22:20:24 -070076 const char* cd = "Landroid/net/http/Request;";
77 const char* mn = "readResponse";
78 const char* sg = "(Landroid/net/http/AndroidHttpClientConnection;)V";
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080079 return (strcmp(meth->clazz->descriptor, cd) == 0 &&
80 dvmCompareNameDescriptorAndMethod(mn, sg, meth) == 0);
81}
82
83#define SHOW_REG_DETAILS (0 /*| DRT_SHOW_REF_TYPES | DRT_SHOW_LOCALS*/)
84
85/*
86 * We need an extra "pseudo register" to hold the return type briefly. It
87 * can be category 1 or 2, so we need two slots.
88 */
89#define kExtraRegs 2
90#define RESULT_REGISTER(_insnRegCount) (_insnRegCount)
91
92/*
93 * Big fat collection of registers.
94 */
95typedef struct RegisterTable {
96 /*
97 * Array of RegType arrays, one per address in the method. We only
98 * set the pointers for certain addresses, based on what we're trying
99 * to accomplish.
100 */
101 RegType** addrRegs;
102
103 /*
104 * Number of registers we track for each instruction. This is equal
105 * to the method's declared "registersSize" plus kExtraRegs.
106 */
107 int insnRegCountPlus;
108
109 /*
110 * A single large alloc, with all of the storage needed for addrRegs.
111 */
112 RegType* regAlloc;
113} RegisterTable;
114
115
116/* fwd */
Carl Shapiroe3c01da2010-05-20 22:54:18 -0700117#ifndef NDEBUG
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800118static void checkMergeTab(void);
Carl Shapiroe3c01da2010-05-20 22:54:18 -0700119#endif
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800120static bool isInitMethod(const Method* meth);
121static RegType getInvocationThis(const RegType* insnRegs,\
Andy McFadden62a75162009-04-17 17:23:37 -0700122 const int insnRegCount, const DecodedInstruction* pDecInsn,
123 VerifyError* pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800124static void verifyRegisterType(const RegType* insnRegs, const int insnRegCount,\
Andy McFadden62a75162009-04-17 17:23:37 -0700125 u4 vsrc, RegType checkType, VerifyError* pFailure);
Andy McFadden228a6b02010-05-04 15:02:32 -0700126static bool doCodeVerification(const Method* meth, InsnFlags* insnFlags,\
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800127 RegisterTable* regTable, UninitInstanceMap* uninitMap);
Andy McFadden228a6b02010-05-04 15:02:32 -0700128static bool verifyInstruction(const Method* meth, InsnFlags* insnFlags,\
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800129 RegisterTable* regTable, RegType* workRegs, int insnIdx,
130 UninitInstanceMap* uninitMap, int* pStartGuess);
131static ClassObject* findCommonSuperclass(ClassObject* c1, ClassObject* c2);
132static void dumpRegTypes(const Method* meth, const InsnFlags* insnFlags,\
133 const RegType* addrRegs, int addr, const char* addrName,
134 const UninitInstanceMap* uninitMap, int displayFlags);
135
136/* bit values for dumpRegTypes() "displayFlags" */
137enum {
138 DRT_SIMPLE = 0,
139 DRT_SHOW_REF_TYPES = 0x01,
140 DRT_SHOW_LOCALS = 0x02,
141};
142
143
144/*
145 * ===========================================================================
146 * RegType and UninitInstanceMap utility functions
147 * ===========================================================================
148 */
149
150#define __ kRegTypeUnknown
151#define _U kRegTypeUninit
152#define _X kRegTypeConflict
153#define _F kRegTypeFloat
154#define _0 kRegTypeZero
155#define _1 kRegTypeOne
156#define _Z kRegTypeBoolean
157#define _b kRegTypePosByte
158#define _B kRegTypeByte
159#define _s kRegTypePosShort
160#define _S kRegTypeShort
161#define _C kRegTypeChar
162#define _I kRegTypeInteger
163#define _J kRegTypeLongLo
164#define _j kRegTypeLongHi
165#define _D kRegTypeDoubleLo
166#define _d kRegTypeDoubleHi
167
168/*
169 * Merge result table for primitive values. The table is symmetric along
170 * the diagonal.
171 *
172 * Note that 32-bit int/float do not merge into 64-bit long/double. This
173 * is a register merge, not a widening conversion. Only the "implicit"
174 * widening within a category, e.g. byte to short, is allowed.
175 *
176 * Because Dalvik does not draw a distinction between int and float, we
177 * have to allow free exchange between 32-bit int/float and 64-bit
178 * long/double.
179 *
180 * Note that Uninit+Uninit=Uninit. This holds true because we only
181 * use this when the RegType value is exactly equal to kRegTypeUninit, which
182 * can only happen for the zeroeth entry in the table.
183 *
184 * "Unknown" never merges with anything known. The only time a register
185 * transitions from "unknown" to "known" is when we're executing code
186 * for the first time, and we handle that with a simple copy.
187 */
188const char gDvmMergeTab[kRegTypeMAX][kRegTypeMAX] =
189{
190 /* chk: _ U X F 0 1 Z b B s S C I J j D d */
191 { /*_*/ __,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X },
192 { /*U*/ _X,_U,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X },
193 { /*X*/ _X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X },
194 { /*F*/ _X,_X,_X,_F,_F,_F,_F,_F,_F,_F,_F,_F,_F,_X,_X,_X,_X },
195 { /*0*/ _X,_X,_X,_F,_0,_Z,_Z,_b,_B,_s,_S,_C,_I,_X,_X,_X,_X },
196 { /*1*/ _X,_X,_X,_F,_Z,_1,_Z,_b,_B,_s,_S,_C,_I,_X,_X,_X,_X },
197 { /*Z*/ _X,_X,_X,_F,_Z,_Z,_Z,_b,_B,_s,_S,_C,_I,_X,_X,_X,_X },
198 { /*b*/ _X,_X,_X,_F,_b,_b,_b,_b,_B,_s,_S,_C,_I,_X,_X,_X,_X },
199 { /*B*/ _X,_X,_X,_F,_B,_B,_B,_B,_B,_S,_S,_I,_I,_X,_X,_X,_X },
200 { /*s*/ _X,_X,_X,_F,_s,_s,_s,_s,_S,_s,_S,_C,_I,_X,_X,_X,_X },
201 { /*S*/ _X,_X,_X,_F,_S,_S,_S,_S,_S,_S,_S,_I,_I,_X,_X,_X,_X },
202 { /*C*/ _X,_X,_X,_F,_C,_C,_C,_C,_I,_C,_I,_C,_I,_X,_X,_X,_X },
203 { /*I*/ _X,_X,_X,_F,_I,_I,_I,_I,_I,_I,_I,_I,_I,_X,_X,_X,_X },
204 { /*J*/ _X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_J,_X,_J,_X },
205 { /*j*/ _X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_j,_X,_j },
206 { /*D*/ _X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_J,_X,_D,_X },
207 { /*d*/ _X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_j,_X,_d },
208};
209
210#undef __
211#undef _U
212#undef _X
213#undef _F
214#undef _0
215#undef _1
216#undef _Z
217#undef _b
218#undef _B
219#undef _s
220#undef _S
221#undef _C
222#undef _I
223#undef _J
224#undef _j
225#undef _D
226#undef _d
227
228#ifndef NDEBUG
229/*
230 * Verify symmetry in the conversion table.
231 */
232static void checkMergeTab(void)
233{
234 int i, j;
235
236 for (i = 0; i < kRegTypeMAX; i++) {
237 for (j = i; j < kRegTypeMAX; j++) {
238 if (gDvmMergeTab[i][j] != gDvmMergeTab[j][i]) {
239 LOGE("Symmetry violation: %d,%d vs %d,%d\n", i, j, j, i);
240 dvmAbort();
241 }
242 }
243 }
244}
245#endif
246
247/*
248 * Determine whether we can convert "srcType" to "checkType", where
249 * "checkType" is one of the category-1 non-reference types.
250 *
251 * 32-bit int and float are interchangeable.
252 */
253static bool canConvertTo1nr(RegType srcType, RegType checkType)
254{
255 static const char convTab
256 [kRegType1nrEND-kRegType1nrSTART+1][kRegType1nrEND-kRegType1nrSTART+1] =
257 {
258 /* chk: F 0 1 Z b B s S C I */
259 { /*F*/ 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 },
260 { /*0*/ 1, 1, 0, 1, 1, 1, 1, 1, 1, 1 },
261 { /*1*/ 1, 0, 1, 1, 1, 1, 1, 1, 1, 1 },
262 { /*Z*/ 1, 0, 0, 1, 1, 1, 1, 1, 1, 1 },
263 { /*b*/ 1, 0, 0, 0, 1, 1, 1, 1, 1, 1 },
264 { /*B*/ 1, 0, 0, 0, 0, 1, 0, 1, 0, 1 },
265 { /*s*/ 1, 0, 0, 0, 0, 0, 1, 1, 1, 1 },
266 { /*S*/ 1, 0, 0, 0, 0, 0, 0, 1, 0, 1 },
267 { /*C*/ 1, 0, 0, 0, 0, 0, 0, 0, 1, 1 },
268 { /*I*/ 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 },
269 };
270
271 assert(checkType >= kRegType1nrSTART && checkType <= kRegType1nrEND);
272#if 0
273 if (checkType < kRegType1nrSTART || checkType > kRegType1nrEND) {
274 LOG_VFY("Unexpected checkType %d (srcType=%d)\n", checkType, srcType);
275 assert(false);
276 return false;
277 }
278#endif
279
280 //printf("convTab[%d][%d] = %d\n", srcType, checkType,
281 // convTab[srcType-kRegType1nrSTART][checkType-kRegType1nrSTART]);
282 if (srcType >= kRegType1nrSTART && srcType <= kRegType1nrEND)
283 return (bool) convTab[srcType-kRegType1nrSTART][checkType-kRegType1nrSTART];
284
285 return false;
286}
287
288/*
289 * Determine whether the types are compatible. In Dalvik, 64-bit doubles
290 * and longs are interchangeable.
291 */
292static bool canConvertTo2(RegType srcType, RegType checkType)
293{
294 return ((srcType == kRegTypeLongLo || srcType == kRegTypeDoubleLo) &&
295 (checkType == kRegTypeLongLo || checkType == kRegTypeDoubleLo));
296}
297
298/*
299 * Determine whether or not "instrType" and "targetType" are compatible,
300 * for purposes of getting or setting a value in a field or array. The
301 * idea is that an instruction with a category 1nr type (say, aget-short
302 * or iput-boolean) is accessing a static field, instance field, or array
303 * entry, and we want to make sure sure that the operation is legal.
304 *
305 * At a minimum, source and destination must have the same width. We
306 * further refine this to assert that "short" and "char" are not
307 * compatible, because the sign-extension is different on the "get"
308 * operations. As usual, "float" and "int" are interoperable.
309 *
310 * We're not considering the actual contents of the register, so we'll
311 * never get "pseudo-types" like kRegTypeZero or kRegTypePosShort. We
312 * could get kRegTypeUnknown in "targetType" if a field or array class
313 * lookup failed. Category 2 types and references are checked elsewhere.
314 */
315static bool checkFieldArrayStore1nr(RegType instrType, RegType targetType)
316{
317 if (instrType == targetType)
318 return true; /* quick positive; most common case */
319
320 if ((instrType == kRegTypeInteger && targetType == kRegTypeFloat) ||
321 (instrType == kRegTypeFloat && targetType == kRegTypeInteger))
322 {
323 return true;
324 }
325
326 return false;
327}
328
329/*
330 * Convert a VM PrimitiveType enum value to the equivalent RegType value.
331 */
332static RegType primitiveTypeToRegType(PrimitiveType primType)
333{
The Android Open Source Project99409882009-03-18 22:20:24 -0700334 static const struct {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800335 RegType regType; /* type equivalent */
336 PrimitiveType primType; /* verification */
337 } convTab[] = {
338 /* must match order of enum in Object.h */
339 { kRegTypeBoolean, PRIM_BOOLEAN },
340 { kRegTypeChar, PRIM_CHAR },
341 { kRegTypeFloat, PRIM_FLOAT },
342 { kRegTypeDoubleLo, PRIM_DOUBLE },
343 { kRegTypeByte, PRIM_BYTE },
344 { kRegTypeShort, PRIM_SHORT },
345 { kRegTypeInteger, PRIM_INT },
346 { kRegTypeLongLo, PRIM_LONG },
347 // PRIM_VOID
348 };
349
350 if (primType < 0 || primType > (int) (sizeof(convTab) / sizeof(convTab[0])))
351 {
352 assert(false);
353 return kRegTypeUnknown;
354 }
355
356 assert(convTab[primType].primType == primType);
357 return convTab[primType].regType;
358}
359
360/*
361 * Create a new uninitialized instance map.
362 *
363 * The map is allocated and populated with address entries. The addresses
364 * appear in ascending order to allow binary searching.
365 *
366 * Very few methods have 10 or more new-instance instructions; the
367 * majority have 0 or 1. Occasionally a static initializer will have 200+.
368 */
369UninitInstanceMap* dvmCreateUninitInstanceMap(const Method* meth,
370 const InsnFlags* insnFlags, int newInstanceCount)
371{
372 const int insnsSize = dvmGetMethodInsnsSize(meth);
373 const u2* insns = meth->insns;
374 UninitInstanceMap* uninitMap;
375 bool isInit = false;
376 int idx, addr;
377
378 if (isInitMethod(meth)) {
379 newInstanceCount++;
380 isInit = true;
381 }
382
383 /*
384 * Allocate the header and map as a single unit.
385 *
386 * TODO: consider having a static instance so we can avoid allocations.
387 * I don't think the verifier is guaranteed to be single-threaded when
388 * running in the VM (rather than dexopt), so that must be taken into
389 * account.
390 */
391 int size = offsetof(UninitInstanceMap, map) +
392 newInstanceCount * sizeof(uninitMap->map[0]);
393 uninitMap = calloc(1, size);
394 if (uninitMap == NULL)
395 return NULL;
396 uninitMap->numEntries = newInstanceCount;
397
398 idx = 0;
399 if (isInit) {
400 uninitMap->map[idx++].addr = kUninitThisArgAddr;
401 }
402
403 /*
404 * Run through and find the new-instance instructions.
405 */
406 for (addr = 0; addr < insnsSize; /**/) {
407 int width = dvmInsnGetWidth(insnFlags, addr);
408
409 if ((*insns & 0xff) == OP_NEW_INSTANCE)
410 uninitMap->map[idx++].addr = addr;
411
412 addr += width;
413 insns += width;
414 }
415
416 assert(idx == newInstanceCount);
417 return uninitMap;
418}
419
420/*
421 * Free the map.
422 */
423void dvmFreeUninitInstanceMap(UninitInstanceMap* uninitMap)
424{
425 free(uninitMap);
426}
427
428/*
429 * Set the class object associated with the instruction at "addr".
430 *
431 * Returns the map slot index, or -1 if the address isn't listed in the map
432 * (shouldn't happen) or if a class is already associated with the address
433 * (bad bytecode).
434 *
435 * Entries, once set, do not change -- a given address can only allocate
436 * one type of object.
437 */
438int dvmSetUninitInstance(UninitInstanceMap* uninitMap, int addr,
439 ClassObject* clazz)
440{
441 int idx;
442
443 assert(clazz != NULL);
444
445 /* TODO: binary search when numEntries > 8 */
446 for (idx = uninitMap->numEntries - 1; idx >= 0; idx--) {
447 if (uninitMap->map[idx].addr == addr) {
448 if (uninitMap->map[idx].clazz != NULL &&
449 uninitMap->map[idx].clazz != clazz)
450 {
451 LOG_VFY("VFY: addr %d already set to %p, not setting to %p\n",
452 addr, uninitMap->map[idx].clazz, clazz);
453 return -1; // already set to something else??
454 }
455 uninitMap->map[idx].clazz = clazz;
456 return idx;
457 }
458 }
459
460 LOG_VFY("VFY: addr %d not found in uninit map\n", addr);
461 assert(false); // shouldn't happen
462 return -1;
463}
464
465/*
466 * Get the class object at the specified index.
467 */
468ClassObject* dvmGetUninitInstance(const UninitInstanceMap* uninitMap, int idx)
469{
470 assert(idx >= 0 && idx < uninitMap->numEntries);
471 return uninitMap->map[idx].clazz;
472}
473
474/* determine if "type" is actually an object reference (init/uninit/zero) */
475static inline bool regTypeIsReference(RegType type) {
476 return (type > kRegTypeMAX || type == kRegTypeUninit ||
477 type == kRegTypeZero);
478}
479
480/* determine if "type" is an uninitialized object reference */
481static inline bool regTypeIsUninitReference(RegType type) {
482 return ((type & kRegTypeUninitMask) == kRegTypeUninit);
483}
484
485/* convert the initialized reference "type" to a ClassObject pointer */
486/* (does not expect uninit ref types or "zero") */
487static ClassObject* regTypeInitializedReferenceToClass(RegType type)
488{
489 assert(regTypeIsReference(type) && type != kRegTypeZero);
490 if ((type & 0x01) == 0) {
491 return (ClassObject*) type;
492 } else {
493 //LOG_VFY("VFY: attempted to use uninitialized reference\n");
494 return NULL;
495 }
496}
497
498/* extract the index into the uninitialized instance map table */
499static inline int regTypeToUninitIndex(RegType type) {
500 assert(regTypeIsUninitReference(type));
501 return (type & ~kRegTypeUninitMask) >> kRegTypeUninitShift;
502}
503
504/* convert the reference "type" to a ClassObject pointer */
505static ClassObject* regTypeReferenceToClass(RegType type,
506 const UninitInstanceMap* uninitMap)
507{
508 assert(regTypeIsReference(type) && type != kRegTypeZero);
509 if (regTypeIsUninitReference(type)) {
510 assert(uninitMap != NULL);
511 return dvmGetUninitInstance(uninitMap, regTypeToUninitIndex(type));
512 } else {
513 return (ClassObject*) type;
514 }
515}
516
517/* convert the ClassObject pointer to an (initialized) register type */
518static inline RegType regTypeFromClass(ClassObject* clazz) {
519 return (u4) clazz;
520}
521
522/* return the RegType for the uninitialized reference in slot "uidx" */
523static RegType regTypeFromUninitIndex(int uidx) {
524 return (u4) (kRegTypeUninit | (uidx << kRegTypeUninitShift));
525}
526
527
528/*
529 * ===========================================================================
530 * Signature operations
531 * ===========================================================================
532 */
533
534/*
535 * Is this method a constructor?
536 */
537static bool isInitMethod(const Method* meth)
538{
539 return (*meth->name == '<' && strcmp(meth->name+1, "init>") == 0);
540}
541
542/*
543 * Is this method a class initializer?
544 */
Carl Shapiroe3c01da2010-05-20 22:54:18 -0700545#if 0
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800546static bool isClassInitMethod(const Method* meth)
547{
548 return (*meth->name == '<' && strcmp(meth->name+1, "clinit>") == 0);
549}
Carl Shapiroe3c01da2010-05-20 22:54:18 -0700550#endif
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800551
552/*
553 * Look up a class reference given as a simple string descriptor.
Andy McFadden62a75162009-04-17 17:23:37 -0700554 *
555 * If we can't find it, return a generic substitute when possible.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800556 */
557static ClassObject* lookupClassByDescriptor(const Method* meth,
Andy McFadden62a75162009-04-17 17:23:37 -0700558 const char* pDescriptor, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800559{
560 /*
561 * The javac compiler occasionally puts references to nonexistent
562 * classes in signatures. For example, if you have a non-static
563 * inner class with no constructor, the compiler provides
564 * a private <init> for you. Constructing the class
565 * requires <init>(parent), but the outer class can't call
566 * that because the method is private. So the compiler
567 * generates a package-scope <init>(parent,bogus) method that
568 * just calls the regular <init> (the "bogus" part being necessary
569 * to distinguish the signature of the synthetic method).
570 * Treating the bogus class as an instance of java.lang.Object
571 * allows the verifier to process the class successfully.
572 */
573
574 //LOGI("Looking up '%s'\n", typeStr);
575 ClassObject* clazz;
576 clazz = dvmFindClassNoInit(pDescriptor, meth->clazz->classLoader);
577 if (clazz == NULL) {
578 dvmClearOptException(dvmThreadSelf());
579 if (strchr(pDescriptor, '$') != NULL) {
580 LOGV("VFY: unable to find class referenced in signature (%s)\n",
581 pDescriptor);
582 } else {
583 LOG_VFY("VFY: unable to find class referenced in signature (%s)\n",
584 pDescriptor);
585 }
586
587 if (pDescriptor[0] == '[') {
588 /* We are looking at an array descriptor. */
589
590 /*
591 * There should never be a problem loading primitive arrays.
592 */
593 if (pDescriptor[1] != 'L' && pDescriptor[1] != '[') {
594 LOG_VFY("VFY: invalid char in signature in '%s'\n",
595 pDescriptor);
Andy McFadden62a75162009-04-17 17:23:37 -0700596 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800597 }
598
599 /*
600 * Try to continue with base array type. This will let
601 * us pass basic stuff (e.g. get array len) that wouldn't
602 * fly with an Object. This is NOT correct if the
603 * missing type is a primitive array, but we should never
604 * have a problem loading those. (I'm not convinced this
605 * is correct or even useful. Just use Object here?)
606 */
607 clazz = dvmFindClassNoInit("[Ljava/lang/Object;",
608 meth->clazz->classLoader);
609 } else if (pDescriptor[0] == 'L') {
610 /*
611 * We are looking at a non-array reference descriptor;
612 * try to continue with base reference type.
613 */
614 clazz = gDvm.classJavaLangObject;
615 } else {
616 /* We are looking at a primitive type. */
617 LOG_VFY("VFY: invalid char in signature in '%s'\n", pDescriptor);
Andy McFadden62a75162009-04-17 17:23:37 -0700618 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800619 }
620
621 if (clazz == NULL) {
Andy McFadden62a75162009-04-17 17:23:37 -0700622 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800623 }
624 }
625
626 if (dvmIsPrimitiveClass(clazz)) {
627 LOG_VFY("VFY: invalid use of primitive type '%s'\n", pDescriptor);
Andy McFadden62a75162009-04-17 17:23:37 -0700628 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800629 clazz = NULL;
630 }
631
632 return clazz;
633}
634
635/*
636 * Look up a class reference in a signature. Could be an arg or the
637 * return value.
638 *
639 * Advances "*pSig" to the last character in the signature (that is, to
640 * the ';').
641 *
642 * NOTE: this is also expected to verify the signature.
643 */
644static ClassObject* lookupSignatureClass(const Method* meth, const char** pSig,
Andy McFadden62a75162009-04-17 17:23:37 -0700645 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800646{
647 const char* sig = *pSig;
648 const char* endp = sig;
649
650 assert(sig != NULL && *sig == 'L');
651
652 while (*++endp != ';' && *endp != '\0')
653 ;
654 if (*endp != ';') {
655 LOG_VFY("VFY: bad signature component '%s' (missing ';')\n", sig);
Andy McFadden62a75162009-04-17 17:23:37 -0700656 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800657 return NULL;
658 }
659
660 endp++; /* Advance past the ';'. */
661 int typeLen = endp - sig;
662 char typeStr[typeLen+1]; /* +1 for the '\0' */
663 memcpy(typeStr, sig, typeLen);
664 typeStr[typeLen] = '\0';
665
666 *pSig = endp - 1; /* - 1 so that *pSig points at, not past, the ';' */
667
Andy McFadden62a75162009-04-17 17:23:37 -0700668 return lookupClassByDescriptor(meth, typeStr, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800669}
670
671/*
672 * Look up an array class reference in a signature. Could be an arg or the
673 * return value.
674 *
675 * Advances "*pSig" to the last character in the signature.
676 *
677 * NOTE: this is also expected to verify the signature.
678 */
679static ClassObject* lookupSignatureArrayClass(const Method* meth,
Andy McFadden62a75162009-04-17 17:23:37 -0700680 const char** pSig, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800681{
682 const char* sig = *pSig;
683 const char* endp = sig;
684
685 assert(sig != NULL && *sig == '[');
686
687 /* find the end */
688 while (*++endp == '[' && *endp != '\0')
689 ;
690
691 if (*endp == 'L') {
692 while (*++endp != ';' && *endp != '\0')
693 ;
694 if (*endp != ';') {
695 LOG_VFY("VFY: bad signature component '%s' (missing ';')\n", sig);
Andy McFadden62a75162009-04-17 17:23:37 -0700696 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800697 return NULL;
698 }
699 }
700
701 int typeLen = endp - sig +1;
702 char typeStr[typeLen+1];
703 memcpy(typeStr, sig, typeLen);
704 typeStr[typeLen] = '\0';
705
706 *pSig = endp;
707
Andy McFadden62a75162009-04-17 17:23:37 -0700708 return lookupClassByDescriptor(meth, typeStr, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800709}
710
711/*
712 * Set the register types for the first instruction in the method based on
713 * the method signature.
714 *
715 * This has the side-effect of validating the signature.
716 *
717 * Returns "true" on success.
718 */
719static bool setTypesFromSignature(const Method* meth, RegType* regTypes,
720 UninitInstanceMap* uninitMap)
721{
722 DexParameterIterator iterator;
723 int actualArgs, expectedArgs, argStart;
Andy McFadden62a75162009-04-17 17:23:37 -0700724 VerifyError failure = VERIFY_ERROR_NONE;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800725
726 dexParameterIteratorInit(&iterator, &meth->prototype);
727 argStart = meth->registersSize - meth->insSize;
728 expectedArgs = meth->insSize; /* long/double count as two */
729 actualArgs = 0;
730
731 assert(argStart >= 0); /* should have been verified earlier */
732
733 /*
734 * Include the "this" pointer.
735 */
736 if (!dvmIsStaticMethod(meth)) {
737 /*
738 * If this is a constructor for a class other than java.lang.Object,
739 * mark the first ("this") argument as uninitialized. This restricts
740 * field access until the superclass constructor is called.
741 */
742 if (isInitMethod(meth) && meth->clazz != gDvm.classJavaLangObject) {
743 int uidx = dvmSetUninitInstance(uninitMap, kUninitThisArgAddr,
744 meth->clazz);
745 assert(uidx == 0);
746 regTypes[argStart + actualArgs] = regTypeFromUninitIndex(uidx);
747 } else {
748 regTypes[argStart + actualArgs] = regTypeFromClass(meth->clazz);
749 }
750 actualArgs++;
751 }
752
753 for (;;) {
754 const char* descriptor = dexParameterIteratorNextDescriptor(&iterator);
755
756 if (descriptor == NULL) {
757 break;
758 }
759
760 if (actualArgs >= expectedArgs) {
761 LOG_VFY("VFY: expected %d args, found more (%s)\n",
762 expectedArgs, descriptor);
763 goto bad_sig;
764 }
765
766 switch (*descriptor) {
767 case 'L':
768 case '[':
769 /*
770 * We assume that reference arguments are initialized. The
771 * only way it could be otherwise (assuming the caller was
772 * verified) is if the current method is <init>, but in that
773 * case it's effectively considered initialized the instant
774 * we reach here (in the sense that we can return without
775 * doing anything or call virtual methods).
776 */
777 {
778 ClassObject* clazz =
Andy McFadden62a75162009-04-17 17:23:37 -0700779 lookupClassByDescriptor(meth, descriptor, &failure);
780 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800781 goto bad_sig;
782 regTypes[argStart + actualArgs] = regTypeFromClass(clazz);
783 }
784 actualArgs++;
785 break;
786 case 'Z':
787 regTypes[argStart + actualArgs] = kRegTypeBoolean;
788 actualArgs++;
789 break;
790 case 'C':
791 regTypes[argStart + actualArgs] = kRegTypeChar;
792 actualArgs++;
793 break;
794 case 'B':
795 regTypes[argStart + actualArgs] = kRegTypeByte;
796 actualArgs++;
797 break;
798 case 'I':
799 regTypes[argStart + actualArgs] = kRegTypeInteger;
800 actualArgs++;
801 break;
802 case 'S':
803 regTypes[argStart + actualArgs] = kRegTypeShort;
804 actualArgs++;
805 break;
806 case 'F':
807 regTypes[argStart + actualArgs] = kRegTypeFloat;
808 actualArgs++;
809 break;
810 case 'D':
811 regTypes[argStart + actualArgs] = kRegTypeDoubleLo;
812 regTypes[argStart + actualArgs +1] = kRegTypeDoubleHi;
813 actualArgs += 2;
814 break;
815 case 'J':
816 regTypes[argStart + actualArgs] = kRegTypeLongLo;
817 regTypes[argStart + actualArgs +1] = kRegTypeLongHi;
818 actualArgs += 2;
819 break;
820 default:
821 LOG_VFY("VFY: unexpected signature type char '%c'\n", *descriptor);
822 goto bad_sig;
823 }
824 }
825
826 if (actualArgs != expectedArgs) {
827 LOG_VFY("VFY: expected %d args, found %d\n", expectedArgs, actualArgs);
828 goto bad_sig;
829 }
830
831 const char* descriptor = dexProtoGetReturnType(&meth->prototype);
832
833 /*
834 * Validate return type. We don't do the type lookup; just want to make
835 * sure that it has the right format. Only major difference from the
836 * method argument format is that 'V' is supported.
837 */
838 switch (*descriptor) {
839 case 'I':
840 case 'C':
841 case 'S':
842 case 'B':
843 case 'Z':
844 case 'V':
845 case 'F':
846 case 'D':
847 case 'J':
848 if (*(descriptor+1) != '\0')
849 goto bad_sig;
850 break;
851 case '[':
852 /* single/multi, object/primitive */
853 while (*++descriptor == '[')
854 ;
855 if (*descriptor == 'L') {
856 while (*++descriptor != ';' && *descriptor != '\0')
857 ;
858 if (*descriptor != ';')
859 goto bad_sig;
860 } else {
861 if (*(descriptor+1) != '\0')
862 goto bad_sig;
863 }
864 break;
865 case 'L':
866 /* could be more thorough here, but shouldn't be required */
867 while (*++descriptor != ';' && *descriptor != '\0')
868 ;
869 if (*descriptor != ';')
870 goto bad_sig;
871 break;
872 default:
873 goto bad_sig;
874 }
875
876 return true;
877
878//fail:
879// LOG_VFY_METH(meth, "VFY: bad sig\n");
880// return false;
881
882bad_sig:
883 {
884 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
885 LOG_VFY("VFY: bad signature '%s' for %s.%s\n",
886 desc, meth->clazz->descriptor, meth->name);
887 free(desc);
888 }
889 return false;
890}
891
892/*
893 * Return the register type for the method. We can't just use the
894 * already-computed DalvikJniReturnType, because if it's a reference type
895 * we need to do the class lookup.
896 *
897 * Returned references are assumed to be initialized.
898 *
899 * Returns kRegTypeUnknown for "void".
900 */
901static RegType getMethodReturnType(const Method* meth)
902{
903 RegType type;
904 const char* descriptor = dexProtoGetReturnType(&meth->prototype);
905
906 switch (*descriptor) {
907 case 'I':
908 type = kRegTypeInteger;
909 break;
910 case 'C':
911 type = kRegTypeChar;
912 break;
913 case 'S':
914 type = kRegTypeShort;
915 break;
916 case 'B':
917 type = kRegTypeByte;
918 break;
919 case 'Z':
920 type = kRegTypeBoolean;
921 break;
922 case 'V':
923 type = kRegTypeUnknown;
924 break;
925 case 'F':
926 type = kRegTypeFloat;
927 break;
928 case 'D':
929 type = kRegTypeDoubleLo;
930 break;
931 case 'J':
932 type = kRegTypeLongLo;
933 break;
934 case 'L':
935 case '[':
936 {
Andy McFadden62a75162009-04-17 17:23:37 -0700937 VerifyError failure = VERIFY_ERROR_NONE;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800938 ClassObject* clazz =
Andy McFadden62a75162009-04-17 17:23:37 -0700939 lookupClassByDescriptor(meth, descriptor, &failure);
940 assert(VERIFY_OK(failure));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800941 type = regTypeFromClass(clazz);
942 }
943 break;
944 default:
945 /* we verified signature return type earlier, so this is impossible */
946 assert(false);
947 type = kRegTypeConflict;
948 break;
949 }
950
951 return type;
952}
953
954/*
955 * Convert a single-character signature value (i.e. a primitive type) to
956 * the corresponding RegType. This is intended for access to object fields
957 * holding primitive types.
958 *
959 * Returns kRegTypeUnknown for objects, arrays, and void.
960 */
961static RegType primSigCharToRegType(char sigChar)
962{
963 RegType type;
964
965 switch (sigChar) {
966 case 'I':
967 type = kRegTypeInteger;
968 break;
969 case 'C':
970 type = kRegTypeChar;
971 break;
972 case 'S':
973 type = kRegTypeShort;
974 break;
975 case 'B':
976 type = kRegTypeByte;
977 break;
978 case 'Z':
979 type = kRegTypeBoolean;
980 break;
981 case 'F':
982 type = kRegTypeFloat;
983 break;
984 case 'D':
985 type = kRegTypeDoubleLo;
986 break;
987 case 'J':
988 type = kRegTypeLongLo;
989 break;
990 case 'V':
991 case 'L':
992 case '[':
993 type = kRegTypeUnknown;
994 break;
995 default:
996 assert(false);
997 type = kRegTypeUnknown;
998 break;
999 }
1000
1001 return type;
1002}
1003
1004/*
1005 * Verify the arguments to a method. We're executing in "method", making
1006 * a call to the method reference in vB.
1007 *
1008 * If this is a "direct" invoke, we allow calls to <init>. For calls to
1009 * <init>, the first argument may be an uninitialized reference. Otherwise,
1010 * calls to anything starting with '<' will be rejected, as will any
1011 * uninitialized reference arguments.
1012 *
1013 * For non-static method calls, this will verify that the method call is
1014 * appropriate for the "this" argument.
1015 *
1016 * The method reference is in vBBBB. The "isRange" parameter determines
1017 * whether we use 0-4 "args" values or a range of registers defined by
1018 * vAA and vCCCC.
1019 *
1020 * Widening conversions on integers and references are allowed, but
1021 * narrowing conversions are not.
1022 *
Andy McFadden62a75162009-04-17 17:23:37 -07001023 * Returns the resolved method on success, NULL on failure (with *pFailure
1024 * set appropriately).
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001025 */
1026static Method* verifyInvocationArgs(const Method* meth, const RegType* insnRegs,
1027 const int insnRegCount, const DecodedInstruction* pDecInsn,
1028 UninitInstanceMap* uninitMap, MethodType methodType, bool isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07001029 bool isSuper, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001030{
1031 Method* resMethod;
1032 char* sigOriginal = NULL;
1033
1034 /*
1035 * Resolve the method. This could be an abstract or concrete method
1036 * depending on what sort of call we're making.
1037 */
1038 if (methodType == METHOD_INTERFACE) {
1039 resMethod = dvmOptResolveInterfaceMethod(meth->clazz, pDecInsn->vB);
1040 } else {
Andy McFadden62a75162009-04-17 17:23:37 -07001041 resMethod = dvmOptResolveMethod(meth->clazz, pDecInsn->vB, methodType,
1042 pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001043 }
1044 if (resMethod == NULL) {
1045 /* failed; print a meaningful failure message */
1046 DexFile* pDexFile = meth->clazz->pDvmDex->pDexFile;
1047 const DexMethodId* pMethodId;
1048 const char* methodName;
1049 char* methodDesc;
1050 const char* classDescriptor;
1051
1052 pMethodId = dexGetMethodId(pDexFile, pDecInsn->vB);
1053 methodName = dexStringById(pDexFile, pMethodId->nameIdx);
1054 methodDesc = dexCopyDescriptorFromMethodId(pDexFile, pMethodId);
1055 classDescriptor = dexStringByTypeIdx(pDexFile, pMethodId->classIdx);
1056
1057 if (!gDvm.optimizing) {
1058 char* dotMissingClass = dvmDescriptorToDot(classDescriptor);
1059 char* dotMethClass = dvmDescriptorToDot(meth->clazz->descriptor);
1060 //char* curMethodDesc =
1061 // dexProtoCopyMethodDescriptor(&meth->prototype);
1062
Andy McFaddenb51ea112009-05-08 16:50:17 -07001063 LOGI("Could not find method %s.%s, referenced from "
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001064 "method %s.%s\n",
1065 dotMissingClass, methodName/*, methodDesc*/,
1066 dotMethClass, meth->name/*, curMethodDesc*/);
1067
1068 free(dotMissingClass);
1069 free(dotMethClass);
1070 //free(curMethodDesc);
1071 }
1072
1073 LOG_VFY("VFY: unable to resolve %s method %u: %s.%s %s\n",
1074 dvmMethodTypeStr(methodType), pDecInsn->vB,
1075 classDescriptor, methodName, methodDesc);
1076 free(methodDesc);
Andy McFaddenb51ea112009-05-08 16:50:17 -07001077 if (VERIFY_OK(*pFailure)) /* not set for interface resolve */
1078 *pFailure = VERIFY_ERROR_NO_METHOD;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001079 goto fail;
1080 }
1081
1082 /*
1083 * Only time you can explicitly call a method starting with '<' is when
1084 * making a "direct" invocation on "<init>". There are additional
1085 * restrictions but we don't enforce them here.
1086 */
1087 if (resMethod->name[0] == '<') {
1088 if (methodType != METHOD_DIRECT || !isInitMethod(resMethod)) {
1089 LOG_VFY("VFY: invalid call to %s.%s\n",
1090 resMethod->clazz->descriptor, resMethod->name);
1091 goto bad_sig;
1092 }
1093 }
1094
1095 /*
1096 * If we're using invoke-super(method), make sure that the executing
1097 * method's class' superclass has a vtable entry for the target method.
1098 */
1099 if (isSuper) {
1100 assert(methodType == METHOD_VIRTUAL);
1101 ClassObject* super = meth->clazz->super;
1102 if (super == NULL || resMethod->methodIndex > super->vtableCount) {
1103 char* desc = dexProtoCopyMethodDescriptor(&resMethod->prototype);
1104 LOG_VFY("VFY: invalid invoke-super from %s.%s to super %s.%s %s\n",
1105 meth->clazz->descriptor, meth->name,
1106 (super == NULL) ? "-" : super->descriptor,
1107 resMethod->name, desc);
1108 free(desc);
Andy McFadden62a75162009-04-17 17:23:37 -07001109 *pFailure = VERIFY_ERROR_NO_METHOD;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001110 goto fail;
1111 }
1112 }
1113
1114 /*
1115 * We use vAA as our expected arg count, rather than resMethod->insSize,
1116 * because we need to match the call to the signature. Also, we might
1117 * might be calling through an abstract method definition (which doesn't
1118 * have register count values).
1119 */
1120 sigOriginal = dexProtoCopyMethodDescriptor(&resMethod->prototype);
1121 const char* sig = sigOriginal;
1122 int expectedArgs = pDecInsn->vA;
1123 int actualArgs = 0;
1124
1125 if (!isRange && expectedArgs > 5) {
1126 LOG_VFY("VFY: invalid arg count in non-range invoke (%d)\n",
1127 pDecInsn->vA);
1128 goto fail;
1129 }
1130 if (expectedArgs > meth->outsSize) {
1131 LOG_VFY("VFY: invalid arg count (%d) exceeds outsSize (%d)\n",
1132 expectedArgs, meth->outsSize);
1133 goto fail;
1134 }
1135
1136 if (*sig++ != '(')
1137 goto bad_sig;
1138
1139 /*
1140 * Check the "this" argument, which must be an instance of the class
1141 * that declared the method. For an interface class, we don't do the
1142 * full interface merge, so we can't do a rigorous check here (which
1143 * is okay since we have to do it at runtime).
1144 */
1145 if (!dvmIsStaticMethod(resMethod)) {
1146 ClassObject* actualThisRef;
1147 RegType actualArgType;
1148
1149 actualArgType = getInvocationThis(insnRegs, insnRegCount, pDecInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07001150 pFailure);
1151 if (!VERIFY_OK(*pFailure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001152 goto fail;
1153
1154 if (regTypeIsUninitReference(actualArgType) && resMethod->name[0] != '<')
1155 {
1156 LOG_VFY("VFY: 'this' arg must be initialized\n");
1157 goto fail;
1158 }
1159 if (methodType != METHOD_INTERFACE && actualArgType != kRegTypeZero) {
1160 actualThisRef = regTypeReferenceToClass(actualArgType, uninitMap);
1161 if (!dvmInstanceof(actualThisRef, resMethod->clazz)) {
1162 LOG_VFY("VFY: 'this' arg '%s' not instance of '%s'\n",
1163 actualThisRef->descriptor,
1164 resMethod->clazz->descriptor);
1165 goto fail;
1166 }
1167 }
1168 actualArgs++;
1169 }
1170
1171 /*
1172 * Process the target method's signature. This signature may or may not
1173 * have been verified, so we can't assume it's properly formed.
1174 */
1175 while (*sig != '\0' && *sig != ')') {
1176 if (actualArgs >= expectedArgs) {
1177 LOG_VFY("VFY: expected %d args, found more (%c)\n",
1178 expectedArgs, *sig);
1179 goto bad_sig;
1180 }
1181
1182 u4 getReg;
1183 if (isRange)
1184 getReg = pDecInsn->vC + actualArgs;
1185 else
1186 getReg = pDecInsn->arg[actualArgs];
1187
1188 switch (*sig) {
1189 case 'L':
1190 {
Andy McFadden62a75162009-04-17 17:23:37 -07001191 ClassObject* clazz = lookupSignatureClass(meth, &sig, pFailure);
1192 if (!VERIFY_OK(*pFailure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001193 goto bad_sig;
1194 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001195 regTypeFromClass(clazz), pFailure);
1196 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001197 LOG_VFY("VFY: bad arg %d (into %s)\n",
1198 actualArgs, clazz->descriptor);
1199 goto bad_sig;
1200 }
1201 }
1202 actualArgs++;
1203 break;
1204 case '[':
1205 {
1206 ClassObject* clazz =
Andy McFadden62a75162009-04-17 17:23:37 -07001207 lookupSignatureArrayClass(meth, &sig, pFailure);
1208 if (!VERIFY_OK(*pFailure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001209 goto bad_sig;
1210 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001211 regTypeFromClass(clazz), pFailure);
1212 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001213 LOG_VFY("VFY: bad arg %d (into %s)\n",
1214 actualArgs, clazz->descriptor);
1215 goto bad_sig;
1216 }
1217 }
1218 actualArgs++;
1219 break;
1220 case 'Z':
1221 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001222 kRegTypeBoolean, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001223 actualArgs++;
1224 break;
1225 case 'C':
1226 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001227 kRegTypeChar, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001228 actualArgs++;
1229 break;
1230 case 'B':
1231 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001232 kRegTypeByte, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001233 actualArgs++;
1234 break;
1235 case 'I':
1236 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001237 kRegTypeInteger, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001238 actualArgs++;
1239 break;
1240 case 'S':
1241 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001242 kRegTypeShort, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001243 actualArgs++;
1244 break;
1245 case 'F':
1246 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001247 kRegTypeFloat, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001248 actualArgs++;
1249 break;
1250 case 'D':
1251 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001252 kRegTypeDoubleLo, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001253 actualArgs += 2;
1254 break;
1255 case 'J':
1256 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001257 kRegTypeLongLo, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001258 actualArgs += 2;
1259 break;
1260 default:
1261 LOG_VFY("VFY: invocation target: bad signature type char '%c'\n",
1262 *sig);
1263 goto bad_sig;
1264 }
1265
1266 sig++;
1267 }
1268 if (*sig != ')') {
1269 char* desc = dexProtoCopyMethodDescriptor(&resMethod->prototype);
1270 LOG_VFY("VFY: invocation target: bad signature '%s'\n", desc);
1271 free(desc);
1272 goto bad_sig;
1273 }
1274
1275 if (actualArgs != expectedArgs) {
1276 LOG_VFY("VFY: expected %d args, found %d\n", expectedArgs, actualArgs);
1277 goto bad_sig;
1278 }
1279
1280 free(sigOriginal);
1281 return resMethod;
1282
1283bad_sig:
1284 if (resMethod != NULL) {
1285 char* desc = dexProtoCopyMethodDescriptor(&resMethod->prototype);
1286 LOG_VFY("VFY: rejecting call to %s.%s %s\n",
Andy McFadden62a75162009-04-17 17:23:37 -07001287 resMethod->clazz->descriptor, resMethod->name, desc);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001288 free(desc);
1289 }
1290
1291fail:
1292 free(sigOriginal);
Andy McFadden62a75162009-04-17 17:23:37 -07001293 if (*pFailure == VERIFY_ERROR_NONE)
1294 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001295 return NULL;
1296}
1297
1298/*
1299 * Get the class object for the type of data stored in a field. This isn't
1300 * stored in the Field struct, so we have to recover it from the signature.
1301 *
1302 * This only works for reference types. Don't call this for primitive types.
1303 *
1304 * If we can't find the class, we return java.lang.Object, so that
1305 * verification can continue if a field is only accessed in trivial ways.
1306 */
1307static ClassObject* getFieldClass(const Method* meth, const Field* field)
1308{
1309 ClassObject* fieldClass;
1310 const char* signature = field->signature;
1311
1312 if ((*signature == 'L') || (*signature == '[')) {
1313 fieldClass = dvmFindClassNoInit(signature,
1314 meth->clazz->classLoader);
1315 } else {
1316 return NULL;
1317 }
1318
1319 if (fieldClass == NULL) {
1320 dvmClearOptException(dvmThreadSelf());
1321 LOGV("VFY: unable to find class '%s' for field %s.%s, trying Object\n",
1322 field->signature, meth->clazz->descriptor, field->name);
1323 fieldClass = gDvm.classJavaLangObject;
1324 } else {
1325 assert(!dvmIsPrimitiveClass(fieldClass));
1326 }
1327 return fieldClass;
1328}
1329
1330
1331/*
1332 * ===========================================================================
1333 * Register operations
1334 * ===========================================================================
1335 */
1336
1337/*
1338 * Get the type of register N, verifying that the register is valid.
1339 *
Andy McFadden62a75162009-04-17 17:23:37 -07001340 * Sets "*pFailure" appropriately if the register number is out of range.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001341 */
1342static inline RegType getRegisterType(const RegType* insnRegs,
Andy McFadden62a75162009-04-17 17:23:37 -07001343 const int insnRegCount, u4 vsrc, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001344{
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001345 if (vsrc >= (u4) insnRegCount) {
Andy McFadden62a75162009-04-17 17:23:37 -07001346 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001347 return kRegTypeUnknown;
1348 } else {
1349 return insnRegs[vsrc];
1350 }
1351}
1352
1353/*
1354 * Get the value from a register, and cast it to a ClassObject. Sets
Andy McFadden62a75162009-04-17 17:23:37 -07001355 * "*pFailure" if something fails.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001356 *
1357 * This fails if the register holds an uninitialized class.
1358 *
1359 * If the register holds kRegTypeZero, this returns a NULL pointer.
1360 */
1361static ClassObject* getClassFromRegister(const RegType* insnRegs,
Andy McFadden62a75162009-04-17 17:23:37 -07001362 const int insnRegCount, u4 vsrc, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001363{
1364 ClassObject* clazz = NULL;
1365 RegType type;
1366
1367 /* get the element type of the array held in vsrc */
Andy McFadden62a75162009-04-17 17:23:37 -07001368 type = getRegisterType(insnRegs, insnRegCount, vsrc, pFailure);
1369 if (!VERIFY_OK(*pFailure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001370 goto bail;
1371
1372 /* if "always zero", we allow it to fail at runtime */
1373 if (type == kRegTypeZero)
1374 goto bail;
1375
1376 if (!regTypeIsReference(type)) {
1377 LOG_VFY("VFY: tried to get class from non-ref register v%d (type=%d)\n",
1378 vsrc, type);
Andy McFadden62a75162009-04-17 17:23:37 -07001379 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001380 goto bail;
1381 }
1382 if (regTypeIsUninitReference(type)) {
1383 LOG_VFY("VFY: register %u holds uninitialized reference\n", vsrc);
Andy McFadden62a75162009-04-17 17:23:37 -07001384 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001385 goto bail;
1386 }
1387
1388 clazz = regTypeInitializedReferenceToClass(type);
1389
1390bail:
1391 return clazz;
1392}
1393
1394/*
1395 * Get the "this" pointer from a non-static method invocation. This
1396 * returns the RegType so the caller can decide whether it needs the
1397 * reference to be initialized or not. (Can also return kRegTypeZero
1398 * if the reference can only be zero at this point.)
1399 *
1400 * The argument count is in vA, and the first argument is in vC, for both
1401 * "simple" and "range" versions. We just need to make sure vA is >= 1
1402 * and then return vC.
1403 */
1404static RegType getInvocationThis(const RegType* insnRegs,
Andy McFadden62a75162009-04-17 17:23:37 -07001405 const int insnRegCount, const DecodedInstruction* pDecInsn,
1406 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001407{
1408 RegType thisType = kRegTypeUnknown;
1409
1410 if (pDecInsn->vA < 1) {
1411 LOG_VFY("VFY: invoke lacks 'this'\n");
Andy McFadden62a75162009-04-17 17:23:37 -07001412 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001413 goto bail;
1414 }
1415
1416 /* get the element type of the array held in vsrc */
Andy McFadden62a75162009-04-17 17:23:37 -07001417 thisType = getRegisterType(insnRegs, insnRegCount, pDecInsn->vC, pFailure);
1418 if (!VERIFY_OK(*pFailure)) {
1419 LOG_VFY("VFY: failed to get 'this' from register %u\n", pDecInsn->vC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001420 goto bail;
1421 }
1422
1423 if (!regTypeIsReference(thisType)) {
1424 LOG_VFY("VFY: tried to get class from non-ref register v%d (type=%d)\n",
1425 pDecInsn->vC, thisType);
Andy McFadden62a75162009-04-17 17:23:37 -07001426 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001427 goto bail;
1428 }
1429
1430bail:
1431 return thisType;
1432}
1433
1434/*
1435 * Set the type of register N, verifying that the register is valid. If
1436 * "newType" is the "Lo" part of a 64-bit value, register N+1 will be
1437 * set to "newType+1".
1438 *
Andy McFadden62a75162009-04-17 17:23:37 -07001439 * Sets "*pFailure" if the register number is out of range.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001440 */
1441static void setRegisterType(RegType* insnRegs, const int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001442 u4 vdst, RegType newType, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001443{
1444 //LOGD("set-reg v%u = %d\n", vdst, newType);
1445 switch (newType) {
1446 case kRegTypeUnknown:
1447 case kRegTypeBoolean:
1448 case kRegTypeOne:
1449 case kRegTypeByte:
1450 case kRegTypePosByte:
1451 case kRegTypeShort:
1452 case kRegTypePosShort:
1453 case kRegTypeChar:
1454 case kRegTypeInteger:
1455 case kRegTypeFloat:
1456 case kRegTypeZero:
1457 if (vdst >= (u4) insnRegCount) {
Andy McFadden62a75162009-04-17 17:23:37 -07001458 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001459 } else {
1460 insnRegs[vdst] = newType;
1461 }
1462 break;
1463 case kRegTypeLongLo:
1464 case kRegTypeDoubleLo:
1465 if (vdst+1 >= (u4) insnRegCount) {
Andy McFadden62a75162009-04-17 17:23:37 -07001466 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001467 } else {
1468 insnRegs[vdst] = newType;
1469 insnRegs[vdst+1] = newType+1;
1470 }
1471 break;
1472 case kRegTypeLongHi:
1473 case kRegTypeDoubleHi:
1474 /* should never set these explicitly */
Andy McFadden62a75162009-04-17 17:23:37 -07001475 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001476 break;
1477
1478 case kRegTypeUninit:
1479 default:
1480 if (regTypeIsReference(newType)) {
1481 if (vdst >= (u4) insnRegCount) {
Andy McFadden62a75162009-04-17 17:23:37 -07001482 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001483 break;
1484 }
1485 insnRegs[vdst] = newType;
1486
1487 /*
1488 * In most circumstances we won't see a reference to a primitive
1489 * class here (e.g. "D"), since that would mean the object in the
1490 * register is actually a primitive type. It can happen as the
1491 * result of an assumed-successful check-cast instruction in
1492 * which the second argument refers to a primitive class. (In
1493 * practice, such an instruction will always throw an exception.)
1494 *
1495 * This is not an issue for instructions like const-class, where
1496 * the object in the register is a java.lang.Class instance.
1497 */
1498 break;
1499 }
1500 /* bad - fall through */
1501
1502 case kRegTypeConflict: // should only be set during a merge
1503 LOG_VFY("Unexpected set type %d\n", newType);
1504 assert(false);
Andy McFadden62a75162009-04-17 17:23:37 -07001505 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001506 break;
1507 }
1508}
1509
1510/*
1511 * Verify that the contents of the specified register have the specified
1512 * type (or can be converted to it through an implicit widening conversion).
1513 *
1514 * In theory we could use this to modify the type of the source register,
1515 * e.g. a generic 32-bit constant, once used as a float, would thereafter
1516 * remain a float. There is no compelling reason to require this though.
1517 *
1518 * If "vsrc" is a reference, both it and the "vsrc" register must be
1519 * initialized ("vsrc" may be Zero). This will verify that the value in
1520 * the register is an instance of checkType, or if checkType is an
1521 * interface, verify that the register implements checkType.
1522 */
1523static void verifyRegisterType(const RegType* insnRegs, const int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001524 u4 vsrc, RegType checkType, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001525{
1526 if (vsrc >= (u4) insnRegCount) {
Andy McFadden62a75162009-04-17 17:23:37 -07001527 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001528 return;
1529 }
1530
1531 RegType srcType = insnRegs[vsrc];
1532
1533 //LOGD("check-reg v%u = %d\n", vsrc, checkType);
1534 switch (checkType) {
1535 case kRegTypeFloat:
1536 case kRegTypeBoolean:
1537 case kRegTypePosByte:
1538 case kRegTypeByte:
1539 case kRegTypePosShort:
1540 case kRegTypeShort:
1541 case kRegTypeChar:
1542 case kRegTypeInteger:
1543 if (!canConvertTo1nr(srcType, checkType)) {
1544 LOG_VFY("VFY: register1 v%u type %d, wanted %d\n",
1545 vsrc, srcType, checkType);
Andy McFadden62a75162009-04-17 17:23:37 -07001546 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001547 }
1548 break;
1549 case kRegTypeLongLo:
1550 case kRegTypeDoubleLo:
1551 if (vsrc+1 >= (u4) insnRegCount) {
1552 LOG_VFY("VFY: register2 v%u out of range (%d)\n",
1553 vsrc, insnRegCount);
Andy McFadden62a75162009-04-17 17:23:37 -07001554 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001555 } else if (insnRegs[vsrc+1] != srcType+1) {
1556 LOG_VFY("VFY: register2 v%u-%u values %d,%d\n",
1557 vsrc, vsrc+1, insnRegs[vsrc], insnRegs[vsrc+1]);
Andy McFadden62a75162009-04-17 17:23:37 -07001558 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001559 } else if (!canConvertTo2(srcType, checkType)) {
1560 LOG_VFY("VFY: register2 v%u type %d, wanted %d\n",
1561 vsrc, srcType, checkType);
Andy McFadden62a75162009-04-17 17:23:37 -07001562 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001563 }
1564 break;
1565
1566 case kRegTypeLongHi:
1567 case kRegTypeDoubleHi:
1568 case kRegTypeZero:
1569 case kRegTypeOne:
1570 case kRegTypeUnknown:
1571 case kRegTypeConflict:
1572 /* should never be checking for these explicitly */
1573 assert(false);
Andy McFadden62a75162009-04-17 17:23:37 -07001574 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001575 return;
1576 case kRegTypeUninit:
1577 default:
1578 /* make sure checkType is initialized reference */
1579 if (!regTypeIsReference(checkType)) {
1580 LOG_VFY("VFY: unexpected check type %d\n", checkType);
1581 assert(false);
Andy McFadden62a75162009-04-17 17:23:37 -07001582 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001583 break;
1584 }
1585 if (regTypeIsUninitReference(checkType)) {
1586 LOG_VFY("VFY: uninitialized ref not expected as reg check\n");
Andy McFadden62a75162009-04-17 17:23:37 -07001587 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001588 break;
1589 }
1590 /* make sure srcType is initialized reference or always-NULL */
1591 if (!regTypeIsReference(srcType)) {
1592 LOG_VFY("VFY: register1 v%u type %d, wanted ref\n", vsrc, srcType);
Andy McFadden62a75162009-04-17 17:23:37 -07001593 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001594 break;
1595 }
1596 if (regTypeIsUninitReference(srcType)) {
1597 LOG_VFY("VFY: register1 v%u holds uninitialized ref\n", vsrc);
Andy McFadden62a75162009-04-17 17:23:37 -07001598 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001599 break;
1600 }
1601 /* if the register isn't Zero, make sure it's an instance of check */
1602 if (srcType != kRegTypeZero) {
1603 ClassObject* srcClass = regTypeInitializedReferenceToClass(srcType);
1604 ClassObject* checkClass = regTypeInitializedReferenceToClass(checkType);
1605 assert(srcClass != NULL);
1606 assert(checkClass != NULL);
1607
1608 if (dvmIsInterfaceClass(checkClass)) {
1609 /*
1610 * All objects implement all interfaces as far as the
1611 * verifier is concerned. The runtime has to sort it out.
1612 * See comments above findCommonSuperclass.
1613 */
1614 /*
1615 if (srcClass != checkClass &&
1616 !dvmImplements(srcClass, checkClass))
1617 {
1618 LOG_VFY("VFY: %s does not implement %s\n",
1619 srcClass->descriptor, checkClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07001620 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001621 }
1622 */
1623 } else {
1624 if (!dvmInstanceof(srcClass, checkClass)) {
1625 LOG_VFY("VFY: %s is not instance of %s\n",
1626 srcClass->descriptor, checkClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07001627 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001628 }
1629 }
1630 }
1631 break;
1632 }
1633}
1634
1635/*
1636 * Set the type of the "result" register. Mostly this exists to expand
1637 * "insnRegCount" to encompass the result register.
1638 */
1639static void setResultRegisterType(RegType* insnRegs, const int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001640 RegType newType, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001641{
1642 setRegisterType(insnRegs, insnRegCount + kExtraRegs,
Andy McFadden62a75162009-04-17 17:23:37 -07001643 RESULT_REGISTER(insnRegCount), newType, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001644}
1645
1646
1647/*
1648 * Update all registers holding "uninitType" to instead hold the
1649 * corresponding initialized reference type. This is called when an
1650 * appropriate <init> method is invoked -- all copies of the reference
1651 * must be marked as initialized.
1652 */
1653static void markRefsAsInitialized(RegType* insnRegs, int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001654 UninitInstanceMap* uninitMap, RegType uninitType, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001655{
1656 ClassObject* clazz;
1657 RegType initType;
1658 int i, changed;
1659
1660 clazz = dvmGetUninitInstance(uninitMap, regTypeToUninitIndex(uninitType));
1661 if (clazz == NULL) {
1662 LOGE("VFY: unable to find type=0x%x (idx=%d)\n",
1663 uninitType, regTypeToUninitIndex(uninitType));
Andy McFadden62a75162009-04-17 17:23:37 -07001664 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001665 return;
1666 }
1667 initType = regTypeFromClass(clazz);
1668
1669 changed = 0;
1670 for (i = 0; i < insnRegCount; i++) {
1671 if (insnRegs[i] == uninitType) {
1672 insnRegs[i] = initType;
1673 changed++;
1674 }
1675 }
1676 //LOGD("VFY: marked %d registers as initialized\n", changed);
1677 assert(changed > 0);
1678
1679 return;
1680}
1681
1682/*
1683 * We're creating a new instance of class C at address A. Any registers
1684 * holding instances previously created at address A must be initialized
1685 * by now. If not, we mark them as "conflict" to prevent them from being
1686 * used (otherwise, markRefsAsInitialized would mark the old ones and the
1687 * new ones at the same time).
1688 */
1689static void markUninitRefsAsInvalid(RegType* insnRegs, int insnRegCount,
1690 UninitInstanceMap* uninitMap, RegType uninitType)
1691{
1692 int i, changed;
1693
1694 changed = 0;
1695 for (i = 0; i < insnRegCount; i++) {
1696 if (insnRegs[i] == uninitType) {
1697 insnRegs[i] = kRegTypeConflict;
1698 changed++;
1699 }
1700 }
1701
1702 //if (changed)
1703 // LOGD("VFY: marked %d uninitialized registers as invalid\n", changed);
1704}
1705
1706/*
1707 * Find the start of the register set for the specified instruction in
1708 * the current method.
1709 */
1710static inline RegType* getRegisterLine(const RegisterTable* regTable,
1711 int insnIdx)
1712{
1713 return regTable->addrRegs[insnIdx];
1714}
1715
1716/*
1717 * Copy a bunch of registers.
1718 */
1719static inline void copyRegisters(RegType* dst, const RegType* src,
1720 int numRegs)
1721{
1722 memcpy(dst, src, numRegs * sizeof(RegType));
1723}
1724
1725/*
1726 * Compare a bunch of registers.
1727 *
1728 * Returns 0 if they match. Using this for a sort is unwise, since the
1729 * value can change based on machine endianness.
1730 */
1731static inline int compareRegisters(const RegType* src1, const RegType* src2,
1732 int numRegs)
1733{
1734 return memcmp(src1, src2, numRegs * sizeof(RegType));
1735}
1736
1737/*
1738 * Register type categories, for type checking.
1739 *
1740 * The spec says category 1 includes boolean, byte, char, short, int, float,
1741 * reference, and returnAddress. Category 2 includes long and double.
1742 *
1743 * We treat object references separately, so we have "category1nr". We
1744 * don't support jsr/ret, so there is no "returnAddress" type.
1745 */
1746typedef enum TypeCategory {
1747 kTypeCategoryUnknown = 0,
1748 kTypeCategory1nr, // byte, char, int, float, boolean
1749 kTypeCategory2, // long, double
1750 kTypeCategoryRef, // object reference
1751} TypeCategory;
1752
1753/*
1754 * See if "type" matches "cat". All we're really looking for here is that
1755 * we're not mixing and matching 32-bit and 64-bit quantities, and we're
1756 * not mixing references with numerics. (For example, the arguments to
1757 * "a < b" could be integers of different sizes, but they must both be
1758 * integers. Dalvik is less specific about int vs. float, so we treat them
1759 * as equivalent here.)
1760 *
1761 * For category 2 values, "type" must be the "low" half of the value.
1762 *
Andy McFadden62a75162009-04-17 17:23:37 -07001763 * Sets "*pFailure" if something looks wrong.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001764 */
Andy McFadden62a75162009-04-17 17:23:37 -07001765static void checkTypeCategory(RegType type, TypeCategory cat,
1766 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001767{
1768 switch (cat) {
1769 case kTypeCategory1nr:
1770 switch (type) {
1771 case kRegTypeFloat:
1772 case kRegTypeZero:
1773 case kRegTypeOne:
1774 case kRegTypeBoolean:
1775 case kRegTypePosByte:
1776 case kRegTypeByte:
1777 case kRegTypePosShort:
1778 case kRegTypeShort:
1779 case kRegTypeChar:
1780 case kRegTypeInteger:
1781 break;
1782 default:
Andy McFadden62a75162009-04-17 17:23:37 -07001783 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001784 break;
1785 }
1786 break;
1787
1788 case kTypeCategory2:
1789 switch (type) {
1790 case kRegTypeLongLo:
1791 case kRegTypeDoubleLo:
1792 break;
1793 default:
Andy McFadden62a75162009-04-17 17:23:37 -07001794 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001795 break;
1796 }
1797 break;
1798
1799 case kTypeCategoryRef:
1800 if (type != kRegTypeZero && !regTypeIsReference(type))
Andy McFadden62a75162009-04-17 17:23:37 -07001801 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001802 break;
1803
1804 default:
1805 assert(false);
Andy McFadden62a75162009-04-17 17:23:37 -07001806 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001807 break;
1808 }
1809}
1810
1811/*
1812 * For a category 2 register pair, verify that "typeh" is the appropriate
1813 * high part for "typel".
1814 *
1815 * Does not verify that "typel" is in fact the low part of a 64-bit
1816 * register pair.
1817 */
Andy McFadden62a75162009-04-17 17:23:37 -07001818static void checkWidePair(RegType typel, RegType typeh, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001819{
1820 if ((typeh != typel+1))
Andy McFadden62a75162009-04-17 17:23:37 -07001821 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001822}
1823
1824/*
1825 * Implement category-1 "move" instructions. Copy a 32-bit value from
1826 * "vsrc" to "vdst".
1827 *
1828 * "insnRegCount" is the number of registers available. The "vdst" and
1829 * "vsrc" values are checked against this.
1830 */
1831static void copyRegister1(RegType* insnRegs, int insnRegCount, u4 vdst,
Andy McFadden62a75162009-04-17 17:23:37 -07001832 u4 vsrc, TypeCategory cat, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001833{
Andy McFadden62a75162009-04-17 17:23:37 -07001834 RegType type = getRegisterType(insnRegs, insnRegCount, vsrc, pFailure);
1835 if (VERIFY_OK(*pFailure))
1836 checkTypeCategory(type, cat, pFailure);
1837 if (VERIFY_OK(*pFailure))
1838 setRegisterType(insnRegs, insnRegCount, vdst, type, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001839
Andy McFadden62a75162009-04-17 17:23:37 -07001840 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001841 LOG_VFY("VFY: copy1 v%u<-v%u type=%d cat=%d\n", vdst, vsrc, type, cat);
1842 }
1843}
1844
1845/*
1846 * Implement category-2 "move" instructions. Copy a 64-bit value from
1847 * "vsrc" to "vdst". This copies both halves of the register.
1848 */
1849static void copyRegister2(RegType* insnRegs, int insnRegCount, u4 vdst,
Andy McFadden62a75162009-04-17 17:23:37 -07001850 u4 vsrc, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001851{
Andy McFadden62a75162009-04-17 17:23:37 -07001852 RegType typel = getRegisterType(insnRegs, insnRegCount, vsrc, pFailure);
1853 RegType typeh = getRegisterType(insnRegs, insnRegCount, vsrc+1, pFailure);
1854 if (VERIFY_OK(*pFailure)) {
1855 checkTypeCategory(typel, kTypeCategory2, pFailure);
1856 checkWidePair(typel, typeh, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001857 }
Andy McFadden62a75162009-04-17 17:23:37 -07001858 if (VERIFY_OK(*pFailure))
1859 setRegisterType(insnRegs, insnRegCount, vdst, typel, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001860
Andy McFadden62a75162009-04-17 17:23:37 -07001861 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001862 LOG_VFY("VFY: copy2 v%u<-v%u type=%d/%d\n", vdst, vsrc, typel, typeh);
1863 }
1864}
1865
1866/*
1867 * Implement "move-result". Copy the category-1 value from the result
1868 * register to another register, and reset the result register.
1869 *
1870 * We can't just call copyRegister1 with an altered insnRegCount,
1871 * because that would affect the test on "vdst" as well.
1872 */
1873static void copyResultRegister1(RegType* insnRegs, const int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001874 u4 vdst, TypeCategory cat, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001875{
1876 RegType type;
1877 u4 vsrc;
1878
1879 vsrc = RESULT_REGISTER(insnRegCount);
Andy McFadden62a75162009-04-17 17:23:37 -07001880 type = getRegisterType(insnRegs, insnRegCount + kExtraRegs, vsrc, pFailure);
1881 if (VERIFY_OK(*pFailure))
1882 checkTypeCategory(type, cat, pFailure);
1883 if (VERIFY_OK(*pFailure)) {
1884 setRegisterType(insnRegs, insnRegCount, vdst, type, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001885 insnRegs[vsrc] = kRegTypeUnknown;
1886 }
1887
Andy McFadden62a75162009-04-17 17:23:37 -07001888 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001889 LOG_VFY("VFY: copyRes1 v%u<-v%u cat=%d type=%d\n",
1890 vdst, vsrc, cat, type);
1891 }
1892}
1893
1894/*
1895 * Implement "move-result-wide". Copy the category-2 value from the result
1896 * register to another register, and reset the result register.
1897 *
1898 * We can't just call copyRegister2 with an altered insnRegCount,
1899 * because that would affect the test on "vdst" as well.
1900 */
1901static void copyResultRegister2(RegType* insnRegs, const int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001902 u4 vdst, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001903{
1904 RegType typel, typeh;
1905 u4 vsrc;
1906
1907 vsrc = RESULT_REGISTER(insnRegCount);
Andy McFadden62a75162009-04-17 17:23:37 -07001908 typel = getRegisterType(insnRegs, insnRegCount + kExtraRegs, vsrc,
1909 pFailure);
1910 typeh = getRegisterType(insnRegs, insnRegCount + kExtraRegs, vsrc+1,
1911 pFailure);
1912 if (VERIFY_OK(*pFailure)) {
1913 checkTypeCategory(typel, kTypeCategory2, pFailure);
1914 checkWidePair(typel, typeh, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001915 }
Andy McFadden62a75162009-04-17 17:23:37 -07001916 if (VERIFY_OK(*pFailure)) {
1917 setRegisterType(insnRegs, insnRegCount, vdst, typel, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001918 insnRegs[vsrc] = kRegTypeUnknown;
1919 insnRegs[vsrc+1] = kRegTypeUnknown;
1920 }
1921
Andy McFadden62a75162009-04-17 17:23:37 -07001922 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001923 LOG_VFY("VFY: copyRes2 v%u<-v%u type=%d/%d\n",
1924 vdst, vsrc, typel, typeh);
1925 }
1926}
1927
1928/*
1929 * Verify types for a simple two-register instruction (e.g. "neg-int").
1930 * "dstType" is stored into vA, and "srcType" is verified against vB.
1931 */
1932static void checkUnop(RegType* insnRegs, const int insnRegCount,
1933 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType,
Andy McFadden62a75162009-04-17 17:23:37 -07001934 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001935{
Andy McFadden62a75162009-04-17 17:23:37 -07001936 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vB, srcType, pFailure);
1937 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001938}
1939
1940/*
1941 * We're performing an operation like "and-int/2addr" that can be
1942 * performed on booleans as well as integers. We get no indication of
1943 * boolean-ness, but we can infer it from the types of the arguments.
1944 *
1945 * Assumes we've already validated reg1/reg2.
1946 *
Andy McFaddenb5f64bc2009-06-10 14:11:07 -07001947 * TODO: consider generalizing this. The key principle is that the
1948 * result of a bitwise operation can only be as wide as the widest of
1949 * the operands. You can safely AND/OR/XOR two chars together and know
1950 * you still have a char, so it's reasonable for the compiler or "dx"
1951 * to skip the int-to-char instruction. (We need to do this for boolean
1952 * because there is no int-to-boolean operation.)
1953 *
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001954 * Returns true if both args are Boolean, Zero, or One.
1955 */
1956static bool upcastBooleanOp(RegType* insnRegs, const int insnRegCount,
1957 u4 reg1, u4 reg2)
1958{
1959 RegType type1, type2;
1960
1961 type1 = insnRegs[reg1];
1962 type2 = insnRegs[reg2];
1963
1964 if ((type1 == kRegTypeBoolean || type1 == kRegTypeZero ||
1965 type1 == kRegTypeOne) &&
1966 (type2 == kRegTypeBoolean || type2 == kRegTypeZero ||
1967 type2 == kRegTypeOne))
1968 {
1969 return true;
1970 }
1971 return false;
1972}
1973
1974/*
1975 * Verify types for A two-register instruction with a literal constant
1976 * (e.g. "add-int/lit8"). "dstType" is stored into vA, and "srcType" is
1977 * verified against vB.
1978 *
1979 * If "checkBooleanOp" is set, we use the constant value in vC.
1980 */
1981static void checkLitop(RegType* insnRegs, const int insnRegCount,
1982 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType,
Andy McFadden62a75162009-04-17 17:23:37 -07001983 bool checkBooleanOp, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001984{
Andy McFadden62a75162009-04-17 17:23:37 -07001985 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vB, srcType, pFailure);
1986 if (VERIFY_OK(*pFailure) && checkBooleanOp) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001987 assert(dstType == kRegTypeInteger);
1988 /* check vB with the call, then check the constant manually */
1989 if (upcastBooleanOp(insnRegs, insnRegCount, pDecInsn->vB, pDecInsn->vB)
1990 && (pDecInsn->vC == 0 || pDecInsn->vC == 1))
1991 {
1992 dstType = kRegTypeBoolean;
1993 }
1994 }
Andy McFadden62a75162009-04-17 17:23:37 -07001995 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001996}
1997
1998/*
1999 * Verify types for a simple three-register instruction (e.g. "add-int").
2000 * "dstType" is stored into vA, and "srcType1"/"srcType2" are verified
2001 * against vB/vC.
2002 */
2003static void checkBinop(RegType* insnRegs, const int insnRegCount,
2004 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType1,
Andy McFadden62a75162009-04-17 17:23:37 -07002005 RegType srcType2, bool checkBooleanOp, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002006{
Andy McFadden62a75162009-04-17 17:23:37 -07002007 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vB, srcType1,
2008 pFailure);
2009 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vC, srcType2,
2010 pFailure);
2011 if (VERIFY_OK(*pFailure) && checkBooleanOp) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002012 assert(dstType == kRegTypeInteger);
2013 if (upcastBooleanOp(insnRegs, insnRegCount, pDecInsn->vB, pDecInsn->vC))
2014 dstType = kRegTypeBoolean;
2015 }
Andy McFadden62a75162009-04-17 17:23:37 -07002016 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002017}
2018
2019/*
2020 * Verify types for a binary "2addr" operation. "srcType1"/"srcType2"
2021 * are verified against vA/vB, then "dstType" is stored into vA.
2022 */
2023static void checkBinop2addr(RegType* insnRegs, const int insnRegCount,
2024 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType1,
Andy McFadden62a75162009-04-17 17:23:37 -07002025 RegType srcType2, bool checkBooleanOp, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002026{
Andy McFadden62a75162009-04-17 17:23:37 -07002027 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vA, srcType1,
2028 pFailure);
2029 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vB, srcType2,
2030 pFailure);
2031 if (VERIFY_OK(*pFailure) && checkBooleanOp) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002032 assert(dstType == kRegTypeInteger);
2033 if (upcastBooleanOp(insnRegs, insnRegCount, pDecInsn->vA, pDecInsn->vB))
2034 dstType = kRegTypeBoolean;
2035 }
Andy McFadden62a75162009-04-17 17:23:37 -07002036 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002037}
2038
Andy McFadden80d25ea2009-06-12 07:26:17 -07002039/*
2040 * Treat right-shifting as a narrowing conversion when possible.
2041 *
2042 * For example, right-shifting an int 24 times results in a value that can
2043 * be treated as a byte.
2044 *
2045 * Things get interesting when contemplating sign extension. Right-
2046 * shifting an integer by 16 yields a value that can be represented in a
2047 * "short" but not a "char", but an unsigned right shift by 16 yields a
2048 * value that belongs in a char rather than a short. (Consider what would
2049 * happen if the result of the shift were cast to a char or short and then
2050 * cast back to an int. If sign extension, or the lack thereof, causes
2051 * a change in the 32-bit representation, then the conversion was lossy.)
2052 *
2053 * A signed right shift by 17 on an integer results in a short. An unsigned
2054 * right shfit by 17 on an integer results in a posshort, which can be
2055 * assigned to a short or a char.
2056 *
2057 * An unsigned right shift on a short can actually expand the result into
2058 * a 32-bit integer. For example, 0xfffff123 >>> 8 becomes 0x00fffff1,
2059 * which can't be represented in anything smaller than an int.
2060 *
2061 * javac does not generate code that takes advantage of this, but some
2062 * of the code optimizers do. It's generally a peephole optimization
2063 * that replaces a particular sequence, e.g. (bipush 24, ishr, i2b) is
2064 * replaced by (bipush 24, ishr). Knowing that shifting a short 8 times
2065 * to the right yields a byte is really more than we need to handle the
2066 * code that's out there, but support is not much more complex than just
2067 * handling integer.
2068 *
2069 * Right-shifting never yields a boolean value.
2070 *
2071 * Returns the new register type.
2072 */
2073static RegType adjustForRightShift(RegType* workRegs, const int insnRegCount,
2074 int reg, unsigned int shiftCount, bool isUnsignedShift,
2075 VerifyError* pFailure)
2076{
2077 RegType srcType = getRegisterType(workRegs, insnRegCount, reg, pFailure);
2078 RegType newType;
2079
2080 /* no-op */
2081 if (shiftCount == 0)
2082 return srcType;
2083
2084 /* safe defaults */
2085 if (isUnsignedShift)
2086 newType = kRegTypeInteger;
2087 else
2088 newType = srcType;
2089
2090 if (shiftCount >= 32) {
2091 LOG_VFY("Got unexpectedly large shift count %u\n", shiftCount);
2092 /* fail? */
2093 return newType;
2094 }
2095
2096 switch (srcType) {
2097 case kRegTypeInteger: /* 32-bit signed value */
2098 case kRegTypeFloat: /* (allowed; treat same as int) */
2099 if (isUnsignedShift) {
2100 if (shiftCount > 24)
2101 newType = kRegTypePosByte;
2102 else if (shiftCount >= 16)
2103 newType = kRegTypeChar;
2104 } else {
2105 if (shiftCount >= 24)
2106 newType = kRegTypeByte;
2107 else if (shiftCount >= 16)
2108 newType = kRegTypeShort;
2109 }
2110 break;
2111 case kRegTypeShort: /* 16-bit signed value */
2112 if (isUnsignedShift) {
2113 /* default (kRegTypeInteger) is correct */
2114 } else {
2115 if (shiftCount >= 8)
2116 newType = kRegTypeByte;
2117 }
2118 break;
2119 case kRegTypePosShort: /* 15-bit unsigned value */
2120 if (shiftCount >= 8)
2121 newType = kRegTypePosByte;
2122 break;
2123 case kRegTypeChar: /* 16-bit unsigned value */
2124 if (shiftCount > 8)
2125 newType = kRegTypePosByte;
2126 break;
2127 case kRegTypeByte: /* 8-bit signed value */
2128 /* defaults (u=kRegTypeInteger / s=srcType) are correct */
2129 break;
2130 case kRegTypePosByte: /* 7-bit unsigned value */
2131 /* always use newType=srcType */
2132 newType = srcType;
2133 break;
2134 case kRegTypeZero: /* 1-bit unsigned value */
2135 case kRegTypeOne:
2136 case kRegTypeBoolean:
2137 /* unnecessary? */
2138 newType = kRegTypeZero;
2139 break;
2140 default:
2141 /* long, double, references; shouldn't be here! */
2142 assert(false);
2143 break;
2144 }
2145
2146 if (newType != srcType) {
2147 LOGVV("narrowing: %d(%d) --> %d to %d\n",
2148 shiftCount, isUnsignedShift, srcType, newType);
2149 } else {
2150 LOGVV("not narrowed: %d(%d) --> %d\n",
2151 shiftCount, isUnsignedShift, srcType);
2152 }
2153 return newType;
2154}
2155
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002156
2157/*
2158 * ===========================================================================
2159 * Register merge
2160 * ===========================================================================
2161 */
2162
2163/*
2164 * Compute the "class depth" of a class. This is the distance from the
2165 * class to the top of the tree, chasing superclass links. java.lang.Object
2166 * has a class depth of 0.
2167 */
2168static int getClassDepth(ClassObject* clazz)
2169{
2170 int depth = 0;
2171
2172 while (clazz->super != NULL) {
2173 clazz = clazz->super;
2174 depth++;
2175 }
2176 return depth;
2177}
2178
2179/*
2180 * Given two classes, walk up the superclass tree to find a common
2181 * ancestor. (Called from findCommonSuperclass().)
2182 *
2183 * TODO: consider caching the class depth in the class object so we don't
2184 * have to search for it here.
2185 */
2186static ClassObject* digForSuperclass(ClassObject* c1, ClassObject* c2)
2187{
2188 int depth1, depth2;
2189
2190 depth1 = getClassDepth(c1);
2191 depth2 = getClassDepth(c2);
2192
2193 if (gDebugVerbose) {
2194 LOGVV("COMMON: %s(%d) + %s(%d)\n",
2195 c1->descriptor, depth1, c2->descriptor, depth2);
2196 }
2197
2198 /* pull the deepest one up */
2199 if (depth1 > depth2) {
2200 while (depth1 > depth2) {
2201 c1 = c1->super;
2202 depth1--;
2203 }
2204 } else {
2205 while (depth2 > depth1) {
2206 c2 = c2->super;
2207 depth2--;
2208 }
2209 }
2210
2211 /* walk up in lock-step */
2212 while (c1 != c2) {
2213 c1 = c1->super;
2214 c2 = c2->super;
2215
2216 assert(c1 != NULL && c2 != NULL);
2217 }
2218
2219 if (gDebugVerbose) {
2220 LOGVV(" : --> %s\n", c1->descriptor);
2221 }
2222 return c1;
2223}
2224
2225/*
2226 * Merge two array classes. We can't use the general "walk up to the
2227 * superclass" merge because the superclass of an array is always Object.
2228 * We want String[] + Integer[] = Object[]. This works for higher dimensions
2229 * as well, e.g. String[][] + Integer[][] = Object[][].
2230 *
2231 * If Foo1 and Foo2 are subclasses of Foo, Foo1[] + Foo2[] = Foo[].
2232 *
2233 * If Class implements Type, Class[] + Type[] = Type[].
2234 *
2235 * If the dimensions don't match, we want to convert to an array of Object
2236 * with the least dimension, e.g. String[][] + String[][][][] = Object[][].
2237 *
2238 * This gets a little awkward because we may have to ask the VM to create
2239 * a new array type with the appropriate element and dimensions. However, we
2240 * shouldn't be doing this often.
2241 */
2242static ClassObject* findCommonArraySuperclass(ClassObject* c1, ClassObject* c2)
2243{
2244 ClassObject* arrayClass = NULL;
2245 ClassObject* commonElem;
2246 int i, numDims;
2247
2248 assert(c1->arrayDim > 0);
2249 assert(c2->arrayDim > 0);
2250
2251 if (c1->arrayDim == c2->arrayDim) {
2252 //commonElem = digForSuperclass(c1->elementClass, c2->elementClass);
2253 commonElem = findCommonSuperclass(c1->elementClass, c2->elementClass);
2254 numDims = c1->arrayDim;
2255 } else {
2256 if (c1->arrayDim < c2->arrayDim)
2257 numDims = c1->arrayDim;
2258 else
2259 numDims = c2->arrayDim;
2260 commonElem = c1->super; // == java.lang.Object
2261 }
2262
2263 /* walk from the element to the (multi-)dimensioned array type */
2264 for (i = 0; i < numDims; i++) {
2265 arrayClass = dvmFindArrayClassForElement(commonElem);
2266 commonElem = arrayClass;
2267 }
2268
2269 LOGVV("ArrayMerge '%s' + '%s' --> '%s'\n",
2270 c1->descriptor, c2->descriptor, arrayClass->descriptor);
2271 return arrayClass;
2272}
2273
2274/*
2275 * Find the first common superclass of the two classes. We're not
2276 * interested in common interfaces.
2277 *
2278 * The easiest way to do this for concrete classes is to compute the "class
2279 * depth" of each, move up toward the root of the deepest one until they're
2280 * at the same depth, then walk both up to the root until they match.
2281 *
2282 * If both classes are arrays of non-primitive types, we need to merge
2283 * based on array depth and element type.
2284 *
2285 * If one class is an interface, we check to see if the other class/interface
2286 * (or one of its predecessors) implements the interface. If so, we return
2287 * the interface; otherwise, we return Object.
2288 *
2289 * NOTE: we continue the tradition of "lazy interface handling". To wit,
2290 * suppose we have three classes:
2291 * One implements Fancy, Free
2292 * Two implements Fancy, Free
2293 * Three implements Free
2294 * where Fancy and Free are unrelated interfaces. The code requires us
2295 * to merge One into Two. Ideally we'd use a common interface, which
2296 * gives us a choice between Fancy and Free, and no guidance on which to
2297 * use. If we use Free, we'll be okay when Three gets merged in, but if
2298 * we choose Fancy, we're hosed. The "ideal" solution is to create a
2299 * set of common interfaces and carry that around, merging further references
2300 * into it. This is a pain. The easy solution is to simply boil them
2301 * down to Objects and let the runtime invokeinterface call fail, which
2302 * is what we do.
2303 */
2304static ClassObject* findCommonSuperclass(ClassObject* c1, ClassObject* c2)
2305{
2306 assert(!dvmIsPrimitiveClass(c1) && !dvmIsPrimitiveClass(c2));
2307
2308 if (c1 == c2)
2309 return c1;
2310
2311 if (dvmIsInterfaceClass(c1) && dvmImplements(c2, c1)) {
2312 if (gDebugVerbose)
2313 LOGVV("COMMON/I1: %s + %s --> %s\n",
2314 c1->descriptor, c2->descriptor, c1->descriptor);
2315 return c1;
2316 }
2317 if (dvmIsInterfaceClass(c2) && dvmImplements(c1, c2)) {
2318 if (gDebugVerbose)
2319 LOGVV("COMMON/I2: %s + %s --> %s\n",
2320 c1->descriptor, c2->descriptor, c2->descriptor);
2321 return c2;
2322 }
2323
2324 if (dvmIsArrayClass(c1) && dvmIsArrayClass(c2) &&
2325 !dvmIsPrimitiveClass(c1->elementClass) &&
2326 !dvmIsPrimitiveClass(c2->elementClass))
2327 {
2328 return findCommonArraySuperclass(c1, c2);
2329 }
2330
2331 return digForSuperclass(c1, c2);
2332}
2333
2334/*
2335 * Merge two RegType values.
2336 *
2337 * Sets "*pChanged" to "true" if the result doesn't match "type1".
2338 */
2339static RegType mergeTypes(RegType type1, RegType type2, bool* pChanged)
2340{
2341 RegType result;
2342
2343 /*
2344 * Check for trivial case so we don't have to hit memory.
2345 */
2346 if (type1 == type2)
2347 return type1;
2348
2349 /*
2350 * Use the table if we can, and reject any attempts to merge something
2351 * from the table with a reference type.
2352 *
2353 * The uninitialized table entry at index zero *will* show up as a
2354 * simple kRegTypeUninit value. Since this cannot be merged with
2355 * anything but itself, the rules do the right thing.
2356 */
2357 if (type1 < kRegTypeMAX) {
2358 if (type2 < kRegTypeMAX) {
2359 result = gDvmMergeTab[type1][type2];
2360 } else {
2361 /* simple + reference == conflict, usually */
2362 if (type1 == kRegTypeZero)
2363 result = type2;
2364 else
2365 result = kRegTypeConflict;
2366 }
2367 } else {
2368 if (type2 < kRegTypeMAX) {
2369 /* reference + simple == conflict, usually */
2370 if (type2 == kRegTypeZero)
2371 result = type1;
2372 else
2373 result = kRegTypeConflict;
2374 } else {
2375 /* merging two references */
2376 if (regTypeIsUninitReference(type1) ||
2377 regTypeIsUninitReference(type2))
2378 {
2379 /* can't merge uninit with anything but self */
2380 result = kRegTypeConflict;
2381 } else {
2382 ClassObject* clazz1 = regTypeInitializedReferenceToClass(type1);
2383 ClassObject* clazz2 = regTypeInitializedReferenceToClass(type2);
2384 ClassObject* mergedClass;
2385
2386 mergedClass = findCommonSuperclass(clazz1, clazz2);
2387 assert(mergedClass != NULL);
2388 result = regTypeFromClass(mergedClass);
2389 }
2390 }
2391 }
2392
2393 if (result != type1)
2394 *pChanged = true;
2395 return result;
2396}
2397
2398/*
2399 * Control can transfer to "nextInsn".
2400 *
2401 * Merge the registers from "workRegs" into "regTypes" at "nextInsn", and
2402 * set the "changed" flag on the target address if the registers have changed.
2403 */
2404static void updateRegisters(const Method* meth, InsnFlags* insnFlags,
2405 RegisterTable* regTable, int nextInsn, const RegType* workRegs)
2406{
2407 RegType* targetRegs = getRegisterLine(regTable, nextInsn);
2408 const int insnRegCount = meth->registersSize;
2409
2410#if 0
2411 if (!dvmInsnIsBranchTarget(insnFlags, nextInsn)) {
2412 LOGE("insnFlags[0x%x]=0x%08x\n", nextInsn, insnFlags[nextInsn]);
2413 LOGE(" In %s.%s %s\n",
2414 meth->clazz->descriptor, meth->name, meth->descriptor);
2415 assert(false);
2416 }
2417#endif
2418
2419 if (!dvmInsnIsVisitedOrChanged(insnFlags, nextInsn)) {
2420 /*
2421 * We haven't processed this instruction before, and we haven't
2422 * touched the registers here, so there's nothing to "merge". Copy
2423 * the registers over and mark it as changed. (This is the only
2424 * way a register can transition out of "unknown", so this is not
2425 * just an optimization.)
2426 */
2427 LOGVV("COPY into 0x%04x\n", nextInsn);
2428 copyRegisters(targetRegs, workRegs, insnRegCount + kExtraRegs);
2429 dvmInsnSetChanged(insnFlags, nextInsn, true);
2430 } else {
2431 if (gDebugVerbose) {
2432 LOGVV("MERGE into 0x%04x\n", nextInsn);
2433 //dumpRegTypes(meth, insnFlags, targetRegs, 0, "targ", NULL, 0);
2434 //dumpRegTypes(meth, insnFlags, workRegs, 0, "work", NULL, 0);
2435 }
2436 /* merge registers, set Changed only if different */
2437 bool changed = false;
2438 int i;
2439
2440 for (i = 0; i < insnRegCount + kExtraRegs; i++) {
2441 targetRegs[i] = mergeTypes(targetRegs[i], workRegs[i], &changed);
2442 }
2443
2444 if (gDebugVerbose) {
2445 //LOGI(" RESULT (changed=%d)\n", changed);
2446 //dumpRegTypes(meth, insnFlags, targetRegs, 0, "rslt", NULL, 0);
2447 }
2448
2449 if (changed)
2450 dvmInsnSetChanged(insnFlags, nextInsn, true);
2451 }
2452}
2453
2454
2455/*
2456 * ===========================================================================
2457 * Utility functions
2458 * ===========================================================================
2459 */
2460
2461/*
2462 * Look up an instance field, specified by "fieldIdx", that is going to be
2463 * accessed in object "objType". This resolves the field and then verifies
2464 * that the class containing the field is an instance of the reference in
2465 * "objType".
2466 *
2467 * It is possible for "objType" to be kRegTypeZero, meaning that we might
2468 * have a null reference. This is a runtime problem, so we allow it,
2469 * skipping some of the type checks.
2470 *
2471 * In general, "objType" must be an initialized reference. However, we
2472 * allow it to be uninitialized if this is an "<init>" method and the field
2473 * is declared within the "objType" class.
2474 *
Andy McFadden62a75162009-04-17 17:23:37 -07002475 * Returns an InstField on success, returns NULL and sets "*pFailure"
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002476 * on failure.
2477 */
2478static InstField* getInstField(const Method* meth,
2479 const UninitInstanceMap* uninitMap, RegType objType, int fieldIdx,
Andy McFadden62a75162009-04-17 17:23:37 -07002480 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002481{
2482 InstField* instField = NULL;
2483 ClassObject* objClass;
2484 bool mustBeLocal = false;
2485
2486 if (!regTypeIsReference(objType)) {
Andy McFadden62a75162009-04-17 17:23:37 -07002487 LOG_VFY("VFY: attempt to access field in non-reference type %d\n",
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002488 objType);
Andy McFadden62a75162009-04-17 17:23:37 -07002489 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002490 goto bail;
2491 }
2492
Andy McFadden62a75162009-04-17 17:23:37 -07002493 instField = dvmOptResolveInstField(meth->clazz, fieldIdx, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002494 if (instField == NULL) {
2495 LOG_VFY("VFY: unable to resolve instance field %u\n", fieldIdx);
Andy McFadden62a75162009-04-17 17:23:37 -07002496 assert(!VERIFY_OK(*pFailure));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002497 goto bail;
2498 }
2499
2500 if (objType == kRegTypeZero)
2501 goto bail;
2502
2503 /*
2504 * Access to fields in uninitialized objects is allowed if this is
2505 * the <init> method for the object and the field in question is
2506 * declared by this class.
2507 */
2508 objClass = regTypeReferenceToClass(objType, uninitMap);
2509 assert(objClass != NULL);
2510 if (regTypeIsUninitReference(objType)) {
2511 if (!isInitMethod(meth) || meth->clazz != objClass) {
2512 LOG_VFY("VFY: attempt to access field via uninitialized ref\n");
Andy McFadden62a75162009-04-17 17:23:37 -07002513 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002514 goto bail;
2515 }
2516 mustBeLocal = true;
2517 }
2518
2519 if (!dvmInstanceof(objClass, instField->field.clazz)) {
2520 LOG_VFY("VFY: invalid field access (field %s.%s, through %s ref)\n",
2521 instField->field.clazz->descriptor, instField->field.name,
2522 objClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07002523 *pFailure = VERIFY_ERROR_NO_FIELD;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002524 goto bail;
2525 }
2526
2527 if (mustBeLocal) {
2528 /* for uninit ref, make sure it's defined by this class, not super */
2529 if (instField < objClass->ifields ||
2530 instField >= objClass->ifields + objClass->ifieldCount)
2531 {
2532 LOG_VFY("VFY: invalid constructor field access (field %s in %s)\n",
2533 instField->field.name, objClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07002534 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002535 goto bail;
2536 }
2537 }
2538
2539bail:
2540 return instField;
2541}
2542
2543/*
2544 * Look up a static field.
2545 *
Andy McFadden62a75162009-04-17 17:23:37 -07002546 * Returns a StaticField on success, returns NULL and sets "*pFailure"
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002547 * on failure.
2548 */
2549static StaticField* getStaticField(const Method* meth, int fieldIdx,
Andy McFadden62a75162009-04-17 17:23:37 -07002550 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002551{
2552 StaticField* staticField;
2553
Andy McFadden62a75162009-04-17 17:23:37 -07002554 staticField = dvmOptResolveStaticField(meth->clazz, fieldIdx, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002555 if (staticField == NULL) {
2556 DexFile* pDexFile = meth->clazz->pDvmDex->pDexFile;
2557 const DexFieldId* pFieldId;
2558
2559 pFieldId = dexGetFieldId(pDexFile, fieldIdx);
2560
2561 LOG_VFY("VFY: unable to resolve static field %u (%s) in %s\n", fieldIdx,
2562 dexStringById(pDexFile, pFieldId->nameIdx),
2563 dexStringByTypeIdx(pDexFile, pFieldId->classIdx));
Andy McFadden62a75162009-04-17 17:23:37 -07002564 assert(!VERIFY_OK(*pFailure));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002565 goto bail;
2566 }
2567
2568bail:
2569 return staticField;
2570}
2571
2572/*
2573 * If "field" is marked "final", make sure this is the either <clinit>
2574 * or <init> as appropriate.
2575 *
Andy McFadden62a75162009-04-17 17:23:37 -07002576 * Sets "*pFailure" on failure.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002577 */
2578static void checkFinalFieldAccess(const Method* meth, const Field* field,
Andy McFadden62a75162009-04-17 17:23:37 -07002579 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002580{
2581 if (!dvmIsFinalField(field))
2582 return;
2583
2584 /* make sure we're in the same class */
2585 if (meth->clazz != field->clazz) {
2586 LOG_VFY_METH(meth, "VFY: can't modify final field %s.%s\n",
2587 field->clazz->descriptor, field->name);
Andy McFaddenb51ea112009-05-08 16:50:17 -07002588 *pFailure = VERIFY_ERROR_ACCESS_FIELD;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002589 return;
2590 }
2591
2592 /*
Andy McFadden62a75162009-04-17 17:23:37 -07002593 * The VM spec descriptions of putfield and putstatic say that
2594 * IllegalAccessError is only thrown when the instructions appear
2595 * outside the declaring class. Our earlier attempts to restrict
2596 * final field modification to constructors are, therefore, wrong.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002597 */
2598#if 0
2599 /* make sure we're in the right kind of constructor */
2600 if (dvmIsStaticField(field)) {
2601 if (!isClassInitMethod(meth)) {
2602 LOG_VFY_METH(meth,
2603 "VFY: can't modify final static field outside <clinit>\n");
Andy McFadden62a75162009-04-17 17:23:37 -07002604 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002605 }
2606 } else {
2607 if (!isInitMethod(meth)) {
2608 LOG_VFY_METH(meth,
2609 "VFY: can't modify final field outside <init>\n");
Andy McFadden62a75162009-04-17 17:23:37 -07002610 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002611 }
2612 }
2613#endif
2614}
2615
2616/*
2617 * Make sure that the register type is suitable for use as an array index.
2618 *
Andy McFadden62a75162009-04-17 17:23:37 -07002619 * Sets "*pFailure" if not.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002620 */
2621static void checkArrayIndexType(const Method* meth, RegType regType,
Andy McFadden62a75162009-04-17 17:23:37 -07002622 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002623{
Andy McFadden62a75162009-04-17 17:23:37 -07002624 if (VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002625 /*
2626 * The 1nr types are interchangeable at this level. We could
2627 * do something special if we can definitively identify it as a
2628 * float, but there's no real value in doing so.
2629 */
Andy McFadden62a75162009-04-17 17:23:37 -07002630 checkTypeCategory(regType, kTypeCategory1nr, pFailure);
2631 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002632 LOG_VFY_METH(meth, "Invalid reg type for array index (%d)\n",
2633 regType);
2634 }
2635 }
2636}
2637
2638/*
2639 * Check constraints on constructor return. Specifically, make sure that
2640 * the "this" argument got initialized.
2641 *
2642 * The "this" argument to <init> uses code offset kUninitThisArgAddr, which
2643 * puts it at the start of the list in slot 0. If we see a register with
2644 * an uninitialized slot 0 reference, we know it somehow didn't get
2645 * initialized.
2646 *
2647 * Returns "true" if all is well.
2648 */
2649static bool checkConstructorReturn(const Method* meth, const RegType* insnRegs,
2650 const int insnRegCount)
2651{
2652 int i;
2653
2654 if (!isInitMethod(meth))
2655 return true;
2656
2657 RegType uninitThis = regTypeFromUninitIndex(kUninitThisArgSlot);
2658
2659 for (i = 0; i < insnRegCount; i++) {
2660 if (insnRegs[i] == uninitThis) {
2661 LOG_VFY("VFY: <init> returning without calling superclass init\n");
2662 return false;
2663 }
2664 }
2665 return true;
2666}
2667
2668/*
2669 * Verify that the target instruction is not "move-exception". It's important
2670 * that the only way to execute a move-exception is as the first instruction
2671 * of an exception handler.
2672 *
2673 * Returns "true" if all is well, "false" if the target instruction is
2674 * move-exception.
2675 */
2676static bool checkMoveException(const Method* meth, int insnIdx,
2677 const char* logNote)
2678{
2679 assert(insnIdx >= 0 && insnIdx < (int)dvmGetMethodInsnsSize(meth));
2680
2681 if ((meth->insns[insnIdx] & 0xff) == OP_MOVE_EXCEPTION) {
2682 LOG_VFY("VFY: invalid use of move-exception\n");
2683 return false;
2684 }
2685 return true;
2686}
2687
2688/*
2689 * For the "move-exception" instruction at "insnIdx", which must be at an
2690 * exception handler address, determine the first common superclass of
2691 * all exceptions that can land here. (For javac output, we're probably
2692 * looking at multiple spans of bytecode covered by one "try" that lands
2693 * at an exception-specific "catch", but in general the handler could be
2694 * shared for multiple exceptions.)
2695 *
2696 * Returns NULL if no matching exception handler can be found, or if the
2697 * exception is not a subclass of Throwable.
2698 */
Andy McFadden62a75162009-04-17 17:23:37 -07002699static ClassObject* getCaughtExceptionType(const Method* meth, int insnIdx,
2700 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002701{
Andy McFadden62a75162009-04-17 17:23:37 -07002702 VerifyError localFailure;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002703 const DexCode* pCode;
2704 DexFile* pDexFile;
2705 ClassObject* commonSuper = NULL;
Andy McFadden62a75162009-04-17 17:23:37 -07002706 bool foundPossibleHandler = false;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002707 u4 handlersSize;
2708 u4 offset;
2709 u4 i;
2710
2711 pDexFile = meth->clazz->pDvmDex->pDexFile;
2712 pCode = dvmGetMethodCode(meth);
2713
2714 if (pCode->triesSize != 0) {
2715 handlersSize = dexGetHandlersSize(pCode);
2716 offset = dexGetFirstHandlerOffset(pCode);
2717 } else {
2718 handlersSize = 0;
2719 offset = 0;
2720 }
2721
2722 for (i = 0; i < handlersSize; i++) {
2723 DexCatchIterator iterator;
2724 dexCatchIteratorInit(&iterator, pCode, offset);
2725
2726 for (;;) {
2727 const DexCatchHandler* handler = dexCatchIteratorNext(&iterator);
2728
2729 if (handler == NULL) {
2730 break;
2731 }
2732
2733 if (handler->address == (u4) insnIdx) {
2734 ClassObject* clazz;
Andy McFadden62a75162009-04-17 17:23:37 -07002735 foundPossibleHandler = true;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002736
2737 if (handler->typeIdx == kDexNoIndex)
2738 clazz = gDvm.classJavaLangThrowable;
2739 else
Andy McFadden62a75162009-04-17 17:23:37 -07002740 clazz = dvmOptResolveClass(meth->clazz, handler->typeIdx,
2741 &localFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002742
2743 if (clazz == NULL) {
2744 LOG_VFY("VFY: unable to resolve exception class %u (%s)\n",
2745 handler->typeIdx,
2746 dexStringByTypeIdx(pDexFile, handler->typeIdx));
Andy McFadden62a75162009-04-17 17:23:37 -07002747 /* TODO: do we want to keep going? If we don't fail
2748 * this we run the risk of having a non-Throwable
2749 * introduced at runtime. However, that won't pass
2750 * an instanceof test, so is essentially harmless. */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002751 } else {
2752 if (commonSuper == NULL)
2753 commonSuper = clazz;
2754 else
2755 commonSuper = findCommonSuperclass(clazz, commonSuper);
2756 }
2757 }
2758 }
2759
2760 offset = dexCatchIteratorGetEndOffset(&iterator, pCode);
2761 }
2762
2763 if (commonSuper == NULL) {
Andy McFadden62a75162009-04-17 17:23:37 -07002764 /* no catch blocks, or no catches with classes we can find */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002765 LOG_VFY_METH(meth,
2766 "VFY: unable to find exception handler at addr 0x%x\n", insnIdx);
Andy McFadden62a75162009-04-17 17:23:37 -07002767 *pFailure = VERIFY_ERROR_GENERIC;
2768 } else {
2769 // TODO: verify the class is an instance of Throwable?
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002770 }
2771
2772 return commonSuper;
2773}
2774
2775/*
2776 * Initialize the RegisterTable.
2777 *
2778 * Every instruction address can have a different set of information about
2779 * what's in which register, but for verification purposes we only need to
2780 * store it at branch target addresses (because we merge into that).
2781 *
2782 * By zeroing out the storage we are effectively initializing the register
2783 * information to kRegTypeUnknown.
2784 */
2785static bool initRegisterTable(const Method* meth, const InsnFlags* insnFlags,
2786 RegisterTable* regTable, RegisterTrackingMode trackRegsFor)
2787{
2788 const int insnsSize = dvmGetMethodInsnsSize(meth);
2789 int i;
2790
2791 regTable->insnRegCountPlus = meth->registersSize + kExtraRegs;
2792 regTable->addrRegs = (RegType**) calloc(insnsSize, sizeof(RegType*));
2793 if (regTable->addrRegs == NULL)
2794 return false;
2795
2796 assert(insnsSize > 0);
2797
2798 /*
2799 * "All" means "every address that holds the start of an instruction".
2800 * "Branches" and "GcPoints" mean just those addresses.
2801 *
2802 * "GcPoints" fills about half the addresses, "Branches" about 15%.
2803 */
2804 int interestingCount = 0;
2805 //int insnCount = 0;
2806
2807 for (i = 0; i < insnsSize; i++) {
2808 bool interesting;
2809
2810 switch (trackRegsFor) {
2811 case kTrackRegsAll:
2812 interesting = dvmInsnIsOpcode(insnFlags, i);
2813 break;
2814 case kTrackRegsGcPoints:
2815 interesting = dvmInsnIsGcPoint(insnFlags, i) ||
2816 dvmInsnIsBranchTarget(insnFlags, i);
2817 break;
2818 case kTrackRegsBranches:
2819 interesting = dvmInsnIsBranchTarget(insnFlags, i);
2820 break;
2821 default:
2822 dvmAbort();
2823 return false;
2824 }
2825
2826 if (interesting)
2827 interestingCount++;
2828
2829 /* count instructions, for display only */
2830 //if (dvmInsnIsOpcode(insnFlags, i))
2831 // insnCount++;
2832 }
2833
2834 regTable->regAlloc = (RegType*)
2835 calloc(regTable->insnRegCountPlus * interestingCount, sizeof(RegType));
2836 if (regTable->regAlloc == NULL)
2837 return false;
2838
2839 RegType* regPtr = regTable->regAlloc;
2840 for (i = 0; i < insnsSize; i++) {
2841 bool interesting;
2842
2843 switch (trackRegsFor) {
2844 case kTrackRegsAll:
2845 interesting = dvmInsnIsOpcode(insnFlags, i);
2846 break;
2847 case kTrackRegsGcPoints:
2848 interesting = dvmInsnIsGcPoint(insnFlags, i) ||
2849 dvmInsnIsBranchTarget(insnFlags, i);
2850 break;
2851 case kTrackRegsBranches:
2852 interesting = dvmInsnIsBranchTarget(insnFlags, i);
2853 break;
2854 default:
2855 dvmAbort();
2856 return false;
2857 }
2858
2859 if (interesting) {
2860 regTable->addrRegs[i] = regPtr;
2861 regPtr += regTable->insnRegCountPlus;
2862 }
2863 }
2864
2865 //LOGD("Tracking registers for %d, total %d of %d(%d) (%d%%)\n",
2866 // TRACK_REGS_FOR, interestingCount, insnCount, insnsSize,
2867 // (interestingCount*100) / insnCount);
2868
2869 assert(regPtr - regTable->regAlloc ==
2870 regTable->insnRegCountPlus * interestingCount);
2871 assert(regTable->addrRegs[0] != NULL);
2872 return true;
2873}
2874
2875
2876/*
2877 * Verify that the arguments in a filled-new-array instruction are valid.
2878 *
2879 * "resClass" is the class refered to by pDecInsn->vB.
2880 */
2881static void verifyFilledNewArrayRegs(const Method* meth,
2882 const RegType* insnRegs, const int insnRegCount,
2883 const DecodedInstruction* pDecInsn, ClassObject* resClass, bool isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07002884 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002885{
2886 u4 argCount = pDecInsn->vA;
2887 RegType expectedType;
2888 PrimitiveType elemType;
2889 unsigned int ui;
2890
2891 assert(dvmIsArrayClass(resClass));
2892 elemType = resClass->elementClass->primitiveType;
2893 if (elemType == PRIM_NOT) {
2894 expectedType = regTypeFromClass(resClass->elementClass);
2895 } else {
2896 expectedType = primitiveTypeToRegType(elemType);
2897 }
2898 //LOGI("filled-new-array: %s -> %d\n", resClass->descriptor, expectedType);
2899
2900 /*
2901 * Verify each register. If "argCount" is bad, verifyRegisterType()
2902 * will run off the end of the list and fail. It's legal, if silly,
2903 * for argCount to be zero.
2904 */
2905 for (ui = 0; ui < argCount; ui++) {
2906 u4 getReg;
2907
2908 if (isRange)
2909 getReg = pDecInsn->vC + ui;
2910 else
2911 getReg = pDecInsn->arg[ui];
2912
Andy McFadden62a75162009-04-17 17:23:37 -07002913 verifyRegisterType(insnRegs, insnRegCount, getReg, expectedType,
2914 pFailure);
2915 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002916 LOG_VFY("VFY: filled-new-array arg %u(%u) not valid\n", ui, getReg);
2917 return;
2918 }
2919 }
2920}
2921
2922
2923/*
Andy McFaddenb51ea112009-05-08 16:50:17 -07002924 * Replace an instruction with "throw-verification-error". This allows us to
2925 * defer error reporting until the code path is first used.
2926 *
Andy McFadden861b3382010-03-05 15:58:31 -08002927 * This is expected to be called during "just in time" verification, not
2928 * from within dexopt. (Verification failures in dexopt will result in
2929 * postponement of verification to first use of the class.)
2930 *
Andy McFaddenb51ea112009-05-08 16:50:17 -07002931 * The throw-verification-error instruction requires two code units. Some
2932 * of the replaced instructions require three; the third code unit will
2933 * receive a "nop". The instruction's length will be left unchanged
2934 * in "insnFlags".
2935 *
Andy McFadden96516932009-10-28 17:39:02 -07002936 * The verifier explicitly locks out breakpoint activity, so there should
2937 * be no clashes with the debugger.
2938 *
Andy McFaddenb51ea112009-05-08 16:50:17 -07002939 * Returns "true" on success.
2940 */
Andy McFadden228a6b02010-05-04 15:02:32 -07002941static bool replaceFailingInstruction(const Method* meth, InsnFlags* insnFlags,
Andy McFaddenb51ea112009-05-08 16:50:17 -07002942 int insnIdx, VerifyError failure)
2943{
Andy McFaddenaf0e8382009-08-28 10:38:37 -07002944 VerifyErrorRefType refType;
Andy McFaddenb51ea112009-05-08 16:50:17 -07002945 const u2* oldInsns = meth->insns + insnIdx;
2946 u2 oldInsn = *oldInsns;
2947 bool result = false;
2948
Andy McFaddenfb119e62010-06-28 16:21:20 -07002949 if (gDvm.optimizing)
2950 LOGD("Weird: RFI during dexopt?");
2951
Andy McFaddenb51ea112009-05-08 16:50:17 -07002952 //LOGD(" was 0x%04x\n", oldInsn);
2953 u2* newInsns = (u2*) meth->insns + insnIdx;
2954
2955 /*
2956 * Generate the new instruction out of the old.
2957 *
2958 * First, make sure this is an instruction we're expecting to stomp on.
2959 */
2960 switch (oldInsn & 0xff) {
2961 case OP_CONST_CLASS: // insn[1] == class ref, 2 bytes
2962 case OP_CHECK_CAST:
2963 case OP_INSTANCE_OF:
2964 case OP_NEW_INSTANCE:
2965 case OP_NEW_ARRAY:
Andy McFaddenb51ea112009-05-08 16:50:17 -07002966 case OP_FILLED_NEW_ARRAY: // insn[1] == class ref, 3 bytes
2967 case OP_FILLED_NEW_ARRAY_RANGE:
Andy McFaddenaf0e8382009-08-28 10:38:37 -07002968 refType = VERIFY_ERROR_REF_CLASS;
2969 break;
Andy McFaddenb51ea112009-05-08 16:50:17 -07002970
2971 case OP_IGET: // insn[1] == field ref, 2 bytes
2972 case OP_IGET_BOOLEAN:
2973 case OP_IGET_BYTE:
2974 case OP_IGET_CHAR:
2975 case OP_IGET_SHORT:
2976 case OP_IGET_WIDE:
2977 case OP_IGET_OBJECT:
2978 case OP_IPUT:
2979 case OP_IPUT_BOOLEAN:
2980 case OP_IPUT_BYTE:
2981 case OP_IPUT_CHAR:
2982 case OP_IPUT_SHORT:
2983 case OP_IPUT_WIDE:
2984 case OP_IPUT_OBJECT:
2985 case OP_SGET:
2986 case OP_SGET_BOOLEAN:
2987 case OP_SGET_BYTE:
2988 case OP_SGET_CHAR:
2989 case OP_SGET_SHORT:
2990 case OP_SGET_WIDE:
2991 case OP_SGET_OBJECT:
2992 case OP_SPUT:
2993 case OP_SPUT_BOOLEAN:
2994 case OP_SPUT_BYTE:
2995 case OP_SPUT_CHAR:
2996 case OP_SPUT_SHORT:
2997 case OP_SPUT_WIDE:
2998 case OP_SPUT_OBJECT:
Andy McFaddenaf0e8382009-08-28 10:38:37 -07002999 refType = VERIFY_ERROR_REF_FIELD;
3000 break;
Andy McFaddenb51ea112009-05-08 16:50:17 -07003001
3002 case OP_INVOKE_VIRTUAL: // insn[1] == method ref, 3 bytes
3003 case OP_INVOKE_VIRTUAL_RANGE:
3004 case OP_INVOKE_SUPER:
3005 case OP_INVOKE_SUPER_RANGE:
3006 case OP_INVOKE_DIRECT:
3007 case OP_INVOKE_DIRECT_RANGE:
3008 case OP_INVOKE_STATIC:
3009 case OP_INVOKE_STATIC_RANGE:
3010 case OP_INVOKE_INTERFACE:
3011 case OP_INVOKE_INTERFACE_RANGE:
Andy McFaddenaf0e8382009-08-28 10:38:37 -07003012 refType = VERIFY_ERROR_REF_METHOD;
Andy McFaddenb51ea112009-05-08 16:50:17 -07003013 break;
Andy McFaddenaf0e8382009-08-28 10:38:37 -07003014
Andy McFaddenb51ea112009-05-08 16:50:17 -07003015 default:
3016 /* could handle this in a generic way, but this is probably safer */
3017 LOG_VFY("GLITCH: verifier asked to replace opcode 0x%02x\n",
3018 oldInsn & 0xff);
3019 goto bail;
3020 }
3021
3022 /* write a NOP over the third code unit, if necessary */
3023 int width = dvmInsnGetWidth(insnFlags, insnIdx);
3024 switch (width) {
3025 case 2:
3026 /* nothing to do */
3027 break;
3028 case 3:
Andy McFadden96516932009-10-28 17:39:02 -07003029 dvmDexChangeDex2(meth->clazz->pDvmDex, newInsns+2, OP_NOP);
3030 //newInsns[2] = OP_NOP;
Andy McFaddenb51ea112009-05-08 16:50:17 -07003031 break;
3032 default:
3033 /* whoops */
3034 LOGE("ERROR: stomped a %d-unit instruction with a verifier error\n",
3035 width);
3036 dvmAbort();
3037 }
3038
3039 /* encode the opcode, with the failure code in the high byte */
Andy McFadden96516932009-10-28 17:39:02 -07003040 u2 newVal = OP_THROW_VERIFICATION_ERROR |
Andy McFaddenaf0e8382009-08-28 10:38:37 -07003041 (failure << 8) | (refType << (8 + kVerifyErrorRefTypeShift));
Andy McFadden96516932009-10-28 17:39:02 -07003042 //newInsns[0] = newVal;
3043 dvmDexChangeDex2(meth->clazz->pDvmDex, newInsns, newVal);
Andy McFaddenb51ea112009-05-08 16:50:17 -07003044
3045 result = true;
3046
3047bail:
Andy McFaddenb51ea112009-05-08 16:50:17 -07003048 return result;
3049}
3050
3051
3052/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003053 * ===========================================================================
3054 * Entry point and driver loop
3055 * ===========================================================================
3056 */
3057
3058/*
3059 * Entry point for the detailed code-flow analysis.
3060 */
Andy McFadden228a6b02010-05-04 15:02:32 -07003061bool dvmVerifyCodeFlow(VerifierData* vdata)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003062{
3063 bool result = false;
Andy McFadden228a6b02010-05-04 15:02:32 -07003064 const Method* meth = vdata->method;
3065 const int insnsSize = vdata->insnsSize;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003066 const bool generateRegisterMap = gDvm.generateRegisterMaps;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003067 RegisterTable regTable;
3068
3069 memset(&regTable, 0, sizeof(regTable));
3070
3071#ifndef NDEBUG
3072 checkMergeTab(); // only need to do this if table gets updated
3073#endif
3074
3075 /*
3076 * We rely on these for verification of const-class, const-string,
3077 * and throw instructions. Make sure we have them.
3078 */
3079 if (gDvm.classJavaLangClass == NULL)
3080 gDvm.classJavaLangClass =
3081 dvmFindSystemClassNoInit("Ljava/lang/Class;");
3082 if (gDvm.classJavaLangString == NULL)
3083 gDvm.classJavaLangString =
3084 dvmFindSystemClassNoInit("Ljava/lang/String;");
Andy McFadden686e1e22009-05-26 16:56:30 -07003085 if (gDvm.classJavaLangThrowable == NULL) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003086 gDvm.classJavaLangThrowable =
3087 dvmFindSystemClassNoInit("Ljava/lang/Throwable;");
Andy McFadden686e1e22009-05-26 16:56:30 -07003088 gDvm.offJavaLangThrowable_cause =
3089 dvmFindFieldOffset(gDvm.classJavaLangThrowable,
3090 "cause", "Ljava/lang/Throwable;");
3091 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003092 if (gDvm.classJavaLangObject == NULL)
3093 gDvm.classJavaLangObject =
3094 dvmFindSystemClassNoInit("Ljava/lang/Object;");
3095
Andy McFadden6be954f2010-06-14 13:37:49 -07003096 if (meth->registersSize * insnsSize > 4*1024*1024) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003097 /* should probably base this on actual memory requirements */
3098 LOG_VFY_METH(meth,
3099 "VFY: arbitrarily rejecting large method (regs=%d count=%d)\n",
3100 meth->registersSize, insnsSize);
3101 goto bail;
3102 }
3103
3104 /*
3105 * Create register lists, and initialize them to "Unknown". If we're
3106 * also going to create the register map, we need to retain the
3107 * register lists for a larger set of addresses.
3108 */
Andy McFadden228a6b02010-05-04 15:02:32 -07003109 if (!initRegisterTable(meth, vdata->insnFlags, &regTable,
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003110 generateRegisterMap ? kTrackRegsGcPoints : kTrackRegsBranches))
3111 goto bail;
3112
Andy McFadden228a6b02010-05-04 15:02:32 -07003113 vdata->addrRegs = NULL; /* don't set this until we need it */
3114
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003115 /*
3116 * Initialize the types of the registers that correspond to the
3117 * method arguments. We can determine this from the method signature.
3118 */
Andy McFadden228a6b02010-05-04 15:02:32 -07003119 if (!setTypesFromSignature(meth, regTable.addrRegs[0], vdata->uninitMap))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003120 goto bail;
3121
3122 /*
3123 * Run the verifier.
3124 */
Andy McFadden228a6b02010-05-04 15:02:32 -07003125 if (!doCodeVerification(meth, vdata->insnFlags, &regTable, vdata->uninitMap))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003126 goto bail;
3127
3128 /*
3129 * Generate a register map.
3130 */
3131 if (generateRegisterMap) {
Andy McFadden228a6b02010-05-04 15:02:32 -07003132 vdata->addrRegs = regTable.addrRegs;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003133
Andy McFadden228a6b02010-05-04 15:02:32 -07003134 RegisterMap* pMap = dvmGenerateRegisterMapV(vdata);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003135 if (pMap != NULL) {
3136 /*
3137 * Tuck it into the Method struct. It will either get used
3138 * directly or, if we're in dexopt, will be packed up and
3139 * appended to the DEX file.
3140 */
3141 dvmSetRegisterMap((Method*)meth, pMap);
3142 }
3143 }
3144
3145 /*
3146 * Success.
3147 */
3148 result = true;
3149
3150bail:
3151 free(regTable.addrRegs);
3152 free(regTable.regAlloc);
3153 return result;
3154}
3155
3156/*
3157 * Grind through the instructions.
3158 *
3159 * The basic strategy is as outlined in v3 4.11.1.2: set the "changed" bit
3160 * on the first instruction, process it (setting additional "changed" bits),
3161 * and repeat until there are no more.
3162 *
3163 * v3 4.11.1.1
3164 * - (N/A) operand stack is always the same size
3165 * - operand stack [registers] contain the correct types of values
3166 * - local variables [registers] contain the correct types of values
3167 * - methods are invoked with the appropriate arguments
3168 * - fields are assigned using values of appropriate types
3169 * - opcodes have the correct type values in operand registers
3170 * - there is never an uninitialized class instance in a local variable in
3171 * code protected by an exception handler (operand stack is okay, because
3172 * the operand stack is discarded when an exception is thrown) [can't
3173 * know what's a local var w/o the debug info -- should fall out of
3174 * register typing]
3175 *
3176 * v3 4.11.1.2
3177 * - execution cannot fall off the end of the code
3178 *
3179 * (We also do many of the items described in the "static checks" sections,
3180 * because it's easier to do them here.)
3181 *
3182 * We need an array of RegType values, one per register, for every
3183 * instruction. In theory this could become quite large -- up to several
3184 * megabytes for a monster function. For self-preservation we reject
3185 * anything that requires more than a certain amount of memory. (Typical
3186 * "large" should be on the order of 4K code units * 8 registers.) This
3187 * will likely have to be adjusted.
3188 *
3189 *
3190 * The spec forbids backward branches when there's an uninitialized reference
3191 * in a register. The idea is to prevent something like this:
3192 * loop:
3193 * move r1, r0
3194 * new-instance r0, MyClass
3195 * ...
3196 * if-eq rN, loop // once
3197 * initialize r0
3198 *
3199 * This leaves us with two different instances, both allocated by the
3200 * same instruction, but only one is initialized. The scheme outlined in
3201 * v3 4.11.1.4 wouldn't catch this, so they work around it by preventing
3202 * backward branches. We achieve identical results without restricting
3203 * code reordering by specifying that you can't execute the new-instance
3204 * instruction if a register contains an uninitialized instance created
3205 * by that same instrutcion.
3206 */
Andy McFadden228a6b02010-05-04 15:02:32 -07003207static bool doCodeVerification(const Method* meth, InsnFlags* insnFlags,
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003208 RegisterTable* regTable, UninitInstanceMap* uninitMap)
3209{
3210 const int insnsSize = dvmGetMethodInsnsSize(meth);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003211 RegType workRegs[meth->registersSize + kExtraRegs];
3212 bool result = false;
3213 bool debugVerbose = false;
Carl Shapiroe3c01da2010-05-20 22:54:18 -07003214 int insnIdx, startGuess;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003215
3216 /*
3217 * Begin by marking the first instruction as "changed".
3218 */
3219 dvmInsnSetChanged(insnFlags, 0, true);
3220
3221 if (doVerboseLogging(meth)) {
3222 IF_LOGI() {
3223 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
3224 LOGI("Now verifying: %s.%s %s (ins=%d regs=%d)\n",
3225 meth->clazz->descriptor, meth->name, desc,
3226 meth->insSize, meth->registersSize);
3227 LOGI(" ------ [0 4 8 12 16 20 24 28 32 36\n");
3228 free(desc);
3229 }
3230 debugVerbose = true;
3231 gDebugVerbose = true;
3232 } else {
3233 gDebugVerbose = false;
3234 }
3235
3236 startGuess = 0;
3237
3238 /*
3239 * Continue until no instructions are marked "changed".
3240 */
3241 while (true) {
3242 /*
3243 * Find the first marked one. Use "startGuess" as a way to find
3244 * one quickly.
3245 */
3246 for (insnIdx = startGuess; insnIdx < insnsSize; insnIdx++) {
3247 if (dvmInsnIsChanged(insnFlags, insnIdx))
3248 break;
3249 }
3250
3251 if (insnIdx == insnsSize) {
3252 if (startGuess != 0) {
3253 /* try again, starting from the top */
3254 startGuess = 0;
3255 continue;
3256 } else {
3257 /* all flags are clear */
3258 break;
3259 }
3260 }
3261
3262 /*
3263 * We carry the working set of registers from instruction to
3264 * instruction. If this address can be the target of a branch
3265 * (or throw) instruction, or if we're skipping around chasing
3266 * "changed" flags, we need to load the set of registers from
3267 * the table.
3268 *
3269 * Because we always prefer to continue on to the next instruction,
3270 * we should never have a situation where we have a stray
3271 * "changed" flag set on an instruction that isn't a branch target.
3272 */
3273 if (dvmInsnIsBranchTarget(insnFlags, insnIdx)) {
3274 RegType* insnRegs = getRegisterLine(regTable, insnIdx);
3275 assert(insnRegs != NULL);
3276 copyRegisters(workRegs, insnRegs, meth->registersSize + kExtraRegs);
3277
3278 if (debugVerbose) {
3279 dumpRegTypes(meth, insnFlags, workRegs, insnIdx, NULL,uninitMap,
3280 SHOW_REG_DETAILS);
3281 }
3282
3283 } else {
3284 if (debugVerbose) {
3285 dumpRegTypes(meth, insnFlags, workRegs, insnIdx, NULL,uninitMap,
3286 SHOW_REG_DETAILS);
3287 }
3288
3289#ifndef NDEBUG
3290 /*
3291 * Sanity check: retrieve the stored register line (assuming
3292 * a full table) and make sure it actually matches.
3293 */
3294 RegType* insnRegs = getRegisterLine(regTable, insnIdx);
3295 if (insnRegs != NULL &&
3296 compareRegisters(workRegs, insnRegs,
3297 meth->registersSize + kExtraRegs) != 0)
3298 {
3299 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
3300 LOG_VFY("HUH? workRegs diverged in %s.%s %s\n",
3301 meth->clazz->descriptor, meth->name, desc);
3302 free(desc);
3303 dumpRegTypes(meth, insnFlags, workRegs, 0, "work",
3304 uninitMap, DRT_SHOW_REF_TYPES | DRT_SHOW_LOCALS);
3305 dumpRegTypes(meth, insnFlags, insnRegs, 0, "insn",
3306 uninitMap, DRT_SHOW_REF_TYPES | DRT_SHOW_LOCALS);
3307 }
3308#endif
3309 }
3310
3311 //LOGI("process %s.%s %s %d\n",
3312 // meth->clazz->descriptor, meth->name, meth->descriptor, insnIdx);
3313 if (!verifyInstruction(meth, insnFlags, regTable, workRegs, insnIdx,
3314 uninitMap, &startGuess))
3315 {
3316 //LOGD("+++ %s bailing at %d\n", meth->name, insnIdx);
3317 goto bail;
3318 }
3319
3320#if 0
3321 {
3322 static const int gcMask = kInstrCanBranch | kInstrCanSwitch |
3323 kInstrCanThrow | kInstrCanReturn;
3324 OpCode opCode = *(meth->insns + insnIdx) & 0xff;
3325 int flags = dexGetInstrFlags(gDvm.instrFlags, opCode);
3326
3327 /* 8, 16, 32, or 32*n -bit regs */
3328 int regWidth = (meth->registersSize + 7) / 8;
3329 if (regWidth == 3)
3330 regWidth = 4;
3331 if (regWidth > 4) {
3332 regWidth = ((regWidth + 3) / 4) * 4;
3333 if (false) {
3334 LOGW("WOW: %d regs -> %d %s.%s\n",
3335 meth->registersSize, regWidth,
3336 meth->clazz->descriptor, meth->name);
3337 //x = true;
3338 }
3339 }
3340
3341 if ((flags & gcMask) != 0) {
3342 /* this is a potential GC point */
3343 gDvm__gcInstr++;
3344
3345 if (insnsSize < 256)
3346 gDvm__gcData += 1;
3347 else
3348 gDvm__gcData += 2;
3349 gDvm__gcData += regWidth;
3350 }
3351 gDvm__gcSimpleData += regWidth;
3352
3353 gDvm__totalInstr++;
3354 }
3355#endif
3356
3357 /*
3358 * Clear "changed" and mark as visited.
3359 */
3360 dvmInsnSetVisited(insnFlags, insnIdx, true);
3361 dvmInsnSetChanged(insnFlags, insnIdx, false);
3362 }
3363
Andy McFaddenb51ea112009-05-08 16:50:17 -07003364 if (DEAD_CODE_SCAN && !IS_METHOD_FLAG_SET(meth, METHOD_ISWRITABLE)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003365 /*
Andy McFaddenb51ea112009-05-08 16:50:17 -07003366 * Scan for dead code. There's nothing "evil" about dead code
3367 * (besides the wasted space), but it indicates a flaw somewhere
3368 * down the line, possibly in the verifier.
3369 *
3370 * If we've rewritten "always throw" instructions into the stream,
3371 * we are almost certainly going to have some dead code.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003372 */
3373 int deadStart = -1;
3374 for (insnIdx = 0; insnIdx < insnsSize;
3375 insnIdx += dvmInsnGetWidth(insnFlags, insnIdx))
3376 {
3377 /*
3378 * Switch-statement data doesn't get "visited" by scanner. It
3379 * may or may not be preceded by a padding NOP.
3380 */
3381 int instr = meth->insns[insnIdx];
3382 if (instr == kPackedSwitchSignature ||
3383 instr == kSparseSwitchSignature ||
3384 instr == kArrayDataSignature ||
3385 (instr == OP_NOP &&
3386 (meth->insns[insnIdx+1] == kPackedSwitchSignature ||
3387 meth->insns[insnIdx+1] == kSparseSwitchSignature ||
3388 meth->insns[insnIdx+1] == kArrayDataSignature)))
3389 {
3390 dvmInsnSetVisited(insnFlags, insnIdx, true);
3391 }
3392
3393 if (!dvmInsnIsVisited(insnFlags, insnIdx)) {
3394 if (deadStart < 0)
3395 deadStart = insnIdx;
3396 } else if (deadStart >= 0) {
3397 IF_LOGD() {
3398 char* desc =
3399 dexProtoCopyMethodDescriptor(&meth->prototype);
3400 LOGD("VFY: dead code 0x%04x-%04x in %s.%s %s\n",
3401 deadStart, insnIdx-1,
3402 meth->clazz->descriptor, meth->name, desc);
3403 free(desc);
3404 }
3405
3406 deadStart = -1;
3407 }
3408 }
3409 if (deadStart >= 0) {
3410 IF_LOGD() {
3411 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
3412 LOGD("VFY: dead code 0x%04x-%04x in %s.%s %s\n",
3413 deadStart, insnIdx-1,
3414 meth->clazz->descriptor, meth->name, desc);
3415 free(desc);
3416 }
3417 }
3418 }
3419
3420 result = true;
3421
3422bail:
3423 return result;
3424}
3425
3426
3427/*
3428 * Perform verification for a single instruction.
3429 *
3430 * This requires fully decoding the instruction to determine the effect
3431 * it has on registers.
3432 *
3433 * Finds zero or more following instructions and sets the "changed" flag
3434 * if execution at that point needs to be (re-)evaluated. Register changes
3435 * are merged into "regTypes" at the target addresses. Does not set or
3436 * clear any other flags in "insnFlags".
Andy McFaddenb51ea112009-05-08 16:50:17 -07003437 *
3438 * This may alter meth->insns if we need to replace an instruction with
3439 * throw-verification-error.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003440 */
Andy McFadden228a6b02010-05-04 15:02:32 -07003441static bool verifyInstruction(const Method* meth, InsnFlags* insnFlags,
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003442 RegisterTable* regTable, RegType* workRegs, int insnIdx,
3443 UninitInstanceMap* uninitMap, int* pStartGuess)
3444{
3445 const int insnsSize = dvmGetMethodInsnsSize(meth);
3446 const u2* insns = meth->insns + insnIdx;
3447 bool result = false;
3448
3449 /*
3450 * Once we finish decoding the instruction, we need to figure out where
3451 * we can go from here. There are three possible ways to transfer
3452 * control to another statement:
3453 *
3454 * (1) Continue to the next instruction. Applies to all but
3455 * unconditional branches, method returns, and exception throws.
3456 * (2) Branch to one or more possible locations. Applies to branches
3457 * and switch statements.
3458 * (3) Exception handlers. Applies to any instruction that can
3459 * throw an exception that is handled by an encompassing "try"
Andy McFadden228a6b02010-05-04 15:02:32 -07003460 * block.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003461 *
3462 * We can also return, in which case there is no successor instruction
3463 * from this point.
3464 *
Andy McFadden228a6b02010-05-04 15:02:32 -07003465 * The behavior can be determined from the InstructionFlags.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003466 */
3467
3468 const DexFile* pDexFile = meth->clazz->pDvmDex->pDexFile;
3469 RegType entryRegs[meth->registersSize + kExtraRegs];
3470 ClassObject* resClass;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003471 int branchTarget = 0;
3472 const int insnRegCount = meth->registersSize;
3473 RegType tmpType;
3474 DecodedInstruction decInsn;
3475 bool justSetResult = false;
Andy McFadden62a75162009-04-17 17:23:37 -07003476 VerifyError failure = VERIFY_ERROR_NONE;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003477
3478#ifndef NDEBUG
3479 memset(&decInsn, 0x81, sizeof(decInsn));
3480#endif
3481 dexDecodeInstruction(gDvm.instrFormat, insns, &decInsn);
3482
Andy McFaddenb51ea112009-05-08 16:50:17 -07003483 int nextFlags = dexGetInstrFlags(gDvm.instrFlags, decInsn.opCode);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003484
3485 /*
3486 * Make a copy of the previous register state. If the instruction
3487 * throws an exception, we merge *this* into the destination rather
3488 * than workRegs, because we don't want the result from the "successful"
3489 * code path (e.g. a check-cast that "improves" a type) to be visible
3490 * to the exception handler.
3491 */
3492 if ((nextFlags & kInstrCanThrow) != 0 && dvmInsnIsInTry(insnFlags, insnIdx))
3493 {
3494 copyRegisters(entryRegs, workRegs, meth->registersSize + kExtraRegs);
3495 } else {
3496#ifndef NDEBUG
3497 memset(entryRegs, 0xdd,
3498 (meth->registersSize + kExtraRegs) * sizeof(RegType));
3499#endif
3500 }
3501
3502 switch (decInsn.opCode) {
3503 case OP_NOP:
3504 /*
3505 * A "pure" NOP has no effect on anything. Data tables start with
3506 * a signature that looks like a NOP; if we see one of these in
3507 * the course of executing code then we have a problem.
3508 */
3509 if (decInsn.vA != 0) {
3510 LOG_VFY("VFY: encountered data table in instruction stream\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003511 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003512 }
3513 break;
3514
3515 case OP_MOVE:
3516 case OP_MOVE_FROM16:
3517 case OP_MOVE_16:
3518 copyRegister1(workRegs, insnRegCount, decInsn.vA, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07003519 kTypeCategory1nr, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003520 break;
3521 case OP_MOVE_WIDE:
3522 case OP_MOVE_WIDE_FROM16:
3523 case OP_MOVE_WIDE_16:
Andy McFadden62a75162009-04-17 17:23:37 -07003524 copyRegister2(workRegs, insnRegCount, decInsn.vA, decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003525 break;
3526 case OP_MOVE_OBJECT:
3527 case OP_MOVE_OBJECT_FROM16:
3528 case OP_MOVE_OBJECT_16:
3529 copyRegister1(workRegs, insnRegCount, decInsn.vA, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07003530 kTypeCategoryRef, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003531 break;
3532
3533 /*
3534 * The move-result instructions copy data out of a "pseudo-register"
3535 * with the results from the last method invocation. In practice we
3536 * might want to hold the result in an actual CPU register, so the
3537 * Dalvik spec requires that these only appear immediately after an
3538 * invoke or filled-new-array.
3539 *
3540 * These calls invalidate the "result" register. (This is now
3541 * redundant with the reset done below, but it can make the debug info
3542 * easier to read in some cases.)
3543 */
3544 case OP_MOVE_RESULT:
3545 copyResultRegister1(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003546 kTypeCategory1nr, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003547 break;
3548 case OP_MOVE_RESULT_WIDE:
Andy McFadden62a75162009-04-17 17:23:37 -07003549 copyResultRegister2(workRegs, insnRegCount, decInsn.vA, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003550 break;
3551 case OP_MOVE_RESULT_OBJECT:
3552 copyResultRegister1(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003553 kTypeCategoryRef, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003554 break;
3555
3556 case OP_MOVE_EXCEPTION:
3557 /*
3558 * This statement can only appear as the first instruction in an
3559 * exception handler (though not all exception handlers need to
3560 * have one of these). We verify that as part of extracting the
3561 * exception type from the catch block list.
3562 *
3563 * "resClass" will hold the closest common superclass of all
3564 * exceptions that can be handled here.
3565 */
Andy McFadden62a75162009-04-17 17:23:37 -07003566 resClass = getCaughtExceptionType(meth, insnIdx, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003567 if (resClass == NULL) {
Andy McFadden62a75162009-04-17 17:23:37 -07003568 assert(!VERIFY_OK(failure));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003569 } else {
3570 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003571 regTypeFromClass(resClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003572 }
3573 break;
3574
3575 case OP_RETURN_VOID:
Andy McFadden62a75162009-04-17 17:23:37 -07003576 if (!checkConstructorReturn(meth, workRegs, insnRegCount)) {
3577 failure = VERIFY_ERROR_GENERIC;
3578 } else if (getMethodReturnType(meth) != kRegTypeUnknown) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003579 LOG_VFY("VFY: return-void not expected\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003580 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003581 }
3582 break;
3583 case OP_RETURN:
Andy McFadden62a75162009-04-17 17:23:37 -07003584 if (!checkConstructorReturn(meth, workRegs, insnRegCount)) {
3585 failure = VERIFY_ERROR_GENERIC;
3586 } else {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003587 /* check the method signature */
3588 RegType returnType = getMethodReturnType(meth);
Andy McFadden62a75162009-04-17 17:23:37 -07003589 checkTypeCategory(returnType, kTypeCategory1nr, &failure);
3590 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003591 LOG_VFY("VFY: return-32 not expected\n");
3592
3593 /* check the register contents */
3594 returnType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003595 &failure);
3596 checkTypeCategory(returnType, kTypeCategory1nr, &failure);
3597 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003598 LOG_VFY("VFY: return-32 on invalid register v%d\n", decInsn.vA);
3599 }
3600 break;
3601 case OP_RETURN_WIDE:
Andy McFadden62a75162009-04-17 17:23:37 -07003602 if (!checkConstructorReturn(meth, workRegs, insnRegCount)) {
3603 failure = VERIFY_ERROR_GENERIC;
3604 } else {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003605 RegType returnType, returnTypeHi;
3606
3607 /* check the method signature */
3608 returnType = getMethodReturnType(meth);
Andy McFadden62a75162009-04-17 17:23:37 -07003609 checkTypeCategory(returnType, kTypeCategory2, &failure);
3610 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003611 LOG_VFY("VFY: return-wide not expected\n");
3612
3613 /* check the register contents */
3614 returnType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003615 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003616 returnTypeHi = getRegisterType(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003617 decInsn.vA +1, &failure);
3618 if (VERIFY_OK(failure)) {
3619 checkTypeCategory(returnType, kTypeCategory2, &failure);
3620 checkWidePair(returnType, returnTypeHi, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003621 }
Andy McFadden62a75162009-04-17 17:23:37 -07003622 if (!VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003623 LOG_VFY("VFY: return-wide on invalid register pair v%d\n",
3624 decInsn.vA);
3625 }
3626 }
3627 break;
3628 case OP_RETURN_OBJECT:
Andy McFadden62a75162009-04-17 17:23:37 -07003629 if (!checkConstructorReturn(meth, workRegs, insnRegCount)) {
3630 failure = VERIFY_ERROR_GENERIC;
3631 } else {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003632 RegType returnType = getMethodReturnType(meth);
Andy McFadden62a75162009-04-17 17:23:37 -07003633 checkTypeCategory(returnType, kTypeCategoryRef, &failure);
3634 if (!VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003635 LOG_VFY("VFY: return-object not expected\n");
3636 break;
3637 }
3638
3639 /* returnType is the *expected* return type, not register value */
3640 assert(returnType != kRegTypeZero);
3641 assert(!regTypeIsUninitReference(returnType));
3642
3643 /*
3644 * Verify that the reference in vAA is an instance of the type
3645 * in "returnType". The Zero type is allowed here. If the
3646 * method is declared to return an interface, then any
3647 * initialized reference is acceptable.
3648 *
3649 * Note getClassFromRegister fails if the register holds an
3650 * uninitialized reference, so we do not allow them to be
3651 * returned.
3652 */
3653 ClassObject* declClass;
3654
3655 declClass = regTypeInitializedReferenceToClass(returnType);
3656 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003657 decInsn.vA, &failure);
3658 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003659 break;
3660 if (resClass != NULL) {
3661 if (!dvmIsInterfaceClass(declClass) &&
3662 !dvmInstanceof(resClass, declClass))
3663 {
Andy McFadden86c86432009-05-27 14:40:12 -07003664 LOG_VFY("VFY: returning %s (cl=%p), declared %s (cl=%p)\n",
3665 resClass->descriptor, resClass->classLoader,
3666 declClass->descriptor, declClass->classLoader);
Andy McFadden62a75162009-04-17 17:23:37 -07003667 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003668 break;
3669 }
3670 }
3671 }
3672 break;
3673
3674 case OP_CONST_4:
3675 case OP_CONST_16:
3676 case OP_CONST:
3677 /* could be boolean, int, float, or a null reference */
3678 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003679 dvmDetermineCat1Const((s4)decInsn.vB), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003680 break;
3681 case OP_CONST_HIGH16:
3682 /* could be boolean, int, float, or a null reference */
3683 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003684 dvmDetermineCat1Const((s4) decInsn.vB << 16), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003685 break;
3686 case OP_CONST_WIDE_16:
3687 case OP_CONST_WIDE_32:
3688 case OP_CONST_WIDE:
3689 case OP_CONST_WIDE_HIGH16:
3690 /* could be long or double; default to long and allow conversion */
3691 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003692 kRegTypeLongLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003693 break;
3694 case OP_CONST_STRING:
3695 case OP_CONST_STRING_JUMBO:
3696 assert(gDvm.classJavaLangString != NULL);
3697 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003698 regTypeFromClass(gDvm.classJavaLangString), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003699 break;
3700 case OP_CONST_CLASS:
3701 assert(gDvm.classJavaLangClass != NULL);
3702 /* make sure we can resolve the class; access check is important */
Andy McFadden62a75162009-04-17 17:23:37 -07003703 resClass = dvmOptResolveClass(meth->clazz, decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003704 if (resClass == NULL) {
3705 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vB);
3706 dvmLogUnableToResolveClass(badClassDesc, meth);
3707 LOG_VFY("VFY: unable to resolve const-class %d (%s) in %s\n",
3708 decInsn.vB, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003709 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003710 } else {
3711 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003712 regTypeFromClass(gDvm.classJavaLangClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003713 }
3714 break;
3715
3716 case OP_MONITOR_ENTER:
3717 case OP_MONITOR_EXIT:
Andy McFadden62a75162009-04-17 17:23:37 -07003718 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
3719 if (VERIFY_OK(failure)) {
3720 if (!regTypeIsReference(tmpType)) {
3721 LOG_VFY("VFY: monitor op on non-object\n");
3722 failure = VERIFY_ERROR_GENERIC;
3723 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003724 }
3725 break;
3726
3727 case OP_CHECK_CAST:
3728 /*
3729 * If this instruction succeeds, we will promote register vA to
3730 * the type in vB. (This could be a demotion -- not expected, so
3731 * we don't try to address it.)
3732 *
3733 * If it fails, an exception is thrown, which we deal with later
3734 * by ignoring the update to decInsn.vA when branching to a handler.
3735 */
Andy McFadden62a75162009-04-17 17:23:37 -07003736 resClass = dvmOptResolveClass(meth->clazz, decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003737 if (resClass == NULL) {
3738 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vB);
3739 dvmLogUnableToResolveClass(badClassDesc, meth);
3740 LOG_VFY("VFY: unable to resolve check-cast %d (%s) in %s\n",
3741 decInsn.vB, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003742 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003743 } else {
3744 RegType origType;
3745
3746 origType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003747 &failure);
3748 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003749 break;
3750 if (!regTypeIsReference(origType)) {
3751 LOG_VFY("VFY: check-cast on non-reference in v%u\n",decInsn.vA);
Andy McFadden62a75162009-04-17 17:23:37 -07003752 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003753 break;
3754 }
3755 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003756 regTypeFromClass(resClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003757 }
3758 break;
3759 case OP_INSTANCE_OF:
3760 /* make sure we're checking a reference type */
Andy McFadden62a75162009-04-17 17:23:37 -07003761 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vB, &failure);
3762 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003763 break;
3764 if (!regTypeIsReference(tmpType)) {
3765 LOG_VFY("VFY: vB not a reference (%d)\n", tmpType);
Andy McFadden62a75162009-04-17 17:23:37 -07003766 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003767 break;
3768 }
3769
3770 /* make sure we can resolve the class; access check is important */
Andy McFadden62a75162009-04-17 17:23:37 -07003771 resClass = dvmOptResolveClass(meth->clazz, decInsn.vC, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003772 if (resClass == NULL) {
3773 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vC);
3774 dvmLogUnableToResolveClass(badClassDesc, meth);
3775 LOG_VFY("VFY: unable to resolve instanceof %d (%s) in %s\n",
3776 decInsn.vC, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003777 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003778 } else {
3779 /* result is boolean */
3780 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003781 kRegTypeBoolean, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003782 }
3783 break;
3784
3785 case OP_ARRAY_LENGTH:
3786 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003787 decInsn.vB, &failure);
3788 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003789 break;
3790 if (resClass != NULL && !dvmIsArrayClass(resClass)) {
3791 LOG_VFY("VFY: array-length on non-array\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003792 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003793 break;
3794 }
3795 setRegisterType(workRegs, insnRegCount, decInsn.vA, kRegTypeInteger,
Andy McFadden62a75162009-04-17 17:23:37 -07003796 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003797 break;
3798
3799 case OP_NEW_INSTANCE:
Andy McFadden62a75162009-04-17 17:23:37 -07003800 resClass = dvmOptResolveClass(meth->clazz, decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003801 if (resClass == NULL) {
3802 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vB);
3803 dvmLogUnableToResolveClass(badClassDesc, meth);
3804 LOG_VFY("VFY: unable to resolve new-instance %d (%s) in %s\n",
3805 decInsn.vB, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003806 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003807 } else {
3808 RegType uninitType;
3809
Andy McFaddenb51ea112009-05-08 16:50:17 -07003810 /* can't create an instance of an interface or abstract class */
3811 if (dvmIsAbstractClass(resClass) || dvmIsInterfaceClass(resClass)) {
3812 LOG_VFY("VFY: new-instance on interface or abstract class %s\n",
3813 resClass->descriptor);
3814 failure = VERIFY_ERROR_INSTANTIATION;
3815 break;
3816 }
3817
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003818 /* add resolved class to uninit map if not already there */
3819 int uidx = dvmSetUninitInstance(uninitMap, insnIdx, resClass);
3820 assert(uidx >= 0);
3821 uninitType = regTypeFromUninitIndex(uidx);
3822
3823 /*
3824 * Any registers holding previous allocations from this address
3825 * that have not yet been initialized must be marked invalid.
3826 */
3827 markUninitRefsAsInvalid(workRegs, insnRegCount, uninitMap,
3828 uninitType);
3829
3830 /* add the new uninitialized reference to the register ste */
3831 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003832 uninitType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003833 }
3834 break;
3835 case OP_NEW_ARRAY:
Andy McFadden62a75162009-04-17 17:23:37 -07003836 resClass = dvmOptResolveClass(meth->clazz, decInsn.vC, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003837 if (resClass == NULL) {
3838 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vC);
3839 dvmLogUnableToResolveClass(badClassDesc, meth);
3840 LOG_VFY("VFY: unable to resolve new-array %d (%s) in %s\n",
3841 decInsn.vC, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003842 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003843 } else if (!dvmIsArrayClass(resClass)) {
3844 LOG_VFY("VFY: new-array on non-array class\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003845 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003846 } else {
3847 /* make sure "size" register is valid type */
3848 verifyRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07003849 kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003850 /* set register type to array class */
3851 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003852 regTypeFromClass(resClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003853 }
3854 break;
3855 case OP_FILLED_NEW_ARRAY:
3856 case OP_FILLED_NEW_ARRAY_RANGE:
Andy McFadden62a75162009-04-17 17:23:37 -07003857 resClass = dvmOptResolveClass(meth->clazz, decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003858 if (resClass == NULL) {
3859 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vB);
3860 dvmLogUnableToResolveClass(badClassDesc, meth);
3861 LOG_VFY("VFY: unable to resolve filled-array %d (%s) in %s\n",
3862 decInsn.vB, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003863 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003864 } else if (!dvmIsArrayClass(resClass)) {
3865 LOG_VFY("VFY: filled-new-array on non-array class\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003866 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003867 } else {
3868 bool isRange = (decInsn.opCode == OP_FILLED_NEW_ARRAY_RANGE);
3869
3870 /* check the arguments to the instruction */
3871 verifyFilledNewArrayRegs(meth, workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07003872 resClass, isRange, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003873 /* filled-array result goes into "result" register */
3874 setResultRegisterType(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003875 regTypeFromClass(resClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003876 justSetResult = true;
3877 }
3878 break;
3879
3880 case OP_CMPL_FLOAT:
3881 case OP_CMPG_FLOAT:
3882 verifyRegisterType(workRegs, insnRegCount, decInsn.vB, kRegTypeFloat,
Andy McFadden62a75162009-04-17 17:23:37 -07003883 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003884 verifyRegisterType(workRegs, insnRegCount, decInsn.vC, kRegTypeFloat,
Andy McFadden62a75162009-04-17 17:23:37 -07003885 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003886 setRegisterType(workRegs, insnRegCount, decInsn.vA, kRegTypeBoolean,
Andy McFadden62a75162009-04-17 17:23:37 -07003887 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003888 break;
3889 case OP_CMPL_DOUBLE:
3890 case OP_CMPG_DOUBLE:
3891 verifyRegisterType(workRegs, insnRegCount, decInsn.vB, kRegTypeDoubleLo,
Andy McFadden62a75162009-04-17 17:23:37 -07003892 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003893 verifyRegisterType(workRegs, insnRegCount, decInsn.vC, kRegTypeDoubleLo,
Andy McFadden62a75162009-04-17 17:23:37 -07003894 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003895 setRegisterType(workRegs, insnRegCount, decInsn.vA, kRegTypeBoolean,
Andy McFadden62a75162009-04-17 17:23:37 -07003896 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003897 break;
3898 case OP_CMP_LONG:
3899 verifyRegisterType(workRegs, insnRegCount, decInsn.vB, kRegTypeLongLo,
Andy McFadden62a75162009-04-17 17:23:37 -07003900 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003901 verifyRegisterType(workRegs, insnRegCount, decInsn.vC, kRegTypeLongLo,
Andy McFadden62a75162009-04-17 17:23:37 -07003902 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003903 setRegisterType(workRegs, insnRegCount, decInsn.vA, kRegTypeBoolean,
Andy McFadden62a75162009-04-17 17:23:37 -07003904 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003905 break;
3906
3907 case OP_THROW:
3908 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003909 decInsn.vA, &failure);
3910 if (VERIFY_OK(failure) && resClass != NULL) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003911 if (!dvmInstanceof(resClass, gDvm.classJavaLangThrowable)) {
3912 LOG_VFY("VFY: thrown class %s not instanceof Throwable\n",
3913 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003914 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003915 }
3916 }
3917 break;
3918
3919 case OP_GOTO:
3920 case OP_GOTO_16:
3921 case OP_GOTO_32:
3922 /* no effect on or use of registers */
3923 break;
3924
3925 case OP_PACKED_SWITCH:
3926 case OP_SPARSE_SWITCH:
3927 /* verify that vAA is an integer, or can be converted to one */
3928 verifyRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003929 kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003930 break;
3931
3932 case OP_FILL_ARRAY_DATA:
3933 {
3934 RegType valueType;
3935 const u2 *arrayData;
3936 u2 elemWidth;
3937
3938 /* Similar to the verification done for APUT */
3939 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003940 decInsn.vA, &failure);
3941 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003942 break;
3943
3944 /* resClass can be null if the reg type is Zero */
3945 if (resClass == NULL)
3946 break;
3947
3948 if (!dvmIsArrayClass(resClass) || resClass->arrayDim != 1 ||
3949 resClass->elementClass->primitiveType == PRIM_NOT ||
3950 resClass->elementClass->primitiveType == PRIM_VOID)
3951 {
3952 LOG_VFY("VFY: invalid fill-array-data on %s\n",
3953 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003954 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003955 break;
3956 }
3957
3958 valueType = primitiveTypeToRegType(
3959 resClass->elementClass->primitiveType);
3960 assert(valueType != kRegTypeUnknown);
3961
3962 /*
3963 * Now verify if the element width in the table matches the element
3964 * width declared in the array
3965 */
3966 arrayData = insns + (insns[1] | (((s4)insns[2]) << 16));
3967 if (arrayData[0] != kArrayDataSignature) {
3968 LOG_VFY("VFY: invalid magic for array-data\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003969 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003970 break;
3971 }
3972
3973 switch (resClass->elementClass->primitiveType) {
3974 case PRIM_BOOLEAN:
3975 case PRIM_BYTE:
3976 elemWidth = 1;
3977 break;
3978 case PRIM_CHAR:
3979 case PRIM_SHORT:
3980 elemWidth = 2;
3981 break;
3982 case PRIM_FLOAT:
3983 case PRIM_INT:
3984 elemWidth = 4;
3985 break;
3986 case PRIM_DOUBLE:
3987 case PRIM_LONG:
3988 elemWidth = 8;
3989 break;
3990 default:
3991 elemWidth = 0;
3992 break;
3993 }
3994
3995 /*
3996 * Since we don't compress the data in Dex, expect to see equal
3997 * width of data stored in the table and expected from the array
3998 * class.
3999 */
4000 if (arrayData[1] != elemWidth) {
4001 LOG_VFY("VFY: array-data size mismatch (%d vs %d)\n",
4002 arrayData[1], elemWidth);
Andy McFadden62a75162009-04-17 17:23:37 -07004003 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004004 }
4005 }
4006 break;
4007
4008 case OP_IF_EQ:
4009 case OP_IF_NE:
4010 {
4011 RegType type1, type2;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004012
Andy McFadden62a75162009-04-17 17:23:37 -07004013 type1 = getRegisterType(workRegs, insnRegCount, decInsn.vA,
4014 &failure);
4015 type2 = getRegisterType(workRegs, insnRegCount, decInsn.vB,
4016 &failure);
4017 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004018 break;
4019
4020 /* both references? */
4021 if (regTypeIsReference(type1) && regTypeIsReference(type2))
4022 break;
4023
4024 /* both category-1nr? */
Andy McFadden62a75162009-04-17 17:23:37 -07004025 checkTypeCategory(type1, kTypeCategory1nr, &failure);
4026 checkTypeCategory(type2, kTypeCategory1nr, &failure);
4027 if (!VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004028 LOG_VFY("VFY: args to if-eq/if-ne must both be refs or cat1\n");
4029 break;
4030 }
4031 }
4032 break;
4033 case OP_IF_LT:
4034 case OP_IF_GE:
4035 case OP_IF_GT:
4036 case OP_IF_LE:
Andy McFadden62a75162009-04-17 17:23:37 -07004037 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4038 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004039 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004040 checkTypeCategory(tmpType, kTypeCategory1nr, &failure);
4041 if (!VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004042 LOG_VFY("VFY: args to 'if' must be cat-1nr\n");
4043 break;
4044 }
Andy McFadden62a75162009-04-17 17:23:37 -07004045 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vB, &failure);
4046 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004047 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004048 checkTypeCategory(tmpType, kTypeCategory1nr, &failure);
4049 if (!VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004050 LOG_VFY("VFY: args to 'if' must be cat-1nr\n");
4051 break;
4052 }
4053 break;
4054 case OP_IF_EQZ:
4055 case OP_IF_NEZ:
Andy McFadden62a75162009-04-17 17:23:37 -07004056 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4057 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004058 break;
4059 if (regTypeIsReference(tmpType))
4060 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004061 checkTypeCategory(tmpType, kTypeCategory1nr, &failure);
4062 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004063 LOG_VFY("VFY: expected cat-1 arg to if\n");
4064 break;
4065 case OP_IF_LTZ:
4066 case OP_IF_GEZ:
4067 case OP_IF_GTZ:
4068 case OP_IF_LEZ:
Andy McFadden62a75162009-04-17 17:23:37 -07004069 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4070 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004071 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004072 checkTypeCategory(tmpType, kTypeCategory1nr, &failure);
4073 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004074 LOG_VFY("VFY: expected cat-1 arg to if\n");
4075 break;
4076
4077 case OP_AGET:
4078 tmpType = kRegTypeInteger;
4079 goto aget_1nr_common;
4080 case OP_AGET_BOOLEAN:
4081 tmpType = kRegTypeBoolean;
4082 goto aget_1nr_common;
4083 case OP_AGET_BYTE:
4084 tmpType = kRegTypeByte;
4085 goto aget_1nr_common;
4086 case OP_AGET_CHAR:
4087 tmpType = kRegTypeChar;
4088 goto aget_1nr_common;
4089 case OP_AGET_SHORT:
4090 tmpType = kRegTypeShort;
4091 goto aget_1nr_common;
4092aget_1nr_common:
4093 {
4094 RegType srcType, indexType;
4095
4096 indexType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004097 &failure);
4098 checkArrayIndexType(meth, indexType, &failure);
4099 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004100 break;
4101
4102 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004103 decInsn.vB, &failure);
4104 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004105 break;
4106 if (resClass != NULL) {
4107 /* verify the class */
4108 if (!dvmIsArrayClass(resClass) || resClass->arrayDim != 1 ||
4109 resClass->elementClass->primitiveType == PRIM_NOT)
4110 {
4111 LOG_VFY("VFY: invalid aget-1nr target %s\n",
4112 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004113 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004114 break;
4115 }
4116
4117 /* make sure array type matches instruction */
4118 srcType = primitiveTypeToRegType(
4119 resClass->elementClass->primitiveType);
4120
4121 if (!checkFieldArrayStore1nr(tmpType, srcType)) {
4122 LOG_VFY("VFY: invalid aget-1nr, array type=%d with"
4123 " inst type=%d (on %s)\n",
4124 srcType, tmpType, resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004125 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004126 break;
4127 }
4128
4129 }
4130 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004131 tmpType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004132 }
4133 break;
4134
4135 case OP_AGET_WIDE:
4136 {
4137 RegType dstType, indexType;
4138
4139 indexType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004140 &failure);
4141 checkArrayIndexType(meth, indexType, &failure);
4142 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004143 break;
4144
4145 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004146 decInsn.vB, &failure);
4147 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004148 break;
4149 if (resClass != NULL) {
4150 /* verify the class */
4151 if (!dvmIsArrayClass(resClass) || resClass->arrayDim != 1 ||
4152 resClass->elementClass->primitiveType == PRIM_NOT)
4153 {
4154 LOG_VFY("VFY: invalid aget-wide target %s\n",
4155 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004156 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004157 break;
4158 }
4159
4160 /* try to refine "dstType" */
4161 switch (resClass->elementClass->primitiveType) {
4162 case PRIM_LONG:
4163 dstType = kRegTypeLongLo;
4164 break;
4165 case PRIM_DOUBLE:
4166 dstType = kRegTypeDoubleLo;
4167 break;
4168 default:
4169 LOG_VFY("VFY: invalid aget-wide on %s\n",
4170 resClass->descriptor);
4171 dstType = kRegTypeUnknown;
Andy McFadden62a75162009-04-17 17:23:37 -07004172 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004173 break;
4174 }
4175 } else {
4176 /*
4177 * Null array ref; this code path will fail at runtime. We
4178 * know this is either long or double, and we don't really
4179 * discriminate between those during verification, so we
4180 * call it a long.
4181 */
4182 dstType = kRegTypeLongLo;
4183 }
4184 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004185 dstType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004186 }
4187 break;
4188
4189 case OP_AGET_OBJECT:
4190 {
4191 RegType dstType, indexType;
4192
4193 indexType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004194 &failure);
4195 checkArrayIndexType(meth, indexType, &failure);
4196 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004197 break;
4198
4199 /* get the class of the array we're pulling an object from */
4200 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004201 decInsn.vB, &failure);
4202 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004203 break;
4204 if (resClass != NULL) {
4205 ClassObject* elementClass;
4206
4207 assert(resClass != NULL);
4208 if (!dvmIsArrayClass(resClass)) {
4209 LOG_VFY("VFY: aget-object on non-array class\n");
Andy McFadden62a75162009-04-17 17:23:37 -07004210 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004211 break;
4212 }
4213 assert(resClass->elementClass != NULL);
4214
4215 /*
4216 * Find the element class. resClass->elementClass indicates
4217 * the basic type, which won't be what we want for a
4218 * multi-dimensional array.
4219 */
4220 if (resClass->descriptor[1] == '[') {
4221 assert(resClass->arrayDim > 1);
4222 elementClass = dvmFindArrayClass(&resClass->descriptor[1],
4223 resClass->classLoader);
4224 } else if (resClass->descriptor[1] == 'L') {
4225 assert(resClass->arrayDim == 1);
4226 elementClass = resClass->elementClass;
4227 } else {
4228 LOG_VFY("VFY: aget-object on non-ref array class (%s)\n",
4229 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004230 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004231 break;
4232 }
4233
4234 dstType = regTypeFromClass(elementClass);
4235 } else {
4236 /*
4237 * The array reference is NULL, so the current code path will
4238 * throw an exception. For proper merging with later code
4239 * paths, and correct handling of "if-eqz" tests on the
4240 * result of the array get, we want to treat this as a null
4241 * reference.
4242 */
4243 dstType = kRegTypeZero;
4244 }
4245 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004246 dstType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004247 }
4248 break;
4249 case OP_APUT:
4250 tmpType = kRegTypeInteger;
4251 goto aput_1nr_common;
4252 case OP_APUT_BOOLEAN:
4253 tmpType = kRegTypeBoolean;
4254 goto aput_1nr_common;
4255 case OP_APUT_BYTE:
4256 tmpType = kRegTypeByte;
4257 goto aput_1nr_common;
4258 case OP_APUT_CHAR:
4259 tmpType = kRegTypeChar;
4260 goto aput_1nr_common;
4261 case OP_APUT_SHORT:
4262 tmpType = kRegTypeShort;
4263 goto aput_1nr_common;
4264aput_1nr_common:
4265 {
4266 RegType srcType, dstType, indexType;
4267
4268 indexType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004269 &failure);
4270 checkArrayIndexType(meth, indexType, &failure);
4271 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004272 break;
4273
4274 /* make sure the source register has the correct type */
4275 srcType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004276 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004277 if (!canConvertTo1nr(srcType, tmpType)) {
4278 LOG_VFY("VFY: invalid reg type %d on aput instr (need %d)\n",
4279 srcType, tmpType);
Andy McFadden62a75162009-04-17 17:23:37 -07004280 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004281 break;
4282 }
4283
4284 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004285 decInsn.vB, &failure);
4286 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004287 break;
4288
4289 /* resClass can be null if the reg type is Zero */
4290 if (resClass == NULL)
4291 break;
4292
4293 if (!dvmIsArrayClass(resClass) || resClass->arrayDim != 1 ||
4294 resClass->elementClass->primitiveType == PRIM_NOT)
4295 {
4296 LOG_VFY("VFY: invalid aput-1nr on %s\n", resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004297 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004298 break;
4299 }
4300
4301 /* verify that instruction matches array */
4302 dstType = primitiveTypeToRegType(
4303 resClass->elementClass->primitiveType);
4304 assert(dstType != kRegTypeUnknown);
4305
4306 if (!checkFieldArrayStore1nr(tmpType, dstType)) {
4307 LOG_VFY("VFY: invalid aput-1nr on %s (inst=%d dst=%d)\n",
4308 resClass->descriptor, tmpType, dstType);
Andy McFadden62a75162009-04-17 17:23:37 -07004309 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004310 break;
4311 }
4312 }
4313 break;
4314 case OP_APUT_WIDE:
4315 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004316 &failure);
4317 checkArrayIndexType(meth, tmpType, &failure);
4318 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004319 break;
4320
Andy McFadden62a75162009-04-17 17:23:37 -07004321 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4322 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004323 RegType typeHi =
Andy McFadden62a75162009-04-17 17:23:37 -07004324 getRegisterType(workRegs, insnRegCount, decInsn.vA+1, &failure);
4325 checkTypeCategory(tmpType, kTypeCategory2, &failure);
4326 checkWidePair(tmpType, typeHi, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004327 }
Andy McFadden62a75162009-04-17 17:23:37 -07004328 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004329 break;
4330
4331 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004332 decInsn.vB, &failure);
4333 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004334 break;
4335 if (resClass != NULL) {
4336 /* verify the class and try to refine "dstType" */
4337 if (!dvmIsArrayClass(resClass) || resClass->arrayDim != 1 ||
4338 resClass->elementClass->primitiveType == PRIM_NOT)
4339 {
4340 LOG_VFY("VFY: invalid aput-wide on %s\n",
4341 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004342 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004343 break;
4344 }
4345
4346 switch (resClass->elementClass->primitiveType) {
4347 case PRIM_LONG:
4348 case PRIM_DOUBLE:
4349 /* these are okay */
4350 break;
4351 default:
4352 LOG_VFY("VFY: invalid aput-wide on %s\n",
4353 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004354 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004355 break;
4356 }
4357 }
4358 break;
4359 case OP_APUT_OBJECT:
4360 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004361 &failure);
4362 checkArrayIndexType(meth, tmpType, &failure);
4363 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004364 break;
4365
4366 /* get the ref we're storing; Zero is okay, Uninit is not */
4367 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004368 decInsn.vA, &failure);
4369 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004370 break;
4371 if (resClass != NULL) {
4372 ClassObject* arrayClass;
4373 ClassObject* elementClass;
4374
4375 /*
4376 * Get the array class. If the array ref is null, we won't
4377 * have type information (and we'll crash at runtime with a
4378 * null pointer exception).
4379 */
4380 arrayClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004381 decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004382
4383 if (arrayClass != NULL) {
4384 /* see if the array holds a compatible type */
4385 if (!dvmIsArrayClass(arrayClass)) {
4386 LOG_VFY("VFY: invalid aput-object on %s\n",
4387 arrayClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004388 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004389 break;
4390 }
4391
4392 /*
4393 * Find the element class. resClass->elementClass indicates
4394 * the basic type, which won't be what we want for a
4395 * multi-dimensional array.
4396 *
4397 * All we want to check here is that the element type is a
4398 * reference class. We *don't* check instanceof here, because
4399 * you can still put a String into a String[] after the latter
4400 * has been cast to an Object[].
4401 */
4402 if (arrayClass->descriptor[1] == '[') {
4403 assert(arrayClass->arrayDim > 1);
4404 elementClass = dvmFindArrayClass(&arrayClass->descriptor[1],
4405 arrayClass->classLoader);
4406 } else {
4407 assert(arrayClass->arrayDim == 1);
4408 elementClass = arrayClass->elementClass;
4409 }
4410 if (elementClass->primitiveType != PRIM_NOT) {
4411 LOG_VFY("VFY: invalid aput-object of %s into %s\n",
4412 resClass->descriptor, arrayClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004413 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004414 break;
4415 }
4416 }
4417 }
4418 break;
4419
4420 case OP_IGET:
Andy McFaddenc35a2ef2010-06-17 12:36:00 -07004421 case OP_IGET_VOLATILE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004422 tmpType = kRegTypeInteger;
4423 goto iget_1nr_common;
4424 case OP_IGET_BOOLEAN:
4425 tmpType = kRegTypeBoolean;
4426 goto iget_1nr_common;
4427 case OP_IGET_BYTE:
4428 tmpType = kRegTypeByte;
4429 goto iget_1nr_common;
4430 case OP_IGET_CHAR:
4431 tmpType = kRegTypeChar;
4432 goto iget_1nr_common;
4433 case OP_IGET_SHORT:
4434 tmpType = kRegTypeShort;
4435 goto iget_1nr_common;
4436iget_1nr_common:
4437 {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004438 InstField* instField;
4439 RegType objType, fieldType;
4440
4441 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004442 &failure);
4443 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004444 break;
4445 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004446 &failure);
4447 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004448 break;
4449
4450 /* make sure the field's type is compatible with expectation */
4451 fieldType = primSigCharToRegType(instField->field.signature[0]);
4452 if (fieldType == kRegTypeUnknown ||
4453 !checkFieldArrayStore1nr(tmpType, fieldType))
4454 {
4455 LOG_VFY("VFY: invalid iget-1nr of %s.%s (inst=%d field=%d)\n",
4456 instField->field.clazz->descriptor,
4457 instField->field.name, tmpType, fieldType);
Andy McFadden62a75162009-04-17 17:23:37 -07004458 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004459 break;
4460 }
4461
Andy McFadden62a75162009-04-17 17:23:37 -07004462 setRegisterType(workRegs, insnRegCount, decInsn.vA, tmpType,
4463 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004464 }
4465 break;
4466 case OP_IGET_WIDE:
Andy McFadden861b3382010-03-05 15:58:31 -08004467 case OP_IGET_WIDE_VOLATILE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004468 {
4469 RegType dstType;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004470 InstField* instField;
4471 RegType objType;
4472
4473 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004474 &failure);
4475 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004476 break;
4477 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004478 &failure);
4479 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004480 break;
4481 /* check the type, which should be prim */
4482 switch (instField->field.signature[0]) {
4483 case 'D':
4484 dstType = kRegTypeDoubleLo;
4485 break;
4486 case 'J':
4487 dstType = kRegTypeLongLo;
4488 break;
4489 default:
4490 LOG_VFY("VFY: invalid iget-wide of %s.%s\n",
4491 instField->field.clazz->descriptor,
4492 instField->field.name);
4493 dstType = kRegTypeUnknown;
Andy McFadden62a75162009-04-17 17:23:37 -07004494 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004495 break;
4496 }
Andy McFadden62a75162009-04-17 17:23:37 -07004497 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004498 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004499 dstType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004500 }
4501 }
4502 break;
4503 case OP_IGET_OBJECT:
Andy McFaddenc35a2ef2010-06-17 12:36:00 -07004504 case OP_IGET_OBJECT_VOLATILE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004505 {
4506 ClassObject* fieldClass;
4507 InstField* instField;
4508 RegType objType;
4509
4510 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004511 &failure);
4512 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004513 break;
4514 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004515 &failure);
4516 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004517 break;
4518 fieldClass = getFieldClass(meth, &instField->field);
4519 if (fieldClass == NULL) {
4520 /* class not found or primitive type */
4521 LOG_VFY("VFY: unable to recover field class from '%s'\n",
4522 instField->field.signature);
Andy McFadden62a75162009-04-17 17:23:37 -07004523 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004524 break;
4525 }
Andy McFadden62a75162009-04-17 17:23:37 -07004526 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004527 assert(!dvmIsPrimitiveClass(fieldClass));
4528 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004529 regTypeFromClass(fieldClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004530 }
4531 }
4532 break;
4533 case OP_IPUT:
Andy McFaddenc35a2ef2010-06-17 12:36:00 -07004534 case OP_IPUT_VOLATILE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004535 tmpType = kRegTypeInteger;
4536 goto iput_1nr_common;
4537 case OP_IPUT_BOOLEAN:
4538 tmpType = kRegTypeBoolean;
4539 goto iput_1nr_common;
4540 case OP_IPUT_BYTE:
4541 tmpType = kRegTypeByte;
4542 goto iput_1nr_common;
4543 case OP_IPUT_CHAR:
4544 tmpType = kRegTypeChar;
4545 goto iput_1nr_common;
4546 case OP_IPUT_SHORT:
4547 tmpType = kRegTypeShort;
4548 goto iput_1nr_common;
4549iput_1nr_common:
4550 {
4551 RegType srcType, fieldType, objType;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004552 InstField* instField;
4553
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004554 srcType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004555 &failure);
Andy McFaddenb5f64bc2009-06-10 14:11:07 -07004556
4557 /*
4558 * javac generates synthetic functions that write byte values
4559 * into boolean fields.
4560 */
4561 if (tmpType == kRegTypeBoolean && srcType == kRegTypeByte)
4562 srcType = kRegTypeBoolean;
4563
4564 /* make sure the source register has the correct type */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004565 if (!canConvertTo1nr(srcType, tmpType)) {
4566 LOG_VFY("VFY: invalid reg type %d on iput instr (need %d)\n",
4567 srcType, tmpType);
Andy McFadden62a75162009-04-17 17:23:37 -07004568 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004569 break;
4570 }
4571
4572 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004573 &failure);
4574 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004575 break;
4576 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004577 &failure);
4578 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004579 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004580 checkFinalFieldAccess(meth, &instField->field, &failure);
4581 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004582 break;
4583
4584 /* get type of field we're storing into */
4585 fieldType = primSigCharToRegType(instField->field.signature[0]);
4586 if (fieldType == kRegTypeUnknown ||
4587 !checkFieldArrayStore1nr(tmpType, fieldType))
4588 {
4589 LOG_VFY("VFY: invalid iput-1nr of %s.%s (inst=%d field=%d)\n",
4590 instField->field.clazz->descriptor,
4591 instField->field.name, tmpType, fieldType);
Andy McFadden62a75162009-04-17 17:23:37 -07004592 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004593 break;
4594 }
4595 }
4596 break;
4597 case OP_IPUT_WIDE:
Andy McFadden861b3382010-03-05 15:58:31 -08004598 case OP_IPUT_WIDE_VOLATILE:
Andy McFadden62a75162009-04-17 17:23:37 -07004599 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4600 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004601 RegType typeHi =
Andy McFadden62a75162009-04-17 17:23:37 -07004602 getRegisterType(workRegs, insnRegCount, decInsn.vA+1, &failure);
4603 checkTypeCategory(tmpType, kTypeCategory2, &failure);
4604 checkWidePair(tmpType, typeHi, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004605 }
Andy McFadden62a75162009-04-17 17:23:37 -07004606 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004607 InstField* instField;
4608 RegType objType;
4609
4610 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004611 &failure);
4612 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004613 break;
4614 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004615 &failure);
4616 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004617 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004618 checkFinalFieldAccess(meth, &instField->field, &failure);
4619 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004620 break;
4621
4622 /* check the type, which should be prim */
4623 switch (instField->field.signature[0]) {
4624 case 'D':
4625 case 'J':
4626 /* these are okay (and interchangeable) */
4627 break;
4628 default:
4629 LOG_VFY("VFY: invalid iput-wide of %s.%s\n",
4630 instField->field.clazz->descriptor,
4631 instField->field.name);
Andy McFadden62a75162009-04-17 17:23:37 -07004632 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004633 break;
4634 }
4635 }
4636 break;
4637 case OP_IPUT_OBJECT:
Andy McFaddenc35a2ef2010-06-17 12:36:00 -07004638 case OP_IPUT_OBJECT_VOLATILE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004639 {
4640 ClassObject* fieldClass;
4641 ClassObject* valueClass;
4642 InstField* instField;
4643 RegType objType, valueType;
4644
4645 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004646 &failure);
4647 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004648 break;
4649 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004650 &failure);
4651 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004652 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004653 checkFinalFieldAccess(meth, &instField->field, &failure);
4654 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004655 break;
4656
4657 fieldClass = getFieldClass(meth, &instField->field);
4658 if (fieldClass == NULL) {
4659 LOG_VFY("VFY: unable to recover field class from '%s'\n",
4660 instField->field.signature);
Andy McFadden62a75162009-04-17 17:23:37 -07004661 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004662 break;
4663 }
4664
4665 valueType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004666 &failure);
4667 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004668 break;
4669 if (!regTypeIsReference(valueType)) {
4670 LOG_VFY("VFY: storing non-ref v%d into ref field '%s' (%s)\n",
4671 decInsn.vA, instField->field.name,
4672 fieldClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004673 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004674 break;
4675 }
4676 if (valueType != kRegTypeZero) {
4677 valueClass = regTypeInitializedReferenceToClass(valueType);
4678 if (valueClass == NULL) {
4679 LOG_VFY("VFY: storing uninit ref v%d into ref field\n",
4680 decInsn.vA);
Andy McFadden62a75162009-04-17 17:23:37 -07004681 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004682 break;
4683 }
4684 /* allow if field is any interface or field is base class */
4685 if (!dvmIsInterfaceClass(fieldClass) &&
4686 !dvmInstanceof(valueClass, fieldClass))
4687 {
4688 LOG_VFY("VFY: storing type '%s' into field type '%s' (%s.%s)\n",
4689 valueClass->descriptor, fieldClass->descriptor,
4690 instField->field.clazz->descriptor,
4691 instField->field.name);
Andy McFadden62a75162009-04-17 17:23:37 -07004692 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004693 break;
4694 }
4695 }
4696 }
4697 break;
4698
4699 case OP_SGET:
Andy McFaddenc35a2ef2010-06-17 12:36:00 -07004700 case OP_SGET_VOLATILE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004701 tmpType = kRegTypeInteger;
4702 goto sget_1nr_common;
4703 case OP_SGET_BOOLEAN:
4704 tmpType = kRegTypeBoolean;
4705 goto sget_1nr_common;
4706 case OP_SGET_BYTE:
4707 tmpType = kRegTypeByte;
4708 goto sget_1nr_common;
4709 case OP_SGET_CHAR:
4710 tmpType = kRegTypeChar;
4711 goto sget_1nr_common;
4712 case OP_SGET_SHORT:
4713 tmpType = kRegTypeShort;
4714 goto sget_1nr_common;
4715sget_1nr_common:
4716 {
4717 StaticField* staticField;
4718 RegType fieldType;
4719
Andy McFadden62a75162009-04-17 17:23:37 -07004720 staticField = getStaticField(meth, decInsn.vB, &failure);
4721 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004722 break;
4723
4724 /*
4725 * Make sure the field's type is compatible with expectation.
4726 * We can get ourselves into trouble if we mix & match loads
4727 * and stores with different widths, so rather than just checking
4728 * "canConvertTo1nr" we require that the field types have equal
4729 * widths. (We can't generally require an exact type match,
4730 * because e.g. "int" and "float" are interchangeable.)
4731 */
4732 fieldType = primSigCharToRegType(staticField->field.signature[0]);
4733 if (!checkFieldArrayStore1nr(tmpType, fieldType)) {
4734 LOG_VFY("VFY: invalid sget-1nr of %s.%s (inst=%d actual=%d)\n",
4735 staticField->field.clazz->descriptor,
4736 staticField->field.name, tmpType, fieldType);
Andy McFadden62a75162009-04-17 17:23:37 -07004737 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004738 break;
4739 }
4740
Andy McFadden62a75162009-04-17 17:23:37 -07004741 setRegisterType(workRegs, insnRegCount, decInsn.vA, tmpType,
4742 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004743 }
4744 break;
4745 case OP_SGET_WIDE:
Andy McFadden861b3382010-03-05 15:58:31 -08004746 case OP_SGET_WIDE_VOLATILE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004747 {
4748 StaticField* staticField;
4749 RegType dstType;
4750
Andy McFadden62a75162009-04-17 17:23:37 -07004751 staticField = getStaticField(meth, decInsn.vB, &failure);
4752 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004753 break;
4754 /* check the type, which should be prim */
4755 switch (staticField->field.signature[0]) {
4756 case 'D':
4757 dstType = kRegTypeDoubleLo;
4758 break;
4759 case 'J':
4760 dstType = kRegTypeLongLo;
4761 break;
4762 default:
4763 LOG_VFY("VFY: invalid sget-wide of %s.%s\n",
4764 staticField->field.clazz->descriptor,
4765 staticField->field.name);
4766 dstType = kRegTypeUnknown;
Andy McFadden62a75162009-04-17 17:23:37 -07004767 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004768 break;
4769 }
Andy McFadden62a75162009-04-17 17:23:37 -07004770 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004771 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004772 dstType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004773 }
4774 }
4775 break;
4776 case OP_SGET_OBJECT:
Andy McFaddenc35a2ef2010-06-17 12:36:00 -07004777 case OP_SGET_OBJECT_VOLATILE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004778 {
4779 StaticField* staticField;
4780 ClassObject* fieldClass;
4781
Andy McFadden62a75162009-04-17 17:23:37 -07004782 staticField = getStaticField(meth, decInsn.vB, &failure);
4783 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004784 break;
4785 fieldClass = getFieldClass(meth, &staticField->field);
4786 if (fieldClass == NULL) {
4787 LOG_VFY("VFY: unable to recover field class from '%s'\n",
4788 staticField->field.signature);
Andy McFadden62a75162009-04-17 17:23:37 -07004789 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004790 break;
4791 }
4792 if (dvmIsPrimitiveClass(fieldClass)) {
4793 LOG_VFY("VFY: attempt to get prim field with sget-object\n");
Andy McFadden62a75162009-04-17 17:23:37 -07004794 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004795 break;
4796 }
4797 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004798 regTypeFromClass(fieldClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004799 }
4800 break;
4801 case OP_SPUT:
Andy McFaddenc35a2ef2010-06-17 12:36:00 -07004802 case OP_SPUT_VOLATILE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004803 tmpType = kRegTypeInteger;
4804 goto sput_1nr_common;
4805 case OP_SPUT_BOOLEAN:
4806 tmpType = kRegTypeBoolean;
4807 goto sput_1nr_common;
4808 case OP_SPUT_BYTE:
4809 tmpType = kRegTypeByte;
4810 goto sput_1nr_common;
4811 case OP_SPUT_CHAR:
4812 tmpType = kRegTypeChar;
4813 goto sput_1nr_common;
4814 case OP_SPUT_SHORT:
4815 tmpType = kRegTypeShort;
4816 goto sput_1nr_common;
4817sput_1nr_common:
4818 {
4819 RegType srcType, fieldType;
4820 StaticField* staticField;
4821
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004822 srcType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004823 &failure);
Andy McFaddenb5f64bc2009-06-10 14:11:07 -07004824
4825 /*
4826 * javac generates synthetic functions that write byte values
4827 * into boolean fields.
4828 */
4829 if (tmpType == kRegTypeBoolean && srcType == kRegTypeByte)
4830 srcType = kRegTypeBoolean;
4831
4832 /* make sure the source register has the correct type */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004833 if (!canConvertTo1nr(srcType, tmpType)) {
Andy McFaddenb5f64bc2009-06-10 14:11:07 -07004834 LOG_VFY("VFY: invalid reg type %d on sput instr (need %d)\n",
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004835 srcType, tmpType);
Andy McFadden62a75162009-04-17 17:23:37 -07004836 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004837 break;
4838 }
4839
Andy McFadden62a75162009-04-17 17:23:37 -07004840 staticField = getStaticField(meth, decInsn.vB, &failure);
4841 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004842 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004843 checkFinalFieldAccess(meth, &staticField->field, &failure);
4844 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004845 break;
4846
4847 /*
4848 * Get type of field we're storing into. We know that the
4849 * contents of the register match the instruction, but we also
4850 * need to ensure that the instruction matches the field type.
4851 * Using e.g. sput-short to write into a 32-bit integer field
4852 * can lead to trouble if we do 16-bit writes.
4853 */
4854 fieldType = primSigCharToRegType(staticField->field.signature[0]);
4855 if (!checkFieldArrayStore1nr(tmpType, fieldType)) {
4856 LOG_VFY("VFY: invalid sput-1nr of %s.%s (inst=%d actual=%d)\n",
4857 staticField->field.clazz->descriptor,
4858 staticField->field.name, tmpType, fieldType);
Andy McFadden62a75162009-04-17 17:23:37 -07004859 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004860 break;
4861 }
4862 }
4863 break;
4864 case OP_SPUT_WIDE:
Andy McFadden861b3382010-03-05 15:58:31 -08004865 case OP_SPUT_WIDE_VOLATILE:
Andy McFadden62a75162009-04-17 17:23:37 -07004866 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4867 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004868 RegType typeHi =
Andy McFadden62a75162009-04-17 17:23:37 -07004869 getRegisterType(workRegs, insnRegCount, decInsn.vA+1, &failure);
4870 checkTypeCategory(tmpType, kTypeCategory2, &failure);
4871 checkWidePair(tmpType, typeHi, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004872 }
Andy McFadden62a75162009-04-17 17:23:37 -07004873 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004874 StaticField* staticField;
4875
Andy McFadden62a75162009-04-17 17:23:37 -07004876 staticField = getStaticField(meth, decInsn.vB, &failure);
4877 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004878 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004879 checkFinalFieldAccess(meth, &staticField->field, &failure);
4880 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004881 break;
4882
4883 /* check the type, which should be prim */
4884 switch (staticField->field.signature[0]) {
4885 case 'D':
4886 case 'J':
4887 /* these are okay */
4888 break;
4889 default:
4890 LOG_VFY("VFY: invalid sput-wide of %s.%s\n",
4891 staticField->field.clazz->descriptor,
4892 staticField->field.name);
Andy McFadden62a75162009-04-17 17:23:37 -07004893 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004894 break;
4895 }
4896 }
4897 break;
4898 case OP_SPUT_OBJECT:
Andy McFaddenc35a2ef2010-06-17 12:36:00 -07004899 case OP_SPUT_OBJECT_VOLATILE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004900 {
4901 ClassObject* fieldClass;
4902 ClassObject* valueClass;
4903 StaticField* staticField;
4904 RegType valueType;
4905
Andy McFadden62a75162009-04-17 17:23:37 -07004906 staticField = getStaticField(meth, decInsn.vB, &failure);
4907 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004908 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004909 checkFinalFieldAccess(meth, &staticField->field, &failure);
4910 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004911 break;
4912
4913 fieldClass = getFieldClass(meth, &staticField->field);
4914 if (fieldClass == NULL) {
4915 LOG_VFY("VFY: unable to recover field class from '%s'\n",
4916 staticField->field.signature);
Andy McFadden62a75162009-04-17 17:23:37 -07004917 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004918 break;
4919 }
4920
4921 valueType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004922 &failure);
4923 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004924 break;
4925 if (!regTypeIsReference(valueType)) {
4926 LOG_VFY("VFY: storing non-ref v%d into ref field '%s' (%s)\n",
4927 decInsn.vA, staticField->field.name,
4928 fieldClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004929 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004930 break;
4931 }
4932 if (valueType != kRegTypeZero) {
4933 valueClass = regTypeInitializedReferenceToClass(valueType);
4934 if (valueClass == NULL) {
4935 LOG_VFY("VFY: storing uninit ref v%d into ref field\n",
4936 decInsn.vA);
Andy McFadden62a75162009-04-17 17:23:37 -07004937 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004938 break;
4939 }
4940 /* allow if field is any interface or field is base class */
4941 if (!dvmIsInterfaceClass(fieldClass) &&
4942 !dvmInstanceof(valueClass, fieldClass))
4943 {
4944 LOG_VFY("VFY: storing type '%s' into field type '%s' (%s.%s)\n",
4945 valueClass->descriptor, fieldClass->descriptor,
4946 staticField->field.clazz->descriptor,
4947 staticField->field.name);
Andy McFadden62a75162009-04-17 17:23:37 -07004948 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004949 break;
4950 }
4951 }
4952 }
4953 break;
4954
4955 case OP_INVOKE_VIRTUAL:
4956 case OP_INVOKE_VIRTUAL_RANGE:
4957 case OP_INVOKE_SUPER:
4958 case OP_INVOKE_SUPER_RANGE:
4959 {
4960 Method* calledMethod;
4961 RegType returnType;
4962 bool isRange;
4963 bool isSuper;
4964
4965 isRange = (decInsn.opCode == OP_INVOKE_VIRTUAL_RANGE ||
4966 decInsn.opCode == OP_INVOKE_SUPER_RANGE);
4967 isSuper = (decInsn.opCode == OP_INVOKE_SUPER ||
4968 decInsn.opCode == OP_INVOKE_SUPER_RANGE);
4969
4970 calledMethod = verifyInvocationArgs(meth, workRegs, insnRegCount,
4971 &decInsn, uninitMap, METHOD_VIRTUAL, isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07004972 isSuper, &failure);
4973 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004974 break;
4975 returnType = getMethodReturnType(calledMethod);
Andy McFadden62a75162009-04-17 17:23:37 -07004976 setResultRegisterType(workRegs, insnRegCount, returnType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004977 justSetResult = true;
4978 }
4979 break;
4980 case OP_INVOKE_DIRECT:
4981 case OP_INVOKE_DIRECT_RANGE:
4982 {
4983 RegType returnType;
4984 Method* calledMethod;
4985 bool isRange;
4986
4987 isRange = (decInsn.opCode == OP_INVOKE_DIRECT_RANGE);
4988 calledMethod = verifyInvocationArgs(meth, workRegs, insnRegCount,
4989 &decInsn, uninitMap, METHOD_DIRECT, isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07004990 false, &failure);
4991 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004992 break;
4993
4994 /*
4995 * Some additional checks when calling <init>. We know from
4996 * the invocation arg check that the "this" argument is an
4997 * instance of calledMethod->clazz. Now we further restrict
4998 * that to require that calledMethod->clazz is the same as
4999 * this->clazz or this->super, allowing the latter only if
5000 * the "this" argument is the same as the "this" argument to
5001 * this method (which implies that we're in <init> ourselves).
5002 */
5003 if (isInitMethod(calledMethod)) {
5004 RegType thisType;
5005 thisType = getInvocationThis(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07005006 &decInsn, &failure);
5007 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005008 break;
5009
5010 /* no null refs allowed (?) */
5011 if (thisType == kRegTypeZero) {
5012 LOG_VFY("VFY: unable to initialize null ref\n");
Andy McFadden62a75162009-04-17 17:23:37 -07005013 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005014 break;
5015 }
5016
5017 ClassObject* thisClass;
5018
5019 thisClass = regTypeReferenceToClass(thisType, uninitMap);
5020 assert(thisClass != NULL);
5021
5022 /* must be in same class or in superclass */
5023 if (calledMethod->clazz == thisClass->super) {
5024 if (thisClass != meth->clazz) {
5025 LOG_VFY("VFY: invoke-direct <init> on super only "
5026 "allowed for 'this' in <init>");
Andy McFadden62a75162009-04-17 17:23:37 -07005027 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005028 break;
5029 }
5030 } else if (calledMethod->clazz != thisClass) {
5031 LOG_VFY("VFY: invoke-direct <init> must be on current "
5032 "class or super\n");
Andy McFadden62a75162009-04-17 17:23:37 -07005033 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005034 break;
5035 }
5036
5037 /* arg must be an uninitialized reference */
5038 if (!regTypeIsUninitReference(thisType)) {
5039 LOG_VFY("VFY: can only initialize the uninitialized\n");
Andy McFadden62a75162009-04-17 17:23:37 -07005040 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005041 break;
5042 }
5043
5044 /*
5045 * Replace the uninitialized reference with an initialized
5046 * one, and clear the entry in the uninit map. We need to
5047 * do this for all registers that have the same object
5048 * instance in them, not just the "this" register.
5049 */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005050 markRefsAsInitialized(workRegs, insnRegCount, uninitMap,
Andy McFadden62a75162009-04-17 17:23:37 -07005051 thisType, &failure);
5052 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005053 break;
5054 }
5055 returnType = getMethodReturnType(calledMethod);
5056 setResultRegisterType(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07005057 returnType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005058 justSetResult = true;
5059 }
5060 break;
5061 case OP_INVOKE_STATIC:
5062 case OP_INVOKE_STATIC_RANGE:
5063 {
5064 RegType returnType;
5065 Method* calledMethod;
5066 bool isRange;
5067
5068 isRange = (decInsn.opCode == OP_INVOKE_STATIC_RANGE);
5069 calledMethod = verifyInvocationArgs(meth, workRegs, insnRegCount,
5070 &decInsn, uninitMap, METHOD_STATIC, isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07005071 false, &failure);
5072 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005073 break;
5074
5075 returnType = getMethodReturnType(calledMethod);
Andy McFadden62a75162009-04-17 17:23:37 -07005076 setResultRegisterType(workRegs, insnRegCount, returnType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005077 justSetResult = true;
5078 }
5079 break;
5080 case OP_INVOKE_INTERFACE:
5081 case OP_INVOKE_INTERFACE_RANGE:
5082 {
5083 RegType /*thisType,*/ returnType;
5084 Method* absMethod;
5085 bool isRange;
5086
5087 isRange = (decInsn.opCode == OP_INVOKE_INTERFACE_RANGE);
5088 absMethod = verifyInvocationArgs(meth, workRegs, insnRegCount,
5089 &decInsn, uninitMap, METHOD_INTERFACE, isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07005090 false, &failure);
5091 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005092 break;
5093
5094#if 0 /* can't do this here, fails on dalvik test 052-verifier-fun */
5095 /*
5096 * Get the type of the "this" arg, which should always be an
5097 * interface class. Because we don't do a full merge on
5098 * interface classes, this might have reduced to Object.
5099 */
5100 thisType = getInvocationThis(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07005101 &decInsn, &failure);
5102 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005103 break;
5104
5105 if (thisType == kRegTypeZero) {
5106 /* null pointer always passes (and always fails at runtime) */
5107 } else {
5108 ClassObject* thisClass;
5109
5110 thisClass = regTypeInitializedReferenceToClass(thisType);
5111 if (thisClass == NULL) {
5112 LOG_VFY("VFY: interface call on uninitialized\n");
Andy McFadden62a75162009-04-17 17:23:37 -07005113 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005114 break;
5115 }
5116
5117 /*
5118 * Either "thisClass" needs to be the interface class that
5119 * defined absMethod, or absMethod's class needs to be one
5120 * of the interfaces implemented by "thisClass". (Or, if
5121 * we couldn't complete the merge, this will be Object.)
5122 */
5123 if (thisClass != absMethod->clazz &&
5124 thisClass != gDvm.classJavaLangObject &&
5125 !dvmImplements(thisClass, absMethod->clazz))
5126 {
5127 LOG_VFY("VFY: unable to match absMethod '%s' with %s interfaces\n",
5128 absMethod->name, thisClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07005129 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005130 break;
5131 }
5132 }
5133#endif
5134
5135 /*
5136 * We don't have an object instance, so we can't find the
5137 * concrete method. However, all of the type information is
5138 * in the abstract method, so we're good.
5139 */
5140 returnType = getMethodReturnType(absMethod);
Andy McFadden62a75162009-04-17 17:23:37 -07005141 setResultRegisterType(workRegs, insnRegCount, returnType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005142 justSetResult = true;
5143 }
5144 break;
5145
5146 case OP_NEG_INT:
5147 case OP_NOT_INT:
5148 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005149 kRegTypeInteger, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005150 break;
5151 case OP_NEG_LONG:
5152 case OP_NOT_LONG:
5153 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005154 kRegTypeLongLo, kRegTypeLongLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005155 break;
5156 case OP_NEG_FLOAT:
5157 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005158 kRegTypeFloat, kRegTypeFloat, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005159 break;
5160 case OP_NEG_DOUBLE:
5161 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005162 kRegTypeDoubleLo, kRegTypeDoubleLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005163 break;
5164 case OP_INT_TO_LONG:
5165 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005166 kRegTypeLongLo, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005167 break;
5168 case OP_INT_TO_FLOAT:
5169 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005170 kRegTypeFloat, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005171 break;
5172 case OP_INT_TO_DOUBLE:
5173 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005174 kRegTypeDoubleLo, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005175 break;
5176 case OP_LONG_TO_INT:
5177 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005178 kRegTypeInteger, kRegTypeLongLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005179 break;
5180 case OP_LONG_TO_FLOAT:
5181 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005182 kRegTypeFloat, kRegTypeLongLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005183 break;
5184 case OP_LONG_TO_DOUBLE:
5185 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005186 kRegTypeDoubleLo, kRegTypeLongLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005187 break;
5188 case OP_FLOAT_TO_INT:
5189 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005190 kRegTypeInteger, kRegTypeFloat, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005191 break;
5192 case OP_FLOAT_TO_LONG:
5193 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005194 kRegTypeLongLo, kRegTypeFloat, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005195 break;
5196 case OP_FLOAT_TO_DOUBLE:
5197 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005198 kRegTypeDoubleLo, kRegTypeFloat, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005199 break;
5200 case OP_DOUBLE_TO_INT:
5201 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005202 kRegTypeInteger, kRegTypeDoubleLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005203 break;
5204 case OP_DOUBLE_TO_LONG:
5205 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005206 kRegTypeLongLo, kRegTypeDoubleLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005207 break;
5208 case OP_DOUBLE_TO_FLOAT:
5209 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005210 kRegTypeFloat, kRegTypeDoubleLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005211 break;
5212 case OP_INT_TO_BYTE:
5213 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005214 kRegTypeByte, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005215 break;
5216 case OP_INT_TO_CHAR:
5217 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005218 kRegTypeChar, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005219 break;
5220 case OP_INT_TO_SHORT:
5221 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005222 kRegTypeShort, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005223 break;
5224
5225 case OP_ADD_INT:
5226 case OP_SUB_INT:
5227 case OP_MUL_INT:
5228 case OP_REM_INT:
5229 case OP_DIV_INT:
5230 case OP_SHL_INT:
5231 case OP_SHR_INT:
5232 case OP_USHR_INT:
5233 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005234 kRegTypeInteger, kRegTypeInteger, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005235 break;
5236 case OP_AND_INT:
5237 case OP_OR_INT:
5238 case OP_XOR_INT:
5239 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005240 kRegTypeInteger, kRegTypeInteger, kRegTypeInteger, true, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005241 break;
5242 case OP_ADD_LONG:
5243 case OP_SUB_LONG:
5244 case OP_MUL_LONG:
5245 case OP_DIV_LONG:
5246 case OP_REM_LONG:
5247 case OP_AND_LONG:
5248 case OP_OR_LONG:
5249 case OP_XOR_LONG:
5250 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005251 kRegTypeLongLo, kRegTypeLongLo, kRegTypeLongLo, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005252 break;
5253 case OP_SHL_LONG:
5254 case OP_SHR_LONG:
5255 case OP_USHR_LONG:
5256 /* shift distance is Int, making these different from other binops */
5257 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005258 kRegTypeLongLo, kRegTypeLongLo, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005259 break;
5260 case OP_ADD_FLOAT:
5261 case OP_SUB_FLOAT:
5262 case OP_MUL_FLOAT:
5263 case OP_DIV_FLOAT:
5264 case OP_REM_FLOAT:
5265 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005266 kRegTypeFloat, kRegTypeFloat, kRegTypeFloat, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005267 break;
5268 case OP_ADD_DOUBLE:
5269 case OP_SUB_DOUBLE:
5270 case OP_MUL_DOUBLE:
5271 case OP_DIV_DOUBLE:
5272 case OP_REM_DOUBLE:
5273 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005274 kRegTypeDoubleLo, kRegTypeDoubleLo, kRegTypeDoubleLo, false,
5275 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005276 break;
5277 case OP_ADD_INT_2ADDR:
5278 case OP_SUB_INT_2ADDR:
5279 case OP_MUL_INT_2ADDR:
5280 case OP_REM_INT_2ADDR:
5281 case OP_SHL_INT_2ADDR:
5282 case OP_SHR_INT_2ADDR:
5283 case OP_USHR_INT_2ADDR:
5284 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005285 kRegTypeInteger, kRegTypeInteger, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005286 break;
5287 case OP_AND_INT_2ADDR:
5288 case OP_OR_INT_2ADDR:
5289 case OP_XOR_INT_2ADDR:
5290 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005291 kRegTypeInteger, kRegTypeInteger, kRegTypeInteger, true, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005292 break;
5293 case OP_DIV_INT_2ADDR:
5294 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005295 kRegTypeInteger, kRegTypeInteger, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005296 break;
5297 case OP_ADD_LONG_2ADDR:
5298 case OP_SUB_LONG_2ADDR:
5299 case OP_MUL_LONG_2ADDR:
5300 case OP_DIV_LONG_2ADDR:
5301 case OP_REM_LONG_2ADDR:
5302 case OP_AND_LONG_2ADDR:
5303 case OP_OR_LONG_2ADDR:
5304 case OP_XOR_LONG_2ADDR:
5305 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005306 kRegTypeLongLo, kRegTypeLongLo, kRegTypeLongLo, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005307 break;
5308 case OP_SHL_LONG_2ADDR:
5309 case OP_SHR_LONG_2ADDR:
5310 case OP_USHR_LONG_2ADDR:
5311 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005312 kRegTypeLongLo, kRegTypeLongLo, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005313 break;
5314 case OP_ADD_FLOAT_2ADDR:
5315 case OP_SUB_FLOAT_2ADDR:
5316 case OP_MUL_FLOAT_2ADDR:
5317 case OP_DIV_FLOAT_2ADDR:
5318 case OP_REM_FLOAT_2ADDR:
5319 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005320 kRegTypeFloat, kRegTypeFloat, kRegTypeFloat, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005321 break;
5322 case OP_ADD_DOUBLE_2ADDR:
5323 case OP_SUB_DOUBLE_2ADDR:
5324 case OP_MUL_DOUBLE_2ADDR:
5325 case OP_DIV_DOUBLE_2ADDR:
5326 case OP_REM_DOUBLE_2ADDR:
5327 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005328 kRegTypeDoubleLo, kRegTypeDoubleLo, kRegTypeDoubleLo, false,
5329 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005330 break;
5331 case OP_ADD_INT_LIT16:
5332 case OP_RSUB_INT:
5333 case OP_MUL_INT_LIT16:
5334 case OP_DIV_INT_LIT16:
5335 case OP_REM_INT_LIT16:
5336 checkLitop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005337 kRegTypeInteger, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005338 break;
5339 case OP_AND_INT_LIT16:
5340 case OP_OR_INT_LIT16:
5341 case OP_XOR_INT_LIT16:
5342 checkLitop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005343 kRegTypeInteger, kRegTypeInteger, true, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005344 break;
5345 case OP_ADD_INT_LIT8:
5346 case OP_RSUB_INT_LIT8:
5347 case OP_MUL_INT_LIT8:
5348 case OP_DIV_INT_LIT8:
5349 case OP_REM_INT_LIT8:
5350 case OP_SHL_INT_LIT8:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005351 checkLitop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005352 kRegTypeInteger, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005353 break;
Andy McFadden80d25ea2009-06-12 07:26:17 -07005354 case OP_SHR_INT_LIT8:
5355 tmpType = adjustForRightShift(workRegs, insnRegCount,
5356 decInsn.vB, decInsn.vC, false, &failure);
5357 checkLitop(workRegs, insnRegCount, &decInsn,
5358 tmpType, kRegTypeInteger, false, &failure);
5359 break;
5360 case OP_USHR_INT_LIT8:
5361 tmpType = adjustForRightShift(workRegs, insnRegCount,
5362 decInsn.vB, decInsn.vC, true, &failure);
5363 checkLitop(workRegs, insnRegCount, &decInsn,
5364 tmpType, kRegTypeInteger, false, &failure);
5365 break;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005366 case OP_AND_INT_LIT8:
5367 case OP_OR_INT_LIT8:
5368 case OP_XOR_INT_LIT8:
5369 checkLitop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005370 kRegTypeInteger, kRegTypeInteger, true, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005371 break;
5372
Andy McFaddenb51ea112009-05-08 16:50:17 -07005373 /*
5374 * This falls into the general category of "optimized" instructions,
5375 * which don't generally appear during verification. Because it's
5376 * inserted in the course of verification, we can expect to see it here.
5377 */
5378 case OP_THROW_VERIFICATION_ERROR:
5379 break;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005380
5381 /*
5382 * Verifying "quickened" instructions is tricky, because we have
5383 * discarded the original field/method information. The byte offsets
5384 * and vtable indices only have meaning in the context of an object
5385 * instance.
5386 *
5387 * If a piece of code declares a local reference variable, assigns
5388 * null to it, and then issues a virtual method call on it, we
5389 * cannot evaluate the method call during verification. This situation
5390 * isn't hard to handle, since we know the call will always result in an
5391 * NPE, and the arguments and return value don't matter. Any code that
5392 * depends on the result of the method call is inaccessible, so the
5393 * fact that we can't fully verify anything that comes after the bad
5394 * call is not a problem.
5395 *
5396 * We must also consider the case of multiple code paths, only some of
5397 * which involve a null reference. We can completely verify the method
5398 * if we sidestep the results of executing with a null reference.
5399 * For example, if on the first pass through the code we try to do a
5400 * virtual method invocation through a null ref, we have to skip the
5401 * method checks and have the method return a "wildcard" type (which
5402 * merges with anything to become that other thing). The move-result
5403 * will tell us if it's a reference, single-word numeric, or double-word
5404 * value. We continue to perform the verification, and at the end of
5405 * the function any invocations that were never fully exercised are
5406 * marked as null-only.
5407 *
5408 * We would do something similar for the field accesses. The field's
5409 * type, once known, can be used to recover the width of short integers.
5410 * If the object reference was null, the field-get returns the "wildcard"
5411 * type, which is acceptable for any operation.
5412 */
5413 case OP_EXECUTE_INLINE:
Andy McFaddenb0a05412009-11-19 10:23:41 -08005414 case OP_EXECUTE_INLINE_RANGE:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005415 case OP_INVOKE_DIRECT_EMPTY:
5416 case OP_IGET_QUICK:
5417 case OP_IGET_WIDE_QUICK:
5418 case OP_IGET_OBJECT_QUICK:
5419 case OP_IPUT_QUICK:
5420 case OP_IPUT_WIDE_QUICK:
5421 case OP_IPUT_OBJECT_QUICK:
5422 case OP_INVOKE_VIRTUAL_QUICK:
5423 case OP_INVOKE_VIRTUAL_QUICK_RANGE:
5424 case OP_INVOKE_SUPER_QUICK:
5425 case OP_INVOKE_SUPER_QUICK_RANGE:
Andy McFadden291758c2010-09-10 08:04:52 -07005426 case OP_RETURN_VOID_BARRIER:
Andy McFadden62a75162009-04-17 17:23:37 -07005427 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005428 break;
5429
Andy McFadden96516932009-10-28 17:39:02 -07005430 /* these should never appear during verification */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005431 case OP_UNUSED_3E:
5432 case OP_UNUSED_3F:
5433 case OP_UNUSED_40:
5434 case OP_UNUSED_41:
5435 case OP_UNUSED_42:
5436 case OP_UNUSED_43:
5437 case OP_UNUSED_73:
5438 case OP_UNUSED_79:
5439 case OP_UNUSED_7A:
Andy McFadden96516932009-10-28 17:39:02 -07005440 case OP_BREAKPOINT:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005441 case OP_UNUSED_FF:
Andy McFadden62a75162009-04-17 17:23:37 -07005442 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005443 break;
5444
5445 /*
5446 * DO NOT add a "default" clause here. Without it the compiler will
5447 * complain if an instruction is missing (which is desirable).
5448 */
5449 }
5450
Andy McFadden62a75162009-04-17 17:23:37 -07005451 if (!VERIFY_OK(failure)) {
Andy McFaddenb51ea112009-05-08 16:50:17 -07005452 if (failure == VERIFY_ERROR_GENERIC || gDvm.optimizing) {
5453 /* immediate failure, reject class */
5454 LOG_VFY_METH(meth, "VFY: rejecting opcode 0x%02x at 0x%04x\n",
5455 decInsn.opCode, insnIdx);
5456 goto bail;
5457 } else {
5458 /* replace opcode and continue on */
5459 LOGD("VFY: replacing opcode 0x%02x at 0x%04x\n",
5460 decInsn.opCode, insnIdx);
5461 if (!replaceFailingInstruction(meth, insnFlags, insnIdx, failure)) {
5462 LOG_VFY_METH(meth, "VFY: rejecting opcode 0x%02x at 0x%04x\n",
5463 decInsn.opCode, insnIdx);
5464 goto bail;
5465 }
5466 /* IMPORTANT: meth->insns may have been changed */
5467 insns = meth->insns + insnIdx;
5468
5469 /* continue on as if we just handled a throw-verification-error */
5470 failure = VERIFY_ERROR_NONE;
5471 nextFlags = kInstrCanThrow;
5472 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005473 }
5474
5475 /*
5476 * If we didn't just set the result register, clear it out. This
5477 * ensures that you can only use "move-result" immediately after the
Andy McFadden2e1ee502010-03-24 13:25:53 -07005478 * result is set. (We could check this statically, but it's not
5479 * expensive and it makes our debugging output cleaner.)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005480 */
5481 if (!justSetResult) {
5482 int reg = RESULT_REGISTER(insnRegCount);
5483 workRegs[reg] = workRegs[reg+1] = kRegTypeUnknown;
5484 }
5485
5486 /*
5487 * Handle "continue". Tag the next consecutive instruction.
5488 */
5489 if ((nextFlags & kInstrCanContinue) != 0) {
5490 int insnWidth = dvmInsnGetWidth(insnFlags, insnIdx);
5491 if (insnIdx+insnWidth >= insnsSize) {
5492 LOG_VFY_METH(meth,
5493 "VFY: execution can walk off end of code area (from 0x%x)\n",
5494 insnIdx);
5495 goto bail;
5496 }
5497
5498 /*
5499 * The only way to get to a move-exception instruction is to get
5500 * thrown there. Make sure the next instruction isn't one.
5501 */
5502 if (!checkMoveException(meth, insnIdx+insnWidth, "next"))
5503 goto bail;
5504
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005505 if (getRegisterLine(regTable, insnIdx+insnWidth) != NULL) {
Andy McFadden06b7a282009-05-11 10:44:52 -07005506 /*
5507 * Merge registers into what we have for the next instruction,
5508 * and set the "changed" flag if needed.
5509 */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005510 updateRegisters(meth, insnFlags, regTable, insnIdx+insnWidth,
5511 workRegs);
5512 } else {
The Android Open Source Project99409882009-03-18 22:20:24 -07005513 /*
Andy McFadden06b7a282009-05-11 10:44:52 -07005514 * We're not recording register data for the next instruction,
5515 * so we don't know what the prior state was. We have to
5516 * assume that something has changed and re-evaluate it.
The Android Open Source Project99409882009-03-18 22:20:24 -07005517 */
5518 dvmInsnSetChanged(insnFlags, insnIdx+insnWidth, true);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005519 }
5520 }
5521
5522 /*
5523 * Handle "branch". Tag the branch target.
5524 *
5525 * NOTE: instructions like OP_EQZ provide information about the state
5526 * of the register when the branch is taken or not taken. For example,
5527 * somebody could get a reference field, check it for zero, and if the
5528 * branch is taken immediately store that register in a boolean field
5529 * since the value is known to be zero. We do not currently account for
5530 * that, and will reject the code.
5531 */
5532 if ((nextFlags & kInstrCanBranch) != 0) {
5533 bool isConditional;
5534
5535 if (!dvmGetBranchTarget(meth, insnFlags, insnIdx, &branchTarget,
5536 &isConditional))
5537 {
5538 /* should never happen after static verification */
5539 LOG_VFY_METH(meth, "VFY: bad branch at %d\n", insnIdx);
5540 goto bail;
5541 }
5542 assert(isConditional || (nextFlags & kInstrCanContinue) == 0);
5543 assert(!isConditional || (nextFlags & kInstrCanContinue) != 0);
5544
5545 if (!checkMoveException(meth, insnIdx+branchTarget, "branch"))
5546 goto bail;
5547
The Android Open Source Project99409882009-03-18 22:20:24 -07005548 /* update branch target, set "changed" if appropriate */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005549 updateRegisters(meth, insnFlags, regTable, insnIdx+branchTarget,
5550 workRegs);
5551 }
5552
5553 /*
5554 * Handle "switch". Tag all possible branch targets.
5555 *
5556 * We've already verified that the table is structurally sound, so we
5557 * just need to walk through and tag the targets.
5558 */
5559 if ((nextFlags & kInstrCanSwitch) != 0) {
5560 int offsetToSwitch = insns[1] | (((s4)insns[2]) << 16);
5561 const u2* switchInsns = insns + offsetToSwitch;
5562 int switchCount = switchInsns[1];
5563 int offsetToTargets, targ;
5564
5565 if ((*insns & 0xff) == OP_PACKED_SWITCH) {
5566 /* 0=sig, 1=count, 2/3=firstKey */
5567 offsetToTargets = 4;
5568 } else {
5569 /* 0=sig, 1=count, 2..count*2 = keys */
5570 assert((*insns & 0xff) == OP_SPARSE_SWITCH);
5571 offsetToTargets = 2 + 2*switchCount;
5572 }
5573
5574 /* verify each switch target */
5575 for (targ = 0; targ < switchCount; targ++) {
5576 int offset, absOffset;
5577
5578 /* offsets are 32-bit, and only partly endian-swapped */
5579 offset = switchInsns[offsetToTargets + targ*2] |
5580 (((s4) switchInsns[offsetToTargets + targ*2 +1]) << 16);
5581 absOffset = insnIdx + offset;
5582
5583 assert(absOffset >= 0 && absOffset < insnsSize);
5584
5585 if (!checkMoveException(meth, absOffset, "switch"))
5586 goto bail;
5587
5588 updateRegisters(meth, insnFlags, regTable, absOffset, workRegs);
5589 }
5590 }
5591
5592 /*
5593 * Handle instructions that can throw and that are sitting in a
5594 * "try" block. (If they're not in a "try" block when they throw,
5595 * control transfers out of the method.)
5596 */
5597 if ((nextFlags & kInstrCanThrow) != 0 && dvmInsnIsInTry(insnFlags, insnIdx))
5598 {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005599 const DexCode* pCode = dvmGetMethodCode(meth);
5600 DexCatchIterator iterator;
5601
5602 if (dexFindCatchHandler(&iterator, pCode, insnIdx)) {
5603 for (;;) {
5604 DexCatchHandler* handler = dexCatchIteratorNext(&iterator);
5605
5606 if (handler == NULL) {
5607 break;
5608 }
5609
5610 /* note we use entryRegs, not workRegs */
5611 updateRegisters(meth, insnFlags, regTable, handler->address,
5612 entryRegs);
5613 }
5614 }
5615 }
5616
5617 /*
5618 * Update startGuess. Advance to the next instruction of that's
5619 * possible, otherwise use the branch target if one was found. If
5620 * neither of those exists we're in a return or throw; leave startGuess
5621 * alone and let the caller sort it out.
5622 */
5623 if ((nextFlags & kInstrCanContinue) != 0) {
5624 *pStartGuess = insnIdx + dvmInsnGetWidth(insnFlags, insnIdx);
5625 } else if ((nextFlags & kInstrCanBranch) != 0) {
5626 /* we're still okay if branchTarget is zero */
5627 *pStartGuess = insnIdx + branchTarget;
5628 }
5629
5630 assert(*pStartGuess >= 0 && *pStartGuess < insnsSize &&
5631 dvmInsnGetWidth(insnFlags, *pStartGuess) != 0);
5632
5633 result = true;
5634
5635bail:
5636 return result;
5637}
5638
Andy McFaddenb51ea112009-05-08 16:50:17 -07005639
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005640/*
5641 * callback function used in dumpRegTypes to print local vars
5642 * valid at a given address.
5643 */
5644static void logLocalsCb(void *cnxt, u2 reg, u4 startAddress, u4 endAddress,
5645 const char *name, const char *descriptor,
5646 const char *signature)
5647{
5648 int addr = *((int *)cnxt);
5649
5650 if (addr >= (int) startAddress && addr < (int) endAddress)
5651 {
5652 LOGI(" %2d: '%s' %s\n", reg, name, descriptor);
5653 }
5654}
5655
5656/*
5657 * Dump the register types for the specifed address to the log file.
5658 */
5659static void dumpRegTypes(const Method* meth, const InsnFlags* insnFlags,
5660 const RegType* addrRegs, int addr, const char* addrName,
5661 const UninitInstanceMap* uninitMap, int displayFlags)
5662{
5663 int regCount = meth->registersSize;
5664 int fullRegCount = regCount + kExtraRegs;
5665 bool branchTarget = dvmInsnIsBranchTarget(insnFlags, addr);
5666 int i;
5667
5668 assert(addr >= 0 && addr < (int) dvmGetMethodInsnsSize(meth));
5669
5670 int regCharSize = fullRegCount + (fullRegCount-1)/4 + 2 +1;
5671 char regChars[regCharSize +1];
5672 memset(regChars, ' ', regCharSize);
5673 regChars[0] = '[';
5674 if (regCount == 0)
5675 regChars[1] = ']';
5676 else
5677 regChars[1 + (regCount-1) + (regCount-1)/4 +1] = ']';
5678 regChars[regCharSize] = '\0';
5679
5680 //const RegType* addrRegs = getRegisterLine(regTable, addr);
5681
5682 for (i = 0; i < regCount + kExtraRegs; i++) {
5683 char tch;
5684
5685 switch (addrRegs[i]) {
5686 case kRegTypeUnknown: tch = '.'; break;
5687 case kRegTypeConflict: tch = 'X'; break;
5688 case kRegTypeFloat: tch = 'F'; break;
5689 case kRegTypeZero: tch = '0'; break;
5690 case kRegTypeOne: tch = '1'; break;
5691 case kRegTypeBoolean: tch = 'Z'; break;
5692 case kRegTypePosByte: tch = 'b'; break;
5693 case kRegTypeByte: tch = 'B'; break;
5694 case kRegTypePosShort: tch = 's'; break;
5695 case kRegTypeShort: tch = 'S'; break;
5696 case kRegTypeChar: tch = 'C'; break;
5697 case kRegTypeInteger: tch = 'I'; break;
5698 case kRegTypeLongLo: tch = 'J'; break;
5699 case kRegTypeLongHi: tch = 'j'; break;
5700 case kRegTypeDoubleLo: tch = 'D'; break;
5701 case kRegTypeDoubleHi: tch = 'd'; break;
5702 default:
5703 if (regTypeIsReference(addrRegs[i])) {
5704 if (regTypeIsUninitReference(addrRegs[i]))
5705 tch = 'U';
5706 else
5707 tch = 'L';
5708 } else {
5709 tch = '*';
5710 assert(false);
5711 }
5712 break;
5713 }
5714
5715 if (i < regCount)
5716 regChars[1 + i + (i/4)] = tch;
5717 else
5718 regChars[1 + i + (i/4) + 2] = tch;
5719 }
5720
5721 if (addr == 0 && addrName != NULL)
5722 LOGI("%c%s %s\n", branchTarget ? '>' : ' ', addrName, regChars);
5723 else
5724 LOGI("%c0x%04x %s\n", branchTarget ? '>' : ' ', addr, regChars);
5725
5726 if (displayFlags & DRT_SHOW_REF_TYPES) {
5727 for (i = 0; i < regCount + kExtraRegs; i++) {
5728 if (regTypeIsReference(addrRegs[i]) && addrRegs[i] != kRegTypeZero)
5729 {
5730 ClassObject* clazz;
5731
5732 clazz = regTypeReferenceToClass(addrRegs[i], uninitMap);
5733 assert(dvmValidateObject((Object*)clazz));
5734 if (i < regCount) {
5735 LOGI(" %2d: 0x%08x %s%s\n",
5736 i, addrRegs[i],
5737 regTypeIsUninitReference(addrRegs[i]) ? "[U]" : "",
5738 clazz->descriptor);
5739 } else {
5740 LOGI(" RS: 0x%08x %s%s\n",
5741 addrRegs[i],
5742 regTypeIsUninitReference(addrRegs[i]) ? "[U]" : "",
5743 clazz->descriptor);
5744 }
5745 }
5746 }
5747 }
5748 if (displayFlags & DRT_SHOW_LOCALS) {
5749 dexDecodeDebugInfo(meth->clazz->pDvmDex->pDexFile,
5750 dvmGetMethodCode(meth),
5751 meth->clazz->descriptor,
5752 meth->prototype.protoIdx,
5753 meth->accessFlags,
5754 NULL, logLocalsCb, &addr);
5755 }
5756}