From cda9418c2be02f1a5c58d0e1e8020c858ddd6676 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Wed, 26 Mar 2025 02:02:21 +0000 Subject: [PATCH] Unix bux fixes --- variable.c | 10 +++++++--- xmake.c | 51 ++++++++++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 55 insertions(+), 6 deletions(-) diff --git a/variable.c b/variable.c index 6900cb0..4ee60ef 100644 --- a/variable.c +++ b/variable.c @@ -332,9 +332,11 @@ static char *func_shell (const char *filename, unsigned long line_no, char *inpu } + input = skip_whitespace (input); + if (pid == 0) { - char *name = skip_whitespace (input), *space, *slash; + char *name = input, *space = 0, *slash; if ((space = strchr (name, ' '))) { name = xstrndup (name, space - name); @@ -345,7 +347,7 @@ static char *func_shell (const char *filename, unsigned long line_no, char *inpu close (pipefd[0]); close (pipefd[1]); - execl (name, (slash = strrchr (name, '/')) ? (slash + 1) : name, skip_whitespace (space), NULL); + execlp (name, (slash = strrchr (name, '/')) ? (slash + 1) : name, space ? skip_whitespace (space) : NULL, NULL); fprintf (stderr, "%s: %s:%lu: %s: %s\n", program_name, filename, line_no, name, strerror (errno)); exit (EXIT_FAILURE); @@ -398,7 +400,9 @@ static char *func_shell (const char *filename, unsigned long line_no, char *inpu if (status) { - fprintf (stderr, "%s\n", lbuf.start); + char *p = (lbuf.start = skip_whitespace (lbuf.start)); + if (*p != '\0') { fprintf (stderr, "%s\n", p); } + exit (EXIT_FAILURE); } diff --git a/xmake.c b/xmake.c index 7481b44..300da5a 100644 --- a/xmake.c +++ b/xmake.c @@ -208,6 +208,9 @@ static void pipe_command (const char *filename, unsigned long line_no, char *inp int pipefd[2], pid, status; + struct linebuf lbuf; + FILE *cmd_output; + if (pipe (pipefd) < 0) { perror ("pipe"); @@ -222,21 +225,63 @@ static void pipe_command (const char *filename, unsigned long line_no, char *inp } + input = skip_whitespace (input); + if (pid == 0) { - char *name = skip_whitespace (input), *space, *slash; + char *name = input, *space = 0, *slash; if ((space = strchr (name, ' '))) { name = xstrndup (name, space - name); } - execl (name, (slash = strrchr (name, '/')) ? (slash + 1) : name, skip_whitespace (space), NULL); + dup2 (pipefd[1], STDOUT_FILENO); + + close (pipefd[0]); + close (pipefd[1]); - fprintf (stderr, "%s: %s:%lu: %s: %s\n", program_name, filename, line_no, name, strerror (errno)); + execlp (name, (slash = strrchr (name, '/')) ? (slash + 1) : name, space ? skip_whitespace (space) : NULL, NULL); exit (EXIT_FAILURE); } + close (pipefd[1]); + + if (!(cmd_output = fdopen (pipefd[0], "r"))) { + + perror ("fdopen"); + exit (EXIT_FAILURE); + + } + + lbuf.start = xmalloc (lbuf.size = 256); + + { + + char *end = lbuf.start + lbuf.size; + char *p = lbuf.start; + + while (fgets (p, end - p, cmd_output)) { + + size_t offset; + p += strlen (p); + + offset = p - lbuf.start; + + if (end - p >= 80) { + continue; + } + + lbuf.size *= 2; + lbuf.start = xrealloc (lbuf.start, lbuf.size); + + p = lbuf.start + offset; + end = lbuf.start + lbuf.size; + + } + + } + if (waitpid (pid, &status, 0) == -1) { perror ("waitpid"); -- 2.34.1