fix: a stupid bug in database
This commit is contained in:
@ -1,9 +1,9 @@
|
|||||||
cmake_minimum_required(VERSION 3.15.2)
|
cmake_minimum_required(VERSION 3.15.2)
|
||||||
project(BookStore)
|
project(BookStore)
|
||||||
|
set(CMAKE_CXX_FLAGS "-g -fsanitize=address")
|
||||||
file(GLOB_RECURSE main_src backend/src/*.cpp)
|
file(GLOB_RECURSE main_src backend/src/*.cpp)
|
||||||
include_directories(${PROJECT_SOURCE_DIR}/backend/include)
|
include_directories(${PROJECT_SOURCE_DIR}/backend/include)
|
||||||
include_directories(${PROJECT_SOURCE_DIR}/external)
|
include_directories(${PROJECT_SOURCE_DIR}/external)
|
||||||
add_executable(code ${main_src})
|
add_executable(code ${main_src})
|
||||||
target_compile_options(code PRIVATE -Ofast)
|
|
||||||
add_subdirectory(maintenance/test)
|
add_subdirectory(maintenance/test)
|
||||||
include(maintenance/test/ctest_config)
|
include(maintenance/test/ctest_config)
|
@ -22,7 +22,7 @@ class String2Index {
|
|||||||
/* Reference: http://xorshift.di.unimi.it/splitmix64.c */
|
/* Reference: http://xorshift.di.unimi.it/splitmix64.c */
|
||||||
str = salt1 + str + salt2;
|
str = salt1 + str + salt2;
|
||||||
hash_t ret = 0;
|
hash_t ret = 0;
|
||||||
int i;
|
int i = 0;
|
||||||
for (; i + 8 <= str.length(); i += 8) {
|
for (; i + 8 <= str.length(); i += 8) {
|
||||||
ret ^= *reinterpret_cast<const hash_t *>(str.c_str() + i);
|
ret ^= *reinterpret_cast<const hash_t *>(str.c_str() + i);
|
||||||
ret ^= *reinterpret_cast<const hash_t *>(inner_salt + (i & 15));
|
ret ^= *reinterpret_cast<const hash_t *>(inner_salt + (i & 15));
|
||||||
@ -46,10 +46,11 @@ class String2Index {
|
|||||||
hash_t main_hash, sub_hash;
|
hash_t main_hash, sub_hash;
|
||||||
int val, nxt_idx = 0;
|
int val, nxt_idx = 0;
|
||||||
Node() = default;
|
Node() = default;
|
||||||
Node(std::string str, int _val)
|
Node(std::string str, int _val) {
|
||||||
: main_hash(Hash(str)),
|
main_hash = Hash(str);
|
||||||
sub_hash(Hash(sub_salt1 + str + sub_salt2)),
|
sub_hash = Hash(sub_salt1 + str + sub_salt2);
|
||||||
val(_val) {}
|
val = _val;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
DriveArray<Node, kBucketSize, 100> mem;
|
DriveArray<Node, kBucketSize, 100> mem;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include "database.h"
|
#include "database.h"
|
||||||
|
|
||||||
|
#include "bs-utility.h"
|
||||||
void UserDataBase::Open(std::string file_name) {
|
void UserDataBase::Open(std::string file_name) {
|
||||||
full_user_data.OpenFile(file_name + ".full");
|
full_user_data.OpenFile(file_name + ".full");
|
||||||
user_name2index.OpenFile(file_name + ".n2i");
|
user_name2index.OpenFile(file_name + ".n2i");
|
||||||
@ -17,15 +18,18 @@ void LogDataBase::Open(std::string file_name) {
|
|||||||
|
|
||||||
bool UserDataBase::PAM(const std::string &user_id,
|
bool UserDataBase::PAM(const std::string &user_id,
|
||||||
const std::string &password) {
|
const std::string &password) {
|
||||||
|
// debugPrint("PAM ", user_id, " ", password);
|
||||||
auto ret = user_name2index.Find(user_id);
|
auto ret = user_name2index.Find(user_id);
|
||||||
if (ret.size() != 1) return false;
|
if (ret.size() != 1) return false;
|
||||||
UserItemClass tmp;
|
UserItemClass tmp;
|
||||||
full_user_data.read(tmp, ret[0]);
|
full_user_data.read(tmp, ret[0]);
|
||||||
|
// debugPrint("Correct password: ", tmp.password, " Input password: ", password);
|
||||||
return tmp.password == password;
|
return tmp.password == password;
|
||||||
}
|
}
|
||||||
|
|
||||||
int UserDataBase::GetPrevilege(const std::string &user_id) {
|
int UserDataBase::GetPrevilege(const std::string &user_id) {
|
||||||
auto ret = user_name2index.Find(user_id);
|
auto ret = user_name2index.Find(user_id);
|
||||||
|
// debugPrint("size=", ret.size());
|
||||||
if (ret.size() != 1) return -1;
|
if (ret.size() != 1) return -1;
|
||||||
UserItemClass tmp;
|
UserItemClass tmp;
|
||||||
full_user_data.read(tmp, ret[0]);
|
full_user_data.read(tmp, ret[0]);
|
||||||
@ -42,6 +46,9 @@ void UserDataBase::AddUser(const std::string &user_id,
|
|||||||
tmp.privilege = privilege;
|
tmp.privilege = privilege;
|
||||||
int idx = full_user_data.write(tmp);
|
int idx = full_user_data.write(tmp);
|
||||||
user_name2index.Insert(user_id, idx);
|
user_name2index.Insert(user_id, idx);
|
||||||
|
// debugPrint("Add user: ", user_id, " ", password, " ", user_name, " ",
|
||||||
|
// privilege);
|
||||||
|
// debugPrint("idx: ", idx);
|
||||||
}
|
}
|
||||||
|
|
||||||
void UserDataBase::DeleteUser(const std::string &user_id) {
|
void UserDataBase::DeleteUser(const std::string &user_id) {
|
||||||
|
@ -15,7 +15,9 @@ BookStoreEngineClass::BookStoreEngineClass(std::string __config_dir,
|
|||||||
log_data_base.Open(config_dir + "log");
|
log_data_base.Open(config_dir + "log");
|
||||||
is_server = __is_server;
|
is_server = __is_server;
|
||||||
if (user_data_base.GetPrevilege("root") == -1) {
|
if (user_data_base.GetPrevilege("root") == -1) {
|
||||||
|
// debugPrint("Creating root user");
|
||||||
user_data_base.AddUser("root", "sjtu", "root", 7);
|
user_data_base.AddUser("root", "sjtu", "root", 7);
|
||||||
|
// debugPrint("Now root's previlege is", user_data_base.GetPrevilege("root"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
std::vector<std::string> BookStoreEngineClass::Execute(
|
std::vector<std::string> BookStoreEngineClass::Execute(
|
||||||
@ -114,6 +116,7 @@ std::vector<std::string> BookStoreEngineClass::ExecuteSu(
|
|||||||
login_stack.push(std::make_pair(user_id, ""));
|
login_stack.push(std::make_pair(user_id, ""));
|
||||||
return std::vector<std::string>();
|
return std::vector<std::string>();
|
||||||
}
|
}
|
||||||
|
// debugPrint("Examining", user_id, password);
|
||||||
if (user_data_base.PAM(user_id, password)) {
|
if (user_data_base.PAM(user_id, password)) {
|
||||||
login_stack.push(std::make_pair(user_id, ""));
|
login_stack.push(std::make_pair(user_id, ""));
|
||||||
return std::vector<std::string>();
|
return std::vector<std::string>();
|
||||||
@ -163,13 +166,16 @@ std::vector<std::string> BookStoreEngineClass::ExecutePasswd(
|
|||||||
std::vector<std::string> BookStoreEngineClass::ExecuteUserAdd(
|
std::vector<std::string> BookStoreEngineClass::ExecuteUserAdd(
|
||||||
const std::string &cmd,
|
const std::string &cmd,
|
||||||
std::stack<std::pair<std::string, std::string>> &login_stack) {
|
std::stack<std::pair<std::string, std::string>> &login_stack) {
|
||||||
if (login_stack.empty() ||
|
int own_previlege = 0;
|
||||||
user_data_base.GetPrevilege(login_stack.top().first) < 3)
|
if (login_stack.size() > 0)
|
||||||
|
own_previlege = user_data_base.GetPrevilege(login_stack.top().first);
|
||||||
|
if (login_stack.empty() || own_previlege < 3)
|
||||||
return std::vector<std::string>({"Invalid"});
|
return std::vector<std::string>({"Invalid"});
|
||||||
std::string user_id, password, user_name;
|
std::string user_id, password, user_name;
|
||||||
int privilege;
|
int privilege;
|
||||||
if (!CommandUseraddLexer(cmd, user_id, password, privilege, user_name))
|
if (!CommandUseraddLexer(cmd, user_id, password, privilege, user_name))
|
||||||
return std::vector<std::string>({"Invalid"});
|
return std::vector<std::string>({"Invalid"});
|
||||||
|
if (privilege > own_previlege) return std::vector<std::string>({"Invalid"});
|
||||||
if (user_data_base.GetPrevilege(user_id) != -1)
|
if (user_data_base.GetPrevilege(user_id) != -1)
|
||||||
return std::vector<std::string>({"Invalid"});
|
return std::vector<std::string>({"Invalid"});
|
||||||
user_data_base.AddUser(user_id, password, user_name, privilege);
|
user_data_base.AddUser(user_id, password, user_name, privilege);
|
||||||
|
@ -4,7 +4,17 @@
|
|||||||
#include "bs-utility.h"
|
#include "bs-utility.h"
|
||||||
#include "builtin-cli.h"
|
#include "builtin-cli.h"
|
||||||
#include "clipp/clipp.h"
|
#include "clipp/clipp.h"
|
||||||
|
// #include "key2index.hpp"
|
||||||
|
// void test() {
|
||||||
|
// String2Index user_name2index;
|
||||||
|
// user_name2index.OpenFile("test.n2i");
|
||||||
|
// user_name2index.Insert("root", 1);
|
||||||
|
// auto vec=user_name2index.Find("root");
|
||||||
|
// std::cout<<vec.size()<<std::endl;
|
||||||
|
// }
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
|
// test();
|
||||||
|
// return 0;
|
||||||
bool is_server = false;
|
bool is_server = false;
|
||||||
std::string config_dir = "";
|
std::string config_dir = "";
|
||||||
bool custom_config_dir = false;
|
bool custom_config_dir = false;
|
||||||
|
Reference in New Issue
Block a user