2021-01-09 15:21:45 +03:00
|
|
|
#include "mold.h"
|
|
|
|
|
2021-01-15 13:56:52 +03:00
|
|
|
#include <openssl/sha.h>
|
2021-01-27 09:28:41 +03:00
|
|
|
#include <sys/signal.h>
|
2021-01-09 15:21:45 +03:00
|
|
|
#include <sys/socket.h>
|
2021-01-09 16:57:43 +03:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2021-01-09 15:21:45 +03:00
|
|
|
#include <sys/un.h>
|
2021-01-27 09:20:46 +03:00
|
|
|
#include <sys/wait.h>
|
2021-01-09 15:21:45 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#define DAEMON_TIMEOUT 30
|
|
|
|
|
|
|
|
// Exiting from a program with large memory usage is slow --
|
|
|
|
// it may take a few hundred milliseconds. To hide the latency,
|
|
|
|
// we fork a child and let it do the actual linking work.
|
|
|
|
std::function<void()> fork_child() {
|
|
|
|
int pipefd[2];
|
|
|
|
if (pipe(pipefd) == -1) {
|
|
|
|
perror("pipe");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid == -1) {
|
|
|
|
perror("fork");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid > 0) {
|
|
|
|
// Parent
|
|
|
|
close(pipefd[1]);
|
2021-01-27 09:20:46 +03:00
|
|
|
if (read(pipefd[0], (char[1]){}, 1) == 1)
|
|
|
|
_exit(0);
|
|
|
|
|
|
|
|
int status;
|
|
|
|
waitpid(pid, &status, 0);
|
|
|
|
|
|
|
|
if (WIFEXITED(status))
|
|
|
|
_exit(WEXITSTATUS(status));
|
|
|
|
if (WIFSIGNALED(status))
|
2021-01-27 09:28:41 +03:00
|
|
|
raise(WTERMSIG(status));
|
2021-01-27 09:20:46 +03:00
|
|
|
_exit(1);
|
2021-01-09 15:21:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Child
|
|
|
|
close(pipefd[0]);
|
|
|
|
return [=]() { write(pipefd[1], (char []){1}, 1); };
|
|
|
|
}
|
|
|
|
|
2021-01-15 18:38:38 +03:00
|
|
|
static std::string base64(u8 *data, u64 size) {
|
2021-01-15 13:48:44 +03:00
|
|
|
static const char chars[] =
|
2021-01-09 15:30:41 +03:00
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+_";
|
2021-01-09 15:21:45 +03:00
|
|
|
|
2021-01-15 18:38:38 +03:00
|
|
|
std::ostringstream out;
|
2021-01-15 13:48:44 +03:00
|
|
|
|
|
|
|
auto encode = [&](u32 x) {
|
2021-01-15 18:38:38 +03:00
|
|
|
out << chars[x & 0b111111]
|
|
|
|
<< chars[(x >> 6) & 0b111111]
|
|
|
|
<< chars[(x >> 12) & 0b111111]
|
|
|
|
<< chars[(x >> 18) & 0b111111];
|
2021-01-15 13:48:44 +03:00
|
|
|
};
|
|
|
|
|
2021-01-24 06:01:43 +03:00
|
|
|
i64 i = 0;
|
2021-01-15 18:38:38 +03:00
|
|
|
for (; i < size - 3; i += 3)
|
|
|
|
encode((data[i + 2] << 16) | (data[i + 1] << 8) | data[i]);
|
|
|
|
|
|
|
|
if (i == size - 1)
|
|
|
|
encode(data[i]);
|
|
|
|
else if (i == size - 2)
|
|
|
|
encode((data[i + 1] << 8) | data[i]);
|
|
|
|
return out.str();
|
2021-01-09 15:21:45 +03:00
|
|
|
}
|
|
|
|
|
2021-01-15 18:38:38 +03:00
|
|
|
static std::string compute_sha256(char **argv) {
|
|
|
|
SHA256_CTX ctx;
|
|
|
|
SHA256_Init(&ctx);
|
2021-01-15 13:56:52 +03:00
|
|
|
|
2021-01-24 06:01:43 +03:00
|
|
|
for (i64 i = 0; argv[i]; i++)
|
2021-01-15 13:48:44 +03:00
|
|
|
if (!strcmp(argv[i], "-preload") && !strcmp(argv[i], "--preload"))
|
2021-01-15 18:38:38 +03:00
|
|
|
SHA256_Update(&ctx, argv[i], strlen(argv[i]) + 1);
|
2021-01-15 13:48:44 +03:00
|
|
|
|
2021-01-15 18:38:38 +03:00
|
|
|
u8 digest[SHA256_SIZE];
|
|
|
|
SHA256_Final(digest, &ctx);
|
|
|
|
return base64(digest, SHA256_SIZE);
|
2021-01-15 13:48:44 +03:00
|
|
|
}
|
|
|
|
|
2021-01-24 06:01:43 +03:00
|
|
|
static void send_fd(i64 conn, i64 fd) {
|
2021-01-09 15:21:45 +03:00
|
|
|
struct iovec iov;
|
|
|
|
char dummy = '1';
|
|
|
|
iov.iov_base = &dummy;
|
|
|
|
iov.iov_len = 1;
|
|
|
|
|
2021-01-09 17:13:38 +03:00
|
|
|
struct msghdr msg = {};
|
2021-01-09 15:21:45 +03:00
|
|
|
msg.msg_iov = &iov;
|
|
|
|
msg.msg_iovlen = 1;
|
|
|
|
|
|
|
|
char buf[CMSG_SPACE(sizeof(int))];
|
|
|
|
msg.msg_control = buf;
|
|
|
|
msg.msg_controllen = CMSG_LEN(sizeof(int));
|
|
|
|
|
|
|
|
struct cmsghdr *cmsg = CMSG_FIRSTHDR(&msg);
|
|
|
|
cmsg->cmsg_level = SOL_SOCKET;
|
|
|
|
cmsg->cmsg_type = SCM_RIGHTS;
|
|
|
|
cmsg->cmsg_len = CMSG_LEN(sizeof(int));
|
|
|
|
*(int *)CMSG_DATA(cmsg) = fd;
|
|
|
|
|
|
|
|
if (sendmsg(conn, &msg, 0) == -1)
|
|
|
|
Error() << "sendmsg failed: " << strerror(errno);
|
|
|
|
}
|
|
|
|
|
2021-01-24 06:01:43 +03:00
|
|
|
static i64 recv_fd(i64 conn) {
|
2021-01-09 15:21:45 +03:00
|
|
|
struct iovec iov;
|
|
|
|
char buf[1];
|
|
|
|
iov.iov_base = buf;
|
|
|
|
iov.iov_len = sizeof(buf);
|
|
|
|
|
2021-01-09 17:13:38 +03:00
|
|
|
struct msghdr msg = {};
|
2021-01-09 15:21:45 +03:00
|
|
|
msg.msg_iov = &iov;
|
|
|
|
msg.msg_iovlen = 1;
|
|
|
|
|
|
|
|
char cmsgbuf[CMSG_SPACE(sizeof(int))];
|
|
|
|
msg.msg_control = (caddr_t)cmsgbuf;
|
|
|
|
msg.msg_controllen = sizeof(cmsgbuf);
|
|
|
|
|
2021-01-24 06:01:43 +03:00
|
|
|
i64 len = recvmsg(conn, &msg, 0);
|
2021-01-09 15:21:45 +03:00
|
|
|
if (len <= 0)
|
|
|
|
Error() << "recvmsg failed: " << strerror(errno);
|
|
|
|
|
|
|
|
struct cmsghdr *cmsg;
|
|
|
|
cmsg = CMSG_FIRSTHDR(&msg);
|
|
|
|
return *(int *)CMSG_DATA(cmsg);
|
|
|
|
}
|
|
|
|
|
2021-01-24 06:01:43 +03:00
|
|
|
bool resume_daemon(char **argv, i64 *code) {
|
|
|
|
i64 conn = socket(AF_UNIX, SOCK_STREAM, 0);
|
2021-01-09 15:21:45 +03:00
|
|
|
if (conn == -1)
|
|
|
|
Error() << "socket failed: " << strerror(errno);
|
|
|
|
|
2021-01-15 18:38:38 +03:00
|
|
|
std::string path = "/tmp/mold-" + compute_sha256(argv);
|
2021-01-09 15:21:45 +03:00
|
|
|
|
2021-01-09 17:13:38 +03:00
|
|
|
struct sockaddr_un name = {};
|
2021-01-09 15:21:45 +03:00
|
|
|
name.sun_family = AF_UNIX;
|
|
|
|
memcpy(name.sun_path, path.data(), path.size());
|
|
|
|
|
|
|
|
if (connect(conn, (struct sockaddr *)&name, sizeof(name)) != 0) {
|
|
|
|
close(conn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
send_fd(conn, STDOUT_FILENO);
|
|
|
|
send_fd(conn, STDERR_FILENO);
|
2021-01-24 06:01:43 +03:00
|
|
|
i64 r = read(conn, (char[1]){}, 1);
|
2021-01-09 15:21:45 +03:00
|
|
|
*code = (r != 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void daemonize(char **argv, std::function<void()> *wait_for_client,
|
|
|
|
std::function<void()> *on_complete) {
|
|
|
|
if (daemon(1, 0) == -1)
|
|
|
|
Error() << "daemon failed: " << strerror(errno);
|
|
|
|
|
2021-01-24 06:01:43 +03:00
|
|
|
i64 sock = socket(AF_UNIX, SOCK_STREAM, 0);
|
2021-01-09 15:21:45 +03:00
|
|
|
if (sock == -1)
|
|
|
|
Error() << "socket failed: " << strerror(errno);
|
|
|
|
|
2021-01-15 18:38:38 +03:00
|
|
|
socket_tmpfile = strdup(("/tmp/mold-" + compute_sha256(argv)).c_str());
|
2021-01-09 15:21:45 +03:00
|
|
|
|
2021-01-09 17:13:38 +03:00
|
|
|
struct sockaddr_un name = {};
|
2021-01-09 15:21:45 +03:00
|
|
|
name.sun_family = AF_UNIX;
|
|
|
|
strcpy(name.sun_path, socket_tmpfile);
|
|
|
|
|
2021-01-09 16:57:43 +03:00
|
|
|
u32 orig_mask = umask(0177);
|
|
|
|
|
2021-01-09 15:21:45 +03:00
|
|
|
if (bind(sock, (struct sockaddr *)&name, sizeof(name)) == -1) {
|
|
|
|
if (errno != EADDRINUSE)
|
|
|
|
Error() << "bind failed: " << strerror(errno);
|
|
|
|
|
|
|
|
unlink(socket_tmpfile);
|
|
|
|
if (bind(sock, (struct sockaddr *)&name, sizeof(name)) == -1)
|
|
|
|
Error() << "bind failed: " << strerror(errno);
|
|
|
|
}
|
|
|
|
|
2021-01-09 16:57:43 +03:00
|
|
|
umask(orig_mask);
|
|
|
|
|
2021-01-09 15:21:45 +03:00
|
|
|
if (listen(sock, 0) == -1)
|
|
|
|
Error() << "listen failed: " << strerror(errno);
|
|
|
|
|
2021-01-24 06:01:43 +03:00
|
|
|
static i64 conn = -1;
|
2021-01-09 15:21:45 +03:00
|
|
|
|
|
|
|
*wait_for_client = [=]() {
|
|
|
|
fd_set rfds;
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_SET(sock, &rfds);
|
|
|
|
|
|
|
|
struct timeval tv;
|
|
|
|
tv.tv_sec = DAEMON_TIMEOUT;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
2021-01-24 06:01:43 +03:00
|
|
|
i64 res = select(sock + 1, &rfds, NULL, NULL, &tv);
|
2021-01-09 15:21:45 +03:00
|
|
|
if (res == -1)
|
|
|
|
Error() << "select failed: " << strerror(errno);
|
|
|
|
|
|
|
|
if (res == 0) {
|
|
|
|
std::cout << "timeout\n";
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
conn = accept(sock, NULL, NULL);
|
|
|
|
if (conn == -1)
|
|
|
|
Error() << "accept failed: " << strerror(errno);
|
|
|
|
unlink(socket_tmpfile);
|
2021-01-09 15:33:46 +03:00
|
|
|
|
|
|
|
dup2(recv_fd(conn), STDOUT_FILENO);
|
|
|
|
dup2(recv_fd(conn), STDERR_FILENO);
|
2021-01-09 15:21:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
*on_complete = [=]() { write(conn, (char []){1}, 1); };
|
|
|
|
}
|