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 |
| 16 | ** |
danielk1977 | f1a381e | 2006-06-16 08:01:02 +0000 | [diff] [blame^] | 17 | ** $Id: auth.c,v 1.25 2006/06/16 08:01:03 danielk1977 Exp $ |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 18 | */ |
| 19 | #include "sqliteInt.h" |
| 20 | |
| 21 | /* |
| 22 | ** All of the code in this file may be omitted by defining a single |
| 23 | ** macro. |
| 24 | */ |
| 25 | #ifndef SQLITE_OMIT_AUTHORIZATION |
| 26 | |
| 27 | /* |
| 28 | ** Set or clear the access authorization function. |
| 29 | ** |
| 30 | ** The access authorization function is be called during the compilation |
drh | 5fe2d8c | 2003-05-10 03:36:53 +0000 | [diff] [blame] | 31 | ** 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] | 32 | ** various fields of the database. The first argument to the auth function |
| 33 | ** is a copy of the 3rd argument to this routine. The second argument |
| 34 | ** to the auth function is one of these constants: |
| 35 | ** |
drh | 5fe2d8c | 2003-05-10 03:36:53 +0000 | [diff] [blame] | 36 | ** SQLITE_CREATE_INDEX |
| 37 | ** SQLITE_CREATE_TABLE |
| 38 | ** SQLITE_CREATE_TEMP_INDEX |
| 39 | ** SQLITE_CREATE_TEMP_TABLE |
| 40 | ** SQLITE_CREATE_TEMP_TRIGGER |
| 41 | ** SQLITE_CREATE_TEMP_VIEW |
| 42 | ** SQLITE_CREATE_TRIGGER |
| 43 | ** SQLITE_CREATE_VIEW |
| 44 | ** SQLITE_DELETE |
| 45 | ** SQLITE_DROP_INDEX |
| 46 | ** SQLITE_DROP_TABLE |
| 47 | ** SQLITE_DROP_TEMP_INDEX |
| 48 | ** SQLITE_DROP_TEMP_TABLE |
| 49 | ** SQLITE_DROP_TEMP_TRIGGER |
| 50 | ** SQLITE_DROP_TEMP_VIEW |
| 51 | ** SQLITE_DROP_TRIGGER |
| 52 | ** SQLITE_DROP_VIEW |
| 53 | ** SQLITE_INSERT |
| 54 | ** SQLITE_PRAGMA |
| 55 | ** SQLITE_READ |
| 56 | ** SQLITE_SELECT |
| 57 | ** SQLITE_TRANSACTION |
| 58 | ** SQLITE_UPDATE |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 59 | ** |
| 60 | ** The third and fourth arguments to the auth function are the name of |
| 61 | ** the table and the column that are being accessed. The auth function |
| 62 | ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If |
| 63 | ** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY |
danielk1977 | 24b03fd | 2004-05-10 10:34:34 +0000 | [diff] [blame] | 64 | ** means that the SQL statement will never-run - the sqlite3_exec() call |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 65 | ** will return with an error. SQLITE_IGNORE means that the SQL statement |
| 66 | ** should run but attempts to read the specified column will return NULL |
| 67 | ** and attempts to write the column will be ignored. |
| 68 | ** |
| 69 | ** Setting the auth function to NULL disables this hook. The default |
| 70 | ** setting of the auth function is NULL. |
| 71 | */ |
danielk1977 | 24b03fd | 2004-05-10 10:34:34 +0000 | [diff] [blame] | 72 | int sqlite3_set_authorizer( |
drh | 9bb575f | 2004-09-06 17:24:11 +0000 | [diff] [blame] | 73 | sqlite3 *db, |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 74 | int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 75 | void *pArg |
| 76 | ){ |
| 77 | db->xAuth = xAuth; |
| 78 | db->pAuthArg = pArg; |
drh | d89bd00 | 2005-01-22 03:03:54 +0000 | [diff] [blame] | 79 | sqlite3ExpirePreparedStatements(db); |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 80 | return SQLITE_OK; |
| 81 | } |
| 82 | |
| 83 | /* |
| 84 | ** Write an error message into pParse->zErrMsg that explains that the |
| 85 | ** user-supplied authorization function returned an illegal value. |
| 86 | */ |
| 87 | static void sqliteAuthBadReturnCode(Parse *pParse, int rc){ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 88 | sqlite3ErrorMsg(pParse, "illegal return value (%d) from the " |
drh | f7a9e1a | 2004-02-22 18:40:56 +0000 | [diff] [blame] | 89 | "authorization function - should be SQLITE_OK, SQLITE_IGNORE, " |
| 90 | "or SQLITE_DENY", rc); |
drh | c60d044 | 2004-09-30 13:43:13 +0000 | [diff] [blame] | 91 | pParse->rc = SQLITE_ERROR; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | /* |
| 95 | ** The pExpr should be a TK_COLUMN expression. The table referred to |
drh | 6a3ea0e | 2003-05-02 14:32:12 +0000 | [diff] [blame] | 96 | ** is in pTabList or else it is the NEW or OLD table of a trigger. |
| 97 | ** Check to see if it is OK to read this particular column. |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 98 | ** |
| 99 | ** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN |
| 100 | ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY, |
| 101 | ** then generate an error. |
| 102 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 103 | void sqlite3AuthRead( |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 104 | Parse *pParse, /* The parser context */ |
| 105 | Expr *pExpr, /* The expression to check authorization on */ |
drh | 6a3ea0e | 2003-05-02 14:32:12 +0000 | [diff] [blame] | 106 | SrcList *pTabList /* All table that pExpr might refer to */ |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 107 | ){ |
drh | 9bb575f | 2004-09-06 17:24:11 +0000 | [diff] [blame] | 108 | sqlite3 *db = pParse->db; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 109 | int rc; |
drh | 027850b | 2003-04-16 20:24:52 +0000 | [diff] [blame] | 110 | Table *pTab; /* The table being read */ |
| 111 | const char *zCol; /* Name of the column of the table */ |
| 112 | int iSrc; /* Index in pTabList->a[] of table being read */ |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 113 | const char *zDBase; /* Name of database being accessed */ |
drh | 5689123 | 2004-09-09 13:55:50 +0000 | [diff] [blame] | 114 | TriggerStack *pStack; /* The stack of current triggers */ |
danielk1977 | da18423 | 2006-01-05 11:34:32 +0000 | [diff] [blame] | 115 | int iDb; /* The index of the database the expression refers to */ |
drh | 027850b | 2003-04-16 20:24:52 +0000 | [diff] [blame] | 116 | |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 117 | if( db->xAuth==0 ) return; |
drh | 2ce99ec | 2005-07-29 15:36:14 +0000 | [diff] [blame] | 118 | if( pExpr->op==TK_AS ) return; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 119 | assert( pExpr->op==TK_COLUMN ); |
danielk1977 | da18423 | 2006-01-05 11:34:32 +0000 | [diff] [blame] | 120 | iDb = sqlite3SchemaToIndex(pParse->db, pExpr->pSchema); |
drh | a3e4d96 | 2006-01-13 13:55:44 +0000 | [diff] [blame] | 121 | if( iDb<0 ){ |
| 122 | /* An attempt to read a column out of a subquery or other |
| 123 | ** temporary table. */ |
| 124 | return; |
| 125 | } |
danielk1977 | b3bce66 | 2005-01-29 08:32:43 +0000 | [diff] [blame] | 126 | for(iSrc=0; pTabList && iSrc<pTabList->nSrc; iSrc++){ |
drh | 6a3ea0e | 2003-05-02 14:32:12 +0000 | [diff] [blame] | 127 | if( pExpr->iTable==pTabList->a[iSrc].iCursor ) break; |
| 128 | } |
danielk1977 | b3bce66 | 2005-01-29 08:32:43 +0000 | [diff] [blame] | 129 | if( iSrc>=0 && pTabList && iSrc<pTabList->nSrc ){ |
drh | 027850b | 2003-04-16 20:24:52 +0000 | [diff] [blame] | 130 | pTab = pTabList->a[iSrc].pTab; |
drh | 5689123 | 2004-09-09 13:55:50 +0000 | [diff] [blame] | 131 | }else if( (pStack = pParse->trigStack)!=0 ){ |
drh | 027850b | 2003-04-16 20:24:52 +0000 | [diff] [blame] | 132 | /* This must be an attempt to read the NEW or OLD pseudo-tables |
| 133 | ** of a trigger. |
| 134 | */ |
drh | 027850b | 2003-04-16 20:24:52 +0000 | [diff] [blame] | 135 | assert( pExpr->iTable==pStack->newIdx || pExpr->iTable==pStack->oldIdx ); |
| 136 | pTab = pStack->pTab; |
drh | 5689123 | 2004-09-09 13:55:50 +0000 | [diff] [blame] | 137 | }else{ |
| 138 | return; |
drh | 027850b | 2003-04-16 20:24:52 +0000 | [diff] [blame] | 139 | } |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 140 | if( pTab==0 ) return; |
| 141 | if( pExpr->iColumn>=0 ){ |
| 142 | assert( pExpr->iColumn<pTab->nCol ); |
| 143 | zCol = pTab->aCol[pExpr->iColumn].zName; |
| 144 | }else if( pTab->iPKey>=0 ){ |
| 145 | assert( pTab->iPKey<pTab->nCol ); |
| 146 | zCol = pTab->aCol[pTab->iPKey].zName; |
| 147 | }else{ |
| 148 | zCol = "ROWID"; |
| 149 | } |
drh | a3e4d96 | 2006-01-13 13:55:44 +0000 | [diff] [blame] | 150 | assert( iDb>=0 && iDb<db->nDb ); |
danielk1977 | da18423 | 2006-01-05 11:34:32 +0000 | [diff] [blame] | 151 | zDBase = db->aDb[iDb].zName; |
drh | 5cf590c | 2003-04-24 01:45:04 +0000 | [diff] [blame] | 152 | rc = db->xAuth(db->pAuthArg, SQLITE_READ, pTab->zName, zCol, zDBase, |
| 153 | pParse->zAuthContext); |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 154 | if( rc==SQLITE_IGNORE ){ |
| 155 | pExpr->op = TK_NULL; |
| 156 | }else if( rc==SQLITE_DENY ){ |
danielk1977 | da18423 | 2006-01-05 11:34:32 +0000 | [diff] [blame] | 157 | if( db->nDb>2 || iDb!=0 ){ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 158 | sqlite3ErrorMsg(pParse, "access to %s.%s.%s is prohibited", |
drh | f7a9e1a | 2004-02-22 18:40:56 +0000 | [diff] [blame] | 159 | zDBase, pTab->zName, zCol); |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 160 | }else{ |
drh | 124b27e | 2004-06-19 16:06:10 +0000 | [diff] [blame] | 161 | sqlite3ErrorMsg(pParse, "access to %s.%s is prohibited",pTab->zName,zCol); |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 162 | } |
drh | dcd997e | 2003-01-31 17:21:49 +0000 | [diff] [blame] | 163 | pParse->rc = SQLITE_AUTH; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 164 | }else if( rc!=SQLITE_OK ){ |
| 165 | sqliteAuthBadReturnCode(pParse, rc); |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | /* |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 170 | ** Do an authorization check using the code and arguments given. Return |
| 171 | ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY |
| 172 | ** is returned, then the error count and error message in pParse are |
| 173 | ** modified appropriately. |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 174 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 175 | int sqlite3AuthCheck( |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 176 | Parse *pParse, |
| 177 | int code, |
| 178 | const char *zArg1, |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 179 | const char *zArg2, |
| 180 | const char *zArg3 |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 181 | ){ |
drh | 9bb575f | 2004-09-06 17:24:11 +0000 | [diff] [blame] | 182 | sqlite3 *db = pParse->db; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 183 | int rc; |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 184 | |
danielk1977 | f1a381e | 2006-06-16 08:01:02 +0000 | [diff] [blame^] | 185 | /* Don't do any authorization checks if the database is initialising |
| 186 | ** or if the parser is being invoked from within sqlite3_declare_vtab. |
| 187 | */ |
| 188 | if( db->init.busy || IN_DECLARE_VTAB ){ |
danielk1977 | 66b978a | 2004-06-14 11:35:17 +0000 | [diff] [blame] | 189 | return SQLITE_OK; |
| 190 | } |
| 191 | |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 192 | if( db->xAuth==0 ){ |
| 193 | return SQLITE_OK; |
| 194 | } |
drh | 5cf590c | 2003-04-24 01:45:04 +0000 | [diff] [blame] | 195 | rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext); |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 196 | if( rc==SQLITE_DENY ){ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 197 | sqlite3ErrorMsg(pParse, "not authorized"); |
drh | dcd997e | 2003-01-31 17:21:49 +0000 | [diff] [blame] | 198 | pParse->rc = SQLITE_AUTH; |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 199 | }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){ |
| 200 | rc = SQLITE_DENY; |
| 201 | sqliteAuthBadReturnCode(pParse, rc); |
| 202 | } |
| 203 | return rc; |
| 204 | } |
| 205 | |
drh | 85e2096 | 2003-04-25 17:52:11 +0000 | [diff] [blame] | 206 | /* |
| 207 | ** Push an authorization context. After this routine is called, the |
| 208 | ** zArg3 argument to authorization callbacks will be zContext until |
| 209 | ** popped. Or if pParse==0, this routine is a no-op. |
| 210 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 211 | void sqlite3AuthContextPush( |
drh | 85e2096 | 2003-04-25 17:52:11 +0000 | [diff] [blame] | 212 | Parse *pParse, |
| 213 | AuthContext *pContext, |
| 214 | const char *zContext |
| 215 | ){ |
| 216 | pContext->pParse = pParse; |
| 217 | if( pParse ){ |
| 218 | pContext->zAuthContext = pParse->zAuthContext; |
| 219 | pParse->zAuthContext = zContext; |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | /* |
| 224 | ** Pop an authorization context that was previously pushed |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 225 | ** by sqlite3AuthContextPush |
drh | 85e2096 | 2003-04-25 17:52:11 +0000 | [diff] [blame] | 226 | */ |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 227 | void sqlite3AuthContextPop(AuthContext *pContext){ |
drh | 85e2096 | 2003-04-25 17:52:11 +0000 | [diff] [blame] | 228 | if( pContext->pParse ){ |
| 229 | pContext->pParse->zAuthContext = pContext->zAuthContext; |
| 230 | pContext->pParse = 0; |
| 231 | } |
| 232 | } |
| 233 | |
drh | e6d01c3 | 2003-01-12 18:07:48 +0000 | [diff] [blame] | 234 | #endif /* SQLITE_OMIT_AUTHORIZATION */ |