Remove powerpc, sparc fdim inlines (bug 22987).
[glibc.git] / posix / wordexp.c
blob0b669a8f5e05ed15565c60c3afb6735f1055e21c
1 /* POSIX.2 wordexp implementation.
2 Copyright (C) 1997-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Tim Waugh <tim@cyberelk.demon.co.uk>.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 #include <alloca.h>
21 #include <ctype.h>
22 #include <errno.h>
23 #include <fcntl.h>
24 #include <fnmatch.h>
25 #include <glob.h>
26 #include <libintl.h>
27 #include <paths.h>
28 #include <pwd.h>
29 #include <signal.h>
30 #include <stdbool.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <sys/param.h>
35 #include <sys/stat.h>
36 #include <sys/time.h>
37 #include <sys/types.h>
38 #include <sys/types.h>
39 #include <sys/wait.h>
40 #include <unistd.h>
41 #include <wchar.h>
42 #include <wordexp.h>
43 #include <kernel-features.h>
45 #include <libc-lock.h>
46 #include <_itoa.h>
48 /* Undefine the following line for the production version. */
49 /* #define NDEBUG 1 */
50 #include <assert.h>
52 /* Get some device information. */
53 #include <device-nrs.h>
56 * This is a recursive-descent-style word expansion routine.
59 /* These variables are defined and initialized in the startup code. */
60 extern int __libc_argc attribute_hidden;
61 extern char **__libc_argv attribute_hidden;
63 /* Some forward declarations */
64 static int parse_dollars (char **word, size_t *word_length, size_t *max_length,
65 const char *words, size_t *offset, int flags,
66 wordexp_t *pwordexp, const char *ifs,
67 const char *ifs_white, int quoted);
68 static int parse_backtick (char **word, size_t *word_length,
69 size_t *max_length, const char *words,
70 size_t *offset, int flags, wordexp_t *pwordexp,
71 const char *ifs, const char *ifs_white);
72 static int parse_dquote (char **word, size_t *word_length, size_t *max_length,
73 const char *words, size_t *offset, int flags,
74 wordexp_t *pwordexp, const char *ifs,
75 const char *ifs_white);
76 static int eval_expr (char *expr, long int *result);
78 /* The w_*() functions manipulate word lists. */
80 #define W_CHUNK (100)
82 /* Result of w_newword will be ignored if it's the last word. */
83 static inline char *
84 w_newword (size_t *actlen, size_t *maxlen)
86 *actlen = *maxlen = 0;
87 return NULL;
90 static char *
91 w_addchar (char *buffer, size_t *actlen, size_t *maxlen, char ch)
92 /* (lengths exclude trailing zero) */
94 /* Add a character to the buffer, allocating room for it if needed. */
96 if (*actlen == *maxlen)
98 char *old_buffer = buffer;
99 assert (buffer == NULL || *maxlen != 0);
100 *maxlen += W_CHUNK;
101 buffer = (char *) realloc (buffer, 1 + *maxlen);
103 if (buffer == NULL)
104 free (old_buffer);
107 if (buffer != NULL)
109 buffer[*actlen] = ch;
110 buffer[++(*actlen)] = '\0';
113 return buffer;
116 static char *
117 w_addmem (char *buffer, size_t *actlen, size_t *maxlen, const char *str,
118 size_t len)
120 /* Add a string to the buffer, allocating room for it if needed.
122 if (*actlen + len > *maxlen)
124 char *old_buffer = buffer;
125 assert (buffer == NULL || *maxlen != 0);
126 *maxlen += MAX (2 * len, W_CHUNK);
127 buffer = realloc (old_buffer, 1 + *maxlen);
129 if (buffer == NULL)
130 free (old_buffer);
133 if (buffer != NULL)
135 *((char *) __mempcpy (&buffer[*actlen], str, len)) = '\0';
136 *actlen += len;
139 return buffer;
142 static char *
143 w_addstr (char *buffer, size_t *actlen, size_t *maxlen, const char *str)
144 /* (lengths exclude trailing zero) */
146 /* Add a string to the buffer, allocating room for it if needed.
148 size_t len;
150 assert (str != NULL); /* w_addstr only called from this file */
151 len = strlen (str);
153 return w_addmem (buffer, actlen, maxlen, str, len);
156 static int
157 w_addword (wordexp_t *pwordexp, char *word)
159 /* Add a word to the wordlist */
160 size_t num_p;
161 char **new_wordv;
162 bool allocated = false;
164 /* Internally, NULL acts like "". Convert NULLs to "" before
165 * the caller sees them.
167 if (word == NULL)
169 word = __strdup ("");
170 if (word == NULL)
171 goto no_space;
172 allocated = true;
175 num_p = 2 + pwordexp->we_wordc + pwordexp->we_offs;
176 new_wordv = realloc (pwordexp->we_wordv, sizeof (char *) * num_p);
177 if (new_wordv != NULL)
179 pwordexp->we_wordv = new_wordv;
180 pwordexp->we_wordv[pwordexp->we_offs + pwordexp->we_wordc++] = word;
181 pwordexp->we_wordv[pwordexp->we_offs + pwordexp->we_wordc] = NULL;
182 return 0;
185 if (allocated)
186 free (word);
188 no_space:
189 return WRDE_NOSPACE;
192 /* The parse_*() functions should leave *offset being the offset in 'words'
193 * to the last character processed.
196 static int
197 parse_backslash (char **word, size_t *word_length, size_t *max_length,
198 const char *words, size_t *offset)
200 /* We are poised _at_ a backslash, not in quotes */
202 switch (words[1 + *offset])
204 case 0:
205 /* Backslash is last character of input words */
206 return WRDE_SYNTAX;
208 case '\n':
209 ++(*offset);
210 break;
212 default:
213 *word = w_addchar (*word, word_length, max_length, words[1 + *offset]);
214 if (*word == NULL)
215 return WRDE_NOSPACE;
217 ++(*offset);
218 break;
221 return 0;
224 static int
225 parse_qtd_backslash (char **word, size_t *word_length, size_t *max_length,
226 const char *words, size_t *offset)
228 /* We are poised _at_ a backslash, inside quotes */
230 switch (words[1 + *offset])
232 case 0:
233 /* Backslash is last character of input words */
234 return WRDE_SYNTAX;
236 case '\n':
237 ++(*offset);
238 break;
240 case '$':
241 case '`':
242 case '"':
243 case '\\':
244 *word = w_addchar (*word, word_length, max_length, words[1 + *offset]);
245 if (*word == NULL)
246 return WRDE_NOSPACE;
248 ++(*offset);
249 break;
251 default:
252 *word = w_addchar (*word, word_length, max_length, words[*offset]);
253 if (*word != NULL)
254 *word = w_addchar (*word, word_length, max_length, words[1 + *offset]);
256 if (*word == NULL)
257 return WRDE_NOSPACE;
259 ++(*offset);
260 break;
263 return 0;
266 static int
267 parse_tilde (char **word, size_t *word_length, size_t *max_length,
268 const char *words, size_t *offset, size_t wordc)
270 /* We are poised _at_ a tilde */
271 size_t i;
273 if (*word_length != 0)
275 if (!((*word)[*word_length - 1] == '=' && wordc == 0))
277 if (!((*word)[*word_length - 1] == ':'
278 && strchr (*word, '=') && wordc == 0))
280 *word = w_addchar (*word, word_length, max_length, '~');
281 return *word ? 0 : WRDE_NOSPACE;
286 for (i = 1 + *offset; words[i]; i++)
288 if (words[i] == ':' || words[i] == '/' || words[i] == ' ' ||
289 words[i] == '\t' || words[i] == 0 )
290 break;
292 if (words[i] == '\\')
294 *word = w_addchar (*word, word_length, max_length, '~');
295 return *word ? 0 : WRDE_NOSPACE;
299 if (i == 1 + *offset)
301 /* Tilde appears on its own */
302 uid_t uid;
303 struct passwd pwd, *tpwd;
304 int buflen = 1000;
305 char* home;
306 char* buffer;
307 int result;
309 /* POSIX.2 says ~ expands to $HOME and if HOME is unset the
310 results are unspecified. We do a lookup on the uid if
311 HOME is unset. */
313 home = getenv ("HOME");
314 if (home != NULL)
316 *word = w_addstr (*word, word_length, max_length, home);
317 if (*word == NULL)
318 return WRDE_NOSPACE;
320 else
322 uid = __getuid ();
323 buffer = __alloca (buflen);
325 while ((result = __getpwuid_r (uid, &pwd, buffer, buflen, &tpwd)) != 0
326 && errno == ERANGE)
327 buffer = extend_alloca (buffer, buflen, buflen + 1000);
329 if (result == 0 && tpwd != NULL && pwd.pw_dir != NULL)
331 *word = w_addstr (*word, word_length, max_length, pwd.pw_dir);
332 if (*word == NULL)
333 return WRDE_NOSPACE;
335 else
337 *word = w_addchar (*word, word_length, max_length, '~');
338 if (*word == NULL)
339 return WRDE_NOSPACE;
343 else
345 /* Look up user name in database to get home directory */
346 char *user = strndupa (&words[1 + *offset], i - (1 + *offset));
347 struct passwd pwd, *tpwd;
348 int buflen = 1000;
349 char* buffer = __alloca (buflen);
350 int result;
352 while ((result = __getpwnam_r (user, &pwd, buffer, buflen, &tpwd)) != 0
353 && errno == ERANGE)
354 buffer = extend_alloca (buffer, buflen, buflen + 1000);
356 if (result == 0 && tpwd != NULL && pwd.pw_dir)
357 *word = w_addstr (*word, word_length, max_length, pwd.pw_dir);
358 else
360 /* (invalid login name) */
361 *word = w_addchar (*word, word_length, max_length, '~');
362 if (*word != NULL)
363 *word = w_addstr (*word, word_length, max_length, user);
366 *offset = i - 1;
368 return *word ? 0 : WRDE_NOSPACE;
372 static int
373 do_parse_glob (const char *glob_word, char **word, size_t *word_length,
374 size_t *max_length, wordexp_t *pwordexp, const char *ifs,
375 const char *ifs_white)
377 int error;
378 unsigned int match;
379 glob_t globbuf;
381 error = glob (glob_word, GLOB_NOCHECK, NULL, &globbuf);
383 if (error != 0)
385 /* We can only run into memory problems. */
386 assert (error == GLOB_NOSPACE);
387 return WRDE_NOSPACE;
390 if (ifs && !*ifs)
392 /* No field splitting allowed. */
393 assert (globbuf.gl_pathv[0] != NULL);
394 *word = w_addstr (*word, word_length, max_length, globbuf.gl_pathv[0]);
395 for (match = 1; match < globbuf.gl_pathc && *word != NULL; ++match)
397 *word = w_addchar (*word, word_length, max_length, ' ');
398 if (*word != NULL)
399 *word = w_addstr (*word, word_length, max_length,
400 globbuf.gl_pathv[match]);
403 globfree (&globbuf);
404 return *word ? 0 : WRDE_NOSPACE;
407 assert (ifs == NULL || *ifs != '\0');
408 if (*word != NULL)
410 free (*word);
411 *word = w_newword (word_length, max_length);
414 for (match = 0; match < globbuf.gl_pathc; ++match)
416 char *matching_word = __strdup (globbuf.gl_pathv[match]);
417 if (matching_word == NULL || w_addword (pwordexp, matching_word))
419 globfree (&globbuf);
420 return WRDE_NOSPACE;
424 globfree (&globbuf);
425 return 0;
428 static int
429 parse_glob (char **word, size_t *word_length, size_t *max_length,
430 const char *words, size_t *offset, int flags,
431 wordexp_t *pwordexp, const char *ifs, const char *ifs_white)
433 /* We are poised just after a '*', a '[' or a '?'. */
434 int error = WRDE_NOSPACE;
435 int quoted = 0; /* 1 if singly-quoted, 2 if doubly */
436 size_t i;
437 wordexp_t glob_list; /* List of words to glob */
439 glob_list.we_wordc = 0;
440 glob_list.we_wordv = NULL;
441 glob_list.we_offs = 0;
442 for (; words[*offset] != '\0'; ++*offset)
444 if (strchr (ifs, words[*offset]) != NULL)
445 /* Reached IFS */
446 break;
448 /* Sort out quoting */
449 if (words[*offset] == '\'')
451 if (quoted == 0)
453 quoted = 1;
454 continue;
456 else if (quoted == 1)
458 quoted = 0;
459 continue;
462 else if (words[*offset] == '"')
464 if (quoted == 0)
466 quoted = 2;
467 continue;
469 else if (quoted == 2)
471 quoted = 0;
472 continue;
476 /* Sort out other special characters */
477 if (quoted != 1 && words[*offset] == '$')
479 error = parse_dollars (word, word_length, max_length, words,
480 offset, flags, &glob_list, ifs, ifs_white,
481 quoted == 2);
482 if (error)
483 goto tidy_up;
485 continue;
487 else if (words[*offset] == '\\')
489 if (quoted)
490 error = parse_qtd_backslash (word, word_length, max_length,
491 words, offset);
492 else
493 error = parse_backslash (word, word_length, max_length,
494 words, offset);
496 if (error)
497 goto tidy_up;
499 continue;
502 *word = w_addchar (*word, word_length, max_length, words[*offset]);
503 if (*word == NULL)
504 goto tidy_up;
507 /* Don't forget to re-parse the character we stopped at. */
508 --*offset;
510 /* Glob the words */
511 error = w_addword (&glob_list, *word);
512 *word = w_newword (word_length, max_length);
513 for (i = 0; error == 0 && i < glob_list.we_wordc; i++)
514 error = do_parse_glob (glob_list.we_wordv[i], word, word_length,
515 max_length, pwordexp, ifs, ifs_white);
517 /* Now tidy up */
518 tidy_up:
519 wordfree (&glob_list);
520 return error;
523 static int
524 parse_squote (char **word, size_t *word_length, size_t *max_length,
525 const char *words, size_t *offset)
527 /* We are poised just after a single quote */
528 for (; words[*offset]; ++(*offset))
530 if (words[*offset] != '\'')
532 *word = w_addchar (*word, word_length, max_length, words[*offset]);
533 if (*word == NULL)
534 return WRDE_NOSPACE;
536 else return 0;
539 /* Unterminated string */
540 return WRDE_SYNTAX;
543 /* Functions to evaluate an arithmetic expression */
544 static int
545 eval_expr_val (char **expr, long int *result)
547 char *digit;
549 /* Skip white space */
550 for (digit = *expr; digit && *digit && isspace (*digit); ++digit);
552 if (*digit == '(')
554 /* Scan for closing paren */
555 for (++digit; **expr && **expr != ')'; ++(*expr));
557 /* Is there one? */
558 if (!**expr)
559 return WRDE_SYNTAX;
561 *(*expr)++ = 0;
563 if (eval_expr (digit, result))
564 return WRDE_SYNTAX;
566 return 0;
569 /* POSIX requires that decimal, octal, and hexadecimal constants are
570 recognized. Therefore we pass 0 as the third parameter to strtol. */
571 *result = strtol (digit, expr, 0);
572 if (digit == *expr)
573 return WRDE_SYNTAX;
575 return 0;
578 static int
579 eval_expr_multdiv (char **expr, long int *result)
581 long int arg;
583 /* Read a Value */
584 if (eval_expr_val (expr, result) != 0)
585 return WRDE_SYNTAX;
587 while (**expr)
589 /* Skip white space */
590 for (; *expr && **expr && isspace (**expr); ++(*expr));
592 if (**expr == '*')
594 ++(*expr);
595 if (eval_expr_val (expr, &arg) != 0)
596 return WRDE_SYNTAX;
598 *result *= arg;
600 else if (**expr == '/')
602 ++(*expr);
603 if (eval_expr_val (expr, &arg) != 0)
604 return WRDE_SYNTAX;
606 /* Division by zero or integer overflow. */
607 if (arg == 0 || (arg == -1 && *result == LONG_MIN))
608 return WRDE_SYNTAX;
610 *result /= arg;
612 else break;
615 return 0;
618 static int
619 eval_expr (char *expr, long int *result)
621 long int arg;
623 /* Read a Multdiv */
624 if (eval_expr_multdiv (&expr, result) != 0)
625 return WRDE_SYNTAX;
627 while (*expr)
629 /* Skip white space */
630 for (; expr && *expr && isspace (*expr); ++expr);
632 if (*expr == '+')
634 ++expr;
635 if (eval_expr_multdiv (&expr, &arg) != 0)
636 return WRDE_SYNTAX;
638 *result += arg;
640 else if (*expr == '-')
642 ++expr;
643 if (eval_expr_multdiv (&expr, &arg) != 0)
644 return WRDE_SYNTAX;
646 *result -= arg;
648 else break;
651 return 0;
654 static int
655 parse_arith (char **word, size_t *word_length, size_t *max_length,
656 const char *words, size_t *offset, int flags, int bracket)
658 /* We are poised just after "$((" or "$[" */
659 int error;
660 int paren_depth = 1;
661 size_t expr_length;
662 size_t expr_maxlen;
663 char *expr;
665 expr = w_newword (&expr_length, &expr_maxlen);
666 for (; words[*offset]; ++(*offset))
668 switch (words[*offset])
670 case '$':
671 error = parse_dollars (&expr, &expr_length, &expr_maxlen,
672 words, offset, flags, NULL, NULL, NULL, 1);
673 /* The ``1'' here is to tell parse_dollars not to
674 * split the fields.
676 if (error)
678 free (expr);
679 return error;
681 break;
683 case '`':
684 (*offset)++;
685 error = parse_backtick (&expr, &expr_length, &expr_maxlen,
686 words, offset, flags, NULL, NULL, NULL);
687 /* The first NULL here is to tell parse_backtick not to
688 * split the fields.
690 if (error)
692 free (expr);
693 return error;
695 break;
697 case '\\':
698 error = parse_qtd_backslash (&expr, &expr_length, &expr_maxlen,
699 words, offset);
700 if (error)
702 free (expr);
703 return error;
705 /* I think that a backslash within an
706 * arithmetic expansion is bound to
707 * cause an error sooner or later anyway though.
709 break;
711 case ')':
712 if (--paren_depth == 0)
714 char result[21]; /* 21 = ceil(log10(2^64)) + 1 */
715 long int numresult = 0;
716 long long int convertme;
718 if (bracket || words[1 + *offset] != ')')
720 free (expr);
721 return WRDE_SYNTAX;
724 ++(*offset);
726 /* Go - evaluate. */
727 if (*expr && eval_expr (expr, &numresult) != 0)
729 free (expr);
730 return WRDE_SYNTAX;
733 if (numresult < 0)
735 convertme = -numresult;
736 *word = w_addchar (*word, word_length, max_length, '-');
737 if (!*word)
739 free (expr);
740 return WRDE_NOSPACE;
743 else
744 convertme = numresult;
746 result[20] = '\0';
747 *word = w_addstr (*word, word_length, max_length,
748 _itoa (convertme, &result[20], 10, 0));
749 free (expr);
750 return *word ? 0 : WRDE_NOSPACE;
752 expr = w_addchar (expr, &expr_length, &expr_maxlen, words[*offset]);
753 if (expr == NULL)
754 return WRDE_NOSPACE;
756 break;
758 case ']':
759 if (bracket && paren_depth == 1)
761 char result[21]; /* 21 = ceil(log10(2^64)) + 1 */
762 long int numresult = 0;
764 /* Go - evaluate. */
765 if (*expr && eval_expr (expr, &numresult) != 0)
767 free (expr);
768 return WRDE_SYNTAX;
771 result[20] = '\0';
772 *word = w_addstr (*word, word_length, max_length,
773 _itoa_word (numresult, &result[20], 10, 0));
774 free (expr);
775 return *word ? 0 : WRDE_NOSPACE;
778 free (expr);
779 return WRDE_SYNTAX;
781 case '\n':
782 case ';':
783 case '{':
784 case '}':
785 free (expr);
786 return WRDE_BADCHAR;
788 case '(':
789 ++paren_depth;
790 default:
791 expr = w_addchar (expr, &expr_length, &expr_maxlen, words[*offset]);
792 if (expr == NULL)
793 return WRDE_NOSPACE;
797 /* Premature end */
798 free (expr);
799 return WRDE_SYNTAX;
802 /* Function called by child process in exec_comm() */
803 static inline void
804 __attribute__ ((always_inline))
805 exec_comm_child (char *comm, int *fildes, int showerr, int noexec)
807 const char *args[4] = { _PATH_BSHELL, "-c", comm, NULL };
809 /* Execute the command, or just check syntax? */
810 if (noexec)
811 args[1] = "-nc";
813 /* Redirect output. */
814 if (__glibc_likely (fildes[1] != STDOUT_FILENO))
816 __dup2 (fildes[1], STDOUT_FILENO);
817 __close (fildes[1]);
819 else
820 /* Reset the close-on-exec flag (if necessary). */
821 __fcntl (fildes[1], F_SETFD, 0);
823 /* Redirect stderr to /dev/null if we have to. */
824 if (showerr == 0)
826 struct stat64 st;
827 int fd;
828 __close (STDERR_FILENO);
829 fd = __open (_PATH_DEVNULL, O_WRONLY);
830 if (fd >= 0 && fd != STDERR_FILENO)
832 __dup2 (fd, STDERR_FILENO);
833 __close (fd);
835 /* Be paranoid. Check that we actually opened the /dev/null
836 device. */
837 if (__builtin_expect (__fxstat64 (_STAT_VER, STDERR_FILENO, &st), 0) != 0
838 || __builtin_expect (S_ISCHR (st.st_mode), 1) == 0
839 #if defined DEV_NULL_MAJOR && defined DEV_NULL_MINOR
840 || st.st_rdev != __gnu_dev_makedev (DEV_NULL_MAJOR, DEV_NULL_MINOR)
841 #endif
843 /* It's not the /dev/null device. Stop right here. The
844 problem is: how do we stop? We use _exit() with an
845 hopefully unusual exit code. */
846 _exit (90);
849 /* Make sure the subshell doesn't field-split on our behalf. */
850 __unsetenv ("IFS");
852 __close (fildes[0]);
853 __execve (_PATH_BSHELL, (char *const *) args, __environ);
855 /* Bad. What now? */
856 abort ();
859 /* Function to execute a command and retrieve the results */
860 /* pwordexp contains NULL if field-splitting is forbidden */
861 static int
862 exec_comm (char *comm, char **word, size_t *word_length, size_t *max_length,
863 int flags, wordexp_t *pwordexp, const char *ifs,
864 const char *ifs_white)
866 int fildes[2];
867 #define bufsize 128
868 int buflen;
869 int i;
870 int status = 0;
871 size_t maxnewlines = 0;
872 char buffer[bufsize];
873 pid_t pid;
874 int noexec = 0;
876 /* Do nothing if command substitution should not succeed. */
877 if (flags & WRDE_NOCMD)
878 return WRDE_CMDSUB;
880 /* Don't fork() unless necessary */
881 if (!comm || !*comm)
882 return 0;
884 if (__pipe2 (fildes, O_CLOEXEC) < 0)
885 return WRDE_NOSPACE;
887 again:
888 if ((pid = __fork ()) < 0)
890 /* Bad */
891 __close (fildes[0]);
892 __close (fildes[1]);
893 return WRDE_NOSPACE;
896 if (pid == 0)
897 exec_comm_child (comm, fildes, noexec ? 0 : flags & WRDE_SHOWERR, noexec);
899 /* Parent */
901 /* If we are just testing the syntax, only wait. */
902 if (noexec)
903 return (TEMP_FAILURE_RETRY (__waitpid (pid, &status, 0)) == pid
904 && status != 0) ? WRDE_SYNTAX : 0;
906 __close (fildes[1]);
907 fildes[1] = -1;
909 if (!pwordexp)
910 /* Quoted - no field splitting */
912 while (1)
914 if ((buflen = TEMP_FAILURE_RETRY (__read (fildes[0], buffer,
915 bufsize))) < 1)
917 /* If read returned 0 then the process has closed its
918 stdout. Don't use WNOHANG in that case to avoid busy
919 looping until the process eventually exits. */
920 if (TEMP_FAILURE_RETRY (__waitpid (pid, &status,
921 buflen == 0 ? 0 : WNOHANG))
922 == 0)
923 continue;
924 if ((buflen = TEMP_FAILURE_RETRY (__read (fildes[0], buffer,
925 bufsize))) < 1)
926 break;
929 maxnewlines += buflen;
931 *word = w_addmem (*word, word_length, max_length, buffer, buflen);
932 if (*word == NULL)
933 goto no_space;
936 else
937 /* Not quoted - split fields */
939 int copying = 0;
940 /* 'copying' is:
941 * 0 when searching for first character in a field not IFS white space
942 * 1 when copying the text of a field
943 * 2 when searching for possible non-whitespace IFS
944 * 3 when searching for non-newline after copying field
947 while (1)
949 if ((buflen = TEMP_FAILURE_RETRY (__read (fildes[0], buffer,
950 bufsize))) < 1)
952 /* If read returned 0 then the process has closed its
953 stdout. Don't use WNOHANG in that case to avoid busy
954 looping until the process eventually exits. */
955 if (TEMP_FAILURE_RETRY (__waitpid (pid, &status,
956 buflen == 0 ? 0 : WNOHANG))
957 == 0)
958 continue;
959 if ((buflen = TEMP_FAILURE_RETRY (__read (fildes[0], buffer,
960 bufsize))) < 1)
961 break;
964 for (i = 0; i < buflen; ++i)
966 if (strchr (ifs, buffer[i]) != NULL)
968 /* Current character is IFS */
969 if (strchr (ifs_white, buffer[i]) == NULL)
971 /* Current character is IFS but not whitespace */
972 if (copying == 2)
974 /* current character
977 * eg: text<space><comma><space>moretext
979 * So, strip whitespace IFS (like at the start)
981 copying = 0;
982 continue;
985 copying = 0;
986 /* fall through and delimit field.. */
988 else
990 if (buffer[i] == '\n')
992 /* Current character is (IFS) newline */
994 /* If copying a field, this is the end of it,
995 but maybe all that's left is trailing newlines.
996 So start searching for a non-newline. */
997 if (copying == 1)
998 copying = 3;
1000 continue;
1002 else
1004 /* Current character is IFS white space, but
1005 not a newline */
1007 /* If not either copying a field or searching
1008 for non-newline after a field, ignore it */
1009 if (copying != 1 && copying != 3)
1010 continue;
1012 /* End of field (search for non-ws IFS afterwards) */
1013 copying = 2;
1017 /* First IFS white space (non-newline), or IFS non-whitespace.
1018 * Delimit the field. Nulls are converted by w_addword. */
1019 if (w_addword (pwordexp, *word) == WRDE_NOSPACE)
1020 goto no_space;
1022 *word = w_newword (word_length, max_length);
1024 maxnewlines = 0;
1025 /* fall back round the loop.. */
1027 else
1029 /* Not IFS character */
1031 if (copying == 3)
1033 /* Nothing but (IFS) newlines since the last field,
1034 so delimit it here before starting new word */
1035 if (w_addword (pwordexp, *word) == WRDE_NOSPACE)
1036 goto no_space;
1038 *word = w_newword (word_length, max_length);
1041 copying = 1;
1043 if (buffer[i] == '\n') /* happens if newline not in IFS */
1044 maxnewlines++;
1045 else
1046 maxnewlines = 0;
1048 *word = w_addchar (*word, word_length, max_length,
1049 buffer[i]);
1050 if (*word == NULL)
1051 goto no_space;
1057 /* Chop off trailing newlines (required by POSIX.2) */
1058 /* Ensure we don't go back further than the beginning of the
1059 substitution (i.e. remove maxnewlines bytes at most) */
1060 while (maxnewlines-- != 0 &&
1061 *word_length > 0 && (*word)[*word_length - 1] == '\n')
1063 (*word)[--*word_length] = '\0';
1065 /* If the last word was entirely newlines, turn it into a new word
1066 * which can be ignored if there's nothing following it. */
1067 if (*word_length == 0)
1069 free (*word);
1070 *word = w_newword (word_length, max_length);
1071 break;
1075 __close (fildes[0]);
1076 fildes[0] = -1;
1078 /* Check for syntax error (re-execute but with "-n" flag) */
1079 if (buflen < 1 && status != 0)
1081 noexec = 1;
1082 goto again;
1085 return 0;
1087 no_space:
1088 __kill (pid, SIGKILL);
1089 TEMP_FAILURE_RETRY (__waitpid (pid, NULL, 0));
1090 __close (fildes[0]);
1091 return WRDE_NOSPACE;
1094 static int
1095 parse_comm (char **word, size_t *word_length, size_t *max_length,
1096 const char *words, size_t *offset, int flags, wordexp_t *pwordexp,
1097 const char *ifs, const char *ifs_white)
1099 /* We are poised just after "$(" */
1100 int paren_depth = 1;
1101 int error = 0;
1102 int quoted = 0; /* 1 for singly-quoted, 2 for doubly-quoted */
1103 size_t comm_length;
1104 size_t comm_maxlen;
1105 char *comm = w_newword (&comm_length, &comm_maxlen);
1107 for (; words[*offset]; ++(*offset))
1109 switch (words[*offset])
1111 case '\'':
1112 if (quoted == 0)
1113 quoted = 1;
1114 else if (quoted == 1)
1115 quoted = 0;
1117 break;
1119 case '"':
1120 if (quoted == 0)
1121 quoted = 2;
1122 else if (quoted == 2)
1123 quoted = 0;
1125 break;
1127 case ')':
1128 if (!quoted && --paren_depth == 0)
1130 /* Go -- give script to the shell */
1131 if (comm)
1133 #ifdef __libc_ptf_call
1134 /* We do not want the exec_comm call to be cut short
1135 by a thread cancellation since cleanup is very
1136 ugly. Therefore disable cancellation for
1137 now. */
1138 // XXX Ideally we do want the thread being cancelable.
1139 // XXX If demand is there we'll change it.
1140 int state = PTHREAD_CANCEL_ENABLE;
1141 __libc_ptf_call (__pthread_setcancelstate,
1142 (PTHREAD_CANCEL_DISABLE, &state), 0);
1143 #endif
1145 error = exec_comm (comm, word, word_length, max_length,
1146 flags, pwordexp, ifs, ifs_white);
1148 #ifdef __libc_ptf_call
1149 __libc_ptf_call (__pthread_setcancelstate,
1150 (state, NULL), 0);
1151 #endif
1153 free (comm);
1156 return error;
1159 /* This is just part of the script */
1160 break;
1162 case '(':
1163 if (!quoted)
1164 ++paren_depth;
1167 comm = w_addchar (comm, &comm_length, &comm_maxlen, words[*offset]);
1168 if (comm == NULL)
1169 return WRDE_NOSPACE;
1172 /* Premature end. */
1173 free (comm);
1175 return WRDE_SYNTAX;
1178 #define CHAR_IN_SET(ch, char_set) \
1179 (memchr (char_set "", ch, sizeof (char_set) - 1) != NULL)
1181 static int
1182 parse_param (char **word, size_t *word_length, size_t *max_length,
1183 const char *words, size_t *offset, int flags, wordexp_t *pwordexp,
1184 const char *ifs, const char *ifs_white, int quoted)
1186 /* We are poised just after "$" */
1187 enum action
1189 ACT_NONE,
1190 ACT_RP_SHORT_LEFT = '#',
1191 ACT_RP_LONG_LEFT = 'L',
1192 ACT_RP_SHORT_RIGHT = '%',
1193 ACT_RP_LONG_RIGHT = 'R',
1194 ACT_NULL_ERROR = '?',
1195 ACT_NULL_SUBST = '-',
1196 ACT_NONNULL_SUBST = '+',
1197 ACT_NULL_ASSIGN = '='
1199 size_t env_length;
1200 size_t env_maxlen;
1201 size_t pat_length;
1202 size_t pat_maxlen;
1203 size_t start = *offset;
1204 char *env;
1205 char *pattern;
1206 char *value = NULL;
1207 enum action action = ACT_NONE;
1208 int depth = 0;
1209 int colon_seen = 0;
1210 int seen_hash = 0;
1211 int free_value = 0;
1212 int pattern_is_quoted = 0; /* 1 for singly-quoted, 2 for doubly-quoted */
1213 int error;
1214 int special = 0;
1215 char buffer[21];
1216 int brace = words[*offset] == '{';
1218 env = w_newword (&env_length, &env_maxlen);
1219 pattern = w_newword (&pat_length, &pat_maxlen);
1221 if (brace)
1222 ++*offset;
1224 /* First collect the parameter name. */
1226 if (words[*offset] == '#')
1228 seen_hash = 1;
1229 if (!brace)
1230 goto envsubst;
1231 ++*offset;
1234 if (isalpha (words[*offset]) || words[*offset] == '_')
1236 /* Normal parameter name. */
1239 env = w_addchar (env, &env_length, &env_maxlen,
1240 words[*offset]);
1241 if (env == NULL)
1242 goto no_space;
1244 while (isalnum (words[++*offset]) || words[*offset] == '_');
1246 else if (isdigit (words[*offset]))
1248 /* Numeric parameter name. */
1249 special = 1;
1252 env = w_addchar (env, &env_length, &env_maxlen,
1253 words[*offset]);
1254 if (env == NULL)
1255 goto no_space;
1256 if (!brace)
1257 goto envsubst;
1259 while (isdigit(words[++*offset]));
1261 else if (CHAR_IN_SET (words[*offset], "*@$"))
1263 /* Special parameter. */
1264 special = 1;
1265 env = w_addchar (env, &env_length, &env_maxlen,
1266 words[*offset]);
1267 if (env == NULL)
1268 goto no_space;
1269 ++*offset;
1271 else
1273 if (brace)
1274 goto syntax;
1277 if (brace)
1279 /* Check for special action to be applied to the value. */
1280 switch (words[*offset])
1282 case '}':
1283 /* Evaluate. */
1284 goto envsubst;
1286 case '#':
1287 action = ACT_RP_SHORT_LEFT;
1288 if (words[1 + *offset] == '#')
1290 ++*offset;
1291 action = ACT_RP_LONG_LEFT;
1293 break;
1295 case '%':
1296 action = ACT_RP_SHORT_RIGHT;
1297 if (words[1 + *offset] == '%')
1299 ++*offset;
1300 action = ACT_RP_LONG_RIGHT;
1302 break;
1304 case ':':
1305 if (!CHAR_IN_SET (words[1 + *offset], "-=?+"))
1306 goto syntax;
1308 colon_seen = 1;
1309 action = words[++*offset];
1310 break;
1312 case '-':
1313 case '=':
1314 case '?':
1315 case '+':
1316 action = words[*offset];
1317 break;
1319 default:
1320 goto syntax;
1323 /* Now collect the pattern, but don't expand it yet. */
1324 ++*offset;
1325 for (; words[*offset]; ++(*offset))
1327 switch (words[*offset])
1329 case '{':
1330 if (!pattern_is_quoted)
1331 ++depth;
1332 break;
1334 case '}':
1335 if (!pattern_is_quoted)
1337 if (depth == 0)
1338 goto envsubst;
1339 --depth;
1341 break;
1343 case '\\':
1344 if (pattern_is_quoted)
1345 /* Quoted; treat as normal character. */
1346 break;
1348 /* Otherwise, it's an escape: next character is literal. */
1349 if (words[++*offset] == '\0')
1350 goto syntax;
1352 pattern = w_addchar (pattern, &pat_length, &pat_maxlen, '\\');
1353 if (pattern == NULL)
1354 goto no_space;
1356 break;
1358 case '\'':
1359 if (pattern_is_quoted == 0)
1360 pattern_is_quoted = 1;
1361 else if (pattern_is_quoted == 1)
1362 pattern_is_quoted = 0;
1364 break;
1366 case '"':
1367 if (pattern_is_quoted == 0)
1368 pattern_is_quoted = 2;
1369 else if (pattern_is_quoted == 2)
1370 pattern_is_quoted = 0;
1372 break;
1375 pattern = w_addchar (pattern, &pat_length, &pat_maxlen,
1376 words[*offset]);
1377 if (pattern == NULL)
1378 goto no_space;
1382 /* End of input string -- remember to reparse the character that we
1383 * stopped at. */
1384 --(*offset);
1386 envsubst:
1387 if (words[start] == '{' && words[*offset] != '}')
1388 goto syntax;
1390 if (env == NULL)
1392 if (seen_hash)
1394 /* $# expands to the number of positional parameters */
1395 buffer[20] = '\0';
1396 value = _itoa_word (__libc_argc - 1, &buffer[20], 10, 0);
1397 seen_hash = 0;
1399 else
1401 /* Just $ on its own */
1402 *offset = start - 1;
1403 *word = w_addchar (*word, word_length, max_length, '$');
1404 return *word ? 0 : WRDE_NOSPACE;
1407 /* Is it a numeric parameter? */
1408 else if (isdigit (env[0]))
1410 int n = atoi (env);
1412 if (n >= __libc_argc)
1413 /* Substitute NULL. */
1414 value = NULL;
1415 else
1416 /* Replace with appropriate positional parameter. */
1417 value = __libc_argv[n];
1419 /* Is it a special parameter? */
1420 else if (special)
1422 /* Is it `$$'? */
1423 if (*env == '$')
1425 buffer[20] = '\0';
1426 value = _itoa_word (__getpid (), &buffer[20], 10, 0);
1428 /* Is it `${#*}' or `${#@}'? */
1429 else if ((*env == '*' || *env == '@') && seen_hash)
1431 buffer[20] = '\0';
1432 value = _itoa_word (__libc_argc > 0 ? __libc_argc - 1 : 0,
1433 &buffer[20], 10, 0);
1434 *word = w_addstr (*word, word_length, max_length, value);
1435 free (env);
1436 free (pattern);
1437 return *word ? 0 : WRDE_NOSPACE;
1439 /* Is it `$*' or `$@' (unquoted) ? */
1440 else if (*env == '*' || (*env == '@' && !quoted))
1442 size_t plist_len = 0;
1443 int p;
1444 char *end;
1446 /* Build up value parameter by parameter (copy them) */
1447 for (p = 1; __libc_argv[p]; ++p)
1448 plist_len += strlen (__libc_argv[p]) + 1; /* for space */
1449 value = malloc (plist_len);
1450 if (value == NULL)
1451 goto no_space;
1452 end = value;
1453 *end = 0;
1454 for (p = 1; __libc_argv[p]; ++p)
1456 if (p > 1)
1457 *end++ = ' ';
1458 end = __stpcpy (end, __libc_argv[p]);
1461 free_value = 1;
1463 else
1465 /* Must be a quoted `$@' */
1466 assert (*env == '@' && quoted);
1468 /* Each parameter is a separate word ("$@") */
1469 if (__libc_argc == 2)
1470 value = __libc_argv[1];
1471 else if (__libc_argc > 2)
1473 int p;
1475 /* Append first parameter to current word. */
1476 value = w_addstr (*word, word_length, max_length,
1477 __libc_argv[1]);
1478 if (value == NULL || w_addword (pwordexp, value))
1479 goto no_space;
1481 for (p = 2; __libc_argv[p + 1]; p++)
1483 char *newword = __strdup (__libc_argv[p]);
1484 if (newword == NULL || w_addword (pwordexp, newword))
1485 goto no_space;
1488 /* Start a new word with the last parameter. */
1489 *word = w_newword (word_length, max_length);
1490 value = __libc_argv[p];
1492 else
1494 free (env);
1495 free (pattern);
1496 return 0;
1500 else
1501 value = getenv (env);
1503 if (value == NULL && (flags & WRDE_UNDEF))
1505 /* Variable not defined. */
1506 error = WRDE_BADVAL;
1507 goto do_error;
1510 if (action != ACT_NONE)
1512 int expand_pattern = 0;
1514 /* First, find out if we need to expand pattern (i.e. if we will
1515 * use it). */
1516 switch (action)
1518 case ACT_RP_SHORT_LEFT:
1519 case ACT_RP_LONG_LEFT:
1520 case ACT_RP_SHORT_RIGHT:
1521 case ACT_RP_LONG_RIGHT:
1522 /* Always expand for these. */
1523 expand_pattern = 1;
1524 break;
1526 case ACT_NULL_ERROR:
1527 case ACT_NULL_SUBST:
1528 case ACT_NULL_ASSIGN:
1529 if (!value || (!*value && colon_seen))
1530 /* If param is unset, or set but null and a colon has been seen,
1531 the expansion of the pattern will be needed. */
1532 expand_pattern = 1;
1534 break;
1536 case ACT_NONNULL_SUBST:
1537 /* Expansion of word will be needed if parameter is set and not null,
1538 or set null but no colon has been seen. */
1539 if (value && (*value || !colon_seen))
1540 expand_pattern = 1;
1542 break;
1544 default:
1545 assert (! "Unrecognised action!");
1548 if (expand_pattern)
1550 /* We need to perform tilde expansion, parameter expansion,
1551 command substitution, and arithmetic expansion. We also
1552 have to be a bit careful with wildcard characters, as
1553 pattern might be given to fnmatch soon. To do this, we
1554 convert quotes to escapes. */
1556 char *expanded;
1557 size_t exp_len;
1558 size_t exp_maxl;
1559 char *p;
1560 int quoted = 0; /* 1: single quotes; 2: double */
1562 expanded = w_newword (&exp_len, &exp_maxl);
1563 for (p = pattern; p && *p; p++)
1565 size_t offset;
1567 switch (*p)
1569 case '"':
1570 if (quoted == 2)
1571 quoted = 0;
1572 else if (quoted == 0)
1573 quoted = 2;
1574 else break;
1576 continue;
1578 case '\'':
1579 if (quoted == 1)
1580 quoted = 0;
1581 else if (quoted == 0)
1582 quoted = 1;
1583 else break;
1585 continue;
1587 case '*':
1588 case '?':
1589 if (quoted)
1591 /* Convert quoted wildchar to escaped wildchar. */
1592 expanded = w_addchar (expanded, &exp_len,
1593 &exp_maxl, '\\');
1595 if (expanded == NULL)
1596 goto no_space;
1598 break;
1600 case '$':
1601 offset = 0;
1602 error = parse_dollars (&expanded, &exp_len, &exp_maxl, p,
1603 &offset, flags, NULL, NULL, NULL, 1);
1604 if (error)
1606 if (free_value)
1607 free (value);
1609 free (expanded);
1611 goto do_error;
1614 p += offset;
1615 continue;
1617 case '~':
1618 if (quoted || exp_len)
1619 break;
1621 offset = 0;
1622 error = parse_tilde (&expanded, &exp_len, &exp_maxl, p,
1623 &offset, 0);
1624 if (error)
1626 if (free_value)
1627 free (value);
1629 free (expanded);
1631 goto do_error;
1634 p += offset;
1635 continue;
1637 case '\\':
1638 expanded = w_addchar (expanded, &exp_len, &exp_maxl, '\\');
1639 ++p;
1640 assert (*p); /* checked when extracted initially */
1641 if (expanded == NULL)
1642 goto no_space;
1645 expanded = w_addchar (expanded, &exp_len, &exp_maxl, *p);
1647 if (expanded == NULL)
1648 goto no_space;
1651 free (pattern);
1653 pattern = expanded;
1656 switch (action)
1658 case ACT_RP_SHORT_LEFT:
1659 case ACT_RP_LONG_LEFT:
1660 case ACT_RP_SHORT_RIGHT:
1661 case ACT_RP_LONG_RIGHT:
1663 char *p;
1664 char c;
1665 char *end;
1667 if (value == NULL || pattern == NULL || *pattern == '\0')
1668 break;
1670 end = value + strlen (value);
1672 switch (action)
1674 case ACT_RP_SHORT_LEFT:
1675 for (p = value; p <= end; ++p)
1677 c = *p;
1678 *p = '\0';
1679 if (fnmatch (pattern, value, 0) != FNM_NOMATCH)
1681 *p = c;
1682 if (free_value)
1684 char *newval = __strdup (p);
1685 if (newval == NULL)
1687 free (value);
1688 goto no_space;
1690 free (value);
1691 value = newval;
1693 else
1694 value = p;
1695 break;
1697 *p = c;
1700 break;
1702 case ACT_RP_LONG_LEFT:
1703 for (p = end; p >= value; --p)
1705 c = *p;
1706 *p = '\0';
1707 if (fnmatch (pattern, value, 0) != FNM_NOMATCH)
1709 *p = c;
1710 if (free_value)
1712 char *newval = __strdup (p);
1713 if (newval == NULL)
1715 free (value);
1716 goto no_space;
1718 free (value);
1719 value = newval;
1721 else
1722 value = p;
1723 break;
1725 *p = c;
1728 break;
1730 case ACT_RP_SHORT_RIGHT:
1731 for (p = end; p >= value; --p)
1733 if (fnmatch (pattern, p, 0) != FNM_NOMATCH)
1735 char *newval;
1736 newval = malloc (p - value + 1);
1738 if (newval == NULL)
1740 if (free_value)
1741 free (value);
1742 goto no_space;
1745 *(char *) __mempcpy (newval, value, p - value) = '\0';
1746 if (free_value)
1747 free (value);
1748 value = newval;
1749 free_value = 1;
1750 break;
1754 break;
1756 case ACT_RP_LONG_RIGHT:
1757 for (p = value; p <= end; ++p)
1759 if (fnmatch (pattern, p, 0) != FNM_NOMATCH)
1761 char *newval;
1762 newval = malloc (p - value + 1);
1764 if (newval == NULL)
1766 if (free_value)
1767 free (value);
1768 goto no_space;
1771 *(char *) __mempcpy (newval, value, p - value) = '\0';
1772 if (free_value)
1773 free (value);
1774 value = newval;
1775 free_value = 1;
1776 break;
1780 break;
1782 default:
1783 break;
1786 break;
1789 case ACT_NULL_ERROR:
1790 if (value && *value)
1791 /* Substitute parameter */
1792 break;
1794 error = 0;
1795 if (!colon_seen && value)
1796 /* Substitute NULL */
1798 else
1800 const char *str = pattern;
1802 if (str[0] == '\0')
1803 str = _("parameter null or not set");
1805 __fxprintf (NULL, "%s: %s\n", env, str);
1808 if (free_value)
1809 free (value);
1810 goto do_error;
1812 case ACT_NULL_SUBST:
1813 if (value && *value)
1814 /* Substitute parameter */
1815 break;
1817 if (free_value)
1818 free (value);
1820 if (!colon_seen && value)
1821 /* Substitute NULL */
1822 goto success;
1824 value = pattern ? __strdup (pattern) : pattern;
1825 free_value = 1;
1827 if (pattern && !value)
1828 goto no_space;
1830 break;
1832 case ACT_NONNULL_SUBST:
1833 if (value && (*value || !colon_seen))
1835 if (free_value)
1836 free (value);
1838 value = pattern ? __strdup (pattern) : pattern;
1839 free_value = 1;
1841 if (pattern && !value)
1842 goto no_space;
1844 break;
1847 /* Substitute NULL */
1848 if (free_value)
1849 free (value);
1850 goto success;
1852 case ACT_NULL_ASSIGN:
1853 if (value && *value)
1854 /* Substitute parameter */
1855 break;
1857 if (!colon_seen && value)
1859 /* Substitute NULL */
1860 if (free_value)
1861 free (value);
1862 goto success;
1865 if (free_value)
1866 free (value);
1868 value = pattern ? __strdup (pattern) : pattern;
1869 free_value = 1;
1871 if (pattern && !value)
1872 goto no_space;
1874 __setenv (env, value ?: "", 1);
1875 break;
1877 default:
1878 assert (! "Unrecognised action!");
1882 free (env);
1883 env = NULL;
1884 free (pattern);
1885 pattern = NULL;
1887 if (seen_hash)
1889 char param_length[21];
1890 param_length[20] = '\0';
1891 *word = w_addstr (*word, word_length, max_length,
1892 _itoa_word (value ? strlen (value) : 0,
1893 &param_length[20], 10, 0));
1894 if (free_value)
1896 assert (value != NULL);
1897 free (value);
1900 return *word ? 0 : WRDE_NOSPACE;
1903 if (value == NULL)
1904 return 0;
1906 if (quoted || !pwordexp)
1908 /* Quoted - no field split */
1909 *word = w_addstr (*word, word_length, max_length, value);
1910 if (free_value)
1911 free (value);
1913 return *word ? 0 : WRDE_NOSPACE;
1915 else
1917 /* Need to field-split */
1918 char *value_copy = __strdup (value); /* Don't modify value */
1919 char *field_begin = value_copy;
1920 int seen_nonws_ifs = 0;
1922 if (free_value)
1923 free (value);
1925 if (value_copy == NULL)
1926 goto no_space;
1930 char *field_end = field_begin;
1931 char *next_field;
1933 /* If this isn't the first field, start a new word */
1934 if (field_begin != value_copy)
1936 if (w_addword (pwordexp, *word) == WRDE_NOSPACE)
1938 free (value_copy);
1939 goto no_space;
1942 *word = w_newword (word_length, max_length);
1945 /* Skip IFS whitespace before the field */
1946 field_begin += strspn (field_begin, ifs_white);
1948 if (!seen_nonws_ifs && *field_begin == 0)
1949 /* Nothing but whitespace */
1950 break;
1952 /* Search for the end of the field */
1953 field_end = field_begin + strcspn (field_begin, ifs);
1955 /* Set up pointer to the character after end of field and
1956 skip whitespace IFS after it. */
1957 next_field = field_end + strspn (field_end, ifs_white);
1959 /* Skip at most one non-whitespace IFS character after the field */
1960 seen_nonws_ifs = 0;
1961 if (*next_field && strchr (ifs, *next_field))
1963 seen_nonws_ifs = 1;
1964 next_field++;
1967 /* Null-terminate it */
1968 *field_end = 0;
1970 /* Tag a copy onto the current word */
1971 *word = w_addstr (*word, word_length, max_length, field_begin);
1973 if (*word == NULL && *field_begin != '\0')
1975 free (value_copy);
1976 goto no_space;
1979 field_begin = next_field;
1981 while (seen_nonws_ifs || *field_begin);
1983 free (value_copy);
1986 return 0;
1988 success:
1989 error = 0;
1990 goto do_error;
1992 no_space:
1993 error = WRDE_NOSPACE;
1994 goto do_error;
1996 syntax:
1997 error = WRDE_SYNTAX;
1999 do_error:
2000 free (env);
2002 free (pattern);
2004 return error;
2007 #undef CHAR_IN_SET
2009 static int
2010 parse_dollars (char **word, size_t *word_length, size_t *max_length,
2011 const char *words, size_t *offset, int flags,
2012 wordexp_t *pwordexp, const char *ifs, const char *ifs_white,
2013 int quoted)
2015 /* We are poised _at_ "$" */
2016 switch (words[1 + *offset])
2018 case '"':
2019 case '\'':
2020 case 0:
2021 *word = w_addchar (*word, word_length, max_length, '$');
2022 return *word ? 0 : WRDE_NOSPACE;
2024 case '(':
2025 if (words[2 + *offset] == '(')
2027 /* Differentiate between $((1+3)) and $((echo);(ls)) */
2028 int i = 3 + *offset;
2029 int depth = 0;
2030 while (words[i] && !(depth == 0 && words[i] == ')'))
2032 if (words[i] == '(')
2033 ++depth;
2034 else if (words[i] == ')')
2035 --depth;
2037 ++i;
2040 if (words[i] == ')' && words[i + 1] == ')')
2042 (*offset) += 3;
2043 /* Call parse_arith -- 0 is for "no brackets" */
2044 return parse_arith (word, word_length, max_length, words, offset,
2045 flags, 0);
2049 (*offset) += 2;
2050 return parse_comm (word, word_length, max_length, words, offset, flags,
2051 quoted? NULL : pwordexp, ifs, ifs_white);
2053 case '[':
2054 (*offset) += 2;
2055 /* Call parse_arith -- 1 is for "brackets" */
2056 return parse_arith (word, word_length, max_length, words, offset, flags,
2059 case '{':
2060 default:
2061 ++(*offset); /* parse_param needs to know if "{" is there */
2062 return parse_param (word, word_length, max_length, words, offset, flags,
2063 pwordexp, ifs, ifs_white, quoted);
2067 static int
2068 parse_backtick (char **word, size_t *word_length, size_t *max_length,
2069 const char *words, size_t *offset, int flags,
2070 wordexp_t *pwordexp, const char *ifs, const char *ifs_white)
2072 /* We are poised just after "`" */
2073 int error;
2074 int squoting = 0;
2075 size_t comm_length;
2076 size_t comm_maxlen;
2077 char *comm = w_newword (&comm_length, &comm_maxlen);
2079 for (; words[*offset]; ++(*offset))
2081 switch (words[*offset])
2083 case '`':
2084 /* Go -- give the script to the shell */
2085 error = exec_comm (comm, word, word_length, max_length, flags,
2086 pwordexp, ifs, ifs_white);
2087 free (comm);
2088 return error;
2090 case '\\':
2091 if (squoting)
2093 error = parse_qtd_backslash (&comm, &comm_length, &comm_maxlen,
2094 words, offset);
2096 if (error)
2098 free (comm);
2099 return error;
2102 break;
2105 error = parse_backslash (&comm, &comm_length, &comm_maxlen, words,
2106 offset);
2108 if (error)
2110 free (comm);
2111 return error;
2114 break;
2116 case '\'':
2117 squoting = 1 - squoting;
2118 default:
2119 comm = w_addchar (comm, &comm_length, &comm_maxlen, words[*offset]);
2120 if (comm == NULL)
2121 return WRDE_NOSPACE;
2125 /* Premature end */
2126 free (comm);
2127 return WRDE_SYNTAX;
2130 static int
2131 parse_dquote (char **word, size_t *word_length, size_t *max_length,
2132 const char *words, size_t *offset, int flags,
2133 wordexp_t *pwordexp, const char * ifs, const char * ifs_white)
2135 /* We are poised just after a double-quote */
2136 int error;
2138 for (; words[*offset]; ++(*offset))
2140 switch (words[*offset])
2142 case '"':
2143 return 0;
2145 case '$':
2146 error = parse_dollars (word, word_length, max_length, words, offset,
2147 flags, pwordexp, ifs, ifs_white, 1);
2148 /* The ``1'' here is to tell parse_dollars not to
2149 * split the fields. It may need to, however ("$@").
2151 if (error)
2152 return error;
2154 break;
2156 case '`':
2157 ++(*offset);
2158 error = parse_backtick (word, word_length, max_length, words,
2159 offset, flags, NULL, NULL, NULL);
2160 /* The first NULL here is to tell parse_backtick not to
2161 * split the fields.
2163 if (error)
2164 return error;
2166 break;
2168 case '\\':
2169 error = parse_qtd_backslash (word, word_length, max_length, words,
2170 offset);
2172 if (error)
2173 return error;
2175 break;
2177 default:
2178 *word = w_addchar (*word, word_length, max_length, words[*offset]);
2179 if (*word == NULL)
2180 return WRDE_NOSPACE;
2184 /* Unterminated string */
2185 return WRDE_SYNTAX;
2189 * wordfree() is to be called after pwordexp is finished with.
2192 void
2193 wordfree (wordexp_t *pwordexp)
2196 /* wordexp can set pwordexp to NULL */
2197 if (pwordexp && pwordexp->we_wordv)
2199 char **wordv = pwordexp->we_wordv;
2201 for (wordv += pwordexp->we_offs; *wordv; ++wordv)
2202 free (*wordv);
2204 free (pwordexp->we_wordv);
2205 pwordexp->we_wordv = NULL;
2208 libc_hidden_def (wordfree)
2211 * wordexp()
2215 wordexp (const char *words, wordexp_t *pwordexp, int flags)
2217 size_t words_offset;
2218 size_t word_length;
2219 size_t max_length;
2220 char *word = w_newword (&word_length, &max_length);
2221 int error;
2222 char *ifs;
2223 char ifs_white[4];
2224 wordexp_t old_word = *pwordexp;
2226 if (flags & WRDE_REUSE)
2228 /* Minimal implementation of WRDE_REUSE for now */
2229 wordfree (pwordexp);
2230 old_word.we_wordv = NULL;
2233 if ((flags & WRDE_APPEND) == 0)
2235 pwordexp->we_wordc = 0;
2237 if (flags & WRDE_DOOFFS)
2239 pwordexp->we_wordv = calloc (1 + pwordexp->we_offs, sizeof (char *));
2240 if (pwordexp->we_wordv == NULL)
2242 error = WRDE_NOSPACE;
2243 goto do_error;
2246 else
2248 pwordexp->we_wordv = calloc (1, sizeof (char *));
2249 if (pwordexp->we_wordv == NULL)
2251 error = WRDE_NOSPACE;
2252 goto do_error;
2255 pwordexp->we_offs = 0;
2259 /* Find out what the field separators are.
2260 * There are two types: whitespace and non-whitespace.
2262 ifs = getenv ("IFS");
2264 if (ifs == NULL)
2265 /* IFS unset - use <space><tab><newline>. */
2266 ifs = strcpy (ifs_white, " \t\n");
2267 else
2269 char *ifsch = ifs;
2270 char *whch = ifs_white;
2272 while (*ifsch != '\0')
2274 if (*ifsch == ' ' || *ifsch == '\t' || *ifsch == '\n')
2276 /* Whitespace IFS. See first whether it is already in our
2277 collection. */
2278 char *runp = ifs_white;
2280 while (runp < whch && *runp != *ifsch)
2281 ++runp;
2283 if (runp == whch)
2284 *whch++ = *ifsch;
2287 ++ifsch;
2289 *whch = '\0';
2292 for (words_offset = 0 ; words[words_offset] ; ++words_offset)
2293 switch (words[words_offset])
2295 case '\\':
2296 error = parse_backslash (&word, &word_length, &max_length, words,
2297 &words_offset);
2299 if (error)
2300 goto do_error;
2302 break;
2304 case '$':
2305 error = parse_dollars (&word, &word_length, &max_length, words,
2306 &words_offset, flags, pwordexp, ifs, ifs_white,
2309 if (error)
2310 goto do_error;
2312 break;
2314 case '`':
2315 ++words_offset;
2316 error = parse_backtick (&word, &word_length, &max_length, words,
2317 &words_offset, flags, pwordexp, ifs,
2318 ifs_white);
2320 if (error)
2321 goto do_error;
2323 break;
2325 case '"':
2326 ++words_offset;
2327 error = parse_dquote (&word, &word_length, &max_length, words,
2328 &words_offset, flags, pwordexp, ifs, ifs_white);
2330 if (error)
2331 goto do_error;
2333 if (!word_length)
2335 error = w_addword (pwordexp, NULL);
2337 if (error)
2338 return error;
2341 break;
2343 case '\'':
2344 ++words_offset;
2345 error = parse_squote (&word, &word_length, &max_length, words,
2346 &words_offset);
2348 if (error)
2349 goto do_error;
2351 if (!word_length)
2353 error = w_addword (pwordexp, NULL);
2355 if (error)
2356 return error;
2359 break;
2361 case '~':
2362 error = parse_tilde (&word, &word_length, &max_length, words,
2363 &words_offset, pwordexp->we_wordc);
2365 if (error)
2366 goto do_error;
2368 break;
2370 case '*':
2371 case '[':
2372 case '?':
2373 error = parse_glob (&word, &word_length, &max_length, words,
2374 &words_offset, flags, pwordexp, ifs, ifs_white);
2376 if (error)
2377 goto do_error;
2379 break;
2381 default:
2382 /* Is it a word separator? */
2383 if (strchr (" \t", words[words_offset]) == NULL)
2385 char ch = words[words_offset];
2387 /* Not a word separator -- but is it a valid word char? */
2388 if (strchr ("\n|&;<>(){}", ch))
2390 /* Fail */
2391 error = WRDE_BADCHAR;
2392 goto do_error;
2395 /* "Ordinary" character -- add it to word */
2396 word = w_addchar (word, &word_length, &max_length,
2397 ch);
2398 if (word == NULL)
2400 error = WRDE_NOSPACE;
2401 goto do_error;
2404 break;
2407 /* If a word has been delimited, add it to the list. */
2408 if (word != NULL)
2410 error = w_addword (pwordexp, word);
2411 if (error)
2412 goto do_error;
2415 word = w_newword (&word_length, &max_length);
2418 /* End of string */
2420 /* There was a word separator at the end */
2421 if (word == NULL) /* i.e. w_newword */
2422 return 0;
2424 /* There was no field separator at the end */
2425 return w_addword (pwordexp, word);
2427 do_error:
2428 /* Error:
2429 * free memory used (unless error is WRDE_NOSPACE), and
2430 * set pwordexp members back to what they were.
2433 free (word);
2435 if (error == WRDE_NOSPACE)
2436 return WRDE_NOSPACE;
2438 if ((flags & WRDE_APPEND) == 0)
2439 wordfree (pwordexp);
2441 *pwordexp = old_word;
2442 return error;