2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2009-09-02 16:38:35 +00:00
|
|
|
#include <login_cap.h>
|
|
|
|
#include <pwd.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <string.h>
|
2009-07-14 06:59:06 +00:00
|
|
|
#include <time.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
int server_lock_callback(void *, const char *);
|
|
|
|
|
2009-08-08 21:52:43 +00:00
|
|
|
void
|
|
|
|
server_fill_environ(struct session *s, struct environ *env)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2009-08-08 21:52:43 +00:00
|
|
|
char tmuxvar[MAXPATHLEN], *term;
|
|
|
|
u_int idx;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
if (session_index(s, &idx) != 0)
|
|
|
|
fatalx("session not found");
|
|
|
|
xsnprintf(tmuxvar, sizeof tmuxvar,
|
2009-08-08 21:52:43 +00:00
|
|
|
"%s,%ld,%u", socket_path, (long) getpid(), idx);
|
|
|
|
environ_set(env, "TMUX", tmuxvar);
|
2009-07-10 05:50:54 +00:00
|
|
|
|
2009-08-08 21:52:43 +00:00
|
|
|
term = options_get_string(&s->options, "default-terminal");
|
|
|
|
environ_set(env, "TERM", term);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-07-26 12:58:44 +00:00
|
|
|
void
|
|
|
|
server_write_error(struct client *c, const char *msg)
|
|
|
|
{
|
|
|
|
struct msg_print_data printdata;
|
|
|
|
|
|
|
|
strlcpy(printdata.msg, msg, sizeof printdata.msg);
|
|
|
|
server_write_client(c, MSG_ERROR, &printdata, sizeof printdata);
|
|
|
|
}
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
void
|
|
|
|
server_write_client(
|
2009-07-29 14:17:26 +00:00
|
|
|
struct client *c, enum msgtype type, const void *buf, size_t len)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2009-08-11 17:18:35 +00:00
|
|
|
struct imsgbuf *ibuf = &c->ibuf;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-08-07 15:39:10 +00:00
|
|
|
if (c->flags & CLIENT_BAD)
|
|
|
|
return;
|
2009-08-11 17:18:35 +00:00
|
|
|
log_debug("writing %d to client %d", type, c->ibuf.fd);
|
|
|
|
imsg_compose(ibuf, type, PROTOCOL_VERSION, -1, -1, (void *) buf, len);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_write_session(
|
2009-07-29 14:17:26 +00:00
|
|
|
struct session *s, enum msgtype type, const void *buf, size_t len)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session == NULL)
|
|
|
|
continue;
|
|
|
|
if (c->session == s)
|
|
|
|
server_write_client(c, type, buf, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_redraw_client(struct client *c)
|
|
|
|
{
|
|
|
|
c->flags |= CLIENT_REDRAW;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_status_client(struct client *c)
|
|
|
|
{
|
|
|
|
c->flags |= CLIENT_STATUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_redraw_session(struct session *s)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session == NULL)
|
|
|
|
continue;
|
|
|
|
if (c->session == s)
|
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_status_session(struct session *s)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session == NULL)
|
|
|
|
continue;
|
|
|
|
if (c->session == s)
|
|
|
|
server_status_client(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_redraw_window(struct window *w)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session == NULL)
|
|
|
|
continue;
|
|
|
|
if (c->session->curw->window == w)
|
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
|
|
|
w->flags |= WINDOW_REDRAW;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_status_window(struct window *w)
|
|
|
|
{
|
|
|
|
struct session *s;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is slightly different. We want to redraw the status line of any
|
|
|
|
* clients containing this window rather than any where it is the
|
|
|
|
* current window.
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
s = ARRAY_ITEM(&sessions, i);
|
|
|
|
if (s != NULL && session_has(s, w))
|
|
|
|
server_status_session(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_lock(void)
|
|
|
|
{
|
2009-09-02 16:38:35 +00:00
|
|
|
struct client *c;
|
|
|
|
static struct passwd *pw, pwstore;
|
|
|
|
static char pwbuf[_PW_BUF_LEN];
|
|
|
|
u_int i;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
if (server_locked)
|
|
|
|
return;
|
|
|
|
|
2009-09-02 16:38:35 +00:00
|
|
|
if (getpwuid_r(getuid(), &pwstore, pwbuf, sizeof pwbuf, &pw) != 0) {
|
|
|
|
server_locked_pw = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
server_locked_pw = pw;
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
status_prompt_clear(c);
|
2009-07-17 06:13:27 +00:00
|
|
|
status_prompt_set(c,
|
2009-09-01 09:11:05 +00:00
|
|
|
"Password:", server_lock_callback, NULL, c, PROMPT_HIDDEN);
|
2009-06-01 22:58:49 +00:00
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
2009-09-02 16:38:35 +00:00
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
server_locked = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
server_lock_callback(unused void *data, const char *s)
|
|
|
|
{
|
|
|
|
return (server_unlock(s));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
server_unlock(const char *s)
|
|
|
|
{
|
|
|
|
struct client *c;
|
2009-09-02 16:38:35 +00:00
|
|
|
login_cap_t *lc;
|
2009-06-01 22:58:49 +00:00
|
|
|
u_int i;
|
|
|
|
char *out;
|
2009-09-02 16:38:35 +00:00
|
|
|
u_int failures, tries, backoff;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-09-02 16:38:35 +00:00
|
|
|
if (!server_locked || server_locked_pw == NULL)
|
2009-06-01 22:58:49 +00:00
|
|
|
return (0);
|
|
|
|
server_activity = time(NULL);
|
2009-09-02 16:38:35 +00:00
|
|
|
if (server_activity < password_backoff)
|
|
|
|
return (-2);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
if (server_password != NULL) {
|
|
|
|
if (s == NULL)
|
|
|
|
return (-1);
|
|
|
|
out = crypt(s, server_password);
|
|
|
|
if (strcmp(out, server_password) != 0)
|
|
|
|
goto wrong;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
status_prompt_clear(c);
|
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
server_locked = 0;
|
2009-07-20 14:37:51 +00:00
|
|
|
password_failures = 0;
|
2009-09-02 16:38:35 +00:00
|
|
|
password_backoff = 0;
|
2009-06-01 22:58:49 +00:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
wrong:
|
2009-07-20 14:37:51 +00:00
|
|
|
password_failures++;
|
2009-09-05 17:42:16 +00:00
|
|
|
password_backoff = 0;
|
2009-09-02 16:38:35 +00:00
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
2009-07-26 12:58:44 +00:00
|
|
|
if (c == NULL || c->prompt_buffer == NULL)
|
2009-06-01 22:58:49 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
*c->prompt_buffer = '\0';
|
|
|
|
c->prompt_index = 0;
|
2009-07-20 14:37:51 +00:00
|
|
|
server_redraw_client(c);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2009-09-02 16:38:35 +00:00
|
|
|
/*
|
|
|
|
* Start slowing down after "login-backoff" attempts and reset every
|
|
|
|
* "login-tries" attempts.
|
|
|
|
*/
|
|
|
|
lc = login_getclass(server_locked_pw->pw_class);
|
|
|
|
if (lc != NULL) {
|
|
|
|
tries = login_getcapnum(lc, (char *) "login-tries", 10, 10);
|
|
|
|
backoff = login_getcapnum(lc, (char *) "login-backoff", 3, 3);
|
|
|
|
} else {
|
|
|
|
tries = 10;
|
|
|
|
backoff = 3;
|
|
|
|
}
|
|
|
|
failures = password_failures % tries;
|
|
|
|
if (failures > backoff) {
|
2009-09-05 17:42:16 +00:00
|
|
|
password_backoff =
|
|
|
|
server_activity + ((failures - backoff) * tries / 2);
|
2009-09-02 16:38:35 +00:00
|
|
|
return (-2);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2009-07-17 20:37:03 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
server_kill_window(struct window *w)
|
|
|
|
{
|
|
|
|
struct session *s;
|
|
|
|
struct winlink *wl;
|
2009-09-12 13:01:19 +00:00
|
|
|
u_int i;
|
2009-07-17 20:37:03 +00:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
|
|
|
|
s = ARRAY_ITEM(&sessions, i);
|
|
|
|
if (s == NULL || !session_has(s, w))
|
|
|
|
continue;
|
|
|
|
if ((wl = winlink_find_by_window(&s->windows, w)) == NULL)
|
|
|
|
continue;
|
|
|
|
|
2009-09-12 13:01:19 +00:00
|
|
|
if (session_detach(s, wl))
|
|
|
|
server_destroy_session(s);
|
|
|
|
else
|
|
|
|
server_redraw_session(s);
|
2009-07-17 20:37:03 +00:00
|
|
|
}
|
2009-09-20 17:27:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
server_link_window(
|
|
|
|
struct winlink *srcwl, struct session *dst, int dstidx,
|
|
|
|
int killflag, int selectflag, char **cause)
|
|
|
|
{
|
|
|
|
struct winlink *dstwl;
|
|
|
|
|
|
|
|
dstwl = NULL;
|
|
|
|
if (dstidx != -1)
|
|
|
|
dstwl = winlink_find_by_index(&dst->windows, dstidx);
|
|
|
|
if (dstwl != NULL) {
|
|
|
|
if (dstwl->window == srcwl->window)
|
|
|
|
return (0);
|
|
|
|
if (killflag) {
|
|
|
|
/*
|
|
|
|
* Can't use session_detach as it will destroy session
|
|
|
|
* if this makes it empty.
|
|
|
|
*/
|
|
|
|
session_alert_cancel(dst, dstwl);
|
|
|
|
winlink_stack_remove(&dst->lastw, dstwl);
|
|
|
|
winlink_remove(&dst->windows, dstwl);
|
|
|
|
|
|
|
|
/* Force select/redraw if current. */
|
|
|
|
if (dstwl == dst->curw)
|
|
|
|
selectflag = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dstidx == -1)
|
|
|
|
dstidx = -1 - options_get_number(&dst->options, "base-index");
|
|
|
|
dstwl = session_attach(dst, srcwl->window, dstidx, cause);
|
|
|
|
if (dstwl == NULL)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (!selectflag)
|
|
|
|
server_status_session(dst);
|
|
|
|
else {
|
|
|
|
session_select(dst, dstwl->idx);
|
|
|
|
server_redraw_session(dst);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_unlink_window(struct session *s, struct winlink *wl)
|
|
|
|
{
|
|
|
|
if (session_detach(s, wl))
|
|
|
|
server_destroy_session(s);
|
|
|
|
else
|
|
|
|
server_redraw_session(s);
|
2009-07-17 20:37:03 +00:00
|
|
|
}
|
2009-08-31 20:46:19 +00:00
|
|
|
|
2009-09-12 13:01:19 +00:00
|
|
|
void
|
|
|
|
server_destroy_session(struct session *s)
|
|
|
|
{
|
|
|
|
struct client *c;
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session != s)
|
|
|
|
continue;
|
|
|
|
c->session = NULL;
|
|
|
|
server_write_client(c, MSG_EXIT, NULL, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-31 20:46:19 +00:00
|
|
|
void
|
|
|
|
server_set_identify(struct client *c)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
int delay;
|
|
|
|
|
|
|
|
delay = options_get_number(&c->session->options, "display-panes-time");
|
|
|
|
tv.tv_sec = delay / 1000;
|
|
|
|
tv.tv_usec = (delay % 1000) * 1000L;
|
|
|
|
|
|
|
|
if (gettimeofday(&c->identify_timer, NULL) != 0)
|
2009-09-20 14:58:12 +00:00
|
|
|
fatal("gettimeofday failed");
|
2009-08-31 20:46:19 +00:00
|
|
|
timeradd(&c->identify_timer, &tv, &c->identify_timer);
|
|
|
|
|
|
|
|
c->flags |= CLIENT_IDENTIFY;
|
|
|
|
c->tty.flags |= (TTY_FREEZE|TTY_NOCURSOR);
|
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
server_clear_identify(struct client *c)
|
|
|
|
{
|
|
|
|
if (c->flags & CLIENT_IDENTIFY) {
|
|
|
|
c->flags &= ~CLIENT_IDENTIFY;
|
|
|
|
c->tty.flags &= ~(TTY_FREEZE|TTY_NOCURSOR);
|
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
|
|
|
}
|