s3: smbd: rename_internals_fsp() has to reopen the parent directory of the target...
[Samba.git] / lib / texpect / texpect.c
blob1a6ebf486ae687223a4a873b05668136089b8004
1 /*
2 * Copyright (c) 2008 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
34 #include "replace.h"
35 #include "system/filesys.h"
36 #include "system/wait.h"
37 #include "lib/util/sys_rw.h"
39 #ifdef HAVE_PTY_H
40 #include <pty.h>
41 #endif
42 #ifdef HAVE_UTIL_H
43 #include <util.h>
44 #endif
45 #ifdef HAVE_BSD_LIBUTIL_H
46 #include <bsd/libutil.h>
47 #elif defined HAVE_LIBUTIL_H
48 #include <libutil.h>
49 #endif
51 #ifdef STREAMSPTY
52 #include <stropts.h>
53 #endif /* STREAMPTY */
55 #include <popt.h>
57 #ifdef HAVE_ERR_H
58 #include <err.h>
59 #else
60 const char progname[] = "unknown program";
62 static void err(int eval, const char *fmt, ...) PRINTF_ATTRIBUTE(2, 0);
63 static void errx(int eval, const char *fmt, ...) PRINTF_ATTRIBUTE(2, 0);
65 static void err(int eval, const char *fmt, ...)
67 int err_errno = errno;
68 va_list ap;
70 fprintf(stderr, "%s: ", progname);
71 va_start(ap, fmt);
72 vfprintf(stderr, fmt, ap);
73 va_end(ap);
74 fprintf(stderr, ": %s\n", strerror(err_errno));
75 exit(eval);
78 static void errx(int eval, const char *fmt, ...)
80 va_list ap;
82 fprintf(stderr, "%s: ", progname);
83 va_start(ap, fmt);
84 vfprintf(stderr, fmt, ap);
85 va_end(ap);
86 fprintf(stderr, "\n");
87 exit(eval);
90 #endif
92 struct command {
93 enum { CMD_EXPECT = 0, CMD_SEND, CMD_PASSWORD } type;
94 unsigned int lineno;
95 char *str;
96 struct command *next;
103 static struct command *commands, **next = &commands;
105 static sig_atomic_t alarmset = 0;
107 static int opt_timeout = 10;
108 static int opt_verbose;
110 static int master;
111 static int slave;
112 static char line[256] = { 0 };
114 static void caught_signal(int signo)
116 alarmset = signo;
120 static void open_pty(void)
122 #ifdef _AIX
123 printf("implement open_pty\n");
124 exit(77);
125 #endif
126 #if defined(HAVE_OPENPTY) || defined(__linux) || defined(__osf__) /* XXX */
127 if(openpty(&master, &slave, line, 0, 0) == 0)
128 return;
129 #endif /* HAVE_OPENPTY .... */
130 #ifdef STREAMSPTY
132 char *clone[] = {
133 "/dev/ptc",
134 "/dev/ptmx",
135 "/dev/ptm",
136 "/dev/ptym/clone",
137 NULL
139 char **q;
141 for(q = clone; *q; q++){
142 master = open(*q, O_RDWR);
143 if(master >= 0){
144 #ifdef HAVE_GRANTPT
145 grantpt(master);
146 #endif
147 #ifdef HAVE_UNLOCKPT
148 unlockpt(master);
149 #endif
150 strlcpy(line, ptsname(master), sizeof(line));
151 slave = open(line, O_RDWR);
152 if (slave < 0)
153 errx(1, "failed to open slave when using %s", *q);
154 ioctl(slave, I_PUSH, "ptem");
155 ioctl(slave, I_PUSH, "ldterm");
157 return;
161 #endif /* STREAMSPTY */
163 /* more cases, like open /dev/ptmx, etc */
165 exit(77);
172 static char *iscmd(const char *buf, const char *s)
174 size_t len = strlen(s);
176 if (strncmp(buf, s, len) != 0) {
177 return NULL;
180 return strdup(buf + len);
183 static void parse_configuration(const char *fn)
185 struct command *c;
186 char s[1024];
187 char *str;
188 unsigned int lineno = 0;
189 FILE *cmd;
191 cmd = fopen(fn, "r");
192 if (cmd == NULL)
193 err(1, "open: %s", fn);
195 while (fgets(s, sizeof(s), cmd) != NULL) {
197 s[strcspn(s, "#\n")] = '\0';
198 lineno++;
200 c = calloc(1, sizeof(*c));
201 if (c == NULL)
202 errx(1, "malloc");
204 c->lineno = lineno;
205 (*next) = c;
206 next = &(c->next);
208 if ((str = iscmd(s, "expect ")) != NULL) {
209 c->type = CMD_EXPECT;
210 c->str = str;
211 } else if ((str = iscmd(s, "send ")) != NULL) {
212 c->type = CMD_SEND;
213 c->str = str;
214 } else if ((str = iscmd(s, "password ")) != NULL) {
215 c->type = CMD_PASSWORD;
216 c->str = str;
217 } else
218 errx(1, "Invalid command on line %d: %s", lineno, s);
221 fclose(cmd);
228 static int eval_parent(pid_t pid)
230 struct command *c;
231 char in;
232 size_t len = 0;
233 ssize_t sret;
235 for (c = commands; c != NULL; c = c->next) {
236 switch(c->type) {
237 case CMD_EXPECT:
238 if (opt_verbose) {
239 printf("[expecting %s]\n", c->str);
241 len = 0;
242 alarm(opt_timeout);
243 while((sret = read(master, &in, sizeof(in))) > 0) {
244 alarm(opt_timeout);
245 printf("%c", in);
246 if (c->str[len] != in) {
247 len = 0;
248 continue;
250 len++;
251 if (c->str[len] == '\0') {
252 break;
255 alarm(0);
256 if (alarmset == SIGALRM) {
257 errx(1, "timeout waiting for %s (line %u)",
258 c->str, c->lineno);
259 } else if (alarmset) {
260 errx(1, "got a signal %d waiting for %s (line %u)",
261 (int)alarmset, c->str, c->lineno);
264 if (sret <= 0) {
265 errx(1, "end command while waiting for %s (line %u)",
266 c->str, c->lineno);
268 break;
269 case CMD_SEND:
270 case CMD_PASSWORD: {
271 size_t i = 0;
272 const char *msg = (c->type == CMD_PASSWORD) ? "****" : c->str;
274 if (opt_verbose) {
275 printf("[send %s]\n", msg);
278 len = strlen(c->str);
280 while (i < len) {
281 if (c->str[i] == '\\' && i < len - 1) {
282 char ctrl;
283 i++;
284 switch(c->str[i]) {
285 case 'n':
286 ctrl = '\n';
287 break;
288 case 'r':
289 ctrl = '\r';
290 break;
291 case 't':
292 ctrl = '\t';
293 break;
294 default:
295 errx(1,
296 "unknown control char %c (line %u)",
297 c->str[i],
298 c->lineno);
300 if (sys_write(master, &ctrl, 1) != 1) {
301 errx(1, "command refused input (line %u)", c->lineno);
303 } else {
304 if (sys_write(master, &c->str[i], 1) != 1) {
305 errx(1, "command refused input (line %u)", c->lineno);
308 i++;
310 break;
312 default:
313 abort();
317 while(read(master, &in, sizeof(in)) > 0) {
318 printf("%c", in);
321 if (opt_verbose) {
322 printf("[end of program]\n");
326 * Fetch status from child
329 int ret, status;
331 ret = waitpid(pid, &status, 0);
332 if (ret == -1) {
333 err(1, "waitpid");
336 if (WIFEXITED(status) && WEXITSTATUS(status)) {
337 return WEXITSTATUS(status);
338 } else if (WIFSIGNALED(status)) {
339 printf("killed by signal: %d\n", WTERMSIG(status));
340 return 1;
344 return 0;
350 struct poptOption long_options[] = {
351 POPT_AUTOHELP
353 .longName = "timeout",
354 .shortName = 't',
355 .argInfo = POPT_ARG_INT,
356 .arg = &opt_timeout,
357 .val = 't',
360 .longName = "verbose",
361 .shortName = 'v',
362 .argInfo = POPT_ARG_NONE,
363 .arg = &opt_verbose,
364 .val = 'v',
366 POPT_TABLEEND
369 int main(int argc, const char **argv)
371 int optidx = 0;
372 pid_t pid;
373 poptContext pc = NULL;
374 const char *instruction_file;
375 const char **args;
376 const char *program;
377 char * const *program_args;
379 pc = poptGetContext("texpect",
380 argc,
381 argv,
382 long_options,
383 POPT_CONTEXT_POSIXMEHARDER);
385 if (argc == 1) {
386 poptPrintHelp(pc, stderr, 0);
387 goto out;
390 while ((optidx = poptGetNextOpt(pc)) != -1) {
391 switch (optidx) {
392 case POPT_ERROR_BADOPT:
393 fprintf(stderr, "\nInvalid option %s: %s\n\n",
394 poptBadOption(pc, 0), poptStrerror(optidx));
395 poptPrintUsage(pc, stderr, 0);
396 exit(1);
400 instruction_file = poptGetArg(pc);
401 args = poptGetArgs(pc);
402 if (args == NULL) {
403 poptPrintHelp(pc, stderr, 0);
404 goto out;
407 program_args = (char * const *)discard_const_p(char *, args);
408 program = program_args[0];
410 if (opt_verbose) {
411 int i;
413 printf("Using instruction_file: %s\n", instruction_file);
414 printf("Executing '%s' ", program);
415 for (i = 0; program_args[i] != NULL; i++) {
416 printf("'%s' ", program_args[i]);
418 printf("\n");
421 parse_configuration(instruction_file);
423 open_pty();
425 pid = fork();
426 switch (pid) {
427 case -1:
428 err(1, "Failed to fork");
430 /* Never reached */
431 goto out;
432 case 0:
434 if(setsid()<0)
435 err(1, "setsid");
437 dup2(slave, STDIN_FILENO);
438 dup2(slave, STDOUT_FILENO);
439 dup2(slave, STDERR_FILENO);
441 closefrom(STDERR_FILENO + 1);
443 /* texpect <expect_instructions> <progname> [<args>] */
444 execvp(program, program_args);
445 err(1, "Failed to exec: %s", program);
447 /* Never reached */
448 goto out;
449 default:
450 close(slave);
452 struct sigaction sa;
454 sa.sa_handler = caught_signal;
455 sa.sa_flags = 0;
456 sigemptyset (&sa.sa_mask);
458 sigaction(SIGALRM, &sa, NULL);
461 poptFreeContext(pc);
462 return eval_parent(pid);
465 /* Never reached */
467 out:
468 poptFreeContext(pc);
469 return 1;