drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | ** 2003 January 11 |
| 3 | ** |
| 4 | ** The author disclaims copyright to this source code. In place of |
| 5 | ** a legal notice, here is a blessing: |
| 6 | ** |
| 7 | ** May you do good and not evil. |
| 8 | ** May you find forgiveness for yourself and forgive others. |
| 9 | ** May you share freely, never taking more than you give. |
| 10 | ** |
| 11 | ************************************************************************* |
danielk1977 | 24b03fd | 2004-05-10 10:34:34 +0000 | [diff] [blame] | 12 | ** This file contains code used to implement the sqlite3_set_authorizer() |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 13 | ** API. This facility is an optional feature of the library. Embedded |
| 14 | ** systems that do not need this facility may omit it by recompiling |
| 15 | ** the library with -DSQLITE_OMIT_AUTHORIZATION=1 |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 16 | */ |
| 17 | #include "sqliteInt.h" |
| 18 | |
| 19 | /* |
| 20 | ** All of the code in this file may be omitted by defining a single |
| 21 | ** macro. |
| 22 | */ |
| 23 | #ifndef SQLITE_OMIT_AUTHORIZATION |
| 24 | |
| 25 | /* |
| 26 | ** Set or clear the access authorization function. |
| 27 | ** |
| 28 | ** The access authorization function is be called during the compilation |
drh | 5fe2d8c | 2003-05-10 03:36:53 +0000 | [diff] [blame] | 29 | ** phase to verify that the user has read and/or write access permission on |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 30 | ** various fields of the database. The first argument to the auth function |
| 31 | ** is a copy of the 3rd argument to this routine. The second argument |
| 32 | ** to the auth function is one of these constants: |
| 33 | ** |
drh | 5fe2d8c | 2003-05-10 03:36:53 +0000 | [diff] [blame] | 34 | ** SQLITE_CREATE_INDEX |
| 35 | ** SQLITE_CREATE_TABLE |
| 36 | ** SQLITE_CREATE_TEMP_INDEX |
| 37 | ** SQLITE_CREATE_TEMP_TABLE |
| 38 | ** SQLITE_CREATE_TEMP_TRIGGER |
| 39 | ** SQLITE_CREATE_TEMP_VIEW |
| 40 | ** SQLITE_CREATE_TRIGGER |
| 41 | ** SQLITE_CREATE_VIEW |
| 42 | ** SQLITE_DELETE |
| 43 | ** SQLITE_DROP_INDEX |
| 44 | ** SQLITE_DROP_TABLE |
| 45 | ** SQLITE_DROP_TEMP_INDEX |
| 46 | ** SQLITE_DROP_TEMP_TABLE |
| 47 | ** SQLITE_DROP_TEMP_TRIGGER |
| 48 | ** SQLITE_DROP_TEMP_VIEW |
| 49 | ** SQLITE_DROP_TRIGGER |
| 50 | ** SQLITE_DROP_VIEW |
| 51 | ** SQLITE_INSERT |
| 52 | ** SQLITE_PRAGMA |
| 53 | ** SQLITE_READ |
| 54 | ** SQLITE_SELECT |
| 55 | ** SQLITE_TRANSACTION |
| 56 | ** SQLITE_UPDATE |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 57 | ** |
| 58 | ** The third and fourth arguments to the auth function are the name of |
| 59 | ** the table and the column that are being accessed. The auth function |
| 60 | ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If |
| 61 | ** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY |
danielk1977 | 24b03fd | 2004-05-10 10:34:34 +0000 | [diff] [blame] | 62 | ** means that the SQL statement will never-run - the sqlite3_exec() call |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 63 | ** will return with an error. SQLITE_IGNORE means that the SQL statement |
| 64 | ** should run but attempts to read the specified column will return NULL |
| 65 | ** and attempts to write the column will be ignored. |
| 66 | ** |
| 67 | ** Setting the auth function to NULL disables this hook. The default |
| 68 | ** setting of the auth function is NULL. |
| 69 | */ |
danielk1977 | 24b03fd | 2004-05-10 10:34:34 +0000 | [diff] [blame] | 70 | int sqlite3_set_authorizer( |
drh | 9bb575f | 2004-09-06 17:24:11 +0000 | [diff] [blame] | 71 | sqlite3 *db, |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 72 | int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 73 | void *pArg |
| 74 | ){ |
drh | 9ca9573 | 2014-10-24 00:35:58 +0000 | [diff] [blame] | 75 | #ifdef SQLITE_ENABLE_API_ARMOR |
| 76 | if( !sqlite3SafetyCheckOk(db) ) return SQLITE_MISUSE_BKPT; |
| 77 | #endif |
drh | b21c8cd | 2007-08-21 19:33:56 +0000 | [diff] [blame] | 78 | sqlite3_mutex_enter(db->mutex); |
drh | 32c6a48 | 2014-09-11 13:44:52 +0000 | [diff] [blame] | 79 | db->xAuth = (sqlite3_xauth)xAuth; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 80 | db->pAuthArg = pArg; |
drh | d744ee0 | 2019-08-01 22:48:45 +0000 | [diff] [blame] | 81 | if( db->xAuth ) sqlite3ExpirePreparedStatements(db, 1); |
drh | b21c8cd | 2007-08-21 19:33:56 +0000 | [diff] [blame] | 82 | sqlite3_mutex_leave(db->mutex); |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 83 | return SQLITE_OK; |
| 84 | } |
| 85 | |
| 86 | /* |
| 87 | ** Write an error message into pParse->zErrMsg that explains that the |
| 88 | ** user-supplied authorization function returned an illegal value. |
| 89 | */ |
drh | ce9b015 | 2009-05-04 01:58:31 +0000 | [diff] [blame] | 90 | static void sqliteAuthBadReturnCode(Parse *pParse){ |
| 91 | sqlite3ErrorMsg(pParse, "authorizer malfunction"); |
drh | c60d044 | 2004-09-30 13:43:13 +0000 | [diff] [blame] | 92 | pParse->rc = SQLITE_ERROR; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | /* |
dan | 47a0634 | 2009-10-02 14:23:41 +0000 | [diff] [blame] | 96 | ** Invoke the authorization callback for permission to read column zCol from |
| 97 | ** table zTab in database zDb. This function assumes that an authorization |
| 98 | ** callback has been registered (i.e. that sqlite3.xAuth is not NULL). |
| 99 | ** |
| 100 | ** If SQLITE_IGNORE is returned and pExpr is not NULL, then pExpr is changed |
| 101 | ** to an SQL NULL expression. Otherwise, if pExpr is NULL, then SQLITE_IGNORE |
| 102 | ** is treated as SQLITE_DENY. In this case an error is left in pParse. |
| 103 | */ |
dan | 02470b2 | 2009-10-03 07:04:11 +0000 | [diff] [blame] | 104 | int sqlite3AuthReadCol( |
dan | 47a0634 | 2009-10-02 14:23:41 +0000 | [diff] [blame] | 105 | Parse *pParse, /* The parser context */ |
| 106 | const char *zTab, /* Table name */ |
| 107 | const char *zCol, /* Column name */ |
dan | 02470b2 | 2009-10-03 07:04:11 +0000 | [diff] [blame] | 108 | int iDb /* Index of containing database. */ |
dan | 47a0634 | 2009-10-02 14:23:41 +0000 | [diff] [blame] | 109 | ){ |
drh | 69c3382 | 2016-08-18 14:33:11 +0000 | [diff] [blame] | 110 | sqlite3 *db = pParse->db; /* Database handle */ |
| 111 | char *zDb = db->aDb[iDb].zDbSName; /* Schema name of attached database */ |
| 112 | int rc; /* Auth callback return code */ |
dan | 47a0634 | 2009-10-02 14:23:41 +0000 | [diff] [blame] | 113 | |
drh | a8914fa | 2016-07-28 18:38:13 +0000 | [diff] [blame] | 114 | if( db->init.busy ) return SQLITE_OK; |
drh | 32c6a48 | 2014-09-11 13:44:52 +0000 | [diff] [blame] | 115 | rc = db->xAuth(db->pAuthArg, SQLITE_READ, zTab,zCol,zDb,pParse->zAuthContext |
| 116 | #ifdef SQLITE_USER_AUTHENTICATION |
| 117 | ,db->auth.zAuthUser |
| 118 | #endif |
| 119 | ); |
dan | 02470b2 | 2009-10-03 07:04:11 +0000 | [diff] [blame] | 120 | if( rc==SQLITE_DENY ){ |
drh | 6f7fbcf | 2017-08-17 18:54:27 +0000 | [diff] [blame] | 121 | char *z = sqlite3_mprintf("%s.%s", zTab, zCol); |
| 122 | if( db->nDb>2 || iDb!=0 ) z = sqlite3_mprintf("%s.%z", zDb, z); |
| 123 | sqlite3ErrorMsg(pParse, "access to %z is prohibited", z); |
dan | 47a0634 | 2009-10-02 14:23:41 +0000 | [diff] [blame] | 124 | pParse->rc = SQLITE_AUTH; |
dan | 02470b2 | 2009-10-03 07:04:11 +0000 | [diff] [blame] | 125 | }else if( rc!=SQLITE_IGNORE && rc!=SQLITE_OK ){ |
| 126 | sqliteAuthBadReturnCode(pParse); |
dan | 47a0634 | 2009-10-02 14:23:41 +0000 | [diff] [blame] | 127 | } |
dan | 02470b2 | 2009-10-03 07:04:11 +0000 | [diff] [blame] | 128 | return rc; |
dan | 47a0634 | 2009-10-02 14:23:41 +0000 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | /* |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 132 | ** The pExpr should be a TK_COLUMN expression. The table referred to |
drh | 6a3ea0e | 2003-05-02 14:32:12 +0000 | [diff] [blame] | 133 | ** is in pTabList or else it is the NEW or OLD table of a trigger. |
| 134 | ** Check to see if it is OK to read this particular column. |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 135 | ** |
| 136 | ** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN |
| 137 | ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY, |
| 138 | ** then generate an error. |
| 139 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 140 | void sqlite3AuthRead( |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 141 | Parse *pParse, /* The parser context */ |
| 142 | Expr *pExpr, /* The expression to check authorization on */ |
drh | 728b577 | 2007-09-18 15:55:07 +0000 | [diff] [blame] | 143 | Schema *pSchema, /* The schema of the expression */ |
drh | 6a3ea0e | 2003-05-02 14:32:12 +0000 | [diff] [blame] | 144 | SrcList *pTabList /* All table that pExpr might refer to */ |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 145 | ){ |
drh | 9bb575f | 2004-09-06 17:24:11 +0000 | [diff] [blame] | 146 | sqlite3 *db = pParse->db; |
danielk1977 | 880c15b | 2007-09-01 18:24:55 +0000 | [diff] [blame] | 147 | Table *pTab = 0; /* The table being read */ |
drh | 027850b | 2003-04-16 20:24:52 +0000 | [diff] [blame] | 148 | const char *zCol; /* Name of the column of the table */ |
| 149 | int iSrc; /* Index in pTabList->a[] of table being read */ |
danielk1977 | da18423 | 2006-01-05 11:34:32 +0000 | [diff] [blame] | 150 | int iDb; /* The index of the database the expression refers to */ |
dan | 2bd9351 | 2009-08-31 08:22:46 +0000 | [diff] [blame] | 151 | int iCol; /* Index of column in table */ |
drh | 027850b | 2003-04-16 20:24:52 +0000 | [diff] [blame] | 152 | |
drh | 4344dbd | 2018-06-02 11:31:15 +0000 | [diff] [blame] | 153 | assert( pExpr->op==TK_COLUMN || pExpr->op==TK_TRIGGER ); |
dan | 07052d5 | 2018-10-06 13:46:22 +0000 | [diff] [blame] | 154 | assert( !IN_RENAME_OBJECT || db->xAuth==0 ); |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 155 | if( db->xAuth==0 ) return; |
drh | 728b577 | 2007-09-18 15:55:07 +0000 | [diff] [blame] | 156 | iDb = sqlite3SchemaToIndex(pParse->db, pSchema); |
drh | a3e4d96 | 2006-01-13 13:55:44 +0000 | [diff] [blame] | 157 | if( iDb<0 ){ |
| 158 | /* An attempt to read a column out of a subquery or other |
| 159 | ** temporary table. */ |
| 160 | return; |
| 161 | } |
dan | 2bd9351 | 2009-08-31 08:22:46 +0000 | [diff] [blame] | 162 | |
dan | 2bd9351 | 2009-08-31 08:22:46 +0000 | [diff] [blame] | 163 | if( pExpr->op==TK_TRIGGER ){ |
| 164 | pTab = pParse->pTriggerTab; |
| 165 | }else{ |
| 166 | assert( pTabList ); |
drh | 3e9ca09 | 2009-09-08 01:14:48 +0000 | [diff] [blame] | 167 | for(iSrc=0; ALWAYS(iSrc<pTabList->nSrc); iSrc++){ |
danielk1977 | 34acdc9 | 2009-07-02 18:40:34 +0000 | [diff] [blame] | 168 | if( pExpr->iTable==pTabList->a[iSrc].iCursor ){ |
| 169 | pTab = pTabList->a[iSrc].pTab; |
dan | 2bd9351 | 2009-08-31 08:22:46 +0000 | [diff] [blame] | 170 | break; |
danielk1977 | 34acdc9 | 2009-07-02 18:40:34 +0000 | [diff] [blame] | 171 | } |
drh | eba661f | 2009-05-04 18:01:39 +0000 | [diff] [blame] | 172 | } |
danielk1977 | 34acdc9 | 2009-07-02 18:40:34 +0000 | [diff] [blame] | 173 | } |
dan | 2bd9351 | 2009-08-31 08:22:46 +0000 | [diff] [blame] | 174 | iCol = pExpr->iColumn; |
drh | eba661f | 2009-05-04 18:01:39 +0000 | [diff] [blame] | 175 | if( NEVER(pTab==0) ) return; |
dan | 2bd9351 | 2009-08-31 08:22:46 +0000 | [diff] [blame] | 176 | |
| 177 | if( iCol>=0 ){ |
| 178 | assert( iCol<pTab->nCol ); |
| 179 | zCol = pTab->aCol[iCol].zName; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 180 | }else if( pTab->iPKey>=0 ){ |
| 181 | assert( pTab->iPKey<pTab->nCol ); |
| 182 | zCol = pTab->aCol[pTab->iPKey].zName; |
| 183 | }else{ |
| 184 | zCol = "ROWID"; |
| 185 | } |
drh | a3e4d96 | 2006-01-13 13:55:44 +0000 | [diff] [blame] | 186 | assert( iDb>=0 && iDb<db->nDb ); |
dan | 02470b2 | 2009-10-03 07:04:11 +0000 | [diff] [blame] | 187 | if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) ){ |
| 188 | pExpr->op = TK_NULL; |
| 189 | } |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | /* |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 193 | ** Do an authorization check using the code and arguments given. Return |
| 194 | ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY |
| 195 | ** is returned, then the error count and error message in pParse are |
| 196 | ** modified appropriately. |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 197 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 198 | int sqlite3AuthCheck( |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 199 | Parse *pParse, |
| 200 | int code, |
| 201 | const char *zArg1, |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 202 | const char *zArg2, |
| 203 | const char *zArg3 |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 204 | ){ |
drh | 9bb575f | 2004-09-06 17:24:11 +0000 | [diff] [blame] | 205 | sqlite3 *db = pParse->db; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 206 | int rc; |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 207 | |
danielk1977 | f1a381e | 2006-06-16 08:01:02 +0000 | [diff] [blame] | 208 | /* Don't do any authorization checks if the database is initialising |
| 209 | ** or if the parser is being invoked from within sqlite3_declare_vtab. |
| 210 | */ |
dan | 07052d5 | 2018-10-06 13:46:22 +0000 | [diff] [blame] | 211 | assert( !IN_RENAME_OBJECT || db->xAuth==0 ); |
dan | cf8f289 | 2018-08-09 20:47:01 +0000 | [diff] [blame] | 212 | if( db->init.busy || IN_SPECIAL_PARSE ){ |
danielk1977 | 66b978a | 2004-06-14 11:35:17 +0000 | [diff] [blame] | 213 | return SQLITE_OK; |
| 214 | } |
| 215 | |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 216 | if( db->xAuth==0 ){ |
| 217 | return SQLITE_OK; |
| 218 | } |
drh | 9418921 | 2017-05-11 13:43:57 +0000 | [diff] [blame] | 219 | |
| 220 | /* EVIDENCE-OF: R-43249-19882 The third through sixth parameters to the |
| 221 | ** callback are either NULL pointers or zero-terminated strings that |
| 222 | ** contain additional details about the action to be authorized. |
| 223 | ** |
| 224 | ** The following testcase() macros show that any of the 3rd through 6th |
| 225 | ** parameters can be either NULL or a string. */ |
| 226 | testcase( zArg1==0 ); |
| 227 | testcase( zArg2==0 ); |
| 228 | testcase( zArg3==0 ); |
| 229 | testcase( pParse->zAuthContext==0 ); |
| 230 | |
drh | 32c6a48 | 2014-09-11 13:44:52 +0000 | [diff] [blame] | 231 | rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext |
| 232 | #ifdef SQLITE_USER_AUTHENTICATION |
| 233 | ,db->auth.zAuthUser |
| 234 | #endif |
| 235 | ); |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 236 | if( rc==SQLITE_DENY ){ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 237 | sqlite3ErrorMsg(pParse, "not authorized"); |
drh | dcd997e | 2003-01-31 17:21:49 +0000 | [diff] [blame] | 238 | pParse->rc = SQLITE_AUTH; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 239 | }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){ |
| 240 | rc = SQLITE_DENY; |
drh | ce9b015 | 2009-05-04 01:58:31 +0000 | [diff] [blame] | 241 | sqliteAuthBadReturnCode(pParse); |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 242 | } |
| 243 | return rc; |
| 244 | } |
| 245 | |
drh | 85e2096 | 2003-04-25 17:52:11 +0000 | [diff] [blame] | 246 | /* |
| 247 | ** Push an authorization context. After this routine is called, the |
| 248 | ** zArg3 argument to authorization callbacks will be zContext until |
| 249 | ** popped. Or if pParse==0, this routine is a no-op. |
| 250 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 251 | void sqlite3AuthContextPush( |
drh | 85e2096 | 2003-04-25 17:52:11 +0000 | [diff] [blame] | 252 | Parse *pParse, |
| 253 | AuthContext *pContext, |
| 254 | const char *zContext |
| 255 | ){ |
drh | eba661f | 2009-05-04 18:01:39 +0000 | [diff] [blame] | 256 | assert( pParse ); |
drh | 85e2096 | 2003-04-25 17:52:11 +0000 | [diff] [blame] | 257 | pContext->pParse = pParse; |
drh | eba661f | 2009-05-04 18:01:39 +0000 | [diff] [blame] | 258 | pContext->zAuthContext = pParse->zAuthContext; |
| 259 | pParse->zAuthContext = zContext; |
drh | 85e2096 | 2003-04-25 17:52:11 +0000 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | /* |
| 263 | ** Pop an authorization context that was previously pushed |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 264 | ** by sqlite3AuthContextPush |
drh | 85e2096 | 2003-04-25 17:52:11 +0000 | [diff] [blame] | 265 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 266 | void sqlite3AuthContextPop(AuthContext *pContext){ |
drh | 85e2096 | 2003-04-25 17:52:11 +0000 | [diff] [blame] | 267 | if( pContext->pParse ){ |
| 268 | pContext->pParse->zAuthContext = pContext->zAuthContext; |
| 269 | pContext->pParse = 0; |
| 270 | } |
| 271 | } |
| 272 | |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 273 | #endif /* SQLITE_OMIT_AUTHORIZATION */ |