mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
70cb669a2f
I hate this, but I also kinda love this. It's very cursed. Please help. Co-authored-by: Alyssa Ross <hi@alyssa.is>
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
#include <fstream>
|
|
|
|
#include <spawn.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
const char LD_SO_CONF[] = R"(/lib
|
|
/lib/x86_64-linux-gnu
|
|
/lib64
|
|
/usr/lib
|
|
/usr/lib/x86_64-linux-gnu
|
|
/usr/lib64
|
|
/lib/i386-linux-gnu
|
|
/lib32
|
|
/usr/lib/i386-linux-gnu
|
|
/usr/lib32
|
|
/run/opengl-driver/lib
|
|
/run/opengl-driver-32/lib
|
|
)";
|
|
|
|
int main(int, const char *argv[]) {
|
|
std::ofstream ld_so_conf;
|
|
ld_so_conf.open("/etc/ld.so.conf");
|
|
ld_so_conf << LD_SO_CONF;
|
|
ld_so_conf.close();
|
|
if (!ld_so_conf) {
|
|
perror("Failed to generate ld.so.conf");
|
|
return 1;
|
|
}
|
|
|
|
int e;
|
|
pid_t pid;
|
|
const char *ldconfig_argv[] = {"/bin/ldconfig", NULL};
|
|
char *ldconfig_envp[] = {NULL};
|
|
if ((e = posix_spawn(&pid, ldconfig_argv[0], NULL, NULL,
|
|
(char *const *)ldconfig_argv, ldconfig_envp))) {
|
|
fprintf(stderr, "Failed to run ldconfig: %s\n", strerror(e));
|
|
return 1;
|
|
}
|
|
|
|
int status;
|
|
if (waitpid(pid, &status, 0) == -1) {
|
|
perror("Failed to wait for ldconfig");
|
|
return 1;
|
|
}
|
|
if (WIFEXITED(status)) {
|
|
if (WEXITSTATUS(status)) {
|
|
fprintf(stderr, "ldconfig exited %d\n", WEXITSTATUS(status));
|
|
return 1;
|
|
}
|
|
} else {
|
|
fprintf(stderr, "ldconfig killed by signal %d\n", WTERMSIG(status));
|
|
return 1;
|
|
}
|
|
|
|
argv[0] = "/init";
|
|
execv(argv[0], (char *const *)argv);
|
|
|
|
perror("Failed to exec stage 2 init");
|
|
return 1;
|
|
}
|