blob: b17d1f53f713cd62a9fe37ac0ed1f8f2be15541b [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**
danielk197734acdc92009-07-02 18:40:34 +000017** $Id: auth.c,v 1.32 2009/07/02 18:40:35 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_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){
drhb21c8cd2007-08-21 19:33:56 +000077 sqlite3_mutex_enter(db->mutex);
drhe6d01c32003-01-12 18:07:48 +000078 db->xAuth = xAuth;
79 db->pAuthArg = pArg;
drhd89bd002005-01-22 03:03:54 +000080 sqlite3ExpirePreparedStatements(db);
drhb21c8cd2007-08-21 19:33:56 +000081 sqlite3_mutex_leave(db->mutex);
drhe6d01c32003-01-12 18:07:48 +000082 return SQLITE_OK;
83}
84
85/*
86** Write an error message into pParse->zErrMsg that explains that the
87** user-supplied authorization function returned an illegal value.
88*/
drhce9b0152009-05-04 01:58:31 +000089static void sqliteAuthBadReturnCode(Parse *pParse){
90 sqlite3ErrorMsg(pParse, "authorizer malfunction");
drhc60d0442004-09-30 13:43:13 +000091 pParse->rc = SQLITE_ERROR;
drhe6d01c32003-01-12 18:07:48 +000092}
93
94/*
dan47a06342009-10-02 14:23:41 +000095** Invoke the authorization callback for permission to read column zCol from
96** table zTab in database zDb. This function assumes that an authorization
97** callback has been registered (i.e. that sqlite3.xAuth is not NULL).
98**
99** If SQLITE_IGNORE is returned and pExpr is not NULL, then pExpr is changed
100** to an SQL NULL expression. Otherwise, if pExpr is NULL, then SQLITE_IGNORE
101** is treated as SQLITE_DENY. In this case an error is left in pParse.
102*/
dan02470b22009-10-03 07:04:11 +0000103int sqlite3AuthReadCol(
dan47a06342009-10-02 14:23:41 +0000104 Parse *pParse, /* The parser context */
105 const char *zTab, /* Table name */
106 const char *zCol, /* Column name */
dan02470b22009-10-03 07:04:11 +0000107 int iDb /* Index of containing database. */
dan47a06342009-10-02 14:23:41 +0000108){
109 sqlite3 *db = pParse->db; /* Database handle */
110 char *zDb = db->aDb[iDb].zName; /* Name of attached database */
111 int rc; /* Auth callback return code */
112
113 rc = db->xAuth(db->pAuthArg, SQLITE_READ, zTab,zCol,zDb,pParse->zAuthContext);
dan02470b22009-10-03 07:04:11 +0000114 if( rc==SQLITE_DENY ){
dan47a06342009-10-02 14:23:41 +0000115 if( db->nDb>2 || iDb!=0 ){
116 sqlite3ErrorMsg(pParse, "access to %s.%s.%s is prohibited",zDb,zTab,zCol);
117 }else{
118 sqlite3ErrorMsg(pParse, "access to %s.%s is prohibited", zTab, zCol);
119 }
120 pParse->rc = SQLITE_AUTH;
dan02470b22009-10-03 07:04:11 +0000121 }else if( rc!=SQLITE_IGNORE && rc!=SQLITE_OK ){
122 sqliteAuthBadReturnCode(pParse);
dan47a06342009-10-02 14:23:41 +0000123 }
dan02470b22009-10-03 07:04:11 +0000124 return rc;
dan47a06342009-10-02 14:23:41 +0000125}
126
127/*
drhe6d01c32003-01-12 18:07:48 +0000128** The pExpr should be a TK_COLUMN expression. The table referred to
drh6a3ea0e2003-05-02 14:32:12 +0000129** is in pTabList or else it is the NEW or OLD table of a trigger.
130** Check to see if it is OK to read this particular column.
drhe6d01c32003-01-12 18:07:48 +0000131**
132** If the auth function returns SQLITE_IGNORE, change the TK_COLUMN
133** instruction into a TK_NULL. If the auth function returns SQLITE_DENY,
134** then generate an error.
135*/
danielk19774adee202004-05-08 08:23:19 +0000136void sqlite3AuthRead(
drhe6d01c32003-01-12 18:07:48 +0000137 Parse *pParse, /* The parser context */
138 Expr *pExpr, /* The expression to check authorization on */
drh728b5772007-09-18 15:55:07 +0000139 Schema *pSchema, /* The schema of the expression */
drh6a3ea0e2003-05-02 14:32:12 +0000140 SrcList *pTabList /* All table that pExpr might refer to */
drhe6d01c32003-01-12 18:07:48 +0000141){
drh9bb575f2004-09-06 17:24:11 +0000142 sqlite3 *db = pParse->db;
danielk1977880c15b2007-09-01 18:24:55 +0000143 Table *pTab = 0; /* The table being read */
drh027850b2003-04-16 20:24:52 +0000144 const char *zCol; /* Name of the column of the table */
145 int iSrc; /* Index in pTabList->a[] of table being read */
danielk1977da184232006-01-05 11:34:32 +0000146 int iDb; /* The index of the database the expression refers to */
dan2bd93512009-08-31 08:22:46 +0000147 int iCol; /* Index of column in table */
drh027850b2003-04-16 20:24:52 +0000148
drhe6d01c32003-01-12 18:07:48 +0000149 if( db->xAuth==0 ) return;
drh728b5772007-09-18 15:55:07 +0000150 iDb = sqlite3SchemaToIndex(pParse->db, pSchema);
drha3e4d962006-01-13 13:55:44 +0000151 if( iDb<0 ){
152 /* An attempt to read a column out of a subquery or other
153 ** temporary table. */
154 return;
155 }
dan2bd93512009-08-31 08:22:46 +0000156
157 assert( pExpr->op==TK_COLUMN || pExpr->op==TK_TRIGGER );
158 if( pExpr->op==TK_TRIGGER ){
159 pTab = pParse->pTriggerTab;
160 }else{
161 assert( pTabList );
drh3e9ca092009-09-08 01:14:48 +0000162 for(iSrc=0; ALWAYS(iSrc<pTabList->nSrc); iSrc++){
danielk197734acdc92009-07-02 18:40:34 +0000163 if( pExpr->iTable==pTabList->a[iSrc].iCursor ){
164 pTab = pTabList->a[iSrc].pTab;
dan2bd93512009-08-31 08:22:46 +0000165 break;
danielk197734acdc92009-07-02 18:40:34 +0000166 }
drheba661f2009-05-04 18:01:39 +0000167 }
danielk197734acdc92009-07-02 18:40:34 +0000168 }
dan2bd93512009-08-31 08:22:46 +0000169 iCol = pExpr->iColumn;
drheba661f2009-05-04 18:01:39 +0000170 if( NEVER(pTab==0) ) return;
dan2bd93512009-08-31 08:22:46 +0000171
172 if( iCol>=0 ){
173 assert( iCol<pTab->nCol );
174 zCol = pTab->aCol[iCol].zName;
drhe6d01c32003-01-12 18:07:48 +0000175 }else if( pTab->iPKey>=0 ){
176 assert( pTab->iPKey<pTab->nCol );
177 zCol = pTab->aCol[pTab->iPKey].zName;
178 }else{
179 zCol = "ROWID";
180 }
drha3e4d962006-01-13 13:55:44 +0000181 assert( iDb>=0 && iDb<db->nDb );
dan02470b22009-10-03 07:04:11 +0000182 if( SQLITE_IGNORE==sqlite3AuthReadCol(pParse, pTab->zName, zCol, iDb) ){
183 pExpr->op = TK_NULL;
184 }
drhe6d01c32003-01-12 18:07:48 +0000185}
186
187/*
drhe5f9c642003-01-13 23:27:31 +0000188** Do an authorization check using the code and arguments given. Return
189** either SQLITE_OK (zero) or SQLITE_IGNORE or SQLITE_DENY. If SQLITE_DENY
190** is returned, then the error count and error message in pParse are
191** modified appropriately.
drhe6d01c32003-01-12 18:07:48 +0000192*/
danielk19774adee202004-05-08 08:23:19 +0000193int sqlite3AuthCheck(
drhe5f9c642003-01-13 23:27:31 +0000194 Parse *pParse,
195 int code,
196 const char *zArg1,
drhe22a3342003-04-22 20:30:37 +0000197 const char *zArg2,
198 const char *zArg3
drhe5f9c642003-01-13 23:27:31 +0000199){
drh9bb575f2004-09-06 17:24:11 +0000200 sqlite3 *db = pParse->db;
drhe6d01c32003-01-12 18:07:48 +0000201 int rc;
drhe22a3342003-04-22 20:30:37 +0000202
danielk1977f1a381e2006-06-16 08:01:02 +0000203 /* Don't do any authorization checks if the database is initialising
204 ** or if the parser is being invoked from within sqlite3_declare_vtab.
205 */
206 if( db->init.busy || IN_DECLARE_VTAB ){
danielk197766b978a2004-06-14 11:35:17 +0000207 return SQLITE_OK;
208 }
209
drhe6d01c32003-01-12 18:07:48 +0000210 if( db->xAuth==0 ){
211 return SQLITE_OK;
212 }
drh5cf590c2003-04-24 01:45:04 +0000213 rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext);
drhe5f9c642003-01-13 23:27:31 +0000214 if( rc==SQLITE_DENY ){
danielk19774adee202004-05-08 08:23:19 +0000215 sqlite3ErrorMsg(pParse, "not authorized");
drhdcd997e2003-01-31 17:21:49 +0000216 pParse->rc = SQLITE_AUTH;
drhe6d01c32003-01-12 18:07:48 +0000217 }else if( rc!=SQLITE_OK && rc!=SQLITE_IGNORE ){
218 rc = SQLITE_DENY;
drhce9b0152009-05-04 01:58:31 +0000219 sqliteAuthBadReturnCode(pParse);
drhe6d01c32003-01-12 18:07:48 +0000220 }
221 return rc;
222}
223
drh85e20962003-04-25 17:52:11 +0000224/*
225** Push an authorization context. After this routine is called, the
226** zArg3 argument to authorization callbacks will be zContext until
227** popped. Or if pParse==0, this routine is a no-op.
228*/
danielk19774adee202004-05-08 08:23:19 +0000229void sqlite3AuthContextPush(
drh85e20962003-04-25 17:52:11 +0000230 Parse *pParse,
231 AuthContext *pContext,
232 const char *zContext
233){
drheba661f2009-05-04 18:01:39 +0000234 assert( pParse );
drh85e20962003-04-25 17:52:11 +0000235 pContext->pParse = pParse;
drheba661f2009-05-04 18:01:39 +0000236 pContext->zAuthContext = pParse->zAuthContext;
237 pParse->zAuthContext = zContext;
drh85e20962003-04-25 17:52:11 +0000238}
239
240/*
241** Pop an authorization context that was previously pushed
danielk19774adee202004-05-08 08:23:19 +0000242** by sqlite3AuthContextPush
drh85e20962003-04-25 17:52:11 +0000243*/
danielk19774adee202004-05-08 08:23:19 +0000244void sqlite3AuthContextPop(AuthContext *pContext){
drh85e20962003-04-25 17:52:11 +0000245 if( pContext->pParse ){
246 pContext->pParse->zAuthContext = pContext->zAuthContext;
247 pContext->pParse = 0;
248 }
249}
250
drhe6d01c32003-01-12 18:07:48 +0000251#endif /* SQLITE_OMIT_AUTHORIZATION */