以另一个用户身份加载流程?

Jav*_*het 5 c java unix linux

所以,我有一个根进程(以root身份运行),我希望它使用非root uid加载另一个进程.

此刻,我正在调用seteuid,setegid然后在创建进程后重置为root.我发现该进程仍然使用root的uid加载.我该怎么用呢?

Java代码(JNA):

public boolean loadVHost(String java, File sockfile) throws IOException {
    if (CLib.INSTANCE.setegid(suid) != 0) {
        log("setegid C call failed! @ " + id);
        return false;
    }
    if (CLib.INSTANCE.seteuid(suid) != 0) {
        log("seteuid C call failed! @ " + id);
        return false;
    }
    if (CLib.INSTANCE.getegid() != suid || CLib.INSTANCE.geteuid() != suid) {
        log("geteuid/egid C call returned unwanted value! @ " + id + " (returned " + CLib.INSTANCE.getuid() + ":" + CLib.INSTANCE.getgid() + ")");
        return false;
    }
    File hp = new File(homepath);
    hp.mkdirs();
    File avuna = new File(hp, "avuna.jar");
    File main = new File(hp, "main.cfg"); // TODO: add linux user-based RAM/HDD/bandwidth caps
    File hosts = new File(hp, "hosts.cfg");
    if (!avuna.exists() || !main.exists() || !hosts.exists()) {
        log("VHost corrupted, avuna.jar/main.cfg/hosts.cfg is missing! Reinstalling...");
        // if (createVHost(java, sockfile.getAbsolutePath())) {
        // log("Reinstallation completed, vhost loading...");
        // }else {
        // log("Reinstallation failed, vhost NOT loading.");
        // return false;
        // }
    }
    ProcessBuilder builder = new ProcessBuilder(java, "-Xmx" + maxram + "M", "-Xms16M", "-jar", avuna.getAbsolutePath(), main.getAbsolutePath());
    // TODO: if we want to be able to pass std input/output/err, this would be the place
    builder.redirectErrorStream(true);
    this.process = builder.start();
    if (CLib.INSTANCE.seteuid(0) != 0) {
        log("[CRITICAL] setuid C call failed! @ " + id + ", the VHost was loaded, but we were NOT able to re-escalate!");
        return false;
    }
    if (CLib.INSTANCE.setegid(0) != 0) {
        log("[CRITICAL] setgid C call failed! @ " + id + ", the VHost was loaded, but we were NOT able to re-escalate!");
        return false;
    }
    return true;
}
Run Code Online (Sandbox Code Playgroud)

Jav*_*het 0

我按照布莱恩的建议做了,并使用另一个进程来setuid,然后执行我的东西。