blob: 17f1df9bb6a0b3f3b7e13acc9dcdd8dcf5396ae9 [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**
drhc60d0442004-09-30 13:43:13 +000017** $Id: auth.c,v 1.19 2004/09/30 13:43:13 drh 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_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
drhe6d01c32003-01-12 18:07:48 +000059**
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
danielk197724b03fd2004-05-10 10:34:34 +000064** means that the SQL statement will never-run - the sqlite3_exec() call
drhe6d01c32003-01-12 18:07:48 +000065** 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*/
danielk197724b03fd2004-05-10 10:34:34 +000072int sqlite3_set_authorizer(
drh9bb575f2004-09-06 17:24:11 +000073 sqlite3 *db,
drhe22a3342003-04-22 20:30:37 +000074 int (*xAuth)(void*,int,const char*,const char*,const char*,const char*),
drhe6d01c32003-01-12 18:07:48 +000075 void *pArg
76){
77 db->xAuth = xAuth;
78 db->pAuthArg = pArg;
79 return SQLITE_OK;
80}
81
82/*
83** Write an error message into pParse->zErrMsg that explains that the
84** user-supplied authorization function returned an illegal value.
85*/
86static void sqliteAuthBadReturnCode(Parse *pParse, int rc){
danielk19774adee202004-05-08 08:23:19 +000087 sqlite3ErrorMsg(pParse, "illegal return value (%d) from the "
drhf7a9e1a2004-02-22 18:40:56 +000088 "authorization function - should be SQLITE_OK, SQLITE_IGNORE, "
89 "or SQLITE_DENY", rc);
drhc60d0442004-09-30 13:43:13 +000090 pParse->rc = SQLITE_ERROR;
drhe6d01c32003-01-12 18:07:48 +000091}
92
93/*
94** The pExpr should be a TK_COLUMN expression. The table referred to
drh6a3ea0e2003-05-02 14:32:12 +000095** is in pTabList or else it is the NEW or OLD table of a trigger.
96** Check to see if it is OK to read this particular column.
drhe6d01c32003-01-12 18:07:48 +000097**
98** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN
99** instruction into a TK_NULL. If the auth function returns SQLITE_DENY,
100** then generate an error.
101*/
danielk19774adee202004-05-08 08:23:19 +0000102void sqlite3AuthRead(
drhe6d01c32003-01-12 18:07:48 +0000103 Parse *pParse, /* The parser context */
104 Expr *pExpr, /* The expression to check authorization on */
drh6a3ea0e2003-05-02 14:32:12 +0000105 SrcList *pTabList /* All table that pExpr might refer to */
drhe6d01c32003-01-12 18:07:48 +0000106){
drh9bb575f2004-09-06 17:24:11 +0000107 sqlite3 *db = pParse->db;
drhe6d01c32003-01-12 18:07:48 +0000108 int rc;
drh027850b2003-04-16 20:24:52 +0000109 Table *pTab; /* The table being read */
110 const char *zCol; /* Name of the column of the table */
111 int iSrc; /* Index in pTabList->a[] of table being read */
drhe22a3342003-04-22 20:30:37 +0000112 const char *zDBase; /* Name of database being accessed */
drh56891232004-09-09 13:55:50 +0000113 TriggerStack *pStack; /* The stack of current triggers */
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;
drh56891232004-09-09 13:55:50 +0000122 }else if( (pStack = pParse->trigStack)!=0 ){
drh027850b2003-04-16 20:24:52 +0000123 /* This must be an attempt to read the NEW or OLD pseudo-tables
124 ** of a trigger.
125 */
drh027850b2003-04-16 20:24:52 +0000126 assert( pExpr->iTable==pStack->newIdx || pExpr->iTable==pStack->oldIdx );
127 pTab = pStack->pTab;
drh56891232004-09-09 13:55:50 +0000128 }else{
129 return;
drh027850b2003-04-16 20:24:52 +0000130 }
drhe6d01c32003-01-12 18:07:48 +0000131 if( pTab==0 ) return;
132 if( pExpr->iColumn>=0 ){
133 assert( pExpr->iColumn<pTab->nCol );
134 zCol = pTab->aCol[pExpr->iColumn].zName;
135 }else if( pTab->iPKey>=0 ){
136 assert( pTab->iPKey<pTab->nCol );
137 zCol = pTab->aCol[pTab->iPKey].zName;
138 }else{
139 zCol = "ROWID";
140 }
drh5cf590c2003-04-24 01:45:04 +0000141 assert( pExpr->iDb<db->nDb );
drhe22a3342003-04-22 20:30:37 +0000142 zDBase = db->aDb[pExpr->iDb].zName;
drh5cf590c2003-04-24 01:45:04 +0000143 rc = db->xAuth(db->pAuthArg, SQLITE_READ, pTab->zName, zCol, zDBase,
144 pParse->zAuthContext);
drhe6d01c32003-01-12 18:07:48 +0000145 if( rc==SQLITE_IGNORE ){
146 pExpr->op = TK_NULL;
147 }else if( rc==SQLITE_DENY ){
drhe22a3342003-04-22 20:30:37 +0000148 if( db->nDb>2 || pExpr->iDb!=0 ){
danielk19774adee202004-05-08 08:23:19 +0000149 sqlite3ErrorMsg(pParse, "access to %s.%s.%s is prohibited",
drhf7a9e1a2004-02-22 18:40:56 +0000150 zDBase, pTab->zName, zCol);
drhe22a3342003-04-22 20:30:37 +0000151 }else{
drh124b27e2004-06-19 16:06:10 +0000152 sqlite3ErrorMsg(pParse, "access to %s.%s is prohibited",pTab->zName,zCol);
drhe22a3342003-04-22 20:30:37 +0000153 }
drhdcd997e2003-01-31 17:21:49 +0000154 pParse->rc = SQLITE_AUTH;
drhe6d01c32003-01-12 18:07:48 +0000155 }else if( rc!=SQLITE_OK ){
156 sqliteAuthBadReturnCode(pParse, rc);
157 }
158}
159
160/*
drhe5f9c642003-01-13 23:27:31 +0000161** Do an authorization check using the code and arguments given. Return
162** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY
163** is returned, then the error count and error message in pParse are
164** modified appropriately.
drhe6d01c32003-01-12 18:07:48 +0000165*/
danielk19774adee202004-05-08 08:23:19 +0000166int sqlite3AuthCheck(
drhe5f9c642003-01-13 23:27:31 +0000167 Parse *pParse,
168 int code,
169 const char *zArg1,
drhe22a3342003-04-22 20:30:37 +0000170 const char *zArg2,
171 const char *zArg3
drhe5f9c642003-01-13 23:27:31 +0000172){
drh9bb575f2004-09-06 17:24:11 +0000173 sqlite3 *db = pParse->db;
drhe6d01c32003-01-12 18:07:48 +0000174 int rc;
drhe22a3342003-04-22 20:30:37 +0000175
danielk197766b978a2004-06-14 11:35:17 +0000176 /* Don't do any authorization checks if the database is initialising. */
177 if( db->init.busy ){
178 return SQLITE_OK;
179 }
180
drhe6d01c32003-01-12 18:07:48 +0000181 if( db->xAuth==0 ){
182 return SQLITE_OK;
183 }
drh5cf590c2003-04-24 01:45:04 +0000184 rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext);
drhe5f9c642003-01-13 23:27:31 +0000185 if( rc==SQLITE_DENY ){
danielk19774adee202004-05-08 08:23:19 +0000186 sqlite3ErrorMsg(pParse, "not authorized");
drhdcd997e2003-01-31 17:21:49 +0000187 pParse->rc = SQLITE_AUTH;
drhe6d01c32003-01-12 18:07:48 +0000188 }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){
189 rc = SQLITE_DENY;
190 sqliteAuthBadReturnCode(pParse, rc);
191 }
192 return rc;
193}
194
drh85e20962003-04-25 17:52:11 +0000195/*
196** Push an authorization context. After this routine is called, the
197** zArg3 argument to authorization callbacks will be zContext until
198** popped. Or if pParse==0, this routine is a no-op.
199*/
danielk19774adee202004-05-08 08:23:19 +0000200void sqlite3AuthContextPush(
drh85e20962003-04-25 17:52:11 +0000201 Parse *pParse,
202 AuthContext *pContext,
203 const char *zContext
204){
205 pContext->pParse = pParse;
206 if( pParse ){
207 pContext->zAuthContext = pParse->zAuthContext;
208 pParse->zAuthContext = zContext;
209 }
210}
211
212/*
213** Pop an authorization context that was previously pushed
danielk19774adee202004-05-08 08:23:19 +0000214** by sqlite3AuthContextPush
drh85e20962003-04-25 17:52:11 +0000215*/
danielk19774adee202004-05-08 08:23:19 +0000216void sqlite3AuthContextPop(AuthContext *pContext){
drh85e20962003-04-25 17:52:11 +0000217 if( pContext->pParse ){
218 pContext->pParse->zAuthContext = pContext->zAuthContext;
219 pContext->pParse = 0;
220 }
221}
222
drhe6d01c32003-01-12 18:07:48 +0000223#endif /* SQLITE_OMIT_AUTHORIZATION */