2 Unix SMB/CIFS mplementation.
6 Copyright (C) Andrew Tridgell 2010
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 this runs a child command with stdout and stderr going to the Samba
29 #include "system/filesys.h"
31 #include "../lib/util/tevent_unix.h"
33 struct samba_runcmd_state
{
36 struct tevent_fd
*fde_stdout
;
37 struct tevent_fd
*fde_stderr
;
38 int fd_stdout
, fd_stderr
;
45 static int samba_runcmd_state_destructor(struct samba_runcmd_state
*state
)
48 kill(state
->pid
, SIGKILL
);
49 waitpid(state
->pid
, NULL
, 0);
55 static void samba_runcmd_io_handler(struct tevent_context
*ev
,
56 struct tevent_fd
*fde
,
61 run a command as a child process, with a timeout.
63 any stdout/stderr from the child will appear in the Samba logs with
64 the specified log levels
66 struct tevent_req
*samba_runcmd_send(TALLOC_CTX
*mem_ctx
,
67 struct tevent_context
*ev
,
68 struct timeval endtime
,
71 const char * const *argv0
, ...)
73 struct tevent_req
*req
;
74 struct samba_runcmd_state
*state
;
79 req
= tevent_req_create(mem_ctx
, &state
,
80 struct samba_runcmd_state
);
85 state
->stdout_log_level
= stdout_log_level
;
86 state
->stderr_log_level
= stderr_log_level
;
88 state
->arg0
= talloc_strdup(state
, argv0
[0]);
89 if (tevent_req_nomem(state
->arg0
, req
)) {
90 return tevent_req_post(req
, ev
);
94 tevent_req_error(req
, errno
);
95 return tevent_req_post(req
, ev
);
100 tevent_req_error(req
, errno
);
101 return tevent_req_post(req
, ev
);
105 if (state
->pid
== (pid_t
)-1) {
110 tevent_req_error(req
, errno
);
111 return tevent_req_post(req
, ev
);
114 if (state
->pid
!= 0) {
118 state
->fd_stdout
= p1
[0];
119 state
->fd_stderr
= p2
[0];
120 set_blocking(state
->fd_stdout
, false);
121 set_blocking(state
->fd_stderr
, false);
123 talloc_set_destructor(state
, samba_runcmd_state_destructor
);
125 state
->fde_stdout
= tevent_add_fd(ev
, state
,
128 samba_runcmd_io_handler
,
130 if (tevent_req_nomem(state
->fde_stdout
, req
)) {
133 return tevent_req_post(req
, ev
);
135 tevent_fd_set_auto_close(state
->fde_stdout
);
137 state
->fde_stderr
= tevent_add_fd(ev
, state
,
140 samba_runcmd_io_handler
,
142 if (tevent_req_nomem(state
->fde_stdout
, req
)) {
144 return tevent_req_post(req
, ev
);
146 tevent_fd_set_auto_close(state
->fde_stderr
);
148 if (!timeval_is_zero(&endtime
)) {
149 tevent_req_set_endtime(req
, ev
, endtime
);
162 /* we want to ensure that all of the network sockets we had
164 tevent_re_initialise(ev
);
166 /* setup for logging to go to the parents debug log */
167 open("/dev/null", O_RDONLY
); /* for stdin */
171 argv
= str_list_copy(state
, discard_const_p(const char *, argv0
));
173 fprintf(stderr
, "Out of memory in child\n");
179 char *arg
= va_arg(ap
, char *);
180 if (arg
== NULL
) break;
181 argv
= discard_const_p(char *, str_list_add((const char **)argv
, arg
));
183 fprintf(stderr
, "Out of memory in child\n");
189 (void)execvp(state
->arg0
, argv
);
190 fprintf(stderr
, "Failed to exec child - %s\n", strerror(errno
));
196 handle stdout/stderr from the child
198 static void samba_runcmd_io_handler(struct tevent_context
*ev
,
199 struct tevent_fd
*fde
,
203 struct tevent_req
*req
= talloc_get_type_abort(private_data
,
205 struct samba_runcmd_state
*state
= tevent_req_data(req
,
206 struct samba_runcmd_state
);
211 if (fde
== state
->fde_stdout
) {
212 level
= state
->stdout_log_level
;
213 fd
= state
->fd_stdout
;
215 level
= state
->stderr_log_level
;
216 fd
= state
->fd_stderr
;
219 if (!(flags
& TEVENT_FD_READ
)) {
223 n
= read(fd
, &state
->buf
[state
->buf_used
],
224 sizeof(state
->buf
) - state
->buf_used
);
226 state
->buf_used
+= n
;
228 if (fde
== state
->fde_stdout
) {
230 state
->fde_stdout
= NULL
;
232 if (fde
== state
->fde_stderr
) {
234 state
->fde_stderr
= NULL
;
236 if (state
->fde_stdout
== NULL
&&
237 state
->fde_stderr
== NULL
) {
239 /* the child has closed both stdout and
240 * stderr, assume its dead */
241 pid_t pid
= waitpid(state
->pid
, &status
, 0);
242 if (pid
!= state
->pid
) {
243 if (errno
== ECHILD
) {
244 /* this happens when the
245 parent has set SIGCHLD to
246 SIG_IGN. In that case we
248 information for the child
249 via its logging. We should
250 stop using SIG_IGN on
251 SIGCHLD in the standard
254 tevent_req_done(req
);
257 DEBUG(0,("Error in waitpid() for child %s - %s \n",
258 state
->arg0
, strerror(errno
)));
262 tevent_req_error(req
, errno
);
265 status
= WEXITSTATUS(status
);
266 DEBUG(3,("Child %s exited with status %d - %s\n",
267 state
->arg0
, status
, strerror(status
)));
269 tevent_req_error(req
, status
);
273 tevent_req_done(req
);
279 while (state
->buf_used
> 0 &&
280 (p
= (char *)memchr(state
->buf
, '\n', state
->buf_used
)) != NULL
) {
281 int n1
= (p
- state
->buf
)+1;
283 /* swallow \r from child processes */
284 if (n2
> 0 && state
->buf
[n2
-1] == '\r') {
287 DEBUG(level
,("%s: %*.*s\n", state
->arg0
, n2
, n2
, state
->buf
));
288 memmove(state
->buf
, p
+1, sizeof(state
->buf
) - n1
);
289 state
->buf_used
-= n1
;
292 /* the buffer could have completely filled - unfortunately we have
293 no choice but to dump it out straight away */
294 if (state
->buf_used
== sizeof(state
->buf
)) {
295 DEBUG(level
,("%s: %*.*s\n",
296 state
->arg0
, state
->buf_used
,
297 state
->buf_used
, state
->buf
));
302 int samba_runcmd_recv(struct tevent_req
*req
, int *perrno
)
304 if (tevent_req_is_unix_error(req
, perrno
)) {
305 tevent_req_received(req
);
309 tevent_req_received(req
);