sl@0: /* sl@0: ** 2003 January 11 sl@0: ** sl@0: ** The author disclaims copyright to this source code. In place of sl@0: ** a legal notice, here is a blessing: sl@0: ** sl@0: ** May you do good and not evil. sl@0: ** May you find forgiveness for yourself and forgive others. sl@0: ** May you share freely, never taking more than you give. sl@0: ** sl@0: ************************************************************************* sl@0: ** This file contains code used to implement the sqlite3_set_authorizer() sl@0: ** API. This facility is an optional feature of the library. Embedded sl@0: ** systems that do not need this facility may omit it by recompiling sl@0: ** the library with -DSQLITE_OMIT_AUTHORIZATION=1 sl@0: ** sl@0: ** $Id: auth.c,v 1.29 2007/09/18 15:55:07 drh Exp $ sl@0: */ sl@0: #include "sqliteInt.h" sl@0: sl@0: /* sl@0: ** All of the code in this file may be omitted by defining a single sl@0: ** macro. sl@0: */ sl@0: #ifndef SQLITE_OMIT_AUTHORIZATION sl@0: sl@0: /* sl@0: ** Set or clear the access authorization function. sl@0: ** sl@0: ** The access authorization function is be called during the compilation sl@0: ** phase to verify that the user has read and/or write access permission on sl@0: ** various fields of the database. The first argument to the auth function sl@0: ** is a copy of the 3rd argument to this routine. The second argument sl@0: ** to the auth function is one of these constants: sl@0: ** sl@0: ** SQLITE_CREATE_INDEX sl@0: ** SQLITE_CREATE_TABLE sl@0: ** SQLITE_CREATE_TEMP_INDEX sl@0: ** SQLITE_CREATE_TEMP_TABLE sl@0: ** SQLITE_CREATE_TEMP_TRIGGER sl@0: ** SQLITE_CREATE_TEMP_VIEW sl@0: ** SQLITE_CREATE_TRIGGER sl@0: ** SQLITE_CREATE_VIEW sl@0: ** SQLITE_DELETE sl@0: ** SQLITE_DROP_INDEX sl@0: ** SQLITE_DROP_TABLE sl@0: ** SQLITE_DROP_TEMP_INDEX sl@0: ** SQLITE_DROP_TEMP_TABLE sl@0: ** SQLITE_DROP_TEMP_TRIGGER sl@0: ** SQLITE_DROP_TEMP_VIEW sl@0: ** SQLITE_DROP_TRIGGER sl@0: ** SQLITE_DROP_VIEW sl@0: ** SQLITE_INSERT sl@0: ** SQLITE_PRAGMA sl@0: ** SQLITE_READ sl@0: ** SQLITE_SELECT sl@0: ** SQLITE_TRANSACTION sl@0: ** SQLITE_UPDATE sl@0: ** sl@0: ** The third and fourth arguments to the auth function are the name of sl@0: ** the table and the column that are being accessed. The auth function sl@0: ** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If sl@0: ** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY sl@0: ** means that the SQL statement will never-run - the sqlite3_exec() call sl@0: ** will return with an error. SQLITE_IGNORE means that the SQL statement sl@0: ** should run but attempts to read the specified column will return NULL sl@0: ** and attempts to write the column will be ignored. sl@0: ** sl@0: ** Setting the auth function to NULL disables this hook. The default sl@0: ** setting of the auth function is NULL. sl@0: */ sl@0: int sqlite3_set_authorizer( sl@0: sqlite3 *db, sl@0: int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), sl@0: void *pArg sl@0: ){ sl@0: sqlite3_mutex_enter(db->mutex); sl@0: db->xAuth = xAuth; sl@0: db->pAuthArg = pArg; sl@0: sqlite3ExpirePreparedStatements(db); sl@0: sqlite3_mutex_leave(db->mutex); sl@0: return SQLITE_OK; sl@0: } sl@0: sl@0: /* sl@0: ** Write an error message into pParse->zErrMsg that explains that the sl@0: ** user-supplied authorization function returned an illegal value. sl@0: */ sl@0: static void sqliteAuthBadReturnCode(Parse *pParse, int rc){ sl@0: sqlite3ErrorMsg(pParse, "illegal return value (%d) from the " sl@0: "authorization function - should be SQLITE_OK, SQLITE_IGNORE, " sl@0: "or SQLITE_DENY", rc); sl@0: pParse->rc = SQLITE_ERROR; sl@0: } sl@0: sl@0: /* sl@0: ** The pExpr should be a TK_COLUMN expression. The table referred to sl@0: ** is in pTabList or else it is the NEW or OLD table of a trigger. sl@0: ** Check to see if it is OK to read this particular column. sl@0: ** sl@0: ** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN sl@0: ** instruction into a TK_NULL. If the auth function returns SQLITE_DENY, sl@0: ** then generate an error. sl@0: */ sl@0: void sqlite3AuthRead( sl@0: Parse *pParse, /* The parser context */ sl@0: Expr *pExpr, /* The expression to check authorization on */ sl@0: Schema *pSchema, /* The schema of the expression */ sl@0: SrcList *pTabList /* All table that pExpr might refer to */ sl@0: ){ sl@0: sqlite3 *db = pParse->db; sl@0: int rc; sl@0: Table *pTab = 0; /* The table being read */ sl@0: const char *zCol; /* Name of the column of the table */ sl@0: int iSrc; /* Index in pTabList->a[] of table being read */ sl@0: const char *zDBase; /* Name of database being accessed */ sl@0: TriggerStack *pStack; /* The stack of current triggers */ sl@0: int iDb; /* The index of the database the expression refers to */ sl@0: sl@0: if( db->xAuth==0 ) return; sl@0: if( pExpr->op!=TK_COLUMN ) return; sl@0: iDb = sqlite3SchemaToIndex(pParse->db, pSchema); sl@0: if( iDb<0 ){ sl@0: /* An attempt to read a column out of a subquery or other sl@0: ** temporary table. */ sl@0: return; sl@0: } sl@0: for(iSrc=0; pTabList && iSrcnSrc; iSrc++){ sl@0: if( pExpr->iTable==pTabList->a[iSrc].iCursor ) break; sl@0: } sl@0: if( iSrc>=0 && pTabList && iSrcnSrc ){ sl@0: pTab = pTabList->a[iSrc].pTab; sl@0: }else if( (pStack = pParse->trigStack)!=0 ){ sl@0: /* This must be an attempt to read the NEW or OLD pseudo-tables sl@0: ** of a trigger. sl@0: */ sl@0: assert( pExpr->iTable==pStack->newIdx || pExpr->iTable==pStack->oldIdx ); sl@0: pTab = pStack->pTab; sl@0: } sl@0: if( pTab==0 ) return; sl@0: if( pExpr->iColumn>=0 ){ sl@0: assert( pExpr->iColumnnCol ); sl@0: zCol = pTab->aCol[pExpr->iColumn].zName; sl@0: }else if( pTab->iPKey>=0 ){ sl@0: assert( pTab->iPKeynCol ); sl@0: zCol = pTab->aCol[pTab->iPKey].zName; sl@0: }else{ sl@0: zCol = "ROWID"; sl@0: } sl@0: assert( iDb>=0 && iDbnDb ); sl@0: zDBase = db->aDb[iDb].zName; sl@0: rc = db->xAuth(db->pAuthArg, SQLITE_READ, pTab->zName, zCol, zDBase, sl@0: pParse->zAuthContext); sl@0: if( rc==SQLITE_IGNORE ){ sl@0: pExpr->op = TK_NULL; sl@0: }else if( rc==SQLITE_DENY ){ sl@0: if( db->nDb>2 || iDb!=0 ){ sl@0: sqlite3ErrorMsg(pParse, "access to %s.%s.%s is prohibited", sl@0: zDBase, pTab->zName, zCol); sl@0: }else{ sl@0: sqlite3ErrorMsg(pParse, "access to %s.%s is prohibited",pTab->zName,zCol); sl@0: } sl@0: pParse->rc = SQLITE_AUTH; sl@0: }else if( rc!=SQLITE_OK ){ sl@0: sqliteAuthBadReturnCode(pParse, rc); sl@0: } sl@0: } sl@0: sl@0: /* sl@0: ** Do an authorization check using the code and arguments given. Return sl@0: ** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY sl@0: ** is returned, then the error count and error message in pParse are sl@0: ** modified appropriately. sl@0: */ sl@0: int sqlite3AuthCheck( sl@0: Parse *pParse, sl@0: int code, sl@0: const char *zArg1, sl@0: const char *zArg2, sl@0: const char *zArg3 sl@0: ){ sl@0: sqlite3 *db = pParse->db; sl@0: int rc; sl@0: sl@0: /* Don't do any authorization checks if the database is initialising sl@0: ** or if the parser is being invoked from within sqlite3_declare_vtab. sl@0: */ sl@0: if( db->init.busy || IN_DECLARE_VTAB ){ sl@0: return SQLITE_OK; sl@0: } sl@0: sl@0: if( db->xAuth==0 ){ sl@0: return SQLITE_OK; sl@0: } sl@0: rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext); sl@0: if( rc==SQLITE_DENY ){ sl@0: sqlite3ErrorMsg(pParse, "not authorized"); sl@0: pParse->rc = SQLITE_AUTH; sl@0: }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){ sl@0: rc = SQLITE_DENY; sl@0: sqliteAuthBadReturnCode(pParse, rc); sl@0: } sl@0: return rc; sl@0: } sl@0: sl@0: /* sl@0: ** Push an authorization context. After this routine is called, the sl@0: ** zArg3 argument to authorization callbacks will be zContext until sl@0: ** popped. Or if pParse==0, this routine is a no-op. sl@0: */ sl@0: void sqlite3AuthContextPush( sl@0: Parse *pParse, sl@0: AuthContext *pContext, sl@0: const char *zContext sl@0: ){ sl@0: pContext->pParse = pParse; sl@0: if( pParse ){ sl@0: pContext->zAuthContext = pParse->zAuthContext; sl@0: pParse->zAuthContext = zContext; sl@0: } sl@0: } sl@0: sl@0: /* sl@0: ** Pop an authorization context that was previously pushed sl@0: ** by sqlite3AuthContextPush sl@0: */ sl@0: void sqlite3AuthContextPop(AuthContext *pContext){ sl@0: if( pContext->pParse ){ sl@0: pContext->pParse->zAuthContext = pContext->zAuthContext; sl@0: pContext->pParse = 0; sl@0: } sl@0: } sl@0: sl@0: #endif /* SQLITE_OMIT_AUTHORIZATION */