700c240d37
This process should be started from user session (most likely qubes-session). New processes (of that user) will be created as children of that session making logind and such crap happy. This should also solve problems with EOF transmission (no additional "su" process) and prevent loading all the environment multiple times.
111 lines
3.0 KiB
C
111 lines
3.0 KiB
C
/*
|
|
* The Qubes OS Project, http://www.qubes-os.org
|
|
*
|
|
* Copyright (C) 2015 Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#define _GNU_SOURCE
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <signal.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/un.h>
|
|
#include "qrexec.h"
|
|
#include <libvchan.h>
|
|
#include "libqrexec-utils.h"
|
|
#include "qrexec-agent.h"
|
|
|
|
void do_exec(const char *cmd)
|
|
{
|
|
char buf[strlen(QUBES_RPC_MULTIPLEXER_PATH) + strlen(cmd) - strlen(RPC_REQUEST_COMMAND) + 1];
|
|
/* replace magic RPC cmd with RPC multiplexer path */
|
|
if (strncmp(cmd, RPC_REQUEST_COMMAND " ", strlen(RPC_REQUEST_COMMAND)+1)==0) {
|
|
strcpy(buf, QUBES_RPC_MULTIPLEXER_PATH);
|
|
strcpy(buf + strlen(QUBES_RPC_MULTIPLEXER_PATH), cmd + strlen(RPC_REQUEST_COMMAND));
|
|
cmd = buf;
|
|
}
|
|
signal(SIGCHLD, SIG_DFL);
|
|
signal(SIGPIPE, SIG_DFL);
|
|
|
|
execl("/bin/sh", "sh", "-c", cmd, NULL);
|
|
perror("execl");
|
|
exit(1);
|
|
}
|
|
|
|
void handle_vchan_error(const char *op)
|
|
{
|
|
fprintf(stderr, "Error while vchan %s, exiting\n", op);
|
|
exit(1);
|
|
}
|
|
|
|
void handle_single_command(int fd, struct qrexec_cmd_info *info) {
|
|
char cmdline[info->cmdline_len+1];
|
|
|
|
if (!read_all(fd, cmdline, info->cmdline_len))
|
|
return;
|
|
cmdline[info->cmdline_len] = 0;
|
|
|
|
handle_new_process(info->type, info->connect_domain,
|
|
info->connect_port,
|
|
cmdline, info->cmdline_len);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
int s, fd;
|
|
char *socket_path;
|
|
struct qrexec_cmd_info info;
|
|
struct sockaddr_un peer;
|
|
unsigned int addrlen;
|
|
|
|
|
|
if (argc == 2) {
|
|
socket_path = argv[1];
|
|
} else if (argc == 1) {
|
|
/* this will be leaked, but we don't care as the process will then terminate */
|
|
if (asprintf(&socket_path, QREXEC_FORK_SERVER_SOCKET, getenv("USER")) < 0) {
|
|
fprintf(stderr, "Memory allocation failed\n");
|
|
exit(1);
|
|
}
|
|
} else {
|
|
fprintf(stderr, "Usage: %s [socket path]\n", argv[0]);
|
|
exit(1);
|
|
}
|
|
|
|
s = get_server_socket(socket_path);
|
|
if (fcntl(s, F_SETFD, O_CLOEXEC) < 0) {
|
|
perror("fcntl");
|
|
exit(1);
|
|
}
|
|
signal(SIGCHLD, SIG_IGN);
|
|
register_exec_func(do_exec);
|
|
|
|
while ((fd = accept(s, (struct sockaddr *) &peer, &addrlen)) >= 0) {
|
|
if (read_all(fd, &info, sizeof(info))) {
|
|
handle_single_command(fd, &info);
|
|
}
|
|
close(fd);
|
|
addrlen = sizeof(peer);
|
|
}
|
|
close(s);
|
|
unlink(socket_path);
|
|
return 0;
|
|
}
|