blob: 6984a1d5e503c6cea12dabd50d59e2282fc73829 [file] [log] [blame]
drhe6d01c32003-01-12 18:07:48 +00001/*
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*************************************************************************
danielk197724b03fd2004-05-10 10:34:34 +000012** This file contains code used to implement the sqlite3_set_authorizer()
drhe6d01c32003-01-12 18:07:48 +000013** 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**
danielk197724b03fd2004-05-10 10:34:34 +000017** $Id: auth.c,v 1.14 2004/05/10 10:34:34 danielk1977 Exp $
drhe6d01c32003-01-12 18:07:48 +000018*/
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
drh5fe2d8c2003-05-10 03:36:53 +000031** phase to verify that the user has read and/or write access permission on
drhe6d01c32003-01-12 18:07:48 +000032** 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**
drh5fe2d8c2003-05-10 03:36:53 +000036** SQLITE_COPY
37** SQLITE_CREATE_INDEX
38** SQLITE_CREATE_TABLE
39** SQLITE_CREATE_TEMP_INDEX
40** SQLITE_CREATE_TEMP_TABLE
41** SQLITE_CREATE_TEMP_TRIGGER
42** SQLITE_CREATE_TEMP_VIEW
43** SQLITE_CREATE_TRIGGER
44** SQLITE_CREATE_VIEW
45** SQLITE_DELETE
46** SQLITE_DROP_INDEX
47** SQLITE_DROP_TABLE
48** SQLITE_DROP_TEMP_INDEX
49** SQLITE_DROP_TEMP_TABLE
50** SQLITE_DROP_TEMP_TRIGGER
51** SQLITE_DROP_TEMP_VIEW
52** SQLITE_DROP_TRIGGER
53** SQLITE_DROP_VIEW
54** SQLITE_INSERT
55** SQLITE_PRAGMA
56** SQLITE_READ
57** SQLITE_SELECT
58** SQLITE_TRANSACTION
59** SQLITE_UPDATE
drhe6d01c32003-01-12 18:07:48 +000060**
61** The third and fourth arguments to the auth function are the name of
62** the table and the column that are being accessed. The auth function
63** should return either SQLITE_OK, SQLITE_DENY, or SQLITE_IGNORE. If
64** SQLITE_OK is returned, it means that access is allowed. SQLITE_DENY
danielk197724b03fd2004-05-10 10:34:34 +000065** means that the SQL statement will never-run - the sqlite3_exec() call
drhe6d01c32003-01-12 18:07:48 +000066** will return with an error. SQLITE_IGNORE means that the SQL statement
67** should run but attempts to read the specified column will return NULL
68** and attempts to write the column will be ignored.
69**
70** Setting the auth function to NULL disables this hook. The default
71** setting of the auth function is NULL.
72*/
danielk197724b03fd2004-05-10 10:34:34 +000073int sqlite3_set_authorizer(
drhe6d01c32003-01-12 18:07:48 +000074 sqlite *db,
drhe22a3342003-04-22 20:30:37 +000075 int (*xAuth)(void*,int,const char*,const char*,const char*,const char*),
drhe6d01c32003-01-12 18:07:48 +000076 void *pArg
77){
78 db->xAuth = xAuth;
79 db->pAuthArg = pArg;
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*/
87static void sqliteAuthBadReturnCode(Parse *pParse, int rc){
danielk19774adee202004-05-08 08:23:19 +000088 sqlite3ErrorMsg(pParse, "illegal return value (%d) from the "
drhf7a9e1a2004-02-22 18:40:56 +000089 "authorization function - should be SQLITE_OK, SQLITE_IGNORE, "
90 "or SQLITE_DENY", rc);
drhdcd997e2003-01-31 17:21:49 +000091 pParse->rc = SQLITE_MISUSE;
drhe6d01c32003-01-12 18:07:48 +000092}
93
94/*
95** The pExpr should be a TK_COLUMN expression. The table referred to
drh6a3ea0e2003-05-02 14:32:12 +000096** 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.
drhe6d01c32003-01-12 18:07:48 +000098**
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*/
danielk19774adee202004-05-08 08:23:19 +0000103void sqlite3AuthRead(
drhe6d01c32003-01-12 18:07:48 +0000104 Parse *pParse, /* The parser context */
105 Expr *pExpr, /* The expression to check authorization on */
drh6a3ea0e2003-05-02 14:32:12 +0000106 SrcList *pTabList /* All table that pExpr might refer to */
drhe6d01c32003-01-12 18:07:48 +0000107){
108 sqlite *db = pParse->db;
109 int rc;
drh027850b2003-04-16 20:24:52 +0000110 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 */
drhe22a3342003-04-22 20:30:37 +0000113 const char *zDBase; /* Name of database being accessed */
drh027850b2003-04-16 20:24:52 +0000114
drhe6d01c32003-01-12 18:07:48 +0000115 if( db->xAuth==0 ) return;
116 assert( pExpr->op==TK_COLUMN );
drh6a3ea0e2003-05-02 14:32:12 +0000117 for(iSrc=0; iSrc<pTabList->nSrc; iSrc++){
118 if( pExpr->iTable==pTabList->a[iSrc].iCursor ) break;
119 }
drh027850b2003-04-16 20:24:52 +0000120 if( iSrc>=0 && iSrc<pTabList->nSrc ){
121 pTab = pTabList->a[iSrc].pTab;
122 }else{
123 /* This must be an attempt to read the NEW or OLD pseudo-tables
124 ** of a trigger.
125 */
drh5cf590c2003-04-24 01:45:04 +0000126 TriggerStack *pStack; /* The stack of current triggers */
127 pStack = pParse->trigStack;
drh027850b2003-04-16 20:24:52 +0000128 assert( pStack!=0 );
129 assert( pExpr->iTable==pStack->newIdx || pExpr->iTable==pStack->oldIdx );
130 pTab = pStack->pTab;
131 }
drhe6d01c32003-01-12 18:07:48 +0000132 if( pTab==0 ) return;
133 if( pExpr->iColumn>=0 ){
134 assert( pExpr->iColumn<pTab->nCol );
135 zCol = pTab->aCol[pExpr->iColumn].zName;
136 }else if( pTab->iPKey>=0 ){
137 assert( pTab->iPKey<pTab->nCol );
138 zCol = pTab->aCol[pTab->iPKey].zName;
139 }else{
140 zCol = "ROWID";
141 }
drh5cf590c2003-04-24 01:45:04 +0000142 assert( pExpr->iDb<db->nDb );
drhe22a3342003-04-22 20:30:37 +0000143 zDBase = db->aDb[pExpr->iDb].zName;
drh5cf590c2003-04-24 01:45:04 +0000144 rc = db->xAuth(db->pAuthArg, SQLITE_READ, pTab->zName, zCol, zDBase,
145 pParse->zAuthContext);
drhe6d01c32003-01-12 18:07:48 +0000146 if( rc==SQLITE_IGNORE ){
147 pExpr->op = TK_NULL;
148 }else if( rc==SQLITE_DENY ){
drhe22a3342003-04-22 20:30:37 +0000149 if( db->nDb>2 || pExpr->iDb!=0 ){
danielk19774adee202004-05-08 08:23:19 +0000150 sqlite3ErrorMsg(pParse, "access to %s.%s.%s is prohibited",
drhf7a9e1a2004-02-22 18:40:56 +0000151 zDBase, pTab->zName, zCol);
drhe22a3342003-04-22 20:30:37 +0000152 }else{
danielk19774adee202004-05-08 08:23:19 +0000153 sqlite3ErrorMsg(pParse, "access to %s.%s is prohibited", pTab->zName,zCol);
drhe22a3342003-04-22 20:30:37 +0000154 }
drhdcd997e2003-01-31 17:21:49 +0000155 pParse->rc = SQLITE_AUTH;
drhe6d01c32003-01-12 18:07:48 +0000156 }else if( rc!=SQLITE_OK ){
157 sqliteAuthBadReturnCode(pParse, rc);
158 }
159}
160
161/*
drhe5f9c642003-01-13 23:27:31 +0000162** Do an authorization check using the code and arguments given. Return
163** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY
164** is returned, then the error count and error message in pParse are
165** modified appropriately.
drhe6d01c32003-01-12 18:07:48 +0000166*/
danielk19774adee202004-05-08 08:23:19 +0000167int sqlite3AuthCheck(
drhe5f9c642003-01-13 23:27:31 +0000168 Parse *pParse,
169 int code,
170 const char *zArg1,
drhe22a3342003-04-22 20:30:37 +0000171 const char *zArg2,
172 const char *zArg3
drhe5f9c642003-01-13 23:27:31 +0000173){
drhe6d01c32003-01-12 18:07:48 +0000174 sqlite *db = pParse->db;
175 int rc;
drhe22a3342003-04-22 20:30:37 +0000176
drhe6d01c32003-01-12 18:07:48 +0000177 if( db->xAuth==0 ){
178 return SQLITE_OK;
179 }
drh5cf590c2003-04-24 01:45:04 +0000180 rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext);
drhe5f9c642003-01-13 23:27:31 +0000181 if( rc==SQLITE_DENY ){
danielk19774adee202004-05-08 08:23:19 +0000182 sqlite3ErrorMsg(pParse, "not authorized");
drhdcd997e2003-01-31 17:21:49 +0000183 pParse->rc = SQLITE_AUTH;
drhe6d01c32003-01-12 18:07:48 +0000184 }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){
185 rc = SQLITE_DENY;
186 sqliteAuthBadReturnCode(pParse, rc);
187 }
188 return rc;
189}
190
drh85e20962003-04-25 17:52:11 +0000191/*
192** Push an authorization context. After this routine is called, the
193** zArg3 argument to authorization callbacks will be zContext until
194** popped. Or if pParse==0, this routine is a no-op.
195*/
danielk19774adee202004-05-08 08:23:19 +0000196void sqlite3AuthContextPush(
drh85e20962003-04-25 17:52:11 +0000197 Parse *pParse,
198 AuthContext *pContext,
199 const char *zContext
200){
201 pContext->pParse = pParse;
202 if( pParse ){
203 pContext->zAuthContext = pParse->zAuthContext;
204 pParse->zAuthContext = zContext;
205 }
206}
207
208/*
209** Pop an authorization context that was previously pushed
danielk19774adee202004-05-08 08:23:19 +0000210** by sqlite3AuthContextPush
drh85e20962003-04-25 17:52:11 +0000211*/
danielk19774adee202004-05-08 08:23:19 +0000212void sqlite3AuthContextPop(AuthContext *pContext){
drh85e20962003-04-25 17:52:11 +0000213 if( pContext->pParse ){
214 pContext->pParse->zAuthContext = pContext->zAuthContext;
215 pContext->pParse = 0;
216 }
217}
218
drhe6d01c32003-01-12 18:07:48 +0000219#endif /* SQLITE_OMIT_AUTHORIZATION */
danielk19774adee202004-05-08 08:23:19 +0000220
221
222