1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
/* Copyright (c) 2002,2003,2004,2009 James M. Kretchmar
*
* This file is part of Owl.
*
* Owl is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Owl is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Owl. If not, see <http://www.gnu.org/licenses/>.
*
* ---------------------------------------------------------------
*
* As of Owl version 2.1.12 there are patches contributed by
* developers of the branched BarnOwl project, Copyright (c)
* 2006-2009 The BarnOwl Developers. All rights reserved.
*/
#include "owl.h"
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_FILIO_H
#include <sys/filio.h>
#endif
#include <sys/wait.h>
static const char fileIdent[] = "$Id: popexec.c,v 1.5 2009/03/29 12:38:22 kretch Exp $";
/* starts up popexec in a new viewwin */
owl_popexec *owl_popexec_new(char *command)
{
owl_popexec *pe;
owl_popwin *pw;
owl_viewwin *v;
int pipefds[2], child_write_fd, parent_read_fd;
int pid;
pe = owl_malloc(sizeof(owl_popexec));
if (!pe) return NULL;
pe->winactive=0;
pe->pid=0;
pe->refcount=0;
pw=owl_global_get_popwin(&g);
pe->vwin=v=owl_global_get_viewwin(&g);
owl_popwin_up(pw);
owl_viewwin_init_text(v, owl_popwin_get_curswin(pw),
owl_popwin_get_lines(pw), owl_popwin_get_cols(pw),
"");
owl_popwin_refresh(pw);
owl_viewwin_redisplay(v, 0);
owl_global_set_needrefresh(&g);
owl_viewwin_set_onclose_hook(v, owl_popexec_viewwin_onclose, pe);
pe->refcount++;
if (0 != pipe(pipefds)) {
owl_function_error("owl_function_popless_exec: pipe failed\n");
return NULL;
}
parent_read_fd = pipefds[0];
child_write_fd = pipefds[1];
pid = fork();
if (pid == -1) {
close(pipefds[0]);
close(pipefds[1]);
owl_function_error("owl_function_popless_exec: fork failed\n");
return NULL;
} else if (pid != 0) {
close(child_write_fd);
/* still in owl */
pe->pid=pid;
pe->winactive=1;
pe->dispatch.fd = parent_read_fd;
pe->dispatch.cfunc = owl_popexec_inputhandler;
pe->dispatch.destroy = owl_popexec_free_dispatch;
pe->dispatch.data = pe;
owl_select_add_dispatch(&pe->dispatch);
pe->refcount++;
} else {
/* in the child process */
char *argv[4];
int i;
int fdlimit = sysconf(_SC_OPEN_MAX);
for (i=0; i<fdlimit; i++) {
if (i!=child_write_fd) close(i);
}
dup2(child_write_fd, 1 /*stdout*/);
dup2(child_write_fd, 2 /*stderr*/);
close(child_write_fd);
argv[0] = "sh";
argv[1] = "-c";
argv[2] = command;
argv[3] = 0;
execv("/bin/sh", argv);
_exit(127);
}
return pe;
}
void owl_popexec_inputhandler(owl_dispatch *d)
{
owl_popexec *pe = d->data;
int navail, bread, rv_navail;
char *buf;
int status;
if (!pe) return;
/* If pe->winactive is 0 then the vwin has closed.
* If pe->pid is 0 then the child has already been reaped.
* if d->fd is -1 then the fd has been closed out.
* Under these cases we want to get to a state where:
* - data read until end if child running
* - child reaped
* - fd closed
* - callback removed
*/
/* the viewwin has closed */
if (!pe->pid && !pe->winactive) {
owl_select_remove_dispatch(d->fd);
return;
}
if (0 != (rv_navail = ioctl(d->fd, FIONREAD, (void*)&navail))) {
owl_function_debugmsg("ioctl error");
}
/* check to see if the child has ended gracefully and no more data is
* ready to be read... */
if (navail==0 && pe->pid>0 && waitpid(pe->pid, &status, WNOHANG) > 0) {
owl_function_debugmsg("waitpid got child status: <%d>\n", status);
pe->pid = 0;
if (pe->winactive) {
owl_viewwin_append_text(pe->vwin, "\n");
owl_viewwin_redisplay(pe->vwin, 1);
}
owl_select_remove_dispatch(d->fd);
return;
}
if (d->fd<0 || !pe->pid || !pe->winactive || rv_navail) {
owl_function_error("popexec should not have reached this point");
return;
}
if (navail<=0) return;
if (navail>1024) { navail = 1024; }
buf = owl_malloc(navail+1);
owl_function_debugmsg("about to read %d", navail);
bread = read(d->fd, buf, navail);
if (bread<0) {
perror("read");
owl_function_debugmsg("read error");
}
if (buf[navail-1] != '\0') {
buf[navail] = '\0';
}
owl_function_debugmsg("got data: <%s>", buf);
if (pe->winactive) {
owl_viewwin_append_text(pe->vwin, buf);
owl_viewwin_redisplay(pe->vwin, 1);
}
owl_free(buf);
}
void owl_popexec_free_dispatch(owl_dispatch *d)
{
owl_popexec *pe = d->data;
close(d->fd);
owl_popexec_unref(pe);
}
void owl_popexec_viewwin_onclose(owl_viewwin *vwin, void *data)
{
owl_popexec *pe = (owl_popexec*)data;
int status, rv;
pe->winactive = 0;
if (pe->dispatch.fd>0) {
owl_select_remove_dispatch(pe->dispatch.fd);
}
if (pe->pid) {
/* TODO: we should handle the case where SIGTERM isn't good enough */
rv = kill(pe->pid, SIGTERM);
owl_function_debugmsg("kill of pid %d returned %d", pe->pid, rv);
rv = waitpid(pe->pid, &status, 0);
owl_function_debugmsg("waidpid returned %d, status %d", rv, status);
pe->pid = 0;
}
owl_function_debugmsg("unref of %p from onclose", pe);
owl_popexec_unref(pe);
}
void owl_popexec_unref(owl_popexec *pe)
{
owl_function_debugmsg("unref of %p was %d", pe, pe->refcount);
pe->refcount--;
if (pe->refcount<=0) {
owl_function_debugmsg("doing free of %p", pe);
owl_free(pe);
}
}
|