blob: faabaf75d7b17d4aff5ba5cb7d956f8cb80e4aa1 [file] [log] [blame]
drh9a324642003-09-06 20:12:01 +00001/*
2** 2003 September 6
3**
4** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
6**
7** May you do good and not evil.
8** May you find forgiveness for yourself and forgive others.
9** May you share freely, never taking more than you give.
10**
11*************************************************************************
12** This file contains code used for creating, destroying, and populating
danielk1977fc57d7b2004-05-26 02:04:57 +000013** a VDBE (or an "sqlite3_stmt" as it is known to the outside world.) Prior
drh9a324642003-09-06 20:12:01 +000014** to version 2.8.7, all this code was combined into the vdbe.c source file.
15** But that file was getting too big so this subroutines were split out.
16*/
17#include "sqliteInt.h"
drh9a324642003-09-06 20:12:01 +000018#include "vdbeInt.h"
19
drh9a324642003-09-06 20:12:01 +000020/*
21** Create a new virtual database engine.
22*/
drh9ac79622013-12-18 15:11:47 +000023Vdbe *sqlite3VdbeCreate(Parse *pParse){
24 sqlite3 *db = pParse->db;
drh9a324642003-09-06 20:12:01 +000025 Vdbe *p;
drh17435752007-08-16 04:30:38 +000026 p = sqlite3DbMallocZero(db, sizeof(Vdbe) );
drh9a324642003-09-06 20:12:01 +000027 if( p==0 ) return 0;
28 p->db = db;
29 if( db->pVdbe ){
30 db->pVdbe->pPrev = p;
31 }
32 p->pNext = db->pVdbe;
33 p->pPrev = 0;
34 db->pVdbe = p;
35 p->magic = VDBE_MAGIC_INIT;
drh9ac79622013-12-18 15:11:47 +000036 p->pParse = pParse;
drh73d5b8f2013-12-23 19:09:07 +000037 assert( pParse->aLabel==0 );
38 assert( pParse->nLabel==0 );
39 assert( pParse->nOpAlloc==0 );
drh9a324642003-09-06 20:12:01 +000040 return p;
41}
42
43/*
drhb900aaf2006-11-09 00:24:53 +000044** Remember the SQL string for a prepared statement.
45*/
danielk19776ab3a2e2009-02-19 14:39:25 +000046void sqlite3VdbeSetSql(Vdbe *p, const char *z, int n, int isPrepareV2){
dan1d2ce4f2009-10-19 18:11:09 +000047 assert( isPrepareV2==1 || isPrepareV2==0 );
drhb900aaf2006-11-09 00:24:53 +000048 if( p==0 ) return;
danac455932012-11-26 19:50:41 +000049#if defined(SQLITE_OMIT_TRACE) && !defined(SQLITE_ENABLE_SQLLOG)
danielk19776ab3a2e2009-02-19 14:39:25 +000050 if( !isPrepareV2 ) return;
51#endif
drhb900aaf2006-11-09 00:24:53 +000052 assert( p->zSql==0 );
drh17435752007-08-16 04:30:38 +000053 p->zSql = sqlite3DbStrNDup(p->db, z, n);
shanef639c402009-11-03 19:42:30 +000054 p->isPrepareV2 = (u8)isPrepareV2;
drhb900aaf2006-11-09 00:24:53 +000055}
56
57/*
58** Return the SQL associated with a prepared statement
59*/
danielk1977d0e2a852007-11-14 06:48:48 +000060const char *sqlite3_sql(sqlite3_stmt *pStmt){
danielk19776ab3a2e2009-02-19 14:39:25 +000061 Vdbe *p = (Vdbe *)pStmt;
drh87f5c5f2010-01-20 01:20:56 +000062 return (p && p->isPrepareV2) ? p->zSql : 0;
drhb900aaf2006-11-09 00:24:53 +000063}
64
65/*
drhc5155252007-01-08 21:07:17 +000066** Swap all content between two VDBE structures.
drhb900aaf2006-11-09 00:24:53 +000067*/
drhc5155252007-01-08 21:07:17 +000068void sqlite3VdbeSwap(Vdbe *pA, Vdbe *pB){
69 Vdbe tmp, *pTmp;
70 char *zTmp;
drhc5155252007-01-08 21:07:17 +000071 tmp = *pA;
72 *pA = *pB;
73 *pB = tmp;
74 pTmp = pA->pNext;
75 pA->pNext = pB->pNext;
76 pB->pNext = pTmp;
77 pTmp = pA->pPrev;
78 pA->pPrev = pB->pPrev;
79 pB->pPrev = pTmp;
80 zTmp = pA->zSql;
81 pA->zSql = pB->zSql;
82 pB->zSql = zTmp;
danielk19776ab3a2e2009-02-19 14:39:25 +000083 pB->isPrepareV2 = pA->isPrepareV2;
drhb900aaf2006-11-09 00:24:53 +000084}
85
drh9a324642003-09-06 20:12:01 +000086/*
danielk197700e13612008-11-17 19:18:54 +000087** Resize the Vdbe.aOp array so that it is at least one op larger than
88** it was.
danielk1977ace3eb22006-01-26 10:35:04 +000089**
danielk197700e13612008-11-17 19:18:54 +000090** If an out-of-memory error occurs while resizing the array, return
91** SQLITE_NOMEM. In this case Vdbe.aOp and Vdbe.nOpAlloc remain
92** unchanged (this is so that any opcodes already allocated can be
93** correctly deallocated along with the rest of the Vdbe).
drh76ff3a02004-09-24 22:32:30 +000094*/
drh73d5b8f2013-12-23 19:09:07 +000095static int growOpArray(Vdbe *v){
drha4e5d582007-10-20 15:41:57 +000096 VdbeOp *pNew;
drh73d5b8f2013-12-23 19:09:07 +000097 Parse *p = v->pParse;
danielk197700e13612008-11-17 19:18:54 +000098 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));
drh73d5b8f2013-12-23 19:09:07 +000099 pNew = sqlite3DbRealloc(p->db, v->aOp, nNew*sizeof(Op));
drha4e5d582007-10-20 15:41:57 +0000100 if( pNew ){
drhb45f65d2009-03-01 19:42:11 +0000101 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);
drh73d5b8f2013-12-23 19:09:07 +0000102 v->aOp = pNew;
drh76ff3a02004-09-24 22:32:30 +0000103 }
danielk197700e13612008-11-17 19:18:54 +0000104 return (pNew ? SQLITE_OK : SQLITE_NOMEM);
drh76ff3a02004-09-24 22:32:30 +0000105}
106
drh313619f2013-10-31 20:34:06 +0000107#ifdef SQLITE_DEBUG
108/* This routine is just a convenient place to set a breakpoint that will
109** fire after each opcode is inserted and displayed using
110** "PRAGMA vdbe_addoptrace=on".
111*/
112static void test_addop_breakpoint(void){
113 static int n = 0;
114 n++;
115}
116#endif
117
drh76ff3a02004-09-24 22:32:30 +0000118/*
drh9a324642003-09-06 20:12:01 +0000119** Add a new instruction to the list of instructions current in the
120** VDBE. Return the address of the new instruction.
121**
122** Parameters:
123**
124** p Pointer to the VDBE
125**
126** op The opcode for this instruction
127**
drh66a51672008-01-03 00:01:23 +0000128** p1, p2, p3 Operands
drh9a324642003-09-06 20:12:01 +0000129**
danielk19774adee202004-05-08 08:23:19 +0000130** Use the sqlite3VdbeResolveLabel() function to fix an address and
drh66a51672008-01-03 00:01:23 +0000131** the sqlite3VdbeChangeP4() function to change the value of the P4
drh9a324642003-09-06 20:12:01 +0000132** operand.
133*/
drh66a51672008-01-03 00:01:23 +0000134int sqlite3VdbeAddOp3(Vdbe *p, int op, int p1, int p2, int p3){
drh9a324642003-09-06 20:12:01 +0000135 int i;
drh701a0ae2004-02-22 20:05:00 +0000136 VdbeOp *pOp;
drh9a324642003-09-06 20:12:01 +0000137
138 i = p->nOp;
drh9a324642003-09-06 20:12:01 +0000139 assert( p->magic==VDBE_MAGIC_INIT );
drh8df32842008-12-09 02:51:23 +0000140 assert( op>0 && op<0xff );
drh73d5b8f2013-12-23 19:09:07 +0000141 if( p->pParse->nOpAlloc<=i ){
danielk197700e13612008-11-17 19:18:54 +0000142 if( growOpArray(p) ){
drhc42ed162009-06-26 14:04:51 +0000143 return 1;
drhfd2d26b2006-03-15 22:44:36 +0000144 }
drh9a324642003-09-06 20:12:01 +0000145 }
danielk197701256832007-04-18 14:24:32 +0000146 p->nOp++;
drh701a0ae2004-02-22 20:05:00 +0000147 pOp = &p->aOp[i];
drh8df32842008-12-09 02:51:23 +0000148 pOp->opcode = (u8)op;
drh26c9b5e2008-04-11 14:56:53 +0000149 pOp->p5 = 0;
drh701a0ae2004-02-22 20:05:00 +0000150 pOp->p1 = p1;
drh701a0ae2004-02-22 20:05:00 +0000151 pOp->p2 = p2;
drh66a51672008-01-03 00:01:23 +0000152 pOp->p3 = p3;
153 pOp->p4.p = 0;
154 pOp->p4type = P4_NOTUSED;
drhc7379ce2013-10-30 02:28:23 +0000155#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS
drh26c9b5e2008-04-11 14:56:53 +0000156 pOp->zComment = 0;
drhc7379ce2013-10-30 02:28:23 +0000157#endif
158#ifdef SQLITE_DEBUG
drhe0962052013-01-29 19:14:31 +0000159 if( p->db->flags & SQLITE_VdbeAddopTrace ){
drh9ac79622013-12-18 15:11:47 +0000160 int jj, kk;
161 Parse *pParse = p->pParse;
162 for(jj=kk=0; jj<SQLITE_N_COLCACHE; jj++){
163 struct yColCache *x = pParse->aColCache + jj;
164 if( x->iLevel>pParse->iCacheLevel || x->iReg==0 ) continue;
165 printf(" r[%d]={%d:%d}", x->iReg, x->iTable, x->iColumn);
166 kk++;
167 }
168 if( kk ) printf("\n");
drhe0962052013-01-29 19:14:31 +0000169 sqlite3VdbePrintOp(0, i, &p->aOp[i]);
drh313619f2013-10-31 20:34:06 +0000170 test_addop_breakpoint();
drhe0962052013-01-29 19:14:31 +0000171 }
drh9a324642003-09-06 20:12:01 +0000172#endif
drh26c9b5e2008-04-11 14:56:53 +0000173#ifdef VDBE_PROFILE
174 pOp->cycles = 0;
175 pOp->cnt = 0;
176#endif
drh9a324642003-09-06 20:12:01 +0000177 return i;
178}
drh66a51672008-01-03 00:01:23 +0000179int sqlite3VdbeAddOp0(Vdbe *p, int op){
180 return sqlite3VdbeAddOp3(p, op, 0, 0, 0);
181}
182int sqlite3VdbeAddOp1(Vdbe *p, int op, int p1){
183 return sqlite3VdbeAddOp3(p, op, p1, 0, 0);
184}
185int sqlite3VdbeAddOp2(Vdbe *p, int op, int p1, int p2){
186 return sqlite3VdbeAddOp3(p, op, p1, p2, 0);
drh701a0ae2004-02-22 20:05:00 +0000187}
188
drh66a51672008-01-03 00:01:23 +0000189
drh701a0ae2004-02-22 20:05:00 +0000190/*
drh66a51672008-01-03 00:01:23 +0000191** Add an opcode that includes the p4 value as a pointer.
drhd4e70eb2008-01-02 00:34:36 +0000192*/
drh66a51672008-01-03 00:01:23 +0000193int sqlite3VdbeAddOp4(
drhd4e70eb2008-01-02 00:34:36 +0000194 Vdbe *p, /* Add the opcode to this VM */
195 int op, /* The new opcode */
drh66a51672008-01-03 00:01:23 +0000196 int p1, /* The P1 operand */
197 int p2, /* The P2 operand */
198 int p3, /* The P3 operand */
199 const char *zP4, /* The P4 operand */
200 int p4type /* P4 operand type */
drhd4e70eb2008-01-02 00:34:36 +0000201){
drh66a51672008-01-03 00:01:23 +0000202 int addr = sqlite3VdbeAddOp3(p, op, p1, p2, p3);
203 sqlite3VdbeChangeP4(p, addr, zP4, p4type);
drhd4e70eb2008-01-02 00:34:36 +0000204 return addr;
205}
206
207/*
drh5d9c9da2011-06-03 20:11:17 +0000208** Add an OP_ParseSchema opcode. This routine is broken out from
drhe4c88c02012-01-04 12:57:45 +0000209** sqlite3VdbeAddOp4() since it needs to also needs to mark all btrees
210** as having been used.
drh5d9c9da2011-06-03 20:11:17 +0000211**
212** The zWhere string must have been obtained from sqlite3_malloc().
213** This routine will take ownership of the allocated memory.
214*/
215void sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere){
216 int j;
217 int addr = sqlite3VdbeAddOp3(p, OP_ParseSchema, iDb, 0, 0);
218 sqlite3VdbeChangeP4(p, addr, zWhere, P4_DYNAMIC);
219 for(j=0; j<p->db->nDb; j++) sqlite3VdbeUsesBtree(p, j);
220}
221
222/*
drh8cff69d2009-11-12 19:59:44 +0000223** Add an opcode that includes the p4 value as an integer.
224*/
225int sqlite3VdbeAddOp4Int(
226 Vdbe *p, /* Add the opcode to this VM */
227 int op, /* The new opcode */
228 int p1, /* The P1 operand */
229 int p2, /* The P2 operand */
230 int p3, /* The P3 operand */
231 int p4 /* The P4 operand as an integer */
232){
233 int addr = sqlite3VdbeAddOp3(p, op, p1, p2, p3);
234 sqlite3VdbeChangeP4(p, addr, SQLITE_INT_TO_PTR(p4), P4_INT32);
235 return addr;
236}
237
238/*
drh9a324642003-09-06 20:12:01 +0000239** Create a new symbolic label for an instruction that has yet to be
240** coded. The symbolic label is really just a negative number. The
241** label can be used as the P2 value of an operation. Later, when
242** the label is resolved to a specific address, the VDBE will scan
243** through its operation list and change all values of P2 which match
244** the label into the resolved address.
245**
246** The VDBE knows that a P2 value is a label because labels are
247** always negative and P2 values are suppose to be non-negative.
248** Hence, a negative P2 value is a label that has yet to be resolved.
danielk1977b5548a82004-06-26 13:51:33 +0000249**
250** Zero is returned if a malloc() fails.
drh9a324642003-09-06 20:12:01 +0000251*/
drh73d5b8f2013-12-23 19:09:07 +0000252int sqlite3VdbeMakeLabel(Vdbe *v){
253 Parse *p = v->pParse;
drhc35f3d52012-02-01 19:03:38 +0000254 int i = p->nLabel++;
drh73d5b8f2013-12-23 19:09:07 +0000255 assert( v->magic==VDBE_MAGIC_INIT );
drhc35f3d52012-02-01 19:03:38 +0000256 if( (i & (i-1))==0 ){
257 p->aLabel = sqlite3DbReallocOrFree(p->db, p->aLabel,
258 (i*2+1)*sizeof(p->aLabel[0]));
drh9a324642003-09-06 20:12:01 +0000259 }
drh76ff3a02004-09-24 22:32:30 +0000260 if( p->aLabel ){
261 p->aLabel[i] = -1;
drh9a324642003-09-06 20:12:01 +0000262 }
drh9a324642003-09-06 20:12:01 +0000263 return -1-i;
264}
265
266/*
267** Resolve label "x" to be the address of the next instruction to
268** be inserted. The parameter "x" must have been obtained from
danielk19774adee202004-05-08 08:23:19 +0000269** a prior call to sqlite3VdbeMakeLabel().
drh9a324642003-09-06 20:12:01 +0000270*/
drh73d5b8f2013-12-23 19:09:07 +0000271void sqlite3VdbeResolveLabel(Vdbe *v, int x){
272 Parse *p = v->pParse;
drh76ff3a02004-09-24 22:32:30 +0000273 int j = -1-x;
drh73d5b8f2013-12-23 19:09:07 +0000274 assert( v->magic==VDBE_MAGIC_INIT );
drhb2b9d3d2013-08-01 01:14:43 +0000275 assert( j<p->nLabel );
276 if( j>=0 && p->aLabel ){
drh73d5b8f2013-12-23 19:09:07 +0000277 p->aLabel[j] = v->nOp;
drh9a324642003-09-06 20:12:01 +0000278 }
drh61019c72014-01-04 16:49:02 +0000279 p->iFixedOp = v->nOp - 1;
drh9a324642003-09-06 20:12:01 +0000280}
281
drh4611d922010-02-25 14:47:01 +0000282/*
283** Mark the VDBE as one that can only be run one time.
284*/
285void sqlite3VdbeRunOnlyOnce(Vdbe *p){
286 p->runOnlyOnce = 1;
287}
288
drhff738bc2009-09-24 00:09:58 +0000289#ifdef SQLITE_DEBUG /* sqlite3AssertMayAbort() logic */
dan144926d2009-09-09 11:37:20 +0000290
291/*
292** The following type and function are used to iterate through all opcodes
293** in a Vdbe main program and each of the sub-programs (triggers) it may
294** invoke directly or indirectly. It should be used as follows:
295**
296** Op *pOp;
297** VdbeOpIter sIter;
298**
299** memset(&sIter, 0, sizeof(sIter));
300** sIter.v = v; // v is of type Vdbe*
301** while( (pOp = opIterNext(&sIter)) ){
302** // Do something with pOp
303** }
304** sqlite3DbFree(v->db, sIter.apSub);
305**
306*/
307typedef struct VdbeOpIter VdbeOpIter;
308struct VdbeOpIter {
309 Vdbe *v; /* Vdbe to iterate through the opcodes of */
310 SubProgram **apSub; /* Array of subprograms */
311 int nSub; /* Number of entries in apSub */
312 int iAddr; /* Address of next instruction to return */
313 int iSub; /* 0 = main program, 1 = first sub-program etc. */
314};
315static Op *opIterNext(VdbeOpIter *p){
316 Vdbe *v = p->v;
317 Op *pRet = 0;
318 Op *aOp;
319 int nOp;
320
321 if( p->iSub<=p->nSub ){
322
323 if( p->iSub==0 ){
324 aOp = v->aOp;
325 nOp = v->nOp;
326 }else{
327 aOp = p->apSub[p->iSub-1]->aOp;
328 nOp = p->apSub[p->iSub-1]->nOp;
329 }
330 assert( p->iAddr<nOp );
331
332 pRet = &aOp[p->iAddr];
333 p->iAddr++;
334 if( p->iAddr==nOp ){
335 p->iSub++;
336 p->iAddr = 0;
337 }
338
339 if( pRet->p4type==P4_SUBPROGRAM ){
340 int nByte = (p->nSub+1)*sizeof(SubProgram*);
341 int j;
342 for(j=0; j<p->nSub; j++){
343 if( p->apSub[j]==pRet->p4.pProgram ) break;
344 }
345 if( j==p->nSub ){
346 p->apSub = sqlite3DbReallocOrFree(v->db, p->apSub, nByte);
347 if( !p->apSub ){
348 pRet = 0;
349 }else{
350 p->apSub[p->nSub++] = pRet->p4.pProgram;
351 }
352 }
353 }
354 }
355
356 return pRet;
357}
358
359/*
danf3677212009-09-10 16:14:50 +0000360** Check if the program stored in the VM associated with pParse may
drhff738bc2009-09-24 00:09:58 +0000361** throw an ABORT exception (causing the statement, but not entire transaction
dan144926d2009-09-09 11:37:20 +0000362** to be rolled back). This condition is true if the main program or any
363** sub-programs contains any of the following:
364**
365** * OP_Halt with P1=SQLITE_CONSTRAINT and P2=OE_Abort.
366** * OP_HaltIfNull with P1=SQLITE_CONSTRAINT and P2=OE_Abort.
367** * OP_Destroy
368** * OP_VUpdate
369** * OP_VRename
dan32b09f22009-09-23 17:29:59 +0000370** * OP_FkCounter with P2==0 (immediate foreign key constraint)
dan144926d2009-09-09 11:37:20 +0000371**
danf3677212009-09-10 16:14:50 +0000372** Then check that the value of Parse.mayAbort is true if an
373** ABORT may be thrown, or false otherwise. Return true if it does
374** match, or false otherwise. This function is intended to be used as
375** part of an assert statement in the compiler. Similar to:
376**
377** assert( sqlite3VdbeAssertMayAbort(pParse->pVdbe, pParse->mayAbort) );
dan144926d2009-09-09 11:37:20 +0000378*/
danf3677212009-09-10 16:14:50 +0000379int sqlite3VdbeAssertMayAbort(Vdbe *v, int mayAbort){
380 int hasAbort = 0;
dan144926d2009-09-09 11:37:20 +0000381 Op *pOp;
382 VdbeOpIter sIter;
383 memset(&sIter, 0, sizeof(sIter));
384 sIter.v = v;
385
386 while( (pOp = opIterNext(&sIter))!=0 ){
387 int opcode = pOp->opcode;
388 if( opcode==OP_Destroy || opcode==OP_VUpdate || opcode==OP_VRename
dan32b09f22009-09-23 17:29:59 +0000389#ifndef SQLITE_OMIT_FOREIGN_KEY
dan0ff297e2009-09-25 17:03:14 +0000390 || (opcode==OP_FkCounter && pOp->p1==0 && pOp->p2==1)
dan32b09f22009-09-23 17:29:59 +0000391#endif
dan144926d2009-09-09 11:37:20 +0000392 || ((opcode==OP_Halt || opcode==OP_HaltIfNull)
drhd91c1a12013-02-09 13:58:25 +0000393 && ((pOp->p1&0xff)==SQLITE_CONSTRAINT && pOp->p2==OE_Abort))
dan144926d2009-09-09 11:37:20 +0000394 ){
danf3677212009-09-10 16:14:50 +0000395 hasAbort = 1;
dan144926d2009-09-09 11:37:20 +0000396 break;
397 }
398 }
dan144926d2009-09-09 11:37:20 +0000399 sqlite3DbFree(v->db, sIter.apSub);
danf3677212009-09-10 16:14:50 +0000400
mistachkin48864df2013-03-21 21:20:32 +0000401 /* Return true if hasAbort==mayAbort. Or if a malloc failure occurred.
danf3677212009-09-10 16:14:50 +0000402 ** If malloc failed, then the while() loop above may not have iterated
403 ** through all opcodes and hasAbort may be set incorrectly. Return
404 ** true for this case to prevent the assert() in the callers frame
405 ** from failing. */
406 return ( v->db->mallocFailed || hasAbort==mayAbort );
dan144926d2009-09-09 11:37:20 +0000407}
drhff738bc2009-09-24 00:09:58 +0000408#endif /* SQLITE_DEBUG - the sqlite3AssertMayAbort() function */
dan144926d2009-09-09 11:37:20 +0000409
drh9a324642003-09-06 20:12:01 +0000410/*
drh9cbf3422008-01-17 16:22:13 +0000411** Loop through the program looking for P2 values that are negative
412** on jump instructions. Each such value is a label. Resolve the
413** label by setting the P2 value to its correct non-zero value.
drh76ff3a02004-09-24 22:32:30 +0000414**
415** This routine is called once after all opcodes have been inserted.
danielk1977634f2982005-03-28 08:44:07 +0000416**
drh13449892005-09-07 21:22:45 +0000417** Variable *pMaxFuncArgs is set to the maximum value of any P2 argument
danielk1977399918f2006-06-14 13:03:23 +0000418** to an OP_Function, OP_AggStep or OP_VFilter opcode. This is used by
danielk1977634f2982005-03-28 08:44:07 +0000419** sqlite3VdbeMakeReady() to size the Vdbe.apArg[] array.
drha6c2ed92009-11-14 23:22:23 +0000420**
421** The Op.opflags field is set on all opcodes.
drh76ff3a02004-09-24 22:32:30 +0000422*/
drh9cbf3422008-01-17 16:22:13 +0000423static void resolveP2Values(Vdbe *p, int *pMaxFuncArgs){
drh76ff3a02004-09-24 22:32:30 +0000424 int i;
dan165921a2009-08-28 18:53:45 +0000425 int nMaxArgs = *pMaxFuncArgs;
drh76ff3a02004-09-24 22:32:30 +0000426 Op *pOp;
drh73d5b8f2013-12-23 19:09:07 +0000427 Parse *pParse = p->pParse;
428 int *aLabel = pParse->aLabel;
drhad4a4b82008-11-05 16:37:34 +0000429 p->readOnly = 1;
drh1713afb2013-06-28 01:24:57 +0000430 p->bIsReader = 0;
drh76ff3a02004-09-24 22:32:30 +0000431 for(pOp=p->aOp, i=p->nOp-1; i>=0; i--, pOp++){
danielk1977634f2982005-03-28 08:44:07 +0000432 u8 opcode = pOp->opcode;
433
drh8c8a8c42013-08-06 07:45:08 +0000434 /* NOTE: Be sure to update mkopcodeh.awk when adding or removing
435 ** cases from this switch! */
436 switch( opcode ){
437 case OP_Function:
438 case OP_AggStep: {
439 if( pOp->p5>nMaxArgs ) nMaxArgs = pOp->p5;
440 break;
441 }
442 case OP_Transaction: {
443 if( pOp->p2!=0 ) p->readOnly = 0;
444 /* fall thru */
445 }
446 case OP_AutoCommit:
447 case OP_Savepoint: {
448 p->bIsReader = 1;
449 break;
450 }
dand9031542013-07-05 16:54:30 +0000451#ifndef SQLITE_OMIT_WAL
drh8c8a8c42013-08-06 07:45:08 +0000452 case OP_Checkpoint:
drh9e92a472013-06-27 17:40:30 +0000453#endif
drh8c8a8c42013-08-06 07:45:08 +0000454 case OP_Vacuum:
455 case OP_JournalMode: {
456 p->readOnly = 0;
457 p->bIsReader = 1;
458 break;
459 }
danielk1977182c4ba2007-06-27 15:53:34 +0000460#ifndef SQLITE_OMIT_VIRTUALTABLE
drh8c8a8c42013-08-06 07:45:08 +0000461 case OP_VUpdate: {
462 if( pOp->p2>nMaxArgs ) nMaxArgs = pOp->p2;
463 break;
464 }
465 case OP_VFilter: {
466 int n;
467 assert( p->nOp - i >= 3 );
468 assert( pOp[-1].opcode==OP_Integer );
469 n = pOp[-1].p1;
470 if( n>nMaxArgs ) nMaxArgs = n;
471 break;
472 }
danielk1977182c4ba2007-06-27 15:53:34 +0000473#endif
drh8c8a8c42013-08-06 07:45:08 +0000474 case OP_Next:
drhf93cd942013-11-21 03:12:25 +0000475 case OP_NextIfOpen:
drh8c8a8c42013-08-06 07:45:08 +0000476 case OP_SorterNext: {
477 pOp->p4.xAdvance = sqlite3BtreeNext;
478 pOp->p4type = P4_ADVANCE;
479 break;
480 }
drhf93cd942013-11-21 03:12:25 +0000481 case OP_Prev:
482 case OP_PrevIfOpen: {
drh8c8a8c42013-08-06 07:45:08 +0000483 pOp->p4.xAdvance = sqlite3BtreePrevious;
484 pOp->p4type = P4_ADVANCE;
485 break;
486 }
danielk1977bc04f852005-03-29 08:26:13 +0000487 }
danielk1977634f2982005-03-28 08:44:07 +0000488
drh8c8a8c42013-08-06 07:45:08 +0000489 pOp->opflags = sqlite3OpcodeProperty[opcode];
drha6c2ed92009-11-14 23:22:23 +0000490 if( (pOp->opflags & OPFLG_JUMP)!=0 && pOp->p2<0 ){
drh73d5b8f2013-12-23 19:09:07 +0000491 assert( -1-pOp->p2<pParse->nLabel );
drhd2981512008-01-04 19:33:49 +0000492 pOp->p2 = aLabel[-1-pOp->p2];
493 }
drh76ff3a02004-09-24 22:32:30 +0000494 }
drh73d5b8f2013-12-23 19:09:07 +0000495 sqlite3DbFree(p->db, pParse->aLabel);
496 pParse->aLabel = 0;
497 pParse->nLabel = 0;
danielk1977bc04f852005-03-29 08:26:13 +0000498 *pMaxFuncArgs = nMaxArgs;
danc0537fe2013-06-28 19:41:43 +0000499 assert( p->bIsReader!=0 || p->btreeMask==0 );
drh76ff3a02004-09-24 22:32:30 +0000500}
501
502/*
drh9a324642003-09-06 20:12:01 +0000503** Return the address of the next instruction to be inserted.
504*/
danielk19774adee202004-05-08 08:23:19 +0000505int sqlite3VdbeCurrentAddr(Vdbe *p){
drh9a324642003-09-06 20:12:01 +0000506 assert( p->magic==VDBE_MAGIC_INIT );
507 return p->nOp;
508}
509
dan65a7cd12009-09-01 12:16:01 +0000510/*
511** This function returns a pointer to the array of opcodes associated with
512** the Vdbe passed as the first argument. It is the callers responsibility
513** to arrange for the returned array to be eventually freed using the
514** vdbeFreeOpArray() function.
515**
516** Before returning, *pnOp is set to the number of entries in the returned
517** array. Also, *pnMaxArg is set to the larger of its current value and
518** the number of entries in the Vdbe.apArg[] array required to execute the
519** returned program.
520*/
dan165921a2009-08-28 18:53:45 +0000521VdbeOp *sqlite3VdbeTakeOpArray(Vdbe *p, int *pnOp, int *pnMaxArg){
522 VdbeOp *aOp = p->aOp;
dan523a0872009-08-31 05:23:32 +0000523 assert( aOp && !p->db->mallocFailed );
dan65a7cd12009-09-01 12:16:01 +0000524
525 /* Check that sqlite3VdbeUsesBtree() was not called on this VM */
drhbdaec522011-04-04 00:14:43 +0000526 assert( p->btreeMask==0 );
dan65a7cd12009-09-01 12:16:01 +0000527
dan165921a2009-08-28 18:53:45 +0000528 resolveP2Values(p, pnMaxArg);
529 *pnOp = p->nOp;
530 p->aOp = 0;
531 return aOp;
532}
533
drh9a324642003-09-06 20:12:01 +0000534/*
535** Add a whole list of operations to the operation stack. Return the
536** address of the first operation added.
537*/
danielk19774adee202004-05-08 08:23:19 +0000538int sqlite3VdbeAddOpList(Vdbe *p, int nOp, VdbeOpList const *aOp){
drh9a324642003-09-06 20:12:01 +0000539 int addr;
540 assert( p->magic==VDBE_MAGIC_INIT );
drh73d5b8f2013-12-23 19:09:07 +0000541 if( p->nOp + nOp > p->pParse->nOpAlloc && growOpArray(p) ){
drh76ff3a02004-09-24 22:32:30 +0000542 return 0;
drh9a324642003-09-06 20:12:01 +0000543 }
544 addr = p->nOp;
drh7b746032009-06-26 12:15:22 +0000545 if( ALWAYS(nOp>0) ){
drh9a324642003-09-06 20:12:01 +0000546 int i;
drh905793e2004-02-21 13:31:09 +0000547 VdbeOpList const *pIn = aOp;
548 for(i=0; i<nOp; i++, pIn++){
549 int p2 = pIn->p2;
550 VdbeOp *pOut = &p->aOp[i+addr];
551 pOut->opcode = pIn->opcode;
552 pOut->p1 = pIn->p1;
drh4308e342013-11-11 16:55:52 +0000553 if( p2<0 ){
554 assert( sqlite3OpcodeProperty[pOut->opcode] & OPFLG_JUMP );
drh8558cde2008-01-05 05:20:10 +0000555 pOut->p2 = addr + ADDR(p2);
556 }else{
557 pOut->p2 = p2;
558 }
drh24003452008-01-03 01:28:59 +0000559 pOut->p3 = pIn->p3;
560 pOut->p4type = P4_NOTUSED;
561 pOut->p4.p = 0;
562 pOut->p5 = 0;
drhc7379ce2013-10-30 02:28:23 +0000563#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS
drh26c9b5e2008-04-11 14:56:53 +0000564 pOut->zComment = 0;
drhc7379ce2013-10-30 02:28:23 +0000565#endif
566#ifdef SQLITE_DEBUG
drhe0962052013-01-29 19:14:31 +0000567 if( p->db->flags & SQLITE_VdbeAddopTrace ){
danielk19774adee202004-05-08 08:23:19 +0000568 sqlite3VdbePrintOp(0, i+addr, &p->aOp[i+addr]);
drh9a324642003-09-06 20:12:01 +0000569 }
570#endif
571 }
572 p->nOp += nOp;
573 }
574 return addr;
575}
576
577/*
578** Change the value of the P1 operand for a specific instruction.
579** This routine is useful when a large program is loaded from a
danielk19774adee202004-05-08 08:23:19 +0000580** static array using sqlite3VdbeAddOpList but we want to make a
drh9a324642003-09-06 20:12:01 +0000581** few minor changes to the program.
582*/
drh88caeac2011-08-24 15:12:08 +0000583void sqlite3VdbeChangeP1(Vdbe *p, u32 addr, int val){
drh7b746032009-06-26 12:15:22 +0000584 assert( p!=0 );
drh88caeac2011-08-24 15:12:08 +0000585 if( ((u32)p->nOp)>addr ){
drh9a324642003-09-06 20:12:01 +0000586 p->aOp[addr].p1 = val;
587 }
588}
589
590/*
591** Change the value of the P2 operand for a specific instruction.
592** This routine is useful for setting a jump destination.
593*/
drh88caeac2011-08-24 15:12:08 +0000594void sqlite3VdbeChangeP2(Vdbe *p, u32 addr, int val){
drh7b746032009-06-26 12:15:22 +0000595 assert( p!=0 );
drh88caeac2011-08-24 15:12:08 +0000596 if( ((u32)p->nOp)>addr ){
drh9a324642003-09-06 20:12:01 +0000597 p->aOp[addr].p2 = val;
598 }
599}
600
drhd654be82005-09-20 17:42:23 +0000601/*
danielk19771f4aa332008-01-03 09:51:55 +0000602** Change the value of the P3 operand for a specific instruction.
danielk1977207872a2008-01-03 07:54:23 +0000603*/
drh88caeac2011-08-24 15:12:08 +0000604void sqlite3VdbeChangeP3(Vdbe *p, u32 addr, int val){
drh7b746032009-06-26 12:15:22 +0000605 assert( p!=0 );
drh88caeac2011-08-24 15:12:08 +0000606 if( ((u32)p->nOp)>addr ){
danielk1977207872a2008-01-03 07:54:23 +0000607 p->aOp[addr].p3 = val;
608 }
609}
610
611/*
drh35573352008-01-08 23:54:25 +0000612** Change the value of the P5 operand for the most recently
613** added operation.
danielk19771f4aa332008-01-03 09:51:55 +0000614*/
drh35573352008-01-08 23:54:25 +0000615void sqlite3VdbeChangeP5(Vdbe *p, u8 val){
drh7b746032009-06-26 12:15:22 +0000616 assert( p!=0 );
617 if( p->aOp ){
drh35573352008-01-08 23:54:25 +0000618 assert( p->nOp>0 );
619 p->aOp[p->nOp-1].p5 = val;
danielk19771f4aa332008-01-03 09:51:55 +0000620 }
621}
622
623/*
drhf8875402006-03-17 13:56:34 +0000624** Change the P2 operand of instruction addr so that it points to
drhd654be82005-09-20 17:42:23 +0000625** the address of the next instruction to be coded.
626*/
627void sqlite3VdbeJumpHere(Vdbe *p, int addr){
drh61019c72014-01-04 16:49:02 +0000628 sqlite3VdbeChangeP2(p, addr, p->nOp);
629 p->pParse->iFixedOp = p->nOp - 1;
drhd654be82005-09-20 17:42:23 +0000630}
drhb38ad992005-09-16 00:27:01 +0000631
drhb7f6f682006-07-08 17:06:43 +0000632
633/*
634** If the input FuncDef structure is ephemeral, then free it. If
635** the FuncDef is not ephermal, then do nothing.
636*/
drh633e6d52008-07-28 19:34:53 +0000637static void freeEphemeralFunction(sqlite3 *db, FuncDef *pDef){
drhd36e1042013-09-06 13:10:12 +0000638 if( ALWAYS(pDef) && (pDef->funcFlags & SQLITE_FUNC_EPHEM)!=0 ){
drh633e6d52008-07-28 19:34:53 +0000639 sqlite3DbFree(db, pDef);
drhb7f6f682006-07-08 17:06:43 +0000640 }
641}
642
dand46def72010-07-24 11:28:28 +0000643static void vdbeFreeOpArray(sqlite3 *, Op *, int);
644
drhb38ad992005-09-16 00:27:01 +0000645/*
drh66a51672008-01-03 00:01:23 +0000646** Delete a P4 value if necessary.
drhb38ad992005-09-16 00:27:01 +0000647*/
drh633e6d52008-07-28 19:34:53 +0000648static void freeP4(sqlite3 *db, int p4type, void *p4){
drh0acb7e42008-06-25 00:12:41 +0000649 if( p4 ){
dand46def72010-07-24 11:28:28 +0000650 assert( db );
drh66a51672008-01-03 00:01:23 +0000651 switch( p4type ){
652 case P4_REAL:
653 case P4_INT64:
drh66a51672008-01-03 00:01:23 +0000654 case P4_DYNAMIC:
drh2ec2fb22013-11-06 19:59:23 +0000655 case P4_INTARRAY: {
drh633e6d52008-07-28 19:34:53 +0000656 sqlite3DbFree(db, p4);
drhac1733d2005-09-17 17:58:22 +0000657 break;
658 }
drh2ec2fb22013-11-06 19:59:23 +0000659 case P4_KEYINFO: {
660 if( db->pnBytesFreed==0 ) sqlite3KeyInfoUnref((KeyInfo*)p4);
661 break;
662 }
drhb9755982010-07-24 16:34:37 +0000663 case P4_MPRINTF: {
drh7043db92010-07-26 12:38:12 +0000664 if( db->pnBytesFreed==0 ) sqlite3_free(p4);
drhb9755982010-07-24 16:34:37 +0000665 break;
666 }
drh66a51672008-01-03 00:01:23 +0000667 case P4_FUNCDEF: {
drh633e6d52008-07-28 19:34:53 +0000668 freeEphemeralFunction(db, (FuncDef*)p4);
drhb7f6f682006-07-08 17:06:43 +0000669 break;
670 }
drh66a51672008-01-03 00:01:23 +0000671 case P4_MEM: {
drhc176c272010-07-26 13:57:59 +0000672 if( db->pnBytesFreed==0 ){
673 sqlite3ValueFree((sqlite3_value*)p4);
674 }else{
drhf37c68e2010-07-26 14:20:06 +0000675 Mem *p = (Mem*)p4;
676 sqlite3DbFree(db, p->zMalloc);
677 sqlite3DbFree(db, p);
drhc176c272010-07-26 13:57:59 +0000678 }
drhac1733d2005-09-17 17:58:22 +0000679 break;
680 }
danielk1977595a5232009-07-24 17:58:53 +0000681 case P4_VTAB : {
dand46def72010-07-24 11:28:28 +0000682 if( db->pnBytesFreed==0 ) sqlite3VtabUnlock((VTable *)p4);
danielk1977595a5232009-07-24 17:58:53 +0000683 break;
684 }
drhb38ad992005-09-16 00:27:01 +0000685 }
686 }
687}
688
dan65a7cd12009-09-01 12:16:01 +0000689/*
690** Free the space allocated for aOp and any p4 values allocated for the
691** opcodes contained within. If aOp is not NULL it is assumed to contain
692** nOp entries.
693*/
dan165921a2009-08-28 18:53:45 +0000694static void vdbeFreeOpArray(sqlite3 *db, Op *aOp, int nOp){
695 if( aOp ){
696 Op *pOp;
697 for(pOp=aOp; pOp<&aOp[nOp]; pOp++){
698 freeP4(db, pOp->p4type, pOp->p4.p);
drhc7379ce2013-10-30 02:28:23 +0000699#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS
dan165921a2009-08-28 18:53:45 +0000700 sqlite3DbFree(db, pOp->zComment);
701#endif
702 }
703 }
704 sqlite3DbFree(db, aOp);
705}
706
dan65a7cd12009-09-01 12:16:01 +0000707/*
dand19c9332010-07-26 12:05:17 +0000708** Link the SubProgram object passed as the second argument into the linked
709** list at Vdbe.pSubProgram. This list is used to delete all sub-program
710** objects when the VM is no longer required.
dan65a7cd12009-09-01 12:16:01 +0000711*/
dand19c9332010-07-26 12:05:17 +0000712void sqlite3VdbeLinkSubProgram(Vdbe *pVdbe, SubProgram *p){
713 p->pNext = pVdbe->pProgram;
714 pVdbe->pProgram = p;
dan165921a2009-08-28 18:53:45 +0000715}
716
drh9a324642003-09-06 20:12:01 +0000717/*
drh48f2d3b2011-09-16 01:34:43 +0000718** Change the opcode at addr into OP_Noop
drhf8875402006-03-17 13:56:34 +0000719*/
drh48f2d3b2011-09-16 01:34:43 +0000720void sqlite3VdbeChangeToNoop(Vdbe *p, int addr){
drh7b746032009-06-26 12:15:22 +0000721 if( p->aOp ){
danielk197792d4d7a2007-05-04 12:05:56 +0000722 VdbeOp *pOp = &p->aOp[addr];
drh633e6d52008-07-28 19:34:53 +0000723 sqlite3 *db = p->db;
drh48f2d3b2011-09-16 01:34:43 +0000724 freeP4(db, pOp->p4type, pOp->p4.p);
725 memset(pOp, 0, sizeof(pOp[0]));
726 pOp->opcode = OP_Noop;
drh313619f2013-10-31 20:34:06 +0000727 if( addr==p->nOp-1 ) p->nOp--;
drhf8875402006-03-17 13:56:34 +0000728 }
729}
730
731/*
drh762c1c42014-01-02 19:35:30 +0000732** Remove the last opcode inserted
733*/
drh61019c72014-01-04 16:49:02 +0000734int sqlite3VdbeDeletePriorOpcode(Vdbe *p, u8 op){
735 if( (p->nOp-1)>(p->pParse->iFixedOp) && p->aOp[p->nOp-1].opcode==op ){
736 sqlite3VdbeChangeToNoop(p, p->nOp-1);
737 return 1;
738 }else{
739 return 0;
740 }
drh762c1c42014-01-02 19:35:30 +0000741}
742
743/*
drh66a51672008-01-03 00:01:23 +0000744** Change the value of the P4 operand for a specific instruction.
drh9a324642003-09-06 20:12:01 +0000745** This routine is useful when a large program is loaded from a
danielk19774adee202004-05-08 08:23:19 +0000746** static array using sqlite3VdbeAddOpList but we want to make a
drh9a324642003-09-06 20:12:01 +0000747** few minor changes to the program.
748**
drh66a51672008-01-03 00:01:23 +0000749** If n>=0 then the P4 operand is dynamic, meaning that a copy of
drh17435752007-08-16 04:30:38 +0000750** the string is made into memory obtained from sqlite3_malloc().
drh66a51672008-01-03 00:01:23 +0000751** A value of n==0 means copy bytes of zP4 up to and including the
752** first null byte. If n>0 then copy n+1 bytes of zP4.
danielk19771f55c052005-05-19 08:42:59 +0000753**
drh66a51672008-01-03 00:01:23 +0000754** Other values of n (P4_STATIC, P4_COLLSEQ etc.) indicate that zP4 points
danielk19771f55c052005-05-19 08:42:59 +0000755** to a string or structure that is guaranteed to exist for the lifetime of
756** the Vdbe. In these cases we can just copy the pointer.
drh9a324642003-09-06 20:12:01 +0000757**
drh66a51672008-01-03 00:01:23 +0000758** If addr<0 then change P4 on the most recently inserted instruction.
drh9a324642003-09-06 20:12:01 +0000759*/
drh66a51672008-01-03 00:01:23 +0000760void sqlite3VdbeChangeP4(Vdbe *p, int addr, const char *zP4, int n){
drh9a324642003-09-06 20:12:01 +0000761 Op *pOp;
drh633e6d52008-07-28 19:34:53 +0000762 sqlite3 *db;
drh91fd4d42008-01-19 20:11:25 +0000763 assert( p!=0 );
drh633e6d52008-07-28 19:34:53 +0000764 db = p->db;
drh91fd4d42008-01-19 20:11:25 +0000765 assert( p->magic==VDBE_MAGIC_INIT );
drh633e6d52008-07-28 19:34:53 +0000766 if( p->aOp==0 || db->mallocFailed ){
drh2ec2fb22013-11-06 19:59:23 +0000767 if( n!=P4_VTAB ){
drh633e6d52008-07-28 19:34:53 +0000768 freeP4(db, n, (void*)*(char**)&zP4);
danielk1977261919c2005-12-06 12:52:59 +0000769 }
danielk1977d5d56522005-03-16 12:15:20 +0000770 return;
771 }
drh7b746032009-06-26 12:15:22 +0000772 assert( p->nOp>0 );
drh91fd4d42008-01-19 20:11:25 +0000773 assert( addr<p->nOp );
774 if( addr<0 ){
drh9a324642003-09-06 20:12:01 +0000775 addr = p->nOp - 1;
drh9a324642003-09-06 20:12:01 +0000776 }
777 pOp = &p->aOp[addr];
drhfc5e5462012-12-03 17:04:40 +0000778 assert( pOp->p4type==P4_NOTUSED || pOp->p4type==P4_INT32 );
drh633e6d52008-07-28 19:34:53 +0000779 freeP4(db, pOp->p4type, pOp->p4.p);
drh66a51672008-01-03 00:01:23 +0000780 pOp->p4.p = 0;
drh98757152008-01-09 23:04:12 +0000781 if( n==P4_INT32 ){
mlcreech12d40822008-03-06 07:35:21 +0000782 /* Note: this cast is safe, because the origin data point was an int
783 ** that was cast to a (const char *). */
shane1fc41292008-07-08 22:28:48 +0000784 pOp->p4.i = SQLITE_PTR_TO_INT(zP4);
drh8df32842008-12-09 02:51:23 +0000785 pOp->p4type = P4_INT32;
drh98757152008-01-09 23:04:12 +0000786 }else if( zP4==0 ){
drh66a51672008-01-03 00:01:23 +0000787 pOp->p4.p = 0;
788 pOp->p4type = P4_NOTUSED;
789 }else if( n==P4_KEYINFO ){
danielk19772dca4ac2008-01-03 11:50:29 +0000790 pOp->p4.p = (void*)zP4;
drh66a51672008-01-03 00:01:23 +0000791 pOp->p4type = P4_KEYINFO;
danielk1977595a5232009-07-24 17:58:53 +0000792 }else if( n==P4_VTAB ){
793 pOp->p4.p = (void*)zP4;
794 pOp->p4type = P4_VTAB;
795 sqlite3VtabLock((VTable *)zP4);
796 assert( ((VTable *)zP4)->db==p->db );
drh9a324642003-09-06 20:12:01 +0000797 }else if( n<0 ){
danielk19772dca4ac2008-01-03 11:50:29 +0000798 pOp->p4.p = (void*)zP4;
drh8df32842008-12-09 02:51:23 +0000799 pOp->p4type = (signed char)n;
drh9a324642003-09-06 20:12:01 +0000800 }else{
drhea678832008-12-10 19:26:22 +0000801 if( n==0 ) n = sqlite3Strlen30(zP4);
danielk19772dca4ac2008-01-03 11:50:29 +0000802 pOp->p4.z = sqlite3DbStrNDup(p->db, zP4, n);
drh66a51672008-01-03 00:01:23 +0000803 pOp->p4type = P4_DYNAMIC;
drh9a324642003-09-06 20:12:01 +0000804 }
805}
806
drh2ec2fb22013-11-06 19:59:23 +0000807/*
808** Set the P4 on the most recently added opcode to the KeyInfo for the
809** index given.
810*/
811void sqlite3VdbeSetP4KeyInfo(Parse *pParse, Index *pIdx){
812 Vdbe *v = pParse->pVdbe;
813 assert( v!=0 );
814 assert( pIdx!=0 );
815 sqlite3VdbeChangeP4(v, -1, (char*)sqlite3KeyInfoOfIndex(pParse, pIdx),
816 P4_KEYINFO);
817}
818
drhc7379ce2013-10-30 02:28:23 +0000819#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS
drhad6d9462004-09-19 02:15:24 +0000820/*
mistachkind5578432012-08-25 10:01:29 +0000821** Change the comment on the most recently coded instruction. Or
drh16ee60f2008-06-20 18:13:25 +0000822** insert a No-op and add the comment to that new instruction. This
823** makes the code easier to read during debugging. None of this happens
824** in a production build.
drhad6d9462004-09-19 02:15:24 +0000825*/
drhb07028f2011-10-14 21:49:18 +0000826static void vdbeVComment(Vdbe *p, const char *zFormat, va_list ap){
danielk197701256832007-04-18 14:24:32 +0000827 assert( p->nOp>0 || p->aOp==0 );
drhd4e70eb2008-01-02 00:34:36 +0000828 assert( p->aOp==0 || p->aOp[p->nOp-1].zComment==0 || p->db->mallocFailed );
danielk1977dba01372008-01-05 18:44:29 +0000829 if( p->nOp ){
drhb07028f2011-10-14 21:49:18 +0000830 assert( p->aOp );
831 sqlite3DbFree(p->db, p->aOp[p->nOp-1].zComment);
832 p->aOp[p->nOp-1].zComment = sqlite3VMPrintf(p->db, zFormat, ap);
833 }
834}
835void sqlite3VdbeComment(Vdbe *p, const char *zFormat, ...){
836 va_list ap;
837 if( p ){
danielk1977dba01372008-01-05 18:44:29 +0000838 va_start(ap, zFormat);
drhb07028f2011-10-14 21:49:18 +0000839 vdbeVComment(p, zFormat, ap);
danielk1977dba01372008-01-05 18:44:29 +0000840 va_end(ap);
841 }
drhad6d9462004-09-19 02:15:24 +0000842}
drh16ee60f2008-06-20 18:13:25 +0000843void sqlite3VdbeNoopComment(Vdbe *p, const char *zFormat, ...){
844 va_list ap;
drhb07028f2011-10-14 21:49:18 +0000845 if( p ){
846 sqlite3VdbeAddOp0(p, OP_Noop);
drh16ee60f2008-06-20 18:13:25 +0000847 va_start(ap, zFormat);
drhb07028f2011-10-14 21:49:18 +0000848 vdbeVComment(p, zFormat, ap);
drh16ee60f2008-06-20 18:13:25 +0000849 va_end(ap);
850 }
851}
852#endif /* NDEBUG */
drhad6d9462004-09-19 02:15:24 +0000853
drh9a324642003-09-06 20:12:01 +0000854/*
drh20411ea2009-05-29 19:00:12 +0000855** Return the opcode for a given address. If the address is -1, then
856** return the most recently inserted opcode.
857**
858** If a memory allocation error has occurred prior to the calling of this
859** routine, then a pointer to a dummy VdbeOp will be returned. That opcode
drhf83dc1e2010-06-03 12:09:52 +0000860** is readable but not writable, though it is cast to a writable value.
861** The return of a dummy opcode allows the call to continue functioning
862** after a OOM fault without having to check to see if the return from
863** this routine is a valid pointer. But because the dummy.opcode is 0,
864** dummy will never be written to. This is verified by code inspection and
865** by running with Valgrind.
drh37b89a02009-06-19 00:33:31 +0000866**
867** About the #ifdef SQLITE_OMIT_TRACE: Normally, this routine is never called
868** unless p->nOp>0. This is because in the absense of SQLITE_OMIT_TRACE,
869** an OP_Trace instruction is always inserted by sqlite3VdbeGet() as soon as
870** a new VDBE is created. So we are free to set addr to p->nOp-1 without
871** having to double-check to make sure that the result is non-negative. But
872** if SQLITE_OMIT_TRACE is defined, the OP_Trace is omitted and we do need to
873** check the value of p->nOp-1 before continuing.
drh9a324642003-09-06 20:12:01 +0000874*/
danielk19774adee202004-05-08 08:23:19 +0000875VdbeOp *sqlite3VdbeGetOp(Vdbe *p, int addr){
drha0b75da2010-07-02 18:44:37 +0000876 /* C89 specifies that the constant "dummy" will be initialized to all
877 ** zeros, which is correct. MSVC generates a warning, nevertheless. */
mistachkin0fe5f952011-09-14 18:19:08 +0000878 static VdbeOp dummy; /* Ignore the MSVC warning about no initializer */
drh9a324642003-09-06 20:12:01 +0000879 assert( p->magic==VDBE_MAGIC_INIT );
drh37b89a02009-06-19 00:33:31 +0000880 if( addr<0 ){
881#ifdef SQLITE_OMIT_TRACE
drhf83dc1e2010-06-03 12:09:52 +0000882 if( p->nOp==0 ) return (VdbeOp*)&dummy;
drh37b89a02009-06-19 00:33:31 +0000883#endif
884 addr = p->nOp - 1;
885 }
drh17435752007-08-16 04:30:38 +0000886 assert( (addr>=0 && addr<p->nOp) || p->db->mallocFailed );
drh20411ea2009-05-29 19:00:12 +0000887 if( p->db->mallocFailed ){
drhf83dc1e2010-06-03 12:09:52 +0000888 return (VdbeOp*)&dummy;
drh20411ea2009-05-29 19:00:12 +0000889 }else{
890 return &p->aOp[addr];
891 }
drh9a324642003-09-06 20:12:01 +0000892}
893
drhc7379ce2013-10-30 02:28:23 +0000894#if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS)
drh81316f82013-10-29 20:40:47 +0000895/*
drhf63552b2013-10-30 00:25:03 +0000896** Return an integer value for one of the parameters to the opcode pOp
897** determined by character c.
898*/
899static int translateP(char c, const Op *pOp){
900 if( c=='1' ) return pOp->p1;
901 if( c=='2' ) return pOp->p2;
902 if( c=='3' ) return pOp->p3;
903 if( c=='4' ) return pOp->p4.i;
904 return pOp->p5;
905}
906
drh81316f82013-10-29 20:40:47 +0000907/*
drh4eded602013-12-20 15:59:20 +0000908** Compute a string for the "comment" field of a VDBE opcode listing.
909**
910** The Synopsis: field in comments in the vdbe.c source file gets converted
911** to an extra string that is appended to the sqlite3OpcodeName(). In the
912** absence of other comments, this synopsis becomes the comment on the opcode.
913** Some translation occurs:
914**
915** "PX" -> "r[X]"
916** "PX@PY" -> "r[X..X+Y-1]" or "r[x]" if y is 0 or 1
917** "PX@PY+1" -> "r[X..X+Y]" or "r[x]" if y is 0
918** "PY..PY" -> "r[X..Y]" or "r[x]" if y<=x
drh81316f82013-10-29 20:40:47 +0000919*/
drhf63552b2013-10-30 00:25:03 +0000920static int displayComment(
921 const Op *pOp, /* The opcode to be commented */
922 const char *zP4, /* Previously obtained value for P4 */
923 char *zTemp, /* Write result here */
924 int nTemp /* Space available in zTemp[] */
925){
drh81316f82013-10-29 20:40:47 +0000926 const char *zOpName;
927 const char *zSynopsis;
928 int nOpName;
929 int ii, jj;
930 zOpName = sqlite3OpcodeName(pOp->opcode);
931 nOpName = sqlite3Strlen30(zOpName);
932 if( zOpName[nOpName+1] ){
933 int seenCom = 0;
drhf63552b2013-10-30 00:25:03 +0000934 char c;
drh81316f82013-10-29 20:40:47 +0000935 zSynopsis = zOpName += nOpName + 1;
drhf63552b2013-10-30 00:25:03 +0000936 for(ii=jj=0; jj<nTemp-1 && (c = zSynopsis[ii])!=0; ii++){
937 if( c=='P' ){
938 c = zSynopsis[++ii];
939 if( c=='4' ){
940 sqlite3_snprintf(nTemp-jj, zTemp+jj, "%s", zP4);
941 }else if( c=='X' ){
942 sqlite3_snprintf(nTemp-jj, zTemp+jj, "%s", pOp->zComment);
943 seenCom = 1;
drh81316f82013-10-29 20:40:47 +0000944 }else{
drhf63552b2013-10-30 00:25:03 +0000945 int v1 = translateP(c, pOp);
946 int v2;
947 sqlite3_snprintf(nTemp-jj, zTemp+jj, "%d", v1);
948 if( strncmp(zSynopsis+ii+1, "@P", 2)==0 ){
949 ii += 3;
950 jj += sqlite3Strlen30(zTemp+jj);
951 v2 = translateP(zSynopsis[ii], pOp);
drh4eded602013-12-20 15:59:20 +0000952 if( strncmp(zSynopsis+ii+1,"+1",2)==0 ){
953 ii += 2;
954 v2++;
955 }
956 if( v2>1 ){
957 sqlite3_snprintf(nTemp-jj, zTemp+jj, "..%d", v1+v2-1);
958 }
drhf63552b2013-10-30 00:25:03 +0000959 }else if( strncmp(zSynopsis+ii+1, "..P3", 4)==0 && pOp->p3==0 ){
960 ii += 4;
961 }
drh81316f82013-10-29 20:40:47 +0000962 }
963 jj += sqlite3Strlen30(zTemp+jj);
964 }else{
drhf63552b2013-10-30 00:25:03 +0000965 zTemp[jj++] = c;
drh81316f82013-10-29 20:40:47 +0000966 }
967 }
968 if( !seenCom && jj<nTemp-5 && pOp->zComment ){
969 sqlite3_snprintf(nTemp-jj, zTemp+jj, "; %s", pOp->zComment);
970 jj += sqlite3Strlen30(zTemp+jj);
971 }
972 if( jj<nTemp ) zTemp[jj] = 0;
973 }else if( pOp->zComment ){
974 sqlite3_snprintf(nTemp, zTemp, "%s", pOp->zComment);
975 jj = sqlite3Strlen30(zTemp);
976 }else{
977 zTemp[0] = 0;
978 jj = 0;
979 }
980 return jj;
981}
982#endif /* SQLITE_DEBUG */
983
984
drhb7f91642004-10-31 02:22:47 +0000985#if !defined(SQLITE_OMIT_EXPLAIN) || !defined(NDEBUG) \
986 || defined(VDBE_PROFILE) || defined(SQLITE_DEBUG)
drh9a324642003-09-06 20:12:01 +0000987/*
drh66a51672008-01-03 00:01:23 +0000988** Compute a string that describes the P4 parameter for an opcode.
drhd3d39e92004-05-20 22:16:29 +0000989** Use zTemp for any required temporary buffer space.
990*/
drh66a51672008-01-03 00:01:23 +0000991static char *displayP4(Op *pOp, char *zTemp, int nTemp){
992 char *zP4 = zTemp;
drhd3d39e92004-05-20 22:16:29 +0000993 assert( nTemp>=20 );
drh66a51672008-01-03 00:01:23 +0000994 switch( pOp->p4type ){
995 case P4_KEYINFO: {
drhd3d39e92004-05-20 22:16:29 +0000996 int i, j;
danielk19772dca4ac2008-01-03 11:50:29 +0000997 KeyInfo *pKeyInfo = pOp->p4.pKeyInfo;
drhe1a022e2012-09-17 17:16:53 +0000998 assert( pKeyInfo->aSortOrder!=0 );
drh5b843aa2013-10-30 13:46:01 +0000999 sqlite3_snprintf(nTemp, zTemp, "k(%d", pKeyInfo->nField);
drhea678832008-12-10 19:26:22 +00001000 i = sqlite3Strlen30(zTemp);
drhd3d39e92004-05-20 22:16:29 +00001001 for(j=0; j<pKeyInfo->nField; j++){
1002 CollSeq *pColl = pKeyInfo->aColl[j];
drh261d8a52012-12-08 21:36:26 +00001003 const char *zColl = pColl ? pColl->zName : "nil";
1004 int n = sqlite3Strlen30(zColl);
drh5b843aa2013-10-30 13:46:01 +00001005 if( n==6 && memcmp(zColl,"BINARY",6)==0 ){
1006 zColl = "B";
1007 n = 1;
1008 }
drh261d8a52012-12-08 21:36:26 +00001009 if( i+n>nTemp-6 ){
1010 memcpy(&zTemp[i],",...",4);
1011 break;
drhd3d39e92004-05-20 22:16:29 +00001012 }
drh261d8a52012-12-08 21:36:26 +00001013 zTemp[i++] = ',';
1014 if( pKeyInfo->aSortOrder[j] ){
1015 zTemp[i++] = '-';
1016 }
1017 memcpy(&zTemp[i], zColl, n+1);
1018 i += n;
drhd3d39e92004-05-20 22:16:29 +00001019 }
1020 zTemp[i++] = ')';
1021 zTemp[i] = 0;
1022 assert( i<nTemp );
drhd3d39e92004-05-20 22:16:29 +00001023 break;
1024 }
drh66a51672008-01-03 00:01:23 +00001025 case P4_COLLSEQ: {
danielk19772dca4ac2008-01-03 11:50:29 +00001026 CollSeq *pColl = pOp->p4.pColl;
drh5e6790c2013-11-12 20:18:14 +00001027 sqlite3_snprintf(nTemp, zTemp, "(%.20s)", pColl->zName);
drhd3d39e92004-05-20 22:16:29 +00001028 break;
1029 }
drh66a51672008-01-03 00:01:23 +00001030 case P4_FUNCDEF: {
danielk19772dca4ac2008-01-03 11:50:29 +00001031 FuncDef *pDef = pOp->p4.pFunc;
drha967e882006-06-13 01:04:52 +00001032 sqlite3_snprintf(nTemp, zTemp, "%s(%d)", pDef->zName, pDef->nArg);
drhf9b596e2004-05-26 16:54:42 +00001033 break;
1034 }
drh66a51672008-01-03 00:01:23 +00001035 case P4_INT64: {
danielk19772dca4ac2008-01-03 11:50:29 +00001036 sqlite3_snprintf(nTemp, zTemp, "%lld", *pOp->p4.pI64);
drhd4e70eb2008-01-02 00:34:36 +00001037 break;
1038 }
drh66a51672008-01-03 00:01:23 +00001039 case P4_INT32: {
1040 sqlite3_snprintf(nTemp, zTemp, "%d", pOp->p4.i);
drh598f1342007-10-23 15:39:45 +00001041 break;
1042 }
drh66a51672008-01-03 00:01:23 +00001043 case P4_REAL: {
danielk19772dca4ac2008-01-03 11:50:29 +00001044 sqlite3_snprintf(nTemp, zTemp, "%.16g", *pOp->p4.pReal);
drhd4e70eb2008-01-02 00:34:36 +00001045 break;
1046 }
drh66a51672008-01-03 00:01:23 +00001047 case P4_MEM: {
danielk19772dca4ac2008-01-03 11:50:29 +00001048 Mem *pMem = pOp->p4.pMem;
drhd4e70eb2008-01-02 00:34:36 +00001049 if( pMem->flags & MEM_Str ){
drh66a51672008-01-03 00:01:23 +00001050 zP4 = pMem->z;
drhd4e70eb2008-01-02 00:34:36 +00001051 }else if( pMem->flags & MEM_Int ){
1052 sqlite3_snprintf(nTemp, zTemp, "%lld", pMem->u.i);
1053 }else if( pMem->flags & MEM_Real ){
1054 sqlite3_snprintf(nTemp, zTemp, "%.16g", pMem->r);
drhb8475df2011-12-09 16:21:19 +00001055 }else if( pMem->flags & MEM_Null ){
1056 sqlite3_snprintf(nTemp, zTemp, "NULL");
drh56016892009-08-25 14:24:04 +00001057 }else{
1058 assert( pMem->flags & MEM_Blob );
1059 zP4 = "(blob)";
drhd4e70eb2008-01-02 00:34:36 +00001060 }
drh598f1342007-10-23 15:39:45 +00001061 break;
1062 }
drha967e882006-06-13 01:04:52 +00001063#ifndef SQLITE_OMIT_VIRTUALTABLE
drh66a51672008-01-03 00:01:23 +00001064 case P4_VTAB: {
danielk1977595a5232009-07-24 17:58:53 +00001065 sqlite3_vtab *pVtab = pOp->p4.pVtab->pVtab;
drh19146192006-06-26 19:10:32 +00001066 sqlite3_snprintf(nTemp, zTemp, "vtab:%p:%p", pVtab, pVtab->pModule);
drha967e882006-06-13 01:04:52 +00001067 break;
1068 }
1069#endif
drh0acb7e42008-06-25 00:12:41 +00001070 case P4_INTARRAY: {
1071 sqlite3_snprintf(nTemp, zTemp, "intarray");
1072 break;
1073 }
dan165921a2009-08-28 18:53:45 +00001074 case P4_SUBPROGRAM: {
1075 sqlite3_snprintf(nTemp, zTemp, "program");
1076 break;
1077 }
drh4a6f3aa2011-08-28 00:19:26 +00001078 case P4_ADVANCE: {
1079 zTemp[0] = 0;
1080 break;
1081 }
drhd3d39e92004-05-20 22:16:29 +00001082 default: {
danielk19772dca4ac2008-01-03 11:50:29 +00001083 zP4 = pOp->p4.z;
drh949f9cd2008-01-12 21:35:57 +00001084 if( zP4==0 ){
drh66a51672008-01-03 00:01:23 +00001085 zP4 = zTemp;
drhd4e70eb2008-01-02 00:34:36 +00001086 zTemp[0] = 0;
drhd3d39e92004-05-20 22:16:29 +00001087 }
1088 }
1089 }
drh66a51672008-01-03 00:01:23 +00001090 assert( zP4!=0 );
drh66a51672008-01-03 00:01:23 +00001091 return zP4;
drhd3d39e92004-05-20 22:16:29 +00001092}
drhb7f91642004-10-31 02:22:47 +00001093#endif
drhd3d39e92004-05-20 22:16:29 +00001094
drh900b31e2007-08-28 02:27:51 +00001095/*
drhd0679ed2007-08-28 22:24:34 +00001096** Declare to the Vdbe that the BTree object at db->aDb[i] is used.
drh3ebaee92010-05-06 21:37:22 +00001097**
drhbdaec522011-04-04 00:14:43 +00001098** The prepared statements need to know in advance the complete set of
drhe4c88c02012-01-04 12:57:45 +00001099** attached databases that will be use. A mask of these databases
1100** is maintained in p->btreeMask. The p->lockMask value is the subset of
1101** p->btreeMask of databases that will require a lock.
drh900b31e2007-08-28 02:27:51 +00001102*/
drhfb982642007-08-30 01:19:59 +00001103void sqlite3VdbeUsesBtree(Vdbe *p, int i){
drhfcd71b62011-04-05 22:08:24 +00001104 assert( i>=0 && i<p->db->nDb && i<(int)sizeof(yDbMask)*8 );
danielk197700e13612008-11-17 19:18:54 +00001105 assert( i<(int)sizeof(p->btreeMask)*8 );
drhbdaec522011-04-04 00:14:43 +00001106 p->btreeMask |= ((yDbMask)1)<<i;
drhdc5b0472011-04-06 22:05:53 +00001107 if( i!=1 && sqlite3BtreeSharable(p->db->aDb[i].pBt) ){
1108 p->lockMask |= ((yDbMask)1)<<i;
1109 }
drh900b31e2007-08-28 02:27:51 +00001110}
1111
drhe54e0512011-04-05 17:31:56 +00001112#if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE>0
drhbdaec522011-04-04 00:14:43 +00001113/*
1114** If SQLite is compiled to support shared-cache mode and to be threadsafe,
1115** this routine obtains the mutex associated with each BtShared structure
1116** that may be accessed by the VM passed as an argument. In doing so it also
1117** sets the BtShared.db member of each of the BtShared structures, ensuring
1118** that the correct busy-handler callback is invoked if required.
1119**
1120** If SQLite is not threadsafe but does support shared-cache mode, then
1121** sqlite3BtreeEnter() is invoked to set the BtShared.db variables
1122** of all of BtShared structures accessible via the database handle
1123** associated with the VM.
1124**
1125** If SQLite is not threadsafe and does not support shared-cache mode, this
1126** function is a no-op.
1127**
1128** The p->btreeMask field is a bitmask of all btrees that the prepared
1129** statement p will ever use. Let N be the number of bits in p->btreeMask
1130** corresponding to btrees that use shared cache. Then the runtime of
1131** this routine is N*N. But as N is rarely more than 1, this should not
1132** be a problem.
1133*/
1134void sqlite3VdbeEnter(Vdbe *p){
drhbdaec522011-04-04 00:14:43 +00001135 int i;
1136 yDbMask mask;
drhdc5b0472011-04-06 22:05:53 +00001137 sqlite3 *db;
1138 Db *aDb;
1139 int nDb;
1140 if( p->lockMask==0 ) return; /* The common case */
1141 db = p->db;
1142 aDb = db->aDb;
1143 nDb = db->nDb;
drhbdaec522011-04-04 00:14:43 +00001144 for(i=0, mask=1; i<nDb; i++, mask += mask){
drhdc5b0472011-04-06 22:05:53 +00001145 if( i!=1 && (mask & p->lockMask)!=0 && ALWAYS(aDb[i].pBt!=0) ){
drhbdaec522011-04-04 00:14:43 +00001146 sqlite3BtreeEnter(aDb[i].pBt);
1147 }
1148 }
drhbdaec522011-04-04 00:14:43 +00001149}
drhe54e0512011-04-05 17:31:56 +00001150#endif
drhbdaec522011-04-04 00:14:43 +00001151
drhe54e0512011-04-05 17:31:56 +00001152#if !defined(SQLITE_OMIT_SHARED_CACHE) && SQLITE_THREADSAFE>0
drhbdaec522011-04-04 00:14:43 +00001153/*
1154** Unlock all of the btrees previously locked by a call to sqlite3VdbeEnter().
1155*/
1156void sqlite3VdbeLeave(Vdbe *p){
drhbdaec522011-04-04 00:14:43 +00001157 int i;
1158 yDbMask mask;
drhdc5b0472011-04-06 22:05:53 +00001159 sqlite3 *db;
1160 Db *aDb;
1161 int nDb;
1162 if( p->lockMask==0 ) return; /* The common case */
1163 db = p->db;
1164 aDb = db->aDb;
1165 nDb = db->nDb;
drhbdaec522011-04-04 00:14:43 +00001166 for(i=0, mask=1; i<nDb; i++, mask += mask){
drhdc5b0472011-04-06 22:05:53 +00001167 if( i!=1 && (mask & p->lockMask)!=0 && ALWAYS(aDb[i].pBt!=0) ){
drhbdaec522011-04-04 00:14:43 +00001168 sqlite3BtreeLeave(aDb[i].pBt);
1169 }
1170 }
drhbdaec522011-04-04 00:14:43 +00001171}
drhbdaec522011-04-04 00:14:43 +00001172#endif
drhd3d39e92004-05-20 22:16:29 +00001173
danielk19778b60e0f2005-01-12 09:10:39 +00001174#if defined(VDBE_PROFILE) || defined(SQLITE_DEBUG)
drh9a324642003-09-06 20:12:01 +00001175/*
1176** Print a single opcode. This routine is used for debugging only.
1177*/
danielk19774adee202004-05-08 08:23:19 +00001178void sqlite3VdbePrintOp(FILE *pOut, int pc, Op *pOp){
drh66a51672008-01-03 00:01:23 +00001179 char *zP4;
drhd3d39e92004-05-20 22:16:29 +00001180 char zPtr[50];
drh81316f82013-10-29 20:40:47 +00001181 char zCom[100];
drh26198bb2013-10-31 11:15:09 +00001182 static const char *zFormat1 = "%4d %-13s %4d %4d %4d %-13s %.2X %s\n";
drh9a324642003-09-06 20:12:01 +00001183 if( pOut==0 ) pOut = stdout;
drh66a51672008-01-03 00:01:23 +00001184 zP4 = displayP4(pOp, zPtr, sizeof(zPtr));
drhc7379ce2013-10-30 02:28:23 +00001185#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS
drh81316f82013-10-29 20:40:47 +00001186 displayComment(pOp, zP4, zCom, sizeof(zCom));
1187#else
1188 zCom[0] = 0
1189#endif
drh4eded602013-12-20 15:59:20 +00001190 /* NB: The sqlite3OpcodeName() function is implemented by code created
1191 ** by the mkopcodeh.awk and mkopcodec.awk scripts which extract the
1192 ** information from the vdbe.c source text */
danielk197711641c12008-01-03 08:18:30 +00001193 fprintf(pOut, zFormat1, pc,
drh1db639c2008-01-17 02:36:28 +00001194 sqlite3OpcodeName(pOp->opcode), pOp->p1, pOp->p2, pOp->p3, zP4, pOp->p5,
drh81316f82013-10-29 20:40:47 +00001195 zCom
drh1db639c2008-01-17 02:36:28 +00001196 );
drh9a324642003-09-06 20:12:01 +00001197 fflush(pOut);
1198}
1199#endif
1200
1201/*
drh76ff3a02004-09-24 22:32:30 +00001202** Release an array of N Mem elements
1203*/
drhc890fec2008-08-01 20:10:08 +00001204static void releaseMemArray(Mem *p, int N){
danielk1977a7a8e142008-02-13 18:25:27 +00001205 if( p && N ){
danielk1977e972e032008-09-19 18:32:26 +00001206 Mem *pEnd;
danielk1977a7a8e142008-02-13 18:25:27 +00001207 sqlite3 *db = p->db;
drh8df32842008-12-09 02:51:23 +00001208 u8 malloc_failed = db->mallocFailed;
dand46def72010-07-24 11:28:28 +00001209 if( db->pnBytesFreed ){
1210 for(pEnd=&p[N]; p<pEnd; p++){
1211 sqlite3DbFree(db, p->zMalloc);
1212 }
drhc176c272010-07-26 13:57:59 +00001213 return;
1214 }
danielk1977e972e032008-09-19 18:32:26 +00001215 for(pEnd=&p[N]; p<pEnd; p++){
1216 assert( (&p[1])==pEnd || p[0].db==p[1].db );
1217
1218 /* This block is really an inlined version of sqlite3VdbeMemRelease()
1219 ** that takes advantage of the fact that the memory cell value is
1220 ** being set to NULL after releasing any dynamic resources.
1221 **
1222 ** The justification for duplicating code is that according to
1223 ** callgrind, this causes a certain test case to hit the CPU 4.7
1224 ** percent less (x86 linux, gcc version 4.1.2, -O6) than if
1225 ** sqlite3MemRelease() were called from here. With -O2, this jumps
1226 ** to 6.6 percent. The test case is inserting 1000 rows into a table
1227 ** with no indexes using a single prepared INSERT statement, bind()
1228 ** and reset(). Inserts are grouped into a transaction.
1229 */
dan165921a2009-08-28 18:53:45 +00001230 if( p->flags&(MEM_Agg|MEM_Dyn|MEM_Frame|MEM_RowSet) ){
danielk1977e972e032008-09-19 18:32:26 +00001231 sqlite3VdbeMemRelease(p);
1232 }else if( p->zMalloc ){
1233 sqlite3DbFree(db, p->zMalloc);
1234 p->zMalloc = 0;
1235 }
1236
drhb8475df2011-12-09 16:21:19 +00001237 p->flags = MEM_Invalid;
drh76ff3a02004-09-24 22:32:30 +00001238 }
danielk1977a7a8e142008-02-13 18:25:27 +00001239 db->mallocFailed = malloc_failed;
drh76ff3a02004-09-24 22:32:30 +00001240 }
1241}
1242
dan65a7cd12009-09-01 12:16:01 +00001243/*
1244** Delete a VdbeFrame object and its contents. VdbeFrame objects are
1245** allocated by the OP_Program opcode in sqlite3VdbeExec().
1246*/
dan165921a2009-08-28 18:53:45 +00001247void sqlite3VdbeFrameDelete(VdbeFrame *p){
1248 int i;
1249 Mem *aMem = VdbeFrameMem(p);
1250 VdbeCursor **apCsr = (VdbeCursor **)&aMem[p->nChildMem];
1251 for(i=0; i<p->nChildCsr; i++){
1252 sqlite3VdbeFreeCursor(p->v, apCsr[i]);
1253 }
1254 releaseMemArray(aMem, p->nChildMem);
1255 sqlite3DbFree(p->v->db, p);
1256}
1257
drhb7f91642004-10-31 02:22:47 +00001258#ifndef SQLITE_OMIT_EXPLAIN
drh76ff3a02004-09-24 22:32:30 +00001259/*
drh9a324642003-09-06 20:12:01 +00001260** Give a listing of the program in the virtual machine.
1261**
danielk19774adee202004-05-08 08:23:19 +00001262** The interface is the same as sqlite3VdbeExec(). But instead of
drh9a324642003-09-06 20:12:01 +00001263** running the code, it invokes the callback once for each instruction.
1264** This feature is used to implement "EXPLAIN".
drh9cbf3422008-01-17 16:22:13 +00001265**
1266** When p->explain==1, each instruction is listed. When
1267** p->explain==2, only OP_Explain instructions are listed and these
1268** are shown in a different format. p->explain==2 is used to implement
1269** EXPLAIN QUERY PLAN.
drh5cfa5842009-12-31 20:35:08 +00001270**
1271** When p->explain==1, first the main program is listed, then each of
1272** the trigger subprograms are listed one by one.
drh9a324642003-09-06 20:12:01 +00001273*/
danielk19774adee202004-05-08 08:23:19 +00001274int sqlite3VdbeList(
drh9a324642003-09-06 20:12:01 +00001275 Vdbe *p /* The VDBE */
1276){
drh5cfa5842009-12-31 20:35:08 +00001277 int nRow; /* Stop when row count reaches this */
dan165921a2009-08-28 18:53:45 +00001278 int nSub = 0; /* Number of sub-vdbes seen so far */
1279 SubProgram **apSub = 0; /* Array of sub-vdbes */
drh5cfa5842009-12-31 20:35:08 +00001280 Mem *pSub = 0; /* Memory cell hold array of subprogs */
1281 sqlite3 *db = p->db; /* The database connection */
1282 int i; /* Loop counter */
1283 int rc = SQLITE_OK; /* Return code */
drh9734e6e2011-10-07 18:24:25 +00001284 Mem *pMem = &p->aMem[1]; /* First Mem of result set */
drh9a324642003-09-06 20:12:01 +00001285
drh9a324642003-09-06 20:12:01 +00001286 assert( p->explain );
drh5f82e3c2009-07-06 00:44:08 +00001287 assert( p->magic==VDBE_MAGIC_RUN );
danielk19776c359f02008-11-21 16:58:03 +00001288 assert( p->rc==SQLITE_OK || p->rc==SQLITE_BUSY || p->rc==SQLITE_NOMEM );
danielk197718f41892004-05-22 07:27:46 +00001289
drh9cbf3422008-01-17 16:22:13 +00001290 /* Even though this opcode does not use dynamic strings for
1291 ** the result, result columns may become dynamic if the user calls
drh4f26d6c2004-05-26 23:25:30 +00001292 ** sqlite3_column_text16(), causing a translation to UTF-16 encoding.
danielk197718f41892004-05-22 07:27:46 +00001293 */
dan165921a2009-08-28 18:53:45 +00001294 releaseMemArray(pMem, 8);
drh9734e6e2011-10-07 18:24:25 +00001295 p->pResultSet = 0;
danielk197718f41892004-05-22 07:27:46 +00001296
danielk19776c359f02008-11-21 16:58:03 +00001297 if( p->rc==SQLITE_NOMEM ){
1298 /* This happens if a malloc() inside a call to sqlite3_column_text() or
1299 ** sqlite3_column_text16() failed. */
1300 db->mallocFailed = 1;
1301 return SQLITE_ERROR;
1302 }
1303
drh5cfa5842009-12-31 20:35:08 +00001304 /* When the number of output rows reaches nRow, that means the
1305 ** listing has finished and sqlite3_step() should return SQLITE_DONE.
1306 ** nRow is the sum of the number of rows in the main program, plus
1307 ** the sum of the number of rows in all trigger subprograms encountered
1308 ** so far. The nRow value will increase as new trigger subprograms are
1309 ** encountered, but p->pc will eventually catch up to nRow.
1310 */
dan165921a2009-08-28 18:53:45 +00001311 nRow = p->nOp;
1312 if( p->explain==1 ){
drh5cfa5842009-12-31 20:35:08 +00001313 /* The first 8 memory cells are used for the result set. So we will
1314 ** commandeer the 9th cell to use as storage for an array of pointers
1315 ** to trigger subprograms. The VDBE is guaranteed to have at least 9
1316 ** cells. */
1317 assert( p->nMem>9 );
dan165921a2009-08-28 18:53:45 +00001318 pSub = &p->aMem[9];
1319 if( pSub->flags&MEM_Blob ){
drh5cfa5842009-12-31 20:35:08 +00001320 /* On the first call to sqlite3_step(), pSub will hold a NULL. It is
1321 ** initialized to a BLOB by the P4_SUBPROGRAM processing logic below */
dan165921a2009-08-28 18:53:45 +00001322 nSub = pSub->n/sizeof(Vdbe*);
1323 apSub = (SubProgram **)pSub->z;
1324 }
1325 for(i=0; i<nSub; i++){
1326 nRow += apSub[i]->nOp;
1327 }
1328 }
1329
drhecc92422005-09-10 16:46:12 +00001330 do{
1331 i = p->pc++;
dan165921a2009-08-28 18:53:45 +00001332 }while( i<nRow && p->explain==2 && p->aOp[i].opcode!=OP_Explain );
1333 if( i>=nRow ){
drh826fb5a2004-02-14 23:59:57 +00001334 p->rc = SQLITE_OK;
1335 rc = SQLITE_DONE;
drh881feaa2006-07-26 01:39:30 +00001336 }else if( db->u1.isInterrupted ){
drhc5cdca62005-01-11 16:54:14 +00001337 p->rc = SQLITE_INTERRUPT;
drh826fb5a2004-02-14 23:59:57 +00001338 rc = SQLITE_ERROR;
drhf089aa42008-07-08 19:34:06 +00001339 sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3ErrStr(p->rc));
drh826fb5a2004-02-14 23:59:57 +00001340 }else{
drh81316f82013-10-29 20:40:47 +00001341 char *zP4;
dan165921a2009-08-28 18:53:45 +00001342 Op *pOp;
1343 if( i<p->nOp ){
drh5cfa5842009-12-31 20:35:08 +00001344 /* The output line number is small enough that we are still in the
1345 ** main program. */
dan165921a2009-08-28 18:53:45 +00001346 pOp = &p->aOp[i];
1347 }else{
drh5cfa5842009-12-31 20:35:08 +00001348 /* We are currently listing subprograms. Figure out which one and
1349 ** pick up the appropriate opcode. */
dan165921a2009-08-28 18:53:45 +00001350 int j;
1351 i -= p->nOp;
1352 for(j=0; i>=apSub[j]->nOp; j++){
1353 i -= apSub[j]->nOp;
1354 }
1355 pOp = &apSub[j]->aOp[i];
1356 }
danielk19770d78bae2008-01-03 07:09:48 +00001357 if( p->explain==1 ){
1358 pMem->flags = MEM_Int;
1359 pMem->type = SQLITE_INTEGER;
1360 pMem->u.i = i; /* Program counter */
1361 pMem++;
1362
1363 pMem->flags = MEM_Static|MEM_Str|MEM_Term;
drh81316f82013-10-29 20:40:47 +00001364 pMem->z = (char*)sqlite3OpcodeName(pOp->opcode); /* Opcode */
danielk19770d78bae2008-01-03 07:09:48 +00001365 assert( pMem->z!=0 );
drhea678832008-12-10 19:26:22 +00001366 pMem->n = sqlite3Strlen30(pMem->z);
danielk19770d78bae2008-01-03 07:09:48 +00001367 pMem->type = SQLITE_TEXT;
1368 pMem->enc = SQLITE_UTF8;
1369 pMem++;
dan165921a2009-08-28 18:53:45 +00001370
drh5cfa5842009-12-31 20:35:08 +00001371 /* When an OP_Program opcode is encounter (the only opcode that has
1372 ** a P4_SUBPROGRAM argument), expand the size of the array of subprograms
1373 ** kept in p->aMem[9].z to hold the new program - assuming this subprogram
1374 ** has not already been seen.
1375 */
dan165921a2009-08-28 18:53:45 +00001376 if( pOp->p4type==P4_SUBPROGRAM ){
1377 int nByte = (nSub+1)*sizeof(SubProgram*);
1378 int j;
1379 for(j=0; j<nSub; j++){
1380 if( apSub[j]==pOp->p4.pProgram ) break;
1381 }
dan2b9ee772012-03-31 09:59:44 +00001382 if( j==nSub && SQLITE_OK==sqlite3VdbeMemGrow(pSub, nByte, nSub!=0) ){
dan165921a2009-08-28 18:53:45 +00001383 apSub = (SubProgram **)pSub->z;
1384 apSub[nSub++] = pOp->p4.pProgram;
1385 pSub->flags |= MEM_Blob;
1386 pSub->n = nSub*sizeof(SubProgram*);
1387 }
1388 }
danielk19770d78bae2008-01-03 07:09:48 +00001389 }
drheb2e1762004-05-27 01:53:56 +00001390
1391 pMem->flags = MEM_Int;
drh3c024d62007-03-30 11:23:45 +00001392 pMem->u.i = pOp->p1; /* P1 */
drh9c054832004-05-31 18:51:57 +00001393 pMem->type = SQLITE_INTEGER;
drheb2e1762004-05-27 01:53:56 +00001394 pMem++;
1395
1396 pMem->flags = MEM_Int;
drh3c024d62007-03-30 11:23:45 +00001397 pMem->u.i = pOp->p2; /* P2 */
drh9c054832004-05-31 18:51:57 +00001398 pMem->type = SQLITE_INTEGER;
drheb2e1762004-05-27 01:53:56 +00001399 pMem++;
1400
dan2ce22452010-11-08 19:01:16 +00001401 pMem->flags = MEM_Int;
1402 pMem->u.i = pOp->p3; /* P3 */
1403 pMem->type = SQLITE_INTEGER;
1404 pMem++;
danielk19770d78bae2008-01-03 07:09:48 +00001405
danielk1977a7a8e142008-02-13 18:25:27 +00001406 if( sqlite3VdbeMemGrow(pMem, 32, 0) ){ /* P4 */
danielk1977357864e2009-03-25 15:43:08 +00001407 assert( p->db->mallocFailed );
1408 return SQLITE_ERROR;
danielk1977a7a8e142008-02-13 18:25:27 +00001409 }
1410 pMem->flags = MEM_Dyn|MEM_Str|MEM_Term;
drh81316f82013-10-29 20:40:47 +00001411 zP4 = displayP4(pOp, pMem->z, 32);
1412 if( zP4!=pMem->z ){
1413 sqlite3VdbeMemSetStr(pMem, zP4, -1, SQLITE_UTF8, 0);
danielk1977a7a8e142008-02-13 18:25:27 +00001414 }else{
1415 assert( pMem->z!=0 );
drhea678832008-12-10 19:26:22 +00001416 pMem->n = sqlite3Strlen30(pMem->z);
danielk1977a7a8e142008-02-13 18:25:27 +00001417 pMem->enc = SQLITE_UTF8;
1418 }
drh9c054832004-05-31 18:51:57 +00001419 pMem->type = SQLITE_TEXT;
danielk19770d78bae2008-01-03 07:09:48 +00001420 pMem++;
drheb2e1762004-05-27 01:53:56 +00001421
danielk19770d78bae2008-01-03 07:09:48 +00001422 if( p->explain==1 ){
drh85e5f0d2008-02-19 18:28:13 +00001423 if( sqlite3VdbeMemGrow(pMem, 4, 0) ){
danielk1977357864e2009-03-25 15:43:08 +00001424 assert( p->db->mallocFailed );
1425 return SQLITE_ERROR;
danielk1977a7a8e142008-02-13 18:25:27 +00001426 }
1427 pMem->flags = MEM_Dyn|MEM_Str|MEM_Term;
drh85e5f0d2008-02-19 18:28:13 +00001428 pMem->n = 2;
1429 sqlite3_snprintf(3, pMem->z, "%.2x", pOp->p5); /* P5 */
danielk19770d78bae2008-01-03 07:09:48 +00001430 pMem->type = SQLITE_TEXT;
1431 pMem->enc = SQLITE_UTF8;
1432 pMem++;
1433
drhc7379ce2013-10-30 02:28:23 +00001434#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS
drh81316f82013-10-29 20:40:47 +00001435 if( sqlite3VdbeMemGrow(pMem, 500, 0) ){
1436 assert( p->db->mallocFailed );
1437 return SQLITE_ERROR;
drh52391cb2008-02-14 23:44:13 +00001438 }
drh81316f82013-10-29 20:40:47 +00001439 pMem->flags = MEM_Dyn|MEM_Str|MEM_Term;
1440 pMem->n = displayComment(pOp, zP4, pMem->z, 500);
1441 pMem->type = SQLITE_TEXT;
1442 pMem->enc = SQLITE_UTF8;
1443#else
1444 pMem->flags = MEM_Null; /* Comment */
1445 pMem->type = SQLITE_NULL;
1446#endif
danielk19770d78bae2008-01-03 07:09:48 +00001447 }
1448
dan2ce22452010-11-08 19:01:16 +00001449 p->nResColumn = 8 - 4*(p->explain-1);
drh9734e6e2011-10-07 18:24:25 +00001450 p->pResultSet = &p->aMem[1];
drh826fb5a2004-02-14 23:59:57 +00001451 p->rc = SQLITE_OK;
1452 rc = SQLITE_ROW;
drh9a324642003-09-06 20:12:01 +00001453 }
drh826fb5a2004-02-14 23:59:57 +00001454 return rc;
drh9a324642003-09-06 20:12:01 +00001455}
drhb7f91642004-10-31 02:22:47 +00001456#endif /* SQLITE_OMIT_EXPLAIN */
drh9a324642003-09-06 20:12:01 +00001457
drh7c4ac0c2007-04-05 11:25:58 +00001458#ifdef SQLITE_DEBUG
drh9a324642003-09-06 20:12:01 +00001459/*
drh3f7d4e42004-07-24 14:35:58 +00001460** Print the SQL that was used to generate a VDBE program.
1461*/
1462void sqlite3VdbePrintSql(Vdbe *p){
drh84e55a82013-11-13 17:58:23 +00001463 const char *z = 0;
1464 if( p->zSql ){
1465 z = p->zSql;
1466 }else if( p->nOp>=1 ){
1467 const VdbeOp *pOp = &p->aOp[0];
1468 if( pOp->opcode==OP_Trace && pOp->p4.z!=0 ){
1469 z = pOp->p4.z;
1470 while( sqlite3Isspace(*z) ) z++;
1471 }
drh3f7d4e42004-07-24 14:35:58 +00001472 }
drh84e55a82013-11-13 17:58:23 +00001473 if( z ) printf("SQL: [%s]\n", z);
drh3f7d4e42004-07-24 14:35:58 +00001474}
drh7c4ac0c2007-04-05 11:25:58 +00001475#endif
drh3f7d4e42004-07-24 14:35:58 +00001476
drh602c2372007-03-01 00:29:13 +00001477#if !defined(SQLITE_OMIT_TRACE) && defined(SQLITE_ENABLE_IOTRACE)
1478/*
1479** Print an IOTRACE message showing SQL content.
1480*/
1481void sqlite3VdbeIOTraceSql(Vdbe *p){
1482 int nOp = p->nOp;
1483 VdbeOp *pOp;
mlcreech3a00f902008-03-04 17:45:01 +00001484 if( sqlite3IoTrace==0 ) return;
drh602c2372007-03-01 00:29:13 +00001485 if( nOp<1 ) return;
drh949f9cd2008-01-12 21:35:57 +00001486 pOp = &p->aOp[0];
1487 if( pOp->opcode==OP_Trace && pOp->p4.z!=0 ){
drh602c2372007-03-01 00:29:13 +00001488 int i, j;
drh00a18e42007-08-13 11:10:34 +00001489 char z[1000];
drh949f9cd2008-01-12 21:35:57 +00001490 sqlite3_snprintf(sizeof(z), z, "%s", pOp->p4.z);
danielk197778ca0e72009-01-20 16:53:39 +00001491 for(i=0; sqlite3Isspace(z[i]); i++){}
drh602c2372007-03-01 00:29:13 +00001492 for(j=0; z[i]; i++){
danielk197778ca0e72009-01-20 16:53:39 +00001493 if( sqlite3Isspace(z[i]) ){
drh602c2372007-03-01 00:29:13 +00001494 if( z[i-1]!=' ' ){
1495 z[j++] = ' ';
1496 }
1497 }else{
1498 z[j++] = z[i];
1499 }
1500 }
1501 z[j] = 0;
mlcreech3a00f902008-03-04 17:45:01 +00001502 sqlite3IoTrace("SQL %s\n", z);
drh602c2372007-03-01 00:29:13 +00001503 }
1504}
1505#endif /* !SQLITE_OMIT_TRACE && SQLITE_ENABLE_IOTRACE */
1506
drhb2771ce2009-02-20 01:28:59 +00001507/*
drh4800b2e2009-12-08 15:35:22 +00001508** Allocate space from a fixed size buffer and return a pointer to
1509** that space. If insufficient space is available, return NULL.
1510**
1511** The pBuf parameter is the initial value of a pointer which will
1512** receive the new memory. pBuf is normally NULL. If pBuf is not
1513** NULL, it means that memory space has already been allocated and that
1514** this routine should not allocate any new memory. When pBuf is not
1515** NULL simply return pBuf. Only allocate new memory space when pBuf
1516** is NULL.
drhb2771ce2009-02-20 01:28:59 +00001517**
1518** nByte is the number of bytes of space needed.
1519**
drh19875c82009-12-08 19:58:19 +00001520** *ppFrom points to available space and pEnd points to the end of the
1521** available space. When space is allocated, *ppFrom is advanced past
1522** the end of the allocated space.
drhb2771ce2009-02-20 01:28:59 +00001523**
1524** *pnByte is a counter of the number of bytes of space that have failed
1525** to allocate. If there is insufficient space in *ppFrom to satisfy the
danielk1977d336e222009-02-20 10:58:41 +00001526** request, then increment *pnByte by the amount of the request.
drhb2771ce2009-02-20 01:28:59 +00001527*/
drh4800b2e2009-12-08 15:35:22 +00001528static void *allocSpace(
1529 void *pBuf, /* Where return pointer will be stored */
drhb2771ce2009-02-20 01:28:59 +00001530 int nByte, /* Number of bytes to allocate */
1531 u8 **ppFrom, /* IN/OUT: Allocate from *ppFrom */
danielk1977d336e222009-02-20 10:58:41 +00001532 u8 *pEnd, /* Pointer to 1 byte past the end of *ppFrom buffer */
drhb2771ce2009-02-20 01:28:59 +00001533 int *pnByte /* If allocation cannot be made, increment *pnByte */
1534){
drhea598cb2009-04-05 12:22:08 +00001535 assert( EIGHT_BYTE_ALIGNMENT(*ppFrom) );
drh4800b2e2009-12-08 15:35:22 +00001536 if( pBuf ) return pBuf;
1537 nByte = ROUND8(nByte);
1538 if( &(*ppFrom)[nByte] <= pEnd ){
1539 pBuf = (void*)*ppFrom;
1540 *ppFrom += nByte;
1541 }else{
1542 *pnByte += nByte;
drhb2771ce2009-02-20 01:28:59 +00001543 }
drh4800b2e2009-12-08 15:35:22 +00001544 return pBuf;
drhb2771ce2009-02-20 01:28:59 +00001545}
drh602c2372007-03-01 00:29:13 +00001546
drh3f7d4e42004-07-24 14:35:58 +00001547/*
drh124c0b42011-06-01 18:15:55 +00001548** Rewind the VDBE back to the beginning in preparation for
1549** running it.
drh9a324642003-09-06 20:12:01 +00001550*/
drh124c0b42011-06-01 18:15:55 +00001551void sqlite3VdbeRewind(Vdbe *p){
1552#if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE)
1553 int i;
1554#endif
drh9a324642003-09-06 20:12:01 +00001555 assert( p!=0 );
drh9a324642003-09-06 20:12:01 +00001556 assert( p->magic==VDBE_MAGIC_INIT );
1557
drhc16a03b2004-09-15 13:38:10 +00001558 /* There should be at least one opcode.
drh9a324642003-09-06 20:12:01 +00001559 */
drhc16a03b2004-09-15 13:38:10 +00001560 assert( p->nOp>0 );
drh9a324642003-09-06 20:12:01 +00001561
danielk197700e13612008-11-17 19:18:54 +00001562 /* Set the magic to VDBE_MAGIC_RUN sooner rather than later. */
danielk1977634f2982005-03-28 08:44:07 +00001563 p->magic = VDBE_MAGIC_RUN;
1564
drh124c0b42011-06-01 18:15:55 +00001565#ifdef SQLITE_DEBUG
1566 for(i=1; i<p->nMem; i++){
1567 assert( p->aMem[i].db==p->db );
1568 }
1569#endif
1570 p->pc = -1;
1571 p->rc = SQLITE_OK;
1572 p->errorAction = OE_Abort;
1573 p->magic = VDBE_MAGIC_RUN;
1574 p->nChange = 0;
1575 p->cacheCtr = 1;
1576 p->minWriteFileFormat = 255;
1577 p->iStatement = 0;
1578 p->nFkConstraint = 0;
1579#ifdef VDBE_PROFILE
1580 for(i=0; i<p->nOp; i++){
1581 p->aOp[i].cnt = 0;
1582 p->aOp[i].cycles = 0;
1583 }
1584#endif
1585}
1586
1587/*
1588** Prepare a virtual machine for execution for the first time after
1589** creating the virtual machine. This involves things such
1590** as allocating stack space and initializing the program counter.
1591** After the VDBE has be prepped, it can be executed by one or more
1592** calls to sqlite3VdbeExec().
1593**
1594** This function may be called exact once on a each virtual machine.
1595** After this routine is called the VM has been "packaged" and is ready
1596** to run. After this routine is called, futher calls to
1597** sqlite3VdbeAddOp() functions are prohibited. This routine disconnects
1598** the Vdbe from the Parse object that helped generate it so that the
1599** the Vdbe becomes an independent entity and the Parse object can be
1600** destroyed.
1601**
1602** Use the sqlite3VdbeRewind() procedure to restore a virtual machine back
1603** to its initial state after it has been run.
1604*/
1605void sqlite3VdbeMakeReady(
1606 Vdbe *p, /* The VDBE */
1607 Parse *pParse /* Parsing context */
1608){
1609 sqlite3 *db; /* The database connection */
1610 int nVar; /* Number of parameters */
1611 int nMem; /* Number of VM memory registers */
1612 int nCursor; /* Number of cursors required */
1613 int nArg; /* Number of arguments in subprograms */
dan1d8cb212011-12-09 13:24:16 +00001614 int nOnce; /* Number of OP_Once instructions */
drh124c0b42011-06-01 18:15:55 +00001615 int n; /* Loop counter */
1616 u8 *zCsr; /* Memory available for allocation */
1617 u8 *zEnd; /* First byte past allocated memory */
1618 int nByte; /* How much extra memory is needed */
1619
1620 assert( p!=0 );
1621 assert( p->nOp>0 );
1622 assert( pParse!=0 );
1623 assert( p->magic==VDBE_MAGIC_INIT );
drh73d5b8f2013-12-23 19:09:07 +00001624 assert( pParse==p->pParse );
drh124c0b42011-06-01 18:15:55 +00001625 db = p->db;
1626 assert( db->mallocFailed==0 );
1627 nVar = pParse->nVar;
1628 nMem = pParse->nMem;
1629 nCursor = pParse->nTab;
1630 nArg = pParse->nMaxArg;
dan1d8cb212011-12-09 13:24:16 +00001631 nOnce = pParse->nOnce;
drh20e226d2012-01-01 13:58:53 +00001632 if( nOnce==0 ) nOnce = 1; /* Ensure at least one byte in p->aOnceFlag[] */
drh124c0b42011-06-01 18:15:55 +00001633
danielk1977cd3e8f72008-03-25 09:47:35 +00001634 /* For each cursor required, also allocate a memory cell. Memory
1635 ** cells (nMem+1-nCursor)..nMem, inclusive, will never be used by
1636 ** the vdbe program. Instead they are used to allocate space for
drhdfe88ec2008-11-03 20:55:06 +00001637 ** VdbeCursor/BtCursor structures. The blob of memory associated with
danielk1977cd3e8f72008-03-25 09:47:35 +00001638 ** cursor 0 is stored in memory cell nMem. Memory cell (nMem-1)
1639 ** stores the blob of memory associated with cursor 1, etc.
1640 **
1641 ** See also: allocateCursor().
1642 */
1643 nMem += nCursor;
1644
danielk19776ab3a2e2009-02-19 14:39:25 +00001645 /* Allocate space for memory registers, SQL variables, VDBE cursors and
drh124c0b42011-06-01 18:15:55 +00001646 ** an array to marshal SQL function arguments in.
drh9a324642003-09-06 20:12:01 +00001647 */
drh73d5b8f2013-12-23 19:09:07 +00001648 zCsr = (u8*)&p->aOp[p->nOp]; /* Memory avaliable for allocation */
1649 zEnd = (u8*)&p->aOp[pParse->nOpAlloc]; /* First byte past end of zCsr[] */
drh19875c82009-12-08 19:58:19 +00001650
drh124c0b42011-06-01 18:15:55 +00001651 resolveP2Values(p, &nArg);
1652 p->usesStmtJournal = (u8)(pParse->isMultiWrite && pParse->mayAbort);
1653 if( pParse->explain && nMem<10 ){
1654 nMem = 10;
1655 }
1656 memset(zCsr, 0, zEnd-zCsr);
1657 zCsr += (zCsr - (u8*)0)&7;
1658 assert( EIGHT_BYTE_ALIGNMENT(zCsr) );
drhaab910c2011-06-27 00:01:22 +00001659 p->expired = 0;
drh124c0b42011-06-01 18:15:55 +00001660
1661 /* Memory for registers, parameters, cursor, etc, is allocated in two
1662 ** passes. On the first pass, we try to reuse unused space at the
1663 ** end of the opcode array. If we are unable to satisfy all memory
1664 ** requirements by reusing the opcode array tail, then the second
1665 ** pass will fill in the rest using a fresh allocation.
1666 **
1667 ** This two-pass approach that reuses as much memory as possible from
1668 ** the leftover space at the end of the opcode array can significantly
1669 ** reduce the amount of memory held by a prepared statement.
1670 */
1671 do {
1672 nByte = 0;
1673 p->aMem = allocSpace(p->aMem, nMem*sizeof(Mem), &zCsr, zEnd, &nByte);
1674 p->aVar = allocSpace(p->aVar, nVar*sizeof(Mem), &zCsr, zEnd, &nByte);
1675 p->apArg = allocSpace(p->apArg, nArg*sizeof(Mem*), &zCsr, zEnd, &nByte);
1676 p->azVar = allocSpace(p->azVar, nVar*sizeof(char*), &zCsr, zEnd, &nByte);
1677 p->apCsr = allocSpace(p->apCsr, nCursor*sizeof(VdbeCursor*),
1678 &zCsr, zEnd, &nByte);
drhb8475df2011-12-09 16:21:19 +00001679 p->aOnceFlag = allocSpace(p->aOnceFlag, nOnce, &zCsr, zEnd, &nByte);
drh124c0b42011-06-01 18:15:55 +00001680 if( nByte ){
1681 p->pFree = sqlite3DbMallocZero(db, nByte);
drh0f7eb612006-08-08 13:51:43 +00001682 }
drh124c0b42011-06-01 18:15:55 +00001683 zCsr = p->pFree;
1684 zEnd = &zCsr[nByte];
1685 }while( nByte && !db->mallocFailed );
drhb2771ce2009-02-20 01:28:59 +00001686
drhd2a56232013-01-28 19:00:20 +00001687 p->nCursor = nCursor;
dan1d8cb212011-12-09 13:24:16 +00001688 p->nOnceFlag = nOnce;
drh124c0b42011-06-01 18:15:55 +00001689 if( p->aVar ){
1690 p->nVar = (ynVar)nVar;
1691 for(n=0; n<nVar; n++){
1692 p->aVar[n].flags = MEM_Null;
1693 p->aVar[n].db = db;
danielk197754db47e2004-05-19 10:36:43 +00001694 }
drh82a48512003-09-06 22:45:20 +00001695 }
drh124c0b42011-06-01 18:15:55 +00001696 if( p->azVar ){
1697 p->nzVar = pParse->nzVar;
1698 memcpy(p->azVar, pParse->azVar, p->nzVar*sizeof(p->azVar[0]));
1699 memset(pParse->azVar, 0, pParse->nzVar*sizeof(pParse->azVar[0]));
danielk1977b3bce662005-01-29 08:32:43 +00001700 }
drh124c0b42011-06-01 18:15:55 +00001701 if( p->aMem ){
1702 p->aMem--; /* aMem[] goes from 1..nMem */
1703 p->nMem = nMem; /* not from 0..nMem-1 */
1704 for(n=1; n<=nMem; n++){
drhb8475df2011-12-09 16:21:19 +00001705 p->aMem[n].flags = MEM_Invalid;
drh124c0b42011-06-01 18:15:55 +00001706 p->aMem[n].db = db;
drhcf64d8b2003-12-31 17:57:10 +00001707 }
drh9a324642003-09-06 20:12:01 +00001708 }
drh124c0b42011-06-01 18:15:55 +00001709 p->explain = pParse->explain;
1710 sqlite3VdbeRewind(p);
drh9a324642003-09-06 20:12:01 +00001711}
1712
drh9a324642003-09-06 20:12:01 +00001713/*
danielk1977cd3e8f72008-03-25 09:47:35 +00001714** Close a VDBE cursor and release all the resources that cursor
1715** happens to hold.
drh9a324642003-09-06 20:12:01 +00001716*/
drhdfe88ec2008-11-03 20:55:06 +00001717void sqlite3VdbeFreeCursor(Vdbe *p, VdbeCursor *pCx){
drh4774b132004-06-12 20:12:51 +00001718 if( pCx==0 ){
1719 return;
1720 }
dana20fde62011-07-12 14:28:05 +00001721 sqlite3VdbeSorterClose(p->db, pCx);
drh9a324642003-09-06 20:12:01 +00001722 if( pCx->pBt ){
danielk19774adee202004-05-08 08:23:19 +00001723 sqlite3BtreeClose(pCx->pBt);
drh34004ce2008-07-11 16:15:17 +00001724 /* The pCx->pCursor will be close automatically, if it exists, by
1725 ** the call above. */
1726 }else if( pCx->pCursor ){
1727 sqlite3BtreeCloseCursor(pCx->pCursor);
drh9a324642003-09-06 20:12:01 +00001728 }
drh9eff6162006-06-12 21:59:13 +00001729#ifndef SQLITE_OMIT_VIRTUALTABLE
1730 if( pCx->pVtabCursor ){
1731 sqlite3_vtab_cursor *pVtabCursor = pCx->pVtabCursor;
drh5cc10232013-11-21 01:04:02 +00001732 const sqlite3_module *pModule = pVtabCursor->pVtab->pModule;
danielk1977be718892006-06-23 08:05:19 +00001733 p->inVtabMethod = 1;
drh9eff6162006-06-12 21:59:13 +00001734 pModule->xClose(pVtabCursor);
danielk1977be718892006-06-23 08:05:19 +00001735 p->inVtabMethod = 0;
drh9eff6162006-06-12 21:59:13 +00001736 }
1737#endif
drh9a324642003-09-06 20:12:01 +00001738}
1739
dan65a7cd12009-09-01 12:16:01 +00001740/*
1741** Copy the values stored in the VdbeFrame structure to its Vdbe. This
1742** is used, for example, when a trigger sub-program is halted to restore
1743** control to the main program.
1744*/
dan165921a2009-08-28 18:53:45 +00001745int sqlite3VdbeFrameRestore(VdbeFrame *pFrame){
1746 Vdbe *v = pFrame->v;
dan1d8cb212011-12-09 13:24:16 +00001747 v->aOnceFlag = pFrame->aOnceFlag;
1748 v->nOnceFlag = pFrame->nOnceFlag;
dan165921a2009-08-28 18:53:45 +00001749 v->aOp = pFrame->aOp;
1750 v->nOp = pFrame->nOp;
1751 v->aMem = pFrame->aMem;
1752 v->nMem = pFrame->nMem;
1753 v->apCsr = pFrame->apCsr;
1754 v->nCursor = pFrame->nCursor;
dan76d462e2009-08-30 11:42:51 +00001755 v->db->lastRowid = pFrame->lastRowid;
1756 v->nChange = pFrame->nChange;
dan165921a2009-08-28 18:53:45 +00001757 return pFrame->pc;
1758}
1759
drh9a324642003-09-06 20:12:01 +00001760/*
drh5f82e3c2009-07-06 00:44:08 +00001761** Close all cursors.
dan165921a2009-08-28 18:53:45 +00001762**
1763** Also release any dynamic memory held by the VM in the Vdbe.aMem memory
1764** cell array. This is necessary as the memory cell array may contain
1765** pointers to VdbeFrame objects, which may in turn contain pointers to
1766** open cursors.
drh9a324642003-09-06 20:12:01 +00001767*/
drh5f82e3c2009-07-06 00:44:08 +00001768static void closeAllCursors(Vdbe *p){
dan165921a2009-08-28 18:53:45 +00001769 if( p->pFrame ){
drh23272752011-03-06 21:54:33 +00001770 VdbeFrame *pFrame;
dan165921a2009-08-28 18:53:45 +00001771 for(pFrame=p->pFrame; pFrame->pParent; pFrame=pFrame->pParent);
1772 sqlite3VdbeFrameRestore(pFrame);
1773 }
1774 p->pFrame = 0;
1775 p->nFrame = 0;
1776
dan523a0872009-08-31 05:23:32 +00001777 if( p->apCsr ){
1778 int i;
1779 for(i=0; i<p->nCursor; i++){
1780 VdbeCursor *pC = p->apCsr[i];
1781 if( pC ){
1782 sqlite3VdbeFreeCursor(p, pC);
1783 p->apCsr[i] = 0;
1784 }
danielk1977be718892006-06-23 08:05:19 +00001785 }
drh9a324642003-09-06 20:12:01 +00001786 }
dan523a0872009-08-31 05:23:32 +00001787 if( p->aMem ){
1788 releaseMemArray(&p->aMem[1], p->nMem);
1789 }
dan27106572010-12-01 08:04:47 +00001790 while( p->pDelFrame ){
1791 VdbeFrame *pDel = p->pDelFrame;
1792 p->pDelFrame = pDel->pParent;
1793 sqlite3VdbeFrameDelete(pDel);
1794 }
dan0c547792013-07-18 17:12:08 +00001795
1796 /* Delete any auxdata allocations made by the VM */
1797 sqlite3VdbeDeleteAuxData(p, -1, 0);
1798 assert( p->pAuxData==0 );
drh9a324642003-09-06 20:12:01 +00001799}
1800
1801/*
drh9a324642003-09-06 20:12:01 +00001802** Clean up the VM after execution.
1803**
1804** This routine will automatically close any cursors, lists, and/or
1805** sorters that were left open. It also deletes the values of
drh5a12e682004-05-19 11:24:25 +00001806** variables in the aVar[] array.
drh9a324642003-09-06 20:12:01 +00001807*/
drhc890fec2008-08-01 20:10:08 +00001808static void Cleanup(Vdbe *p){
drh633e6d52008-07-28 19:34:53 +00001809 sqlite3 *db = p->db;
dan165921a2009-08-28 18:53:45 +00001810
1811#ifdef SQLITE_DEBUG
1812 /* Execute assert() statements to ensure that the Vdbe.apCsr[] and
1813 ** Vdbe.aMem[] arrays have already been cleaned up. */
1814 int i;
drhb8475df2011-12-09 16:21:19 +00001815 if( p->apCsr ) for(i=0; i<p->nCursor; i++) assert( p->apCsr[i]==0 );
1816 if( p->aMem ){
1817 for(i=1; i<=p->nMem; i++) assert( p->aMem[i].flags==MEM_Invalid );
1818 }
dan165921a2009-08-28 18:53:45 +00001819#endif
1820
drh633e6d52008-07-28 19:34:53 +00001821 sqlite3DbFree(db, p->zErrMsg);
drh9a324642003-09-06 20:12:01 +00001822 p->zErrMsg = 0;
drhd4e70eb2008-01-02 00:34:36 +00001823 p->pResultSet = 0;
drh9a324642003-09-06 20:12:01 +00001824}
1825
1826/*
danielk197722322fd2004-05-25 23:35:17 +00001827** Set the number of result columns that will be returned by this SQL
1828** statement. This is now set at compile time, rather than during
1829** execution of the vdbe program so that sqlite3_column_count() can
1830** be called on an SQL statement before sqlite3_step().
1831*/
1832void sqlite3VdbeSetNumCols(Vdbe *p, int nResColumn){
drh76ff3a02004-09-24 22:32:30 +00001833 Mem *pColName;
1834 int n;
drh633e6d52008-07-28 19:34:53 +00001835 sqlite3 *db = p->db;
drh4a50aac2007-08-23 02:47:53 +00001836
drhc890fec2008-08-01 20:10:08 +00001837 releaseMemArray(p->aColName, p->nResColumn*COLNAME_N);
drh633e6d52008-07-28 19:34:53 +00001838 sqlite3DbFree(db, p->aColName);
danielk1977955de522006-02-10 02:27:42 +00001839 n = nResColumn*COLNAME_N;
shane36840fd2009-06-26 16:32:13 +00001840 p->nResColumn = (u16)nResColumn;
drh633e6d52008-07-28 19:34:53 +00001841 p->aColName = pColName = (Mem*)sqlite3DbMallocZero(db, sizeof(Mem)*n );
drh76ff3a02004-09-24 22:32:30 +00001842 if( p->aColName==0 ) return;
1843 while( n-- > 0 ){
drh4a50aac2007-08-23 02:47:53 +00001844 pColName->flags = MEM_Null;
drh153c62c2007-08-24 03:51:33 +00001845 pColName->db = p->db;
drh4a50aac2007-08-23 02:47:53 +00001846 pColName++;
drh76ff3a02004-09-24 22:32:30 +00001847 }
danielk197722322fd2004-05-25 23:35:17 +00001848}
1849
1850/*
danielk19773cf86062004-05-26 10:11:05 +00001851** Set the name of the idx'th column to be returned by the SQL statement.
1852** zName must be a pointer to a nul terminated string.
1853**
1854** This call must be made after a call to sqlite3VdbeSetNumCols().
1855**
danielk197710fb7492008-10-31 10:53:22 +00001856** The final parameter, xDel, must be one of SQLITE_DYNAMIC, SQLITE_STATIC
1857** or SQLITE_TRANSIENT. If it is SQLITE_DYNAMIC, then the buffer pointed
1858** to by zName will be freed by sqlite3DbFree() when the vdbe is destroyed.
danielk19773cf86062004-05-26 10:11:05 +00001859*/
danielk197710fb7492008-10-31 10:53:22 +00001860int sqlite3VdbeSetColName(
1861 Vdbe *p, /* Vdbe being configured */
1862 int idx, /* Index of column zName applies to */
1863 int var, /* One of the COLNAME_* constants */
1864 const char *zName, /* Pointer to buffer containing name */
1865 void (*xDel)(void*) /* Memory management strategy for zName */
1866){
danielk19773cf86062004-05-26 10:11:05 +00001867 int rc;
1868 Mem *pColName;
danielk1977955de522006-02-10 02:27:42 +00001869 assert( idx<p->nResColumn );
1870 assert( var<COLNAME_N );
danielk197710fb7492008-10-31 10:53:22 +00001871 if( p->db->mallocFailed ){
1872 assert( !zName || xDel!=SQLITE_DYNAMIC );
1873 return SQLITE_NOMEM;
1874 }
drh76ff3a02004-09-24 22:32:30 +00001875 assert( p->aColName!=0 );
danielk1977955de522006-02-10 02:27:42 +00001876 pColName = &(p->aColName[idx+var*p->nResColumn]);
danielk197710fb7492008-10-31 10:53:22 +00001877 rc = sqlite3VdbeMemSetStr(pColName, zName, -1, SQLITE_UTF8, xDel);
drh0793f1b2008-11-05 17:41:19 +00001878 assert( rc!=0 || !zName || (pColName->flags&MEM_Term)!=0 );
danielk19773cf86062004-05-26 10:11:05 +00001879 return rc;
1880}
1881
danielk197713adf8a2004-06-03 16:08:41 +00001882/*
1883** A read or write transaction may or may not be active on database handle
1884** db. If a transaction is active, commit it. If there is a
1885** write-transaction spanning more than one database file, this routine
1886** takes care of the master journal trickery.
1887*/
danielk19773e3a84d2008-08-01 17:37:40 +00001888static int vdbeCommit(sqlite3 *db, Vdbe *p){
danielk197713adf8a2004-06-03 16:08:41 +00001889 int i;
1890 int nTrans = 0; /* Number of databases with an active write-transaction */
1891 int rc = SQLITE_OK;
1892 int needXcommit = 0;
1893
shane36840fd2009-06-26 16:32:13 +00001894#ifdef SQLITE_OMIT_VIRTUALTABLE
1895 /* With this option, sqlite3VtabSync() is defined to be simply
1896 ** SQLITE_OK so p is not used.
1897 */
1898 UNUSED_PARAMETER(p);
1899#endif
1900
danielk19775bd270b2006-07-25 15:14:52 +00001901 /* Before doing anything else, call the xSync() callback for any
1902 ** virtual module tables written in this transaction. This has to
1903 ** be done before determining whether a master journal file is
1904 ** required, as an xSync() callback may add an attached database
1905 ** to the transaction.
1906 */
dan016f7812013-08-21 17:35:48 +00001907 rc = sqlite3VtabSync(db, p);
danielk19775bd270b2006-07-25 15:14:52 +00001908
1909 /* This loop determines (a) if the commit hook should be invoked and
1910 ** (b) how many database files have open write transactions, not
1911 ** including the temp database. (b) is important because if more than
1912 ** one database file has an open write transaction, a master journal
1913 ** file is required for an atomic commit.
1914 */
drhabfb62f2010-07-30 11:20:35 +00001915 for(i=0; rc==SQLITE_OK && i<db->nDb; i++){
danielk197713adf8a2004-06-03 16:08:41 +00001916 Btree *pBt = db->aDb[i].pBt;
drhd0679ed2007-08-28 22:24:34 +00001917 if( sqlite3BtreeIsInTrans(pBt) ){
danielk197713adf8a2004-06-03 16:08:41 +00001918 needXcommit = 1;
1919 if( i!=1 ) nTrans++;
dan6b9bb592012-10-05 19:43:02 +00001920 sqlite3BtreeEnter(pBt);
drhabfb62f2010-07-30 11:20:35 +00001921 rc = sqlite3PagerExclusiveLock(sqlite3BtreePager(pBt));
dan6b9bb592012-10-05 19:43:02 +00001922 sqlite3BtreeLeave(pBt);
danielk197713adf8a2004-06-03 16:08:41 +00001923 }
1924 }
drhabfb62f2010-07-30 11:20:35 +00001925 if( rc!=SQLITE_OK ){
1926 return rc;
1927 }
danielk197713adf8a2004-06-03 16:08:41 +00001928
1929 /* If there are any write-transactions at all, invoke the commit hook */
1930 if( needXcommit && db->xCommitCallback ){
drh92f02c32004-09-02 14:57:08 +00001931 rc = db->xCommitCallback(db->pCommitArg);
drh92f02c32004-09-02 14:57:08 +00001932 if( rc ){
drhd91c1a12013-02-09 13:58:25 +00001933 return SQLITE_CONSTRAINT_COMMITHOOK;
danielk197713adf8a2004-06-03 16:08:41 +00001934 }
1935 }
1936
danielk197740b38dc2004-06-26 08:38:24 +00001937 /* The simple case - no more than one database file (not counting the
1938 ** TEMP database) has a transaction active. There is no need for the
drh2ac3ee92004-06-07 16:27:46 +00001939 ** master-journal.
drhc9e06862004-06-09 20:03:08 +00001940 **
danielk197740b38dc2004-06-26 08:38:24 +00001941 ** If the return value of sqlite3BtreeGetFilename() is a zero length
danielk197717b90b52008-06-06 11:11:25 +00001942 ** string, it means the main database is :memory: or a temp file. In
1943 ** that case we do not support atomic multi-file commits, so use the
1944 ** simple case then too.
danielk197713adf8a2004-06-03 16:08:41 +00001945 */
drhea678832008-12-10 19:26:22 +00001946 if( 0==sqlite3Strlen30(sqlite3BtreeGetFilename(db->aDb[0].pBt))
1947 || nTrans<=1
1948 ){
danielk197704103022009-02-03 16:51:24 +00001949 for(i=0; rc==SQLITE_OK && i<db->nDb; i++){
danielk197713adf8a2004-06-03 16:08:41 +00001950 Btree *pBt = db->aDb[i].pBt;
1951 if( pBt ){
drh80e35f42007-03-30 14:06:34 +00001952 rc = sqlite3BtreeCommitPhaseOne(pBt, 0);
drh2ac3ee92004-06-07 16:27:46 +00001953 }
1954 }
1955
drh80e35f42007-03-30 14:06:34 +00001956 /* Do the commit only if all databases successfully complete phase 1.
1957 ** If one of the BtreeCommitPhaseOne() calls fails, this indicates an
1958 ** IO error while deleting or truncating a journal file. It is unlikely,
1959 ** but could happen. In this case abandon processing and return the error.
danielk1977979f38e2007-03-27 16:19:51 +00001960 */
1961 for(i=0; rc==SQLITE_OK && i<db->nDb; i++){
1962 Btree *pBt = db->aDb[i].pBt;
1963 if( pBt ){
dan60939d02011-03-29 15:40:55 +00001964 rc = sqlite3BtreeCommitPhaseTwo(pBt, 0);
danielk197713adf8a2004-06-03 16:08:41 +00001965 }
danielk1977979f38e2007-03-27 16:19:51 +00001966 }
1967 if( rc==SQLITE_OK ){
danielk1977f9e7dda2006-06-16 16:08:53 +00001968 sqlite3VtabCommit(db);
danielk197713adf8a2004-06-03 16:08:41 +00001969 }
1970 }
1971
1972 /* The complex case - There is a multi-file write-transaction active.
1973 ** This requires a master journal file to ensure the transaction is
1974 ** committed atomicly.
1975 */
danielk197744ee5bf2005-05-27 09:41:12 +00001976#ifndef SQLITE_OMIT_DISKIO
danielk197713adf8a2004-06-03 16:08:41 +00001977 else{
danielk1977b4b47412007-08-17 15:53:36 +00001978 sqlite3_vfs *pVfs = db->pVfs;
drh2c8997b2005-08-27 16:36:48 +00001979 int needSync = 0;
danielk197713adf8a2004-06-03 16:08:41 +00001980 char *zMaster = 0; /* File-name for the master journal */
1981 char const *zMainFile = sqlite3BtreeGetFilename(db->aDb[0].pBt);
danielk1977b4b47412007-08-17 15:53:36 +00001982 sqlite3_file *pMaster = 0;
danielk197762079062007-08-15 17:08:46 +00001983 i64 offset = 0;
danielk1977861f7452008-06-05 11:39:11 +00001984 int res;
drhf5808602011-12-16 00:33:04 +00001985 int retryCount = 0;
drh5c531a42011-12-16 01:21:31 +00001986 int nMainFile;
danielk197713adf8a2004-06-03 16:08:41 +00001987
1988 /* Select a master journal file name */
drh5c531a42011-12-16 01:21:31 +00001989 nMainFile = sqlite3Strlen30(zMainFile);
drh52bcde02012-01-03 14:50:45 +00001990 zMaster = sqlite3MPrintf(db, "%s-mjXXXXXX9XXz", zMainFile);
drh5c531a42011-12-16 01:21:31 +00001991 if( zMaster==0 ) return SQLITE_NOMEM;
danielk197713adf8a2004-06-03 16:08:41 +00001992 do {
drhdc5ea5c2008-12-10 17:19:59 +00001993 u32 iRandom;
drh84968c02011-12-16 15:11:39 +00001994 if( retryCount ){
1995 if( retryCount>100 ){
1996 sqlite3_log(SQLITE_FULL, "MJ delete: %s", zMaster);
1997 sqlite3OsDelete(pVfs, zMaster, 0);
1998 break;
1999 }else if( retryCount==1 ){
2000 sqlite3_log(SQLITE_FULL, "MJ collide: %s", zMaster);
2001 }
danielk197713adf8a2004-06-03 16:08:41 +00002002 }
drh84968c02011-12-16 15:11:39 +00002003 retryCount++;
danielk197713adf8a2004-06-03 16:08:41 +00002004 sqlite3_randomness(sizeof(iRandom), &iRandom);
drh5c531a42011-12-16 01:21:31 +00002005 sqlite3_snprintf(13, &zMaster[nMainFile], "-mj%06X9%02X",
drhf5808602011-12-16 00:33:04 +00002006 (iRandom>>8)&0xffffff, iRandom&0xff);
drhf5808602011-12-16 00:33:04 +00002007 /* The antipenultimate character of the master journal name must
2008 ** be "9" to avoid name collisions when using 8+3 filenames. */
drh5c531a42011-12-16 01:21:31 +00002009 assert( zMaster[sqlite3Strlen30(zMaster)-3]=='9' );
drh81cc5162011-05-17 20:36:21 +00002010 sqlite3FileSuffix3(zMainFile, zMaster);
danielk1977861f7452008-06-05 11:39:11 +00002011 rc = sqlite3OsAccess(pVfs, zMaster, SQLITE_ACCESS_EXISTS, &res);
2012 }while( rc==SQLITE_OK && res );
2013 if( rc==SQLITE_OK ){
drh19db9352008-03-27 22:42:51 +00002014 /* Open the master journal. */
2015 rc = sqlite3OsOpenMalloc(pVfs, zMaster, &pMaster,
2016 SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|
2017 SQLITE_OPEN_EXCLUSIVE|SQLITE_OPEN_MASTER_JOURNAL, 0
2018 );
2019 }
danielk197713adf8a2004-06-03 16:08:41 +00002020 if( rc!=SQLITE_OK ){
drh633e6d52008-07-28 19:34:53 +00002021 sqlite3DbFree(db, zMaster);
danielk197713adf8a2004-06-03 16:08:41 +00002022 return rc;
2023 }
2024
2025 /* Write the name of each database file in the transaction into the new
2026 ** master journal file. If an error occurs at this point close
2027 ** and delete the master journal file. All the individual journal files
2028 ** still have 'null' as the master journal pointer, so they will roll
danielk1977aca790a2005-01-13 11:07:52 +00002029 ** back independently if a failure occurs.
danielk197713adf8a2004-06-03 16:08:41 +00002030 */
danielk19771e536952007-08-16 10:09:01 +00002031 for(i=0; i<db->nDb; i++){
danielk197713adf8a2004-06-03 16:08:41 +00002032 Btree *pBt = db->aDb[i].pBt;
drhd0679ed2007-08-28 22:24:34 +00002033 if( sqlite3BtreeIsInTrans(pBt) ){
danielk19775865e3d2004-06-14 06:03:57 +00002034 char const *zFile = sqlite3BtreeGetJournalname(pBt);
drh8c96a6e2010-08-31 01:09:15 +00002035 if( zFile==0 ){
drhb290e1c2009-12-08 13:36:55 +00002036 continue; /* Ignore TEMP and :memory: databases */
2037 }
drh8c96a6e2010-08-31 01:09:15 +00002038 assert( zFile[0]!=0 );
drh2c8997b2005-08-27 16:36:48 +00002039 if( !needSync && !sqlite3BtreeSyncDisabled(pBt) ){
2040 needSync = 1;
2041 }
drhea678832008-12-10 19:26:22 +00002042 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
2043 offset += sqlite3Strlen30(zFile)+1;
danielk197713adf8a2004-06-03 16:08:41 +00002044 if( rc!=SQLITE_OK ){
danielk1977fee2d252007-08-18 10:59:19 +00002045 sqlite3OsCloseFree(pMaster);
2046 sqlite3OsDelete(pVfs, zMaster, 0);
drh633e6d52008-07-28 19:34:53 +00002047 sqlite3DbFree(db, zMaster);
danielk197713adf8a2004-06-03 16:08:41 +00002048 return rc;
2049 }
2050 }
2051 }
2052
danielk19779663b8f2007-08-24 11:52:28 +00002053 /* Sync the master journal file. If the IOCAP_SEQUENTIAL device
2054 ** flag is set this is not required.
2055 */
danielk1977bea2a942009-01-20 17:06:27 +00002056 if( needSync
2057 && 0==(sqlite3OsDeviceCharacteristics(pMaster)&SQLITE_IOCAP_SEQUENTIAL)
2058 && SQLITE_OK!=(rc = sqlite3OsSync(pMaster, SQLITE_SYNC_NORMAL))
2059 ){
danielk1977fee2d252007-08-18 10:59:19 +00002060 sqlite3OsCloseFree(pMaster);
2061 sqlite3OsDelete(pVfs, zMaster, 0);
drh633e6d52008-07-28 19:34:53 +00002062 sqlite3DbFree(db, zMaster);
danielk19775865e3d2004-06-14 06:03:57 +00002063 return rc;
2064 }
drhc9e06862004-06-09 20:03:08 +00002065
danielk197713adf8a2004-06-03 16:08:41 +00002066 /* Sync all the db files involved in the transaction. The same call
2067 ** sets the master journal pointer in each individual journal. If
2068 ** an error occurs here, do not delete the master journal file.
2069 **
drh80e35f42007-03-30 14:06:34 +00002070 ** If the error occurs during the first call to
2071 ** sqlite3BtreeCommitPhaseOne(), then there is a chance that the
2072 ** master journal file will be orphaned. But we cannot delete it,
2073 ** in case the master journal file name was written into the journal
shanebe217792009-03-05 04:20:31 +00002074 ** file before the failure occurred.
danielk197713adf8a2004-06-03 16:08:41 +00002075 */
danielk19775bd270b2006-07-25 15:14:52 +00002076 for(i=0; rc==SQLITE_OK && i<db->nDb; i++){
danielk197713adf8a2004-06-03 16:08:41 +00002077 Btree *pBt = db->aDb[i].pBt;
drhd0679ed2007-08-28 22:24:34 +00002078 if( pBt ){
drh80e35f42007-03-30 14:06:34 +00002079 rc = sqlite3BtreeCommitPhaseOne(pBt, zMaster);
danielk197713adf8a2004-06-03 16:08:41 +00002080 }
2081 }
danielk1977fee2d252007-08-18 10:59:19 +00002082 sqlite3OsCloseFree(pMaster);
drhabfb62f2010-07-30 11:20:35 +00002083 assert( rc!=SQLITE_BUSY );
danielk19775bd270b2006-07-25 15:14:52 +00002084 if( rc!=SQLITE_OK ){
drh633e6d52008-07-28 19:34:53 +00002085 sqlite3DbFree(db, zMaster);
danielk19775bd270b2006-07-25 15:14:52 +00002086 return rc;
2087 }
danielk197713adf8a2004-06-03 16:08:41 +00002088
danielk1977962398d2004-06-14 09:35:16 +00002089 /* Delete the master journal file. This commits the transaction. After
2090 ** doing this the directory is synced again before any individual
2091 ** transaction files are deleted.
2092 */
danielk1977fee2d252007-08-18 10:59:19 +00002093 rc = sqlite3OsDelete(pVfs, zMaster, 1);
drh633e6d52008-07-28 19:34:53 +00002094 sqlite3DbFree(db, zMaster);
drhc416ba92007-03-30 18:42:55 +00002095 zMaster = 0;
drh29a01382006-08-13 19:04:18 +00002096 if( rc ){
2097 return rc;
2098 }
danielk197713adf8a2004-06-03 16:08:41 +00002099
2100 /* All files and directories have already been synced, so the following
drh80e35f42007-03-30 14:06:34 +00002101 ** calls to sqlite3BtreeCommitPhaseTwo() are only closing files and
2102 ** deleting or truncating journals. If something goes wrong while
2103 ** this is happening we don't really care. The integrity of the
2104 ** transaction is already guaranteed, but some stray 'cold' journals
2105 ** may be lying around. Returning an error code won't help matters.
danielk197713adf8a2004-06-03 16:08:41 +00002106 */
danielk1977979f38e2007-03-27 16:19:51 +00002107 disable_simulated_io_errors();
danielk19772d1d86f2008-06-20 14:59:51 +00002108 sqlite3BeginBenignMalloc();
danielk197713adf8a2004-06-03 16:08:41 +00002109 for(i=0; i<db->nDb; i++){
2110 Btree *pBt = db->aDb[i].pBt;
2111 if( pBt ){
dan60939d02011-03-29 15:40:55 +00002112 sqlite3BtreeCommitPhaseTwo(pBt, 1);
danielk197713adf8a2004-06-03 16:08:41 +00002113 }
2114 }
danielk19772d1d86f2008-06-20 14:59:51 +00002115 sqlite3EndBenignMalloc();
danielk1977979f38e2007-03-27 16:19:51 +00002116 enable_simulated_io_errors();
2117
danielk1977f9e7dda2006-06-16 16:08:53 +00002118 sqlite3VtabCommit(db);
danielk197713adf8a2004-06-03 16:08:41 +00002119 }
danielk197744ee5bf2005-05-27 09:41:12 +00002120#endif
danielk1977026d2702004-06-14 13:14:59 +00002121
drh2ac3ee92004-06-07 16:27:46 +00002122 return rc;
danielk197713adf8a2004-06-03 16:08:41 +00002123}
2124
danielk19771d850a72004-05-31 08:26:49 +00002125/*
drh4f7d3a52013-06-27 23:54:02 +00002126** This routine checks that the sqlite3.nVdbeActive count variable
danielk19771d850a72004-05-31 08:26:49 +00002127** matches the number of vdbe's in the list sqlite3.pVdbe that are
2128** currently active. An assertion fails if the two counts do not match.
drh92f02c32004-09-02 14:57:08 +00002129** This is an internal self-check only - it is not an essential processing
2130** step.
danielk19771d850a72004-05-31 08:26:49 +00002131**
2132** This is a no-op if NDEBUG is defined.
2133*/
2134#ifndef NDEBUG
drh9bb575f2004-09-06 17:24:11 +00002135static void checkActiveVdbeCnt(sqlite3 *db){
danielk19771d850a72004-05-31 08:26:49 +00002136 Vdbe *p;
2137 int cnt = 0;
drhad4a4b82008-11-05 16:37:34 +00002138 int nWrite = 0;
drh4f7d3a52013-06-27 23:54:02 +00002139 int nRead = 0;
danielk19771d850a72004-05-31 08:26:49 +00002140 p = db->pVdbe;
2141 while( p ){
drh92f02c32004-09-02 14:57:08 +00002142 if( p->magic==VDBE_MAGIC_RUN && p->pc>=0 ){
danielk19771d850a72004-05-31 08:26:49 +00002143 cnt++;
drhad4a4b82008-11-05 16:37:34 +00002144 if( p->readOnly==0 ) nWrite++;
drh1713afb2013-06-28 01:24:57 +00002145 if( p->bIsReader ) nRead++;
danielk19771d850a72004-05-31 08:26:49 +00002146 }
2147 p = p->pNext;
2148 }
drh4f7d3a52013-06-27 23:54:02 +00002149 assert( cnt==db->nVdbeActive );
2150 assert( nWrite==db->nVdbeWrite );
2151 assert( nRead==db->nVdbeRead );
danielk19771d850a72004-05-31 08:26:49 +00002152}
2153#else
2154#define checkActiveVdbeCnt(x)
2155#endif
2156
danielk19773cf86062004-05-26 10:11:05 +00002157/*
danielk1977bd434552009-03-18 10:33:00 +00002158** If the Vdbe passed as the first argument opened a statement-transaction,
2159** close it now. Argument eOp must be either SAVEPOINT_ROLLBACK or
2160** SAVEPOINT_RELEASE. If it is SAVEPOINT_ROLLBACK, then the statement
2161** transaction is rolled back. If eOp is SAVEPOINT_RELEASE, then the
drhf7b54962013-05-28 12:11:54 +00002162** statement transaction is committed.
danielk1977bd434552009-03-18 10:33:00 +00002163**
2164** If an IO error occurs, an SQLITE_IOERR_XXX error code is returned.
2165** Otherwise SQLITE_OK.
2166*/
2167int sqlite3VdbeCloseStatement(Vdbe *p, int eOp){
danielk1977c926b6a2009-03-20 14:42:11 +00002168 sqlite3 *const db = p->db;
danielk1977bd434552009-03-18 10:33:00 +00002169 int rc = SQLITE_OK;
danielk1977ecaecf92009-07-08 08:05:35 +00002170
danielk1977e4948172009-07-17 17:25:43 +00002171 /* If p->iStatement is greater than zero, then this Vdbe opened a
2172 ** statement transaction that should be closed here. The only exception
mistachkin48864df2013-03-21 21:20:32 +00002173 ** is that an IO error may have occurred, causing an emergency rollback.
danielk1977e4948172009-07-17 17:25:43 +00002174 ** In this case (db->nStatement==0), and there is nothing to do.
2175 */
2176 if( db->nStatement && p->iStatement ){
danielk1977bd434552009-03-18 10:33:00 +00002177 int i;
2178 const int iSavepoint = p->iStatement-1;
danielk1977bd434552009-03-18 10:33:00 +00002179
2180 assert( eOp==SAVEPOINT_ROLLBACK || eOp==SAVEPOINT_RELEASE);
2181 assert( db->nStatement>0 );
2182 assert( p->iStatement==(db->nStatement+db->nSavepoint) );
2183
2184 for(i=0; i<db->nDb; i++){
2185 int rc2 = SQLITE_OK;
2186 Btree *pBt = db->aDb[i].pBt;
2187 if( pBt ){
2188 if( eOp==SAVEPOINT_ROLLBACK ){
2189 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_ROLLBACK, iSavepoint);
2190 }
2191 if( rc2==SQLITE_OK ){
2192 rc2 = sqlite3BtreeSavepoint(pBt, SAVEPOINT_RELEASE, iSavepoint);
2193 }
2194 if( rc==SQLITE_OK ){
2195 rc = rc2;
2196 }
2197 }
2198 }
2199 db->nStatement--;
2200 p->iStatement = 0;
dan1da40a32009-09-19 17:00:31 +00002201
dana311b802011-04-26 19:21:34 +00002202 if( rc==SQLITE_OK ){
2203 if( eOp==SAVEPOINT_ROLLBACK ){
2204 rc = sqlite3VtabSavepoint(db, SAVEPOINT_ROLLBACK, iSavepoint);
2205 }
2206 if( rc==SQLITE_OK ){
2207 rc = sqlite3VtabSavepoint(db, SAVEPOINT_RELEASE, iSavepoint);
2208 }
2209 }
2210
dan1da40a32009-09-19 17:00:31 +00002211 /* If the statement transaction is being rolled back, also restore the
2212 ** database handles deferred constraint counter to the value it had when
2213 ** the statement transaction was opened. */
2214 if( eOp==SAVEPOINT_ROLLBACK ){
2215 db->nDeferredCons = p->nStmtDefCons;
drh648e2642013-07-11 15:03:32 +00002216 db->nDeferredImmCons = p->nStmtDefImmCons;
dan1da40a32009-09-19 17:00:31 +00002217 }
danielk1977bd434552009-03-18 10:33:00 +00002218 }
2219 return rc;
2220}
2221
2222/*
dan1da40a32009-09-19 17:00:31 +00002223** This function is called when a transaction opened by the database
2224** handle associated with the VM passed as an argument is about to be
2225** committed. If there are outstanding deferred foreign key constraint
2226** violations, return SQLITE_ERROR. Otherwise, SQLITE_OK.
2227**
2228** If there are outstanding FK violations and this function returns
drhd91c1a12013-02-09 13:58:25 +00002229** SQLITE_ERROR, set the result of the VM to SQLITE_CONSTRAINT_FOREIGNKEY
2230** and write an error message to it. Then return SQLITE_ERROR.
dan1da40a32009-09-19 17:00:31 +00002231*/
2232#ifndef SQLITE_OMIT_FOREIGN_KEY
dan32b09f22009-09-23 17:29:59 +00002233int sqlite3VdbeCheckFk(Vdbe *p, int deferred){
dan1da40a32009-09-19 17:00:31 +00002234 sqlite3 *db = p->db;
drh648e2642013-07-11 15:03:32 +00002235 if( (deferred && (db->nDeferredCons+db->nDeferredImmCons)>0)
2236 || (!deferred && p->nFkConstraint>0)
2237 ){
drhd91c1a12013-02-09 13:58:25 +00002238 p->rc = SQLITE_CONSTRAINT_FOREIGNKEY;
dan32b09f22009-09-23 17:29:59 +00002239 p->errorAction = OE_Abort;
drhf9c8ce32013-11-05 13:33:55 +00002240 sqlite3SetString(&p->zErrMsg, db, "FOREIGN KEY constraint failed");
dan1da40a32009-09-19 17:00:31 +00002241 return SQLITE_ERROR;
2242 }
2243 return SQLITE_OK;
2244}
2245#endif
2246
2247/*
drh92f02c32004-09-02 14:57:08 +00002248** This routine is called the when a VDBE tries to halt. If the VDBE
2249** has made changes and is in autocommit mode, then commit those
2250** changes. If a rollback is needed, then do the rollback.
drh9a324642003-09-06 20:12:01 +00002251**
drh92f02c32004-09-02 14:57:08 +00002252** This routine is the only way to move the state of a VM from
drhff0587c2007-08-29 17:43:19 +00002253** SQLITE_MAGIC_RUN to SQLITE_MAGIC_HALT. It is harmless to
2254** call this on a VM that is in the SQLITE_MAGIC_HALT state.
drh92f02c32004-09-02 14:57:08 +00002255**
2256** Return an error code. If the commit could not complete because of
2257** lock contention, return SQLITE_BUSY. If SQLITE_BUSY is returned, it
2258** means the close did not happen and needs to be repeated.
drh9a324642003-09-06 20:12:01 +00002259*/
drhff0587c2007-08-29 17:43:19 +00002260int sqlite3VdbeHalt(Vdbe *p){
danielk1977bd434552009-03-18 10:33:00 +00002261 int rc; /* Used to store transient return codes */
drh9bb575f2004-09-06 17:24:11 +00002262 sqlite3 *db = p->db;
danielk197707cb5602006-01-20 10:55:05 +00002263
2264 /* This function contains the logic that determines if a statement or
2265 ** transaction will be committed or rolled back as a result of the
2266 ** execution of this virtual machine.
2267 **
drh71b890a2007-10-03 15:30:52 +00002268 ** If any of the following errors occur:
danielk197707cb5602006-01-20 10:55:05 +00002269 **
drh71b890a2007-10-03 15:30:52 +00002270 ** SQLITE_NOMEM
2271 ** SQLITE_IOERR
2272 ** SQLITE_FULL
2273 ** SQLITE_INTERRUPT
danielk197707cb5602006-01-20 10:55:05 +00002274 **
drh71b890a2007-10-03 15:30:52 +00002275 ** Then the internal cache might have been left in an inconsistent
2276 ** state. We need to rollback the statement transaction, if there is
2277 ** one, or the complete transaction if there is no statement transaction.
danielk197707cb5602006-01-20 10:55:05 +00002278 */
drh9a324642003-09-06 20:12:01 +00002279
drh17435752007-08-16 04:30:38 +00002280 if( p->db->mallocFailed ){
danielk1977261919c2005-12-06 12:52:59 +00002281 p->rc = SQLITE_NOMEM;
2282 }
drh6e856bc2011-12-09 18:06:44 +00002283 if( p->aOnceFlag ) memset(p->aOnceFlag, 0, p->nOnceFlag);
drh5f82e3c2009-07-06 00:44:08 +00002284 closeAllCursors(p);
drh92f02c32004-09-02 14:57:08 +00002285 if( p->magic!=VDBE_MAGIC_RUN ){
drh92f02c32004-09-02 14:57:08 +00002286 return SQLITE_OK;
drh9a324642003-09-06 20:12:01 +00002287 }
danielk19771d850a72004-05-31 08:26:49 +00002288 checkActiveVdbeCnt(db);
danielk1977261919c2005-12-06 12:52:59 +00002289
danc0537fe2013-06-28 19:41:43 +00002290 /* No commit or rollback needed if the program never started or if the
2291 ** SQL statement does not read or write a database file. */
2292 if( p->pc>=0 && p->bIsReader ){
drhaac2f552006-09-23 21:44:23 +00002293 int mrc; /* Primary error code from p->rc */
danielk1977bd434552009-03-18 10:33:00 +00002294 int eStatementOp = 0;
2295 int isSpecialError; /* Set to true if a 'special' error */
drhff0587c2007-08-29 17:43:19 +00002296
2297 /* Lock all btrees used by the statement */
drhbdaec522011-04-04 00:14:43 +00002298 sqlite3VdbeEnter(p);
drhff0587c2007-08-29 17:43:19 +00002299
drh71b890a2007-10-03 15:30:52 +00002300 /* Check for one of the special errors */
drhaac2f552006-09-23 21:44:23 +00002301 mrc = p->rc & 0xff;
drhfa3be902009-07-07 02:44:07 +00002302 assert( p->rc!=SQLITE_IOERR_BLOCKED ); /* This error no longer exists */
drh71b890a2007-10-03 15:30:52 +00002303 isSpecialError = mrc==SQLITE_NOMEM || mrc==SQLITE_IOERR
drh77658e22007-12-04 16:54:52 +00002304 || mrc==SQLITE_INTERRUPT || mrc==SQLITE_FULL;
danielk197707cb5602006-01-20 10:55:05 +00002305 if( isSpecialError ){
dan5653e4d2010-08-12 11:25:47 +00002306 /* If the query was read-only and the error code is SQLITE_INTERRUPT,
2307 ** no rollback is necessary. Otherwise, at least a savepoint
2308 ** transaction must be rolled back to restore the database to a
2309 ** consistent state.
2310 **
2311 ** Even if the statement is read-only, it is important to perform
2312 ** a statement or transaction rollback operation. If the error
mistachkin48864df2013-03-21 21:20:32 +00002313 ** occurred while writing to the journal, sub-journal or database
dan5653e4d2010-08-12 11:25:47 +00002314 ** file as part of an effort to free up cache space (see function
2315 ** pagerStress() in pager.c), the rollback is required to restore
2316 ** the pager to a consistent state.
danielk197707cb5602006-01-20 10:55:05 +00002317 */
drhad4a4b82008-11-05 16:37:34 +00002318 if( !p->readOnly || mrc!=SQLITE_INTERRUPT ){
drhfa3be902009-07-07 02:44:07 +00002319 if( (mrc==SQLITE_NOMEM || mrc==SQLITE_FULL) && p->usesStmtJournal ){
danielk1977bd434552009-03-18 10:33:00 +00002320 eStatementOp = SAVEPOINT_ROLLBACK;
danielk197707cb5602006-01-20 10:55:05 +00002321 }else{
2322 /* We are forced to roll back the active transaction. Before doing
2323 ** so, abort any other statements this handle currently has active.
2324 */
drh21021a52012-02-13 17:01:51 +00002325 sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK);
danielk1977fc158bf2009-01-07 08:12:16 +00002326 sqlite3CloseSavepoints(db);
danielk197707cb5602006-01-20 10:55:05 +00002327 db->autoCommit = 1;
2328 }
danielk1977261919c2005-12-06 12:52:59 +00002329 }
2330 }
dan32b09f22009-09-23 17:29:59 +00002331
2332 /* Check for immediate foreign key violations. */
2333 if( p->rc==SQLITE_OK ){
2334 sqlite3VdbeCheckFk(p, 0);
2335 }
danielk197707cb5602006-01-20 10:55:05 +00002336
danielk1977bd434552009-03-18 10:33:00 +00002337 /* If the auto-commit flag is set and this is the only active writer
2338 ** VM, then we do either a commit or rollback of the current transaction.
danielk197707cb5602006-01-20 10:55:05 +00002339 **
2340 ** Note: This block also runs if one of the special errors handled
drhad4a4b82008-11-05 16:37:34 +00002341 ** above has occurred.
danielk197707cb5602006-01-20 10:55:05 +00002342 */
danielk1977093e0f62008-11-13 18:00:14 +00002343 if( !sqlite3VtabInSync(db)
2344 && db->autoCommit
drh4f7d3a52013-06-27 23:54:02 +00002345 && db->nVdbeWrite==(p->readOnly==0)
danielk1977093e0f62008-11-13 18:00:14 +00002346 ){
danielk197707cb5602006-01-20 10:55:05 +00002347 if( p->rc==SQLITE_OK || (p->errorAction==OE_Fail && !isSpecialError) ){
dan19611b12011-01-24 16:00:58 +00002348 rc = sqlite3VdbeCheckFk(p, 1);
2349 if( rc!=SQLITE_OK ){
drhe9ce5852011-02-11 22:54:28 +00002350 if( NEVER(p->readOnly) ){
drhbdaec522011-04-04 00:14:43 +00002351 sqlite3VdbeLeave(p);
dan19611b12011-01-24 16:00:58 +00002352 return SQLITE_ERROR;
2353 }
drhd91c1a12013-02-09 13:58:25 +00002354 rc = SQLITE_CONSTRAINT_FOREIGNKEY;
dan19611b12011-01-24 16:00:58 +00002355 }else{
2356 /* The auto-commit flag is true, the vdbe program was successful
2357 ** or hit an 'OR FAIL' constraint and there are no deferred foreign
2358 ** key constraints to hold up the transaction. This means a commit
2359 ** is required. */
2360 rc = vdbeCommit(db, p);
dan1da40a32009-09-19 17:00:31 +00002361 }
dan19611b12011-01-24 16:00:58 +00002362 if( rc==SQLITE_BUSY && p->readOnly ){
drhbdaec522011-04-04 00:14:43 +00002363 sqlite3VdbeLeave(p);
danielk197707cb5602006-01-20 10:55:05 +00002364 return SQLITE_BUSY;
2365 }else if( rc!=SQLITE_OK ){
2366 p->rc = rc;
drh0f198a72012-02-13 16:43:16 +00002367 sqlite3RollbackAll(db, SQLITE_OK);
danielk197707cb5602006-01-20 10:55:05 +00002368 }else{
dan1da40a32009-09-19 17:00:31 +00002369 db->nDeferredCons = 0;
drh648e2642013-07-11 15:03:32 +00002370 db->nDeferredImmCons = 0;
2371 db->flags &= ~SQLITE_DeferFKs;
danielk197707cb5602006-01-20 10:55:05 +00002372 sqlite3CommitInternalChanges(db);
2373 }
2374 }else{
drh0f198a72012-02-13 16:43:16 +00002375 sqlite3RollbackAll(db, SQLITE_OK);
danielk197707cb5602006-01-20 10:55:05 +00002376 }
danielk1977bd434552009-03-18 10:33:00 +00002377 db->nStatement = 0;
2378 }else if( eStatementOp==0 ){
danielk197707cb5602006-01-20 10:55:05 +00002379 if( p->rc==SQLITE_OK || p->errorAction==OE_Fail ){
danielk1977bd434552009-03-18 10:33:00 +00002380 eStatementOp = SAVEPOINT_RELEASE;
danielk197707cb5602006-01-20 10:55:05 +00002381 }else if( p->errorAction==OE_Abort ){
danielk1977bd434552009-03-18 10:33:00 +00002382 eStatementOp = SAVEPOINT_ROLLBACK;
danielk197707cb5602006-01-20 10:55:05 +00002383 }else{
drh21021a52012-02-13 17:01:51 +00002384 sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK);
danielk1977fc158bf2009-01-07 08:12:16 +00002385 sqlite3CloseSavepoints(db);
danielk197707cb5602006-01-20 10:55:05 +00002386 db->autoCommit = 1;
2387 }
danielk19771d850a72004-05-31 08:26:49 +00002388 }
danielk197707cb5602006-01-20 10:55:05 +00002389
danielk1977bd434552009-03-18 10:33:00 +00002390 /* If eStatementOp is non-zero, then a statement transaction needs to
2391 ** be committed or rolled back. Call sqlite3VdbeCloseStatement() to
2392 ** do so. If this operation returns an error, and the current statement
drh35173242010-03-08 21:40:13 +00002393 ** error code is SQLITE_OK or SQLITE_CONSTRAINT, then promote the
2394 ** current statement error code.
danielk197707cb5602006-01-20 10:55:05 +00002395 */
danielk1977bd434552009-03-18 10:33:00 +00002396 if( eStatementOp ){
2397 rc = sqlite3VdbeCloseStatement(p, eStatementOp);
dan40ad9d22010-06-03 09:17:38 +00002398 if( rc ){
drhd91c1a12013-02-09 13:58:25 +00002399 if( p->rc==SQLITE_OK || (p->rc&0xff)==SQLITE_CONSTRAINT ){
dan40ad9d22010-06-03 09:17:38 +00002400 p->rc = rc;
2401 sqlite3DbFree(db, p->zErrMsg);
2402 p->zErrMsg = 0;
2403 }
drh21021a52012-02-13 17:01:51 +00002404 sqlite3RollbackAll(db, SQLITE_ABORT_ROLLBACK);
dan40ad9d22010-06-03 09:17:38 +00002405 sqlite3CloseSavepoints(db);
2406 db->autoCommit = 1;
danielk197707cb5602006-01-20 10:55:05 +00002407 }
danielk197777d83ba2004-05-31 10:08:14 +00002408 }
danielk197707cb5602006-01-20 10:55:05 +00002409
danielk1977bd434552009-03-18 10:33:00 +00002410 /* If this was an INSERT, UPDATE or DELETE and no statement transaction
2411 ** has been rolled back, update the database connection change-counter.
danielk197707cb5602006-01-20 10:55:05 +00002412 */
drh6be240e2009-07-14 02:33:02 +00002413 if( p->changeCntOn ){
danielk1977bd434552009-03-18 10:33:00 +00002414 if( eStatementOp!=SAVEPOINT_ROLLBACK ){
danielk197707cb5602006-01-20 10:55:05 +00002415 sqlite3VdbeSetChanges(db, p->nChange);
2416 }else{
2417 sqlite3VdbeSetChanges(db, 0);
2418 }
2419 p->nChange = 0;
danielk1977b28af712004-06-21 06:50:26 +00002420 }
drhff0587c2007-08-29 17:43:19 +00002421
2422 /* Release the locks */
drhbdaec522011-04-04 00:14:43 +00002423 sqlite3VdbeLeave(p);
drh9a324642003-09-06 20:12:01 +00002424 }
danielk19771d850a72004-05-31 08:26:49 +00002425
danielk197765fd59f2006-06-24 11:51:33 +00002426 /* We have successfully halted and closed the VM. Record this fact. */
2427 if( p->pc>=0 ){
drh4f7d3a52013-06-27 23:54:02 +00002428 db->nVdbeActive--;
2429 if( !p->readOnly ) db->nVdbeWrite--;
drh1713afb2013-06-28 01:24:57 +00002430 if( p->bIsReader ) db->nVdbeRead--;
drh4f7d3a52013-06-27 23:54:02 +00002431 assert( db->nVdbeActive>=db->nVdbeRead );
2432 assert( db->nVdbeRead>=db->nVdbeWrite );
2433 assert( db->nVdbeWrite>=0 );
drh9a324642003-09-06 20:12:01 +00002434 }
drh92f02c32004-09-02 14:57:08 +00002435 p->magic = VDBE_MAGIC_HALT;
2436 checkActiveVdbeCnt(db);
drhff0587c2007-08-29 17:43:19 +00002437 if( p->db->mallocFailed ){
2438 p->rc = SQLITE_NOMEM;
2439 }
danielk19771d850a72004-05-31 08:26:49 +00002440
danielk1977404ca072009-03-16 13:19:36 +00002441 /* If the auto-commit flag is set to true, then any locks that were held
2442 ** by connection db have now been released. Call sqlite3ConnectionUnlocked()
2443 ** to invoke any required unlock-notify callbacks.
2444 */
2445 if( db->autoCommit ){
2446 sqlite3ConnectionUnlocked(db);
2447 }
2448
drh4f7d3a52013-06-27 23:54:02 +00002449 assert( db->nVdbeActive>0 || db->autoCommit==0 || db->nStatement==0 );
dan19611b12011-01-24 16:00:58 +00002450 return (p->rc==SQLITE_BUSY ? SQLITE_BUSY : SQLITE_OK);
drh92f02c32004-09-02 14:57:08 +00002451}
drh4cf7c7f2007-08-28 23:28:07 +00002452
drh92f02c32004-09-02 14:57:08 +00002453
2454/*
drh3c23a882007-01-09 14:01:13 +00002455** Each VDBE holds the result of the most recent sqlite3_step() call
2456** in p->rc. This routine sets that result back to SQLITE_OK.
2457*/
2458void sqlite3VdbeResetStepResult(Vdbe *p){
2459 p->rc = SQLITE_OK;
2460}
2461
2462/*
dan029ead62011-10-27 15:19:58 +00002463** Copy the error code and error message belonging to the VDBE passed
2464** as the first argument to its database handle (so that they will be
2465** returned by calls to sqlite3_errcode() and sqlite3_errmsg()).
2466**
2467** This function does not clear the VDBE error code or message, just
2468** copies them to the database handle.
2469*/
2470int sqlite3VdbeTransferError(Vdbe *p){
2471 sqlite3 *db = p->db;
2472 int rc = p->rc;
2473 if( p->zErrMsg ){
drh81bdd6d2011-10-29 01:33:24 +00002474 u8 mallocFailed = db->mallocFailed;
dan029ead62011-10-27 15:19:58 +00002475 sqlite3BeginBenignMalloc();
drha3cc0072013-12-13 16:23:55 +00002476 if( db->pErr==0 ) db->pErr = sqlite3ValueNew(db);
dan029ead62011-10-27 15:19:58 +00002477 sqlite3ValueSetStr(db->pErr, -1, p->zErrMsg, SQLITE_UTF8, SQLITE_TRANSIENT);
2478 sqlite3EndBenignMalloc();
drh81bdd6d2011-10-29 01:33:24 +00002479 db->mallocFailed = mallocFailed;
dan029ead62011-10-27 15:19:58 +00002480 db->errCode = rc;
2481 }else{
2482 sqlite3Error(db, rc, 0);
2483 }
2484 return rc;
2485}
2486
danac455932012-11-26 19:50:41 +00002487#ifdef SQLITE_ENABLE_SQLLOG
2488/*
2489** If an SQLITE_CONFIG_SQLLOG hook is registered and the VM has been run,
2490** invoke it.
2491*/
2492static void vdbeInvokeSqllog(Vdbe *v){
2493 if( sqlite3GlobalConfig.xSqllog && v->rc==SQLITE_OK && v->zSql && v->pc>=0 ){
2494 char *zExpanded = sqlite3VdbeExpandSql(v, v->zSql);
2495 assert( v->db->init.busy==0 );
2496 if( zExpanded ){
2497 sqlite3GlobalConfig.xSqllog(
2498 sqlite3GlobalConfig.pSqllogArg, v->db, zExpanded, 1
2499 );
2500 sqlite3DbFree(v->db, zExpanded);
2501 }
2502 }
2503}
2504#else
2505# define vdbeInvokeSqllog(x)
2506#endif
2507
dan029ead62011-10-27 15:19:58 +00002508/*
drh92f02c32004-09-02 14:57:08 +00002509** Clean up a VDBE after execution but do not delete the VDBE just yet.
2510** Write any error messages into *pzErrMsg. Return the result code.
2511**
2512** After this routine is run, the VDBE should be ready to be executed
2513** again.
2514**
2515** To look at it another way, this routine resets the state of the
2516** virtual machine from VDBE_MAGIC_RUN or VDBE_MAGIC_HALT back to
2517** VDBE_MAGIC_INIT.
2518*/
drhc890fec2008-08-01 20:10:08 +00002519int sqlite3VdbeReset(Vdbe *p){
drh4ac285a2006-09-15 07:28:50 +00002520 sqlite3 *db;
drh4ac285a2006-09-15 07:28:50 +00002521 db = p->db;
drh92f02c32004-09-02 14:57:08 +00002522
2523 /* If the VM did not run to completion or if it encountered an
2524 ** error, then it might not have been halted properly. So halt
2525 ** it now.
2526 */
2527 sqlite3VdbeHalt(p);
2528
drhfb7e7652005-01-24 00:28:42 +00002529 /* If the VDBE has be run even partially, then transfer the error code
2530 ** and error message from the VDBE into the main database structure. But
2531 ** if the VDBE has just been set to run but has not actually executed any
2532 ** instructions yet, leave the main database error information unchanged.
drh92f02c32004-09-02 14:57:08 +00002533 */
drhfb7e7652005-01-24 00:28:42 +00002534 if( p->pc>=0 ){
danac455932012-11-26 19:50:41 +00002535 vdbeInvokeSqllog(p);
dan029ead62011-10-27 15:19:58 +00002536 sqlite3VdbeTransferError(p);
2537 sqlite3DbFree(db, p->zErrMsg);
2538 p->zErrMsg = 0;
drh4611d922010-02-25 14:47:01 +00002539 if( p->runOnlyOnce ) p->expired = 1;
danielk1977a21c6b62005-01-24 10:25:59 +00002540 }else if( p->rc && p->expired ){
2541 /* The expired flag was set on the VDBE before the first call
2542 ** to sqlite3_step(). For consistency (since sqlite3_step() was
2543 ** called), set the database error in this case as well.
2544 */
drha3cc0072013-12-13 16:23:55 +00002545 sqlite3Error(db, p->rc, p->zErrMsg ? "%s" : 0, p->zErrMsg);
drh633e6d52008-07-28 19:34:53 +00002546 sqlite3DbFree(db, p->zErrMsg);
danielk19778e556522007-11-13 10:30:24 +00002547 p->zErrMsg = 0;
drh92f02c32004-09-02 14:57:08 +00002548 }
2549
2550 /* Reclaim all memory used by the VDBE
2551 */
drhc890fec2008-08-01 20:10:08 +00002552 Cleanup(p);
drh92f02c32004-09-02 14:57:08 +00002553
2554 /* Save profiling information from this VDBE run.
2555 */
drh9a324642003-09-06 20:12:01 +00002556#ifdef VDBE_PROFILE
2557 {
2558 FILE *out = fopen("vdbe_profile.out", "a");
2559 if( out ){
2560 int i;
2561 fprintf(out, "---- ");
2562 for(i=0; i<p->nOp; i++){
2563 fprintf(out, "%02x", p->aOp[i].opcode);
2564 }
2565 fprintf(out, "\n");
2566 for(i=0; i<p->nOp; i++){
2567 fprintf(out, "%6d %10lld %8lld ",
2568 p->aOp[i].cnt,
2569 p->aOp[i].cycles,
2570 p->aOp[i].cnt>0 ? p->aOp[i].cycles/p->aOp[i].cnt : 0
2571 );
danielk19774adee202004-05-08 08:23:19 +00002572 sqlite3VdbePrintOp(out, i, &p->aOp[i]);
drh9a324642003-09-06 20:12:01 +00002573 }
2574 fclose(out);
2575 }
2576 }
2577#endif
drh7fa20922013-09-17 23:36:33 +00002578 p->iCurrentTime = 0;
drh9a324642003-09-06 20:12:01 +00002579 p->magic = VDBE_MAGIC_INIT;
drh4ac285a2006-09-15 07:28:50 +00002580 return p->rc & db->errMask;
drh9a324642003-09-06 20:12:01 +00002581}
drh92f02c32004-09-02 14:57:08 +00002582
drh9a324642003-09-06 20:12:01 +00002583/*
2584** Clean up and delete a VDBE after execution. Return an integer which is
2585** the result code. Write any error message text into *pzErrMsg.
2586*/
danielk19779e6db7d2004-06-21 08:18:51 +00002587int sqlite3VdbeFinalize(Vdbe *p){
danielk1977b5548a82004-06-26 13:51:33 +00002588 int rc = SQLITE_OK;
danielk1977b5548a82004-06-26 13:51:33 +00002589 if( p->magic==VDBE_MAGIC_RUN || p->magic==VDBE_MAGIC_HALT ){
drhc890fec2008-08-01 20:10:08 +00002590 rc = sqlite3VdbeReset(p);
drh4ac285a2006-09-15 07:28:50 +00002591 assert( (rc & p->db->errMask)==rc );
drh9a324642003-09-06 20:12:01 +00002592 }
danielk19774adee202004-05-08 08:23:19 +00002593 sqlite3VdbeDelete(p);
drh9a324642003-09-06 20:12:01 +00002594 return rc;
2595}
2596
2597/*
dan0c547792013-07-18 17:12:08 +00002598** If parameter iOp is less than zero, then invoke the destructor for
2599** all auxiliary data pointers currently cached by the VM passed as
2600** the first argument.
2601**
2602** Or, if iOp is greater than or equal to zero, then the destructor is
2603** only invoked for those auxiliary data pointers created by the user
2604** function invoked by the OP_Function opcode at instruction iOp of
2605** VM pVdbe, and only then if:
2606**
2607** * the associated function parameter is the 32nd or later (counting
2608** from left to right), or
2609**
2610** * the corresponding bit in argument mask is clear (where the first
2611** function parameter corrsponds to bit 0 etc.).
drhf92c7ff2004-06-19 15:40:23 +00002612*/
dan0c547792013-07-18 17:12:08 +00002613void sqlite3VdbeDeleteAuxData(Vdbe *pVdbe, int iOp, int mask){
2614 AuxData **pp = &pVdbe->pAuxData;
2615 while( *pp ){
2616 AuxData *pAux = *pp;
2617 if( (iOp<0)
2618 || (pAux->iOp==iOp && (pAux->iArg>31 || !(mask & ((u32)1<<pAux->iArg))))
2619 ){
drhf92c7ff2004-06-19 15:40:23 +00002620 if( pAux->xDelete ){
2621 pAux->xDelete(pAux->pAux);
2622 }
dan0c547792013-07-18 17:12:08 +00002623 *pp = pAux->pNext;
2624 sqlite3DbFree(pVdbe->db, pAux);
2625 }else{
2626 pp= &pAux->pNext;
drhf92c7ff2004-06-19 15:40:23 +00002627 }
2628 }
2629}
2630
2631/*
drhcb103b92012-10-26 00:11:23 +00002632** Free all memory associated with the Vdbe passed as the second argument,
2633** except for object itself, which is preserved.
2634**
dand46def72010-07-24 11:28:28 +00002635** The difference between this function and sqlite3VdbeDelete() is that
2636** VdbeDelete() also unlinks the Vdbe from the list of VMs associated with
drhcb103b92012-10-26 00:11:23 +00002637** the database connection and frees the object itself.
dand46def72010-07-24 11:28:28 +00002638*/
drhcb103b92012-10-26 00:11:23 +00002639void sqlite3VdbeClearObject(sqlite3 *db, Vdbe *p){
dand19c9332010-07-26 12:05:17 +00002640 SubProgram *pSub, *pNext;
drh124c0b42011-06-01 18:15:55 +00002641 int i;
dand46def72010-07-24 11:28:28 +00002642 assert( p->db==0 || p->db==db );
2643 releaseMemArray(p->aVar, p->nVar);
2644 releaseMemArray(p->aColName, p->nResColumn*COLNAME_N);
dand19c9332010-07-26 12:05:17 +00002645 for(pSub=p->pProgram; pSub; pSub=pNext){
2646 pNext = pSub->pNext;
2647 vdbeFreeOpArray(db, pSub->aOp, pSub->nOp);
2648 sqlite3DbFree(db, pSub);
2649 }
drh124c0b42011-06-01 18:15:55 +00002650 for(i=p->nzVar-1; i>=0; i--) sqlite3DbFree(db, p->azVar[i]);
dand46def72010-07-24 11:28:28 +00002651 vdbeFreeOpArray(db, p->aOp, p->nOp);
dand46def72010-07-24 11:28:28 +00002652 sqlite3DbFree(db, p->aColName);
2653 sqlite3DbFree(db, p->zSql);
2654 sqlite3DbFree(db, p->pFree);
drh678a9aa2011-12-10 15:55:01 +00002655#if defined(SQLITE_ENABLE_TREE_EXPLAIN)
drh25fe97a2013-01-23 18:44:22 +00002656 sqlite3DbFree(db, p->zExplain);
drh678a9aa2011-12-10 15:55:01 +00002657 sqlite3DbFree(db, p->pExplain);
drh7e02e5e2011-12-06 19:44:51 +00002658#endif
dand46def72010-07-24 11:28:28 +00002659}
2660
2661/*
drh9a324642003-09-06 20:12:01 +00002662** Delete an entire VDBE.
2663*/
danielk19774adee202004-05-08 08:23:19 +00002664void sqlite3VdbeDelete(Vdbe *p){
drh633e6d52008-07-28 19:34:53 +00002665 sqlite3 *db;
2666
drhfa3be902009-07-07 02:44:07 +00002667 if( NEVER(p==0) ) return;
drh633e6d52008-07-28 19:34:53 +00002668 db = p->db;
drh4245c402012-06-02 14:32:21 +00002669 assert( sqlite3_mutex_held(db->mutex) );
drhcb103b92012-10-26 00:11:23 +00002670 sqlite3VdbeClearObject(db, p);
drh9a324642003-09-06 20:12:01 +00002671 if( p->pPrev ){
2672 p->pPrev->pNext = p->pNext;
2673 }else{
drh633e6d52008-07-28 19:34:53 +00002674 assert( db->pVdbe==p );
2675 db->pVdbe = p->pNext;
drh9a324642003-09-06 20:12:01 +00002676 }
2677 if( p->pNext ){
2678 p->pNext->pPrev = p->pPrev;
2679 }
drh9a324642003-09-06 20:12:01 +00002680 p->magic = VDBE_MAGIC_DEAD;
drh87f5c5f2010-01-20 01:20:56 +00002681 p->db = 0;
drhcb103b92012-10-26 00:11:23 +00002682 sqlite3DbFree(db, p);
drh9a324642003-09-06 20:12:01 +00002683}
drha11846b2004-01-07 18:52:56 +00002684
2685/*
drh9a65f2c2009-06-22 19:05:40 +00002686** Make sure the cursor p is ready to read or write the row to which it
2687** was last positioned. Return an error code if an OOM fault or I/O error
2688** prevents us from positioning the cursor to its correct position.
2689**
drha11846b2004-01-07 18:52:56 +00002690** If a MoveTo operation is pending on the given cursor, then do that
drh9a65f2c2009-06-22 19:05:40 +00002691** MoveTo now. If no move is pending, check to see if the row has been
2692** deleted out from under the cursor and if it has, mark the row as
2693** a NULL row.
2694**
2695** If the cursor is already pointing to the correct row and that row has
2696** not been deleted out from under the cursor, then this routine is a no-op.
drha11846b2004-01-07 18:52:56 +00002697*/
drhdfe88ec2008-11-03 20:55:06 +00002698int sqlite3VdbeCursorMoveto(VdbeCursor *p){
drha11846b2004-01-07 18:52:56 +00002699 if( p->deferredMoveto ){
drh536065a2005-01-26 21:55:31 +00002700 int res, rc;
adamd4fc93082006-09-14 16:57:19 +00002701#ifdef SQLITE_TEST
danielk1977132872b2004-05-10 10:37:18 +00002702 extern int sqlite3_search_count;
adamd4fc93082006-09-14 16:57:19 +00002703#endif
drhf0863fe2005-06-12 21:35:51 +00002704 assert( p->isTable );
drhe63d9992008-08-13 19:11:48 +00002705 rc = sqlite3BtreeMovetoUnpacked(p->pCursor, 0, p->movetoTarget, 0, &res);
drh536065a2005-01-26 21:55:31 +00002706 if( rc ) return rc;
drhaa736092009-06-22 00:55:30 +00002707 p->lastRowid = p->movetoTarget;
drhbe0b2372010-07-30 18:40:55 +00002708 if( res!=0 ) return SQLITE_CORRUPT_BKPT;
2709 p->rowidIsValid = 1;
drh10cfdd52006-08-08 15:42:59 +00002710#ifdef SQLITE_TEST
danielk1977132872b2004-05-10 10:37:18 +00002711 sqlite3_search_count++;
drh10cfdd52006-08-08 15:42:59 +00002712#endif
drha11846b2004-01-07 18:52:56 +00002713 p->deferredMoveto = 0;
drh76873ab2006-01-07 18:48:26 +00002714 p->cacheStatus = CACHE_STALE;
drh399af1d2013-11-20 17:25:55 +00002715 }else if( p->pCursor ){
drha3460582008-07-11 21:02:53 +00002716 int hasMoved;
2717 int rc = sqlite3BtreeCursorHasMoved(p->pCursor, &hasMoved);
2718 if( rc ) return rc;
2719 if( hasMoved ){
2720 p->cacheStatus = CACHE_STALE;
2721 p->nullRow = 1;
2722 }
drha11846b2004-01-07 18:52:56 +00002723 }
2724 return SQLITE_OK;
2725}
danielk19774adee202004-05-08 08:23:19 +00002726
drhab9f7f12004-05-08 10:56:11 +00002727/*
danielk1977cfcdaef2004-05-12 07:33:33 +00002728** The following functions:
danielk197790e4d952004-05-10 10:05:53 +00002729**
danielk1977cfcdaef2004-05-12 07:33:33 +00002730** sqlite3VdbeSerialType()
2731** sqlite3VdbeSerialTypeLen()
danielk197790e4d952004-05-10 10:05:53 +00002732** sqlite3VdbeSerialLen()
shane92003092008-07-31 01:43:13 +00002733** sqlite3VdbeSerialPut()
2734** sqlite3VdbeSerialGet()
danielk197790e4d952004-05-10 10:05:53 +00002735**
2736** encapsulate the code that serializes values for storage in SQLite
danielk1977cfcdaef2004-05-12 07:33:33 +00002737** data and index records. Each serialized value consists of a
2738** 'serial-type' and a blob of data. The serial type is an 8-byte unsigned
2739** integer, stored as a varint.
danielk197790e4d952004-05-10 10:05:53 +00002740**
danielk1977cfcdaef2004-05-12 07:33:33 +00002741** In an SQLite index record, the serial type is stored directly before
2742** the blob of data that it corresponds to. In a table record, all serial
2743** types are stored at the start of the record, and the blobs of data at
2744** the end. Hence these functions allow the caller to handle the
mistachkin48864df2013-03-21 21:20:32 +00002745** serial-type and data blob separately.
danielk1977cfcdaef2004-05-12 07:33:33 +00002746**
2747** The following table describes the various storage classes for data:
2748**
2749** serial type bytes of data type
danielk197790e4d952004-05-10 10:05:53 +00002750** -------------- --------------- ---------------
drha19b7752004-05-30 21:14:58 +00002751** 0 0 NULL
danielk197790e4d952004-05-10 10:05:53 +00002752** 1 1 signed integer
2753** 2 2 signed integer
drha19b7752004-05-30 21:14:58 +00002754** 3 3 signed integer
2755** 4 4 signed integer
2756** 5 6 signed integer
2757** 6 8 signed integer
2758** 7 8 IEEE float
drhd946db02005-12-29 19:23:06 +00002759** 8 0 Integer constant 0
2760** 9 0 Integer constant 1
2761** 10,11 reserved for expansion
danielk197790e4d952004-05-10 10:05:53 +00002762** N>=12 and even (N-12)/2 BLOB
2763** N>=13 and odd (N-13)/2 text
2764**
drh35a59652006-01-02 18:24:40 +00002765** The 8 and 9 types were added in 3.3.0, file format 4. Prior versions
2766** of SQLite will not understand those serial types.
danielk197790e4d952004-05-10 10:05:53 +00002767*/
2768
2769/*
danielk1977cfcdaef2004-05-12 07:33:33 +00002770** Return the serial-type for the value stored in pMem.
danielk1977192ac1d2004-05-10 07:17:30 +00002771*/
drhd946db02005-12-29 19:23:06 +00002772u32 sqlite3VdbeSerialType(Mem *pMem, int file_format){
danielk1977cfcdaef2004-05-12 07:33:33 +00002773 int flags = pMem->flags;
drhfdf972a2007-05-02 13:30:27 +00002774 int n;
danielk1977cfcdaef2004-05-12 07:33:33 +00002775
2776 if( flags&MEM_Null ){
drha19b7752004-05-30 21:14:58 +00002777 return 0;
danielk197790e4d952004-05-10 10:05:53 +00002778 }
danielk1977cfcdaef2004-05-12 07:33:33 +00002779 if( flags&MEM_Int ){
drhfe2093d2005-01-20 22:48:47 +00002780 /* Figure out whether to use 1, 2, 4, 6 or 8 bytes. */
drh5284a052008-05-08 15:18:10 +00002781# define MAX_6BYTE ((((i64)0x00008000)<<32)-1)
drh3c024d62007-03-30 11:23:45 +00002782 i64 i = pMem->u.i;
drhd946db02005-12-29 19:23:06 +00002783 u64 u;
drhcfd654b2011-03-05 13:54:15 +00002784 if( i<0 ){
2785 if( i<(-MAX_6BYTE) ) return 6;
2786 /* Previous test prevents: u = -(-9223372036854775808) */
2787 u = -i;
2788 }else{
2789 u = i;
2790 }
drh56690b32012-09-17 15:36:31 +00002791 if( u<=127 ){
2792 return ((i&1)==i && file_format>=4) ? 8+(u32)u : 1;
2793 }
drh5742b632005-01-26 17:47:02 +00002794 if( u<=32767 ) return 2;
2795 if( u<=8388607 ) return 3;
2796 if( u<=2147483647 ) return 4;
2797 if( u<=MAX_6BYTE ) return 5;
drha19b7752004-05-30 21:14:58 +00002798 return 6;
danielk197790e4d952004-05-10 10:05:53 +00002799 }
danielk1977cfcdaef2004-05-12 07:33:33 +00002800 if( flags&MEM_Real ){
drha19b7752004-05-30 21:14:58 +00002801 return 7;
danielk197790e4d952004-05-10 10:05:53 +00002802 }
danielk1977e4359752008-11-03 09:39:45 +00002803 assert( pMem->db->mallocFailed || flags&(MEM_Str|MEM_Blob) );
drhfdf972a2007-05-02 13:30:27 +00002804 n = pMem->n;
2805 if( flags & MEM_Zero ){
drh8df32842008-12-09 02:51:23 +00002806 n += pMem->u.nZero;
danielk197790e4d952004-05-10 10:05:53 +00002807 }
drhfdf972a2007-05-02 13:30:27 +00002808 assert( n>=0 );
2809 return ((n*2) + 12 + ((flags&MEM_Str)!=0));
danielk1977192ac1d2004-05-10 07:17:30 +00002810}
2811
2812/*
danielk1977cfcdaef2004-05-12 07:33:33 +00002813** Return the length of the data corresponding to the supplied serial-type.
danielk1977192ac1d2004-05-10 07:17:30 +00002814*/
drh35cd6432009-06-05 14:17:21 +00002815u32 sqlite3VdbeSerialTypeLen(u32 serial_type){
drha19b7752004-05-30 21:14:58 +00002816 if( serial_type>=12 ){
drh51846b52004-05-28 16:00:21 +00002817 return (serial_type-12)/2;
2818 }else{
drh57196282004-10-06 15:41:16 +00002819 static const u8 aSize[] = { 0, 1, 2, 3, 4, 6, 8, 8, 0, 0, 0, 0 };
drh51846b52004-05-28 16:00:21 +00002820 return aSize[serial_type];
2821 }
danielk1977192ac1d2004-05-10 07:17:30 +00002822}
2823
2824/*
drh110daac2007-05-04 11:59:31 +00002825** If we are on an architecture with mixed-endian floating
drh7a4f5022007-05-23 07:20:08 +00002826** points (ex: ARM7) then swap the lower 4 bytes with the
drh110daac2007-05-04 11:59:31 +00002827** upper 4 bytes. Return the result.
2828**
drh7a4f5022007-05-23 07:20:08 +00002829** For most architectures, this is a no-op.
2830**
2831** (later): It is reported to me that the mixed-endian problem
2832** on ARM7 is an issue with GCC, not with the ARM7 chip. It seems
2833** that early versions of GCC stored the two words of a 64-bit
2834** float in the wrong order. And that error has been propagated
2835** ever since. The blame is not necessarily with GCC, though.
2836** GCC might have just copying the problem from a prior compiler.
2837** I am also told that newer versions of GCC that follow a different
2838** ABI get the byte order right.
2839**
2840** Developers using SQLite on an ARM7 should compile and run their
2841** application using -DSQLITE_DEBUG=1 at least once. With DEBUG
2842** enabled, some asserts below will ensure that the byte order of
2843** floating point values is correct.
drh60d09a72007-08-30 15:05:08 +00002844**
2845** (2007-08-30) Frank van Vugt has studied this problem closely
2846** and has send his findings to the SQLite developers. Frank
2847** writes that some Linux kernels offer floating point hardware
2848** emulation that uses only 32-bit mantissas instead of a full
2849** 48-bits as required by the IEEE standard. (This is the
2850** CONFIG_FPE_FASTFPE option.) On such systems, floating point
2851** byte swapping becomes very complicated. To avoid problems,
2852** the necessary byte swapping is carried out using a 64-bit integer
2853** rather than a 64-bit float. Frank assures us that the code here
2854** works for him. We, the developers, have no way to independently
2855** verify this, but Frank seems to know what he is talking about
2856** so we trust him.
drh110daac2007-05-04 11:59:31 +00002857*/
2858#ifdef SQLITE_MIXED_ENDIAN_64BIT_FLOAT
drh60d09a72007-08-30 15:05:08 +00002859static u64 floatSwap(u64 in){
drh110daac2007-05-04 11:59:31 +00002860 union {
drh60d09a72007-08-30 15:05:08 +00002861 u64 r;
drh110daac2007-05-04 11:59:31 +00002862 u32 i[2];
2863 } u;
2864 u32 t;
2865
2866 u.r = in;
2867 t = u.i[0];
2868 u.i[0] = u.i[1];
2869 u.i[1] = t;
2870 return u.r;
2871}
2872# define swapMixedEndianFloat(X) X = floatSwap(X)
2873#else
2874# define swapMixedEndianFloat(X)
2875#endif
2876
2877/*
danielk1977cfcdaef2004-05-12 07:33:33 +00002878** Write the serialized data blob for the value stored in pMem into
2879** buf. It is assumed that the caller has allocated sufficient space.
2880** Return the number of bytes written.
drhfdf972a2007-05-02 13:30:27 +00002881**
drh038b7bc2013-12-09 23:17:22 +00002882** nBuf is the amount of space left in buf[]. The caller is responsible
2883** for allocating enough space to buf[] to hold the entire field, exclusive
2884** of the pMem->u.nZero bytes for a MEM_Zero value.
drhfdf972a2007-05-02 13:30:27 +00002885**
2886** Return the number of bytes actually written into buf[]. The number
2887** of bytes in the zero-filled tail is included in the return value only
2888** if those bytes were zeroed in buf[].
danielk1977cfcdaef2004-05-12 07:33:33 +00002889*/
drha9ab4812013-12-11 11:00:44 +00002890u32 sqlite3VdbeSerialPut(u8 *buf, Mem *pMem, u32 serial_type){
drh35cd6432009-06-05 14:17:21 +00002891 u32 len;
danielk1977183f9f72004-05-13 05:20:26 +00002892
drh1483e142004-05-21 21:12:42 +00002893 /* Integer and Real */
drhd946db02005-12-29 19:23:06 +00002894 if( serial_type<=7 && serial_type>0 ){
drh1483e142004-05-21 21:12:42 +00002895 u64 v;
drh35cd6432009-06-05 14:17:21 +00002896 u32 i;
drha19b7752004-05-30 21:14:58 +00002897 if( serial_type==7 ){
drh4f0c5872007-03-26 22:05:01 +00002898 assert( sizeof(v)==sizeof(pMem->r) );
2899 memcpy(&v, &pMem->r, sizeof(v));
drh60d09a72007-08-30 15:05:08 +00002900 swapMixedEndianFloat(v);
drh1483e142004-05-21 21:12:42 +00002901 }else{
drh3c024d62007-03-30 11:23:45 +00002902 v = pMem->u.i;
danielk1977cfcdaef2004-05-12 07:33:33 +00002903 }
drh1483e142004-05-21 21:12:42 +00002904 len = i = sqlite3VdbeSerialTypeLen(serial_type);
2905 while( i-- ){
drh8df32842008-12-09 02:51:23 +00002906 buf[i] = (u8)(v&0xFF);
drh1483e142004-05-21 21:12:42 +00002907 v >>= 8;
2908 }
2909 return len;
danielk1977cfcdaef2004-05-12 07:33:33 +00002910 }
drhd946db02005-12-29 19:23:06 +00002911
danielk1977cfcdaef2004-05-12 07:33:33 +00002912 /* String or blob */
drhd946db02005-12-29 19:23:06 +00002913 if( serial_type>=12 ){
drh8df32842008-12-09 02:51:23 +00002914 assert( pMem->n + ((pMem->flags & MEM_Zero)?pMem->u.nZero:0)
shane75ac1de2009-06-09 18:58:52 +00002915 == (int)sqlite3VdbeSerialTypeLen(serial_type) );
drhfdf972a2007-05-02 13:30:27 +00002916 len = pMem->n;
drhd946db02005-12-29 19:23:06 +00002917 memcpy(buf, pMem->z, len);
2918 return len;
2919 }
2920
2921 /* NULL or constants 0 or 1 */
2922 return 0;
danielk1977cfcdaef2004-05-12 07:33:33 +00002923}
2924
2925/*
2926** Deserialize the data blob pointed to by buf as serial type serial_type
2927** and store the result in pMem. Return the number of bytes read.
2928*/
drh35cd6432009-06-05 14:17:21 +00002929u32 sqlite3VdbeSerialGet(
danielk197793d46752004-05-23 13:30:58 +00002930 const unsigned char *buf, /* Buffer to deserialize from */
drh25aa1b42004-05-28 01:39:01 +00002931 u32 serial_type, /* Serial type to deserialize */
2932 Mem *pMem /* Memory cell to write value into */
danielk1977b1bc9532004-05-22 03:05:33 +00002933){
drh3c685822005-05-21 18:32:18 +00002934 switch( serial_type ){
drh3c685822005-05-21 18:32:18 +00002935 case 10: /* Reserved for future use */
2936 case 11: /* Reserved for future use */
2937 case 0: { /* NULL */
2938 pMem->flags = MEM_Null;
2939 break;
2940 }
2941 case 1: { /* 1-byte signed integer */
drh3c024d62007-03-30 11:23:45 +00002942 pMem->u.i = (signed char)buf[0];
drh1483e142004-05-21 21:12:42 +00002943 pMem->flags = MEM_Int;
drh3c685822005-05-21 18:32:18 +00002944 return 1;
drh1483e142004-05-21 21:12:42 +00002945 }
drh3c685822005-05-21 18:32:18 +00002946 case 2: { /* 2-byte signed integer */
drh3c024d62007-03-30 11:23:45 +00002947 pMem->u.i = (((signed char)buf[0])<<8) | buf[1];
drh3c685822005-05-21 18:32:18 +00002948 pMem->flags = MEM_Int;
2949 return 2;
2950 }
2951 case 3: { /* 3-byte signed integer */
drh3c024d62007-03-30 11:23:45 +00002952 pMem->u.i = (((signed char)buf[0])<<16) | (buf[1]<<8) | buf[2];
drh3c685822005-05-21 18:32:18 +00002953 pMem->flags = MEM_Int;
2954 return 3;
2955 }
2956 case 4: { /* 4-byte signed integer */
drh3c024d62007-03-30 11:23:45 +00002957 pMem->u.i = (buf[0]<<24) | (buf[1]<<16) | (buf[2]<<8) | buf[3];
drh3c685822005-05-21 18:32:18 +00002958 pMem->flags = MEM_Int;
2959 return 4;
2960 }
2961 case 5: { /* 6-byte signed integer */
2962 u64 x = (((signed char)buf[0])<<8) | buf[1];
2963 u32 y = (buf[2]<<24) | (buf[3]<<16) | (buf[4]<<8) | buf[5];
2964 x = (x<<32) | y;
drh3c024d62007-03-30 11:23:45 +00002965 pMem->u.i = *(i64*)&x;
drh3c685822005-05-21 18:32:18 +00002966 pMem->flags = MEM_Int;
2967 return 6;
2968 }
drh91124b32005-08-18 18:15:05 +00002969 case 6: /* 8-byte signed integer */
drh3c685822005-05-21 18:32:18 +00002970 case 7: { /* IEEE floating point */
drhd81bd4e2005-09-05 20:06:49 +00002971 u64 x;
2972 u32 y;
drh2a3e4a72006-01-23 21:44:53 +00002973#if !defined(NDEBUG) && !defined(SQLITE_OMIT_FLOATING_POINT)
drhde941c62005-08-28 01:34:21 +00002974 /* Verify that integers and floating point values use the same
drh110daac2007-05-04 11:59:31 +00002975 ** byte order. Or, that if SQLITE_MIXED_ENDIAN_64BIT_FLOAT is
2976 ** defined that 64-bit floating point values really are mixed
2977 ** endian.
drhbfd6b032005-08-28 01:38:44 +00002978 */
drhde941c62005-08-28 01:34:21 +00002979 static const u64 t1 = ((u64)0x3ff00000)<<32;
drh4f0c5872007-03-26 22:05:01 +00002980 static const double r1 = 1.0;
drh60d09a72007-08-30 15:05:08 +00002981 u64 t2 = t1;
2982 swapMixedEndianFloat(t2);
2983 assert( sizeof(r1)==sizeof(t2) && memcmp(&r1, &t2, sizeof(r1))==0 );
drhde941c62005-08-28 01:34:21 +00002984#endif
drhbfd6b032005-08-28 01:38:44 +00002985
drhd81bd4e2005-09-05 20:06:49 +00002986 x = (buf[0]<<24) | (buf[1]<<16) | (buf[2]<<8) | buf[3];
2987 y = (buf[4]<<24) | (buf[5]<<16) | (buf[6]<<8) | buf[7];
drh3c685822005-05-21 18:32:18 +00002988 x = (x<<32) | y;
2989 if( serial_type==6 ){
drh3c024d62007-03-30 11:23:45 +00002990 pMem->u.i = *(i64*)&x;
drh3c685822005-05-21 18:32:18 +00002991 pMem->flags = MEM_Int;
2992 }else{
drh4f0c5872007-03-26 22:05:01 +00002993 assert( sizeof(x)==8 && sizeof(pMem->r)==8 );
drh60d09a72007-08-30 15:05:08 +00002994 swapMixedEndianFloat(x);
drh4f0c5872007-03-26 22:05:01 +00002995 memcpy(&pMem->r, &x, sizeof(x));
drh2eaf93d2008-04-29 00:15:20 +00002996 pMem->flags = sqlite3IsNaN(pMem->r) ? MEM_Null : MEM_Real;
drh3c685822005-05-21 18:32:18 +00002997 }
2998 return 8;
2999 }
drhd946db02005-12-29 19:23:06 +00003000 case 8: /* Integer 0 */
3001 case 9: { /* Integer 1 */
drh3c024d62007-03-30 11:23:45 +00003002 pMem->u.i = serial_type-8;
drhd946db02005-12-29 19:23:06 +00003003 pMem->flags = MEM_Int;
3004 return 0;
3005 }
drh3c685822005-05-21 18:32:18 +00003006 default: {
drhc138daf2013-11-19 13:55:34 +00003007 static const u16 aFlag[] = { MEM_Blob|MEM_Ephem, MEM_Str|MEM_Ephem };
drh35cd6432009-06-05 14:17:21 +00003008 u32 len = (serial_type-12)/2;
drh3c685822005-05-21 18:32:18 +00003009 pMem->z = (char *)buf;
3010 pMem->n = len;
3011 pMem->xDel = 0;
drhc138daf2013-11-19 13:55:34 +00003012 pMem->flags = aFlag[serial_type&1];
drh3c685822005-05-21 18:32:18 +00003013 return len;
drh696b32f2004-05-30 01:51:52 +00003014 }
danielk1977cfcdaef2004-05-12 07:33:33 +00003015 }
drh3c685822005-05-21 18:32:18 +00003016 return 0;
danielk1977192ac1d2004-05-10 07:17:30 +00003017}
3018
drh1e968a02008-03-25 00:22:21 +00003019/*
dan03e9cfc2011-09-05 14:20:27 +00003020** This routine is used to allocate sufficient space for an UnpackedRecord
3021** structure large enough to be used with sqlite3VdbeRecordUnpack() if
3022** the first argument is a pointer to KeyInfo structure pKeyInfo.
drh1e968a02008-03-25 00:22:21 +00003023**
dan03e9cfc2011-09-05 14:20:27 +00003024** The space is either allocated using sqlite3DbMallocRaw() or from within
3025** the unaligned buffer passed via the second and third arguments (presumably
3026** stack space). If the former, then *ppFree is set to a pointer that should
3027** be eventually freed by the caller using sqlite3DbFree(). Or, if the
3028** allocation comes from the pSpace/szSpace buffer, *ppFree is set to NULL
3029** before returning.
drh1e968a02008-03-25 00:22:21 +00003030**
dan03e9cfc2011-09-05 14:20:27 +00003031** If an OOM error occurs, NULL is returned.
3032*/
3033UnpackedRecord *sqlite3VdbeAllocUnpackedRecord(
3034 KeyInfo *pKeyInfo, /* Description of the record */
3035 char *pSpace, /* Unaligned space available */
3036 int szSpace, /* Size of pSpace[] in bytes */
3037 char **ppFree /* OUT: Caller should free this pointer */
drh1e968a02008-03-25 00:22:21 +00003038){
dan03e9cfc2011-09-05 14:20:27 +00003039 UnpackedRecord *p; /* Unpacked record to return */
3040 int nOff; /* Increment pSpace by nOff to align it */
3041 int nByte; /* Number of bytes required for *p */
3042
3043 /* We want to shift the pointer pSpace up such that it is 8-byte aligned.
shane80167bf2009-04-10 15:42:36 +00003044 ** Thus, we need to calculate a value, nOff, between 0 and 7, to shift
3045 ** it by. If pSpace is already 8-byte aligned, nOff should be zero.
3046 */
3047 nOff = (8 - (SQLITE_PTR_TO_INT(pSpace) & 7)) & 7;
drh8c5d1522009-04-10 00:56:28 +00003048 nByte = ROUND8(sizeof(UnpackedRecord)) + sizeof(Mem)*(pKeyInfo->nField+1);
dan42acb3e2011-09-05 20:16:38 +00003049 if( nByte>szSpace+nOff ){
dan03e9cfc2011-09-05 14:20:27 +00003050 p = (UnpackedRecord *)sqlite3DbMallocRaw(pKeyInfo->db, nByte);
3051 *ppFree = (char *)p;
dan42acb3e2011-09-05 20:16:38 +00003052 if( !p ) return 0;
drh1e968a02008-03-25 00:22:21 +00003053 }else{
dan42acb3e2011-09-05 20:16:38 +00003054 p = (UnpackedRecord*)&pSpace[nOff];
dan03e9cfc2011-09-05 14:20:27 +00003055 *ppFree = 0;
drh1e968a02008-03-25 00:22:21 +00003056 }
dan42acb3e2011-09-05 20:16:38 +00003057
3058 p->aMem = (Mem*)&((char*)p)[ROUND8(sizeof(UnpackedRecord))];
drhe1a022e2012-09-17 17:16:53 +00003059 assert( pKeyInfo->aSortOrder!=0 );
drh1e968a02008-03-25 00:22:21 +00003060 p->pKeyInfo = pKeyInfo;
3061 p->nField = pKeyInfo->nField + 1;
dan03e9cfc2011-09-05 14:20:27 +00003062 return p;
3063}
3064
3065/*
3066** Given the nKey-byte encoding of a record in pKey[], populate the
3067** UnpackedRecord structure indicated by the fourth argument with the
3068** contents of the decoded record.
3069*/
3070void sqlite3VdbeRecordUnpack(
3071 KeyInfo *pKeyInfo, /* Information about the record format */
3072 int nKey, /* Size of the binary record */
3073 const void *pKey, /* The binary record */
3074 UnpackedRecord *p /* Populate this structure before returning. */
3075){
3076 const unsigned char *aKey = (const unsigned char *)pKey;
3077 int d;
3078 u32 idx; /* Offset in aKey[] to read from */
3079 u16 u; /* Unsigned loop counter */
3080 u32 szHdr;
dan42acb3e2011-09-05 20:16:38 +00003081 Mem *pMem = p->aMem;
dan03e9cfc2011-09-05 14:20:27 +00003082
3083 p->flags = 0;
drh8c5d1522009-04-10 00:56:28 +00003084 assert( EIGHT_BYTE_ALIGNMENT(pMem) );
shane3f8d5cf2008-04-24 19:15:09 +00003085 idx = getVarint32(aKey, szHdr);
drh1e968a02008-03-25 00:22:21 +00003086 d = szHdr;
shane0b8d2762008-07-22 05:18:00 +00003087 u = 0;
drh2fa34d32009-07-15 16:30:50 +00003088 while( idx<szHdr && u<p->nField && d<=nKey ){
drh1e968a02008-03-25 00:22:21 +00003089 u32 serial_type;
3090
danielk197700e13612008-11-17 19:18:54 +00003091 idx += getVarint32(&aKey[idx], serial_type);
drh1e968a02008-03-25 00:22:21 +00003092 pMem->enc = pKeyInfo->enc;
3093 pMem->db = pKeyInfo->db;
drhc3f1d5f2011-05-30 23:42:16 +00003094 /* pMem->flags = 0; // sqlite3VdbeSerialGet() will set this for us */
danielk19775f096132008-03-28 15:44:09 +00003095 pMem->zMalloc = 0;
drh1e968a02008-03-25 00:22:21 +00003096 d += sqlite3VdbeSerialGet(&aKey[d], serial_type, pMem);
drhe14006d2008-03-25 17:23:32 +00003097 pMem++;
shane0b8d2762008-07-22 05:18:00 +00003098 u++;
drh1e968a02008-03-25 00:22:21 +00003099 }
drh7d10d5a2008-08-20 16:35:10 +00003100 assert( u<=pKeyInfo->nField + 1 );
shane0b8d2762008-07-22 05:18:00 +00003101 p->nField = u;
drh1e968a02008-03-25 00:22:21 +00003102}
3103
3104/*
3105** This function compares the two table rows or index records
3106** specified by {nKey1, pKey1} and pPKey2. It returns a negative, zero
drhe63d9992008-08-13 19:11:48 +00003107** or positive integer if key1 is less than, equal to or
3108** greater than key2. The {nKey1, pKey1} key must be a blob
drh1e968a02008-03-25 00:22:21 +00003109** created by th OP_MakeRecord opcode of the VDBE. The pPKey2
3110** key must be a parsed key such as obtained from
3111** sqlite3VdbeParseRecord.
3112**
3113** Key1 and Key2 do not have to contain the same number of fields.
drhe63d9992008-08-13 19:11:48 +00003114** The key with fewer fields is usually compares less than the
3115** longer key. However if the UNPACKED_INCRKEY flags in pPKey2 is set
3116** and the common prefixes are equal, then key1 is less than key2.
3117** Or if the UNPACKED_MATCH_PREFIX flag is set and the prefixes are
3118** equal, then the keys are considered to be equal and
drhec1fc802008-08-13 14:07:40 +00003119** the parts beyond the common prefix are ignored.
drh1e968a02008-03-25 00:22:21 +00003120*/
drhe14006d2008-03-25 17:23:32 +00003121int sqlite3VdbeRecordCompare(
drhec1fc802008-08-13 14:07:40 +00003122 int nKey1, const void *pKey1, /* Left key */
drhec1fc802008-08-13 14:07:40 +00003123 UnpackedRecord *pPKey2 /* Right key */
drh1e968a02008-03-25 00:22:21 +00003124){
drhdf003d62013-08-01 19:17:39 +00003125 u32 d1; /* Offset into aKey[] of next data element */
drh1e968a02008-03-25 00:22:21 +00003126 u32 idx1; /* Offset into aKey[] of next header element */
3127 u32 szHdr1; /* Number of bytes in header */
3128 int i = 0;
drh1e968a02008-03-25 00:22:21 +00003129 int rc = 0;
3130 const unsigned char *aKey1 = (const unsigned char *)pKey1;
3131 KeyInfo *pKeyInfo;
3132 Mem mem1;
3133
3134 pKeyInfo = pPKey2->pKeyInfo;
3135 mem1.enc = pKeyInfo->enc;
drh37272632009-11-16 21:28:45 +00003136 mem1.db = pKeyInfo->db;
drhd93a8b22009-11-16 03:13:40 +00003137 /* mem1.flags = 0; // Will be initialized by sqlite3VdbeSerialGet() */
3138 VVA_ONLY( mem1.zMalloc = 0; ) /* Only needed by assert() statements */
drh8b249a82009-11-16 02:14:00 +00003139
3140 /* Compilers may complain that mem1.u.i is potentially uninitialized.
3141 ** We could initialize it, as shown here, to silence those complaints.
drh5275d2e2011-04-27 01:00:17 +00003142 ** But in fact, mem1.u.i will never actually be used uninitialized, and doing
drh8b249a82009-11-16 02:14:00 +00003143 ** the unnecessary initialization has a measurable negative performance
3144 ** impact, since this routine is a very high runner. And so, we choose
3145 ** to ignore the compiler warnings and leave this variable uninitialized.
3146 */
3147 /* mem1.u.i = 0; // not needed, here to silence compiler warning */
drh1e968a02008-03-25 00:22:21 +00003148
shane3f8d5cf2008-04-24 19:15:09 +00003149 idx1 = getVarint32(aKey1, szHdr1);
drh1e968a02008-03-25 00:22:21 +00003150 d1 = szHdr1;
drhb2023662013-11-29 15:39:36 +00003151 assert( pKeyInfo->nField+pKeyInfo->nXField>=pPKey2->nField || CORRUPT_DB );
drhe1a022e2012-09-17 17:16:53 +00003152 assert( pKeyInfo->aSortOrder!=0 );
dan89bc0212013-12-03 09:49:52 +00003153 assert( pKeyInfo->nField>0 );
3154 assert( idx1<=szHdr1 || CORRUPT_DB );
drh0b9dada2013-11-25 22:24:36 +00003155 do{
drh1e968a02008-03-25 00:22:21 +00003156 u32 serial_type1;
3157
3158 /* Read the serial types for the next element in each key. */
shane3f8d5cf2008-04-24 19:15:09 +00003159 idx1 += getVarint32( aKey1+idx1, serial_type1 );
drhaf5b2af2013-08-05 15:32:09 +00003160
3161 /* Verify that there is enough key space remaining to avoid
3162 ** a buffer overread. The "d1+serial_type1+2" subexpression will
3163 ** always be greater than or equal to the amount of required key space.
3164 ** Use that approximation to avoid the more expensive call to
3165 ** sqlite3VdbeSerialTypeLen() in the common case.
3166 */
3167 if( d1+serial_type1+2>(u32)nKey1
3168 && d1+sqlite3VdbeSerialTypeLen(serial_type1)>(u32)nKey1
3169 ){
3170 break;
3171 }
drh1e968a02008-03-25 00:22:21 +00003172
3173 /* Extract the values to be compared.
3174 */
3175 d1 += sqlite3VdbeSerialGet(&aKey1[d1], serial_type1, &mem1);
3176
3177 /* Do the comparison
3178 */
drh323df792013-08-05 19:11:29 +00003179 rc = sqlite3MemCompare(&mem1, &pPKey2->aMem[i], pKeyInfo->aColl[i]);
drh1e968a02008-03-25 00:22:21 +00003180 if( rc!=0 ){
drh8b249a82009-11-16 02:14:00 +00003181 assert( mem1.zMalloc==0 ); /* See comment below */
drh323df792013-08-05 19:11:29 +00003182 if( pKeyInfo->aSortOrder[i] ){
drh6f225d02013-10-26 13:36:51 +00003183 rc = -rc; /* Invert the result for DESC sort order. */
drh8b249a82009-11-16 02:14:00 +00003184 }
drh8b249a82009-11-16 02:14:00 +00003185 return rc;
drh1e968a02008-03-25 00:22:21 +00003186 }
3187 i++;
drh0b9dada2013-11-25 22:24:36 +00003188 }while( idx1<szHdr1 && i<pPKey2->nField );
drh407414c2009-07-14 14:15:27 +00003189
drh8b249a82009-11-16 02:14:00 +00003190 /* No memory allocation is ever used on mem1. Prove this using
3191 ** the following assert(). If the assert() fails, it indicates a
3192 ** memory leak and a need to call sqlite3VdbeMemRelease(&mem1).
danielk1977de630352009-05-04 11:42:29 +00003193 */
drh8b249a82009-11-16 02:14:00 +00003194 assert( mem1.zMalloc==0 );
danielk1977de630352009-05-04 11:42:29 +00003195
drh8b249a82009-11-16 02:14:00 +00003196 /* rc==0 here means that one of the keys ran out of fields and
3197 ** all the fields up to that point were equal. If the UNPACKED_INCRKEY
3198 ** flag is set, then break the tie by treating key2 as larger.
3199 ** If the UPACKED_PREFIX_MATCH flag is set, then keys with common prefixes
3200 ** are considered to be equal. Otherwise, the longer key is the
3201 ** larger. As it happens, the pPKey2 will always be the longer
3202 ** if there is a difference.
3203 */
3204 assert( rc==0 );
3205 if( pPKey2->flags & UNPACKED_INCRKEY ){
3206 rc = -1;
3207 }else if( pPKey2->flags & UNPACKED_PREFIX_MATCH ){
3208 /* Leave rc==0 */
3209 }else if( idx1<szHdr1 ){
3210 rc = 1;
drh1e968a02008-03-25 00:22:21 +00003211 }
drh1e968a02008-03-25 00:22:21 +00003212 return rc;
3213}
drhec1fc802008-08-13 14:07:40 +00003214
danielk1977eb015e02004-05-18 01:31:14 +00003215
3216/*
drh7a224de2004-06-02 01:22:02 +00003217** pCur points at an index entry created using the OP_MakeRecord opcode.
3218** Read the rowid (the last field in the record) and store it in *rowid.
3219** Return SQLITE_OK if everything works, or an error code otherwise.
drh88a003e2008-12-11 16:17:03 +00003220**
3221** pCur might be pointing to text obtained from a corrupt database file.
3222** So the content cannot be trusted. Do appropriate checks on the content.
danielk1977183f9f72004-05-13 05:20:26 +00003223*/
drh35f6b932009-06-23 14:15:04 +00003224int sqlite3VdbeIdxRowid(sqlite3 *db, BtCursor *pCur, i64 *rowid){
drh61fc5952007-04-01 23:49:51 +00003225 i64 nCellKey = 0;
danielk1977183f9f72004-05-13 05:20:26 +00003226 int rc;
drhd5788202004-05-28 08:21:05 +00003227 u32 szHdr; /* Size of the header */
3228 u32 typeRowid; /* Serial type of the rowid */
3229 u32 lenRowid; /* Size of the rowid */
3230 Mem m, v;
danielk1977183f9f72004-05-13 05:20:26 +00003231
shanecea72b22009-09-07 04:38:36 +00003232 UNUSED_PARAMETER(db);
3233
drh88a003e2008-12-11 16:17:03 +00003234 /* Get the size of the index entry. Only indices entries of less
drh7b746032009-06-26 12:15:22 +00003235 ** than 2GiB are support - anything large must be database corruption.
3236 ** Any corruption is detected in sqlite3BtreeParseCellPtr(), though, so
drhc27ae612009-07-14 18:35:44 +00003237 ** this code can safely assume that nCellKey is 32-bits
3238 */
drhea8ffdf2009-07-22 00:35:23 +00003239 assert( sqlite3BtreeCursorIsValid(pCur) );
drhb07028f2011-10-14 21:49:18 +00003240 VVA_ONLY(rc =) sqlite3BtreeKeySize(pCur, &nCellKey);
drhc27ae612009-07-14 18:35:44 +00003241 assert( rc==SQLITE_OK ); /* pCur is always valid so KeySize cannot fail */
drh7b746032009-06-26 12:15:22 +00003242 assert( (nCellKey & SQLITE_MAX_U32)==(u64)nCellKey );
drh88a003e2008-12-11 16:17:03 +00003243
3244 /* Read in the complete content of the index entry */
drhff104c12009-08-25 13:10:27 +00003245 memset(&m, 0, sizeof(m));
drh501932c2013-11-21 21:59:53 +00003246 rc = sqlite3VdbeMemFromBtree(pCur, 0, (u32)nCellKey, 1, &m);
drhd5788202004-05-28 08:21:05 +00003247 if( rc ){
danielk1977183f9f72004-05-13 05:20:26 +00003248 return rc;
3249 }
drh88a003e2008-12-11 16:17:03 +00003250
3251 /* The index entry must begin with a header size */
shane3f8d5cf2008-04-24 19:15:09 +00003252 (void)getVarint32((u8*)m.z, szHdr);
drh7b746032009-06-26 12:15:22 +00003253 testcase( szHdr==3 );
drh88a003e2008-12-11 16:17:03 +00003254 testcase( szHdr==m.n );
drh7b746032009-06-26 12:15:22 +00003255 if( unlikely(szHdr<3 || (int)szHdr>m.n) ){
drh88a003e2008-12-11 16:17:03 +00003256 goto idx_rowid_corruption;
3257 }
3258
3259 /* The last field of the index should be an integer - the ROWID.
3260 ** Verify that the last entry really is an integer. */
shane3f8d5cf2008-04-24 19:15:09 +00003261 (void)getVarint32((u8*)&m.z[szHdr-1], typeRowid);
drh88a003e2008-12-11 16:17:03 +00003262 testcase( typeRowid==1 );
3263 testcase( typeRowid==2 );
3264 testcase( typeRowid==3 );
3265 testcase( typeRowid==4 );
3266 testcase( typeRowid==5 );
3267 testcase( typeRowid==6 );
3268 testcase( typeRowid==8 );
3269 testcase( typeRowid==9 );
3270 if( unlikely(typeRowid<1 || typeRowid>9 || typeRowid==7) ){
3271 goto idx_rowid_corruption;
3272 }
drhd5788202004-05-28 08:21:05 +00003273 lenRowid = sqlite3VdbeSerialTypeLen(typeRowid);
drheeb844a2009-08-08 18:01:07 +00003274 testcase( (u32)m.n==szHdr+lenRowid );
3275 if( unlikely((u32)m.n<szHdr+lenRowid) ){
drh88a003e2008-12-11 16:17:03 +00003276 goto idx_rowid_corruption;
3277 }
3278
3279 /* Fetch the integer off the end of the index record */
drh2646da72005-12-09 20:02:05 +00003280 sqlite3VdbeSerialGet((u8*)&m.z[m.n-lenRowid], typeRowid, &v);
drh3c024d62007-03-30 11:23:45 +00003281 *rowid = v.u.i;
danielk1977d8123362004-06-12 09:25:12 +00003282 sqlite3VdbeMemRelease(&m);
danielk1977183f9f72004-05-13 05:20:26 +00003283 return SQLITE_OK;
drh88a003e2008-12-11 16:17:03 +00003284
3285 /* Jump here if database corruption is detected after m has been
3286 ** allocated. Free the m object and return SQLITE_CORRUPT. */
3287idx_rowid_corruption:
3288 testcase( m.zMalloc!=0 );
3289 sqlite3VdbeMemRelease(&m);
3290 return SQLITE_CORRUPT_BKPT;
danielk1977183f9f72004-05-13 05:20:26 +00003291}
3292
drh7cf6e4d2004-05-19 14:56:55 +00003293/*
drh5f82e3c2009-07-06 00:44:08 +00003294** Compare the key of the index entry that cursor pC is pointing to against
3295** the key string in pUnpacked. Write into *pRes a number
drh7cf6e4d2004-05-19 14:56:55 +00003296** that is negative, zero, or positive if pC is less than, equal to,
drh5f82e3c2009-07-06 00:44:08 +00003297** or greater than pUnpacked. Return SQLITE_OK on success.
drhd3d39e92004-05-20 22:16:29 +00003298**
drh5f82e3c2009-07-06 00:44:08 +00003299** pUnpacked is either created without a rowid or is truncated so that it
drhd5788202004-05-28 08:21:05 +00003300** omits the rowid at the end. The rowid at the end of the index entry
drhec1fc802008-08-13 14:07:40 +00003301** is ignored as well. Hence, this routine only compares the prefixes
3302** of the keys prior to the final rowid, not the entire key.
drh7cf6e4d2004-05-19 14:56:55 +00003303*/
danielk1977183f9f72004-05-13 05:20:26 +00003304int sqlite3VdbeIdxKeyCompare(
drhdfe88ec2008-11-03 20:55:06 +00003305 VdbeCursor *pC, /* The cursor to compare against */
drh5f82e3c2009-07-06 00:44:08 +00003306 UnpackedRecord *pUnpacked, /* Unpacked version of key to compare against */
drh7cf6e4d2004-05-19 14:56:55 +00003307 int *res /* Write the comparison result here */
danielk1977183f9f72004-05-13 05:20:26 +00003308){
drh61fc5952007-04-01 23:49:51 +00003309 i64 nCellKey = 0;
danielk1977183f9f72004-05-13 05:20:26 +00003310 int rc;
danielk19773d1bfea2004-05-14 11:00:53 +00003311 BtCursor *pCur = pC->pCursor;
drhd5788202004-05-28 08:21:05 +00003312 Mem m;
danielk1977183f9f72004-05-13 05:20:26 +00003313
drhea8ffdf2009-07-22 00:35:23 +00003314 assert( sqlite3BtreeCursorIsValid(pCur) );
drhb07028f2011-10-14 21:49:18 +00003315 VVA_ONLY(rc =) sqlite3BtreeKeySize(pCur, &nCellKey);
drhc27ae612009-07-14 18:35:44 +00003316 assert( rc==SQLITE_OK ); /* pCur is always valid so KeySize cannot fail */
drh407414c2009-07-14 14:15:27 +00003317 /* nCellKey will always be between 0 and 0xffffffff because of the say
3318 ** that btreeParseCellPtr() and sqlite3GetVarint32() are implemented */
drhc27ae612009-07-14 18:35:44 +00003319 if( nCellKey<=0 || nCellKey>0x7fffffff ){
danielk1977183f9f72004-05-13 05:20:26 +00003320 *res = 0;
drh9978c972010-02-23 17:36:32 +00003321 return SQLITE_CORRUPT_BKPT;
danielk1977183f9f72004-05-13 05:20:26 +00003322 }
drhfd3ca1c2009-08-25 12:11:00 +00003323 memset(&m, 0, sizeof(m));
drh501932c2013-11-21 21:59:53 +00003324 rc = sqlite3VdbeMemFromBtree(pC->pCursor, 0, (u32)nCellKey, 1, &m);
drhec1fc802008-08-13 14:07:40 +00003325 if( rc ){
drhd5788202004-05-28 08:21:05 +00003326 return rc;
danielk1977183f9f72004-05-13 05:20:26 +00003327 }
dan6f133232011-11-16 15:41:29 +00003328 assert( pUnpacked->flags & UNPACKED_PREFIX_MATCH );
drhe63d9992008-08-13 19:11:48 +00003329 *res = sqlite3VdbeRecordCompare(m.n, m.z, pUnpacked);
danielk1977d8123362004-06-12 09:25:12 +00003330 sqlite3VdbeMemRelease(&m);
danielk1977183f9f72004-05-13 05:20:26 +00003331 return SQLITE_OK;
3332}
danielk1977b28af712004-06-21 06:50:26 +00003333
3334/*
3335** This routine sets the value to be returned by subsequent calls to
3336** sqlite3_changes() on the database handle 'db'.
3337*/
3338void sqlite3VdbeSetChanges(sqlite3 *db, int nChange){
drhb21c8cd2007-08-21 19:33:56 +00003339 assert( sqlite3_mutex_held(db->mutex) );
danielk1977b28af712004-06-21 06:50:26 +00003340 db->nChange = nChange;
3341 db->nTotalChange += nChange;
3342}
3343
3344/*
3345** Set a flag in the vdbe to update the change counter when it is finalised
3346** or reset.
3347*/
drh4794f732004-11-05 17:17:50 +00003348void sqlite3VdbeCountChanges(Vdbe *v){
3349 v->changeCntOn = 1;
danielk1977b28af712004-06-21 06:50:26 +00003350}
drhd89bd002005-01-22 03:03:54 +00003351
3352/*
3353** Mark every prepared statement associated with a database connection
3354** as expired.
3355**
3356** An expired statement means that recompilation of the statement is
3357** recommend. Statements expire when things happen that make their
3358** programs obsolete. Removing user-defined functions or collating
3359** sequences, or changing an authorization function are the types of
3360** things that make prepared statements obsolete.
3361*/
3362void sqlite3ExpirePreparedStatements(sqlite3 *db){
3363 Vdbe *p;
3364 for(p = db->pVdbe; p; p=p->pNext){
3365 p->expired = 1;
3366 }
3367}
danielk1977aee18ef2005-03-09 12:26:50 +00003368
3369/*
3370** Return the database associated with the Vdbe.
3371*/
3372sqlite3 *sqlite3VdbeDb(Vdbe *v){
3373 return v->db;
3374}
dan937d0de2009-10-15 18:35:38 +00003375
3376/*
3377** Return a pointer to an sqlite3_value structure containing the value bound
3378** parameter iVar of VM v. Except, if the value is an SQL NULL, return
3379** 0 instead. Unless it is NULL, apply affinity aff (one of the SQLITE_AFF_*
3380** constants) to the value before returning it.
3381**
3382** The returned value must be freed by the caller using sqlite3ValueFree().
3383*/
drhcf0fd4a2013-08-01 12:21:58 +00003384sqlite3_value *sqlite3VdbeGetBoundValue(Vdbe *v, int iVar, u8 aff){
dan937d0de2009-10-15 18:35:38 +00003385 assert( iVar>0 );
3386 if( v ){
3387 Mem *pMem = &v->aVar[iVar-1];
3388 if( 0==(pMem->flags & MEM_Null) ){
3389 sqlite3_value *pRet = sqlite3ValueNew(v->db);
3390 if( pRet ){
3391 sqlite3VdbeMemCopy((Mem *)pRet, pMem);
3392 sqlite3ValueApplyAffinity(pRet, aff, SQLITE_UTF8);
3393 sqlite3VdbeMemStoreType((Mem *)pRet);
3394 }
3395 return pRet;
3396 }
3397 }
3398 return 0;
3399}
3400
3401/*
3402** Configure SQL variable iVar so that binding a new value to it signals
3403** to sqlite3_reoptimize() that re-preparing the statement may result
3404** in a better query plan.
3405*/
dan1d2ce4f2009-10-19 18:11:09 +00003406void sqlite3VdbeSetVarmask(Vdbe *v, int iVar){
dan937d0de2009-10-15 18:35:38 +00003407 assert( iVar>0 );
3408 if( iVar>32 ){
dan1d2ce4f2009-10-19 18:11:09 +00003409 v->expmask = 0xffffffff;
dan937d0de2009-10-15 18:35:38 +00003410 }else{
dan1d2ce4f2009-10-19 18:11:09 +00003411 v->expmask |= ((u32)1 << (iVar-1));
dan937d0de2009-10-15 18:35:38 +00003412 }
3413}
dan016f7812013-08-21 17:35:48 +00003414
3415#ifndef SQLITE_OMIT_VIRTUALTABLE
3416/*
3417** Transfer error message text from an sqlite3_vtab.zErrMsg (text stored
3418** in memory obtained from sqlite3_malloc) into a Vdbe.zErrMsg (text stored
3419** in memory obtained from sqlite3DbMalloc).
3420*/
3421void sqlite3VtabImportErrmsg(Vdbe *p, sqlite3_vtab *pVtab){
3422 sqlite3 *db = p->db;
3423 sqlite3DbFree(db, p->zErrMsg);
3424 p->zErrMsg = sqlite3DbStrDup(db, pVtab->zErrMsg);
3425 sqlite3_free(pVtab->zErrMsg);
3426 pVtab->zErrMsg = 0;
3427}
3428#endif /* SQLITE_OMIT_VIRTUALTABLE */