mirror of https://github.com/sysown/proxysql
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
187 lines
5.1 KiB
187 lines
5.1 KiB
#include "btree_map.h"
|
|
#include "proxysql.h"
|
|
#include "cpp.h"
|
|
#include "proxysql_atomic.h"
|
|
#include "SpookyV2.h"
|
|
|
|
/*
|
|
typedef struct _account_details_t {
|
|
char *username;
|
|
char *password;
|
|
bool use_ssl;
|
|
int default_hostgroup;
|
|
char *default_schema;
|
|
bool schema_locked;
|
|
bool transaction_persistent;
|
|
bool fast_forward;
|
|
} account_details_t;
|
|
*/
|
|
|
|
//#ifdef DEBUG
|
|
//#define DEB "_DEBUG"
|
|
//#else
|
|
//#define DEB ""
|
|
//#endif /* DEBUG */
|
|
//#define MYSQL_AUTHENTICATION_VERSION "0.1.0706" DEB
|
|
|
|
/*
|
|
typedef btree::btree_map<uint64_t, account_details_t *> BtMap;
|
|
|
|
typedef struct _creds_group_t {
|
|
rwlock_t lock;
|
|
BtMap bt_map;
|
|
PtrArray cred_array;
|
|
} creds_group_t;
|
|
*/
|
|
|
|
|
|
MySQL_Authentication::MySQL_Authentication() {
|
|
#ifdef DEBUG
|
|
if (glovars.has_debug==false) {
|
|
#else
|
|
if (glovars.has_debug==true) {
|
|
#endif /* DEBUG */
|
|
perror("Incompatible debagging version");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
spinlock_rwlock_init(&creds_backends.lock);
|
|
spinlock_rwlock_init(&creds_frontends.lock);
|
|
creds_backends.cred_array = new PtrArray();
|
|
creds_frontends.cred_array = new PtrArray();
|
|
};
|
|
|
|
MySQL_Authentication::~MySQL_Authentication() {
|
|
reset();
|
|
delete creds_backends.cred_array;
|
|
delete creds_frontends.cred_array;
|
|
};
|
|
|
|
void MySQL_Authentication::print_version() {
|
|
fprintf(stderr,"Standard MySQL Authentication rev. %s -- %s -- %s\n", MYSQL_AUTHENTICATION_VERSION, __FILE__, __TIMESTAMP__);
|
|
};
|
|
|
|
bool MySQL_Authentication::add(char * username, char * password, enum cred_username_type usertype, bool use_ssl, int default_hostgroup, char *default_schema, bool schema_locked, bool transaction_persistent, bool fast_forward) {
|
|
uint64_t hash1, hash2;
|
|
SpookyHash *myhash=new SpookyHash();
|
|
myhash->Init(1,2);
|
|
myhash->Update(username,strlen(username));
|
|
myhash->Final(&hash1,&hash2);
|
|
delete myhash;
|
|
|
|
creds_group_t &cg=(usertype==USERNAME_BACKEND ? creds_backends : creds_frontends);
|
|
|
|
spin_wrlock(&cg.lock);
|
|
btree::btree_map<uint64_t, account_details_t *>::iterator lookup;
|
|
lookup = cg.bt_map.find(hash1);
|
|
if (lookup != cg.bt_map.end()) {
|
|
account_details_t *ad=lookup->second;
|
|
cg.cred_array->remove_fast(ad);
|
|
cg.bt_map.erase(lookup);
|
|
free(ad->username);
|
|
free(ad->password);
|
|
free(ad->default_schema);
|
|
free(ad);
|
|
}
|
|
account_details_t *ad=(account_details_t *)malloc(sizeof(account_details_t));
|
|
ad->username=strdup(username);
|
|
ad->password=strdup(password);
|
|
ad->use_ssl=use_ssl;
|
|
ad->default_hostgroup=default_hostgroup;
|
|
ad->default_schema=strdup(default_schema);
|
|
ad->schema_locked=schema_locked;
|
|
ad->transaction_persistent=transaction_persistent;
|
|
ad->fast_forward=fast_forward;
|
|
cg.bt_map.insert(std::make_pair(hash1,ad));
|
|
cg.cred_array->add(ad);
|
|
spin_wrunlock(&cg.lock);
|
|
|
|
return true;
|
|
};
|
|
|
|
bool MySQL_Authentication::del(char * username, enum cred_username_type usertype) {
|
|
bool ret=false;
|
|
uint64_t hash1, hash2;
|
|
SpookyHash *myhash=new SpookyHash();
|
|
myhash->Init(1,2);
|
|
myhash->Update(username,strlen(username));
|
|
myhash->Final(&hash1,&hash2);
|
|
delete myhash;
|
|
|
|
creds_group_t &cg=(usertype==USERNAME_BACKEND ? creds_backends : creds_frontends);
|
|
|
|
spin_wrlock(&cg.lock);
|
|
btree::btree_map<uint64_t, account_details_t *>::iterator lookup;
|
|
lookup = cg.bt_map.find(hash1);
|
|
if (lookup != cg.bt_map.end()) {
|
|
account_details_t *ad=lookup->second;
|
|
cg.cred_array->remove_fast(ad);
|
|
cg.bt_map.erase(lookup);
|
|
free(ad->username);
|
|
free(ad->password);
|
|
free(ad->default_schema);
|
|
free(ad);
|
|
ret=true;
|
|
}
|
|
spin_wrunlock(&cg.lock);
|
|
|
|
return ret;
|
|
};
|
|
|
|
|
|
|
|
char * MySQL_Authentication::lookup(char * username, enum cred_username_type usertype, bool *use_ssl, int *default_hostgroup, char **default_schema, bool *schema_locked, bool *transaction_persistent, bool *fast_forward) {
|
|
char *ret=NULL;
|
|
uint64_t hash1, hash2;
|
|
SpookyHash myhash;
|
|
myhash.Init(1,2);
|
|
myhash.Update(username,strlen(username));
|
|
myhash.Final(&hash1,&hash2);
|
|
|
|
creds_group_t &cg=(usertype==USERNAME_BACKEND ? creds_backends : creds_frontends);
|
|
|
|
spin_rdlock(&cg.lock);
|
|
btree::btree_map<uint64_t, account_details_t *>::iterator lookup;
|
|
lookup = cg.bt_map.find(hash1);
|
|
if (lookup != cg.bt_map.end()) {
|
|
account_details_t *ad=lookup->second;
|
|
ret=l_strdup(ad->password);
|
|
if (use_ssl) *use_ssl=ad->use_ssl;
|
|
if (default_hostgroup) *default_hostgroup=ad->default_hostgroup;
|
|
if (default_schema) *default_schema=l_strdup(ad->default_schema);
|
|
if (schema_locked) *schema_locked=ad->schema_locked;
|
|
if (transaction_persistent) *transaction_persistent=ad->transaction_persistent;
|
|
if (fast_forward) *fast_forward=ad->fast_forward;
|
|
}
|
|
spin_rdunlock(&cg.lock);
|
|
return ret;
|
|
|
|
}
|
|
|
|
bool MySQL_Authentication::_reset(enum cred_username_type usertype) {
|
|
creds_group_t &cg=(usertype==USERNAME_BACKEND ? creds_backends : creds_frontends);
|
|
|
|
spin_wrlock(&cg.lock);
|
|
btree::btree_map<uint64_t, account_details_t *>::iterator lookup;
|
|
|
|
while (cg.bt_map.size()) {
|
|
lookup = cg.bt_map.begin();
|
|
if ( lookup != cg.bt_map.end() ) {
|
|
account_details_t *ad=lookup->second;
|
|
cg.cred_array->remove_fast(ad);
|
|
cg.bt_map.erase(lookup);
|
|
free(ad->username);
|
|
free(ad->password);
|
|
free(ad);
|
|
}
|
|
}
|
|
spin_wrunlock(&cg.lock);
|
|
|
|
return true;
|
|
};
|
|
|
|
bool MySQL_Authentication::reset() {
|
|
_reset(USERNAME_BACKEND);
|
|
_reset(USERNAME_FRONTEND);
|
|
return true;
|
|
}
|