Thanks to visit codestin.com
Credit goes to chromium.googlesource.com

blob: f1117a8845798937504d010ac0e629e48a377f61 [file] [log] [blame]
dan1da40a32009-09-19 17:00:311/*
2**
3** The author disclaims copyright to this source code. In place of
4** a legal notice, here is a blessing:
5**
6** May you do good and not evil.
7** May you find forgiveness for yourself and forgive others.
8** May you share freely, never taking more than you give.
9**
10*************************************************************************
11** This file contains code used by the compiler to add foreign key
12** support to compiled SQL statements.
13*/
14#include "sqliteInt.h"
15
16#ifndef SQLITE_OMIT_FOREIGN_KEY
dan75cbd982009-09-21 16:06:0317#ifndef SQLITE_OMIT_TRIGGER
dan1da40a32009-09-19 17:00:3118
19/*
20** Deferred and Immediate FKs
21** --------------------------
22**
23** Foreign keys in SQLite come in two flavours: deferred and immediate.
drhd91c1a12013-02-09 13:58:2524** If an immediate foreign key constraint is violated,
25** SQLITE_CONSTRAINT_FOREIGNKEY is returned and the current
26** statement transaction rolled back. If a
dan1da40a32009-09-19 17:00:3127** deferred foreign key constraint is violated, no action is taken
28** immediately. However if the application attempts to commit the
29** transaction before fixing the constraint violation, the attempt fails.
30**
31** Deferred constraints are implemented using a simple counter associated
32** with the database handle. The counter is set to zero each time a
33** database transaction is opened. Each time a statement is executed
34** that causes a foreign key violation, the counter is incremented. Each
35** time a statement is executed that removes an existing violation from
36** the database, the counter is decremented. When the transaction is
37** committed, the commit fails if the current value of the counter is
38** greater than zero. This scheme has two big drawbacks:
39**
40** * When a commit fails due to a deferred foreign key constraint,
41** there is no way to tell which foreign constraint is not satisfied,
42** or which row it is not satisfied for.
43**
44** * If the database contains foreign key violations when the
45** transaction is opened, this may cause the mechanism to malfunction.
46**
47** Despite these problems, this approach is adopted as it seems simpler
48** than the alternatives.
49**
50** INSERT operations:
51**
dan8099ce62009-09-23 08:43:3552** I.1) For each FK for which the table is the child table, search
dan8a2fff72009-09-23 18:07:2253** the parent table for a match. If none is found increment the
54** constraint counter.
dan1da40a32009-09-19 17:00:3155**
dan8a2fff72009-09-23 18:07:2256** I.2) For each FK for which the table is the parent table,
dan8099ce62009-09-23 08:43:3557** search the child table for rows that correspond to the new
58** row in the parent table. Decrement the counter for each row
dan1da40a32009-09-19 17:00:3159** found (as the constraint is now satisfied).
60**
61** DELETE operations:
62**
dan8a2fff72009-09-23 18:07:2263** D.1) For each FK for which the table is the child table,
dan8099ce62009-09-23 08:43:3564** search the parent table for a row that corresponds to the
65** deleted row in the child table. If such a row is not found,
dan1da40a32009-09-19 17:00:3166** decrement the counter.
67**
dan8099ce62009-09-23 08:43:3568** D.2) For each FK for which the table is the parent table, search
69** the child table for rows that correspond to the deleted row
dan8a2fff72009-09-23 18:07:2270** in the parent table. For each found increment the counter.
dan1da40a32009-09-19 17:00:3171**
72** UPDATE operations:
73**
74** An UPDATE command requires that all 4 steps above are taken, but only
75** for FK constraints for which the affected columns are actually
76** modified (values must be compared at runtime).
77**
78** Note that I.1 and D.1 are very similar operations, as are I.2 and D.2.
79** This simplifies the implementation a bit.
80**
81** For the purposes of immediate FK constraints, the OR REPLACE conflict
82** resolution is considered to delete rows before the new row is inserted.
83** If a delete caused by OR REPLACE violates an FK constraint, an exception
84** is thrown, even if the FK constraint would be satisfied after the new
85** row is inserted.
86**
danbd747832009-09-25 12:00:0187** Immediate constraints are usually handled similarly. The only difference
88** is that the counter used is stored as part of each individual statement
89** object (struct Vdbe). If, after the statement has run, its immediate
drhd91c1a12013-02-09 13:58:2590** constraint counter is greater than zero,
91** it returns SQLITE_CONSTRAINT_FOREIGNKEY
danbd747832009-09-25 12:00:0192** and the statement transaction is rolled back. An exception is an INSERT
93** statement that inserts a single row only (no triggers). In this case,
94** instead of using a counter, an exception is thrown immediately if the
95** INSERT violates a foreign key constraint. This is necessary as such
96** an INSERT does not open a statement transaction.
97**
dan1da40a32009-09-19 17:00:3198** TODO: How should dropping a table be handled? How should renaming a
99** table be handled?
dan8099ce62009-09-23 08:43:35100**
101**
dan1da40a32009-09-19 17:00:31102** Query API Notes
103** ---------------
104**
105** Before coding an UPDATE or DELETE row operation, the code-generator
106** for those two operations needs to know whether or not the operation
107** requires any FK processing and, if so, which columns of the original
108** row are required by the FK processing VDBE code (i.e. if FKs were
109** implemented using triggers, which of the old.* columns would be
110** accessed). No information is required by the code-generator before
dan8099ce62009-09-23 08:43:35111** coding an INSERT operation. The functions used by the UPDATE/DELETE
112** generation code to query for this information are:
dan1da40a32009-09-19 17:00:31113**
dan8099ce62009-09-23 08:43:35114** sqlite3FkRequired() - Test to see if FK processing is required.
115** sqlite3FkOldmask() - Query for the set of required old.* columns.
116**
117**
118** Externally accessible module functions
119** --------------------------------------
120**
121** sqlite3FkCheck() - Check for foreign key violations.
122** sqlite3FkActions() - Code triggers for ON UPDATE/ON DELETE actions.
123** sqlite3FkDelete() - Delete an FKey structure.
dan1da40a32009-09-19 17:00:31124*/
125
126/*
127** VDBE Calling Convention
128** -----------------------
129**
130** Example:
131**
132** For the following INSERT statement:
133**
134** CREATE TABLE t1(a, b INTEGER PRIMARY KEY, c);
135** INSERT INTO t1 VALUES(1, 2, 3.1);
136**
137** Register (x): 2 (type integer)
138** Register (x+1): 1 (type integer)
139** Register (x+2): NULL (type NULL)
140** Register (x+3): 3.1 (type real)
141*/
142
143/*
dan8099ce62009-09-23 08:43:35144** A foreign key constraint requires that the key columns in the parent
dan1da40a32009-09-19 17:00:31145** table are collectively subject to a UNIQUE or PRIMARY KEY constraint.
dan8099ce62009-09-23 08:43:35146** Given that pParent is the parent table for foreign key constraint pFKey,
drh6c5b9152012-12-17 16:46:37147** search the schema for a unique index on the parent key columns.
dan1da40a32009-09-19 17:00:31148**
dan8099ce62009-09-23 08:43:35149** If successful, zero is returned. If the parent key is an INTEGER PRIMARY
150** KEY column, then output variable *ppIdx is set to NULL. Otherwise, *ppIdx
151** is set to point to the unique index.
152**
153** If the parent key consists of a single column (the foreign key constraint
154** is not a composite foreign key), output variable *paiCol is set to NULL.
155** Otherwise, it is set to point to an allocated array of size N, where
156** N is the number of columns in the parent key. The first element of the
157** array is the index of the child table column that is mapped by the FK
158** constraint to the parent table column stored in the left-most column
159** of index *ppIdx. The second element of the array is the index of the
160** child table column that corresponds to the second left-most column of
161** *ppIdx, and so on.
162**
163** If the required index cannot be found, either because:
164**
165** 1) The named parent key columns do not exist, or
166**
167** 2) The named parent key columns do exist, but are not subject to a
168** UNIQUE or PRIMARY KEY constraint, or
169**
170** 3) No parent key columns were provided explicitly as part of the
171** foreign key definition, and the parent table does not have a
172** PRIMARY KEY, or
173**
174** 4) No parent key columns were provided explicitly as part of the
175** foreign key definition, and the PRIMARY KEY of the parent table
peter.d.reid60ec9142014-09-06 16:39:46176** consists of a different number of columns to the child key in
dan8099ce62009-09-23 08:43:35177** the child table.
178**
179** then non-zero is returned, and a "foreign key mismatch" error loaded
180** into pParse. If an OOM error occurs, non-zero is returned and the
181** pParse->db->mallocFailed flag is set.
dan1da40a32009-09-19 17:00:31182*/
drh6c5b9152012-12-17 16:46:37183int sqlite3FkLocateIndex(
dan1da40a32009-09-19 17:00:31184 Parse *pParse, /* Parse context to store any error in */
dan8099ce62009-09-23 08:43:35185 Table *pParent, /* Parent table of FK constraint pFKey */
dan1da40a32009-09-19 17:00:31186 FKey *pFKey, /* Foreign key to find index for */
dan8099ce62009-09-23 08:43:35187 Index **ppIdx, /* OUT: Unique index on parent table */
dan1da40a32009-09-19 17:00:31188 int **paiCol /* OUT: Map of index columns in pFKey */
189){
dan8099ce62009-09-23 08:43:35190 Index *pIdx = 0; /* Value to return via *ppIdx */
191 int *aiCol = 0; /* Value to return via *paiCol */
192 int nCol = pFKey->nCol; /* Number of columns in parent key */
193 char *zKey = pFKey->aCol[0].zCol; /* Name of left-most parent key column */
dan1da40a32009-09-19 17:00:31194
195 /* The caller is responsible for zeroing output parameters. */
196 assert( ppIdx && *ppIdx==0 );
197 assert( !paiCol || *paiCol==0 );
danf7a94542009-09-30 08:11:07198 assert( pParse );
dan1da40a32009-09-19 17:00:31199
200 /* If this is a non-composite (single column) foreign key, check if it
dan8099ce62009-09-23 08:43:35201 ** maps to the INTEGER PRIMARY KEY of table pParent. If so, leave *ppIdx
dan1da40a32009-09-19 17:00:31202 ** and *paiCol set to zero and return early.
203 **
204 ** Otherwise, for a composite foreign key (more than one column), allocate
205 ** space for the aiCol array (returned via output parameter *paiCol).
206 ** Non-composite foreign keys do not require the aiCol array.
207 */
208 if( nCol==1 ){
209 /* The FK maps to the IPK if any of the following are true:
210 **
dand981d442009-09-23 13:59:17211 ** 1) There is an INTEGER PRIMARY KEY column and the FK is implicitly
212 ** mapped to the primary key of table pParent, or
213 ** 2) The FK is explicitly mapped to a column declared as INTEGER
dan1da40a32009-09-19 17:00:31214 ** PRIMARY KEY.
215 */
dan8099ce62009-09-23 08:43:35216 if( pParent->iPKey>=0 ){
217 if( !zKey ) return 0;
drhcf9d36d2021-08-02 18:03:43218 if( !sqlite3StrICmp(pParent->aCol[pParent->iPKey].zCnName, zKey) ){
219 return 0;
220 }
dan1da40a32009-09-19 17:00:31221 }
222 }else if( paiCol ){
223 assert( nCol>1 );
drh575fad62016-02-05 13:38:36224 aiCol = (int *)sqlite3DbMallocRawNN(pParse->db, nCol*sizeof(int));
dan1da40a32009-09-19 17:00:31225 if( !aiCol ) return 1;
226 *paiCol = aiCol;
227 }
228
dan8099ce62009-09-23 08:43:35229 for(pIdx=pParent->pIndex; pIdx; pIdx=pIdx->pNext){
dan68a494c2016-12-13 16:57:49230 if( pIdx->nKeyCol==nCol && IsUniqueIndex(pIdx) && pIdx->pPartIdxWhere==0 ){
dan1da40a32009-09-19 17:00:31231 /* pIdx is a UNIQUE index (or a PRIMARY KEY) and has the right number
232 ** of columns. If each indexed column corresponds to a foreign key
233 ** column of pFKey, then this index is a winner. */
234
dan8099ce62009-09-23 08:43:35235 if( zKey==0 ){
236 /* If zKey is NULL, then this foreign key is implicitly mapped to
237 ** the PRIMARY KEY of table pParent. The PRIMARY KEY index may be
drh48dd1d82014-05-27 18:18:58238 ** identified by the test. */
239 if( IsPrimaryKeyIndex(pIdx) ){
dan8a2fff72009-09-23 18:07:22240 if( aiCol ){
241 int i;
242 for(i=0; i<nCol; i++) aiCol[i] = pFKey->aCol[i].iFrom;
243 }
dan1da40a32009-09-19 17:00:31244 break;
245 }
246 }else{
dan8099ce62009-09-23 08:43:35247 /* If zKey is non-NULL, then this foreign key was declared to
248 ** map to an explicit list of columns in table pParent. Check if this
dan9707c7b2009-09-29 15:41:57249 ** index matches those columns. Also, check that the index uses
250 ** the default collation sequences for each column. */
dan1da40a32009-09-19 17:00:31251 int i, j;
252 for(i=0; i<nCol; i++){
drhbbbdc832013-10-22 18:01:40253 i16 iCol = pIdx->aiColumn[i]; /* Index of column in parent tbl */
drhf19aa5f2015-12-30 16:51:20254 const char *zDfltColl; /* Def. collation for column */
dan9707c7b2009-09-29 15:41:57255 char *zIdxCol; /* Name of indexed column */
256
drh4b92f982015-09-29 17:20:14257 if( iCol<0 ) break; /* No foreign keys against expression indexes */
258
dan9707c7b2009-09-29 15:41:57259 /* If the index uses a collation sequence that is different from
260 ** the default collation sequence for the column, this index is
261 ** unusable. Bail out early in this case. */
drh65b40092021-08-05 15:27:19262 zDfltColl = sqlite3ColumnColl(&pParent->aCol[iCol]);
drhf19aa5f2015-12-30 16:51:20263 if( !zDfltColl ) zDfltColl = sqlite3StrBINARY;
dan9707c7b2009-09-29 15:41:57264 if( sqlite3StrICmp(pIdx->azColl[i], zDfltColl) ) break;
265
drhcf9d36d2021-08-02 18:03:43266 zIdxCol = pParent->aCol[iCol].zCnName;
dan1da40a32009-09-19 17:00:31267 for(j=0; j<nCol; j++){
268 if( sqlite3StrICmp(pFKey->aCol[j].zCol, zIdxCol)==0 ){
269 if( aiCol ) aiCol[i] = pFKey->aCol[j].iFrom;
270 break;
271 }
272 }
273 if( j==nCol ) break;
274 }
275 if( i==nCol ) break; /* pIdx is usable */
276 }
277 }
278 }
279
danf7a94542009-09-30 08:11:07280 if( !pIdx ){
danf0662562009-09-28 18:52:11281 if( !pParse->disableTriggers ){
drh9148def2012-12-17 20:40:39282 sqlite3ErrorMsg(pParse,
283 "foreign key mismatch - \"%w\" referencing \"%w\"",
284 pFKey->pFrom->zName, pFKey->zTo);
danf0662562009-09-28 18:52:11285 }
dan1da40a32009-09-19 17:00:31286 sqlite3DbFree(pParse->db, aiCol);
287 return 1;
288 }
289
290 *ppIdx = pIdx;
291 return 0;
292}
293
dan8099ce62009-09-23 08:43:35294/*
danbd747832009-09-25 12:00:01295** This function is called when a row is inserted into or deleted from the
296** child table of foreign key constraint pFKey. If an SQL UPDATE is executed
297** on the child table of pFKey, this function is invoked twice for each row
dan8099ce62009-09-23 08:43:35298** affected - once to "delete" the old row, and then again to "insert" the
299** new row.
300**
301** Each time it is called, this function generates VDBE code to locate the
302** row in the parent table that corresponds to the row being inserted into
303** or deleted from the child table. If the parent row can be found, no
304** special action is taken. Otherwise, if the parent row can *not* be
305** found in the parent table:
306**
307** Operation | FK type | Action taken
308** --------------------------------------------------------------------------
danbd747832009-09-25 12:00:01309** INSERT immediate Increment the "immediate constraint counter".
310**
311** DELETE immediate Decrement the "immediate constraint counter".
dan8099ce62009-09-23 08:43:35312**
313** INSERT deferred Increment the "deferred constraint counter".
314**
315** DELETE deferred Decrement the "deferred constraint counter".
316**
danbd747832009-09-25 12:00:01317** These operations are identified in the comment at the top of this file
318** (fkey.c) as "I.1" and "D.1".
dan8099ce62009-09-23 08:43:35319*/
320static void fkLookupParent(
dan1da40a32009-09-19 17:00:31321 Parse *pParse, /* Parse context */
322 int iDb, /* Index of database housing pTab */
dan8099ce62009-09-23 08:43:35323 Table *pTab, /* Parent table of FK pFKey */
324 Index *pIdx, /* Unique index on parent key columns in pTab */
325 FKey *pFKey, /* Foreign key constraint */
326 int *aiCol, /* Map from parent key columns to child table columns */
327 int regData, /* Address of array containing child table row */
dan02470b22009-10-03 07:04:11328 int nIncr, /* Increment constraint counter by this */
329 int isIgnore /* If true, pretend pTab contains all NULL values */
dan1da40a32009-09-19 17:00:31330){
dan8099ce62009-09-23 08:43:35331 int i; /* Iterator variable */
332 Vdbe *v = sqlite3GetVdbe(pParse); /* Vdbe to add code to */
333 int iCur = pParse->nTab - 1; /* Cursor number to use */
drhec4ccdb2018-12-29 02:26:59334 int iOk = sqlite3VdbeMakeLabel(pParse); /* jump here if parent key found */
dan1da40a32009-09-19 17:00:31335
drh4031baf2018-05-28 17:31:20336 sqlite3VdbeVerifyAbortable(v,
337 (!pFKey->isDeferred
338 && !(pParse->db->flags & SQLITE_DeferFKs)
339 && !pParse->pToplevel
340 && !pParse->isMultiWrite) ? OE_Abort : OE_Ignore);
341
dan0ff297e2009-09-25 17:03:14342 /* If nIncr is less than zero, then check at runtime if there are any
343 ** outstanding constraints to resolve. If there are not, there is no need
344 ** to check if deleting this row resolves any outstanding violations.
345 **
346 ** Check if any of the key columns in the child table row are NULL. If
347 ** any are, then the constraint is considered satisfied. No need to
348 ** search for a matching row in the parent table. */
349 if( nIncr<0 ){
350 sqlite3VdbeAddOp2(v, OP_FkIfZero, pFKey->isDeferred, iOk);
drh688852a2014-02-17 22:40:43351 VdbeCoverage(v);
dan0ff297e2009-09-25 17:03:14352 }
dan1da40a32009-09-19 17:00:31353 for(i=0; i<pFKey->nCol; i++){
drha1a01ff2019-10-23 00:31:01354 int iReg = sqlite3TableColumnToStorage(pFKey->pFrom,aiCol[i]) + regData + 1;
drh688852a2014-02-17 22:40:43355 sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iOk); VdbeCoverage(v);
dan1da40a32009-09-19 17:00:31356 }
357
dan02470b22009-10-03 07:04:11358 if( isIgnore==0 ){
359 if( pIdx==0 ){
360 /* If pIdx is NULL, then the parent key is the INTEGER PRIMARY KEY
361 ** column of the parent table (table pTab). */
362 int iMustBeInt; /* Address of MustBeInt instruction */
363 int regTemp = sqlite3GetTempReg(pParse);
364
365 /* Invoke MustBeInt to coerce the child key value to an integer (i.e.
366 ** apply the affinity of the parent key). If this fails, then there
367 ** is no matching parent key. Before using MustBeInt, make a copy of
368 ** the value. Otherwise, the value inserted into the child key column
369 ** will have INTEGER affinity applied to it, which may not be correct. */
drha1a01ff2019-10-23 00:31:01370 sqlite3VdbeAddOp2(v, OP_SCopy,
371 sqlite3TableColumnToStorage(pFKey->pFrom,aiCol[0])+1+regData, regTemp);
dan02470b22009-10-03 07:04:11372 iMustBeInt = sqlite3VdbeAddOp2(v, OP_MustBeInt, regTemp, 0);
drh688852a2014-02-17 22:40:43373 VdbeCoverage(v);
dan02470b22009-10-03 07:04:11374
375 /* If the parent table is the same as the child table, and we are about
376 ** to increment the constraint-counter (i.e. this is an INSERT operation),
377 ** then check if the row being inserted matches itself. If so, do not
378 ** increment the constraint-counter. */
379 if( pTab==pFKey->pFrom && nIncr==1 ){
drh688852a2014-02-17 22:40:43380 sqlite3VdbeAddOp3(v, OP_Eq, regData, iOk, regTemp); VdbeCoverage(v);
drh3d77dee2014-02-19 14:20:49381 sqlite3VdbeChangeP5(v, SQLITE_NOTNULL);
dan9277efa2009-09-28 11:54:21382 }
dan02470b22009-10-03 07:04:11383
384 sqlite3OpenTable(pParse, iCur, iDb, pTab, OP_OpenRead);
drh688852a2014-02-17 22:40:43385 sqlite3VdbeAddOp3(v, OP_NotExists, iCur, 0, regTemp); VdbeCoverage(v);
drh076e85f2015-09-03 13:46:12386 sqlite3VdbeGoto(v, iOk);
dan02470b22009-10-03 07:04:11387 sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2);
388 sqlite3VdbeJumpHere(v, iMustBeInt);
389 sqlite3ReleaseTempReg(pParse, regTemp);
390 }else{
391 int nCol = pFKey->nCol;
392 int regTemp = sqlite3GetTempRange(pParse, nCol);
dan02470b22009-10-03 07:04:11393
394 sqlite3VdbeAddOp3(v, OP_OpenRead, iCur, pIdx->tnum, iDb);
drh2ec2fb22013-11-06 19:59:23395 sqlite3VdbeSetP4KeyInfo(pParse, pIdx);
dan02470b22009-10-03 07:04:11396 for(i=0; i<nCol; i++){
drha1a01ff2019-10-23 00:31:01397 sqlite3VdbeAddOp2(v, OP_Copy,
398 sqlite3TableColumnToStorage(pFKey->pFrom, aiCol[i])+1+regData,
399 regTemp+i);
dan02470b22009-10-03 07:04:11400 }
401
402 /* If the parent table is the same as the child table, and we are about
403 ** to increment the constraint-counter (i.e. this is an INSERT operation),
404 ** then check if the row being inserted matches itself. If so, do not
danb328deb2011-06-10 16:33:25405 ** increment the constraint-counter.
406 **
407 ** If any of the parent-key values are NULL, then the row cannot match
408 ** itself. So set JUMPIFNULL to make sure we do the OP_Found if any
409 ** of the parent-key values are NULL (at this point it is known that
410 ** none of the child key values are).
411 */
dan02470b22009-10-03 07:04:11412 if( pTab==pFKey->pFrom && nIncr==1 ){
413 int iJump = sqlite3VdbeCurrentAddr(v) + nCol + 1;
414 for(i=0; i<nCol; i++){
drha1a01ff2019-10-23 00:31:01415 int iChild = sqlite3TableColumnToStorage(pFKey->pFrom,aiCol[i])
416 +1+regData;
417 int iParent = 1+regData;
418 iParent += sqlite3TableColumnToStorage(pIdx->pTable,
419 pIdx->aiColumn[i]);
drh4b92f982015-09-29 17:20:14420 assert( pIdx->aiColumn[i]>=0 );
danb328deb2011-06-10 16:33:25421 assert( aiCol[i]!=pTab->iPKey );
422 if( pIdx->aiColumn[i]==pTab->iPKey ){
423 /* The parent key is a composite key that includes the IPK column */
424 iParent = regData;
425 }
drh688852a2014-02-17 22:40:43426 sqlite3VdbeAddOp3(v, OP_Ne, iChild, iJump, iParent); VdbeCoverage(v);
danb328deb2011-06-10 16:33:25427 sqlite3VdbeChangeP5(v, SQLITE_JUMPIFNULL);
dan02470b22009-10-03 07:04:11428 }
drh076e85f2015-09-03 13:46:12429 sqlite3VdbeGoto(v, iOk);
dan02470b22009-10-03 07:04:11430 }
drh36d2d092022-04-04 18:17:59431
432 sqlite3VdbeAddOp4(v, OP_Affinity, regTemp, nCol, 0,
drhe9107692015-08-25 19:20:04433 sqlite3IndexAffinityStr(pParse->db,pIdx), nCol);
drh36d2d092022-04-04 18:17:59434 sqlite3VdbeAddOp4Int(v, OP_Found, iCur, iOk, regTemp, nCol);
435 VdbeCoverage(v);
dan02470b22009-10-03 07:04:11436 sqlite3ReleaseTempRange(pParse, regTemp, nCol);
dan9277efa2009-09-28 11:54:21437 }
dan1da40a32009-09-19 17:00:31438 }
439
drh648e2642013-07-11 15:03:32440 if( !pFKey->isDeferred && !(pParse->db->flags & SQLITE_DeferFKs)
441 && !pParse->pToplevel
442 && !pParse->isMultiWrite
443 ){
dan32b09f22009-09-23 17:29:59444 /* Special case: If this is an INSERT statement that will insert exactly
445 ** one row into the table, raise a constraint immediately instead of
446 ** incrementing a counter. This is necessary as the VM code is being
447 ** generated for will not open a statement transaction. */
448 assert( nIncr==1 );
drhd91c1a12013-02-09 13:58:25449 sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_FOREIGNKEY,
drhf9c8ce32013-11-05 13:33:55450 OE_Abort, 0, P4_STATIC, P5_ConstraintFK);
dan32b09f22009-09-23 17:29:59451 }else{
452 if( nIncr>0 && pFKey->isDeferred==0 ){
dan04668832014-12-16 20:13:30453 sqlite3MayAbort(pParse);
dan32b09f22009-09-23 17:29:59454 }
dan0ff297e2009-09-25 17:03:14455 sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, nIncr);
dan1da40a32009-09-19 17:00:31456 }
457
458 sqlite3VdbeResolveLabel(v, iOk);
daned81bf62009-10-07 16:04:46459 sqlite3VdbeAddOp1(v, OP_Close, iCur);
dan1da40a32009-09-19 17:00:31460}
461
drh90e758f2013-11-04 13:56:00462
463/*
464** Return an Expr object that refers to a memory register corresponding
465** to column iCol of table pTab.
466**
467** regBase is the first of an array of register that contains the data
468** for pTab. regBase itself holds the rowid. regBase+1 holds the first
469** column. regBase+2 holds the second column, and so forth.
470*/
471static Expr *exprTableRegister(
472 Parse *pParse, /* Parsing and code generating context */
473 Table *pTab, /* The table whose content is at r[regBase]... */
474 int regBase, /* Contents of table pTab */
475 i16 iCol /* Which column of pTab is desired */
476){
477 Expr *pExpr;
478 Column *pCol;
479 const char *zColl;
480 sqlite3 *db = pParse->db;
481
482 pExpr = sqlite3Expr(db, TK_REGISTER, 0);
483 if( pExpr ){
484 if( iCol>=0 && iCol!=pTab->iPKey ){
485 pCol = &pTab->aCol[iCol];
drhf09a14f2019-11-01 12:14:30486 pExpr->iTable = regBase + sqlite3TableColumnToStorage(pTab,iCol) + 1;
drh11949042019-08-05 18:01:42487 pExpr->affExpr = pCol->affinity;
drh65b40092021-08-05 15:27:19488 zColl = sqlite3ColumnColl(pCol);
drh90e758f2013-11-04 13:56:00489 if( zColl==0 ) zColl = db->pDfltColl->zName;
490 pExpr = sqlite3ExprAddCollateString(pParse, pExpr, zColl);
491 }else{
492 pExpr->iTable = regBase;
drh11949042019-08-05 18:01:42493 pExpr->affExpr = SQLITE_AFF_INTEGER;
drh90e758f2013-11-04 13:56:00494 }
495 }
496 return pExpr;
497}
498
499/*
500** Return an Expr object that refers to column iCol of table pTab which
501** has cursor iCur.
502*/
503static Expr *exprTableColumn(
504 sqlite3 *db, /* The database connection */
505 Table *pTab, /* The table whose column is desired */
506 int iCursor, /* The open cursor on the table */
507 i16 iCol /* The column that is wanted */
508){
509 Expr *pExpr = sqlite3Expr(db, TK_COLUMN, 0);
510 if( pExpr ){
drh477572b2021-10-07 20:46:29511 assert( ExprUseYTab(pExpr) );
drheda079c2018-09-20 19:02:15512 pExpr->y.pTab = pTab;
drh90e758f2013-11-04 13:56:00513 pExpr->iTable = iCursor;
514 pExpr->iColumn = iCol;
515 }
516 return pExpr;
517}
518
dan8099ce62009-09-23 08:43:35519/*
520** This function is called to generate code executed when a row is deleted
521** from the parent table of foreign key constraint pFKey and, if pFKey is
522** deferred, when a row is inserted into the same table. When generating
523** code for an SQL UPDATE operation, this function may be called twice -
524** once to "delete" the old row and once to "insert" the new row.
525**
dan04668832014-12-16 20:13:30526** Parameter nIncr is passed -1 when inserting a row (as this may decrease
527** the number of FK violations in the db) or +1 when deleting one (as this
528** may increase the number of FK constraint problems).
529**
dan8099ce62009-09-23 08:43:35530** The code generated by this function scans through the rows in the child
531** table that correspond to the parent table row being deleted or inserted.
532** For each child row found, one of the following actions is taken:
533**
534** Operation | FK type | Action taken
535** --------------------------------------------------------------------------
danbd747832009-09-25 12:00:01536** DELETE immediate Increment the "immediate constraint counter".
danbd747832009-09-25 12:00:01537**
538** INSERT immediate Decrement the "immediate constraint counter".
dan8099ce62009-09-23 08:43:35539**
540** DELETE deferred Increment the "deferred constraint counter".
dan8099ce62009-09-23 08:43:35541**
542** INSERT deferred Decrement the "deferred constraint counter".
543**
danbd747832009-09-25 12:00:01544** These operations are identified in the comment at the top of this file
545** (fkey.c) as "I.2" and "D.2".
dan8099ce62009-09-23 08:43:35546*/
547static void fkScanChildren(
dan1da40a32009-09-19 17:00:31548 Parse *pParse, /* Parse context */
drhbd50a922013-11-03 02:27:58549 SrcList *pSrc, /* The child table to be scanned */
550 Table *pTab, /* The parent table */
551 Index *pIdx, /* Index on parent covering the foreign key */
552 FKey *pFKey, /* The foreign key linking pSrc to pTab */
dan8099ce62009-09-23 08:43:35553 int *aiCol, /* Map from pIdx cols to child table cols */
drhbd50a922013-11-03 02:27:58554 int regData, /* Parent row data starts here */
dan1da40a32009-09-19 17:00:31555 int nIncr /* Amount to increment deferred counter by */
556){
557 sqlite3 *db = pParse->db; /* Database handle */
558 int i; /* Iterator variable */
559 Expr *pWhere = 0; /* WHERE clause to scan with */
560 NameContext sNameContext; /* Context used to resolve WHERE clause */
561 WhereInfo *pWInfo; /* Context used by sqlite3WhereXXX() */
dan0ff297e2009-09-25 17:03:14562 int iFkIfZero = 0; /* Address of OP_FkIfZero */
563 Vdbe *v = sqlite3GetVdbe(pParse);
564
drhbd50a922013-11-03 02:27:58565 assert( pIdx==0 || pIdx->pTable==pTab );
566 assert( pIdx==0 || pIdx->nKeyCol==pFKey->nCol );
567 assert( pIdx!=0 || pFKey->nCol==1 );
drh2bea7cd2013-11-18 11:20:50568 assert( pIdx!=0 || HasRowid(pTab) );
dan9277efa2009-09-28 11:54:21569
dan0ff297e2009-09-25 17:03:14570 if( nIncr<0 ){
571 iFkIfZero = sqlite3VdbeAddOp2(v, OP_FkIfZero, pFKey->isDeferred, 0);
drh688852a2014-02-17 22:40:43572 VdbeCoverage(v);
dan0ff297e2009-09-25 17:03:14573 }
dan1da40a32009-09-19 17:00:31574
danbd747832009-09-25 12:00:01575 /* Create an Expr object representing an SQL expression like:
576 **
577 ** <parent-key1> = <child-key1> AND <parent-key2> = <child-key2> ...
578 **
579 ** The collation sequence used for the comparison should be that of
580 ** the parent key columns. The affinity of the parent key column should
581 ** be applied to each child key value before the comparison takes place.
582 */
dan1da40a32009-09-19 17:00:31583 for(i=0; i<pFKey->nCol; i++){
dan8099ce62009-09-23 08:43:35584 Expr *pLeft; /* Value from parent table row */
585 Expr *pRight; /* Column ref to child table */
dan1da40a32009-09-19 17:00:31586 Expr *pEq; /* Expression (pLeft = pRight) */
drhbbbdc832013-10-22 18:01:40587 i16 iCol; /* Index of column in child table */
dan8099ce62009-09-23 08:43:35588 const char *zCol; /* Name of column in child table */
dan1da40a32009-09-19 17:00:31589
drh90e758f2013-11-04 13:56:00590 iCol = pIdx ? pIdx->aiColumn[i] : -1;
591 pLeft = exprTableRegister(pParse, pTab, regData, iCol);
dan1da40a32009-09-19 17:00:31592 iCol = aiCol ? aiCol[i] : pFKey->aCol[0].iFrom;
dana8f0bf62009-09-23 12:06:52593 assert( iCol>=0 );
drhcf9d36d2021-08-02 18:03:43594 zCol = pFKey->pFrom->aCol[iCol].zCnName;
dan1da40a32009-09-19 17:00:31595 pRight = sqlite3Expr(db, TK_ID, zCol);
drhabfd35e2016-12-06 22:47:23596 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight);
drhd5c851c2019-04-19 13:38:34597 pWhere = sqlite3ExprAnd(pParse, pWhere, pEq);
dan1da40a32009-09-19 17:00:31598 }
599
drh90e758f2013-11-04 13:56:00600 /* If the child table is the same as the parent table, then add terms
601 ** to the WHERE clause that prevent this entry from being scanned.
602 ** The added WHERE clause terms are like this:
603 **
604 ** $current_rowid!=rowid
605 ** NOT( $current_a==a AND $current_b==b AND ... )
606 **
607 ** The first form is used for rowid tables. The second form is used
dane46201e2018-12-20 17:32:33608 ** for WITHOUT ROWID tables. In the second form, the *parent* key is
609 ** (a,b,...). Either the parent or primary key could be used to
610 ** uniquely identify the current row, but the parent key is more convenient
611 ** as the required values have already been loaded into registers
612 ** by the caller.
drh90e758f2013-11-04 13:56:00613 */
614 if( pTab==pFKey->pFrom && nIncr>0 ){
drhbd50a922013-11-03 02:27:58615 Expr *pNe; /* Expression (pLeft != pRight) */
dan9277efa2009-09-28 11:54:21616 Expr *pLeft; /* Value from parent table row */
617 Expr *pRight; /* Column ref to child table */
drh90e758f2013-11-04 13:56:00618 if( HasRowid(pTab) ){
619 pLeft = exprTableRegister(pParse, pTab, regData, -1);
620 pRight = exprTableColumn(db, pTab, pSrc->a[0].iCursor, -1);
drhabfd35e2016-12-06 22:47:23621 pNe = sqlite3PExpr(pParse, TK_NE, pLeft, pRight);
drh90e758f2013-11-04 13:56:00622 }else{
drh90e758f2013-11-04 13:56:00623 Expr *pEq, *pAll = 0;
drh2bea7cd2013-11-18 11:20:50624 assert( pIdx!=0 );
dane46201e2018-12-20 17:32:33625 for(i=0; i<pIdx->nKeyCol; i++){
drh90e758f2013-11-04 13:56:00626 i16 iCol = pIdx->aiColumn[i];
drh4b92f982015-09-29 17:20:14627 assert( iCol>=0 );
drh90e758f2013-11-04 13:56:00628 pLeft = exprTableRegister(pParse, pTab, regData, iCol);
drhcf9d36d2021-08-02 18:03:43629 pRight = sqlite3Expr(db, TK_ID, pTab->aCol[iCol].zCnName);
dane46201e2018-12-20 17:32:33630 pEq = sqlite3PExpr(pParse, TK_IS, pLeft, pRight);
drhd5c851c2019-04-19 13:38:34631 pAll = sqlite3ExprAnd(pParse, pAll, pEq);
drh90e758f2013-11-04 13:56:00632 }
drhabfd35e2016-12-06 22:47:23633 pNe = sqlite3PExpr(pParse, TK_NOT, pAll, 0);
dan9277efa2009-09-28 11:54:21634 }
drhd5c851c2019-04-19 13:38:34635 pWhere = sqlite3ExprAnd(pParse, pWhere, pNe);
dan9277efa2009-09-28 11:54:21636 }
637
dan1da40a32009-09-19 17:00:31638 /* Resolve the references in the WHERE clause. */
639 memset(&sNameContext, 0, sizeof(NameContext));
640 sNameContext.pSrcList = pSrc;
641 sNameContext.pParse = pParse;
642 sqlite3ResolveExprNames(&sNameContext, pWhere);
643
644 /* Create VDBE to loop through the entries in pSrc that match the WHERE
dand4572712014-12-17 14:38:45645 ** clause. For each row found, increment either the deferred or immediate
646 ** foreign key constraint counter. */
danc456a762017-06-22 16:51:16647 if( pParse->nErr==0 ){
drh895bab32022-01-27 16:14:50648 pWInfo = sqlite3WhereBegin(pParse, pSrc, pWhere, 0, 0, 0, 0, 0);
danc456a762017-06-22 16:51:16649 sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, nIncr);
650 if( pWInfo ){
651 sqlite3WhereEnd(pWInfo);
652 }
danf59c5ca2009-09-22 16:55:38653 }
dan1da40a32009-09-19 17:00:31654
655 /* Clean up the WHERE clause constructed above. */
656 sqlite3ExprDelete(db, pWhere);
dan0ff297e2009-09-25 17:03:14657 if( iFkIfZero ){
drhdc4f6fc2020-02-07 19:44:13658 sqlite3VdbeJumpHereOrPopInst(v, iFkIfZero);
dan0ff297e2009-09-25 17:03:14659 }
dan1da40a32009-09-19 17:00:31660}
661
662/*
drhbd50a922013-11-03 02:27:58663** This function returns a linked list of FKey objects (connected by
664** FKey.pNextTo) holding all children of table pTab. For example,
dan1da40a32009-09-19 17:00:31665** given the following schema:
666**
667** CREATE TABLE t1(a PRIMARY KEY);
668** CREATE TABLE t2(b REFERENCES t1(a);
669**
670** Calling this function with table "t1" as an argument returns a pointer
671** to the FKey structure representing the foreign key constraint on table
672** "t2". Calling this function with "t2" as the argument would return a
dan8099ce62009-09-23 08:43:35673** NULL pointer (as there are no FK constraints for which t2 is the parent
674** table).
dan1da40a32009-09-19 17:00:31675*/
dan432cc5b2009-09-26 17:51:48676FKey *sqlite3FkReferences(Table *pTab){
drhacbcb7e2014-08-21 20:26:37677 return (FKey *)sqlite3HashFind(&pTab->pSchema->fkeyHash, pTab->zName);
dan1da40a32009-09-19 17:00:31678}
679
dan8099ce62009-09-23 08:43:35680/*
681** The second argument is a Trigger structure allocated by the
682** fkActionTrigger() routine. This function deletes the Trigger structure
683** and all of its sub-components.
684**
685** The Trigger structure or any of its sub-components may be allocated from
686** the lookaside buffer belonging to database handle dbMem.
687*/
dan75cbd982009-09-21 16:06:03688static void fkTriggerDelete(sqlite3 *dbMem, Trigger *p){
689 if( p ){
690 TriggerStep *pStep = p->step_list;
691 sqlite3ExprDelete(dbMem, pStep->pWhere);
692 sqlite3ExprListDelete(dbMem, pStep->pExprList);
dan9277efa2009-09-28 11:54:21693 sqlite3SelectDelete(dbMem, pStep->pSelect);
drh788536b2009-09-23 03:01:58694 sqlite3ExprDelete(dbMem, p->pWhen);
dan75cbd982009-09-21 16:06:03695 sqlite3DbFree(dbMem, p);
696 }
697}
698
dan8099ce62009-09-23 08:43:35699/*
drh44a5c022022-01-02 12:01:03700** Clear the apTrigger[] cache of CASCADE triggers for all foreign keys
701** in a particular database. This needs to happen when the schema
702** changes.
703*/
704void sqlite3FkClearTriggerCache(sqlite3 *db, int iDb){
705 HashElem *k;
706 Hash *pHash = &db->aDb[iDb].pSchema->tblHash;
707 for(k=sqliteHashFirst(pHash); k; k=sqliteHashNext(k)){
708 Table *pTab = sqliteHashData(k);
709 FKey *pFKey;
710 if( !IsOrdinaryTable(pTab) ) continue;
711 for(pFKey=pTab->u.tab.pFKey; pFKey; pFKey=pFKey->pNextFrom){
712 fkTriggerDelete(db, pFKey->apTrigger[0]); pFKey->apTrigger[0] = 0;
713 fkTriggerDelete(db, pFKey->apTrigger[1]); pFKey->apTrigger[1] = 0;
714 }
715 }
716}
717
718/*
dand66c8302009-09-28 14:49:01719** This function is called to generate code that runs when table pTab is
720** being dropped from the database. The SrcList passed as the second argument
721** to this function contains a single entry guaranteed to resolve to
722** table pTab.
723**
724** Normally, no code is required. However, if either
725**
726** (a) The table is the parent table of a FK constraint, or
727** (b) The table is the child table of a deferred FK constraint and it is
728** determined at runtime that there are outstanding deferred FK
729** constraint violations in the database,
730**
731** then the equivalent of "DELETE FROM <tbl>" is executed before dropping
732** the table from the database. Triggers are disabled while running this
733** DELETE, but foreign key actions are not.
734*/
735void sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab){
736 sqlite3 *db = pParse->db;
drh78b2fa82021-10-07 12:11:20737 if( (db->flags&SQLITE_ForeignKeys) && IsOrdinaryTable(pTab) ){
dand66c8302009-09-28 14:49:01738 int iSkip = 0;
739 Vdbe *v = sqlite3GetVdbe(pParse);
740
741 assert( v ); /* VDBE has already been allocated */
drh78b2fa82021-10-07 12:11:20742 assert( IsOrdinaryTable(pTab) );
dand66c8302009-09-28 14:49:01743 if( sqlite3FkReferences(pTab)==0 ){
744 /* Search for a deferred foreign key constraint for which this table
745 ** is the child table. If one cannot be found, return without
746 ** generating any VDBE code. If one can be found, then jump over
747 ** the entire DELETE if there are no outstanding deferred constraints
748 ** when this statement is run. */
749 FKey *p;
drhf38524d2021-08-02 16:41:57750 for(p=pTab->u.tab.pFKey; p; p=p->pNextFrom){
dana8dbada2013-10-12 15:12:43751 if( p->isDeferred || (db->flags & SQLITE_DeferFKs) ) break;
dand66c8302009-09-28 14:49:01752 }
753 if( !p ) return;
drhec4ccdb2018-12-29 02:26:59754 iSkip = sqlite3VdbeMakeLabel(pParse);
drh688852a2014-02-17 22:40:43755 sqlite3VdbeAddOp2(v, OP_FkIfZero, 1, iSkip); VdbeCoverage(v);
dand66c8302009-09-28 14:49:01756 }
757
758 pParse->disableTriggers = 1;
drh8c0833f2017-11-14 23:48:23759 sqlite3DeleteFrom(pParse, sqlite3SrcListDup(db, pName, 0), 0, 0, 0);
dand66c8302009-09-28 14:49:01760 pParse->disableTriggers = 0;
761
762 /* If the DELETE has generated immediate foreign key constraint
763 ** violations, halt the VDBE and return an error at this point, before
764 ** any modifications to the schema are made. This is because statement
dana8dbada2013-10-12 15:12:43765 ** transactions are not able to rollback schema changes.
766 **
767 ** If the SQLITE_DeferFKs flag is set, then this is not required, as
768 ** the statement transaction will not be rolled back even if FK
769 ** constraints are violated.
770 */
771 if( (db->flags & SQLITE_DeferFKs)==0 ){
drh4031baf2018-05-28 17:31:20772 sqlite3VdbeVerifyAbortable(v, OE_Abort);
dana8dbada2013-10-12 15:12:43773 sqlite3VdbeAddOp2(v, OP_FkIfZero, 0, sqlite3VdbeCurrentAddr(v)+2);
drh688852a2014-02-17 22:40:43774 VdbeCoverage(v);
dana8dbada2013-10-12 15:12:43775 sqlite3HaltConstraint(pParse, SQLITE_CONSTRAINT_FOREIGNKEY,
drhf9c8ce32013-11-05 13:33:55776 OE_Abort, 0, P4_STATIC, P5_ConstraintFK);
dana8dbada2013-10-12 15:12:43777 }
dand66c8302009-09-28 14:49:01778
779 if( iSkip ){
780 sqlite3VdbeResolveLabel(v, iSkip);
781 }
782 }
783}
784
dan8ff2d952013-09-05 18:40:29785
786/*
787** The second argument points to an FKey object representing a foreign key
788** for which pTab is the child table. An UPDATE statement against pTab
789** is currently being processed. For each column of the table that is
790** actually updated, the corresponding element in the aChange[] array
791** is zero or greater (if a column is unmodified the corresponding element
792** is set to -1). If the rowid column is modified by the UPDATE statement
793** the bChngRowid argument is non-zero.
794**
795** This function returns true if any of the columns that are part of the
796** child key for FK constraint *p are modified.
797*/
798static int fkChildIsModified(
799 Table *pTab, /* Table being updated */
800 FKey *p, /* Foreign key for which pTab is the child */
801 int *aChange, /* Array indicating modified columns */
802 int bChngRowid /* True if rowid is modified by this update */
803){
804 int i;
805 for(i=0; i<p->nCol; i++){
806 int iChildKey = p->aCol[i].iFrom;
807 if( aChange[iChildKey]>=0 ) return 1;
808 if( iChildKey==pTab->iPKey && bChngRowid ) return 1;
809 }
810 return 0;
811}
812
813/*
814** The second argument points to an FKey object representing a foreign key
815** for which pTab is the parent table. An UPDATE statement against pTab
816** is currently being processed. For each column of the table that is
817** actually updated, the corresponding element in the aChange[] array
818** is zero or greater (if a column is unmodified the corresponding element
819** is set to -1). If the rowid column is modified by the UPDATE statement
820** the bChngRowid argument is non-zero.
821**
822** This function returns true if any of the columns that are part of the
823** parent key for FK constraint *p are modified.
824*/
825static int fkParentIsModified(
826 Table *pTab,
827 FKey *p,
828 int *aChange,
829 int bChngRowid
830){
831 int i;
832 for(i=0; i<p->nCol; i++){
833 char *zKey = p->aCol[i].zCol;
834 int iKey;
835 for(iKey=0; iKey<pTab->nCol; iKey++){
836 if( aChange[iKey]>=0 || (iKey==pTab->iPKey && bChngRowid) ){
837 Column *pCol = &pTab->aCol[iKey];
838 if( zKey ){
drhcf9d36d2021-08-02 18:03:43839 if( 0==sqlite3StrICmp(pCol->zCnName, zKey) ) return 1;
dan8ff2d952013-09-05 18:40:29840 }else if( pCol->colFlags & COLFLAG_PRIMKEY ){
841 return 1;
842 }
843 }
844 }
845 }
846 return 0;
847}
848
dand66c8302009-09-28 14:49:01849/*
dan04668832014-12-16 20:13:30850** Return true if the parser passed as the first argument is being
851** used to code a trigger that is really a "SET NULL" action belonging
852** to trigger pFKey.
853*/
854static int isSetNullAction(Parse *pParse, FKey *pFKey){
855 Parse *pTop = sqlite3ParseToplevel(pParse);
drhd2c737f2023-10-21 20:34:57856 if( pTop->pTriggerPrg ){
dan04668832014-12-16 20:13:30857 Trigger *p = pTop->pTriggerPrg->pTrigger;
858 if( (p==pFKey->apTrigger[0] && pFKey->aAction[0]==OE_SetNull)
859 || (p==pFKey->apTrigger[1] && pFKey->aAction[1]==OE_SetNull)
860 ){
drhd2c737f2023-10-21 20:34:57861 assert( (pTop->db->flags & SQLITE_FkNoAction)==0 );
dan04668832014-12-16 20:13:30862 return 1;
863 }
864 }
865 return 0;
866}
867
868/*
dan8099ce62009-09-23 08:43:35869** This function is called when inserting, deleting or updating a row of
870** table pTab to generate VDBE code to perform foreign key constraint
871** processing for the operation.
872**
873** For a DELETE operation, parameter regOld is passed the index of the
874** first register in an array of (pTab->nCol+1) registers containing the
875** rowid of the row being deleted, followed by each of the column values
876** of the row being deleted, from left to right. Parameter regNew is passed
877** zero in this case.
878**
dan8099ce62009-09-23 08:43:35879** For an INSERT operation, regOld is passed zero and regNew is passed the
880** first register of an array of (pTab->nCol+1) registers containing the new
881** row data.
882**
dan9277efa2009-09-28 11:54:21883** For an UPDATE operation, this function is called twice. Once before
884** the original record is deleted from the table using the calling convention
885** described for DELETE. Then again after the original record is deleted
dane7a94d82009-10-01 16:09:04886** but before the new record is inserted using the INSERT convention.
dan8099ce62009-09-23 08:43:35887*/
dan1da40a32009-09-19 17:00:31888void sqlite3FkCheck(
889 Parse *pParse, /* Parse context */
890 Table *pTab, /* Row is being deleted from this table */
dan1da40a32009-09-19 17:00:31891 int regOld, /* Previous row data is stored here */
dan8ff2d952013-09-05 18:40:29892 int regNew, /* New row data is stored here */
893 int *aChange, /* Array indicating UPDATEd columns (or 0) */
894 int bChngRowid /* True if rowid is UPDATEd */
dan1da40a32009-09-19 17:00:31895){
896 sqlite3 *db = pParse->db; /* Database handle */
dan1da40a32009-09-19 17:00:31897 FKey *pFKey; /* Used to iterate through FKs */
898 int iDb; /* Index of database containing pTab */
899 const char *zDb; /* Name of database containing pTab */
danf0662562009-09-28 18:52:11900 int isIgnoreErrors = pParse->disableTriggers;
dan1da40a32009-09-19 17:00:31901
dan792e9202009-09-29 11:28:51902 /* Exactly one of regOld and regNew should be non-zero. */
903 assert( (regOld==0)!=(regNew==0) );
dan1da40a32009-09-19 17:00:31904
905 /* If foreign-keys are disabled, this function is a no-op. */
906 if( (db->flags&SQLITE_ForeignKeys)==0 ) return;
drh78b2fa82021-10-07 12:11:20907 if( !IsOrdinaryTable(pTab) ) return;
dan1da40a32009-09-19 17:00:31908
dan1da40a32009-09-19 17:00:31909 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
drh69c33822016-08-18 14:33:11910 zDb = db->aDb[iDb].zDbSName;
dan1da40a32009-09-19 17:00:31911
dan8099ce62009-09-23 08:43:35912 /* Loop through all the foreign key constraints for which pTab is the
913 ** child table (the table that the foreign key definition is part of). */
drhf38524d2021-08-02 16:41:57914 for(pFKey=pTab->u.tab.pFKey; pFKey; pFKey=pFKey->pNextFrom){
dan8099ce62009-09-23 08:43:35915 Table *pTo; /* Parent table of foreign key pFKey */
dan1da40a32009-09-19 17:00:31916 Index *pIdx = 0; /* Index on key columns in pTo */
dan36062642009-09-21 18:56:23917 int *aiFree = 0;
918 int *aiCol;
919 int iCol;
920 int i;
dan04668832014-12-16 20:13:30921 int bIgnore = 0;
dan1da40a32009-09-19 17:00:31922
dan8ff2d952013-09-05 18:40:29923 if( aChange
924 && sqlite3_stricmp(pTab->zName, pFKey->zTo)!=0
925 && fkChildIsModified(pTab, pFKey, aChange, bChngRowid)==0
926 ){
927 continue;
928 }
929
dan8099ce62009-09-23 08:43:35930 /* Find the parent table of this foreign key. Also find a unique index
931 ** on the parent key columns in the parent table. If either of these
932 ** schema items cannot be located, set an error in pParse and return
933 ** early. */
danf0662562009-09-28 18:52:11934 if( pParse->disableTriggers ){
935 pTo = sqlite3FindTable(db, pFKey->zTo, zDb);
936 }else{
937 pTo = sqlite3LocateTable(pParse, 0, pFKey->zTo, zDb);
938 }
drh6c5b9152012-12-17 16:46:37939 if( !pTo || sqlite3FkLocateIndex(pParse, pTo, pFKey, &pIdx, &aiFree) ){
dan3098dc52011-08-22 09:54:26940 assert( isIgnoreErrors==0 || (regOld!=0 && regNew==0) );
danf0662562009-09-28 18:52:11941 if( !isIgnoreErrors || db->mallocFailed ) return;
drh9147c7b2011-08-22 20:33:12942 if( pTo==0 ){
dan3098dc52011-08-22 09:54:26943 /* If isIgnoreErrors is true, then a table is being dropped. In this
944 ** case SQLite runs a "DELETE FROM xxx" on the table being dropped
945 ** before actually dropping it in order to check FK constraints.
946 ** If the parent table of an FK constraint on the current table is
947 ** missing, behave as if it is empty. i.e. decrement the relevant
948 ** FK counter for each row of the current table with non-NULL keys.
949 */
950 Vdbe *v = sqlite3GetVdbe(pParse);
951 int iJump = sqlite3VdbeCurrentAddr(v) + pFKey->nCol + 1;
952 for(i=0; i<pFKey->nCol; i++){
drh9c6a9292019-11-01 18:52:09953 int iFromCol, iReg;
954 iFromCol = pFKey->aCol[i].iFrom;
955 iReg = sqlite3TableColumnToStorage(pFKey->pFrom,iFromCol) + regOld+1;
drh688852a2014-02-17 22:40:43956 sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iJump); VdbeCoverage(v);
dan3098dc52011-08-22 09:54:26957 }
958 sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, -1);
959 }
danf0662562009-09-28 18:52:11960 continue;
961 }
dan36062642009-09-21 18:56:23962 assert( pFKey->nCol==1 || (aiFree && pIdx) );
dan1da40a32009-09-19 17:00:31963
dan36062642009-09-21 18:56:23964 if( aiFree ){
965 aiCol = aiFree;
966 }else{
967 iCol = pFKey->aCol[0].iFrom;
968 aiCol = &iCol;
969 }
970 for(i=0; i<pFKey->nCol; i++){
971 if( aiCol[i]==pTab->iPKey ){
972 aiCol[i] = -1;
973 }
drh4b92f982015-09-29 17:20:14974 assert( pIdx==0 || pIdx->aiColumn[i]>=0 );
dan47a06342009-10-02 14:23:41975#ifndef SQLITE_OMIT_AUTHORIZATION
dan02470b22009-10-03 07:04:11976 /* Request permission to read the parent key columns. If the
977 ** authorization callback returns SQLITE_IGNORE, behave as if any
978 ** values read from the parent table are NULL. */
dan47a06342009-10-02 14:23:41979 if( db->xAuth ){
dan02470b22009-10-03 07:04:11980 int rcauth;
drhcf9d36d2021-08-02 18:03:43981 char *zCol = pTo->aCol[pIdx ? pIdx->aiColumn[i] : pTo->iPKey].zCnName;
dan02470b22009-10-03 07:04:11982 rcauth = sqlite3AuthReadCol(pParse, pTo->zName, zCol, iDb);
dan04668832014-12-16 20:13:30983 bIgnore = (rcauth==SQLITE_IGNORE);
dan47a06342009-10-02 14:23:41984 }
985#endif
dan36062642009-09-21 18:56:23986 }
987
dan8099ce62009-09-23 08:43:35988 /* Take a shared-cache advisory read-lock on the parent table. Allocate
989 ** a cursor to use to search the unique index on the parent key columns
990 ** in the parent table. */
dan1da40a32009-09-19 17:00:31991 sqlite3TableLock(pParse, iDb, pTo->tnum, 0, pTo->zName);
992 pParse->nTab++;
993
dan32b09f22009-09-23 17:29:59994 if( regOld!=0 ){
995 /* A row is being removed from the child table. Search for the parent.
996 ** If the parent does not exist, removing the child row resolves an
997 ** outstanding foreign key constraint violation. */
dan04668832014-12-16 20:13:30998 fkLookupParent(pParse, iDb, pTo, pIdx, pFKey, aiCol, regOld, -1, bIgnore);
dan1da40a32009-09-19 17:00:31999 }
dan04668832014-12-16 20:13:301000 if( regNew!=0 && !isSetNullAction(pParse, pFKey) ){
dan32b09f22009-09-23 17:29:591001 /* A row is being added to the child table. If a parent row cannot
dan04668832014-12-16 20:13:301002 ** be found, adding the child row has violated the FK constraint.
1003 **
1004 ** If this operation is being performed as part of a trigger program
1005 ** that is actually a "SET NULL" action belonging to this very
dand4572712014-12-17 14:38:451006 ** foreign key, then omit this scan altogether. As all child key
dan04668832014-12-16 20:13:301007 ** values are guaranteed to be NULL, it is not possible for adding
dand4572712014-12-17 14:38:451008 ** this row to cause an FK violation. */
dan04668832014-12-16 20:13:301009 fkLookupParent(pParse, iDb, pTo, pIdx, pFKey, aiCol, regNew, +1, bIgnore);
dan1da40a32009-09-19 17:00:311010 }
1011
dan36062642009-09-21 18:56:231012 sqlite3DbFree(db, aiFree);
dan1da40a32009-09-19 17:00:311013 }
1014
drhbd50a922013-11-03 02:27:581015 /* Loop through all the foreign key constraints that refer to this table.
1016 ** (the "child" constraints) */
dan432cc5b2009-09-26 17:51:481017 for(pFKey = sqlite3FkReferences(pTab); pFKey; pFKey=pFKey->pNextTo){
dan1da40a32009-09-19 17:00:311018 Index *pIdx = 0; /* Foreign key index for pFKey */
1019 SrcList *pSrc;
1020 int *aiCol = 0;
1021
dan8ff2d952013-09-05 18:40:291022 if( aChange && fkParentIsModified(pTab, pFKey, aChange, bChngRowid)==0 ){
1023 continue;
1024 }
1025
drh648e2642013-07-11 15:03:321026 if( !pFKey->isDeferred && !(db->flags & SQLITE_DeferFKs)
1027 && !pParse->pToplevel && !pParse->isMultiWrite
1028 ){
dan32b09f22009-09-23 17:29:591029 assert( regOld==0 && regNew!=0 );
dan04668832014-12-16 20:13:301030 /* Inserting a single row into a parent table cannot cause (or fix)
1031 ** an immediate foreign key violation. So do nothing in this case. */
danf0662562009-09-28 18:52:111032 continue;
dan1da40a32009-09-19 17:00:311033 }
1034
drh6c5b9152012-12-17 16:46:371035 if( sqlite3FkLocateIndex(pParse, pTab, pFKey, &pIdx, &aiCol) ){
danf0662562009-09-28 18:52:111036 if( !isIgnoreErrors || db->mallocFailed ) return;
1037 continue;
1038 }
dan1da40a32009-09-19 17:00:311039 assert( aiCol || pFKey->nCol==1 );
1040
drhbd50a922013-11-03 02:27:581041 /* Create a SrcList structure containing the child table. We need the
1042 ** child table as a SrcList for sqlite3WhereBegin() */
drh29c992c2019-01-17 15:40:411043 pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0);
danf59c5ca2009-09-22 16:55:381044 if( pSrc ){
drh76012942021-02-21 21:04:541045 SrcItem *pItem = pSrc->a;
drhb204b6a2024-08-17 23:23:231046 pItem->pSTab = pFKey->pFrom;
drh9a616f52009-10-12 20:01:491047 pItem->zName = pFKey->pFrom->zName;
drhb204b6a2024-08-17 23:23:231048 pItem->pSTab->nTabRef++;
drh9a616f52009-10-12 20:01:491049 pItem->iCursor = pParse->nTab++;
danf59c5ca2009-09-22 16:55:381050
dan32b09f22009-09-23 17:29:591051 if( regNew!=0 ){
dan9277efa2009-09-28 11:54:211052 fkScanChildren(pParse, pSrc, pTab, pIdx, pFKey, aiCol, regNew, -1);
danf59c5ca2009-09-22 16:55:381053 }
1054 if( regOld!=0 ){
dan04668832014-12-16 20:13:301055 int eAction = pFKey->aAction[aChange!=0];
dan17c34082023-10-20 17:06:391056 if( (db->flags & SQLITE_FkNoAction) ) eAction = OE_None;
1057
dan9277efa2009-09-28 11:54:211058 fkScanChildren(pParse, pSrc, pTab, pIdx, pFKey, aiCol, regOld, 1);
dan04668832014-12-16 20:13:301059 /* If this is a deferred FK constraint, or a CASCADE or SET NULL
dand4572712014-12-17 14:38:451060 ** action applies, then any foreign key violations caused by
1061 ** removing the parent key will be rectified by the action trigger.
1062 ** So do not set the "may-abort" flag in this case.
1063 **
1064 ** Note 1: If the FK is declared "ON UPDATE CASCADE", then the
1065 ** may-abort flag will eventually be set on this statement anyway
1066 ** (when this function is called as part of processing the UPDATE
1067 ** within the action trigger).
1068 **
1069 ** Note 2: At first glance it may seem like SQLite could simply omit
1070 ** all OP_FkCounter related scans when either CASCADE or SET NULL
1071 ** applies. The trouble starts if the CASCADE or SET NULL action
1072 ** trigger causes other triggers or action rules attached to the
1073 ** child table to fire. In these cases the fk constraint counters
1074 ** might be set incorrectly if any OP_FkCounter related scans are
1075 ** omitted. */
dan04668832014-12-16 20:13:301076 if( !pFKey->isDeferred && eAction!=OE_Cascade && eAction!=OE_SetNull ){
1077 sqlite3MayAbort(pParse);
1078 }
danf59c5ca2009-09-22 16:55:381079 }
drh9a616f52009-10-12 20:01:491080 pItem->zName = 0;
danf59c5ca2009-09-22 16:55:381081 sqlite3SrcListDelete(db, pSrc);
dan1da40a32009-09-19 17:00:311082 }
dan1da40a32009-09-19 17:00:311083 sqlite3DbFree(db, aiCol);
1084 }
1085}
1086
1087#define COLUMN_MASK(x) (((x)>31) ? 0xffffffff : ((u32)1<<(x)))
1088
1089/*
1090** This function is called before generating code to update or delete a
dane7a94d82009-10-01 16:09:041091** row contained in table pTab.
dan1da40a32009-09-19 17:00:311092*/
1093u32 sqlite3FkOldmask(
1094 Parse *pParse, /* Parse context */
dane7a94d82009-10-01 16:09:041095 Table *pTab /* Table being modified */
dan1da40a32009-09-19 17:00:311096){
1097 u32 mask = 0;
drh78b2fa82021-10-07 12:11:201098 if( pParse->db->flags&SQLITE_ForeignKeys && IsOrdinaryTable(pTab) ){
dan1da40a32009-09-19 17:00:311099 FKey *p;
1100 int i;
drhf38524d2021-08-02 16:41:571101 for(p=pTab->u.tab.pFKey; p; p=p->pNextFrom){
dan32b09f22009-09-23 17:29:591102 for(i=0; i<p->nCol; i++) mask |= COLUMN_MASK(p->aCol[i].iFrom);
dan1da40a32009-09-19 17:00:311103 }
dan432cc5b2009-09-26 17:51:481104 for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){
dan1da40a32009-09-19 17:00:311105 Index *pIdx = 0;
drh6c5b9152012-12-17 16:46:371106 sqlite3FkLocateIndex(pParse, pTab, p, &pIdx, 0);
dan1da40a32009-09-19 17:00:311107 if( pIdx ){
drh4b92f982015-09-29 17:20:141108 for(i=0; i<pIdx->nKeyCol; i++){
1109 assert( pIdx->aiColumn[i]>=0 );
1110 mask |= COLUMN_MASK(pIdx->aiColumn[i]);
1111 }
dan1da40a32009-09-19 17:00:311112 }
1113 }
1114 }
1115 return mask;
1116}
1117
dan8ff2d952013-09-05 18:40:291118
dan1da40a32009-09-19 17:00:311119/*
1120** This function is called before generating code to update or delete a
dane7a94d82009-10-01 16:09:041121** row contained in table pTab. If the operation is a DELETE, then
1122** parameter aChange is passed a NULL value. For an UPDATE, aChange points
1123** to an array of size N, where N is the number of columns in table pTab.
1124** If the i'th column is not modified by the UPDATE, then the corresponding
1125** entry in the aChange[] array is set to -1. If the column is modified,
1126** the value is 0 or greater. Parameter chngRowid is set to true if the
1127** UPDATE statement modifies the rowid fields of the table.
dan1da40a32009-09-19 17:00:311128**
1129** If any foreign key processing will be required, this function returns
dan940b5ea2017-04-11 19:58:551130** non-zero. If there is no foreign key related processing, this function
1131** returns zero.
1132**
1133** For an UPDATE, this function returns 2 if:
1134**
dan7937f632021-02-03 14:20:561135** * There are any FKs for which pTab is the child and the parent table
1136** and any FK processing at all is required (even of a different FK), or
1137**
dan940b5ea2017-04-11 19:58:551138** * the UPDATE modifies one or more parent keys for which the action is
1139** not "NO ACTION" (i.e. is CASCADE, SET DEFAULT or SET NULL).
1140**
1141** Or, assuming some other foreign key processing is required, 1.
dan1da40a32009-09-19 17:00:311142*/
1143int sqlite3FkRequired(
1144 Parse *pParse, /* Parse context */
1145 Table *pTab, /* Table being modified */
dane7a94d82009-10-01 16:09:041146 int *aChange, /* Non-NULL for UPDATE operations */
1147 int chngRowid /* True for UPDATE that affects rowid */
dan1da40a32009-09-19 17:00:311148){
dan7937f632021-02-03 14:20:561149 int eRet = 1; /* Value to return if bHaveFK is true */
1150 int bHaveFK = 0; /* If FK processing is required */
drh78b2fa82021-10-07 12:11:201151 if( pParse->db->flags&SQLITE_ForeignKeys && IsOrdinaryTable(pTab) ){
dane7a94d82009-10-01 16:09:041152 if( !aChange ){
1153 /* A DELETE operation. Foreign key processing is required if the
1154 ** table in question is either the child or parent table for any
1155 ** foreign key constraint. */
drhf38524d2021-08-02 16:41:571156 bHaveFK = (sqlite3FkReferences(pTab) || pTab->u.tab.pFKey);
dane7a94d82009-10-01 16:09:041157 }else{
1158 /* This is an UPDATE. Foreign key processing is only required if the
1159 ** operation modifies one or more child or parent key columns. */
dane7a94d82009-10-01 16:09:041160 FKey *p;
1161
1162 /* Check if any child key columns are being modified. */
drhf38524d2021-08-02 16:41:571163 for(p=pTab->u.tab.pFKey; p; p=p->pNextFrom){
dan940b5ea2017-04-11 19:58:551164 if( fkChildIsModified(pTab, p, aChange, chngRowid) ){
dan7937f632021-02-03 14:20:561165 if( 0==sqlite3_stricmp(pTab->zName, p->zTo) ) eRet = 2;
1166 bHaveFK = 1;
dan940b5ea2017-04-11 19:58:551167 }
dane7a94d82009-10-01 16:09:041168 }
1169
1170 /* Check if any parent key columns are being modified. */
1171 for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){
dan940b5ea2017-04-11 19:58:551172 if( fkParentIsModified(pTab, p, aChange, chngRowid) ){
dan17c34082023-10-20 17:06:391173 if( (pParse->db->flags & SQLITE_FkNoAction)==0
1174 && p->aAction[1]!=OE_None
1175 ){
1176 return 2;
1177 }
dan7937f632021-02-03 14:20:561178 bHaveFK = 1;
dan940b5ea2017-04-11 19:58:551179 }
dane7a94d82009-10-01 16:09:041180 }
1181 }
dan1da40a32009-09-19 17:00:311182 }
dan7937f632021-02-03 14:20:561183 return bHaveFK ? eRet : 0;
dan1da40a32009-09-19 17:00:311184}
1185
dan8099ce62009-09-23 08:43:351186/*
1187** This function is called when an UPDATE or DELETE operation is being
1188** compiled on table pTab, which is the parent table of foreign-key pFKey.
1189** If the current operation is an UPDATE, then the pChanges parameter is
1190** passed a pointer to the list of columns being modified. If it is a
1191** DELETE, pChanges is passed a NULL pointer.
1192**
1193** It returns a pointer to a Trigger structure containing a trigger
1194** equivalent to the ON UPDATE or ON DELETE action specified by pFKey.
danb1929702022-04-16 15:46:231195** If the action is "NO ACTION" then a NULL pointer is returned (these actions
1196** require no special handling by the triggers sub-system, code for them is
1197** created by fkScanChildren()).
dan8099ce62009-09-23 08:43:351198**
1199** For example, if pFKey is the foreign key and pTab is table "p" in
1200** the following schema:
1201**
1202** CREATE TABLE p(pk PRIMARY KEY);
1203** CREATE TABLE c(ck REFERENCES p ON DELETE CASCADE);
1204**
1205** then the returned trigger structure is equivalent to:
1206**
1207** CREATE TRIGGER ... DELETE ON p BEGIN
1208** DELETE FROM c WHERE ck = old.pk;
1209** END;
1210**
1211** The returned pointer is cached as part of the foreign key object. It
1212** is eventually freed along with the rest of the foreign key object by
1213** sqlite3FkDelete().
1214*/
dan1da40a32009-09-19 17:00:311215static Trigger *fkActionTrigger(
dan8099ce62009-09-23 08:43:351216 Parse *pParse, /* Parse context */
dan1da40a32009-09-19 17:00:311217 Table *pTab, /* Table being updated or deleted from */
1218 FKey *pFKey, /* Foreign key to get action for */
1219 ExprList *pChanges /* Change-list for UPDATE, NULL for DELETE */
1220){
1221 sqlite3 *db = pParse->db; /* Database handle */
dan29c7f9c2009-09-22 15:53:471222 int action; /* One of OE_None, OE_Cascade etc. */
1223 Trigger *pTrigger; /* Trigger definition to return */
dan8099ce62009-09-23 08:43:351224 int iAction = (pChanges!=0); /* 1 for UPDATE, 0 for DELETE */
dan1da40a32009-09-19 17:00:311225
dan8099ce62009-09-23 08:43:351226 action = pFKey->aAction[iAction];
dan17c34082023-10-20 17:06:391227 if( (db->flags & SQLITE_FkNoAction) ) action = OE_None;
mistachkin9d970c32016-02-25 21:38:281228 if( action==OE_Restrict && (db->flags & SQLITE_DeferFKs) ){
danaa9ffab2016-02-25 20:17:551229 return 0;
1230 }
dan8099ce62009-09-23 08:43:351231 pTrigger = pFKey->apTrigger[iAction];
dan1da40a32009-09-19 17:00:311232
dan9277efa2009-09-28 11:54:211233 if( action!=OE_None && !pTrigger ){
dan8099ce62009-09-23 08:43:351234 char const *zFrom; /* Name of child table */
dan1da40a32009-09-19 17:00:311235 int nFrom; /* Length in bytes of zFrom */
dan29c7f9c2009-09-22 15:53:471236 Index *pIdx = 0; /* Parent key index for this FK */
1237 int *aiCol = 0; /* child table cols -> parent key cols */
drhd3ceeb52009-10-13 13:08:191238 TriggerStep *pStep = 0; /* First (only) step of trigger program */
dan29c7f9c2009-09-22 15:53:471239 Expr *pWhere = 0; /* WHERE clause of trigger step */
1240 ExprList *pList = 0; /* Changes list if ON UPDATE CASCADE */
dan9277efa2009-09-28 11:54:211241 Select *pSelect = 0; /* If RESTRICT, "SELECT RAISE(...)" */
dan29c7f9c2009-09-22 15:53:471242 int i; /* Iterator variable */
drh788536b2009-09-23 03:01:581243 Expr *pWhen = 0; /* WHEN clause for the trigger */
dan1da40a32009-09-19 17:00:311244
drh6c5b9152012-12-17 16:46:371245 if( sqlite3FkLocateIndex(pParse, pTab, pFKey, &pIdx, &aiCol) ) return 0;
dan1da40a32009-09-19 17:00:311246 assert( aiCol || pFKey->nCol==1 );
1247
dan1da40a32009-09-19 17:00:311248 for(i=0; i<pFKey->nCol; i++){
dan1da40a32009-09-19 17:00:311249 Token tOld = { "old", 3 }; /* Literal "old" token */
1250 Token tNew = { "new", 3 }; /* Literal "new" token */
dan8099ce62009-09-23 08:43:351251 Token tFromCol; /* Name of column in child table */
1252 Token tToCol; /* Name of column in parent table */
1253 int iFromCol; /* Idx of column in child table */
dan29c7f9c2009-09-22 15:53:471254 Expr *pEq; /* tFromCol = OLD.tToCol */
dan1da40a32009-09-19 17:00:311255
1256 iFromCol = aiCol ? aiCol[i] : pFKey->aCol[0].iFrom;
dana8f0bf62009-09-23 12:06:521257 assert( iFromCol>=0 );
drhe918aab2015-04-10 12:04:571258 assert( pIdx!=0 || (pTab->iPKey>=0 && pTab->iPKey<pTab->nCol) );
drh4b92f982015-09-29 17:20:141259 assert( pIdx==0 || pIdx->aiColumn[i]>=0 );
drh40aced52016-01-22 17:48:091260 sqlite3TokenInit(&tToCol,
drhcf9d36d2021-08-02 18:03:431261 pTab->aCol[pIdx ? pIdx->aiColumn[i] : pTab->iPKey].zCnName);
1262 sqlite3TokenInit(&tFromCol, pFKey->pFrom->aCol[iFromCol].zCnName);
dan1da40a32009-09-19 17:00:311263
dan652ac1d2009-09-29 16:38:591264 /* Create the expression "OLD.zToCol = zFromCol". It is important
1265 ** that the "OLD.zToCol" term is on the LHS of the = operator, so
1266 ** that the affinity and collation sequence associated with the
1267 ** parent table are used for the comparison. */
dan1da40a32009-09-19 17:00:311268 pEq = sqlite3PExpr(pParse, TK_EQ,
dan1da40a32009-09-19 17:00:311269 sqlite3PExpr(pParse, TK_DOT,
drhb6b676e2015-04-21 03:13:471270 sqlite3ExprAlloc(db, TK_ID, &tOld, 0),
drhabfd35e2016-12-06 22:47:231271 sqlite3ExprAlloc(db, TK_ID, &tToCol, 0)),
drhb6b676e2015-04-21 03:13:471272 sqlite3ExprAlloc(db, TK_ID, &tFromCol, 0)
drhabfd35e2016-12-06 22:47:231273 );
drhd5c851c2019-04-19 13:38:341274 pWhere = sqlite3ExprAnd(pParse, pWhere, pEq);
dan1da40a32009-09-19 17:00:311275
drh788536b2009-09-23 03:01:581276 /* For ON UPDATE, construct the next term of the WHEN clause.
1277 ** The final WHEN clause will be like this:
1278 **
1279 ** WHEN NOT(old.col1 IS new.col1 AND ... AND old.colN IS new.colN)
1280 */
1281 if( pChanges ){
1282 pEq = sqlite3PExpr(pParse, TK_IS,
1283 sqlite3PExpr(pParse, TK_DOT,
drhb6b676e2015-04-21 03:13:471284 sqlite3ExprAlloc(db, TK_ID, &tOld, 0),
drhabfd35e2016-12-06 22:47:231285 sqlite3ExprAlloc(db, TK_ID, &tToCol, 0)),
drh788536b2009-09-23 03:01:581286 sqlite3PExpr(pParse, TK_DOT,
drhb6b676e2015-04-21 03:13:471287 sqlite3ExprAlloc(db, TK_ID, &tNew, 0),
drhabfd35e2016-12-06 22:47:231288 sqlite3ExprAlloc(db, TK_ID, &tToCol, 0))
1289 );
drhd5c851c2019-04-19 13:38:341290 pWhen = sqlite3ExprAnd(pParse, pWhen, pEq);
drh788536b2009-09-23 03:01:581291 }
1292
dan9277efa2009-09-28 11:54:211293 if( action!=OE_Restrict && (action!=OE_Cascade || pChanges) ){
dan1da40a32009-09-19 17:00:311294 Expr *pNew;
1295 if( action==OE_Cascade ){
1296 pNew = sqlite3PExpr(pParse, TK_DOT,
drhb6b676e2015-04-21 03:13:471297 sqlite3ExprAlloc(db, TK_ID, &tNew, 0),
drhabfd35e2016-12-06 22:47:231298 sqlite3ExprAlloc(db, TK_ID, &tToCol, 0));
dan1da40a32009-09-19 17:00:311299 }else if( action==OE_SetDflt ){
drhbc4974c2019-11-01 17:31:271300 Column *pCol = pFKey->pFrom->aCol + iFromCol;
1301 Expr *pDflt;
1302 if( pCol->colFlags & COLFLAG_GENERATED ){
1303 testcase( pCol->colFlags & COLFLAG_VIRTUAL );
1304 testcase( pCol->colFlags & COLFLAG_STORED );
1305 pDflt = 0;
1306 }else{
drh79cf2b72021-07-31 20:30:411307 pDflt = sqlite3ColumnExpr(pFKey->pFrom, pCol);
drhbc4974c2019-11-01 17:31:271308 }
dan1da40a32009-09-19 17:00:311309 if( pDflt ){
1310 pNew = sqlite3ExprDup(db, pDflt, 0);
1311 }else{
drhe1c03b62016-09-23 20:59:311312 pNew = sqlite3ExprAlloc(db, TK_NULL, 0, 0);
dan1da40a32009-09-19 17:00:311313 }
1314 }else{
drhe1c03b62016-09-23 20:59:311315 pNew = sqlite3ExprAlloc(db, TK_NULL, 0, 0);
dan1da40a32009-09-19 17:00:311316 }
1317 pList = sqlite3ExprListAppend(pParse, pList, pNew);
1318 sqlite3ExprListSetName(pParse, pList, &tFromCol, 0);
1319 }
1320 }
dan29c7f9c2009-09-22 15:53:471321 sqlite3DbFree(db, aiCol);
dan1da40a32009-09-19 17:00:311322
dan9277efa2009-09-28 11:54:211323 zFrom = pFKey->pFrom->zName;
1324 nFrom = sqlite3Strlen30(zFrom);
1325
1326 if( action==OE_Restrict ){
danb1929702022-04-16 15:46:231327 int iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
drh2142b7c2023-04-14 00:20:161328 SrcList *pSrc;
dan9277efa2009-09-28 11:54:211329 Expr *pRaise;
1330
drh788ade32024-05-08 17:42:131331 pRaise = sqlite3Expr(db, TK_STRING, "FOREIGN KEY constraint failed"),
1332 pRaise = sqlite3PExpr(pParse, TK_RAISE, pRaise, 0);
dan9277efa2009-09-28 11:54:211333 if( pRaise ){
drh11949042019-08-05 18:01:421334 pRaise->affExpr = OE_Abort;
dan9277efa2009-09-28 11:54:211335 }
drh2142b7c2023-04-14 00:20:161336 pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0);
1337 if( pSrc ){
1338 assert( pSrc->nSrc==1 );
1339 pSrc->a[0].zName = sqlite3DbStrDup(db, zFrom);
drh692c1602024-08-20 19:09:591340 assert( pSrc->a[0].fg.fixedSchema==0 && pSrc->a[0].fg.isSubquery==0 );
drh8797bd62024-08-17 19:46:491341 pSrc->a[0].u4.zDatabase = sqlite3DbStrDup(db, db->aDb[iDb].zDbSName);
drh2142b7c2023-04-14 00:20:161342 }
dan9277efa2009-09-28 11:54:211343 pSelect = sqlite3SelectNew(pParse,
1344 sqlite3ExprListAppend(pParse, 0, pRaise),
drh2142b7c2023-04-14 00:20:161345 pSrc,
dan9277efa2009-09-28 11:54:211346 pWhere,
drh8c0833f2017-11-14 23:48:231347 0, 0, 0, 0, 0
dan9277efa2009-09-28 11:54:211348 );
1349 pWhere = 0;
1350 }
1351
drhb2468952010-07-23 17:06:321352 /* Disable lookaside memory allocation */
drh31f69622019-10-05 14:39:361353 DisableLookaside;
dan29c7f9c2009-09-22 15:53:471354
dan29c7f9c2009-09-22 15:53:471355 pTrigger = (Trigger *)sqlite3DbMallocZero(db,
1356 sizeof(Trigger) + /* struct Trigger */
1357 sizeof(TriggerStep) + /* Single step in trigger program */
dan46408352015-04-21 16:38:491358 nFrom + 1 /* Space for pStep->zTarget */
dan29c7f9c2009-09-22 15:53:471359 );
1360 if( pTrigger ){
1361 pStep = pTrigger->step_list = (TriggerStep *)&pTrigger[1];
dan46408352015-04-21 16:38:491362 pStep->zTarget = (char *)&pStep[1];
1363 memcpy((char *)pStep->zTarget, zFrom, nFrom);
dan29c7f9c2009-09-22 15:53:471364
1365 pStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE);
1366 pStep->pExprList = sqlite3ExprListDup(db, pList, EXPRDUP_REDUCE);
dan9277efa2009-09-28 11:54:211367 pStep->pSelect = sqlite3SelectDup(db, pSelect, EXPRDUP_REDUCE);
drh788536b2009-09-23 03:01:581368 if( pWhen ){
drhabfd35e2016-12-06 22:47:231369 pWhen = sqlite3PExpr(pParse, TK_NOT, pWhen, 0);
drh788536b2009-09-23 03:01:581370 pTrigger->pWhen = sqlite3ExprDup(db, pWhen, EXPRDUP_REDUCE);
1371 }
dan29c7f9c2009-09-22 15:53:471372 }
1373
1374 /* Re-enable the lookaside buffer, if it was disabled earlier. */
drh31f69622019-10-05 14:39:361375 EnableLookaside;
dan29c7f9c2009-09-22 15:53:471376
drh788536b2009-09-23 03:01:581377 sqlite3ExprDelete(db, pWhere);
1378 sqlite3ExprDelete(db, pWhen);
1379 sqlite3ExprListDelete(db, pList);
dan9277efa2009-09-28 11:54:211380 sqlite3SelectDelete(db, pSelect);
dan29c7f9c2009-09-22 15:53:471381 if( db->mallocFailed==1 ){
1382 fkTriggerDelete(db, pTrigger);
1383 return 0;
1384 }
drhb07028f2011-10-14 21:49:181385 assert( pStep!=0 );
drh55f66b32019-07-16 19:44:321386 assert( pTrigger!=0 );
dan1da40a32009-09-19 17:00:311387
dan9277efa2009-09-28 11:54:211388 switch( action ){
1389 case OE_Restrict:
drhb8352472021-01-29 19:32:171390 pStep->op = TK_SELECT;
dan9277efa2009-09-28 11:54:211391 break;
1392 case OE_Cascade:
1393 if( !pChanges ){
1394 pStep->op = TK_DELETE;
1395 break;
1396 }
drh08b92082020-08-10 14:18:001397 /* no break */ deliberate_fall_through
dan9277efa2009-09-28 11:54:211398 default:
1399 pStep->op = TK_UPDATE;
1400 }
dan1da40a32009-09-19 17:00:311401 pStep->pTrig = pTrigger;
1402 pTrigger->pSchema = pTab->pSchema;
1403 pTrigger->pTabSchema = pTab->pSchema;
dan8099ce62009-09-23 08:43:351404 pFKey->apTrigger[iAction] = pTrigger;
1405 pTrigger->op = (pChanges ? TK_UPDATE : TK_DELETE);
dan1da40a32009-09-19 17:00:311406 }
1407
1408 return pTrigger;
1409}
1410
dan1da40a32009-09-19 17:00:311411/*
1412** This function is called when deleting or updating a row to implement
1413** any required CASCADE, SET NULL or SET DEFAULT actions.
1414*/
1415void sqlite3FkActions(
1416 Parse *pParse, /* Parse context */
1417 Table *pTab, /* Table being updated or deleted from */
1418 ExprList *pChanges, /* Change-list for UPDATE, NULL for DELETE */
dan8ff2d952013-09-05 18:40:291419 int regOld, /* Address of array containing old row */
1420 int *aChange, /* Array indicating UPDATEd columns (or 0) */
1421 int bChngRowid /* True if rowid is UPDATEd */
dan1da40a32009-09-19 17:00:311422){
1423 /* If foreign-key support is enabled, iterate through all FKs that
1424 ** refer to table pTab. If there is an action associated with the FK
1425 ** for this operation (either update or delete), invoke the associated
1426 ** trigger sub-program. */
1427 if( pParse->db->flags&SQLITE_ForeignKeys ){
1428 FKey *pFKey; /* Iterator variable */
dan432cc5b2009-09-26 17:51:481429 for(pFKey = sqlite3FkReferences(pTab); pFKey; pFKey=pFKey->pNextTo){
dan8ff2d952013-09-05 18:40:291430 if( aChange==0 || fkParentIsModified(pTab, pFKey, aChange, bChngRowid) ){
1431 Trigger *pAct = fkActionTrigger(pParse, pTab, pFKey, pChanges);
1432 if( pAct ){
1433 sqlite3CodeRowTriggerDirect(pParse, pAct, pTab, regOld, OE_Abort, 0);
1434 }
dan1da40a32009-09-19 17:00:311435 }
1436 }
1437 }
1438}
1439
dan75cbd982009-09-21 16:06:031440#endif /* ifndef SQLITE_OMIT_TRIGGER */
1441
dan1da40a32009-09-19 17:00:311442/*
1443** Free all memory associated with foreign key definitions attached to
1444** table pTab. Remove the deleted foreign keys from the Schema.fkeyHash
1445** hash table.
1446*/
dan1feeaed2010-07-23 15:41:471447void sqlite3FkDelete(sqlite3 *db, Table *pTab){
dan1da40a32009-09-19 17:00:311448 FKey *pFKey; /* Iterator variable */
1449 FKey *pNext; /* Copy of pFKey->pNextFrom */
1450
drh78b2fa82021-10-07 12:11:201451 assert( IsOrdinaryTable(pTab) );
drh41ce47c2022-08-22 02:00:261452 assert( db!=0 );
drhf38524d2021-08-02 16:41:571453 for(pFKey=pTab->u.tab.pFKey; pFKey; pFKey=pNext){
drh76f24772021-08-03 18:45:411454 assert( db==0 || sqlite3SchemaMutexHeld(db, 0, pTab->pSchema) );
dan1da40a32009-09-19 17:00:311455
1456 /* Remove the FK from the fkeyHash hash table. */
drh41ce47c2022-08-22 02:00:261457 if( db->pnBytesFreed==0 ){
dand46def72010-07-24 11:28:281458 if( pFKey->pPrevTo ){
1459 pFKey->pPrevTo->pNextTo = pFKey->pNextTo;
1460 }else{
drh56a41072023-06-16 14:39:211461 const char *z = (pFKey->pNextTo ? pFKey->pNextTo->zTo : pFKey->zTo);
1462 sqlite3HashInsert(&pTab->pSchema->fkeyHash, z, pFKey->pNextTo);
dand46def72010-07-24 11:28:281463 }
1464 if( pFKey->pNextTo ){
1465 pFKey->pNextTo->pPrevTo = pFKey->pPrevTo;
1466 }
dan1da40a32009-09-19 17:00:311467 }
dand46def72010-07-24 11:28:281468
1469 /* EV: R-30323-21917 Each foreign key constraint in SQLite is
1470 ** classified as either immediate or deferred.
1471 */
1472 assert( pFKey->isDeferred==0 || pFKey->isDeferred==1 );
dan1da40a32009-09-19 17:00:311473
1474 /* Delete any triggers created to implement actions for this FK. */
dan75cbd982009-09-21 16:06:031475#ifndef SQLITE_OMIT_TRIGGER
dan1feeaed2010-07-23 15:41:471476 fkTriggerDelete(db, pFKey->apTrigger[0]);
1477 fkTriggerDelete(db, pFKey->apTrigger[1]);
dan75cbd982009-09-21 16:06:031478#endif
dan1da40a32009-09-19 17:00:311479
dan1da40a32009-09-19 17:00:311480 pNext = pFKey->pNextFrom;
dan1feeaed2010-07-23 15:41:471481 sqlite3DbFree(db, pFKey);
dan1da40a32009-09-19 17:00:311482 }
1483}
dan75cbd982009-09-21 16:06:031484#endif /* ifndef SQLITE_OMIT_FOREIGN_KEY */