~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/authentication.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-17 00:08:20 UTC
  • mto: (1126.9.3 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090917000820-urd6p46qngi1okjp
Updated calls to some dtrace probes to cast the parameter to const char *
appropriately. Also, removed the additional variable in places that I was
using.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include "config.h"
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"
27
26
 
28
27
#include <vector>
29
28
 
30
29
using namespace std;
31
30
 
32
 
namespace drizzled
33
 
{
34
 
 
35
 
std::vector<plugin::Authentication *> all_authentication;
36
 
 
37
 
 
38
 
bool plugin::Authentication::addPlugin(plugin::Authentication *auth)
39
 
{
40
 
  if (auth != NULL)
41
 
    all_authentication.push_back(auth);
42
 
  return false;
43
 
}
44
 
 
45
 
void plugin::Authentication::removePlugin(plugin::Authentication *auth)
46
 
{
47
 
  if (auth != NULL)
48
 
    all_authentication.erase(find(all_authentication.begin(),
49
 
                                  all_authentication.end(),
50
 
                                  auth));
51
 
}
52
 
 
53
 
class AuthenticateBy : public unary_function<plugin::Authentication *, bool>
54
 
{
55
 
  const SecurityContext &sctx;
56
 
  const string &password;
 
31
static vector<Authentication *> all_authentication;
 
32
 
 
33
static bool are_plugins_loaded= false;
 
34
 
 
35
void add_authentication(Authentication *auth)
 
36
{
 
37
  all_authentication.push_back(auth);
 
38
}
 
39
 
 
40
void remove_authentication(Authentication *auth)
 
41
{
 
42
  all_authentication.erase(find(all_authentication.begin(),
 
43
                                all_authentication.end(),
 
44
                                auth));
 
45
}
 
46
 
 
47
class AuthenticateBy : public unary_function<Authentication *, bool>
 
48
{
 
49
  Session *session;
 
50
  const char *password;
57
51
public:
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) {}
61
55
 
62
56
  inline result_type operator()(argument_type auth)
63
57
  {
64
 
    return auth->authenticate(sctx, password);
 
58
    return auth->authenticate(session, password);
65
59
  }
66
60
};
67
61
 
68
 
bool plugin::Authentication::isAuthenticated(const SecurityContext &sctx,
69
 
                                             const string &password)
 
62
bool authenticate_user(Session *session, const char *password)
70
63
{
71
64
  /* If we never loaded any auth plugins, just return true */
72
 
  if (all_authentication.empty())
 
65
  if (are_plugins_loaded != true)
73
66
    return true;
74
67
 
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));
79
 
 
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 != 
83
75
   */
84
 
  if (iter == all_authentication.end())
85
 
  {
86
 
    my_error(ER_ACCESS_DENIED_ERROR, MYF(0),
87
 
             sctx.getUser().c_str(),
88
 
             sctx.getIp().c_str(),
89
 
             password.empty() ? ER(ER_NO) : ER(ER_YES));
90
 
    return false;
91
 
  }
92
 
  return true;
 
76
  return iter != all_authentication.end();
93
77
}
94
78
 
95
 
} /* namespace drizzled */