mirror of
https://github.com/tmate-io/tmate-ssh-server.git
synced 2020-11-18 19:53:51 -08:00
441 lines
10 KiB
C
441 lines
10 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <libssh/libssh.h>
|
|
#include <sys/stat.h>
|
|
#include <errno.h>
|
|
#include <grp.h>
|
|
#include <pwd.h>
|
|
#include <unistd.h>
|
|
#ifdef HAVE_CURSES_H
|
|
#include <curses.h>
|
|
#else
|
|
#include <ncurses.h>
|
|
#endif
|
|
#include <term.h>
|
|
#include <time.h>
|
|
#include <fcntl.h>
|
|
#include "tmate.h"
|
|
|
|
int tmate_port = TMATE_DEFAULT_PORT;
|
|
struct tmate_encoder *tmate_encoder;
|
|
int tmux_socket_fd;
|
|
const char *tmate_session_token = "main";
|
|
const char *tmate_session_token_ro = "ro-main";
|
|
|
|
#ifdef TMATE_RECORD_REPLAY
|
|
int tmate_session_log_fd;
|
|
static void tmate_replay_slave_server(const char *replay_file);
|
|
#endif
|
|
|
|
static char *log_path; /* NULL means stderr */
|
|
static char *cmdline;
|
|
static char *cmdline_end;
|
|
static int dev_urandom_fd;
|
|
|
|
extern FILE *log_file;
|
|
extern int server_create_socket(void);
|
|
extern int client_connect(char *path, int start_server);
|
|
|
|
static void usage(void)
|
|
{
|
|
fprintf(stderr, "usage: tmate-slave [-k keys_dir] [-l logfile] [-p PORT] [-r logfile] [-v]\n");
|
|
}
|
|
|
|
void tmate_reopen_logfile(void)
|
|
{
|
|
log_open(debug_level, log_path);
|
|
}
|
|
|
|
void tmate_get_random_bytes(void *buffer, ssize_t len)
|
|
{
|
|
if (read(dev_urandom_fd, buffer, len) != len)
|
|
tmate_fatal("Cannot read from /dev/urandom");
|
|
}
|
|
|
|
long tmate_get_random_long(void)
|
|
{
|
|
long val;
|
|
tmate_get_random_bytes(&val, sizeof(val));
|
|
return val;
|
|
}
|
|
|
|
int main(int argc, char **argv, char **envp)
|
|
{
|
|
int opt;
|
|
const char *keys_dir = "keys";
|
|
#ifdef TMATE_RECORD_REPLAY
|
|
const char *replay_file = NULL;
|
|
#endif
|
|
|
|
while ((opt = getopt(argc, argv, "p:l:vk:r:")) != -1) {
|
|
switch (opt) {
|
|
case 'p':
|
|
tmate_port = atoi(optarg);
|
|
break;
|
|
case 'l':
|
|
log_path = optarg;
|
|
break;
|
|
case 'k':
|
|
keys_dir = optarg;
|
|
break;
|
|
case 'v':
|
|
debug_level++;
|
|
break;
|
|
case 'r':
|
|
#ifdef TMATE_RECORD_REPLAY
|
|
replay_file = optarg;
|
|
#else
|
|
fprintf(stderr, "Record/Replay not enabled\n");
|
|
#endif
|
|
break;
|
|
default:
|
|
usage();
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
cmdline = *argv;
|
|
cmdline_end = *envp;
|
|
|
|
tmate_reopen_logfile();
|
|
|
|
tmate_preload_trace_lib();
|
|
|
|
if ((dev_urandom_fd = open("/dev/urandom", O_RDONLY)) < 0)
|
|
tmate_fatal("Cannot open /dev/urandom");
|
|
|
|
#ifdef TMATE_RECORD_REPLAY
|
|
if (replay_file) {
|
|
tmate_replay_slave_server(replay_file);
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
if ((mkdir(TMATE_WORKDIR, 0700) < 0 && errno != EEXIST) ||
|
|
(mkdir(TMATE_WORKDIR "/sessions", 0700) < 0 && errno != EEXIST) ||
|
|
(mkdir(TMATE_WORKDIR "/jail", 0700) < 0 && errno != EEXIST))
|
|
tmate_fatal("Cannot prepare session in " TMATE_WORKDIR);
|
|
|
|
tmate_ssh_server_main(keys_dir, tmate_port);
|
|
return 0;
|
|
}
|
|
|
|
static char tmate_token_digits[] = "abcdefghijklmnopqrstuvwxyz"
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
"0123456789";
|
|
#define NUM_DIGITS (sizeof(tmate_token_digits) - 1)
|
|
|
|
static char *get_random_token(void)
|
|
{
|
|
int i;
|
|
char *token = xmalloc(TMATE_TOKEN_LEN + 1);
|
|
|
|
tmate_get_random_bytes(token, TMATE_TOKEN_LEN);
|
|
for (i = 0; i < TMATE_TOKEN_LEN; i++)
|
|
token[i] = tmate_token_digits[token[i] % NUM_DIGITS];
|
|
token[i] = 0;
|
|
|
|
return token;
|
|
}
|
|
|
|
static void set_session_token(struct tmate_ssh_client *client,
|
|
const char *token)
|
|
{
|
|
tmate_session_token = xstrdup(token);
|
|
strcpy(socket_path, TMATE_WORKDIR "/sessions/");
|
|
strcat(socket_path, token);
|
|
|
|
memset(cmdline, 0, cmdline_end - cmdline);
|
|
sprintf(cmdline, "tmate-slave [%s] %s %s",
|
|
tmate_session_token,
|
|
client->role == TMATE_ROLE_SERVER ? "(server)" : "(client)",
|
|
client->ip_address);
|
|
}
|
|
static void create_session_ro_symlink(void)
|
|
{
|
|
char session_ro_path[MAXPATHLEN];
|
|
|
|
tmate_session_token_ro = get_random_token();
|
|
#ifdef DEVENV
|
|
strcpy((char *)tmate_session_token_ro, "READONLYTOKENFORDEVENV000");
|
|
#endif
|
|
|
|
strcpy(session_ro_path, TMATE_WORKDIR "/sessions/");
|
|
strcat(session_ro_path, tmate_session_token_ro);
|
|
|
|
unlink(session_ro_path);
|
|
if (symlink(tmate_session_token, session_ro_path) < 0)
|
|
tmate_fatal("Cannot create read-only symlink");
|
|
}
|
|
|
|
static int validate_token(const char *token)
|
|
{
|
|
int len = strlen(token);
|
|
int i;
|
|
|
|
if (len != TMATE_TOKEN_LEN)
|
|
return -1;
|
|
|
|
for (i = 0; i < len; i++) {
|
|
if (!strchr(tmate_token_digits, token[i]))
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void random_sleep(void)
|
|
{
|
|
struct timespec ts;
|
|
ts.tv_sec = 0;
|
|
ts.tv_nsec = 50000000 + (tmate_get_random_long() % 150000000);
|
|
nanosleep(&ts, NULL);
|
|
}
|
|
|
|
static void ssh_echo(struct tmate_ssh_client *ssh_client,
|
|
const char *str)
|
|
{
|
|
ssh_channel_write(ssh_client->channel, str, strlen(str));
|
|
}
|
|
|
|
#define BAD_TOKEN_ERROR_STR \
|
|
" " "\r\n" \
|
|
" Dear guest," "\r\n" \
|
|
" " "\r\n" \
|
|
" There isn't much I can do without a valid session token." "\r\n" \
|
|
" Feel free to reach out if you are having issues." "\r\n" \
|
|
" " "\r\n" \
|
|
" Thanks," "\r\n" \
|
|
" Nico" "\r\n" \
|
|
" " "\r\n"
|
|
|
|
#define EXPIRED_TOKEN_ERROR_STR \
|
|
" " "\r\n" \
|
|
" Dear guest," "\r\n" \
|
|
" " "\r\n" \
|
|
" The provided session token is invalid, or has expired." "\r\n" \
|
|
" Feel free to reach out if you are having issues." "\r\n" \
|
|
" " "\r\n" \
|
|
" Thanks," "\r\n" \
|
|
" Nico" "\r\n" \
|
|
" " "\r\n"
|
|
|
|
static void close_fds_except(int *fd_to_preserve, int num_fds)
|
|
{
|
|
int fd, i, preserve;
|
|
|
|
for (fd = 0; fd < 1024; fd++) {
|
|
preserve = 0;
|
|
for (i = 0; i < num_fds; i++)
|
|
if (fd_to_preserve[i] == fd)
|
|
preserve = 1;
|
|
|
|
if (!preserve)
|
|
close(fd);
|
|
}
|
|
}
|
|
|
|
static void jail(void)
|
|
{
|
|
struct passwd *pw;
|
|
uid_t uid;
|
|
gid_t gid;
|
|
|
|
pw = getpwnam(TMATE_JAIL_USER);
|
|
if (!pw) {
|
|
tmate_fatal("Cannot get the /etc/passwd entry for %s",
|
|
TMATE_JAIL_USER);
|
|
}
|
|
uid = pw->pw_uid;
|
|
gid = pw->pw_gid;
|
|
|
|
/*
|
|
* We are already in a new PID namespace (from the server fork).
|
|
*/
|
|
|
|
if (chroot(TMATE_WORKDIR "/jail") < 0)
|
|
tmate_fatal("Cannot chroot()");
|
|
|
|
if (chdir("/") < 0)
|
|
tmate_fatal("Cannot chdir()");
|
|
|
|
if (setgroups(1, (gid_t[]){gid}) < 0)
|
|
tmate_fatal("Cannot setgroups()");
|
|
|
|
if (setresuid(uid, uid, uid) < 0)
|
|
tmate_fatal("Cannot setresuid()");
|
|
|
|
if (setresuid(gid, gid, gid) < 0)
|
|
tmate_fatal("Cannot setresgid()");
|
|
|
|
if (nice(1) < 0)
|
|
tmate_fatal("Cannot nice()");
|
|
|
|
tmate_debug("Dropped priviledges to %s (%d,%d)",
|
|
TMATE_JAIL_USER, uid, gid);
|
|
}
|
|
|
|
static void setup_ncurse(int fd, const char *name)
|
|
{
|
|
int error;
|
|
if (setupterm((char *)name, fd, &error) != OK)
|
|
tmate_fatal("Cannot setup terminal");
|
|
}
|
|
|
|
#ifdef TMATE_RECORD_REPLAY
|
|
static void tmate_replay_slave_server(const char *replay_file)
|
|
{
|
|
struct tmate_decoder decoder;
|
|
struct tmate_replayer replayer;
|
|
|
|
tmate_debug("Replaying slave server with %s", replay_file);
|
|
|
|
tmux_socket_fd = server_create_socket();
|
|
if (tmux_socket_fd < 0)
|
|
tmate_fatal("Cannot create to the tmux socket");
|
|
|
|
tmate_session_log_fd = open(replay_file, O_RDONLY);
|
|
if (tmate_session_log_fd < 0)
|
|
tmate_fatal("cannot open session-dump.log");
|
|
|
|
ev_base = osdep_event_init();
|
|
|
|
tmate_decoder_init(&decoder);
|
|
tmate_replayer_init(&replayer, &decoder, tmate_session_log_fd);
|
|
|
|
tmux_server_init(IDENTIFY_UTF8 | IDENTIFY_256COLOURS);
|
|
/* never reached */
|
|
}
|
|
#endif
|
|
|
|
static void tmate_spawn_slave_server(struct tmate_ssh_client *client)
|
|
{
|
|
char *token;
|
|
struct tmate_encoder encoder;
|
|
struct tmate_decoder decoder;
|
|
|
|
token = get_random_token();
|
|
#ifdef DEVENV
|
|
strcpy(token, "SUPERSECURETOKENFORDEVENV");
|
|
#endif
|
|
|
|
set_session_token(client, token);
|
|
free(token);
|
|
|
|
tmate_debug("Spawning slave server for %s", client->ip_address);
|
|
|
|
tmux_socket_fd = server_create_socket();
|
|
if (tmux_socket_fd < 0)
|
|
tmate_fatal("Cannot create to the tmux socket");
|
|
|
|
create_session_ro_symlink();
|
|
|
|
/*
|
|
* Needed to initialize the database used in tty-term.c.
|
|
* We won't have access to it once in the jail.
|
|
*/
|
|
setup_ncurse(STDOUT_FILENO, "screen-256color");
|
|
|
|
close_fds_except((int[]){tmux_socket_fd,
|
|
ssh_get_fd(client->session),
|
|
fileno(log_file)}, 3);
|
|
|
|
#ifdef TMATE_RECORD_REPLAY
|
|
tmate_session_log_fd = open("session-log.log",
|
|
O_CREAT | O_WRONLY | O_TRUNC, 0644);
|
|
if (tmate_session_log_fd < 0)
|
|
tmate_fatal("cannot open session-dump.log");
|
|
#endif
|
|
|
|
jail();
|
|
|
|
ev_base = osdep_event_init();
|
|
|
|
tmate_encoder_init(&encoder);
|
|
tmate_decoder_init(&decoder);
|
|
tmate_encoder = &encoder;
|
|
|
|
tmate_ssh_client_init(client, &encoder, &decoder);
|
|
|
|
tmux_server_init(IDENTIFY_UTF8 | IDENTIFY_256COLOURS);
|
|
/* never reached */
|
|
}
|
|
|
|
static void tmate_spawn_slave_client(struct tmate_ssh_client *client)
|
|
{
|
|
char *argv_rw[] = {(char *)"attach", NULL};
|
|
char *argv_ro[] = {(char *)"attach", (char *)"-r", NULL};
|
|
char **argv = argv_rw;
|
|
int argc = 1;
|
|
char *token = client->username;
|
|
struct stat fstat;
|
|
int slave_pty;
|
|
int ret;
|
|
|
|
/* the "ro-" part is just sugar, we don't care about it */
|
|
if (!memcmp("ro-", token, 3))
|
|
token += 3;
|
|
|
|
if (validate_token(token) < 0) {
|
|
ssh_echo(client, BAD_TOKEN_ERROR_STR);
|
|
tmate_fatal("Bad token");
|
|
}
|
|
|
|
set_session_token(client, token);
|
|
|
|
tmate_debug("Spawning slave client for %s", client->ip_address);
|
|
|
|
tmux_socket_fd = client_connect(socket_path, 0);
|
|
if (tmux_socket_fd < 0) {
|
|
random_sleep(); /* for timing attacks */
|
|
ssh_echo(client, EXPIRED_TOKEN_ERROR_STR);
|
|
tmate_fatal("Expired token");
|
|
}
|
|
|
|
/*
|
|
* If we are connecting through a symlink, it means that we are a
|
|
* readonly client.
|
|
* 1) We mark the client as CLIENT_READONLY on the server
|
|
* 2) We prevent any input (aside from the window size) to go through
|
|
* to the server.
|
|
*/
|
|
client->readonly = 0;
|
|
if (lstat(socket_path, &fstat) < 0)
|
|
tmate_fatal("Cannot fstat()");
|
|
if (S_ISLNK(fstat.st_mode)) {
|
|
client->readonly = 1;
|
|
argv = argv_ro;
|
|
argc = 2;
|
|
}
|
|
|
|
if (openpty(&client->pty, &slave_pty, NULL, NULL, NULL) < 0)
|
|
tmate_fatal("Cannot allocate pty");
|
|
|
|
dup2(slave_pty, STDIN_FILENO);
|
|
dup2(slave_pty, STDOUT_FILENO);
|
|
dup2(slave_pty, STDERR_FILENO);
|
|
|
|
setup_ncurse(slave_pty, "screen-256color");
|
|
close_fds_except((int[]){STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO,
|
|
tmux_socket_fd, ssh_get_fd(client->session),
|
|
client->pty, fileno(log_file)}, 7);
|
|
jail();
|
|
|
|
ev_base = osdep_event_init();
|
|
|
|
tmate_ssh_client_pty_init(client);
|
|
|
|
ret = client_main(argc, argv, IDENTIFY_UTF8 | IDENTIFY_256COLOURS);
|
|
tmate_flush_pty(client);
|
|
exit(ret);
|
|
}
|
|
|
|
void tmate_spawn_slave(struct tmate_ssh_client *client)
|
|
{
|
|
if (client->role == TMATE_ROLE_SERVER)
|
|
tmate_spawn_slave_server(client);
|
|
else
|
|
tmate_spawn_slave_client(client);
|
|
}
|