summaryrefslogtreecommitdiff
path: root/lib/util/util_runcmd.c
blob: dea3ff91b1d5590ffdf588543d30a3d1be43e2b9 (plain)
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/*
   Unix SMB/CIFS mplementation.

   run a child command

   Copyright (C) Andrew Tridgell 2010

   This program 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.

   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.

*/

/*
  this runs a child command with stdout and stderr going to the Samba
  log
 */

#include "includes.h"
#include "system/filesys.h"
#include "lib/tevent/tevent.h"
#include "libcli/composite/composite.h"

struct samba_runcmd {
	int stdout_log_level;
	int stderr_log_level;
	struct tevent_fd *fde_stdout;
	struct tevent_fd *fde_stderr;
	int fd_stdout, fd_stderr;
	char *arg0;
	pid_t pid;
	char buf[1024];
	uint16_t buf_used;
};

/*
  called when a command times out
 */
static void runcmd_timeout(struct tevent_context *ev,
			   struct tevent_timer *te,
			   struct timeval current_time,
			   void *private_data)
{
	struct composite_context *c = talloc_get_type_abort(private_data, struct composite_context);
	struct samba_runcmd *r = talloc_get_type_abort(c->private_data, struct samba_runcmd);
	kill(r->pid, SIGKILL);
	waitpid(r->pid, NULL, 0);
	talloc_free(r->fde_stderr);
	talloc_free(r->fde_stdout);
	composite_error(c, NT_STATUS_IO_TIMEOUT);
}

/*
  handle stdout/stderr from the child
 */
static void runcmd_io_handler(struct tevent_context *ev,
			      struct tevent_fd *fde,
			      uint16_t flags,
			      void *private_data)
{
	struct composite_context *c = talloc_get_type_abort(private_data, struct composite_context);
	struct samba_runcmd *r = talloc_get_type_abort(c->private_data, struct samba_runcmd);
	int level;
	char *p;
	int n, fd;

	if (fde == r->fde_stdout) {
		level = r->stdout_log_level;
		fd = r->fd_stdout;
	} else {
		level = r->stderr_log_level;
		fd = r->fd_stderr;
	}

	if (!(flags & TEVENT_FD_READ)) {
		return;
	}

	n = read(fd, &r->buf[r->buf_used],
		 sizeof(r->buf) - r->buf_used);
	if (n > 0) {
		r->buf_used += n;
	} else if (n == 0) {
		if (fde == r->fde_stdout) {
			talloc_free(fde);
			r->fde_stdout = NULL;
		}
		if (fde == r->fde_stderr) {
			talloc_free(fde);
			r->fde_stderr = NULL;
		}
		if (r->fde_stdout == NULL &&
		    r->fde_stderr == NULL) {
			int status;
			/* the child has closed both stdout and
			 * stderr, assume its dead */
			pid_t pid = waitpid(r->pid, &status, 0);
			if (pid != r->pid) {
				DEBUG(0,("Error in waitpid() for child %s\n", r->arg0));
				composite_error(c, map_nt_error_from_unix(errno));
				return;
			}
			status = WEXITSTATUS(status);
			DEBUG(3,("Child %s exited with status %d\n", r->arg0, status));
			if (status == 0) {
				composite_done(c);
			} else {
				composite_error(c, map_nt_error_from_unix(status));
			}
			return;
		}
		return;
	}

	while (r->buf_used > 0 &&
	       (p = memchr(r->buf, '\n', r->buf_used)) != NULL) {
		int n1 = (p - r->buf)+1;
		int n2 = n1 - 1;
		/* swallow \r from child processes */
		if (n2 > 0 && r->buf[n2-1] == '\r') {
			n2--;
		}
		DEBUG(level,("%s: %*.*s\n", r->arg0, n2, n2, r->buf));
		memmove(r->buf, p+1, sizeof(r->buf) - n1);
		r->buf_used -= n1;
	}

	/* the buffer could have completely filled - unfortunately we have
	   no choice but to dump it out straight away */
	if (r->buf_used == sizeof(r->buf)) {
		DEBUG(level,("%s: %*.*s\n", r->arg0, r->buf_used, r->buf_used, r->buf));
		r->buf_used = 0;
	}
}


/*
  run a command as a child process, with a timeout.

  any stdout/stderr from the child will appear in the Samba logs with
  the specified log levels
 */
struct composite_context *samba_runcmd(struct tevent_context *ev,
				       TALLOC_CTX *mem_ctx,
				       struct timeval timeout,
				       int stdout_log_level,
				       int stderr_log_level,
				       const char **argv0, ...)
{
	struct samba_runcmd *r;
	int p1[2], p2[2];
	char **argv;
	int ret;
	va_list ap;
	struct composite_context *c;

	c = composite_create(mem_ctx, ev);
	if (c == NULL) return NULL;

	r = talloc_zero(c, struct samba_runcmd);
	if (composite_nomem(r, c)) return c;

	c->private_data = r;

	r->stdout_log_level = stdout_log_level;
	r->stderr_log_level = stderr_log_level;

	r->arg0 = talloc_strdup(r, argv0[0]);
	if (composite_nomem(r->arg0, c)) return c;

	if (pipe(p1) != 0) {
		composite_error(c, map_nt_error_from_unix(errno));
		return c;
	}
	if (pipe(p2) != 0) {
		composite_error(c, map_nt_error_from_unix(errno));
		close(p1[0]);
		close(p1[1]);
		return c;
	}

	r->pid = fork();
	if (r->pid == (pid_t)-1) {
		composite_error(c, map_nt_error_from_unix(errno));
		close(p1[0]);
		close(p1[1]);
		close(p2[0]);
		close(p2[1]);
		return c;
	}

	if (r->pid != 0) {
		/* the parent */
		close(p1[1]);
		close(p2[1]);
		r->fd_stdout = p1[0];
		r->fd_stderr = p2[0];
		set_blocking(r->fd_stdout, false);
		set_blocking(r->fd_stderr, false);
		r->fde_stdout = tevent_add_fd(ev, r, r->fd_stdout, TEVENT_FD_READ, runcmd_io_handler, c);
		tevent_fd_set_auto_close(r->fde_stdout);
		r->fde_stderr = tevent_add_fd(ev, r, r->fd_stderr, TEVENT_FD_READ, runcmd_io_handler, c);
		tevent_fd_set_auto_close(r->fde_stderr);
		if (!timeval_is_zero(&timeout)) {
			tevent_add_timer(ev, r, timeout, runcmd_timeout, c);
		}
		return c;
	}

	/* the child */
	close(p1[0]);
	close(p2[0]);
	close(0);
	close(1);
	close(2);

	/* setup for logging to go to the parents debug log */
	open("/dev/null", O_RDONLY); /* for stdin */
	dup2(p1[1], 1);
	dup2(p2[1], 2);

	argv = str_list_copy(r, argv0);
	if (!argv) {
		fprintf(stderr, "Out of memory in child\n");
		_exit(255);
	}

	va_start(ap, argv0);
	while (1) {
		char *arg = va_arg(ap, char *);
		if (arg == NULL) break;
		argv = discard_const_p(char *, str_list_add((const char **)argv, arg));
		if (!argv) {
			fprintf(stderr, "Out of memory in child\n");
			_exit(255);
		}
	}
	va_end(ap);

	ret = execv(r->arg0, argv);
	fprintf(stderr, "Failed to exec child - %s\n", strerror(errno));
	_exit(255);
	return NULL;
}