2009-10-10 15:03:01 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 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-11-04 21:04:43 +00:00
|
|
|
#include <sys/socket.h>
|
2009-10-10 15:03:01 +00:00
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <paths.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Job scheduling. Run queued commands in the background and record their
|
|
|
|
* output.
|
|
|
|
*/
|
|
|
|
|
2009-10-10 18:42:14 +00:00
|
|
|
/* All jobs list. */
|
2010-02-24 19:13:38 +00:00
|
|
|
struct joblist all_jobs = SLIST_HEAD_INITIALIZER(all_jobs);
|
2009-10-10 18:42:14 +00:00
|
|
|
|
2009-10-10 15:03:01 +00:00
|
|
|
RB_GENERATE(jobs, job, entry, job_cmp);
|
|
|
|
|
2009-11-04 21:04:43 +00:00
|
|
|
void job_callback(struct bufferevent *, short, void *);
|
|
|
|
|
2009-10-10 15:03:01 +00:00
|
|
|
int
|
|
|
|
job_cmp(struct job *job1, struct job *job2)
|
|
|
|
{
|
|
|
|
return (strcmp(job1->cmd, job2->cmd));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialise job tree. */
|
|
|
|
void
|
|
|
|
job_tree_init(struct jobs *jobs)
|
|
|
|
{
|
|
|
|
RB_INIT(jobs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Destroy a job tree. */
|
|
|
|
void
|
|
|
|
job_tree_free(struct jobs *jobs)
|
|
|
|
{
|
|
|
|
struct job *job;
|
|
|
|
|
|
|
|
while (!RB_EMPTY(jobs)) {
|
|
|
|
job = RB_ROOT(jobs);
|
|
|
|
RB_REMOVE(jobs, jobs, job);
|
|
|
|
job_free(job);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find a job and return it. */
|
|
|
|
struct job *
|
|
|
|
job_get(struct jobs *jobs, const char *cmd)
|
|
|
|
{
|
|
|
|
struct job job;
|
|
|
|
|
|
|
|
job.cmd = (char *) cmd;
|
|
|
|
return (RB_FIND(jobs, jobs, &job));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add a job. */
|
|
|
|
struct job *
|
2009-11-01 23:20:37 +00:00
|
|
|
job_add(struct jobs *jobs, int flags, struct client *c, const char *cmd,
|
2009-10-10 15:03:01 +00:00
|
|
|
void (*callbackfn)(struct job *), void (*freefn)(void *), void *data)
|
|
|
|
{
|
|
|
|
struct job *job;
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2009-10-10 15:03:01 +00:00
|
|
|
job = xmalloc(sizeof *job);
|
|
|
|
job->cmd = xstrdup(cmd);
|
2009-10-10 18:42:14 +00:00
|
|
|
job->pid = -1;
|
2009-11-01 23:20:37 +00:00
|
|
|
job->status = 0;
|
2009-10-10 15:03:01 +00:00
|
|
|
|
|
|
|
job->client = c;
|
|
|
|
|
|
|
|
job->fd = -1;
|
2009-11-04 21:04:43 +00:00
|
|
|
job->event = NULL;
|
2009-10-10 15:03:01 +00:00
|
|
|
|
|
|
|
job->callbackfn = callbackfn;
|
|
|
|
job->freefn = freefn;
|
|
|
|
job->data = data;
|
|
|
|
|
2009-11-04 21:04:43 +00:00
|
|
|
job->flags = flags;
|
2009-10-11 07:20:16 +00:00
|
|
|
|
2009-10-11 07:30:07 +00:00
|
|
|
if (jobs != NULL)
|
|
|
|
RB_INSERT(jobs, jobs, job);
|
2009-10-10 18:42:14 +00:00
|
|
|
SLIST_INSERT_HEAD(&all_jobs, job, lentry);
|
2009-11-01 23:20:37 +00:00
|
|
|
|
2009-10-10 15:03:01 +00:00
|
|
|
return (job);
|
|
|
|
}
|
|
|
|
|
2009-11-01 23:20:37 +00:00
|
|
|
/* Remove job from tree and free. */
|
|
|
|
void
|
|
|
|
job_remove(struct jobs *jobs, struct job *job)
|
|
|
|
{
|
|
|
|
if (jobs != NULL)
|
|
|
|
RB_REMOVE(jobs, jobs, job);
|
|
|
|
job_free(job);
|
|
|
|
}
|
|
|
|
|
2009-10-10 15:03:01 +00:00
|
|
|
/* Kill and free an individual job. */
|
|
|
|
void
|
|
|
|
job_free(struct job *job)
|
|
|
|
{
|
|
|
|
job_kill(job);
|
|
|
|
|
2009-10-11 08:58:05 +00:00
|
|
|
SLIST_REMOVE(&all_jobs, job, job, lentry);
|
2009-10-10 15:03:01 +00:00
|
|
|
xfree(job->cmd);
|
|
|
|
|
2009-10-11 07:30:07 +00:00
|
|
|
if (job->freefn != NULL && job->data != NULL)
|
|
|
|
job->freefn(job->data);
|
|
|
|
|
2009-10-10 15:03:01 +00:00
|
|
|
if (job->fd != -1)
|
|
|
|
close(job->fd);
|
2009-11-04 21:04:43 +00:00
|
|
|
if (job->event != NULL)
|
|
|
|
bufferevent_free(job->event);
|
2009-10-10 15:03:01 +00:00
|
|
|
|
|
|
|
xfree(job);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start a job running, if it isn't already. */
|
|
|
|
int
|
|
|
|
job_run(struct job *job)
|
|
|
|
{
|
2011-01-08 01:52:36 +00:00
|
|
|
int nullfd, out[2];
|
2009-10-10 15:03:01 +00:00
|
|
|
|
2009-11-04 21:04:43 +00:00
|
|
|
if (job->fd != -1 || job->pid != -1)
|
2009-10-10 15:03:01 +00:00
|
|
|
return (0);
|
|
|
|
|
2009-11-04 21:04:43 +00:00
|
|
|
if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, out) != 0)
|
2009-10-10 15:03:01 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
switch (job->pid = fork()) {
|
|
|
|
case -1:
|
|
|
|
return (-1);
|
|
|
|
case 0: /* child */
|
2010-08-19 18:29:01 +00:00
|
|
|
clear_signals(1);
|
2010-04-04 19:02:09 +00:00
|
|
|
|
|
|
|
environ_push(&global_environ);
|
2009-10-10 15:03:01 +00:00
|
|
|
|
2009-10-21 07:24:23 +00:00
|
|
|
if (dup2(out[1], STDOUT_FILENO) == -1)
|
2009-10-20 22:15:32 +00:00
|
|
|
fatal("dup2 failed");
|
2009-10-21 07:24:23 +00:00
|
|
|
if (out[1] != STDOUT_FILENO)
|
|
|
|
close(out[1]);
|
|
|
|
close(out[0]);
|
2009-10-20 22:15:32 +00:00
|
|
|
|
2009-10-21 07:24:23 +00:00
|
|
|
nullfd = open(_PATH_DEVNULL, O_RDWR, 0);
|
2009-10-10 15:03:01 +00:00
|
|
|
if (nullfd < 0)
|
|
|
|
fatal("open failed");
|
|
|
|
if (dup2(nullfd, STDIN_FILENO) == -1)
|
|
|
|
fatal("dup2 failed");
|
|
|
|
if (dup2(nullfd, STDERR_FILENO) == -1)
|
|
|
|
fatal("dup2 failed");
|
|
|
|
if (nullfd != STDIN_FILENO && nullfd != STDERR_FILENO)
|
|
|
|
close(nullfd);
|
|
|
|
|
2010-10-16 08:31:55 +00:00
|
|
|
closefrom(STDERR_FILENO + 1);
|
|
|
|
|
2009-10-10 15:03:01 +00:00
|
|
|
execl(_PATH_BSHELL, "sh", "-c", job->cmd, (char *) NULL);
|
|
|
|
fatal("execl failed");
|
|
|
|
default: /* parent */
|
2009-10-21 07:24:23 +00:00
|
|
|
close(out[1]);
|
2009-10-10 15:03:01 +00:00
|
|
|
|
2009-10-21 07:24:23 +00:00
|
|
|
job->fd = out[0];
|
2011-01-08 01:52:36 +00:00
|
|
|
setblocking(job->fd, 0);
|
2009-10-10 15:03:01 +00:00
|
|
|
|
2009-11-04 21:04:43 +00:00
|
|
|
if (job->event != NULL)
|
|
|
|
bufferevent_free(job->event);
|
2009-12-03 22:50:09 +00:00
|
|
|
job->event =
|
2009-11-04 21:04:43 +00:00
|
|
|
bufferevent_new(job->fd, NULL, NULL, job_callback, job);
|
|
|
|
bufferevent_enable(job->event, EV_READ);
|
2009-10-10 15:03:01 +00:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-04 21:04:43 +00:00
|
|
|
/* Job buffer error callback. */
|
2009-11-26 21:37:13 +00:00
|
|
|
/* ARGSUSED */
|
2009-11-04 21:04:43 +00:00
|
|
|
void
|
|
|
|
job_callback(unused struct bufferevent *bufev, unused short events, void *data)
|
|
|
|
{
|
|
|
|
struct job *job = data;
|
|
|
|
|
|
|
|
bufferevent_disable(job->event, EV_READ);
|
|
|
|
close(job->fd);
|
|
|
|
job->fd = -1;
|
|
|
|
|
2009-11-04 21:10:49 +00:00
|
|
|
if (job->pid == -1) {
|
|
|
|
if (job->callbackfn != NULL)
|
|
|
|
job->callbackfn(job);
|
|
|
|
if ((!job->flags & JOB_PERSIST))
|
|
|
|
job_free(job);
|
|
|
|
}
|
2009-11-04 21:04:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Job died (waitpid() returned its pid). */
|
|
|
|
void
|
|
|
|
job_died(struct job *job, int status)
|
|
|
|
{
|
|
|
|
job->status = status;
|
|
|
|
job->pid = -1;
|
2009-12-03 22:50:09 +00:00
|
|
|
|
2009-11-04 21:10:49 +00:00
|
|
|
if (job->fd == -1) {
|
|
|
|
if (job->callbackfn != NULL)
|
|
|
|
job->callbackfn(job);
|
|
|
|
if ((!job->flags & JOB_PERSIST))
|
|
|
|
job_free(job);
|
|
|
|
}
|
2009-11-04 21:04:43 +00:00
|
|
|
}
|
|
|
|
|
2009-10-10 15:03:01 +00:00
|
|
|
/* Kill a job. */
|
|
|
|
void
|
|
|
|
job_kill(struct job *job)
|
|
|
|
{
|
|
|
|
if (job->pid == -1)
|
|
|
|
return;
|
|
|
|
kill(job->pid, SIGTERM);
|
|
|
|
job->pid = -1;
|
|
|
|
}
|