mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Backport #71626 to 24.9: Fix clickhouse-su to accept not only user/group names, but as well IDs
This commit is contained in:
parent
3531c1a984
commit
1aa8e28d8c
@ -59,7 +59,13 @@ void setUserAndGroup(std::string arg_uid, std::string arg_gid)
|
|||||||
throw ErrnoException(ErrorCodes::SYSTEM_ERROR, "Cannot do 'getgrnam_r' to obtain gid from group name ({})", arg_gid);
|
throw ErrnoException(ErrorCodes::SYSTEM_ERROR, "Cannot do 'getgrnam_r' to obtain gid from group name ({})", arg_gid);
|
||||||
|
|
||||||
if (!result)
|
if (!result)
|
||||||
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Group {} is not found in the system", arg_gid);
|
{
|
||||||
|
if (0 != getgrgid_r(gid, &entry, buf.get(), buf_size, &result))
|
||||||
|
throw ErrnoException(ErrorCodes::SYSTEM_ERROR, "Cannot do 'getgrnam_r' to obtain gid from group name ({})", arg_gid);
|
||||||
|
|
||||||
|
if (!result)
|
||||||
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Group {} is not found in the system", arg_gid);
|
||||||
|
}
|
||||||
|
|
||||||
gid = entry.gr_gid;
|
gid = entry.gr_gid;
|
||||||
}
|
}
|
||||||
@ -84,7 +90,13 @@ void setUserAndGroup(std::string arg_uid, std::string arg_gid)
|
|||||||
throw ErrnoException(ErrorCodes::SYSTEM_ERROR, "Cannot do 'getpwnam_r' to obtain uid from user name ({})", arg_uid);
|
throw ErrnoException(ErrorCodes::SYSTEM_ERROR, "Cannot do 'getpwnam_r' to obtain uid from user name ({})", arg_uid);
|
||||||
|
|
||||||
if (!result)
|
if (!result)
|
||||||
throw Exception(ErrorCodes::BAD_ARGUMENTS, "User {} is not found in the system", arg_uid);
|
{
|
||||||
|
if (0 != getpwuid_r(uid, &entry, buf.get(), buf_size, &result))
|
||||||
|
throw ErrnoException(ErrorCodes::SYSTEM_ERROR, "Cannot do 'getpwuid_r' to obtain uid from user name ({})", uid);
|
||||||
|
|
||||||
|
if (!result)
|
||||||
|
throw Exception(ErrorCodes::BAD_ARGUMENTS, "User {} is not found in the system", arg_uid);
|
||||||
|
}
|
||||||
|
|
||||||
uid = entry.pw_uid;
|
uid = entry.pw_uid;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user