dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 1 | /* |
| 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 |
dan | 75cbd98 | 2009-09-21 16:06:03 +0000 | [diff] [blame] | 17 | #ifndef SQLITE_OMIT_TRIGGER |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 18 | |
| 19 | /* |
| 20 | ** Deferred and Immediate FKs |
| 21 | ** -------------------------- |
| 22 | ** |
| 23 | ** Foreign keys in SQLite come in two flavours: deferred and immediate. |
dan | 8a2fff7 | 2009-09-23 18:07:22 +0000 | [diff] [blame^] | 24 | ** If an immediate foreign key constraint is violated, SQLITE_CONSTRAINT |
| 25 | ** is returned and the current statement transaction rolled back. If a |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 26 | ** deferred foreign key constraint is violated, no action is taken |
| 27 | ** immediately. However if the application attempts to commit the |
| 28 | ** transaction before fixing the constraint violation, the attempt fails. |
| 29 | ** |
| 30 | ** Deferred constraints are implemented using a simple counter associated |
| 31 | ** with the database handle. The counter is set to zero each time a |
| 32 | ** database transaction is opened. Each time a statement is executed |
| 33 | ** that causes a foreign key violation, the counter is incremented. Each |
| 34 | ** time a statement is executed that removes an existing violation from |
| 35 | ** the database, the counter is decremented. When the transaction is |
| 36 | ** committed, the commit fails if the current value of the counter is |
| 37 | ** greater than zero. This scheme has two big drawbacks: |
| 38 | ** |
| 39 | ** * When a commit fails due to a deferred foreign key constraint, |
| 40 | ** there is no way to tell which foreign constraint is not satisfied, |
| 41 | ** or which row it is not satisfied for. |
| 42 | ** |
| 43 | ** * If the database contains foreign key violations when the |
| 44 | ** transaction is opened, this may cause the mechanism to malfunction. |
| 45 | ** |
| 46 | ** Despite these problems, this approach is adopted as it seems simpler |
| 47 | ** than the alternatives. |
| 48 | ** |
| 49 | ** INSERT operations: |
| 50 | ** |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 51 | ** I.1) For each FK for which the table is the child table, search |
dan | 8a2fff7 | 2009-09-23 18:07:22 +0000 | [diff] [blame^] | 52 | ** the parent table for a match. If none is found increment the |
| 53 | ** constraint counter. |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 54 | ** |
dan | 8a2fff7 | 2009-09-23 18:07:22 +0000 | [diff] [blame^] | 55 | ** I.2) For each FK for which the table is the parent table, |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 56 | ** search the child table for rows that correspond to the new |
| 57 | ** row in the parent table. Decrement the counter for each row |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 58 | ** found (as the constraint is now satisfied). |
| 59 | ** |
| 60 | ** DELETE operations: |
| 61 | ** |
dan | 8a2fff7 | 2009-09-23 18:07:22 +0000 | [diff] [blame^] | 62 | ** D.1) For each FK for which the table is the child table, |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 63 | ** search the parent table for a row that corresponds to the |
| 64 | ** deleted row in the child table. If such a row is not found, |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 65 | ** decrement the counter. |
| 66 | ** |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 67 | ** D.2) For each FK for which the table is the parent table, search |
| 68 | ** the child table for rows that correspond to the deleted row |
dan | 8a2fff7 | 2009-09-23 18:07:22 +0000 | [diff] [blame^] | 69 | ** in the parent table. For each found increment the counter. |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 70 | ** |
| 71 | ** UPDATE operations: |
| 72 | ** |
| 73 | ** An UPDATE command requires that all 4 steps above are taken, but only |
| 74 | ** for FK constraints for which the affected columns are actually |
| 75 | ** modified (values must be compared at runtime). |
| 76 | ** |
| 77 | ** Note that I.1 and D.1 are very similar operations, as are I.2 and D.2. |
| 78 | ** This simplifies the implementation a bit. |
| 79 | ** |
| 80 | ** For the purposes of immediate FK constraints, the OR REPLACE conflict |
| 81 | ** resolution is considered to delete rows before the new row is inserted. |
| 82 | ** If a delete caused by OR REPLACE violates an FK constraint, an exception |
| 83 | ** is thrown, even if the FK constraint would be satisfied after the new |
| 84 | ** row is inserted. |
| 85 | ** |
| 86 | ** TODO: How should dropping a table be handled? How should renaming a |
| 87 | ** table be handled? |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 88 | ** |
| 89 | ** |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 90 | ** Query API Notes |
| 91 | ** --------------- |
| 92 | ** |
| 93 | ** Before coding an UPDATE or DELETE row operation, the code-generator |
| 94 | ** for those two operations needs to know whether or not the operation |
| 95 | ** requires any FK processing and, if so, which columns of the original |
| 96 | ** row are required by the FK processing VDBE code (i.e. if FKs were |
| 97 | ** implemented using triggers, which of the old.* columns would be |
| 98 | ** accessed). No information is required by the code-generator before |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 99 | ** coding an INSERT operation. The functions used by the UPDATE/DELETE |
| 100 | ** generation code to query for this information are: |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 101 | ** |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 102 | ** sqlite3FkRequired() - Test to see if FK processing is required. |
| 103 | ** sqlite3FkOldmask() - Query for the set of required old.* columns. |
| 104 | ** |
| 105 | ** |
| 106 | ** Externally accessible module functions |
| 107 | ** -------------------------------------- |
| 108 | ** |
| 109 | ** sqlite3FkCheck() - Check for foreign key violations. |
| 110 | ** sqlite3FkActions() - Code triggers for ON UPDATE/ON DELETE actions. |
| 111 | ** sqlite3FkDelete() - Delete an FKey structure. |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 112 | */ |
| 113 | |
| 114 | /* |
| 115 | ** VDBE Calling Convention |
| 116 | ** ----------------------- |
| 117 | ** |
| 118 | ** Example: |
| 119 | ** |
| 120 | ** For the following INSERT statement: |
| 121 | ** |
| 122 | ** CREATE TABLE t1(a, b INTEGER PRIMARY KEY, c); |
| 123 | ** INSERT INTO t1 VALUES(1, 2, 3.1); |
| 124 | ** |
| 125 | ** Register (x): 2 (type integer) |
| 126 | ** Register (x+1): 1 (type integer) |
| 127 | ** Register (x+2): NULL (type NULL) |
| 128 | ** Register (x+3): 3.1 (type real) |
| 129 | */ |
| 130 | |
| 131 | /* |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 132 | ** A foreign key constraint requires that the key columns in the parent |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 133 | ** table are collectively subject to a UNIQUE or PRIMARY KEY constraint. |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 134 | ** Given that pParent is the parent table for foreign key constraint pFKey, |
| 135 | ** search the schema a unique index on the parent key columns. |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 136 | ** |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 137 | ** If successful, zero is returned. If the parent key is an INTEGER PRIMARY |
| 138 | ** KEY column, then output variable *ppIdx is set to NULL. Otherwise, *ppIdx |
| 139 | ** is set to point to the unique index. |
| 140 | ** |
| 141 | ** If the parent key consists of a single column (the foreign key constraint |
| 142 | ** is not a composite foreign key), output variable *paiCol is set to NULL. |
| 143 | ** Otherwise, it is set to point to an allocated array of size N, where |
| 144 | ** N is the number of columns in the parent key. The first element of the |
| 145 | ** array is the index of the child table column that is mapped by the FK |
| 146 | ** constraint to the parent table column stored in the left-most column |
| 147 | ** of index *ppIdx. The second element of the array is the index of the |
| 148 | ** child table column that corresponds to the second left-most column of |
| 149 | ** *ppIdx, and so on. |
| 150 | ** |
| 151 | ** If the required index cannot be found, either because: |
| 152 | ** |
| 153 | ** 1) The named parent key columns do not exist, or |
| 154 | ** |
| 155 | ** 2) The named parent key columns do exist, but are not subject to a |
| 156 | ** UNIQUE or PRIMARY KEY constraint, or |
| 157 | ** |
| 158 | ** 3) No parent key columns were provided explicitly as part of the |
| 159 | ** foreign key definition, and the parent table does not have a |
| 160 | ** PRIMARY KEY, or |
| 161 | ** |
| 162 | ** 4) No parent key columns were provided explicitly as part of the |
| 163 | ** foreign key definition, and the PRIMARY KEY of the parent table |
| 164 | ** consists of a a different number of columns to the child key in |
| 165 | ** the child table. |
| 166 | ** |
| 167 | ** then non-zero is returned, and a "foreign key mismatch" error loaded |
| 168 | ** into pParse. If an OOM error occurs, non-zero is returned and the |
| 169 | ** pParse->db->mallocFailed flag is set. |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 170 | */ |
| 171 | static int locateFkeyIndex( |
| 172 | Parse *pParse, /* Parse context to store any error in */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 173 | Table *pParent, /* Parent table of FK constraint pFKey */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 174 | FKey *pFKey, /* Foreign key to find index for */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 175 | Index **ppIdx, /* OUT: Unique index on parent table */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 176 | int **paiCol /* OUT: Map of index columns in pFKey */ |
| 177 | ){ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 178 | Index *pIdx = 0; /* Value to return via *ppIdx */ |
| 179 | int *aiCol = 0; /* Value to return via *paiCol */ |
| 180 | int nCol = pFKey->nCol; /* Number of columns in parent key */ |
| 181 | char *zKey = pFKey->aCol[0].zCol; /* Name of left-most parent key column */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 182 | |
| 183 | /* The caller is responsible for zeroing output parameters. */ |
| 184 | assert( ppIdx && *ppIdx==0 ); |
| 185 | assert( !paiCol || *paiCol==0 ); |
| 186 | |
| 187 | /* If this is a non-composite (single column) foreign key, check if it |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 188 | ** maps to the INTEGER PRIMARY KEY of table pParent. If so, leave *ppIdx |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 189 | ** and *paiCol set to zero and return early. |
| 190 | ** |
| 191 | ** Otherwise, for a composite foreign key (more than one column), allocate |
| 192 | ** space for the aiCol array (returned via output parameter *paiCol). |
| 193 | ** Non-composite foreign keys do not require the aiCol array. |
| 194 | */ |
| 195 | if( nCol==1 ){ |
| 196 | /* The FK maps to the IPK if any of the following are true: |
| 197 | ** |
dan | d981d44 | 2009-09-23 13:59:17 +0000 | [diff] [blame] | 198 | ** 1) There is an INTEGER PRIMARY KEY column and the FK is implicitly |
| 199 | ** mapped to the primary key of table pParent, or |
| 200 | ** 2) The FK is explicitly mapped to a column declared as INTEGER |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 201 | ** PRIMARY KEY. |
| 202 | */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 203 | if( pParent->iPKey>=0 ){ |
| 204 | if( !zKey ) return 0; |
| 205 | if( !sqlite3StrICmp(pParent->aCol[pParent->iPKey].zName, zKey) ) return 0; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 206 | } |
| 207 | }else if( paiCol ){ |
| 208 | assert( nCol>1 ); |
| 209 | aiCol = (int *)sqlite3DbMallocRaw(pParse->db, nCol*sizeof(int)); |
| 210 | if( !aiCol ) return 1; |
| 211 | *paiCol = aiCol; |
| 212 | } |
| 213 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 214 | for(pIdx=pParent->pIndex; pIdx; pIdx=pIdx->pNext){ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 215 | if( pIdx->nColumn==nCol && pIdx->onError!=OE_None ){ |
| 216 | /* pIdx is a UNIQUE index (or a PRIMARY KEY) and has the right number |
| 217 | ** of columns. If each indexed column corresponds to a foreign key |
| 218 | ** column of pFKey, then this index is a winner. */ |
| 219 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 220 | if( zKey==0 ){ |
| 221 | /* If zKey is NULL, then this foreign key is implicitly mapped to |
| 222 | ** the PRIMARY KEY of table pParent. The PRIMARY KEY index may be |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 223 | ** identified by the test (Index.autoIndex==2). */ |
| 224 | if( pIdx->autoIndex==2 ){ |
dan | 8a2fff7 | 2009-09-23 18:07:22 +0000 | [diff] [blame^] | 225 | if( aiCol ){ |
| 226 | int i; |
| 227 | for(i=0; i<nCol; i++) aiCol[i] = pFKey->aCol[i].iFrom; |
| 228 | } |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 229 | break; |
| 230 | } |
| 231 | }else{ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 232 | /* If zKey is non-NULL, then this foreign key was declared to |
| 233 | ** map to an explicit list of columns in table pParent. Check if this |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 234 | ** index matches those columns. */ |
| 235 | int i, j; |
| 236 | for(i=0; i<nCol; i++){ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 237 | char *zIdxCol = pParent->aCol[pIdx->aiColumn[i]].zName; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 238 | for(j=0; j<nCol; j++){ |
| 239 | if( sqlite3StrICmp(pFKey->aCol[j].zCol, zIdxCol)==0 ){ |
| 240 | if( aiCol ) aiCol[i] = pFKey->aCol[j].iFrom; |
| 241 | break; |
| 242 | } |
| 243 | } |
| 244 | if( j==nCol ) break; |
| 245 | } |
| 246 | if( i==nCol ) break; /* pIdx is usable */ |
| 247 | } |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | if( pParse && !pIdx ){ |
| 252 | sqlite3ErrorMsg(pParse, "foreign key mismatch"); |
| 253 | sqlite3DbFree(pParse->db, aiCol); |
| 254 | return 1; |
| 255 | } |
| 256 | |
| 257 | *ppIdx = pIdx; |
| 258 | return 0; |
| 259 | } |
| 260 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 261 | /* |
| 262 | ** This function is called when a row is inserted into the child table of |
| 263 | ** foreign key constraint pFKey and, if pFKey is deferred, when a row is |
| 264 | ** deleted from the child table of pFKey. If an SQL UPDATE is executed on |
| 265 | ** the child table of pFKey, this function is invoked twice for each row |
| 266 | ** affected - once to "delete" the old row, and then again to "insert" the |
| 267 | ** new row. |
| 268 | ** |
| 269 | ** Each time it is called, this function generates VDBE code to locate the |
| 270 | ** row in the parent table that corresponds to the row being inserted into |
| 271 | ** or deleted from the child table. If the parent row can be found, no |
| 272 | ** special action is taken. Otherwise, if the parent row can *not* be |
| 273 | ** found in the parent table: |
| 274 | ** |
| 275 | ** Operation | FK type | Action taken |
| 276 | ** -------------------------------------------------------------------------- |
| 277 | ** INSERT immediate Throw a "foreign key constraint failed" exception. |
| 278 | ** |
| 279 | ** INSERT deferred Increment the "deferred constraint counter". |
| 280 | ** |
| 281 | ** DELETE deferred Decrement the "deferred constraint counter". |
| 282 | ** |
| 283 | ** This function is never called for a delete on the child table of an |
| 284 | ** immediate foreign key constraint. These operations are identified in |
| 285 | ** the comment at the top of this file (fkey.c) as "I.1" and "D.1". |
| 286 | */ |
| 287 | static void fkLookupParent( |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 288 | Parse *pParse, /* Parse context */ |
| 289 | int iDb, /* Index of database housing pTab */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 290 | Table *pTab, /* Parent table of FK pFKey */ |
| 291 | Index *pIdx, /* Unique index on parent key columns in pTab */ |
| 292 | FKey *pFKey, /* Foreign key constraint */ |
| 293 | int *aiCol, /* Map from parent key columns to child table columns */ |
| 294 | int regData, /* Address of array containing child table row */ |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 295 | int nIncr /* Increment constraint counter by this */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 296 | ){ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 297 | int i; /* Iterator variable */ |
| 298 | Vdbe *v = sqlite3GetVdbe(pParse); /* Vdbe to add code to */ |
| 299 | int iCur = pParse->nTab - 1; /* Cursor number to use */ |
| 300 | int iOk = sqlite3VdbeMakeLabel(v); /* jump here if parent key found */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 301 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 302 | /* Check if any of the key columns in the child table row are |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 303 | ** NULL. If any are, then the constraint is satisfied. No need |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 304 | ** to search for a matching row in the parent table. */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 305 | for(i=0; i<pFKey->nCol; i++){ |
dan | 3606264 | 2009-09-21 18:56:23 +0000 | [diff] [blame] | 306 | int iReg = aiCol[i] + regData + 1; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 307 | sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iOk); |
| 308 | } |
| 309 | |
| 310 | if( pIdx==0 ){ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 311 | /* If pIdx is NULL, then the parent key is the INTEGER PRIMARY KEY |
| 312 | ** column of the parent table (table pTab). */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 313 | int iReg = pFKey->aCol[0].iFrom + regData + 1; |
| 314 | sqlite3OpenTable(pParse, iCur, iDb, pTab, OP_OpenRead); |
| 315 | sqlite3VdbeAddOp3(v, OP_NotExists, iCur, 0, iReg); |
| 316 | sqlite3VdbeAddOp2(v, OP_Goto, 0, iOk); |
| 317 | sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); |
| 318 | }else{ |
| 319 | int regRec = sqlite3GetTempReg(pParse); |
| 320 | KeyInfo *pKey = sqlite3IndexKeyinfo(pParse, pIdx); |
| 321 | |
| 322 | sqlite3VdbeAddOp3(v, OP_OpenRead, iCur, pIdx->tnum, iDb); |
| 323 | sqlite3VdbeChangeP4(v, -1, (char*)pKey, P4_KEYINFO_HANDOFF); |
| 324 | |
dan | 3606264 | 2009-09-21 18:56:23 +0000 | [diff] [blame] | 325 | if( pFKey->nCol>1 ){ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 326 | int nCol = pFKey->nCol; |
| 327 | int regTemp = sqlite3GetTempRange(pParse, nCol); |
| 328 | for(i=0; i<nCol; i++){ |
| 329 | sqlite3VdbeAddOp2(v, OP_SCopy, aiCol[i]+1+regData, regTemp+i); |
| 330 | } |
| 331 | sqlite3VdbeAddOp3(v, OP_MakeRecord, regTemp, nCol, regRec); |
| 332 | sqlite3ReleaseTempRange(pParse, regTemp, nCol); |
| 333 | }else{ |
dan | 3606264 | 2009-09-21 18:56:23 +0000 | [diff] [blame] | 334 | int iReg = aiCol[0] + regData + 1; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 335 | sqlite3VdbeAddOp3(v, OP_MakeRecord, iReg, 1, regRec); |
| 336 | sqlite3IndexAffinityStr(v, pIdx); |
| 337 | } |
| 338 | |
| 339 | sqlite3VdbeAddOp3(v, OP_Found, iCur, iOk, regRec); |
| 340 | sqlite3ReleaseTempReg(pParse, regRec); |
| 341 | } |
| 342 | |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 343 | if( !pFKey->isDeferred && !pParse->pToplevel && !pParse->isMultiWrite ){ |
| 344 | /* Special case: If this is an INSERT statement that will insert exactly |
| 345 | ** one row into the table, raise a constraint immediately instead of |
| 346 | ** incrementing a counter. This is necessary as the VM code is being |
| 347 | ** generated for will not open a statement transaction. */ |
| 348 | assert( nIncr==1 ); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 349 | sqlite3HaltConstraint( |
| 350 | pParse, OE_Abort, "foreign key constraint failed", P4_STATIC |
| 351 | ); |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 352 | }else{ |
| 353 | if( nIncr>0 && pFKey->isDeferred==0 ){ |
| 354 | sqlite3ParseToplevel(pParse)->mayAbort = 1; |
| 355 | } |
| 356 | sqlite3VdbeAddOp2(v, OP_FkCounter, nIncr, pFKey->isDeferred); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | sqlite3VdbeResolveLabel(v, iOk); |
| 360 | } |
| 361 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 362 | /* |
| 363 | ** This function is called to generate code executed when a row is deleted |
| 364 | ** from the parent table of foreign key constraint pFKey and, if pFKey is |
| 365 | ** deferred, when a row is inserted into the same table. When generating |
| 366 | ** code for an SQL UPDATE operation, this function may be called twice - |
| 367 | ** once to "delete" the old row and once to "insert" the new row. |
| 368 | ** |
| 369 | ** The code generated by this function scans through the rows in the child |
| 370 | ** table that correspond to the parent table row being deleted or inserted. |
| 371 | ** For each child row found, one of the following actions is taken: |
| 372 | ** |
| 373 | ** Operation | FK type | Action taken |
| 374 | ** -------------------------------------------------------------------------- |
| 375 | ** DELETE immediate Throw a "foreign key constraint failed" exception. |
| 376 | ** |
| 377 | ** DELETE deferred Increment the "deferred constraint counter". |
| 378 | ** Or, if the ON (UPDATE|DELETE) action is RESTRICT, |
| 379 | ** throw a "foreign key constraint failed" exception. |
| 380 | ** |
| 381 | ** INSERT deferred Decrement the "deferred constraint counter". |
| 382 | ** |
| 383 | ** This function is never called for an INSERT operation on the parent table |
| 384 | ** of an immediate foreign key constraint. These operations are identified in |
| 385 | ** the comment at the top of this file (fkey.c) as "I.2" and "D.2". |
| 386 | */ |
| 387 | static void fkScanChildren( |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 388 | Parse *pParse, /* Parse context */ |
| 389 | SrcList *pSrc, /* SrcList containing the table to scan */ |
| 390 | Index *pIdx, /* Foreign key index */ |
| 391 | FKey *pFKey, /* Foreign key relationship */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 392 | int *aiCol, /* Map from pIdx cols to child table cols */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 393 | int regData, /* Referenced table data starts here */ |
| 394 | int nIncr /* Amount to increment deferred counter by */ |
| 395 | ){ |
| 396 | sqlite3 *db = pParse->db; /* Database handle */ |
| 397 | int i; /* Iterator variable */ |
| 398 | Expr *pWhere = 0; /* WHERE clause to scan with */ |
| 399 | NameContext sNameContext; /* Context used to resolve WHERE clause */ |
| 400 | WhereInfo *pWInfo; /* Context used by sqlite3WhereXXX() */ |
| 401 | |
| 402 | for(i=0; i<pFKey->nCol; i++){ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 403 | Expr *pLeft; /* Value from parent table row */ |
| 404 | Expr *pRight; /* Column ref to child table */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 405 | Expr *pEq; /* Expression (pLeft = pRight) */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 406 | int iCol; /* Index of column in child table */ |
| 407 | const char *zCol; /* Name of column in child table */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 408 | |
| 409 | pLeft = sqlite3Expr(db, TK_REGISTER, 0); |
| 410 | if( pLeft ){ |
| 411 | pLeft->iTable = (pIdx ? (regData+pIdx->aiColumn[i]+1) : regData); |
| 412 | } |
| 413 | iCol = aiCol ? aiCol[i] : pFKey->aCol[0].iFrom; |
dan | a8f0bf6 | 2009-09-23 12:06:52 +0000 | [diff] [blame] | 414 | assert( iCol>=0 ); |
| 415 | zCol = pFKey->pFrom->aCol[iCol].zName; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 416 | pRight = sqlite3Expr(db, TK_ID, zCol); |
| 417 | pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0); |
| 418 | pWhere = sqlite3ExprAnd(db, pWhere, pEq); |
| 419 | } |
| 420 | |
| 421 | /* Resolve the references in the WHERE clause. */ |
| 422 | memset(&sNameContext, 0, sizeof(NameContext)); |
| 423 | sNameContext.pSrcList = pSrc; |
| 424 | sNameContext.pParse = pParse; |
| 425 | sqlite3ResolveExprNames(&sNameContext, pWhere); |
| 426 | |
| 427 | /* Create VDBE to loop through the entries in pSrc that match the WHERE |
| 428 | ** clause. If the constraint is not deferred, throw an exception for |
| 429 | ** each row found. Otherwise, for deferred constraints, increment the |
| 430 | ** deferred constraint counter by nIncr for each row selected. */ |
| 431 | pWInfo = sqlite3WhereBegin(pParse, pSrc, pWhere, 0, 0); |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 432 | if( nIncr==0 ){ |
| 433 | /* A RESTRICT Action. */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 434 | sqlite3HaltConstraint( |
| 435 | pParse, OE_Abort, "foreign key constraint failed", P4_STATIC |
| 436 | ); |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 437 | }else{ |
| 438 | if( nIncr>0 && pFKey->isDeferred==0 ){ |
| 439 | sqlite3ParseToplevel(pParse)->mayAbort = 1; |
| 440 | } |
| 441 | sqlite3VdbeAddOp2(pParse->pVdbe, OP_FkCounter, nIncr, pFKey->isDeferred); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 442 | } |
dan | f59c5ca | 2009-09-22 16:55:38 +0000 | [diff] [blame] | 443 | if( pWInfo ){ |
| 444 | sqlite3WhereEnd(pWInfo); |
| 445 | } |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 446 | |
| 447 | /* Clean up the WHERE clause constructed above. */ |
| 448 | sqlite3ExprDelete(db, pWhere); |
| 449 | } |
| 450 | |
| 451 | /* |
| 452 | ** This function returns a pointer to the head of a linked list of FK |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 453 | ** constraints for which table pTab is the parent table. For example, |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 454 | ** given the following schema: |
| 455 | ** |
| 456 | ** CREATE TABLE t1(a PRIMARY KEY); |
| 457 | ** CREATE TABLE t2(b REFERENCES t1(a); |
| 458 | ** |
| 459 | ** Calling this function with table "t1" as an argument returns a pointer |
| 460 | ** to the FKey structure representing the foreign key constraint on table |
| 461 | ** "t2". Calling this function with "t2" as the argument would return a |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 462 | ** NULL pointer (as there are no FK constraints for which t2 is the parent |
| 463 | ** table). |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 464 | */ |
| 465 | static FKey *fkRefering(Table *pTab){ |
| 466 | int nName = sqlite3Strlen30(pTab->zName); |
| 467 | return (FKey *)sqlite3HashFind(&pTab->pSchema->fkeyHash, pTab->zName, nName); |
| 468 | } |
| 469 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 470 | /* |
| 471 | ** The second argument is a Trigger structure allocated by the |
| 472 | ** fkActionTrigger() routine. This function deletes the Trigger structure |
| 473 | ** and all of its sub-components. |
| 474 | ** |
| 475 | ** The Trigger structure or any of its sub-components may be allocated from |
| 476 | ** the lookaside buffer belonging to database handle dbMem. |
| 477 | */ |
dan | 75cbd98 | 2009-09-21 16:06:03 +0000 | [diff] [blame] | 478 | static void fkTriggerDelete(sqlite3 *dbMem, Trigger *p){ |
| 479 | if( p ){ |
| 480 | TriggerStep *pStep = p->step_list; |
| 481 | sqlite3ExprDelete(dbMem, pStep->pWhere); |
| 482 | sqlite3ExprListDelete(dbMem, pStep->pExprList); |
drh | 788536b | 2009-09-23 03:01:58 +0000 | [diff] [blame] | 483 | sqlite3ExprDelete(dbMem, p->pWhen); |
dan | 75cbd98 | 2009-09-21 16:06:03 +0000 | [diff] [blame] | 484 | sqlite3DbFree(dbMem, p); |
| 485 | } |
| 486 | } |
| 487 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 488 | /* |
| 489 | ** This function is called when inserting, deleting or updating a row of |
| 490 | ** table pTab to generate VDBE code to perform foreign key constraint |
| 491 | ** processing for the operation. |
| 492 | ** |
| 493 | ** For a DELETE operation, parameter regOld is passed the index of the |
| 494 | ** first register in an array of (pTab->nCol+1) registers containing the |
| 495 | ** rowid of the row being deleted, followed by each of the column values |
| 496 | ** of the row being deleted, from left to right. Parameter regNew is passed |
| 497 | ** zero in this case. |
| 498 | ** |
| 499 | ** For an UPDATE operation, regOld is the first in an array of (pTab->nCol+1) |
| 500 | ** registers containing the old rowid and column values of the row being |
| 501 | ** updated, and regNew is the first in an array of the same size containing |
| 502 | ** the corresponding new values. Parameter pChanges is passed the list of |
| 503 | ** columns being updated by the statement. |
| 504 | ** |
| 505 | ** For an INSERT operation, regOld is passed zero and regNew is passed the |
| 506 | ** first register of an array of (pTab->nCol+1) registers containing the new |
| 507 | ** row data. |
| 508 | ** |
| 509 | ** If an error occurs, an error message is left in the pParse structure. |
| 510 | */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 511 | void sqlite3FkCheck( |
| 512 | Parse *pParse, /* Parse context */ |
| 513 | Table *pTab, /* Row is being deleted from this table */ |
| 514 | ExprList *pChanges, /* Changed columns if this is an UPDATE */ |
| 515 | int regOld, /* Previous row data is stored here */ |
| 516 | int regNew /* New row data is stored here */ |
| 517 | ){ |
| 518 | sqlite3 *db = pParse->db; /* Database handle */ |
| 519 | Vdbe *v; /* VM to write code to */ |
| 520 | FKey *pFKey; /* Used to iterate through FKs */ |
| 521 | int iDb; /* Index of database containing pTab */ |
| 522 | const char *zDb; /* Name of database containing pTab */ |
| 523 | |
| 524 | assert( ( pChanges && regOld && regNew) /* UPDATE operation */ |
| 525 | || (!pChanges && !regOld && regNew) /* INSERT operation */ |
| 526 | || (!pChanges && regOld && !regNew) /* DELETE operation */ |
| 527 | ); |
| 528 | |
| 529 | /* If foreign-keys are disabled, this function is a no-op. */ |
| 530 | if( (db->flags&SQLITE_ForeignKeys)==0 ) return; |
| 531 | |
| 532 | v = sqlite3GetVdbe(pParse); |
| 533 | iDb = sqlite3SchemaToIndex(db, pTab->pSchema); |
| 534 | zDb = db->aDb[iDb].zName; |
| 535 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 536 | /* Loop through all the foreign key constraints for which pTab is the |
| 537 | ** child table (the table that the foreign key definition is part of). */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 538 | for(pFKey=pTab->pFKey; pFKey; pFKey=pFKey->pNextFrom){ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 539 | Table *pTo; /* Parent table of foreign key pFKey */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 540 | Index *pIdx = 0; /* Index on key columns in pTo */ |
dan | 3606264 | 2009-09-21 18:56:23 +0000 | [diff] [blame] | 541 | int *aiFree = 0; |
| 542 | int *aiCol; |
| 543 | int iCol; |
| 544 | int i; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 545 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 546 | /* Find the parent table of this foreign key. Also find a unique index |
| 547 | ** on the parent key columns in the parent table. If either of these |
| 548 | ** schema items cannot be located, set an error in pParse and return |
| 549 | ** early. */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 550 | pTo = sqlite3LocateTable(pParse, 0, pFKey->zTo, zDb); |
dan | 3606264 | 2009-09-21 18:56:23 +0000 | [diff] [blame] | 551 | if( !pTo || locateFkeyIndex(pParse, pTo, pFKey, &pIdx, &aiFree) ) return; |
| 552 | assert( pFKey->nCol==1 || (aiFree && pIdx) ); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 553 | |
| 554 | /* If the key does not overlap with the pChanges list, skip this FK. */ |
| 555 | if( pChanges ){ |
| 556 | /* TODO */ |
| 557 | } |
| 558 | |
dan | 3606264 | 2009-09-21 18:56:23 +0000 | [diff] [blame] | 559 | if( aiFree ){ |
| 560 | aiCol = aiFree; |
| 561 | }else{ |
| 562 | iCol = pFKey->aCol[0].iFrom; |
| 563 | aiCol = &iCol; |
| 564 | } |
| 565 | for(i=0; i<pFKey->nCol; i++){ |
| 566 | if( aiCol[i]==pTab->iPKey ){ |
| 567 | aiCol[i] = -1; |
| 568 | } |
| 569 | } |
| 570 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 571 | /* Take a shared-cache advisory read-lock on the parent table. Allocate |
| 572 | ** a cursor to use to search the unique index on the parent key columns |
| 573 | ** in the parent table. */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 574 | sqlite3TableLock(pParse, iDb, pTo->tnum, 0, pTo->zName); |
| 575 | pParse->nTab++; |
| 576 | |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 577 | if( regOld!=0 ){ |
| 578 | /* A row is being removed from the child table. Search for the parent. |
| 579 | ** If the parent does not exist, removing the child row resolves an |
| 580 | ** outstanding foreign key constraint violation. */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 581 | fkLookupParent(pParse, iDb, pTo, pIdx, pFKey, aiCol, regOld, -1); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 582 | } |
| 583 | if( regNew!=0 ){ |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 584 | /* A row is being added to the child table. If a parent row cannot |
| 585 | ** be found, adding the child row has violated the FK constraint. */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 586 | fkLookupParent(pParse, iDb, pTo, pIdx, pFKey, aiCol, regNew, +1); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 587 | } |
| 588 | |
dan | 3606264 | 2009-09-21 18:56:23 +0000 | [diff] [blame] | 589 | sqlite3DbFree(db, aiFree); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | /* Loop through all the foreign key constraints that refer to this table */ |
| 593 | for(pFKey = fkRefering(pTab); pFKey; pFKey=pFKey->pNextTo){ |
| 594 | int iGoto; /* Address of OP_Goto instruction */ |
| 595 | Index *pIdx = 0; /* Foreign key index for pFKey */ |
| 596 | SrcList *pSrc; |
| 597 | int *aiCol = 0; |
| 598 | |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 599 | if( !pFKey->isDeferred && !pParse->pToplevel && !pParse->isMultiWrite ){ |
| 600 | assert( regOld==0 && regNew!=0 ); |
| 601 | /* Inserting a single row into a parent table cannot cause an immediate |
| 602 | ** foreign key violation. So do nothing in this case. */ |
| 603 | return; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | if( locateFkeyIndex(pParse, pTab, pFKey, &pIdx, &aiCol) ) return; |
| 607 | assert( aiCol || pFKey->nCol==1 ); |
| 608 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 609 | /* Check if this update statement has modified any of the child key |
| 610 | ** columns for this foreign key constraint. If it has not, there is |
| 611 | ** no need to search the child table for rows in violation. This is |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 612 | ** just an optimization. Things would work fine without this check. */ |
| 613 | if( pChanges ){ |
| 614 | /* TODO */ |
| 615 | } |
| 616 | |
| 617 | /* Create a SrcList structure containing a single table (the table |
| 618 | ** the foreign key that refers to this table is attached to). This |
| 619 | ** is required for the sqlite3WhereXXX() interface. */ |
| 620 | pSrc = sqlite3SrcListAppend(db, 0, 0, 0); |
dan | f59c5ca | 2009-09-22 16:55:38 +0000 | [diff] [blame] | 621 | if( pSrc ){ |
| 622 | pSrc->a->pTab = pFKey->pFrom; |
| 623 | pSrc->a->pTab->nRef++; |
| 624 | pSrc->a->iCursor = pParse->nTab++; |
| 625 | |
| 626 | /* If this is an UPDATE, and none of the columns associated with this |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 627 | ** FK have been modified, do not scan the child table. Unlike the |
| 628 | ** compile-time test implemented above, this is not just an |
dan | f59c5ca | 2009-09-22 16:55:38 +0000 | [diff] [blame] | 629 | ** optimization. It is required so that immediate foreign keys do not |
| 630 | ** throw exceptions when the user executes a statement like: |
| 631 | ** |
| 632 | ** UPDATE refd_table SET refd_column = refd_column |
| 633 | */ |
| 634 | if( pChanges ){ |
| 635 | int i; |
| 636 | int iJump = sqlite3VdbeCurrentAddr(v) + pFKey->nCol + 1; |
| 637 | for(i=0; i<pFKey->nCol; i++){ |
| 638 | int iOff = (pIdx ? pIdx->aiColumn[i] : -1) + 1; |
| 639 | sqlite3VdbeAddOp3(v, OP_Ne, regOld+iOff, iJump, regNew+iOff); |
| 640 | } |
| 641 | iGoto = sqlite3VdbeAddOp0(v, OP_Goto); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 642 | } |
dan | f59c5ca | 2009-09-22 16:55:38 +0000 | [diff] [blame] | 643 | |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 644 | if( regNew!=0 ){ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 645 | fkScanChildren(pParse, pSrc, pIdx, pFKey, aiCol, regNew, -1); |
dan | f59c5ca | 2009-09-22 16:55:38 +0000 | [diff] [blame] | 646 | } |
| 647 | if( regOld!=0 ){ |
| 648 | /* If there is a RESTRICT action configured for the current operation |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 649 | ** on the parent table of this FK, then throw an exception |
dan | f59c5ca | 2009-09-22 16:55:38 +0000 | [diff] [blame] | 650 | ** immediately if the FK constraint is violated, even if this is a |
| 651 | ** deferred trigger. That's what RESTRICT means. To defer checking |
| 652 | ** the constraint, the FK should specify NO ACTION (represented |
| 653 | ** using OE_None). NO ACTION is the default. */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 654 | fkScanChildren(pParse, pSrc, pIdx, pFKey, aiCol, regOld, |
| 655 | pFKey->aAction[pChanges!=0]!=OE_Restrict |
dan | f59c5ca | 2009-09-22 16:55:38 +0000 | [diff] [blame] | 656 | ); |
| 657 | } |
| 658 | |
| 659 | if( pChanges ){ |
| 660 | sqlite3VdbeJumpHere(v, iGoto); |
| 661 | } |
| 662 | sqlite3SrcListDelete(db, pSrc); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 663 | } |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 664 | sqlite3DbFree(db, aiCol); |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | #define COLUMN_MASK(x) (((x)>31) ? 0xffffffff : ((u32)1<<(x))) |
| 669 | |
| 670 | /* |
| 671 | ** This function is called before generating code to update or delete a |
| 672 | ** row contained in table pTab. If the operation is an update, then |
| 673 | ** pChanges is a pointer to the list of columns to modify. If this is a |
| 674 | ** delete, then pChanges is NULL. |
| 675 | */ |
| 676 | u32 sqlite3FkOldmask( |
| 677 | Parse *pParse, /* Parse context */ |
| 678 | Table *pTab, /* Table being modified */ |
| 679 | ExprList *pChanges /* Non-NULL for UPDATE operations */ |
| 680 | ){ |
| 681 | u32 mask = 0; |
| 682 | if( pParse->db->flags&SQLITE_ForeignKeys ){ |
| 683 | FKey *p; |
| 684 | int i; |
| 685 | for(p=pTab->pFKey; p; p=p->pNextFrom){ |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 686 | for(i=0; i<p->nCol; i++) mask |= COLUMN_MASK(p->aCol[i].iFrom); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 687 | } |
| 688 | for(p=fkRefering(pTab); p; p=p->pNextTo){ |
| 689 | Index *pIdx = 0; |
| 690 | locateFkeyIndex(0, pTab, p, &pIdx, 0); |
| 691 | if( pIdx ){ |
| 692 | for(i=0; i<pIdx->nColumn; i++) mask |= COLUMN_MASK(pIdx->aiColumn[i]); |
| 693 | } |
| 694 | } |
| 695 | } |
| 696 | return mask; |
| 697 | } |
| 698 | |
| 699 | /* |
| 700 | ** This function is called before generating code to update or delete a |
| 701 | ** row contained in table pTab. If the operation is an update, then |
| 702 | ** pChanges is a pointer to the list of columns to modify. If this is a |
| 703 | ** delete, then pChanges is NULL. |
| 704 | ** |
| 705 | ** If any foreign key processing will be required, this function returns |
| 706 | ** true. If there is no foreign key related processing, this function |
| 707 | ** returns false. |
| 708 | */ |
| 709 | int sqlite3FkRequired( |
| 710 | Parse *pParse, /* Parse context */ |
| 711 | Table *pTab, /* Table being modified */ |
| 712 | ExprList *pChanges /* Non-NULL for UPDATE operations */ |
| 713 | ){ |
| 714 | if( pParse->db->flags&SQLITE_ForeignKeys ){ |
dan | 32b09f2 | 2009-09-23 17:29:59 +0000 | [diff] [blame] | 715 | if( fkRefering(pTab) || pTab->pFKey ) return 1; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 716 | } |
| 717 | return 0; |
| 718 | } |
| 719 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 720 | /* |
| 721 | ** This function is called when an UPDATE or DELETE operation is being |
| 722 | ** compiled on table pTab, which is the parent table of foreign-key pFKey. |
| 723 | ** If the current operation is an UPDATE, then the pChanges parameter is |
| 724 | ** passed a pointer to the list of columns being modified. If it is a |
| 725 | ** DELETE, pChanges is passed a NULL pointer. |
| 726 | ** |
| 727 | ** It returns a pointer to a Trigger structure containing a trigger |
| 728 | ** equivalent to the ON UPDATE or ON DELETE action specified by pFKey. |
| 729 | ** If the action is "NO ACTION" or "RESTRICT", then a NULL pointer is |
| 730 | ** returned (these actions require no special handling by the triggers |
| 731 | ** sub-system, code for them is created by fkScanChildren()). |
| 732 | ** |
| 733 | ** For example, if pFKey is the foreign key and pTab is table "p" in |
| 734 | ** the following schema: |
| 735 | ** |
| 736 | ** CREATE TABLE p(pk PRIMARY KEY); |
| 737 | ** CREATE TABLE c(ck REFERENCES p ON DELETE CASCADE); |
| 738 | ** |
| 739 | ** then the returned trigger structure is equivalent to: |
| 740 | ** |
| 741 | ** CREATE TRIGGER ... DELETE ON p BEGIN |
| 742 | ** DELETE FROM c WHERE ck = old.pk; |
| 743 | ** END; |
| 744 | ** |
| 745 | ** The returned pointer is cached as part of the foreign key object. It |
| 746 | ** is eventually freed along with the rest of the foreign key object by |
| 747 | ** sqlite3FkDelete(). |
| 748 | */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 749 | static Trigger *fkActionTrigger( |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 750 | Parse *pParse, /* Parse context */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 751 | Table *pTab, /* Table being updated or deleted from */ |
| 752 | FKey *pFKey, /* Foreign key to get action for */ |
| 753 | ExprList *pChanges /* Change-list for UPDATE, NULL for DELETE */ |
| 754 | ){ |
| 755 | sqlite3 *db = pParse->db; /* Database handle */ |
dan | 29c7f9c | 2009-09-22 15:53:47 +0000 | [diff] [blame] | 756 | int action; /* One of OE_None, OE_Cascade etc. */ |
| 757 | Trigger *pTrigger; /* Trigger definition to return */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 758 | int iAction = (pChanges!=0); /* 1 for UPDATE, 0 for DELETE */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 759 | |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 760 | action = pFKey->aAction[iAction]; |
| 761 | pTrigger = pFKey->apTrigger[iAction]; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 762 | |
| 763 | assert( OE_SetNull>OE_Restrict && OE_SetDflt>OE_Restrict ); |
| 764 | assert( OE_Cascade>OE_Restrict && OE_None<OE_Restrict ); |
| 765 | |
| 766 | if( action>OE_Restrict && !pTrigger ){ |
dan | 29c7f9c | 2009-09-22 15:53:47 +0000 | [diff] [blame] | 767 | u8 enableLookaside; /* Copy of db->lookaside.bEnabled */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 768 | char const *zFrom; /* Name of child table */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 769 | int nFrom; /* Length in bytes of zFrom */ |
dan | 29c7f9c | 2009-09-22 15:53:47 +0000 | [diff] [blame] | 770 | Index *pIdx = 0; /* Parent key index for this FK */ |
| 771 | int *aiCol = 0; /* child table cols -> parent key cols */ |
| 772 | TriggerStep *pStep; /* First (only) step of trigger program */ |
| 773 | Expr *pWhere = 0; /* WHERE clause of trigger step */ |
| 774 | ExprList *pList = 0; /* Changes list if ON UPDATE CASCADE */ |
| 775 | int i; /* Iterator variable */ |
drh | 788536b | 2009-09-23 03:01:58 +0000 | [diff] [blame] | 776 | Expr *pWhen = 0; /* WHEN clause for the trigger */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 777 | |
| 778 | if( locateFkeyIndex(pParse, pTab, pFKey, &pIdx, &aiCol) ) return 0; |
| 779 | assert( aiCol || pFKey->nCol==1 ); |
| 780 | |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 781 | for(i=0; i<pFKey->nCol; i++){ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 782 | Token tOld = { "old", 3 }; /* Literal "old" token */ |
| 783 | Token tNew = { "new", 3 }; /* Literal "new" token */ |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 784 | Token tFromCol; /* Name of column in child table */ |
| 785 | Token tToCol; /* Name of column in parent table */ |
| 786 | int iFromCol; /* Idx of column in child table */ |
dan | 29c7f9c | 2009-09-22 15:53:47 +0000 | [diff] [blame] | 787 | Expr *pEq; /* tFromCol = OLD.tToCol */ |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 788 | |
| 789 | iFromCol = aiCol ? aiCol[i] : pFKey->aCol[0].iFrom; |
dan | a8f0bf6 | 2009-09-23 12:06:52 +0000 | [diff] [blame] | 790 | assert( iFromCol>=0 ); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 791 | tToCol.z = pIdx ? pTab->aCol[pIdx->aiColumn[i]].zName : "oid"; |
dan | a8f0bf6 | 2009-09-23 12:06:52 +0000 | [diff] [blame] | 792 | tFromCol.z = pFKey->pFrom->aCol[iFromCol].zName; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 793 | |
| 794 | tToCol.n = sqlite3Strlen30(tToCol.z); |
| 795 | tFromCol.n = sqlite3Strlen30(tFromCol.z); |
| 796 | |
| 797 | /* Create the expression "zFromCol = OLD.zToCol" */ |
| 798 | pEq = sqlite3PExpr(pParse, TK_EQ, |
| 799 | sqlite3PExpr(pParse, TK_ID, 0, 0, &tFromCol), |
| 800 | sqlite3PExpr(pParse, TK_DOT, |
| 801 | sqlite3PExpr(pParse, TK_ID, 0, 0, &tOld), |
| 802 | sqlite3PExpr(pParse, TK_ID, 0, 0, &tToCol) |
| 803 | , 0) |
| 804 | , 0); |
dan | 29c7f9c | 2009-09-22 15:53:47 +0000 | [diff] [blame] | 805 | pWhere = sqlite3ExprAnd(db, pWhere, pEq); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 806 | |
drh | 788536b | 2009-09-23 03:01:58 +0000 | [diff] [blame] | 807 | /* For ON UPDATE, construct the next term of the WHEN clause. |
| 808 | ** The final WHEN clause will be like this: |
| 809 | ** |
| 810 | ** WHEN NOT(old.col1 IS new.col1 AND ... AND old.colN IS new.colN) |
| 811 | */ |
| 812 | if( pChanges ){ |
| 813 | pEq = sqlite3PExpr(pParse, TK_IS, |
| 814 | sqlite3PExpr(pParse, TK_DOT, |
| 815 | sqlite3PExpr(pParse, TK_ID, 0, 0, &tOld), |
| 816 | sqlite3PExpr(pParse, TK_ID, 0, 0, &tToCol), |
| 817 | 0), |
| 818 | sqlite3PExpr(pParse, TK_DOT, |
| 819 | sqlite3PExpr(pParse, TK_ID, 0, 0, &tNew), |
| 820 | sqlite3PExpr(pParse, TK_ID, 0, 0, &tToCol), |
| 821 | 0), |
| 822 | 0); |
| 823 | pWhen = sqlite3ExprAnd(db, pWhen, pEq); |
| 824 | } |
| 825 | |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 826 | if( action!=OE_Cascade || pChanges ){ |
| 827 | Expr *pNew; |
| 828 | if( action==OE_Cascade ){ |
| 829 | pNew = sqlite3PExpr(pParse, TK_DOT, |
| 830 | sqlite3PExpr(pParse, TK_ID, 0, 0, &tNew), |
| 831 | sqlite3PExpr(pParse, TK_ID, 0, 0, &tToCol) |
| 832 | , 0); |
| 833 | }else if( action==OE_SetDflt ){ |
dan | 934ce30 | 2009-09-22 16:08:58 +0000 | [diff] [blame] | 834 | Expr *pDflt = pFKey->pFrom->aCol[iFromCol].pDflt; |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 835 | if( pDflt ){ |
| 836 | pNew = sqlite3ExprDup(db, pDflt, 0); |
| 837 | }else{ |
| 838 | pNew = sqlite3PExpr(pParse, TK_NULL, 0, 0, 0); |
| 839 | } |
| 840 | }else{ |
| 841 | pNew = sqlite3PExpr(pParse, TK_NULL, 0, 0, 0); |
| 842 | } |
| 843 | pList = sqlite3ExprListAppend(pParse, pList, pNew); |
| 844 | sqlite3ExprListSetName(pParse, pList, &tFromCol, 0); |
| 845 | } |
| 846 | } |
dan | 29c7f9c | 2009-09-22 15:53:47 +0000 | [diff] [blame] | 847 | sqlite3DbFree(db, aiCol); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 848 | |
dan | 29c7f9c | 2009-09-22 15:53:47 +0000 | [diff] [blame] | 849 | /* If pTab->dbMem==0, then the table may be part of a shared-schema. |
| 850 | ** Disable the lookaside buffer before allocating space for the |
| 851 | ** trigger definition in this case. */ |
| 852 | enableLookaside = db->lookaside.bEnabled; |
| 853 | if( pTab->dbMem==0 ){ |
| 854 | db->lookaside.bEnabled = 0; |
| 855 | } |
| 856 | |
| 857 | zFrom = pFKey->pFrom->zName; |
| 858 | nFrom = sqlite3Strlen30(zFrom); |
| 859 | pTrigger = (Trigger *)sqlite3DbMallocZero(db, |
| 860 | sizeof(Trigger) + /* struct Trigger */ |
| 861 | sizeof(TriggerStep) + /* Single step in trigger program */ |
| 862 | nFrom + 1 /* Space for pStep->target.z */ |
| 863 | ); |
| 864 | if( pTrigger ){ |
| 865 | pStep = pTrigger->step_list = (TriggerStep *)&pTrigger[1]; |
| 866 | pStep->target.z = (char *)&pStep[1]; |
| 867 | pStep->target.n = nFrom; |
| 868 | memcpy((char *)pStep->target.z, zFrom, nFrom); |
| 869 | |
| 870 | pStep->pWhere = sqlite3ExprDup(db, pWhere, EXPRDUP_REDUCE); |
| 871 | pStep->pExprList = sqlite3ExprListDup(db, pList, EXPRDUP_REDUCE); |
drh | 788536b | 2009-09-23 03:01:58 +0000 | [diff] [blame] | 872 | if( pWhen ){ |
| 873 | pWhen = sqlite3PExpr(pParse, TK_NOT, pWhen, 0, 0); |
| 874 | pTrigger->pWhen = sqlite3ExprDup(db, pWhen, EXPRDUP_REDUCE); |
| 875 | } |
dan | 29c7f9c | 2009-09-22 15:53:47 +0000 | [diff] [blame] | 876 | } |
| 877 | |
| 878 | /* Re-enable the lookaside buffer, if it was disabled earlier. */ |
| 879 | db->lookaside.bEnabled = enableLookaside; |
| 880 | |
drh | 788536b | 2009-09-23 03:01:58 +0000 | [diff] [blame] | 881 | sqlite3ExprDelete(db, pWhere); |
| 882 | sqlite3ExprDelete(db, pWhen); |
| 883 | sqlite3ExprListDelete(db, pList); |
dan | 29c7f9c | 2009-09-22 15:53:47 +0000 | [diff] [blame] | 884 | if( db->mallocFailed==1 ){ |
| 885 | fkTriggerDelete(db, pTrigger); |
| 886 | return 0; |
| 887 | } |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 888 | |
| 889 | pStep->op = (action!=OE_Cascade || pChanges) ? TK_UPDATE : TK_DELETE; |
| 890 | pStep->pTrig = pTrigger; |
| 891 | pTrigger->pSchema = pTab->pSchema; |
| 892 | pTrigger->pTabSchema = pTab->pSchema; |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 893 | pFKey->apTrigger[iAction] = pTrigger; |
| 894 | pTrigger->op = (pChanges ? TK_UPDATE : TK_DELETE); |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 895 | } |
| 896 | |
| 897 | return pTrigger; |
| 898 | } |
| 899 | |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 900 | /* |
| 901 | ** This function is called when deleting or updating a row to implement |
| 902 | ** any required CASCADE, SET NULL or SET DEFAULT actions. |
| 903 | */ |
| 904 | void sqlite3FkActions( |
| 905 | Parse *pParse, /* Parse context */ |
| 906 | Table *pTab, /* Table being updated or deleted from */ |
| 907 | ExprList *pChanges, /* Change-list for UPDATE, NULL for DELETE */ |
| 908 | int regOld /* Address of array containing old row */ |
| 909 | ){ |
| 910 | /* If foreign-key support is enabled, iterate through all FKs that |
| 911 | ** refer to table pTab. If there is an action associated with the FK |
| 912 | ** for this operation (either update or delete), invoke the associated |
| 913 | ** trigger sub-program. */ |
| 914 | if( pParse->db->flags&SQLITE_ForeignKeys ){ |
| 915 | FKey *pFKey; /* Iterator variable */ |
| 916 | for(pFKey = fkRefering(pTab); pFKey; pFKey=pFKey->pNextTo){ |
| 917 | Trigger *pAction = fkActionTrigger(pParse, pTab, pFKey, pChanges); |
| 918 | if( pAction ){ |
| 919 | sqlite3CodeRowTriggerDirect(pParse, pAction, pTab, regOld, OE_Abort, 0); |
| 920 | } |
| 921 | } |
| 922 | } |
| 923 | } |
| 924 | |
dan | 75cbd98 | 2009-09-21 16:06:03 +0000 | [diff] [blame] | 925 | #endif /* ifndef SQLITE_OMIT_TRIGGER */ |
| 926 | |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 927 | /* |
| 928 | ** Free all memory associated with foreign key definitions attached to |
| 929 | ** table pTab. Remove the deleted foreign keys from the Schema.fkeyHash |
| 930 | ** hash table. |
| 931 | */ |
| 932 | void sqlite3FkDelete(Table *pTab){ |
| 933 | FKey *pFKey; /* Iterator variable */ |
| 934 | FKey *pNext; /* Copy of pFKey->pNextFrom */ |
| 935 | |
| 936 | for(pFKey=pTab->pFKey; pFKey; pFKey=pNext){ |
| 937 | |
| 938 | /* Remove the FK from the fkeyHash hash table. */ |
| 939 | if( pFKey->pPrevTo ){ |
| 940 | pFKey->pPrevTo->pNextTo = pFKey->pNextTo; |
| 941 | }else{ |
| 942 | void *data = (void *)pFKey->pNextTo; |
| 943 | const char *z = (data ? pFKey->pNextTo->zTo : pFKey->zTo); |
| 944 | sqlite3HashInsert(&pTab->pSchema->fkeyHash, z, sqlite3Strlen30(z), data); |
| 945 | } |
| 946 | if( pFKey->pNextTo ){ |
| 947 | pFKey->pNextTo->pPrevTo = pFKey->pPrevTo; |
| 948 | } |
| 949 | |
| 950 | /* Delete any triggers created to implement actions for this FK. */ |
dan | 75cbd98 | 2009-09-21 16:06:03 +0000 | [diff] [blame] | 951 | #ifndef SQLITE_OMIT_TRIGGER |
dan | 8099ce6 | 2009-09-23 08:43:35 +0000 | [diff] [blame] | 952 | fkTriggerDelete(pTab->dbMem, pFKey->apTrigger[0]); |
| 953 | fkTriggerDelete(pTab->dbMem, pFKey->apTrigger[1]); |
dan | 75cbd98 | 2009-09-21 16:06:03 +0000 | [diff] [blame] | 954 | #endif |
dan | 1da40a3 | 2009-09-19 17:00:31 +0000 | [diff] [blame] | 955 | |
| 956 | /* Delete the memory allocated for the FK structure. */ |
| 957 | pNext = pFKey->pNextFrom; |
| 958 | sqlite3DbFree(pTab->dbMem, pFKey); |
| 959 | } |
| 960 | } |
dan | 75cbd98 | 2009-09-21 16:06:03 +0000 | [diff] [blame] | 961 | #endif /* ifndef SQLITE_OMIT_FOREIGN_KEY */ |