Skip to content
Snippets Groups Projects
Commit b0f788c2 authored by Daniel P. Berrangé's avatar Daniel P. Berrangé :speech_balloon:
Browse files

admin: reject clients unless their UID matches the current UID


The admin protocol RPC messages are only intended for use by the user
running the daemon. As such they should not be allowed for any client
UID that does not match the server UID.

Fixes CVE-2019-10132

Reviewed-by: default avatarJán Tomko <jtomko@redhat.com>
Signed-off-by: default avatarDaniel P. Berrangé <berrange@redhat.com>
(cherry picked from commit 96f41cd7)
parent 7a10a6a5
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,28 @@ remoteAdmClientNew(virNetServerClientPtr client ATTRIBUTE_UNUSED,
void *opaque)
{
struct daemonAdmClientPrivate *priv;
uid_t clientuid;
gid_t clientgid;
pid_t clientpid;
unsigned long long timestamp;
if (virNetServerClientGetUNIXIdentity(client,
&clientuid,
&clientgid,
&clientpid,
&timestamp) < 0)
return NULL;
VIR_DEBUG("New client pid %lld uid %lld",
(long long)clientpid,
(long long)clientuid);
if (geteuid() != clientuid) {
virReportRestrictedError(_("Disallowing client %lld with uid %lld"),
(long long)clientpid,
(long long)clientuid);
return NULL;
}
if (VIR_ALLOC(priv) < 0)
return NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment