4 * Copyright (c) 2009 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/ioctl.h>
21 #include <sys/socket.h>
35 * Job scheduling. Run queued commands in the background and record their
39 static void job_read_callback(struct bufferevent
*, void *);
40 static void job_write_callback(struct bufferevent
*, void *);
41 static void job_error_callback(struct bufferevent
*, short, void *);
55 char tty
[TTY_NAME_MAX
];
59 struct bufferevent
*event
;
61 job_update_cb updatecb
;
62 job_complete_cb completecb
;
66 LIST_ENTRY(job
) entry
;
70 static LIST_HEAD(joblist
, job
) all_jobs
= LIST_HEAD_INITIALIZER(all_jobs
);
72 /* Start a job running. */
74 job_run(const char *cmd
, int argc
, char **argv
, struct environ
*e
, struct session
*s
,
75 const char *cwd
, job_update_cb updatecb
, job_complete_cb completecb
,
76 job_free_cb freecb
, void *data
, int flags
, int sx
, int sy
)
81 int nullfd
, out
[2], master
;
85 char **argvp
, tty
[TTY_NAME_MAX
];
88 * Do not set TERM during .tmux.conf, it is nice to be able to use
89 * if-shell to decide on default-terminal based on outside TERM.
91 env
= environ_for_session(s
, !cfg_finished
);
96 sigprocmask(SIG_BLOCK
, &set
, &oldset
);
98 if (flags
& JOB_PTY
) {
99 memset(&ws
, 0, sizeof ws
);
102 pid
= fdforkpty(ptm_fd
, &master
, tty
, NULL
, &ws
);
104 if (socketpair(AF_UNIX
, SOCK_STREAM
, PF_UNSPEC
, out
) != 0)
109 cmd_log_argv(argc
, argv
, "%s:", __func__
);
110 log_debug("%s: cwd=%s", __func__
, cwd
== NULL
? "" : cwd
);
112 log_debug("%s: cmd=%s, cwd=%s", __func__
, cmd
,
113 cwd
== NULL
? "" : cwd
);
118 if (~flags
& JOB_PTY
) {
124 proc_clear_signals(server_proc
, 1);
125 sigprocmask(SIG_SETMASK
, &oldset
, NULL
);
127 if ((cwd
== NULL
|| chdir(cwd
) != 0) &&
128 ((home
= find_home()) == NULL
|| chdir(home
) != 0) &&
130 fatal("chdir failed");
135 if (~flags
& JOB_PTY
) {
136 if (dup2(out
[1], STDIN_FILENO
) == -1)
137 fatal("dup2 failed");
138 if (dup2(out
[1], STDOUT_FILENO
) == -1)
139 fatal("dup2 failed");
140 if (out
[1] != STDIN_FILENO
&& out
[1] != STDOUT_FILENO
)
144 nullfd
= open(_PATH_DEVNULL
, O_RDWR
);
146 fatal("open failed");
147 if (dup2(nullfd
, STDERR_FILENO
) == -1)
148 fatal("dup2 failed");
149 if (nullfd
!= STDERR_FILENO
)
152 closefrom(STDERR_FILENO
+ 1);
155 execl(_PATH_BSHELL
, "sh", "-c", cmd
, (char *) NULL
);
156 fatal("execl failed");
158 argvp
= cmd_copy_argv(argc
, argv
);
159 execvp(argvp
[0], argvp
);
160 fatal("execvp failed");
164 sigprocmask(SIG_SETMASK
, &oldset
, NULL
);
167 job
= xmalloc(sizeof *job
);
168 job
->state
= JOB_RUNNING
;
172 job
->cmd
= xstrdup(cmd
);
174 job
->cmd
= cmd_stringify_argv(argc
, argv
);
176 strlcpy(job
->tty
, tty
, sizeof job
->tty
);
179 LIST_INSERT_HEAD(&all_jobs
, job
, entry
);
181 job
->updatecb
= updatecb
;
182 job
->completecb
= completecb
;
183 job
->freecb
= freecb
;
186 if (~flags
& JOB_PTY
) {
191 setblocking(job
->fd
, 0);
193 job
->event
= bufferevent_new(job
->fd
, job_read_callback
,
194 job_write_callback
, job_error_callback
, job
);
195 if (job
->event
== NULL
)
196 fatalx("out of memory");
197 bufferevent_enable(job
->event
, EV_READ
|EV_WRITE
);
199 log_debug("run job %p: %s, pid %ld", job
, job
->cmd
, (long) job
->pid
);
203 sigprocmask(SIG_SETMASK
, &oldset
, NULL
);
208 /* Take job's file descriptor and free the job. */
210 job_transfer(struct job
*job
, pid_t
*pid
, char *tty
, size_t ttylen
)
214 log_debug("transfer job %p: %s", job
, job
->cmd
);
219 strlcpy(tty
, job
->tty
, ttylen
);
221 LIST_REMOVE(job
, entry
);
224 if (job
->freecb
!= NULL
&& job
->data
!= NULL
)
225 job
->freecb(job
->data
);
227 if (job
->event
!= NULL
)
228 bufferevent_free(job
->event
);
234 /* Kill and free an individual job. */
236 job_free(struct job
*job
)
238 log_debug("free job %p: %s", job
, job
->cmd
);
240 LIST_REMOVE(job
, entry
);
243 if (job
->freecb
!= NULL
&& job
->data
!= NULL
)
244 job
->freecb(job
->data
);
247 kill(job
->pid
, SIGTERM
);
248 if (job
->event
!= NULL
)
249 bufferevent_free(job
->event
);
258 job_resize(struct job
*job
, u_int sx
, u_int sy
)
262 if (job
->fd
== -1 || (~job
->flags
& JOB_PTY
))
265 log_debug("resize job %p: %ux%u", job
, sx
, sy
);
267 memset(&ws
, 0, sizeof ws
);
270 if (ioctl(job
->fd
, TIOCSWINSZ
, &ws
) == -1)
271 fatal("ioctl failed");
274 /* Job buffer read callback. */
276 job_read_callback(__unused
struct bufferevent
*bufev
, void *data
)
278 struct job
*job
= data
;
280 if (job
->updatecb
!= NULL
)
285 * Job buffer write callback. Fired when the buffer falls below watermark
286 * (default is empty). If all the data has been written, disable the write
290 job_write_callback(__unused
struct bufferevent
*bufev
, void *data
)
292 struct job
*job
= data
;
293 size_t len
= EVBUFFER_LENGTH(EVBUFFER_OUTPUT(job
->event
));
295 log_debug("job write %p: %s, pid %ld, output left %zu", job
, job
->cmd
,
296 (long) job
->pid
, len
);
298 if (len
== 0 && (~job
->flags
& JOB_KEEPWRITE
)) {
299 shutdown(job
->fd
, SHUT_WR
);
300 bufferevent_disable(job
->event
, EV_WRITE
);
304 /* Job buffer error callback. */
306 job_error_callback(__unused
struct bufferevent
*bufev
, __unused
short events
,
309 struct job
*job
= data
;
311 log_debug("job error %p: %s, pid %ld", job
, job
->cmd
, (long) job
->pid
);
313 if (job
->state
== JOB_DEAD
) {
314 if (job
->completecb
!= NULL
)
315 job
->completecb(job
);
318 bufferevent_disable(job
->event
, EV_READ
);
319 job
->state
= JOB_CLOSED
;
323 /* Job died (waitpid() returned its pid). */
325 job_check_died(pid_t pid
, int status
)
329 LIST_FOREACH(job
, &all_jobs
, entry
) {
335 if (WIFSTOPPED(status
)) {
336 if (WSTOPSIG(status
) == SIGTTIN
|| WSTOPSIG(status
) == SIGTTOU
)
338 killpg(job
->pid
, SIGCONT
);
341 log_debug("job died %p: %s, pid %ld", job
, job
->cmd
, (long) job
->pid
);
343 job
->status
= status
;
345 if (job
->state
== JOB_CLOSED
) {
346 if (job
->completecb
!= NULL
)
347 job
->completecb(job
);
351 job
->state
= JOB_DEAD
;
355 /* Get job status. */
357 job_get_status(struct job
*job
)
359 return (job
->status
);
364 job_get_data(struct job
*job
)
371 job_get_event(struct job
*job
)
382 LIST_FOREACH(job
, &all_jobs
, entry
) {
384 kill(job
->pid
, SIGTERM
);
388 /* Are any jobs still running? */
390 job_still_running(void)
394 LIST_FOREACH(job
, &all_jobs
, entry
) {
395 if ((~job
->flags
& JOB_NOWAIT
) && job
->state
== JOB_RUNNING
)
401 /* Print job summary. */
403 job_print_summary(struct cmdq_item
*item
, int blank
)
408 LIST_FOREACH(job
, &all_jobs
, entry
) {
410 cmdq_print(item
, "%s", "");
413 cmdq_print(item
, "Job %u: %s [fd=%d, pid=%ld, status=%d]",
414 n
, job
->cmd
, job
->fd
, (long)job
->pid
, job
->status
);