25
25
#include "drizzled/plugin.h"
26
26
#include "drizzled/plugin/plugin.h"
27
#include "drizzled/security_context.h"
28
#include "drizzled/table_identifier.h"
27
#include "drizzled/identifier.h"
56
55
* @returns true if the user cannot access the schema
58
virtual bool restrictSchema(const SecurityContext &user_ctx,
59
const std::string &schema)= 0;
57
virtual bool restrictSchema(const drizzled::identifier::User &user_ctx,
58
SchemaIdentifier::const_reference schema)= 0;
62
61
* Should we restrict the current user's access to this table?
68
67
* @returns true if the user cannot access the table
70
virtual bool restrictTable(const SecurityContext &user_ctx,
71
const std::string &schema,
72
const std::string &table);
69
virtual bool restrictTable(const drizzled::identifier::User &user_ctx,
70
TableIdentifier &table);
75
73
* Should we restrict the current user's access to see this process?
81
79
* @returns true if the user cannot see the process
83
virtual bool restrictProcess(const SecurityContext &user_ctx,
84
const SecurityContext &session_ctx);
81
virtual bool restrictProcess(const drizzled::identifier::User &user_ctx,
82
const drizzled::identifier::User &session_ctx);
86
84
/** Server API method for checking schema authorization */
87
static bool isAuthorized(const SecurityContext &user_ctx,
88
SchemaIdentifier &schema_identifier,
85
static bool isAuthorized(drizzled::identifier::User::const_shared_ptr user_ctx,
86
SchemaIdentifier::const_reference schema_identifier,
89
87
bool send_error= true);
91
89
/** Server API method for checking table authorization */
92
static bool isAuthorized(const SecurityContext &user_ctx,
93
const std::string &schema,
94
const std::string &table,
95
bool send_error= true);
97
/** Server API method for checking process authorization */
98
static bool isAuthorized(const SecurityContext &user_ctx,
90
static bool isAuthorized(drizzled::identifier::User::const_shared_ptr user_ctx,
91
TableIdentifier &table_identifier,
92
bool send_error= true);
94
/** Server API method for checking process authorization */
95
static bool isAuthorized(drizzled::identifier::User::const_shared_ptr user_ctx,
96
const Session *session,
97
bool send_error= true);
99
/** Server API method for checking process authorization */
100
static bool isAuthorized(drizzled::identifier::User::const_reference user_ctx,
99
101
const Session *session,
100
102
bool send_error= true);
103
105
* Server API helper method for applying authorization tests
104
106
* to a set of schema names (for use in the context of getSchemaNames
106
static void pruneSchemaNames(const SecurityContext &user_ctx,
107
SchemaIdentifierList &set_of_schemas);
108
static void pruneSchemaNames(drizzled::identifier::User::const_shared_ptr user_ctx,
109
SchemaIdentifier::vector &set_of_schemas);
110
112
* Standard plugin system registration hooks
117
inline bool Authorization::restrictTable(const SecurityContext &user_ctx,
118
const std::string &schema,
119
inline bool Authorization::restrictTable(const drizzled::identifier::User &user_ctx,
120
TableIdentifier &table)
121
return restrictSchema(user_ctx, schema);
122
return restrictSchema(user_ctx, table);
124
inline bool Authorization::restrictProcess(const SecurityContext &,
125
const SecurityContext &)
125
inline bool Authorization::restrictProcess(const drizzled::identifier::User &,
126
const drizzled::identifier::User &)