2014-11-08 12:27:43 +00:00
|
|
|
/* $OpenBSD$ */
|
2009-10-11 23:55:26 +00:00
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-10-11 23:55:26 +00:00
|
|
|
*
|
|
|
|
* 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>
|
2020-03-24 08:09:43 +00:00
|
|
|
#include <sys/ioctl.h>
|
2009-11-08 22:56:04 +00:00
|
|
|
#include <sys/socket.h>
|
2020-05-01 08:02:44 +00:00
|
|
|
#include <sys/wait.h>
|
2009-10-11 23:55:26 +00:00
|
|
|
|
|
|
|
#include <fcntl.h>
|
2015-10-15 20:42:17 +00:00
|
|
|
#include <signal.h>
|
2012-07-11 19:34:16 +00:00
|
|
|
#include <stdlib.h>
|
2009-10-11 23:55:26 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Job scheduling. Run queued commands in the background and record their
|
|
|
|
* output.
|
|
|
|
*/
|
|
|
|
|
2017-04-20 09:20:22 +00:00
|
|
|
static void job_read_callback(struct bufferevent *, void *);
|
2016-10-10 21:29:23 +00:00
|
|
|
static void job_write_callback(struct bufferevent *, void *);
|
2017-04-20 09:20:22 +00:00
|
|
|
static void job_error_callback(struct bufferevent *, short, void *);
|
2009-11-08 22:56:04 +00:00
|
|
|
|
2018-08-23 18:39:12 +00:00
|
|
|
/* A single job. */
|
2018-08-23 15:45:05 +00:00
|
|
|
struct job {
|
|
|
|
enum {
|
|
|
|
JOB_RUNNING,
|
|
|
|
JOB_DEAD,
|
|
|
|
JOB_CLOSED
|
|
|
|
} state;
|
|
|
|
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
char *cmd;
|
|
|
|
pid_t pid;
|
|
|
|
int status;
|
|
|
|
|
|
|
|
int fd;
|
|
|
|
struct bufferevent *event;
|
|
|
|
|
|
|
|
job_update_cb updatecb;
|
|
|
|
job_complete_cb completecb;
|
|
|
|
job_free_cb freecb;
|
|
|
|
void *data;
|
|
|
|
|
|
|
|
LIST_ENTRY(job) entry;
|
|
|
|
};
|
|
|
|
|
2011-02-15 15:20:03 +00:00
|
|
|
/* All jobs list. */
|
2018-08-23 18:39:12 +00:00
|
|
|
static LIST_HEAD(joblist, job) all_jobs = LIST_HEAD_INITIALIZER(all_jobs);
|
2009-10-11 23:55:26 +00:00
|
|
|
|
2011-02-15 15:20:03 +00:00
|
|
|
/* Start a job running, if it isn't already. */
|
2009-10-11 23:55:26 +00:00
|
|
|
struct job *
|
2015-10-31 08:13:58 +00:00
|
|
|
job_run(const char *cmd, struct session *s, const char *cwd,
|
2017-04-20 09:20:22 +00:00
|
|
|
job_update_cb updatecb, job_complete_cb completecb, job_free_cb freecb,
|
2020-03-19 13:43:18 +00:00
|
|
|
void *data, int flags, int sx, int sy)
|
2009-10-11 23:55:26 +00:00
|
|
|
{
|
|
|
|
struct job *job;
|
2015-10-28 09:51:55 +00:00
|
|
|
struct environ *env;
|
2011-02-15 15:20:03 +00:00
|
|
|
pid_t pid;
|
2020-03-19 13:43:18 +00:00
|
|
|
int nullfd, out[2], master;
|
2015-10-31 08:13:58 +00:00
|
|
|
const char *home;
|
2017-07-12 10:04:51 +00:00
|
|
|
sigset_t set, oldset;
|
2020-03-19 13:43:18 +00:00
|
|
|
struct winsize ws;
|
2009-10-11 23:55:26 +00:00
|
|
|
|
2017-04-25 15:35:10 +00:00
|
|
|
/*
|
|
|
|
* Do not set TERM during .tmux.conf, it is nice to be able to use
|
|
|
|
* if-shell to decide on default-terminal based on outside TERM.
|
|
|
|
*/
|
|
|
|
env = environ_for_session(s, !cfg_finished);
|
|
|
|
|
2017-07-12 10:04:51 +00:00
|
|
|
sigfillset(&set);
|
|
|
|
sigprocmask(SIG_BLOCK, &set, &oldset);
|
2020-03-19 13:43:18 +00:00
|
|
|
|
|
|
|
if (flags & JOB_PTY) {
|
|
|
|
memset(&ws, 0, sizeof ws);
|
|
|
|
ws.ws_col = sx;
|
|
|
|
ws.ws_row = sy;
|
|
|
|
pid = fdforkpty(ptm_fd, &master, NULL, NULL, &ws);
|
|
|
|
} else {
|
|
|
|
if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, out) != 0)
|
|
|
|
goto fail;
|
|
|
|
pid = fork();
|
|
|
|
}
|
|
|
|
log_debug("%s: cmd=%s, cwd=%s", __func__, cmd, cwd == NULL ? "" : cwd);
|
|
|
|
|
|
|
|
switch (pid) {
|
2009-10-11 23:55:26 +00:00
|
|
|
case -1:
|
2020-03-19 13:43:18 +00:00
|
|
|
if (~flags & JOB_PTY) {
|
|
|
|
close(out[0]);
|
|
|
|
close(out[1]);
|
|
|
|
}
|
|
|
|
goto fail;
|
2017-07-12 10:04:51 +00:00
|
|
|
case 0:
|
2017-07-14 18:49:07 +00:00
|
|
|
proc_clear_signals(server_proc, 1);
|
2017-07-12 10:04:51 +00:00
|
|
|
sigprocmask(SIG_SETMASK, &oldset, NULL);
|
2010-04-06 21:59:19 +00:00
|
|
|
|
2015-10-31 08:13:58 +00:00
|
|
|
if (cwd == NULL || chdir(cwd) != 0) {
|
|
|
|
if ((home = find_home()) == NULL || chdir(home) != 0)
|
|
|
|
chdir("/");
|
|
|
|
}
|
2015-04-24 22:19:36 +00:00
|
|
|
|
2015-10-28 09:51:55 +00:00
|
|
|
environ_push(env);
|
|
|
|
environ_free(env);
|
2009-10-11 23:55:26 +00:00
|
|
|
|
2020-03-19 13:43:18 +00:00
|
|
|
if (~flags & JOB_PTY) {
|
|
|
|
if (dup2(out[1], STDIN_FILENO) == -1)
|
|
|
|
fatal("dup2 failed");
|
|
|
|
if (dup2(out[1], STDOUT_FILENO) == -1)
|
|
|
|
fatal("dup2 failed");
|
|
|
|
if (out[1] != STDIN_FILENO && out[1] != STDOUT_FILENO)
|
|
|
|
close(out[1]);
|
|
|
|
close(out[0]);
|
|
|
|
|
|
|
|
nullfd = open(_PATH_DEVNULL, O_RDWR, 0);
|
|
|
|
if (nullfd == -1)
|
|
|
|
fatal("open failed");
|
|
|
|
if (dup2(nullfd, STDERR_FILENO) == -1)
|
|
|
|
fatal("dup2 failed");
|
|
|
|
if (nullfd != STDERR_FILENO)
|
|
|
|
close(nullfd);
|
|
|
|
}
|
2010-10-24 00:45:57 +00:00
|
|
|
closefrom(STDERR_FILENO + 1);
|
|
|
|
|
2011-02-15 15:20:03 +00:00
|
|
|
execl(_PATH_BSHELL, "sh", "-c", cmd, (char *) NULL);
|
2009-10-11 23:55:26 +00:00
|
|
|
fatal("execl failed");
|
2011-02-15 15:20:03 +00:00
|
|
|
}
|
2009-10-11 23:55:26 +00:00
|
|
|
|
2017-07-12 10:04:51 +00:00
|
|
|
sigprocmask(SIG_SETMASK, &oldset, NULL);
|
2015-10-28 09:51:55 +00:00
|
|
|
environ_free(env);
|
2009-10-11 23:55:26 +00:00
|
|
|
|
2011-02-15 15:20:03 +00:00
|
|
|
job = xmalloc(sizeof *job);
|
2015-06-17 16:44:49 +00:00
|
|
|
job->state = JOB_RUNNING;
|
2018-03-08 08:09:10 +00:00
|
|
|
job->flags = flags;
|
2015-06-17 16:44:49 +00:00
|
|
|
|
2011-02-15 15:20:03 +00:00
|
|
|
job->cmd = xstrdup(cmd);
|
|
|
|
job->pid = pid;
|
|
|
|
job->status = 0;
|
2009-10-11 23:55:26 +00:00
|
|
|
|
2017-04-20 09:20:22 +00:00
|
|
|
LIST_INSERT_HEAD(&all_jobs, job, entry);
|
2011-02-15 15:20:03 +00:00
|
|
|
|
2017-04-20 09:20:22 +00:00
|
|
|
job->updatecb = updatecb;
|
|
|
|
job->completecb = completecb;
|
|
|
|
job->freecb = freecb;
|
2011-02-15 15:20:03 +00:00
|
|
|
job->data = data;
|
|
|
|
|
2020-03-19 13:43:18 +00:00
|
|
|
if (~flags & JOB_PTY) {
|
|
|
|
close(out[1]);
|
|
|
|
job->fd = out[0];
|
|
|
|
} else
|
|
|
|
job->fd = master;
|
2011-02-15 15:20:03 +00:00
|
|
|
setblocking(job->fd, 0);
|
|
|
|
|
2017-04-20 09:20:22 +00:00
|
|
|
job->event = bufferevent_new(job->fd, job_read_callback,
|
|
|
|
job_write_callback, job_error_callback, job);
|
2018-11-19 13:35:40 +00:00
|
|
|
if (job->event == NULL)
|
|
|
|
fatalx("out of memory");
|
2013-04-10 12:20:35 +00:00
|
|
|
bufferevent_enable(job->event, EV_READ|EV_WRITE);
|
2011-02-15 15:20:03 +00:00
|
|
|
|
|
|
|
log_debug("run job %p: %s, pid %ld", job, job->cmd, (long) job->pid);
|
|
|
|
return (job);
|
2020-03-19 13:43:18 +00:00
|
|
|
|
|
|
|
fail:
|
|
|
|
sigprocmask(SIG_SETMASK, &oldset, NULL);
|
|
|
|
environ_free(env);
|
|
|
|
return (NULL);
|
2011-02-15 15:20:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Kill and free an individual job. */
|
|
|
|
void
|
|
|
|
job_free(struct job *job)
|
|
|
|
{
|
|
|
|
log_debug("free job %p: %s", job, job->cmd);
|
|
|
|
|
2017-04-20 09:20:22 +00:00
|
|
|
LIST_REMOVE(job, entry);
|
2012-07-11 19:34:16 +00:00
|
|
|
free(job->cmd);
|
2011-02-15 15:20:03 +00:00
|
|
|
|
2017-04-20 09:20:22 +00:00
|
|
|
if (job->freecb != NULL && job->data != NULL)
|
|
|
|
job->freecb(job->data);
|
2011-02-15 15:20:03 +00:00
|
|
|
|
|
|
|
if (job->pid != -1)
|
|
|
|
kill(job->pid, SIGTERM);
|
|
|
|
if (job->event != NULL)
|
|
|
|
bufferevent_free(job->event);
|
2012-01-29 12:53:33 +00:00
|
|
|
if (job->fd != -1)
|
|
|
|
close(job->fd);
|
2011-02-15 15:20:03 +00:00
|
|
|
|
2012-07-11 19:34:16 +00:00
|
|
|
free(job);
|
2009-10-11 23:55:26 +00:00
|
|
|
}
|
|
|
|
|
2020-03-24 08:09:43 +00:00
|
|
|
/* Resize job. */
|
|
|
|
void
|
|
|
|
job_resize(struct job *job, u_int sx, u_int sy)
|
|
|
|
{
|
|
|
|
struct winsize ws;
|
|
|
|
|
|
|
|
if (job->fd == -1 || (~job->flags & JOB_PTY))
|
|
|
|
return;
|
|
|
|
|
|
|
|
log_debug("resize job %p: %ux%u", job, sx, sy);
|
|
|
|
|
|
|
|
memset(&ws, 0, sizeof ws);
|
|
|
|
ws.ws_col = sx;
|
|
|
|
ws.ws_row = sy;
|
|
|
|
if (ioctl(job->fd, TIOCSWINSZ, &ws) == -1)
|
|
|
|
fatal("ioctl failed");
|
|
|
|
}
|
|
|
|
|
2017-04-20 09:20:22 +00:00
|
|
|
/* Job buffer read callback. */
|
|
|
|
static void
|
|
|
|
job_read_callback(__unused struct bufferevent *bufev, void *data)
|
|
|
|
{
|
|
|
|
struct job *job = data;
|
|
|
|
|
|
|
|
if (job->updatecb != NULL)
|
2017-05-31 17:56:48 +00:00
|
|
|
job->updatecb(job);
|
2017-04-20 09:20:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Job buffer write callback. Fired when the buffer falls below watermark
|
|
|
|
* (default is empty). If all the data has been written, disable the write
|
|
|
|
* event.
|
|
|
|
*/
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2015-11-18 14:27:44 +00:00
|
|
|
job_write_callback(__unused struct bufferevent *bufev, void *data)
|
2013-03-21 14:24:33 +00:00
|
|
|
{
|
|
|
|
struct job *job = data;
|
|
|
|
size_t len = EVBUFFER_LENGTH(EVBUFFER_OUTPUT(job->event));
|
|
|
|
|
2013-04-17 08:41:41 +00:00
|
|
|
log_debug("job write %p: %s, pid %ld, output left %zu", job, job->cmd,
|
2013-10-10 09:27:23 +00:00
|
|
|
(long) job->pid, len);
|
2013-03-21 14:24:33 +00:00
|
|
|
|
2020-03-19 13:43:18 +00:00
|
|
|
if (len == 0 && (~job->flags & JOB_KEEPWRITE)) {
|
2013-03-21 14:24:33 +00:00
|
|
|
shutdown(job->fd, SHUT_WR);
|
|
|
|
bufferevent_disable(job->event, EV_WRITE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-08 22:56:04 +00:00
|
|
|
/* Job buffer error callback. */
|
2016-10-10 21:29:23 +00:00
|
|
|
static void
|
2017-04-20 09:20:22 +00:00
|
|
|
job_error_callback(__unused struct bufferevent *bufev, __unused short events,
|
2015-11-18 14:27:44 +00:00
|
|
|
void *data)
|
2009-11-08 22:56:04 +00:00
|
|
|
{
|
|
|
|
struct job *job = data;
|
|
|
|
|
2011-02-15 15:20:03 +00:00
|
|
|
log_debug("job error %p: %s, pid %ld", job, job->cmd, (long) job->pid);
|
2009-11-08 22:56:04 +00:00
|
|
|
|
2015-06-17 16:44:49 +00:00
|
|
|
if (job->state == JOB_DEAD) {
|
2017-04-20 09:20:22 +00:00
|
|
|
if (job->completecb != NULL)
|
|
|
|
job->completecb(job);
|
2011-02-15 15:20:03 +00:00
|
|
|
job_free(job);
|
|
|
|
} else {
|
|
|
|
bufferevent_disable(job->event, EV_READ);
|
2015-06-17 16:44:49 +00:00
|
|
|
job->state = JOB_CLOSED;
|
2009-11-08 22:56:54 +00:00
|
|
|
}
|
2009-11-08 22:56:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Job died (waitpid() returned its pid). */
|
|
|
|
void
|
2018-08-23 15:45:05 +00:00
|
|
|
job_check_died(pid_t pid, int status)
|
2009-11-08 22:56:04 +00:00
|
|
|
{
|
2018-08-23 15:45:05 +00:00
|
|
|
struct job *job;
|
|
|
|
|
|
|
|
LIST_FOREACH(job, &all_jobs, entry) {
|
|
|
|
if (pid == job->pid)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (job == NULL)
|
|
|
|
return;
|
2020-05-01 08:02:44 +00:00
|
|
|
if (WIFSTOPPED(status)) {
|
|
|
|
if (WSTOPSIG(status) == SIGTTIN || WSTOPSIG(status) == SIGTTOU)
|
|
|
|
return;
|
|
|
|
killpg(job->pid, SIGCONT);
|
|
|
|
return;
|
|
|
|
}
|
2011-02-15 15:20:03 +00:00
|
|
|
log_debug("job died %p: %s, pid %ld", job, job->cmd, (long) job->pid);
|
|
|
|
|
2009-11-08 22:56:04 +00:00
|
|
|
job->status = status;
|
2009-12-04 22:14:47 +00:00
|
|
|
|
2015-06-17 16:44:49 +00:00
|
|
|
if (job->state == JOB_CLOSED) {
|
2017-04-20 09:20:22 +00:00
|
|
|
if (job->completecb != NULL)
|
|
|
|
job->completecb(job);
|
2011-02-15 15:20:03 +00:00
|
|
|
job_free(job);
|
2015-06-17 16:44:49 +00:00
|
|
|
} else {
|
2011-02-15 15:20:03 +00:00
|
|
|
job->pid = -1;
|
2015-06-17 16:44:49 +00:00
|
|
|
job->state = JOB_DEAD;
|
|
|
|
}
|
2009-10-11 23:55:26 +00:00
|
|
|
}
|
2018-08-23 15:45:05 +00:00
|
|
|
|
|
|
|
/* Get job status. */
|
|
|
|
int
|
|
|
|
job_get_status(struct job *job)
|
|
|
|
{
|
|
|
|
return (job->status);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get job data. */
|
|
|
|
void *
|
|
|
|
job_get_data(struct job *job)
|
|
|
|
{
|
|
|
|
return (job->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get job event. */
|
|
|
|
struct bufferevent *
|
|
|
|
job_get_event(struct job *job)
|
|
|
|
{
|
|
|
|
return (job->event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Kill all jobs. */
|
|
|
|
void
|
|
|
|
job_kill_all(void)
|
|
|
|
{
|
|
|
|
struct job *job;
|
|
|
|
|
|
|
|
LIST_FOREACH(job, &all_jobs, entry) {
|
|
|
|
if (job->pid != -1)
|
|
|
|
kill(job->pid, SIGTERM);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Are any jobs still running? */
|
|
|
|
int
|
|
|
|
job_still_running(void)
|
|
|
|
{
|
|
|
|
struct job *job;
|
|
|
|
|
|
|
|
LIST_FOREACH(job, &all_jobs, entry) {
|
|
|
|
if ((~job->flags & JOB_NOWAIT) && job->state == JOB_RUNNING)
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print job summary. */
|
|
|
|
void
|
|
|
|
job_print_summary(struct cmdq_item *item, int blank)
|
|
|
|
{
|
|
|
|
struct job *job;
|
|
|
|
u_int n = 0;
|
|
|
|
|
|
|
|
LIST_FOREACH(job, &all_jobs, entry) {
|
|
|
|
if (blank) {
|
|
|
|
cmdq_print(item, "%s", "");
|
|
|
|
blank = 0;
|
|
|
|
}
|
|
|
|
cmdq_print(item, "Job %u: %s [fd=%d, pid=%ld, status=%d]",
|
|
|
|
n, job->cmd, job->fd, (long)job->pid, job->status);
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|