Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: acl forward compatible #2459

Merged
merged 22 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conf/pika.conf
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ masterauth :
# the value of this parameter will be ignored and all users are considered as administrators,
# in this scenario, users are not subject to the restrictions imposed by the userblacklist.
# PS: "admin password" refers to value of the parameter above: requirepass.
# userpass :
userpass :
dingxiaoshuai123 marked this conversation as resolved.
Show resolved Hide resolved

# The blacklist of commands for users that logged in by userpass,
# the commands that added to this list will not be available for users except for administrator.
Expand Down
3 changes: 3 additions & 0 deletions include/acl.h
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,8 @@ class Acl {

void UpdateDefaultUserPassword(const std::string& pass);

void InitLimitUser(const std::string& bl, bool limit_exist);

// After the user channel is modified, determine whether the current channel needs to be disconnected
void KillPubsubClientsIfNeeded(const std::shared_ptr<User>& origin, const std::shared_ptr<User>& newUser);

Expand All @@ -380,6 +382,7 @@ class Acl {
static std::vector<std::string> GetAllCategoryName();

static const std::string DefaultUser;
static const std::string DefaultLimitUser;
static const int64_t LogGroupingMaxTimeDelta;

// Adds a new entry in the ACL log, making sure to delete the old entry
Expand Down
11 changes: 11 additions & 0 deletions include/pika_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@ class PikaConf : public pstd::BaseConf {
std::shared_lock l(rwlock_);
return masterauth_;
}
std::string userpass() {
std::shared_lock l(rwlock_);
return userpass_;
}
std::string bgsave_path() {
std::shared_lock l(rwlock_);
return bgsave_path_;
Expand Down Expand Up @@ -377,6 +381,11 @@ class PikaConf : public pstd::BaseConf {
return pstd::Set2String(slow_cmd_set_, ',');
}

const std::string GetUserBlackList() {
std::shared_lock l(rwlock_);
return userblacklist_;
}

bool is_slow_cmd(const std::string& cmd) {
std::shared_lock l(rwlock_);
return slow_cmd_set_.find(cmd) != slow_cmd_set_.end();
Expand Down Expand Up @@ -709,6 +718,7 @@ class PikaConf : public pstd::BaseConf {
std::string replication_id_;
std::string requirepass_;
std::string masterauth_;
std::string userpass_;
std::atomic<bool> classic_mode_;
int databases_ = 0;
int default_slot_num_ = 1;
Expand Down Expand Up @@ -762,6 +772,7 @@ class PikaConf : public pstd::BaseConf {

std::string network_interface_;

std::string userblacklist_;
std::vector<std::string> users_; // acl user rules

std::string aclFile_;
Expand Down
43 changes: 43 additions & 0 deletions src/acl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,16 @@ std::vector<std::string> User::AllChannelKey() {
pstd::Status Acl::Initialization() {
AddUser(CreateDefaultUser());
UpdateDefaultUserPassword(g_pika_conf->requirepass());

auto status = LoadUsersAtStartup();
auto u = GetUser(DefaultLimitUser);
bool limit_exist = true;
if (nullptr == u) {
AddUser(CreatedUser(DefaultLimitUser));
limit_exist = false;
}
InitLimitUser(g_pika_conf->GetUserBlackList(), limit_exist);

if (!status.ok()) {
return status;
}
Expand Down Expand Up @@ -472,6 +481,39 @@ void Acl::UpdateDefaultUserPassword(const std::string& pass) {
}
}

void Acl::InitLimitUser(const std::string& bl, bool limit_exist) {
auto pass = g_pika_conf->userpass();
std::vector<std::string> blacklist;
pstd::StringSplit(bl, ',', blacklist);
std::unique_lock wl(mutex_);
auto u = GetUser(DefaultLimitUser);
if (limit_exist) {
if (!bl.empty()) {
dingxiaoshuai123 marked this conversation as resolved.
Show resolved Hide resolved
u->SetUser("+@all");
for(auto& i : blacklist) {
u->SetUser("-"+i);
dingxiaoshuai123 marked this conversation as resolved.
Show resolved Hide resolved
}
if (!pass.empty()) {
u->SetUser(">"+pass);
}
}
} else {
if (pass.empty()) {
u->SetUser("nopass");
} else {
u->SetUser(">"+pass);
}
u->SetUser("on");
u->SetUser("+@all");
u->SetUser("~*");
u->SetUser("&*");

for(auto& cmd : blacklist) {
cmd = pstd::StringTrim(cmd, " ");
u->SetUser("-" + cmd);
}
}
}
// bool Acl::CheckUserCanExec(const std::shared_ptr<Cmd>& cmd, const PikaCmdArgsType& argv) { cmd->name(); }

std::shared_ptr<User> Acl::CreateDefaultUser() {
Expand Down Expand Up @@ -725,6 +767,7 @@ std::array<std::pair<std::string, uint32_t>, 3> Acl::SelectorFlags = {{
}};

const std::string Acl::DefaultUser = "default";
const std::string Acl::DefaultLimitUser = "limit";
const int64_t Acl::LogGroupingMaxTimeDelta = 60000;

void Acl::AddLogEntry(int32_t reason, int32_t context, const std::string& username, const std::string& object,
Expand Down
21 changes: 17 additions & 4 deletions src/pika_admin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -270,15 +270,24 @@ void AuthCmd::Do() {
std::string pwd = "";
bool defaultAuth = false;
if (argv_.size() == 2) {
userName = Acl::DefaultUser;
pwd = argv_[1];
defaultAuth = true;
// defaultAuth = true;
} else {
userName = argv_[1];
pwd = argv_[2];
}

auto authResult = AuthenticateUser(name(), userName, pwd, conn, defaultAuth);
AuthResult authResult;
if (userName == "") {
// default
authResult = AuthenticateUser(name(), Acl::DefaultUser, pwd, conn, true);
if (authResult != AuthResult::OK && authResult != AuthResult::NO_REQUIRE_PASS) {
// Limit
authResult = AuthenticateUser(name(), Acl::DefaultLimitUser, pwd, conn, defaultAuth);
}
} else {
authResult = AuthenticateUser(name(), userName, pwd, conn, defaultAuth);
}

switch (authResult) {
case AuthResult::INVALID_CONN:
Expand Down Expand Up @@ -1569,7 +1578,11 @@ void ConfigCmd::ConfigGet(std::string& ret) {
EncodeString(&config_body, "slow-cmd-thread-pool-size");
EncodeNumber(&config_body, g_pika_conf->slow_cmd_thread_pool_size());
}

if (pstd::stringmatch(pattern.data(), "userblacklist", 1) != 0) {
elements += 2;
EncodeString(&config_body, "userblacklist");
EncodeString(&config_body, g_pika_conf -> GetUserBlackList());
}
if (pstd::stringmatch(pattern.data(), "slow-cmd-list", 1) != 0) {
elements += 2;
EncodeString(&config_body, "slow-cmd-list");
Expand Down
8 changes: 5 additions & 3 deletions src/pika_conf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ int PikaConf::Load() {
GetConfStr("replication-id", &replication_id_);
GetConfStr("requirepass", &requirepass_);
GetConfStr("masterauth", &masterauth_);
// GetConfStr("userpass", &userpass_);
GetConfStr("userpass", &userpass_);
GetConfInt("maxclients", &maxclients_);
if (maxclients_ <= 0) {
maxclients_ = 20000;
Expand Down Expand Up @@ -463,6 +463,8 @@ int PikaConf::Load() {
network_interface_ = "";
GetConfStr("network-interface", &network_interface_);

// userblacklist
GetConfStr("userblacklist", &userblacklist_);
// acl users
GetConfStrMulti("user", &users_);

Expand Down Expand Up @@ -643,8 +645,8 @@ int PikaConf::ConfigRewrite() {
SetConfInt("timeout", timeout_);
SetConfStr("requirepass", requirepass_);
SetConfStr("masterauth", masterauth_);
// SetConfStr("userpass", userpass_);
// SetConfStr("userblacklist", userblacklist);
SetConfStr("userpass", userpass_);
SetConfStr("userblacklist", userblacklist_);
SetConfStr("dump-prefix", bgsave_prefix_);
SetConfInt("maxclients", maxclients_);
SetConfInt("dump-expire", expire_dump_days_);
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ var _ = Describe("Server", func() {
r = client.Do(ctx, "config", "set", "requirepass", "foobar")
Expect(r.Val()).To(Equal("OK"))

r = client.Do(ctx, "AUTH", "wrong!")
r = client.Do(ctx, "AUTH", "default", "wrong!")
Expect(r.Err()).To(MatchError("WRONGPASS invalid username-password pair or user is disabled."))

// r = client.Do(ctx, "AUTH", "foo", "bar")
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/acl.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ start_server {tags {"acl external:skip"}} {

test {Coverage: ACL USERS} {
r ACL USERS
} {default newuser}
} {default limit newuser}

test {Usernames can not contain spaces or null characters} {
catch {r ACL setuser "a a"} err
Expand Down
Loading