1 /* POSIX.2 wordexp implementation.
2 Copyright (C) 1997, 1998 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 Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 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 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
25 #include <sys/types.h>
30 #include <sys/types.h>
37 #include <sys/param.h>
41 #include <stdio-common/_itoa.h>
43 /* Undefine the following line for the production version. */
44 /* #define NDEBUG 1 */
48 * This is a recursive-descent-style word expansion routine.
51 /* These variables are defined and initialized in the startup code. */
52 extern int __libc_argc
;
53 extern char **__libc_argv
;
55 /* Some forward declarations */
56 static int parse_dollars (char **word
, size_t *word_length
, size_t *max_length
,
57 const char *words
, size_t *offset
, int flags
,
58 wordexp_t
*pwordexp
, const char *ifs
,
59 const char *ifs_white
, int quoted
)
61 static int parse_backtick (char **word
, size_t *word_length
,
62 size_t *max_length
, const char *words
,
63 size_t *offset
, int flags
, wordexp_t
*pwordexp
,
64 const char *ifs
, const char *ifs_white
)
66 static int parse_dquote (char **word
, size_t *word_length
, size_t *max_length
,
67 const char *words
, size_t *offset
, int flags
,
68 wordexp_t
*pwordexp
, const char *ifs
,
69 const char *ifs_white
)
71 static int eval_expr (char *expr
, long int *result
) internal_function
;
73 /* The w_*() functions manipulate word lists. */
77 /* Result of w_newword will be ignored if it the last word. */
79 w_newword (size_t *actlen
, size_t *maxlen
)
81 *actlen
= *maxlen
= 0;
86 w_addchar (char *buffer
, size_t *actlen
, size_t *maxlen
, char ch
)
87 /* (lengths exclude trailing zero) */
89 /* Add a character to the buffer, allocating room for it if needed.
92 if (*actlen
== *maxlen
)
94 char *old_buffer
= buffer
;
95 assert (buffer
== NULL
|| *maxlen
!= 0);
97 buffer
= realloc (buffer
, 1 + *maxlen
);
105 buffer
[*actlen
] = ch
;
106 buffer
[++(*actlen
)] = '\0';
114 w_addmem (char *buffer
, size_t *actlen
, size_t *maxlen
, const char *str
,
117 /* Add a string to the buffer, allocating room for it if needed.
119 if (*actlen
+ len
> *maxlen
)
121 char *old_buffer
= buffer
;
122 assert (buffer
== NULL
|| *maxlen
!= 0);
123 *maxlen
+= MAX (2 * len
, W_CHUNK
);
124 buffer
= realloc (old_buffer
, 1 + *maxlen
);
132 *((char *) __mempcpy (&buffer
[*actlen
], str
, len
)) = '\0';
141 w_addstr (char *buffer
, size_t *actlen
, size_t *maxlen
, const char *str
)
142 /* (lengths exclude trailing zero) */
144 /* Add a string to the buffer, allocating room for it if needed.
148 assert (str
!= NULL
); /* w_addstr only called from this file */
151 return w_addmem (buffer
, actlen
, maxlen
, str
, len
);
156 w_addword (wordexp_t
*pwordexp
, char *word
)
158 /* Add a word to the wordlist */
162 /* Internally, NULL acts like "". Convert NULLs to "" before
163 * the caller sees them.
167 word
= __strdup ("");
172 num_p
= 2 + pwordexp
->we_wordc
+ pwordexp
->we_offs
;
173 new_wordv
= realloc (pwordexp
->we_wordv
, sizeof (char *) * num_p
);
174 if (new_wordv
!= NULL
)
176 pwordexp
->we_wordv
= new_wordv
;
177 pwordexp
->we_wordv
[pwordexp
->we_wordc
++] = word
;
178 pwordexp
->we_wordv
[pwordexp
->we_wordc
] = NULL
;
186 /* The parse_*() functions should leave *offset being the offset in 'words'
187 * to the last character processed.
192 parse_backslash (char **word
, size_t *word_length
, size_t *max_length
,
193 const char *words
, size_t *offset
)
195 /* We are poised _at_ a backslash, not in quotes */
197 switch (words
[1 + *offset
])
200 /* Backslash is last character of input words */
208 *word
= w_addchar (*word
, word_length
, max_length
, words
[1 + *offset
]);
221 parse_qtd_backslash (char **word
, size_t *word_length
, size_t *max_length
,
222 const char *words
, size_t *offset
)
224 /* We are poised _at_ a backslash, inside quotes */
226 switch (words
[1 + *offset
])
229 /* Backslash is last character of input words */
240 *word
= w_addchar (*word
, word_length
, max_length
, words
[1 + *offset
]);
248 *word
= w_addchar (*word
, word_length
, max_length
, words
[*offset
]);
250 *word
= w_addchar (*word
, word_length
, max_length
, words
[1 + *offset
]);
264 parse_tilde (char **word
, size_t *word_length
, size_t *max_length
,
265 const char *words
, size_t *offset
, size_t wordc
)
267 /* We are poised _at_ a tilde */
270 if (*word_length
!= 0)
272 if (!((*word
)[*word_length
- 1] == '=' && wordc
== 0))
274 if (!((*word
)[*word_length
- 1] == ':'
275 && strchr (*word
, '=') && wordc
== 0))
277 *word
= w_addchar (*word
, word_length
, max_length
, '~');
278 return *word
? 0 : WRDE_NOSPACE
;
283 for (i
= 1 + *offset
; words
[i
]; i
++)
285 if (words
[i
] == ':' || words
[i
] == '/' || words
[i
] == ' ' ||
286 words
[i
] == '\t' || words
[i
] == 0 )
289 if (words
[i
] == '\\')
291 *word
= w_addchar (*word
, word_length
, max_length
, '~');
292 return *word
? 0 : WRDE_NOSPACE
;
296 if (i
== 1 + *offset
)
298 /* Tilde appears on its own */
300 struct passwd pwd
, *tpwd
;
302 char* buffer
= __alloca (buflen
);
307 while ((result
= __getpwuid_r (uid
, &pwd
, buffer
, buflen
, &tpwd
)) != 0
311 buffer
= __alloca (buflen
);
314 if (result
== 0 && pwd
.pw_dir
!= NULL
)
316 *word
= w_addstr (*word
, word_length
, max_length
, pwd
.pw_dir
);
322 *word
= w_addchar (*word
, word_length
, max_length
, '~');
329 /* Look up user name in database to get home directory */
330 char *user
= __strndup (&words
[1 + *offset
], i
- *offset
);
331 struct passwd pwd
, *tpwd
;
333 char* buffer
= __alloca (buflen
);
336 while ((result
= __getpwnam_r (user
, &pwd
, buffer
, buflen
, &tpwd
)) != 0
340 buffer
= __alloca (buflen
);
343 if (result
== 0 && pwd
.pw_dir
)
344 *word
= w_addstr (*word
, word_length
, max_length
, pwd
.pw_dir
);
347 /* (invalid login name) */
348 *word
= w_addchar (*word
, word_length
, max_length
, '~');
350 *word
= w_addstr (*word
, word_length
, max_length
, user
);
355 return *word
? 0 : WRDE_NOSPACE
;
361 do_parse_glob (const char *glob_word
, char **word
, size_t *word_length
,
362 size_t *max_length
, wordexp_t
*pwordexp
, const char *ifs
,
363 const char *ifs_white
)
369 error
= glob (glob_word
, GLOB_NOCHECK
, NULL
, &globbuf
);
373 /* We can only run into memory problems. */
374 assert (error
== GLOB_NOSPACE
);
380 /* No field splitting allowed. */
381 assert (globbuf
.gl_pathv
[0] != NULL
);
382 *word
= w_addstr (*word
, word_length
, max_length
, globbuf
.gl_pathv
[0]);
383 for (match
= 1; match
< globbuf
.gl_pathc
&& *word
!= NULL
; ++match
)
385 *word
= w_addchar (*word
, word_length
, max_length
, ' ');
387 *word
= w_addstr (*word
, word_length
, max_length
,
388 globbuf
.gl_pathv
[match
]);
392 return *word
? 0 : WRDE_NOSPACE
;
395 assert (ifs
== NULL
|| *ifs
!= '\0');
399 *word
= w_newword (word_length
, max_length
);
402 for (match
= 0; match
< globbuf
.gl_pathc
; ++match
)
404 char *matching_word
= __strdup (globbuf
.gl_pathv
[match
]);
405 if (matching_word
== NULL
|| w_addword (pwordexp
, matching_word
))
418 parse_glob (char **word
, size_t *word_length
, size_t *max_length
,
419 const char *words
, size_t *offset
, int flags
,
420 wordexp_t
*pwordexp
, const char *ifs
, const char *ifs_white
)
422 /* We are poised just after a '*', a '[' or a '?'. */
423 int error
= WRDE_NOSPACE
;
424 int quoted
= 0; /* 1 if singly-quoted, 2 if doubly */
426 wordexp_t glob_list
; /* List of words to glob */
428 glob_list
.we_wordc
= 0;
429 glob_list
.we_wordv
= NULL
;
430 glob_list
.we_offs
= 0;
431 for (; words
[*offset
] != '\0'; ++*offset
)
433 if ((ifs
&& strchr (ifs
, words
[*offset
])) ||
434 (!ifs
&& strchr (" \t\n", words
[*offset
])))
438 /* Sort out quoting */
439 if (words
[*offset
] == '\'')
446 else if (quoted
== 1)
452 else if (words
[*offset
] == '"')
459 else if (quoted
== 2)
466 /* Sort out other special characters */
467 if (quoted
!= 1 && words
[*offset
] == '$')
469 error
= parse_dollars (word
, word_length
, max_length
, words
,
470 offset
, flags
, &glob_list
, ifs
, ifs_white
,
477 else if (words
[*offset
] == '\\')
480 error
= parse_qtd_backslash (word
, word_length
, max_length
,
483 error
= parse_backslash (word
, word_length
, max_length
,
492 *word
= w_addchar (*word
, word_length
, max_length
, words
[*offset
]);
497 /* Don't forget to re-parse the character we stopped at. */
501 error
= w_addword (&glob_list
, *word
);
502 *word
= w_newword (word_length
, max_length
);
503 for (i
= 0; error
== 0 && i
< glob_list
.we_wordc
; i
++)
504 error
= do_parse_glob (glob_list
.we_wordv
[i
], word
, word_length
,
505 max_length
, pwordexp
, ifs
, ifs_white
);
509 wordfree (&glob_list
);
515 parse_squote (char **word
, size_t *word_length
, size_t *max_length
,
516 const char *words
, size_t *offset
)
518 /* We are poised just after a single quote */
519 for (; words
[*offset
]; ++(*offset
))
521 if (words
[*offset
] != '\'')
523 *word
= w_addchar (*word
, word_length
, max_length
, words
[*offset
]);
530 /* Unterminated string */
534 /* Functions to evaluate an arithmetic expression */
537 eval_expr_val (char **expr
, long int *result
)
542 /* Skip white space */
543 for (digit
= *expr
; digit
&& *digit
&& isspace (*digit
); ++digit
);
549 /* Scan for closing paren */
550 for (++digit
; **expr
&& **expr
!= ')'; ++(*expr
));
558 if (eval_expr (digit
, result
))
563 case '+': /* Positive value */
567 case '-': /* Negative value */
573 if (!isdigit (*digit
))
578 for (; *digit
&& isdigit (*digit
); ++digit
)
579 *result
= (*result
* 10) + (*digit
- '0');
588 eval_expr_multdiv (char **expr
, long int *result
)
593 if (eval_expr_val (expr
, result
) != 0)
598 /* Skip white space */
599 for (; *expr
&& **expr
&& isspace (**expr
); ++(*expr
));
604 if (eval_expr_val (expr
, &arg
) != 0)
609 else if (**expr
== '/')
612 if (eval_expr_val (expr
, &arg
) != 0)
625 eval_expr (char *expr
, long int *result
)
630 if (eval_expr_multdiv (&expr
, result
) != 0)
635 /* Skip white space */
636 for (; expr
&& *expr
&& isspace (*expr
); ++expr
);
641 if (eval_expr_multdiv (&expr
, &arg
) != 0)
646 else if (*expr
== '-')
649 if (eval_expr_multdiv (&expr
, &arg
) != 0)
662 parse_arith (char **word
, size_t *word_length
, size_t *max_length
,
663 const char *words
, size_t *offset
, int flags
, int bracket
)
665 /* We are poised just after "$((" or "$[" */
672 expr
= w_newword (&expr_length
, &expr_maxlen
);
673 for (; words
[*offset
]; ++(*offset
))
675 switch (words
[*offset
])
678 error
= parse_dollars (&expr
, &expr_length
, &expr_maxlen
,
679 words
, offset
, flags
, NULL
, NULL
, NULL
, 1);
680 /* The ``1'' here is to tell parse_dollars not to
692 error
= parse_backtick (&expr
, &expr_length
, &expr_maxlen
,
693 words
, offset
, flags
, NULL
, NULL
, NULL
);
694 /* The first NULL here is to tell parse_backtick not to
705 error
= parse_qtd_backslash (&expr
, &expr_length
, &expr_maxlen
,
712 /* I think that a backslash within an
713 * arithmetic expansion is bound to
714 * cause an error sooner or later anyway though.
719 if (--paren_depth
== 0)
721 char result
[21]; /* 21 = ceil(log10(2^64)) + 1 */
722 long int numresult
= 0;
723 long long int convertme
;
725 if (bracket
|| words
[1 + *offset
] != ')')
734 if (*expr
&& eval_expr (expr
, &numresult
) != 0)
742 convertme
= -numresult
;
743 *word
= w_addchar (*word
, word_length
, max_length
, '-');
751 convertme
= numresult
;
754 *word
= w_addstr (*word
, word_length
, max_length
,
755 _itoa (convertme
, &result
[20], 10, 0));
757 return *word
? 0 : WRDE_NOSPACE
;
759 expr
= w_addchar (expr
, &expr_length
, &expr_maxlen
, words
[*offset
]);
766 if (bracket
&& paren_depth
== 1)
768 char result
[21]; /* 21 = ceil(log10(2^64)) + 1 */
769 long int numresult
= 0;
772 if (*expr
&& eval_expr (expr
, &numresult
) != 0)
779 *word
= w_addstr (*word
, word_length
, max_length
,
780 _itoa_word (numresult
, &result
[20], 10, 0));
782 return *word
? 0 : WRDE_NOSPACE
;
798 expr
= w_addchar (expr
, &expr_length
, &expr_maxlen
, words
[*offset
]);
809 /* Function to execute a command and retrieve the results */
810 /* pwordexp contains NULL if field-splitting is forbidden */
813 exec_comm (char *comm
, char **word
, size_t *word_length
, size_t *max_length
,
814 int flags
, wordexp_t
*pwordexp
, const char *ifs
,
815 const char *ifs_white
)
824 /* Don't fork() unless necessary */
832 if ((pid
= __fork ()) < 0)
843 const char *args
[4] = { _PATH_BSHELL
, "-c", comm
, NULL
};
845 /* Redirect output. */
846 __dup2 (fildes
[1], 1);
849 /* Redirect stderr to /dev/null if we have to. */
850 if ((flags
& WRDE_SHOWERR
) == 0)
854 fd
= __open (_PATH_DEVNULL
, O_WRONLY
);
855 if (fd
>= 0 && fd
!= 2)
863 __execve (_PATH_BSHELL
, (char *const *) args
, __environ
);
872 buffer
= __alloca (bufsize
);
875 { /* Quoted - no field splitting */
879 if ((buflen
= __read (fildes
[0], buffer
, bufsize
)) < 1)
881 if (__waitpid (pid
, NULL
, WNOHANG
) == 0)
883 if ((buflen
= __read (fildes
[0], buffer
, bufsize
)) < 1)
887 *word
= w_addmem (*word
, word_length
, max_length
, buffer
, buflen
);
893 /* Not quoted - split fields */
897 * 0 when searching for first character in a field not IFS white space
898 * 1 when copying the text of a field
899 * 2 when searching for possible non-whitespace IFS
904 if ((buflen
= __read (fildes
[0], buffer
, bufsize
)) < 1)
906 if (__waitpid (pid
, NULL
, WNOHANG
) == 0)
908 if ((__read (fildes
[0], buffer
, bufsize
)) < 1)
912 for (i
= 0; i
< buflen
; ++i
)
914 if (strchr (ifs
, buffer
[i
]) != NULL
)
916 /* Current character is IFS */
917 if (strchr (ifs_white
, buffer
[i
]) == NULL
)
919 /* Current character is IFS but not whitespace */
925 * eg: text<space><comma><space>moretext
927 * So, strip whitespace IFS (like at the start)
934 /* fall through and delimit field.. */
938 /* Current character is IFS white space */
940 /* If not copying a field, ignore it */
944 /* End of field (search for non-ws IFS afterwards) */
948 /* First IFS white space, or IFS non-whitespace.
949 * Delimit the field. Nulls are converted by w_addword. */
950 if (w_addword (pwordexp
, *word
) == WRDE_NOSPACE
)
953 *word
= w_newword (word_length
, max_length
);
954 /* fall back round the loop.. */
958 /* Not IFS character */
961 *word
= w_addchar (*word
, word_length
, max_length
,
970 /* Bash chops off trailing newlines, which seems sensible. */
971 while (*word_length
> 0 && (*word
)[*word_length
- 1] == '\n')
973 (*word
)[--*word_length
] = '\0';
975 /* If the last word was entirely newlines, turn it into a new word
976 * which can be ignored if there's nothing following it. */
977 if (*word_length
== 0)
980 *word
= w_newword (word_length
, max_length
);
989 __kill (pid
, SIGKILL
);
990 __waitpid (pid
, NULL
, 0);
997 parse_comm (char **word
, size_t *word_length
, size_t *max_length
,
998 const char *words
, size_t *offset
, int flags
, wordexp_t
*pwordexp
,
999 const char *ifs
, const char *ifs_white
)
1001 /* We are poised just after "$(" */
1002 int paren_depth
= 1;
1004 int quoted
= 0; /* 1 for singly-quoted, 2 for doubly-quoted */
1007 char *comm
= w_newword (&comm_length
, &comm_maxlen
);
1009 for (; words
[*offset
]; ++(*offset
))
1011 switch (words
[*offset
])
1016 else if (quoted
== 1)
1024 else if (quoted
== 2)
1030 if (!quoted
&& --paren_depth
== 0)
1032 /* Go -- give script to the shell */
1035 error
= exec_comm (comm
, word
, word_length
, max_length
,
1036 flags
, pwordexp
, ifs
, ifs_white
);
1043 /* This is just part of the script */
1051 comm
= w_addchar (comm
, &comm_length
, &comm_maxlen
, words
[*offset
]);
1053 return WRDE_NOSPACE
;
1065 parse_param (char **word
, size_t *word_length
, size_t *max_length
,
1066 const char *words
, size_t *offset
, int flags
, wordexp_t
*pwordexp
,
1067 const char *ifs
, const char *ifs_white
, int quoted
)
1069 /* We are poised just after "$" */
1073 ACT_RP_SHORT_LEFT
= '#',
1074 ACT_RP_LONG_LEFT
= 'L',
1075 ACT_RP_SHORT_RIGHT
= '%',
1076 ACT_RP_LONG_RIGHT
= 'R',
1077 ACT_NULL_ERROR
= '?',
1078 ACT_NULL_SUBST
= '-',
1079 ACT_NONNULL_SUBST
= '+',
1080 ACT_NULL_ASSIGN
= '='
1086 size_t start
= *offset
;
1090 enum action action
= ACT_NONE
;
1095 int pattern_is_quoted
= 0; /* 1 for singly-quoted, 2 for doubly-quoted */
1099 int brace
= words
[*offset
] == '{';
1101 env
= w_newword (&env_length
, &env_maxlen
);
1102 pattern
= w_newword (&pat_length
, &pat_maxlen
);
1107 /* First collect the parameter name. */
1109 if (words
[*offset
] == '#')
1117 if (isalpha (words
[*offset
]) || words
[*offset
] == '_')
1119 /* Normal parameter name. */
1122 env
= w_addchar (env
, &env_length
, &env_maxlen
,
1127 while (isalnum (words
[++*offset
]) || words
[*offset
] == '_');
1129 else if (isdigit (words
[*offset
]))
1131 /* Numeric parameter name. */
1135 env
= w_addchar (env
, &env_length
, &env_maxlen
,
1142 while (isdigit(words
[++*offset
]));
1144 else if (strchr ("*@$", words
[*offset
]) != NULL
)
1146 /* Special parameter. */
1148 env
= w_addchar (env
, &env_length
, &env_maxlen
,
1162 /* Check for special action to be applied to the value. */
1163 switch (words
[*offset
])
1170 action
= ACT_RP_SHORT_LEFT
;
1171 if (words
[1 + *offset
] == '#')
1174 action
= ACT_RP_LONG_LEFT
;
1179 action
= ACT_RP_SHORT_RIGHT
;
1180 if (words
[1 + *offset
] == '%')
1183 action
= ACT_RP_LONG_RIGHT
;
1188 if (strchr ("-=?+", words
[1 + *offset
]) == NULL
)
1192 action
= words
[++*offset
];
1199 action
= words
[*offset
];
1206 /* Now collect the pattern. */
1208 for (; words
[*offset
]; ++(*offset
))
1210 switch (words
[*offset
])
1213 if (!pattern_is_quoted
)
1218 if (!pattern_is_quoted
)
1227 if (!pattern_is_quoted
&& words
[++*offset
] == '\0')
1232 if (pattern_is_quoted
== 0)
1233 pattern_is_quoted
= 1;
1234 else if (pattern_is_quoted
== 1)
1235 pattern_is_quoted
= 0;
1240 if (pattern_is_quoted
== 0)
1241 pattern_is_quoted
= 2;
1242 else if (pattern_is_quoted
== 2)
1243 pattern_is_quoted
= 0;
1248 pattern
= w_addchar (pattern
, &pat_length
, &pat_maxlen
,
1250 if (pattern
== NULL
)
1255 /* End of input string -- remember to reparse the character that we
1260 if (words
[start
] == '{' && words
[*offset
] != '}')
1267 /* $# expands to the number of positional parameters */
1269 value
= _itoa_word (__libc_argc
- 1, &buffer
[20], 10, 0);
1274 /* Just $ on its own */
1275 *offset
= start
- 1;
1276 *word
= w_addchar (*word
, word_length
, max_length
, '$');
1277 return *word
? 0 : WRDE_NOSPACE
;
1280 /* Is it a numeric parameter? */
1281 else if (isdigit (env
[0]))
1285 if (n
>= __libc_argc
)
1286 /* Substitute NULL. */
1289 /* Replace with appropriate positional parameter. */
1290 value
= __libc_argv
[n
];
1292 /* Is it a special parameter? */
1299 value
= _itoa_word (__getpid (), &buffer
[20], 10, 0);
1301 /* Is it `${#*}' or `${#@}'? */
1302 else if ((*env
== '*' || *env
== '@') && seen_hash
)
1305 value
= _itoa_word (__libc_argc
> 0 ? __libc_argc
- 1 : 0,
1306 &buffer
[20], 10, 0);
1307 *word
= w_addstr (*word
, word_length
, max_length
, value
);
1311 return *word
? 0 : WRDE_NOSPACE
;
1313 /* Is it `$*' or `$@' (unquoted) ? */
1314 else if (*env
== '*' || (*env
== '@' && !quoted
))
1316 size_t plist_len
= 0;
1320 /* Build up value parameter by parameter (copy them) */
1321 for (p
= 1; __libc_argv
[p
]; ++p
)
1322 plist_len
+= strlen (__libc_argv
[p
]) + 1; /* for space */
1323 value
= malloc (plist_len
);
1328 for (p
= 1; __libc_argv
[p
]; ++p
)
1332 end
= __stpcpy (end
, __libc_argv
[p
]);
1339 /* Must be a quoted `$@' */
1340 assert (*env
== '@' && quoted
);
1342 /* Each parameter is a separate word ("$@") */
1343 if (__libc_argc
== 2)
1344 value
= __libc_argv
[1];
1345 else if (__libc_argc
> 2)
1349 /* Append first parameter to current word. */
1350 value
= w_addstr (*word
, word_length
, max_length
,
1352 if (value
== NULL
|| w_addword (pwordexp
, value
))
1355 for (p
= 2; __libc_argv
[p
+ 1]; p
++)
1357 char *newword
= __strdup (__libc_argv
[p
]);
1358 if (newword
== NULL
|| w_addword (pwordexp
, newword
))
1362 /* Start a new word with the last parameter. */
1363 *word
= w_newword (word_length
, max_length
);
1364 value
= __libc_argv
[p
];
1375 value
= getenv (env
);
1377 if (value
== NULL
&& (flags
& WRDE_UNDEF
))
1379 /* Variable not defined. */
1380 error
= WRDE_BADVAL
;
1384 if (action
!= ACT_NONE
)
1388 case ACT_RP_SHORT_LEFT
:
1389 case ACT_RP_LONG_LEFT
:
1390 case ACT_RP_SHORT_RIGHT
:
1391 case ACT_RP_LONG_RIGHT
:
1397 if (value
== NULL
|| pattern
== NULL
|| *pattern
== '\0')
1400 end
= value
+ strlen (value
);
1404 case ACT_RP_SHORT_LEFT
:
1405 for (p
= value
; p
<= end
; ++p
)
1409 if (fnmatch (pattern
, value
, 0) != FNM_NOMATCH
)
1414 char *newval
= __strdup (p
);
1432 case ACT_RP_LONG_LEFT
:
1433 for (p
= end
; p
>= value
; --p
)
1437 if (fnmatch (pattern
, value
, 0) != FNM_NOMATCH
)
1442 char *newval
= __strdup (p
);
1460 case ACT_RP_SHORT_RIGHT
:
1461 for (p
= end
; p
>= value
; --p
)
1463 if (fnmatch (pattern
, p
, 0) != FNM_NOMATCH
)
1466 newval
= malloc (p
- value
+ 1);
1475 *(char *) __mempcpy (newval
, value
, p
- value
) = '\0';
1486 case ACT_RP_LONG_RIGHT
:
1487 for (p
= value
; p
<= end
; ++p
)
1489 if (fnmatch (pattern
, p
, 0) != FNM_NOMATCH
)
1492 newval
= malloc (p
- value
+ 1);
1501 *(char *) __mempcpy (newval
, value
, p
- value
) = '\0';
1519 case ACT_NULL_ERROR
:
1520 if (value
&& *value
)
1521 /* Substitute parameter */
1524 if (!colon_seen
&& value
)
1525 /* Substitute NULL */
1529 /* Expand 'pattern' and write it to stderr */
1532 error
= wordexp (pattern
, &we
, flags
);
1538 fprintf (stderr
, "%s:", env
);
1540 for (i
= 0; i
< we
.we_wordc
; ++i
)
1542 fprintf (stderr
, " %s", we
.we_wordv
[i
]);
1545 fprintf (stderr
, "\n");
1546 error
= WRDE_BADVAL
;
1553 fprintf (stderr
, "%s: parameter null or not set\n", env
);
1554 error
= WRDE_BADVAL
;
1561 case ACT_NULL_SUBST
:
1562 if (value
&& *value
)
1563 /* Substitute parameter */
1566 if (!colon_seen
&& value
)
1568 /* Substitute NULL */
1576 /* Substitute word */
1585 /* No field-splitting is allowed, so imagine
1586 quotes around the word. */
1587 char *qtd_pattern
= malloc (3 + strlen (pattern
));
1589 sprintf (qtd_pattern
, "\"%s\"", pattern
);
1591 pattern
= qtd_pattern
;
1594 if (pattern
== NULL
&& (pattern
= __strdup ("")) == NULL
)
1597 error
= wordexp (pattern
, &we
, flags
);
1601 /* Fingers crossed that the quotes worked.. */
1602 assert (!quoted
|| we
.we_wordc
== 1);
1605 for (i
= 0; i
< we
.we_wordc
; ++i
)
1606 if ((error
= w_addword (pwordexp
, __strdup (we
.we_wordv
[i
])))
1610 if (i
< we
.we_wordc
)
1612 /* Ran out of space */
1617 if (action
== ACT_NULL_ASSIGN
)
1621 size_t words_size
= 0;
1624 /* Cannot assign special parameters. */
1627 for (i
= 0; i
< we
.we_wordc
; i
++)
1628 words_size
+= strlen (we
.we_wordv
[i
]) + 1; /* for <space> */
1631 cp
= words
= __alloca (words_size
);
1633 for (i
= 0; i
< we
.we_wordc
- 1; i
++)
1635 cp
= __stpcpy (cp
, we
.we_wordv
[i
]);
1639 strcpy (cp
, we
.we_wordv
[i
]);
1642 setenv (env
, words
, 1);
1649 case ACT_NONNULL_SUBST
:
1650 if (value
&& *value
)
1653 if (!colon_seen
&& value
)
1656 /* Substitute NULL */
1661 case ACT_NULL_ASSIGN
:
1662 if (value
&& *value
)
1663 /* Substitute parameter */
1666 if (!colon_seen
&& value
)
1668 /* Substitute NULL */
1674 /* This checks for '=' so it knows to assign */
1678 assert (! "Unrecognised action!");
1682 free (env
); env
= NULL
;
1683 free (pattern
); pattern
= NULL
;
1687 char param_length
[21];
1688 param_length
[20] = '\0';
1689 *word
= w_addstr (*word
, word_length
, max_length
,
1690 _itoa_word (value
? strlen (value
) : 0,
1691 ¶m_length
[20], 10, 0));
1694 assert (value
!= NULL
);
1698 return *word
? 0 : WRDE_NOSPACE
;
1704 if (quoted
|| !pwordexp
)
1706 /* Quoted - no field split */
1707 *word
= w_addstr (*word
, word_length
, max_length
, value
);
1711 return *word
? 0 : WRDE_NOSPACE
;
1715 /* Need to field-split */
1716 char *value_copy
= __strdup (value
); /* Don't modify value */
1717 char *field_begin
= value_copy
;
1718 int seen_nonws_ifs
= 0;
1723 if (value_copy
== NULL
)
1728 char *field_end
= field_begin
;
1731 /* If this isn't the first field, start a new word */
1732 if (field_begin
!= value_copy
)
1734 if (w_addword (pwordexp
, *word
) == WRDE_NOSPACE
)
1740 *word
= w_newword (word_length
, max_length
);
1743 /* Skip IFS whitespace before the field */
1744 field_begin
+= strspn (field_begin
, ifs_white
);
1746 if (!seen_nonws_ifs
&& *field_begin
== 0)
1747 /* Nothing but whitespace */
1750 /* Search for the end of the field */
1751 field_end
= field_begin
+ strcspn (field_begin
, ifs
);
1753 /* Set up pointer to the character after end of field and
1754 skip whitespace IFS after it. */
1755 next_field
= field_end
+ strspn (field_end
, ifs_white
);
1757 /* Skip at most one non-whitespace IFS character after the field */
1759 if (*next_field
&& strchr (ifs
, *next_field
))
1765 /* Null-terminate it */
1768 /* Tag a copy onto the current word */
1769 *word
= w_addstr (*word
, word_length
, max_length
, field_begin
);
1771 if (*word
== NULL
&& *field_begin
!= '\0')
1777 field_begin
= next_field
;
1779 while (seen_nonws_ifs
|| *field_begin
);
1791 error
= WRDE_NOSPACE
;
1795 error
= WRDE_SYNTAX
;
1809 parse_dollars (char **word
, size_t *word_length
, size_t *max_length
,
1810 const char *words
, size_t *offset
, int flags
,
1811 wordexp_t
*pwordexp
, const char *ifs
, const char *ifs_white
,
1814 /* We are poised _at_ "$" */
1815 switch (words
[1 + *offset
])
1820 *word
= w_addchar (*word
, word_length
, max_length
, '$');
1821 return *word
? 0 : WRDE_NOSPACE
;
1824 if (words
[2 + *offset
] == '(')
1826 /* Differentiate between $((1+3)) and $((echo);(ls)) */
1827 int i
= 3 + *offset
;
1829 while (words
[i
] && !(depth
== 0 && words
[i
] == ')'))
1831 if (words
[i
] == '(')
1833 else if (words
[i
] == ')')
1839 if (words
[i
] == ')' && words
[i
+ 1] == ')')
1842 /* Call parse_arith -- 0 is for "no brackets" */
1843 return parse_arith (word
, word_length
, max_length
, words
, offset
,
1848 if (flags
& WRDE_NOCMD
)
1852 return parse_comm (word
, word_length
, max_length
, words
, offset
, flags
,
1853 quoted
? NULL
: pwordexp
, ifs
, ifs_white
);
1857 /* Call parse_arith -- 1 is for "brackets" */
1858 return parse_arith (word
, word_length
, max_length
, words
, offset
, flags
,
1863 ++(*offset
); /* parse_param needs to know if "{" is there */
1864 return parse_param (word
, word_length
, max_length
, words
, offset
, flags
,
1865 pwordexp
, ifs
, ifs_white
, quoted
);
1870 parse_backtick (char **word
, size_t *word_length
, size_t *max_length
,
1871 const char *words
, size_t *offset
, int flags
,
1872 wordexp_t
*pwordexp
, const char *ifs
, const char *ifs_white
)
1874 /* We are poised just after "`" */
1879 char *comm
= w_newword (&comm_length
, &comm_maxlen
);
1881 for (; words
[*offset
]; ++(*offset
))
1883 switch (words
[*offset
])
1886 /* Go -- give the script to the shell */
1887 error
= exec_comm (comm
, word
, word_length
, max_length
, flags
,
1888 pwordexp
, ifs
, ifs_white
);
1895 error
= parse_qtd_backslash (&comm
, &comm_length
, &comm_maxlen
,
1908 error
= parse_backslash (&comm
, &comm_length
, &comm_maxlen
, words
,
1920 squoting
= 1 - squoting
;
1922 comm
= w_addchar (comm
, &comm_length
, &comm_maxlen
, words
[*offset
]);
1924 return WRDE_NOSPACE
;
1935 parse_dquote (char **word
, size_t *word_length
, size_t *max_length
,
1936 const char *words
, size_t *offset
, int flags
,
1937 wordexp_t
*pwordexp
, const char * ifs
, const char * ifs_white
)
1939 /* We are poised just after a double-quote */
1942 for (; words
[*offset
]; ++(*offset
))
1944 switch (words
[*offset
])
1950 error
= parse_dollars (word
, word_length
, max_length
, words
, offset
,
1951 flags
, pwordexp
, ifs
, ifs_white
, 1);
1952 /* The ``1'' here is to tell parse_dollars not to
1953 * split the fields. It may need to, however ("$@").
1961 if (flags
& WRDE_NOCMD
)
1965 error
= parse_backtick (word
, word_length
, max_length
, words
,
1966 offset
, flags
, NULL
, NULL
, NULL
);
1967 /* The first NULL here is to tell parse_backtick not to
1976 error
= parse_qtd_backslash (word
, word_length
, max_length
, words
,
1985 *word
= w_addchar (*word
, word_length
, max_length
, words
[*offset
]);
1987 return WRDE_NOSPACE
;
1991 /* Unterminated string */
1996 * wordfree() is to be called after pwordexp is finished with.
2000 wordfree (wordexp_t
*pwordexp
)
2003 /* wordexp can set pwordexp to NULL */
2004 if (pwordexp
&& pwordexp
->we_wordv
)
2006 char **wordv
= pwordexp
->we_wordv
;
2008 for (wordv
+= pwordexp
->we_offs
; *wordv
; ++wordv
)
2011 free (pwordexp
->we_wordv
);
2012 pwordexp
->we_wordv
= NULL
;
2021 wordexp (const char *words
, wordexp_t
*pwordexp
, int flags
)
2023 size_t wordv_offset
;
2024 size_t words_offset
;
2027 char *word
= w_newword (&word_length
, &max_length
);
2031 char **old_wordv
= pwordexp
->we_wordv
;
2032 size_t old_wordc
= (flags
& WRDE_REUSE
) ? pwordexp
->we_wordc
: 0;
2034 if (flags
& WRDE_REUSE
)
2036 /* Minimal implementation of WRDE_REUSE for now */
2037 wordfree (pwordexp
);
2041 if (flags
& WRDE_DOOFFS
)
2043 pwordexp
->we_wordv
= calloc (1 + pwordexp
->we_offs
, sizeof (char *));
2044 if (pwordexp
->we_wordv
== NULL
)
2046 error
= WRDE_NOSPACE
;
2052 pwordexp
->we_wordv
= calloc (1, sizeof (char *));
2053 if (pwordexp
->we_wordv
== NULL
)
2055 error
= WRDE_NOSPACE
;
2059 pwordexp
->we_offs
= 0;
2062 if ((flags
& WRDE_APPEND
) == 0)
2063 pwordexp
->we_wordc
= 0;
2065 wordv_offset
= pwordexp
->we_offs
+ pwordexp
->we_wordc
;
2067 /* Find out what the field separators are.
2068 * There are two types: whitespace and non-whitespace.
2070 ifs
= getenv ("IFS");
2073 /* IFS unset - use <space><tab><newline>. */
2074 ifs
= strcpy (ifs_white
, " \t\n");
2078 char *whch
= ifs_white
;
2080 /* Start off with no whitespace IFS characters */
2081 ifs_white
[0] = '\0';
2083 while (*ifsch
!= '\0')
2085 if ((*ifsch
== ' ') || (*ifsch
== '\t') || (*ifsch
== '\n'))
2087 /* Whitespace IFS. See first whether it is already in our
2089 char *runp
= ifs_white
;
2091 while (runp
< whch
&& *runp
!= '\0' && *runp
!= *ifsch
)
2103 for (words_offset
= 0 ; words
[words_offset
] ; ++words_offset
)
2104 switch (words
[words_offset
])
2107 error
= parse_backslash (&word
, &word_length
, &max_length
, words
,
2116 error
= parse_dollars (&word
, &word_length
, &max_length
, words
,
2117 &words_offset
, flags
, pwordexp
, ifs
, ifs_white
,
2126 if (flags
& WRDE_NOCMD
)
2128 error
= WRDE_CMDSUB
;
2133 error
= parse_backtick (&word
, &word_length
, &max_length
, words
,
2134 &words_offset
, flags
, pwordexp
, ifs
,
2144 error
= parse_dquote (&word
, &word_length
, &max_length
, words
,
2145 &words_offset
, flags
, pwordexp
, ifs
, ifs_white
);
2154 error
= parse_squote (&word
, &word_length
, &max_length
, words
,
2163 error
= parse_tilde (&word
, &word_length
, &max_length
, words
,
2164 &words_offset
, pwordexp
->we_wordc
);
2174 error
= parse_glob (&word
, &word_length
, &max_length
, words
,
2175 &words_offset
, flags
, pwordexp
, ifs
, ifs_white
);
2183 /* Is it a word separator? */
2184 if (strchr (" \t", words
[words_offset
]) == NULL
)
2186 char ch
= words
[words_offset
];
2188 /* Not a word separator -- but is it a valid word char? */
2189 if (strchr ("\n|&;<>(){}", ch
))
2192 wordfree (pwordexp
);
2193 pwordexp
->we_wordc
= 0;
2194 pwordexp
->we_wordv
= old_wordv
;
2195 return WRDE_BADCHAR
;
2198 /* "Ordinary" character -- add it to word */
2200 /* Convert IFS chars to blanks -- bash does this */
2201 if (strchr (ifs
, ch
))
2204 word
= w_addchar (word
, &word_length
, &max_length
,
2208 error
= WRDE_NOSPACE
;
2215 /* If a word has been delimited, add it to the list. */
2218 error
= w_addword (pwordexp
, word
);
2223 word
= w_newword (&word_length
, &max_length
);
2228 /* There was a word separator at the end */
2229 if (word
== NULL
) /* i.e. w_newword */
2232 /* There was no field separator at the end */
2233 return w_addword (pwordexp
, word
);
2237 * free memory used (unless error is WRDE_NOSPACE), and
2238 * set we_wordc and wd_wordv back to what they were.
2244 if (error
== WRDE_NOSPACE
)
2245 return WRDE_NOSPACE
;
2247 wordfree (pwordexp
);
2248 pwordexp
->we_wordv
= old_wordv
;
2249 pwordexp
->we_wordc
= old_wordc
;