2 * Copyright (C) 2014 Red Hat Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
32 #include <sys/types.h>
38 #include "miniexpect.h"
45 mexp_h *h = malloc (sizeof *h);
49 /* Initialize the fields to default values. */
56 h->len = h->alloc = 0;
58 h->user1 = h->user2 = h->user3 = NULL;
64 clear_buffer (mexp_h *h)
68 h->alloc = h->len = 0;
73 mexp_close (mexp_h *h)
82 if (waitpid (h->pid, &status, 0) == -1)
92 mexp_spawnl (const char *file, const char *arg, ...)
94 char **argv, **new_argv;
99 argv = malloc (sizeof (char *));
102 argv[0] = (char *) arg;
104 va_start (args, arg);
105 for (i = 1; arg != NULL; ++i) {
106 arg = va_arg (args, const char *);
107 new_argv = realloc (argv, sizeof (char *) * (i+1));
108 if (new_argv == NULL) {
113 argv[i] = (char *) arg;
116 h = mexp_spawnv (file, argv);
122 mexp_spawnv (const char *file, char **argv)
130 fd = posix_openpt (O_RDWR|O_NOCTTY);
134 if (grantpt (fd) == -1)
137 if (unlockpt (fd) == -1)
140 /* Get the slave pty name now, but don't open it in the parent. */
141 if (ptsname_r (fd, slave, sizeof slave) != 0)
144 /* Create the handle last before we fork. */
145 h = create_handle ();
153 if (pid == 0) { /* Child. */
154 struct termios terminal_settings;
159 /* Open the slave side of the pty. We must do this in the child
160 * after setsid so it becomes our controlling tty.
162 slave_fd = open (slave, O_RDWR);
167 tcgetattr (slave_fd, &terminal_settings);
168 cfmakeraw (&terminal_settings);
169 tcsetattr (slave_fd, TCSANOW, &terminal_settings);
171 /* Set up stdin, stdout, stderr to point to the pty. */
177 /* Close the master side of the pty - do this late to avoid a
178 * kernel bug, see sshpass source code.
182 /* Run the subprocess. */
185 _exit (EXIT_FAILURE);
199 waitpid (pid, NULL, 0);
205 mexp_expect (mexp_h *h, const mexp_regexp *regexps, int *ovector, int ovecsize)
207 time_t start_t, now_t;
209 struct pollfd pfds[1];
215 if (h->next_match == -1) {
216 /* Fully clear the buffer, then read. */
219 /* See the comment in the manual about h->next_match. We have
220 * some data remaining in the buffer, so begin by matching that.
222 memmove (&h->buffer[0], &h->buffer[h->next_match], h->len - h->next_match);
223 h->len -= h->next_match;
224 h->buffer[h->len] = '\0';
230 /* If we've got a timeout then work out how many seconds are left.
231 * Timeout == 0 is not particularly well-defined, but it probably
232 * means "return immediately if there's no data to be read".
234 if (h->timeout >= 0) {
236 timeout = h->timeout - ((now_t - start_t) * 1000);
244 pfds[0].events = POLLIN;
246 r = poll (pfds, 1, timeout);
248 fprintf (stderr, "DEBUG: poll returned %d\n", r);
256 /* Otherwise we expect there is something to read from the file
259 if (h->alloc - h->len <= h->read_size) {
261 /* +1 here allows us to store \0 after the data read */
262 new_buffer = realloc (h->buffer, h->alloc + h->read_size + 1);
263 if (new_buffer == NULL)
265 h->buffer = new_buffer;
266 h->alloc += h->read_size;
268 rs = read (h->fd, h->buffer + h->len, h->read_size);
270 fprintf (stderr, "DEBUG: read returned %zd\n", rs);
273 /* Annoyingly on Linux (I'm fairly sure this is a bug) if the
274 * writer closes the connection, the entire pty is destroyed,
275 * and read returns -1 / EIO. Handle that special case here.
284 /* We read something. */
286 h->buffer[h->len] = '\0';
288 fprintf (stderr, "DEBUG: read %zd bytes from pty\n", rs);
289 fprintf (stderr, "DEBUG: buffer content: %s\n", h->buffer);
293 /* See if there is a full or partial match against any regexp. */
296 int can_clear_buffer = 1;
298 assert (h->buffer != NULL);
300 for (i = 0; regexps[i].r > 0; ++i) {
301 int options = regexps[i].options | PCRE_PARTIAL_SOFT;
303 r = pcre_exec (regexps[i].re, regexps[i].extra,
304 h->buffer, (int)h->len, 0,
311 if (ovector != NULL && ovecsize >= 1 && ovector[1] >= 0)
312 h->next_match = ovector[1];
318 else if (r == PCRE_ERROR_NOMATCH) {
319 /* No match at all. */
323 else if (r == PCRE_ERROR_PARTIAL) {
324 /* Partial match. Keep the buffer and keep reading. */
325 can_clear_buffer = 0;
329 /* An actual PCRE error. */
330 return MEXP_PCRE_ERROR;
334 /* If none of the regular expressions matched (not partially)
335 * then we can clear the buffer. This is an optimization.
337 if (can_clear_buffer)
345 mexp_printf (mexp_h *h, const char *fs, ...)
355 len = vasprintf (&msg, fs, args);
362 fprintf (stderr, "DEBUG: writing: %s\n", msg);
368 r = write (h->fd, p, n);