~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/authorization.cc

  • Committer: Monty Taylor
  • Date: 2008-10-23 00:05:28 UTC
  • Revision ID: monty@inaugust.com-20081023000528-grdvrd8c4058nutm
Moved my_handler to myisam, which is where it actually belongs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2010 Monty Taylor
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; either version 2 of the License, or
9
 
 *  (at your option) any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *  GNU General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public License
17
 
 *  along with this program; if not, write to the Free Software
18
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 */
20
 
 
21
 
#include "config.h"
22
 
 
23
 
#include <vector>
24
 
 
25
 
#include "drizzled/plugin/authorization.h"
26
 
#include "drizzled/security_context.h"
27
 
#include "drizzled/identifier.h"
28
 
#include "drizzled/error.h"
29
 
#include "drizzled/session.h"
30
 
#include "drizzled/gettext.h"
31
 
 
32
 
using namespace std;
33
 
 
34
 
namespace drizzled
35
 
{
36
 
 
37
 
vector<plugin::Authorization *> authorization_plugins;
38
 
 
39
 
 
40
 
bool plugin::Authorization::addPlugin(plugin::Authorization *auth)
41
 
{
42
 
  if (auth != NULL)
43
 
    authorization_plugins.push_back(auth);
44
 
  return false;
45
 
}
46
 
 
47
 
void plugin::Authorization::removePlugin(plugin::Authorization *auth)
48
 
{
49
 
  if (auth != NULL)
50
 
  {
51
 
    authorization_plugins.erase(find(authorization_plugins.begin(),
52
 
                                     authorization_plugins.end(),
53
 
                                     auth));
54
 
  }
55
 
}
56
 
 
57
 
namespace
58
 
{
59
 
 
60
 
class RestrictDbFunctor :
61
 
  public unary_function<plugin::Authorization *, bool>
62
 
{
63
 
  const SecurityContext &user_ctx;
64
 
  SchemaIdentifier &schema;
65
 
public:
66
 
  RestrictDbFunctor(const SecurityContext &user_ctx_arg,
67
 
                    SchemaIdentifier &schema_arg) :
68
 
    unary_function<plugin::Authorization *, bool>(),
69
 
    user_ctx(user_ctx_arg),
70
 
    schema(schema_arg)
71
 
  { }
72
 
 
73
 
  inline result_type operator()(argument_type auth)
74
 
  {
75
 
    return auth->restrictSchema(user_ctx, schema);
76
 
  }
77
 
};
78
 
 
79
 
class RestrictTableFunctor :
80
 
  public unary_function<plugin::Authorization *, bool>
81
 
{
82
 
  const SecurityContext &user_ctx;
83
 
  TableIdentifier &table;
84
 
public:
85
 
  RestrictTableFunctor(const SecurityContext &user_ctx_arg,
86
 
                       TableIdentifier &table_arg) :
87
 
    unary_function<plugin::Authorization *, bool>(),
88
 
    user_ctx(user_ctx_arg),
89
 
    table(table_arg)
90
 
  { }
91
 
 
92
 
  inline result_type operator()(argument_type auth)
93
 
  {
94
 
    return auth->restrictTable(user_ctx, table);
95
 
  }
96
 
};
97
 
 
98
 
class RestrictProcessFunctor :
99
 
  public unary_function<plugin::Authorization *, bool>
100
 
{
101
 
  const SecurityContext &user_ctx;
102
 
  const SecurityContext &session_ctx;
103
 
public:
104
 
  RestrictProcessFunctor(const SecurityContext &user_ctx_arg,
105
 
                         const SecurityContext &session_ctx_arg) :
106
 
    unary_function<plugin::Authorization *, bool>(),
107
 
    user_ctx(user_ctx_arg),
108
 
    session_ctx(session_ctx_arg)
109
 
  { }
110
 
 
111
 
  inline result_type operator()(argument_type auth)
112
 
  {
113
 
    return auth->restrictProcess(user_ctx, session_ctx);
114
 
  }
115
 
};
116
 
 
117
 
class PruneSchemaFunctor :
118
 
  public unary_function<SchemaIdentifier&, bool>
119
 
{
120
 
  const SecurityContext &user_ctx;
121
 
public:
122
 
  PruneSchemaFunctor(const SecurityContext &user_ctx_arg) :
123
 
    unary_function<SchemaIdentifier&, bool>(),
124
 
    user_ctx(user_ctx_arg)
125
 
  { }
126
 
 
127
 
  inline result_type operator()(argument_type auth)
128
 
  {
129
 
    return not plugin::Authorization::isAuthorized(user_ctx, auth, false);
130
 
  }
131
 
};
132
 
 
133
 
} /* namespace */
134
 
 
135
 
bool plugin::Authorization::isAuthorized(const SecurityContext &user_ctx,
136
 
                                         SchemaIdentifier &schema_identifier,
137
 
                                         bool send_error)
138
 
{
139
 
  /* If we never loaded any authorization plugins, just return true */
140
 
  if (authorization_plugins.empty())
141
 
    return true;
142
 
 
143
 
  /* Use find_if instead of foreach so that we can collect return codes */
144
 
  vector<plugin::Authorization *>::const_iterator iter=
145
 
    find_if(authorization_plugins.begin(),
146
 
            authorization_plugins.end(),
147
 
            RestrictDbFunctor(user_ctx, schema_identifier));
148
 
 
149
 
 
150
 
  /*
151
 
   * If iter is == end() here, that means that all of the plugins returned
152
 
   * false, which means that that each of them believe the user is authorized
153
 
   * to view the resource in question.
154
 
   */
155
 
  if (iter != authorization_plugins.end())
156
 
  {
157
 
    if (send_error)
158
 
    {
159
 
      my_error(ER_DBACCESS_DENIED_ERROR, MYF(0),
160
 
               user_ctx.getUser().c_str(),
161
 
               user_ctx.getIp().c_str(),
162
 
               schema_identifier.getSQLPath().c_str());
163
 
    }
164
 
    return false;
165
 
  }
166
 
  return true;
167
 
}
168
 
 
169
 
bool plugin::Authorization::isAuthorized(const SecurityContext &user_ctx,
170
 
                                         TableIdentifier &table,
171
 
                                         bool send_error)
172
 
{
173
 
  /* If we never loaded any authorization plugins, just return true */
174
 
  if (authorization_plugins.empty())
175
 
    return true;
176
 
 
177
 
  /* Use find_if instead of foreach so that we can collect return codes */
178
 
  vector<plugin::Authorization *>::const_iterator iter=
179
 
    find_if(authorization_plugins.begin(),
180
 
            authorization_plugins.end(),
181
 
            RestrictTableFunctor(user_ctx, table));
182
 
 
183
 
  /*
184
 
   * If iter is == end() here, that means that all of the plugins returned
185
 
   * false, which means that that each of them believe the user is authorized
186
 
   * to view the resource in question.
187
 
   */
188
 
  if (iter != authorization_plugins.end())
189
 
  {
190
 
    if (send_error)
191
 
    {
192
 
      my_error(ER_DBACCESS_DENIED_ERROR, MYF(0),
193
 
               user_ctx.getUser().c_str(),
194
 
               user_ctx.getIp().c_str(),
195
 
               table.getSQLPath().c_str());
196
 
    }
197
 
    return false;
198
 
  }
199
 
  return true;
200
 
}
201
 
 
202
 
bool plugin::Authorization::isAuthorized(const SecurityContext &user_ctx,
203
 
                                         const Session *session,
204
 
                                         bool send_error)
205
 
{
206
 
  const SecurityContext &session_ctx= session->getSecurityContext();
207
 
 
208
 
  /* If we never loaded any authorization plugins, just return true */
209
 
  if (authorization_plugins.empty())
210
 
    return true;
211
 
 
212
 
  /* Use find_if instead of foreach so that we can collect return codes */
213
 
  vector<plugin::Authorization *>::const_iterator iter=
214
 
    find_if(authorization_plugins.begin(),
215
 
            authorization_plugins.end(),
216
 
            RestrictProcessFunctor(user_ctx, session_ctx));
217
 
 
218
 
  /*
219
 
   * If iter is == end() here, that means that all of the plugins returned
220
 
   * false, which means that that each of them believe the user is authorized
221
 
   * to view the resource in question.
222
 
   */
223
 
 
224
 
  if (iter != authorization_plugins.end())
225
 
  {
226
 
    if (send_error)
227
 
    {
228
 
      my_error(ER_KILL_DENIED_ERROR, MYF(0), session->thread_id);
229
 
    }
230
 
    return false;
231
 
  }
232
 
  return true;
233
 
}
234
 
 
235
 
void plugin::Authorization::pruneSchemaNames(const SecurityContext &user_ctx,
236
 
                                             SchemaIdentifiers &set_of_schemas)
237
 
{
238
 
  /* If we never loaded any authorization plugins, just return true */
239
 
  if (authorization_plugins.empty())
240
 
    return;
241
 
 
242
 
  set_of_schemas.erase(remove_if(set_of_schemas.begin(),
243
 
                                 set_of_schemas.end(),
244
 
                                 PruneSchemaFunctor(user_ctx)),
245
 
                       set_of_schemas.end());
246
 
}
247
 
 
248
 
} /* namespace drizzled */