blob: a1862bb4ba194db9239642ada3ed96b6b3c09424 [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"
32#include "analysis/RegisterMap.h"
33#include "libdex/DexCatch.h"
34#include "libdex/InstrUtils.h"
35
36#include <stddef.h>
37
38
39/*
40 * We don't need to store the register data for many instructions, because
41 * we either only need it at branch points (for verification) or GC points
42 * and branches (for verification + type-precise register analysis).
43 */
44typedef enum RegisterTrackingMode {
45 kTrackRegsBranches,
46 kTrackRegsGcPoints,
47 kTrackRegsAll
48} RegisterTrackingMode;
49
50/*
51 * Set this to enable dead code scanning. This is not required, but it's
52 * very useful when testing changes to the verifier (to make sure we're not
53 * skipping over stuff) and for checking the optimized output from "dx".
54 * The only reason not to do it is that it slightly increases the time
55 * required to perform verification.
56 */
57#define DEAD_CODE_SCAN true
58
59static bool gDebugVerbose = false; // TODO: remove this
60
61#if 0
62int gDvm__totalInstr = 0;
63int gDvm__gcInstr = 0;
64int gDvm__gcData = 0;
65int gDvm__gcSimpleData = 0;
66#endif
67
68/*
69 * Selectively enable verbose debug logging -- use this to activate
70 * dumpRegTypes() calls for all instructions in the specified method.
71 */
72static inline bool doVerboseLogging(const Method* meth) {
73 return false; /* COMMENT OUT to enable verbose debugging */
74
The Android Open Source Project99409882009-03-18 22:20:24 -070075 const char* cd = "Landroid/net/http/Request;";
76 const char* mn = "readResponse";
77 const char* sg = "(Landroid/net/http/AndroidHttpClientConnection;)V";
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080078 return (strcmp(meth->clazz->descriptor, cd) == 0 &&
79 dvmCompareNameDescriptorAndMethod(mn, sg, meth) == 0);
80}
81
82#define SHOW_REG_DETAILS (0 /*| DRT_SHOW_REF_TYPES | DRT_SHOW_LOCALS*/)
83
84/*
85 * We need an extra "pseudo register" to hold the return type briefly. It
86 * can be category 1 or 2, so we need two slots.
87 */
88#define kExtraRegs 2
89#define RESULT_REGISTER(_insnRegCount) (_insnRegCount)
90
91/*
92 * Big fat collection of registers.
93 */
94typedef struct RegisterTable {
95 /*
96 * Array of RegType arrays, one per address in the method. We only
97 * set the pointers for certain addresses, based on what we're trying
98 * to accomplish.
99 */
100 RegType** addrRegs;
101
102 /*
103 * Number of registers we track for each instruction. This is equal
104 * to the method's declared "registersSize" plus kExtraRegs.
105 */
106 int insnRegCountPlus;
107
108 /*
109 * A single large alloc, with all of the storage needed for addrRegs.
110 */
111 RegType* regAlloc;
112} RegisterTable;
113
114
115/* fwd */
116static void checkMergeTab(void);
117static bool isInitMethod(const Method* meth);
118static RegType getInvocationThis(const RegType* insnRegs,\
Andy McFadden62a75162009-04-17 17:23:37 -0700119 const int insnRegCount, const DecodedInstruction* pDecInsn,
120 VerifyError* pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800121static void verifyRegisterType(const RegType* insnRegs, const int insnRegCount,\
Andy McFadden62a75162009-04-17 17:23:37 -0700122 u4 vsrc, RegType checkType, VerifyError* pFailure);
Andy McFaddenb51ea112009-05-08 16:50:17 -0700123static bool doCodeVerification(Method* meth, InsnFlags* insnFlags,\
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800124 RegisterTable* regTable, UninitInstanceMap* uninitMap);
Andy McFaddenb51ea112009-05-08 16:50:17 -0700125static bool verifyInstruction(Method* meth, InsnFlags* insnFlags,\
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800126 RegisterTable* regTable, RegType* workRegs, int insnIdx,
127 UninitInstanceMap* uninitMap, int* pStartGuess);
128static ClassObject* findCommonSuperclass(ClassObject* c1, ClassObject* c2);
129static void dumpRegTypes(const Method* meth, const InsnFlags* insnFlags,\
130 const RegType* addrRegs, int addr, const char* addrName,
131 const UninitInstanceMap* uninitMap, int displayFlags);
132
133/* bit values for dumpRegTypes() "displayFlags" */
134enum {
135 DRT_SIMPLE = 0,
136 DRT_SHOW_REF_TYPES = 0x01,
137 DRT_SHOW_LOCALS = 0x02,
138};
139
140
141/*
142 * ===========================================================================
143 * RegType and UninitInstanceMap utility functions
144 * ===========================================================================
145 */
146
147#define __ kRegTypeUnknown
148#define _U kRegTypeUninit
149#define _X kRegTypeConflict
150#define _F kRegTypeFloat
151#define _0 kRegTypeZero
152#define _1 kRegTypeOne
153#define _Z kRegTypeBoolean
154#define _b kRegTypePosByte
155#define _B kRegTypeByte
156#define _s kRegTypePosShort
157#define _S kRegTypeShort
158#define _C kRegTypeChar
159#define _I kRegTypeInteger
160#define _J kRegTypeLongLo
161#define _j kRegTypeLongHi
162#define _D kRegTypeDoubleLo
163#define _d kRegTypeDoubleHi
164
165/*
166 * Merge result table for primitive values. The table is symmetric along
167 * the diagonal.
168 *
169 * Note that 32-bit int/float do not merge into 64-bit long/double. This
170 * is a register merge, not a widening conversion. Only the "implicit"
171 * widening within a category, e.g. byte to short, is allowed.
172 *
173 * Because Dalvik does not draw a distinction between int and float, we
174 * have to allow free exchange between 32-bit int/float and 64-bit
175 * long/double.
176 *
177 * Note that Uninit+Uninit=Uninit. This holds true because we only
178 * use this when the RegType value is exactly equal to kRegTypeUninit, which
179 * can only happen for the zeroeth entry in the table.
180 *
181 * "Unknown" never merges with anything known. The only time a register
182 * transitions from "unknown" to "known" is when we're executing code
183 * for the first time, and we handle that with a simple copy.
184 */
185const char gDvmMergeTab[kRegTypeMAX][kRegTypeMAX] =
186{
187 /* chk: _ U X F 0 1 Z b B s S C I J j D d */
188 { /*_*/ __,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X },
189 { /*U*/ _X,_U,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X },
190 { /*X*/ _X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X },
191 { /*F*/ _X,_X,_X,_F,_F,_F,_F,_F,_F,_F,_F,_F,_F,_X,_X,_X,_X },
192 { /*0*/ _X,_X,_X,_F,_0,_Z,_Z,_b,_B,_s,_S,_C,_I,_X,_X,_X,_X },
193 { /*1*/ _X,_X,_X,_F,_Z,_1,_Z,_b,_B,_s,_S,_C,_I,_X,_X,_X,_X },
194 { /*Z*/ _X,_X,_X,_F,_Z,_Z,_Z,_b,_B,_s,_S,_C,_I,_X,_X,_X,_X },
195 { /*b*/ _X,_X,_X,_F,_b,_b,_b,_b,_B,_s,_S,_C,_I,_X,_X,_X,_X },
196 { /*B*/ _X,_X,_X,_F,_B,_B,_B,_B,_B,_S,_S,_I,_I,_X,_X,_X,_X },
197 { /*s*/ _X,_X,_X,_F,_s,_s,_s,_s,_S,_s,_S,_C,_I,_X,_X,_X,_X },
198 { /*S*/ _X,_X,_X,_F,_S,_S,_S,_S,_S,_S,_S,_I,_I,_X,_X,_X,_X },
199 { /*C*/ _X,_X,_X,_F,_C,_C,_C,_C,_I,_C,_I,_C,_I,_X,_X,_X,_X },
200 { /*I*/ _X,_X,_X,_F,_I,_I,_I,_I,_I,_I,_I,_I,_I,_X,_X,_X,_X },
201 { /*J*/ _X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_J,_X,_J,_X },
202 { /*j*/ _X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_j,_X,_j },
203 { /*D*/ _X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_J,_X,_D,_X },
204 { /*d*/ _X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_X,_j,_X,_d },
205};
206
207#undef __
208#undef _U
209#undef _X
210#undef _F
211#undef _0
212#undef _1
213#undef _Z
214#undef _b
215#undef _B
216#undef _s
217#undef _S
218#undef _C
219#undef _I
220#undef _J
221#undef _j
222#undef _D
223#undef _d
224
225#ifndef NDEBUG
226/*
227 * Verify symmetry in the conversion table.
228 */
229static void checkMergeTab(void)
230{
231 int i, j;
232
233 for (i = 0; i < kRegTypeMAX; i++) {
234 for (j = i; j < kRegTypeMAX; j++) {
235 if (gDvmMergeTab[i][j] != gDvmMergeTab[j][i]) {
236 LOGE("Symmetry violation: %d,%d vs %d,%d\n", i, j, j, i);
237 dvmAbort();
238 }
239 }
240 }
241}
242#endif
243
244/*
245 * Determine whether we can convert "srcType" to "checkType", where
246 * "checkType" is one of the category-1 non-reference types.
247 *
248 * 32-bit int and float are interchangeable.
249 */
250static bool canConvertTo1nr(RegType srcType, RegType checkType)
251{
252 static const char convTab
253 [kRegType1nrEND-kRegType1nrSTART+1][kRegType1nrEND-kRegType1nrSTART+1] =
254 {
255 /* chk: F 0 1 Z b B s S C I */
256 { /*F*/ 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 },
257 { /*0*/ 1, 1, 0, 1, 1, 1, 1, 1, 1, 1 },
258 { /*1*/ 1, 0, 1, 1, 1, 1, 1, 1, 1, 1 },
259 { /*Z*/ 1, 0, 0, 1, 1, 1, 1, 1, 1, 1 },
260 { /*b*/ 1, 0, 0, 0, 1, 1, 1, 1, 1, 1 },
261 { /*B*/ 1, 0, 0, 0, 0, 1, 0, 1, 0, 1 },
262 { /*s*/ 1, 0, 0, 0, 0, 0, 1, 1, 1, 1 },
263 { /*S*/ 1, 0, 0, 0, 0, 0, 0, 1, 0, 1 },
264 { /*C*/ 1, 0, 0, 0, 0, 0, 0, 0, 1, 1 },
265 { /*I*/ 1, 0, 0, 0, 0, 0, 0, 0, 0, 1 },
266 };
267
268 assert(checkType >= kRegType1nrSTART && checkType <= kRegType1nrEND);
269#if 0
270 if (checkType < kRegType1nrSTART || checkType > kRegType1nrEND) {
271 LOG_VFY("Unexpected checkType %d (srcType=%d)\n", checkType, srcType);
272 assert(false);
273 return false;
274 }
275#endif
276
277 //printf("convTab[%d][%d] = %d\n", srcType, checkType,
278 // convTab[srcType-kRegType1nrSTART][checkType-kRegType1nrSTART]);
279 if (srcType >= kRegType1nrSTART && srcType <= kRegType1nrEND)
280 return (bool) convTab[srcType-kRegType1nrSTART][checkType-kRegType1nrSTART];
281
282 return false;
283}
284
285/*
286 * Determine whether the types are compatible. In Dalvik, 64-bit doubles
287 * and longs are interchangeable.
288 */
289static bool canConvertTo2(RegType srcType, RegType checkType)
290{
291 return ((srcType == kRegTypeLongLo || srcType == kRegTypeDoubleLo) &&
292 (checkType == kRegTypeLongLo || checkType == kRegTypeDoubleLo));
293}
294
295/*
296 * Determine whether or not "instrType" and "targetType" are compatible,
297 * for purposes of getting or setting a value in a field or array. The
298 * idea is that an instruction with a category 1nr type (say, aget-short
299 * or iput-boolean) is accessing a static field, instance field, or array
300 * entry, and we want to make sure sure that the operation is legal.
301 *
302 * At a minimum, source and destination must have the same width. We
303 * further refine this to assert that "short" and "char" are not
304 * compatible, because the sign-extension is different on the "get"
305 * operations. As usual, "float" and "int" are interoperable.
306 *
307 * We're not considering the actual contents of the register, so we'll
308 * never get "pseudo-types" like kRegTypeZero or kRegTypePosShort. We
309 * could get kRegTypeUnknown in "targetType" if a field or array class
310 * lookup failed. Category 2 types and references are checked elsewhere.
311 */
312static bool checkFieldArrayStore1nr(RegType instrType, RegType targetType)
313{
314 if (instrType == targetType)
315 return true; /* quick positive; most common case */
316
317 if ((instrType == kRegTypeInteger && targetType == kRegTypeFloat) ||
318 (instrType == kRegTypeFloat && targetType == kRegTypeInteger))
319 {
320 return true;
321 }
322
323 return false;
324}
325
326/*
327 * Convert a VM PrimitiveType enum value to the equivalent RegType value.
328 */
329static RegType primitiveTypeToRegType(PrimitiveType primType)
330{
The Android Open Source Project99409882009-03-18 22:20:24 -0700331 static const struct {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800332 RegType regType; /* type equivalent */
333 PrimitiveType primType; /* verification */
334 } convTab[] = {
335 /* must match order of enum in Object.h */
336 { kRegTypeBoolean, PRIM_BOOLEAN },
337 { kRegTypeChar, PRIM_CHAR },
338 { kRegTypeFloat, PRIM_FLOAT },
339 { kRegTypeDoubleLo, PRIM_DOUBLE },
340 { kRegTypeByte, PRIM_BYTE },
341 { kRegTypeShort, PRIM_SHORT },
342 { kRegTypeInteger, PRIM_INT },
343 { kRegTypeLongLo, PRIM_LONG },
344 // PRIM_VOID
345 };
346
347 if (primType < 0 || primType > (int) (sizeof(convTab) / sizeof(convTab[0])))
348 {
349 assert(false);
350 return kRegTypeUnknown;
351 }
352
353 assert(convTab[primType].primType == primType);
354 return convTab[primType].regType;
355}
356
357/*
358 * Create a new uninitialized instance map.
359 *
360 * The map is allocated and populated with address entries. The addresses
361 * appear in ascending order to allow binary searching.
362 *
363 * Very few methods have 10 or more new-instance instructions; the
364 * majority have 0 or 1. Occasionally a static initializer will have 200+.
365 */
366UninitInstanceMap* dvmCreateUninitInstanceMap(const Method* meth,
367 const InsnFlags* insnFlags, int newInstanceCount)
368{
369 const int insnsSize = dvmGetMethodInsnsSize(meth);
370 const u2* insns = meth->insns;
371 UninitInstanceMap* uninitMap;
372 bool isInit = false;
373 int idx, addr;
374
375 if (isInitMethod(meth)) {
376 newInstanceCount++;
377 isInit = true;
378 }
379
380 /*
381 * Allocate the header and map as a single unit.
382 *
383 * TODO: consider having a static instance so we can avoid allocations.
384 * I don't think the verifier is guaranteed to be single-threaded when
385 * running in the VM (rather than dexopt), so that must be taken into
386 * account.
387 */
388 int size = offsetof(UninitInstanceMap, map) +
389 newInstanceCount * sizeof(uninitMap->map[0]);
390 uninitMap = calloc(1, size);
391 if (uninitMap == NULL)
392 return NULL;
393 uninitMap->numEntries = newInstanceCount;
394
395 idx = 0;
396 if (isInit) {
397 uninitMap->map[idx++].addr = kUninitThisArgAddr;
398 }
399
400 /*
401 * Run through and find the new-instance instructions.
402 */
403 for (addr = 0; addr < insnsSize; /**/) {
404 int width = dvmInsnGetWidth(insnFlags, addr);
405
406 if ((*insns & 0xff) == OP_NEW_INSTANCE)
407 uninitMap->map[idx++].addr = addr;
408
409 addr += width;
410 insns += width;
411 }
412
413 assert(idx == newInstanceCount);
414 return uninitMap;
415}
416
417/*
418 * Free the map.
419 */
420void dvmFreeUninitInstanceMap(UninitInstanceMap* uninitMap)
421{
422 free(uninitMap);
423}
424
425/*
426 * Set the class object associated with the instruction at "addr".
427 *
428 * Returns the map slot index, or -1 if the address isn't listed in the map
429 * (shouldn't happen) or if a class is already associated with the address
430 * (bad bytecode).
431 *
432 * Entries, once set, do not change -- a given address can only allocate
433 * one type of object.
434 */
435int dvmSetUninitInstance(UninitInstanceMap* uninitMap, int addr,
436 ClassObject* clazz)
437{
438 int idx;
439
440 assert(clazz != NULL);
441
442 /* TODO: binary search when numEntries > 8 */
443 for (idx = uninitMap->numEntries - 1; idx >= 0; idx--) {
444 if (uninitMap->map[idx].addr == addr) {
445 if (uninitMap->map[idx].clazz != NULL &&
446 uninitMap->map[idx].clazz != clazz)
447 {
448 LOG_VFY("VFY: addr %d already set to %p, not setting to %p\n",
449 addr, uninitMap->map[idx].clazz, clazz);
450 return -1; // already set to something else??
451 }
452 uninitMap->map[idx].clazz = clazz;
453 return idx;
454 }
455 }
456
457 LOG_VFY("VFY: addr %d not found in uninit map\n", addr);
458 assert(false); // shouldn't happen
459 return -1;
460}
461
462/*
463 * Get the class object at the specified index.
464 */
465ClassObject* dvmGetUninitInstance(const UninitInstanceMap* uninitMap, int idx)
466{
467 assert(idx >= 0 && idx < uninitMap->numEntries);
468 return uninitMap->map[idx].clazz;
469}
470
471/* determine if "type" is actually an object reference (init/uninit/zero) */
472static inline bool regTypeIsReference(RegType type) {
473 return (type > kRegTypeMAX || type == kRegTypeUninit ||
474 type == kRegTypeZero);
475}
476
477/* determine if "type" is an uninitialized object reference */
478static inline bool regTypeIsUninitReference(RegType type) {
479 return ((type & kRegTypeUninitMask) == kRegTypeUninit);
480}
481
482/* convert the initialized reference "type" to a ClassObject pointer */
483/* (does not expect uninit ref types or "zero") */
484static ClassObject* regTypeInitializedReferenceToClass(RegType type)
485{
486 assert(regTypeIsReference(type) && type != kRegTypeZero);
487 if ((type & 0x01) == 0) {
488 return (ClassObject*) type;
489 } else {
490 //LOG_VFY("VFY: attempted to use uninitialized reference\n");
491 return NULL;
492 }
493}
494
495/* extract the index into the uninitialized instance map table */
496static inline int regTypeToUninitIndex(RegType type) {
497 assert(regTypeIsUninitReference(type));
498 return (type & ~kRegTypeUninitMask) >> kRegTypeUninitShift;
499}
500
501/* convert the reference "type" to a ClassObject pointer */
502static ClassObject* regTypeReferenceToClass(RegType type,
503 const UninitInstanceMap* uninitMap)
504{
505 assert(regTypeIsReference(type) && type != kRegTypeZero);
506 if (regTypeIsUninitReference(type)) {
507 assert(uninitMap != NULL);
508 return dvmGetUninitInstance(uninitMap, regTypeToUninitIndex(type));
509 } else {
510 return (ClassObject*) type;
511 }
512}
513
514/* convert the ClassObject pointer to an (initialized) register type */
515static inline RegType regTypeFromClass(ClassObject* clazz) {
516 return (u4) clazz;
517}
518
519/* return the RegType for the uninitialized reference in slot "uidx" */
520static RegType regTypeFromUninitIndex(int uidx) {
521 return (u4) (kRegTypeUninit | (uidx << kRegTypeUninitShift));
522}
523
524
525/*
526 * ===========================================================================
527 * Signature operations
528 * ===========================================================================
529 */
530
531/*
532 * Is this method a constructor?
533 */
534static bool isInitMethod(const Method* meth)
535{
536 return (*meth->name == '<' && strcmp(meth->name+1, "init>") == 0);
537}
538
539/*
540 * Is this method a class initializer?
541 */
542static bool isClassInitMethod(const Method* meth)
543{
544 return (*meth->name == '<' && strcmp(meth->name+1, "clinit>") == 0);
545}
546
547/*
548 * Look up a class reference given as a simple string descriptor.
Andy McFadden62a75162009-04-17 17:23:37 -0700549 *
550 * If we can't find it, return a generic substitute when possible.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800551 */
552static ClassObject* lookupClassByDescriptor(const Method* meth,
Andy McFadden62a75162009-04-17 17:23:37 -0700553 const char* pDescriptor, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800554{
555 /*
556 * The javac compiler occasionally puts references to nonexistent
557 * classes in signatures. For example, if you have a non-static
558 * inner class with no constructor, the compiler provides
559 * a private <init> for you. Constructing the class
560 * requires <init>(parent), but the outer class can't call
561 * that because the method is private. So the compiler
562 * generates a package-scope <init>(parent,bogus) method that
563 * just calls the regular <init> (the "bogus" part being necessary
564 * to distinguish the signature of the synthetic method).
565 * Treating the bogus class as an instance of java.lang.Object
566 * allows the verifier to process the class successfully.
567 */
568
569 //LOGI("Looking up '%s'\n", typeStr);
570 ClassObject* clazz;
571 clazz = dvmFindClassNoInit(pDescriptor, meth->clazz->classLoader);
572 if (clazz == NULL) {
573 dvmClearOptException(dvmThreadSelf());
574 if (strchr(pDescriptor, '$') != NULL) {
575 LOGV("VFY: unable to find class referenced in signature (%s)\n",
576 pDescriptor);
577 } else {
578 LOG_VFY("VFY: unable to find class referenced in signature (%s)\n",
579 pDescriptor);
580 }
581
582 if (pDescriptor[0] == '[') {
583 /* We are looking at an array descriptor. */
584
585 /*
586 * There should never be a problem loading primitive arrays.
587 */
588 if (pDescriptor[1] != 'L' && pDescriptor[1] != '[') {
589 LOG_VFY("VFY: invalid char in signature in '%s'\n",
590 pDescriptor);
Andy McFadden62a75162009-04-17 17:23:37 -0700591 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800592 }
593
594 /*
595 * Try to continue with base array type. This will let
596 * us pass basic stuff (e.g. get array len) that wouldn't
597 * fly with an Object. This is NOT correct if the
598 * missing type is a primitive array, but we should never
599 * have a problem loading those. (I'm not convinced this
600 * is correct or even useful. Just use Object here?)
601 */
602 clazz = dvmFindClassNoInit("[Ljava/lang/Object;",
603 meth->clazz->classLoader);
604 } else if (pDescriptor[0] == 'L') {
605 /*
606 * We are looking at a non-array reference descriptor;
607 * try to continue with base reference type.
608 */
609 clazz = gDvm.classJavaLangObject;
610 } else {
611 /* We are looking at a primitive type. */
612 LOG_VFY("VFY: invalid char in signature in '%s'\n", pDescriptor);
Andy McFadden62a75162009-04-17 17:23:37 -0700613 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800614 }
615
616 if (clazz == NULL) {
Andy McFadden62a75162009-04-17 17:23:37 -0700617 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800618 }
619 }
620
621 if (dvmIsPrimitiveClass(clazz)) {
622 LOG_VFY("VFY: invalid use of primitive type '%s'\n", pDescriptor);
Andy McFadden62a75162009-04-17 17:23:37 -0700623 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800624 clazz = NULL;
625 }
626
627 return clazz;
628}
629
630/*
631 * Look up a class reference in a signature. Could be an arg or the
632 * return value.
633 *
634 * Advances "*pSig" to the last character in the signature (that is, to
635 * the ';').
636 *
637 * NOTE: this is also expected to verify the signature.
638 */
639static ClassObject* lookupSignatureClass(const Method* meth, const char** pSig,
Andy McFadden62a75162009-04-17 17:23:37 -0700640 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800641{
642 const char* sig = *pSig;
643 const char* endp = sig;
644
645 assert(sig != NULL && *sig == 'L');
646
647 while (*++endp != ';' && *endp != '\0')
648 ;
649 if (*endp != ';') {
650 LOG_VFY("VFY: bad signature component '%s' (missing ';')\n", sig);
Andy McFadden62a75162009-04-17 17:23:37 -0700651 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800652 return NULL;
653 }
654
655 endp++; /* Advance past the ';'. */
656 int typeLen = endp - sig;
657 char typeStr[typeLen+1]; /* +1 for the '\0' */
658 memcpy(typeStr, sig, typeLen);
659 typeStr[typeLen] = '\0';
660
661 *pSig = endp - 1; /* - 1 so that *pSig points at, not past, the ';' */
662
Andy McFadden62a75162009-04-17 17:23:37 -0700663 return lookupClassByDescriptor(meth, typeStr, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800664}
665
666/*
667 * Look up an array class reference in a signature. Could be an arg or the
668 * return value.
669 *
670 * Advances "*pSig" to the last character in the signature.
671 *
672 * NOTE: this is also expected to verify the signature.
673 */
674static ClassObject* lookupSignatureArrayClass(const Method* meth,
Andy McFadden62a75162009-04-17 17:23:37 -0700675 const char** pSig, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800676{
677 const char* sig = *pSig;
678 const char* endp = sig;
679
680 assert(sig != NULL && *sig == '[');
681
682 /* find the end */
683 while (*++endp == '[' && *endp != '\0')
684 ;
685
686 if (*endp == 'L') {
687 while (*++endp != ';' && *endp != '\0')
688 ;
689 if (*endp != ';') {
690 LOG_VFY("VFY: bad signature component '%s' (missing ';')\n", sig);
Andy McFadden62a75162009-04-17 17:23:37 -0700691 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800692 return NULL;
693 }
694 }
695
696 int typeLen = endp - sig +1;
697 char typeStr[typeLen+1];
698 memcpy(typeStr, sig, typeLen);
699 typeStr[typeLen] = '\0';
700
701 *pSig = endp;
702
Andy McFadden62a75162009-04-17 17:23:37 -0700703 return lookupClassByDescriptor(meth, typeStr, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800704}
705
706/*
707 * Set the register types for the first instruction in the method based on
708 * the method signature.
709 *
710 * This has the side-effect of validating the signature.
711 *
712 * Returns "true" on success.
713 */
714static bool setTypesFromSignature(const Method* meth, RegType* regTypes,
715 UninitInstanceMap* uninitMap)
716{
717 DexParameterIterator iterator;
718 int actualArgs, expectedArgs, argStart;
Andy McFadden62a75162009-04-17 17:23:37 -0700719 VerifyError failure = VERIFY_ERROR_NONE;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800720
721 dexParameterIteratorInit(&iterator, &meth->prototype);
722 argStart = meth->registersSize - meth->insSize;
723 expectedArgs = meth->insSize; /* long/double count as two */
724 actualArgs = 0;
725
726 assert(argStart >= 0); /* should have been verified earlier */
727
728 /*
729 * Include the "this" pointer.
730 */
731 if (!dvmIsStaticMethod(meth)) {
732 /*
733 * If this is a constructor for a class other than java.lang.Object,
734 * mark the first ("this") argument as uninitialized. This restricts
735 * field access until the superclass constructor is called.
736 */
737 if (isInitMethod(meth) && meth->clazz != gDvm.classJavaLangObject) {
738 int uidx = dvmSetUninitInstance(uninitMap, kUninitThisArgAddr,
739 meth->clazz);
740 assert(uidx == 0);
741 regTypes[argStart + actualArgs] = regTypeFromUninitIndex(uidx);
742 } else {
743 regTypes[argStart + actualArgs] = regTypeFromClass(meth->clazz);
744 }
745 actualArgs++;
746 }
747
748 for (;;) {
749 const char* descriptor = dexParameterIteratorNextDescriptor(&iterator);
750
751 if (descriptor == NULL) {
752 break;
753 }
754
755 if (actualArgs >= expectedArgs) {
756 LOG_VFY("VFY: expected %d args, found more (%s)\n",
757 expectedArgs, descriptor);
758 goto bad_sig;
759 }
760
761 switch (*descriptor) {
762 case 'L':
763 case '[':
764 /*
765 * We assume that reference arguments are initialized. The
766 * only way it could be otherwise (assuming the caller was
767 * verified) is if the current method is <init>, but in that
768 * case it's effectively considered initialized the instant
769 * we reach here (in the sense that we can return without
770 * doing anything or call virtual methods).
771 */
772 {
773 ClassObject* clazz =
Andy McFadden62a75162009-04-17 17:23:37 -0700774 lookupClassByDescriptor(meth, descriptor, &failure);
775 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800776 goto bad_sig;
777 regTypes[argStart + actualArgs] = regTypeFromClass(clazz);
778 }
779 actualArgs++;
780 break;
781 case 'Z':
782 regTypes[argStart + actualArgs] = kRegTypeBoolean;
783 actualArgs++;
784 break;
785 case 'C':
786 regTypes[argStart + actualArgs] = kRegTypeChar;
787 actualArgs++;
788 break;
789 case 'B':
790 regTypes[argStart + actualArgs] = kRegTypeByte;
791 actualArgs++;
792 break;
793 case 'I':
794 regTypes[argStart + actualArgs] = kRegTypeInteger;
795 actualArgs++;
796 break;
797 case 'S':
798 regTypes[argStart + actualArgs] = kRegTypeShort;
799 actualArgs++;
800 break;
801 case 'F':
802 regTypes[argStart + actualArgs] = kRegTypeFloat;
803 actualArgs++;
804 break;
805 case 'D':
806 regTypes[argStart + actualArgs] = kRegTypeDoubleLo;
807 regTypes[argStart + actualArgs +1] = kRegTypeDoubleHi;
808 actualArgs += 2;
809 break;
810 case 'J':
811 regTypes[argStart + actualArgs] = kRegTypeLongLo;
812 regTypes[argStart + actualArgs +1] = kRegTypeLongHi;
813 actualArgs += 2;
814 break;
815 default:
816 LOG_VFY("VFY: unexpected signature type char '%c'\n", *descriptor);
817 goto bad_sig;
818 }
819 }
820
821 if (actualArgs != expectedArgs) {
822 LOG_VFY("VFY: expected %d args, found %d\n", expectedArgs, actualArgs);
823 goto bad_sig;
824 }
825
826 const char* descriptor = dexProtoGetReturnType(&meth->prototype);
827
828 /*
829 * Validate return type. We don't do the type lookup; just want to make
830 * sure that it has the right format. Only major difference from the
831 * method argument format is that 'V' is supported.
832 */
833 switch (*descriptor) {
834 case 'I':
835 case 'C':
836 case 'S':
837 case 'B':
838 case 'Z':
839 case 'V':
840 case 'F':
841 case 'D':
842 case 'J':
843 if (*(descriptor+1) != '\0')
844 goto bad_sig;
845 break;
846 case '[':
847 /* single/multi, object/primitive */
848 while (*++descriptor == '[')
849 ;
850 if (*descriptor == 'L') {
851 while (*++descriptor != ';' && *descriptor != '\0')
852 ;
853 if (*descriptor != ';')
854 goto bad_sig;
855 } else {
856 if (*(descriptor+1) != '\0')
857 goto bad_sig;
858 }
859 break;
860 case 'L':
861 /* could be more thorough here, but shouldn't be required */
862 while (*++descriptor != ';' && *descriptor != '\0')
863 ;
864 if (*descriptor != ';')
865 goto bad_sig;
866 break;
867 default:
868 goto bad_sig;
869 }
870
871 return true;
872
873//fail:
874// LOG_VFY_METH(meth, "VFY: bad sig\n");
875// return false;
876
877bad_sig:
878 {
879 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
880 LOG_VFY("VFY: bad signature '%s' for %s.%s\n",
881 desc, meth->clazz->descriptor, meth->name);
882 free(desc);
883 }
884 return false;
885}
886
887/*
888 * Return the register type for the method. We can't just use the
889 * already-computed DalvikJniReturnType, because if it's a reference type
890 * we need to do the class lookup.
891 *
892 * Returned references are assumed to be initialized.
893 *
894 * Returns kRegTypeUnknown for "void".
895 */
896static RegType getMethodReturnType(const Method* meth)
897{
898 RegType type;
899 const char* descriptor = dexProtoGetReturnType(&meth->prototype);
900
901 switch (*descriptor) {
902 case 'I':
903 type = kRegTypeInteger;
904 break;
905 case 'C':
906 type = kRegTypeChar;
907 break;
908 case 'S':
909 type = kRegTypeShort;
910 break;
911 case 'B':
912 type = kRegTypeByte;
913 break;
914 case 'Z':
915 type = kRegTypeBoolean;
916 break;
917 case 'V':
918 type = kRegTypeUnknown;
919 break;
920 case 'F':
921 type = kRegTypeFloat;
922 break;
923 case 'D':
924 type = kRegTypeDoubleLo;
925 break;
926 case 'J':
927 type = kRegTypeLongLo;
928 break;
929 case 'L':
930 case '[':
931 {
Andy McFadden62a75162009-04-17 17:23:37 -0700932 VerifyError failure = VERIFY_ERROR_NONE;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800933 ClassObject* clazz =
Andy McFadden62a75162009-04-17 17:23:37 -0700934 lookupClassByDescriptor(meth, descriptor, &failure);
935 assert(VERIFY_OK(failure));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -0800936 type = regTypeFromClass(clazz);
937 }
938 break;
939 default:
940 /* we verified signature return type earlier, so this is impossible */
941 assert(false);
942 type = kRegTypeConflict;
943 break;
944 }
945
946 return type;
947}
948
949/*
950 * Convert a single-character signature value (i.e. a primitive type) to
951 * the corresponding RegType. This is intended for access to object fields
952 * holding primitive types.
953 *
954 * Returns kRegTypeUnknown for objects, arrays, and void.
955 */
956static RegType primSigCharToRegType(char sigChar)
957{
958 RegType type;
959
960 switch (sigChar) {
961 case 'I':
962 type = kRegTypeInteger;
963 break;
964 case 'C':
965 type = kRegTypeChar;
966 break;
967 case 'S':
968 type = kRegTypeShort;
969 break;
970 case 'B':
971 type = kRegTypeByte;
972 break;
973 case 'Z':
974 type = kRegTypeBoolean;
975 break;
976 case 'F':
977 type = kRegTypeFloat;
978 break;
979 case 'D':
980 type = kRegTypeDoubleLo;
981 break;
982 case 'J':
983 type = kRegTypeLongLo;
984 break;
985 case 'V':
986 case 'L':
987 case '[':
988 type = kRegTypeUnknown;
989 break;
990 default:
991 assert(false);
992 type = kRegTypeUnknown;
993 break;
994 }
995
996 return type;
997}
998
999/*
1000 * Verify the arguments to a method. We're executing in "method", making
1001 * a call to the method reference in vB.
1002 *
1003 * If this is a "direct" invoke, we allow calls to <init>. For calls to
1004 * <init>, the first argument may be an uninitialized reference. Otherwise,
1005 * calls to anything starting with '<' will be rejected, as will any
1006 * uninitialized reference arguments.
1007 *
1008 * For non-static method calls, this will verify that the method call is
1009 * appropriate for the "this" argument.
1010 *
1011 * The method reference is in vBBBB. The "isRange" parameter determines
1012 * whether we use 0-4 "args" values or a range of registers defined by
1013 * vAA and vCCCC.
1014 *
1015 * Widening conversions on integers and references are allowed, but
1016 * narrowing conversions are not.
1017 *
Andy McFadden62a75162009-04-17 17:23:37 -07001018 * Returns the resolved method on success, NULL on failure (with *pFailure
1019 * set appropriately).
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001020 */
1021static Method* verifyInvocationArgs(const Method* meth, const RegType* insnRegs,
1022 const int insnRegCount, const DecodedInstruction* pDecInsn,
1023 UninitInstanceMap* uninitMap, MethodType methodType, bool isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07001024 bool isSuper, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001025{
1026 Method* resMethod;
1027 char* sigOriginal = NULL;
1028
1029 /*
1030 * Resolve the method. This could be an abstract or concrete method
1031 * depending on what sort of call we're making.
1032 */
1033 if (methodType == METHOD_INTERFACE) {
1034 resMethod = dvmOptResolveInterfaceMethod(meth->clazz, pDecInsn->vB);
1035 } else {
Andy McFadden62a75162009-04-17 17:23:37 -07001036 resMethod = dvmOptResolveMethod(meth->clazz, pDecInsn->vB, methodType,
1037 pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001038 }
1039 if (resMethod == NULL) {
1040 /* failed; print a meaningful failure message */
1041 DexFile* pDexFile = meth->clazz->pDvmDex->pDexFile;
1042 const DexMethodId* pMethodId;
1043 const char* methodName;
1044 char* methodDesc;
1045 const char* classDescriptor;
1046
1047 pMethodId = dexGetMethodId(pDexFile, pDecInsn->vB);
1048 methodName = dexStringById(pDexFile, pMethodId->nameIdx);
1049 methodDesc = dexCopyDescriptorFromMethodId(pDexFile, pMethodId);
1050 classDescriptor = dexStringByTypeIdx(pDexFile, pMethodId->classIdx);
1051
1052 if (!gDvm.optimizing) {
1053 char* dotMissingClass = dvmDescriptorToDot(classDescriptor);
1054 char* dotMethClass = dvmDescriptorToDot(meth->clazz->descriptor);
1055 //char* curMethodDesc =
1056 // dexProtoCopyMethodDescriptor(&meth->prototype);
1057
Andy McFaddenb51ea112009-05-08 16:50:17 -07001058 LOGI("Could not find method %s.%s, referenced from "
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001059 "method %s.%s\n",
1060 dotMissingClass, methodName/*, methodDesc*/,
1061 dotMethClass, meth->name/*, curMethodDesc*/);
1062
1063 free(dotMissingClass);
1064 free(dotMethClass);
1065 //free(curMethodDesc);
1066 }
1067
1068 LOG_VFY("VFY: unable to resolve %s method %u: %s.%s %s\n",
1069 dvmMethodTypeStr(methodType), pDecInsn->vB,
1070 classDescriptor, methodName, methodDesc);
1071 free(methodDesc);
Andy McFaddenb51ea112009-05-08 16:50:17 -07001072 if (VERIFY_OK(*pFailure)) /* not set for interface resolve */
1073 *pFailure = VERIFY_ERROR_NO_METHOD;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001074 goto fail;
1075 }
1076
1077 /*
1078 * Only time you can explicitly call a method starting with '<' is when
1079 * making a "direct" invocation on "<init>". There are additional
1080 * restrictions but we don't enforce them here.
1081 */
1082 if (resMethod->name[0] == '<') {
1083 if (methodType != METHOD_DIRECT || !isInitMethod(resMethod)) {
1084 LOG_VFY("VFY: invalid call to %s.%s\n",
1085 resMethod->clazz->descriptor, resMethod->name);
1086 goto bad_sig;
1087 }
1088 }
1089
1090 /*
1091 * If we're using invoke-super(method), make sure that the executing
1092 * method's class' superclass has a vtable entry for the target method.
1093 */
1094 if (isSuper) {
1095 assert(methodType == METHOD_VIRTUAL);
1096 ClassObject* super = meth->clazz->super;
1097 if (super == NULL || resMethod->methodIndex > super->vtableCount) {
1098 char* desc = dexProtoCopyMethodDescriptor(&resMethod->prototype);
1099 LOG_VFY("VFY: invalid invoke-super from %s.%s to super %s.%s %s\n",
1100 meth->clazz->descriptor, meth->name,
1101 (super == NULL) ? "-" : super->descriptor,
1102 resMethod->name, desc);
1103 free(desc);
Andy McFadden62a75162009-04-17 17:23:37 -07001104 *pFailure = VERIFY_ERROR_NO_METHOD;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001105 goto fail;
1106 }
1107 }
1108
1109 /*
1110 * We use vAA as our expected arg count, rather than resMethod->insSize,
1111 * because we need to match the call to the signature. Also, we might
1112 * might be calling through an abstract method definition (which doesn't
1113 * have register count values).
1114 */
1115 sigOriginal = dexProtoCopyMethodDescriptor(&resMethod->prototype);
1116 const char* sig = sigOriginal;
1117 int expectedArgs = pDecInsn->vA;
1118 int actualArgs = 0;
1119
1120 if (!isRange && expectedArgs > 5) {
1121 LOG_VFY("VFY: invalid arg count in non-range invoke (%d)\n",
1122 pDecInsn->vA);
1123 goto fail;
1124 }
1125 if (expectedArgs > meth->outsSize) {
1126 LOG_VFY("VFY: invalid arg count (%d) exceeds outsSize (%d)\n",
1127 expectedArgs, meth->outsSize);
1128 goto fail;
1129 }
1130
1131 if (*sig++ != '(')
1132 goto bad_sig;
1133
1134 /*
1135 * Check the "this" argument, which must be an instance of the class
1136 * that declared the method. For an interface class, we don't do the
1137 * full interface merge, so we can't do a rigorous check here (which
1138 * is okay since we have to do it at runtime).
1139 */
1140 if (!dvmIsStaticMethod(resMethod)) {
1141 ClassObject* actualThisRef;
1142 RegType actualArgType;
1143
1144 actualArgType = getInvocationThis(insnRegs, insnRegCount, pDecInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07001145 pFailure);
1146 if (!VERIFY_OK(*pFailure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001147 goto fail;
1148
1149 if (regTypeIsUninitReference(actualArgType) && resMethod->name[0] != '<')
1150 {
1151 LOG_VFY("VFY: 'this' arg must be initialized\n");
1152 goto fail;
1153 }
1154 if (methodType != METHOD_INTERFACE && actualArgType != kRegTypeZero) {
1155 actualThisRef = regTypeReferenceToClass(actualArgType, uninitMap);
1156 if (!dvmInstanceof(actualThisRef, resMethod->clazz)) {
1157 LOG_VFY("VFY: 'this' arg '%s' not instance of '%s'\n",
1158 actualThisRef->descriptor,
1159 resMethod->clazz->descriptor);
1160 goto fail;
1161 }
1162 }
1163 actualArgs++;
1164 }
1165
1166 /*
1167 * Process the target method's signature. This signature may or may not
1168 * have been verified, so we can't assume it's properly formed.
1169 */
1170 while (*sig != '\0' && *sig != ')') {
1171 if (actualArgs >= expectedArgs) {
1172 LOG_VFY("VFY: expected %d args, found more (%c)\n",
1173 expectedArgs, *sig);
1174 goto bad_sig;
1175 }
1176
1177 u4 getReg;
1178 if (isRange)
1179 getReg = pDecInsn->vC + actualArgs;
1180 else
1181 getReg = pDecInsn->arg[actualArgs];
1182
1183 switch (*sig) {
1184 case 'L':
1185 {
Andy McFadden62a75162009-04-17 17:23:37 -07001186 ClassObject* clazz = lookupSignatureClass(meth, &sig, pFailure);
1187 if (!VERIFY_OK(*pFailure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001188 goto bad_sig;
1189 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001190 regTypeFromClass(clazz), pFailure);
1191 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001192 LOG_VFY("VFY: bad arg %d (into %s)\n",
1193 actualArgs, clazz->descriptor);
1194 goto bad_sig;
1195 }
1196 }
1197 actualArgs++;
1198 break;
1199 case '[':
1200 {
1201 ClassObject* clazz =
Andy McFadden62a75162009-04-17 17:23:37 -07001202 lookupSignatureArrayClass(meth, &sig, pFailure);
1203 if (!VERIFY_OK(*pFailure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001204 goto bad_sig;
1205 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001206 regTypeFromClass(clazz), pFailure);
1207 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001208 LOG_VFY("VFY: bad arg %d (into %s)\n",
1209 actualArgs, clazz->descriptor);
1210 goto bad_sig;
1211 }
1212 }
1213 actualArgs++;
1214 break;
1215 case 'Z':
1216 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001217 kRegTypeBoolean, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001218 actualArgs++;
1219 break;
1220 case 'C':
1221 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001222 kRegTypeChar, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001223 actualArgs++;
1224 break;
1225 case 'B':
1226 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001227 kRegTypeByte, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001228 actualArgs++;
1229 break;
1230 case 'I':
1231 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001232 kRegTypeInteger, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001233 actualArgs++;
1234 break;
1235 case 'S':
1236 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001237 kRegTypeShort, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001238 actualArgs++;
1239 break;
1240 case 'F':
1241 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001242 kRegTypeFloat, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001243 actualArgs++;
1244 break;
1245 case 'D':
1246 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001247 kRegTypeDoubleLo, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001248 actualArgs += 2;
1249 break;
1250 case 'J':
1251 verifyRegisterType(insnRegs, insnRegCount, getReg,
Andy McFadden62a75162009-04-17 17:23:37 -07001252 kRegTypeLongLo, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001253 actualArgs += 2;
1254 break;
1255 default:
1256 LOG_VFY("VFY: invocation target: bad signature type char '%c'\n",
1257 *sig);
1258 goto bad_sig;
1259 }
1260
1261 sig++;
1262 }
1263 if (*sig != ')') {
1264 char* desc = dexProtoCopyMethodDescriptor(&resMethod->prototype);
1265 LOG_VFY("VFY: invocation target: bad signature '%s'\n", desc);
1266 free(desc);
1267 goto bad_sig;
1268 }
1269
1270 if (actualArgs != expectedArgs) {
1271 LOG_VFY("VFY: expected %d args, found %d\n", expectedArgs, actualArgs);
1272 goto bad_sig;
1273 }
1274
1275 free(sigOriginal);
1276 return resMethod;
1277
1278bad_sig:
1279 if (resMethod != NULL) {
1280 char* desc = dexProtoCopyMethodDescriptor(&resMethod->prototype);
1281 LOG_VFY("VFY: rejecting call to %s.%s %s\n",
Andy McFadden62a75162009-04-17 17:23:37 -07001282 resMethod->clazz->descriptor, resMethod->name, desc);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001283 free(desc);
1284 }
1285
1286fail:
1287 free(sigOriginal);
Andy McFadden62a75162009-04-17 17:23:37 -07001288 if (*pFailure == VERIFY_ERROR_NONE)
1289 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001290 return NULL;
1291}
1292
1293/*
1294 * Get the class object for the type of data stored in a field. This isn't
1295 * stored in the Field struct, so we have to recover it from the signature.
1296 *
1297 * This only works for reference types. Don't call this for primitive types.
1298 *
1299 * If we can't find the class, we return java.lang.Object, so that
1300 * verification can continue if a field is only accessed in trivial ways.
1301 */
1302static ClassObject* getFieldClass(const Method* meth, const Field* field)
1303{
1304 ClassObject* fieldClass;
1305 const char* signature = field->signature;
1306
1307 if ((*signature == 'L') || (*signature == '[')) {
1308 fieldClass = dvmFindClassNoInit(signature,
1309 meth->clazz->classLoader);
1310 } else {
1311 return NULL;
1312 }
1313
1314 if (fieldClass == NULL) {
1315 dvmClearOptException(dvmThreadSelf());
1316 LOGV("VFY: unable to find class '%s' for field %s.%s, trying Object\n",
1317 field->signature, meth->clazz->descriptor, field->name);
1318 fieldClass = gDvm.classJavaLangObject;
1319 } else {
1320 assert(!dvmIsPrimitiveClass(fieldClass));
1321 }
1322 return fieldClass;
1323}
1324
1325
1326/*
1327 * ===========================================================================
1328 * Register operations
1329 * ===========================================================================
1330 */
1331
1332/*
1333 * Get the type of register N, verifying that the register is valid.
1334 *
Andy McFadden62a75162009-04-17 17:23:37 -07001335 * Sets "*pFailure" appropriately if the register number is out of range.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001336 */
1337static inline RegType getRegisterType(const RegType* insnRegs,
Andy McFadden62a75162009-04-17 17:23:37 -07001338 const int insnRegCount, u4 vsrc, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001339{
1340 RegType type;
1341
1342 if (vsrc >= (u4) insnRegCount) {
Andy McFadden62a75162009-04-17 17:23:37 -07001343 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001344 return kRegTypeUnknown;
1345 } else {
1346 return insnRegs[vsrc];
1347 }
1348}
1349
1350/*
1351 * Get the value from a register, and cast it to a ClassObject. Sets
Andy McFadden62a75162009-04-17 17:23:37 -07001352 * "*pFailure" if something fails.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001353 *
1354 * This fails if the register holds an uninitialized class.
1355 *
1356 * If the register holds kRegTypeZero, this returns a NULL pointer.
1357 */
1358static ClassObject* getClassFromRegister(const RegType* insnRegs,
Andy McFadden62a75162009-04-17 17:23:37 -07001359 const int insnRegCount, u4 vsrc, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001360{
1361 ClassObject* clazz = NULL;
1362 RegType type;
1363
1364 /* get the element type of the array held in vsrc */
Andy McFadden62a75162009-04-17 17:23:37 -07001365 type = getRegisterType(insnRegs, insnRegCount, vsrc, pFailure);
1366 if (!VERIFY_OK(*pFailure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001367 goto bail;
1368
1369 /* if "always zero", we allow it to fail at runtime */
1370 if (type == kRegTypeZero)
1371 goto bail;
1372
1373 if (!regTypeIsReference(type)) {
1374 LOG_VFY("VFY: tried to get class from non-ref register v%d (type=%d)\n",
1375 vsrc, type);
Andy McFadden62a75162009-04-17 17:23:37 -07001376 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001377 goto bail;
1378 }
1379 if (regTypeIsUninitReference(type)) {
1380 LOG_VFY("VFY: register %u holds uninitialized reference\n", vsrc);
Andy McFadden62a75162009-04-17 17:23:37 -07001381 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001382 goto bail;
1383 }
1384
1385 clazz = regTypeInitializedReferenceToClass(type);
1386
1387bail:
1388 return clazz;
1389}
1390
1391/*
1392 * Get the "this" pointer from a non-static method invocation. This
1393 * returns the RegType so the caller can decide whether it needs the
1394 * reference to be initialized or not. (Can also return kRegTypeZero
1395 * if the reference can only be zero at this point.)
1396 *
1397 * The argument count is in vA, and the first argument is in vC, for both
1398 * "simple" and "range" versions. We just need to make sure vA is >= 1
1399 * and then return vC.
1400 */
1401static RegType getInvocationThis(const RegType* insnRegs,
Andy McFadden62a75162009-04-17 17:23:37 -07001402 const int insnRegCount, const DecodedInstruction* pDecInsn,
1403 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001404{
1405 RegType thisType = kRegTypeUnknown;
1406
1407 if (pDecInsn->vA < 1) {
1408 LOG_VFY("VFY: invoke lacks 'this'\n");
Andy McFadden62a75162009-04-17 17:23:37 -07001409 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001410 goto bail;
1411 }
1412
1413 /* get the element type of the array held in vsrc */
Andy McFadden62a75162009-04-17 17:23:37 -07001414 thisType = getRegisterType(insnRegs, insnRegCount, pDecInsn->vC, pFailure);
1415 if (!VERIFY_OK(*pFailure)) {
1416 LOG_VFY("VFY: failed to get 'this' from register %u\n", pDecInsn->vC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001417 goto bail;
1418 }
1419
1420 if (!regTypeIsReference(thisType)) {
1421 LOG_VFY("VFY: tried to get class from non-ref register v%d (type=%d)\n",
1422 pDecInsn->vC, thisType);
Andy McFadden62a75162009-04-17 17:23:37 -07001423 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001424 goto bail;
1425 }
1426
1427bail:
1428 return thisType;
1429}
1430
1431/*
1432 * Set the type of register N, verifying that the register is valid. If
1433 * "newType" is the "Lo" part of a 64-bit value, register N+1 will be
1434 * set to "newType+1".
1435 *
Andy McFadden62a75162009-04-17 17:23:37 -07001436 * Sets "*pFailure" if the register number is out of range.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001437 */
1438static void setRegisterType(RegType* insnRegs, const int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001439 u4 vdst, RegType newType, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001440{
1441 //LOGD("set-reg v%u = %d\n", vdst, newType);
1442 switch (newType) {
1443 case kRegTypeUnknown:
1444 case kRegTypeBoolean:
1445 case kRegTypeOne:
1446 case kRegTypeByte:
1447 case kRegTypePosByte:
1448 case kRegTypeShort:
1449 case kRegTypePosShort:
1450 case kRegTypeChar:
1451 case kRegTypeInteger:
1452 case kRegTypeFloat:
1453 case kRegTypeZero:
1454 if (vdst >= (u4) insnRegCount) {
Andy McFadden62a75162009-04-17 17:23:37 -07001455 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001456 } else {
1457 insnRegs[vdst] = newType;
1458 }
1459 break;
1460 case kRegTypeLongLo:
1461 case kRegTypeDoubleLo:
1462 if (vdst+1 >= (u4) insnRegCount) {
Andy McFadden62a75162009-04-17 17:23:37 -07001463 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001464 } else {
1465 insnRegs[vdst] = newType;
1466 insnRegs[vdst+1] = newType+1;
1467 }
1468 break;
1469 case kRegTypeLongHi:
1470 case kRegTypeDoubleHi:
1471 /* should never set these explicitly */
Andy McFadden62a75162009-04-17 17:23:37 -07001472 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001473 break;
1474
1475 case kRegTypeUninit:
1476 default:
1477 if (regTypeIsReference(newType)) {
1478 if (vdst >= (u4) insnRegCount) {
Andy McFadden62a75162009-04-17 17:23:37 -07001479 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001480 break;
1481 }
1482 insnRegs[vdst] = newType;
1483
1484 /*
1485 * In most circumstances we won't see a reference to a primitive
1486 * class here (e.g. "D"), since that would mean the object in the
1487 * register is actually a primitive type. It can happen as the
1488 * result of an assumed-successful check-cast instruction in
1489 * which the second argument refers to a primitive class. (In
1490 * practice, such an instruction will always throw an exception.)
1491 *
1492 * This is not an issue for instructions like const-class, where
1493 * the object in the register is a java.lang.Class instance.
1494 */
1495 break;
1496 }
1497 /* bad - fall through */
1498
1499 case kRegTypeConflict: // should only be set during a merge
1500 LOG_VFY("Unexpected set type %d\n", newType);
1501 assert(false);
Andy McFadden62a75162009-04-17 17:23:37 -07001502 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001503 break;
1504 }
1505}
1506
1507/*
1508 * Verify that the contents of the specified register have the specified
1509 * type (or can be converted to it through an implicit widening conversion).
1510 *
1511 * In theory we could use this to modify the type of the source register,
1512 * e.g. a generic 32-bit constant, once used as a float, would thereafter
1513 * remain a float. There is no compelling reason to require this though.
1514 *
1515 * If "vsrc" is a reference, both it and the "vsrc" register must be
1516 * initialized ("vsrc" may be Zero). This will verify that the value in
1517 * the register is an instance of checkType, or if checkType is an
1518 * interface, verify that the register implements checkType.
1519 */
1520static void verifyRegisterType(const RegType* insnRegs, const int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001521 u4 vsrc, RegType checkType, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001522{
1523 if (vsrc >= (u4) insnRegCount) {
Andy McFadden62a75162009-04-17 17:23:37 -07001524 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001525 return;
1526 }
1527
1528 RegType srcType = insnRegs[vsrc];
1529
1530 //LOGD("check-reg v%u = %d\n", vsrc, checkType);
1531 switch (checkType) {
1532 case kRegTypeFloat:
1533 case kRegTypeBoolean:
1534 case kRegTypePosByte:
1535 case kRegTypeByte:
1536 case kRegTypePosShort:
1537 case kRegTypeShort:
1538 case kRegTypeChar:
1539 case kRegTypeInteger:
1540 if (!canConvertTo1nr(srcType, checkType)) {
1541 LOG_VFY("VFY: register1 v%u type %d, wanted %d\n",
1542 vsrc, srcType, checkType);
Andy McFadden62a75162009-04-17 17:23:37 -07001543 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001544 }
1545 break;
1546 case kRegTypeLongLo:
1547 case kRegTypeDoubleLo:
1548 if (vsrc+1 >= (u4) insnRegCount) {
1549 LOG_VFY("VFY: register2 v%u out of range (%d)\n",
1550 vsrc, insnRegCount);
Andy McFadden62a75162009-04-17 17:23:37 -07001551 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001552 } else if (insnRegs[vsrc+1] != srcType+1) {
1553 LOG_VFY("VFY: register2 v%u-%u values %d,%d\n",
1554 vsrc, vsrc+1, insnRegs[vsrc], insnRegs[vsrc+1]);
Andy McFadden62a75162009-04-17 17:23:37 -07001555 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001556 } else if (!canConvertTo2(srcType, checkType)) {
1557 LOG_VFY("VFY: register2 v%u type %d, wanted %d\n",
1558 vsrc, srcType, checkType);
Andy McFadden62a75162009-04-17 17:23:37 -07001559 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001560 }
1561 break;
1562
1563 case kRegTypeLongHi:
1564 case kRegTypeDoubleHi:
1565 case kRegTypeZero:
1566 case kRegTypeOne:
1567 case kRegTypeUnknown:
1568 case kRegTypeConflict:
1569 /* should never be checking for these explicitly */
1570 assert(false);
Andy McFadden62a75162009-04-17 17:23:37 -07001571 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001572 return;
1573 case kRegTypeUninit:
1574 default:
1575 /* make sure checkType is initialized reference */
1576 if (!regTypeIsReference(checkType)) {
1577 LOG_VFY("VFY: unexpected check type %d\n", checkType);
1578 assert(false);
Andy McFadden62a75162009-04-17 17:23:37 -07001579 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001580 break;
1581 }
1582 if (regTypeIsUninitReference(checkType)) {
1583 LOG_VFY("VFY: uninitialized ref not expected as reg check\n");
Andy McFadden62a75162009-04-17 17:23:37 -07001584 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001585 break;
1586 }
1587 /* make sure srcType is initialized reference or always-NULL */
1588 if (!regTypeIsReference(srcType)) {
1589 LOG_VFY("VFY: register1 v%u type %d, wanted ref\n", vsrc, srcType);
Andy McFadden62a75162009-04-17 17:23:37 -07001590 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001591 break;
1592 }
1593 if (regTypeIsUninitReference(srcType)) {
1594 LOG_VFY("VFY: register1 v%u holds uninitialized ref\n", vsrc);
Andy McFadden62a75162009-04-17 17:23:37 -07001595 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001596 break;
1597 }
1598 /* if the register isn't Zero, make sure it's an instance of check */
1599 if (srcType != kRegTypeZero) {
1600 ClassObject* srcClass = regTypeInitializedReferenceToClass(srcType);
1601 ClassObject* checkClass = regTypeInitializedReferenceToClass(checkType);
1602 assert(srcClass != NULL);
1603 assert(checkClass != NULL);
1604
1605 if (dvmIsInterfaceClass(checkClass)) {
1606 /*
1607 * All objects implement all interfaces as far as the
1608 * verifier is concerned. The runtime has to sort it out.
1609 * See comments above findCommonSuperclass.
1610 */
1611 /*
1612 if (srcClass != checkClass &&
1613 !dvmImplements(srcClass, checkClass))
1614 {
1615 LOG_VFY("VFY: %s does not implement %s\n",
1616 srcClass->descriptor, checkClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07001617 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001618 }
1619 */
1620 } else {
1621 if (!dvmInstanceof(srcClass, checkClass)) {
1622 LOG_VFY("VFY: %s is not instance of %s\n",
1623 srcClass->descriptor, checkClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07001624 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001625 }
1626 }
1627 }
1628 break;
1629 }
1630}
1631
1632/*
1633 * Set the type of the "result" register. Mostly this exists to expand
1634 * "insnRegCount" to encompass the result register.
1635 */
1636static void setResultRegisterType(RegType* insnRegs, const int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001637 RegType newType, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001638{
1639 setRegisterType(insnRegs, insnRegCount + kExtraRegs,
Andy McFadden62a75162009-04-17 17:23:37 -07001640 RESULT_REGISTER(insnRegCount), newType, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001641}
1642
1643
1644/*
1645 * Update all registers holding "uninitType" to instead hold the
1646 * corresponding initialized reference type. This is called when an
1647 * appropriate <init> method is invoked -- all copies of the reference
1648 * must be marked as initialized.
1649 */
1650static void markRefsAsInitialized(RegType* insnRegs, int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001651 UninitInstanceMap* uninitMap, RegType uninitType, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001652{
1653 ClassObject* clazz;
1654 RegType initType;
1655 int i, changed;
1656
1657 clazz = dvmGetUninitInstance(uninitMap, regTypeToUninitIndex(uninitType));
1658 if (clazz == NULL) {
1659 LOGE("VFY: unable to find type=0x%x (idx=%d)\n",
1660 uninitType, regTypeToUninitIndex(uninitType));
Andy McFadden62a75162009-04-17 17:23:37 -07001661 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001662 return;
1663 }
1664 initType = regTypeFromClass(clazz);
1665
1666 changed = 0;
1667 for (i = 0; i < insnRegCount; i++) {
1668 if (insnRegs[i] == uninitType) {
1669 insnRegs[i] = initType;
1670 changed++;
1671 }
1672 }
1673 //LOGD("VFY: marked %d registers as initialized\n", changed);
1674 assert(changed > 0);
1675
1676 return;
1677}
1678
1679/*
1680 * We're creating a new instance of class C at address A. Any registers
1681 * holding instances previously created at address A must be initialized
1682 * by now. If not, we mark them as "conflict" to prevent them from being
1683 * used (otherwise, markRefsAsInitialized would mark the old ones and the
1684 * new ones at the same time).
1685 */
1686static void markUninitRefsAsInvalid(RegType* insnRegs, int insnRegCount,
1687 UninitInstanceMap* uninitMap, RegType uninitType)
1688{
1689 int i, changed;
1690
1691 changed = 0;
1692 for (i = 0; i < insnRegCount; i++) {
1693 if (insnRegs[i] == uninitType) {
1694 insnRegs[i] = kRegTypeConflict;
1695 changed++;
1696 }
1697 }
1698
1699 //if (changed)
1700 // LOGD("VFY: marked %d uninitialized registers as invalid\n", changed);
1701}
1702
1703/*
1704 * Find the start of the register set for the specified instruction in
1705 * the current method.
1706 */
1707static inline RegType* getRegisterLine(const RegisterTable* regTable,
1708 int insnIdx)
1709{
1710 return regTable->addrRegs[insnIdx];
1711}
1712
1713/*
1714 * Copy a bunch of registers.
1715 */
1716static inline void copyRegisters(RegType* dst, const RegType* src,
1717 int numRegs)
1718{
1719 memcpy(dst, src, numRegs * sizeof(RegType));
1720}
1721
1722/*
1723 * Compare a bunch of registers.
1724 *
1725 * Returns 0 if they match. Using this for a sort is unwise, since the
1726 * value can change based on machine endianness.
1727 */
1728static inline int compareRegisters(const RegType* src1, const RegType* src2,
1729 int numRegs)
1730{
1731 return memcmp(src1, src2, numRegs * sizeof(RegType));
1732}
1733
1734/*
1735 * Register type categories, for type checking.
1736 *
1737 * The spec says category 1 includes boolean, byte, char, short, int, float,
1738 * reference, and returnAddress. Category 2 includes long and double.
1739 *
1740 * We treat object references separately, so we have "category1nr". We
1741 * don't support jsr/ret, so there is no "returnAddress" type.
1742 */
1743typedef enum TypeCategory {
1744 kTypeCategoryUnknown = 0,
1745 kTypeCategory1nr, // byte, char, int, float, boolean
1746 kTypeCategory2, // long, double
1747 kTypeCategoryRef, // object reference
1748} TypeCategory;
1749
1750/*
1751 * See if "type" matches "cat". All we're really looking for here is that
1752 * we're not mixing and matching 32-bit and 64-bit quantities, and we're
1753 * not mixing references with numerics. (For example, the arguments to
1754 * "a < b" could be integers of different sizes, but they must both be
1755 * integers. Dalvik is less specific about int vs. float, so we treat them
1756 * as equivalent here.)
1757 *
1758 * For category 2 values, "type" must be the "low" half of the value.
1759 *
Andy McFadden62a75162009-04-17 17:23:37 -07001760 * Sets "*pFailure" if something looks wrong.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001761 */
Andy McFadden62a75162009-04-17 17:23:37 -07001762static void checkTypeCategory(RegType type, TypeCategory cat,
1763 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001764{
1765 switch (cat) {
1766 case kTypeCategory1nr:
1767 switch (type) {
1768 case kRegTypeFloat:
1769 case kRegTypeZero:
1770 case kRegTypeOne:
1771 case kRegTypeBoolean:
1772 case kRegTypePosByte:
1773 case kRegTypeByte:
1774 case kRegTypePosShort:
1775 case kRegTypeShort:
1776 case kRegTypeChar:
1777 case kRegTypeInteger:
1778 break;
1779 default:
Andy McFadden62a75162009-04-17 17:23:37 -07001780 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001781 break;
1782 }
1783 break;
1784
1785 case kTypeCategory2:
1786 switch (type) {
1787 case kRegTypeLongLo:
1788 case kRegTypeDoubleLo:
1789 break;
1790 default:
Andy McFadden62a75162009-04-17 17:23:37 -07001791 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001792 break;
1793 }
1794 break;
1795
1796 case kTypeCategoryRef:
1797 if (type != kRegTypeZero && !regTypeIsReference(type))
Andy McFadden62a75162009-04-17 17:23:37 -07001798 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001799 break;
1800
1801 default:
1802 assert(false);
Andy McFadden62a75162009-04-17 17:23:37 -07001803 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001804 break;
1805 }
1806}
1807
1808/*
1809 * For a category 2 register pair, verify that "typeh" is the appropriate
1810 * high part for "typel".
1811 *
1812 * Does not verify that "typel" is in fact the low part of a 64-bit
1813 * register pair.
1814 */
Andy McFadden62a75162009-04-17 17:23:37 -07001815static void checkWidePair(RegType typel, RegType typeh, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001816{
1817 if ((typeh != typel+1))
Andy McFadden62a75162009-04-17 17:23:37 -07001818 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001819}
1820
1821/*
1822 * Implement category-1 "move" instructions. Copy a 32-bit value from
1823 * "vsrc" to "vdst".
1824 *
1825 * "insnRegCount" is the number of registers available. The "vdst" and
1826 * "vsrc" values are checked against this.
1827 */
1828static void copyRegister1(RegType* insnRegs, int insnRegCount, u4 vdst,
Andy McFadden62a75162009-04-17 17:23:37 -07001829 u4 vsrc, TypeCategory cat, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001830{
Andy McFadden62a75162009-04-17 17:23:37 -07001831 RegType type = getRegisterType(insnRegs, insnRegCount, vsrc, pFailure);
1832 if (VERIFY_OK(*pFailure))
1833 checkTypeCategory(type, cat, pFailure);
1834 if (VERIFY_OK(*pFailure))
1835 setRegisterType(insnRegs, insnRegCount, vdst, type, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001836
Andy McFadden62a75162009-04-17 17:23:37 -07001837 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001838 LOG_VFY("VFY: copy1 v%u<-v%u type=%d cat=%d\n", vdst, vsrc, type, cat);
1839 }
1840}
1841
1842/*
1843 * Implement category-2 "move" instructions. Copy a 64-bit value from
1844 * "vsrc" to "vdst". This copies both halves of the register.
1845 */
1846static void copyRegister2(RegType* insnRegs, int insnRegCount, u4 vdst,
Andy McFadden62a75162009-04-17 17:23:37 -07001847 u4 vsrc, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001848{
Andy McFadden62a75162009-04-17 17:23:37 -07001849 RegType typel = getRegisterType(insnRegs, insnRegCount, vsrc, pFailure);
1850 RegType typeh = getRegisterType(insnRegs, insnRegCount, vsrc+1, pFailure);
1851 if (VERIFY_OK(*pFailure)) {
1852 checkTypeCategory(typel, kTypeCategory2, pFailure);
1853 checkWidePair(typel, typeh, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001854 }
Andy McFadden62a75162009-04-17 17:23:37 -07001855 if (VERIFY_OK(*pFailure))
1856 setRegisterType(insnRegs, insnRegCount, vdst, typel, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001857
Andy McFadden62a75162009-04-17 17:23:37 -07001858 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001859 LOG_VFY("VFY: copy2 v%u<-v%u type=%d/%d\n", vdst, vsrc, typel, typeh);
1860 }
1861}
1862
1863/*
1864 * Implement "move-result". Copy the category-1 value from the result
1865 * register to another register, and reset the result register.
1866 *
1867 * We can't just call copyRegister1 with an altered insnRegCount,
1868 * because that would affect the test on "vdst" as well.
1869 */
1870static void copyResultRegister1(RegType* insnRegs, const int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001871 u4 vdst, TypeCategory cat, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001872{
1873 RegType type;
1874 u4 vsrc;
1875
1876 vsrc = RESULT_REGISTER(insnRegCount);
Andy McFadden62a75162009-04-17 17:23:37 -07001877 type = getRegisterType(insnRegs, insnRegCount + kExtraRegs, vsrc, pFailure);
1878 if (VERIFY_OK(*pFailure))
1879 checkTypeCategory(type, cat, pFailure);
1880 if (VERIFY_OK(*pFailure)) {
1881 setRegisterType(insnRegs, insnRegCount, vdst, type, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001882 insnRegs[vsrc] = kRegTypeUnknown;
1883 }
1884
Andy McFadden62a75162009-04-17 17:23:37 -07001885 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001886 LOG_VFY("VFY: copyRes1 v%u<-v%u cat=%d type=%d\n",
1887 vdst, vsrc, cat, type);
1888 }
1889}
1890
1891/*
1892 * Implement "move-result-wide". Copy the category-2 value from the result
1893 * register to another register, and reset the result register.
1894 *
1895 * We can't just call copyRegister2 with an altered insnRegCount,
1896 * because that would affect the test on "vdst" as well.
1897 */
1898static void copyResultRegister2(RegType* insnRegs, const int insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07001899 u4 vdst, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001900{
1901 RegType typel, typeh;
1902 u4 vsrc;
1903
1904 vsrc = RESULT_REGISTER(insnRegCount);
Andy McFadden62a75162009-04-17 17:23:37 -07001905 typel = getRegisterType(insnRegs, insnRegCount + kExtraRegs, vsrc,
1906 pFailure);
1907 typeh = getRegisterType(insnRegs, insnRegCount + kExtraRegs, vsrc+1,
1908 pFailure);
1909 if (VERIFY_OK(*pFailure)) {
1910 checkTypeCategory(typel, kTypeCategory2, pFailure);
1911 checkWidePair(typel, typeh, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001912 }
Andy McFadden62a75162009-04-17 17:23:37 -07001913 if (VERIFY_OK(*pFailure)) {
1914 setRegisterType(insnRegs, insnRegCount, vdst, typel, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001915 insnRegs[vsrc] = kRegTypeUnknown;
1916 insnRegs[vsrc+1] = kRegTypeUnknown;
1917 }
1918
Andy McFadden62a75162009-04-17 17:23:37 -07001919 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001920 LOG_VFY("VFY: copyRes2 v%u<-v%u type=%d/%d\n",
1921 vdst, vsrc, typel, typeh);
1922 }
1923}
1924
1925/*
1926 * Verify types for a simple two-register instruction (e.g. "neg-int").
1927 * "dstType" is stored into vA, and "srcType" is verified against vB.
1928 */
1929static void checkUnop(RegType* insnRegs, const int insnRegCount,
1930 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType,
Andy McFadden62a75162009-04-17 17:23:37 -07001931 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001932{
Andy McFadden62a75162009-04-17 17:23:37 -07001933 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vB, srcType, pFailure);
1934 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001935}
1936
1937/*
1938 * We're performing an operation like "and-int/2addr" that can be
1939 * performed on booleans as well as integers. We get no indication of
1940 * boolean-ness, but we can infer it from the types of the arguments.
1941 *
1942 * Assumes we've already validated reg1/reg2.
1943 *
Andy McFaddenb5f64bc2009-06-10 14:11:07 -07001944 * TODO: consider generalizing this. The key principle is that the
1945 * result of a bitwise operation can only be as wide as the widest of
1946 * the operands. You can safely AND/OR/XOR two chars together and know
1947 * you still have a char, so it's reasonable for the compiler or "dx"
1948 * to skip the int-to-char instruction. (We need to do this for boolean
1949 * because there is no int-to-boolean operation.)
1950 *
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001951 * Returns true if both args are Boolean, Zero, or One.
1952 */
1953static bool upcastBooleanOp(RegType* insnRegs, const int insnRegCount,
1954 u4 reg1, u4 reg2)
1955{
1956 RegType type1, type2;
1957
1958 type1 = insnRegs[reg1];
1959 type2 = insnRegs[reg2];
1960
1961 if ((type1 == kRegTypeBoolean || type1 == kRegTypeZero ||
1962 type1 == kRegTypeOne) &&
1963 (type2 == kRegTypeBoolean || type2 == kRegTypeZero ||
1964 type2 == kRegTypeOne))
1965 {
1966 return true;
1967 }
1968 return false;
1969}
1970
1971/*
1972 * Verify types for A two-register instruction with a literal constant
1973 * (e.g. "add-int/lit8"). "dstType" is stored into vA, and "srcType" is
1974 * verified against vB.
1975 *
1976 * If "checkBooleanOp" is set, we use the constant value in vC.
1977 */
1978static void checkLitop(RegType* insnRegs, const int insnRegCount,
1979 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType,
Andy McFadden62a75162009-04-17 17:23:37 -07001980 bool checkBooleanOp, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001981{
Andy McFadden62a75162009-04-17 17:23:37 -07001982 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vB, srcType, pFailure);
1983 if (VERIFY_OK(*pFailure) && checkBooleanOp) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001984 assert(dstType == kRegTypeInteger);
1985 /* check vB with the call, then check the constant manually */
1986 if (upcastBooleanOp(insnRegs, insnRegCount, pDecInsn->vB, pDecInsn->vB)
1987 && (pDecInsn->vC == 0 || pDecInsn->vC == 1))
1988 {
1989 dstType = kRegTypeBoolean;
1990 }
1991 }
Andy McFadden62a75162009-04-17 17:23:37 -07001992 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001993}
1994
1995/*
1996 * Verify types for a simple three-register instruction (e.g. "add-int").
1997 * "dstType" is stored into vA, and "srcType1"/"srcType2" are verified
1998 * against vB/vC.
1999 */
2000static void checkBinop(RegType* insnRegs, const int insnRegCount,
2001 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType1,
Andy McFadden62a75162009-04-17 17:23:37 -07002002 RegType srcType2, bool checkBooleanOp, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002003{
Andy McFadden62a75162009-04-17 17:23:37 -07002004 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vB, srcType1,
2005 pFailure);
2006 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vC, srcType2,
2007 pFailure);
2008 if (VERIFY_OK(*pFailure) && checkBooleanOp) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002009 assert(dstType == kRegTypeInteger);
2010 if (upcastBooleanOp(insnRegs, insnRegCount, pDecInsn->vB, pDecInsn->vC))
2011 dstType = kRegTypeBoolean;
2012 }
Andy McFadden62a75162009-04-17 17:23:37 -07002013 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002014}
2015
2016/*
2017 * Verify types for a binary "2addr" operation. "srcType1"/"srcType2"
2018 * are verified against vA/vB, then "dstType" is stored into vA.
2019 */
2020static void checkBinop2addr(RegType* insnRegs, const int insnRegCount,
2021 DecodedInstruction* pDecInsn, RegType dstType, RegType srcType1,
Andy McFadden62a75162009-04-17 17:23:37 -07002022 RegType srcType2, bool checkBooleanOp, VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002023{
Andy McFadden62a75162009-04-17 17:23:37 -07002024 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vA, srcType1,
2025 pFailure);
2026 verifyRegisterType(insnRegs, insnRegCount, pDecInsn->vB, srcType2,
2027 pFailure);
2028 if (VERIFY_OK(*pFailure) && checkBooleanOp) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002029 assert(dstType == kRegTypeInteger);
2030 if (upcastBooleanOp(insnRegs, insnRegCount, pDecInsn->vA, pDecInsn->vB))
2031 dstType = kRegTypeBoolean;
2032 }
Andy McFadden62a75162009-04-17 17:23:37 -07002033 setRegisterType(insnRegs, insnRegCount, pDecInsn->vA, dstType, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002034}
2035
Andy McFadden80d25ea2009-06-12 07:26:17 -07002036/*
2037 * Treat right-shifting as a narrowing conversion when possible.
2038 *
2039 * For example, right-shifting an int 24 times results in a value that can
2040 * be treated as a byte.
2041 *
2042 * Things get interesting when contemplating sign extension. Right-
2043 * shifting an integer by 16 yields a value that can be represented in a
2044 * "short" but not a "char", but an unsigned right shift by 16 yields a
2045 * value that belongs in a char rather than a short. (Consider what would
2046 * happen if the result of the shift were cast to a char or short and then
2047 * cast back to an int. If sign extension, or the lack thereof, causes
2048 * a change in the 32-bit representation, then the conversion was lossy.)
2049 *
2050 * A signed right shift by 17 on an integer results in a short. An unsigned
2051 * right shfit by 17 on an integer results in a posshort, which can be
2052 * assigned to a short or a char.
2053 *
2054 * An unsigned right shift on a short can actually expand the result into
2055 * a 32-bit integer. For example, 0xfffff123 >>> 8 becomes 0x00fffff1,
2056 * which can't be represented in anything smaller than an int.
2057 *
2058 * javac does not generate code that takes advantage of this, but some
2059 * of the code optimizers do. It's generally a peephole optimization
2060 * that replaces a particular sequence, e.g. (bipush 24, ishr, i2b) is
2061 * replaced by (bipush 24, ishr). Knowing that shifting a short 8 times
2062 * to the right yields a byte is really more than we need to handle the
2063 * code that's out there, but support is not much more complex than just
2064 * handling integer.
2065 *
2066 * Right-shifting never yields a boolean value.
2067 *
2068 * Returns the new register type.
2069 */
2070static RegType adjustForRightShift(RegType* workRegs, const int insnRegCount,
2071 int reg, unsigned int shiftCount, bool isUnsignedShift,
2072 VerifyError* pFailure)
2073{
2074 RegType srcType = getRegisterType(workRegs, insnRegCount, reg, pFailure);
2075 RegType newType;
2076
2077 /* no-op */
2078 if (shiftCount == 0)
2079 return srcType;
2080
2081 /* safe defaults */
2082 if (isUnsignedShift)
2083 newType = kRegTypeInteger;
2084 else
2085 newType = srcType;
2086
2087 if (shiftCount >= 32) {
2088 LOG_VFY("Got unexpectedly large shift count %u\n", shiftCount);
2089 /* fail? */
2090 return newType;
2091 }
2092
2093 switch (srcType) {
2094 case kRegTypeInteger: /* 32-bit signed value */
2095 case kRegTypeFloat: /* (allowed; treat same as int) */
2096 if (isUnsignedShift) {
2097 if (shiftCount > 24)
2098 newType = kRegTypePosByte;
2099 else if (shiftCount >= 16)
2100 newType = kRegTypeChar;
2101 } else {
2102 if (shiftCount >= 24)
2103 newType = kRegTypeByte;
2104 else if (shiftCount >= 16)
2105 newType = kRegTypeShort;
2106 }
2107 break;
2108 case kRegTypeShort: /* 16-bit signed value */
2109 if (isUnsignedShift) {
2110 /* default (kRegTypeInteger) is correct */
2111 } else {
2112 if (shiftCount >= 8)
2113 newType = kRegTypeByte;
2114 }
2115 break;
2116 case kRegTypePosShort: /* 15-bit unsigned value */
2117 if (shiftCount >= 8)
2118 newType = kRegTypePosByte;
2119 break;
2120 case kRegTypeChar: /* 16-bit unsigned value */
2121 if (shiftCount > 8)
2122 newType = kRegTypePosByte;
2123 break;
2124 case kRegTypeByte: /* 8-bit signed value */
2125 /* defaults (u=kRegTypeInteger / s=srcType) are correct */
2126 break;
2127 case kRegTypePosByte: /* 7-bit unsigned value */
2128 /* always use newType=srcType */
2129 newType = srcType;
2130 break;
2131 case kRegTypeZero: /* 1-bit unsigned value */
2132 case kRegTypeOne:
2133 case kRegTypeBoolean:
2134 /* unnecessary? */
2135 newType = kRegTypeZero;
2136 break;
2137 default:
2138 /* long, double, references; shouldn't be here! */
2139 assert(false);
2140 break;
2141 }
2142
2143 if (newType != srcType) {
2144 LOGVV("narrowing: %d(%d) --> %d to %d\n",
2145 shiftCount, isUnsignedShift, srcType, newType);
2146 } else {
2147 LOGVV("not narrowed: %d(%d) --> %d\n",
2148 shiftCount, isUnsignedShift, srcType);
2149 }
2150 return newType;
2151}
2152
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002153
2154/*
2155 * ===========================================================================
2156 * Register merge
2157 * ===========================================================================
2158 */
2159
2160/*
2161 * Compute the "class depth" of a class. This is the distance from the
2162 * class to the top of the tree, chasing superclass links. java.lang.Object
2163 * has a class depth of 0.
2164 */
2165static int getClassDepth(ClassObject* clazz)
2166{
2167 int depth = 0;
2168
2169 while (clazz->super != NULL) {
2170 clazz = clazz->super;
2171 depth++;
2172 }
2173 return depth;
2174}
2175
2176/*
2177 * Given two classes, walk up the superclass tree to find a common
2178 * ancestor. (Called from findCommonSuperclass().)
2179 *
2180 * TODO: consider caching the class depth in the class object so we don't
2181 * have to search for it here.
2182 */
2183static ClassObject* digForSuperclass(ClassObject* c1, ClassObject* c2)
2184{
2185 int depth1, depth2;
2186
2187 depth1 = getClassDepth(c1);
2188 depth2 = getClassDepth(c2);
2189
2190 if (gDebugVerbose) {
2191 LOGVV("COMMON: %s(%d) + %s(%d)\n",
2192 c1->descriptor, depth1, c2->descriptor, depth2);
2193 }
2194
2195 /* pull the deepest one up */
2196 if (depth1 > depth2) {
2197 while (depth1 > depth2) {
2198 c1 = c1->super;
2199 depth1--;
2200 }
2201 } else {
2202 while (depth2 > depth1) {
2203 c2 = c2->super;
2204 depth2--;
2205 }
2206 }
2207
2208 /* walk up in lock-step */
2209 while (c1 != c2) {
2210 c1 = c1->super;
2211 c2 = c2->super;
2212
2213 assert(c1 != NULL && c2 != NULL);
2214 }
2215
2216 if (gDebugVerbose) {
2217 LOGVV(" : --> %s\n", c1->descriptor);
2218 }
2219 return c1;
2220}
2221
2222/*
2223 * Merge two array classes. We can't use the general "walk up to the
2224 * superclass" merge because the superclass of an array is always Object.
2225 * We want String[] + Integer[] = Object[]. This works for higher dimensions
2226 * as well, e.g. String[][] + Integer[][] = Object[][].
2227 *
2228 * If Foo1 and Foo2 are subclasses of Foo, Foo1[] + Foo2[] = Foo[].
2229 *
2230 * If Class implements Type, Class[] + Type[] = Type[].
2231 *
2232 * If the dimensions don't match, we want to convert to an array of Object
2233 * with the least dimension, e.g. String[][] + String[][][][] = Object[][].
2234 *
2235 * This gets a little awkward because we may have to ask the VM to create
2236 * a new array type with the appropriate element and dimensions. However, we
2237 * shouldn't be doing this often.
2238 */
2239static ClassObject* findCommonArraySuperclass(ClassObject* c1, ClassObject* c2)
2240{
2241 ClassObject* arrayClass = NULL;
2242 ClassObject* commonElem;
2243 int i, numDims;
2244
2245 assert(c1->arrayDim > 0);
2246 assert(c2->arrayDim > 0);
2247
2248 if (c1->arrayDim == c2->arrayDim) {
2249 //commonElem = digForSuperclass(c1->elementClass, c2->elementClass);
2250 commonElem = findCommonSuperclass(c1->elementClass, c2->elementClass);
2251 numDims = c1->arrayDim;
2252 } else {
2253 if (c1->arrayDim < c2->arrayDim)
2254 numDims = c1->arrayDim;
2255 else
2256 numDims = c2->arrayDim;
2257 commonElem = c1->super; // == java.lang.Object
2258 }
2259
2260 /* walk from the element to the (multi-)dimensioned array type */
2261 for (i = 0; i < numDims; i++) {
2262 arrayClass = dvmFindArrayClassForElement(commonElem);
2263 commonElem = arrayClass;
2264 }
2265
2266 LOGVV("ArrayMerge '%s' + '%s' --> '%s'\n",
2267 c1->descriptor, c2->descriptor, arrayClass->descriptor);
2268 return arrayClass;
2269}
2270
2271/*
2272 * Find the first common superclass of the two classes. We're not
2273 * interested in common interfaces.
2274 *
2275 * The easiest way to do this for concrete classes is to compute the "class
2276 * depth" of each, move up toward the root of the deepest one until they're
2277 * at the same depth, then walk both up to the root until they match.
2278 *
2279 * If both classes are arrays of non-primitive types, we need to merge
2280 * based on array depth and element type.
2281 *
2282 * If one class is an interface, we check to see if the other class/interface
2283 * (or one of its predecessors) implements the interface. If so, we return
2284 * the interface; otherwise, we return Object.
2285 *
2286 * NOTE: we continue the tradition of "lazy interface handling". To wit,
2287 * suppose we have three classes:
2288 * One implements Fancy, Free
2289 * Two implements Fancy, Free
2290 * Three implements Free
2291 * where Fancy and Free are unrelated interfaces. The code requires us
2292 * to merge One into Two. Ideally we'd use a common interface, which
2293 * gives us a choice between Fancy and Free, and no guidance on which to
2294 * use. If we use Free, we'll be okay when Three gets merged in, but if
2295 * we choose Fancy, we're hosed. The "ideal" solution is to create a
2296 * set of common interfaces and carry that around, merging further references
2297 * into it. This is a pain. The easy solution is to simply boil them
2298 * down to Objects and let the runtime invokeinterface call fail, which
2299 * is what we do.
2300 */
2301static ClassObject* findCommonSuperclass(ClassObject* c1, ClassObject* c2)
2302{
2303 assert(!dvmIsPrimitiveClass(c1) && !dvmIsPrimitiveClass(c2));
2304
2305 if (c1 == c2)
2306 return c1;
2307
2308 if (dvmIsInterfaceClass(c1) && dvmImplements(c2, c1)) {
2309 if (gDebugVerbose)
2310 LOGVV("COMMON/I1: %s + %s --> %s\n",
2311 c1->descriptor, c2->descriptor, c1->descriptor);
2312 return c1;
2313 }
2314 if (dvmIsInterfaceClass(c2) && dvmImplements(c1, c2)) {
2315 if (gDebugVerbose)
2316 LOGVV("COMMON/I2: %s + %s --> %s\n",
2317 c1->descriptor, c2->descriptor, c2->descriptor);
2318 return c2;
2319 }
2320
2321 if (dvmIsArrayClass(c1) && dvmIsArrayClass(c2) &&
2322 !dvmIsPrimitiveClass(c1->elementClass) &&
2323 !dvmIsPrimitiveClass(c2->elementClass))
2324 {
2325 return findCommonArraySuperclass(c1, c2);
2326 }
2327
2328 return digForSuperclass(c1, c2);
2329}
2330
2331/*
2332 * Merge two RegType values.
2333 *
2334 * Sets "*pChanged" to "true" if the result doesn't match "type1".
2335 */
2336static RegType mergeTypes(RegType type1, RegType type2, bool* pChanged)
2337{
2338 RegType result;
2339
2340 /*
2341 * Check for trivial case so we don't have to hit memory.
2342 */
2343 if (type1 == type2)
2344 return type1;
2345
2346 /*
2347 * Use the table if we can, and reject any attempts to merge something
2348 * from the table with a reference type.
2349 *
2350 * The uninitialized table entry at index zero *will* show up as a
2351 * simple kRegTypeUninit value. Since this cannot be merged with
2352 * anything but itself, the rules do the right thing.
2353 */
2354 if (type1 < kRegTypeMAX) {
2355 if (type2 < kRegTypeMAX) {
2356 result = gDvmMergeTab[type1][type2];
2357 } else {
2358 /* simple + reference == conflict, usually */
2359 if (type1 == kRegTypeZero)
2360 result = type2;
2361 else
2362 result = kRegTypeConflict;
2363 }
2364 } else {
2365 if (type2 < kRegTypeMAX) {
2366 /* reference + simple == conflict, usually */
2367 if (type2 == kRegTypeZero)
2368 result = type1;
2369 else
2370 result = kRegTypeConflict;
2371 } else {
2372 /* merging two references */
2373 if (regTypeIsUninitReference(type1) ||
2374 regTypeIsUninitReference(type2))
2375 {
2376 /* can't merge uninit with anything but self */
2377 result = kRegTypeConflict;
2378 } else {
2379 ClassObject* clazz1 = regTypeInitializedReferenceToClass(type1);
2380 ClassObject* clazz2 = regTypeInitializedReferenceToClass(type2);
2381 ClassObject* mergedClass;
2382
2383 mergedClass = findCommonSuperclass(clazz1, clazz2);
2384 assert(mergedClass != NULL);
2385 result = regTypeFromClass(mergedClass);
2386 }
2387 }
2388 }
2389
2390 if (result != type1)
2391 *pChanged = true;
2392 return result;
2393}
2394
2395/*
2396 * Control can transfer to "nextInsn".
2397 *
2398 * Merge the registers from "workRegs" into "regTypes" at "nextInsn", and
2399 * set the "changed" flag on the target address if the registers have changed.
2400 */
2401static void updateRegisters(const Method* meth, InsnFlags* insnFlags,
2402 RegisterTable* regTable, int nextInsn, const RegType* workRegs)
2403{
2404 RegType* targetRegs = getRegisterLine(regTable, nextInsn);
2405 const int insnRegCount = meth->registersSize;
2406
2407#if 0
2408 if (!dvmInsnIsBranchTarget(insnFlags, nextInsn)) {
2409 LOGE("insnFlags[0x%x]=0x%08x\n", nextInsn, insnFlags[nextInsn]);
2410 LOGE(" In %s.%s %s\n",
2411 meth->clazz->descriptor, meth->name, meth->descriptor);
2412 assert(false);
2413 }
2414#endif
2415
2416 if (!dvmInsnIsVisitedOrChanged(insnFlags, nextInsn)) {
2417 /*
2418 * We haven't processed this instruction before, and we haven't
2419 * touched the registers here, so there's nothing to "merge". Copy
2420 * the registers over and mark it as changed. (This is the only
2421 * way a register can transition out of "unknown", so this is not
2422 * just an optimization.)
2423 */
2424 LOGVV("COPY into 0x%04x\n", nextInsn);
2425 copyRegisters(targetRegs, workRegs, insnRegCount + kExtraRegs);
2426 dvmInsnSetChanged(insnFlags, nextInsn, true);
2427 } else {
2428 if (gDebugVerbose) {
2429 LOGVV("MERGE into 0x%04x\n", nextInsn);
2430 //dumpRegTypes(meth, insnFlags, targetRegs, 0, "targ", NULL, 0);
2431 //dumpRegTypes(meth, insnFlags, workRegs, 0, "work", NULL, 0);
2432 }
2433 /* merge registers, set Changed only if different */
2434 bool changed = false;
2435 int i;
2436
2437 for (i = 0; i < insnRegCount + kExtraRegs; i++) {
2438 targetRegs[i] = mergeTypes(targetRegs[i], workRegs[i], &changed);
2439 }
2440
2441 if (gDebugVerbose) {
2442 //LOGI(" RESULT (changed=%d)\n", changed);
2443 //dumpRegTypes(meth, insnFlags, targetRegs, 0, "rslt", NULL, 0);
2444 }
2445
2446 if (changed)
2447 dvmInsnSetChanged(insnFlags, nextInsn, true);
2448 }
2449}
2450
2451
2452/*
2453 * ===========================================================================
2454 * Utility functions
2455 * ===========================================================================
2456 */
2457
2458/*
2459 * Look up an instance field, specified by "fieldIdx", that is going to be
2460 * accessed in object "objType". This resolves the field and then verifies
2461 * that the class containing the field is an instance of the reference in
2462 * "objType".
2463 *
2464 * It is possible for "objType" to be kRegTypeZero, meaning that we might
2465 * have a null reference. This is a runtime problem, so we allow it,
2466 * skipping some of the type checks.
2467 *
2468 * In general, "objType" must be an initialized reference. However, we
2469 * allow it to be uninitialized if this is an "<init>" method and the field
2470 * is declared within the "objType" class.
2471 *
Andy McFadden62a75162009-04-17 17:23:37 -07002472 * Returns an InstField on success, returns NULL and sets "*pFailure"
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002473 * on failure.
2474 */
2475static InstField* getInstField(const Method* meth,
2476 const UninitInstanceMap* uninitMap, RegType objType, int fieldIdx,
Andy McFadden62a75162009-04-17 17:23:37 -07002477 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002478{
2479 InstField* instField = NULL;
2480 ClassObject* objClass;
2481 bool mustBeLocal = false;
2482
2483 if (!regTypeIsReference(objType)) {
Andy McFadden62a75162009-04-17 17:23:37 -07002484 LOG_VFY("VFY: attempt to access field in non-reference type %d\n",
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002485 objType);
Andy McFadden62a75162009-04-17 17:23:37 -07002486 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002487 goto bail;
2488 }
2489
Andy McFadden62a75162009-04-17 17:23:37 -07002490 instField = dvmOptResolveInstField(meth->clazz, fieldIdx, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002491 if (instField == NULL) {
2492 LOG_VFY("VFY: unable to resolve instance field %u\n", fieldIdx);
Andy McFadden62a75162009-04-17 17:23:37 -07002493 assert(!VERIFY_OK(*pFailure));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002494 goto bail;
2495 }
2496
2497 if (objType == kRegTypeZero)
2498 goto bail;
2499
2500 /*
2501 * Access to fields in uninitialized objects is allowed if this is
2502 * the <init> method for the object and the field in question is
2503 * declared by this class.
2504 */
2505 objClass = regTypeReferenceToClass(objType, uninitMap);
2506 assert(objClass != NULL);
2507 if (regTypeIsUninitReference(objType)) {
2508 if (!isInitMethod(meth) || meth->clazz != objClass) {
2509 LOG_VFY("VFY: attempt to access field via uninitialized ref\n");
Andy McFadden62a75162009-04-17 17:23:37 -07002510 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002511 goto bail;
2512 }
2513 mustBeLocal = true;
2514 }
2515
2516 if (!dvmInstanceof(objClass, instField->field.clazz)) {
2517 LOG_VFY("VFY: invalid field access (field %s.%s, through %s ref)\n",
2518 instField->field.clazz->descriptor, instField->field.name,
2519 objClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07002520 *pFailure = VERIFY_ERROR_NO_FIELD;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002521 goto bail;
2522 }
2523
2524 if (mustBeLocal) {
2525 /* for uninit ref, make sure it's defined by this class, not super */
2526 if (instField < objClass->ifields ||
2527 instField >= objClass->ifields + objClass->ifieldCount)
2528 {
2529 LOG_VFY("VFY: invalid constructor field access (field %s in %s)\n",
2530 instField->field.name, objClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07002531 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002532 goto bail;
2533 }
2534 }
2535
2536bail:
2537 return instField;
2538}
2539
2540/*
2541 * Look up a static field.
2542 *
Andy McFadden62a75162009-04-17 17:23:37 -07002543 * Returns a StaticField on success, returns NULL and sets "*pFailure"
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002544 * on failure.
2545 */
2546static StaticField* getStaticField(const Method* meth, int fieldIdx,
Andy McFadden62a75162009-04-17 17:23:37 -07002547 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002548{
2549 StaticField* staticField;
2550
Andy McFadden62a75162009-04-17 17:23:37 -07002551 staticField = dvmOptResolveStaticField(meth->clazz, fieldIdx, pFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002552 if (staticField == NULL) {
2553 DexFile* pDexFile = meth->clazz->pDvmDex->pDexFile;
2554 const DexFieldId* pFieldId;
2555
2556 pFieldId = dexGetFieldId(pDexFile, fieldIdx);
2557
2558 LOG_VFY("VFY: unable to resolve static field %u (%s) in %s\n", fieldIdx,
2559 dexStringById(pDexFile, pFieldId->nameIdx),
2560 dexStringByTypeIdx(pDexFile, pFieldId->classIdx));
Andy McFadden62a75162009-04-17 17:23:37 -07002561 assert(!VERIFY_OK(*pFailure));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002562 goto bail;
2563 }
2564
2565bail:
2566 return staticField;
2567}
2568
2569/*
2570 * If "field" is marked "final", make sure this is the either <clinit>
2571 * or <init> as appropriate.
2572 *
Andy McFadden62a75162009-04-17 17:23:37 -07002573 * Sets "*pFailure" on failure.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002574 */
2575static void checkFinalFieldAccess(const Method* meth, const Field* field,
Andy McFadden62a75162009-04-17 17:23:37 -07002576 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002577{
2578 if (!dvmIsFinalField(field))
2579 return;
2580
2581 /* make sure we're in the same class */
2582 if (meth->clazz != field->clazz) {
2583 LOG_VFY_METH(meth, "VFY: can't modify final field %s.%s\n",
2584 field->clazz->descriptor, field->name);
Andy McFaddenb51ea112009-05-08 16:50:17 -07002585 *pFailure = VERIFY_ERROR_ACCESS_FIELD;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002586 return;
2587 }
2588
2589 /*
Andy McFadden62a75162009-04-17 17:23:37 -07002590 * The VM spec descriptions of putfield and putstatic say that
2591 * IllegalAccessError is only thrown when the instructions appear
2592 * outside the declaring class. Our earlier attempts to restrict
2593 * final field modification to constructors are, therefore, wrong.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002594 */
2595#if 0
2596 /* make sure we're in the right kind of constructor */
2597 if (dvmIsStaticField(field)) {
2598 if (!isClassInitMethod(meth)) {
2599 LOG_VFY_METH(meth,
2600 "VFY: can't modify final static field outside <clinit>\n");
Andy McFadden62a75162009-04-17 17:23:37 -07002601 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002602 }
2603 } else {
2604 if (!isInitMethod(meth)) {
2605 LOG_VFY_METH(meth,
2606 "VFY: can't modify final field outside <init>\n");
Andy McFadden62a75162009-04-17 17:23:37 -07002607 *pFailure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002608 }
2609 }
2610#endif
2611}
2612
2613/*
2614 * Make sure that the register type is suitable for use as an array index.
2615 *
Andy McFadden62a75162009-04-17 17:23:37 -07002616 * Sets "*pFailure" if not.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002617 */
2618static void checkArrayIndexType(const Method* meth, RegType regType,
Andy McFadden62a75162009-04-17 17:23:37 -07002619 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002620{
Andy McFadden62a75162009-04-17 17:23:37 -07002621 if (VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002622 /*
2623 * The 1nr types are interchangeable at this level. We could
2624 * do something special if we can definitively identify it as a
2625 * float, but there's no real value in doing so.
2626 */
Andy McFadden62a75162009-04-17 17:23:37 -07002627 checkTypeCategory(regType, kTypeCategory1nr, pFailure);
2628 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002629 LOG_VFY_METH(meth, "Invalid reg type for array index (%d)\n",
2630 regType);
2631 }
2632 }
2633}
2634
2635/*
2636 * Check constraints on constructor return. Specifically, make sure that
2637 * the "this" argument got initialized.
2638 *
2639 * The "this" argument to <init> uses code offset kUninitThisArgAddr, which
2640 * puts it at the start of the list in slot 0. If we see a register with
2641 * an uninitialized slot 0 reference, we know it somehow didn't get
2642 * initialized.
2643 *
2644 * Returns "true" if all is well.
2645 */
2646static bool checkConstructorReturn(const Method* meth, const RegType* insnRegs,
2647 const int insnRegCount)
2648{
2649 int i;
2650
2651 if (!isInitMethod(meth))
2652 return true;
2653
2654 RegType uninitThis = regTypeFromUninitIndex(kUninitThisArgSlot);
2655
2656 for (i = 0; i < insnRegCount; i++) {
2657 if (insnRegs[i] == uninitThis) {
2658 LOG_VFY("VFY: <init> returning without calling superclass init\n");
2659 return false;
2660 }
2661 }
2662 return true;
2663}
2664
2665/*
2666 * Verify that the target instruction is not "move-exception". It's important
2667 * that the only way to execute a move-exception is as the first instruction
2668 * of an exception handler.
2669 *
2670 * Returns "true" if all is well, "false" if the target instruction is
2671 * move-exception.
2672 */
2673static bool checkMoveException(const Method* meth, int insnIdx,
2674 const char* logNote)
2675{
2676 assert(insnIdx >= 0 && insnIdx < (int)dvmGetMethodInsnsSize(meth));
2677
2678 if ((meth->insns[insnIdx] & 0xff) == OP_MOVE_EXCEPTION) {
2679 LOG_VFY("VFY: invalid use of move-exception\n");
2680 return false;
2681 }
2682 return true;
2683}
2684
2685/*
2686 * For the "move-exception" instruction at "insnIdx", which must be at an
2687 * exception handler address, determine the first common superclass of
2688 * all exceptions that can land here. (For javac output, we're probably
2689 * looking at multiple spans of bytecode covered by one "try" that lands
2690 * at an exception-specific "catch", but in general the handler could be
2691 * shared for multiple exceptions.)
2692 *
2693 * Returns NULL if no matching exception handler can be found, or if the
2694 * exception is not a subclass of Throwable.
2695 */
Andy McFadden62a75162009-04-17 17:23:37 -07002696static ClassObject* getCaughtExceptionType(const Method* meth, int insnIdx,
2697 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002698{
Andy McFadden62a75162009-04-17 17:23:37 -07002699 VerifyError localFailure;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002700 const DexCode* pCode;
2701 DexFile* pDexFile;
2702 ClassObject* commonSuper = NULL;
Andy McFadden62a75162009-04-17 17:23:37 -07002703 bool foundPossibleHandler = false;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002704 u4 handlersSize;
2705 u4 offset;
2706 u4 i;
2707
2708 pDexFile = meth->clazz->pDvmDex->pDexFile;
2709 pCode = dvmGetMethodCode(meth);
2710
2711 if (pCode->triesSize != 0) {
2712 handlersSize = dexGetHandlersSize(pCode);
2713 offset = dexGetFirstHandlerOffset(pCode);
2714 } else {
2715 handlersSize = 0;
2716 offset = 0;
2717 }
2718
2719 for (i = 0; i < handlersSize; i++) {
2720 DexCatchIterator iterator;
2721 dexCatchIteratorInit(&iterator, pCode, offset);
2722
2723 for (;;) {
2724 const DexCatchHandler* handler = dexCatchIteratorNext(&iterator);
2725
2726 if (handler == NULL) {
2727 break;
2728 }
2729
2730 if (handler->address == (u4) insnIdx) {
2731 ClassObject* clazz;
Andy McFadden62a75162009-04-17 17:23:37 -07002732 foundPossibleHandler = true;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002733
2734 if (handler->typeIdx == kDexNoIndex)
2735 clazz = gDvm.classJavaLangThrowable;
2736 else
Andy McFadden62a75162009-04-17 17:23:37 -07002737 clazz = dvmOptResolveClass(meth->clazz, handler->typeIdx,
2738 &localFailure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002739
2740 if (clazz == NULL) {
2741 LOG_VFY("VFY: unable to resolve exception class %u (%s)\n",
2742 handler->typeIdx,
2743 dexStringByTypeIdx(pDexFile, handler->typeIdx));
Andy McFadden62a75162009-04-17 17:23:37 -07002744 /* TODO: do we want to keep going? If we don't fail
2745 * this we run the risk of having a non-Throwable
2746 * introduced at runtime. However, that won't pass
2747 * an instanceof test, so is essentially harmless. */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002748 } else {
2749 if (commonSuper == NULL)
2750 commonSuper = clazz;
2751 else
2752 commonSuper = findCommonSuperclass(clazz, commonSuper);
2753 }
2754 }
2755 }
2756
2757 offset = dexCatchIteratorGetEndOffset(&iterator, pCode);
2758 }
2759
2760 if (commonSuper == NULL) {
Andy McFadden62a75162009-04-17 17:23:37 -07002761 /* no catch blocks, or no catches with classes we can find */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002762 LOG_VFY_METH(meth,
2763 "VFY: unable to find exception handler at addr 0x%x\n", insnIdx);
Andy McFadden62a75162009-04-17 17:23:37 -07002764 *pFailure = VERIFY_ERROR_GENERIC;
2765 } else {
2766 // TODO: verify the class is an instance of Throwable?
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002767 }
2768
2769 return commonSuper;
2770}
2771
2772/*
2773 * Initialize the RegisterTable.
2774 *
2775 * Every instruction address can have a different set of information about
2776 * what's in which register, but for verification purposes we only need to
2777 * store it at branch target addresses (because we merge into that).
2778 *
2779 * By zeroing out the storage we are effectively initializing the register
2780 * information to kRegTypeUnknown.
2781 */
2782static bool initRegisterTable(const Method* meth, const InsnFlags* insnFlags,
2783 RegisterTable* regTable, RegisterTrackingMode trackRegsFor)
2784{
2785 const int insnsSize = dvmGetMethodInsnsSize(meth);
2786 int i;
2787
2788 regTable->insnRegCountPlus = meth->registersSize + kExtraRegs;
2789 regTable->addrRegs = (RegType**) calloc(insnsSize, sizeof(RegType*));
2790 if (regTable->addrRegs == NULL)
2791 return false;
2792
2793 assert(insnsSize > 0);
2794
2795 /*
2796 * "All" means "every address that holds the start of an instruction".
2797 * "Branches" and "GcPoints" mean just those addresses.
2798 *
2799 * "GcPoints" fills about half the addresses, "Branches" about 15%.
2800 */
2801 int interestingCount = 0;
2802 //int insnCount = 0;
2803
2804 for (i = 0; i < insnsSize; i++) {
2805 bool interesting;
2806
2807 switch (trackRegsFor) {
2808 case kTrackRegsAll:
2809 interesting = dvmInsnIsOpcode(insnFlags, i);
2810 break;
2811 case kTrackRegsGcPoints:
2812 interesting = dvmInsnIsGcPoint(insnFlags, i) ||
2813 dvmInsnIsBranchTarget(insnFlags, i);
2814 break;
2815 case kTrackRegsBranches:
2816 interesting = dvmInsnIsBranchTarget(insnFlags, i);
2817 break;
2818 default:
2819 dvmAbort();
2820 return false;
2821 }
2822
2823 if (interesting)
2824 interestingCount++;
2825
2826 /* count instructions, for display only */
2827 //if (dvmInsnIsOpcode(insnFlags, i))
2828 // insnCount++;
2829 }
2830
2831 regTable->regAlloc = (RegType*)
2832 calloc(regTable->insnRegCountPlus * interestingCount, sizeof(RegType));
2833 if (regTable->regAlloc == NULL)
2834 return false;
2835
2836 RegType* regPtr = regTable->regAlloc;
2837 for (i = 0; i < insnsSize; i++) {
2838 bool interesting;
2839
2840 switch (trackRegsFor) {
2841 case kTrackRegsAll:
2842 interesting = dvmInsnIsOpcode(insnFlags, i);
2843 break;
2844 case kTrackRegsGcPoints:
2845 interesting = dvmInsnIsGcPoint(insnFlags, i) ||
2846 dvmInsnIsBranchTarget(insnFlags, i);
2847 break;
2848 case kTrackRegsBranches:
2849 interesting = dvmInsnIsBranchTarget(insnFlags, i);
2850 break;
2851 default:
2852 dvmAbort();
2853 return false;
2854 }
2855
2856 if (interesting) {
2857 regTable->addrRegs[i] = regPtr;
2858 regPtr += regTable->insnRegCountPlus;
2859 }
2860 }
2861
2862 //LOGD("Tracking registers for %d, total %d of %d(%d) (%d%%)\n",
2863 // TRACK_REGS_FOR, interestingCount, insnCount, insnsSize,
2864 // (interestingCount*100) / insnCount);
2865
2866 assert(regPtr - regTable->regAlloc ==
2867 regTable->insnRegCountPlus * interestingCount);
2868 assert(regTable->addrRegs[0] != NULL);
2869 return true;
2870}
2871
2872
2873/*
2874 * Verify that the arguments in a filled-new-array instruction are valid.
2875 *
2876 * "resClass" is the class refered to by pDecInsn->vB.
2877 */
2878static void verifyFilledNewArrayRegs(const Method* meth,
2879 const RegType* insnRegs, const int insnRegCount,
2880 const DecodedInstruction* pDecInsn, ClassObject* resClass, bool isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07002881 VerifyError* pFailure)
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002882{
2883 u4 argCount = pDecInsn->vA;
2884 RegType expectedType;
2885 PrimitiveType elemType;
2886 unsigned int ui;
2887
2888 assert(dvmIsArrayClass(resClass));
2889 elemType = resClass->elementClass->primitiveType;
2890 if (elemType == PRIM_NOT) {
2891 expectedType = regTypeFromClass(resClass->elementClass);
2892 } else {
2893 expectedType = primitiveTypeToRegType(elemType);
2894 }
2895 //LOGI("filled-new-array: %s -> %d\n", resClass->descriptor, expectedType);
2896
2897 /*
2898 * Verify each register. If "argCount" is bad, verifyRegisterType()
2899 * will run off the end of the list and fail. It's legal, if silly,
2900 * for argCount to be zero.
2901 */
2902 for (ui = 0; ui < argCount; ui++) {
2903 u4 getReg;
2904
2905 if (isRange)
2906 getReg = pDecInsn->vC + ui;
2907 else
2908 getReg = pDecInsn->arg[ui];
2909
Andy McFadden62a75162009-04-17 17:23:37 -07002910 verifyRegisterType(insnRegs, insnRegCount, getReg, expectedType,
2911 pFailure);
2912 if (!VERIFY_OK(*pFailure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08002913 LOG_VFY("VFY: filled-new-array arg %u(%u) not valid\n", ui, getReg);
2914 return;
2915 }
2916 }
2917}
2918
2919
2920/*
Andy McFaddenb51ea112009-05-08 16:50:17 -07002921 * Replace an instruction with "throw-verification-error". This allows us to
2922 * defer error reporting until the code path is first used.
2923 *
2924 * The throw-verification-error instruction requires two code units. Some
2925 * of the replaced instructions require three; the third code unit will
2926 * receive a "nop". The instruction's length will be left unchanged
2927 * in "insnFlags".
2928 *
2929 * IMPORTANT: this may replace meth->insns with a pointer to a new copy of
2930 * the instructions.
2931 *
2932 * Returns "true" on success.
2933 */
2934static bool replaceFailingInstruction(Method* meth, InsnFlags* insnFlags,
2935 int insnIdx, VerifyError failure)
2936{
2937 const u2* oldInsns = meth->insns + insnIdx;
2938 u2 oldInsn = *oldInsns;
2939 bool result = false;
2940
2941 dvmMakeCodeReadWrite(meth);
2942
2943 //LOGD(" was 0x%04x\n", oldInsn);
2944 u2* newInsns = (u2*) meth->insns + insnIdx;
2945
2946 /*
2947 * Generate the new instruction out of the old.
2948 *
2949 * First, make sure this is an instruction we're expecting to stomp on.
2950 */
2951 switch (oldInsn & 0xff) {
2952 case OP_CONST_CLASS: // insn[1] == class ref, 2 bytes
2953 case OP_CHECK_CAST:
2954 case OP_INSTANCE_OF:
2955 case OP_NEW_INSTANCE:
2956 case OP_NEW_ARRAY:
2957
2958 case OP_FILLED_NEW_ARRAY: // insn[1] == class ref, 3 bytes
2959 case OP_FILLED_NEW_ARRAY_RANGE:
2960
2961 case OP_IGET: // insn[1] == field ref, 2 bytes
2962 case OP_IGET_BOOLEAN:
2963 case OP_IGET_BYTE:
2964 case OP_IGET_CHAR:
2965 case OP_IGET_SHORT:
2966 case OP_IGET_WIDE:
2967 case OP_IGET_OBJECT:
2968 case OP_IPUT:
2969 case OP_IPUT_BOOLEAN:
2970 case OP_IPUT_BYTE:
2971 case OP_IPUT_CHAR:
2972 case OP_IPUT_SHORT:
2973 case OP_IPUT_WIDE:
2974 case OP_IPUT_OBJECT:
2975 case OP_SGET:
2976 case OP_SGET_BOOLEAN:
2977 case OP_SGET_BYTE:
2978 case OP_SGET_CHAR:
2979 case OP_SGET_SHORT:
2980 case OP_SGET_WIDE:
2981 case OP_SGET_OBJECT:
2982 case OP_SPUT:
2983 case OP_SPUT_BOOLEAN:
2984 case OP_SPUT_BYTE:
2985 case OP_SPUT_CHAR:
2986 case OP_SPUT_SHORT:
2987 case OP_SPUT_WIDE:
2988 case OP_SPUT_OBJECT:
2989
2990 case OP_INVOKE_VIRTUAL: // insn[1] == method ref, 3 bytes
2991 case OP_INVOKE_VIRTUAL_RANGE:
2992 case OP_INVOKE_SUPER:
2993 case OP_INVOKE_SUPER_RANGE:
2994 case OP_INVOKE_DIRECT:
2995 case OP_INVOKE_DIRECT_RANGE:
2996 case OP_INVOKE_STATIC:
2997 case OP_INVOKE_STATIC_RANGE:
2998 case OP_INVOKE_INTERFACE:
2999 case OP_INVOKE_INTERFACE_RANGE:
3000 break;
3001 default:
3002 /* could handle this in a generic way, but this is probably safer */
3003 LOG_VFY("GLITCH: verifier asked to replace opcode 0x%02x\n",
3004 oldInsn & 0xff);
3005 goto bail;
3006 }
3007
3008 /* write a NOP over the third code unit, if necessary */
3009 int width = dvmInsnGetWidth(insnFlags, insnIdx);
3010 switch (width) {
3011 case 2:
3012 /* nothing to do */
3013 break;
3014 case 3:
3015 newInsns[2] = OP_NOP;
3016 break;
3017 default:
3018 /* whoops */
3019 LOGE("ERROR: stomped a %d-unit instruction with a verifier error\n",
3020 width);
3021 dvmAbort();
3022 }
3023
3024 /* encode the opcode, with the failure code in the high byte */
3025 newInsns[0] = OP_THROW_VERIFICATION_ERROR | (failure << 8);
3026
3027 result = true;
3028
3029bail:
3030 dvmMakeCodeReadOnly(meth);
3031 return result;
3032}
3033
3034
3035/*
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003036 * ===========================================================================
3037 * Entry point and driver loop
3038 * ===========================================================================
3039 */
3040
3041/*
3042 * Entry point for the detailed code-flow analysis.
3043 */
Andy McFaddenb51ea112009-05-08 16:50:17 -07003044bool dvmVerifyCodeFlow(Method* meth, InsnFlags* insnFlags,
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003045 UninitInstanceMap* uninitMap)
3046{
3047 bool result = false;
3048 const int insnsSize = dvmGetMethodInsnsSize(meth);
3049 const u2* insns = meth->insns;
3050 const bool generateRegisterMap = gDvm.generateRegisterMaps;
3051 int i, offset;
3052 bool isConditional;
3053 RegisterTable regTable;
3054
3055 memset(&regTable, 0, sizeof(regTable));
3056
3057#ifndef NDEBUG
3058 checkMergeTab(); // only need to do this if table gets updated
3059#endif
3060
3061 /*
3062 * We rely on these for verification of const-class, const-string,
3063 * and throw instructions. Make sure we have them.
3064 */
3065 if (gDvm.classJavaLangClass == NULL)
3066 gDvm.classJavaLangClass =
3067 dvmFindSystemClassNoInit("Ljava/lang/Class;");
3068 if (gDvm.classJavaLangString == NULL)
3069 gDvm.classJavaLangString =
3070 dvmFindSystemClassNoInit("Ljava/lang/String;");
Andy McFadden686e1e22009-05-26 16:56:30 -07003071 if (gDvm.classJavaLangThrowable == NULL) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003072 gDvm.classJavaLangThrowable =
3073 dvmFindSystemClassNoInit("Ljava/lang/Throwable;");
Andy McFadden686e1e22009-05-26 16:56:30 -07003074 gDvm.offJavaLangThrowable_cause =
3075 dvmFindFieldOffset(gDvm.classJavaLangThrowable,
3076 "cause", "Ljava/lang/Throwable;");
3077 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003078 if (gDvm.classJavaLangObject == NULL)
3079 gDvm.classJavaLangObject =
3080 dvmFindSystemClassNoInit("Ljava/lang/Object;");
3081
3082 if (meth->registersSize * insnsSize > 2*1024*1024) {
3083 /* should probably base this on actual memory requirements */
3084 LOG_VFY_METH(meth,
3085 "VFY: arbitrarily rejecting large method (regs=%d count=%d)\n",
3086 meth->registersSize, insnsSize);
3087 goto bail;
3088 }
3089
3090 /*
3091 * Create register lists, and initialize them to "Unknown". If we're
3092 * also going to create the register map, we need to retain the
3093 * register lists for a larger set of addresses.
3094 */
3095 if (!initRegisterTable(meth, insnFlags, &regTable,
3096 generateRegisterMap ? kTrackRegsGcPoints : kTrackRegsBranches))
3097 goto bail;
3098
3099 /*
3100 * Initialize the types of the registers that correspond to the
3101 * method arguments. We can determine this from the method signature.
3102 */
3103 if (!setTypesFromSignature(meth, regTable.addrRegs[0], uninitMap))
3104 goto bail;
3105
3106 /*
3107 * Run the verifier.
3108 */
3109 if (!doCodeVerification(meth, insnFlags, &regTable, uninitMap))
3110 goto bail;
3111
3112 /*
3113 * Generate a register map.
3114 */
3115 if (generateRegisterMap) {
3116 RegisterMap* pMap;
3117 VerifierData vd;
3118
3119 vd.method = meth;
3120 vd.insnsSize = insnsSize;
3121 vd.insnRegCount = meth->registersSize;
3122 vd.insnFlags = insnFlags;
3123 vd.addrRegs = regTable.addrRegs;
3124
3125 pMap = dvmGenerateRegisterMapV(&vd);
3126 if (pMap != NULL) {
3127 /*
3128 * Tuck it into the Method struct. It will either get used
3129 * directly or, if we're in dexopt, will be packed up and
3130 * appended to the DEX file.
3131 */
3132 dvmSetRegisterMap((Method*)meth, pMap);
3133 }
3134 }
3135
3136 /*
3137 * Success.
3138 */
3139 result = true;
3140
3141bail:
3142 free(regTable.addrRegs);
3143 free(regTable.regAlloc);
3144 return result;
3145}
3146
3147/*
3148 * Grind through the instructions.
3149 *
3150 * The basic strategy is as outlined in v3 4.11.1.2: set the "changed" bit
3151 * on the first instruction, process it (setting additional "changed" bits),
3152 * and repeat until there are no more.
3153 *
3154 * v3 4.11.1.1
3155 * - (N/A) operand stack is always the same size
3156 * - operand stack [registers] contain the correct types of values
3157 * - local variables [registers] contain the correct types of values
3158 * - methods are invoked with the appropriate arguments
3159 * - fields are assigned using values of appropriate types
3160 * - opcodes have the correct type values in operand registers
3161 * - there is never an uninitialized class instance in a local variable in
3162 * code protected by an exception handler (operand stack is okay, because
3163 * the operand stack is discarded when an exception is thrown) [can't
3164 * know what's a local var w/o the debug info -- should fall out of
3165 * register typing]
3166 *
3167 * v3 4.11.1.2
3168 * - execution cannot fall off the end of the code
3169 *
3170 * (We also do many of the items described in the "static checks" sections,
3171 * because it's easier to do them here.)
3172 *
3173 * We need an array of RegType values, one per register, for every
3174 * instruction. In theory this could become quite large -- up to several
3175 * megabytes for a monster function. For self-preservation we reject
3176 * anything that requires more than a certain amount of memory. (Typical
3177 * "large" should be on the order of 4K code units * 8 registers.) This
3178 * will likely have to be adjusted.
3179 *
3180 *
3181 * The spec forbids backward branches when there's an uninitialized reference
3182 * in a register. The idea is to prevent something like this:
3183 * loop:
3184 * move r1, r0
3185 * new-instance r0, MyClass
3186 * ...
3187 * if-eq rN, loop // once
3188 * initialize r0
3189 *
3190 * This leaves us with two different instances, both allocated by the
3191 * same instruction, but only one is initialized. The scheme outlined in
3192 * v3 4.11.1.4 wouldn't catch this, so they work around it by preventing
3193 * backward branches. We achieve identical results without restricting
3194 * code reordering by specifying that you can't execute the new-instance
3195 * instruction if a register contains an uninitialized instance created
3196 * by that same instrutcion.
3197 */
Andy McFaddenb51ea112009-05-08 16:50:17 -07003198static bool doCodeVerification(Method* meth, InsnFlags* insnFlags,
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003199 RegisterTable* regTable, UninitInstanceMap* uninitMap)
3200{
3201 const int insnsSize = dvmGetMethodInsnsSize(meth);
3202 const u2* insns = meth->insns;
3203 RegType workRegs[meth->registersSize + kExtraRegs];
3204 bool result = false;
3205 bool debugVerbose = false;
3206 int insnIdx, startGuess, prevAddr;
3207
3208 /*
3209 * Begin by marking the first instruction as "changed".
3210 */
3211 dvmInsnSetChanged(insnFlags, 0, true);
3212
3213 if (doVerboseLogging(meth)) {
3214 IF_LOGI() {
3215 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
3216 LOGI("Now verifying: %s.%s %s (ins=%d regs=%d)\n",
3217 meth->clazz->descriptor, meth->name, desc,
3218 meth->insSize, meth->registersSize);
3219 LOGI(" ------ [0 4 8 12 16 20 24 28 32 36\n");
3220 free(desc);
3221 }
3222 debugVerbose = true;
3223 gDebugVerbose = true;
3224 } else {
3225 gDebugVerbose = false;
3226 }
3227
3228 startGuess = 0;
3229
3230 /*
3231 * Continue until no instructions are marked "changed".
3232 */
3233 while (true) {
3234 /*
3235 * Find the first marked one. Use "startGuess" as a way to find
3236 * one quickly.
3237 */
3238 for (insnIdx = startGuess; insnIdx < insnsSize; insnIdx++) {
3239 if (dvmInsnIsChanged(insnFlags, insnIdx))
3240 break;
3241 }
3242
3243 if (insnIdx == insnsSize) {
3244 if (startGuess != 0) {
3245 /* try again, starting from the top */
3246 startGuess = 0;
3247 continue;
3248 } else {
3249 /* all flags are clear */
3250 break;
3251 }
3252 }
3253
3254 /*
3255 * We carry the working set of registers from instruction to
3256 * instruction. If this address can be the target of a branch
3257 * (or throw) instruction, or if we're skipping around chasing
3258 * "changed" flags, we need to load the set of registers from
3259 * the table.
3260 *
3261 * Because we always prefer to continue on to the next instruction,
3262 * we should never have a situation where we have a stray
3263 * "changed" flag set on an instruction that isn't a branch target.
3264 */
3265 if (dvmInsnIsBranchTarget(insnFlags, insnIdx)) {
3266 RegType* insnRegs = getRegisterLine(regTable, insnIdx);
3267 assert(insnRegs != NULL);
3268 copyRegisters(workRegs, insnRegs, meth->registersSize + kExtraRegs);
3269
3270 if (debugVerbose) {
3271 dumpRegTypes(meth, insnFlags, workRegs, insnIdx, NULL,uninitMap,
3272 SHOW_REG_DETAILS);
3273 }
3274
3275 } else {
3276 if (debugVerbose) {
3277 dumpRegTypes(meth, insnFlags, workRegs, insnIdx, NULL,uninitMap,
3278 SHOW_REG_DETAILS);
3279 }
3280
3281#ifndef NDEBUG
3282 /*
3283 * Sanity check: retrieve the stored register line (assuming
3284 * a full table) and make sure it actually matches.
3285 */
3286 RegType* insnRegs = getRegisterLine(regTable, insnIdx);
3287 if (insnRegs != NULL &&
3288 compareRegisters(workRegs, insnRegs,
3289 meth->registersSize + kExtraRegs) != 0)
3290 {
3291 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
3292 LOG_VFY("HUH? workRegs diverged in %s.%s %s\n",
3293 meth->clazz->descriptor, meth->name, desc);
3294 free(desc);
3295 dumpRegTypes(meth, insnFlags, workRegs, 0, "work",
3296 uninitMap, DRT_SHOW_REF_TYPES | DRT_SHOW_LOCALS);
3297 dumpRegTypes(meth, insnFlags, insnRegs, 0, "insn",
3298 uninitMap, DRT_SHOW_REF_TYPES | DRT_SHOW_LOCALS);
3299 }
3300#endif
3301 }
3302
3303 //LOGI("process %s.%s %s %d\n",
3304 // meth->clazz->descriptor, meth->name, meth->descriptor, insnIdx);
3305 if (!verifyInstruction(meth, insnFlags, regTable, workRegs, insnIdx,
3306 uninitMap, &startGuess))
3307 {
3308 //LOGD("+++ %s bailing at %d\n", meth->name, insnIdx);
3309 goto bail;
3310 }
3311
3312#if 0
3313 {
3314 static const int gcMask = kInstrCanBranch | kInstrCanSwitch |
3315 kInstrCanThrow | kInstrCanReturn;
3316 OpCode opCode = *(meth->insns + insnIdx) & 0xff;
3317 int flags = dexGetInstrFlags(gDvm.instrFlags, opCode);
3318
3319 /* 8, 16, 32, or 32*n -bit regs */
3320 int regWidth = (meth->registersSize + 7) / 8;
3321 if (regWidth == 3)
3322 regWidth = 4;
3323 if (regWidth > 4) {
3324 regWidth = ((regWidth + 3) / 4) * 4;
3325 if (false) {
3326 LOGW("WOW: %d regs -> %d %s.%s\n",
3327 meth->registersSize, regWidth,
3328 meth->clazz->descriptor, meth->name);
3329 //x = true;
3330 }
3331 }
3332
3333 if ((flags & gcMask) != 0) {
3334 /* this is a potential GC point */
3335 gDvm__gcInstr++;
3336
3337 if (insnsSize < 256)
3338 gDvm__gcData += 1;
3339 else
3340 gDvm__gcData += 2;
3341 gDvm__gcData += regWidth;
3342 }
3343 gDvm__gcSimpleData += regWidth;
3344
3345 gDvm__totalInstr++;
3346 }
3347#endif
3348
3349 /*
3350 * Clear "changed" and mark as visited.
3351 */
3352 dvmInsnSetVisited(insnFlags, insnIdx, true);
3353 dvmInsnSetChanged(insnFlags, insnIdx, false);
3354 }
3355
Andy McFaddenb51ea112009-05-08 16:50:17 -07003356 if (DEAD_CODE_SCAN && !IS_METHOD_FLAG_SET(meth, METHOD_ISWRITABLE)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003357 /*
Andy McFaddenb51ea112009-05-08 16:50:17 -07003358 * Scan for dead code. There's nothing "evil" about dead code
3359 * (besides the wasted space), but it indicates a flaw somewhere
3360 * down the line, possibly in the verifier.
3361 *
3362 * If we've rewritten "always throw" instructions into the stream,
3363 * we are almost certainly going to have some dead code.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003364 */
3365 int deadStart = -1;
3366 for (insnIdx = 0; insnIdx < insnsSize;
3367 insnIdx += dvmInsnGetWidth(insnFlags, insnIdx))
3368 {
3369 /*
3370 * Switch-statement data doesn't get "visited" by scanner. It
3371 * may or may not be preceded by a padding NOP.
3372 */
3373 int instr = meth->insns[insnIdx];
3374 if (instr == kPackedSwitchSignature ||
3375 instr == kSparseSwitchSignature ||
3376 instr == kArrayDataSignature ||
3377 (instr == OP_NOP &&
3378 (meth->insns[insnIdx+1] == kPackedSwitchSignature ||
3379 meth->insns[insnIdx+1] == kSparseSwitchSignature ||
3380 meth->insns[insnIdx+1] == kArrayDataSignature)))
3381 {
3382 dvmInsnSetVisited(insnFlags, insnIdx, true);
3383 }
3384
3385 if (!dvmInsnIsVisited(insnFlags, insnIdx)) {
3386 if (deadStart < 0)
3387 deadStart = insnIdx;
3388 } else if (deadStart >= 0) {
3389 IF_LOGD() {
3390 char* desc =
3391 dexProtoCopyMethodDescriptor(&meth->prototype);
3392 LOGD("VFY: dead code 0x%04x-%04x in %s.%s %s\n",
3393 deadStart, insnIdx-1,
3394 meth->clazz->descriptor, meth->name, desc);
3395 free(desc);
3396 }
3397
3398 deadStart = -1;
3399 }
3400 }
3401 if (deadStart >= 0) {
3402 IF_LOGD() {
3403 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
3404 LOGD("VFY: dead code 0x%04x-%04x in %s.%s %s\n",
3405 deadStart, insnIdx-1,
3406 meth->clazz->descriptor, meth->name, desc);
3407 free(desc);
3408 }
3409 }
3410 }
3411
3412 result = true;
3413
3414bail:
3415 return result;
3416}
3417
3418
3419/*
3420 * Perform verification for a single instruction.
3421 *
3422 * This requires fully decoding the instruction to determine the effect
3423 * it has on registers.
3424 *
3425 * Finds zero or more following instructions and sets the "changed" flag
3426 * if execution at that point needs to be (re-)evaluated. Register changes
3427 * are merged into "regTypes" at the target addresses. Does not set or
3428 * clear any other flags in "insnFlags".
Andy McFaddenb51ea112009-05-08 16:50:17 -07003429 *
3430 * This may alter meth->insns if we need to replace an instruction with
3431 * throw-verification-error.
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003432 */
Andy McFaddenb51ea112009-05-08 16:50:17 -07003433static bool verifyInstruction(Method* meth, InsnFlags* insnFlags,
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003434 RegisterTable* regTable, RegType* workRegs, int insnIdx,
3435 UninitInstanceMap* uninitMap, int* pStartGuess)
3436{
3437 const int insnsSize = dvmGetMethodInsnsSize(meth);
3438 const u2* insns = meth->insns + insnIdx;
3439 bool result = false;
3440
3441 /*
3442 * Once we finish decoding the instruction, we need to figure out where
3443 * we can go from here. There are three possible ways to transfer
3444 * control to another statement:
3445 *
3446 * (1) Continue to the next instruction. Applies to all but
3447 * unconditional branches, method returns, and exception throws.
3448 * (2) Branch to one or more possible locations. Applies to branches
3449 * and switch statements.
3450 * (3) Exception handlers. Applies to any instruction that can
3451 * throw an exception that is handled by an encompassing "try"
3452 * block. (We simplify this to be any instruction that can
3453 * throw any exception.)
3454 *
3455 * We can also return, in which case there is no successor instruction
3456 * from this point.
3457 *
3458 * The behavior can be determined from the InstrFlags.
3459 */
3460
3461 const DexFile* pDexFile = meth->clazz->pDvmDex->pDexFile;
3462 RegType entryRegs[meth->registersSize + kExtraRegs];
3463 ClassObject* resClass;
3464 const char* className;
3465 int branchTarget = 0;
3466 const int insnRegCount = meth->registersSize;
3467 RegType tmpType;
3468 DecodedInstruction decInsn;
3469 bool justSetResult = false;
Andy McFadden62a75162009-04-17 17:23:37 -07003470 VerifyError failure = VERIFY_ERROR_NONE;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003471
3472#ifndef NDEBUG
3473 memset(&decInsn, 0x81, sizeof(decInsn));
3474#endif
3475 dexDecodeInstruction(gDvm.instrFormat, insns, &decInsn);
3476
Andy McFaddenb51ea112009-05-08 16:50:17 -07003477 int nextFlags = dexGetInstrFlags(gDvm.instrFlags, decInsn.opCode);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003478
3479 /*
3480 * Make a copy of the previous register state. If the instruction
3481 * throws an exception, we merge *this* into the destination rather
3482 * than workRegs, because we don't want the result from the "successful"
3483 * code path (e.g. a check-cast that "improves" a type) to be visible
3484 * to the exception handler.
3485 */
3486 if ((nextFlags & kInstrCanThrow) != 0 && dvmInsnIsInTry(insnFlags, insnIdx))
3487 {
3488 copyRegisters(entryRegs, workRegs, meth->registersSize + kExtraRegs);
3489 } else {
3490#ifndef NDEBUG
3491 memset(entryRegs, 0xdd,
3492 (meth->registersSize + kExtraRegs) * sizeof(RegType));
3493#endif
3494 }
3495
3496 switch (decInsn.opCode) {
3497 case OP_NOP:
3498 /*
3499 * A "pure" NOP has no effect on anything. Data tables start with
3500 * a signature that looks like a NOP; if we see one of these in
3501 * the course of executing code then we have a problem.
3502 */
3503 if (decInsn.vA != 0) {
3504 LOG_VFY("VFY: encountered data table in instruction stream\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003505 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003506 }
3507 break;
3508
3509 case OP_MOVE:
3510 case OP_MOVE_FROM16:
3511 case OP_MOVE_16:
3512 copyRegister1(workRegs, insnRegCount, decInsn.vA, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07003513 kTypeCategory1nr, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003514 break;
3515 case OP_MOVE_WIDE:
3516 case OP_MOVE_WIDE_FROM16:
3517 case OP_MOVE_WIDE_16:
Andy McFadden62a75162009-04-17 17:23:37 -07003518 copyRegister2(workRegs, insnRegCount, decInsn.vA, decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003519 break;
3520 case OP_MOVE_OBJECT:
3521 case OP_MOVE_OBJECT_FROM16:
3522 case OP_MOVE_OBJECT_16:
3523 copyRegister1(workRegs, insnRegCount, decInsn.vA, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07003524 kTypeCategoryRef, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003525 break;
3526
3527 /*
3528 * The move-result instructions copy data out of a "pseudo-register"
3529 * with the results from the last method invocation. In practice we
3530 * might want to hold the result in an actual CPU register, so the
3531 * Dalvik spec requires that these only appear immediately after an
3532 * invoke or filled-new-array.
3533 *
3534 * These calls invalidate the "result" register. (This is now
3535 * redundant with the reset done below, but it can make the debug info
3536 * easier to read in some cases.)
3537 */
3538 case OP_MOVE_RESULT:
3539 copyResultRegister1(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003540 kTypeCategory1nr, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003541 break;
3542 case OP_MOVE_RESULT_WIDE:
Andy McFadden62a75162009-04-17 17:23:37 -07003543 copyResultRegister2(workRegs, insnRegCount, decInsn.vA, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003544 break;
3545 case OP_MOVE_RESULT_OBJECT:
3546 copyResultRegister1(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003547 kTypeCategoryRef, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003548 break;
3549
3550 case OP_MOVE_EXCEPTION:
3551 /*
3552 * This statement can only appear as the first instruction in an
3553 * exception handler (though not all exception handlers need to
3554 * have one of these). We verify that as part of extracting the
3555 * exception type from the catch block list.
3556 *
3557 * "resClass" will hold the closest common superclass of all
3558 * exceptions that can be handled here.
3559 */
Andy McFadden62a75162009-04-17 17:23:37 -07003560 resClass = getCaughtExceptionType(meth, insnIdx, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003561 if (resClass == NULL) {
Andy McFadden62a75162009-04-17 17:23:37 -07003562 assert(!VERIFY_OK(failure));
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003563 } else {
3564 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003565 regTypeFromClass(resClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003566 }
3567 break;
3568
3569 case OP_RETURN_VOID:
Andy McFadden62a75162009-04-17 17:23:37 -07003570 if (!checkConstructorReturn(meth, workRegs, insnRegCount)) {
3571 failure = VERIFY_ERROR_GENERIC;
3572 } else if (getMethodReturnType(meth) != kRegTypeUnknown) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003573 LOG_VFY("VFY: return-void not expected\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003574 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003575 }
3576 break;
3577 case OP_RETURN:
Andy McFadden62a75162009-04-17 17:23:37 -07003578 if (!checkConstructorReturn(meth, workRegs, insnRegCount)) {
3579 failure = VERIFY_ERROR_GENERIC;
3580 } else {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003581 /* check the method signature */
3582 RegType returnType = getMethodReturnType(meth);
Andy McFadden62a75162009-04-17 17:23:37 -07003583 checkTypeCategory(returnType, kTypeCategory1nr, &failure);
3584 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003585 LOG_VFY("VFY: return-32 not expected\n");
3586
3587 /* check the register contents */
3588 returnType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003589 &failure);
3590 checkTypeCategory(returnType, kTypeCategory1nr, &failure);
3591 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003592 LOG_VFY("VFY: return-32 on invalid register v%d\n", decInsn.vA);
3593 }
3594 break;
3595 case OP_RETURN_WIDE:
Andy McFadden62a75162009-04-17 17:23:37 -07003596 if (!checkConstructorReturn(meth, workRegs, insnRegCount)) {
3597 failure = VERIFY_ERROR_GENERIC;
3598 } else {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003599 RegType returnType, returnTypeHi;
3600
3601 /* check the method signature */
3602 returnType = getMethodReturnType(meth);
Andy McFadden62a75162009-04-17 17:23:37 -07003603 checkTypeCategory(returnType, kTypeCategory2, &failure);
3604 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003605 LOG_VFY("VFY: return-wide not expected\n");
3606
3607 /* check the register contents */
3608 returnType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003609 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003610 returnTypeHi = getRegisterType(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003611 decInsn.vA +1, &failure);
3612 if (VERIFY_OK(failure)) {
3613 checkTypeCategory(returnType, kTypeCategory2, &failure);
3614 checkWidePair(returnType, returnTypeHi, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003615 }
Andy McFadden62a75162009-04-17 17:23:37 -07003616 if (!VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003617 LOG_VFY("VFY: return-wide on invalid register pair v%d\n",
3618 decInsn.vA);
3619 }
3620 }
3621 break;
3622 case OP_RETURN_OBJECT:
Andy McFadden62a75162009-04-17 17:23:37 -07003623 if (!checkConstructorReturn(meth, workRegs, insnRegCount)) {
3624 failure = VERIFY_ERROR_GENERIC;
3625 } else {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003626 RegType returnType = getMethodReturnType(meth);
Andy McFadden62a75162009-04-17 17:23:37 -07003627 checkTypeCategory(returnType, kTypeCategoryRef, &failure);
3628 if (!VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003629 LOG_VFY("VFY: return-object not expected\n");
3630 break;
3631 }
3632
3633 /* returnType is the *expected* return type, not register value */
3634 assert(returnType != kRegTypeZero);
3635 assert(!regTypeIsUninitReference(returnType));
3636
3637 /*
3638 * Verify that the reference in vAA is an instance of the type
3639 * in "returnType". The Zero type is allowed here. If the
3640 * method is declared to return an interface, then any
3641 * initialized reference is acceptable.
3642 *
3643 * Note getClassFromRegister fails if the register holds an
3644 * uninitialized reference, so we do not allow them to be
3645 * returned.
3646 */
3647 ClassObject* declClass;
3648
3649 declClass = regTypeInitializedReferenceToClass(returnType);
3650 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003651 decInsn.vA, &failure);
3652 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003653 break;
3654 if (resClass != NULL) {
3655 if (!dvmIsInterfaceClass(declClass) &&
3656 !dvmInstanceof(resClass, declClass))
3657 {
Andy McFadden86c86432009-05-27 14:40:12 -07003658 LOG_VFY("VFY: returning %s (cl=%p), declared %s (cl=%p)\n",
3659 resClass->descriptor, resClass->classLoader,
3660 declClass->descriptor, declClass->classLoader);
Andy McFadden62a75162009-04-17 17:23:37 -07003661 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003662 break;
3663 }
3664 }
3665 }
3666 break;
3667
3668 case OP_CONST_4:
3669 case OP_CONST_16:
3670 case OP_CONST:
3671 /* could be boolean, int, float, or a null reference */
3672 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003673 dvmDetermineCat1Const((s4)decInsn.vB), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003674 break;
3675 case OP_CONST_HIGH16:
3676 /* could be boolean, int, float, or a null reference */
3677 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003678 dvmDetermineCat1Const((s4) decInsn.vB << 16), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003679 break;
3680 case OP_CONST_WIDE_16:
3681 case OP_CONST_WIDE_32:
3682 case OP_CONST_WIDE:
3683 case OP_CONST_WIDE_HIGH16:
3684 /* could be long or double; default to long and allow conversion */
3685 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003686 kRegTypeLongLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003687 break;
3688 case OP_CONST_STRING:
3689 case OP_CONST_STRING_JUMBO:
3690 assert(gDvm.classJavaLangString != NULL);
3691 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003692 regTypeFromClass(gDvm.classJavaLangString), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003693 break;
3694 case OP_CONST_CLASS:
3695 assert(gDvm.classJavaLangClass != NULL);
3696 /* make sure we can resolve the class; access check is important */
Andy McFadden62a75162009-04-17 17:23:37 -07003697 resClass = dvmOptResolveClass(meth->clazz, decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003698 if (resClass == NULL) {
3699 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vB);
3700 dvmLogUnableToResolveClass(badClassDesc, meth);
3701 LOG_VFY("VFY: unable to resolve const-class %d (%s) in %s\n",
3702 decInsn.vB, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003703 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003704 } else {
3705 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003706 regTypeFromClass(gDvm.classJavaLangClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003707 }
3708 break;
3709
3710 case OP_MONITOR_ENTER:
3711 case OP_MONITOR_EXIT:
Andy McFadden62a75162009-04-17 17:23:37 -07003712 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
3713 if (VERIFY_OK(failure)) {
3714 if (!regTypeIsReference(tmpType)) {
3715 LOG_VFY("VFY: monitor op on non-object\n");
3716 failure = VERIFY_ERROR_GENERIC;
3717 }
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003718 }
3719 break;
3720
3721 case OP_CHECK_CAST:
3722 /*
3723 * If this instruction succeeds, we will promote register vA to
3724 * the type in vB. (This could be a demotion -- not expected, so
3725 * we don't try to address it.)
3726 *
3727 * If it fails, an exception is thrown, which we deal with later
3728 * by ignoring the update to decInsn.vA when branching to a handler.
3729 */
Andy McFadden62a75162009-04-17 17:23:37 -07003730 resClass = dvmOptResolveClass(meth->clazz, decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003731 if (resClass == NULL) {
3732 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vB);
3733 dvmLogUnableToResolveClass(badClassDesc, meth);
3734 LOG_VFY("VFY: unable to resolve check-cast %d (%s) in %s\n",
3735 decInsn.vB, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003736 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003737 } else {
3738 RegType origType;
3739
3740 origType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003741 &failure);
3742 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003743 break;
3744 if (!regTypeIsReference(origType)) {
3745 LOG_VFY("VFY: check-cast on non-reference in v%u\n",decInsn.vA);
Andy McFadden62a75162009-04-17 17:23:37 -07003746 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003747 break;
3748 }
3749 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003750 regTypeFromClass(resClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003751 }
3752 break;
3753 case OP_INSTANCE_OF:
3754 /* make sure we're checking a reference type */
Andy McFadden62a75162009-04-17 17:23:37 -07003755 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vB, &failure);
3756 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003757 break;
3758 if (!regTypeIsReference(tmpType)) {
3759 LOG_VFY("VFY: vB not a reference (%d)\n", tmpType);
Andy McFadden62a75162009-04-17 17:23:37 -07003760 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003761 break;
3762 }
3763
3764 /* make sure we can resolve the class; access check is important */
Andy McFadden62a75162009-04-17 17:23:37 -07003765 resClass = dvmOptResolveClass(meth->clazz, decInsn.vC, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003766 if (resClass == NULL) {
3767 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vC);
3768 dvmLogUnableToResolveClass(badClassDesc, meth);
3769 LOG_VFY("VFY: unable to resolve instanceof %d (%s) in %s\n",
3770 decInsn.vC, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003771 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003772 } else {
3773 /* result is boolean */
3774 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003775 kRegTypeBoolean, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003776 }
3777 break;
3778
3779 case OP_ARRAY_LENGTH:
3780 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003781 decInsn.vB, &failure);
3782 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003783 break;
3784 if (resClass != NULL && !dvmIsArrayClass(resClass)) {
3785 LOG_VFY("VFY: array-length on non-array\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003786 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003787 break;
3788 }
3789 setRegisterType(workRegs, insnRegCount, decInsn.vA, kRegTypeInteger,
Andy McFadden62a75162009-04-17 17:23:37 -07003790 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003791 break;
3792
3793 case OP_NEW_INSTANCE:
Andy McFadden62a75162009-04-17 17:23:37 -07003794 resClass = dvmOptResolveClass(meth->clazz, decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003795 if (resClass == NULL) {
3796 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vB);
3797 dvmLogUnableToResolveClass(badClassDesc, meth);
3798 LOG_VFY("VFY: unable to resolve new-instance %d (%s) in %s\n",
3799 decInsn.vB, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003800 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003801 } else {
3802 RegType uninitType;
3803
Andy McFaddenb51ea112009-05-08 16:50:17 -07003804 /* can't create an instance of an interface or abstract class */
3805 if (dvmIsAbstractClass(resClass) || dvmIsInterfaceClass(resClass)) {
3806 LOG_VFY("VFY: new-instance on interface or abstract class %s\n",
3807 resClass->descriptor);
3808 failure = VERIFY_ERROR_INSTANTIATION;
3809 break;
3810 }
3811
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003812 /* add resolved class to uninit map if not already there */
3813 int uidx = dvmSetUninitInstance(uninitMap, insnIdx, resClass);
3814 assert(uidx >= 0);
3815 uninitType = regTypeFromUninitIndex(uidx);
3816
3817 /*
3818 * Any registers holding previous allocations from this address
3819 * that have not yet been initialized must be marked invalid.
3820 */
3821 markUninitRefsAsInvalid(workRegs, insnRegCount, uninitMap,
3822 uninitType);
3823
3824 /* add the new uninitialized reference to the register ste */
3825 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003826 uninitType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003827 }
3828 break;
3829 case OP_NEW_ARRAY:
Andy McFadden62a75162009-04-17 17:23:37 -07003830 resClass = dvmOptResolveClass(meth->clazz, decInsn.vC, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003831 if (resClass == NULL) {
3832 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vC);
3833 dvmLogUnableToResolveClass(badClassDesc, meth);
3834 LOG_VFY("VFY: unable to resolve new-array %d (%s) in %s\n",
3835 decInsn.vC, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003836 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003837 } else if (!dvmIsArrayClass(resClass)) {
3838 LOG_VFY("VFY: new-array on non-array class\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003839 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003840 } else {
3841 /* make sure "size" register is valid type */
3842 verifyRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07003843 kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003844 /* set register type to array class */
3845 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003846 regTypeFromClass(resClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003847 }
3848 break;
3849 case OP_FILLED_NEW_ARRAY:
3850 case OP_FILLED_NEW_ARRAY_RANGE:
Andy McFadden62a75162009-04-17 17:23:37 -07003851 resClass = dvmOptResolveClass(meth->clazz, decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003852 if (resClass == NULL) {
3853 const char* badClassDesc = dexStringByTypeIdx(pDexFile, decInsn.vB);
3854 dvmLogUnableToResolveClass(badClassDesc, meth);
3855 LOG_VFY("VFY: unable to resolve filled-array %d (%s) in %s\n",
3856 decInsn.vB, badClassDesc, meth->clazz->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003857 assert(failure != VERIFY_ERROR_GENERIC);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003858 } else if (!dvmIsArrayClass(resClass)) {
3859 LOG_VFY("VFY: filled-new-array on non-array class\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003860 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003861 } else {
3862 bool isRange = (decInsn.opCode == OP_FILLED_NEW_ARRAY_RANGE);
3863
3864 /* check the arguments to the instruction */
3865 verifyFilledNewArrayRegs(meth, workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07003866 resClass, isRange, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003867 /* filled-array result goes into "result" register */
3868 setResultRegisterType(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003869 regTypeFromClass(resClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003870 justSetResult = true;
3871 }
3872 break;
3873
3874 case OP_CMPL_FLOAT:
3875 case OP_CMPG_FLOAT:
3876 verifyRegisterType(workRegs, insnRegCount, decInsn.vB, kRegTypeFloat,
Andy McFadden62a75162009-04-17 17:23:37 -07003877 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003878 verifyRegisterType(workRegs, insnRegCount, decInsn.vC, kRegTypeFloat,
Andy McFadden62a75162009-04-17 17:23:37 -07003879 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003880 setRegisterType(workRegs, insnRegCount, decInsn.vA, kRegTypeBoolean,
Andy McFadden62a75162009-04-17 17:23:37 -07003881 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003882 break;
3883 case OP_CMPL_DOUBLE:
3884 case OP_CMPG_DOUBLE:
3885 verifyRegisterType(workRegs, insnRegCount, decInsn.vB, kRegTypeDoubleLo,
Andy McFadden62a75162009-04-17 17:23:37 -07003886 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003887 verifyRegisterType(workRegs, insnRegCount, decInsn.vC, kRegTypeDoubleLo,
Andy McFadden62a75162009-04-17 17:23:37 -07003888 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003889 setRegisterType(workRegs, insnRegCount, decInsn.vA, kRegTypeBoolean,
Andy McFadden62a75162009-04-17 17:23:37 -07003890 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003891 break;
3892 case OP_CMP_LONG:
3893 verifyRegisterType(workRegs, insnRegCount, decInsn.vB, kRegTypeLongLo,
Andy McFadden62a75162009-04-17 17:23:37 -07003894 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003895 verifyRegisterType(workRegs, insnRegCount, decInsn.vC, kRegTypeLongLo,
Andy McFadden62a75162009-04-17 17:23:37 -07003896 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003897 setRegisterType(workRegs, insnRegCount, decInsn.vA, kRegTypeBoolean,
Andy McFadden62a75162009-04-17 17:23:37 -07003898 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003899 break;
3900
3901 case OP_THROW:
3902 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003903 decInsn.vA, &failure);
3904 if (VERIFY_OK(failure) && resClass != NULL) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003905 if (!dvmInstanceof(resClass, gDvm.classJavaLangThrowable)) {
3906 LOG_VFY("VFY: thrown class %s not instanceof Throwable\n",
3907 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003908 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003909 }
3910 }
3911 break;
3912
3913 case OP_GOTO:
3914 case OP_GOTO_16:
3915 case OP_GOTO_32:
3916 /* no effect on or use of registers */
3917 break;
3918
3919 case OP_PACKED_SWITCH:
3920 case OP_SPARSE_SWITCH:
3921 /* verify that vAA is an integer, or can be converted to one */
3922 verifyRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07003923 kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003924 break;
3925
3926 case OP_FILL_ARRAY_DATA:
3927 {
3928 RegType valueType;
3929 const u2 *arrayData;
3930 u2 elemWidth;
3931
3932 /* Similar to the verification done for APUT */
3933 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07003934 decInsn.vA, &failure);
3935 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003936 break;
3937
3938 /* resClass can be null if the reg type is Zero */
3939 if (resClass == NULL)
3940 break;
3941
3942 if (!dvmIsArrayClass(resClass) || resClass->arrayDim != 1 ||
3943 resClass->elementClass->primitiveType == PRIM_NOT ||
3944 resClass->elementClass->primitiveType == PRIM_VOID)
3945 {
3946 LOG_VFY("VFY: invalid fill-array-data on %s\n",
3947 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07003948 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003949 break;
3950 }
3951
3952 valueType = primitiveTypeToRegType(
3953 resClass->elementClass->primitiveType);
3954 assert(valueType != kRegTypeUnknown);
3955
3956 /*
3957 * Now verify if the element width in the table matches the element
3958 * width declared in the array
3959 */
3960 arrayData = insns + (insns[1] | (((s4)insns[2]) << 16));
3961 if (arrayData[0] != kArrayDataSignature) {
3962 LOG_VFY("VFY: invalid magic for array-data\n");
Andy McFadden62a75162009-04-17 17:23:37 -07003963 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003964 break;
3965 }
3966
3967 switch (resClass->elementClass->primitiveType) {
3968 case PRIM_BOOLEAN:
3969 case PRIM_BYTE:
3970 elemWidth = 1;
3971 break;
3972 case PRIM_CHAR:
3973 case PRIM_SHORT:
3974 elemWidth = 2;
3975 break;
3976 case PRIM_FLOAT:
3977 case PRIM_INT:
3978 elemWidth = 4;
3979 break;
3980 case PRIM_DOUBLE:
3981 case PRIM_LONG:
3982 elemWidth = 8;
3983 break;
3984 default:
3985 elemWidth = 0;
3986 break;
3987 }
3988
3989 /*
3990 * Since we don't compress the data in Dex, expect to see equal
3991 * width of data stored in the table and expected from the array
3992 * class.
3993 */
3994 if (arrayData[1] != elemWidth) {
3995 LOG_VFY("VFY: array-data size mismatch (%d vs %d)\n",
3996 arrayData[1], elemWidth);
Andy McFadden62a75162009-04-17 17:23:37 -07003997 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08003998 }
3999 }
4000 break;
4001
4002 case OP_IF_EQ:
4003 case OP_IF_NE:
4004 {
4005 RegType type1, type2;
4006 bool tmpResult;
4007
Andy McFadden62a75162009-04-17 17:23:37 -07004008 type1 = getRegisterType(workRegs, insnRegCount, decInsn.vA,
4009 &failure);
4010 type2 = getRegisterType(workRegs, insnRegCount, decInsn.vB,
4011 &failure);
4012 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004013 break;
4014
4015 /* both references? */
4016 if (regTypeIsReference(type1) && regTypeIsReference(type2))
4017 break;
4018
4019 /* both category-1nr? */
Andy McFadden62a75162009-04-17 17:23:37 -07004020 checkTypeCategory(type1, kTypeCategory1nr, &failure);
4021 checkTypeCategory(type2, kTypeCategory1nr, &failure);
4022 if (!VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004023 LOG_VFY("VFY: args to if-eq/if-ne must both be refs or cat1\n");
4024 break;
4025 }
4026 }
4027 break;
4028 case OP_IF_LT:
4029 case OP_IF_GE:
4030 case OP_IF_GT:
4031 case OP_IF_LE:
Andy McFadden62a75162009-04-17 17:23:37 -07004032 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4033 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004034 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004035 checkTypeCategory(tmpType, kTypeCategory1nr, &failure);
4036 if (!VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004037 LOG_VFY("VFY: args to 'if' must be cat-1nr\n");
4038 break;
4039 }
Andy McFadden62a75162009-04-17 17:23:37 -07004040 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vB, &failure);
4041 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004042 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004043 checkTypeCategory(tmpType, kTypeCategory1nr, &failure);
4044 if (!VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004045 LOG_VFY("VFY: args to 'if' must be cat-1nr\n");
4046 break;
4047 }
4048 break;
4049 case OP_IF_EQZ:
4050 case OP_IF_NEZ:
Andy McFadden62a75162009-04-17 17:23:37 -07004051 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4052 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004053 break;
4054 if (regTypeIsReference(tmpType))
4055 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004056 checkTypeCategory(tmpType, kTypeCategory1nr, &failure);
4057 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004058 LOG_VFY("VFY: expected cat-1 arg to if\n");
4059 break;
4060 case OP_IF_LTZ:
4061 case OP_IF_GEZ:
4062 case OP_IF_GTZ:
4063 case OP_IF_LEZ:
Andy McFadden62a75162009-04-17 17:23:37 -07004064 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4065 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004066 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004067 checkTypeCategory(tmpType, kTypeCategory1nr, &failure);
4068 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004069 LOG_VFY("VFY: expected cat-1 arg to if\n");
4070 break;
4071
4072 case OP_AGET:
4073 tmpType = kRegTypeInteger;
4074 goto aget_1nr_common;
4075 case OP_AGET_BOOLEAN:
4076 tmpType = kRegTypeBoolean;
4077 goto aget_1nr_common;
4078 case OP_AGET_BYTE:
4079 tmpType = kRegTypeByte;
4080 goto aget_1nr_common;
4081 case OP_AGET_CHAR:
4082 tmpType = kRegTypeChar;
4083 goto aget_1nr_common;
4084 case OP_AGET_SHORT:
4085 tmpType = kRegTypeShort;
4086 goto aget_1nr_common;
4087aget_1nr_common:
4088 {
4089 RegType srcType, indexType;
4090
4091 indexType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004092 &failure);
4093 checkArrayIndexType(meth, indexType, &failure);
4094 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004095 break;
4096
4097 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004098 decInsn.vB, &failure);
4099 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004100 break;
4101 if (resClass != NULL) {
4102 /* verify the class */
4103 if (!dvmIsArrayClass(resClass) || resClass->arrayDim != 1 ||
4104 resClass->elementClass->primitiveType == PRIM_NOT)
4105 {
4106 LOG_VFY("VFY: invalid aget-1nr target %s\n",
4107 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004108 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004109 break;
4110 }
4111
4112 /* make sure array type matches instruction */
4113 srcType = primitiveTypeToRegType(
4114 resClass->elementClass->primitiveType);
4115
4116 if (!checkFieldArrayStore1nr(tmpType, srcType)) {
4117 LOG_VFY("VFY: invalid aget-1nr, array type=%d with"
4118 " inst type=%d (on %s)\n",
4119 srcType, tmpType, resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004120 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004121 break;
4122 }
4123
4124 }
4125 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004126 tmpType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004127 }
4128 break;
4129
4130 case OP_AGET_WIDE:
4131 {
4132 RegType dstType, indexType;
4133
4134 indexType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004135 &failure);
4136 checkArrayIndexType(meth, indexType, &failure);
4137 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004138 break;
4139
4140 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004141 decInsn.vB, &failure);
4142 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004143 break;
4144 if (resClass != NULL) {
4145 /* verify the class */
4146 if (!dvmIsArrayClass(resClass) || resClass->arrayDim != 1 ||
4147 resClass->elementClass->primitiveType == PRIM_NOT)
4148 {
4149 LOG_VFY("VFY: invalid aget-wide target %s\n",
4150 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004151 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004152 break;
4153 }
4154
4155 /* try to refine "dstType" */
4156 switch (resClass->elementClass->primitiveType) {
4157 case PRIM_LONG:
4158 dstType = kRegTypeLongLo;
4159 break;
4160 case PRIM_DOUBLE:
4161 dstType = kRegTypeDoubleLo;
4162 break;
4163 default:
4164 LOG_VFY("VFY: invalid aget-wide on %s\n",
4165 resClass->descriptor);
4166 dstType = kRegTypeUnknown;
Andy McFadden62a75162009-04-17 17:23:37 -07004167 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004168 break;
4169 }
4170 } else {
4171 /*
4172 * Null array ref; this code path will fail at runtime. We
4173 * know this is either long or double, and we don't really
4174 * discriminate between those during verification, so we
4175 * call it a long.
4176 */
4177 dstType = kRegTypeLongLo;
4178 }
4179 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004180 dstType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004181 }
4182 break;
4183
4184 case OP_AGET_OBJECT:
4185 {
4186 RegType dstType, indexType;
4187
4188 indexType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004189 &failure);
4190 checkArrayIndexType(meth, indexType, &failure);
4191 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004192 break;
4193
4194 /* get the class of the array we're pulling an object from */
4195 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004196 decInsn.vB, &failure);
4197 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004198 break;
4199 if (resClass != NULL) {
4200 ClassObject* elementClass;
4201
4202 assert(resClass != NULL);
4203 if (!dvmIsArrayClass(resClass)) {
4204 LOG_VFY("VFY: aget-object on non-array class\n");
Andy McFadden62a75162009-04-17 17:23:37 -07004205 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004206 break;
4207 }
4208 assert(resClass->elementClass != NULL);
4209
4210 /*
4211 * Find the element class. resClass->elementClass indicates
4212 * the basic type, which won't be what we want for a
4213 * multi-dimensional array.
4214 */
4215 if (resClass->descriptor[1] == '[') {
4216 assert(resClass->arrayDim > 1);
4217 elementClass = dvmFindArrayClass(&resClass->descriptor[1],
4218 resClass->classLoader);
4219 } else if (resClass->descriptor[1] == 'L') {
4220 assert(resClass->arrayDim == 1);
4221 elementClass = resClass->elementClass;
4222 } else {
4223 LOG_VFY("VFY: aget-object on non-ref array class (%s)\n",
4224 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004225 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004226 break;
4227 }
4228
4229 dstType = regTypeFromClass(elementClass);
4230 } else {
4231 /*
4232 * The array reference is NULL, so the current code path will
4233 * throw an exception. For proper merging with later code
4234 * paths, and correct handling of "if-eqz" tests on the
4235 * result of the array get, we want to treat this as a null
4236 * reference.
4237 */
4238 dstType = kRegTypeZero;
4239 }
4240 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004241 dstType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004242 }
4243 break;
4244 case OP_APUT:
4245 tmpType = kRegTypeInteger;
4246 goto aput_1nr_common;
4247 case OP_APUT_BOOLEAN:
4248 tmpType = kRegTypeBoolean;
4249 goto aput_1nr_common;
4250 case OP_APUT_BYTE:
4251 tmpType = kRegTypeByte;
4252 goto aput_1nr_common;
4253 case OP_APUT_CHAR:
4254 tmpType = kRegTypeChar;
4255 goto aput_1nr_common;
4256 case OP_APUT_SHORT:
4257 tmpType = kRegTypeShort;
4258 goto aput_1nr_common;
4259aput_1nr_common:
4260 {
4261 RegType srcType, dstType, indexType;
4262
4263 indexType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004264 &failure);
4265 checkArrayIndexType(meth, indexType, &failure);
4266 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004267 break;
4268
4269 /* make sure the source register has the correct type */
4270 srcType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004271 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004272 if (!canConvertTo1nr(srcType, tmpType)) {
4273 LOG_VFY("VFY: invalid reg type %d on aput instr (need %d)\n",
4274 srcType, tmpType);
Andy McFadden62a75162009-04-17 17:23:37 -07004275 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004276 break;
4277 }
4278
4279 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004280 decInsn.vB, &failure);
4281 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004282 break;
4283
4284 /* resClass can be null if the reg type is Zero */
4285 if (resClass == NULL)
4286 break;
4287
4288 if (!dvmIsArrayClass(resClass) || resClass->arrayDim != 1 ||
4289 resClass->elementClass->primitiveType == PRIM_NOT)
4290 {
4291 LOG_VFY("VFY: invalid aput-1nr on %s\n", resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004292 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004293 break;
4294 }
4295
4296 /* verify that instruction matches array */
4297 dstType = primitiveTypeToRegType(
4298 resClass->elementClass->primitiveType);
4299 assert(dstType != kRegTypeUnknown);
4300
4301 if (!checkFieldArrayStore1nr(tmpType, dstType)) {
4302 LOG_VFY("VFY: invalid aput-1nr on %s (inst=%d dst=%d)\n",
4303 resClass->descriptor, tmpType, dstType);
Andy McFadden62a75162009-04-17 17:23:37 -07004304 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004305 break;
4306 }
4307 }
4308 break;
4309 case OP_APUT_WIDE:
4310 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004311 &failure);
4312 checkArrayIndexType(meth, tmpType, &failure);
4313 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004314 break;
4315
Andy McFadden62a75162009-04-17 17:23:37 -07004316 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4317 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004318 RegType typeHi =
Andy McFadden62a75162009-04-17 17:23:37 -07004319 getRegisterType(workRegs, insnRegCount, decInsn.vA+1, &failure);
4320 checkTypeCategory(tmpType, kTypeCategory2, &failure);
4321 checkWidePair(tmpType, typeHi, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004322 }
Andy McFadden62a75162009-04-17 17:23:37 -07004323 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004324 break;
4325
4326 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004327 decInsn.vB, &failure);
4328 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004329 break;
4330 if (resClass != NULL) {
4331 /* verify the class and try to refine "dstType" */
4332 if (!dvmIsArrayClass(resClass) || resClass->arrayDim != 1 ||
4333 resClass->elementClass->primitiveType == PRIM_NOT)
4334 {
4335 LOG_VFY("VFY: invalid aput-wide on %s\n",
4336 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004337 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004338 break;
4339 }
4340
4341 switch (resClass->elementClass->primitiveType) {
4342 case PRIM_LONG:
4343 case PRIM_DOUBLE:
4344 /* these are okay */
4345 break;
4346 default:
4347 LOG_VFY("VFY: invalid aput-wide on %s\n",
4348 resClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004349 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004350 break;
4351 }
4352 }
4353 break;
4354 case OP_APUT_OBJECT:
4355 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004356 &failure);
4357 checkArrayIndexType(meth, tmpType, &failure);
4358 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004359 break;
4360
4361 /* get the ref we're storing; Zero is okay, Uninit is not */
4362 resClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004363 decInsn.vA, &failure);
4364 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004365 break;
4366 if (resClass != NULL) {
4367 ClassObject* arrayClass;
4368 ClassObject* elementClass;
4369
4370 /*
4371 * Get the array class. If the array ref is null, we won't
4372 * have type information (and we'll crash at runtime with a
4373 * null pointer exception).
4374 */
4375 arrayClass = getClassFromRegister(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004376 decInsn.vB, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004377
4378 if (arrayClass != NULL) {
4379 /* see if the array holds a compatible type */
4380 if (!dvmIsArrayClass(arrayClass)) {
4381 LOG_VFY("VFY: invalid aput-object on %s\n",
4382 arrayClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004383 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004384 break;
4385 }
4386
4387 /*
4388 * Find the element class. resClass->elementClass indicates
4389 * the basic type, which won't be what we want for a
4390 * multi-dimensional array.
4391 *
4392 * All we want to check here is that the element type is a
4393 * reference class. We *don't* check instanceof here, because
4394 * you can still put a String into a String[] after the latter
4395 * has been cast to an Object[].
4396 */
4397 if (arrayClass->descriptor[1] == '[') {
4398 assert(arrayClass->arrayDim > 1);
4399 elementClass = dvmFindArrayClass(&arrayClass->descriptor[1],
4400 arrayClass->classLoader);
4401 } else {
4402 assert(arrayClass->arrayDim == 1);
4403 elementClass = arrayClass->elementClass;
4404 }
4405 if (elementClass->primitiveType != PRIM_NOT) {
4406 LOG_VFY("VFY: invalid aput-object of %s into %s\n",
4407 resClass->descriptor, arrayClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004408 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004409 break;
4410 }
4411 }
4412 }
4413 break;
4414
4415 case OP_IGET:
4416 tmpType = kRegTypeInteger;
4417 goto iget_1nr_common;
4418 case OP_IGET_BOOLEAN:
4419 tmpType = kRegTypeBoolean;
4420 goto iget_1nr_common;
4421 case OP_IGET_BYTE:
4422 tmpType = kRegTypeByte;
4423 goto iget_1nr_common;
4424 case OP_IGET_CHAR:
4425 tmpType = kRegTypeChar;
4426 goto iget_1nr_common;
4427 case OP_IGET_SHORT:
4428 tmpType = kRegTypeShort;
4429 goto iget_1nr_common;
4430iget_1nr_common:
4431 {
4432 ClassObject* fieldClass;
4433 InstField* instField;
4434 RegType objType, fieldType;
4435
4436 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004437 &failure);
4438 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004439 break;
4440 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004441 &failure);
4442 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004443 break;
4444
4445 /* make sure the field's type is compatible with expectation */
4446 fieldType = primSigCharToRegType(instField->field.signature[0]);
4447 if (fieldType == kRegTypeUnknown ||
4448 !checkFieldArrayStore1nr(tmpType, fieldType))
4449 {
4450 LOG_VFY("VFY: invalid iget-1nr of %s.%s (inst=%d field=%d)\n",
4451 instField->field.clazz->descriptor,
4452 instField->field.name, tmpType, fieldType);
Andy McFadden62a75162009-04-17 17:23:37 -07004453 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004454 break;
4455 }
4456
Andy McFadden62a75162009-04-17 17:23:37 -07004457 setRegisterType(workRegs, insnRegCount, decInsn.vA, tmpType,
4458 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004459 }
4460 break;
4461 case OP_IGET_WIDE:
4462 {
4463 RegType dstType;
4464 ClassObject* fieldClass;
4465 InstField* instField;
4466 RegType objType;
4467
4468 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004469 &failure);
4470 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004471 break;
4472 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004473 &failure);
4474 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004475 break;
4476 /* check the type, which should be prim */
4477 switch (instField->field.signature[0]) {
4478 case 'D':
4479 dstType = kRegTypeDoubleLo;
4480 break;
4481 case 'J':
4482 dstType = kRegTypeLongLo;
4483 break;
4484 default:
4485 LOG_VFY("VFY: invalid iget-wide of %s.%s\n",
4486 instField->field.clazz->descriptor,
4487 instField->field.name);
4488 dstType = kRegTypeUnknown;
Andy McFadden62a75162009-04-17 17:23:37 -07004489 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004490 break;
4491 }
Andy McFadden62a75162009-04-17 17:23:37 -07004492 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004493 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004494 dstType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004495 }
4496 }
4497 break;
4498 case OP_IGET_OBJECT:
4499 {
4500 ClassObject* fieldClass;
4501 InstField* instField;
4502 RegType objType;
4503
4504 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004505 &failure);
4506 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004507 break;
4508 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004509 &failure);
4510 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004511 break;
4512 fieldClass = getFieldClass(meth, &instField->field);
4513 if (fieldClass == NULL) {
4514 /* class not found or primitive type */
4515 LOG_VFY("VFY: unable to recover field class from '%s'\n",
4516 instField->field.signature);
Andy McFadden62a75162009-04-17 17:23:37 -07004517 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004518 break;
4519 }
Andy McFadden62a75162009-04-17 17:23:37 -07004520 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004521 assert(!dvmIsPrimitiveClass(fieldClass));
4522 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004523 regTypeFromClass(fieldClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004524 }
4525 }
4526 break;
4527 case OP_IPUT:
4528 tmpType = kRegTypeInteger;
4529 goto iput_1nr_common;
4530 case OP_IPUT_BOOLEAN:
4531 tmpType = kRegTypeBoolean;
4532 goto iput_1nr_common;
4533 case OP_IPUT_BYTE:
4534 tmpType = kRegTypeByte;
4535 goto iput_1nr_common;
4536 case OP_IPUT_CHAR:
4537 tmpType = kRegTypeChar;
4538 goto iput_1nr_common;
4539 case OP_IPUT_SHORT:
4540 tmpType = kRegTypeShort;
4541 goto iput_1nr_common;
4542iput_1nr_common:
4543 {
4544 RegType srcType, fieldType, objType;
4545 ClassObject* fieldClass;
4546 InstField* instField;
4547
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004548 srcType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004549 &failure);
Andy McFaddenb5f64bc2009-06-10 14:11:07 -07004550
4551 /*
4552 * javac generates synthetic functions that write byte values
4553 * into boolean fields.
4554 */
4555 if (tmpType == kRegTypeBoolean && srcType == kRegTypeByte)
4556 srcType = kRegTypeBoolean;
4557
4558 /* make sure the source register has the correct type */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004559 if (!canConvertTo1nr(srcType, tmpType)) {
4560 LOG_VFY("VFY: invalid reg type %d on iput instr (need %d)\n",
4561 srcType, tmpType);
Andy McFadden62a75162009-04-17 17:23:37 -07004562 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004563 break;
4564 }
4565
4566 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004567 &failure);
4568 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004569 break;
4570 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004571 &failure);
4572 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004573 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004574 checkFinalFieldAccess(meth, &instField->field, &failure);
4575 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004576 break;
4577
4578 /* get type of field we're storing into */
4579 fieldType = primSigCharToRegType(instField->field.signature[0]);
4580 if (fieldType == kRegTypeUnknown ||
4581 !checkFieldArrayStore1nr(tmpType, fieldType))
4582 {
4583 LOG_VFY("VFY: invalid iput-1nr of %s.%s (inst=%d field=%d)\n",
4584 instField->field.clazz->descriptor,
4585 instField->field.name, tmpType, fieldType);
Andy McFadden62a75162009-04-17 17:23:37 -07004586 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004587 break;
4588 }
4589 }
4590 break;
4591 case OP_IPUT_WIDE:
Andy McFadden62a75162009-04-17 17:23:37 -07004592 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4593 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004594 RegType typeHi =
Andy McFadden62a75162009-04-17 17:23:37 -07004595 getRegisterType(workRegs, insnRegCount, decInsn.vA+1, &failure);
4596 checkTypeCategory(tmpType, kTypeCategory2, &failure);
4597 checkWidePair(tmpType, typeHi, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004598 }
Andy McFadden62a75162009-04-17 17:23:37 -07004599 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004600 ClassObject* fieldClass;
4601 InstField* instField;
4602 RegType objType;
4603
4604 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004605 &failure);
4606 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004607 break;
4608 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004609 &failure);
4610 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004611 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004612 checkFinalFieldAccess(meth, &instField->field, &failure);
4613 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004614 break;
4615
4616 /* check the type, which should be prim */
4617 switch (instField->field.signature[0]) {
4618 case 'D':
4619 case 'J':
4620 /* these are okay (and interchangeable) */
4621 break;
4622 default:
4623 LOG_VFY("VFY: invalid iput-wide of %s.%s\n",
4624 instField->field.clazz->descriptor,
4625 instField->field.name);
Andy McFadden62a75162009-04-17 17:23:37 -07004626 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004627 break;
4628 }
4629 }
4630 break;
4631 case OP_IPUT_OBJECT:
4632 {
4633 ClassObject* fieldClass;
4634 ClassObject* valueClass;
4635 InstField* instField;
4636 RegType objType, valueType;
4637
4638 objType = getRegisterType(workRegs, insnRegCount, decInsn.vB,
Andy McFadden62a75162009-04-17 17:23:37 -07004639 &failure);
4640 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004641 break;
4642 instField = getInstField(meth, uninitMap, objType, decInsn.vC,
Andy McFadden62a75162009-04-17 17:23:37 -07004643 &failure);
4644 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004645 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004646 checkFinalFieldAccess(meth, &instField->field, &failure);
4647 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004648 break;
4649
4650 fieldClass = getFieldClass(meth, &instField->field);
4651 if (fieldClass == NULL) {
4652 LOG_VFY("VFY: unable to recover field class from '%s'\n",
4653 instField->field.signature);
Andy McFadden62a75162009-04-17 17:23:37 -07004654 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004655 break;
4656 }
4657
4658 valueType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004659 &failure);
4660 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004661 break;
4662 if (!regTypeIsReference(valueType)) {
4663 LOG_VFY("VFY: storing non-ref v%d into ref field '%s' (%s)\n",
4664 decInsn.vA, instField->field.name,
4665 fieldClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004666 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004667 break;
4668 }
4669 if (valueType != kRegTypeZero) {
4670 valueClass = regTypeInitializedReferenceToClass(valueType);
4671 if (valueClass == NULL) {
4672 LOG_VFY("VFY: storing uninit ref v%d into ref field\n",
4673 decInsn.vA);
Andy McFadden62a75162009-04-17 17:23:37 -07004674 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004675 break;
4676 }
4677 /* allow if field is any interface or field is base class */
4678 if (!dvmIsInterfaceClass(fieldClass) &&
4679 !dvmInstanceof(valueClass, fieldClass))
4680 {
4681 LOG_VFY("VFY: storing type '%s' into field type '%s' (%s.%s)\n",
4682 valueClass->descriptor, fieldClass->descriptor,
4683 instField->field.clazz->descriptor,
4684 instField->field.name);
Andy McFadden62a75162009-04-17 17:23:37 -07004685 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004686 break;
4687 }
4688 }
4689 }
4690 break;
4691
4692 case OP_SGET:
4693 tmpType = kRegTypeInteger;
4694 goto sget_1nr_common;
4695 case OP_SGET_BOOLEAN:
4696 tmpType = kRegTypeBoolean;
4697 goto sget_1nr_common;
4698 case OP_SGET_BYTE:
4699 tmpType = kRegTypeByte;
4700 goto sget_1nr_common;
4701 case OP_SGET_CHAR:
4702 tmpType = kRegTypeChar;
4703 goto sget_1nr_common;
4704 case OP_SGET_SHORT:
4705 tmpType = kRegTypeShort;
4706 goto sget_1nr_common;
4707sget_1nr_common:
4708 {
4709 StaticField* staticField;
4710 RegType fieldType;
4711
Andy McFadden62a75162009-04-17 17:23:37 -07004712 staticField = getStaticField(meth, decInsn.vB, &failure);
4713 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004714 break;
4715
4716 /*
4717 * Make sure the field's type is compatible with expectation.
4718 * We can get ourselves into trouble if we mix & match loads
4719 * and stores with different widths, so rather than just checking
4720 * "canConvertTo1nr" we require that the field types have equal
4721 * widths. (We can't generally require an exact type match,
4722 * because e.g. "int" and "float" are interchangeable.)
4723 */
4724 fieldType = primSigCharToRegType(staticField->field.signature[0]);
4725 if (!checkFieldArrayStore1nr(tmpType, fieldType)) {
4726 LOG_VFY("VFY: invalid sget-1nr of %s.%s (inst=%d actual=%d)\n",
4727 staticField->field.clazz->descriptor,
4728 staticField->field.name, tmpType, fieldType);
Andy McFadden62a75162009-04-17 17:23:37 -07004729 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004730 break;
4731 }
4732
Andy McFadden62a75162009-04-17 17:23:37 -07004733 setRegisterType(workRegs, insnRegCount, decInsn.vA, tmpType,
4734 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004735 }
4736 break;
4737 case OP_SGET_WIDE:
4738 {
4739 StaticField* staticField;
4740 RegType dstType;
4741
Andy McFadden62a75162009-04-17 17:23:37 -07004742 staticField = getStaticField(meth, decInsn.vB, &failure);
4743 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004744 break;
4745 /* check the type, which should be prim */
4746 switch (staticField->field.signature[0]) {
4747 case 'D':
4748 dstType = kRegTypeDoubleLo;
4749 break;
4750 case 'J':
4751 dstType = kRegTypeLongLo;
4752 break;
4753 default:
4754 LOG_VFY("VFY: invalid sget-wide of %s.%s\n",
4755 staticField->field.clazz->descriptor,
4756 staticField->field.name);
4757 dstType = kRegTypeUnknown;
Andy McFadden62a75162009-04-17 17:23:37 -07004758 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004759 break;
4760 }
Andy McFadden62a75162009-04-17 17:23:37 -07004761 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004762 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004763 dstType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004764 }
4765 }
4766 break;
4767 case OP_SGET_OBJECT:
4768 {
4769 StaticField* staticField;
4770 ClassObject* fieldClass;
4771
Andy McFadden62a75162009-04-17 17:23:37 -07004772 staticField = getStaticField(meth, decInsn.vB, &failure);
4773 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004774 break;
4775 fieldClass = getFieldClass(meth, &staticField->field);
4776 if (fieldClass == NULL) {
4777 LOG_VFY("VFY: unable to recover field class from '%s'\n",
4778 staticField->field.signature);
Andy McFadden62a75162009-04-17 17:23:37 -07004779 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004780 break;
4781 }
4782 if (dvmIsPrimitiveClass(fieldClass)) {
4783 LOG_VFY("VFY: attempt to get prim field with sget-object\n");
Andy McFadden62a75162009-04-17 17:23:37 -07004784 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004785 break;
4786 }
4787 setRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004788 regTypeFromClass(fieldClass), &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004789 }
4790 break;
4791 case OP_SPUT:
4792 tmpType = kRegTypeInteger;
4793 goto sput_1nr_common;
4794 case OP_SPUT_BOOLEAN:
4795 tmpType = kRegTypeBoolean;
4796 goto sput_1nr_common;
4797 case OP_SPUT_BYTE:
4798 tmpType = kRegTypeByte;
4799 goto sput_1nr_common;
4800 case OP_SPUT_CHAR:
4801 tmpType = kRegTypeChar;
4802 goto sput_1nr_common;
4803 case OP_SPUT_SHORT:
4804 tmpType = kRegTypeShort;
4805 goto sput_1nr_common;
4806sput_1nr_common:
4807 {
4808 RegType srcType, fieldType;
4809 StaticField* staticField;
4810
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004811 srcType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004812 &failure);
Andy McFaddenb5f64bc2009-06-10 14:11:07 -07004813
4814 /*
4815 * javac generates synthetic functions that write byte values
4816 * into boolean fields.
4817 */
4818 if (tmpType == kRegTypeBoolean && srcType == kRegTypeByte)
4819 srcType = kRegTypeBoolean;
4820
4821 /* make sure the source register has the correct type */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004822 if (!canConvertTo1nr(srcType, tmpType)) {
Andy McFaddenb5f64bc2009-06-10 14:11:07 -07004823 LOG_VFY("VFY: invalid reg type %d on sput instr (need %d)\n",
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004824 srcType, tmpType);
Andy McFadden62a75162009-04-17 17:23:37 -07004825 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004826 break;
4827 }
4828
Andy McFadden62a75162009-04-17 17:23:37 -07004829 staticField = getStaticField(meth, decInsn.vB, &failure);
4830 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004831 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004832 checkFinalFieldAccess(meth, &staticField->field, &failure);
4833 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004834 break;
4835
4836 /*
4837 * Get type of field we're storing into. We know that the
4838 * contents of the register match the instruction, but we also
4839 * need to ensure that the instruction matches the field type.
4840 * Using e.g. sput-short to write into a 32-bit integer field
4841 * can lead to trouble if we do 16-bit writes.
4842 */
4843 fieldType = primSigCharToRegType(staticField->field.signature[0]);
4844 if (!checkFieldArrayStore1nr(tmpType, fieldType)) {
4845 LOG_VFY("VFY: invalid sput-1nr of %s.%s (inst=%d actual=%d)\n",
4846 staticField->field.clazz->descriptor,
4847 staticField->field.name, tmpType, fieldType);
Andy McFadden62a75162009-04-17 17:23:37 -07004848 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004849 break;
4850 }
4851 }
4852 break;
4853 case OP_SPUT_WIDE:
Andy McFadden62a75162009-04-17 17:23:37 -07004854 tmpType = getRegisterType(workRegs, insnRegCount, decInsn.vA, &failure);
4855 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004856 RegType typeHi =
Andy McFadden62a75162009-04-17 17:23:37 -07004857 getRegisterType(workRegs, insnRegCount, decInsn.vA+1, &failure);
4858 checkTypeCategory(tmpType, kTypeCategory2, &failure);
4859 checkWidePair(tmpType, typeHi, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004860 }
Andy McFadden62a75162009-04-17 17:23:37 -07004861 if (VERIFY_OK(failure)) {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004862 StaticField* staticField;
4863
Andy McFadden62a75162009-04-17 17:23:37 -07004864 staticField = getStaticField(meth, decInsn.vB, &failure);
4865 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004866 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004867 checkFinalFieldAccess(meth, &staticField->field, &failure);
4868 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004869 break;
4870
4871 /* check the type, which should be prim */
4872 switch (staticField->field.signature[0]) {
4873 case 'D':
4874 case 'J':
4875 /* these are okay */
4876 break;
4877 default:
4878 LOG_VFY("VFY: invalid sput-wide of %s.%s\n",
4879 staticField->field.clazz->descriptor,
4880 staticField->field.name);
Andy McFadden62a75162009-04-17 17:23:37 -07004881 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004882 break;
4883 }
4884 }
4885 break;
4886 case OP_SPUT_OBJECT:
4887 {
4888 ClassObject* fieldClass;
4889 ClassObject* valueClass;
4890 StaticField* staticField;
4891 RegType valueType;
4892
Andy McFadden62a75162009-04-17 17:23:37 -07004893 staticField = getStaticField(meth, decInsn.vB, &failure);
4894 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004895 break;
Andy McFadden62a75162009-04-17 17:23:37 -07004896 checkFinalFieldAccess(meth, &staticField->field, &failure);
4897 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004898 break;
4899
4900 fieldClass = getFieldClass(meth, &staticField->field);
4901 if (fieldClass == NULL) {
4902 LOG_VFY("VFY: unable to recover field class from '%s'\n",
4903 staticField->field.signature);
Andy McFadden62a75162009-04-17 17:23:37 -07004904 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004905 break;
4906 }
4907
4908 valueType = getRegisterType(workRegs, insnRegCount, decInsn.vA,
Andy McFadden62a75162009-04-17 17:23:37 -07004909 &failure);
4910 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004911 break;
4912 if (!regTypeIsReference(valueType)) {
4913 LOG_VFY("VFY: storing non-ref v%d into ref field '%s' (%s)\n",
4914 decInsn.vA, staticField->field.name,
4915 fieldClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07004916 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004917 break;
4918 }
4919 if (valueType != kRegTypeZero) {
4920 valueClass = regTypeInitializedReferenceToClass(valueType);
4921 if (valueClass == NULL) {
4922 LOG_VFY("VFY: storing uninit ref v%d into ref field\n",
4923 decInsn.vA);
Andy McFadden62a75162009-04-17 17:23:37 -07004924 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004925 break;
4926 }
4927 /* allow if field is any interface or field is base class */
4928 if (!dvmIsInterfaceClass(fieldClass) &&
4929 !dvmInstanceof(valueClass, fieldClass))
4930 {
4931 LOG_VFY("VFY: storing type '%s' into field type '%s' (%s.%s)\n",
4932 valueClass->descriptor, fieldClass->descriptor,
4933 staticField->field.clazz->descriptor,
4934 staticField->field.name);
Andy McFadden62a75162009-04-17 17:23:37 -07004935 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004936 break;
4937 }
4938 }
4939 }
4940 break;
4941
4942 case OP_INVOKE_VIRTUAL:
4943 case OP_INVOKE_VIRTUAL_RANGE:
4944 case OP_INVOKE_SUPER:
4945 case OP_INVOKE_SUPER_RANGE:
4946 {
4947 Method* calledMethod;
4948 RegType returnType;
4949 bool isRange;
4950 bool isSuper;
4951
4952 isRange = (decInsn.opCode == OP_INVOKE_VIRTUAL_RANGE ||
4953 decInsn.opCode == OP_INVOKE_SUPER_RANGE);
4954 isSuper = (decInsn.opCode == OP_INVOKE_SUPER ||
4955 decInsn.opCode == OP_INVOKE_SUPER_RANGE);
4956
4957 calledMethod = verifyInvocationArgs(meth, workRegs, insnRegCount,
4958 &decInsn, uninitMap, METHOD_VIRTUAL, isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07004959 isSuper, &failure);
4960 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004961 break;
4962 returnType = getMethodReturnType(calledMethod);
Andy McFadden62a75162009-04-17 17:23:37 -07004963 setResultRegisterType(workRegs, insnRegCount, returnType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004964 justSetResult = true;
4965 }
4966 break;
4967 case OP_INVOKE_DIRECT:
4968 case OP_INVOKE_DIRECT_RANGE:
4969 {
4970 RegType returnType;
4971 Method* calledMethod;
4972 bool isRange;
4973
4974 isRange = (decInsn.opCode == OP_INVOKE_DIRECT_RANGE);
4975 calledMethod = verifyInvocationArgs(meth, workRegs, insnRegCount,
4976 &decInsn, uninitMap, METHOD_DIRECT, isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07004977 false, &failure);
4978 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004979 break;
4980
4981 /*
4982 * Some additional checks when calling <init>. We know from
4983 * the invocation arg check that the "this" argument is an
4984 * instance of calledMethod->clazz. Now we further restrict
4985 * that to require that calledMethod->clazz is the same as
4986 * this->clazz or this->super, allowing the latter only if
4987 * the "this" argument is the same as the "this" argument to
4988 * this method (which implies that we're in <init> ourselves).
4989 */
4990 if (isInitMethod(calledMethod)) {
4991 RegType thisType;
4992 thisType = getInvocationThis(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07004993 &decInsn, &failure);
4994 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08004995 break;
4996
4997 /* no null refs allowed (?) */
4998 if (thisType == kRegTypeZero) {
4999 LOG_VFY("VFY: unable to initialize null ref\n");
Andy McFadden62a75162009-04-17 17:23:37 -07005000 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005001 break;
5002 }
5003
5004 ClassObject* thisClass;
5005
5006 thisClass = regTypeReferenceToClass(thisType, uninitMap);
5007 assert(thisClass != NULL);
5008
5009 /* must be in same class or in superclass */
5010 if (calledMethod->clazz == thisClass->super) {
5011 if (thisClass != meth->clazz) {
5012 LOG_VFY("VFY: invoke-direct <init> on super only "
5013 "allowed for 'this' in <init>");
Andy McFadden62a75162009-04-17 17:23:37 -07005014 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005015 break;
5016 }
5017 } else if (calledMethod->clazz != thisClass) {
5018 LOG_VFY("VFY: invoke-direct <init> must be on current "
5019 "class or super\n");
Andy McFadden62a75162009-04-17 17:23:37 -07005020 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005021 break;
5022 }
5023
5024 /* arg must be an uninitialized reference */
5025 if (!regTypeIsUninitReference(thisType)) {
5026 LOG_VFY("VFY: can only initialize the uninitialized\n");
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
5031 /*
5032 * Replace the uninitialized reference with an initialized
5033 * one, and clear the entry in the uninit map. We need to
5034 * do this for all registers that have the same object
5035 * instance in them, not just the "this" register.
5036 */
5037 int uidx = regTypeToUninitIndex(thisType);
5038 markRefsAsInitialized(workRegs, insnRegCount, uninitMap,
Andy McFadden62a75162009-04-17 17:23:37 -07005039 thisType, &failure);
5040 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005041 break;
5042 }
5043 returnType = getMethodReturnType(calledMethod);
5044 setResultRegisterType(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07005045 returnType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005046 justSetResult = true;
5047 }
5048 break;
5049 case OP_INVOKE_STATIC:
5050 case OP_INVOKE_STATIC_RANGE:
5051 {
5052 RegType returnType;
5053 Method* calledMethod;
5054 bool isRange;
5055
5056 isRange = (decInsn.opCode == OP_INVOKE_STATIC_RANGE);
5057 calledMethod = verifyInvocationArgs(meth, workRegs, insnRegCount,
5058 &decInsn, uninitMap, METHOD_STATIC, isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07005059 false, &failure);
5060 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005061 break;
5062
5063 returnType = getMethodReturnType(calledMethod);
Andy McFadden62a75162009-04-17 17:23:37 -07005064 setResultRegisterType(workRegs, insnRegCount, returnType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005065 justSetResult = true;
5066 }
5067 break;
5068 case OP_INVOKE_INTERFACE:
5069 case OP_INVOKE_INTERFACE_RANGE:
5070 {
5071 RegType /*thisType,*/ returnType;
5072 Method* absMethod;
5073 bool isRange;
5074
5075 isRange = (decInsn.opCode == OP_INVOKE_INTERFACE_RANGE);
5076 absMethod = verifyInvocationArgs(meth, workRegs, insnRegCount,
5077 &decInsn, uninitMap, METHOD_INTERFACE, isRange,
Andy McFadden62a75162009-04-17 17:23:37 -07005078 false, &failure);
5079 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005080 break;
5081
5082#if 0 /* can't do this here, fails on dalvik test 052-verifier-fun */
5083 /*
5084 * Get the type of the "this" arg, which should always be an
5085 * interface class. Because we don't do a full merge on
5086 * interface classes, this might have reduced to Object.
5087 */
5088 thisType = getInvocationThis(workRegs, insnRegCount,
Andy McFadden62a75162009-04-17 17:23:37 -07005089 &decInsn, &failure);
5090 if (!VERIFY_OK(failure))
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005091 break;
5092
5093 if (thisType == kRegTypeZero) {
5094 /* null pointer always passes (and always fails at runtime) */
5095 } else {
5096 ClassObject* thisClass;
5097
5098 thisClass = regTypeInitializedReferenceToClass(thisType);
5099 if (thisClass == NULL) {
5100 LOG_VFY("VFY: interface call on uninitialized\n");
Andy McFadden62a75162009-04-17 17:23:37 -07005101 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005102 break;
5103 }
5104
5105 /*
5106 * Either "thisClass" needs to be the interface class that
5107 * defined absMethod, or absMethod's class needs to be one
5108 * of the interfaces implemented by "thisClass". (Or, if
5109 * we couldn't complete the merge, this will be Object.)
5110 */
5111 if (thisClass != absMethod->clazz &&
5112 thisClass != gDvm.classJavaLangObject &&
5113 !dvmImplements(thisClass, absMethod->clazz))
5114 {
5115 LOG_VFY("VFY: unable to match absMethod '%s' with %s interfaces\n",
5116 absMethod->name, thisClass->descriptor);
Andy McFadden62a75162009-04-17 17:23:37 -07005117 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005118 break;
5119 }
5120 }
5121#endif
5122
5123 /*
5124 * We don't have an object instance, so we can't find the
5125 * concrete method. However, all of the type information is
5126 * in the abstract method, so we're good.
5127 */
5128 returnType = getMethodReturnType(absMethod);
Andy McFadden62a75162009-04-17 17:23:37 -07005129 setResultRegisterType(workRegs, insnRegCount, returnType, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005130 justSetResult = true;
5131 }
5132 break;
5133
5134 case OP_NEG_INT:
5135 case OP_NOT_INT:
5136 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005137 kRegTypeInteger, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005138 break;
5139 case OP_NEG_LONG:
5140 case OP_NOT_LONG:
5141 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005142 kRegTypeLongLo, kRegTypeLongLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005143 break;
5144 case OP_NEG_FLOAT:
5145 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005146 kRegTypeFloat, kRegTypeFloat, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005147 break;
5148 case OP_NEG_DOUBLE:
5149 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005150 kRegTypeDoubleLo, kRegTypeDoubleLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005151 break;
5152 case OP_INT_TO_LONG:
5153 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005154 kRegTypeLongLo, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005155 break;
5156 case OP_INT_TO_FLOAT:
5157 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005158 kRegTypeFloat, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005159 break;
5160 case OP_INT_TO_DOUBLE:
5161 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005162 kRegTypeDoubleLo, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005163 break;
5164 case OP_LONG_TO_INT:
5165 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005166 kRegTypeInteger, kRegTypeLongLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005167 break;
5168 case OP_LONG_TO_FLOAT:
5169 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005170 kRegTypeFloat, kRegTypeLongLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005171 break;
5172 case OP_LONG_TO_DOUBLE:
5173 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005174 kRegTypeDoubleLo, kRegTypeLongLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005175 break;
5176 case OP_FLOAT_TO_INT:
5177 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005178 kRegTypeInteger, kRegTypeFloat, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005179 break;
5180 case OP_FLOAT_TO_LONG:
5181 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005182 kRegTypeLongLo, kRegTypeFloat, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005183 break;
5184 case OP_FLOAT_TO_DOUBLE:
5185 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005186 kRegTypeDoubleLo, kRegTypeFloat, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005187 break;
5188 case OP_DOUBLE_TO_INT:
5189 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005190 kRegTypeInteger, kRegTypeDoubleLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005191 break;
5192 case OP_DOUBLE_TO_LONG:
5193 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005194 kRegTypeLongLo, kRegTypeDoubleLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005195 break;
5196 case OP_DOUBLE_TO_FLOAT:
5197 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005198 kRegTypeFloat, kRegTypeDoubleLo, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005199 break;
5200 case OP_INT_TO_BYTE:
5201 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005202 kRegTypeByte, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005203 break;
5204 case OP_INT_TO_CHAR:
5205 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005206 kRegTypeChar, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005207 break;
5208 case OP_INT_TO_SHORT:
5209 checkUnop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005210 kRegTypeShort, kRegTypeInteger, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005211 break;
5212
5213 case OP_ADD_INT:
5214 case OP_SUB_INT:
5215 case OP_MUL_INT:
5216 case OP_REM_INT:
5217 case OP_DIV_INT:
5218 case OP_SHL_INT:
5219 case OP_SHR_INT:
5220 case OP_USHR_INT:
5221 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005222 kRegTypeInteger, kRegTypeInteger, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005223 break;
5224 case OP_AND_INT:
5225 case OP_OR_INT:
5226 case OP_XOR_INT:
5227 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005228 kRegTypeInteger, kRegTypeInteger, kRegTypeInteger, true, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005229 break;
5230 case OP_ADD_LONG:
5231 case OP_SUB_LONG:
5232 case OP_MUL_LONG:
5233 case OP_DIV_LONG:
5234 case OP_REM_LONG:
5235 case OP_AND_LONG:
5236 case OP_OR_LONG:
5237 case OP_XOR_LONG:
5238 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005239 kRegTypeLongLo, kRegTypeLongLo, kRegTypeLongLo, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005240 break;
5241 case OP_SHL_LONG:
5242 case OP_SHR_LONG:
5243 case OP_USHR_LONG:
5244 /* shift distance is Int, making these different from other binops */
5245 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005246 kRegTypeLongLo, kRegTypeLongLo, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005247 break;
5248 case OP_ADD_FLOAT:
5249 case OP_SUB_FLOAT:
5250 case OP_MUL_FLOAT:
5251 case OP_DIV_FLOAT:
5252 case OP_REM_FLOAT:
5253 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005254 kRegTypeFloat, kRegTypeFloat, kRegTypeFloat, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005255 break;
5256 case OP_ADD_DOUBLE:
5257 case OP_SUB_DOUBLE:
5258 case OP_MUL_DOUBLE:
5259 case OP_DIV_DOUBLE:
5260 case OP_REM_DOUBLE:
5261 checkBinop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005262 kRegTypeDoubleLo, kRegTypeDoubleLo, kRegTypeDoubleLo, false,
5263 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005264 break;
5265 case OP_ADD_INT_2ADDR:
5266 case OP_SUB_INT_2ADDR:
5267 case OP_MUL_INT_2ADDR:
5268 case OP_REM_INT_2ADDR:
5269 case OP_SHL_INT_2ADDR:
5270 case OP_SHR_INT_2ADDR:
5271 case OP_USHR_INT_2ADDR:
5272 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005273 kRegTypeInteger, kRegTypeInteger, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005274 break;
5275 case OP_AND_INT_2ADDR:
5276 case OP_OR_INT_2ADDR:
5277 case OP_XOR_INT_2ADDR:
5278 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005279 kRegTypeInteger, kRegTypeInteger, kRegTypeInteger, true, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005280 break;
5281 case OP_DIV_INT_2ADDR:
5282 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005283 kRegTypeInteger, kRegTypeInteger, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005284 break;
5285 case OP_ADD_LONG_2ADDR:
5286 case OP_SUB_LONG_2ADDR:
5287 case OP_MUL_LONG_2ADDR:
5288 case OP_DIV_LONG_2ADDR:
5289 case OP_REM_LONG_2ADDR:
5290 case OP_AND_LONG_2ADDR:
5291 case OP_OR_LONG_2ADDR:
5292 case OP_XOR_LONG_2ADDR:
5293 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005294 kRegTypeLongLo, kRegTypeLongLo, kRegTypeLongLo, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005295 break;
5296 case OP_SHL_LONG_2ADDR:
5297 case OP_SHR_LONG_2ADDR:
5298 case OP_USHR_LONG_2ADDR:
5299 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005300 kRegTypeLongLo, kRegTypeLongLo, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005301 break;
5302 case OP_ADD_FLOAT_2ADDR:
5303 case OP_SUB_FLOAT_2ADDR:
5304 case OP_MUL_FLOAT_2ADDR:
5305 case OP_DIV_FLOAT_2ADDR:
5306 case OP_REM_FLOAT_2ADDR:
5307 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005308 kRegTypeFloat, kRegTypeFloat, kRegTypeFloat, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005309 break;
5310 case OP_ADD_DOUBLE_2ADDR:
5311 case OP_SUB_DOUBLE_2ADDR:
5312 case OP_MUL_DOUBLE_2ADDR:
5313 case OP_DIV_DOUBLE_2ADDR:
5314 case OP_REM_DOUBLE_2ADDR:
5315 checkBinop2addr(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005316 kRegTypeDoubleLo, kRegTypeDoubleLo, kRegTypeDoubleLo, false,
5317 &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005318 break;
5319 case OP_ADD_INT_LIT16:
5320 case OP_RSUB_INT:
5321 case OP_MUL_INT_LIT16:
5322 case OP_DIV_INT_LIT16:
5323 case OP_REM_INT_LIT16:
5324 checkLitop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005325 kRegTypeInteger, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005326 break;
5327 case OP_AND_INT_LIT16:
5328 case OP_OR_INT_LIT16:
5329 case OP_XOR_INT_LIT16:
5330 checkLitop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005331 kRegTypeInteger, kRegTypeInteger, true, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005332 break;
5333 case OP_ADD_INT_LIT8:
5334 case OP_RSUB_INT_LIT8:
5335 case OP_MUL_INT_LIT8:
5336 case OP_DIV_INT_LIT8:
5337 case OP_REM_INT_LIT8:
5338 case OP_SHL_INT_LIT8:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005339 checkLitop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005340 kRegTypeInteger, kRegTypeInteger, false, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005341 break;
Andy McFadden80d25ea2009-06-12 07:26:17 -07005342 case OP_SHR_INT_LIT8:
5343 tmpType = adjustForRightShift(workRegs, insnRegCount,
5344 decInsn.vB, decInsn.vC, false, &failure);
5345 checkLitop(workRegs, insnRegCount, &decInsn,
5346 tmpType, kRegTypeInteger, false, &failure);
5347 break;
5348 case OP_USHR_INT_LIT8:
5349 tmpType = adjustForRightShift(workRegs, insnRegCount,
5350 decInsn.vB, decInsn.vC, true, &failure);
5351 checkLitop(workRegs, insnRegCount, &decInsn,
5352 tmpType, kRegTypeInteger, false, &failure);
5353 break;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005354 case OP_AND_INT_LIT8:
5355 case OP_OR_INT_LIT8:
5356 case OP_XOR_INT_LIT8:
5357 checkLitop(workRegs, insnRegCount, &decInsn,
Andy McFadden62a75162009-04-17 17:23:37 -07005358 kRegTypeInteger, kRegTypeInteger, true, &failure);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005359 break;
5360
Andy McFaddenb51ea112009-05-08 16:50:17 -07005361 /*
5362 * This falls into the general category of "optimized" instructions,
5363 * which don't generally appear during verification. Because it's
5364 * inserted in the course of verification, we can expect to see it here.
5365 */
5366 case OP_THROW_VERIFICATION_ERROR:
5367 break;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005368
5369 /*
5370 * Verifying "quickened" instructions is tricky, because we have
5371 * discarded the original field/method information. The byte offsets
5372 * and vtable indices only have meaning in the context of an object
5373 * instance.
5374 *
5375 * If a piece of code declares a local reference variable, assigns
5376 * null to it, and then issues a virtual method call on it, we
5377 * cannot evaluate the method call during verification. This situation
5378 * isn't hard to handle, since we know the call will always result in an
5379 * NPE, and the arguments and return value don't matter. Any code that
5380 * depends on the result of the method call is inaccessible, so the
5381 * fact that we can't fully verify anything that comes after the bad
5382 * call is not a problem.
5383 *
5384 * We must also consider the case of multiple code paths, only some of
5385 * which involve a null reference. We can completely verify the method
5386 * if we sidestep the results of executing with a null reference.
5387 * For example, if on the first pass through the code we try to do a
5388 * virtual method invocation through a null ref, we have to skip the
5389 * method checks and have the method return a "wildcard" type (which
5390 * merges with anything to become that other thing). The move-result
5391 * will tell us if it's a reference, single-word numeric, or double-word
5392 * value. We continue to perform the verification, and at the end of
5393 * the function any invocations that were never fully exercised are
5394 * marked as null-only.
5395 *
5396 * We would do something similar for the field accesses. The field's
5397 * type, once known, can be used to recover the width of short integers.
5398 * If the object reference was null, the field-get returns the "wildcard"
5399 * type, which is acceptable for any operation.
5400 */
5401 case OP_EXECUTE_INLINE:
5402 case OP_INVOKE_DIRECT_EMPTY:
5403 case OP_IGET_QUICK:
5404 case OP_IGET_WIDE_QUICK:
5405 case OP_IGET_OBJECT_QUICK:
5406 case OP_IPUT_QUICK:
5407 case OP_IPUT_WIDE_QUICK:
5408 case OP_IPUT_OBJECT_QUICK:
5409 case OP_INVOKE_VIRTUAL_QUICK:
5410 case OP_INVOKE_VIRTUAL_QUICK_RANGE:
5411 case OP_INVOKE_SUPER_QUICK:
5412 case OP_INVOKE_SUPER_QUICK_RANGE:
Andy McFadden62a75162009-04-17 17:23:37 -07005413 failure = VERIFY_ERROR_GENERIC;
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005414 break;
5415
5416 /* these should never appear */
5417 case OP_UNUSED_3E:
5418 case OP_UNUSED_3F:
5419 case OP_UNUSED_40:
5420 case OP_UNUSED_41:
5421 case OP_UNUSED_42:
5422 case OP_UNUSED_43:
5423 case OP_UNUSED_73:
5424 case OP_UNUSED_79:
5425 case OP_UNUSED_7A:
5426 case OP_UNUSED_E3:
5427 case OP_UNUSED_E4:
5428 case OP_UNUSED_E5:
5429 case OP_UNUSED_E6:
5430 case OP_UNUSED_E7:
5431 case OP_UNUSED_E8:
5432 case OP_UNUSED_E9:
5433 case OP_UNUSED_EA:
5434 case OP_UNUSED_EB:
5435 case OP_UNUSED_EC:
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005436 case OP_UNUSED_EF:
5437 case OP_UNUSED_F1:
5438 case OP_UNUSED_FC:
5439 case OP_UNUSED_FD:
5440 case OP_UNUSED_FE:
5441 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
5478 * result is set.
5479 */
5480 if (!justSetResult) {
5481 int reg = RESULT_REGISTER(insnRegCount);
5482 workRegs[reg] = workRegs[reg+1] = kRegTypeUnknown;
5483 }
5484
5485 /*
5486 * Handle "continue". Tag the next consecutive instruction.
5487 */
5488 if ((nextFlags & kInstrCanContinue) != 0) {
5489 int insnWidth = dvmInsnGetWidth(insnFlags, insnIdx);
5490 if (insnIdx+insnWidth >= insnsSize) {
5491 LOG_VFY_METH(meth,
5492 "VFY: execution can walk off end of code area (from 0x%x)\n",
5493 insnIdx);
5494 goto bail;
5495 }
5496
5497 /*
5498 * The only way to get to a move-exception instruction is to get
5499 * thrown there. Make sure the next instruction isn't one.
5500 */
5501 if (!checkMoveException(meth, insnIdx+insnWidth, "next"))
5502 goto bail;
5503
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005504 if (getRegisterLine(regTable, insnIdx+insnWidth) != NULL) {
Andy McFadden06b7a282009-05-11 10:44:52 -07005505 /*
5506 * Merge registers into what we have for the next instruction,
5507 * and set the "changed" flag if needed.
5508 */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005509 updateRegisters(meth, insnFlags, regTable, insnIdx+insnWidth,
5510 workRegs);
5511 } else {
The Android Open Source Project99409882009-03-18 22:20:24 -07005512 /*
Andy McFadden06b7a282009-05-11 10:44:52 -07005513 * We're not recording register data for the next instruction,
5514 * so we don't know what the prior state was. We have to
5515 * assume that something has changed and re-evaluate it.
The Android Open Source Project99409882009-03-18 22:20:24 -07005516 */
5517 dvmInsnSetChanged(insnFlags, insnIdx+insnWidth, true);
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005518 }
5519 }
5520
5521 /*
5522 * Handle "branch". Tag the branch target.
5523 *
5524 * NOTE: instructions like OP_EQZ provide information about the state
5525 * of the register when the branch is taken or not taken. For example,
5526 * somebody could get a reference field, check it for zero, and if the
5527 * branch is taken immediately store that register in a boolean field
5528 * since the value is known to be zero. We do not currently account for
5529 * that, and will reject the code.
5530 */
5531 if ((nextFlags & kInstrCanBranch) != 0) {
5532 bool isConditional;
5533
5534 if (!dvmGetBranchTarget(meth, insnFlags, insnIdx, &branchTarget,
5535 &isConditional))
5536 {
5537 /* should never happen after static verification */
5538 LOG_VFY_METH(meth, "VFY: bad branch at %d\n", insnIdx);
5539 goto bail;
5540 }
5541 assert(isConditional || (nextFlags & kInstrCanContinue) == 0);
5542 assert(!isConditional || (nextFlags & kInstrCanContinue) != 0);
5543
5544 if (!checkMoveException(meth, insnIdx+branchTarget, "branch"))
5545 goto bail;
5546
The Android Open Source Project99409882009-03-18 22:20:24 -07005547 /* update branch target, set "changed" if appropriate */
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08005548 updateRegisters(meth, insnFlags, regTable, insnIdx+branchTarget,
5549 workRegs);
5550 }
5551
5552 /*
5553 * Handle "switch". Tag all possible branch targets.
5554 *
5555 * We've already verified that the table is structurally sound, so we
5556 * just need to walk through and tag the targets.
5557 */
5558 if ((nextFlags & kInstrCanSwitch) != 0) {
5559 int offsetToSwitch = insns[1] | (((s4)insns[2]) << 16);
5560 const u2* switchInsns = insns + offsetToSwitch;
5561 int switchCount = switchInsns[1];
5562 int offsetToTargets, targ;
5563
5564 if ((*insns & 0xff) == OP_PACKED_SWITCH) {
5565 /* 0=sig, 1=count, 2/3=firstKey */
5566 offsetToTargets = 4;
5567 } else {
5568 /* 0=sig, 1=count, 2..count*2 = keys */
5569 assert((*insns & 0xff) == OP_SPARSE_SWITCH);
5570 offsetToTargets = 2 + 2*switchCount;
5571 }
5572
5573 /* verify each switch target */
5574 for (targ = 0; targ < switchCount; targ++) {
5575 int offset, absOffset;
5576
5577 /* offsets are 32-bit, and only partly endian-swapped */
5578 offset = switchInsns[offsetToTargets + targ*2] |
5579 (((s4) switchInsns[offsetToTargets + targ*2 +1]) << 16);
5580 absOffset = insnIdx + offset;
5581
5582 assert(absOffset >= 0 && absOffset < insnsSize);
5583
5584 if (!checkMoveException(meth, absOffset, "switch"))
5585 goto bail;
5586
5587 updateRegisters(meth, insnFlags, regTable, absOffset, workRegs);
5588 }
5589 }
5590
5591 /*
5592 * Handle instructions that can throw and that are sitting in a
5593 * "try" block. (If they're not in a "try" block when they throw,
5594 * control transfers out of the method.)
5595 */
5596 if ((nextFlags & kInstrCanThrow) != 0 && dvmInsnIsInTry(insnFlags, insnIdx))
5597 {
5598 DexFile* pDexFile = meth->clazz->pDvmDex->pDexFile;
5599 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}
5757