2008-06-02 18:08:17 +00:00
|
|
|
/* $Id: server-msg.c,v 1.44 2008-06-02 18:08:17 nicm Exp $ */
|
2007-09-26 10:35:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2007-11-27 19:23:34 +00:00
|
|
|
#include <errno.h>
|
2007-09-26 10:35:24 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
2007-10-03 21:31:07 +00:00
|
|
|
int server_msg_fn_command(struct hdr *, struct client *);
|
|
|
|
int server_msg_fn_identify(struct hdr *, struct client *);
|
|
|
|
int server_msg_fn_resize(struct hdr *, struct client *);
|
2007-11-27 20:01:30 +00:00
|
|
|
int server_msg_fn_exiting(struct hdr *, struct client *);
|
2007-10-03 21:31:07 +00:00
|
|
|
|
2007-11-20 18:11:37 +00:00
|
|
|
void printflike2 server_msg_fn_command_error(
|
|
|
|
struct cmd_ctx *, const char *, ...);
|
|
|
|
void printflike2 server_msg_fn_command_print(
|
|
|
|
struct cmd_ctx *, const char *, ...);
|
2007-09-26 10:35:24 +00:00
|
|
|
|
|
|
|
struct server_msg {
|
|
|
|
enum hdrtype type;
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
int (*fn)(struct hdr *, struct client *);
|
2007-09-26 10:35:24 +00:00
|
|
|
};
|
2007-10-03 09:17:00 +00:00
|
|
|
const struct server_msg server_msg_table[] = {
|
2007-10-03 21:31:07 +00:00
|
|
|
{ MSG_IDENTIFY, server_msg_fn_identify },
|
|
|
|
{ MSG_COMMAND, server_msg_fn_command },
|
|
|
|
{ MSG_RESIZE, server_msg_fn_resize },
|
2007-11-27 20:01:30 +00:00
|
|
|
{ MSG_EXITING, server_msg_fn_exiting }
|
2007-09-26 10:35:24 +00:00
|
|
|
};
|
|
|
|
#define NSERVERMSG (sizeof server_msg_table / sizeof server_msg_table[0])
|
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
int
|
2007-09-26 10:35:24 +00:00
|
|
|
server_msg_dispatch(struct client *c)
|
|
|
|
{
|
|
|
|
struct hdr hdr;
|
2007-10-03 09:17:00 +00:00
|
|
|
const struct server_msg *msg;
|
2007-09-26 10:35:24 +00:00
|
|
|
u_int i;
|
2007-09-26 13:43:15 +00:00
|
|
|
int n;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
if (BUFFER_USED(c->in) < sizeof hdr)
|
|
|
|
return (0);
|
|
|
|
memcpy(&hdr, BUFFER_OUT(c->in), sizeof hdr);
|
|
|
|
if (BUFFER_USED(c->in) < (sizeof hdr) + hdr.size)
|
|
|
|
return (0);
|
|
|
|
buffer_remove(c->in, sizeof hdr);
|
2007-12-06 09:46:23 +00:00
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
for (i = 0; i < NSERVERMSG; i++) {
|
|
|
|
msg = server_msg_table + i;
|
|
|
|
if (msg->type == hdr.type) {
|
|
|
|
if ((n = msg->fn(&hdr, c)) != 0)
|
|
|
|
return (n);
|
|
|
|
break;
|
|
|
|
}
|
2007-12-06 09:46:23 +00:00
|
|
|
}
|
2007-09-26 13:43:15 +00:00
|
|
|
if (i == NSERVERMSG)
|
|
|
|
fatalx("unexpected message");
|
2007-09-26 10:35:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-20 18:11:37 +00:00
|
|
|
void printflike2
|
2007-10-03 21:31:07 +00:00
|
|
|
server_msg_fn_command_error(struct cmd_ctx *ctx, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
char *msg;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
xvasprintf(&msg, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
2007-11-16 21:12:31 +00:00
|
|
|
server_write_client(ctx->cmdclient, MSG_ERROR, msg, strlen(msg));
|
2007-10-03 21:31:07 +00:00
|
|
|
xfree(msg);
|
|
|
|
}
|
|
|
|
|
2007-11-20 18:11:37 +00:00
|
|
|
void printflike2
|
2007-10-03 21:31:07 +00:00
|
|
|
server_msg_fn_command_print(struct cmd_ctx *ctx, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
char *msg;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
xvasprintf(&msg, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
2007-11-16 21:12:31 +00:00
|
|
|
server_write_client(ctx->cmdclient, MSG_PRINT, msg, strlen(msg));
|
2007-10-03 21:31:07 +00:00
|
|
|
xfree(msg);
|
|
|
|
}
|
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
int
|
2007-10-03 21:31:07 +00:00
|
|
|
server_msg_fn_command(struct hdr *hdr, struct client *c)
|
2007-09-26 10:35:24 +00:00
|
|
|
{
|
2007-10-03 21:31:07 +00:00
|
|
|
struct msg_command_data data;
|
|
|
|
struct cmd_ctx ctx;
|
|
|
|
struct cmd *cmd;
|
2007-11-16 21:31:03 +00:00
|
|
|
|
2007-10-03 21:31:07 +00:00
|
|
|
if (hdr->size < sizeof data)
|
|
|
|
fatalx("bad MSG_COMMAND size");
|
2007-10-03 12:34:16 +00:00
|
|
|
buffer_read(c->in, &data, sizeof data);
|
2007-09-26 10:35:24 +00:00
|
|
|
|
2007-10-03 21:31:07 +00:00
|
|
|
cmd = cmd_recv(c->in);
|
2007-10-04 22:04:01 +00:00
|
|
|
log_debug("got command %s from client %d", cmd->entry->name, c->fd);
|
2007-09-26 10:35:24 +00:00
|
|
|
|
2007-10-04 11:52:03 +00:00
|
|
|
ctx.error = server_msg_fn_command_error;
|
|
|
|
ctx.print = server_msg_fn_command_print;
|
|
|
|
|
2008-06-02 18:08:17 +00:00
|
|
|
ctx.curclient = NULL;
|
|
|
|
ctx.cursession = NULL;
|
|
|
|
ctx.msgdata = &data;
|
|
|
|
|
2007-11-16 21:12:31 +00:00
|
|
|
ctx.cmdclient = c;
|
2007-10-04 11:52:03 +00:00
|
|
|
ctx.flags = 0;
|
|
|
|
|
2008-06-02 18:08:17 +00:00
|
|
|
/* XXX */
|
2007-10-23 10:48:23 +00:00
|
|
|
if (data.pid != -1 && (cmd->entry->flags & CMD_CANTNEST)) {
|
2007-11-16 21:12:31 +00:00
|
|
|
server_msg_fn_command_error(&ctx, "sessions "
|
|
|
|
"should be nested with care. unset $TMUX to force");
|
2008-06-02 18:08:17 +00:00
|
|
|
cmd_free(cmd);
|
|
|
|
return (0);
|
2007-12-06 09:46:23 +00:00
|
|
|
}
|
2007-10-01 14:53:29 +00:00
|
|
|
|
2007-10-03 21:31:07 +00:00
|
|
|
cmd_exec(cmd, &ctx);
|
|
|
|
cmd_free(cmd);
|
2007-09-26 13:43:15 +00:00
|
|
|
return (0);
|
2007-09-26 10:35:24 +00:00
|
|
|
}
|
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
int
|
2007-10-03 21:31:07 +00:00
|
|
|
server_msg_fn_identify(struct hdr *hdr, struct client *c)
|
2007-09-26 10:35:24 +00:00
|
|
|
{
|
2007-10-03 21:31:07 +00:00
|
|
|
struct msg_identify_data data;
|
2007-11-27 19:23:34 +00:00
|
|
|
char *term;
|
2007-10-03 21:31:07 +00:00
|
|
|
|
|
|
|
if (hdr->size < sizeof data)
|
|
|
|
fatalx("bad MSG_IDENTIFY size");
|
2007-10-03 12:34:16 +00:00
|
|
|
buffer_read(c->in, &data, sizeof data);
|
2007-11-27 19:23:34 +00:00
|
|
|
term = cmd_recv_string(c->in);
|
2007-09-26 10:35:24 +00:00
|
|
|
|
2007-10-04 19:03:52 +00:00
|
|
|
log_debug("identify msg from client: %u,%u", data.sx, data.sy);
|
2007-10-03 21:31:07 +00:00
|
|
|
|
2007-09-26 10:35:24 +00:00
|
|
|
c->sx = data.sx;
|
|
|
|
c->sy = data.sy;
|
|
|
|
|
2007-10-23 09:36:19 +00:00
|
|
|
data.tty[(sizeof data.tty) - 1] = '\0';
|
2007-11-27 19:23:34 +00:00
|
|
|
tty_init(&c->tty, data.tty, xstrdup(term));
|
|
|
|
xfree(term);
|
2007-10-23 09:36:19 +00:00
|
|
|
|
2007-10-03 21:31:07 +00:00
|
|
|
c->flags |= CLIENT_TERMINAL;
|
2007-09-26 13:43:15 +00:00
|
|
|
|
|
|
|
return (0);
|
2007-09-26 10:35:24 +00:00
|
|
|
}
|
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
int
|
2007-10-03 21:31:07 +00:00
|
|
|
server_msg_fn_resize(struct hdr *hdr, struct client *c)
|
2007-09-26 10:35:24 +00:00
|
|
|
{
|
2007-10-03 21:31:07 +00:00
|
|
|
struct msg_resize_data data;
|
2007-09-26 10:35:24 +00:00
|
|
|
|
|
|
|
if (hdr->size != sizeof data)
|
2007-10-03 23:32:26 +00:00
|
|
|
fatalx("bad MSG_RESIZE size");
|
2007-10-03 12:34:16 +00:00
|
|
|
buffer_read(c->in, &data, sizeof data);
|
2007-09-26 10:35:24 +00:00
|
|
|
|
2007-10-04 19:03:52 +00:00
|
|
|
log_debug("resize msg from client: %u,%u", data.sx, data.sy);
|
|
|
|
|
2007-09-26 10:35:24 +00:00
|
|
|
c->sx = data.sx;
|
|
|
|
if (c->sx == 0)
|
|
|
|
c->sx = 80;
|
|
|
|
c->sy = data.sy;
|
|
|
|
if (c->sy == 0)
|
|
|
|
c->sy = 25;
|
|
|
|
|
2007-10-04 19:03:52 +00:00
|
|
|
recalculate_sizes();
|
2007-09-26 13:43:15 +00:00
|
|
|
|
2007-11-24 20:08:49 +00:00
|
|
|
/* Always redraw this client. */
|
|
|
|
server_redraw_client(c);
|
|
|
|
|
2007-09-26 13:43:15 +00:00
|
|
|
return (0);
|
2007-09-26 10:35:24 +00:00
|
|
|
}
|
2007-11-27 20:01:30 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
server_msg_fn_exiting(struct hdr *hdr, struct client *c)
|
|
|
|
{
|
|
|
|
if (hdr->size != 0)
|
|
|
|
fatalx("bad MSG_EXITING size");
|
|
|
|
|
|
|
|
log_debug("exiting msg from client");
|
|
|
|
|
|
|
|
c->session = NULL;
|
2007-12-06 20:53:48 +00:00
|
|
|
|
|
|
|
tty_close(&c->tty);
|
2007-11-27 20:01:30 +00:00
|
|
|
|
|
|
|
server_write_client(c, MSG_EXITED, NULL, 0);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|