4 * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
20 #include <sys/socket.h>
35 static struct tmuxproc
*client_proc
;
36 static struct tmuxpeer
*client_peer
;
37 static uint64_t client_flags
;
38 static int client_suspended
;
42 CLIENT_EXIT_DETACHED_HUP
,
44 CLIENT_EXIT_TERMINATED
,
45 CLIENT_EXIT_LOST_SERVER
,
47 CLIENT_EXIT_SERVER_EXITED
,
48 CLIENT_EXIT_MESSAGE_PROVIDED
49 } client_exitreason
= CLIENT_EXIT_NONE
;
50 static int client_exitflag
;
51 static int client_exitval
;
52 static enum msgtype client_exittype
;
53 static const char *client_exitsession
;
54 static char *client_exitmessage
;
55 static const char *client_execshell
;
56 static const char *client_execcmd
;
57 static int client_attached
;
58 static struct client_files client_files
= RB_INITIALIZER(&client_files
);
60 static __dead
void client_exec(const char *,const char *);
61 static int client_get_lock(char *);
62 static int client_connect(struct event_base
*, const char *,
64 static void client_send_identify(const char *, const char *,
65 char **, u_int
, const char *, int);
66 static void client_signal(int);
67 static void client_dispatch(struct imsg
*, void *);
68 static void client_dispatch_attached(struct imsg
*);
69 static void client_dispatch_wait(struct imsg
*);
70 static const char *client_exit_message(void);
73 * Get server create lock. If already held then server start is happening in
74 * another client, so block until the lock is released and return -2 to
75 * retry. Return -1 on failure to continue and start the server anyway.
78 client_get_lock(char *lockfile
)
82 log_debug("lock file is %s", lockfile
);
84 if ((lockfd
= open(lockfile
, O_WRONLY
|O_CREAT
, 0600)) == -1) {
85 log_debug("open failed: %s", strerror(errno
));
89 if (flock(lockfd
, LOCK_EX
|LOCK_NB
) == -1) {
90 log_debug("flock failed: %s", strerror(errno
));
93 while (flock(lockfd
, LOCK_EX
) == -1 && errno
== EINTR
)
98 log_debug("flock succeeded");
103 /* Connect client to server. */
105 client_connect(struct event_base
*base
, const char *path
, uint64_t flags
)
107 struct sockaddr_un sa
;
109 int fd
, lockfd
= -1, locked
= 0;
110 char *lockfile
= NULL
;
112 memset(&sa
, 0, sizeof sa
);
113 sa
.sun_family
= AF_UNIX
;
114 size
= strlcpy(sa
.sun_path
, path
, sizeof sa
.sun_path
);
115 if (size
>= sizeof sa
.sun_path
) {
116 errno
= ENAMETOOLONG
;
119 log_debug("socket is %s", path
);
122 if ((fd
= socket(AF_UNIX
, SOCK_STREAM
, 0)) == -1)
125 log_debug("trying connect");
126 if (connect(fd
, (struct sockaddr
*)&sa
, sizeof sa
) == -1) {
127 log_debug("connect failed: %s", strerror(errno
));
128 if (errno
!= ECONNREFUSED
&& errno
!= ENOENT
)
130 if (flags
& CLIENT_NOSTARTSERVER
)
132 if (~flags
& CLIENT_STARTSERVER
)
137 xasprintf(&lockfile
, "%s.lock", path
);
138 if ((lockfd
= client_get_lock(lockfile
)) < 0) {
139 log_debug("didn't get lock (%d)", lockfd
);
147 log_debug("got lock (%d)", lockfd
);
150 * Always retry at least once, even if we got the lock,
151 * because another client could have taken the lock,
152 * started the server and released the lock between our
153 * connect() and flock().
159 if (lockfd
>= 0 && unlink(path
) != 0 && errno
!= ENOENT
) {
164 fd
= server_start(client_proc
, flags
, base
, lockfd
, lockfile
);
167 if (locked
&& lockfd
>= 0) {
183 /* Get exit string from reason number. */
185 client_exit_message(void)
187 static char msg
[256];
189 switch (client_exitreason
) {
190 case CLIENT_EXIT_NONE
:
192 case CLIENT_EXIT_DETACHED
:
193 if (client_exitsession
!= NULL
) {
194 xsnprintf(msg
, sizeof msg
, "detached "
195 "(from session %s)", client_exitsession
);
199 case CLIENT_EXIT_DETACHED_HUP
:
200 if (client_exitsession
!= NULL
) {
201 xsnprintf(msg
, sizeof msg
, "detached and SIGHUP "
202 "(from session %s)", client_exitsession
);
205 return ("detached and SIGHUP");
206 case CLIENT_EXIT_LOST_TTY
:
208 case CLIENT_EXIT_TERMINATED
:
209 return ("terminated");
210 case CLIENT_EXIT_LOST_SERVER
:
211 return ("server exited unexpectedly");
212 case CLIENT_EXIT_EXITED
:
214 case CLIENT_EXIT_SERVER_EXITED
:
215 return ("server exited");
216 case CLIENT_EXIT_MESSAGE_PROVIDED
:
217 return (client_exitmessage
);
219 return ("unknown reason");
222 /* Exit if all streams flushed. */
226 if (!file_write_left(&client_files
))
227 proc_exit(client_proc
);
230 /* Client main loop. */
232 client_main(struct event_base
*base
, int argc
, char **argv
, uint64_t flags
,
235 struct cmd_parse_result
*pr
;
236 struct msg_command
*data
;
238 const char *ttynam
, *termname
, *cwd
;
241 struct termios tio
, saved_tio
;
242 size_t size
, linesize
= 0;
244 char *line
= NULL
, **caps
= NULL
, *cause
;
246 struct args_value
*values
;
248 /* Ignore SIGCHLD now or daemon() in the server will leave a zombie. */
249 signal(SIGCHLD
, SIG_IGN
);
251 /* Set up the initial command. */
252 if (shell_command
!= NULL
) {
254 flags
|= CLIENT_STARTSERVER
;
255 } else if (argc
== 0) {
257 flags
|= CLIENT_STARTSERVER
;
262 * It's annoying parsing the command string twice (in client
263 * and later in server) but it is necessary to get the start
266 values
= args_from_vector(argc
, argv
);
267 pr
= cmd_parse_from_arguments(values
, argc
, NULL
);
268 if (pr
->status
== CMD_PARSE_SUCCESS
) {
269 if (cmd_list_any_have(pr
->cmdlist
, CMD_STARTSERVER
))
270 flags
|= CLIENT_STARTSERVER
;
271 cmd_list_free(pr
->cmdlist
);
274 args_free_values(values
, argc
);
278 /* Create client process structure (starts logging). */
279 client_proc
= proc_start("client");
280 proc_set_signals(client_proc
, client_signal
);
282 /* Save the flags. */
283 client_flags
= flags
;
284 log_debug("flags are %#llx", (unsigned long long)client_flags
);
286 /* Initialize the client socket and start the server. */
287 fd
= client_connect(base
, socket_path
, client_flags
);
289 if (errno
== ECONNREFUSED
) {
290 fprintf(stderr
, "no server running on %s\n",
293 fprintf(stderr
, "error connecting to %s (%s)\n",
294 socket_path
, strerror(errno
));
298 client_peer
= proc_add_peer(client_proc
, fd
, client_dispatch
, NULL
);
300 /* Save these before pledge(). */
301 if ((cwd
= find_cwd()) == NULL
&& (cwd
= find_home()) == NULL
)
303 if ((ttynam
= ttyname(STDIN_FILENO
)) == NULL
)
305 if ((termname
= getenv("TERM")) == NULL
)
309 * Drop privileges for client. "proc exec" is needed for -c and for
310 * locking (which uses system(3)).
312 * "tty" is needed to restore termios(4) and also for some reason -CC
313 * does not work properly without it (input is not recognised).
315 * "sendfd" is dropped later in client_dispatch_wait().
318 "stdio rpath wpath cpath unix sendfd proc exec tty",
320 fatal("pledge failed");
322 /* Load terminfo entry if any. */
323 if (isatty(STDIN_FILENO
) &&
325 tty_term_read_list(termname
, STDIN_FILENO
, &caps
, &ncaps
,
327 fprintf(stderr
, "%s\n", cause
);
332 /* Free stuff that is not used in the client. */
335 options_free(global_options
);
336 options_free(global_s_options
);
337 options_free(global_w_options
);
338 environ_free(global_environ
);
340 /* Set up control mode. */
341 if (client_flags
& CLIENT_CONTROLCONTROL
) {
342 if (tcgetattr(STDIN_FILENO
, &saved_tio
) != 0) {
343 fprintf(stderr
, "tcgetattr failed: %s\n",
348 tio
.c_iflag
= ICRNL
|IXANY
;
349 tio
.c_oflag
= OPOST
|ONLCR
;
351 tio
.c_lflag
= NOKERNINFO
;
353 tio
.c_cflag
= CREAD
|CS8
|HUPCL
;
356 cfsetispeed(&tio
, cfgetispeed(&saved_tio
));
357 cfsetospeed(&tio
, cfgetospeed(&saved_tio
));
358 tcsetattr(STDIN_FILENO
, TCSANOW
, &tio
);
361 /* Send identify messages. */
362 client_send_identify(ttynam
, termname
, caps
, ncaps
, cwd
, feat
);
363 tty_term_free_list(caps
, ncaps
);
365 /* Send first command. */
366 if (msg
== MSG_COMMAND
) {
367 /* How big is the command? */
369 for (i
= 0; i
< argc
; i
++)
370 size
+= strlen(argv
[i
]) + 1;
371 if (size
> MAX_IMSGSIZE
- (sizeof *data
)) {
372 fprintf(stderr
, "command too long\n");
375 data
= xmalloc((sizeof *data
) + size
);
377 /* Prepare command for server. */
379 if (cmd_pack_argv(argc
, argv
, (char *)(data
+ 1), size
) != 0) {
380 fprintf(stderr
, "command too long\n");
384 size
+= sizeof *data
;
386 /* Send the command. */
387 if (proc_send(client_peer
, msg
, -1, data
, size
) != 0) {
388 fprintf(stderr
, "failed to send command\n");
393 } else if (msg
== MSG_SHELL
)
394 proc_send(client_peer
, msg
, -1, NULL
, 0);
396 /* Start main loop. */
397 proc_loop(client_proc
, NULL
);
399 /* Run command if user requested exec, instead of exiting. */
400 if (client_exittype
== MSG_EXEC
) {
401 if (client_flags
& CLIENT_CONTROLCONTROL
)
402 tcsetattr(STDOUT_FILENO
, TCSAFLUSH
, &saved_tio
);
403 client_exec(client_execshell
, client_execcmd
);
406 /* Restore streams to blocking. */
407 setblocking(STDIN_FILENO
, 1);
408 setblocking(STDOUT_FILENO
, 1);
409 setblocking(STDERR_FILENO
, 1);
411 /* Print the exit message, if any, and exit. */
412 if (client_attached
) {
413 if (client_exitreason
!= CLIENT_EXIT_NONE
)
414 printf("[%s]\n", client_exit_message());
417 if (client_exittype
== MSG_DETACHKILL
&& ppid
> 1)
419 } else if (client_flags
& CLIENT_CONTROL
) {
420 if (client_exitreason
!= CLIENT_EXIT_NONE
)
421 printf("%%exit %s\n", client_exit_message());
425 if (client_flags
& CLIENT_CONTROL_WAITEXIT
) {
426 setvbuf(stdin
, NULL
, _IOLBF
, 0);
428 linelen
= getline(&line
, &linesize
, stdin
);
434 if (client_flags
& CLIENT_CONTROLCONTROL
) {
437 tcsetattr(STDOUT_FILENO
, TCSAFLUSH
, &saved_tio
);
439 } else if (client_exitreason
!= CLIENT_EXIT_NONE
)
440 fprintf(stderr
, "%s\n", client_exit_message());
441 return (client_exitval
);
444 /* Send identify messages to server. */
446 client_send_identify(const char *ttynam
, const char *termname
, char **caps
,
447 u_int ncaps
, const char *cwd
, int feat
)
451 int fd
, flags
= client_flags
;
455 proc_send(client_peer
, MSG_IDENTIFY_FLAGS
, -1, &flags
, sizeof flags
);
456 proc_send(client_peer
, MSG_IDENTIFY_LONGFLAGS
, -1, &client_flags
,
457 sizeof client_flags
);
459 proc_send(client_peer
, MSG_IDENTIFY_TERM
, -1, termname
,
460 strlen(termname
) + 1);
461 proc_send(client_peer
, MSG_IDENTIFY_FEATURES
, -1, &feat
, sizeof feat
);
463 proc_send(client_peer
, MSG_IDENTIFY_TTYNAME
, -1, ttynam
,
465 proc_send(client_peer
, MSG_IDENTIFY_CWD
, -1, cwd
, strlen(cwd
) + 1);
467 for (i
= 0; i
< ncaps
; i
++) {
468 proc_send(client_peer
, MSG_IDENTIFY_TERMINFO
, -1,
469 caps
[i
], strlen(caps
[i
]) + 1);
472 if ((fd
= dup(STDIN_FILENO
)) == -1)
474 proc_send(client_peer
, MSG_IDENTIFY_STDIN
, fd
, NULL
, 0);
475 if ((fd
= dup(STDOUT_FILENO
)) == -1)
477 proc_send(client_peer
, MSG_IDENTIFY_STDOUT
, fd
, NULL
, 0);
480 proc_send(client_peer
, MSG_IDENTIFY_CLIENTPID
, -1, &pid
, sizeof pid
);
482 for (ss
= environ
; *ss
!= NULL
; ss
++) {
483 sslen
= strlen(*ss
) + 1;
484 if (sslen
> MAX_IMSGSIZE
- IMSG_HEADER_SIZE
)
486 proc_send(client_peer
, MSG_IDENTIFY_ENVIRON
, -1, *ss
, sslen
);
489 proc_send(client_peer
, MSG_IDENTIFY_DONE
, -1, NULL
, 0);
492 /* Run command in shell; used for -c. */
494 client_exec(const char *shell
, const char *shellcmd
)
496 const char *name
, *ptr
;
499 log_debug("shell %s, command %s", shell
, shellcmd
);
501 ptr
= strrchr(shell
, '/');
502 if (ptr
!= NULL
&& *(ptr
+ 1) != '\0')
506 if (client_flags
& CLIENT_LOGIN
)
507 xasprintf(&argv0
, "-%s", name
);
509 xasprintf(&argv0
, "%s", name
);
510 setenv("SHELL", shell
, 1);
512 proc_clear_signals(client_proc
, 1);
514 setblocking(STDIN_FILENO
, 1);
515 setblocking(STDOUT_FILENO
, 1);
516 setblocking(STDERR_FILENO
, 1);
517 closefrom(STDERR_FILENO
+ 1);
519 execl(shell
, argv0
, "-c", shellcmd
, (char *) NULL
);
520 fatal("execl failed");
523 /* Callback to handle signals in the client. */
525 client_signal(int sig
)
527 struct sigaction sigact
;
530 log_debug("%s: %s", __func__
, strsignal(sig
));
532 waitpid(WAIT_ANY
, &status
, WNOHANG
);
533 else if (!client_attached
) {
535 proc_exit(client_proc
);
539 client_exitreason
= CLIENT_EXIT_LOST_TTY
;
541 proc_send(client_peer
, MSG_EXITING
, -1, NULL
, 0);
544 if (!client_suspended
)
545 client_exitreason
= CLIENT_EXIT_TERMINATED
;
547 proc_send(client_peer
, MSG_EXITING
, -1, NULL
, 0);
550 proc_send(client_peer
, MSG_RESIZE
, -1, NULL
, 0);
553 memset(&sigact
, 0, sizeof sigact
);
554 sigemptyset(&sigact
.sa_mask
);
555 sigact
.sa_flags
= SA_RESTART
;
556 sigact
.sa_handler
= SIG_IGN
;
557 if (sigaction(SIGTSTP
, &sigact
, NULL
) != 0)
558 fatal("sigaction failed");
559 proc_send(client_peer
, MSG_WAKEUP
, -1, NULL
, 0);
560 client_suspended
= 0;
566 /* Callback for file write error or close. */
568 client_file_check_cb(__unused
struct client
*c
, __unused
const char *path
,
569 __unused
int error
, __unused
int closed
, __unused
struct evbuffer
*buffer
,
576 /* Callback for client read events. */
578 client_dispatch(struct imsg
*imsg
, __unused
void *arg
)
581 if (!client_exitflag
) {
582 client_exitreason
= CLIENT_EXIT_LOST_SERVER
;
585 proc_exit(client_proc
);
590 client_dispatch_attached(imsg
);
592 client_dispatch_wait(imsg
);
595 /* Process an exit message. */
597 client_dispatch_exit_message(char *data
, size_t datalen
)
601 if (datalen
< sizeof retval
&& datalen
!= 0)
602 fatalx("bad MSG_EXIT size");
604 if (datalen
>= sizeof retval
) {
605 memcpy(&retval
, data
, sizeof retval
);
606 client_exitval
= retval
;
609 if (datalen
> sizeof retval
) {
610 datalen
-= sizeof retval
;
611 data
+= sizeof retval
;
613 client_exitmessage
= xmalloc(datalen
);
614 memcpy(client_exitmessage
, data
, datalen
);
615 client_exitmessage
[datalen
- 1] = '\0';
617 client_exitreason
= CLIENT_EXIT_MESSAGE_PROVIDED
;
621 /* Dispatch imsgs when in wait state (before MSG_READY). */
623 client_dispatch_wait(struct imsg
*imsg
)
627 static int pledge_applied
;
630 * "sendfd" is no longer required once all of the identify messages
631 * have been sent. We know the server won't send us anything until that
632 * point (because we don't ask it to), so we can drop "sendfd" once we
633 * get the first message from the server.
635 if (!pledge_applied
) {
637 "stdio rpath wpath cpath unix proc exec tty",
639 fatal("pledge failed");
644 datalen
= imsg
->hdr
.len
- IMSG_HEADER_SIZE
;
646 switch (imsg
->hdr
.type
) {
649 client_dispatch_exit_message(data
, datalen
);
655 fatalx("bad MSG_READY size");
658 proc_send(client_peer
, MSG_RESIZE
, -1, NULL
, 0);
662 fatalx("bad MSG_VERSION size");
664 fprintf(stderr
, "protocol version mismatch "
665 "(client %d, server %u)\n", PROTOCOL_VERSION
,
666 imsg
->hdr
.peerid
& 0xff);
668 proc_exit(client_proc
);
671 if (datalen
!= sizeof client_flags
)
672 fatalx("bad MSG_FLAGS string");
674 memcpy(&client_flags
, data
, sizeof client_flags
);
675 log_debug("new flags are %#llx",
676 (unsigned long long)client_flags
);
679 if (datalen
== 0 || data
[datalen
- 1] != '\0')
680 fatalx("bad MSG_SHELL string");
682 client_exec(data
, shell_command
);
686 proc_send(client_peer
, MSG_EXITING
, -1, NULL
, 0);
689 proc_exit(client_proc
);
692 file_read_open(&client_files
, client_peer
, imsg
, 1,
693 !(client_flags
& CLIENT_CONTROL
), client_file_check_cb
,
697 file_write_open(&client_files
, client_peer
, imsg
, 1,
698 !(client_flags
& CLIENT_CONTROL
), client_file_check_cb
,
702 file_write_data(&client_files
, imsg
);
704 case MSG_WRITE_CLOSE
:
705 file_write_close(&client_files
, imsg
);
710 fprintf(stderr
, "server version is too old for client\n");
711 proc_exit(client_proc
);
716 /* Dispatch imsgs in attached state (after MSG_READY). */
718 client_dispatch_attached(struct imsg
*imsg
)
720 struct sigaction sigact
;
725 datalen
= imsg
->hdr
.len
- IMSG_HEADER_SIZE
;
727 switch (imsg
->hdr
.type
) {
729 if (datalen
!= sizeof client_flags
)
730 fatalx("bad MSG_FLAGS string");
732 memcpy(&client_flags
, data
, sizeof client_flags
);
733 log_debug("new flags are %#llx",
734 (unsigned long long)client_flags
);
738 if (datalen
== 0 || data
[datalen
- 1] != '\0')
739 fatalx("bad MSG_DETACH string");
741 client_exitsession
= xstrdup(data
);
742 client_exittype
= imsg
->hdr
.type
;
743 if (imsg
->hdr
.type
== MSG_DETACHKILL
)
744 client_exitreason
= CLIENT_EXIT_DETACHED_HUP
;
746 client_exitreason
= CLIENT_EXIT_DETACHED
;
747 proc_send(client_peer
, MSG_EXITING
, -1, NULL
, 0);
750 if (datalen
== 0 || data
[datalen
- 1] != '\0' ||
751 strlen(data
) + 1 == (size_t)datalen
)
752 fatalx("bad MSG_EXEC string");
753 client_execcmd
= xstrdup(data
);
754 client_execshell
= xstrdup(data
+ strlen(data
) + 1);
756 client_exittype
= imsg
->hdr
.type
;
757 proc_send(client_peer
, MSG_EXITING
, -1, NULL
, 0);
760 client_dispatch_exit_message(data
, datalen
);
761 if (client_exitreason
== CLIENT_EXIT_NONE
)
762 client_exitreason
= CLIENT_EXIT_EXITED
;
763 proc_send(client_peer
, MSG_EXITING
, -1, NULL
, 0);
767 fatalx("bad MSG_EXITED size");
769 proc_exit(client_proc
);
773 fatalx("bad MSG_SHUTDOWN size");
775 proc_send(client_peer
, MSG_EXITING
, -1, NULL
, 0);
776 client_exitreason
= CLIENT_EXIT_SERVER_EXITED
;
781 fatalx("bad MSG_SUSPEND size");
783 memset(&sigact
, 0, sizeof sigact
);
784 sigemptyset(&sigact
.sa_mask
);
785 sigact
.sa_flags
= SA_RESTART
;
786 sigact
.sa_handler
= SIG_DFL
;
787 if (sigaction(SIGTSTP
, &sigact
, NULL
) != 0)
788 fatal("sigaction failed");
789 client_suspended
= 1;
790 kill(getpid(), SIGTSTP
);
793 if (datalen
== 0 || data
[datalen
- 1] != '\0')
794 fatalx("bad MSG_LOCK string");
797 proc_send(client_peer
, MSG_UNLOCK
, -1, NULL
, 0);