1 /* POSIX.2 wordexp implementation.
2 Copyright (C) 1997-2002, 2003, 2005, 2006 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, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
34 #include <sys/param.h>
37 #include <sys/types.h>
38 #include <sys/types.h>
46 #include <bits/libc-lock.h>
47 #include <stdio-common/_itoa.h>
49 /* Undefine the following line for the production version. */
50 /* #define NDEBUG 1 */
53 /* Get some device information. */
54 #include <device-nrs.h>
57 * This is a recursive-descent-style word expansion routine.
60 /* These variables are defined and initialized in the startup code. */
61 extern int __libc_argc attribute_hidden
;
62 extern char **__libc_argv attribute_hidden
;
64 /* Some forward declarations */
65 static int parse_dollars (char **word
, size_t *word_length
, size_t *max_length
,
66 const char *words
, size_t *offset
, int flags
,
67 wordexp_t
*pwordexp
, const char *ifs
,
68 const char *ifs_white
, int quoted
)
70 static int parse_backtick (char **word
, size_t *word_length
,
71 size_t *max_length
, const char *words
,
72 size_t *offset
, int flags
, wordexp_t
*pwordexp
,
73 const char *ifs
, const char *ifs_white
)
75 static int parse_dquote (char **word
, size_t *word_length
, size_t *max_length
,
76 const char *words
, size_t *offset
, int flags
,
77 wordexp_t
*pwordexp
, const char *ifs
,
78 const char *ifs_white
)
80 static int eval_expr (char *expr
, long int *result
) internal_function
;
82 /* The w_*() functions manipulate word lists. */
86 /* Result of w_newword will be ignored if it's the last word. */
88 w_newword (size_t *actlen
, size_t *maxlen
)
90 *actlen
= *maxlen
= 0;
95 w_addchar (char *buffer
, size_t *actlen
, size_t *maxlen
, char ch
)
96 /* (lengths exclude trailing zero) */
98 /* Add a character to the buffer, allocating room for it if needed. */
100 if (*actlen
== *maxlen
)
102 char *old_buffer
= buffer
;
103 assert (buffer
== NULL
|| *maxlen
!= 0);
105 buffer
= (char *) realloc (buffer
, 1 + *maxlen
);
113 buffer
[*actlen
] = ch
;
114 buffer
[++(*actlen
)] = '\0';
122 w_addmem (char *buffer
, size_t *actlen
, size_t *maxlen
, const char *str
,
125 /* Add a string to the buffer, allocating room for it if needed.
127 if (*actlen
+ len
> *maxlen
)
129 char *old_buffer
= buffer
;
130 assert (buffer
== NULL
|| *maxlen
!= 0);
131 *maxlen
+= MAX (2 * len
, W_CHUNK
);
132 buffer
= realloc (old_buffer
, 1 + *maxlen
);
140 *((char *) __mempcpy (&buffer
[*actlen
], str
, len
)) = '\0';
149 w_addstr (char *buffer
, size_t *actlen
, size_t *maxlen
, const char *str
)
150 /* (lengths exclude trailing zero) */
152 /* Add a string to the buffer, allocating room for it if needed.
156 assert (str
!= NULL
); /* w_addstr only called from this file */
159 return w_addmem (buffer
, actlen
, maxlen
, str
, len
);
164 w_addword (wordexp_t
*pwordexp
, char *word
)
166 /* Add a word to the wordlist */
169 bool allocated
= false;
171 /* Internally, NULL acts like "". Convert NULLs to "" before
172 * the caller sees them.
176 word
= __strdup ("");
182 num_p
= 2 + pwordexp
->we_wordc
+ pwordexp
->we_offs
;
183 new_wordv
= realloc (pwordexp
->we_wordv
, sizeof (char *) * num_p
);
184 if (new_wordv
!= NULL
)
186 pwordexp
->we_wordv
= new_wordv
;
187 pwordexp
->we_wordv
[pwordexp
->we_offs
+ pwordexp
->we_wordc
++] = word
;
188 pwordexp
->we_wordv
[pwordexp
->we_offs
+ pwordexp
->we_wordc
] = NULL
;
199 /* The parse_*() functions should leave *offset being the offset in 'words'
200 * to the last character processed.
205 parse_backslash (char **word
, size_t *word_length
, size_t *max_length
,
206 const char *words
, size_t *offset
)
208 /* We are poised _at_ a backslash, not in quotes */
210 switch (words
[1 + *offset
])
213 /* Backslash is last character of input words */
221 *word
= w_addchar (*word
, word_length
, max_length
, words
[1 + *offset
]);
234 parse_qtd_backslash (char **word
, size_t *word_length
, size_t *max_length
,
235 const char *words
, size_t *offset
)
237 /* We are poised _at_ a backslash, inside quotes */
239 switch (words
[1 + *offset
])
242 /* Backslash is last character of input words */
253 *word
= w_addchar (*word
, word_length
, max_length
, words
[1 + *offset
]);
261 *word
= w_addchar (*word
, word_length
, max_length
, words
[*offset
]);
263 *word
= w_addchar (*word
, word_length
, max_length
, words
[1 + *offset
]);
277 parse_tilde (char **word
, size_t *word_length
, size_t *max_length
,
278 const char *words
, size_t *offset
, size_t wordc
)
280 /* We are poised _at_ a tilde */
283 if (*word_length
!= 0)
285 if (!((*word
)[*word_length
- 1] == '=' && wordc
== 0))
287 if (!((*word
)[*word_length
- 1] == ':'
288 && strchr (*word
, '=') && wordc
== 0))
290 *word
= w_addchar (*word
, word_length
, max_length
, '~');
291 return *word
? 0 : WRDE_NOSPACE
;
296 for (i
= 1 + *offset
; words
[i
]; i
++)
298 if (words
[i
] == ':' || words
[i
] == '/' || words
[i
] == ' ' ||
299 words
[i
] == '\t' || words
[i
] == 0 )
302 if (words
[i
] == '\\')
304 *word
= w_addchar (*word
, word_length
, max_length
, '~');
305 return *word
? 0 : WRDE_NOSPACE
;
309 if (i
== 1 + *offset
)
311 /* Tilde appears on its own */
313 struct passwd pwd
, *tpwd
;
319 /* POSIX.2 says ~ expands to $HOME and if HOME is unset the
320 results are unspecified. We do a lookup on the uid if
323 home
= getenv ("HOME");
326 *word
= w_addstr (*word
, word_length
, max_length
, home
);
333 buffer
= __alloca (buflen
);
335 while ((result
= __getpwuid_r (uid
, &pwd
, buffer
, buflen
, &tpwd
)) != 0
337 buffer
= extend_alloca (buffer
, buflen
, buflen
+ 1000);
339 if (result
== 0 && tpwd
!= NULL
&& pwd
.pw_dir
!= NULL
)
341 *word
= w_addstr (*word
, word_length
, max_length
, pwd
.pw_dir
);
347 *word
= w_addchar (*word
, word_length
, max_length
, '~');
355 /* Look up user name in database to get home directory */
356 char *user
= strndupa (&words
[1 + *offset
], i
- (1 + *offset
));
357 struct passwd pwd
, *tpwd
;
359 char* buffer
= __alloca (buflen
);
362 while ((result
= __getpwnam_r (user
, &pwd
, buffer
, buflen
, &tpwd
)) != 0
364 buffer
= extend_alloca (buffer
, buflen
, buflen
+ 1000);
366 if (result
== 0 && tpwd
!= NULL
&& pwd
.pw_dir
)
367 *word
= w_addstr (*word
, word_length
, max_length
, pwd
.pw_dir
);
370 /* (invalid login name) */
371 *word
= w_addchar (*word
, word_length
, max_length
, '~');
373 *word
= w_addstr (*word
, word_length
, max_length
, user
);
378 return *word
? 0 : WRDE_NOSPACE
;
384 do_parse_glob (const char *glob_word
, char **word
, size_t *word_length
,
385 size_t *max_length
, wordexp_t
*pwordexp
, const char *ifs
,
386 const char *ifs_white
)
392 error
= glob (glob_word
, GLOB_NOCHECK
, NULL
, &globbuf
);
396 /* We can only run into memory problems. */
397 assert (error
== GLOB_NOSPACE
);
403 /* No field splitting allowed. */
404 assert (globbuf
.gl_pathv
[0] != NULL
);
405 *word
= w_addstr (*word
, word_length
, max_length
, globbuf
.gl_pathv
[0]);
406 for (match
= 1; match
< globbuf
.gl_pathc
&& *word
!= NULL
; ++match
)
408 *word
= w_addchar (*word
, word_length
, max_length
, ' ');
410 *word
= w_addstr (*word
, word_length
, max_length
,
411 globbuf
.gl_pathv
[match
]);
415 return *word
? 0 : WRDE_NOSPACE
;
418 assert (ifs
== NULL
|| *ifs
!= '\0');
422 *word
= w_newword (word_length
, max_length
);
425 for (match
= 0; match
< globbuf
.gl_pathc
; ++match
)
427 char *matching_word
= __strdup (globbuf
.gl_pathv
[match
]);
428 if (matching_word
== NULL
|| w_addword (pwordexp
, matching_word
))
441 parse_glob (char **word
, size_t *word_length
, size_t *max_length
,
442 const char *words
, size_t *offset
, int flags
,
443 wordexp_t
*pwordexp
, const char *ifs
, const char *ifs_white
)
445 /* We are poised just after a '*', a '[' or a '?'. */
446 int error
= WRDE_NOSPACE
;
447 int quoted
= 0; /* 1 if singly-quoted, 2 if doubly */
449 wordexp_t glob_list
; /* List of words to glob */
451 glob_list
.we_wordc
= 0;
452 glob_list
.we_wordv
= NULL
;
453 glob_list
.we_offs
= 0;
454 for (; words
[*offset
] != '\0'; ++*offset
)
456 if (strchr (ifs
, words
[*offset
]) != NULL
)
460 /* Sort out quoting */
461 if (words
[*offset
] == '\'')
468 else if (quoted
== 1)
474 else if (words
[*offset
] == '"')
481 else if (quoted
== 2)
488 /* Sort out other special characters */
489 if (quoted
!= 1 && words
[*offset
] == '$')
491 error
= parse_dollars (word
, word_length
, max_length
, words
,
492 offset
, flags
, &glob_list
, ifs
, ifs_white
,
499 else if (words
[*offset
] == '\\')
502 error
= parse_qtd_backslash (word
, word_length
, max_length
,
505 error
= parse_backslash (word
, word_length
, max_length
,
514 *word
= w_addchar (*word
, word_length
, max_length
, words
[*offset
]);
519 /* Don't forget to re-parse the character we stopped at. */
523 error
= w_addword (&glob_list
, *word
);
524 *word
= w_newword (word_length
, max_length
);
525 for (i
= 0; error
== 0 && i
< glob_list
.we_wordc
; i
++)
526 error
= do_parse_glob (glob_list
.we_wordv
[i
], word
, word_length
,
527 max_length
, pwordexp
, ifs
, ifs_white
);
531 wordfree (&glob_list
);
537 parse_squote (char **word
, size_t *word_length
, size_t *max_length
,
538 const char *words
, size_t *offset
)
540 /* We are poised just after a single quote */
541 for (; words
[*offset
]; ++(*offset
))
543 if (words
[*offset
] != '\'')
545 *word
= w_addchar (*word
, word_length
, max_length
, words
[*offset
]);
552 /* Unterminated string */
556 /* Functions to evaluate an arithmetic expression */
559 eval_expr_val (char **expr
, long int *result
)
563 /* Skip white space */
564 for (digit
= *expr
; digit
&& *digit
&& isspace (*digit
); ++digit
);
568 /* Scan for closing paren */
569 for (++digit
; **expr
&& **expr
!= ')'; ++(*expr
));
577 if (eval_expr (digit
, result
))
583 /* POSIX requires that decimal, octal, and hexadecimal constants are
584 recognized. Therefore we pass 0 as the third parameter to strtol. */
585 *result
= strtol (digit
, expr
, 0);
594 eval_expr_multdiv (char **expr
, long int *result
)
599 if (eval_expr_val (expr
, result
) != 0)
604 /* Skip white space */
605 for (; *expr
&& **expr
&& isspace (**expr
); ++(*expr
));
610 if (eval_expr_val (expr
, &arg
) != 0)
615 else if (**expr
== '/')
618 if (eval_expr_val (expr
, &arg
) != 0)
631 eval_expr (char *expr
, long int *result
)
636 if (eval_expr_multdiv (&expr
, result
) != 0)
641 /* Skip white space */
642 for (; expr
&& *expr
&& isspace (*expr
); ++expr
);
647 if (eval_expr_multdiv (&expr
, &arg
) != 0)
652 else if (*expr
== '-')
655 if (eval_expr_multdiv (&expr
, &arg
) != 0)
668 parse_arith (char **word
, size_t *word_length
, size_t *max_length
,
669 const char *words
, size_t *offset
, int flags
, int bracket
)
671 /* We are poised just after "$((" or "$[" */
678 expr
= w_newword (&expr_length
, &expr_maxlen
);
679 for (; words
[*offset
]; ++(*offset
))
681 switch (words
[*offset
])
684 error
= parse_dollars (&expr
, &expr_length
, &expr_maxlen
,
685 words
, offset
, flags
, NULL
, NULL
, NULL
, 1);
686 /* The ``1'' here is to tell parse_dollars not to
698 error
= parse_backtick (&expr
, &expr_length
, &expr_maxlen
,
699 words
, offset
, flags
, NULL
, NULL
, NULL
);
700 /* The first NULL here is to tell parse_backtick not to
711 error
= parse_qtd_backslash (&expr
, &expr_length
, &expr_maxlen
,
718 /* I think that a backslash within an
719 * arithmetic expansion is bound to
720 * cause an error sooner or later anyway though.
725 if (--paren_depth
== 0)
727 char result
[21]; /* 21 = ceil(log10(2^64)) + 1 */
728 long int numresult
= 0;
729 long long int convertme
;
731 if (bracket
|| words
[1 + *offset
] != ')')
740 if (*expr
&& eval_expr (expr
, &numresult
) != 0)
748 convertme
= -numresult
;
749 *word
= w_addchar (*word
, word_length
, max_length
, '-');
757 convertme
= numresult
;
760 *word
= w_addstr (*word
, word_length
, max_length
,
761 _itoa (convertme
, &result
[20], 10, 0));
763 return *word
? 0 : WRDE_NOSPACE
;
765 expr
= w_addchar (expr
, &expr_length
, &expr_maxlen
, words
[*offset
]);
772 if (bracket
&& paren_depth
== 1)
774 char result
[21]; /* 21 = ceil(log10(2^64)) + 1 */
775 long int numresult
= 0;
778 if (*expr
&& eval_expr (expr
, &numresult
) != 0)
785 *word
= w_addstr (*word
, word_length
, max_length
,
786 _itoa_word (numresult
, &result
[20], 10, 0));
788 return *word
? 0 : WRDE_NOSPACE
;
804 expr
= w_addchar (expr
, &expr_length
, &expr_maxlen
, words
[*offset
]);
815 /* Function called by child process in exec_comm() */
817 internal_function
__attribute__ ((always_inline
))
818 exec_comm_child (char *comm
, int *fildes
, int showerr
, int noexec
)
820 const char *args
[4] = { _PATH_BSHELL
, "-c", comm
, NULL
};
822 /* Execute the command, or just check syntax? */
826 /* Redirect output. */
827 __dup2 (fildes
[1], STDOUT_FILENO
);
830 /* Redirect stderr to /dev/null if we have to. */
836 fd
= __open (_PATH_DEVNULL
, O_WRONLY
);
837 if (fd
>= 0 && fd
!= 2)
839 __dup2 (fd
, STDERR_FILENO
);
842 /* Be paranoid. Check that we actually opened the /dev/null
844 if (__builtin_expect (__fxstat64 (_STAT_VER
, STDERR_FILENO
, &st
), 0) != 0
845 || __builtin_expect (S_ISCHR (st
.st_mode
), 1) == 0
846 #if defined DEV_NULL_MAJOR && defined DEV_NULL_MINOR
847 || st
.st_rdev
!= makedev (DEV_NULL_MAJOR
, DEV_NULL_MINOR
)
850 /* It's not the /dev/null device. Stop right here. The
851 problem is: how do we stop? We use _exit() with an
852 hopefully unusual exit code. */
856 /* Make sure the subshell doesn't field-split on our behalf. */
860 __execve (_PATH_BSHELL
, (char *const *) args
, __environ
);
866 /* Function to execute a command and retrieve the results */
867 /* pwordexp contains NULL if field-splitting is forbidden */
870 exec_comm (char *comm
, char **word
, size_t *word_length
, size_t *max_length
,
871 int flags
, wordexp_t
*pwordexp
, const char *ifs
,
872 const char *ifs_white
)
879 size_t maxnewlines
= 0;
880 char buffer
[bufsize
];
884 /* Don't fork() unless necessary */
893 if ((pid
= __fork ()) < 0)
904 exec_comm_child (comm
, fildes
, noexec
? 0 : flags
& WRDE_SHOWERR
, noexec
);
908 /* If we are just testing the syntax, only wait. */
910 return (TEMP_FAILURE_RETRY (__waitpid (pid
, &status
, 0)) == pid
911 && status
!= 0) ? WRDE_SYNTAX
: 0;
917 /* Quoted - no field splitting */
921 if ((buflen
= TEMP_FAILURE_RETRY (__read (fildes
[0], buffer
,
924 if (TEMP_FAILURE_RETRY (__waitpid (pid
, &status
, WNOHANG
)) == 0)
926 if ((buflen
= TEMP_FAILURE_RETRY (__read (fildes
[0], buffer
,
931 maxnewlines
+= buflen
;
933 *word
= w_addmem (*word
, word_length
, max_length
, buffer
, buflen
);
939 /* Not quoted - split fields */
943 * 0 when searching for first character in a field not IFS white space
944 * 1 when copying the text of a field
945 * 2 when searching for possible non-whitespace IFS
946 * 3 when searching for non-newline after copying field
951 if ((buflen
= TEMP_FAILURE_RETRY (__read (fildes
[0], buffer
,
954 if (TEMP_FAILURE_RETRY (__waitpid (pid
, &status
, WNOHANG
)) == 0)
956 if ((buflen
= TEMP_FAILURE_RETRY (__read (fildes
[0], buffer
,
961 for (i
= 0; i
< buflen
; ++i
)
963 if (strchr (ifs
, buffer
[i
]) != NULL
)
965 /* Current character is IFS */
966 if (strchr (ifs_white
, buffer
[i
]) == NULL
)
968 /* Current character is IFS but not whitespace */
974 * eg: text<space><comma><space>moretext
976 * So, strip whitespace IFS (like at the start)
983 /* fall through and delimit field.. */
987 if (buffer
[i
] == '\n')
989 /* Current character is (IFS) newline */
991 /* If copying a field, this is the end of it,
992 but maybe all that's left is trailing newlines.
993 So start searching for a non-newline. */
1001 /* Current character is IFS white space, but
1004 /* If not either copying a field or searching
1005 for non-newline after a field, ignore it */
1006 if (copying
!= 1 && copying
!= 3)
1009 /* End of field (search for non-ws IFS afterwards) */
1014 /* First IFS white space (non-newline), or IFS non-whitespace.
1015 * Delimit the field. Nulls are converted by w_addword. */
1016 if (w_addword (pwordexp
, *word
) == WRDE_NOSPACE
)
1019 *word
= w_newword (word_length
, max_length
);
1022 /* fall back round the loop.. */
1026 /* Not IFS character */
1030 /* Nothing but (IFS) newlines since the last field,
1031 so delimit it here before starting new word */
1032 if (w_addword (pwordexp
, *word
) == WRDE_NOSPACE
)
1035 *word
= w_newword (word_length
, max_length
);
1040 if (buffer
[i
] == '\n') /* happens if newline not in IFS */
1045 *word
= w_addchar (*word
, word_length
, max_length
,
1054 /* Chop off trailing newlines (required by POSIX.2) */
1055 /* Ensure we don't go back further than the beginning of the
1056 substitution (i.e. remove maxnewlines bytes at most) */
1057 while (maxnewlines
-- != 0 &&
1058 *word_length
> 0 && (*word
)[*word_length
- 1] == '\n')
1060 (*word
)[--*word_length
] = '\0';
1062 /* If the last word was entirely newlines, turn it into a new word
1063 * which can be ignored if there's nothing following it. */
1064 if (*word_length
== 0)
1067 *word
= w_newword (word_length
, max_length
);
1072 __close (fildes
[0]);
1075 /* Check for syntax error (re-execute but with "-n" flag) */
1076 if (buflen
< 1 && status
!= 0)
1085 __kill (pid
, SIGKILL
);
1086 TEMP_FAILURE_RETRY (__waitpid (pid
, NULL
, 0));
1087 __close (fildes
[0]);
1088 return WRDE_NOSPACE
;
1093 parse_comm (char **word
, size_t *word_length
, size_t *max_length
,
1094 const char *words
, size_t *offset
, int flags
, wordexp_t
*pwordexp
,
1095 const char *ifs
, const char *ifs_white
)
1097 /* We are poised just after "$(" */
1098 int paren_depth
= 1;
1100 int quoted
= 0; /* 1 for singly-quoted, 2 for doubly-quoted */
1103 char *comm
= w_newword (&comm_length
, &comm_maxlen
);
1105 for (; words
[*offset
]; ++(*offset
))
1107 switch (words
[*offset
])
1112 else if (quoted
== 1)
1120 else if (quoted
== 2)
1126 if (!quoted
&& --paren_depth
== 0)
1128 /* Go -- give script to the shell */
1131 #ifdef __libc_ptf_call
1132 /* We do not want the exec_comm call to be cut short
1133 by a thread cancellation since cleanup is very
1134 ugly. Therefore disable cancellation for
1136 // XXX Ideally we do want the thread being cancelable.
1137 // XXX If demand is there we'll change it.
1138 int state
= PTHREAD_CANCEL_ENABLE
;
1139 __libc_ptf_call (pthread_setcancelstate
,
1140 (PTHREAD_CANCEL_DISABLE
, &state
), 0);
1143 error
= exec_comm (comm
, word
, word_length
, max_length
,
1144 flags
, pwordexp
, ifs
, ifs_white
);
1146 #ifdef __libc_ptf_call
1147 __libc_ptf_call (pthread_setcancelstate
, (state
, NULL
), 0);
1156 /* This is just part of the script */
1164 comm
= w_addchar (comm
, &comm_length
, &comm_maxlen
, words
[*offset
]);
1166 return WRDE_NOSPACE
;
1169 /* Premature end. */
1177 parse_param (char **word
, size_t *word_length
, size_t *max_length
,
1178 const char *words
, size_t *offset
, int flags
, wordexp_t
*pwordexp
,
1179 const char *ifs
, const char *ifs_white
, int quoted
)
1181 /* We are poised just after "$" */
1185 ACT_RP_SHORT_LEFT
= '#',
1186 ACT_RP_LONG_LEFT
= 'L',
1187 ACT_RP_SHORT_RIGHT
= '%',
1188 ACT_RP_LONG_RIGHT
= 'R',
1189 ACT_NULL_ERROR
= '?',
1190 ACT_NULL_SUBST
= '-',
1191 ACT_NONNULL_SUBST
= '+',
1192 ACT_NULL_ASSIGN
= '='
1198 size_t start
= *offset
;
1202 enum action action
= ACT_NONE
;
1207 int pattern_is_quoted
= 0; /* 1 for singly-quoted, 2 for doubly-quoted */
1211 int brace
= words
[*offset
] == '{';
1213 env
= w_newword (&env_length
, &env_maxlen
);
1214 pattern
= w_newword (&pat_length
, &pat_maxlen
);
1219 /* First collect the parameter name. */
1221 if (words
[*offset
] == '#')
1229 if (isalpha (words
[*offset
]) || words
[*offset
] == '_')
1231 /* Normal parameter name. */
1234 env
= w_addchar (env
, &env_length
, &env_maxlen
,
1239 while (isalnum (words
[++*offset
]) || words
[*offset
] == '_');
1241 else if (isdigit (words
[*offset
]))
1243 /* Numeric parameter name. */
1247 env
= w_addchar (env
, &env_length
, &env_maxlen
,
1254 while (isdigit(words
[++*offset
]));
1256 else if (strchr ("*@$", words
[*offset
]) != NULL
)
1258 /* Special parameter. */
1260 env
= w_addchar (env
, &env_length
, &env_maxlen
,
1274 /* Check for special action to be applied to the value. */
1275 switch (words
[*offset
])
1282 action
= ACT_RP_SHORT_LEFT
;
1283 if (words
[1 + *offset
] == '#')
1286 action
= ACT_RP_LONG_LEFT
;
1291 action
= ACT_RP_SHORT_RIGHT
;
1292 if (words
[1 + *offset
] == '%')
1295 action
= ACT_RP_LONG_RIGHT
;
1300 if (strchr ("-=?+", words
[1 + *offset
]) == NULL
)
1304 action
= words
[++*offset
];
1311 action
= words
[*offset
];
1318 /* Now collect the pattern, but don't expand it yet. */
1320 for (; words
[*offset
]; ++(*offset
))
1322 switch (words
[*offset
])
1325 if (!pattern_is_quoted
)
1330 if (!pattern_is_quoted
)
1339 if (pattern_is_quoted
)
1340 /* Quoted; treat as normal character. */
1343 /* Otherwise, it's an escape: next character is literal. */
1344 if (words
[++*offset
] == '\0')
1347 pattern
= w_addchar (pattern
, &pat_length
, &pat_maxlen
, '\\');
1348 if (pattern
== NULL
)
1354 if (pattern_is_quoted
== 0)
1355 pattern_is_quoted
= 1;
1356 else if (pattern_is_quoted
== 1)
1357 pattern_is_quoted
= 0;
1362 if (pattern_is_quoted
== 0)
1363 pattern_is_quoted
= 2;
1364 else if (pattern_is_quoted
== 2)
1365 pattern_is_quoted
= 0;
1370 pattern
= w_addchar (pattern
, &pat_length
, &pat_maxlen
,
1372 if (pattern
== NULL
)
1377 /* End of input string -- remember to reparse the character that we
1382 if (words
[start
] == '{' && words
[*offset
] != '}')
1389 /* $# expands to the number of positional parameters */
1391 value
= _itoa_word (__libc_argc
- 1, &buffer
[20], 10, 0);
1396 /* Just $ on its own */
1397 *offset
= start
- 1;
1398 *word
= w_addchar (*word
, word_length
, max_length
, '$');
1399 return *word
? 0 : WRDE_NOSPACE
;
1402 /* Is it a numeric parameter? */
1403 else if (isdigit (env
[0]))
1407 if (n
>= __libc_argc
)
1408 /* Substitute NULL. */
1411 /* Replace with appropriate positional parameter. */
1412 value
= __libc_argv
[n
];
1414 /* Is it a special parameter? */
1421 value
= _itoa_word (__getpid (), &buffer
[20], 10, 0);
1423 /* Is it `${#*}' or `${#@}'? */
1424 else if ((*env
== '*' || *env
== '@') && seen_hash
)
1427 value
= _itoa_word (__libc_argc
> 0 ? __libc_argc
- 1 : 0,
1428 &buffer
[20], 10, 0);
1429 *word
= w_addstr (*word
, word_length
, max_length
, value
);
1432 return *word
? 0 : WRDE_NOSPACE
;
1434 /* Is it `$*' or `$@' (unquoted) ? */
1435 else if (*env
== '*' || (*env
== '@' && !quoted
))
1437 size_t plist_len
= 0;
1441 /* Build up value parameter by parameter (copy them) */
1442 for (p
= 1; __libc_argv
[p
]; ++p
)
1443 plist_len
+= strlen (__libc_argv
[p
]) + 1; /* for space */
1444 value
= malloc (plist_len
);
1449 for (p
= 1; __libc_argv
[p
]; ++p
)
1453 end
= __stpcpy (end
, __libc_argv
[p
]);
1460 /* Must be a quoted `$@' */
1461 assert (*env
== '@' && quoted
);
1463 /* Each parameter is a separate word ("$@") */
1464 if (__libc_argc
== 2)
1465 value
= __libc_argv
[1];
1466 else if (__libc_argc
> 2)
1470 /* Append first parameter to current word. */
1471 value
= w_addstr (*word
, word_length
, max_length
,
1473 if (value
== NULL
|| w_addword (pwordexp
, value
))
1476 for (p
= 2; __libc_argv
[p
+ 1]; p
++)
1478 char *newword
= __strdup (__libc_argv
[p
]);
1479 if (newword
== NULL
|| w_addword (pwordexp
, newword
))
1483 /* Start a new word with the last parameter. */
1484 *word
= w_newword (word_length
, max_length
);
1485 value
= __libc_argv
[p
];
1496 value
= getenv (env
);
1498 if (value
== NULL
&& (flags
& WRDE_UNDEF
))
1500 /* Variable not defined. */
1501 error
= WRDE_BADVAL
;
1505 if (action
!= ACT_NONE
)
1507 int expand_pattern
= 0;
1509 /* First, find out if we need to expand pattern (i.e. if we will
1513 case ACT_RP_SHORT_LEFT
:
1514 case ACT_RP_LONG_LEFT
:
1515 case ACT_RP_SHORT_RIGHT
:
1516 case ACT_RP_LONG_RIGHT
:
1517 /* Always expand for these. */
1521 case ACT_NULL_ERROR
:
1522 case ACT_NULL_SUBST
:
1523 case ACT_NULL_ASSIGN
:
1524 if (!value
|| (!*value
&& colon_seen
))
1525 /* If param is unset, or set but null and a colon has been seen,
1526 the expansion of the pattern will be needed. */
1531 case ACT_NONNULL_SUBST
:
1532 /* Expansion of word will be needed if parameter is set and not null,
1533 or set null but no colon has been seen. */
1534 if (value
&& (*value
|| !colon_seen
))
1540 assert (! "Unrecognised action!");
1545 /* We need to perform tilde expansion, parameter expansion,
1546 command substitution, and arithmetic expansion. We also
1547 have to be a bit careful with wildcard characters, as
1548 pattern might be given to fnmatch soon. To do this, we
1549 convert quotes to escapes. */
1555 int quoted
= 0; /* 1: single quotes; 2: double */
1557 expanded
= w_newword (&exp_len
, &exp_maxl
);
1558 for (p
= pattern
; p
&& *p
; p
++)
1567 else if (quoted
== 0)
1576 else if (quoted
== 0)
1586 /* Convert quoted wildchar to escaped wildchar. */
1587 expanded
= w_addchar (expanded
, &exp_len
,
1590 if (expanded
== NULL
)
1597 error
= parse_dollars (&expanded
, &exp_len
, &exp_maxl
, p
,
1598 &offset
, flags
, NULL
, NULL
, NULL
, 1);
1613 if (quoted
|| exp_len
)
1617 error
= parse_tilde (&expanded
, &exp_len
, &exp_maxl
, p
,
1633 expanded
= w_addchar (expanded
, &exp_len
, &exp_maxl
, '\\');
1635 assert (*p
); /* checked when extracted initially */
1636 if (expanded
== NULL
)
1640 expanded
= w_addchar (expanded
, &exp_len
, &exp_maxl
, *p
);
1642 if (expanded
== NULL
)
1653 case ACT_RP_SHORT_LEFT
:
1654 case ACT_RP_LONG_LEFT
:
1655 case ACT_RP_SHORT_RIGHT
:
1656 case ACT_RP_LONG_RIGHT
:
1662 if (value
== NULL
|| pattern
== NULL
|| *pattern
== '\0')
1665 end
= value
+ strlen (value
);
1669 case ACT_RP_SHORT_LEFT
:
1670 for (p
= value
; p
<= end
; ++p
)
1674 if (fnmatch (pattern
, value
, 0) != FNM_NOMATCH
)
1679 char *newval
= __strdup (p
);
1697 case ACT_RP_LONG_LEFT
:
1698 for (p
= end
; p
>= value
; --p
)
1702 if (fnmatch (pattern
, value
, 0) != FNM_NOMATCH
)
1707 char *newval
= __strdup (p
);
1725 case ACT_RP_SHORT_RIGHT
:
1726 for (p
= end
; p
>= value
; --p
)
1728 if (fnmatch (pattern
, p
, 0) != FNM_NOMATCH
)
1731 newval
= malloc (p
- value
+ 1);
1740 *(char *) __mempcpy (newval
, value
, p
- value
) = '\0';
1751 case ACT_RP_LONG_RIGHT
:
1752 for (p
= value
; p
<= end
; ++p
)
1754 if (fnmatch (pattern
, p
, 0) != FNM_NOMATCH
)
1757 newval
= malloc (p
- value
+ 1);
1766 *(char *) __mempcpy (newval
, value
, p
- value
) = '\0';
1784 case ACT_NULL_ERROR
:
1785 if (value
&& *value
)
1786 /* Substitute parameter */
1790 if (!colon_seen
&& value
)
1791 /* Substitute NULL */
1795 const char *str
= pattern
;
1798 str
= _("parameter null or not set");
1800 __fxprintf (NULL
, "%s: %s\n", env
, str
);
1807 case ACT_NULL_SUBST
:
1808 if (value
&& *value
)
1809 /* Substitute parameter */
1815 if (!colon_seen
&& value
)
1816 /* Substitute NULL */
1819 value
= pattern
? __strdup (pattern
) : pattern
;
1822 if (pattern
&& !value
)
1827 case ACT_NONNULL_SUBST
:
1828 if (value
&& (*value
|| !colon_seen
))
1833 value
= pattern
? __strdup (pattern
) : pattern
;
1836 if (pattern
&& !value
)
1842 /* Substitute NULL */
1847 case ACT_NULL_ASSIGN
:
1848 if (value
&& *value
)
1849 /* Substitute parameter */
1852 if (!colon_seen
&& value
)
1854 /* Substitute NULL */
1863 value
= pattern
? __strdup (pattern
) : pattern
;
1866 if (pattern
&& !value
)
1869 __setenv (env
, value
, 1);
1873 assert (! "Unrecognised action!");
1884 char param_length
[21];
1885 param_length
[20] = '\0';
1886 *word
= w_addstr (*word
, word_length
, max_length
,
1887 _itoa_word (value
? strlen (value
) : 0,
1888 ¶m_length
[20], 10, 0));
1891 assert (value
!= NULL
);
1895 return *word
? 0 : WRDE_NOSPACE
;
1901 if (quoted
|| !pwordexp
)
1903 /* Quoted - no field split */
1904 *word
= w_addstr (*word
, word_length
, max_length
, value
);
1908 return *word
? 0 : WRDE_NOSPACE
;
1912 /* Need to field-split */
1913 char *value_copy
= __strdup (value
); /* Don't modify value */
1914 char *field_begin
= value_copy
;
1915 int seen_nonws_ifs
= 0;
1920 if (value_copy
== NULL
)
1925 char *field_end
= field_begin
;
1928 /* If this isn't the first field, start a new word */
1929 if (field_begin
!= value_copy
)
1931 if (w_addword (pwordexp
, *word
) == WRDE_NOSPACE
)
1937 *word
= w_newword (word_length
, max_length
);
1940 /* Skip IFS whitespace before the field */
1941 field_begin
+= strspn (field_begin
, ifs_white
);
1943 if (!seen_nonws_ifs
&& *field_begin
== 0)
1944 /* Nothing but whitespace */
1947 /* Search for the end of the field */
1948 field_end
= field_begin
+ strcspn (field_begin
, ifs
);
1950 /* Set up pointer to the character after end of field and
1951 skip whitespace IFS after it. */
1952 next_field
= field_end
+ strspn (field_end
, ifs_white
);
1954 /* Skip at most one non-whitespace IFS character after the field */
1956 if (*next_field
&& strchr (ifs
, *next_field
))
1962 /* Null-terminate it */
1965 /* Tag a copy onto the current word */
1966 *word
= w_addstr (*word
, word_length
, max_length
, field_begin
);
1968 if (*word
== NULL
&& *field_begin
!= '\0')
1974 field_begin
= next_field
;
1976 while (seen_nonws_ifs
|| *field_begin
);
1988 error
= WRDE_NOSPACE
;
1992 error
= WRDE_SYNTAX
;
2004 parse_dollars (char **word
, size_t *word_length
, size_t *max_length
,
2005 const char *words
, size_t *offset
, int flags
,
2006 wordexp_t
*pwordexp
, const char *ifs
, const char *ifs_white
,
2009 /* We are poised _at_ "$" */
2010 switch (words
[1 + *offset
])
2015 *word
= w_addchar (*word
, word_length
, max_length
, '$');
2016 return *word
? 0 : WRDE_NOSPACE
;
2019 if (words
[2 + *offset
] == '(')
2021 /* Differentiate between $((1+3)) and $((echo);(ls)) */
2022 int i
= 3 + *offset
;
2024 while (words
[i
] && !(depth
== 0 && words
[i
] == ')'))
2026 if (words
[i
] == '(')
2028 else if (words
[i
] == ')')
2034 if (words
[i
] == ')' && words
[i
+ 1] == ')')
2037 /* Call parse_arith -- 0 is for "no brackets" */
2038 return parse_arith (word
, word_length
, max_length
, words
, offset
,
2043 if (flags
& WRDE_NOCMD
)
2047 return parse_comm (word
, word_length
, max_length
, words
, offset
, flags
,
2048 quoted
? NULL
: pwordexp
, ifs
, ifs_white
);
2052 /* Call parse_arith -- 1 is for "brackets" */
2053 return parse_arith (word
, word_length
, max_length
, words
, offset
, flags
,
2058 ++(*offset
); /* parse_param needs to know if "{" is there */
2059 return parse_param (word
, word_length
, max_length
, words
, offset
, flags
,
2060 pwordexp
, ifs
, ifs_white
, quoted
);
2066 parse_backtick (char **word
, size_t *word_length
, size_t *max_length
,
2067 const char *words
, size_t *offset
, int flags
,
2068 wordexp_t
*pwordexp
, const char *ifs
, const char *ifs_white
)
2070 /* We are poised just after "`" */
2075 char *comm
= w_newword (&comm_length
, &comm_maxlen
);
2077 for (; words
[*offset
]; ++(*offset
))
2079 switch (words
[*offset
])
2082 /* Go -- give the script to the shell */
2083 error
= exec_comm (comm
, word
, word_length
, max_length
, flags
,
2084 pwordexp
, ifs
, ifs_white
);
2091 error
= parse_qtd_backslash (&comm
, &comm_length
, &comm_maxlen
,
2104 error
= parse_backslash (&comm
, &comm_length
, &comm_maxlen
, words
,
2116 squoting
= 1 - squoting
;
2118 comm
= w_addchar (comm
, &comm_length
, &comm_maxlen
, words
[*offset
]);
2120 return WRDE_NOSPACE
;
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 */
2138 for (; words
[*offset
]; ++(*offset
))
2140 switch (words
[*offset
])
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 ("$@").
2157 if (flags
& WRDE_NOCMD
)
2161 error
= parse_backtick (word
, word_length
, max_length
, words
,
2162 offset
, flags
, NULL
, NULL
, NULL
);
2163 /* The first NULL here is to tell parse_backtick not to
2172 error
= parse_qtd_backslash (word
, word_length
, max_length
, words
,
2181 *word
= w_addchar (*word
, word_length
, max_length
, words
[*offset
]);
2183 return WRDE_NOSPACE
;
2187 /* Unterminated string */
2192 * wordfree() is to be called after pwordexp is finished with.
2196 wordfree (wordexp_t
*pwordexp
)
2199 /* wordexp can set pwordexp to NULL */
2200 if (pwordexp
&& pwordexp
->we_wordv
)
2202 char **wordv
= pwordexp
->we_wordv
;
2204 for (wordv
+= pwordexp
->we_offs
; *wordv
; ++wordv
)
2207 free (pwordexp
->we_wordv
);
2208 pwordexp
->we_wordv
= NULL
;
2211 libc_hidden_def (wordfree
)
2218 wordexp (const char *words
, wordexp_t
*pwordexp
, int flags
)
2220 size_t words_offset
;
2223 char *word
= w_newword (&word_length
, &max_length
);
2227 wordexp_t old_word
= *pwordexp
;
2229 if (flags
& WRDE_REUSE
)
2231 /* Minimal implementation of WRDE_REUSE for now */
2232 wordfree (pwordexp
);
2233 old_word
.we_wordv
= NULL
;
2236 if ((flags
& WRDE_APPEND
) == 0)
2238 pwordexp
->we_wordc
= 0;
2240 if (flags
& WRDE_DOOFFS
)
2242 pwordexp
->we_wordv
= calloc (1 + pwordexp
->we_offs
, sizeof (char *));
2243 if (pwordexp
->we_wordv
== NULL
)
2245 error
= WRDE_NOSPACE
;
2251 pwordexp
->we_wordv
= calloc (1, sizeof (char *));
2252 if (pwordexp
->we_wordv
== NULL
)
2254 error
= WRDE_NOSPACE
;
2258 pwordexp
->we_offs
= 0;
2262 /* Find out what the field separators are.
2263 * There are two types: whitespace and non-whitespace.
2265 ifs
= getenv ("IFS");
2268 /* IFS unset - use <space><tab><newline>. */
2269 ifs
= strcpy (ifs_white
, " \t\n");
2273 char *whch
= ifs_white
;
2275 while (*ifsch
!= '\0')
2277 if (*ifsch
== ' ' || *ifsch
== '\t' || *ifsch
== '\n')
2279 /* Whitespace IFS. See first whether it is already in our
2281 char *runp
= ifs_white
;
2283 while (runp
< whch
&& *runp
!= *ifsch
)
2295 for (words_offset
= 0 ; words
[words_offset
] ; ++words_offset
)
2296 switch (words
[words_offset
])
2299 error
= parse_backslash (&word
, &word_length
, &max_length
, words
,
2308 error
= parse_dollars (&word
, &word_length
, &max_length
, words
,
2309 &words_offset
, flags
, pwordexp
, ifs
, ifs_white
,
2318 if (flags
& WRDE_NOCMD
)
2320 error
= WRDE_CMDSUB
;
2325 error
= parse_backtick (&word
, &word_length
, &max_length
, words
,
2326 &words_offset
, flags
, pwordexp
, ifs
,
2336 error
= parse_dquote (&word
, &word_length
, &max_length
, words
,
2337 &words_offset
, flags
, pwordexp
, ifs
, ifs_white
);
2344 error
= w_addword (pwordexp
, NULL
);
2354 error
= parse_squote (&word
, &word_length
, &max_length
, words
,
2362 error
= w_addword (pwordexp
, NULL
);
2371 error
= parse_tilde (&word
, &word_length
, &max_length
, words
,
2372 &words_offset
, pwordexp
->we_wordc
);
2382 error
= parse_glob (&word
, &word_length
, &max_length
, words
,
2383 &words_offset
, flags
, pwordexp
, ifs
, ifs_white
);
2391 /* Is it a word separator? */
2392 if (strchr (" \t", words
[words_offset
]) == NULL
)
2394 char ch
= words
[words_offset
];
2396 /* Not a word separator -- but is it a valid word char? */
2397 if (strchr ("\n|&;<>(){}", ch
))
2400 error
= WRDE_BADCHAR
;
2404 /* "Ordinary" character -- add it to word */
2405 word
= w_addchar (word
, &word_length
, &max_length
,
2409 error
= WRDE_NOSPACE
;
2416 /* If a word has been delimited, add it to the list. */
2419 error
= w_addword (pwordexp
, word
);
2424 word
= w_newword (&word_length
, &max_length
);
2429 /* There was a word separator at the end */
2430 if (word
== NULL
) /* i.e. w_newword */
2433 /* There was no field separator at the end */
2434 return w_addword (pwordexp
, word
);
2438 * free memory used (unless error is WRDE_NOSPACE), and
2439 * set pwordexp members back to what they were.
2444 if (error
== WRDE_NOSPACE
)
2445 return WRDE_NOSPACE
;
2447 if ((flags
& WRDE_APPEND
) == 0)
2448 wordfree (pwordexp
);
2450 *pwordexp
= old_word
;