Skip to content
Snippets Groups Projects
Commit e7135535 authored by Filip Široký's avatar Filip Široký Committed by Daniel Salzman
Browse files

keymg: try to run as user/group set in the config

parent 5508a3c6
No related branches found
No related tags found
1 merge request!734keymgr: run as user/group set in the config
Pipeline #
......@@ -16,6 +16,8 @@
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include "knot/conf/conf.h"
#include "knot/dnssec/zone-keys.h"
......@@ -232,6 +234,22 @@ static bool init_conf_blank(const char *kasp_dir)
return true;
}
static void update_privileges(void)
{
int uid, gid;
if (conf_user(conf(), &uid, &gid) != KNOT_EOK) {
return;
}
// Just try to alter process privileges if different from configured.
if ((gid_t)gid != getgid()) {
(void)setregid(gid, gid);
}
if ((uid_t)uid != getuid()) {
(void)setreuid(uid, uid);
}
}
int main(int argc, char *argv[])
{
if (argc <= 1) {
......@@ -314,6 +332,8 @@ int main(int argc, char *argv[])
}
}
update_privileges();
int ret = key_command(argc - argpos, argv + argpos);
conf_free(conf());
......
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