18
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
#include "drizzled/plugin/authentication.h"
23
#include "drizzled/error.h"
21
#include "drizzled/server_includes.h"
22
#include "drizzled/authentication.h"
23
#include "drizzled/gettext.h"
24
#include "drizzled/errmsg_print.h"
24
25
#include "drizzled/plugin/registry.h"
25
#include "drizzled/gettext.h"
26
#include "drizzled/security_context.h"
30
29
using namespace std;
35
std::vector<plugin::Authentication *> all_authentication;
38
bool plugin::Authentication::addPlugin(plugin::Authentication *auth)
41
all_authentication.push_back(auth);
45
void plugin::Authentication::removePlugin(plugin::Authentication *auth)
48
all_authentication.erase(find(all_authentication.begin(),
49
all_authentication.end(),
53
class AuthenticateBy : public unary_function<plugin::Authentication *, bool>
55
const SecurityContext &sctx;
56
const string &password;
31
static vector<Authentication *> all_authentication;
33
static bool are_plugins_loaded= false;
35
void add_authentication(Authentication *auth)
37
all_authentication.push_back(auth);
40
void remove_authentication(Authentication *auth)
42
all_authentication.erase(find(all_authentication.begin(),
43
all_authentication.end(),
47
class AuthenticateBy : public unary_function<Authentication *, bool>
58
AuthenticateBy(const SecurityContext &sctx_arg, const string &password_arg) :
59
unary_function<plugin::Authentication *, bool>(),
60
sctx(sctx_arg), password(password_arg) {}
52
AuthenticateBy(Session *session_arg, const char *password_arg) :
53
unary_function<Authentication *, bool>(),
54
session(session_arg), password(password_arg) {}
62
56
inline result_type operator()(argument_type auth)
64
return auth->authenticate(sctx, password);
58
return auth->authenticate(session, password);
68
bool plugin::Authentication::isAuthenticated(const SecurityContext &sctx,
69
const string &password)
62
bool authenticate_user(Session *session, const char *password)
71
64
/* If we never loaded any auth plugins, just return true */
72
if (all_authentication.empty())
65
if (are_plugins_loaded != true)
75
68
/* Use find_if instead of foreach so that we can collect return codes */
76
vector<plugin::Authentication *>::iterator iter=
69
vector<Authentication *>::iterator iter=
77
70
find_if(all_authentication.begin(), all_authentication.end(),
78
AuthenticateBy(sctx, password));
80
/* We only require one plugin to return success in order to authenticate.
81
* If iter is == end() here, that means that all of the plugins returned
82
* false, which means they all failed.
71
AuthenticateBy(session, password));
72
/* If iter is == end() here, that means that all of the plugins returned
73
* false, which in this case means they all succeeded. Since we want to
74
* return false on success, we return the value of the two being !=
84
if (iter == all_authentication.end())
86
my_error(ER_ACCESS_DENIED_ERROR, MYF(0),
87
sctx.getUser().c_str(),
89
password.empty() ? ER(ER_NO) : ER(ER_YES));
76
return iter != all_authentication.end();
95
} /* namespace drizzled */