blob: 17653cc34f2aaf0d4def578c9453dcad90921751 [file] [log] [blame]
Jari Aalto95732b42005-12-07 14:08:12 +00001/* subst.c -- The part of the shell that does parameter, command, arithmetic,
2 and globbing substitutions. */
Jari Aalto726f6381996-08-26 18:22:31 +00003
Jari Aaltobb706242000-03-17 21:46:59 +00004/* ``Have a little faith, there's magic in the night. You ain't a
5 beauty, but, hey, you're alright.'' */
6
Chet Rameyac50fba2014-02-26 09:36:43 -05007/* Copyright (C) 1987-2013 Free Software Foundation, Inc.
Jari Aalto726f6381996-08-26 18:22:31 +00008
9 This file is part of GNU Bash, the Bourne Again SHell.
10
Jari Aalto31859422009-01-12 13:36:28 +000011 Bash is free software: you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation, either version 3 of the License, or
14 (at your option) any later version.
Jari Aalto726f6381996-08-26 18:22:31 +000015
Jari Aalto31859422009-01-12 13:36:28 +000016 Bash is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
Jari Aalto726f6381996-08-26 18:22:31 +000020
Jari Aalto31859422009-01-12 13:36:28 +000021 You should have received a copy of the GNU General Public License
22 along with Bash. If not, see <http://www.gnu.org/licenses/>.
23*/
Jari Aalto726f6381996-08-26 18:22:31 +000024
Jari Aaltoccc6cda1996-12-23 17:02:34 +000025#include "config.h"
26
Jari Aalto726f6381996-08-26 18:22:31 +000027#include "bashtypes.h"
28#include <stdio.h>
Jari Aaltof73dda02001-11-13 17:56:06 +000029#include "chartypes.h"
Jari Aalto31859422009-01-12 13:36:28 +000030#if defined (HAVE_PWD_H)
31# include <pwd.h>
32#endif
Jari Aalto726f6381996-08-26 18:22:31 +000033#include <signal.h>
34#include <errno.h>
Jari Aaltoccc6cda1996-12-23 17:02:34 +000035
36#if defined (HAVE_UNISTD_H)
37# include <unistd.h>
38#endif
Jari Aalto726f6381996-08-26 18:22:31 +000039
40#include "bashansi.h"
41#include "posixstat.h"
Jari Aaltob80f6442004-07-27 13:29:18 +000042#include "bashintl.h"
Jari Aalto726f6381996-08-26 18:22:31 +000043
44#include "shell.h"
Chet Ramey495aee42011-11-22 19:11:26 -050045#include "parser.h"
Jari Aalto726f6381996-08-26 18:22:31 +000046#include "flags.h"
47#include "jobs.h"
48#include "execute_cmd.h"
49#include "filecntl.h"
Jari Aaltoccc6cda1996-12-23 17:02:34 +000050#include "trap.h"
51#include "pathexp.h"
52#include "mailcheck.h"
53
Jari Aalto7117c2d2002-07-17 14:10:11 +000054#include "shmbutil.h"
Chet Ramey495aee42011-11-22 19:11:26 -050055#include "typemax.h"
Jari Aalto7117c2d2002-07-17 14:10:11 +000056
Jari Aaltoccc6cda1996-12-23 17:02:34 +000057#include "builtins/getopt.h"
58#include "builtins/common.h"
Jari Aalto726f6381996-08-26 18:22:31 +000059
Jari Aalto31859422009-01-12 13:36:28 +000060#include "builtins/builtext.h"
61
Jari Aaltocce855b1998-04-17 19:52:44 +000062#include <tilde/tilde.h>
Jari Aaltof73dda02001-11-13 17:56:06 +000063#include <glob/strmatch.h>
Jari Aaltoccc6cda1996-12-23 17:02:34 +000064
65#if !defined (errno)
Ricardo Cerqueiraa02fbff2013-07-25 22:35:34 +010066#include <errno.h>
Jari Aaltoccc6cda1996-12-23 17:02:34 +000067#endif /* !errno */
Jari Aalto726f6381996-08-26 18:22:31 +000068
69/* The size that strings change by. */
Jari Aaltod166f041997-06-05 14:59:13 +000070#define DEFAULT_INITIAL_ARRAY_SIZE 112
Jari Aaltoccc6cda1996-12-23 17:02:34 +000071#define DEFAULT_ARRAY_SIZE 128
Jari Aalto726f6381996-08-26 18:22:31 +000072
Jari Aaltoccc6cda1996-12-23 17:02:34 +000073/* Variable types. */
74#define VT_VARIABLE 0
75#define VT_POSPARMS 1
76#define VT_ARRAYVAR 2
Jari Aaltod166f041997-06-05 14:59:13 +000077#define VT_ARRAYMEMBER 3
Jari Aalto31859422009-01-12 13:36:28 +000078#define VT_ASSOCVAR 4
Jari Aaltoccc6cda1996-12-23 17:02:34 +000079
Jari Aaltob80f6442004-07-27 13:29:18 +000080#define VT_STARSUB 128 /* $* or ${array[*]} -- used to split */
81
Jari Aaltoccc6cda1996-12-23 17:02:34 +000082/* Flags for quoted_strchr */
83#define ST_BACKSL 0x01
84#define ST_CTLESC 0x02
Jari Aalto7117c2d2002-07-17 14:10:11 +000085#define ST_SQUOTE 0x04 /* unused yet */
86#define ST_DQUOTE 0x08 /* unused yet */
87
Jari Aaltob80f6442004-07-27 13:29:18 +000088/* Flags for the `pflags' argument to param_expand() */
89#define PF_NOCOMSUB 0x01 /* Do not perform command substitution */
Chet Ramey89a92862011-11-21 20:49:12 -050090#define PF_IGNUNBOUND 0x02 /* ignore unbound vars even if -u set */
Chet Ramey00018032011-11-21 20:51:19 -050091#define PF_NOSPLIT2 0x04 /* same as W_NOSPLIT2 */
Chet Rameyac50fba2014-02-26 09:36:43 -050092#define PF_ASSIGNRHS 0x08 /* same as W_ASSIGNRHS */
Jari Aaltob80f6442004-07-27 13:29:18 +000093
Jari Aaltocce855b1998-04-17 19:52:44 +000094/* These defs make it easier to use the editor. */
95#define LBRACE '{'
96#define RBRACE '}'
97#define LPAREN '('
98#define RPAREN ')'
Chet Rameyac50fba2014-02-26 09:36:43 -050099#define LBRACK '['
100#define RBRACK ']'
Jari Aalto726f6381996-08-26 18:22:31 +0000101
Chet Ramey00018032011-11-21 20:51:19 -0500102#if defined (HANDLE_MULTIBYTE)
103#define WLPAREN L'('
104#define WRPAREN L')'
105#endif
106
Jari Aalto28ef6c32001-04-06 19:14:31 +0000107/* Evaluates to 1 if C is one of the shell's special parameters whose length
108 can be taken, but is also one of the special expansion characters. */
109#define VALID_SPECIAL_LENGTH_PARAM(c) \
110 ((c) == '-' || (c) == '?' || (c) == '#')
111
112/* Evaluates to 1 if C is one of the shell's special parameters for which an
113 indirect variable reference may be made. */
114#define VALID_INDIR_PARAM(c) \
Chet Ramey495aee42011-11-22 19:11:26 -0500115 ((posixly_correct == 0 && (c) == '#') || (posixly_correct == 0 && (c) == '?') || (c) == '@' || (c) == '*')
Jari Aalto28ef6c32001-04-06 19:14:31 +0000116
117/* Evaluates to 1 if C is one of the OP characters that follows the parameter
118 in ${parameter[:]OPword}. */
Jari Aalto7117c2d2002-07-17 14:10:11 +0000119#define VALID_PARAM_EXPAND_CHAR(c) (sh_syntaxtab[(unsigned char)c] & CSUBSTOP)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000120
Jari Aaltobb706242000-03-17 21:46:59 +0000121/* Evaluates to 1 if this is one of the shell's special variables. */
122#define SPECIAL_VAR(name, wi) \
Jari Aaltof73dda02001-11-13 17:56:06 +0000123 ((DIGIT (*name) && all_digits (name)) || \
124 (name[1] == '\0' && (sh_syntaxtab[(unsigned char)*name] & CSPECVAR)) || \
Jari Aalto28ef6c32001-04-06 19:14:31 +0000125 (wi && name[2] == '\0' && VALID_INDIR_PARAM (name[1])))
Jari Aaltobb706242000-03-17 21:46:59 +0000126
Jari Aaltof73dda02001-11-13 17:56:06 +0000127/* An expansion function that takes a string and a quoted flag and returns
128 a WORD_LIST *. Used as the type of the third argument to
129 expand_string_if_necessary(). */
130typedef WORD_LIST *EXPFUNC __P((char *, int));
131
Jari Aalto726f6381996-08-26 18:22:31 +0000132/* Process ID of the last command executed within command substitution. */
133pid_t last_command_subst_pid = NO_PID;
Jari Aaltob72432f1999-02-19 17:11:39 +0000134pid_t current_command_subst_pid = NO_PID;
Jari Aalto726f6381996-08-26 18:22:31 +0000135
Jari Aalto7117c2d2002-07-17 14:10:11 +0000136/* Variables used to keep track of the characters in IFS. */
137SHELL_VAR *ifs_var;
138char *ifs_value;
139unsigned char ifs_cmap[UCHAR_MAX + 1];
Chet Rameyac50fba2014-02-26 09:36:43 -0500140int ifs_is_set, ifs_is_null;
Jari Aalto95732b42005-12-07 14:08:12 +0000141
142#if defined (HANDLE_MULTIBYTE)
143unsigned char ifs_firstc[MB_LEN_MAX];
144size_t ifs_firstc_len;
145#else
Jari Aalto7117c2d2002-07-17 14:10:11 +0000146unsigned char ifs_firstc;
Jari Aalto95732b42005-12-07 14:08:12 +0000147#endif
Jari Aalto7117c2d2002-07-17 14:10:11 +0000148
Chet Ramey00018032011-11-21 20:51:19 -0500149/* Sentinel to tell when we are performing variable assignments preceding a
150 command name and putting them into the environment. Used to make sure
151 we use the temporary environment when looking up variable values. */
Jari Aalto31859422009-01-12 13:36:28 +0000152int assigning_in_environment;
153
Chet Ramey00018032011-11-21 20:51:19 -0500154/* Used to hold a list of variable assignments preceding a command. Global
155 so the SIGCHLD handler in jobs.c can unwind-protect it when it runs a
156 SIGCHLD trap and so it can be saved and restored by the trap handlers. */
157WORD_LIST *subst_assign_varlist = (WORD_LIST *)NULL;
158
Jari Aalto726f6381996-08-26 18:22:31 +0000159/* Extern functions and variables from different files. */
Jari Aaltob80f6442004-07-27 13:29:18 +0000160extern int last_command_exit_value, last_command_exit_signal;
Chet Ramey00018032011-11-21 20:51:19 -0500161extern int subshell_environment, line_number;
162extern int subshell_level, parse_and_execute_level, sourcelevel;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000163extern int eof_encountered;
Jari Aaltobb706242000-03-17 21:46:59 +0000164extern int return_catch_flag, return_catch_value;
Jari Aaltof73dda02001-11-13 17:56:06 +0000165extern pid_t dollar_dollar_pid;
Jari Aalto726f6381996-08-26 18:22:31 +0000166extern int posixly_correct;
Jari Aalto726f6381996-08-26 18:22:31 +0000167extern char *this_command_name;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000168extern struct fd_bitmap *current_fds_to_close;
Jari Aaltocce855b1998-04-17 19:52:44 +0000169extern int wordexp_only;
Jari Aaltob80f6442004-07-27 13:29:18 +0000170extern int expanding_redir;
171extern int tempenv_assign_error;
Chet Rameyac50fba2014-02-26 09:36:43 -0500172extern int builtin_ignoring_errexit;
Jari Aalto726f6381996-08-26 18:22:31 +0000173
Jari Aalto06285672006-10-10 14:15:34 +0000174#if !defined (HAVE_WCSDUP) && defined (HANDLE_MULTIBYTE)
175extern wchar_t *wcsdup __P((const wchar_t *));
176#endif
177
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000178/* Non-zero means to allow unmatched globbed filenames to expand to
179 a null file. */
180int allow_null_glob_expansion;
181
Jari Aaltob80f6442004-07-27 13:29:18 +0000182/* Non-zero means to throw an error when globbing fails to match anything. */
183int fail_glob_expansion;
184
Jari Aaltof73dda02001-11-13 17:56:06 +0000185#if 0
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000186/* Variables to keep track of which words in an expanded word list (the
187 output of expand_word_list_internal) are the result of globbing
Jari Aaltof73dda02001-11-13 17:56:06 +0000188 expansions. GLOB_ARGV_FLAGS is used by execute_cmd.c.
189 (CURRENTLY UNUSED). */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000190char *glob_argv_flags;
191static int glob_argv_flags_size;
Jari Aaltof73dda02001-11-13 17:56:06 +0000192#endif
Jari Aalto726f6381996-08-26 18:22:31 +0000193
194static WORD_LIST expand_word_error, expand_word_fatal;
Jari Aalto95732b42005-12-07 14:08:12 +0000195static WORD_DESC expand_wdesc_error, expand_wdesc_fatal;
Jari Aalto726f6381996-08-26 18:22:31 +0000196static char expand_param_error, expand_param_fatal;
Jari Aalto95732b42005-12-07 14:08:12 +0000197static char extract_string_error, extract_string_fatal;
Jari Aalto726f6381996-08-26 18:22:31 +0000198
Jari Aalto28ef6c32001-04-06 19:14:31 +0000199/* Tell the expansion functions to not longjmp back to top_level on fatal
200 errors. Enabled when doing completion and prompt string expansion. */
201static int no_longjmp_on_fatal_error = 0;
202
203/* Set by expand_word_unsplit; used to inhibit splitting and re-joining
204 $* on $IFS, primarily when doing assignment statements. */
205static int expand_no_split_dollar_star = 0;
Jari Aaltobb706242000-03-17 21:46:59 +0000206
Jari Aaltobb706242000-03-17 21:46:59 +0000207/* A WORD_LIST of words to be expanded by expand_word_list_internal,
208 without any leading variable assignments. */
209static WORD_LIST *garglist = (WORD_LIST *)NULL;
Jari Aaltob72432f1999-02-19 17:11:39 +0000210
Jari Aaltof73dda02001-11-13 17:56:06 +0000211static char *quoted_substring __P((char *, int, int));
Jari Aalto7117c2d2002-07-17 14:10:11 +0000212static int quoted_strlen __P((char *));
213static char *quoted_strchr __P((char *, int, int));
Jari Aaltof73dda02001-11-13 17:56:06 +0000214
215static char *expand_string_if_necessary __P((char *, int, EXPFUNC *));
216static inline char *expand_string_to_string_internal __P((char *, int, EXPFUNC *));
217static WORD_LIST *call_expand_word_internal __P((WORD_DESC *, int, int, int *, int *));
218static WORD_LIST *expand_string_internal __P((char *, int));
219static WORD_LIST *expand_string_leave_quoted __P((char *, int));
220static WORD_LIST *expand_string_for_rhs __P((char *, int, int *, int *));
221
Jari Aaltof73dda02001-11-13 17:56:06 +0000222static WORD_LIST *list_quote_escapes __P((WORD_LIST *));
Chet Rameyac50fba2014-02-26 09:36:43 -0500223static WORD_LIST *list_dequote_escapes __P((WORD_LIST *));
224
Jari Aaltof73dda02001-11-13 17:56:06 +0000225static char *make_quoted_char __P((int));
226static WORD_LIST *quote_list __P((WORD_LIST *));
Jari Aaltof73dda02001-11-13 17:56:06 +0000227
228static int unquoted_substring __P((char *, char *));
229static int unquoted_member __P((int, char *));
230
Jari Aalto95732b42005-12-07 14:08:12 +0000231#if defined (ARRAY_VARS)
232static SHELL_VAR *do_compound_assignment __P((char *, char *, int));
233#endif
234static int do_assignment_internal __P((const WORD_DESC *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +0000235
Jari Aalto31859422009-01-12 13:36:28 +0000236static char *string_extract_verbatim __P((char *, size_t, int *, char *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +0000237static char *string_extract __P((char *, int *, char *, int));
238static char *string_extract_double_quoted __P((char *, int *, int));
Jari Aalto7117c2d2002-07-17 14:10:11 +0000239static inline char *string_extract_single_quoted __P((char *, int *));
Jari Aalto06285672006-10-10 14:15:34 +0000240static inline int skip_single_quoted __P((const char *, size_t, int));
Jari Aalto7117c2d2002-07-17 14:10:11 +0000241static int skip_double_quoted __P((char *, size_t, int));
242static char *extract_delimited_string __P((char *, int *, char *, char *, char *, int));
243static char *extract_dollar_brace_string __P((char *, int *, int, int));
Chet Ramey89a92862011-11-21 20:49:12 -0500244static int skip_matched_pair __P((const char *, int, int, int, int));
Jari Aaltof73dda02001-11-13 17:56:06 +0000245
Jari Aaltof73dda02001-11-13 17:56:06 +0000246static char *pos_params __P((char *, int, int, int));
247
Jari Aaltob80f6442004-07-27 13:29:18 +0000248static unsigned char *mb_getcharlens __P((char *, int));
249
250static char *remove_upattern __P((char *, char *, int));
Jari Aalto06285672006-10-10 14:15:34 +0000251#if defined (HANDLE_MULTIBYTE)
Jari Aaltob80f6442004-07-27 13:29:18 +0000252static wchar_t *remove_wpattern __P((wchar_t *, size_t, wchar_t *, int));
253#endif
Jari Aaltof73dda02001-11-13 17:56:06 +0000254static char *remove_pattern __P((char *, char *, int));
Jari Aaltob80f6442004-07-27 13:29:18 +0000255
Jari Aaltob80f6442004-07-27 13:29:18 +0000256static int match_upattern __P((char *, char *, int, char **, char **));
257#if defined (HANDLE_MULTIBYTE)
Jari Aaltob80f6442004-07-27 13:29:18 +0000258static int match_wpattern __P((wchar_t *, char **, size_t, wchar_t *, int, char **, char **));
259#endif
Jari Aaltof73dda02001-11-13 17:56:06 +0000260static int match_pattern __P((char *, char *, int, char **, char **));
261static int getpatspec __P((int, char *));
262static char *getpattern __P((char *, int, int));
Jari Aalto7117c2d2002-07-17 14:10:11 +0000263static char *variable_remove_pattern __P((char *, char *, int, int));
Jari Aaltof73dda02001-11-13 17:56:06 +0000264static char *list_remove_pattern __P((WORD_LIST *, char *, int, int, int));
Jari Aalto7117c2d2002-07-17 14:10:11 +0000265static char *parameter_list_remove_pattern __P((int, char *, int, int));
Jari Aaltof73dda02001-11-13 17:56:06 +0000266#ifdef ARRAY_VARS
Jari Aalto31859422009-01-12 13:36:28 +0000267static char *array_remove_pattern __P((SHELL_VAR *, char *, int, char *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +0000268#endif
Chet Ramey495aee42011-11-22 19:11:26 -0500269static char *parameter_brace_remove_pattern __P((char *, char *, int, char *, int, int, int));
Jari Aaltof73dda02001-11-13 17:56:06 +0000270
271static char *process_substitute __P((char *, int));
272
Jari Aalto31859422009-01-12 13:36:28 +0000273static char *read_comsub __P((int, int, int *));
Jari Aaltof73dda02001-11-13 17:56:06 +0000274
275#ifdef ARRAY_VARS
276static arrayind_t array_length_reference __P((char *));
277#endif
278
279static int valid_brace_expansion_word __P((char *, int));
Jari Aaltob80f6442004-07-27 13:29:18 +0000280static int chk_atstar __P((char *, int, int *, int *));
Jari Aalto06285672006-10-10 14:15:34 +0000281static int chk_arithsub __P((const char *, int));
Jari Aaltob80f6442004-07-27 13:29:18 +0000282
Chet Ramey495aee42011-11-22 19:11:26 -0500283static WORD_DESC *parameter_brace_expand_word __P((char *, int, int, int, arrayind_t *));
Chet Rameyac50fba2014-02-26 09:36:43 -0500284static char *parameter_brace_find_indir __P((char *, int, int, int));
Jari Aalto95732b42005-12-07 14:08:12 +0000285static WORD_DESC *parameter_brace_expand_indir __P((char *, int, int, int *, int *));
286static WORD_DESC *parameter_brace_expand_rhs __P((char *, char *, int, int, int *, int *));
Jari Aaltof73dda02001-11-13 17:56:06 +0000287static void parameter_brace_expand_error __P((char *, char *));
288
289static int valid_length_expression __P((char *));
Jari Aalto7117c2d2002-07-17 14:10:11 +0000290static intmax_t parameter_brace_expand_length __P((char *));
Jari Aaltof73dda02001-11-13 17:56:06 +0000291
292static char *skiparith __P((char *, int));
Jari Aalto31859422009-01-12 13:36:28 +0000293static int verify_substring_values __P((SHELL_VAR *, char *, char *, int, intmax_t *, intmax_t *));
Chet Ramey495aee42011-11-22 19:11:26 -0500294static int get_var_and_type __P((char *, char *, arrayind_t, int, int, SHELL_VAR **, char **));
Jari Aaltob80f6442004-07-27 13:29:18 +0000295static char *mb_substring __P((char *, int, int));
Chet Ramey495aee42011-11-22 19:11:26 -0500296static char *parameter_brace_substring __P((char *, char *, int, char *, int, int));
297
298static int shouldexp_replacement __P((char *));
Jari Aaltof73dda02001-11-13 17:56:06 +0000299
300static char *pos_params_pat_subst __P((char *, char *, char *, int));
301
Chet Ramey495aee42011-11-22 19:11:26 -0500302static char *parameter_brace_patsub __P((char *, char *, int, char *, int, int));
Jari Aaltof73dda02001-11-13 17:56:06 +0000303
Jari Aalto31859422009-01-12 13:36:28 +0000304static char *pos_params_casemod __P((char *, char *, int, int));
Chet Ramey495aee42011-11-22 19:11:26 -0500305static char *parameter_brace_casemod __P((char *, char *, int, int, char *, int, int));
Jari Aalto31859422009-01-12 13:36:28 +0000306
Chet Ramey00018032011-11-21 20:51:19 -0500307static WORD_DESC *parameter_brace_expand __P((char *, int *, int, int, int *, int *));
Jari Aalto95732b42005-12-07 14:08:12 +0000308static WORD_DESC *param_expand __P((char *, int *, int, int *, int *, int *, int *, int));
Jari Aaltof73dda02001-11-13 17:56:06 +0000309
310static WORD_LIST *expand_word_internal __P((WORD_DESC *, int, int, int *, int *));
311
Jari Aaltof73dda02001-11-13 17:56:06 +0000312static WORD_LIST *word_list_split __P((WORD_LIST *));
313
Jari Aaltob80f6442004-07-27 13:29:18 +0000314static void exp_jump_to_top_level __P((int));
315
Jari Aaltof73dda02001-11-13 17:56:06 +0000316static WORD_LIST *separate_out_assignments __P((WORD_LIST *));
317static WORD_LIST *glob_expand_word_list __P((WORD_LIST *, int));
318#ifdef BRACE_EXPANSION
319static WORD_LIST *brace_expand_word_list __P((WORD_LIST *, int));
320#endif
Jari Aalto31859422009-01-12 13:36:28 +0000321#if defined (ARRAY_VARS)
322static int make_internal_declare __P((char *, char *));
323#endif
Jari Aaltof73dda02001-11-13 17:56:06 +0000324static WORD_LIST *shell_expand_word_list __P((WORD_LIST *, int));
325static WORD_LIST *expand_word_list_internal __P((WORD_LIST *, int));
Jari Aalto726f6381996-08-26 18:22:31 +0000326
327/* **************************************************************** */
328/* */
329/* Utility Functions */
330/* */
331/* **************************************************************** */
332
Chet Ramey00018032011-11-21 20:51:19 -0500333#if defined (DEBUG)
334void
335dump_word_flags (flags)
336 int flags;
337{
338 int f;
339
340 f = flags;
341 fprintf (stderr, "%d -> ", f);
342 if (f & W_ASSIGNASSOC)
343 {
344 f &= ~W_ASSIGNASSOC;
345 fprintf (stderr, "W_ASSIGNASSOC%s", f ? "|" : "");
346 }
Chet Rameyac50fba2014-02-26 09:36:43 -0500347 if (f & W_ASSIGNARRAY)
348 {
349 f &= ~W_ASSIGNARRAY;
350 fprintf (stderr, "W_ASSIGNARRAY%s", f ? "|" : "");
351 }
Chet Ramey00018032011-11-21 20:51:19 -0500352 if (f & W_HASCTLESC)
353 {
354 f &= ~W_HASCTLESC;
355 fprintf (stderr, "W_HASCTLESC%s", f ? "|" : "");
356 }
357 if (f & W_NOPROCSUB)
358 {
359 f &= ~W_NOPROCSUB;
360 fprintf (stderr, "W_NOPROCSUB%s", f ? "|" : "");
361 }
362 if (f & W_DQUOTE)
363 {
364 f &= ~W_DQUOTE;
365 fprintf (stderr, "W_DQUOTE%s", f ? "|" : "");
366 }
367 if (f & W_HASQUOTEDNULL)
368 {
369 f &= ~W_HASQUOTEDNULL;
370 fprintf (stderr, "W_HASQUOTEDNULL%s", f ? "|" : "");
371 }
372 if (f & W_ASSIGNARG)
373 {
374 f &= ~W_ASSIGNARG;
375 fprintf (stderr, "W_ASSIGNARG%s", f ? "|" : "");
376 }
377 if (f & W_ASSNBLTIN)
378 {
379 f &= ~W_ASSNBLTIN;
380 fprintf (stderr, "W_ASSNBLTIN%s", f ? "|" : "");
381 }
Chet Ramey6d41b712012-05-07 16:22:49 -0400382 if (f & W_ASSNGLOBAL)
383 {
384 f &= ~W_ASSNGLOBAL;
385 fprintf (stderr, "W_ASSNGLOBAL%s", f ? "|" : "");
386 }
Chet Rameyac50fba2014-02-26 09:36:43 -0500387 if (f & W_ASSIGNINT)
388 {
389 f &= ~W_ASSIGNINT;
390 fprintf (stderr, "W_ASSIGNINT%s", f ? "|" : "");
391 }
Chet Ramey00018032011-11-21 20:51:19 -0500392 if (f & W_COMPASSIGN)
393 {
394 f &= ~W_COMPASSIGN;
395 fprintf (stderr, "W_COMPASSIGN%s", f ? "|" : "");
396 }
397 if (f & W_NOEXPAND)
398 {
399 f &= ~W_NOEXPAND;
400 fprintf (stderr, "W_NOEXPAND%s", f ? "|" : "");
401 }
402 if (f & W_ITILDE)
403 {
404 f &= ~W_ITILDE;
405 fprintf (stderr, "W_ITILDE%s", f ? "|" : "");
406 }
407 if (f & W_NOTILDE)
408 {
409 f &= ~W_NOTILDE;
410 fprintf (stderr, "W_NOTILDE%s", f ? "|" : "");
411 }
412 if (f & W_ASSIGNRHS)
413 {
414 f &= ~W_ASSIGNRHS;
415 fprintf (stderr, "W_ASSIGNRHS%s", f ? "|" : "");
416 }
417 if (f & W_NOCOMSUB)
418 {
419 f &= ~W_NOCOMSUB;
420 fprintf (stderr, "W_NOCOMSUB%s", f ? "|" : "");
421 }
422 if (f & W_DOLLARSTAR)
423 {
424 f &= ~W_DOLLARSTAR;
425 fprintf (stderr, "W_DOLLARSTAR%s", f ? "|" : "");
426 }
427 if (f & W_DOLLARAT)
428 {
429 f &= ~W_DOLLARAT;
430 fprintf (stderr, "W_DOLLARAT%s", f ? "|" : "");
431 }
432 if (f & W_TILDEEXP)
433 {
434 f &= ~W_TILDEEXP;
435 fprintf (stderr, "W_TILDEEXP%s", f ? "|" : "");
436 }
437 if (f & W_NOSPLIT2)
438 {
439 f &= ~W_NOSPLIT2;
440 fprintf (stderr, "W_NOSPLIT2%s", f ? "|" : "");
441 }
Chet Ramey00018032011-11-21 20:51:19 -0500442 if (f & W_NOSPLIT)
443 {
444 f &= ~W_NOSPLIT;
445 fprintf (stderr, "W_NOSPLIT%s", f ? "|" : "");
446 }
Chet Rameyac50fba2014-02-26 09:36:43 -0500447 if (f & W_NOBRACE)
Chet Ramey00018032011-11-21 20:51:19 -0500448 {
Chet Rameyac50fba2014-02-26 09:36:43 -0500449 f &= ~W_NOBRACE;
450 fprintf (stderr, "W_NOBRACE%s", f ? "|" : "");
451 }
452 if (f & W_NOGLOB)
453 {
454 f &= ~W_NOGLOB;
455 fprintf (stderr, "W_NOGLOB%s", f ? "|" : "");
456 }
457 if (f & W_SPLITSPACE)
458 {
459 f &= ~W_SPLITSPACE;
460 fprintf (stderr, "W_SPLITSPACE%s", f ? "|" : "");
Chet Ramey00018032011-11-21 20:51:19 -0500461 }
462 if (f & W_ASSIGNMENT)
463 {
464 f &= ~W_ASSIGNMENT;
465 fprintf (stderr, "W_ASSIGNMENT%s", f ? "|" : "");
466 }
467 if (f & W_QUOTED)
468 {
469 f &= ~W_QUOTED;
470 fprintf (stderr, "W_QUOTED%s", f ? "|" : "");
471 }
472 if (f & W_HASDOLLAR)
473 {
474 f &= ~W_HASDOLLAR;
475 fprintf (stderr, "W_HASDOLLAR%s", f ? "|" : "");
476 }
477 fprintf (stderr, "\n");
478 fflush (stderr);
479}
480#endif
481
Jari Aalto7117c2d2002-07-17 14:10:11 +0000482#ifdef INCLUDE_UNUSED
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000483static char *
484quoted_substring (string, start, end)
485 char *string;
486 int start, end;
487{
488 register int len, l;
489 register char *result, *s, *r;
490
491 len = end - start;
492
493 /* Move to string[start], skipping quoted characters. */
494 for (s = string, l = 0; *s && l < start; )
495 {
496 if (*s == CTLESC)
497 {
Jari Aalto28ef6c32001-04-06 19:14:31 +0000498 s++;
499 continue;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000500 }
501 l++;
502 if (*s == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000503 break;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000504 }
505
Jari Aaltof73dda02001-11-13 17:56:06 +0000506 r = result = (char *)xmalloc (2*len + 1); /* save room for quotes */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000507
508 /* Copy LEN characters, including quote characters. */
509 s = string + l;
510 for (l = 0; l < len; s++)
511 {
512 if (*s == CTLESC)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000513 *r++ = *s++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000514 *r++ = *s;
515 l++;
516 if (*s == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +0000517 break;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000518 }
519 *r = '\0';
520 return result;
521}
Jari Aalto7117c2d2002-07-17 14:10:11 +0000522#endif
523
524#ifdef INCLUDE_UNUSED
525/* Return the length of S, skipping over quoted characters */
526static int
527quoted_strlen (s)
528 char *s;
529{
530 register char *p;
531 int i;
532
533 i = 0;
534 for (p = s; *p; p++)
535 {
536 if (*p == CTLESC)
537 {
538 p++;
539 if (*p == 0)
540 return (i + 1);
541 }
542 i++;
543 }
544
545 return i;
546}
547#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000548
549/* Find the first occurrence of character C in string S, obeying shell
550 quoting rules. If (FLAGS & ST_BACKSL) is non-zero, backslash-escaped
551 characters are skipped. If (FLAGS & ST_CTLESC) is non-zero, characters
552 escaped with CTLESC are skipped. */
Jari Aalto7117c2d2002-07-17 14:10:11 +0000553static char *
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000554quoted_strchr (s, c, flags)
555 char *s;
556 int c, flags;
557{
558 register char *p;
559
560 for (p = s; *p; p++)
561 {
562 if (((flags & ST_BACKSL) && *p == '\\')
563 || ((flags & ST_CTLESC) && *p == CTLESC))
564 {
565 p++;
566 if (*p == '\0')
567 return ((char *)NULL);
568 continue;
569 }
570 else if (*p == c)
571 return p;
572 }
573 return ((char *)NULL);
574}
575
Jari Aaltocce855b1998-04-17 19:52:44 +0000576/* Return 1 if CHARACTER appears in an unquoted portion of
Jari Aalto7117c2d2002-07-17 14:10:11 +0000577 STRING. Return 0 otherwise. CHARACTER must be a single-byte character. */
Jari Aaltocce855b1998-04-17 19:52:44 +0000578static int
579unquoted_member (character, string)
580 int character;
Jari Aalto726f6381996-08-26 18:22:31 +0000581 char *string;
582{
Jari Aalto7117c2d2002-07-17 14:10:11 +0000583 size_t slen;
Jari Aaltocce855b1998-04-17 19:52:44 +0000584 int sindex, c;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000585 DECLARE_MBSTATE;
Jari Aalto726f6381996-08-26 18:22:31 +0000586
Jari Aalto7117c2d2002-07-17 14:10:11 +0000587 slen = strlen (string);
588 sindex = 0;
589 while (c = string[sindex])
Jari Aalto726f6381996-08-26 18:22:31 +0000590 {
Jari Aaltocce855b1998-04-17 19:52:44 +0000591 if (c == character)
592 return (1);
593
594 switch (c)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000595 {
Jari Aaltocce855b1998-04-17 19:52:44 +0000596 default:
Jari Aalto7117c2d2002-07-17 14:10:11 +0000597 ADVANCE_CHAR (string, slen, sindex);
Jari Aaltocce855b1998-04-17 19:52:44 +0000598 break;
599
600 case '\\':
601 sindex++;
602 if (string[sindex])
Jari Aalto7117c2d2002-07-17 14:10:11 +0000603 ADVANCE_CHAR (string, slen, sindex);
Jari Aaltocce855b1998-04-17 19:52:44 +0000604 break;
605
606 case '\'':
Jari Aalto7117c2d2002-07-17 14:10:11 +0000607 sindex = skip_single_quoted (string, slen, ++sindex);
Jari Aaltocce855b1998-04-17 19:52:44 +0000608 break;
609
610 case '"':
Jari Aalto7117c2d2002-07-17 14:10:11 +0000611 sindex = skip_double_quoted (string, slen, ++sindex);
Jari Aaltocce855b1998-04-17 19:52:44 +0000612 break;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000613 }
Jari Aalto726f6381996-08-26 18:22:31 +0000614 }
Jari Aaltocce855b1998-04-17 19:52:44 +0000615 return (0);
Jari Aalto726f6381996-08-26 18:22:31 +0000616}
617
Jari Aaltocce855b1998-04-17 19:52:44 +0000618/* Return 1 if SUBSTR appears in an unquoted portion of STRING. */
619static int
620unquoted_substring (substr, string)
621 char *substr, *string;
Jari Aalto726f6381996-08-26 18:22:31 +0000622{
Jari Aalto7117c2d2002-07-17 14:10:11 +0000623 size_t slen;
Jari Aaltocce855b1998-04-17 19:52:44 +0000624 int sindex, c, sublen;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000625 DECLARE_MBSTATE;
Jari Aalto726f6381996-08-26 18:22:31 +0000626
Jari Aaltocce855b1998-04-17 19:52:44 +0000627 if (substr == 0 || *substr == '\0')
628 return (0);
629
Jari Aalto7117c2d2002-07-17 14:10:11 +0000630 slen = strlen (string);
Jari Aaltocce855b1998-04-17 19:52:44 +0000631 sublen = strlen (substr);
632 for (sindex = 0; c = string[sindex]; )
Jari Aalto726f6381996-08-26 18:22:31 +0000633 {
Jari Aaltocce855b1998-04-17 19:52:44 +0000634 if (STREQN (string + sindex, substr, sublen))
635 return (1);
636
637 switch (c)
638 {
639 case '\\':
640 sindex++;
Jari Aaltocce855b1998-04-17 19:52:44 +0000641 if (string[sindex])
Jari Aalto7117c2d2002-07-17 14:10:11 +0000642 ADVANCE_CHAR (string, slen, sindex);
Jari Aaltocce855b1998-04-17 19:52:44 +0000643 break;
644
645 case '\'':
Jari Aalto7117c2d2002-07-17 14:10:11 +0000646 sindex = skip_single_quoted (string, slen, ++sindex);
Jari Aaltocce855b1998-04-17 19:52:44 +0000647 break;
648
649 case '"':
Jari Aalto7117c2d2002-07-17 14:10:11 +0000650 sindex = skip_double_quoted (string, slen, ++sindex);
Jari Aaltocce855b1998-04-17 19:52:44 +0000651 break;
652
653 default:
Jari Aalto7117c2d2002-07-17 14:10:11 +0000654 ADVANCE_CHAR (string, slen, sindex);
Jari Aaltocce855b1998-04-17 19:52:44 +0000655 break;
656 }
Jari Aalto726f6381996-08-26 18:22:31 +0000657 }
Jari Aaltocce855b1998-04-17 19:52:44 +0000658 return (0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000659}
Jari Aalto726f6381996-08-26 18:22:31 +0000660
Jari Aaltocce855b1998-04-17 19:52:44 +0000661/* Most of the substitutions must be done in parallel. In order
662 to avoid using tons of unclear goto's, I have some functions
663 for manipulating malloc'ed strings. They all take INDX, a
664 pointer to an integer which is the offset into the string
665 where manipulation is taking place. They also take SIZE, a
666 pointer to an integer which is the current length of the
667 character array for this string. */
Jari Aalto726f6381996-08-26 18:22:31 +0000668
Jari Aaltocce855b1998-04-17 19:52:44 +0000669/* Append SOURCE to TARGET at INDEX. SIZE is the current amount
670 of space allocated to TARGET. SOURCE can be NULL, in which
671 case nothing happens. Gets rid of SOURCE by freeing it.
672 Returns TARGET in case the location has changed. */
Jari Aalto7117c2d2002-07-17 14:10:11 +0000673INLINE char *
Jari Aaltocce855b1998-04-17 19:52:44 +0000674sub_append_string (source, target, indx, size)
675 char *source, *target;
676 int *indx, *size;
677{
678 if (source)
Jari Aalto726f6381996-08-26 18:22:31 +0000679 {
Jari Aaltocce855b1998-04-17 19:52:44 +0000680 int srclen, n;
681
682 srclen = STRLEN (source);
683 if (srclen >= (int)(*size - *indx))
Jari Aalto726f6381996-08-26 18:22:31 +0000684 {
Jari Aaltocce855b1998-04-17 19:52:44 +0000685 n = srclen + *indx;
686 n = (n + DEFAULT_ARRAY_SIZE) - (n % DEFAULT_ARRAY_SIZE);
Jari Aaltof73dda02001-11-13 17:56:06 +0000687 target = (char *)xrealloc (target, (*size = n));
Jari Aalto726f6381996-08-26 18:22:31 +0000688 }
Jari Aaltocce855b1998-04-17 19:52:44 +0000689
690 FASTCOPY (source, target + *indx, srclen);
691 *indx += srclen;
692 target[*indx] = '\0';
693
694 free (source);
Jari Aalto726f6381996-08-26 18:22:31 +0000695 }
Jari Aaltocce855b1998-04-17 19:52:44 +0000696 return (target);
697}
698
699#if 0
700/* UNUSED */
701/* Append the textual representation of NUMBER to TARGET.
702 INDX and SIZE are as in SUB_APPEND_STRING. */
703char *
704sub_append_number (number, target, indx, size)
Jari Aalto7117c2d2002-07-17 14:10:11 +0000705 intmax_t number;
Jari Aaltof73dda02001-11-13 17:56:06 +0000706 int *indx, *size;
Jari Aaltocce855b1998-04-17 19:52:44 +0000707 char *target;
708{
709 char *temp;
710
711 temp = itos (number);
712 return (sub_append_string (temp, target, indx, size));
Jari Aalto726f6381996-08-26 18:22:31 +0000713}
Jari Aaltod166f041997-06-05 14:59:13 +0000714#endif
Jari Aalto726f6381996-08-26 18:22:31 +0000715
716/* Extract a substring from STRING, starting at SINDEX and ending with
717 one of the characters in CHARLIST. Don't make the ending character
718 part of the string. Leave SINDEX pointing at the ending character.
Jari Aalto31859422009-01-12 13:36:28 +0000719 Understand about backslashes in the string. If (flags & SX_VARNAME)
Jari Aalto7117c2d2002-07-17 14:10:11 +0000720 is non-zero, and array variables have been compiled into the shell,
721 everything between a `[' and a corresponding `]' is skipped over.
Jari Aalto31859422009-01-12 13:36:28 +0000722 If (flags & SX_NOALLOC) is non-zero, don't return the substring, just
723 update SINDEX. If (flags & SX_REQMATCH) is non-zero, the string must
Jari Aalto95732b42005-12-07 14:08:12 +0000724 contain a closing character from CHARLIST. */
Jari Aalto726f6381996-08-26 18:22:31 +0000725static char *
Jari Aalto7117c2d2002-07-17 14:10:11 +0000726string_extract (string, sindex, charlist, flags)
Jari Aaltof73dda02001-11-13 17:56:06 +0000727 char *string;
728 int *sindex;
729 char *charlist;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000730 int flags;
Jari Aalto726f6381996-08-26 18:22:31 +0000731{
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000732 register int c, i;
Jari Aalto95732b42005-12-07 14:08:12 +0000733 int found;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000734 size_t slen;
Jari Aalto726f6381996-08-26 18:22:31 +0000735 char *temp;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000736 DECLARE_MBSTATE;
Jari Aalto726f6381996-08-26 18:22:31 +0000737
Jari Aalto95732b42005-12-07 14:08:12 +0000738 slen = (MB_CUR_MAX > 1) ? strlen (string + *sindex) + *sindex : 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000739 i = *sindex;
Jari Aalto95732b42005-12-07 14:08:12 +0000740 found = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000741 while (c = string[i])
Jari Aalto726f6381996-08-26 18:22:31 +0000742 {
743 if (c == '\\')
Jari Aalto7117c2d2002-07-17 14:10:11 +0000744 {
745 if (string[i + 1])
746 i++;
747 else
748 break;
749 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000750#if defined (ARRAY_VARS)
Jari Aalto31859422009-01-12 13:36:28 +0000751 else if ((flags & SX_VARNAME) && c == '[')
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000752 {
753 int ni;
754 /* If this is an array subscript, skip over it and continue. */
Chet Ramey00018032011-11-21 20:51:19 -0500755 ni = skipsubscript (string, i, 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000756 if (string[ni] == ']')
757 i = ni;
758 }
759#endif
760 else if (MEMBER (c, charlist))
Jari Aalto95732b42005-12-07 14:08:12 +0000761 {
762 found = 1;
Jari Aalto726f6381996-08-26 18:22:31 +0000763 break;
Jari Aalto95732b42005-12-07 14:08:12 +0000764 }
Jari Aalto7117c2d2002-07-17 14:10:11 +0000765
766 ADVANCE_CHAR (string, slen, i);
Jari Aalto726f6381996-08-26 18:22:31 +0000767 }
Jari Aaltobb706242000-03-17 21:46:59 +0000768
Jari Aalto95732b42005-12-07 14:08:12 +0000769 /* If we had to have a matching delimiter and didn't find one, return an
770 error and let the caller deal with it. */
Jari Aalto31859422009-01-12 13:36:28 +0000771 if ((flags & SX_REQMATCH) && found == 0)
Jari Aalto95732b42005-12-07 14:08:12 +0000772 {
773 *sindex = i;
774 return (&extract_string_error);
775 }
776
Jari Aalto31859422009-01-12 13:36:28 +0000777 temp = (flags & SX_NOALLOC) ? (char *)NULL : substring (string, *sindex, i);
Jari Aalto726f6381996-08-26 18:22:31 +0000778 *sindex = i;
Jari Aalto95732b42005-12-07 14:08:12 +0000779
Jari Aalto726f6381996-08-26 18:22:31 +0000780 return (temp);
781}
782
Jari Aalto726f6381996-08-26 18:22:31 +0000783/* Extract the contents of STRING as if it is enclosed in double quotes.
784 SINDEX, when passed in, is the offset of the character immediately
785 following the opening double quote; on exit, SINDEX is left pointing after
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000786 the closing double quote. If STRIPDQ is non-zero, unquoted double
787 quotes are stripped and the string is terminated by a null byte.
788 Backslashes between the embedded double quotes are processed. If STRIPDQ
789 is zero, an unquoted `"' terminates the string. */
Jari Aalto7117c2d2002-07-17 14:10:11 +0000790static char *
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000791string_extract_double_quoted (string, sindex, stripdq)
Jari Aalto726f6381996-08-26 18:22:31 +0000792 char *string;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000793 int *sindex, stripdq;
Jari Aalto726f6381996-08-26 18:22:31 +0000794{
Jari Aalto7117c2d2002-07-17 14:10:11 +0000795 size_t slen;
796 char *send;
Jari Aaltof73dda02001-11-13 17:56:06 +0000797 int j, i, t;
798 unsigned char c;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000799 char *temp, *ret; /* The new string we return. */
800 int pass_next, backquote, si; /* State variables for the machine. */
801 int dquote;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000802 DECLARE_MBSTATE;
803
804 slen = strlen (string + *sindex) + *sindex;
805 send = string + slen;
Jari Aalto726f6381996-08-26 18:22:31 +0000806
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000807 pass_next = backquote = dquote = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000808 temp = (char *)xmalloc (1 + slen - *sindex);
Jari Aalto726f6381996-08-26 18:22:31 +0000809
Jari Aalto7117c2d2002-07-17 14:10:11 +0000810 j = 0;
811 i = *sindex;
812 while (c = string[i])
Jari Aalto726f6381996-08-26 18:22:31 +0000813 {
814 /* Process a character that was quoted by a backslash. */
815 if (pass_next)
816 {
Chet Ramey495aee42011-11-22 19:11:26 -0500817 /* XXX - take another look at this in light of Interp 221 */
Jari Aalto726f6381996-08-26 18:22:31 +0000818 /* Posix.2 sez:
819
820 ``The backslash shall retain its special meaning as an escape
821 character only when followed by one of the characters:
Jari Aalto7117c2d2002-07-17 14:10:11 +0000822 $ ` " \ <newline>''.
Jari Aalto726f6381996-08-26 18:22:31 +0000823
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000824 If STRIPDQ is zero, we handle the double quotes here and let
825 expand_word_internal handle the rest. If STRIPDQ is non-zero,
826 we have already been through one round of backslash stripping,
827 and want to strip these backslashes only if DQUOTE is non-zero,
828 indicating that we are inside an embedded double-quoted string. */
829
830 /* If we are in an embedded quoted string, then don't strip
831 backslashes before characters for which the backslash
832 retains its special meaning, but remove backslashes in
833 front of other characters. If we are not in an
834 embedded quoted string, don't strip backslashes at all.
835 This mess is necessary because the string was already
836 surrounded by double quotes (and sh has some really weird
837 quoting rules).
838 The returned string will be run through expansion as if
839 it were double-quoted. */
840 if ((stripdq == 0 && c != '"') ||
Jari Aalto28ef6c32001-04-06 19:14:31 +0000841 (stripdq && ((dquote && (sh_syntaxtab[c] & CBSDQUOTE)) || dquote == 0)))
Jari Aalto726f6381996-08-26 18:22:31 +0000842 temp[j++] = '\\';
Jari Aalto726f6381996-08-26 18:22:31 +0000843 pass_next = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000844
845add_one_character:
846 COPY_CHAR_I (temp, j, string, send, i);
Jari Aalto726f6381996-08-26 18:22:31 +0000847 continue;
848 }
849
850 /* A backslash protects the next character. The code just above
851 handles preserving the backslash in front of any character but
852 a double quote. */
853 if (c == '\\')
854 {
855 pass_next++;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000856 i++;
Jari Aalto726f6381996-08-26 18:22:31 +0000857 continue;
858 }
859
860 /* Inside backquotes, ``the portion of the quoted string from the
861 initial backquote and the characters up to the next backquote
862 that is not preceded by a backslash, having escape characters
863 removed, defines that command''. */
864 if (backquote)
865 {
866 if (c == '`')
867 backquote = 0;
868 temp[j++] = c;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000869 i++;
Jari Aalto726f6381996-08-26 18:22:31 +0000870 continue;
871 }
872
873 if (c == '`')
874 {
875 temp[j++] = c;
876 backquote++;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000877 i++;
Jari Aalto726f6381996-08-26 18:22:31 +0000878 continue;
879 }
880
881 /* Pass everything between `$(' and the matching `)' or a quoted
882 ${ ... } pair through according to the Posix.2 specification. */
Jari Aaltocce855b1998-04-17 19:52:44 +0000883 if (c == '$' && ((string[i + 1] == LPAREN) || (string[i + 1] == LBRACE)))
Jari Aalto726f6381996-08-26 18:22:31 +0000884 {
Jari Aaltob80f6442004-07-27 13:29:18 +0000885 int free_ret = 1;
886
Jari Aalto726f6381996-08-26 18:22:31 +0000887 si = i + 2;
Jari Aaltocce855b1998-04-17 19:52:44 +0000888 if (string[i + 1] == LPAREN)
Jari Aalto31859422009-01-12 13:36:28 +0000889 ret = extract_command_subst (string, &si, 0);
Jari Aalto726f6381996-08-26 18:22:31 +0000890 else
Chet Ramey495aee42011-11-22 19:11:26 -0500891 ret = extract_dollar_brace_string (string, &si, Q_DOUBLE_QUOTES, 0);
Jari Aalto726f6381996-08-26 18:22:31 +0000892
893 temp[j++] = '$';
894 temp[j++] = string[i + 1];
895
Jari Aaltob80f6442004-07-27 13:29:18 +0000896 /* Just paranoia; ret will not be 0 unless no_longjmp_on_fatal_error
897 is set. */
898 if (ret == 0 && no_longjmp_on_fatal_error)
899 {
900 free_ret = 0;
901 ret = string + i + 2;
902 }
903
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000904 for (t = 0; ret[t]; t++, j++)
905 temp[j] = ret[t];
Jari Aaltob80f6442004-07-27 13:29:18 +0000906 temp[j] = string[si];
Jari Aalto726f6381996-08-26 18:22:31 +0000907
Jari Aaltob80f6442004-07-27 13:29:18 +0000908 if (string[si])
909 {
910 j++;
911 i = si + 1;
912 }
913 else
914 i = si;
915
916 if (free_ret)
917 free (ret);
Jari Aalto726f6381996-08-26 18:22:31 +0000918 continue;
919 }
920
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000921 /* Add any character but a double quote to the quoted string we're
Jari Aalto28ef6c32001-04-06 19:14:31 +0000922 accumulating. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000923 if (c != '"')
Jari Aalto7117c2d2002-07-17 14:10:11 +0000924 goto add_one_character;
Jari Aalto726f6381996-08-26 18:22:31 +0000925
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000926 /* c == '"' */
927 if (stripdq)
928 {
929 dquote ^= 1;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000930 i++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000931 continue;
932 }
933
934 break;
Jari Aalto726f6381996-08-26 18:22:31 +0000935 }
936 temp[j] = '\0';
937
938 /* Point to after the closing quote. */
939 if (c)
940 i++;
941 *sindex = i;
942
943 return (temp);
944}
945
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000946/* This should really be another option to string_extract_double_quoted. */
Jari Aaltof73dda02001-11-13 17:56:06 +0000947static int
Jari Aalto7117c2d2002-07-17 14:10:11 +0000948skip_double_quoted (string, slen, sind)
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000949 char *string;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000950 size_t slen;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000951 int sind;
952{
Jari Aaltof73dda02001-11-13 17:56:06 +0000953 int c, i;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000954 char *ret;
955 int pass_next, backquote, si;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000956 DECLARE_MBSTATE;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000957
958 pass_next = backquote = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000959 i = sind;
960 while (c = string[i])
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000961 {
962 if (pass_next)
963 {
964 pass_next = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000965 ADVANCE_CHAR (string, slen, i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000966 continue;
967 }
968 else if (c == '\\')
969 {
970 pass_next++;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000971 i++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000972 continue;
973 }
974 else if (backquote)
975 {
976 if (c == '`')
977 backquote = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000978 ADVANCE_CHAR (string, slen, i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000979 continue;
980 }
981 else if (c == '`')
982 {
983 backquote++;
Jari Aalto7117c2d2002-07-17 14:10:11 +0000984 i++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000985 continue;
986 }
Jari Aaltocce855b1998-04-17 19:52:44 +0000987 else if (c == '$' && ((string[i + 1] == LPAREN) || (string[i + 1] == LBRACE)))
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000988 {
989 si = i + 2;
Jari Aaltocce855b1998-04-17 19:52:44 +0000990 if (string[i + 1] == LPAREN)
Jari Aalto31859422009-01-12 13:36:28 +0000991 ret = extract_command_subst (string, &si, SX_NOALLOC);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000992 else
Chet Ramey495aee42011-11-22 19:11:26 -0500993 ret = extract_dollar_brace_string (string, &si, Q_DOUBLE_QUOTES, SX_NOALLOC);
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000994
Jari Aalto7117c2d2002-07-17 14:10:11 +0000995 i = si + 1;
Jari Aaltoccc6cda1996-12-23 17:02:34 +0000996 continue;
997 }
998 else if (c != '"')
Jari Aalto7117c2d2002-07-17 14:10:11 +0000999 {
1000 ADVANCE_CHAR (string, slen, i);
1001 continue;
1002 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001003 else
1004 break;
1005 }
1006
1007 if (c)
1008 i++;
1009
1010 return (i);
1011}
1012
Jari Aalto726f6381996-08-26 18:22:31 +00001013/* Extract the contents of STRING as if it is enclosed in single quotes.
1014 SINDEX, when passed in, is the offset of the character immediately
1015 following the opening single quote; on exit, SINDEX is left pointing after
1016 the closing single quote. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001017static inline char *
Jari Aalto726f6381996-08-26 18:22:31 +00001018string_extract_single_quoted (string, sindex)
1019 char *string;
1020 int *sindex;
1021{
Jari Aaltof73dda02001-11-13 17:56:06 +00001022 register int i;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001023 size_t slen;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001024 char *t;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001025 DECLARE_MBSTATE;
Jari Aalto726f6381996-08-26 18:22:31 +00001026
Jari Aalto95732b42005-12-07 14:08:12 +00001027 /* Don't need slen for ADVANCE_CHAR unless multibyte chars possible. */
1028 slen = (MB_CUR_MAX > 1) ? strlen (string + *sindex) + *sindex : 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001029 i = *sindex;
1030 while (string[i] && string[i] != '\'')
1031 ADVANCE_CHAR (string, slen, i);
Jari Aalto726f6381996-08-26 18:22:31 +00001032
Jari Aaltobb706242000-03-17 21:46:59 +00001033 t = substring (string, *sindex, i);
Jari Aalto726f6381996-08-26 18:22:31 +00001034
1035 if (string[i])
1036 i++;
1037 *sindex = i;
1038
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001039 return (t);
1040}
1041
1042static inline int
Jari Aalto7117c2d2002-07-17 14:10:11 +00001043skip_single_quoted (string, slen, sind)
Jari Aalto06285672006-10-10 14:15:34 +00001044 const char *string;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001045 size_t slen;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001046 int sind;
1047{
Jari Aalto28ef6c32001-04-06 19:14:31 +00001048 register int c;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001049 DECLARE_MBSTATE;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001050
Jari Aalto7117c2d2002-07-17 14:10:11 +00001051 c = sind;
1052 while (string[c] && string[c] != '\'')
1053 ADVANCE_CHAR (string, slen, c);
1054
Jari Aalto28ef6c32001-04-06 19:14:31 +00001055 if (string[c])
1056 c++;
1057 return c;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001058}
1059
1060/* Just like string_extract, but doesn't hack backslashes or any of
Jari Aaltobb706242000-03-17 21:46:59 +00001061 that other stuff. Obeys CTLESC quoting. Used to do splitting on $IFS. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001062static char *
Jari Aalto31859422009-01-12 13:36:28 +00001063string_extract_verbatim (string, slen, sindex, charlist, flags)
Jari Aaltof73dda02001-11-13 17:56:06 +00001064 char *string;
Jari Aalto95732b42005-12-07 14:08:12 +00001065 size_t slen;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001066 int *sindex;
Jari Aaltof73dda02001-11-13 17:56:06 +00001067 char *charlist;
Jari Aalto31859422009-01-12 13:36:28 +00001068 int flags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001069{
Chet Ramey00018032011-11-21 20:51:19 -05001070 register int i;
Jari Aalto95732b42005-12-07 14:08:12 +00001071#if defined (HANDLE_MULTIBYTE)
1072 size_t clen;
1073 wchar_t *wcharlist;
1074#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001075 int c;
1076 char *temp;
Jari Aalto95732b42005-12-07 14:08:12 +00001077 DECLARE_MBSTATE;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001078
1079 if (charlist[0] == '\'' && charlist[1] == '\0')
1080 {
1081 temp = string_extract_single_quoted (string, sindex);
1082 --*sindex; /* leave *sindex at separator character */
1083 return temp;
1084 }
1085
Jari Aalto95732b42005-12-07 14:08:12 +00001086 i = *sindex;
1087#if 0
1088 /* See how the MBLEN and ADVANCE_CHAR macros work to understand why we need
1089 this only if MB_CUR_MAX > 1. */
1090 slen = (MB_CUR_MAX > 1) ? strlen (string + *sindex) + *sindex : 1;
1091#endif
1092#if defined (HANDLE_MULTIBYTE)
1093 clen = strlen (charlist);
1094 wcharlist = 0;
1095#endif
1096 while (c = string[i])
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001097 {
Jari Aalto95732b42005-12-07 14:08:12 +00001098#if defined (HANDLE_MULTIBYTE)
1099 size_t mblength;
1100#endif
Jari Aalto31859422009-01-12 13:36:28 +00001101 if ((flags & SX_NOCTLESC) == 0 && c == CTLESC)
1102 {
1103 i += 2;
1104 continue;
1105 }
1106 /* Even if flags contains SX_NOCTLESC, we let CTLESC quoting CTLNUL
1107 through, to protect the CTLNULs from later calls to
1108 remove_quoted_nulls. */
1109 else if ((flags & SX_NOESCCTLNUL) == 0 && c == CTLESC && string[i+1] == CTLNUL)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001110 {
Jari Aalto95732b42005-12-07 14:08:12 +00001111 i += 2;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001112 continue;
1113 }
1114
Jari Aalto95732b42005-12-07 14:08:12 +00001115#if defined (HANDLE_MULTIBYTE)
1116 mblength = MBLEN (string + i, slen - i);
1117 if (mblength > 1)
1118 {
1119 wchar_t wc;
1120 mblength = mbtowc (&wc, string + i, slen - i);
1121 if (MB_INVALIDCH (mblength))
1122 {
1123 if (MEMBER (c, charlist))
1124 break;
1125 }
1126 else
1127 {
1128 if (wcharlist == 0)
1129 {
1130 size_t len;
1131 len = mbstowcs (wcharlist, charlist, 0);
1132 if (len == -1)
1133 len = 0;
Jari Aalto06285672006-10-10 14:15:34 +00001134 wcharlist = (wchar_t *)xmalloc (sizeof (wchar_t) * (len + 1));
1135 mbstowcs (wcharlist, charlist, len + 1);
Jari Aalto95732b42005-12-07 14:08:12 +00001136 }
1137
1138 if (wcschr (wcharlist, wc))
1139 break;
1140 }
1141 }
1142 else
1143#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001144 if (MEMBER (c, charlist))
1145 break;
Jari Aalto95732b42005-12-07 14:08:12 +00001146
1147 ADVANCE_CHAR (string, slen, i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001148 }
1149
Jari Aalto95732b42005-12-07 14:08:12 +00001150#if defined (HANDLE_MULTIBYTE)
1151 FREE (wcharlist);
1152#endif
1153
Jari Aaltobb706242000-03-17 21:46:59 +00001154 temp = substring (string, *sindex, i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001155 *sindex = i;
1156
Jari Aalto726f6381996-08-26 18:22:31 +00001157 return (temp);
1158}
1159
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001160/* Extract the $( construct in STRING, and return a new string.
1161 Start extracting at (SINDEX) as if we had just seen "$(".
Jari Aalto31859422009-01-12 13:36:28 +00001162 Make (SINDEX) get the position of the matching ")". )
Chet Ramey00018032011-11-21 20:51:19 -05001163 XFLAGS is additional flags to pass to other extraction functions. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001164char *
Jari Aalto31859422009-01-12 13:36:28 +00001165extract_command_subst (string, sindex, xflags)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001166 char *string;
1167 int *sindex;
Jari Aalto31859422009-01-12 13:36:28 +00001168 int xflags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001169{
Chet Ramey00018032011-11-21 20:51:19 -05001170 if (string[*sindex] == LPAREN)
Jari Aalto31859422009-01-12 13:36:28 +00001171 return (extract_delimited_string (string, sindex, "$(", "(", ")", xflags|SX_COMMAND)); /*)*/
1172 else
1173 {
1174 xflags |= (no_longjmp_on_fatal_error ? SX_NOLONGJMP : 0);
1175 return (xparse_dolparen (string, string+*sindex, sindex, xflags));
1176 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001177}
1178
Jari Aalto28ef6c32001-04-06 19:14:31 +00001179/* Extract the $[ construct in STRING, and return a new string. (])
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001180 Start extracting at (SINDEX) as if we had just seen "$[".
1181 Make (SINDEX) get the position of the matching "]". */
1182char *
1183extract_arithmetic_subst (string, sindex)
1184 char *string;
1185 int *sindex;
1186{
Jari Aalto7117c2d2002-07-17 14:10:11 +00001187 return (extract_delimited_string (string, sindex, "$[", "[", "]", 0)); /*]*/
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001188}
1189
1190#if defined (PROCESS_SUBSTITUTION)
1191/* Extract the <( or >( construct in STRING, and return a new string.
1192 Start extracting at (SINDEX) as if we had just seen "<(".
Jari Aaltocce855b1998-04-17 19:52:44 +00001193 Make (SINDEX) get the position of the matching ")". */ /*))*/
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001194char *
Chet Ramey85b94812014-08-18 11:45:12 -04001195extract_process_subst (string, starter, sindex, xflags)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001196 char *string;
1197 char *starter;
1198 int *sindex;
Chet Ramey85b94812014-08-18 11:45:12 -04001199 int xflags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001200{
Chet Ramey85b94812014-08-18 11:45:12 -04001201#if 0
Chet Rameyac50fba2014-02-26 09:36:43 -05001202 return (extract_delimited_string (string, sindex, starter, "(", ")", SX_COMMAND));
Chet Ramey85b94812014-08-18 11:45:12 -04001203#else
1204 xflags |= (no_longjmp_on_fatal_error ? SX_NOLONGJMP : 0);
1205 return (xparse_dolparen (string, string+*sindex, sindex, xflags));
1206#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001207}
1208#endif /* PROCESS_SUBSTITUTION */
1209
1210#if defined (ARRAY_VARS)
Jari Aalto95732b42005-12-07 14:08:12 +00001211/* This can be fooled by unquoted right parens in the passed string. If
1212 each caller verifies that the last character in STRING is a right paren,
1213 we don't even need to call extract_delimited_string. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001214char *
1215extract_array_assignment_list (string, sindex)
1216 char *string;
1217 int *sindex;
1218{
Jari Aalto95732b42005-12-07 14:08:12 +00001219 int slen;
1220 char *ret;
1221
1222 slen = strlen (string); /* ( */
1223 if (string[slen - 1] == ')')
1224 {
1225 ret = substring (string, *sindex, slen - 1);
1226 *sindex = slen - 1;
1227 return ret;
1228 }
1229 return 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001230}
1231#endif
1232
1233/* Extract and create a new string from the contents of STRING, a
1234 character string delimited with OPENER and CLOSER. SINDEX is
1235 the address of an int describing the current offset in STRING;
1236 it should point to just after the first OPENER found. On exit,
1237 SINDEX gets the position of the last character of the matching CLOSER.
1238 If OPENER is more than a single character, ALT_OPENER, if non-null,
1239 contains a character string that can also match CLOSER and thus
1240 needs to be skipped. */
1241static char *
Jari Aalto7117c2d2002-07-17 14:10:11 +00001242extract_delimited_string (string, sindex, opener, alt_opener, closer, flags)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001243 char *string;
1244 int *sindex;
1245 char *opener, *alt_opener, *closer;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001246 int flags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001247{
1248 int i, c, si;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001249 size_t slen;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001250 char *t, *result;
Jari Aalto06285672006-10-10 14:15:34 +00001251 int pass_character, nesting_level, in_comment;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001252 int len_closer, len_opener, len_alt_opener;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001253 DECLARE_MBSTATE;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001254
Jari Aalto7117c2d2002-07-17 14:10:11 +00001255 slen = strlen (string + *sindex) + *sindex;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001256 len_opener = STRLEN (opener);
1257 len_alt_opener = STRLEN (alt_opener);
1258 len_closer = STRLEN (closer);
1259
Jari Aalto06285672006-10-10 14:15:34 +00001260 pass_character = in_comment = 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001261
1262 nesting_level = 1;
1263 i = *sindex;
1264
1265 while (nesting_level)
1266 {
1267 c = string[i];
1268
1269 if (c == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00001270 break;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001271
Jari Aalto06285672006-10-10 14:15:34 +00001272 if (in_comment)
1273 {
1274 if (c == '\n')
1275 in_comment = 0;
1276 ADVANCE_CHAR (string, slen, i);
1277 continue;
1278 }
1279
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001280 if (pass_character) /* previous char was backslash */
1281 {
1282 pass_character = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001283 ADVANCE_CHAR (string, slen, i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001284 continue;
1285 }
1286
Jari Aalto06285672006-10-10 14:15:34 +00001287 /* Not exactly right yet; should handle shell metacharacters and
Chet Ramey00018032011-11-21 20:51:19 -05001288 multibyte characters, too. See COMMENT_BEGIN define in parse.y */
Jari Aalto31859422009-01-12 13:36:28 +00001289 if ((flags & SX_COMMAND) && c == '#' && (i == 0 || string[i - 1] == '\n' || shellblank (string[i - 1])))
Jari Aalto06285672006-10-10 14:15:34 +00001290 {
1291 in_comment = 1;
1292 ADVANCE_CHAR (string, slen, i);
1293 continue;
1294 }
1295
Jari Aalto7117c2d2002-07-17 14:10:11 +00001296 if (c == CTLESC || c == '\\')
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001297 {
1298 pass_character++;
1299 i++;
1300 continue;
1301 }
1302
Chet Ramey495aee42011-11-22 19:11:26 -05001303 /* Process a nested command substitution, but only if we're parsing an
1304 arithmetic substitution. */
Chet Ramey00018032011-11-21 20:51:19 -05001305 if ((flags & SX_COMMAND) && string[i] == '$' && string[i+1] == LPAREN)
1306 {
1307 si = i + 2;
Chet Ramey495aee42011-11-22 19:11:26 -05001308 t = extract_command_subst (string, &si, flags|SX_NOALLOC);
Chet Ramey00018032011-11-21 20:51:19 -05001309 i = si + 1;
1310 continue;
1311 }
Chet Ramey00018032011-11-21 20:51:19 -05001312
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001313 /* Process a nested OPENER. */
1314 if (STREQN (string + i, opener, len_opener))
1315 {
1316 si = i + len_opener;
Jari Aalto31859422009-01-12 13:36:28 +00001317 t = extract_delimited_string (string, &si, opener, alt_opener, closer, flags|SX_NOALLOC);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001318 i = si + 1;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001319 continue;
1320 }
1321
1322 /* Process a nested ALT_OPENER */
1323 if (len_alt_opener && STREQN (string + i, alt_opener, len_alt_opener))
1324 {
1325 si = i + len_alt_opener;
Jari Aalto31859422009-01-12 13:36:28 +00001326 t = extract_delimited_string (string, &si, alt_opener, alt_opener, closer, flags|SX_NOALLOC);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001327 i = si + 1;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001328 continue;
1329 }
1330
1331 /* If the current substring terminates the delimited string, decrement
1332 the nesting level. */
1333 if (STREQN (string + i, closer, len_closer))
1334 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00001335 i += len_closer - 1; /* move to last byte of the closer */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001336 nesting_level--;
1337 if (nesting_level == 0)
1338 break;
1339 }
1340
1341 /* Pass old-style command substitution through verbatim. */
1342 if (c == '`')
Jari Aalto28ef6c32001-04-06 19:14:31 +00001343 {
1344 si = i + 1;
Jari Aalto31859422009-01-12 13:36:28 +00001345 t = string_extract (string, &si, "`", flags|SX_NOALLOC);
Jari Aalto28ef6c32001-04-06 19:14:31 +00001346 i = si + 1;
Jari Aalto28ef6c32001-04-06 19:14:31 +00001347 continue;
1348 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001349
Jari Aalto7117c2d2002-07-17 14:10:11 +00001350 /* Pass single-quoted and double-quoted strings through verbatim. */
1351 if (c == '\'' || c == '"')
Jari Aalto28ef6c32001-04-06 19:14:31 +00001352 {
1353 si = i + 1;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001354 i = (c == '\'') ? skip_single_quoted (string, slen, si)
1355 : skip_double_quoted (string, slen, si);
Jari Aalto28ef6c32001-04-06 19:14:31 +00001356 continue;
1357 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001358
Jari Aalto7117c2d2002-07-17 14:10:11 +00001359 /* move past this character, which was not special. */
1360 ADVANCE_CHAR (string, slen, i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001361 }
1362
Jari Aaltob80f6442004-07-27 13:29:18 +00001363 if (c == 0 && nesting_level)
Jari Aaltocce855b1998-04-17 19:52:44 +00001364 {
Jari Aaltob80f6442004-07-27 13:29:18 +00001365 if (no_longjmp_on_fatal_error == 0)
1366 {
Jari Aaltob80f6442004-07-27 13:29:18 +00001367 last_command_exit_value = EXECUTION_FAILURE;
Chet Rameyac50fba2014-02-26 09:36:43 -05001368 report_error (_("bad substitution: no closing `%s' in %s"), closer, string);
Jari Aaltob80f6442004-07-27 13:29:18 +00001369 exp_jump_to_top_level (DISCARD);
1370 }
1371 else
1372 {
1373 *sindex = i;
1374 return (char *)NULL;
1375 }
Jari Aaltocce855b1998-04-17 19:52:44 +00001376 }
1377
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001378 si = i - *sindex - len_closer + 1;
Jari Aalto31859422009-01-12 13:36:28 +00001379 if (flags & SX_NOALLOC)
Jari Aalto7117c2d2002-07-17 14:10:11 +00001380 result = (char *)NULL;
1381 else
1382 {
1383 result = (char *)xmalloc (1 + si);
1384 strncpy (result, string + *sindex, si);
1385 result[si] = '\0';
1386 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001387 *sindex = i;
1388
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001389 return (result);
1390}
1391
1392/* Extract a parameter expansion expression within ${ and } from STRING.
1393 Obey the Posix.2 rules for finding the ending `}': count braces while
1394 skipping over enclosed quoted strings and command substitutions.
1395 SINDEX is the address of an int describing the current offset in STRING;
1396 it should point to just after the first `{' found. On exit, SINDEX
1397 gets the position of the matching `}'. QUOTED is non-zero if this
1398 occurs inside double quotes. */
1399/* XXX -- this is very similar to extract_delimited_string -- XXX */
1400static char *
Jari Aalto7117c2d2002-07-17 14:10:11 +00001401extract_dollar_brace_string (string, sindex, quoted, flags)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001402 char *string;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001403 int *sindex, quoted, flags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001404{
Jari Aaltof73dda02001-11-13 17:56:06 +00001405 register int i, c;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001406 size_t slen;
Chet Ramey495aee42011-11-22 19:11:26 -05001407 int pass_character, nesting_level, si, dolbrace_state;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001408 char *result, *t;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001409 DECLARE_MBSTATE;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001410
1411 pass_character = 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001412 nesting_level = 1;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001413 slen = strlen (string + *sindex) + *sindex;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001414
Chet Ramey495aee42011-11-22 19:11:26 -05001415 /* The handling of dolbrace_state needs to agree with the code in parse.y:
Chet Ramey49ed9612011-11-22 19:59:44 -05001416 parse_matched_pair(). The different initial value is to handle the
1417 case where this function is called to parse the word in
1418 ${param op word} (SX_WORD). */
1419 dolbrace_state = (flags & SX_WORD) ? DOLBRACE_WORD : DOLBRACE_PARAM;
1420 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && (flags & SX_POSIXEXP))
1421 dolbrace_state = DOLBRACE_QUOTE;
Chet Ramey495aee42011-11-22 19:11:26 -05001422
Jari Aalto7117c2d2002-07-17 14:10:11 +00001423 i = *sindex;
1424 while (c = string[i])
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001425 {
1426 if (pass_character)
1427 {
1428 pass_character = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001429 ADVANCE_CHAR (string, slen, i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001430 continue;
1431 }
1432
Jari Aaltocce855b1998-04-17 19:52:44 +00001433 /* CTLESCs and backslashes quote the next character. */
1434 if (c == CTLESC || c == '\\')
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001435 {
1436 pass_character++;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001437 i++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001438 continue;
1439 }
1440
Jari Aaltocce855b1998-04-17 19:52:44 +00001441 if (string[i] == '$' && string[i+1] == LBRACE)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001442 {
1443 nesting_level++;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001444 i += 2;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001445 continue;
1446 }
1447
Jari Aaltocce855b1998-04-17 19:52:44 +00001448 if (c == RBRACE)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001449 {
1450 nesting_level--;
1451 if (nesting_level == 0)
1452 break;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001453 i++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001454 continue;
1455 }
1456
1457 /* Pass the contents of old-style command substitutions through
1458 verbatim. */
1459 if (c == '`')
1460 {
1461 si = i + 1;
Jari Aalto31859422009-01-12 13:36:28 +00001462 t = string_extract (string, &si, "`", flags|SX_NOALLOC);
Jari Aalto7117c2d2002-07-17 14:10:11 +00001463 i = si + 1;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001464 continue;
1465 }
1466
Jari Aaltocce855b1998-04-17 19:52:44 +00001467 /* Pass the contents of new-style command substitutions and
1468 arithmetic substitutions through verbatim. */
1469 if (string[i] == '$' && string[i+1] == LPAREN)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001470 {
1471 si = i + 2;
Jari Aalto31859422009-01-12 13:36:28 +00001472 t = extract_command_subst (string, &si, flags|SX_NOALLOC);
Jari Aalto7117c2d2002-07-17 14:10:11 +00001473 i = si + 1;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001474 continue;
1475 }
1476
Chet Ramey495aee42011-11-22 19:11:26 -05001477 /* Pass the contents of double-quoted strings through verbatim. */
1478 if (c == '"')
1479 {
1480 si = i + 1;
1481 i = skip_double_quoted (string, slen, si);
1482 /* skip_XXX_quoted leaves index one past close quote */
1483 continue;
1484 }
1485
1486 if (c == '\'')
1487 {
1488/*itrace("extract_dollar_brace_string: c == single quote flags = %d quoted = %d dolbrace_state = %d", flags, quoted, dolbrace_state);*/
Chet Rameyac50fba2014-02-26 09:36:43 -05001489 if (posixly_correct && shell_compatibility_level > 42 && dolbrace_state != DOLBRACE_QUOTE && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
Chet Ramey495aee42011-11-22 19:11:26 -05001490 ADVANCE_CHAR (string, slen, i);
1491 else
1492 {
1493 si = i + 1;
1494 i = skip_single_quoted (string, slen, si);
1495 }
1496
1497 continue;
1498 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00001499
1500 /* move past this character, which was not special. */
1501 ADVANCE_CHAR (string, slen, i);
Chet Ramey495aee42011-11-22 19:11:26 -05001502
1503 /* This logic must agree with parse.y:parse_matched_pair, since they
1504 share the same defines. */
1505 if (dolbrace_state == DOLBRACE_PARAM && c == '%' && (i - *sindex) > 1)
1506 dolbrace_state = DOLBRACE_QUOTE;
1507 else if (dolbrace_state == DOLBRACE_PARAM && c == '#' && (i - *sindex) > 1)
1508 dolbrace_state = DOLBRACE_QUOTE;
1509 else if (dolbrace_state == DOLBRACE_PARAM && c == '/' && (i - *sindex) > 1)
Chet Rameyac50fba2014-02-26 09:36:43 -05001510 dolbrace_state = DOLBRACE_QUOTE2; /* XXX */
Chet Ramey495aee42011-11-22 19:11:26 -05001511 else if (dolbrace_state == DOLBRACE_PARAM && c == '^' && (i - *sindex) > 1)
1512 dolbrace_state = DOLBRACE_QUOTE;
1513 else if (dolbrace_state == DOLBRACE_PARAM && c == ',' && (i - *sindex) > 1)
1514 dolbrace_state = DOLBRACE_QUOTE;
1515 else if (dolbrace_state == DOLBRACE_PARAM && strchr ("#%^,~:-=?+/", c) != 0)
1516 dolbrace_state = DOLBRACE_OP;
1517 else if (dolbrace_state == DOLBRACE_OP && strchr ("#%^,~:-=?+/", c) == 0)
1518 dolbrace_state = DOLBRACE_WORD;
Jari Aaltocce855b1998-04-17 19:52:44 +00001519 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001520
Jari Aaltob80f6442004-07-27 13:29:18 +00001521 if (c == 0 && nesting_level)
Jari Aaltocce855b1998-04-17 19:52:44 +00001522 {
Jari Aaltob80f6442004-07-27 13:29:18 +00001523 if (no_longjmp_on_fatal_error == 0)
1524 { /* { */
Jari Aaltob80f6442004-07-27 13:29:18 +00001525 last_command_exit_value = EXECUTION_FAILURE;
Chet Rameyac50fba2014-02-26 09:36:43 -05001526 report_error (_("bad substitution: no closing `%s' in %s"), "}", string);
Jari Aaltob80f6442004-07-27 13:29:18 +00001527 exp_jump_to_top_level (DISCARD);
1528 }
1529 else
1530 {
1531 *sindex = i;
1532 return ((char *)NULL);
1533 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001534 }
1535
Jari Aalto31859422009-01-12 13:36:28 +00001536 result = (flags & SX_NOALLOC) ? (char *)NULL : substring (string, *sindex, i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001537 *sindex = i;
1538
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001539 return (result);
1540}
1541
1542/* Remove backslashes which are quoting backquotes from STRING. Modifies
1543 STRING, and returns a pointer to it. */
1544char *
1545de_backslash (string)
1546 char *string;
1547{
Jari Aalto7117c2d2002-07-17 14:10:11 +00001548 register size_t slen;
1549 register int i, j, prev_i;
1550 DECLARE_MBSTATE;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001551
Jari Aalto7117c2d2002-07-17 14:10:11 +00001552 slen = strlen (string);
1553 i = j = 0;
1554
1555 /* Loop copying string[i] to string[j], i >= j. */
1556 while (i < slen)
1557 {
1558 if (string[i] == '\\' && (string[i + 1] == '`' || string[i + 1] == '\\' ||
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001559 string[i + 1] == '$'))
Jari Aalto7117c2d2002-07-17 14:10:11 +00001560 i++;
1561 prev_i = i;
1562 ADVANCE_CHAR (string, slen, i);
1563 if (j < prev_i)
Jari Aaltob80f6442004-07-27 13:29:18 +00001564 do string[j++] = string[prev_i++]; while (prev_i < i);
Jari Aalto7117c2d2002-07-17 14:10:11 +00001565 else
Jari Aaltob80f6442004-07-27 13:29:18 +00001566 j = i;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001567 }
1568 string[j] = '\0';
1569
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001570 return (string);
1571}
1572
1573#if 0
Jari Aaltocce855b1998-04-17 19:52:44 +00001574/*UNUSED*/
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001575/* Replace instances of \! in a string with !. */
1576void
1577unquote_bang (string)
1578 char *string;
1579{
1580 register int i, j;
1581 register char *temp;
1582
Jari Aaltof73dda02001-11-13 17:56:06 +00001583 temp = (char *)xmalloc (1 + strlen (string));
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001584
1585 for (i = 0, j = 0; (temp[j] = string[i]); i++, j++)
1586 {
1587 if (string[i] == '\\' && string[i + 1] == '!')
1588 {
1589 temp[j] = '!';
1590 i++;
1591 }
1592 }
1593 strcpy (string, temp);
1594 free (temp);
1595}
1596#endif
1597
Jari Aalto31859422009-01-12 13:36:28 +00001598#define CQ_RETURN(x) do { no_longjmp_on_fatal_error = 0; return (x); } while (0)
1599
Chet Ramey89a92862011-11-21 20:49:12 -05001600/* This function assumes s[i] == open; returns with s[ret] == close; used to
Chet Ramey00018032011-11-21 20:51:19 -05001601 parse array subscripts. FLAGS & 1 means to not attempt to skip over
1602 matched pairs of quotes or backquotes, or skip word expansions; it is
1603 intended to be used after expansion has been performed and during final
1604 assignment parsing (see arrayfunc.c:assign_compound_array_list()). */
Chet Ramey89a92862011-11-21 20:49:12 -05001605static int
1606skip_matched_pair (string, start, open, close, flags)
1607 const char *string;
1608 int start, open, close, flags;
1609{
1610 int i, pass_next, backq, si, c, count;
1611 size_t slen;
1612 char *temp, *ss;
1613 DECLARE_MBSTATE;
1614
1615 slen = strlen (string + start) + start;
1616 no_longjmp_on_fatal_error = 1;
1617
1618 i = start + 1; /* skip over leading bracket */
1619 count = 1;
1620 pass_next = backq = 0;
1621 ss = (char *)string;
1622 while (c = string[i])
1623 {
1624 if (pass_next)
1625 {
1626 pass_next = 0;
1627 if (c == 0)
1628 CQ_RETURN(i);
1629 ADVANCE_CHAR (string, slen, i);
1630 continue;
1631 }
1632 else if (c == '\\')
1633 {
1634 pass_next = 1;
1635 i++;
1636 continue;
1637 }
1638 else if (backq)
1639 {
1640 if (c == '`')
1641 backq = 0;
1642 ADVANCE_CHAR (string, slen, i);
1643 continue;
1644 }
Chet Ramey00018032011-11-21 20:51:19 -05001645 else if ((flags & 1) == 0 && c == '`')
Chet Ramey89a92862011-11-21 20:49:12 -05001646 {
1647 backq = 1;
1648 i++;
1649 continue;
1650 }
Chet Ramey00018032011-11-21 20:51:19 -05001651 else if ((flags & 1) == 0 && c == open)
Chet Ramey89a92862011-11-21 20:49:12 -05001652 {
1653 count++;
1654 i++;
1655 continue;
1656 }
1657 else if (c == close)
1658 {
1659 count--;
1660 if (count == 0)
1661 break;
1662 i++;
1663 continue;
1664 }
Chet Ramey00018032011-11-21 20:51:19 -05001665 else if ((flags & 1) == 0 && (c == '\'' || c == '"'))
Chet Ramey89a92862011-11-21 20:49:12 -05001666 {
1667 i = (c == '\'') ? skip_single_quoted (ss, slen, ++i)
1668 : skip_double_quoted (ss, slen, ++i);
1669 /* no increment, the skip functions increment past the closing quote. */
1670 }
Chet Ramey00018032011-11-21 20:51:19 -05001671 else if ((flags&1) == 0 && c == '$' && (string[i+1] == LPAREN || string[i+1] == LBRACE))
Chet Ramey89a92862011-11-21 20:49:12 -05001672 {
1673 si = i + 2;
1674 if (string[si] == '\0')
1675 CQ_RETURN(si);
1676
1677 if (string[i+1] == LPAREN)
1678 temp = extract_delimited_string (ss, &si, "$(", "(", ")", SX_NOALLOC|SX_COMMAND); /* ) */
1679 else
1680 temp = extract_dollar_brace_string (ss, &si, 0, SX_NOALLOC);
1681 i = si;
1682 if (string[i] == '\0') /* don't increment i past EOS in loop */
1683 break;
1684 i++;
1685 continue;
1686 }
1687 else
1688 ADVANCE_CHAR (string, slen, i);
1689 }
1690
1691 CQ_RETURN(i);
1692}
1693
1694#if defined (ARRAY_VARS)
1695int
Chet Ramey00018032011-11-21 20:51:19 -05001696skipsubscript (string, start, flags)
Chet Ramey89a92862011-11-21 20:49:12 -05001697 const char *string;
Chet Ramey00018032011-11-21 20:51:19 -05001698 int start, flags;
Chet Ramey89a92862011-11-21 20:49:12 -05001699{
Chet Ramey00018032011-11-21 20:51:19 -05001700 return (skip_matched_pair (string, start, '[', ']', flags));
Chet Ramey89a92862011-11-21 20:49:12 -05001701}
1702#endif
1703
Jari Aalto31859422009-01-12 13:36:28 +00001704/* Skip characters in STRING until we find a character in DELIMS, and return
1705 the index of that character. START is the index into string at which we
1706 begin. This is similar in spirit to strpbrk, but it returns an index into
1707 STRING and takes a starting index. This little piece of code knows quite
1708 a lot of shell syntax. It's very similar to skip_double_quoted and other
1709 functions of that ilk. */
1710int
1711skip_to_delim (string, start, delims, flags)
1712 char *string;
1713 int start;
1714 char *delims;
1715 int flags;
1716{
Chet Ramey00018032011-11-21 20:51:19 -05001717 int i, pass_next, backq, si, c, invert, skipquote, skipcmd;
Jari Aalto31859422009-01-12 13:36:28 +00001718 size_t slen;
Chet Ramey495aee42011-11-22 19:11:26 -05001719 char *temp, open[3];
Jari Aalto31859422009-01-12 13:36:28 +00001720 DECLARE_MBSTATE;
1721
1722 slen = strlen (string + start) + start;
1723 if (flags & SD_NOJMP)
1724 no_longjmp_on_fatal_error = 1;
1725 invert = (flags & SD_INVERT);
Chet Ramey00018032011-11-21 20:51:19 -05001726 skipcmd = (flags & SD_NOSKIPCMD) == 0;
Jari Aalto31859422009-01-12 13:36:28 +00001727
1728 i = start;
1729 pass_next = backq = 0;
1730 while (c = string[i])
1731 {
Chet Ramey00018032011-11-21 20:51:19 -05001732 /* If this is non-zero, we should not let quote characters be delimiters
1733 and the current character is a single or double quote. We should not
1734 test whether or not it's a delimiter until after we skip single- or
1735 double-quoted strings. */
1736 skipquote = ((flags & SD_NOQUOTEDELIM) && (c == '\'' || c =='"'));
Jari Aalto31859422009-01-12 13:36:28 +00001737 if (pass_next)
1738 {
1739 pass_next = 0;
1740 if (c == 0)
1741 CQ_RETURN(i);
1742 ADVANCE_CHAR (string, slen, i);
1743 continue;
1744 }
1745 else if (c == '\\')
1746 {
1747 pass_next = 1;
1748 i++;
1749 continue;
1750 }
1751 else if (backq)
1752 {
1753 if (c == '`')
1754 backq = 0;
1755 ADVANCE_CHAR (string, slen, i);
1756 continue;
1757 }
1758 else if (c == '`')
1759 {
1760 backq = 1;
1761 i++;
1762 continue;
1763 }
Chet Ramey00018032011-11-21 20:51:19 -05001764 else if (skipquote == 0 && invert == 0 && member (c, delims))
Jari Aalto31859422009-01-12 13:36:28 +00001765 break;
1766 else if (c == '\'' || c == '"')
1767 {
1768 i = (c == '\'') ? skip_single_quoted (string, slen, ++i)
1769 : skip_double_quoted (string, slen, ++i);
1770 /* no increment, the skip functions increment past the closing quote. */
1771 }
Chet Ramey00018032011-11-21 20:51:19 -05001772 else if (c == '$' && ((skipcmd && string[i+1] == LPAREN) || string[i+1] == LBRACE))
Jari Aalto31859422009-01-12 13:36:28 +00001773 {
1774 si = i + 2;
1775 if (string[si] == '\0')
1776 CQ_RETURN(si);
1777
1778 if (string[i+1] == LPAREN)
1779 temp = extract_delimited_string (string, &si, "$(", "(", ")", SX_NOALLOC|SX_COMMAND); /* ) */
1780 else
1781 temp = extract_dollar_brace_string (string, &si, 0, SX_NOALLOC);
1782 i = si;
1783 if (string[i] == '\0') /* don't increment i past EOS in loop */
1784 break;
1785 i++;
1786 continue;
1787 }
Chet Ramey00018032011-11-21 20:51:19 -05001788#if defined (PROCESS_SUBSTITUTION)
1789 else if (skipcmd && (c == '<' || c == '>') && string[i+1] == LPAREN)
1790 {
1791 si = i + 2;
1792 if (string[si] == '\0')
1793 CQ_RETURN(si);
Chet Ramey85b94812014-08-18 11:45:12 -04001794 temp = extract_process_subst (string, (c == '<') ? "<(" : ">(", &si, 0);
Chet Rameyac50fba2014-02-26 09:36:43 -05001795 free (temp); /* no SX_ALLOC here */
Chet Ramey00018032011-11-21 20:51:19 -05001796 i = si;
1797 if (string[i] == '\0')
1798 break;
1799 i++;
1800 continue;
1801 }
1802#endif /* PROCESS_SUBSTITUTION */
Chet Ramey495aee42011-11-22 19:11:26 -05001803#if defined (EXTENDED_GLOB)
1804 else if ((flags & SD_EXTGLOB) && extended_glob && string[i+1] == LPAREN && member (c, "?*+!@"))
1805 {
1806 si = i + 2;
1807 if (string[si] == '\0')
1808 CQ_RETURN(si);
1809
1810 open[0] = c;
1811 open[1] = LPAREN;
1812 open[2] = '\0';
1813 temp = extract_delimited_string (string, &si, open, "(", ")", SX_NOALLOC); /* ) */
1814
1815 i = si;
1816 if (string[i] == '\0') /* don't increment i past EOS in loop */
1817 break;
1818 i++;
1819 continue;
1820 }
1821#endif
Chet Rameyac50fba2014-02-26 09:36:43 -05001822 else if ((flags & SD_GLOB) && c == LBRACK)
1823 {
1824 si = i + 1;
1825 if (string[si] == '\0')
1826 CQ_RETURN(si);
1827
1828 temp = extract_delimited_string (string, &si, "[", "[", "]", SX_NOALLOC); /* ] */
1829
1830 i = si;
1831 if (string[i] == '\0') /* don't increment i past EOS in loop */
1832 break;
1833 i++;
1834 continue;
1835 }
Chet Ramey00018032011-11-21 20:51:19 -05001836 else if ((skipquote || invert) && (member (c, delims) == 0))
Jari Aalto31859422009-01-12 13:36:28 +00001837 break;
1838 else
1839 ADVANCE_CHAR (string, slen, i);
1840 }
1841
1842 CQ_RETURN(i);
1843}
1844
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001845#if defined (READLINE)
Jari Aalto726f6381996-08-26 18:22:31 +00001846/* Return 1 if the portion of STRING ending at EINDEX is quoted (there is
1847 an unclosed quoted string), or if the character at EINDEX is quoted
Jari Aalto28ef6c32001-04-06 19:14:31 +00001848 by a backslash. NO_LONGJMP_ON_FATAL_ERROR is used to flag that the various
Jari Aaltob72432f1999-02-19 17:11:39 +00001849 single and double-quoted string parsing functions should not return an
Jari Aalto7117c2d2002-07-17 14:10:11 +00001850 error if there are unclosed quotes or braces. The characters that this
1851 recognizes need to be the same as the contents of
1852 rl_completer_quote_characters. */
Jari Aaltob72432f1999-02-19 17:11:39 +00001853
Jari Aalto726f6381996-08-26 18:22:31 +00001854int
1855char_is_quoted (string, eindex)
1856 char *string;
1857 int eindex;
1858{
Jari Aalto7117c2d2002-07-17 14:10:11 +00001859 int i, pass_next, c;
1860 size_t slen;
1861 DECLARE_MBSTATE;
Jari Aalto726f6381996-08-26 18:22:31 +00001862
Jari Aalto7117c2d2002-07-17 14:10:11 +00001863 slen = strlen (string);
Jari Aalto28ef6c32001-04-06 19:14:31 +00001864 no_longjmp_on_fatal_error = 1;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001865 i = pass_next = 0;
1866 while (i <= eindex)
Jari Aalto726f6381996-08-26 18:22:31 +00001867 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00001868 c = string[i];
1869
Jari Aalto726f6381996-08-26 18:22:31 +00001870 if (pass_next)
1871 {
1872 pass_next = 0;
1873 if (i >= eindex) /* XXX was if (i >= eindex - 1) */
Jari Aaltob72432f1999-02-19 17:11:39 +00001874 CQ_RETURN(1);
Jari Aalto7117c2d2002-07-17 14:10:11 +00001875 ADVANCE_CHAR (string, slen, i);
Jari Aalto726f6381996-08-26 18:22:31 +00001876 continue;
1877 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00001878 else if (c == '\\')
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001879 {
1880 pass_next = 1;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001881 i++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001882 continue;
1883 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00001884 else if (c == '\'' || c == '"')
1885 {
1886 i = (c == '\'') ? skip_single_quoted (string, slen, ++i)
1887 : skip_double_quoted (string, slen, ++i);
1888 if (i > eindex)
1889 CQ_RETURN(1);
1890 /* no increment, the skip_xxx functions go one past end */
1891 }
1892 else
1893 ADVANCE_CHAR (string, slen, i);
Jari Aalto726f6381996-08-26 18:22:31 +00001894 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00001895
Jari Aaltob72432f1999-02-19 17:11:39 +00001896 CQ_RETURN(0);
Jari Aalto726f6381996-08-26 18:22:31 +00001897}
1898
Jari Aalto726f6381996-08-26 18:22:31 +00001899int
1900unclosed_pair (string, eindex, openstr)
1901 char *string;
1902 int eindex;
1903 char *openstr;
1904{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001905 int i, pass_next, openc, olen;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001906 size_t slen;
1907 DECLARE_MBSTATE;
Jari Aalto726f6381996-08-26 18:22:31 +00001908
Jari Aalto7117c2d2002-07-17 14:10:11 +00001909 slen = strlen (string);
Jari Aalto726f6381996-08-26 18:22:31 +00001910 olen = strlen (openstr);
Jari Aalto7117c2d2002-07-17 14:10:11 +00001911 i = pass_next = openc = 0;
1912 while (i <= eindex)
Jari Aalto726f6381996-08-26 18:22:31 +00001913 {
1914 if (pass_next)
1915 {
1916 pass_next = 0;
1917 if (i >= eindex) /* XXX was if (i >= eindex - 1) */
1918 return 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001919 ADVANCE_CHAR (string, slen, i);
1920 continue;
1921 }
1922 else if (string[i] == '\\')
1923 {
1924 pass_next = 1;
1925 i++;
Jari Aalto726f6381996-08-26 18:22:31 +00001926 continue;
1927 }
1928 else if (STREQN (string + i, openstr, olen))
1929 {
1930 openc = 1 - openc;
Jari Aalto7117c2d2002-07-17 14:10:11 +00001931 i += olen;
Jari Aalto726f6381996-08-26 18:22:31 +00001932 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00001933 else if (string[i] == '\'' || string[i] == '"')
Jari Aalto726f6381996-08-26 18:22:31 +00001934 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00001935 i = (string[i] == '\'') ? skip_single_quoted (string, slen, i)
1936 : skip_double_quoted (string, slen, i);
Jari Aalto726f6381996-08-26 18:22:31 +00001937 if (i > eindex)
1938 return 0;
1939 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00001940 else
1941 ADVANCE_CHAR (string, slen, i);
Jari Aalto726f6381996-08-26 18:22:31 +00001942 }
1943 return (openc);
1944}
Jari Aaltobb706242000-03-17 21:46:59 +00001945
Jari Aaltobb706242000-03-17 21:46:59 +00001946/* Split STRING (length SLEN) at DELIMS, and return a WORD_LIST with the
1947 individual words. If DELIMS is NULL, the current value of $IFS is used
Jari Aaltob80f6442004-07-27 13:29:18 +00001948 to split the string, and the function follows the shell field splitting
1949 rules. SENTINEL is an index to look for. NWP, if non-NULL,
Jari Aaltobb706242000-03-17 21:46:59 +00001950 gets the number of words in the returned list. CWP, if non-NULL, gets
1951 the index of the word containing SENTINEL. Non-whitespace chars in
1952 DELIMS delimit separate fields. */
1953WORD_LIST *
Chet Ramey00018032011-11-21 20:51:19 -05001954split_at_delims (string, slen, delims, sentinel, flags, nwp, cwp)
Jari Aaltobb706242000-03-17 21:46:59 +00001955 char *string;
1956 int slen;
1957 char *delims;
Chet Ramey00018032011-11-21 20:51:19 -05001958 int sentinel, flags;
Jari Aaltobb706242000-03-17 21:46:59 +00001959 int *nwp, *cwp;
1960{
Chet Ramey00018032011-11-21 20:51:19 -05001961 int ts, te, i, nw, cw, ifs_split, dflags;
Jari Aaltof73dda02001-11-13 17:56:06 +00001962 char *token, *d, *d2;
Jari Aaltobb706242000-03-17 21:46:59 +00001963 WORD_LIST *ret, *tl;
1964
1965 if (string == 0 || *string == '\0')
1966 {
1967 if (nwp)
1968 *nwp = 0;
1969 if (cwp)
1970 *cwp = 0;
1971 return ((WORD_LIST *)NULL);
1972 }
1973
Jari Aalto7117c2d2002-07-17 14:10:11 +00001974 d = (delims == 0) ? ifs_value : delims;
Jari Aaltob80f6442004-07-27 13:29:18 +00001975 ifs_split = delims == 0;
Jari Aaltobb706242000-03-17 21:46:59 +00001976
1977 /* Make d2 the non-whitespace characters in delims */
1978 d2 = 0;
1979 if (delims)
1980 {
Jari Aalto95732b42005-12-07 14:08:12 +00001981 size_t slength;
1982#if defined (HANDLE_MULTIBYTE)
1983 size_t mblength = 1;
1984#endif
1985 DECLARE_MBSTATE;
1986
1987 slength = strlen (delims);
1988 d2 = (char *)xmalloc (slength + 1);
1989 i = ts = 0;
1990 while (delims[i])
Jari Aaltobb706242000-03-17 21:46:59 +00001991 {
Jari Aalto95732b42005-12-07 14:08:12 +00001992#if defined (HANDLE_MULTIBYTE)
Jari Aalto06285672006-10-10 14:15:34 +00001993 mbstate_t state_bak;
1994 state_bak = state;
Jari Aalto95732b42005-12-07 14:08:12 +00001995 mblength = MBRLEN (delims + i, slength, &state);
1996 if (MB_INVALIDCH (mblength))
1997 state = state_bak;
1998 else if (mblength > 1)
1999 {
2000 memcpy (d2 + ts, delims + i, mblength);
2001 ts += mblength;
2002 i += mblength;
2003 slength -= mblength;
2004 continue;
2005 }
2006#endif
2007 if (whitespace (delims[i]) == 0)
Jari Aaltobb706242000-03-17 21:46:59 +00002008 d2[ts++] = delims[i];
Jari Aalto95732b42005-12-07 14:08:12 +00002009
2010 i++;
2011 slength--;
Jari Aaltobb706242000-03-17 21:46:59 +00002012 }
2013 d2[ts] = '\0';
2014 }
2015
2016 ret = (WORD_LIST *)NULL;
2017
Chet Ramey00018032011-11-21 20:51:19 -05002018 /* Remove sequences of whitespace characters at the start of the string, as
Jari Aaltob80f6442004-07-27 13:29:18 +00002019 long as those characters are delimiters. */
2020 for (i = 0; member (string[i], d) && spctabnl (string[i]); i++)
Jari Aaltobb706242000-03-17 21:46:59 +00002021 ;
2022 if (string[i] == '\0')
2023 return (ret);
2024
2025 ts = i;
2026 nw = 0;
2027 cw = -1;
Chet Ramey00018032011-11-21 20:51:19 -05002028 dflags = flags|SD_NOJMP;
Jari Aaltobb706242000-03-17 21:46:59 +00002029 while (1)
2030 {
Chet Ramey00018032011-11-21 20:51:19 -05002031 te = skip_to_delim (string, ts, d, dflags);
Jari Aaltobb706242000-03-17 21:46:59 +00002032
2033 /* If we have a non-whitespace delimiter character, use it to make a
2034 separate field. This is just about what $IFS splitting does and
2035 is closer to the behavior of the shell parser. */
Jari Aalto28ef6c32001-04-06 19:14:31 +00002036 if (ts == te && d2 && member (string[ts], d2))
Jari Aaltobb706242000-03-17 21:46:59 +00002037 {
2038 te = ts + 1;
Jari Aaltob80f6442004-07-27 13:29:18 +00002039 /* If we're using IFS splitting, the non-whitespace delimiter char
2040 and any additional IFS whitespace delimits a field. */
2041 if (ifs_split)
2042 while (member (string[te], d) && spctabnl (string[te]))
2043 te++;
2044 else
2045 while (member (string[te], d2))
2046 te++;
Jari Aaltobb706242000-03-17 21:46:59 +00002047 }
2048
2049 token = substring (string, ts, te);
2050
2051 ret = add_string_to_list (token, ret);
2052 free (token);
2053 nw++;
2054
2055 if (sentinel >= ts && sentinel <= te)
2056 cw = nw;
2057
2058 /* If the cursor is at whitespace just before word start, set the
Jari Aalto28ef6c32001-04-06 19:14:31 +00002059 sentinel word to the current word. */
Jari Aaltobb706242000-03-17 21:46:59 +00002060 if (cwp && cw == -1 && sentinel == ts-1)
2061 cw = nw;
2062
2063 /* If the cursor is at whitespace between two words, make a new, empty
Jari Aalto28ef6c32001-04-06 19:14:31 +00002064 word, add it before (well, after, since the list is in reverse order)
2065 the word we just added, and set the current word to that one. */
Jari Aaltobb706242000-03-17 21:46:59 +00002066 if (cwp && cw == -1 && sentinel < ts)
Jari Aalto28ef6c32001-04-06 19:14:31 +00002067 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00002068 tl = make_word_list (make_word (""), ret->next);
Jari Aalto28ef6c32001-04-06 19:14:31 +00002069 ret->next = tl;
2070 cw = nw;
2071 nw++;
2072 }
Jari Aaltobb706242000-03-17 21:46:59 +00002073
2074 if (string[te] == 0)
2075 break;
2076
Jari Aaltob80f6442004-07-27 13:29:18 +00002077 i = te;
2078 while (member (string[i], d) && (ifs_split || spctabnl(string[i])))
Jari Aaltobb706242000-03-17 21:46:59 +00002079 i++;
2080
2081 if (string[i])
2082 ts = i;
2083 else
2084 break;
2085 }
2086
2087 /* Special case for SENTINEL at the end of STRING. If we haven't found
2088 the word containing SENTINEL yet, and the index we're looking for is at
Chet Ramey00018032011-11-21 20:51:19 -05002089 the end of STRING (or past the end of the previously-found token,
2090 possible if the end of the line is composed solely of IFS whitespace)
2091 add an additional null argument and set the current word pointer to that. */
2092 if (cwp && cw == -1 && (sentinel >= slen || sentinel >= te))
Jari Aaltobb706242000-03-17 21:46:59 +00002093 {
2094 if (whitespace (string[sentinel - 1]))
Jari Aalto28ef6c32001-04-06 19:14:31 +00002095 {
2096 token = "";
2097 ret = add_string_to_list (token, ret);
2098 nw++;
2099 }
Jari Aaltobb706242000-03-17 21:46:59 +00002100 cw = nw;
2101 }
2102
2103 if (nwp)
2104 *nwp = nw;
2105 if (cwp)
2106 *cwp = cw;
2107
Chet Rameyac50fba2014-02-26 09:36:43 -05002108 FREE (d2);
2109
Jari Aaltobb706242000-03-17 21:46:59 +00002110 return (REVERSE_LIST (ret, WORD_LIST *));
2111}
Jari Aalto726f6381996-08-26 18:22:31 +00002112#endif /* READLINE */
2113
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002114#if 0
2115/* UNUSED */
Jari Aalto726f6381996-08-26 18:22:31 +00002116/* Extract the name of the variable to bind to from the assignment string. */
2117char *
2118assignment_name (string)
2119 char *string;
2120{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002121 int offset;
Jari Aalto726f6381996-08-26 18:22:31 +00002122 char *temp;
2123
Jari Aaltob80f6442004-07-27 13:29:18 +00002124 offset = assignment (string, 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002125 if (offset == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00002126 return (char *)NULL;
Jari Aaltobb706242000-03-17 21:46:59 +00002127 temp = substring (string, 0, offset);
Jari Aalto726f6381996-08-26 18:22:31 +00002128 return (temp);
2129}
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002130#endif
Jari Aalto726f6381996-08-26 18:22:31 +00002131
Jari Aaltocce855b1998-04-17 19:52:44 +00002132/* **************************************************************** */
2133/* */
2134/* Functions to convert strings to WORD_LISTs and vice versa */
2135/* */
2136/* **************************************************************** */
2137
Jari Aalto726f6381996-08-26 18:22:31 +00002138/* Return a single string of all the words in LIST. SEP is the separator
2139 to put between individual elements of LIST in the output string. */
Jari Aalto7117c2d2002-07-17 14:10:11 +00002140char *
Jari Aalto726f6381996-08-26 18:22:31 +00002141string_list_internal (list, sep)
2142 WORD_LIST *list;
2143 char *sep;
2144{
2145 register WORD_LIST *t;
2146 char *result, *r;
2147 int word_len, sep_len, result_size;
2148
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002149 if (list == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00002150 return ((char *)NULL);
2151
Jari Aaltob80f6442004-07-27 13:29:18 +00002152 /* Short-circuit quickly if we don't need to separate anything. */
2153 if (list->next == 0)
2154 return (savestring (list->word->word));
2155
Jari Aalto726f6381996-08-26 18:22:31 +00002156 /* This is nearly always called with either sep[0] == 0 or sep[1] == 0. */
2157 sep_len = STRLEN (sep);
2158 result_size = 0;
2159
2160 for (t = list; t; t = t->next)
2161 {
2162 if (t != list)
2163 result_size += sep_len;
2164 result_size += strlen (t->word->word);
2165 }
2166
Jari Aaltof73dda02001-11-13 17:56:06 +00002167 r = result = (char *)xmalloc (result_size + 1);
Jari Aalto726f6381996-08-26 18:22:31 +00002168
2169 for (t = list; t; t = t->next)
2170 {
2171 if (t != list && sep_len)
2172 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002173 if (sep_len > 1)
2174 {
2175 FASTCOPY (sep, r, sep_len);
2176 r += sep_len;
2177 }
2178 else
2179 *r++ = sep[0];
Jari Aalto726f6381996-08-26 18:22:31 +00002180 }
2181
2182 word_len = strlen (t->word->word);
2183 FASTCOPY (t->word->word, r, word_len);
2184 r += word_len;
2185 }
2186
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002187 *r = '\0';
Jari Aalto726f6381996-08-26 18:22:31 +00002188 return (result);
2189}
2190
2191/* Return a single string of all the words present in LIST, separating
2192 each word with a space. */
2193char *
2194string_list (list)
2195 WORD_LIST *list;
2196{
2197 return (string_list_internal (list, " "));
2198}
2199
Jari Aalto31859422009-01-12 13:36:28 +00002200/* An external interface that can be used by the rest of the shell to
2201 obtain a string containing the first character in $IFS. Handles all
2202 the multibyte complications. If LENP is non-null, it is set to the
2203 length of the returned string. */
2204char *
2205ifs_firstchar (lenp)
2206 int *lenp;
2207{
2208 char *ret;
2209 int len;
2210
2211 ret = xmalloc (MB_LEN_MAX + 1);
2212#if defined (HANDLE_MULTIBYTE)
2213 if (ifs_firstc_len == 1)
2214 {
2215 ret[0] = ifs_firstc[0];
2216 ret[1] = '\0';
2217 len = ret[0] ? 1 : 0;
2218 }
2219 else
2220 {
2221 memcpy (ret, ifs_firstc, ifs_firstc_len);
2222 ret[len = ifs_firstc_len] = '\0';
2223 }
2224#else
2225 ret[0] = ifs_firstc;
2226 ret[1] = '\0';
2227 len = ret[0] ? 0 : 1;
2228#endif
2229
2230 if (lenp)
2231 *lenp = len;
2232
2233 return ret;
2234}
2235
Jari Aalto726f6381996-08-26 18:22:31 +00002236/* Return a single string of all the words present in LIST, obeying the
2237 quoting rules for "$*", to wit: (P1003.2, draft 11, 3.5.2) "If the
2238 expansion [of $*] appears within a double quoted string, it expands
2239 to a single field with the value of each parameter separated by the
2240 first character of the IFS variable, or by a <space> if IFS is unset." */
Jari Aaltof73dda02001-11-13 17:56:06 +00002241char *
Jari Aalto726f6381996-08-26 18:22:31 +00002242string_list_dollar_star (list)
2243 WORD_LIST *list;
2244{
Jari Aalto06285672006-10-10 14:15:34 +00002245 char *ret;
Jari Aalto95732b42005-12-07 14:08:12 +00002246#if defined (HANDLE_MULTIBYTE)
Jari Aalto06285672006-10-10 14:15:34 +00002247# if defined (__GNUC__)
Jari Aalto95732b42005-12-07 14:08:12 +00002248 char sep[MB_CUR_MAX + 1];
Jari Aalto06285672006-10-10 14:15:34 +00002249# else
2250 char *sep = 0;
2251# endif
Jari Aalto95732b42005-12-07 14:08:12 +00002252#else
Jari Aalto7117c2d2002-07-17 14:10:11 +00002253 char sep[2];
Jari Aalto95732b42005-12-07 14:08:12 +00002254#endif
Jari Aalto726f6381996-08-26 18:22:31 +00002255
Jari Aalto95732b42005-12-07 14:08:12 +00002256#if defined (HANDLE_MULTIBYTE)
Jari Aalto06285672006-10-10 14:15:34 +00002257# if !defined (__GNUC__)
2258 sep = (char *)xmalloc (MB_CUR_MAX + 1);
2259# endif /* !__GNUC__ */
Jari Aalto95732b42005-12-07 14:08:12 +00002260 if (ifs_firstc_len == 1)
2261 {
2262 sep[0] = ifs_firstc[0];
2263 sep[1] = '\0';
2264 }
2265 else
2266 {
2267 memcpy (sep, ifs_firstc, ifs_firstc_len);
2268 sep[ifs_firstc_len] = '\0';
2269 }
2270#else
Jari Aalto7117c2d2002-07-17 14:10:11 +00002271 sep[0] = ifs_firstc;
Jari Aalto726f6381996-08-26 18:22:31 +00002272 sep[1] = '\0';
Jari Aalto95732b42005-12-07 14:08:12 +00002273#endif
Jari Aalto726f6381996-08-26 18:22:31 +00002274
Jari Aalto06285672006-10-10 14:15:34 +00002275 ret = string_list_internal (list, sep);
2276#if defined (HANDLE_MULTIBYTE) && !defined (__GNUC__)
2277 free (sep);
2278#endif
2279 return ret;
Jari Aalto726f6381996-08-26 18:22:31 +00002280}
2281
Jari Aaltocce855b1998-04-17 19:52:44 +00002282/* Turn $@ into a string. If (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
2283 is non-zero, the $@ appears within double quotes, and we should quote
2284 the list before converting it into a string. If IFS is unset, and the
2285 word is not quoted, we just need to quote CTLESC and CTLNUL characters
2286 in the words in the list, because the default value of $IFS is
2287 <space><tab><newline>, IFS characters in the words in the list should
2288 also be split. If IFS is null, and the word is not quoted, we need
2289 to quote the words in the list to preserve the positional parameters
2290 exactly. */
Jari Aaltof73dda02001-11-13 17:56:06 +00002291char *
Jari Aaltocce855b1998-04-17 19:52:44 +00002292string_list_dollar_at (list, quoted)
2293 WORD_LIST *list;
2294 int quoted;
2295{
Jari Aalto95732b42005-12-07 14:08:12 +00002296 char *ifs, *ret;
2297#if defined (HANDLE_MULTIBYTE)
Jari Aalto06285672006-10-10 14:15:34 +00002298# if defined (__GNUC__)
Jari Aalto95732b42005-12-07 14:08:12 +00002299 char sep[MB_CUR_MAX + 1];
Jari Aalto06285672006-10-10 14:15:34 +00002300# else
2301 char *sep = 0;
2302# endif /* !__GNUC__ */
Jari Aalto95732b42005-12-07 14:08:12 +00002303#else
2304 char sep[2];
2305#endif
Jari Aaltocce855b1998-04-17 19:52:44 +00002306 WORD_LIST *tlist;
2307
Jari Aalto7117c2d2002-07-17 14:10:11 +00002308 /* XXX this could just be ifs = ifs_value; */
2309 ifs = ifs_var ? value_cell (ifs_var) : (char *)0;
Jari Aaltocce855b1998-04-17 19:52:44 +00002310
Jari Aalto95732b42005-12-07 14:08:12 +00002311#if defined (HANDLE_MULTIBYTE)
Jari Aalto06285672006-10-10 14:15:34 +00002312# if !defined (__GNUC__)
2313 sep = (char *)xmalloc (MB_CUR_MAX + 1);
2314# endif /* !__GNUC__ */
Jari Aalto95732b42005-12-07 14:08:12 +00002315 if (ifs && *ifs)
2316 {
2317 if (ifs_firstc_len == 1)
2318 {
2319 sep[0] = ifs_firstc[0];
2320 sep[1] = '\0';
2321 }
2322 else
2323 {
2324 memcpy (sep, ifs_firstc, ifs_firstc_len);
2325 sep[ifs_firstc_len] = '\0';
2326 }
2327 }
2328 else
2329 {
2330 sep[0] = ' ';
2331 sep[1] = '\0';
2332 }
2333#else
Jari Aaltocce855b1998-04-17 19:52:44 +00002334 sep[0] = (ifs == 0 || *ifs == 0) ? ' ' : *ifs;
2335 sep[1] = '\0';
Jari Aalto95732b42005-12-07 14:08:12 +00002336#endif
Jari Aaltocce855b1998-04-17 19:52:44 +00002337
Jari Aaltof1be6662008-11-18 13:15:12 +00002338 /* XXX -- why call quote_list if ifs == 0? we can get away without doing
2339 it now that quote_escapes quotes spaces */
Chet Ramey00018032011-11-21 20:51:19 -05002340 tlist = (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES|Q_PATQUOTE))
Jari Aaltocce855b1998-04-17 19:52:44 +00002341 ? quote_list (list)
2342 : list_quote_escapes (list);
Jari Aalto06285672006-10-10 14:15:34 +00002343
2344 ret = string_list_internal (tlist, sep);
2345#if defined (HANDLE_MULTIBYTE) && !defined (__GNUC__)
2346 free (sep);
2347#endif
2348 return ret;
Jari Aaltocce855b1998-04-17 19:52:44 +00002349}
2350
Chet Rameyac50fba2014-02-26 09:36:43 -05002351/* Turn the positional parameters into a string, understanding quoting and
Jari Aalto31859422009-01-12 13:36:28 +00002352 the various subtleties of using the first character of $IFS as the
2353 separator. Calls string_list_dollar_at, string_list_dollar_star, and
2354 string_list as appropriate. */
2355char *
2356string_list_pos_params (pchar, list, quoted)
2357 int pchar;
2358 WORD_LIST *list;
2359 int quoted;
2360{
2361 char *ret;
2362 WORD_LIST *tlist;
2363
2364 if (pchar == '*' && (quoted & Q_DOUBLE_QUOTES))
2365 {
2366 tlist = quote_list (list);
2367 word_list_remove_quoted_nulls (tlist);
2368 ret = string_list_dollar_star (tlist);
2369 }
2370 else if (pchar == '*' && (quoted & Q_HERE_DOCUMENT))
2371 {
2372 tlist = quote_list (list);
2373 word_list_remove_quoted_nulls (tlist);
2374 ret = string_list (tlist);
2375 }
2376 else if (pchar == '*')
2377 {
2378 /* Even when unquoted, string_list_dollar_star does the right thing
2379 making sure that the first character of $IFS is used as the
2380 separator. */
2381 ret = string_list_dollar_star (list);
2382 }
2383 else if (pchar == '@' && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
2384 /* We use string_list_dollar_at, but only if the string is quoted, since
2385 that quotes the escapes if it's not, which we don't want. We could
2386 use string_list (the old code did), but that doesn't do the right
2387 thing if the first character of $IFS is not a space. We use
2388 string_list_dollar_star if the string is unquoted so we make sure that
2389 the elements of $@ are separated by the first character of $IFS for
2390 later splitting. */
2391 ret = string_list_dollar_at (list, quoted);
2392 else if (pchar == '@')
2393 ret = string_list_dollar_star (list);
2394 else
2395 ret = string_list ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) ? quote_list (list) : list);
2396
2397 return ret;
2398}
2399
Jari Aalto726f6381996-08-26 18:22:31 +00002400/* Return the list of words present in STRING. Separate the string into
2401 words at any of the characters found in SEPARATORS. If QUOTED is
2402 non-zero then word in the list will have its quoted flag set, otherwise
2403 the quoted flag is left as make_word () deemed fit.
2404
2405 This obeys the P1003.2 word splitting semantics. If `separators' is
2406 exactly <space><tab><newline>, then the splitting algorithm is that of
2407 the Bourne shell, which treats any sequence of characters from `separators'
2408 as a delimiter. If IFS is unset, which results in `separators' being set
2409 to "", no splitting occurs. If separators has some other value, the
2410 following rules are applied (`IFS white space' means zero or more
2411 occurrences of <space>, <tab>, or <newline>, as long as those characters
2412 are in `separators'):
2413
2414 1) IFS white space is ignored at the start and the end of the
2415 string.
2416 2) Each occurrence of a character in `separators' that is not
2417 IFS white space, along with any adjacent occurrences of
2418 IFS white space delimits a field.
2419 3) Any nonzero-length sequence of IFS white space delimits a field.
2420 */
2421
2422/* BEWARE! list_string strips null arguments. Don't call it twice and
2423 expect to have "" preserved! */
2424
Jari Aalto726f6381996-08-26 18:22:31 +00002425/* This performs word splitting and quoted null character removal on
2426 STRING. */
Jari Aaltob80f6442004-07-27 13:29:18 +00002427#define issep(c) \
2428 (((separators)[0]) ? ((separators)[1] ? isifs(c) \
2429 : (c) == (separators)[0]) \
2430 : 0)
Jari Aalto726f6381996-08-26 18:22:31 +00002431
2432WORD_LIST *
2433list_string (string, separators, quoted)
2434 register char *string, *separators;
2435 int quoted;
2436{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002437 WORD_LIST *result;
2438 WORD_DESC *t;
2439 char *current_word, *s;
Jari Aalto31859422009-01-12 13:36:28 +00002440 int sindex, sh_style_split, whitesep, xflags;
Jari Aalto95732b42005-12-07 14:08:12 +00002441 size_t slen;
Jari Aalto726f6381996-08-26 18:22:31 +00002442
2443 if (!string || !*string)
2444 return ((WORD_LIST *)NULL);
2445
Jari Aalto7117c2d2002-07-17 14:10:11 +00002446 sh_style_split = separators && separators[0] == ' ' &&
2447 separators[1] == '\t' &&
2448 separators[2] == '\n' &&
2449 separators[3] == '\0';
Jari Aalto31859422009-01-12 13:36:28 +00002450 for (xflags = 0, s = ifs_value; s && *s; s++)
2451 {
2452 if (*s == CTLESC) xflags |= SX_NOCTLESC;
2453 else if (*s == CTLNUL) xflags |= SX_NOESCCTLNUL;
2454 }
Jari Aalto726f6381996-08-26 18:22:31 +00002455
Jari Aalto95732b42005-12-07 14:08:12 +00002456 slen = 0;
Jari Aalto726f6381996-08-26 18:22:31 +00002457 /* Remove sequences of whitespace at the beginning of STRING, as
2458 long as those characters appear in IFS. Do not do this if
2459 STRING is quoted or if there are no separator characters. */
2460 if (!quoted || !separators || !*separators)
2461 {
2462 for (s = string; *s && spctabnl (*s) && issep (*s); s++);
2463
2464 if (!*s)
2465 return ((WORD_LIST *)NULL);
2466
2467 string = s;
2468 }
2469
2470 /* OK, now STRING points to a word that does not begin with white space.
2471 The splitting algorithm is:
Jari Aalto7117c2d2002-07-17 14:10:11 +00002472 extract a word, stopping at a separator
2473 skip sequences of spc, tab, or nl as long as they are separators
Jari Aalto726f6381996-08-26 18:22:31 +00002474 This obeys the field splitting rules in Posix.2. */
Jari Aalto95732b42005-12-07 14:08:12 +00002475 slen = (MB_CUR_MAX > 1) ? strlen (string) : 1;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002476 for (result = (WORD_LIST *)NULL, sindex = 0; string[sindex]; )
Jari Aalto726f6381996-08-26 18:22:31 +00002477 {
Jari Aalto95732b42005-12-07 14:08:12 +00002478 /* Don't need string length in ADVANCE_CHAR or string_extract_verbatim
2479 unless multibyte chars are possible. */
Jari Aalto31859422009-01-12 13:36:28 +00002480 current_word = string_extract_verbatim (string, slen, &sindex, separators, xflags);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002481 if (current_word == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00002482 break;
2483
2484 /* If we have a quoted empty string, add a quoted null argument. We
2485 want to preserve the quoted null character iff this is a quoted
2486 empty string; otherwise the quoted null characters are removed
2487 below. */
2488 if (QUOTED_NULL (current_word))
2489 {
Jari Aalto95732b42005-12-07 14:08:12 +00002490 t = alloc_word_desc ();
Jari Aalto726f6381996-08-26 18:22:31 +00002491 t->word = make_quoted_char ('\0');
Jari Aalto95732b42005-12-07 14:08:12 +00002492 t->flags |= W_QUOTED|W_HASQUOTEDNULL;
Jari Aalto726f6381996-08-26 18:22:31 +00002493 result = make_word_list (t, result);
2494 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002495 else if (current_word[0] != '\0')
Jari Aalto726f6381996-08-26 18:22:31 +00002496 {
2497 /* If we have something, then add it regardless. However,
2498 perform quoted null character removal on the current word. */
2499 remove_quoted_nulls (current_word);
Jari Aaltocce855b1998-04-17 19:52:44 +00002500 result = add_string_to_list (current_word, result);
Jari Aalto95732b42005-12-07 14:08:12 +00002501 result->word->flags &= ~W_HASQUOTEDNULL; /* just to be sure */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002502 if (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT))
2503 result->word->flags |= W_QUOTED;
Jari Aalto726f6381996-08-26 18:22:31 +00002504 }
2505
2506 /* If we're not doing sequences of separators in the traditional
2507 Bourne shell style, then add a quoted null argument. */
Jari Aalto726f6381996-08-26 18:22:31 +00002508 else if (!sh_style_split && !spctabnl (string[sindex]))
2509 {
Jari Aalto95732b42005-12-07 14:08:12 +00002510 t = alloc_word_desc ();
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002511 t->word = make_quoted_char ('\0');
Jari Aalto95732b42005-12-07 14:08:12 +00002512 t->flags |= W_QUOTED|W_HASQUOTEDNULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002513 result = make_word_list (t, result);
Jari Aalto726f6381996-08-26 18:22:31 +00002514 }
2515
2516 free (current_word);
2517
Jari Aalto28ef6c32001-04-06 19:14:31 +00002518 /* Note whether or not the separator is IFS whitespace, used later. */
2519 whitesep = string[sindex] && spctabnl (string[sindex]);
2520
Jari Aalto726f6381996-08-26 18:22:31 +00002521 /* Move past the current separator character. */
2522 if (string[sindex])
Jari Aalto95732b42005-12-07 14:08:12 +00002523 {
2524 DECLARE_MBSTATE;
2525 ADVANCE_CHAR (string, slen, sindex);
2526 }
Jari Aalto726f6381996-08-26 18:22:31 +00002527
2528 /* Now skip sequences of space, tab, or newline characters if they are
2529 in the list of separators. */
2530 while (string[sindex] && spctabnl (string[sindex]) && issep (string[sindex]))
2531 sindex++;
Jari Aalto28ef6c32001-04-06 19:14:31 +00002532
Jari Aalto7117c2d2002-07-17 14:10:11 +00002533 /* If the first separator was IFS whitespace and the current character
2534 is a non-whitespace IFS character, it should be part of the current
2535 field delimiter, not a separate delimiter that would result in an
2536 empty field. Look at POSIX.2, 3.6.5, (3)(b). */
Jari Aalto28ef6c32001-04-06 19:14:31 +00002537 if (string[sindex] && whitesep && issep (string[sindex]) && !spctabnl (string[sindex]))
Jari Aalto95732b42005-12-07 14:08:12 +00002538 {
2539 sindex++;
2540 /* An IFS character that is not IFS white space, along with any
2541 adjacent IFS white space, shall delimit a field. (SUSv3) */
Jari Aalto06285672006-10-10 14:15:34 +00002542 while (string[sindex] && spctabnl (string[sindex]) && isifs (string[sindex]))
Jari Aalto95732b42005-12-07 14:08:12 +00002543 sindex++;
2544 }
Jari Aalto726f6381996-08-26 18:22:31 +00002545 }
2546 return (REVERSE_LIST (result, WORD_LIST *));
2547}
2548
2549/* Parse a single word from STRING, using SEPARATORS to separate fields.
2550 ENDPTR is set to the first character after the word. This is used by
Jari Aalto7117c2d2002-07-17 14:10:11 +00002551 the `read' builtin. This is never called with SEPARATORS != $IFS;
2552 it should be simplified.
2553
Jari Aalto726f6381996-08-26 18:22:31 +00002554 XXX - this function is very similar to list_string; they should be
2555 combined - XXX */
2556char *
2557get_word_from_string (stringp, separators, endptr)
2558 char **stringp, *separators, **endptr;
2559{
2560 register char *s;
2561 char *current_word;
Jari Aalto31859422009-01-12 13:36:28 +00002562 int sindex, sh_style_split, whitesep, xflags;
Jari Aalto95732b42005-12-07 14:08:12 +00002563 size_t slen;
Jari Aalto726f6381996-08-26 18:22:31 +00002564
2565 if (!stringp || !*stringp || !**stringp)
2566 return ((char *)NULL);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002567
Jari Aalto7117c2d2002-07-17 14:10:11 +00002568 sh_style_split = separators && separators[0] == ' ' &&
2569 separators[1] == '\t' &&
2570 separators[2] == '\n' &&
2571 separators[3] == '\0';
Jari Aalto31859422009-01-12 13:36:28 +00002572 for (xflags = 0, s = ifs_value; s && *s; s++)
2573 {
2574 if (*s == CTLESC) xflags |= SX_NOCTLESC;
2575 if (*s == CTLNUL) xflags |= SX_NOESCCTLNUL;
2576 }
Jari Aalto726f6381996-08-26 18:22:31 +00002577
Jari Aalto31859422009-01-12 13:36:28 +00002578 s = *stringp;
Jari Aalto95732b42005-12-07 14:08:12 +00002579 slen = 0;
2580
Jari Aalto726f6381996-08-26 18:22:31 +00002581 /* Remove sequences of whitespace at the beginning of STRING, as
2582 long as those characters appear in IFS. */
2583 if (sh_style_split || !separators || !*separators)
2584 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00002585 for (; *s && spctabnl (*s) && isifs (*s); s++);
Jari Aalto726f6381996-08-26 18:22:31 +00002586
2587 /* If the string is nothing but whitespace, update it and return. */
2588 if (!*s)
2589 {
2590 *stringp = s;
2591 if (endptr)
2592 *endptr = s;
2593 return ((char *)NULL);
2594 }
2595 }
2596
2597 /* OK, S points to a word that does not begin with white space.
2598 Now extract a word, stopping at a separator, save a pointer to
2599 the first character after the word, then skip sequences of spc,
2600 tab, or nl as long as they are separators.
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002601
Jari Aalto726f6381996-08-26 18:22:31 +00002602 This obeys the field splitting rules in Posix.2. */
2603 sindex = 0;
Jari Aalto95732b42005-12-07 14:08:12 +00002604 /* Don't need string length in ADVANCE_CHAR or string_extract_verbatim
2605 unless multibyte chars are possible. */
2606 slen = (MB_CUR_MAX > 1) ? strlen (s) : 1;
Jari Aalto31859422009-01-12 13:36:28 +00002607 current_word = string_extract_verbatim (s, slen, &sindex, separators, xflags);
Jari Aalto726f6381996-08-26 18:22:31 +00002608
2609 /* Set ENDPTR to the first character after the end of the word. */
2610 if (endptr)
2611 *endptr = s + sindex;
2612
Jari Aalto28ef6c32001-04-06 19:14:31 +00002613 /* Note whether or not the separator is IFS whitespace, used later. */
2614 whitesep = s[sindex] && spctabnl (s[sindex]);
2615
Jari Aalto726f6381996-08-26 18:22:31 +00002616 /* Move past the current separator character. */
2617 if (s[sindex])
Jari Aalto95732b42005-12-07 14:08:12 +00002618 {
2619 DECLARE_MBSTATE;
2620 ADVANCE_CHAR (s, slen, sindex);
2621 }
Jari Aalto726f6381996-08-26 18:22:31 +00002622
2623 /* Now skip sequences of space, tab, or newline characters if they are
2624 in the list of separators. */
Jari Aalto7117c2d2002-07-17 14:10:11 +00002625 while (s[sindex] && spctabnl (s[sindex]) && isifs (s[sindex]))
Jari Aalto726f6381996-08-26 18:22:31 +00002626 sindex++;
2627
Jari Aalto28ef6c32001-04-06 19:14:31 +00002628 /* If the first separator was IFS whitespace and the current character is
2629 a non-whitespace IFS character, it should be part of the current field
2630 delimiter, not a separate delimiter that would result in an empty field.
2631 Look at POSIX.2, 3.6.5, (3)(b). */
Jari Aalto7117c2d2002-07-17 14:10:11 +00002632 if (s[sindex] && whitesep && isifs (s[sindex]) && !spctabnl (s[sindex]))
Jari Aalto95732b42005-12-07 14:08:12 +00002633 {
2634 sindex++;
2635 /* An IFS character that is not IFS white space, along with any adjacent
2636 IFS white space, shall delimit a field. */
2637 while (s[sindex] && spctabnl (s[sindex]) && isifs (s[sindex]))
2638 sindex++;
2639 }
Jari Aalto28ef6c32001-04-06 19:14:31 +00002640
Jari Aalto726f6381996-08-26 18:22:31 +00002641 /* Update STRING to point to the next field. */
2642 *stringp = s + sindex;
2643 return (current_word);
2644}
2645
2646/* Remove IFS white space at the end of STRING. Start at the end
2647 of the string and walk backwards until the beginning of the string
2648 or we find a character that's not IFS white space and not CTLESC.
2649 Only let CTLESC escape a white space character if SAW_ESCAPE is
2650 non-zero. */
2651char *
2652strip_trailing_ifs_whitespace (string, separators, saw_escape)
2653 char *string, *separators;
2654 int saw_escape;
2655{
2656 char *s;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002657
Jari Aalto726f6381996-08-26 18:22:31 +00002658 s = string + STRLEN (string) - 1;
Jari Aalto7117c2d2002-07-17 14:10:11 +00002659 while (s > string && ((spctabnl (*s) && isifs (*s)) ||
Jari Aalto726f6381996-08-26 18:22:31 +00002660 (saw_escape && *s == CTLESC && spctabnl (s[1]))))
2661 s--;
2662 *++s = '\0';
2663 return string;
2664}
2665
Jari Aaltobb706242000-03-17 21:46:59 +00002666#if 0
2667/* UNUSED */
2668/* Split STRING into words at whitespace. Obeys shell-style quoting with
2669 backslashes, single and double quotes. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002670WORD_LIST *
2671list_string_with_quotes (string)
2672 char *string;
2673{
2674 WORD_LIST *list;
2675 char *token, *s;
Jari Aalto7117c2d2002-07-17 14:10:11 +00002676 size_t s_len;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002677 int c, i, tokstart, len;
2678
2679 for (s = string; s && *s && spctabnl (*s); s++)
2680 ;
2681 if (s == 0 || *s == 0)
2682 return ((WORD_LIST *)NULL);
2683
Jari Aalto7117c2d2002-07-17 14:10:11 +00002684 s_len = strlen (s);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002685 tokstart = i = 0;
2686 list = (WORD_LIST *)NULL;
2687 while (1)
2688 {
2689 c = s[i];
2690 if (c == '\\')
2691 {
2692 i++;
2693 if (s[i])
2694 i++;
2695 }
2696 else if (c == '\'')
Jari Aalto7117c2d2002-07-17 14:10:11 +00002697 i = skip_single_quoted (s, s_len, ++i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002698 else if (c == '"')
Jari Aalto7117c2d2002-07-17 14:10:11 +00002699 i = skip_double_quoted (s, s_len, ++i);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002700 else if (c == 0 || spctabnl (c))
2701 {
2702 /* We have found the end of a token. Make a word out of it and
2703 add it to the word list. */
Jari Aaltobb706242000-03-17 21:46:59 +00002704 token = substring (s, tokstart, i);
Jari Aaltocce855b1998-04-17 19:52:44 +00002705 list = add_string_to_list (token, list);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002706 free (token);
2707 while (spctabnl (s[i]))
2708 i++;
2709 if (s[i])
2710 tokstart = i;
2711 else
2712 break;
2713 }
2714 else
2715 i++; /* normal character */
2716 }
2717 return (REVERSE_LIST (list, WORD_LIST *));
2718}
Jari Aaltobb706242000-03-17 21:46:59 +00002719#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002720
Jari Aaltocce855b1998-04-17 19:52:44 +00002721/********************************************************/
2722/* */
2723/* Functions to perform assignment statements */
2724/* */
2725/********************************************************/
Jari Aaltod166f041997-06-05 14:59:13 +00002726
Jari Aalto95732b42005-12-07 14:08:12 +00002727#if defined (ARRAY_VARS)
2728static SHELL_VAR *
2729do_compound_assignment (name, value, flags)
2730 char *name, *value;
2731 int flags;
2732{
2733 SHELL_VAR *v;
Chet Rameyac50fba2014-02-26 09:36:43 -05002734 int mklocal, mkassoc, mkglobal;
Jari Aalto06285672006-10-10 14:15:34 +00002735 WORD_LIST *list;
Jari Aalto95732b42005-12-07 14:08:12 +00002736
2737 mklocal = flags & ASS_MKLOCAL;
Jari Aalto31859422009-01-12 13:36:28 +00002738 mkassoc = flags & ASS_MKASSOC;
Chet Rameyac50fba2014-02-26 09:36:43 -05002739 mkglobal = flags & ASS_MKGLOBAL;
Jari Aalto95732b42005-12-07 14:08:12 +00002740
2741 if (mklocal && variable_context)
2742 {
2743 v = find_variable (name);
Jari Aalto31859422009-01-12 13:36:28 +00002744 list = expand_compound_array_assignment (v, value, flags);
2745 if (mkassoc)
2746 v = make_local_assoc_variable (name);
2747 else if (v == 0 || (array_p (v) == 0 && assoc_p (v) == 0) || v->context != variable_context)
Chet Rameyac50fba2014-02-26 09:36:43 -05002748 v = make_local_array_variable (name, 0);
2749 if (v)
2750 assign_compound_array_list (v, list, flags);
2751 }
2752 /* In a function but forcing assignment in global context */
2753 else if (mkglobal && variable_context)
2754 {
2755 v = find_global_variable (name);
2756 list = expand_compound_array_assignment (v, value, flags);
2757 if (v == 0 && mkassoc)
2758 v = make_new_assoc_variable (name);
2759 else if (v && mkassoc && assoc_p (v) == 0)
2760 v = convert_var_to_assoc (v);
2761 else if (v == 0)
2762 v = make_new_array_variable (name);
2763 else if (v && mkassoc == 0 && array_p (v) == 0)
2764 v = convert_var_to_array (v);
2765 if (v)
2766 assign_compound_array_list (v, list, flags);
Jari Aalto95732b42005-12-07 14:08:12 +00002767 }
2768 else
2769 v = assign_array_from_string (name, value, flags);
2770
2771 return (v);
2772}
2773#endif
2774
Jari Aalto726f6381996-08-26 18:22:31 +00002775/* Given STRING, an assignment string, get the value of the right side
2776 of the `=', and bind it to the left side. If EXPAND is true, then
2777 perform parameter expansion, command substitution, and arithmetic
2778 expansion on the right-hand side. Perform tilde expansion in any
2779 case. Do not perform word splitting on the result of expansion. */
2780static int
Jari Aalto95732b42005-12-07 14:08:12 +00002781do_assignment_internal (word, expand)
2782 const WORD_DESC *word;
Jari Aalto726f6381996-08-26 18:22:31 +00002783 int expand;
2784{
Chet Ramey495aee42011-11-22 19:11:26 -05002785 int offset, appendop, assign_list, aflags, retval;
2786 char *name, *value, *temp;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002787 SHELL_VAR *entry;
2788#if defined (ARRAY_VARS)
2789 char *t;
Jari Aaltob80f6442004-07-27 13:29:18 +00002790 int ni;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002791#endif
Jari Aalto95732b42005-12-07 14:08:12 +00002792 const char *string;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002793
Jari Aalto95732b42005-12-07 14:08:12 +00002794 if (word == 0 || word->word == 0)
2795 return 0;
2796
2797 appendop = assign_list = aflags = 0;
2798 string = word->word;
Jari Aaltob80f6442004-07-27 13:29:18 +00002799 offset = assignment (string, 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002800 name = savestring (string);
2801 value = (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +00002802
2803 if (name[offset] == '=')
2804 {
Jari Aalto95732b42005-12-07 14:08:12 +00002805 if (name[offset - 1] == '+')
2806 {
2807 appendop = 1;
2808 name[offset - 1] = '\0';
2809 }
2810
2811 name[offset] = 0; /* might need this set later */
Jari Aalto726f6381996-08-26 18:22:31 +00002812 temp = name + offset + 1;
2813
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002814#if defined (ARRAY_VARS)
Jari Aalto95732b42005-12-07 14:08:12 +00002815 if (expand && (word->flags & W_COMPASSIGN))
Jari Aalto726f6381996-08-26 18:22:31 +00002816 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002817 assign_list = ni = 1;
Jari Aalto95732b42005-12-07 14:08:12 +00002818 value = extract_array_assignment_list (temp, &ni);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002819 }
2820 else
2821#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002822 if (expand && temp[0])
Jari Aalto95732b42005-12-07 14:08:12 +00002823 value = expand_string_if_necessary (temp, 0, expand_string_assignment);
Jari Aalto726f6381996-08-26 18:22:31 +00002824 else
2825 value = savestring (temp);
2826 }
2827
2828 if (value == 0)
Jari Aaltod166f041997-06-05 14:59:13 +00002829 {
Jari Aaltof73dda02001-11-13 17:56:06 +00002830 value = (char *)xmalloc (1);
Jari Aaltod166f041997-06-05 14:59:13 +00002831 value[0] = '\0';
2832 }
Jari Aalto726f6381996-08-26 18:22:31 +00002833
Jari Aalto726f6381996-08-26 18:22:31 +00002834 if (echo_command_at_execute)
Jari Aalto95732b42005-12-07 14:08:12 +00002835 {
2836 if (appendop)
2837 name[offset - 1] = '+';
2838 xtrace_print_assignment (name, value, assign_list, 1);
2839 if (appendop)
2840 name[offset - 1] = '\0';
2841 }
Jari Aalto726f6381996-08-26 18:22:31 +00002842
Jari Aaltod166f041997-06-05 14:59:13 +00002843#define ASSIGN_RETURN(r) do { FREE (value); free (name); return (r); } while (0)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002844
Jari Aalto95732b42005-12-07 14:08:12 +00002845 if (appendop)
2846 aflags |= ASS_APPEND;
2847
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002848#if defined (ARRAY_VARS)
Chet Ramey00018032011-11-21 20:51:19 -05002849 if (t = mbschr (name, '[')) /*]*/
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002850 {
2851 if (assign_list)
2852 {
Jari Aaltob80f6442004-07-27 13:29:18 +00002853 report_error (_("%s: cannot assign list to array member"), name);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002854 ASSIGN_RETURN (0);
2855 }
Jari Aalto95732b42005-12-07 14:08:12 +00002856 entry = assign_array_element (name, value, aflags);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002857 if (entry == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00002858 ASSIGN_RETURN (0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002859 }
2860 else if (assign_list)
Jari Aalto95732b42005-12-07 14:08:12 +00002861 {
Chet Ramey6d41b712012-05-07 16:22:49 -04002862 if ((word->flags & W_ASSIGNARG) && (word->flags & W_ASSNGLOBAL) == 0)
Jari Aalto95732b42005-12-07 14:08:12 +00002863 aflags |= ASS_MKLOCAL;
Chet Rameyac50fba2014-02-26 09:36:43 -05002864 if ((word->flags & W_ASSIGNARG) && (word->flags & W_ASSNGLOBAL))
2865 aflags |= ASS_MKGLOBAL;
Jari Aalto31859422009-01-12 13:36:28 +00002866 if (word->flags & W_ASSIGNASSOC)
2867 aflags |= ASS_MKASSOC;
Jari Aalto95732b42005-12-07 14:08:12 +00002868 entry = do_compound_assignment (name, value, aflags);
2869 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002870 else
2871#endif /* ARRAY_VARS */
Jari Aalto95732b42005-12-07 14:08:12 +00002872 entry = bind_variable (name, value, aflags);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002873
Jari Aalto726f6381996-08-26 18:22:31 +00002874 stupidly_hack_special_variables (name);
2875
Jari Aalto31859422009-01-12 13:36:28 +00002876 /* Return 1 if the assignment seems to have been performed correctly. */
2877 if (entry == 0 || readonly_p (entry))
2878 retval = 0; /* assignment failure */
2879 else if (noassign_p (entry))
2880 {
2881 last_command_exit_value = EXECUTION_FAILURE;
2882 retval = 1; /* error status, but not assignment failure */
2883 }
2884 else
2885 retval = 1;
2886
2887 if (entry && retval != 0 && noassign_p (entry) == 0)
2888 VUNSETATTR (entry, att_invisible);
2889
2890 ASSIGN_RETURN (retval);
Jari Aalto726f6381996-08-26 18:22:31 +00002891}
2892
2893/* Perform the assignment statement in STRING, and expand the
Jari Aalto95732b42005-12-07 14:08:12 +00002894 right side by doing tilde, command and parameter expansion. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002895int
Jari Aalto726f6381996-08-26 18:22:31 +00002896do_assignment (string)
Jari Aalto95732b42005-12-07 14:08:12 +00002897 char *string;
Jari Aalto726f6381996-08-26 18:22:31 +00002898{
Jari Aalto95732b42005-12-07 14:08:12 +00002899 WORD_DESC td;
2900
2901 td.flags = W_ASSIGNMENT;
2902 td.word = string;
2903
2904 return do_assignment_internal (&td, 1);
2905}
2906
2907int
Chet Ramey495aee42011-11-22 19:11:26 -05002908do_word_assignment (word, flags)
Jari Aalto95732b42005-12-07 14:08:12 +00002909 WORD_DESC *word;
Chet Ramey495aee42011-11-22 19:11:26 -05002910 int flags;
Jari Aalto95732b42005-12-07 14:08:12 +00002911{
2912 return do_assignment_internal (word, 1);
Jari Aalto726f6381996-08-26 18:22:31 +00002913}
2914
2915/* Given STRING, an assignment string, get the value of the right side
Jari Aalto95732b42005-12-07 14:08:12 +00002916 of the `=', and bind it to the left side. Do not perform any word
2917 expansions on the right hand side. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002918int
Jari Aalto726f6381996-08-26 18:22:31 +00002919do_assignment_no_expand (string)
Jari Aalto95732b42005-12-07 14:08:12 +00002920 char *string;
Jari Aalto726f6381996-08-26 18:22:31 +00002921{
Jari Aalto95732b42005-12-07 14:08:12 +00002922 WORD_DESC td;
2923
2924 td.flags = W_ASSIGNMENT;
2925 td.word = string;
2926
2927 return (do_assignment_internal (&td, 0));
Jari Aalto726f6381996-08-26 18:22:31 +00002928}
2929
Jari Aaltocce855b1998-04-17 19:52:44 +00002930/***************************************************
2931 * *
2932 * Functions to manage the positional parameters *
2933 * *
2934 ***************************************************/
Jari Aalto726f6381996-08-26 18:22:31 +00002935
2936/* Return the word list that corresponds to `$*'. */
2937WORD_LIST *
2938list_rest_of_args ()
2939{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002940 register WORD_LIST *list, *args;
Jari Aalto726f6381996-08-26 18:22:31 +00002941 int i;
2942
2943 /* Break out of the loop as soon as one of the dollar variables is null. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002944 for (i = 1, list = (WORD_LIST *)NULL; i < 10 && dollar_vars[i]; i++)
2945 list = make_word_list (make_bare_word (dollar_vars[i]), list);
Jari Aalto726f6381996-08-26 18:22:31 +00002946
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002947 for (args = rest_of_args; args; args = args->next)
2948 list = make_word_list (make_bare_word (args->word->word), list);
2949
Jari Aalto726f6381996-08-26 18:22:31 +00002950 return (REVERSE_LIST (list, WORD_LIST *));
2951}
2952
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002953int
2954number_of_args ()
2955{
2956 register WORD_LIST *list;
2957 int n;
2958
2959 for (n = 0; n < 9 && dollar_vars[n+1]; n++)
2960 ;
2961 for (list = rest_of_args; list; list = list->next)
2962 n++;
2963 return n;
2964}
2965
Jari Aaltocce855b1998-04-17 19:52:44 +00002966/* Return the value of a positional parameter. This handles values > 10. */
2967char *
2968get_dollar_var_value (ind)
Jari Aalto7117c2d2002-07-17 14:10:11 +00002969 intmax_t ind;
Jari Aaltocce855b1998-04-17 19:52:44 +00002970{
2971 char *temp;
2972 WORD_LIST *p;
2973
2974 if (ind < 10)
2975 temp = dollar_vars[ind] ? savestring (dollar_vars[ind]) : (char *)NULL;
2976 else /* We want something like ${11} */
2977 {
2978 ind -= 10;
2979 for (p = rest_of_args; p && ind--; p = p->next)
Jari Aalto28ef6c32001-04-06 19:14:31 +00002980 ;
Jari Aaltocce855b1998-04-17 19:52:44 +00002981 temp = p ? savestring (p->word->word) : (char *)NULL;
2982 }
2983 return (temp);
2984}
2985
Jari Aalto726f6381996-08-26 18:22:31 +00002986/* Make a single large string out of the dollar digit variables,
2987 and the rest_of_args. If DOLLAR_STAR is 1, then obey the special
2988 case of "$*" with respect to IFS. */
2989char *
2990string_rest_of_args (dollar_star)
2991 int dollar_star;
2992{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002993 register WORD_LIST *list;
Jari Aalto726f6381996-08-26 18:22:31 +00002994 char *string;
2995
Jari Aaltoccc6cda1996-12-23 17:02:34 +00002996 list = list_rest_of_args ();
Jari Aalto726f6381996-08-26 18:22:31 +00002997 string = dollar_star ? string_list_dollar_star (list) : string_list (list);
2998 dispose_words (list);
2999 return (string);
3000}
3001
Jari Aaltocce855b1998-04-17 19:52:44 +00003002/* Return a string containing the positional parameters from START to
3003 END, inclusive. If STRING[0] == '*', we obey the rules for $*,
Jari Aalto7117c2d2002-07-17 14:10:11 +00003004 which only makes a difference if QUOTED is non-zero. If QUOTED includes
3005 Q_HERE_DOCUMENT or Q_DOUBLE_QUOTES, this returns a quoted list, otherwise
3006 no quoting chars are added. */
Jari Aaltocce855b1998-04-17 19:52:44 +00003007static char *
3008pos_params (string, start, end, quoted)
3009 char *string;
3010 int start, end, quoted;
3011{
3012 WORD_LIST *save, *params, *h, *t;
3013 char *ret;
3014 int i;
3015
Jari Aaltobb706242000-03-17 21:46:59 +00003016 /* see if we can short-circuit. if start == end, we want 0 parameters. */
3017 if (start == end)
3018 return ((char *)NULL);
3019
Jari Aaltocce855b1998-04-17 19:52:44 +00003020 save = params = list_rest_of_args ();
3021 if (save == 0)
3022 return ((char *)NULL);
3023
Jari Aalto31859422009-01-12 13:36:28 +00003024 if (start == 0) /* handle ${@:0[:x]} specially */
3025 {
3026 t = make_word_list (make_word (dollar_vars[0]), params);
3027 save = params = t;
3028 }
3029
Chet Ramey00018032011-11-21 20:51:19 -05003030 for (i = start ? 1 : 0; params && i < start; i++)
Jari Aaltocce855b1998-04-17 19:52:44 +00003031 params = params->next;
3032 if (params == 0)
3033 return ((char *)NULL);
3034 for (h = t = params; params && i < end; i++)
3035 {
3036 t = params;
3037 params = params->next;
3038 }
3039
3040 t->next = (WORD_LIST *)NULL;
Jari Aalto31859422009-01-12 13:36:28 +00003041
3042 ret = string_list_pos_params (string[0], h, quoted);
3043
Jari Aaltobb706242000-03-17 21:46:59 +00003044 if (t != params)
3045 t->next = params;
Jari Aaltocce855b1998-04-17 19:52:44 +00003046
3047 dispose_words (save);
3048 return (ret);
3049}
3050
3051/******************************************************************/
3052/* */
3053/* Functions to expand strings to strings or WORD_LISTs */
3054/* */
3055/******************************************************************/
3056
3057#if defined (PROCESS_SUBSTITUTION)
Jari Aalto95732b42005-12-07 14:08:12 +00003058#define EXP_CHAR(s) (s == '$' || s == '`' || s == '<' || s == '>' || s == CTLESC || s == '~')
Jari Aaltocce855b1998-04-17 19:52:44 +00003059#else
Jari Aalto95732b42005-12-07 14:08:12 +00003060#define EXP_CHAR(s) (s == '$' || s == '`' || s == CTLESC || s == '~')
Jari Aaltocce855b1998-04-17 19:52:44 +00003061#endif
3062
3063/* If there are any characters in STRING that require full expansion,
3064 then call FUNC to expand STRING; otherwise just perform quote
3065 removal if necessary. This returns a new string. */
3066static char *
Jari Aaltof73dda02001-11-13 17:56:06 +00003067expand_string_if_necessary (string, quoted, func)
Jari Aaltocce855b1998-04-17 19:52:44 +00003068 char *string;
3069 int quoted;
Jari Aaltof73dda02001-11-13 17:56:06 +00003070 EXPFUNC *func;
Jari Aaltocce855b1998-04-17 19:52:44 +00003071{
3072 WORD_LIST *list;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003073 size_t slen;
Jari Aaltocce855b1998-04-17 19:52:44 +00003074 int i, saw_quote;
3075 char *ret;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003076 DECLARE_MBSTATE;
Jari Aaltocce855b1998-04-17 19:52:44 +00003077
Jari Aalto95732b42005-12-07 14:08:12 +00003078 /* Don't need string length for ADVANCE_CHAR unless multibyte chars possible. */
3079 slen = (MB_CUR_MAX > 1) ? strlen (string) : 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003080 i = saw_quote = 0;
3081 while (string[i])
Jari Aaltocce855b1998-04-17 19:52:44 +00003082 {
3083 if (EXP_CHAR (string[i]))
3084 break;
3085 else if (string[i] == '\'' || string[i] == '\\' || string[i] == '"')
3086 saw_quote = 1;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003087 ADVANCE_CHAR (string, slen, i);
Jari Aaltocce855b1998-04-17 19:52:44 +00003088 }
3089
3090 if (string[i])
3091 {
3092 list = (*func) (string, quoted);
3093 if (list)
3094 {
3095 ret = string_list (list);
3096 dispose_words (list);
3097 }
3098 else
3099 ret = (char *)NULL;
3100 }
3101 else if (saw_quote && ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) == 0))
3102 ret = string_quote_removal (string, quoted);
3103 else
3104 ret = savestring (string);
Jari Aalto7117c2d2002-07-17 14:10:11 +00003105
Jari Aaltocce855b1998-04-17 19:52:44 +00003106 return ret;
3107}
3108
3109static inline char *
Jari Aaltof73dda02001-11-13 17:56:06 +00003110expand_string_to_string_internal (string, quoted, func)
Jari Aaltocce855b1998-04-17 19:52:44 +00003111 char *string;
3112 int quoted;
Jari Aaltof73dda02001-11-13 17:56:06 +00003113 EXPFUNC *func;
Jari Aaltocce855b1998-04-17 19:52:44 +00003114{
3115 WORD_LIST *list;
3116 char *ret;
3117
3118 if (string == 0 || *string == '\0')
3119 return ((char *)NULL);
3120
3121 list = (*func) (string, quoted);
3122 if (list)
3123 {
3124 ret = string_list (list);
3125 dispose_words (list);
3126 }
3127 else
3128 ret = (char *)NULL;
3129
3130 return (ret);
3131}
3132
Jari Aaltof73dda02001-11-13 17:56:06 +00003133char *
3134expand_string_to_string (string, quoted)
3135 char *string;
3136 int quoted;
3137{
3138 return (expand_string_to_string_internal (string, quoted, expand_string));
3139}
3140
3141char *
3142expand_string_unsplit_to_string (string, quoted)
3143 char *string;
3144 int quoted;
3145{
3146 return (expand_string_to_string_internal (string, quoted, expand_string_unsplit));
3147}
3148
Jari Aalto95732b42005-12-07 14:08:12 +00003149char *
3150expand_assignment_string_to_string (string, quoted)
3151 char *string;
3152 int quoted;
3153{
3154 return (expand_string_to_string_internal (string, quoted, expand_string_assignment));
3155}
3156
Jari Aalto06285672006-10-10 14:15:34 +00003157char *
3158expand_arith_string (string, quoted)
3159 char *string;
Jari Aalto31859422009-01-12 13:36:28 +00003160 int quoted;
Jari Aalto06285672006-10-10 14:15:34 +00003161{
Chet Rameyac50fba2014-02-26 09:36:43 -05003162 WORD_DESC td;
3163 WORD_LIST *list, *tlist;
3164 size_t slen;
3165 int i, saw_quote;
3166 char *ret;
3167 DECLARE_MBSTATE;
3168
3169 /* Don't need string length for ADVANCE_CHAR unless multibyte chars possible. */
3170 slen = (MB_CUR_MAX > 1) ? strlen (string) : 0;
3171 i = saw_quote = 0;
3172 while (string[i])
3173 {
3174 if (EXP_CHAR (string[i]))
3175 break;
3176 else if (string[i] == '\'' || string[i] == '\\' || string[i] == '"')
3177 saw_quote = 1;
3178 ADVANCE_CHAR (string, slen, i);
3179 }
3180
3181 if (string[i])
3182 {
3183 /* This is expanded version of expand_string_internal as it's called by
3184 expand_string_leave_quoted */
3185 td.flags = W_NOPROCSUB; /* don't want process substitution */
3186 td.word = savestring (string);
3187 list = call_expand_word_internal (&td, quoted, 0, (int *)NULL, (int *)NULL);
3188 /* This takes care of the calls from expand_string_leave_quoted and
3189 expand_string */
3190 if (list)
3191 {
3192 tlist = word_list_split (list);
3193 dispose_words (list);
3194 list = tlist;
3195 if (list)
3196 dequote_list (list);
3197 }
3198 /* This comes from expand_string_if_necessary */
3199 if (list)
3200 {
3201 ret = string_list (list);
3202 dispose_words (list);
3203 }
3204 else
3205 ret = (char *)NULL;
3206 FREE (td.word);
3207 }
3208 else if (saw_quote && ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) == 0))
3209 ret = string_quote_removal (string, quoted);
3210 else
3211 ret = savestring (string);
3212
3213 return ret;
Jari Aalto06285672006-10-10 14:15:34 +00003214}
3215
Jari Aaltocce855b1998-04-17 19:52:44 +00003216#if defined (COND_COMMAND)
3217/* Just remove backslashes in STRING. Returns a new string. */
3218char *
3219remove_backslashes (string)
3220 char *string;
3221{
3222 char *r, *ret, *s;
3223
Jari Aaltof73dda02001-11-13 17:56:06 +00003224 r = ret = (char *)xmalloc (strlen (string) + 1);
Jari Aaltocce855b1998-04-17 19:52:44 +00003225 for (s = string; s && *s; )
3226 {
3227 if (*s == '\\')
Jari Aalto28ef6c32001-04-06 19:14:31 +00003228 s++;
Jari Aaltocce855b1998-04-17 19:52:44 +00003229 if (*s == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00003230 break;
Jari Aaltocce855b1998-04-17 19:52:44 +00003231 *r++ = *s++;
3232 }
3233 *r = '\0';
3234 return ret;
3235}
3236
3237/* This needs better error handling. */
3238/* Expand W for use as an argument to a unary or binary operator in a
Jari Aaltof1be6662008-11-18 13:15:12 +00003239 [[...]] expression. If SPECIAL is 1, this is the rhs argument
Jari Aaltocce855b1998-04-17 19:52:44 +00003240 to the != or == operator, and should be treated as a pattern. In
Jari Aaltof1be6662008-11-18 13:15:12 +00003241 this case, we quote the string specially for the globbing code. If
3242 SPECIAL is 2, this is an rhs argument for the =~ operator, and should
3243 be quoted appropriately for regcomp/regexec. The caller is responsible
3244 for removing the backslashes if the unquoted word is needed later. */
Jari Aaltocce855b1998-04-17 19:52:44 +00003245char *
3246cond_expand_word (w, special)
3247 WORD_DESC *w;
3248 int special;
3249{
3250 char *r, *p;
3251 WORD_LIST *l;
Jari Aaltof1be6662008-11-18 13:15:12 +00003252 int qflags;
Jari Aaltocce855b1998-04-17 19:52:44 +00003253
3254 if (w->word == 0 || w->word[0] == '\0')
3255 return ((char *)NULL);
3256
Chet Ramey3b34f6e2014-05-16 14:17:56 -04003257 expand_no_split_dollar_star = 1;
Chet Ramey00018032011-11-21 20:51:19 -05003258 w->flags |= W_NOSPLIT2;
Jari Aaltob72432f1999-02-19 17:11:39 +00003259 l = call_expand_word_internal (w, 0, 0, (int *)0, (int *)0);
Chet Ramey3b34f6e2014-05-16 14:17:56 -04003260 expand_no_split_dollar_star = 0;
Jari Aaltocce855b1998-04-17 19:52:44 +00003261 if (l)
3262 {
Chet Rameyac50fba2014-02-26 09:36:43 -05003263 if (special == 0) /* LHS */
Jari Aaltocce855b1998-04-17 19:52:44 +00003264 {
3265 dequote_list (l);
3266 r = string_list (l);
3267 }
3268 else
Jari Aalto28ef6c32001-04-06 19:14:31 +00003269 {
Chet Rameyac50fba2014-02-26 09:36:43 -05003270 /* Need to figure out whether or not we should call dequote_escapes
3271 or a new dequote_ctlnul function here, and under what
3272 circumstances. */
Jari Aaltof1be6662008-11-18 13:15:12 +00003273 qflags = QGLOB_CVTNULL;
3274 if (special == 2)
3275 qflags |= QGLOB_REGEXP;
Jari Aalto28ef6c32001-04-06 19:14:31 +00003276 p = string_list (l);
Jari Aaltof1be6662008-11-18 13:15:12 +00003277 r = quote_string_for_globbing (p, qflags);
Jari Aalto28ef6c32001-04-06 19:14:31 +00003278 free (p);
3279 }
Jari Aaltocce855b1998-04-17 19:52:44 +00003280 dispose_words (l);
3281 }
3282 else
3283 r = (char *)NULL;
3284
3285 return r;
3286}
3287#endif
3288
Jari Aalto726f6381996-08-26 18:22:31 +00003289/* Call expand_word_internal to expand W and handle error returns.
3290 A convenience function for functions that don't want to handle
3291 any errors or free any memory before aborting. */
3292static WORD_LIST *
Jari Aaltob72432f1999-02-19 17:11:39 +00003293call_expand_word_internal (w, q, i, c, e)
Jari Aalto726f6381996-08-26 18:22:31 +00003294 WORD_DESC *w;
Jari Aaltob72432f1999-02-19 17:11:39 +00003295 int q, i, *c, *e;
Jari Aalto726f6381996-08-26 18:22:31 +00003296{
3297 WORD_LIST *result;
3298
Jari Aaltob72432f1999-02-19 17:11:39 +00003299 result = expand_word_internal (w, q, i, c, e);
Jari Aaltobb706242000-03-17 21:46:59 +00003300 if (result == &expand_word_error || result == &expand_word_fatal)
Jari Aaltod166f041997-06-05 14:59:13 +00003301 {
3302 /* By convention, each time this error is returned, w->word has
Jari Aaltobb706242000-03-17 21:46:59 +00003303 already been freed (it sometimes may not be in the fatal case,
3304 but that doesn't result in a memory leak because we're going
3305 to exit in most cases). */
Jari Aaltod166f041997-06-05 14:59:13 +00003306 w->word = (char *)NULL;
Jari Aalto28ef6c32001-04-06 19:14:31 +00003307 last_command_exit_value = EXECUTION_FAILURE;
Jari Aaltob80f6442004-07-27 13:29:18 +00003308 exp_jump_to_top_level ((result == &expand_word_error) ? DISCARD : FORCE_EOF);
Jari Aaltod166f041997-06-05 14:59:13 +00003309 /* NOTREACHED */
Chet Rameyac50fba2014-02-26 09:36:43 -05003310 return (NULL);
Jari Aaltod166f041997-06-05 14:59:13 +00003311 }
Jari Aalto726f6381996-08-26 18:22:31 +00003312 else
3313 return (result);
3314}
3315
3316/* Perform parameter expansion, command substitution, and arithmetic
Chet Rameyac50fba2014-02-26 09:36:43 -05003317 expansion on STRING, as if it were a word. Leave the result quoted.
3318 Since this does not perform word splitting, it leaves quoted nulls
3319 in the result. */
Jari Aalto726f6381996-08-26 18:22:31 +00003320static WORD_LIST *
3321expand_string_internal (string, quoted)
3322 char *string;
3323 int quoted;
3324{
3325 WORD_DESC td;
3326 WORD_LIST *tresult;
3327
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003328 if (string == 0 || *string == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00003329 return ((WORD_LIST *)NULL);
3330
Jari Aalto28ef6c32001-04-06 19:14:31 +00003331 td.flags = 0;
3332 td.word = savestring (string);
3333
Jari Aaltob72432f1999-02-19 17:11:39 +00003334 tresult = call_expand_word_internal (&td, quoted, 0, (int *)NULL, (int *)NULL);
Jari Aalto28ef6c32001-04-06 19:14:31 +00003335
3336 FREE (td.word);
Jari Aalto726f6381996-08-26 18:22:31 +00003337 return (tresult);
3338}
3339
3340/* Expand STRING by performing parameter expansion, command substitution,
3341 and arithmetic expansion. Dequote the resulting WORD_LIST before
3342 returning it, but do not perform word splitting. The call to
3343 remove_quoted_nulls () is in here because word splitting normally
3344 takes care of quote removal. */
3345WORD_LIST *
3346expand_string_unsplit (string, quoted)
3347 char *string;
3348 int quoted;
3349{
3350 WORD_LIST *value;
3351
Jari Aalto28ef6c32001-04-06 19:14:31 +00003352 if (string == 0 || *string == '\0')
Jari Aalto726f6381996-08-26 18:22:31 +00003353 return ((WORD_LIST *)NULL);
3354
Jari Aalto28ef6c32001-04-06 19:14:31 +00003355 expand_no_split_dollar_star = 1;
Jari Aalto726f6381996-08-26 18:22:31 +00003356 value = expand_string_internal (string, quoted);
Jari Aalto28ef6c32001-04-06 19:14:31 +00003357 expand_no_split_dollar_star = 0;
3358
Jari Aalto726f6381996-08-26 18:22:31 +00003359 if (value)
3360 {
3361 if (value->word)
Jari Aalto95732b42005-12-07 14:08:12 +00003362 {
3363 remove_quoted_nulls (value->word->word);
3364 value->word->flags &= ~W_HASQUOTEDNULL;
3365 }
3366 dequote_list (value);
3367 }
3368 return (value);
3369}
3370
3371/* Expand the rhs of an assignment statement */
3372WORD_LIST *
3373expand_string_assignment (string, quoted)
3374 char *string;
3375 int quoted;
3376{
3377 WORD_DESC td;
3378 WORD_LIST *value;
3379
3380 if (string == 0 || *string == '\0')
3381 return ((WORD_LIST *)NULL);
3382
3383 expand_no_split_dollar_star = 1;
3384
3385 td.flags = W_ASSIGNRHS;
3386 td.word = savestring (string);
3387 value = call_expand_word_internal (&td, quoted, 0, (int *)NULL, (int *)NULL);
3388 FREE (td.word);
3389
3390 expand_no_split_dollar_star = 0;
3391
3392 if (value)
3393 {
3394 if (value->word)
3395 {
3396 remove_quoted_nulls (value->word->word);
3397 value->word->flags &= ~W_HASQUOTEDNULL;
3398 }
Jari Aalto726f6381996-08-26 18:22:31 +00003399 dequote_list (value);
3400 }
3401 return (value);
3402}
3403
Jari Aaltobb706242000-03-17 21:46:59 +00003404
3405/* Expand one of the PS? prompt strings. This is a sort of combination of
3406 expand_string_unsplit and expand_string_internal, but returns the
3407 passed string when an error occurs. Might want to trap other calls
3408 to jump_to_top_level here so we don't endlessly loop. */
3409WORD_LIST *
Jari Aaltof1be6662008-11-18 13:15:12 +00003410expand_prompt_string (string, quoted, wflags)
Jari Aaltobb706242000-03-17 21:46:59 +00003411 char *string;
3412 int quoted;
Jari Aaltof1be6662008-11-18 13:15:12 +00003413 int wflags;
Jari Aaltobb706242000-03-17 21:46:59 +00003414{
3415 WORD_LIST *value;
3416 WORD_DESC td;
3417
3418 if (string == 0 || *string == 0)
3419 return ((WORD_LIST *)NULL);
3420
Jari Aaltof1be6662008-11-18 13:15:12 +00003421 td.flags = wflags;
Jari Aaltobb706242000-03-17 21:46:59 +00003422 td.word = savestring (string);
Jari Aalto28ef6c32001-04-06 19:14:31 +00003423
3424 no_longjmp_on_fatal_error = 1;
Jari Aaltobb706242000-03-17 21:46:59 +00003425 value = expand_word_internal (&td, quoted, 0, (int *)NULL, (int *)NULL);
Jari Aalto28ef6c32001-04-06 19:14:31 +00003426 no_longjmp_on_fatal_error = 0;
3427
Jari Aaltobb706242000-03-17 21:46:59 +00003428 if (value == &expand_word_error || value == &expand_word_fatal)
3429 {
3430 value = make_word_list (make_bare_word (string), (WORD_LIST *)NULL);
3431 return value;
3432 }
3433 FREE (td.word);
3434 if (value)
3435 {
3436 if (value->word)
Jari Aalto95732b42005-12-07 14:08:12 +00003437 {
3438 remove_quoted_nulls (value->word->word);
3439 value->word->flags &= ~W_HASQUOTEDNULL;
3440 }
Jari Aaltobb706242000-03-17 21:46:59 +00003441 dequote_list (value);
3442 }
3443 return (value);
3444}
3445
Jari Aalto726f6381996-08-26 18:22:31 +00003446/* Expand STRING just as if you were expanding a word, but do not dequote
3447 the resultant WORD_LIST. This is called only from within this file,
3448 and is used to correctly preserve quoted characters when expanding
3449 things like ${1+"$@"}. This does parameter expansion, command
Jari Aaltob72432f1999-02-19 17:11:39 +00003450 substitution, arithmetic expansion, and word splitting. */
Jari Aalto726f6381996-08-26 18:22:31 +00003451static WORD_LIST *
3452expand_string_leave_quoted (string, quoted)
3453 char *string;
3454 int quoted;
3455{
3456 WORD_LIST *tlist;
3457 WORD_LIST *tresult;
3458
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003459 if (string == 0 || *string == '\0')
Jari Aalto726f6381996-08-26 18:22:31 +00003460 return ((WORD_LIST *)NULL);
3461
3462 tlist = expand_string_internal (string, quoted);
3463
3464 if (tlist)
3465 {
3466 tresult = word_list_split (tlist);
3467 dispose_words (tlist);
3468 return (tresult);
3469 }
3470 return ((WORD_LIST *)NULL);
3471}
3472
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003473/* This does not perform word splitting or dequote the WORD_LIST
3474 it returns. */
3475static WORD_LIST *
3476expand_string_for_rhs (string, quoted, dollar_at_p, has_dollar_at)
3477 char *string;
3478 int quoted, *dollar_at_p, *has_dollar_at;
3479{
3480 WORD_DESC td;
3481 WORD_LIST *tresult;
3482
3483 if (string == 0 || *string == '\0')
3484 return (WORD_LIST *)NULL;
3485
Chet Rameyaeb26a62011-11-22 20:00:10 -05003486 td.flags = W_NOSPLIT2; /* no splitting, remove "" and '' */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003487 td.word = string;
Jari Aaltob72432f1999-02-19 17:11:39 +00003488 tresult = call_expand_word_internal (&td, quoted, 1, dollar_at_p, has_dollar_at);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003489 return (tresult);
3490}
3491
Jari Aalto726f6381996-08-26 18:22:31 +00003492/* Expand STRING just as if you were expanding a word. This also returns
3493 a list of words. Note that filename globbing is *NOT* done for word
3494 or string expansion, just when the shell is expanding a command. This
3495 does parameter expansion, command substitution, arithmetic expansion,
3496 and word splitting. Dequote the resultant WORD_LIST before returning. */
3497WORD_LIST *
3498expand_string (string, quoted)
3499 char *string;
3500 int quoted;
3501{
3502 WORD_LIST *result;
3503
Jari Aalto28ef6c32001-04-06 19:14:31 +00003504 if (string == 0 || *string == '\0')
Jari Aalto726f6381996-08-26 18:22:31 +00003505 return ((WORD_LIST *)NULL);
3506
3507 result = expand_string_leave_quoted (string, quoted);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003508 return (result ? dequote_list (result) : result);
Jari Aalto726f6381996-08-26 18:22:31 +00003509}
3510
3511/***************************************************
3512 * *
3513 * Functions to handle quoting chars *
3514 * *
3515 ***************************************************/
3516
Jari Aaltocce855b1998-04-17 19:52:44 +00003517/* Conventions:
3518
3519 A string with s[0] == CTLNUL && s[1] == 0 is a quoted null string.
3520 The parser passes CTLNUL as CTLESC CTLNUL. */
3521
Jari Aaltocce855b1998-04-17 19:52:44 +00003522/* Quote escape characters in string s, but no other characters. This is
3523 used to protect CTLESC and CTLNUL in variable values from the rest of
Jari Aalto31859422009-01-12 13:36:28 +00003524 the word expansion process after the variable is expanded (word splitting
3525 and filename generation). If IFS is null, we quote spaces as well, just
3526 in case we split on spaces later (in the case of unquoted $@, we will
3527 eventually attempt to split the entire word on spaces). Corresponding
3528 code exists in dequote_escapes. Even if we don't end up splitting on
3529 spaces, quoting spaces is not a problem. This should never be called on
3530 a string that is quoted with single or double quotes or part of a here
3531 document (effectively double-quoted). */
Jari Aaltof73dda02001-11-13 17:56:06 +00003532char *
Jari Aaltocce855b1998-04-17 19:52:44 +00003533quote_escapes (string)
3534 char *string;
3535{
3536 register char *s, *t;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003537 size_t slen;
3538 char *result, *send;
Jari Aalto31859422009-01-12 13:36:28 +00003539 int quote_spaces, skip_ctlesc, skip_ctlnul;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003540 DECLARE_MBSTATE;
Jari Aaltocce855b1998-04-17 19:52:44 +00003541
Jari Aalto7117c2d2002-07-17 14:10:11 +00003542 slen = strlen (string);
3543 send = string + slen;
3544
Jari Aaltof1be6662008-11-18 13:15:12 +00003545 quote_spaces = (ifs_value && *ifs_value == 0);
Jari Aalto31859422009-01-12 13:36:28 +00003546
3547 for (skip_ctlesc = skip_ctlnul = 0, s = ifs_value; s && *s; s++)
3548 skip_ctlesc |= *s == CTLESC, skip_ctlnul |= *s == CTLNUL;
3549
Jari Aalto7117c2d2002-07-17 14:10:11 +00003550 t = result = (char *)xmalloc ((slen * 2) + 1);
3551 s = string;
3552
3553 while (*s)
Jari Aaltocce855b1998-04-17 19:52:44 +00003554 {
Jari Aalto31859422009-01-12 13:36:28 +00003555 if ((skip_ctlesc == 0 && *s == CTLESC) || (skip_ctlnul == 0 && *s == CTLNUL) || (quote_spaces && *s == ' '))
Jari Aaltocce855b1998-04-17 19:52:44 +00003556 *t++ = CTLESC;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003557 COPY_CHAR_P (t, s, send);
Jari Aaltocce855b1998-04-17 19:52:44 +00003558 }
3559 *t = '\0';
Chet Rameyac50fba2014-02-26 09:36:43 -05003560
Jari Aaltocce855b1998-04-17 19:52:44 +00003561 return (result);
3562}
3563
3564static WORD_LIST *
3565list_quote_escapes (list)
3566 WORD_LIST *list;
3567{
3568 register WORD_LIST *w;
3569 char *t;
3570
3571 for (w = list; w; w = w->next)
3572 {
3573 t = w->word->word;
3574 w->word->word = quote_escapes (t);
3575 free (t);
3576 }
3577 return list;
3578}
3579
Jari Aalto7117c2d2002-07-17 14:10:11 +00003580/* Inverse of quote_escapes; remove CTLESC protecting CTLESC or CTLNUL.
3581
3582 The parser passes us CTLESC as CTLESC CTLESC and CTLNUL as CTLESC CTLNUL.
3583 This is necessary to make unquoted CTLESC and CTLNUL characters in the
3584 data stream pass through properly.
3585
3586 We need to remove doubled CTLESC characters inside quoted strings before
3587 quoting the entire string, so we do not double the number of CTLESC
3588 characters.
3589
3590 Also used by parts of the pattern substitution code. */
Jari Aalto31859422009-01-12 13:36:28 +00003591char *
Jari Aaltocce855b1998-04-17 19:52:44 +00003592dequote_escapes (string)
3593 char *string;
3594{
Jari Aalto31859422009-01-12 13:36:28 +00003595 register char *s, *t, *s1;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003596 size_t slen;
3597 char *result, *send;
Jari Aaltof1be6662008-11-18 13:15:12 +00003598 int quote_spaces;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003599 DECLARE_MBSTATE;
Jari Aaltocce855b1998-04-17 19:52:44 +00003600
Jari Aalto7117c2d2002-07-17 14:10:11 +00003601 if (string == 0)
3602 return string;
3603
3604 slen = strlen (string);
3605 send = string + slen;
3606
3607 t = result = (char *)xmalloc (slen + 1);
Jari Aalto7117c2d2002-07-17 14:10:11 +00003608
3609 if (strchr (string, CTLESC) == 0)
Jari Aalto31859422009-01-12 13:36:28 +00003610 return (strcpy (result, string));
Jari Aalto7117c2d2002-07-17 14:10:11 +00003611
Jari Aaltof1be6662008-11-18 13:15:12 +00003612 quote_spaces = (ifs_value && *ifs_value == 0);
Jari Aalto31859422009-01-12 13:36:28 +00003613
3614 s = string;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003615 while (*s)
Jari Aaltocce855b1998-04-17 19:52:44 +00003616 {
Jari Aaltof1be6662008-11-18 13:15:12 +00003617 if (*s == CTLESC && (s[1] == CTLESC || s[1] == CTLNUL || (quote_spaces && s[1] == ' ')))
Jari Aaltocce855b1998-04-17 19:52:44 +00003618 {
3619 s++;
3620 if (*s == '\0')
3621 break;
3622 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00003623 COPY_CHAR_P (t, s, send);
Jari Aaltocce855b1998-04-17 19:52:44 +00003624 }
3625 *t = '\0';
Chet Rameyac50fba2014-02-26 09:36:43 -05003626
Jari Aaltocce855b1998-04-17 19:52:44 +00003627 return result;
3628}
Jari Aalto726f6381996-08-26 18:22:31 +00003629
Chet Rameyac50fba2014-02-26 09:36:43 -05003630static WORD_LIST *
3631list_dequote_escapes (list)
3632 WORD_LIST *list;
3633{
3634 register WORD_LIST *w;
3635 char *t;
3636
3637 for (w = list; w; w = w->next)
3638 {
3639 t = w->word->word;
3640 w->word->word = dequote_escapes (t);
3641 free (t);
3642 }
3643 return list;
3644}
3645
Jari Aalto06285672006-10-10 14:15:34 +00003646/* Return a new string with the quoted representation of character C.
3647 This turns "" into QUOTED_NULL, so the W_HASQUOTEDNULL flag needs to be
3648 set in any resultant WORD_DESC where this value is the word. */
Jari Aalto726f6381996-08-26 18:22:31 +00003649static char *
3650make_quoted_char (c)
3651 int c;
3652{
3653 char *temp;
3654
Jari Aaltof73dda02001-11-13 17:56:06 +00003655 temp = (char *)xmalloc (3);
Jari Aalto726f6381996-08-26 18:22:31 +00003656 if (c == 0)
3657 {
3658 temp[0] = CTLNUL;
3659 temp[1] = '\0';
3660 }
3661 else
3662 {
3663 temp[0] = CTLESC;
3664 temp[1] = c;
3665 temp[2] = '\0';
3666 }
3667 return (temp);
3668}
3669
Jari Aalto06285672006-10-10 14:15:34 +00003670/* Quote STRING, returning a new string. This turns "" into QUOTED_NULL, so
3671 the W_HASQUOTEDNULL flag needs to be set in any resultant WORD_DESC where
3672 this value is the word. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003673char *
Jari Aalto726f6381996-08-26 18:22:31 +00003674quote_string (string)
3675 char *string;
3676{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003677 register char *t;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003678 size_t slen;
3679 char *result, *send;
Jari Aalto726f6381996-08-26 18:22:31 +00003680
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003681 if (*string == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00003682 {
Jari Aaltof73dda02001-11-13 17:56:06 +00003683 result = (char *)xmalloc (2);
Jari Aalto726f6381996-08-26 18:22:31 +00003684 result[0] = CTLNUL;
3685 result[1] = '\0';
3686 }
3687 else
3688 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00003689 DECLARE_MBSTATE;
Jari Aalto726f6381996-08-26 18:22:31 +00003690
Jari Aalto7117c2d2002-07-17 14:10:11 +00003691 slen = strlen (string);
3692 send = string + slen;
3693
3694 result = (char *)xmalloc ((slen * 2) + 1);
3695
3696 for (t = result; string < send; )
Jari Aalto726f6381996-08-26 18:22:31 +00003697 {
3698 *t++ = CTLESC;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003699 COPY_CHAR_P (t, string, send);
Jari Aalto726f6381996-08-26 18:22:31 +00003700 }
3701 *t = '\0';
3702 }
3703 return (result);
3704}
3705
Jari Aalto06285672006-10-10 14:15:34 +00003706/* De-quote quoted characters in STRING. */
Jari Aalto726f6381996-08-26 18:22:31 +00003707char *
3708dequote_string (string)
3709 char *string;
3710{
Jari Aalto7117c2d2002-07-17 14:10:11 +00003711 register char *s, *t;
3712 size_t slen;
3713 char *result, *send;
3714 DECLARE_MBSTATE;
Jari Aalto726f6381996-08-26 18:22:31 +00003715
Jari Aalto7117c2d2002-07-17 14:10:11 +00003716 slen = strlen (string);
3717
3718 t = result = (char *)xmalloc (slen + 1);
Jari Aalto726f6381996-08-26 18:22:31 +00003719
3720 if (QUOTED_NULL (string))
3721 {
3722 result[0] = '\0';
3723 return (result);
3724 }
3725
3726 /* If no character in the string can be quoted, don't bother examining
3727 each character. Just return a copy of the string passed to us. */
Jari Aalto7117c2d2002-07-17 14:10:11 +00003728 if (strchr (string, CTLESC) == NULL)
3729 return (strcpy (result, string));
Jari Aalto726f6381996-08-26 18:22:31 +00003730
Jari Aalto7117c2d2002-07-17 14:10:11 +00003731 send = string + slen;
3732 s = string;
3733 while (*s)
Jari Aalto726f6381996-08-26 18:22:31 +00003734 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00003735 if (*s == CTLESC)
Jari Aalto726f6381996-08-26 18:22:31 +00003736 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00003737 s++;
3738 if (*s == '\0')
Jari Aalto726f6381996-08-26 18:22:31 +00003739 break;
3740 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00003741 COPY_CHAR_P (t, s, send);
Jari Aalto726f6381996-08-26 18:22:31 +00003742 }
3743
3744 *t = '\0';
3745 return (result);
3746}
3747
3748/* Quote the entire WORD_LIST list. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003749static WORD_LIST *
Jari Aalto726f6381996-08-26 18:22:31 +00003750quote_list (list)
3751 WORD_LIST *list;
3752{
3753 register WORD_LIST *w;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003754 char *t;
Jari Aalto726f6381996-08-26 18:22:31 +00003755
3756 for (w = list; w; w = w->next)
3757 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003758 t = w->word->word;
Jari Aalto726f6381996-08-26 18:22:31 +00003759 w->word->word = quote_string (t);
Jari Aalto31859422009-01-12 13:36:28 +00003760 if (*t == 0)
3761 w->word->flags |= W_HASQUOTEDNULL; /* XXX - turn on W_HASQUOTEDNULL here? */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003762 w->word->flags |= W_QUOTED;
Jari Aalto31859422009-01-12 13:36:28 +00003763 free (t);
Jari Aalto726f6381996-08-26 18:22:31 +00003764 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003765 return list;
Jari Aalto726f6381996-08-26 18:22:31 +00003766}
3767
Jari Aalto06285672006-10-10 14:15:34 +00003768/* De-quote quoted characters in each word in LIST. */
3769WORD_LIST *
Jari Aalto7117c2d2002-07-17 14:10:11 +00003770dequote_list (list)
3771 WORD_LIST *list;
3772{
3773 register char *s;
3774 register WORD_LIST *tlist;
3775
3776 for (tlist = list; tlist; tlist = tlist->next)
3777 {
3778 s = dequote_string (tlist->word->word);
Jari Aalto31859422009-01-12 13:36:28 +00003779 if (QUOTED_NULL (tlist->word->word))
3780 tlist->word->flags &= ~W_HASQUOTEDNULL;
Jari Aalto7117c2d2002-07-17 14:10:11 +00003781 free (tlist->word->word);
3782 tlist->word->word = s;
3783 }
3784 return list;
3785}
3786
3787/* Remove CTLESC protecting a CTLESC or CTLNUL in place. Return the passed
3788 string. */
Jari Aalto31859422009-01-12 13:36:28 +00003789char *
Jari Aalto7117c2d2002-07-17 14:10:11 +00003790remove_quoted_escapes (string)
3791 char *string;
3792{
3793 char *t;
3794
3795 if (string)
3796 {
3797 t = dequote_escapes (string);
3798 strcpy (string, t);
3799 free (t);
3800 }
3801
3802 return (string);
3803}
3804
Jari Aaltocce855b1998-04-17 19:52:44 +00003805/* Perform quoted null character removal on STRING. We don't allow any
3806 quoted null characters in the middle or at the ends of strings because
3807 of how expand_word_internal works. remove_quoted_nulls () turns
3808 STRING into an empty string iff it only consists of a quoted null,
3809 and removes all unquoted CTLNUL characters. */
Jari Aalto31859422009-01-12 13:36:28 +00003810char *
Jari Aaltocce855b1998-04-17 19:52:44 +00003811remove_quoted_nulls (string)
3812 char *string;
3813{
Jari Aalto7117c2d2002-07-17 14:10:11 +00003814 register size_t slen;
3815 register int i, j, prev_i;
3816 DECLARE_MBSTATE;
Jari Aaltocce855b1998-04-17 19:52:44 +00003817
Jari Aalto7117c2d2002-07-17 14:10:11 +00003818 if (strchr (string, CTLNUL) == 0) /* XXX */
3819 return string; /* XXX */
3820
3821 slen = strlen (string);
3822 i = j = 0;
3823
3824 while (i < slen)
Jari Aaltocce855b1998-04-17 19:52:44 +00003825 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00003826 if (string[i] == CTLESC)
Jari Aaltob80f6442004-07-27 13:29:18 +00003827 {
3828 /* Old code had j++, but we cannot assume that i == j at this
3829 point -- what if a CTLNUL has already been removed from the
3830 string? We don't want to drop the CTLESC or recopy characters
3831 that we've already copied down. */
3832 i++; string[j++] = CTLESC;
3833 if (i == slen)
3834 break;
3835 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00003836 else if (string[i] == CTLNUL)
Chet Rameya48a8ac2011-11-22 20:02:41 -05003837 {
3838 i++;
3839 continue;
3840 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00003841
3842 prev_i = i;
3843 ADVANCE_CHAR (string, slen, i);
3844 if (j < prev_i)
Jari Aaltocce855b1998-04-17 19:52:44 +00003845 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00003846 do string[j++] = string[prev_i++]; while (prev_i < i);
Jari Aaltocce855b1998-04-17 19:52:44 +00003847 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00003848 else
3849 j = i;
Jari Aaltocce855b1998-04-17 19:52:44 +00003850 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00003851 string[j] = '\0';
3852
3853 return (string);
Jari Aaltocce855b1998-04-17 19:52:44 +00003854}
3855
3856/* Perform quoted null character removal on each element of LIST.
3857 This modifies LIST. */
3858void
3859word_list_remove_quoted_nulls (list)
3860 WORD_LIST *list;
3861{
3862 register WORD_LIST *t;
3863
3864 for (t = list; t; t = t->next)
Jari Aalto95732b42005-12-07 14:08:12 +00003865 {
3866 remove_quoted_nulls (t->word->word);
3867 t->word->flags &= ~W_HASQUOTEDNULL;
3868 }
Jari Aaltocce855b1998-04-17 19:52:44 +00003869}
3870
Jari Aalto726f6381996-08-26 18:22:31 +00003871/* **************************************************************** */
3872/* */
Jari Aaltocce855b1998-04-17 19:52:44 +00003873/* Functions for Matching and Removing Patterns */
Jari Aalto726f6381996-08-26 18:22:31 +00003874/* */
3875/* **************************************************************** */
3876
Jari Aaltob80f6442004-07-27 13:29:18 +00003877#if defined (HANDLE_MULTIBYTE)
3878#if 0 /* Currently unused */
3879static unsigned char *
3880mb_getcharlens (string, len)
3881 char *string;
3882 int len;
3883{
3884 int i, offset, last;
3885 unsigned char *ret;
3886 char *p;
3887 DECLARE_MBSTATE;
3888
3889 i = offset = 0;
3890 last = 0;
3891 ret = (unsigned char *)xmalloc (len);
3892 memset (ret, 0, len);
3893 while (string[last])
3894 {
3895 ADVANCE_CHAR (string, len, offset);
3896 ret[last] = offset - last;
3897 last = offset;
3898 }
3899 return ret;
3900}
3901#endif
3902#endif
3903
Jari Aalto726f6381996-08-26 18:22:31 +00003904/* Remove the portion of PARAM matched by PATTERN according to OP, where OP
3905 can have one of 4 values:
3906 RP_LONG_LEFT remove longest matching portion at start of PARAM
3907 RP_SHORT_LEFT remove shortest matching portion at start of PARAM
3908 RP_LONG_RIGHT remove longest matching portion at end of PARAM
3909 RP_SHORT_RIGHT remove shortest matching portion at end of PARAM
3910*/
3911
3912#define RP_LONG_LEFT 1
3913#define RP_SHORT_LEFT 2
3914#define RP_LONG_RIGHT 3
3915#define RP_SHORT_RIGHT 4
3916
Chet Ramey495aee42011-11-22 19:11:26 -05003917/* Returns its first argument if nothing matched; new memory otherwise */
Jari Aalto726f6381996-08-26 18:22:31 +00003918static char *
Jari Aaltob80f6442004-07-27 13:29:18 +00003919remove_upattern (param, pattern, op)
Jari Aalto726f6381996-08-26 18:22:31 +00003920 char *param, *pattern;
3921 int op;
3922{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003923 register int len;
3924 register char *end;
Jari Aalto726f6381996-08-26 18:22:31 +00003925 register char *p, *ret, c;
3926
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003927 len = STRLEN (param);
3928 end = param + len;
Jari Aalto726f6381996-08-26 18:22:31 +00003929
3930 switch (op)
3931 {
3932 case RP_LONG_LEFT: /* remove longest match at start */
3933 for (p = end; p >= param; p--)
3934 {
3935 c = *p; *p = '\0';
Jari Aaltof73dda02001-11-13 17:56:06 +00003936 if (strmatch (pattern, param, FNMATCH_EXTFLAG) != FNM_NOMATCH)
Jari Aalto726f6381996-08-26 18:22:31 +00003937 {
3938 *p = c;
3939 return (savestring (p));
3940 }
3941 *p = c;
Jari Aaltob80f6442004-07-27 13:29:18 +00003942
Jari Aalto726f6381996-08-26 18:22:31 +00003943 }
3944 break;
3945
3946 case RP_SHORT_LEFT: /* remove shortest match at start */
3947 for (p = param; p <= end; p++)
3948 {
3949 c = *p; *p = '\0';
Jari Aaltof73dda02001-11-13 17:56:06 +00003950 if (strmatch (pattern, param, FNMATCH_EXTFLAG) != FNM_NOMATCH)
Jari Aalto726f6381996-08-26 18:22:31 +00003951 {
3952 *p = c;
3953 return (savestring (p));
3954 }
3955 *p = c;
3956 }
3957 break;
3958
3959 case RP_LONG_RIGHT: /* remove longest match at end */
3960 for (p = param; p <= end; p++)
3961 {
Jari Aaltof73dda02001-11-13 17:56:06 +00003962 if (strmatch (pattern, p, FNMATCH_EXTFLAG) != FNM_NOMATCH)
Jari Aalto726f6381996-08-26 18:22:31 +00003963 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003964 c = *p; *p = '\0';
Jari Aalto726f6381996-08-26 18:22:31 +00003965 ret = savestring (param);
3966 *p = c;
3967 return (ret);
3968 }
3969 }
3970 break;
3971
3972 case RP_SHORT_RIGHT: /* remove shortest match at end */
3973 for (p = end; p >= param; p--)
3974 {
Jari Aaltof73dda02001-11-13 17:56:06 +00003975 if (strmatch (pattern, p, FNMATCH_EXTFLAG) != FNM_NOMATCH)
Jari Aalto726f6381996-08-26 18:22:31 +00003976 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00003977 c = *p; *p = '\0';
Jari Aalto726f6381996-08-26 18:22:31 +00003978 ret = savestring (param);
3979 *p = c;
3980 return (ret);
3981 }
3982 }
3983 break;
3984 }
Jari Aaltob80f6442004-07-27 13:29:18 +00003985
Chet Ramey495aee42011-11-22 19:11:26 -05003986 return (param); /* no match, return original string */
Jari Aalto726f6381996-08-26 18:22:31 +00003987}
3988
Jari Aaltob80f6442004-07-27 13:29:18 +00003989#if defined (HANDLE_MULTIBYTE)
Chet Ramey495aee42011-11-22 19:11:26 -05003990/* Returns its first argument if nothing matched; new memory otherwise */
Jari Aaltob80f6442004-07-27 13:29:18 +00003991static wchar_t *
3992remove_wpattern (wparam, wstrlen, wpattern, op)
3993 wchar_t *wparam;
3994 size_t wstrlen;
3995 wchar_t *wpattern;
3996 int op;
3997{
Jari Aalto06285672006-10-10 14:15:34 +00003998 wchar_t wc, *ret;
3999 int n;
Jari Aaltob80f6442004-07-27 13:29:18 +00004000
4001 switch (op)
4002 {
4003 case RP_LONG_LEFT: /* remove longest match at start */
4004 for (n = wstrlen; n >= 0; n--)
4005 {
4006 wc = wparam[n]; wparam[n] = L'\0';
4007 if (wcsmatch (wpattern, wparam, FNMATCH_EXTFLAG) != FNM_NOMATCH)
4008 {
4009 wparam[n] = wc;
4010 return (wcsdup (wparam + n));
4011 }
4012 wparam[n] = wc;
4013 }
4014 break;
4015
4016 case RP_SHORT_LEFT: /* remove shortest match at start */
4017 for (n = 0; n <= wstrlen; n++)
4018 {
4019 wc = wparam[n]; wparam[n] = L'\0';
4020 if (wcsmatch (wpattern, wparam, FNMATCH_EXTFLAG) != FNM_NOMATCH)
4021 {
4022 wparam[n] = wc;
4023 return (wcsdup (wparam + n));
4024 }
4025 wparam[n] = wc;
4026 }
4027 break;
4028
4029 case RP_LONG_RIGHT: /* remove longest match at end */
4030 for (n = 0; n <= wstrlen; n++)
4031 {
4032 if (wcsmatch (wpattern, wparam + n, FNMATCH_EXTFLAG) != FNM_NOMATCH)
4033 {
4034 wc = wparam[n]; wparam[n] = L'\0';
4035 ret = wcsdup (wparam);
4036 wparam[n] = wc;
4037 return (ret);
4038 }
4039 }
4040 break;
4041
4042 case RP_SHORT_RIGHT: /* remove shortest match at end */
4043 for (n = wstrlen; n >= 0; n--)
4044 {
4045 if (wcsmatch (wpattern, wparam + n, FNMATCH_EXTFLAG) != FNM_NOMATCH)
4046 {
4047 wc = wparam[n]; wparam[n] = L'\0';
4048 ret = wcsdup (wparam);
4049 wparam[n] = wc;
4050 return (ret);
4051 }
4052 }
4053 break;
4054 }
4055
Chet Ramey495aee42011-11-22 19:11:26 -05004056 return (wparam); /* no match, return original string */
Jari Aaltob80f6442004-07-27 13:29:18 +00004057}
4058#endif /* HANDLE_MULTIBYTE */
4059
4060static char *
4061remove_pattern (param, pattern, op)
4062 char *param, *pattern;
4063 int op;
4064{
Chet Ramey495aee42011-11-22 19:11:26 -05004065 char *xret;
4066
Jari Aaltob80f6442004-07-27 13:29:18 +00004067 if (param == NULL)
4068 return (param);
4069 if (*param == '\0' || pattern == NULL || *pattern == '\0') /* minor optimization */
4070 return (savestring (param));
4071
4072#if defined (HANDLE_MULTIBYTE)
4073 if (MB_CUR_MAX > 1)
4074 {
4075 wchar_t *ret, *oret;
4076 size_t n;
4077 wchar_t *wparam, *wpattern;
4078 mbstate_t ps;
Jari Aaltob80f6442004-07-27 13:29:18 +00004079
4080 n = xdupmbstowcs (&wpattern, NULL, pattern);
4081 if (n == (size_t)-1)
Chet Ramey495aee42011-11-22 19:11:26 -05004082 {
4083 xret = remove_upattern (param, pattern, op);
4084 return ((xret == param) ? savestring (param) : xret);
4085 }
Jari Aaltob80f6442004-07-27 13:29:18 +00004086 n = xdupmbstowcs (&wparam, NULL, param);
Chet Rameyac50fba2014-02-26 09:36:43 -05004087
Jari Aaltob80f6442004-07-27 13:29:18 +00004088 if (n == (size_t)-1)
4089 {
4090 free (wpattern);
Chet Ramey495aee42011-11-22 19:11:26 -05004091 xret = remove_upattern (param, pattern, op);
4092 return ((xret == param) ? savestring (param) : xret);
Jari Aaltob80f6442004-07-27 13:29:18 +00004093 }
4094 oret = ret = remove_wpattern (wparam, n, wpattern, op);
Chet Ramey495aee42011-11-22 19:11:26 -05004095 /* Don't bother to convert wparam back to multibyte string if nothing
4096 matched; just return copy of original string */
4097 if (ret == wparam)
4098 {
4099 free (wparam);
4100 free (wpattern);
4101 return (savestring (param));
4102 }
Jari Aaltob80f6442004-07-27 13:29:18 +00004103
4104 free (wparam);
4105 free (wpattern);
4106
4107 n = strlen (param);
Jari Aalto06285672006-10-10 14:15:34 +00004108 xret = (char *)xmalloc (n + 1);
Jari Aaltob80f6442004-07-27 13:29:18 +00004109 memset (&ps, '\0', sizeof (mbstate_t));
4110 n = wcsrtombs (xret, (const wchar_t **)&ret, n, &ps);
4111 xret[n] = '\0'; /* just to make sure */
4112 free (oret);
4113 return xret;
4114 }
4115 else
4116#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004117 {
Chet Ramey495aee42011-11-22 19:11:26 -05004118 xret = remove_upattern (param, pattern, op);
4119 return ((xret == param) ? savestring (param) : xret);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004120 }
4121}
4122
4123/* Match PAT anywhere in STRING and return the match boundaries.
4124 This returns 1 in case of a successful match, 0 otherwise. SP
4125 and EP are pointers into the string where the match begins and
4126 ends, respectively. MTYPE controls what kind of match is attempted.
4127 MATCH_BEG and MATCH_END anchor the match at the beginning and end
4128 of the string, respectively. The longest match is returned. */
4129static int
Jari Aaltob80f6442004-07-27 13:29:18 +00004130match_upattern (string, pat, mtype, sp, ep)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004131 char *string, *pat;
4132 int mtype;
4133 char **sp, **ep;
4134{
Chet Ramey495aee42011-11-22 19:11:26 -05004135 int c, len, mlen;
Jari Aalto95732b42005-12-07 14:08:12 +00004136 register char *p, *p1, *npat;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004137 char *end;
Chet Ramey495aee42011-11-22 19:11:26 -05004138 int n1;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004139
Jari Aalto95732b42005-12-07 14:08:12 +00004140 /* If the pattern doesn't match anywhere in the string, go ahead and
4141 short-circuit right away. A minor optimization, saves a bunch of
4142 unnecessary calls to strmatch (up to N calls for a string of N
4143 characters) if the match is unsuccessful. To preserve the semantics
4144 of the substring matches below, we make sure that the pattern has
4145 `*' as first and last character, making a new pattern if necessary. */
4146 /* XXX - check this later if I ever implement `**' with special meaning,
4147 since this will potentially result in `**' at the beginning or end */
4148 len = STRLEN (pat);
Chet Ramey00018032011-11-21 20:51:19 -05004149 if (pat[0] != '*' || (pat[0] == '*' && pat[1] == LPAREN && extended_glob) || pat[len - 1] != '*')
Jari Aalto95732b42005-12-07 14:08:12 +00004150 {
Jari Aalto06285672006-10-10 14:15:34 +00004151 p = npat = (char *)xmalloc (len + 3);
Jari Aalto95732b42005-12-07 14:08:12 +00004152 p1 = pat;
Chet Ramey00018032011-11-21 20:51:19 -05004153 if (*p1 != '*' || (*p1 == '*' && p1[1] == LPAREN && extended_glob))
Jari Aalto95732b42005-12-07 14:08:12 +00004154 *p++ = '*';
4155 while (*p1)
4156 *p++ = *p1++;
4157 if (p1[-1] != '*' || p[-2] == '\\')
4158 *p++ = '*';
4159 *p = '\0';
4160 }
4161 else
4162 npat = pat;
4163 c = strmatch (npat, string, FNMATCH_EXTFLAG);
4164 if (npat != pat)
4165 free (npat);
4166 if (c == FNM_NOMATCH)
4167 return (0);
4168
Jari Aaltob80f6442004-07-27 13:29:18 +00004169 len = STRLEN (string);
4170 end = string + len;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004171
Chet Ramey495aee42011-11-22 19:11:26 -05004172 mlen = umatchlen (pat, len);
4173
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004174 switch (mtype)
4175 {
4176 case MATCH_ANY:
4177 for (p = string; p <= end; p++)
4178 {
4179 if (match_pattern_char (pat, p))
4180 {
Chet Ramey495aee42011-11-22 19:11:26 -05004181 p1 = (mlen == -1) ? end : p + mlen;
4182 /* p1 - p = length of portion of string to be considered
4183 p = current position in string
4184 mlen = number of characters consumed by match (-1 for entire string)
4185 end = end of string
4186 we want to break immediately if the potential match len
4187 is greater than the number of characters remaining in the
4188 string
4189 */
4190 if (p1 > end)
4191 break;
4192 for ( ; p1 >= p; p1--)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004193 {
4194 c = *p1; *p1 = '\0';
Jari Aaltof73dda02001-11-13 17:56:06 +00004195 if (strmatch (pat, p, FNMATCH_EXTFLAG) == 0)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004196 {
4197 *p1 = c;
4198 *sp = p;
4199 *ep = p1;
4200 return 1;
4201 }
4202 *p1 = c;
Chet Ramey495aee42011-11-22 19:11:26 -05004203#if 1
4204 /* If MLEN != -1, we have a fixed length pattern. */
4205 if (mlen != -1)
4206 break;
4207#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004208 }
4209 }
4210 }
Jari Aaltob80f6442004-07-27 13:29:18 +00004211
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004212 return (0);
4213
4214 case MATCH_BEG:
4215 if (match_pattern_char (pat, string) == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00004216 return (0);
Jari Aaltob80f6442004-07-27 13:29:18 +00004217
Chet Ramey495aee42011-11-22 19:11:26 -05004218 for (p = (mlen == -1) ? end : string + mlen; p >= string; p--)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004219 {
4220 c = *p; *p = '\0';
Jari Aaltof73dda02001-11-13 17:56:06 +00004221 if (strmatch (pat, string, FNMATCH_EXTFLAG) == 0)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004222 {
4223 *p = c;
4224 *sp = string;
4225 *ep = p;
4226 return 1;
4227 }
4228 *p = c;
Chet Ramey495aee42011-11-22 19:11:26 -05004229 /* If MLEN != -1, we have a fixed length pattern. */
4230 if (mlen != -1)
4231 break;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004232 }
Jari Aaltob80f6442004-07-27 13:29:18 +00004233
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004234 return (0);
4235
4236 case MATCH_END:
Chet Ramey495aee42011-11-22 19:11:26 -05004237 for (p = end - ((mlen == -1) ? len : mlen); p <= end; p++)
Jari Aaltob80f6442004-07-27 13:29:18 +00004238 {
4239 if (strmatch (pat, p, FNMATCH_EXTFLAG) == 0)
4240 {
4241 *sp = p;
4242 *ep = end;
4243 return 1;
4244 }
Chet Ramey495aee42011-11-22 19:11:26 -05004245 /* If MLEN != -1, we have a fixed length pattern. */
4246 if (mlen != -1)
4247 break;
Jari Aaltob80f6442004-07-27 13:29:18 +00004248 }
4249
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004250 return (0);
4251 }
4252
4253 return (0);
4254}
4255
Jari Aaltob80f6442004-07-27 13:29:18 +00004256#if defined (HANDLE_MULTIBYTE)
Jari Aaltob80f6442004-07-27 13:29:18 +00004257/* Match WPAT anywhere in WSTRING and return the match boundaries.
4258 This returns 1 in case of a successful match, 0 otherwise. Wide
4259 character version. */
4260static int
4261match_wpattern (wstring, indices, wstrlen, wpat, mtype, sp, ep)
4262 wchar_t *wstring;
4263 char **indices;
4264 size_t wstrlen;
4265 wchar_t *wpat;
4266 int mtype;
4267 char **sp, **ep;
4268{
Jari Aalto95732b42005-12-07 14:08:12 +00004269 wchar_t wc, *wp, *nwpat, *wp1;
Chet Ramey495aee42011-11-22 19:11:26 -05004270 size_t len;
4271 int mlen;
4272 int n, n1, n2, simple;
4273
4274 simple = (wpat[0] != L'\\' && wpat[0] != L'*' && wpat[0] != L'?' && wpat[0] != L'[');
4275#if defined (EXTENDED_GLOB)
4276 if (extended_glob)
Chet Ramey91717ba2012-05-07 16:23:18 -04004277 simple &= (wpat[1] != L'(' || (wpat[0] != L'*' && wpat[0] != L'?' && wpat[0] != L'+' && wpat[0] != L'!' && wpat[0] != L'@')); /*)*/
Jari Aaltob80f6442004-07-27 13:29:18 +00004278#endif
4279
Jari Aalto95732b42005-12-07 14:08:12 +00004280 /* If the pattern doesn't match anywhere in the string, go ahead and
4281 short-circuit right away. A minor optimization, saves a bunch of
4282 unnecessary calls to strmatch (up to N calls for a string of N
4283 characters) if the match is unsuccessful. To preserve the semantics
4284 of the substring matches below, we make sure that the pattern has
4285 `*' as first and last character, making a new pattern if necessary. */
Jari Aalto95732b42005-12-07 14:08:12 +00004286 len = wcslen (wpat);
Chet Ramey00018032011-11-21 20:51:19 -05004287 if (wpat[0] != L'*' || (wpat[0] == L'*' && wpat[1] == WLPAREN && extended_glob) || wpat[len - 1] != L'*')
Jari Aalto95732b42005-12-07 14:08:12 +00004288 {
Jari Aalto06285672006-10-10 14:15:34 +00004289 wp = nwpat = (wchar_t *)xmalloc ((len + 3) * sizeof (wchar_t));
Jari Aalto95732b42005-12-07 14:08:12 +00004290 wp1 = wpat;
Chet Ramey00018032011-11-21 20:51:19 -05004291 if (*wp1 != L'*' || (*wp1 == '*' && wp1[1] == WLPAREN && extended_glob))
Jari Aalto95732b42005-12-07 14:08:12 +00004292 *wp++ = L'*';
4293 while (*wp1 != L'\0')
4294 *wp++ = *wp1++;
4295 if (wp1[-1] != L'*' || wp1[-2] == L'\\')
4296 *wp++ = L'*';
4297 *wp = '\0';
4298 }
4299 else
4300 nwpat = wpat;
4301 len = wcsmatch (nwpat, wstring, FNMATCH_EXTFLAG);
4302 if (nwpat != wpat)
4303 free (nwpat);
4304 if (len == FNM_NOMATCH)
4305 return (0);
4306
Chet Ramey495aee42011-11-22 19:11:26 -05004307 mlen = wmatchlen (wpat, wstrlen);
4308
4309/* itrace("wmatchlen (%ls) -> %d", wpat, mlen); */
Jari Aaltob80f6442004-07-27 13:29:18 +00004310 switch (mtype)
4311 {
4312 case MATCH_ANY:
4313 for (n = 0; n <= wstrlen; n++)
4314 {
Chet Ramey495aee42011-11-22 19:11:26 -05004315 n2 = simple ? (*wpat == wstring[n]) : match_pattern_wchar (wpat, wstring + n);
Chet Ramey495aee42011-11-22 19:11:26 -05004316 if (n2)
Jari Aaltob80f6442004-07-27 13:29:18 +00004317 {
Chet Ramey495aee42011-11-22 19:11:26 -05004318 n1 = (mlen == -1) ? wstrlen : n + mlen;
4319 if (n1 > wstrlen)
4320 break;
4321
4322 for ( ; n1 >= n; n1--)
Jari Aaltob80f6442004-07-27 13:29:18 +00004323 {
4324 wc = wstring[n1]; wstring[n1] = L'\0';
4325 if (wcsmatch (wpat, wstring + n, FNMATCH_EXTFLAG) == 0)
4326 {
4327 wstring[n1] = wc;
4328 *sp = indices[n];
4329 *ep = indices[n1];
4330 return 1;
4331 }
4332 wstring[n1] = wc;
Chet Ramey495aee42011-11-22 19:11:26 -05004333 /* If MLEN != -1, we have a fixed length pattern. */
4334 if (mlen != -1)
4335 break;
Jari Aaltob80f6442004-07-27 13:29:18 +00004336 }
4337 }
4338 }
4339
4340 return (0);
4341
4342 case MATCH_BEG:
4343 if (match_pattern_wchar (wpat, wstring) == 0)
4344 return (0);
4345
Chet Ramey495aee42011-11-22 19:11:26 -05004346 for (n = (mlen == -1) ? wstrlen : mlen; n >= 0; n--)
Jari Aaltob80f6442004-07-27 13:29:18 +00004347 {
4348 wc = wstring[n]; wstring[n] = L'\0';
4349 if (wcsmatch (wpat, wstring, FNMATCH_EXTFLAG) == 0)
4350 {
4351 wstring[n] = wc;
4352 *sp = indices[0];
4353 *ep = indices[n];
4354 return 1;
4355 }
4356 wstring[n] = wc;
Chet Ramey495aee42011-11-22 19:11:26 -05004357 /* If MLEN != -1, we have a fixed length pattern. */
4358 if (mlen != -1)
4359 break;
Jari Aaltob80f6442004-07-27 13:29:18 +00004360 }
4361
4362 return (0);
4363
4364 case MATCH_END:
Chet Ramey495aee42011-11-22 19:11:26 -05004365 for (n = wstrlen - ((mlen == -1) ? wstrlen : mlen); n <= wstrlen; n++)
Jari Aaltob80f6442004-07-27 13:29:18 +00004366 {
4367 if (wcsmatch (wpat, wstring + n, FNMATCH_EXTFLAG) == 0)
4368 {
4369 *sp = indices[n];
4370 *ep = indices[wstrlen];
4371 return 1;
4372 }
Chet Ramey495aee42011-11-22 19:11:26 -05004373 /* If MLEN != -1, we have a fixed length pattern. */
4374 if (mlen != -1)
4375 break;
Jari Aaltob80f6442004-07-27 13:29:18 +00004376 }
4377
4378 return (0);
4379 }
4380
4381 return (0);
4382}
4383#endif /* HANDLE_MULTIBYTE */
4384
4385static int
4386match_pattern (string, pat, mtype, sp, ep)
4387 char *string, *pat;
4388 int mtype;
4389 char **sp, **ep;
4390{
4391#if defined (HANDLE_MULTIBYTE)
4392 int ret;
4393 size_t n;
4394 wchar_t *wstring, *wpat;
4395 char **indices;
Chet Ramey495aee42011-11-22 19:11:26 -05004396 size_t slen, plen, mslen, mplen;
Jari Aaltob80f6442004-07-27 13:29:18 +00004397#endif
4398
4399 if (string == 0 || *string == 0 || pat == 0 || *pat == 0)
4400 return (0);
4401
4402#if defined (HANDLE_MULTIBYTE)
4403 if (MB_CUR_MAX > 1)
4404 {
Chet Ramey495aee42011-11-22 19:11:26 -05004405 if (mbsmbchar (string) == 0 && mbsmbchar (pat) == 0)
Chet Ramey495aee42011-11-22 19:11:26 -05004406 return (match_upattern (string, pat, mtype, sp, ep));
4407
Jari Aaltob80f6442004-07-27 13:29:18 +00004408 n = xdupmbstowcs (&wpat, NULL, pat);
4409 if (n == (size_t)-1)
4410 return (match_upattern (string, pat, mtype, sp, ep));
4411 n = xdupmbstowcs (&wstring, &indices, string);
4412 if (n == (size_t)-1)
4413 {
4414 free (wpat);
4415 return (match_upattern (string, pat, mtype, sp, ep));
4416 }
4417 ret = match_wpattern (wstring, indices, n, wpat, mtype, sp, ep);
4418
4419 free (wpat);
4420 free (wstring);
4421 free (indices);
4422
4423 return (ret);
4424 }
4425 else
4426#endif
4427 return (match_upattern (string, pat, mtype, sp, ep));
4428}
4429
Jari Aaltocce855b1998-04-17 19:52:44 +00004430static int
4431getpatspec (c, value)
4432 int c;
4433 char *value;
4434{
4435 if (c == '#')
4436 return ((*value == '#') ? RP_LONG_LEFT : RP_SHORT_LEFT);
4437 else /* c == '%' */
4438 return ((*value == '%') ? RP_LONG_RIGHT : RP_SHORT_RIGHT);
4439}
4440
4441/* Posix.2 says that the WORD should be run through tilde expansion,
4442 parameter expansion, command substitution and arithmetic expansion.
4443 This leaves the result quoted, so quote_string_for_globbing () has
Jari Aaltof73dda02001-11-13 17:56:06 +00004444 to be called to fix it up for strmatch (). If QUOTED is non-zero,
Jari Aaltocce855b1998-04-17 19:52:44 +00004445 it means that the entire expression was enclosed in double quotes.
4446 This means that quoting characters in the pattern do not make any
4447 special pattern characters quoted. For example, the `*' in the
4448 following retains its special meaning: "${foo#'*'}". */
4449static char *
4450getpattern (value, quoted, expandpat)
4451 char *value;
4452 int quoted, expandpat;
4453{
4454 char *pat, *tword;
4455 WORD_LIST *l;
Jari Aalto06285672006-10-10 14:15:34 +00004456#if 0
Jari Aaltocce855b1998-04-17 19:52:44 +00004457 int i;
Jari Aalto06285672006-10-10 14:15:34 +00004458#endif
Jari Aalto7117c2d2002-07-17 14:10:11 +00004459 /* There is a problem here: how to handle single or double quotes in the
4460 pattern string when the whole expression is between double quotes?
4461 POSIX.2 says that enclosing double quotes do not cause the pattern to
4462 be quoted, but does that leave us a problem with @ and array[@] and their
4463 expansions inside a pattern? */
4464#if 0
Jari Aaltocce855b1998-04-17 19:52:44 +00004465 if (expandpat && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && *tword)
4466 {
4467 i = 0;
4468 pat = string_extract_double_quoted (tword, &i, 1);
4469 free (tword);
4470 tword = pat;
4471 }
Jari Aaltocce855b1998-04-17 19:52:44 +00004472#endif
Jari Aalto7117c2d2002-07-17 14:10:11 +00004473
4474 /* expand_string_for_rhs () leaves WORD quoted and does not perform
4475 word splitting. */
Jari Aalto95732b42005-12-07 14:08:12 +00004476 l = *value ? expand_string_for_rhs (value,
Jari Aalto7117c2d2002-07-17 14:10:11 +00004477 (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) ? Q_PATQUOTE : quoted,
4478 (int *)NULL, (int *)NULL)
Jari Aaltocce855b1998-04-17 19:52:44 +00004479 : (WORD_LIST *)0;
Jari Aaltocce855b1998-04-17 19:52:44 +00004480 pat = string_list (l);
4481 dispose_words (l);
4482 if (pat)
4483 {
4484 tword = quote_string_for_globbing (pat, QGLOB_CVTNULL);
4485 free (pat);
4486 pat = tword;
4487 }
4488 return (pat);
4489}
4490
Jari Aalto7117c2d2002-07-17 14:10:11 +00004491#if 0
Jari Aaltocce855b1998-04-17 19:52:44 +00004492/* Handle removing a pattern from a string as a result of ${name%[%]value}
4493 or ${name#[#]value}. */
4494static char *
Jari Aalto7117c2d2002-07-17 14:10:11 +00004495variable_remove_pattern (value, pattern, patspec, quoted)
4496 char *value, *pattern;
4497 int patspec, quoted;
Jari Aaltocce855b1998-04-17 19:52:44 +00004498{
Jari Aalto7117c2d2002-07-17 14:10:11 +00004499 char *tword;
Jari Aaltocce855b1998-04-17 19:52:44 +00004500
Jari Aalto7117c2d2002-07-17 14:10:11 +00004501 tword = remove_pattern (value, pattern, patspec);
Jari Aaltocce855b1998-04-17 19:52:44 +00004502
Jari Aaltocce855b1998-04-17 19:52:44 +00004503 return (tword);
4504}
Jari Aalto7117c2d2002-07-17 14:10:11 +00004505#endif
Jari Aaltocce855b1998-04-17 19:52:44 +00004506
4507static char *
Jari Aalto7117c2d2002-07-17 14:10:11 +00004508list_remove_pattern (list, pattern, patspec, itype, quoted)
Jari Aaltocce855b1998-04-17 19:52:44 +00004509 WORD_LIST *list;
4510 char *pattern;
Jari Aalto7117c2d2002-07-17 14:10:11 +00004511 int patspec, itype, quoted;
Jari Aaltocce855b1998-04-17 19:52:44 +00004512{
4513 WORD_LIST *new, *l;
4514 WORD_DESC *w;
4515 char *tword;
4516
4517 for (new = (WORD_LIST *)NULL, l = list; l; l = l->next)
4518 {
4519 tword = remove_pattern (l->word->word, pattern, patspec);
Jari Aalto95732b42005-12-07 14:08:12 +00004520 w = alloc_word_desc ();
4521 w->word = tword ? tword : savestring ("");
Jari Aaltocce855b1998-04-17 19:52:44 +00004522 new = make_word_list (w, new);
4523 }
4524
4525 l = REVERSE_LIST (new, WORD_LIST *);
Jari Aalto31859422009-01-12 13:36:28 +00004526 tword = string_list_pos_params (itype, l, quoted);
Jari Aaltocce855b1998-04-17 19:52:44 +00004527 dispose_words (l);
Jari Aalto31859422009-01-12 13:36:28 +00004528
Jari Aaltocce855b1998-04-17 19:52:44 +00004529 return (tword);
4530}
4531
4532static char *
Jari Aalto7117c2d2002-07-17 14:10:11 +00004533parameter_list_remove_pattern (itype, pattern, patspec, quoted)
4534 int itype;
4535 char *pattern;
4536 int patspec, quoted;
Jari Aaltocce855b1998-04-17 19:52:44 +00004537{
Jari Aalto7117c2d2002-07-17 14:10:11 +00004538 char *ret;
Jari Aaltocce855b1998-04-17 19:52:44 +00004539 WORD_LIST *list;
4540
Jari Aaltocce855b1998-04-17 19:52:44 +00004541 list = list_rest_of_args ();
Jari Aalto7117c2d2002-07-17 14:10:11 +00004542 if (list == 0)
4543 return ((char *)NULL);
4544 ret = list_remove_pattern (list, pattern, patspec, itype, quoted);
Jari Aaltocce855b1998-04-17 19:52:44 +00004545 dispose_words (list);
Jari Aaltocce855b1998-04-17 19:52:44 +00004546 return (ret);
4547}
4548
4549#if defined (ARRAY_VARS)
4550static char *
Jari Aalto31859422009-01-12 13:36:28 +00004551array_remove_pattern (var, pattern, patspec, varname, quoted)
4552 SHELL_VAR *var;
Jari Aalto7117c2d2002-07-17 14:10:11 +00004553 char *pattern;
4554 int patspec;
4555 char *varname; /* so we can figure out how it's indexed */
4556 int quoted;
Jari Aaltocce855b1998-04-17 19:52:44 +00004557{
Jari Aalto31859422009-01-12 13:36:28 +00004558 ARRAY *a;
4559 HASH_TABLE *h;
Jari Aalto7117c2d2002-07-17 14:10:11 +00004560 int itype;
4561 char *ret;
4562 WORD_LIST *list;
4563 SHELL_VAR *v;
Jari Aaltocce855b1998-04-17 19:52:44 +00004564
Jari Aalto7117c2d2002-07-17 14:10:11 +00004565 /* compute itype from varname here */
4566 v = array_variable_part (varname, &ret, 0);
Chet Rameyac50fba2014-02-26 09:36:43 -05004567
4568 /* XXX */
4569 if (v && invisible_p (var))
4570 return ((char *)NULL);
4571
Jari Aalto7117c2d2002-07-17 14:10:11 +00004572 itype = ret[0];
Jari Aaltocce855b1998-04-17 19:52:44 +00004573
Jari Aalto31859422009-01-12 13:36:28 +00004574 a = (v && array_p (v)) ? array_cell (v) : 0;
4575 h = (v && assoc_p (v)) ? assoc_cell (v) : 0;
4576
4577 list = a ? array_to_word_list (a) : (h ? assoc_to_word_list (h) : 0);
Jari Aalto7117c2d2002-07-17 14:10:11 +00004578 if (list == 0)
4579 return ((char *)NULL);
4580 ret = list_remove_pattern (list, pattern, patspec, itype, quoted);
4581 dispose_words (list);
Jari Aaltocce855b1998-04-17 19:52:44 +00004582
Jari Aaltocce855b1998-04-17 19:52:44 +00004583 return ret;
4584}
4585#endif /* ARRAY_VARS */
4586
Jari Aalto7117c2d2002-07-17 14:10:11 +00004587static char *
Chet Ramey495aee42011-11-22 19:11:26 -05004588parameter_brace_remove_pattern (varname, value, ind, patstr, rtype, quoted, flags)
4589 char *varname, *value;
4590 int ind;
4591 char *patstr;
4592 int rtype, quoted, flags;
Jari Aalto7117c2d2002-07-17 14:10:11 +00004593{
Jari Aaltob80f6442004-07-27 13:29:18 +00004594 int vtype, patspec, starsub;
Jari Aalto7117c2d2002-07-17 14:10:11 +00004595 char *temp1, *val, *pattern;
4596 SHELL_VAR *v;
4597
4598 if (value == 0)
4599 return ((char *)NULL);
4600
4601 this_command_name = varname;
4602
Chet Ramey495aee42011-11-22 19:11:26 -05004603 vtype = get_var_and_type (varname, value, ind, quoted, flags, &v, &val);
Jari Aalto7117c2d2002-07-17 14:10:11 +00004604 if (vtype == -1)
4605 return ((char *)NULL);
4606
Jari Aaltob80f6442004-07-27 13:29:18 +00004607 starsub = vtype & VT_STARSUB;
4608 vtype &= ~VT_STARSUB;
4609
Jari Aalto7117c2d2002-07-17 14:10:11 +00004610 patspec = getpatspec (rtype, patstr);
4611 if (patspec == RP_LONG_LEFT || patspec == RP_LONG_RIGHT)
4612 patstr++;
4613
Jari Aaltof1be6662008-11-18 13:15:12 +00004614 /* Need to pass getpattern newly-allocated memory in case of expansion --
4615 the expansion code will free the passed string on an error. */
4616 temp1 = savestring (patstr);
4617 pattern = getpattern (temp1, quoted, 1);
4618 free (temp1);
Jari Aalto7117c2d2002-07-17 14:10:11 +00004619
4620 temp1 = (char *)NULL; /* shut up gcc */
4621 switch (vtype)
4622 {
4623 case VT_VARIABLE:
4624 case VT_ARRAYMEMBER:
4625 temp1 = remove_pattern (val, pattern, patspec);
4626 if (vtype == VT_VARIABLE)
4627 FREE (val);
4628 if (temp1)
4629 {
Jari Aalto31859422009-01-12 13:36:28 +00004630 val = (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
4631 ? quote_string (temp1)
4632 : quote_escapes (temp1);
Jari Aalto7117c2d2002-07-17 14:10:11 +00004633 free (temp1);
4634 temp1 = val;
4635 }
4636 break;
4637#if defined (ARRAY_VARS)
4638 case VT_ARRAYVAR:
Jari Aalto31859422009-01-12 13:36:28 +00004639 temp1 = array_remove_pattern (v, pattern, patspec, varname, quoted);
Jari Aalto7117c2d2002-07-17 14:10:11 +00004640 if (temp1 && ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) == 0))
4641 {
4642 val = quote_escapes (temp1);
4643 free (temp1);
4644 temp1 = val;
4645 }
4646 break;
4647#endif
4648 case VT_POSPARMS:
4649 temp1 = parameter_list_remove_pattern (varname[0], pattern, patspec, quoted);
4650 if (temp1 && ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) == 0))
4651 {
4652 val = quote_escapes (temp1);
4653 free (temp1);
4654 temp1 = val;
4655 }
4656 break;
4657 }
4658
4659 FREE (pattern);
4660 return temp1;
4661}
4662
Jari Aalto726f6381996-08-26 18:22:31 +00004663/*******************************************
4664 * *
4665 * Functions to expand WORD_DESCs *
4666 * *
4667 *******************************************/
4668
4669/* Expand WORD, performing word splitting on the result. This does
4670 parameter expansion, command substitution, arithmetic expansion,
4671 word splitting, and quote removal. */
4672
4673WORD_LIST *
4674expand_word (word, quoted)
4675 WORD_DESC *word;
4676 int quoted;
4677{
4678 WORD_LIST *result, *tresult;
4679
Jari Aaltob72432f1999-02-19 17:11:39 +00004680 tresult = call_expand_word_internal (word, quoted, 0, (int *)NULL, (int *)NULL);
Jari Aalto726f6381996-08-26 18:22:31 +00004681 result = word_list_split (tresult);
4682 dispose_words (tresult);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004683 return (result ? dequote_list (result) : result);
Jari Aalto726f6381996-08-26 18:22:31 +00004684}
4685
4686/* Expand WORD, but do not perform word splitting on the result. This
4687 does parameter expansion, command substitution, arithmetic expansion,
4688 and quote removal. */
4689WORD_LIST *
Jari Aalto28ef6c32001-04-06 19:14:31 +00004690expand_word_unsplit (word, quoted)
Jari Aalto726f6381996-08-26 18:22:31 +00004691 WORD_DESC *word;
4692 int quoted;
4693{
4694 WORD_LIST *result;
4695
Jari Aalto28ef6c32001-04-06 19:14:31 +00004696 expand_no_split_dollar_star = 1;
Chet Ramey00018032011-11-21 20:51:19 -05004697#if defined (HANDLE_MULTIBYTE)
4698 if (ifs_firstc[0] == 0)
4699#else
4700 if (ifs_firstc == 0)
4701#endif
4702 word->flags |= W_NOSPLIT;
Chet Ramey1cc06892011-11-22 20:00:41 -05004703 word->flags |= W_NOSPLIT2;
Jari Aaltob72432f1999-02-19 17:11:39 +00004704 result = call_expand_word_internal (word, quoted, 0, (int *)NULL, (int *)NULL);
Jari Aalto28ef6c32001-04-06 19:14:31 +00004705 expand_no_split_dollar_star = 0;
Jari Aalto7117c2d2002-07-17 14:10:11 +00004706
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004707 return (result ? dequote_list (result) : result);
Jari Aalto726f6381996-08-26 18:22:31 +00004708}
4709
4710/* Perform shell expansions on WORD, but do not perform word splitting or
Chet Ramey00018032011-11-21 20:51:19 -05004711 quote removal on the result. Virtually identical to expand_word_unsplit;
4712 could be combined if implementations don't diverge. */
Jari Aalto726f6381996-08-26 18:22:31 +00004713WORD_LIST *
4714expand_word_leave_quoted (word, quoted)
4715 WORD_DESC *word;
4716 int quoted;
4717{
Chet Ramey00018032011-11-21 20:51:19 -05004718 WORD_LIST *result;
4719
4720 expand_no_split_dollar_star = 1;
4721#if defined (HANDLE_MULTIBYTE)
4722 if (ifs_firstc[0] == 0)
4723#else
4724 if (ifs_firstc == 0)
4725#endif
4726 word->flags |= W_NOSPLIT;
4727 word->flags |= W_NOSPLIT2;
4728 result = call_expand_word_internal (word, quoted, 0, (int *)NULL, (int *)NULL);
4729 expand_no_split_dollar_star = 0;
4730
4731 return result;
Jari Aalto726f6381996-08-26 18:22:31 +00004732}
4733
Jari Aalto726f6381996-08-26 18:22:31 +00004734#if defined (PROCESS_SUBSTITUTION)
4735
Jari Aaltocce855b1998-04-17 19:52:44 +00004736/*****************************************************************/
4737/* */
4738/* Hacking Process Substitution */
4739/* */
4740/*****************************************************************/
Jari Aalto726f6381996-08-26 18:22:31 +00004741
Jari Aalto726f6381996-08-26 18:22:31 +00004742#if !defined (HAVE_DEV_FD)
4743/* Named pipes must be removed explicitly with `unlink'. This keeps a list
4744 of FIFOs the shell has open. unlink_fifo_list will walk the list and
4745 unlink all of them. add_fifo_list adds the name of an open FIFO to the
4746 list. NFIFO is a count of the number of FIFOs in the list. */
4747#define FIFO_INCR 20
4748
Jari Aaltof73dda02001-11-13 17:56:06 +00004749struct temp_fifo {
4750 char *file;
4751 pid_t proc;
4752};
4753
4754static struct temp_fifo *fifo_list = (struct temp_fifo *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004755static int nfifo;
4756static int fifo_list_size;
Jari Aalto726f6381996-08-26 18:22:31 +00004757
Chet Ramey495aee42011-11-22 19:11:26 -05004758char *
4759copy_fifo_list (sizep)
4760 int *sizep;
4761{
4762 if (sizep)
4763 *sizep = 0;
4764 return (char *)NULL;
4765}
4766
Jari Aalto726f6381996-08-26 18:22:31 +00004767static void
4768add_fifo_list (pathname)
4769 char *pathname;
4770{
4771 if (nfifo >= fifo_list_size - 1)
4772 {
4773 fifo_list_size += FIFO_INCR;
Jari Aaltof73dda02001-11-13 17:56:06 +00004774 fifo_list = (struct temp_fifo *)xrealloc (fifo_list,
4775 fifo_list_size * sizeof (struct temp_fifo));
Jari Aalto726f6381996-08-26 18:22:31 +00004776 }
4777
Jari Aaltof73dda02001-11-13 17:56:06 +00004778 fifo_list[nfifo].file = savestring (pathname);
4779 nfifo++;
Jari Aalto726f6381996-08-26 18:22:31 +00004780}
4781
4782void
Chet Ramey495aee42011-11-22 19:11:26 -05004783unlink_fifo (i)
4784 int i;
4785{
4786 if ((fifo_list[i].proc == -1) || (kill(fifo_list[i].proc, 0) == -1))
4787 {
4788 unlink (fifo_list[i].file);
4789 free (fifo_list[i].file);
4790 fifo_list[i].file = (char *)NULL;
4791 fifo_list[i].proc = -1;
4792 }
4793}
4794
4795void
Jari Aalto726f6381996-08-26 18:22:31 +00004796unlink_fifo_list ()
4797{
Jari Aaltof73dda02001-11-13 17:56:06 +00004798 int saved, i, j;
4799
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004800 if (nfifo == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00004801 return;
4802
Jari Aaltof73dda02001-11-13 17:56:06 +00004803 for (i = saved = 0; i < nfifo; i++)
Jari Aalto726f6381996-08-26 18:22:31 +00004804 {
Jari Aaltof73dda02001-11-13 17:56:06 +00004805 if ((fifo_list[i].proc == -1) || (kill(fifo_list[i].proc, 0) == -1))
4806 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00004807 unlink (fifo_list[i].file);
4808 free (fifo_list[i].file);
4809 fifo_list[i].file = (char *)NULL;
4810 fifo_list[i].proc = -1;
Jari Aaltof73dda02001-11-13 17:56:06 +00004811 }
4812 else
Jari Aalto7117c2d2002-07-17 14:10:11 +00004813 saved++;
Jari Aalto726f6381996-08-26 18:22:31 +00004814 }
Jari Aaltof73dda02001-11-13 17:56:06 +00004815
4816 /* If we didn't remove some of the FIFOs, compact the list. */
4817 if (saved)
4818 {
4819 for (i = j = 0; i < nfifo; i++)
4820 if (fifo_list[i].file)
4821 {
4822 fifo_list[j].file = fifo_list[i].file;
4823 fifo_list[j].proc = fifo_list[i].proc;
4824 j++;
4825 }
4826 nfifo = j;
4827 }
4828 else
4829 nfifo = 0;
Jari Aalto726f6381996-08-26 18:22:31 +00004830}
4831
Chet Ramey495aee42011-11-22 19:11:26 -05004832/* Take LIST, which is a bitmap denoting active FIFOs in fifo_list
4833 from some point in the past, and close all open FIFOs in fifo_list
4834 that are not marked as active in LIST. If LIST is NULL, close
4835 everything in fifo_list. LSIZE is the number of elements in LIST, in
4836 case it's larger than fifo_list_size (size of fifo_list). */
4837void
4838close_new_fifos (list, lsize)
4839 char *list;
4840 int lsize;
4841{
4842 int i;
4843
4844 if (list == 0)
4845 {
4846 unlink_fifo_list ();
4847 return;
4848 }
4849
4850 for (i = 0; i < lsize; i++)
4851 if (list[i] == 0 && i < fifo_list_size && fifo_list[i].proc != -1)
4852 unlink_fifo (i);
4853
4854 for (i = lsize; i < fifo_list_size; i++)
4855 unlink_fifo (i);
4856}
4857
Jari Aaltof1be6662008-11-18 13:15:12 +00004858int
4859fifos_pending ()
4860{
4861 return nfifo;
4862}
4863
Chet Ramey495aee42011-11-22 19:11:26 -05004864int
4865num_fifos ()
4866{
4867 return nfifo;
4868}
4869
Jari Aalto726f6381996-08-26 18:22:31 +00004870static char *
4871make_named_pipe ()
4872{
4873 char *tname;
4874
Jari Aalto31859422009-01-12 13:36:28 +00004875 tname = sh_mktmpname ("sh-np", MT_USERANDOM|MT_USETMPDIR);
Jari Aalto726f6381996-08-26 18:22:31 +00004876 if (mkfifo (tname, 0600) < 0)
4877 {
4878 free (tname);
4879 return ((char *)NULL);
4880 }
4881
4882 add_fifo_list (tname);
4883 return (tname);
4884}
4885
Jari Aalto726f6381996-08-26 18:22:31 +00004886#else /* HAVE_DEV_FD */
4887
4888/* DEV_FD_LIST is a bitmap of file descriptors attached to pipes the shell
4889 has open to children. NFDS is a count of the number of bits currently
4890 set in DEV_FD_LIST. TOTFDS is a count of the highest possible number
4891 of open files. */
4892static char *dev_fd_list = (char *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004893static int nfds;
Jari Aalto726f6381996-08-26 18:22:31 +00004894static int totfds; /* The highest possible number of open files. */
4895
Chet Ramey495aee42011-11-22 19:11:26 -05004896char *
4897copy_fifo_list (sizep)
4898 int *sizep;
4899{
4900 char *ret;
4901
4902 if (nfds == 0 || totfds == 0)
4903 {
4904 if (sizep)
4905 *sizep = 0;
4906 return (char *)NULL;
4907 }
4908
4909 if (sizep)
4910 *sizep = totfds;
4911 ret = (char *)xmalloc (totfds);
4912 return (memcpy (ret, dev_fd_list, totfds));
4913}
4914
Jari Aalto726f6381996-08-26 18:22:31 +00004915static void
4916add_fifo_list (fd)
4917 int fd;
4918{
Chet Ramey495aee42011-11-22 19:11:26 -05004919 if (dev_fd_list == 0 || fd >= totfds)
Jari Aalto726f6381996-08-26 18:22:31 +00004920 {
4921 int ofds;
4922
4923 ofds = totfds;
4924 totfds = getdtablesize ();
4925 if (totfds < 0 || totfds > 256)
4926 totfds = 256;
Jari Aalto31859422009-01-12 13:36:28 +00004927 if (fd >= totfds)
Jari Aalto726f6381996-08-26 18:22:31 +00004928 totfds = fd + 2;
4929
Jari Aaltof73dda02001-11-13 17:56:06 +00004930 dev_fd_list = (char *)xrealloc (dev_fd_list, totfds);
Jari Aalto7117c2d2002-07-17 14:10:11 +00004931 memset (dev_fd_list + ofds, '\0', totfds - ofds);
Jari Aalto726f6381996-08-26 18:22:31 +00004932 }
4933
4934 dev_fd_list[fd] = 1;
4935 nfds++;
4936}
4937
Jari Aaltof1be6662008-11-18 13:15:12 +00004938int
4939fifos_pending ()
4940{
4941 return 0; /* used for cleanup; not needed with /dev/fd */
4942}
4943
Chet Ramey495aee42011-11-22 19:11:26 -05004944int
4945num_fifos ()
4946{
4947 return nfds;
4948}
4949
4950void
4951unlink_fifo (fd)
4952 int fd;
4953{
4954 if (dev_fd_list[fd])
4955 {
4956 close (fd);
4957 dev_fd_list[fd] = 0;
4958 nfds--;
4959 }
4960}
4961
Jari Aalto726f6381996-08-26 18:22:31 +00004962void
4963unlink_fifo_list ()
4964{
4965 register int i;
4966
Jari Aaltoccc6cda1996-12-23 17:02:34 +00004967 if (nfds == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00004968 return;
4969
4970 for (i = 0; nfds && i < totfds; i++)
Chet Ramey495aee42011-11-22 19:11:26 -05004971 unlink_fifo (i);
Jari Aalto726f6381996-08-26 18:22:31 +00004972
4973 nfds = 0;
4974}
4975
Chet Ramey495aee42011-11-22 19:11:26 -05004976/* Take LIST, which is a snapshot copy of dev_fd_list from some point in
4977 the past, and close all open fds in dev_fd_list that are not marked
4978 as open in LIST. If LIST is NULL, close everything in dev_fd_list.
4979 LSIZE is the number of elements in LIST, in case it's larger than
4980 totfds (size of dev_fd_list). */
4981void
4982close_new_fifos (list, lsize)
4983 char *list;
4984 int lsize;
4985{
4986 int i;
4987
4988 if (list == 0)
4989 {
4990 unlink_fifo_list ();
4991 return;
4992 }
4993
4994 for (i = 0; i < lsize; i++)
4995 if (list[i] == 0 && i < totfds && dev_fd_list[i])
4996 unlink_fifo (i);
4997
4998 for (i = lsize; i < totfds; i++)
4999 unlink_fifo (i);
5000}
5001
Jari Aalto726f6381996-08-26 18:22:31 +00005002#if defined (NOTDEF)
5003print_dev_fd_list ()
5004{
5005 register int i;
5006
Jari Aaltof73dda02001-11-13 17:56:06 +00005007 fprintf (stderr, "pid %ld: dev_fd_list:", (long)getpid ());
Jari Aalto726f6381996-08-26 18:22:31 +00005008 fflush (stderr);
5009
5010 for (i = 0; i < totfds; i++)
5011 {
5012 if (dev_fd_list[i])
5013 fprintf (stderr, " %d", i);
5014 }
5015 fprintf (stderr, "\n");
5016}
5017#endif /* NOTDEF */
5018
5019static char *
5020make_dev_fd_filename (fd)
5021 int fd;
5022{
Jari Aaltof73dda02001-11-13 17:56:06 +00005023 char *ret, intbuf[INT_STRLEN_BOUND (int) + 1], *p;
Jari Aalto726f6381996-08-26 18:22:31 +00005024
Jari Aalto17345e52009-02-19 22:21:29 +00005025 ret = (char *)xmalloc (sizeof (DEV_FD_PREFIX) + 8);
Jari Aaltobb706242000-03-17 21:46:59 +00005026
5027 strcpy (ret, DEV_FD_PREFIX);
5028 p = inttostr (fd, intbuf, sizeof (intbuf));
5029 strcpy (ret + sizeof (DEV_FD_PREFIX) - 1, p);
5030
Jari Aalto726f6381996-08-26 18:22:31 +00005031 add_fifo_list (fd);
5032 return (ret);
5033}
5034
5035#endif /* HAVE_DEV_FD */
5036
5037/* Return a filename that will open a connection to the process defined by
5038 executing STRING. HAVE_DEV_FD, if defined, means open a pipe and return
5039 a filename in /dev/fd corresponding to a descriptor that is one of the
5040 ends of the pipe. If not defined, we use named pipes on systems that have
5041 them. Systems without /dev/fd and named pipes are out of luck.
5042
5043 OPEN_FOR_READ_IN_CHILD, if 1, means open the named pipe for reading or
5044 use the read end of the pipe and dup that file descriptor to fd 0 in
5045 the child. If OPEN_FOR_READ_IN_CHILD is 0, we open the named pipe for
5046 writing or use the write end of the pipe in the child, and dup that
5047 file descriptor to fd 1 in the child. The parent does the opposite. */
5048
5049static char *
5050process_substitute (string, open_for_read_in_child)
5051 char *string;
5052 int open_for_read_in_child;
5053{
5054 char *pathname;
5055 int fd, result;
5056 pid_t old_pid, pid;
5057#if defined (HAVE_DEV_FD)
5058 int parent_pipe_fd, child_pipe_fd;
5059 int fildes[2];
5060#endif /* HAVE_DEV_FD */
5061#if defined (JOB_CONTROL)
5062 pid_t old_pipeline_pgrp;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005063#endif
Jari Aalto726f6381996-08-26 18:22:31 +00005064
Jari Aaltocce855b1998-04-17 19:52:44 +00005065 if (!string || !*string || wordexp_only)
Jari Aalto726f6381996-08-26 18:22:31 +00005066 return ((char *)NULL);
5067
5068#if !defined (HAVE_DEV_FD)
5069 pathname = make_named_pipe ();
5070#else /* HAVE_DEV_FD */
5071 if (pipe (fildes) < 0)
5072 {
Jari Aaltob80f6442004-07-27 13:29:18 +00005073 sys_error (_("cannot make pipe for process substitution"));
Jari Aalto726f6381996-08-26 18:22:31 +00005074 return ((char *)NULL);
5075 }
5076 /* If OPEN_FOR_READ_IN_CHILD == 1, we want to use the write end of
5077 the pipe in the parent, otherwise the read end. */
5078 parent_pipe_fd = fildes[open_for_read_in_child];
5079 child_pipe_fd = fildes[1 - open_for_read_in_child];
Jari Aaltod166f041997-06-05 14:59:13 +00005080 /* Move the parent end of the pipe to some high file descriptor, to
5081 avoid clashes with FDs used by the script. */
5082 parent_pipe_fd = move_to_high_fd (parent_pipe_fd, 1, 64);
5083
Jari Aalto726f6381996-08-26 18:22:31 +00005084 pathname = make_dev_fd_filename (parent_pipe_fd);
5085#endif /* HAVE_DEV_FD */
5086
Jari Aalto31859422009-01-12 13:36:28 +00005087 if (pathname == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00005088 {
Jari Aaltob80f6442004-07-27 13:29:18 +00005089 sys_error (_("cannot make pipe for process substitution"));
Jari Aalto726f6381996-08-26 18:22:31 +00005090 return ((char *)NULL);
5091 }
5092
5093 old_pid = last_made_pid;
5094
5095#if defined (JOB_CONTROL)
5096 old_pipeline_pgrp = pipeline_pgrp;
5097 pipeline_pgrp = shell_pgrp;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005098 save_pipeline (1);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005099#endif /* JOB_CONTROL */
5100
Jari Aalto726f6381996-08-26 18:22:31 +00005101 pid = make_child ((char *)NULL, 1);
5102 if (pid == 0)
5103 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005104 reset_terminating_signals (); /* XXX */
Jari Aaltob80f6442004-07-27 13:29:18 +00005105 free_pushed_string_input ();
Jari Aalto726f6381996-08-26 18:22:31 +00005106 /* Cancel traps, in trap.c. */
Chet Ramey495aee42011-11-22 19:11:26 -05005107 restore_original_signals (); /* XXX - what about special builtins? bash-4.2 */
Jari Aalto726f6381996-08-26 18:22:31 +00005108 setup_async_signals ();
Jari Aalto31859422009-01-12 13:36:28 +00005109 subshell_environment |= SUBSHELL_COMSUB|SUBSHELL_PROCSUB;
Jari Aalto726f6381996-08-26 18:22:31 +00005110 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005111
5112#if defined (JOB_CONTROL)
Jari Aalto726f6381996-08-26 18:22:31 +00005113 set_sigchld_handler ();
5114 stop_making_children ();
Jari Aalto31859422009-01-12 13:36:28 +00005115 /* XXX - should we only do this in the parent? (as in command subst) */
Jari Aalto726f6381996-08-26 18:22:31 +00005116 pipeline_pgrp = old_pipeline_pgrp;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005117#endif /* JOB_CONTROL */
Jari Aalto726f6381996-08-26 18:22:31 +00005118
5119 if (pid < 0)
5120 {
Jari Aaltob80f6442004-07-27 13:29:18 +00005121 sys_error (_("cannot make child for process substitution"));
Jari Aalto726f6381996-08-26 18:22:31 +00005122 free (pathname);
5123#if defined (HAVE_DEV_FD)
5124 close (parent_pipe_fd);
5125 close (child_pipe_fd);
5126#endif /* HAVE_DEV_FD */
5127 return ((char *)NULL);
5128 }
5129
5130 if (pid > 0)
5131 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005132#if defined (JOB_CONTROL)
5133 restore_pipeline (1);
5134#endif
5135
Jari Aaltof73dda02001-11-13 17:56:06 +00005136#if !defined (HAVE_DEV_FD)
5137 fifo_list[nfifo-1].proc = pid;
5138#endif
5139
Jari Aalto726f6381996-08-26 18:22:31 +00005140 last_made_pid = old_pid;
5141
5142#if defined (JOB_CONTROL) && defined (PGRP_PIPE)
5143 close_pgrp_pipe ();
5144#endif /* JOB_CONTROL && PGRP_PIPE */
5145
5146#if defined (HAVE_DEV_FD)
5147 close (child_pipe_fd);
5148#endif /* HAVE_DEV_FD */
5149
5150 return (pathname);
5151 }
5152
5153 set_sigint_handler ();
5154
5155#if defined (JOB_CONTROL)
5156 set_job_control (0);
5157#endif /* JOB_CONTROL */
5158
5159#if !defined (HAVE_DEV_FD)
5160 /* Open the named pipe in the child. */
Chet Rameyac50fba2014-02-26 09:36:43 -05005161 fd = open (pathname, open_for_read_in_child ? O_RDONLY : O_WRONLY);
Jari Aalto726f6381996-08-26 18:22:31 +00005162 if (fd < 0)
5163 {
Jari Aaltob80f6442004-07-27 13:29:18 +00005164 /* Two separate strings for ease of translation. */
5165 if (open_for_read_in_child)
5166 sys_error (_("cannot open named pipe %s for reading"), pathname);
5167 else
5168 sys_error (_("cannot open named pipe %s for writing"), pathname);
5169
Jari Aalto726f6381996-08-26 18:22:31 +00005170 exit (127);
5171 }
Jari Aaltobb706242000-03-17 21:46:59 +00005172 if (open_for_read_in_child)
5173 {
Jari Aalto28ef6c32001-04-06 19:14:31 +00005174 if (sh_unset_nodelay_mode (fd) < 0)
Jari Aaltobb706242000-03-17 21:46:59 +00005175 {
Jari Aalto31859422009-01-12 13:36:28 +00005176 sys_error (_("cannot reset nodelay mode for fd %d"), fd);
Jari Aaltobb706242000-03-17 21:46:59 +00005177 exit (127);
5178 }
5179 }
Jari Aalto726f6381996-08-26 18:22:31 +00005180#else /* HAVE_DEV_FD */
5181 fd = child_pipe_fd;
5182#endif /* HAVE_DEV_FD */
5183
5184 if (dup2 (fd, open_for_read_in_child ? 0 : 1) < 0)
5185 {
Jari Aaltob80f6442004-07-27 13:29:18 +00005186 sys_error (_("cannot duplicate named pipe %s as fd %d"), pathname,
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005187 open_for_read_in_child ? 0 : 1);
Jari Aalto726f6381996-08-26 18:22:31 +00005188 exit (127);
5189 }
5190
Jari Aaltof73dda02001-11-13 17:56:06 +00005191 if (fd != (open_for_read_in_child ? 0 : 1))
5192 close (fd);
Jari Aalto726f6381996-08-26 18:22:31 +00005193
5194 /* Need to close any files that this process has open to pipes inherited
5195 from its parent. */
5196 if (current_fds_to_close)
5197 {
5198 close_fd_bitmap (current_fds_to_close);
5199 current_fds_to_close = (struct fd_bitmap *)NULL;
5200 }
5201
5202#if defined (HAVE_DEV_FD)
5203 /* Make sure we close the parent's end of the pipe and clear the slot
5204 in the fd list so it is not closed later, if reallocated by, for
5205 instance, pipe(2). */
5206 close (parent_pipe_fd);
5207 dev_fd_list[parent_pipe_fd] = 0;
5208#endif /* HAVE_DEV_FD */
5209
Chet Ramey8dea6e82013-01-10 19:48:17 -05005210 /* subshells shouldn't have this flag, which controls using the temporary
5211 environment for variable lookups. */
5212 expanding_redir = 0;
5213
Jari Aaltod166f041997-06-05 14:59:13 +00005214 result = parse_and_execute (string, "process substitution", (SEVAL_NONINT|SEVAL_NOHIST));
Jari Aalto726f6381996-08-26 18:22:31 +00005215
5216#if !defined (HAVE_DEV_FD)
5217 /* Make sure we close the named pipe in the child before we exit. */
5218 close (open_for_read_in_child ? 0 : 1);
5219#endif /* !HAVE_DEV_FD */
5220
Chet Rameyac50fba2014-02-26 09:36:43 -05005221 last_command_exit_value = result;
5222 result = run_exit_trap ();
Jari Aalto726f6381996-08-26 18:22:31 +00005223 exit (result);
5224 /*NOTREACHED*/
5225}
5226#endif /* PROCESS_SUBSTITUTION */
5227
Jari Aaltocce855b1998-04-17 19:52:44 +00005228/***********************************/
5229/* */
5230/* Command Substitution */
5231/* */
5232/***********************************/
5233
Jari Aaltod166f041997-06-05 14:59:13 +00005234static char *
Jari Aalto31859422009-01-12 13:36:28 +00005235read_comsub (fd, quoted, rflag)
Jari Aaltod166f041997-06-05 14:59:13 +00005236 int fd, quoted;
Jari Aalto31859422009-01-12 13:36:28 +00005237 int *rflag;
Jari Aaltod166f041997-06-05 14:59:13 +00005238{
Jari Aalto31859422009-01-12 13:36:28 +00005239 char *istring, buf[128], *bufp, *s;
5240 int istring_index, istring_size, c, tflag, skip_ctlesc, skip_ctlnul;
Jari Aaltof73dda02001-11-13 17:56:06 +00005241 ssize_t bufn;
Jari Aaltod166f041997-06-05 14:59:13 +00005242
5243 istring = (char *)NULL;
Jari Aalto31859422009-01-12 13:36:28 +00005244 istring_index = istring_size = bufn = tflag = 0;
5245
5246 for (skip_ctlesc = skip_ctlnul = 0, s = ifs_value; s && *s; s++)
5247 skip_ctlesc |= *s == CTLESC, skip_ctlnul |= *s == CTLNUL;
Jari Aaltod166f041997-06-05 14:59:13 +00005248
Jari Aalto31859422009-01-12 13:36:28 +00005249 /* Read the output of the command through the pipe. This may need to be
5250 changed to understand multibyte characters in the future. */
Jari Aaltod166f041997-06-05 14:59:13 +00005251 while (1)
5252 {
5253 if (fd < 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00005254 break;
Jari Aaltod166f041997-06-05 14:59:13 +00005255 if (--bufn <= 0)
5256 {
Jari Aaltobb706242000-03-17 21:46:59 +00005257 bufn = zread (fd, buf, sizeof (buf));
Jari Aaltod166f041997-06-05 14:59:13 +00005258 if (bufn <= 0)
5259 break;
5260 bufp = buf;
5261 }
5262 c = *bufp++;
5263
Jari Aalto28ef6c32001-04-06 19:14:31 +00005264 if (c == 0)
5265 {
5266#if 0
5267 internal_warning ("read_comsub: ignored null byte in input");
5268#endif
5269 continue;
5270 }
5271
Jari Aaltod166f041997-06-05 14:59:13 +00005272 /* Add the character to ISTRING, possibly after resizing it. */
5273 RESIZE_MALLOCED_BUFFER (istring, istring_index, 2, istring_size, DEFAULT_ARRAY_SIZE);
5274
Jari Aaltof1be6662008-11-18 13:15:12 +00005275 /* This is essentially quote_string inline */
5276 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) /* || c == CTLESC || c == CTLNUL */)
5277 istring[istring_index++] = CTLESC;
5278 /* Escape CTLESC and CTLNUL in the output to protect those characters
5279 from the rest of the word expansions (word splitting and globbing.)
5280 This is essentially quote_escapes inline. */
Jari Aalto31859422009-01-12 13:36:28 +00005281 else if (skip_ctlesc == 0 && c == CTLESC)
5282 {
5283 tflag |= W_HASCTLESC;
5284 istring[istring_index++] = CTLESC;
5285 }
5286 else if ((skip_ctlnul == 0 && c == CTLNUL) || (c == ' ' && (ifs_value && *ifs_value == 0)))
Jari Aaltod166f041997-06-05 14:59:13 +00005287 istring[istring_index++] = CTLESC;
5288
5289 istring[istring_index++] = c;
Jari Aalto28ef6c32001-04-06 19:14:31 +00005290
5291#if 0
5292#if defined (__CYGWIN__)
5293 if (c == '\n' && istring_index > 1 && istring[istring_index - 2] == '\r')
5294 {
5295 istring_index--;
5296 istring[istring_index - 1] = '\n';
5297 }
5298#endif
5299#endif
Jari Aaltod166f041997-06-05 14:59:13 +00005300 }
5301
5302 if (istring)
5303 istring[istring_index] = '\0';
5304
5305 /* If we read no output, just return now and save ourselves some
5306 trouble. */
5307 if (istring_index == 0)
5308 {
5309 FREE (istring);
Jari Aalto31859422009-01-12 13:36:28 +00005310 if (rflag)
5311 *rflag = tflag;
Jari Aaltod166f041997-06-05 14:59:13 +00005312 return (char *)NULL;
5313 }
5314
5315 /* Strip trailing newlines from the output of the command. */
5316 if (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
5317 {
5318 while (istring_index > 0)
5319 {
5320 if (istring[istring_index - 1] == '\n')
5321 {
5322 --istring_index;
5323
5324 /* If the newline was quoted, remove the quoting char. */
5325 if (istring[istring_index - 1] == CTLESC)
5326 --istring_index;
5327 }
5328 else
5329 break;
5330 }
5331 istring[istring_index] = '\0';
5332 }
5333 else
5334 strip_trailing (istring, istring_index - 1, 1);
5335
Jari Aalto31859422009-01-12 13:36:28 +00005336 if (rflag)
5337 *rflag = tflag;
Jari Aaltod166f041997-06-05 14:59:13 +00005338 return istring;
5339}
5340
Jari Aalto31859422009-01-12 13:36:28 +00005341/* Perform command substitution on STRING. This returns a WORD_DESC * with the
5342 contained string possibly quoted. */
5343WORD_DESC *
Jari Aalto726f6381996-08-26 18:22:31 +00005344command_substitute (string, quoted)
5345 char *string;
5346 int quoted;
5347{
Jari Aalto95732b42005-12-07 14:08:12 +00005348 pid_t pid, old_pid, old_pipeline_pgrp, old_async_pid;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005349 char *istring;
Jari Aalto31859422009-01-12 13:36:28 +00005350 int result, fildes[2], function_value, pflags, rc, tflag;
5351 WORD_DESC *ret;
Jari Aalto726f6381996-08-26 18:22:31 +00005352
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005353 istring = (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +00005354
5355 /* Don't fork () if there is no need to. In the case of no command to
5356 run, just return NULL. */
5357 if (!string || !*string || (string[0] == '\n' && !string[1]))
Jari Aalto31859422009-01-12 13:36:28 +00005358 return ((WORD_DESC *)NULL);
Jari Aalto726f6381996-08-26 18:22:31 +00005359
Jari Aaltocce855b1998-04-17 19:52:44 +00005360 if (wordexp_only && read_but_dont_execute)
5361 {
Chet Ramey00018032011-11-21 20:51:19 -05005362 last_command_exit_value = EX_WEXPCOMSUB;
Jari Aaltocce855b1998-04-17 19:52:44 +00005363 jump_to_top_level (EXITPROG);
5364 }
5365
Jari Aaltobb706242000-03-17 21:46:59 +00005366 /* We're making the assumption here that the command substitution will
5367 eventually run a command from the file system. Since we'll run
5368 maybe_make_export_env in this subshell before executing that command,
5369 the parent shell and any other shells it starts will have to remake
5370 the environment. If we make it before we fork, other shells won't
5371 have to. Don't bother if we have any temporary variable assignments,
5372 though, because the export environment will be remade after this
5373 command completes anyway, but do it if all the words to be expanded
5374 are variable assignments. */
5375 if (subst_assign_varlist == 0 || garglist == 0)
5376 maybe_make_export_env (); /* XXX */
5377
Jari Aaltob80f6442004-07-27 13:29:18 +00005378 /* Flags to pass to parse_and_execute() */
Chet Ramey00018032011-11-21 20:51:19 -05005379 pflags = (interactive && sourcelevel == 0) ? SEVAL_RESETLINE : 0;
Jari Aaltob80f6442004-07-27 13:29:18 +00005380
Jari Aalto726f6381996-08-26 18:22:31 +00005381 /* Pipe the output of executing STRING into the current shell. */
5382 if (pipe (fildes) < 0)
5383 {
Jari Aaltob80f6442004-07-27 13:29:18 +00005384 sys_error (_("cannot make pipe for command substitution"));
Jari Aalto726f6381996-08-26 18:22:31 +00005385 goto error_exit;
5386 }
5387
5388 old_pid = last_made_pid;
5389#if defined (JOB_CONTROL)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005390 old_pipeline_pgrp = pipeline_pgrp;
Jari Aalto28ef6c32001-04-06 19:14:31 +00005391 /* Don't reset the pipeline pgrp if we're already a subshell in a pipeline. */
5392 if ((subshell_environment & SUBSHELL_PIPE) == 0)
5393 pipeline_pgrp = shell_pgrp;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005394 cleanup_the_pipeline ();
Jari Aalto95732b42005-12-07 14:08:12 +00005395#endif /* JOB_CONTROL */
Jari Aalto726f6381996-08-26 18:22:31 +00005396
Jari Aalto95732b42005-12-07 14:08:12 +00005397 old_async_pid = last_asynchronous_pid;
Jari Aalto95732b42005-12-07 14:08:12 +00005398 pid = make_child ((char *)NULL, subshell_environment&SUBSHELL_ASYNC);
Jari Aalto95732b42005-12-07 14:08:12 +00005399 last_asynchronous_pid = old_async_pid;
5400
Jari Aalto726f6381996-08-26 18:22:31 +00005401 if (pid == 0)
Chet Ramey495aee42011-11-22 19:11:26 -05005402 {
5403 /* Reset the signal handlers in the child, but don't free the
5404 trap strings. Set a flag noting that we have to free the
5405 trap strings if we run trap to change a signal disposition. */
5406 reset_signal_handlers ();
5407 subshell_environment |= SUBSHELL_RESETTRAP;
5408 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005409
5410#if defined (JOB_CONTROL)
Jari Aalto31859422009-01-12 13:36:28 +00005411 /* XXX DO THIS ONLY IN PARENT ? XXX */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005412 set_sigchld_handler ();
5413 stop_making_children ();
Jari Aaltof1be6662008-11-18 13:15:12 +00005414 if (pid != 0)
5415 pipeline_pgrp = old_pipeline_pgrp;
Jari Aaltof73dda02001-11-13 17:56:06 +00005416#else
5417 stop_making_children ();
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005418#endif /* JOB_CONTROL */
Jari Aalto726f6381996-08-26 18:22:31 +00005419
5420 if (pid < 0)
5421 {
Jari Aaltob80f6442004-07-27 13:29:18 +00005422 sys_error (_("cannot make child for command substitution"));
Jari Aalto726f6381996-08-26 18:22:31 +00005423 error_exit:
5424
Chet Rameyac50fba2014-02-26 09:36:43 -05005425 last_made_pid = old_pid;
5426
Jari Aalto726f6381996-08-26 18:22:31 +00005427 FREE (istring);
5428 close (fildes[0]);
5429 close (fildes[1]);
Jari Aalto31859422009-01-12 13:36:28 +00005430 return ((WORD_DESC *)NULL);
Jari Aalto726f6381996-08-26 18:22:31 +00005431 }
5432
5433 if (pid == 0)
5434 {
5435 set_sigint_handler (); /* XXX */
Jari Aalto28ef6c32001-04-06 19:14:31 +00005436
Jari Aaltob80f6442004-07-27 13:29:18 +00005437 free_pushed_string_input ();
5438
Jari Aalto726f6381996-08-26 18:22:31 +00005439 if (dup2 (fildes[1], 1) < 0)
5440 {
Jari Aaltob80f6442004-07-27 13:29:18 +00005441 sys_error (_("command_substitute: cannot duplicate pipe as fd 1"));
Jari Aalto726f6381996-08-26 18:22:31 +00005442 exit (EXECUTION_FAILURE);
5443 }
5444
5445 /* If standard output is closed in the parent shell
5446 (such as after `exec >&-'), file descriptor 1 will be
5447 the lowest available file descriptor, and end up in
5448 fildes[0]. This can happen for stdin and stderr as well,
5449 but stdout is more important -- it will cause no output
5450 to be generated from this command. */
5451 if ((fildes[1] != fileno (stdin)) &&
5452 (fildes[1] != fileno (stdout)) &&
5453 (fildes[1] != fileno (stderr)))
5454 close (fildes[1]);
5455
5456 if ((fildes[0] != fileno (stdin)) &&
5457 (fildes[0] != fileno (stdout)) &&
5458 (fildes[0] != fileno (stderr)))
5459 close (fildes[0]);
5460
Chet Ramey495aee42011-11-22 19:11:26 -05005461#ifdef __CYGWIN__
5462 /* Let stdio know the fd may have changed from text to binary mode, and
5463 make sure to preserve stdout line buffering. */
5464 freopen (NULL, "w", stdout);
5465 sh_setlinebuf (stdout);
5466#endif /* __CYGWIN__ */
5467
Jari Aalto726f6381996-08-26 18:22:31 +00005468 /* The currently executing shell is not interactive. */
5469 interactive = 0;
5470
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005471 /* This is a subshell environment. */
Jari Aalto28ef6c32001-04-06 19:14:31 +00005472 subshell_environment |= SUBSHELL_COMSUB;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005473
Jari Aalto28ef6c32001-04-06 19:14:31 +00005474 /* When not in POSIX mode, command substitution does not inherit
Jari Aalto7117c2d2002-07-17 14:10:11 +00005475 the -e flag. */
Jari Aalto28ef6c32001-04-06 19:14:31 +00005476 if (posixly_correct == 0)
Chet Rameyac50fba2014-02-26 09:36:43 -05005477 {
5478 builtin_ignoring_errexit = 0;
5479 change_flag ('e', FLAG_OFF);
5480 set_shellopts ();
5481 }
Jari Aalto726f6381996-08-26 18:22:31 +00005482
5483 remove_quoted_escapes (string);
5484
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005485 startup_state = 2; /* see if we can avoid a fork */
Jari Aalto726f6381996-08-26 18:22:31 +00005486 /* Give command substitution a place to jump back to on failure,
5487 so we don't go back up to main (). */
Chet Rameyac50fba2014-02-26 09:36:43 -05005488 result = setjmp_nosigs (top_level);
Jari Aalto726f6381996-08-26 18:22:31 +00005489
Jari Aaltobb706242000-03-17 21:46:59 +00005490 /* If we're running a command substitution inside a shell function,
5491 trap `return' so we don't return from the function in the subshell
5492 and go off to never-never land. */
5493 if (result == 0 && return_catch_flag)
Chet Rameyac50fba2014-02-26 09:36:43 -05005494 function_value = setjmp_nosigs (return_catch);
Jari Aaltobb706242000-03-17 21:46:59 +00005495 else
5496 function_value = 0;
5497
Jari Aaltob80f6442004-07-27 13:29:18 +00005498 if (result == ERREXIT)
5499 rc = last_command_exit_value;
5500 else if (result == EXITPROG)
5501 rc = last_command_exit_value;
Jari Aalto726f6381996-08-26 18:22:31 +00005502 else if (result)
Jari Aaltob80f6442004-07-27 13:29:18 +00005503 rc = EXECUTION_FAILURE;
Jari Aaltobb706242000-03-17 21:46:59 +00005504 else if (function_value)
Jari Aaltob80f6442004-07-27 13:29:18 +00005505 rc = return_catch_value;
Jari Aalto726f6381996-08-26 18:22:31 +00005506 else
Jari Aaltob80f6442004-07-27 13:29:18 +00005507 {
5508 subshell_level++;
5509 rc = parse_and_execute (string, "command substitution", pflags|SEVAL_NOHIST);
5510 subshell_level--;
5511 }
5512
5513 last_command_exit_value = rc;
5514 rc = run_exit_trap ();
Jari Aaltof1be6662008-11-18 13:15:12 +00005515#if defined (PROCESS_SUBSTITUTION)
5516 unlink_fifo_list ();
5517#endif
Jari Aaltob80f6442004-07-27 13:29:18 +00005518 exit (rc);
Jari Aalto726f6381996-08-26 18:22:31 +00005519 }
5520 else
5521 {
Jari Aalto726f6381996-08-26 18:22:31 +00005522#if defined (JOB_CONTROL) && defined (PGRP_PIPE)
5523 close_pgrp_pipe ();
5524#endif /* JOB_CONTROL && PGRP_PIPE */
5525
5526 close (fildes[1]);
5527
Jari Aalto31859422009-01-12 13:36:28 +00005528 tflag = 0;
5529 istring = read_comsub (fildes[0], quoted, &tflag);
Jari Aalto726f6381996-08-26 18:22:31 +00005530
Jari Aalto726f6381996-08-26 18:22:31 +00005531 close (fildes[0]);
5532
Jari Aaltob72432f1999-02-19 17:11:39 +00005533 current_command_subst_pid = pid;
Jari Aalto726f6381996-08-26 18:22:31 +00005534 last_command_exit_value = wait_for (pid);
5535 last_command_subst_pid = pid;
5536 last_made_pid = old_pid;
5537
5538#if defined (JOB_CONTROL)
5539 /* If last_command_exit_value > 128, then the substituted command
5540 was terminated by a signal. If that signal was SIGINT, then send
5541 SIGINT to ourselves. This will break out of loops, for instance. */
Jari Aaltob80f6442004-07-27 13:29:18 +00005542 if (last_command_exit_value == (128 + SIGINT) && last_command_exit_signal == SIGINT)
Jari Aalto726f6381996-08-26 18:22:31 +00005543 kill (getpid (), SIGINT);
5544
5545 /* wait_for gives the terminal back to shell_pgrp. If some other
Jari Aaltocce855b1998-04-17 19:52:44 +00005546 process group should have it, give it away to that group here.
5547 pipeline_pgrp is non-zero only while we are constructing a
Chet Rameyac50fba2014-02-26 09:36:43 -05005548 pipeline, so what we are concerned about is whether or not that
Jari Aaltocce855b1998-04-17 19:52:44 +00005549 pipeline was started in the background. A pipeline started in
5550 the background should never get the tty back here. */
Jari Aalto28ef6c32001-04-06 19:14:31 +00005551 if (interactive && pipeline_pgrp != (pid_t)0 && (subshell_environment & SUBSHELL_ASYNC) == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00005552 give_terminal_to (pipeline_pgrp, 0);
Jari Aalto726f6381996-08-26 18:22:31 +00005553#endif /* JOB_CONTROL */
5554
Jari Aalto31859422009-01-12 13:36:28 +00005555 ret = alloc_word_desc ();
5556 ret->word = istring;
5557 ret->flags = tflag;
5558
5559 return ret;
Jari Aalto726f6381996-08-26 18:22:31 +00005560 }
5561}
5562
5563/********************************************************
5564 * *
5565 * Utility functions for parameter expansion *
5566 * *
5567 ********************************************************/
5568
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005569#if defined (ARRAY_VARS)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005570
Jari Aaltof73dda02001-11-13 17:56:06 +00005571static arrayind_t
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005572array_length_reference (s)
5573 char *s;
5574{
Jari Aaltof73dda02001-11-13 17:56:06 +00005575 int len;
5576 arrayind_t ind;
Jari Aalto31859422009-01-12 13:36:28 +00005577 char *akey;
Jari Aaltof73dda02001-11-13 17:56:06 +00005578 char *t, c;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005579 ARRAY *array;
Chet Ramey495aee42011-11-22 19:11:26 -05005580 HASH_TABLE *h;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005581 SHELL_VAR *var;
5582
5583 var = array_variable_part (s, &t, &len);
5584
5585 /* If unbound variables should generate an error, report one and return
5586 failure. */
Chet Rameyac50fba2014-02-26 09:36:43 -05005587 if ((var == 0 || invisible_p (var) || (assoc_p (var) == 0 && array_p (var) == 0)) && unbound_vars_is_error)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005588 {
Jari Aaltof73dda02001-11-13 17:56:06 +00005589 c = *--t;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005590 *t = '\0';
Chet Ramey00018032011-11-21 20:51:19 -05005591 last_command_exit_value = EXECUTION_FAILURE;
Jari Aalto7117c2d2002-07-17 14:10:11 +00005592 err_unboundvar (s);
Jari Aaltof73dda02001-11-13 17:56:06 +00005593 *t = c;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005594 return (-1);
5595 }
Chet Rameyac50fba2014-02-26 09:36:43 -05005596 else if (var == 0 || invisible_p (var))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005597 return 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005598
Jari Aalto28ef6c32001-04-06 19:14:31 +00005599 /* We support a couple of expansions for variables that are not arrays.
5600 We'll return the length of the value for v[0], and 1 for v[@] or
5601 v[*]. Return 0 for everything else. */
5602
5603 array = array_p (var) ? array_cell (var) : (ARRAY *)NULL;
Chet Ramey495aee42011-11-22 19:11:26 -05005604 h = assoc_p (var) ? assoc_cell (var) : (HASH_TABLE *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005605
5606 if (ALL_ELEMENT_SUB (t[0]) && t[1] == ']')
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005607 {
Jari Aalto31859422009-01-12 13:36:28 +00005608 if (assoc_p (var))
Chet Ramey495aee42011-11-22 19:11:26 -05005609 return (h ? assoc_num_elements (h) : 0);
Jari Aalto31859422009-01-12 13:36:28 +00005610 else if (array_p (var))
Chet Ramey495aee42011-11-22 19:11:26 -05005611 return (array ? array_num_elements (array) : 0);
Jari Aalto31859422009-01-12 13:36:28 +00005612 else
Chet Ramey495aee42011-11-22 19:11:26 -05005613 return (var_isset (var) ? 1 : 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005614 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005615
Jari Aalto31859422009-01-12 13:36:28 +00005616 if (assoc_p (var))
5617 {
5618 t[len - 1] = '\0';
5619 akey = expand_assignment_string_to_string (t, 0); /* [ */
5620 t[len - 1] = ']';
5621 if (akey == 0 || *akey == 0)
5622 {
5623 err_badarraysub (t);
Chet Rameyac50fba2014-02-26 09:36:43 -05005624 FREE (akey);
Jari Aalto31859422009-01-12 13:36:28 +00005625 return (-1);
5626 }
5627 t = assoc_reference (assoc_cell (var), akey);
Chet Rameyac50fba2014-02-26 09:36:43 -05005628 free (akey);
Jari Aalto31859422009-01-12 13:36:28 +00005629 }
Jari Aalto28ef6c32001-04-06 19:14:31 +00005630 else
Jari Aalto31859422009-01-12 13:36:28 +00005631 {
Chet Rameyac50fba2014-02-26 09:36:43 -05005632 ind = array_expand_index (var, t, len);
5633 /* negative subscripts to indexed arrays count back from end */
5634 if (var && array_p (var) && ind < 0)
5635 ind = array_max_index (array_cell (var)) + 1 + ind;
Jari Aalto31859422009-01-12 13:36:28 +00005636 if (ind < 0)
5637 {
5638 err_badarraysub (t);
5639 return (-1);
5640 }
5641 if (array_p (var))
5642 t = array_reference (array, ind);
5643 else
5644 t = (ind == 0) ? value_cell (var) : (char *)NULL;
5645 }
Jari Aalto28ef6c32001-04-06 19:14:31 +00005646
Jari Aaltof1be6662008-11-18 13:15:12 +00005647 len = MB_STRLEN (t);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005648 return (len);
5649}
5650#endif /* ARRAY_VARS */
5651
Jari Aalto726f6381996-08-26 18:22:31 +00005652static int
5653valid_brace_expansion_word (name, var_is_special)
5654 char *name;
5655 int var_is_special;
5656{
Jari Aaltof73dda02001-11-13 17:56:06 +00005657 if (DIGIT (*name) && all_digits (name))
Jari Aalto726f6381996-08-26 18:22:31 +00005658 return 1;
5659 else if (var_is_special)
5660 return 1;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005661#if defined (ARRAY_VARS)
5662 else if (valid_array_reference (name))
5663 return 1;
5664#endif /* ARRAY_VARS */
Jari Aalto726f6381996-08-26 18:22:31 +00005665 else if (legal_identifier (name))
5666 return 1;
5667 else
5668 return 0;
5669}
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005670
Jari Aaltob80f6442004-07-27 13:29:18 +00005671static int
5672chk_atstar (name, quoted, quoted_dollar_atp, contains_dollar_at)
5673 char *name;
5674 int quoted;
5675 int *quoted_dollar_atp, *contains_dollar_at;
5676{
5677 char *temp1;
5678
5679 if (name == 0)
5680 {
5681 if (quoted_dollar_atp)
5682 *quoted_dollar_atp = 0;
5683 if (contains_dollar_at)
5684 *contains_dollar_at = 0;
5685 return 0;
5686 }
5687
5688 /* check for $@ and $* */
5689 if (name[0] == '@' && name[1] == 0)
5690 {
5691 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && quoted_dollar_atp)
5692 *quoted_dollar_atp = 1;
5693 if (contains_dollar_at)
5694 *contains_dollar_at = 1;
5695 return 1;
5696 }
5697 else if (name[0] == '*' && name[1] == '\0' && quoted == 0)
5698 {
5699 if (contains_dollar_at)
5700 *contains_dollar_at = 1;
5701 return 1;
5702 }
5703
5704 /* Now check for ${array[@]} and ${array[*]} */
5705#if defined (ARRAY_VARS)
5706 else if (valid_array_reference (name))
5707 {
Chet Ramey00018032011-11-21 20:51:19 -05005708 temp1 = mbschr (name, '[');
Jari Aaltob80f6442004-07-27 13:29:18 +00005709 if (temp1 && temp1[1] == '@' && temp1[2] == ']')
5710 {
5711 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && quoted_dollar_atp)
5712 *quoted_dollar_atp = 1;
5713 if (contains_dollar_at)
5714 *contains_dollar_at = 1;
5715 return 1;
5716 } /* [ */
5717 /* ${array[*]}, when unquoted, should be treated like ${array[@]},
5718 which should result in separate words even when IFS is unset. */
5719 if (temp1 && temp1[1] == '*' && temp1[2] == ']' && quoted == 0)
5720 {
5721 if (contains_dollar_at)
5722 *contains_dollar_at = 1;
5723 return 1;
5724 }
5725 }
5726#endif
5727 return 0;
5728}
5729
Jari Aalto726f6381996-08-26 18:22:31 +00005730/* Parameter expand NAME, and return a new string which is the expansion,
5731 or NULL if there was no expansion.
5732 VAR_IS_SPECIAL is non-zero if NAME is one of the special variables in
5733 the shell, e.g., "@", "$", "*", etc. QUOTED, if non-zero, means that
5734 NAME was found inside of a double-quoted expression. */
Jari Aalto95732b42005-12-07 14:08:12 +00005735static WORD_DESC *
Chet Ramey495aee42011-11-22 19:11:26 -05005736parameter_brace_expand_word (name, var_is_special, quoted, pflags, indp)
Jari Aalto726f6381996-08-26 18:22:31 +00005737 char *name;
Chet Ramey89a92862011-11-21 20:49:12 -05005738 int var_is_special, quoted, pflags;
Chet Ramey495aee42011-11-22 19:11:26 -05005739 arrayind_t *indp;
Jari Aalto726f6381996-08-26 18:22:31 +00005740{
Jari Aalto95732b42005-12-07 14:08:12 +00005741 WORD_DESC *ret;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005742 char *temp, *tt;
Jari Aalto7117c2d2002-07-17 14:10:11 +00005743 intmax_t arg_index;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005744 SHELL_VAR *var;
Jari Aaltof1be6662008-11-18 13:15:12 +00005745 int atype, rflags;
Chet Ramey495aee42011-11-22 19:11:26 -05005746 arrayind_t ind;
Jari Aalto726f6381996-08-26 18:22:31 +00005747
Jari Aalto95732b42005-12-07 14:08:12 +00005748 ret = 0;
5749 temp = 0;
Jari Aaltof1be6662008-11-18 13:15:12 +00005750 rflags = 0;
Jari Aalto95732b42005-12-07 14:08:12 +00005751
Chet Ramey495aee42011-11-22 19:11:26 -05005752 if (indp)
5753 *indp = INTMAX_MIN;
5754
Jari Aalto95732b42005-12-07 14:08:12 +00005755 /* Handle multiple digit arguments, as in ${11}. */
Jari Aaltof73dda02001-11-13 17:56:06 +00005756 if (legal_number (name, &arg_index))
Jari Aalto7117c2d2002-07-17 14:10:11 +00005757 {
5758 tt = get_dollar_var_value (arg_index);
Jari Aaltob80f6442004-07-27 13:29:18 +00005759 if (tt)
5760 temp = (*tt && (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT)))
5761 ? quote_string (tt)
5762 : quote_escapes (tt);
5763 else
5764 temp = (char *)NULL;
Jari Aalto7117c2d2002-07-17 14:10:11 +00005765 FREE (tt);
5766 }
Jari Aalto726f6381996-08-26 18:22:31 +00005767 else if (var_is_special) /* ${@} */
5768 {
Jari Aaltocce855b1998-04-17 19:52:44 +00005769 int sindex;
Jari Aaltof73dda02001-11-13 17:56:06 +00005770 tt = (char *)xmalloc (2 + strlen (name));
Jari Aaltocce855b1998-04-17 19:52:44 +00005771 tt[sindex = 0] = '$';
Jari Aalto726f6381996-08-26 18:22:31 +00005772 strcpy (tt + 1, name);
Jari Aalto7117c2d2002-07-17 14:10:11 +00005773
Jari Aalto95732b42005-12-07 14:08:12 +00005774 ret = param_expand (tt, &sindex, quoted, (int *)NULL, (int *)NULL,
Chet Ramey89a92862011-11-21 20:49:12 -05005775 (int *)NULL, (int *)NULL, pflags);
Jari Aaltocce855b1998-04-17 19:52:44 +00005776 free (tt);
Jari Aalto726f6381996-08-26 18:22:31 +00005777 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005778#if defined (ARRAY_VARS)
5779 else if (valid_array_reference (name))
Jari Aalto726f6381996-08-26 18:22:31 +00005780 {
Chet Rameyac50fba2014-02-26 09:36:43 -05005781expand_arrayref:
5782 /* XXX - does this leak if name[@] or name[*]? */
5783 if (pflags & PF_ASSIGNRHS)
5784 {
Chet Ramey9987be72015-08-13 15:38:17 -04005785 var = array_variable_part (name, &tt, (int *)0);
Chet Rameyac50fba2014-02-26 09:36:43 -05005786 if (ALL_ELEMENT_SUB (tt[0]) && tt[1] == ']')
5787 temp = array_value (name, quoted|Q_DOUBLE_QUOTES, 0, &atype, &ind);
5788 else
5789 temp = array_value (name, quoted, 0, &atype, &ind);
5790 }
5791 else
5792 temp = array_value (name, quoted, 0, &atype, &ind);
Jari Aalto7117c2d2002-07-17 14:10:11 +00005793 if (atype == 0 && temp)
Chet Ramey495aee42011-11-22 19:11:26 -05005794 {
5795 temp = (*temp && (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT)))
5796 ? quote_string (temp)
5797 : quote_escapes (temp);
5798 rflags |= W_ARRAYIND;
5799 if (indp)
5800 *indp = ind;
5801 }
Jari Aaltof1be6662008-11-18 13:15:12 +00005802 else if (atype == 1 && temp && QUOTED_NULL (temp) && (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT)))
5803 rflags |= W_HASQUOTEDNULL;
Jari Aalto726f6381996-08-26 18:22:31 +00005804 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005805#endif
5806 else if (var = find_variable (name))
5807 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00005808 if (var_isset (var) && invisible_p (var) == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00005809 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005810#if defined (ARRAY_VARS)
Jari Aalto31859422009-01-12 13:36:28 +00005811 if (assoc_p (var))
5812 temp = assoc_reference (assoc_cell (var), "0");
5813 else if (array_p (var))
5814 temp = array_reference (array_cell (var), 0);
5815 else
5816 temp = value_cell (var);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005817#else
5818 temp = value_cell (var);
5819#endif
5820
5821 if (temp)
Jari Aaltob80f6442004-07-27 13:29:18 +00005822 temp = (*temp && (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT)))
5823 ? quote_string (temp)
5824 : quote_escapes (temp);
Jari Aalto28ef6c32001-04-06 19:14:31 +00005825 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005826 else
5827 temp = (char *)NULL;
5828 }
Chet Rameyac50fba2014-02-26 09:36:43 -05005829 else if (var = find_variable_last_nameref (name))
5830 {
5831 temp = nameref_cell (var);
5832#if defined (ARRAY_VARS)
5833 /* Handle expanding nameref whose value is x[n] */
5834 if (temp && *temp && valid_array_reference (temp))
5835 {
5836 name = temp;
5837 goto expand_arrayref;
5838 }
5839 else
5840#endif
5841 /* y=2 ; typeset -n x=y; echo ${x} is not the same as echo ${2} in ksh */
5842 if (temp && *temp && legal_identifier (temp) == 0)
5843 {
5844 last_command_exit_value = EXECUTION_FAILURE;
5845 report_error (_("%s: invalid variable name for name reference"), temp);
5846 temp = &expand_param_error;
5847 }
5848 else
5849 temp = (char *)NULL;
5850 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005851 else
5852 temp = (char *)NULL;
5853
Jari Aalto95732b42005-12-07 14:08:12 +00005854 if (ret == 0)
5855 {
5856 ret = alloc_word_desc ();
5857 ret->word = temp;
Jari Aaltof1be6662008-11-18 13:15:12 +00005858 ret->flags |= rflags;
Jari Aalto95732b42005-12-07 14:08:12 +00005859 }
5860 return ret;
Jari Aalto726f6381996-08-26 18:22:31 +00005861}
5862
Chet Rameyac50fba2014-02-26 09:36:43 -05005863static char *
5864parameter_brace_find_indir (name, var_is_special, quoted, find_nameref)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005865 char *name;
Chet Rameyac50fba2014-02-26 09:36:43 -05005866 int var_is_special, quoted, find_nameref;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005867{
5868 char *temp, *t;
Jari Aalto95732b42005-12-07 14:08:12 +00005869 WORD_DESC *w;
Chet Rameyac50fba2014-02-26 09:36:43 -05005870 SHELL_VAR *v;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005871
Chet Rameyac50fba2014-02-26 09:36:43 -05005872 if (find_nameref && var_is_special == 0 && (v = find_variable_last_nameref (name)) &&
5873 nameref_p (v) && (t = nameref_cell (v)) && *t)
5874 return (savestring (t));
5875
5876 /* If var_is_special == 0, and name is not an array reference, this does
5877 more expansion than necessary. It should really look up the variable's
5878 value and not try to expand it. */
Chet Ramey495aee42011-11-22 19:11:26 -05005879 w = parameter_brace_expand_word (name, var_is_special, quoted, PF_IGNUNBOUND, 0);
Jari Aalto95732b42005-12-07 14:08:12 +00005880 t = w->word;
Jari Aaltob80f6442004-07-27 13:29:18 +00005881 /* Have to dequote here if necessary */
5882 if (t)
5883 {
5884 temp = (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT))
5885 ? dequote_string (t)
5886 : dequote_escapes (t);
5887 free (t);
5888 t = temp;
5889 }
Jari Aalto95732b42005-12-07 14:08:12 +00005890 dispose_word_desc (w);
5891
Chet Rameyac50fba2014-02-26 09:36:43 -05005892 return t;
5893}
5894
5895/* Expand an indirect reference to a variable: ${!NAME} expands to the
5896 value of the variable whose name is the value of NAME. */
5897static WORD_DESC *
5898parameter_brace_expand_indir (name, var_is_special, quoted, quoted_dollar_atp, contains_dollar_at)
5899 char *name;
5900 int var_is_special, quoted;
5901 int *quoted_dollar_atp, *contains_dollar_at;
5902{
5903 char *temp, *t;
5904 WORD_DESC *w;
5905 SHELL_VAR *v;
5906
5907 /* See if it's a nameref first, behave in ksh93-compatible fashion.
5908 There is at least one incompatibility: given ${!foo[0]} where foo=bar,
5909 bash performs an indirect lookup on foo[0] and expands the result;
5910 ksh93 expands bar[0]. We could do that here -- there are enough usable
5911 primitives to do that -- but do not at this point. */
5912 if (var_is_special == 0 && (v = find_variable_last_nameref (name)))
5913 {
5914 if (nameref_p (v) && (t = nameref_cell (v)) && *t)
5915 {
5916 w = alloc_word_desc ();
5917 w->word = savestring (t);
5918 w->flags = 0;
5919 return w;
5920 }
5921 }
5922
5923 t = parameter_brace_find_indir (name, var_is_special, quoted, 0);
5924
Jari Aaltob80f6442004-07-27 13:29:18 +00005925 chk_atstar (t, quoted, quoted_dollar_atp, contains_dollar_at);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005926 if (t == 0)
Jari Aalto95732b42005-12-07 14:08:12 +00005927 return (WORD_DESC *)NULL;
5928
Chet Ramey495aee42011-11-22 19:11:26 -05005929 w = parameter_brace_expand_word (t, SPECIAL_VAR(t, 0), quoted, 0, 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005930 free (t);
Jari Aalto95732b42005-12-07 14:08:12 +00005931
5932 return w;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005933}
5934
Jari Aalto726f6381996-08-26 18:22:31 +00005935/* Expand the right side of a parameter expansion of the form ${NAMEcVALUE},
5936 depending on the value of C, the separating character. C can be one of
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005937 "-", "+", or "=". QUOTED is true if the entire brace expression occurs
5938 between double quotes. */
Jari Aalto95732b42005-12-07 14:08:12 +00005939static WORD_DESC *
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005940parameter_brace_expand_rhs (name, value, c, quoted, qdollaratp, hasdollarat)
Jari Aalto726f6381996-08-26 18:22:31 +00005941 char *name, *value;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005942 int c, quoted, *qdollaratp, *hasdollarat;
Jari Aalto726f6381996-08-26 18:22:31 +00005943{
Jari Aalto95732b42005-12-07 14:08:12 +00005944 WORD_DESC *w;
Jari Aalto726f6381996-08-26 18:22:31 +00005945 WORD_LIST *l;
5946 char *t, *t1, *temp;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005947 int hasdol;
Jari Aalto726f6381996-08-26 18:22:31 +00005948
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005949 /* If the entire expression is between double quotes, we want to treat
5950 the value as a double-quoted string, with the exception that we strip
Jari Aalto31859422009-01-12 13:36:28 +00005951 embedded unescaped double quotes (for sh backwards compatibility). */
Jari Aalto95732b42005-12-07 14:08:12 +00005952 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && *value)
Jari Aalto726f6381996-08-26 18:22:31 +00005953 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005954 hasdol = 0;
Jari Aalto95732b42005-12-07 14:08:12 +00005955 temp = string_extract_double_quoted (value, &hasdol, 1);
Jari Aalto726f6381996-08-26 18:22:31 +00005956 }
Jari Aalto95732b42005-12-07 14:08:12 +00005957 else
5958 temp = value;
Jari Aalto726f6381996-08-26 18:22:31 +00005959
Jari Aalto95732b42005-12-07 14:08:12 +00005960 w = alloc_word_desc ();
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005961 hasdol = 0;
5962 /* XXX was 0 not quoted */
5963 l = *temp ? expand_string_for_rhs (temp, quoted, &hasdol, (int *)NULL)
5964 : (WORD_LIST *)0;
5965 if (hasdollarat)
5966 *hasdollarat = hasdol || (l && l->next);
Jari Aalto95732b42005-12-07 14:08:12 +00005967 if (temp != value)
5968 free (temp);
Jari Aalto726f6381996-08-26 18:22:31 +00005969 if (l)
5970 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005971 /* The expansion of TEMP returned something. We need to treat things
Jari Aaltob80f6442004-07-27 13:29:18 +00005972 slightly differently if HASDOL is non-zero. If we have "$@", the
5973 individual words have already been quoted. We need to turn them
5974 into a string with the words separated by the first character of
5975 $IFS without any additional quoting, so string_list_dollar_at won't
5976 do the right thing. We use string_list_dollar_star instead. */
5977 temp = (hasdol || l->next) ? string_list_dollar_star (l) : string_list (l);
5978
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005979 /* If l->next is not null, we know that TEMP contained "$@", since that
5980 is the only expansion that creates more than one word. */
Jari Aaltob80f6442004-07-27 13:29:18 +00005981 if (qdollaratp && ((hasdol && quoted) || l->next))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005982 *qdollaratp = 1;
Chet Rameycd110fd2012-05-07 16:23:39 -04005983 /* If we have a quoted null result (QUOTED_NULL(temp)) and the word is
5984 a quoted null (l->next == 0 && QUOTED_NULL(l->word->word)), the
5985 flags indicate it (l->word->flags & W_HASQUOTEDNULL), and the
5986 expansion is quoted (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
5987 (which is more paranoia than anything else), we need to return the
5988 quoted null string and set the flags to indicate it. */
Chet Rameyac50fba2014-02-26 09:36:43 -05005989 if (l->next == 0 && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && QUOTED_NULL (temp) && QUOTED_NULL (l->word->word) && (l->word->flags & W_HASQUOTEDNULL))
Chet Rameycd110fd2012-05-07 16:23:39 -04005990 {
5991 w->flags |= W_HASQUOTEDNULL;
5992 }
Jari Aalto726f6381996-08-26 18:22:31 +00005993 dispose_words (l);
5994 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005995 else if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && hasdol)
Jari Aalto726f6381996-08-26 18:22:31 +00005996 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00005997 /* The brace expansion occurred between double quotes and there was
5998 a $@ in TEMP. It does not matter if the $@ is quoted, as long as
Jari Aalto7117c2d2002-07-17 14:10:11 +00005999 it does not expand to anything. In this case, we want to return
6000 a quoted empty string. */
Jari Aalto06285672006-10-10 14:15:34 +00006001 temp = make_quoted_char ('\0');
Jari Aalto95732b42005-12-07 14:08:12 +00006002 w->flags |= W_HASQUOTEDNULL;
Jari Aalto726f6381996-08-26 18:22:31 +00006003 }
6004 else
6005 temp = (char *)NULL;
6006
6007 if (c == '-' || c == '+')
Jari Aalto95732b42005-12-07 14:08:12 +00006008 {
6009 w->word = temp;
6010 return w;
6011 }
Jari Aalto726f6381996-08-26 18:22:31 +00006012
6013 /* c == '=' */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006014 t = temp ? savestring (temp) : savestring ("");
Jari Aalto726f6381996-08-26 18:22:31 +00006015 t1 = dequote_string (t);
6016 free (t);
Jari Aaltob80f6442004-07-27 13:29:18 +00006017#if defined (ARRAY_VARS)
6018 if (valid_array_reference (name))
Jari Aalto95732b42005-12-07 14:08:12 +00006019 assign_array_element (name, t1, 0);
Jari Aaltob80f6442004-07-27 13:29:18 +00006020 else
6021#endif /* ARRAY_VARS */
Jari Aalto95732b42005-12-07 14:08:12 +00006022 bind_variable (name, t1, 0);
Chet Rameyac50fba2014-02-26 09:36:43 -05006023#if 0
6024 if (STREQ (name, "IFS") == 0)
6025#endif
6026 stupidly_hack_special_variables (name);
Jari Aalto95732b42005-12-07 14:08:12 +00006027
Chet Ramey495aee42011-11-22 19:11:26 -05006028 /* From Posix group discussion Feb-March 2010. Issue 7 0000221 */
6029 free (temp);
6030
6031 w->word = t1;
Jari Aalto95732b42005-12-07 14:08:12 +00006032 return w;
Jari Aalto726f6381996-08-26 18:22:31 +00006033}
6034
6035/* Deal with the right hand side of a ${name:?value} expansion in the case
6036 that NAME is null or not set. If VALUE is non-null it is expanded and
6037 used as the error message to print, otherwise a standard message is
6038 printed. */
6039static void
6040parameter_brace_expand_error (name, value)
6041 char *name, *value;
6042{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006043 WORD_LIST *l;
6044 char *temp;
6045
Chet Rameyac50fba2014-02-26 09:36:43 -05006046 last_command_exit_value = EXECUTION_FAILURE; /* ensure it's non-zero */
Jari Aalto726f6381996-08-26 18:22:31 +00006047 if (value && *value)
6048 {
Jari Aalto95732b42005-12-07 14:08:12 +00006049 l = expand_string (value, 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006050 temp = string_list (l);
6051 report_error ("%s: %s", name, temp ? temp : ""); /* XXX was value not "" */
6052 FREE (temp);
Jari Aalto726f6381996-08-26 18:22:31 +00006053 dispose_words (l);
6054 }
6055 else
Jari Aaltob80f6442004-07-27 13:29:18 +00006056 report_error (_("%s: parameter null or not set"), name);
Jari Aalto726f6381996-08-26 18:22:31 +00006057
6058 /* Free the data we have allocated during this expansion, since we
6059 are about to longjmp out. */
6060 free (name);
6061 FREE (value);
6062}
6063
6064/* Return 1 if NAME is something for which parameter_brace_expand_length is
6065 OK to do. */
6066static int
6067valid_length_expression (name)
6068 char *name;
6069{
Jari Aalto28ef6c32001-04-06 19:14:31 +00006070 return (name[1] == '\0' || /* ${#} */
Jari Aaltof73dda02001-11-13 17:56:06 +00006071 ((sh_syntaxtab[(unsigned char) name[1]] & CSPECVAR) && name[2] == '\0') || /* special param */
6072 (DIGIT (name[1]) && all_digits (name + 1)) || /* ${#11} */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006073#if defined (ARRAY_VARS)
6074 valid_array_reference (name + 1) || /* ${#a[7]} */
6075#endif
Jari Aalto726f6381996-08-26 18:22:31 +00006076 legal_identifier (name + 1)); /* ${#PS1} */
6077}
6078
6079/* Handle the parameter brace expansion that requires us to return the
6080 length of a parameter. */
Jari Aalto7117c2d2002-07-17 14:10:11 +00006081static intmax_t
Jari Aalto726f6381996-08-26 18:22:31 +00006082parameter_brace_expand_length (name)
6083 char *name;
6084{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006085 char *t, *newname;
Jari Aalto7117c2d2002-07-17 14:10:11 +00006086 intmax_t number, arg_index;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006087 WORD_LIST *list;
6088#if defined (ARRAY_VARS)
6089 SHELL_VAR *var;
6090#endif
Jari Aalto726f6381996-08-26 18:22:31 +00006091
6092 if (name[1] == '\0') /* ${#} */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006093 number = number_of_args ();
Jari Aaltocce855b1998-04-17 19:52:44 +00006094 else if ((name[1] == '@' || name[1] == '*') && name[2] == '\0') /* ${#@}, ${#*} */
6095 number = number_of_args ();
Jari Aaltof73dda02001-11-13 17:56:06 +00006096 else if ((sh_syntaxtab[(unsigned char) name[1]] & CSPECVAR) && name[2] == '\0')
Jari Aaltocce855b1998-04-17 19:52:44 +00006097 {
6098 /* Take the lengths of some of the shell's special parameters. */
6099 switch (name[1])
6100 {
6101 case '-':
6102 t = which_set_flags ();
6103 break;
6104 case '?':
6105 t = itos (last_command_exit_value);
6106 break;
6107 case '$':
6108 t = itos (dollar_dollar_pid);
6109 break;
6110 case '!':
6111 if (last_asynchronous_pid == NO_PID)
Chet Ramey495aee42011-11-22 19:11:26 -05006112 t = (char *)NULL; /* XXX - error if set -u set? */
Jari Aaltocce855b1998-04-17 19:52:44 +00006113 else
Jari Aaltof73dda02001-11-13 17:56:06 +00006114 t = itos (last_asynchronous_pid);
Jari Aaltocce855b1998-04-17 19:52:44 +00006115 break;
6116 case '#':
6117 t = itos (number_of_args ());
6118 break;
6119 }
6120 number = STRLEN (t);
6121 FREE (t);
6122 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006123#if defined (ARRAY_VARS)
6124 else if (valid_array_reference (name + 1))
6125 number = array_length_reference (name + 1);
6126#endif /* ARRAY_VARS */
Jari Aaltocce855b1998-04-17 19:52:44 +00006127 else
Jari Aalto726f6381996-08-26 18:22:31 +00006128 {
6129 number = 0;
6130
Jari Aaltof73dda02001-11-13 17:56:06 +00006131 if (legal_number (name + 1, &arg_index)) /* ${#1} */
Jari Aalto726f6381996-08-26 18:22:31 +00006132 {
Jari Aaltof73dda02001-11-13 17:56:06 +00006133 t = get_dollar_var_value (arg_index);
Chet Ramey495aee42011-11-22 19:11:26 -05006134 if (t == 0 && unbound_vars_is_error)
6135 return INTMAX_MIN;
Jari Aaltoeb873672004-11-09 21:37:25 +00006136 number = MB_STRLEN (t);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006137 FREE (t);
Jari Aalto726f6381996-08-26 18:22:31 +00006138 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006139#if defined (ARRAY_VARS)
Jari Aalto31859422009-01-12 13:36:28 +00006140 else if ((var = find_variable (name + 1)) && (invisible_p (var) == 0) && (array_p (var) || assoc_p (var)))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006141 {
Jari Aalto31859422009-01-12 13:36:28 +00006142 if (assoc_p (var))
6143 t = assoc_reference (assoc_cell (var), "0");
6144 else
6145 t = array_reference (array_cell (var), 0);
Chet Ramey495aee42011-11-22 19:11:26 -05006146 if (t == 0 && unbound_vars_is_error)
6147 return INTMAX_MIN;
Jari Aaltoeb873672004-11-09 21:37:25 +00006148 number = MB_STRLEN (t);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006149 }
6150#endif
Jari Aalto726f6381996-08-26 18:22:31 +00006151 else /* ${#PS1} */
6152 {
Jari Aalto726f6381996-08-26 18:22:31 +00006153 newname = savestring (name);
6154 newname[0] = '$';
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006155 list = expand_string (newname, Q_DOUBLE_QUOTES);
6156 t = list ? string_list (list) : (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +00006157 free (newname);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006158 if (list)
6159 dispose_words (list);
Jari Aalto726f6381996-08-26 18:22:31 +00006160
Chet Ramey495aee42011-11-22 19:11:26 -05006161 number = t ? MB_STRLEN (t) : 0;
Jari Aalto726f6381996-08-26 18:22:31 +00006162 FREE (t);
6163 }
6164 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006165
Jari Aalto726f6381996-08-26 18:22:31 +00006166 return (number);
6167}
6168
Jari Aalto28ef6c32001-04-06 19:14:31 +00006169/* Skip characters in SUBSTR until DELIM. SUBSTR is an arithmetic expression,
6170 so we do some ad-hoc parsing of an arithmetic expression to find
6171 the first DELIM, instead of using strchr(3). Two rules:
6172 1. If the substring contains a `(', read until closing `)'.
6173 2. If the substring contains a `?', read past one `:' for each `?'.
6174*/
6175
6176static char *
6177skiparith (substr, delim)
6178 char *substr;
6179 int delim;
6180{
Jari Aalto7117c2d2002-07-17 14:10:11 +00006181 size_t sublen;
6182 int skipcol, pcount, i;
6183 DECLARE_MBSTATE;
Jari Aalto28ef6c32001-04-06 19:14:31 +00006184
Jari Aalto7117c2d2002-07-17 14:10:11 +00006185 sublen = strlen (substr);
6186 i = skipcol = pcount = 0;
6187 while (substr[i])
Jari Aalto28ef6c32001-04-06 19:14:31 +00006188 {
6189 /* Balance parens */
Jari Aalto7117c2d2002-07-17 14:10:11 +00006190 if (substr[i] == LPAREN)
Jari Aalto28ef6c32001-04-06 19:14:31 +00006191 {
6192 pcount++;
Jari Aalto7117c2d2002-07-17 14:10:11 +00006193 i++;
Jari Aalto28ef6c32001-04-06 19:14:31 +00006194 continue;
6195 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00006196 if (substr[i] == RPAREN && pcount)
Jari Aalto28ef6c32001-04-06 19:14:31 +00006197 {
6198 pcount--;
Jari Aalto7117c2d2002-07-17 14:10:11 +00006199 i++;
Jari Aalto28ef6c32001-04-06 19:14:31 +00006200 continue;
6201 }
6202 if (pcount)
Jari Aalto7117c2d2002-07-17 14:10:11 +00006203 {
6204 ADVANCE_CHAR (substr, sublen, i);
6205 continue;
6206 }
Jari Aalto28ef6c32001-04-06 19:14:31 +00006207
6208 /* Skip one `:' for each `?' */
Jari Aalto7117c2d2002-07-17 14:10:11 +00006209 if (substr[i] == ':' && skipcol)
Jari Aalto28ef6c32001-04-06 19:14:31 +00006210 {
6211 skipcol--;
Jari Aalto7117c2d2002-07-17 14:10:11 +00006212 i++;
Jari Aalto28ef6c32001-04-06 19:14:31 +00006213 continue;
6214 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00006215 if (substr[i] == delim)
Jari Aalto28ef6c32001-04-06 19:14:31 +00006216 break;
Jari Aalto7117c2d2002-07-17 14:10:11 +00006217 if (substr[i] == '?')
Jari Aalto28ef6c32001-04-06 19:14:31 +00006218 {
6219 skipcol++;
Jari Aalto7117c2d2002-07-17 14:10:11 +00006220 i++;
Jari Aalto28ef6c32001-04-06 19:14:31 +00006221 continue;
6222 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00006223 ADVANCE_CHAR (substr, sublen, i);
Jari Aalto28ef6c32001-04-06 19:14:31 +00006224 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00006225
6226 return (substr + i);
Jari Aalto28ef6c32001-04-06 19:14:31 +00006227}
6228
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006229/* Verify and limit the start and end of the desired substring. If
6230 VTYPE == 0, a regular shell variable is being used; if it is 1,
Jari Aaltocce855b1998-04-17 19:52:44 +00006231 then the positional parameters are being used; if it is 2, then
Jari Aaltoe8ce7751997-09-22 20:22:27 +00006232 VALUE is really a pointer to an array variable that should be used.
6233 Return value is 1 if both values were OK, 0 if there was a problem
6234 with an invalid expression, or -1 if the values were out of range. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006235static int
Jari Aalto31859422009-01-12 13:36:28 +00006236verify_substring_values (v, value, substr, vtype, e1p, e2p)
6237 SHELL_VAR *v;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006238 char *value, *substr;
Jari Aaltof73dda02001-11-13 17:56:06 +00006239 int vtype;
Jari Aalto7117c2d2002-07-17 14:10:11 +00006240 intmax_t *e1p, *e2p;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006241{
Jari Aaltobb706242000-03-17 21:46:59 +00006242 char *t, *temp1, *temp2;
Jari Aaltof73dda02001-11-13 17:56:06 +00006243 arrayind_t len;
6244 int expok;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006245#if defined (ARRAY_VARS)
6246 ARRAY *a;
Jari Aalto31859422009-01-12 13:36:28 +00006247 HASH_TABLE *h;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006248#endif
6249
Jari Aalto28ef6c32001-04-06 19:14:31 +00006250 /* duplicate behavior of strchr(3) */
6251 t = skiparith (substr, ':');
6252 if (*t && *t == ':')
Jari Aalto7117c2d2002-07-17 14:10:11 +00006253 *t = '\0';
Jari Aalto28ef6c32001-04-06 19:14:31 +00006254 else
6255 t = (char *)0;
Jari Aaltof73dda02001-11-13 17:56:06 +00006256
Jari Aalto06285672006-10-10 14:15:34 +00006257 temp1 = expand_arith_string (substr, Q_DOUBLE_QUOTES);
Jari Aaltod166f041997-06-05 14:59:13 +00006258 *e1p = evalexp (temp1, &expok);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006259 free (temp1);
Jari Aaltod166f041997-06-05 14:59:13 +00006260 if (expok == 0)
6261 return (0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006262
Jari Aaltof73dda02001-11-13 17:56:06 +00006263 len = -1; /* paranoia */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006264 switch (vtype)
6265 {
6266 case VT_VARIABLE:
Jari Aaltod166f041997-06-05 14:59:13 +00006267 case VT_ARRAYMEMBER:
Jari Aaltoeb873672004-11-09 21:37:25 +00006268 len = MB_STRLEN (value);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006269 break;
6270 case VT_POSPARMS:
6271 len = number_of_args () + 1;
Jari Aalto31859422009-01-12 13:36:28 +00006272 if (*e1p == 0)
6273 len++; /* add one arg if counting from $0 */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006274 break;
6275#if defined (ARRAY_VARS)
6276 case VT_ARRAYVAR:
Jari Aaltoeb873672004-11-09 21:37:25 +00006277 /* For arrays, the first value deals with array indices. Negative
Jari Aalto31859422009-01-12 13:36:28 +00006278 offsets count from one past the array's maximum index. Associative
6279 arrays treat the number of elements as the maximum index. */
6280 if (assoc_p (v))
6281 {
6282 h = assoc_cell (v);
6283 len = assoc_num_elements (h) + (*e1p < 0);
6284 }
6285 else
6286 {
6287 a = (ARRAY *)value;
6288 len = array_max_index (a) + (*e1p < 0); /* arrays index from 0 to n - 1 */
6289 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006290 break;
6291#endif
6292 }
6293
Jari Aaltof73dda02001-11-13 17:56:06 +00006294 if (len == -1) /* paranoia */
6295 return -1;
6296
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006297 if (*e1p < 0) /* negative offsets count from end */
6298 *e1p += len;
6299
Jari Aaltoeb873672004-11-09 21:37:25 +00006300 if (*e1p > len || *e1p < 0)
Jari Aaltoe8ce7751997-09-22 20:22:27 +00006301 return (-1);
Jari Aaltod166f041997-06-05 14:59:13 +00006302
Jari Aaltob80f6442004-07-27 13:29:18 +00006303#if defined (ARRAY_VARS)
6304 /* For arrays, the second offset deals with the number of elements. */
6305 if (vtype == VT_ARRAYVAR)
Jari Aalto31859422009-01-12 13:36:28 +00006306 len = assoc_p (v) ? assoc_num_elements (h) : array_num_elements (a);
Jari Aaltob80f6442004-07-27 13:29:18 +00006307#endif
6308
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006309 if (t)
6310 {
6311 t++;
Jari Aaltobb706242000-03-17 21:46:59 +00006312 temp2 = savestring (t);
Jari Aalto06285672006-10-10 14:15:34 +00006313 temp1 = expand_arith_string (temp2, Q_DOUBLE_QUOTES);
Jari Aaltobb706242000-03-17 21:46:59 +00006314 free (temp2);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006315 t[-1] = ':';
Jari Aaltod166f041997-06-05 14:59:13 +00006316 *e2p = evalexp (temp1, &expok);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006317 free (temp1);
Jari Aaltod166f041997-06-05 14:59:13 +00006318 if (expok == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00006319 return (0);
Chet Rameyac50fba2014-02-26 09:36:43 -05006320#if 1
Chet Ramey495aee42011-11-22 19:11:26 -05006321 if ((vtype == VT_ARRAYVAR || vtype == VT_POSPARMS) && *e2p < 0)
Chet Rameyac50fba2014-02-26 09:36:43 -05006322#else
6323 /* bash-4.3: allow positional parameter length < 0 to count backwards
6324 from end of positional parameters */
6325 if (vtype == VT_ARRAYVAR && *e2p < 0)
6326#endif
Jari Aalto28ef6c32001-04-06 19:14:31 +00006327 {
Jari Aaltob80f6442004-07-27 13:29:18 +00006328 internal_error (_("%s: substring expression < 0"), t);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006329 return (0);
Jari Aalto28ef6c32001-04-06 19:14:31 +00006330 }
Jari Aaltob80f6442004-07-27 13:29:18 +00006331#if defined (ARRAY_VARS)
6332 /* In order to deal with sparse arrays, push the intelligence about how
6333 to deal with the number of elements desired down to the array-
6334 specific functions. */
6335 if (vtype != VT_ARRAYVAR)
6336#endif
6337 {
Chet Ramey495aee42011-11-22 19:11:26 -05006338 if (*e2p < 0)
6339 {
6340 *e2p += len;
6341 if (*e2p < 0 || *e2p < *e1p)
6342 {
6343 internal_error (_("%s: substring expression < 0"), t);
6344 return (0);
6345 }
6346 }
6347 else
6348 *e2p += *e1p; /* want E2 chars starting at E1 */
Jari Aaltob80f6442004-07-27 13:29:18 +00006349 if (*e2p > len)
6350 *e2p = len;
6351 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006352 }
6353 else
6354 *e2p = len;
6355
6356 return (1);
6357}
6358
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006359/* Return the type of variable specified by VARNAME (simple variable,
Jari Aaltocce855b1998-04-17 19:52:44 +00006360 positional param, or array variable). Also return the value specified
Jari Aalto7117c2d2002-07-17 14:10:11 +00006361 by VARNAME (value of a variable or a reference to an array element).
Chet Ramey495aee42011-11-22 19:11:26 -05006362 QUOTED is the standard description of quoting state, using Q_* defines.
6363 FLAGS is currently a set of flags to pass to array_value. If IND is
6364 non-null and not INTMAX_MIN, and FLAGS includes AV_USEIND, IND is
6365 passed to array_value so the array index is not computed again.
Jari Aalto7117c2d2002-07-17 14:10:11 +00006366 If this returns VT_VARIABLE, the caller assumes that CTLESC and CTLNUL
6367 characters in the value are quoted with CTLESC and takes appropriate
6368 steps. For convenience, *VALP is set to the dequoted VALUE. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006369static int
Chet Ramey495aee42011-11-22 19:11:26 -05006370get_var_and_type (varname, value, ind, quoted, flags, varp, valp)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006371 char *varname, *value;
Chet Ramey495aee42011-11-22 19:11:26 -05006372 arrayind_t ind;
6373 int quoted, flags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006374 SHELL_VAR **varp;
6375 char **valp;
6376{
Chet Rameyac50fba2014-02-26 09:36:43 -05006377 int vtype, want_indir;
6378 char *temp, *vname;
6379 WORD_DESC *wd;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006380#if defined (ARRAY_VARS)
6381 SHELL_VAR *v;
6382#endif
Chet Ramey495aee42011-11-22 19:11:26 -05006383 arrayind_t lind;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006384
Chet Rameyac50fba2014-02-26 09:36:43 -05006385 want_indir = *varname == '!' &&
6386 (legal_variable_starter ((unsigned char)varname[1]) || DIGIT (varname[1])
6387 || VALID_INDIR_PARAM (varname[1]));
6388 if (want_indir)
6389 vname = parameter_brace_find_indir (varname+1, SPECIAL_VAR (varname, 1), quoted, 1);
6390 else
6391 vname = varname;
6392
Jari Aalto7117c2d2002-07-17 14:10:11 +00006393 /* This sets vtype to VT_VARIABLE or VT_POSPARMS */
Chet Rameyac50fba2014-02-26 09:36:43 -05006394 vtype = (vname[0] == '@' || vname[0] == '*') && vname[1] == '\0';
6395 if (vtype == VT_POSPARMS && vname[0] == '*')
Jari Aaltob80f6442004-07-27 13:29:18 +00006396 vtype |= VT_STARSUB;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006397 *varp = (SHELL_VAR *)NULL;
6398
6399#if defined (ARRAY_VARS)
Chet Rameyac50fba2014-02-26 09:36:43 -05006400 if (valid_array_reference (vname))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006401 {
Chet Rameyac50fba2014-02-26 09:36:43 -05006402 v = array_variable_part (vname, &temp, (int *)0);
Chet Ramey495aee42011-11-22 19:11:26 -05006403 /* If we want to signal array_value to use an already-computed index,
6404 set LIND to that index */
6405 lind = (ind != INTMAX_MIN && (flags & AV_USEIND)) ? ind : 0;
Chet Rameyac50fba2014-02-26 09:36:43 -05006406 if (v && invisible_p (v))
6407 {
6408 vtype = VT_ARRAYMEMBER;
6409 *varp = (SHELL_VAR *)NULL;
6410 *valp = (char *)NULL;
6411 }
Jari Aalto31859422009-01-12 13:36:28 +00006412 if (v && (array_p (v) || assoc_p (v)))
Jari Aaltof73dda02001-11-13 17:56:06 +00006413 { /* [ */
6414 if (ALL_ELEMENT_SUB (temp[0]) && temp[1] == ']')
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006415 {
Chet Rameyac50fba2014-02-26 09:36:43 -05006416 /* Callers have to differentiate between indexed and associative */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006417 vtype = VT_ARRAYVAR;
Jari Aaltob80f6442004-07-27 13:29:18 +00006418 if (temp[0] == '*')
6419 vtype |= VT_STARSUB;
Jari Aalto31859422009-01-12 13:36:28 +00006420 *valp = array_p (v) ? (char *)array_cell (v) : (char *)assoc_cell (v);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006421 }
6422 else
6423 {
Jari Aaltod166f041997-06-05 14:59:13 +00006424 vtype = VT_ARRAYMEMBER;
Chet Rameyac50fba2014-02-26 09:36:43 -05006425 *valp = array_value (vname, Q_DOUBLE_QUOTES, flags, (int *)NULL, &lind);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006426 }
6427 *varp = v;
6428 }
Jari Aalto95732b42005-12-07 14:08:12 +00006429 else if (v && (ALL_ELEMENT_SUB (temp[0]) && temp[1] == ']'))
6430 {
6431 vtype = VT_VARIABLE;
6432 *varp = v;
6433 if (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT))
6434 *valp = dequote_string (value);
6435 else
6436 *valp = dequote_escapes (value);
6437 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006438 else
Jari Aalto31859422009-01-12 13:36:28 +00006439 {
6440 vtype = VT_ARRAYMEMBER;
6441 *varp = v;
Chet Rameyac50fba2014-02-26 09:36:43 -05006442 *valp = array_value (vname, Q_DOUBLE_QUOTES, flags, (int *)NULL, &lind);
Jari Aalto31859422009-01-12 13:36:28 +00006443 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006444 }
Chet Rameyac50fba2014-02-26 09:36:43 -05006445 else if ((v = find_variable (vname)) && (invisible_p (v) == 0) && (assoc_p (v) || array_p (v)))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006446 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00006447 vtype = VT_ARRAYMEMBER;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006448 *varp = v;
Jari Aalto31859422009-01-12 13:36:28 +00006449 *valp = assoc_p (v) ? assoc_reference (assoc_cell (v), "0") : array_reference (array_cell (v), 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006450 }
6451 else
6452#endif
Jari Aaltob80f6442004-07-27 13:29:18 +00006453 {
6454 if (value && vtype == VT_VARIABLE)
6455 {
6456 if (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT))
6457 *valp = dequote_string (value);
6458 else
6459 *valp = dequote_escapes (value);
6460 }
6461 else
6462 *valp = value;
6463 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006464
Chet Rameyac50fba2014-02-26 09:36:43 -05006465 if (want_indir)
6466 free (vname);
6467
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006468 return vtype;
6469}
6470
Jari Aaltocce855b1998-04-17 19:52:44 +00006471/******************************************************/
6472/* */
6473/* Functions to extract substrings of variable values */
6474/* */
6475/******************************************************/
6476
Jari Aaltob80f6442004-07-27 13:29:18 +00006477#if defined (HANDLE_MULTIBYTE)
6478/* Character-oriented rather than strictly byte-oriented substrings. S and
6479 E, rather being strict indices into STRING, indicate character (possibly
6480 multibyte character) positions that require calculation.
6481 Used by the ${param:offset[:length]} expansion. */
6482static char *
6483mb_substring (string, s, e)
6484 char *string;
6485 int s, e;
6486{
6487 char *tt;
6488 int start, stop, i, slen;
6489 DECLARE_MBSTATE;
6490
6491 start = 0;
Jari Aalto95732b42005-12-07 14:08:12 +00006492 /* Don't need string length in ADVANCE_CHAR unless multibyte chars possible. */
6493 slen = (MB_CUR_MAX > 1) ? STRLEN (string) : 0;
Jari Aaltob80f6442004-07-27 13:29:18 +00006494
6495 i = s;
6496 while (string[start] && i--)
6497 ADVANCE_CHAR (string, slen, start);
6498 stop = start;
6499 i = e - s;
6500 while (string[stop] && i--)
6501 ADVANCE_CHAR (string, slen, stop);
6502 tt = substring (string, start, stop);
6503 return tt;
6504}
6505#endif
6506
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006507/* Process a variable substring expansion: ${name:e1[:e2]}. If VARNAME
6508 is `@', use the positional parameters; otherwise, use the value of
6509 VARNAME. If VARNAME is an array variable, use the array elements. */
6510
6511static char *
Chet Ramey495aee42011-11-22 19:11:26 -05006512parameter_brace_substring (varname, value, ind, substr, quoted, flags)
6513 char *varname, *value;
6514 int ind;
6515 char *substr;
6516 int quoted, flags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006517{
Jari Aalto7117c2d2002-07-17 14:10:11 +00006518 intmax_t e1, e2;
Jari Aaltob80f6442004-07-27 13:29:18 +00006519 int vtype, r, starsub;
Jari Aalto06285672006-10-10 14:15:34 +00006520 char *temp, *val, *tt, *oname;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006521 SHELL_VAR *v;
6522
6523 if (value == 0)
6524 return ((char *)NULL);
6525
Jari Aalto06285672006-10-10 14:15:34 +00006526 oname = this_command_name;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006527 this_command_name = varname;
6528
Chet Ramey495aee42011-11-22 19:11:26 -05006529 vtype = get_var_and_type (varname, value, ind, quoted, flags, &v, &val);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006530 if (vtype == -1)
Jari Aalto06285672006-10-10 14:15:34 +00006531 {
6532 this_command_name = oname;
6533 return ((char *)NULL);
6534 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006535
Jari Aaltob80f6442004-07-27 13:29:18 +00006536 starsub = vtype & VT_STARSUB;
6537 vtype &= ~VT_STARSUB;
6538
Jari Aalto31859422009-01-12 13:36:28 +00006539 r = verify_substring_values (v, val, substr, vtype, &e1, &e2);
Jari Aalto06285672006-10-10 14:15:34 +00006540 this_command_name = oname;
Jari Aaltoe8ce7751997-09-22 20:22:27 +00006541 if (r <= 0)
Chet Rameyac50fba2014-02-26 09:36:43 -05006542 {
6543 if (vtype == VT_VARIABLE)
6544 FREE (val);
6545 return ((r == 0) ? &expand_param_error : (char *)NULL);
6546 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006547
6548 switch (vtype)
6549 {
6550 case VT_VARIABLE:
Jari Aaltod166f041997-06-05 14:59:13 +00006551 case VT_ARRAYMEMBER:
Jari Aaltob80f6442004-07-27 13:29:18 +00006552#if defined (HANDLE_MULTIBYTE)
6553 if (MB_CUR_MAX > 1)
6554 tt = mb_substring (val, e1, e2);
6555 else
6556#endif
Jari Aalto7117c2d2002-07-17 14:10:11 +00006557 tt = substring (val, e1, e2);
Jari Aaltob80f6442004-07-27 13:29:18 +00006558
Jari Aalto7117c2d2002-07-17 14:10:11 +00006559 if (vtype == VT_VARIABLE)
6560 FREE (val);
6561 if (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT))
6562 temp = quote_string (tt);
6563 else
6564 temp = tt ? quote_escapes (tt) : (char *)NULL;
6565 FREE (tt);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006566 break;
6567 case VT_POSPARMS:
Jari Aalto7117c2d2002-07-17 14:10:11 +00006568 tt = pos_params (varname, e1, e2, quoted);
6569 if ((quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT)) == 0)
6570 {
6571 temp = tt ? quote_escapes (tt) : (char *)NULL;
6572 FREE (tt);
6573 }
6574 else
6575 temp = tt;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006576 break;
6577#if defined (ARRAY_VARS)
6578 case VT_ARRAYVAR:
Jari Aalto31859422009-01-12 13:36:28 +00006579 if (assoc_p (v))
6580 /* we convert to list and take first e2 elements starting at e1th
6581 element -- officially undefined for now */
6582 temp = assoc_subrange (assoc_cell (v), e1, e2, starsub, quoted);
6583 else
Jari Aaltob80f6442004-07-27 13:29:18 +00006584 /* We want E2 to be the number of elements desired (arrays can be sparse,
6585 so verify_substring_values just returns the numbers specified and we
6586 rely on array_subrange to understand how to deal with them). */
Jari Aalto31859422009-01-12 13:36:28 +00006587 temp = array_subrange (array_cell (v), e1, e2, starsub, quoted);
Jari Aaltof1be6662008-11-18 13:15:12 +00006588 /* array_subrange now calls array_quote_escapes as appropriate, so the
6589 caller no longer needs to. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006590 break;
6591#endif
Jari Aaltof73dda02001-11-13 17:56:06 +00006592 default:
6593 temp = (char *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006594 }
6595
6596 return temp;
6597}
6598
Jari Aaltocce855b1998-04-17 19:52:44 +00006599/****************************************************************/
6600/* */
6601/* Functions to perform pattern substitution on variable values */
6602/* */
6603/****************************************************************/
6604
Chet Ramey495aee42011-11-22 19:11:26 -05006605static int
6606shouldexp_replacement (s)
6607 char *s;
6608{
6609 register char *p;
6610
6611 for (p = s; p && *p; p++)
6612 {
6613 if (*p == '\\')
6614 p++;
6615 else if (*p == '&')
6616 return 1;
6617 }
6618 return 0;
6619}
6620
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006621char *
6622pat_subst (string, pat, rep, mflags)
6623 char *string, *pat, *rep;
6624 int mflags;
6625{
Chet Ramey495aee42011-11-22 19:11:26 -05006626 char *ret, *s, *e, *str, *rstr, *mstr;
6627 int rsize, rptr, l, replen, mtype, rxpand, rslen, mlen;
6628
6629 if (string == 0)
6630 return (savestring (""));
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006631
Jari Aaltob72432f1999-02-19 17:11:39 +00006632 mtype = mflags & MATCH_TYPEMASK;
6633
Chet Ramey495aee42011-11-22 19:11:26 -05006634#if 0 /* bash-4.2 ? */
6635 rxpand = (rep && *rep) ? shouldexp_replacement (rep) : 0;
6636#else
6637 rxpand = 0;
6638#endif
6639
Jari Aaltob72432f1999-02-19 17:11:39 +00006640 /* Special cases:
6641 * 1. A null pattern with mtype == MATCH_BEG means to prefix STRING
6642 * with REP and return the result.
6643 * 2. A null pattern with mtype == MATCH_END means to append REP to
6644 * STRING and return the result.
Chet Ramey495aee42011-11-22 19:11:26 -05006645 * These don't understand or process `&' in the replacement string.
Jari Aaltob72432f1999-02-19 17:11:39 +00006646 */
6647 if ((pat == 0 || *pat == 0) && (mtype == MATCH_BEG || mtype == MATCH_END))
6648 {
6649 replen = STRLEN (rep);
Chet Ramey495aee42011-11-22 19:11:26 -05006650 l = STRLEN (string);
Jari Aaltof73dda02001-11-13 17:56:06 +00006651 ret = (char *)xmalloc (replen + l + 2);
Jari Aaltobb706242000-03-17 21:46:59 +00006652 if (replen == 0)
6653 strcpy (ret, string);
6654 else if (mtype == MATCH_BEG)
Jari Aaltob72432f1999-02-19 17:11:39 +00006655 {
6656 strcpy (ret, rep);
6657 strcpy (ret + replen, string);
6658 }
6659 else
6660 {
6661 strcpy (ret, string);
6662 strcpy (ret + l, rep);
6663 }
6664 return (ret);
6665 }
6666
Jari Aaltof73dda02001-11-13 17:56:06 +00006667 ret = (char *)xmalloc (rsize = 64);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006668 ret[0] = '\0';
6669
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006670 for (replen = STRLEN (rep), rptr = 0, str = string;;)
6671 {
6672 if (match_pattern (str, pat, mtype, &s, &e) == 0)
6673 break;
6674 l = s - str;
Chet Ramey495aee42011-11-22 19:11:26 -05006675
6676 if (rxpand)
6677 {
6678 int x;
6679 mlen = e - s;
6680 mstr = xmalloc (mlen + 1);
6681 for (x = 0; x < mlen; x++)
6682 mstr[x] = s[x];
6683 mstr[mlen] = '\0';
6684 rstr = strcreplace (rep, '&', mstr, 0);
6685 rslen = strlen (rstr);
6686 }
6687 else
6688 {
6689 rstr = rep;
6690 rslen = replen;
6691 }
6692
6693 RESIZE_MALLOCED_BUFFER (ret, rptr, (l + rslen), rsize, 64);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006694
6695 /* OK, now copy the leading unmatched portion of the string (from
6696 str to s) to ret starting at rptr (the current offset). Then copy
Jari Aalto28ef6c32001-04-06 19:14:31 +00006697 the replacement string at ret + rptr + (s - str). Increment
6698 rptr (if necessary) and str and go on. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006699 if (l)
6700 {
6701 strncpy (ret + rptr, str, l);
6702 rptr += l;
6703 }
6704 if (replen)
6705 {
Chet Ramey495aee42011-11-22 19:11:26 -05006706 strncpy (ret + rptr, rstr, rslen);
6707 rptr += rslen;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006708 }
6709 str = e; /* e == end of match */
Jari Aaltob80f6442004-07-27 13:29:18 +00006710
Chet Ramey495aee42011-11-22 19:11:26 -05006711 if (rstr != rep)
6712 free (rstr);
6713
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006714 if (((mflags & MATCH_GLOBREP) == 0) || mtype != MATCH_ANY)
Jari Aalto28ef6c32001-04-06 19:14:31 +00006715 break;
Jari Aaltob80f6442004-07-27 13:29:18 +00006716
6717 if (s == e)
Chet Ramey00018032011-11-21 20:51:19 -05006718 {
6719 /* On a zero-length match, make sure we copy one character, since
6720 we increment one character to avoid infinite recursion. */
6721 RESIZE_MALLOCED_BUFFER (ret, rptr, 1, rsize, 64);
6722 ret[rptr++] = *str++;
6723 e++; /* avoid infinite recursion on zero-length match */
6724 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006725 }
6726
6727 /* Now copy the unmatched portion of the input string */
Chet Ramey495aee42011-11-22 19:11:26 -05006728 if (str && *str)
Jari Aaltod166f041997-06-05 14:59:13 +00006729 {
6730 RESIZE_MALLOCED_BUFFER (ret, rptr, STRLEN(str) + 1, rsize, 64);
6731 strcpy (ret + rptr, str);
6732 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006733 else
6734 ret[rptr] = '\0';
6735
6736 return ret;
6737}
6738
6739/* Do pattern match and replacement on the positional parameters. */
6740static char *
6741pos_params_pat_subst (string, pat, rep, mflags)
6742 char *string, *pat, *rep;
6743 int mflags;
6744{
6745 WORD_LIST *save, *params;
6746 WORD_DESC *w;
Jari Aalto06285672006-10-10 14:15:34 +00006747 char *ret;
Jari Aalto31859422009-01-12 13:36:28 +00006748 int pchar, qflags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006749
6750 save = params = list_rest_of_args ();
6751 if (save == 0)
6752 return ((char *)NULL);
6753
6754 for ( ; params; params = params->next)
6755 {
6756 ret = pat_subst (params->word->word, pat, rep, mflags);
Jari Aalto95732b42005-12-07 14:08:12 +00006757 w = alloc_word_desc ();
6758 w->word = ret ? ret : savestring ("");
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006759 dispose_word (params->word);
6760 params->word = w;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006761 }
6762
Jari Aalto31859422009-01-12 13:36:28 +00006763 pchar = (mflags & MATCH_STARSUB) == MATCH_STARSUB ? '*' : '@';
6764 qflags = (mflags & MATCH_QUOTED) == MATCH_QUOTED ? Q_DOUBLE_QUOTES : 0;
6765
Jari Aalto31859422009-01-12 13:36:28 +00006766 ret = string_list_pos_params (pchar, save, qflags);
Jari Aalto31859422009-01-12 13:36:28 +00006767
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006768 dispose_words (save);
6769
6770 return (ret);
6771}
6772
Jari Aaltocce855b1998-04-17 19:52:44 +00006773/* Perform pattern substitution on VALUE, which is the expansion of
6774 VARNAME. PATSUB is an expression supplying the pattern to match
6775 and the string to substitute. QUOTED is a flags word containing
6776 the type of quoting currently in effect. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006777static char *
Chet Ramey495aee42011-11-22 19:11:26 -05006778parameter_brace_patsub (varname, value, ind, patsub, quoted, flags)
6779 char *varname, *value;
6780 int ind;
6781 char *patsub;
6782 int quoted, flags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006783{
Jari Aalto31859422009-01-12 13:36:28 +00006784 int vtype, mflags, starsub, delim;
Jari Aalto7117c2d2002-07-17 14:10:11 +00006785 char *val, *temp, *pat, *rep, *p, *lpatsub, *tt;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006786 SHELL_VAR *v;
6787
6788 if (value == 0)
6789 return ((char *)NULL);
6790
6791 this_command_name = varname;
6792
Chet Ramey495aee42011-11-22 19:11:26 -05006793 vtype = get_var_and_type (varname, value, ind, quoted, flags, &v, &val);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006794 if (vtype == -1)
6795 return ((char *)NULL);
6796
Jari Aaltob80f6442004-07-27 13:29:18 +00006797 starsub = vtype & VT_STARSUB;
6798 vtype &= ~VT_STARSUB;
6799
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006800 mflags = 0;
Chet Rameyac50fba2014-02-26 09:36:43 -05006801 /* PATSUB is never NULL when this is called. */
6802 if (*patsub == '/')
Jari Aaltof1be6662008-11-18 13:15:12 +00006803 {
6804 mflags |= MATCH_GLOBREP;
6805 patsub++;
6806 }
Jari Aalto7117c2d2002-07-17 14:10:11 +00006807
6808 /* Malloc this because expand_string_if_necessary or one of the expansion
6809 functions in its call chain may free it on a substitution error. */
Jari Aaltobb706242000-03-17 21:46:59 +00006810 lpatsub = savestring (patsub);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006811
6812 if (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
6813 mflags |= MATCH_QUOTED;
6814
Jari Aaltob80f6442004-07-27 13:29:18 +00006815 if (starsub)
6816 mflags |= MATCH_STARSUB;
6817
Jari Aalto06285672006-10-10 14:15:34 +00006818 /* If the pattern starts with a `/', make sure we skip over it when looking
6819 for the replacement delimiter. */
Jari Aalto31859422009-01-12 13:36:28 +00006820 delim = skip_to_delim (lpatsub, ((*patsub == '/') ? 1 : 0), "/", 0);
6821 if (lpatsub[delim] == '/')
6822 {
6823 lpatsub[delim] = 0;
6824 rep = lpatsub + delim + 1;
6825 }
6826 else
6827 rep = (char *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006828
6829 if (rep && *rep == '\0')
6830 rep = (char *)NULL;
6831
Jari Aaltob80f6442004-07-27 13:29:18 +00006832 /* Perform the same expansions on the pattern as performed by the
6833 pattern removal expansions. */
6834 pat = getpattern (lpatsub, quoted, 1);
Jari Aaltobb706242000-03-17 21:46:59 +00006835
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006836 if (rep)
Jari Aaltod166f041997-06-05 14:59:13 +00006837 {
Chet Rameyac50fba2014-02-26 09:36:43 -05006838 /* We want to perform quote removal on the expanded replacement even if
6839 the entire expansion is double-quoted because the parser and string
6840 extraction functions treated quotes in the replacement string as
6841 special. THIS IS NOT BACKWARDS COMPATIBLE WITH BASH-4.2. */
6842 if (shell_compatibility_level > 42)
6843 rep = expand_string_if_necessary (rep, quoted & ~(Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT), expand_string_unsplit);
6844 /* This is the bash-4.2 code. */
6845 else if ((mflags & MATCH_QUOTED) == 0)
Jari Aaltof73dda02001-11-13 17:56:06 +00006846 rep = expand_string_if_necessary (rep, quoted, expand_string_unsplit);
Jari Aaltod166f041997-06-05 14:59:13 +00006847 else
Jari Aaltof73dda02001-11-13 17:56:06 +00006848 rep = expand_string_to_string_internal (rep, quoted, expand_string_unsplit);
Jari Aaltod166f041997-06-05 14:59:13 +00006849 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006850
Jari Aalto06285672006-10-10 14:15:34 +00006851 /* ksh93 doesn't allow the match specifier to be a part of the expanded
Jari Aaltof1be6662008-11-18 13:15:12 +00006852 pattern. This is an extension. Make sure we don't anchor the pattern
6853 at the beginning or end of the string if we're doing global replacement,
6854 though. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006855 p = pat;
Jari Aaltof1be6662008-11-18 13:15:12 +00006856 if (mflags & MATCH_GLOBREP)
6857 mflags |= MATCH_ANY;
Jari Aalto06285672006-10-10 14:15:34 +00006858 else if (pat && pat[0] == '#')
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006859 {
6860 mflags |= MATCH_BEG;
6861 p++;
6862 }
Jari Aaltod166f041997-06-05 14:59:13 +00006863 else if (pat && pat[0] == '%')
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006864 {
6865 mflags |= MATCH_END;
6866 p++;
6867 }
6868 else
6869 mflags |= MATCH_ANY;
6870
Jari Aaltocce855b1998-04-17 19:52:44 +00006871 /* OK, we now want to substitute REP for PAT in VAL. If
6872 flags & MATCH_GLOBREP is non-zero, the substitution is done
6873 everywhere, otherwise only the first occurrence of PAT is
Jari Aalto7117c2d2002-07-17 14:10:11 +00006874 replaced. The pattern matching code doesn't understand
6875 CTLESC quoting CTLESC and CTLNUL so we use the dequoted variable
6876 values passed in (VT_VARIABLE) so the pattern substitution
6877 code works right. We need to requote special chars after
6878 we're done for VT_VARIABLE and VT_ARRAYMEMBER, and for the
6879 other cases if QUOTED == 0, since the posparams and arrays
6880 indexed by * or @ do special things when QUOTED != 0. */
6881
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006882 switch (vtype)
6883 {
6884 case VT_VARIABLE:
Jari Aaltod166f041997-06-05 14:59:13 +00006885 case VT_ARRAYMEMBER:
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006886 temp = pat_subst (val, p, rep, mflags);
Jari Aalto7117c2d2002-07-17 14:10:11 +00006887 if (vtype == VT_VARIABLE)
6888 FREE (val);
6889 if (temp)
6890 {
Jari Aalto31859422009-01-12 13:36:28 +00006891 tt = (mflags & MATCH_QUOTED) ? quote_string (temp) : quote_escapes (temp);
Jari Aalto7117c2d2002-07-17 14:10:11 +00006892 free (temp);
6893 temp = tt;
6894 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006895 break;
6896 case VT_POSPARMS:
6897 temp = pos_params_pat_subst (val, p, rep, mflags);
Jari Aalto7117c2d2002-07-17 14:10:11 +00006898 if (temp && (mflags & MATCH_QUOTED) == 0)
6899 {
6900 tt = quote_escapes (temp);
6901 free (temp);
6902 temp = tt;
6903 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006904 break;
6905#if defined (ARRAY_VARS)
6906 case VT_ARRAYVAR:
Jari Aalto31859422009-01-12 13:36:28 +00006907 temp = assoc_p (v) ? assoc_patsub (assoc_cell (v), p, rep, mflags)
6908 : array_patsub (array_cell (v), p, rep, mflags);
6909 /* Don't call quote_escapes anymore; array_patsub calls
6910 array_quote_escapes as appropriate before adding the
6911 space separators; ditto for assoc_patsub. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006912 break;
6913#endif
6914 }
6915
6916 FREE (pat);
6917 FREE (rep);
Jari Aaltobb706242000-03-17 21:46:59 +00006918 free (lpatsub);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00006919
6920 return temp;
6921}
6922
Jari Aalto31859422009-01-12 13:36:28 +00006923/****************************************************************/
6924/* */
6925/* Functions to perform case modification on variable values */
6926/* */
6927/****************************************************************/
6928
6929/* Do case modification on the positional parameters. */
6930
6931static char *
6932pos_params_modcase (string, pat, modop, mflags)
6933 char *string, *pat;
6934 int modop;
6935 int mflags;
6936{
6937 WORD_LIST *save, *params;
6938 WORD_DESC *w;
6939 char *ret;
6940 int pchar, qflags;
6941
6942 save = params = list_rest_of_args ();
6943 if (save == 0)
6944 return ((char *)NULL);
6945
6946 for ( ; params; params = params->next)
6947 {
6948 ret = sh_modcase (params->word->word, pat, modop);
6949 w = alloc_word_desc ();
6950 w->word = ret ? ret : savestring ("");
6951 dispose_word (params->word);
6952 params->word = w;
6953 }
6954
6955 pchar = (mflags & MATCH_STARSUB) == MATCH_STARSUB ? '*' : '@';
6956 qflags = (mflags & MATCH_QUOTED) == MATCH_QUOTED ? Q_DOUBLE_QUOTES : 0;
6957
6958 ret = string_list_pos_params (pchar, save, qflags);
6959 dispose_words (save);
6960
6961 return (ret);
6962}
6963
6964/* Perform case modification on VALUE, which is the expansion of
6965 VARNAME. MODSPEC is an expression supplying the type of modification
6966 to perform. QUOTED is a flags word containing the type of quoting
6967 currently in effect. */
6968static char *
Chet Ramey495aee42011-11-22 19:11:26 -05006969parameter_brace_casemod (varname, value, ind, modspec, patspec, quoted, flags)
Jari Aalto31859422009-01-12 13:36:28 +00006970 char *varname, *value;
Chet Ramey495aee42011-11-22 19:11:26 -05006971 int ind, modspec;
Jari Aalto31859422009-01-12 13:36:28 +00006972 char *patspec;
Chet Ramey495aee42011-11-22 19:11:26 -05006973 int quoted, flags;
Jari Aalto31859422009-01-12 13:36:28 +00006974{
6975 int vtype, starsub, modop, mflags, x;
6976 char *val, *temp, *pat, *p, *lpat, *tt;
6977 SHELL_VAR *v;
6978
6979 if (value == 0)
6980 return ((char *)NULL);
6981
6982 this_command_name = varname;
6983
Chet Ramey495aee42011-11-22 19:11:26 -05006984 vtype = get_var_and_type (varname, value, ind, quoted, flags, &v, &val);
Jari Aalto31859422009-01-12 13:36:28 +00006985 if (vtype == -1)
6986 return ((char *)NULL);
6987
6988 starsub = vtype & VT_STARSUB;
6989 vtype &= ~VT_STARSUB;
6990
6991 modop = 0;
6992 mflags = 0;
6993 if (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
6994 mflags |= MATCH_QUOTED;
6995 if (starsub)
6996 mflags |= MATCH_STARSUB;
6997
6998 p = patspec;
6999 if (modspec == '^')
7000 {
7001 x = p && p[0] == modspec;
Jari Aalto17345e52009-02-19 22:21:29 +00007002 modop = x ? CASE_UPPER : CASE_UPFIRST;
Jari Aalto31859422009-01-12 13:36:28 +00007003 p += x;
7004 }
7005 else if (modspec == ',')
7006 {
7007 x = p && p[0] == modspec;
Jari Aalto17345e52009-02-19 22:21:29 +00007008 modop = x ? CASE_LOWER : CASE_LOWFIRST;
Jari Aalto31859422009-01-12 13:36:28 +00007009 p += x;
7010 }
7011 else if (modspec == '~')
7012 {
7013 x = p && p[0] == modspec;
7014 modop = x ? CASE_TOGGLEALL : CASE_TOGGLE;
7015 p += x;
7016 }
7017
7018 lpat = p ? savestring (p) : 0;
7019 /* Perform the same expansions on the pattern as performed by the
7020 pattern removal expansions. FOR LATER */
7021 pat = lpat ? getpattern (lpat, quoted, 1) : 0;
7022
7023 /* OK, now we do the case modification. */
7024 switch (vtype)
7025 {
7026 case VT_VARIABLE:
7027 case VT_ARRAYMEMBER:
7028 temp = sh_modcase (val, pat, modop);
7029 if (vtype == VT_VARIABLE)
7030 FREE (val);
7031 if (temp)
7032 {
7033 tt = (mflags & MATCH_QUOTED) ? quote_string (temp) : quote_escapes (temp);
7034 free (temp);
7035 temp = tt;
7036 }
7037 break;
7038
7039 case VT_POSPARMS:
7040 temp = pos_params_modcase (val, pat, modop, mflags);
7041 if (temp && (mflags & MATCH_QUOTED) == 0)
7042 {
7043 tt = quote_escapes (temp);
7044 free (temp);
7045 temp = tt;
7046 }
7047 break;
7048
7049#if defined (ARRAY_VARS)
7050 case VT_ARRAYVAR:
7051 temp = assoc_p (v) ? assoc_modcase (assoc_cell (v), pat, modop, mflags)
7052 : array_modcase (array_cell (v), pat, modop, mflags);
7053 /* Don't call quote_escapes; array_modcase calls array_quote_escapes
7054 as appropriate before adding the space separators; ditto for
7055 assoc_modcase. */
7056 break;
7057#endif
7058 }
7059
7060 FREE (pat);
7061 free (lpat);
7062
7063 return temp;
7064}
7065
Jari Aalto06285672006-10-10 14:15:34 +00007066/* Check for unbalanced parens in S, which is the contents of $(( ... )). If
7067 any occur, this must be a nested command substitution, so return 0.
7068 Otherwise, return 1. A valid arithmetic expression must always have a
7069 ( before a matching ), so any cases where there are more right parens
7070 means that this must not be an arithmetic expression, though the parser
7071 will not accept it without a balanced total number of parens. */
7072static int
7073chk_arithsub (s, len)
7074 const char *s;
7075 int len;
7076{
7077 int i, count;
7078 DECLARE_MBSTATE;
7079
7080 i = count = 0;
7081 while (i < len)
7082 {
Chet Ramey00018032011-11-21 20:51:19 -05007083 if (s[i] == LPAREN)
Jari Aalto06285672006-10-10 14:15:34 +00007084 count++;
Chet Ramey00018032011-11-21 20:51:19 -05007085 else if (s[i] == RPAREN)
Jari Aalto06285672006-10-10 14:15:34 +00007086 {
7087 count--;
7088 if (count < 0)
7089 return 0;
7090 }
7091
7092 switch (s[i])
7093 {
7094 default:
7095 ADVANCE_CHAR (s, len, i);
7096 break;
7097
7098 case '\\':
7099 i++;
7100 if (s[i])
7101 ADVANCE_CHAR (s, len, i);
7102 break;
7103
7104 case '\'':
7105 i = skip_single_quoted (s, len, ++i);
7106 break;
7107
7108 case '"':
7109 i = skip_double_quoted ((char *)s, len, ++i);
7110 break;
7111 }
7112 }
7113
7114 return (count == 0);
7115}
7116
Jari Aaltocce855b1998-04-17 19:52:44 +00007117/****************************************************************/
7118/* */
7119/* Functions to perform parameter expansion on a string */
7120/* */
7121/****************************************************************/
7122
Jari Aalto31859422009-01-12 13:36:28 +00007123/* ${[#][!]name[[:][^[^]][,[,]]#[#]%[%]-=?+[word][:e1[:e2]]]} */
Jari Aalto95732b42005-12-07 14:08:12 +00007124static WORD_DESC *
Chet Ramey00018032011-11-21 20:51:19 -05007125parameter_brace_expand (string, indexp, quoted, pflags, quoted_dollar_atp, contains_dollar_at)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007126 char *string;
Chet Ramey00018032011-11-21 20:51:19 -05007127 int *indexp, quoted, *quoted_dollar_atp, *contains_dollar_at, pflags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007128{
7129 int check_nullness, var_is_set, var_is_null, var_is_special;
Jari Aalto31859422009-01-12 13:36:28 +00007130 int want_substring, want_indir, want_patsub, want_casemod;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007131 char *name, *value, *temp, *temp1;
Jari Aalto95732b42005-12-07 14:08:12 +00007132 WORD_DESC *tdesc, *ret;
Jari Aalto31859422009-01-12 13:36:28 +00007133 int t_index, sindex, c, tflag, modspec;
Jari Aalto7117c2d2002-07-17 14:10:11 +00007134 intmax_t number;
Chet Ramey495aee42011-11-22 19:11:26 -05007135 arrayind_t ind;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007136
Jari Aalto31859422009-01-12 13:36:28 +00007137 temp = temp1 = value = (char *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007138 var_is_set = var_is_null = var_is_special = check_nullness = 0;
Jari Aalto31859422009-01-12 13:36:28 +00007139 want_substring = want_indir = want_patsub = want_casemod = 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007140
Jari Aaltocce855b1998-04-17 19:52:44 +00007141 sindex = *indexp;
7142 t_index = ++sindex;
Jari Aalto06285672006-10-10 14:15:34 +00007143 /* ${#var} doesn't have any of the other parameter expansions on it. */
7144 if (string[t_index] == '#' && legal_variable_starter (string[t_index+1])) /* {{ */
Jari Aalto31859422009-01-12 13:36:28 +00007145 name = string_extract (string, &t_index, "}", SX_VARNAME);
Jari Aalto06285672006-10-10 14:15:34 +00007146 else
Jari Aalto31859422009-01-12 13:36:28 +00007147#if defined (CASEMOD_EXPANSIONS)
7148 /* To enable case-toggling expansions using the `~' operator character
7149 change the 1 to 0. */
7150# if defined (CASEMOD_CAPCASE)
7151 name = string_extract (string, &t_index, "#%^,~:-=?+/}", SX_VARNAME);
7152# else
7153 name = string_extract (string, &t_index, "#%^,:-=?+/}", SX_VARNAME);
7154# endif /* CASEMOD_CAPCASE */
7155#else
7156 name = string_extract (string, &t_index, "#%:-=?+/}", SX_VARNAME);
7157#endif /* CASEMOD_EXPANSIONS */
Jari Aaltocce855b1998-04-17 19:52:44 +00007158
Jari Aalto95732b42005-12-07 14:08:12 +00007159 ret = 0;
7160 tflag = 0;
7161
Chet Ramey495aee42011-11-22 19:11:26 -05007162 ind = INTMAX_MIN;
7163
Jari Aaltocce855b1998-04-17 19:52:44 +00007164 /* If the name really consists of a special variable, then make sure
7165 that we have the entire name. We don't allow indirect references
7166 to special variables except `#', `?', `@' and `*'. */
Chet Ramey495aee42011-11-22 19:11:26 -05007167 if ((sindex == t_index && VALID_SPECIAL_LENGTH_PARAM (string[t_index])) ||
7168 (sindex == t_index - 1 && string[sindex] == '!' && VALID_INDIR_PARAM (string[t_index])))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007169 {
7170 t_index++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007171 temp1 = string_extract (string, &t_index, "#%:-=?+/}", 0);
Chet Rameyac50fba2014-02-26 09:36:43 -05007172 name = (char *)xrealloc (name, 3 + (strlen (temp1)));
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007173 *name = string[sindex];
7174 if (string[sindex] == '!')
7175 {
Jari Aalto28ef6c32001-04-06 19:14:31 +00007176 /* indirect reference of $#, $?, $@, or $* */
7177 name[1] = string[sindex + 1];
7178 strcpy (name + 2, temp1);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007179 }
Jari Aaltocce855b1998-04-17 19:52:44 +00007180 else
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007181 strcpy (name + 1, temp1);
7182 free (temp1);
7183 }
7184 sindex = t_index;
7185
7186 /* Find out what character ended the variable name. Then
7187 do the appropriate thing. */
7188 if (c = string[sindex])
7189 sindex++;
7190
7191 /* If c is followed by one of the valid parameter expansion
7192 characters, move past it as normal. If not, assume that
7193 a substring specification is being given, and do not move
7194 past it. */
Jari Aalto28ef6c32001-04-06 19:14:31 +00007195 if (c == ':' && VALID_PARAM_EXPAND_CHAR (string[sindex]))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007196 {
7197 check_nullness++;
7198 if (c = string[sindex])
7199 sindex++;
7200 }
Jari Aaltocce855b1998-04-17 19:52:44 +00007201 else if (c == ':' && string[sindex] != RBRACE)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007202 want_substring = 1;
Chet Rameyac50fba2014-02-26 09:36:43 -05007203 else if (c == '/' /* && string[sindex] != RBRACE */) /* XXX */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007204 want_patsub = 1;
Jari Aalto31859422009-01-12 13:36:28 +00007205#if defined (CASEMOD_EXPANSIONS)
7206 else if (c == '^' || c == ',' || c == '~')
7207 {
7208 modspec = c;
7209 want_casemod = 1;
7210 }
7211#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007212
Jari Aaltocce855b1998-04-17 19:52:44 +00007213 /* Catch the valid and invalid brace expressions that made it through the
7214 tests above. */
7215 /* ${#-} is a valid expansion and means to take the length of $-.
7216 Similarly for ${#?} and ${##}... */
7217 if (name[0] == '#' && name[1] == '\0' && check_nullness == 0 &&
Jari Aalto28ef6c32001-04-06 19:14:31 +00007218 VALID_SPECIAL_LENGTH_PARAM (c) && string[sindex] == RBRACE)
Jari Aaltocce855b1998-04-17 19:52:44 +00007219 {
Jari Aaltof73dda02001-11-13 17:56:06 +00007220 name = (char *)xrealloc (name, 3);
Jari Aaltocce855b1998-04-17 19:52:44 +00007221 name[1] = c;
7222 name[2] = '\0';
7223 c = string[sindex++];
7224 }
7225
7226 /* ...but ${#%}, ${#:}, ${#=}, ${#+}, and ${#/} are errors. */
7227 if (name[0] == '#' && name[1] == '\0' && check_nullness == 0 &&
7228 member (c, "%:=+/") && string[sindex] == RBRACE)
7229 {
7230 temp = (char *)NULL;
7231 goto bad_substitution;
7232 }
7233
7234 /* Indirect expansion begins with a `!'. A valid indirect expansion is
7235 either a variable name, one of the positional parameters or a special
7236 variable that expands to one of the positional parameters. */
7237 want_indir = *name == '!' &&
Jari Aaltof73dda02001-11-13 17:56:06 +00007238 (legal_variable_starter ((unsigned char)name[1]) || DIGIT (name[1])
Jari Aalto7117c2d2002-07-17 14:10:11 +00007239 || VALID_INDIR_PARAM (name[1]));
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007240
7241 /* Determine the value of this variable. */
7242
Jari Aaltocce855b1998-04-17 19:52:44 +00007243 /* Check for special variables, directly referenced. */
Jari Aaltobb706242000-03-17 21:46:59 +00007244 if (SPECIAL_VAR (name, want_indir))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007245 var_is_special++;
7246
Jari Aaltocce855b1998-04-17 19:52:44 +00007247 /* Check for special expansion things, like the length of a parameter */
7248 if (*name == '#' && name[1])
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007249 {
Jari Aaltocce855b1998-04-17 19:52:44 +00007250 /* If we are not pointing at the character just after the
Jari Aalto28ef6c32001-04-06 19:14:31 +00007251 closing brace, then we haven't gotten all of the name.
7252 Since it begins with a special character, this is a bad
7253 substitution. Also check NAME for validity before trying
7254 to go on. */
Jari Aaltocce855b1998-04-17 19:52:44 +00007255 if (string[sindex - 1] != RBRACE || (valid_length_expression (name) == 0))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007256 {
7257 temp = (char *)NULL;
7258 goto bad_substitution;
7259 }
7260
7261 number = parameter_brace_expand_length (name);
Chet Ramey495aee42011-11-22 19:11:26 -05007262 if (number == INTMAX_MIN && unbound_vars_is_error)
7263 {
7264 last_command_exit_value = EXECUTION_FAILURE;
7265 err_unboundvar (name+1);
7266 free (name);
7267 return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal);
7268 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007269 free (name);
7270
7271 *indexp = sindex;
Jari Aalto95732b42005-12-07 14:08:12 +00007272 if (number < 0)
7273 return (&expand_wdesc_error);
7274 else
7275 {
7276 ret = alloc_word_desc ();
7277 ret->word = itos (number);
7278 return ret;
7279 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007280 }
7281
7282 /* ${@} is identical to $@. */
7283 if (name[0] == '@' && name[1] == '\0')
7284 {
7285 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && quoted_dollar_atp)
7286 *quoted_dollar_atp = 1;
7287
7288 if (contains_dollar_at)
7289 *contains_dollar_at = 1;
Chet Rameyac50fba2014-02-26 09:36:43 -05007290
7291 tflag |= W_DOLLARAT;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007292 }
7293
Jari Aaltob80f6442004-07-27 13:29:18 +00007294 /* Process ${!PREFIX*} expansion. */
Jari Aaltobb706242000-03-17 21:46:59 +00007295 if (want_indir && string[sindex - 1] == RBRACE &&
7296 (string[sindex - 2] == '*' || string[sindex - 2] == '@') &&
Jari Aaltof73dda02001-11-13 17:56:06 +00007297 legal_variable_starter ((unsigned char) name[1]))
Jari Aaltobb706242000-03-17 21:46:59 +00007298 {
7299 char **x;
7300 WORD_LIST *xlist;
7301
7302 temp1 = savestring (name + 1);
7303 number = strlen (temp1);
7304 temp1[number - 1] = '\0';
7305 x = all_variables_matching_prefix (temp1);
Jari Aalto7117c2d2002-07-17 14:10:11 +00007306 xlist = strvec_to_word_list (x, 0, 0);
Jari Aalto28ef6c32001-04-06 19:14:31 +00007307 if (string[sindex - 2] == '*')
7308 temp = string_list_dollar_star (xlist);
7309 else
7310 {
7311 temp = string_list_dollar_at (xlist, quoted);
7312 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && quoted_dollar_atp)
7313 *quoted_dollar_atp = 1;
7314 if (contains_dollar_at)
7315 *contains_dollar_at = 1;
Chet Rameyac50fba2014-02-26 09:36:43 -05007316
7317 tflag |= W_DOLLARAT;
Jari Aalto28ef6c32001-04-06 19:14:31 +00007318 }
Jari Aaltobb706242000-03-17 21:46:59 +00007319 free (x);
Chet Ramey89a92862011-11-21 20:49:12 -05007320 dispose_words (xlist);
Jari Aaltobb706242000-03-17 21:46:59 +00007321 free (temp1);
7322 *indexp = sindex;
Jari Aalto95732b42005-12-07 14:08:12 +00007323
Chet Rameyac50fba2014-02-26 09:36:43 -05007324 free (name);
7325
Jari Aalto95732b42005-12-07 14:08:12 +00007326 ret = alloc_word_desc ();
7327 ret->word = temp;
Chet Rameyac50fba2014-02-26 09:36:43 -05007328 ret->flags = tflag; /* XXX */
Jari Aalto95732b42005-12-07 14:08:12 +00007329 return ret;
Jari Aaltobb706242000-03-17 21:46:59 +00007330 }
Jari Aaltob80f6442004-07-27 13:29:18 +00007331
7332#if defined (ARRAY_VARS)
7333 /* Process ${!ARRAY[@]} and ${!ARRAY[*]} expansion. */ /* [ */
7334 if (want_indir && string[sindex - 1] == RBRACE &&
7335 string[sindex - 2] == ']' && valid_array_reference (name+1))
7336 {
7337 char *x, *x1;
7338
7339 temp1 = savestring (name + 1);
7340 x = array_variable_name (temp1, &x1, (int *)0); /* [ */
7341 FREE (x);
7342 if (ALL_ELEMENT_SUB (x1[0]) && x1[1] == ']')
7343 {
Jari Aalto31859422009-01-12 13:36:28 +00007344 temp = array_keys (temp1, quoted); /* handles assoc vars too */
Jari Aaltob80f6442004-07-27 13:29:18 +00007345 if (x1[0] == '@')
7346 {
7347 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && quoted_dollar_atp)
7348 *quoted_dollar_atp = 1;
7349 if (contains_dollar_at)
7350 *contains_dollar_at = 1;
Chet Rameyac50fba2014-02-26 09:36:43 -05007351
7352 tflag |= W_DOLLARAT;
Jari Aaltob80f6442004-07-27 13:29:18 +00007353 }
7354
7355 free (temp1);
7356 *indexp = sindex;
Jari Aalto95732b42005-12-07 14:08:12 +00007357
7358 ret = alloc_word_desc ();
7359 ret->word = temp;
Chet Rameyac50fba2014-02-26 09:36:43 -05007360 ret->flags = tflag; /* XXX */
Jari Aalto95732b42005-12-07 14:08:12 +00007361 return ret;
Jari Aaltob80f6442004-07-27 13:29:18 +00007362 }
7363
7364 free (temp1);
7365 }
7366#endif /* ARRAY_VARS */
Jari Aaltobb706242000-03-17 21:46:59 +00007367
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007368 /* Make sure that NAME is valid before trying to go on. */
7369 if (valid_brace_expansion_word (want_indir ? name + 1 : name,
7370 var_is_special) == 0)
7371 {
7372 temp = (char *)NULL;
7373 goto bad_substitution;
7374 }
7375
7376 if (want_indir)
Chet Ramey1a1f8b52014-08-18 11:45:31 -04007377 {
7378 tdesc = parameter_brace_expand_indir (name + 1, var_is_special, quoted, quoted_dollar_atp, contains_dollar_at);
7379 /* Turn off the W_ARRAYIND flag because there is no way for this function
7380 to return the index we're supposed to be using. */
7381 if (tdesc && tdesc->flags)
7382 tdesc->flags &= ~W_ARRAYIND;
7383 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007384 else
Chet Rameyac50fba2014-02-26 09:36:43 -05007385 tdesc = parameter_brace_expand_word (name, var_is_special, quoted, PF_IGNUNBOUND|(pflags&(PF_NOSPLIT2|PF_ASSIGNRHS)), &ind);
Jari Aalto95732b42005-12-07 14:08:12 +00007386
7387 if (tdesc)
7388 {
7389 temp = tdesc->word;
7390 tflag = tdesc->flags;
7391 dispose_word_desc (tdesc);
7392 }
7393 else
7394 temp = (char *)0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007395
Chet Rameyac50fba2014-02-26 09:36:43 -05007396 if (temp == &expand_param_error || temp == &expand_param_fatal)
7397 {
7398 FREE (name);
7399 FREE (value);
7400 return (temp == &expand_param_error ? &expand_wdesc_error : &expand_wdesc_fatal);
7401 }
7402
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007403#if defined (ARRAY_VARS)
Jari Aaltocce855b1998-04-17 19:52:44 +00007404 if (valid_array_reference (name))
Jari Aaltob80f6442004-07-27 13:29:18 +00007405 chk_atstar (name, quoted, quoted_dollar_atp, contains_dollar_at);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007406#endif
7407
7408 var_is_set = temp != (char *)0;
7409 var_is_null = check_nullness && (var_is_set == 0 || *temp == 0);
Chet Rameyac50fba2014-02-26 09:36:43 -05007410 /* XXX - this may not need to be restricted to special variables */
7411 if (check_nullness)
7412 var_is_null |= var_is_set && var_is_special && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && QUOTED_NULL (temp);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007413
7414 /* Get the rest of the stuff inside the braces. */
Jari Aaltocce855b1998-04-17 19:52:44 +00007415 if (c && c != RBRACE)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007416 {
7417 /* Extract the contents of the ${ ... } expansion
Jari Aalto28ef6c32001-04-06 19:14:31 +00007418 according to the Posix.2 rules. */
Chet Ramey49ed9612011-11-22 19:59:44 -05007419 value = extract_dollar_brace_string (string, &sindex, quoted, (c == '%' || c == '#' || c =='/' || c == '^' || c == ',' || c ==':') ? SX_POSIXEXP|SX_WORD : SX_WORD);
Jari Aaltocce855b1998-04-17 19:52:44 +00007420 if (string[sindex] == RBRACE)
Jari Aalto28ef6c32001-04-06 19:14:31 +00007421 sindex++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007422 else
7423 goto bad_substitution;
7424 }
7425 else
7426 value = (char *)NULL;
7427
7428 *indexp = sindex;
7429
Chet Ramey495aee42011-11-22 19:11:26 -05007430 /* All the cases where an expansion can possibly generate an unbound
7431 variable error. */
7432 if (want_substring || want_patsub || want_casemod || c == '#' || c == '%' || c == RBRACE)
7433 {
7434 if (var_is_set == 0 && unbound_vars_is_error && ((name[0] != '@' && name[0] != '*') || name[1]))
7435 {
7436 last_command_exit_value = EXECUTION_FAILURE;
7437 err_unboundvar (name);
7438 FREE (value);
7439 FREE (temp);
7440 free (name);
7441 return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal);
7442 }
7443 }
7444
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007445 /* If this is a substring spec, process it and add the result. */
7446 if (want_substring)
7447 {
Chet Ramey495aee42011-11-22 19:11:26 -05007448 temp1 = parameter_brace_substring (name, temp, ind, value, quoted, (tflag & W_ARRAYIND) ? AV_USEIND : 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007449 FREE (name);
7450 FREE (value);
7451 FREE (temp);
Jari Aalto95732b42005-12-07 14:08:12 +00007452
7453 if (temp1 == &expand_param_error)
7454 return (&expand_wdesc_error);
7455 else if (temp1 == &expand_param_fatal)
7456 return (&expand_wdesc_fatal);
7457
7458 ret = alloc_word_desc ();
7459 ret->word = temp1;
Chet Rameyac50fba2014-02-26 09:36:43 -05007460 /* We test quoted_dollar_atp because we want variants with double-quoted
7461 "$@" to take a different code path. In fact, we make sure at the end
7462 of expand_word_internal that we're only looking at these flags if
7463 quoted_dollar_at == 0. */
7464 if (temp1 &&
7465 (quoted_dollar_atp == 0 || *quoted_dollar_atp == 0) &&
7466 QUOTED_NULL (temp1) && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
Jari Aalto06285672006-10-10 14:15:34 +00007467 ret->flags |= W_QUOTED|W_HASQUOTEDNULL;
Jari Aalto95732b42005-12-07 14:08:12 +00007468 return ret;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007469 }
7470 else if (want_patsub)
7471 {
Chet Ramey495aee42011-11-22 19:11:26 -05007472 temp1 = parameter_brace_patsub (name, temp, ind, value, quoted, (tflag & W_ARRAYIND) ? AV_USEIND : 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007473 FREE (name);
7474 FREE (value);
7475 FREE (temp);
Jari Aalto95732b42005-12-07 14:08:12 +00007476
7477 if (temp1 == &expand_param_error)
7478 return (&expand_wdesc_error);
7479 else if (temp1 == &expand_param_fatal)
7480 return (&expand_wdesc_fatal);
7481
7482 ret = alloc_word_desc ();
7483 ret->word = temp1;
Chet Rameyac50fba2014-02-26 09:36:43 -05007484 if (temp1 &&
7485 (quoted_dollar_atp == 0 || *quoted_dollar_atp == 0) &&
7486 QUOTED_NULL (temp1) && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
Jari Aalto31859422009-01-12 13:36:28 +00007487 ret->flags |= W_QUOTED|W_HASQUOTEDNULL;
Jari Aalto95732b42005-12-07 14:08:12 +00007488 return ret;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007489 }
Jari Aalto31859422009-01-12 13:36:28 +00007490#if defined (CASEMOD_EXPANSIONS)
7491 else if (want_casemod)
7492 {
Chet Ramey495aee42011-11-22 19:11:26 -05007493 temp1 = parameter_brace_casemod (name, temp, ind, modspec, value, quoted, (tflag & W_ARRAYIND) ? AV_USEIND : 0);
Jari Aalto31859422009-01-12 13:36:28 +00007494 FREE (name);
7495 FREE (value);
7496 FREE (temp);
7497
7498 if (temp1 == &expand_param_error)
7499 return (&expand_wdesc_error);
7500 else if (temp1 == &expand_param_fatal)
7501 return (&expand_wdesc_fatal);
7502
7503 ret = alloc_word_desc ();
7504 ret->word = temp1;
Chet Rameyac50fba2014-02-26 09:36:43 -05007505 if (temp1 &&
7506 (quoted_dollar_atp == 0 || *quoted_dollar_atp == 0) &&
7507 QUOTED_NULL (temp1) && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
Jari Aalto31859422009-01-12 13:36:28 +00007508 ret->flags |= W_QUOTED|W_HASQUOTEDNULL;
7509 return ret;
7510 }
7511#endif
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007512
7513 /* Do the right thing based on which character ended the variable name. */
7514 switch (c)
7515 {
7516 default:
7517 case '\0':
7518 bad_substitution:
Chet Ramey98043132012-03-13 15:12:07 -04007519 last_command_exit_value = EXECUTION_FAILURE;
Jari Aaltob80f6442004-07-27 13:29:18 +00007520 report_error (_("%s: bad substitution"), string ? string : "??");
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007521 FREE (value);
7522 FREE (temp);
7523 free (name);
Jari Aalto95732b42005-12-07 14:08:12 +00007524 return &expand_wdesc_error;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007525
Jari Aaltocce855b1998-04-17 19:52:44 +00007526 case RBRACE:
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007527 break;
7528
7529 case '#': /* ${param#[#]pattern} */
7530 case '%': /* ${param%[%]pattern} */
7531 if (value == 0 || *value == '\0' || temp == 0 || *temp == '\0')
Jari Aalto28ef6c32001-04-06 19:14:31 +00007532 {
7533 FREE (value);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007534 break;
Jari Aalto28ef6c32001-04-06 19:14:31 +00007535 }
Chet Ramey495aee42011-11-22 19:11:26 -05007536 temp1 = parameter_brace_remove_pattern (name, temp, ind, value, c, quoted, (tflag & W_ARRAYIND) ? AV_USEIND : 0);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007537 free (temp);
7538 free (value);
Chet Ramey495aee42011-11-22 19:11:26 -05007539 free (name);
Jari Aalto31859422009-01-12 13:36:28 +00007540
7541 ret = alloc_word_desc ();
7542 ret->word = temp1;
7543 if (temp1 && QUOTED_NULL (temp1) && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
7544 ret->flags |= W_QUOTED|W_HASQUOTEDNULL;
7545 return ret;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007546
7547 case '-':
7548 case '=':
7549 case '?':
7550 case '+':
7551 if (var_is_set && var_is_null == 0)
Jari Aalto28ef6c32001-04-06 19:14:31 +00007552 {
7553 /* If the operator is `+', we don't want the value of the named
7554 variable for anything, just the value of the right hand side. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007555 if (c == '+')
7556 {
Jari Aalto28ef6c32001-04-06 19:14:31 +00007557 /* XXX -- if we're double-quoted and the named variable is "$@",
7558 we want to turn off any special handling of "$@" --
7559 we're not using it, so whatever is on the rhs applies. */
7560 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && quoted_dollar_atp)
7561 *quoted_dollar_atp = 0;
7562 if (contains_dollar_at)
7563 *contains_dollar_at = 0;
7564
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007565 FREE (temp);
7566 if (value)
Jari Aalto28ef6c32001-04-06 19:14:31 +00007567 {
Chet Ramey495aee42011-11-22 19:11:26 -05007568 /* From Posix discussion on austin-group list. Issue 221
7569 requires that backslashes escaping `}' inside
7570 double-quoted ${...} be removed. */
7571 if (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
7572 quoted |= Q_DOLBRACE;
Jari Aalto95732b42005-12-07 14:08:12 +00007573 ret = parameter_brace_expand_rhs (name, value, c,
7574 quoted,
7575 quoted_dollar_atp,
7576 contains_dollar_at);
7577 /* XXX - fix up later, esp. noting presence of
7578 W_HASQUOTEDNULL in ret->flags */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007579 free (value);
7580 }
7581 else
Jari Aalto28ef6c32001-04-06 19:14:31 +00007582 temp = (char *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007583 }
7584 else
7585 {
7586 FREE (value);
7587 }
7588 /* Otherwise do nothing; just use the value in TEMP. */
7589 }
7590 else /* VAR not set or VAR is NULL. */
Jari Aalto28ef6c32001-04-06 19:14:31 +00007591 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007592 FREE (temp);
7593 temp = (char *)NULL;
7594 if (c == '=' && var_is_special)
7595 {
Chet Rameyac50fba2014-02-26 09:36:43 -05007596 last_command_exit_value = EXECUTION_FAILURE;
Jari Aaltob80f6442004-07-27 13:29:18 +00007597 report_error (_("$%s: cannot assign in this way"), name);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007598 free (name);
7599 free (value);
Jari Aalto95732b42005-12-07 14:08:12 +00007600 return &expand_wdesc_error;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007601 }
7602 else if (c == '?')
7603 {
7604 parameter_brace_expand_error (name, value);
Jari Aalto95732b42005-12-07 14:08:12 +00007605 return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007606 }
7607 else if (c != '+')
Jari Aalto28ef6c32001-04-06 19:14:31 +00007608 {
7609 /* XXX -- if we're double-quoted and the named variable is "$@",
7610 we want to turn off any special handling of "$@" --
7611 we're not using it, so whatever is on the rhs applies. */
7612 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && quoted_dollar_atp)
7613 *quoted_dollar_atp = 0;
7614 if (contains_dollar_at)
7615 *contains_dollar_at = 0;
7616
Chet Ramey495aee42011-11-22 19:11:26 -05007617 /* From Posix discussion on austin-group list. Issue 221 requires
7618 that backslashes escaping `}' inside double-quoted ${...} be
7619 removed. */
7620 if (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
7621 quoted |= Q_DOLBRACE;
Jari Aalto95732b42005-12-07 14:08:12 +00007622 ret = parameter_brace_expand_rhs (name, value, c, quoted,
7623 quoted_dollar_atp,
7624 contains_dollar_at);
7625 /* XXX - fix up later, esp. noting presence of
7626 W_HASQUOTEDNULL in tdesc->flags */
Jari Aalto28ef6c32001-04-06 19:14:31 +00007627 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007628 free (value);
7629 }
Jari Aalto28ef6c32001-04-06 19:14:31 +00007630
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007631 break;
7632 }
7633 free (name);
Jari Aalto95732b42005-12-07 14:08:12 +00007634
7635 if (ret == 0)
7636 {
7637 ret = alloc_word_desc ();
7638 ret->flags = tflag;
7639 ret->word = temp;
7640 }
7641 return (ret);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00007642}
7643
Jari Aaltocce855b1998-04-17 19:52:44 +00007644/* Expand a single ${xxx} expansion. The braces are optional. When
7645 the braces are used, parameter_brace_expand() does the work,
7646 possibly calling param_expand recursively. */
Jari Aalto95732b42005-12-07 14:08:12 +00007647static WORD_DESC *
Jari Aaltocce855b1998-04-17 19:52:44 +00007648param_expand (string, sindex, quoted, expanded_something,
7649 contains_dollar_at, quoted_dollar_at_p, had_quoted_null_p,
7650 pflags)
7651 char *string;
7652 int *sindex, quoted, *expanded_something, *contains_dollar_at;
7653 int *quoted_dollar_at_p, *had_quoted_null_p, pflags;
7654{
Jari Aalto7117c2d2002-07-17 14:10:11 +00007655 char *temp, *temp1, uerror[3];
Jari Aaltof73dda02001-11-13 17:56:06 +00007656 int zindex, t_index, expok;
7657 unsigned char c;
Jari Aalto7117c2d2002-07-17 14:10:11 +00007658 intmax_t number;
Jari Aaltocce855b1998-04-17 19:52:44 +00007659 SHELL_VAR *var;
Jari Aaltof73dda02001-11-13 17:56:06 +00007660 WORD_LIST *list;
Jari Aalto95732b42005-12-07 14:08:12 +00007661 WORD_DESC *tdesc, *ret;
7662 int tflag;
Jari Aaltocce855b1998-04-17 19:52:44 +00007663
7664 zindex = *sindex;
7665 c = string[++zindex];
7666
7667 temp = (char *)NULL;
Jari Aalto95732b42005-12-07 14:08:12 +00007668 ret = tdesc = (WORD_DESC *)NULL;
7669 tflag = 0;
Jari Aaltocce855b1998-04-17 19:52:44 +00007670
7671 /* Do simple cases first. Switch on what follows '$'. */
7672 switch (c)
7673 {
7674 /* $0 .. $9? */
7675 case '0':
7676 case '1':
7677 case '2':
7678 case '3':
7679 case '4':
7680 case '5':
7681 case '6':
7682 case '7':
7683 case '8':
7684 case '9':
Jari Aaltof73dda02001-11-13 17:56:06 +00007685 temp1 = dollar_vars[TODIGIT (c)];
Jari Aaltocce855b1998-04-17 19:52:44 +00007686 if (unbound_vars_is_error && temp1 == (char *)NULL)
7687 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00007688 uerror[0] = '$';
7689 uerror[1] = c;
7690 uerror[2] = '\0';
Jari Aaltocce855b1998-04-17 19:52:44 +00007691 last_command_exit_value = EXECUTION_FAILURE;
Chet Ramey00018032011-11-21 20:51:19 -05007692 err_unboundvar (uerror);
Jari Aalto95732b42005-12-07 14:08:12 +00007693 return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal);
Jari Aaltocce855b1998-04-17 19:52:44 +00007694 }
Jari Aaltob80f6442004-07-27 13:29:18 +00007695 if (temp1)
7696 temp = (*temp1 && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
7697 ? quote_string (temp1)
7698 : quote_escapes (temp1);
7699 else
7700 temp = (char *)NULL;
Jari Aalto95732b42005-12-07 14:08:12 +00007701
Jari Aaltocce855b1998-04-17 19:52:44 +00007702 break;
7703
7704 /* $$ -- pid of the invoking shell. */
7705 case '$':
7706 temp = itos (dollar_dollar_pid);
7707 break;
7708
7709 /* $# -- number of positional parameters. */
7710 case '#':
7711 temp = itos (number_of_args ());
7712 break;
7713
7714 /* $? -- return value of the last synchronous command. */
7715 case '?':
7716 temp = itos (last_command_exit_value);
7717 break;
7718
7719 /* $- -- flags supplied to the shell on invocation or by `set'. */
7720 case '-':
7721 temp = which_set_flags ();
7722 break;
7723
7724 /* $! -- Pid of the last asynchronous command. */
7725 case '!':
7726 /* If no asynchronous pids have been created, expand to nothing.
7727 If `set -u' has been executed, and no async processes have
7728 been created, this is an expansion error. */
7729 if (last_asynchronous_pid == NO_PID)
7730 {
7731 if (expanded_something)
7732 *expanded_something = 0;
7733 temp = (char *)NULL;
7734 if (unbound_vars_is_error)
7735 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00007736 uerror[0] = '$';
7737 uerror[1] = c;
7738 uerror[2] = '\0';
Jari Aaltocce855b1998-04-17 19:52:44 +00007739 last_command_exit_value = EXECUTION_FAILURE;
Chet Ramey00018032011-11-21 20:51:19 -05007740 err_unboundvar (uerror);
Jari Aalto95732b42005-12-07 14:08:12 +00007741 return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal);
Jari Aaltocce855b1998-04-17 19:52:44 +00007742 }
7743 }
7744 else
Jari Aaltof73dda02001-11-13 17:56:06 +00007745 temp = itos (last_asynchronous_pid);
Jari Aaltocce855b1998-04-17 19:52:44 +00007746 break;
7747
7748 /* The only difference between this and $@ is when the arg is quoted. */
7749 case '*': /* `$*' */
7750 list = list_rest_of_args ();
7751
Chet Ramey89a92862011-11-21 20:49:12 -05007752#if 0
7753 /* According to austin-group posix proposal by Geoff Clare in
7754 <20090505091501.GA10097@squonk.masqnet> of 5 May 2009:
7755
7756 "The shell shall write a message to standard error and
7757 immediately exit when it tries to expand an unset parameter
7758 other than the '@' and '*' special parameters."
7759 */
7760
7761 if (list == 0 && unbound_vars_is_error && (pflags & PF_IGNUNBOUND) == 0)
Jari Aalto31859422009-01-12 13:36:28 +00007762 {
7763 uerror[0] = '$';
7764 uerror[1] = '*';
7765 uerror[2] = '\0';
Jari Aalto31859422009-01-12 13:36:28 +00007766 last_command_exit_value = EXECUTION_FAILURE;
Chet Ramey89a92862011-11-21 20:49:12 -05007767 err_unboundvar (uerror);
Jari Aalto31859422009-01-12 13:36:28 +00007768 return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal);
7769 }
Chet Ramey89a92862011-11-21 20:49:12 -05007770#endif
Jari Aalto31859422009-01-12 13:36:28 +00007771
Jari Aaltocce855b1998-04-17 19:52:44 +00007772 /* If there are no command-line arguments, this should just
7773 disappear if there are other characters in the expansion,
7774 even if it's quoted. */
7775 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && list == 0)
7776 temp = (char *)NULL;
Chet Ramey00018032011-11-21 20:51:19 -05007777 else if (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES|Q_PATQUOTE))
Jari Aaltocce855b1998-04-17 19:52:44 +00007778 {
7779 /* If we have "$*" we want to make a string of the positional
7780 parameters, separated by the first character of $IFS, and
7781 quote the whole string, including the separators. If IFS
7782 is unset, the parameters are separated by ' '; if $IFS is
7783 null, the parameters are concatenated. */
Chet Ramey00018032011-11-21 20:51:19 -05007784 temp = (quoted & (Q_DOUBLE_QUOTES|Q_PATQUOTE)) ? string_list_dollar_star (list) : string_list (list);
Chet Ramey495aee42011-11-22 19:11:26 -05007785 if (temp)
7786 {
7787 temp1 = quote_string (temp);
7788 if (*temp == 0)
7789 tflag |= W_HASQUOTEDNULL;
7790 free (temp);
7791 temp = temp1;
7792 }
Jari Aaltocce855b1998-04-17 19:52:44 +00007793 }
7794 else
Jari Aalto28ef6c32001-04-06 19:14:31 +00007795 {
Jari Aalto95732b42005-12-07 14:08:12 +00007796 /* We check whether or not we're eventually going to split $* here,
7797 for example when IFS is empty and we are processing the rhs of
7798 an assignment statement. In that case, we don't separate the
7799 arguments at all. Otherwise, if the $* is not quoted it is
7800 identical to $@ */
Jari Aalto95732b42005-12-07 14:08:12 +00007801# if defined (HANDLE_MULTIBYTE)
7802 if (expand_no_split_dollar_star && ifs_firstc[0] == 0)
7803# else
7804 if (expand_no_split_dollar_star && ifs_firstc == 0)
7805# endif
7806 temp = string_list_dollar_star (list);
7807 else
Chet Rameyac50fba2014-02-26 09:36:43 -05007808 {
7809 temp = string_list_dollar_at (list, quoted);
7810 if (quoted == 0 && (ifs_is_set == 0 || ifs_is_null))
7811 tflag |= W_SPLITSPACE;
7812 }
7813
Jari Aalto28ef6c32001-04-06 19:14:31 +00007814 if (expand_no_split_dollar_star == 0 && contains_dollar_at)
7815 *contains_dollar_at = 1;
7816 }
Jari Aaltocce855b1998-04-17 19:52:44 +00007817
7818 dispose_words (list);
7819 break;
7820
7821 /* When we have "$@" what we want is "$1" "$2" "$3" ... This
7822 means that we have to turn quoting off after we split into
7823 the individually quoted arguments so that the final split
7824 on the first character of $IFS is still done. */
7825 case '@': /* `$@' */
7826 list = list_rest_of_args ();
7827
Chet Ramey89a92862011-11-21 20:49:12 -05007828#if 0
7829 /* According to austin-group posix proposal by Geoff Clare in
7830 <20090505091501.GA10097@squonk.masqnet> of 5 May 2009:
7831
7832 "The shell shall write a message to standard error and
7833 immediately exit when it tries to expand an unset parameter
7834 other than the '@' and '*' special parameters."
7835 */
7836
7837 if (list == 0 && unbound_vars_is_error && (pflags & PF_IGNUNBOUND) == 0)
Jari Aalto31859422009-01-12 13:36:28 +00007838 {
7839 uerror[0] = '$';
7840 uerror[1] = '@';
7841 uerror[2] = '\0';
Jari Aalto31859422009-01-12 13:36:28 +00007842 last_command_exit_value = EXECUTION_FAILURE;
Chet Ramey89a92862011-11-21 20:49:12 -05007843 err_unboundvar (uerror);
Jari Aalto31859422009-01-12 13:36:28 +00007844 return (interactive_shell ? &expand_wdesc_error : &expand_wdesc_fatal);
7845 }
Chet Ramey89a92862011-11-21 20:49:12 -05007846#endif
Jari Aalto31859422009-01-12 13:36:28 +00007847
Jari Aaltocce855b1998-04-17 19:52:44 +00007848 /* We want to flag the fact that we saw this. We can't turn
7849 off quoting entirely, because other characters in the
7850 string might need it (consider "\"$@\""), but we need some
7851 way to signal that the final split on the first character
7852 of $IFS should be done, even though QUOTED is 1. */
Chet Ramey00018032011-11-21 20:51:19 -05007853 /* XXX - should this test include Q_PATQUOTE? */
Jari Aaltocce855b1998-04-17 19:52:44 +00007854 if (quoted_dollar_at_p && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
7855 *quoted_dollar_at_p = 1;
7856 if (contains_dollar_at)
7857 *contains_dollar_at = 1;
7858
7859 /* We want to separate the positional parameters with the first
7860 character of $IFS in case $IFS is something other than a space.
7861 We also want to make sure that splitting is done no matter what --
7862 according to POSIX.2, this expands to a list of the positional
7863 parameters no matter what IFS is set to. */
Chet Ramey3b34f6e2014-05-16 14:17:56 -04007864 /* XXX - what to do when in a context where word splitting is not
7865 performed? Even when IFS is not the default, posix seems to imply
7866 that we behave like unquoted $* ? Maybe we should use PF_NOSPLIT2
7867 here. */
Chet Rameyac50fba2014-02-26 09:36:43 -05007868 temp = string_list_dollar_at (list, (pflags & PF_ASSIGNRHS) ? (quoted|Q_DOUBLE_QUOTES) : quoted);
Jari Aaltocce855b1998-04-17 19:52:44 +00007869
Chet Rameyac50fba2014-02-26 09:36:43 -05007870 tflag |= W_DOLLARAT;
Jari Aaltocce855b1998-04-17 19:52:44 +00007871 dispose_words (list);
7872 break;
7873
7874 case LBRACE:
Chet Ramey00018032011-11-21 20:51:19 -05007875 tdesc = parameter_brace_expand (string, &zindex, quoted, pflags,
Jari Aalto95732b42005-12-07 14:08:12 +00007876 quoted_dollar_at_p,
7877 contains_dollar_at);
7878
Jari Aalto95732b42005-12-07 14:08:12 +00007879 if (tdesc == &expand_wdesc_error || tdesc == &expand_wdesc_fatal)
7880 return (tdesc);
7881 temp = tdesc ? tdesc->word : (char *)0;
Jari Aaltocce855b1998-04-17 19:52:44 +00007882
7883 /* XXX */
Jari Aaltobb706242000-03-17 21:46:59 +00007884 /* Quoted nulls should be removed if there is anything else
Jari Aaltocce855b1998-04-17 19:52:44 +00007885 in the string. */
7886 /* Note that we saw the quoted null so we can add one back at
7887 the end of this function if there are no other characters
Jari Aalto28ef6c32001-04-06 19:14:31 +00007888 in the string, discard TEMP, and go on. The exception to
7889 this is when we have "${@}" and $1 is '', since $@ needs
7890 special handling. */
Jari Aalto95732b42005-12-07 14:08:12 +00007891 if (tdesc && tdesc->word && (tdesc->flags & W_HASQUOTEDNULL) && QUOTED_NULL (temp))
Jari Aaltocce855b1998-04-17 19:52:44 +00007892 {
7893 if (had_quoted_null_p)
7894 *had_quoted_null_p = 1;
Jari Aalto28ef6c32001-04-06 19:14:31 +00007895 if (*quoted_dollar_at_p == 0)
7896 {
7897 free (temp);
Jari Aalto95732b42005-12-07 14:08:12 +00007898 tdesc->word = temp = (char *)NULL;
Jari Aalto28ef6c32001-04-06 19:14:31 +00007899 }
7900
Jari Aaltocce855b1998-04-17 19:52:44 +00007901 }
7902
Jari Aalto95732b42005-12-07 14:08:12 +00007903 ret = tdesc;
Jari Aaltocce855b1998-04-17 19:52:44 +00007904 goto return0;
7905
7906 /* Do command or arithmetic substitution. */
7907 case LPAREN:
7908 /* We have to extract the contents of this paren substitution. */
7909 t_index = zindex + 1;
Jari Aalto31859422009-01-12 13:36:28 +00007910 temp = extract_command_subst (string, &t_index, 0);
Jari Aaltocce855b1998-04-17 19:52:44 +00007911 zindex = t_index;
7912
7913 /* For Posix.2-style `$(( ))' arithmetic substitution,
Jari Aalto28ef6c32001-04-06 19:14:31 +00007914 extract the expression and pass it to the evaluator. */
Jari Aaltocce855b1998-04-17 19:52:44 +00007915 if (temp && *temp == LPAREN)
7916 {
7917 char *temp2;
7918 temp1 = temp + 1;
7919 temp2 = savestring (temp1);
7920 t_index = strlen (temp2) - 1;
7921
7922 if (temp2[t_index] != RPAREN)
7923 {
7924 free (temp2);
7925 goto comsub;
7926 }
7927
7928 /* Cut off ending `)' */
7929 temp2[t_index] = '\0';
7930
Jari Aalto06285672006-10-10 14:15:34 +00007931 if (chk_arithsub (temp2, t_index) == 0)
7932 {
7933 free (temp2);
Chet Ramey00018032011-11-21 20:51:19 -05007934#if 0
7935 internal_warning (_("future versions of the shell will force evaluation as an arithmetic substitution"));
7936#endif
Jari Aalto06285672006-10-10 14:15:34 +00007937 goto comsub;
7938 }
7939
Jari Aaltocce855b1998-04-17 19:52:44 +00007940 /* Expand variables found inside the expression. */
Jari Aalto06285672006-10-10 14:15:34 +00007941 temp1 = expand_arith_string (temp2, Q_DOUBLE_QUOTES);
Jari Aaltocce855b1998-04-17 19:52:44 +00007942 free (temp2);
7943
7944arithsub:
7945 /* No error messages. */
7946 this_command_name = (char *)NULL;
7947 number = evalexp (temp1, &expok);
7948 free (temp);
7949 free (temp1);
7950 if (expok == 0)
7951 {
7952 if (interactive_shell == 0 && posixly_correct)
7953 {
7954 last_command_exit_value = EXECUTION_FAILURE;
Jari Aalto95732b42005-12-07 14:08:12 +00007955 return (&expand_wdesc_fatal);
Jari Aaltocce855b1998-04-17 19:52:44 +00007956 }
7957 else
Jari Aalto95732b42005-12-07 14:08:12 +00007958 return (&expand_wdesc_error);
Jari Aaltocce855b1998-04-17 19:52:44 +00007959 }
7960 temp = itos (number);
7961 break;
7962 }
7963
7964comsub:
Jari Aaltob80f6442004-07-27 13:29:18 +00007965 if (pflags & PF_NOCOMSUB)
7966 /* we need zindex+1 because string[zindex] == RPAREN */
7967 temp1 = substring (string, *sindex, zindex+1);
7968 else
Jari Aalto31859422009-01-12 13:36:28 +00007969 {
7970 tdesc = command_substitute (temp, quoted);
7971 temp1 = tdesc ? tdesc->word : (char *)NULL;
7972 if (tdesc)
7973 dispose_word_desc (tdesc);
7974 }
Jari Aaltocce855b1998-04-17 19:52:44 +00007975 FREE (temp);
7976 temp = temp1;
7977 break;
7978
7979 /* Do POSIX.2d9-style arithmetic substitution. This will probably go
7980 away in a future bash release. */
7981 case '[':
Jari Aaltobb706242000-03-17 21:46:59 +00007982 /* Extract the contents of this arithmetic substitution. */
Jari Aaltocce855b1998-04-17 19:52:44 +00007983 t_index = zindex + 1;
7984 temp = extract_arithmetic_subst (string, &t_index);
7985 zindex = t_index;
Jari Aalto31859422009-01-12 13:36:28 +00007986 if (temp == 0)
7987 {
7988 temp = savestring (string);
7989 if (expanded_something)
7990 *expanded_something = 0;
7991 goto return0;
7992 }
Jari Aaltocce855b1998-04-17 19:52:44 +00007993
7994 /* Do initial variable expansion. */
Jari Aalto06285672006-10-10 14:15:34 +00007995 temp1 = expand_arith_string (temp, Q_DOUBLE_QUOTES);
Jari Aaltocce855b1998-04-17 19:52:44 +00007996
7997 goto arithsub;
7998
7999 default:
8000 /* Find the variable in VARIABLE_LIST. */
8001 temp = (char *)NULL;
8002
8003 for (t_index = zindex; (c = string[zindex]) && legal_variable_char (c); zindex++)
8004 ;
8005 temp1 = (zindex > t_index) ? substring (string, t_index, zindex) : (char *)NULL;
8006
8007 /* If this isn't a variable name, then just output the `$'. */
8008 if (temp1 == 0 || *temp1 == '\0')
8009 {
8010 FREE (temp1);
Jari Aaltof73dda02001-11-13 17:56:06 +00008011 temp = (char *)xmalloc (2);
Jari Aaltocce855b1998-04-17 19:52:44 +00008012 temp[0] = '$';
8013 temp[1] = '\0';
8014 if (expanded_something)
8015 *expanded_something = 0;
8016 goto return0;
8017 }
8018
8019 /* If the variable exists, return its value cell. */
8020 var = find_variable (temp1);
8021
Jari Aalto7117c2d2002-07-17 14:10:11 +00008022 if (var && invisible_p (var) == 0 && var_isset (var))
Jari Aaltocce855b1998-04-17 19:52:44 +00008023 {
8024#if defined (ARRAY_VARS)
Jari Aalto31859422009-01-12 13:36:28 +00008025 if (assoc_p (var) || array_p (var))
Jari Aaltocce855b1998-04-17 19:52:44 +00008026 {
Jari Aalto31859422009-01-12 13:36:28 +00008027 temp = array_p (var) ? array_reference (array_cell (var), 0)
8028 : assoc_reference (assoc_cell (var), "0");
Jari Aaltocce855b1998-04-17 19:52:44 +00008029 if (temp)
Jari Aaltob80f6442004-07-27 13:29:18 +00008030 temp = (*temp && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
8031 ? quote_string (temp)
8032 : quote_escapes (temp);
8033 else if (unbound_vars_is_error)
8034 goto unbound_variable;
Jari Aaltocce855b1998-04-17 19:52:44 +00008035 }
8036 else
8037#endif
Jari Aaltob80f6442004-07-27 13:29:18 +00008038 {
8039 temp = value_cell (var);
8040
8041 temp = (*temp && (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)))
8042 ? quote_string (temp)
8043 : quote_escapes (temp);
8044 }
8045
Jari Aaltocce855b1998-04-17 19:52:44 +00008046 free (temp1);
Jari Aalto7117c2d2002-07-17 14:10:11 +00008047
Jari Aaltocce855b1998-04-17 19:52:44 +00008048 goto return0;
8049 }
Chet Rameyb64a0e12014-09-25 08:45:07 -04008050 else if (var && (invisible_p (var) || var_isset (var) == 0))
8051 temp = (char *)NULL;
8052 else if ((var = find_variable_last_nameref (temp1)) && var_isset (var) && invisible_p (var) == 0)
Chet Rameyac50fba2014-02-26 09:36:43 -05008053 {
8054 temp = nameref_cell (var);
8055#if defined (ARRAY_VARS)
8056 if (temp && *temp && valid_array_reference (temp))
8057 {
8058 tdesc = parameter_brace_expand_word (temp, SPECIAL_VAR (temp, 0), quoted, pflags, (arrayind_t *)NULL);
8059 if (tdesc == &expand_wdesc_error || tdesc == &expand_wdesc_fatal)
8060 return (tdesc);
8061 ret = tdesc;
8062 goto return0;
8063 }
8064 else
8065#endif
8066 /* y=2 ; typeset -n x=y; echo $x is not the same as echo $2 in ksh */
8067 if (temp && *temp && legal_identifier (temp) == 0)
8068 {
8069 last_command_exit_value = EXECUTION_FAILURE;
8070 report_error (_("%s: invalid variable name for name reference"), temp);
8071 return (&expand_wdesc_error); /* XXX */
8072 }
8073 else
8074 temp = (char *)NULL;
8075 }
Jari Aaltocce855b1998-04-17 19:52:44 +00008076
8077 temp = (char *)NULL;
8078
Jari Aaltob80f6442004-07-27 13:29:18 +00008079unbound_variable:
Jari Aaltocce855b1998-04-17 19:52:44 +00008080 if (unbound_vars_is_error)
Chet Ramey00018032011-11-21 20:51:19 -05008081 {
8082 last_command_exit_value = EXECUTION_FAILURE;
8083 err_unboundvar (temp1);
8084 }
Jari Aaltocce855b1998-04-17 19:52:44 +00008085 else
8086 {
8087 free (temp1);
8088 goto return0;
8089 }
8090
8091 free (temp1);
8092 last_command_exit_value = EXECUTION_FAILURE;
8093 return ((unbound_vars_is_error && interactive_shell == 0)
Jari Aalto95732b42005-12-07 14:08:12 +00008094 ? &expand_wdesc_fatal
8095 : &expand_wdesc_error);
Jari Aaltocce855b1998-04-17 19:52:44 +00008096 }
8097
8098 if (string[zindex])
8099 zindex++;
8100
8101return0:
8102 *sindex = zindex;
Jari Aalto95732b42005-12-07 14:08:12 +00008103
8104 if (ret == 0)
8105 {
8106 ret = alloc_word_desc ();
8107 ret->flags = tflag; /* XXX */
8108 ret->word = temp;
8109 }
8110 return ret;
Jari Aaltocce855b1998-04-17 19:52:44 +00008111}
8112
8113/* Make a word list which is the result of parameter and variable
8114 expansion, command substitution, arithmetic substitution, and
8115 quote removal of WORD. Return a pointer to a WORD_LIST which is
8116 the result of the expansion. If WORD contains a null word, the
8117 word list returned is also null.
Jari Aalto726f6381996-08-26 18:22:31 +00008118
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008119 QUOTED contains flag values defined in shell.h.
8120
Jari Aaltob72432f1999-02-19 17:11:39 +00008121 ISEXP is used to tell expand_word_internal that the word should be
8122 treated as the result of an expansion. This has implications for
8123 how IFS characters in the word are treated.
8124
Jari Aalto726f6381996-08-26 18:22:31 +00008125 CONTAINS_DOLLAR_AT and EXPANDED_SOMETHING are return values; when non-null
8126 they point to an integer value which receives information about expansion.
8127 CONTAINS_DOLLAR_AT gets non-zero if WORD contained "$@", else zero.
8128 EXPANDED_SOMETHING get non-zero if WORD contained any parameter expansions,
8129 else zero.
8130
8131 This only does word splitting in the case of $@ expansion. In that
8132 case, we split on ' '. */
8133
8134/* Values for the local variable quoted_state. */
8135#define UNQUOTED 0
8136#define PARTIALLY_QUOTED 1
8137#define WHOLLY_QUOTED 2
8138
8139static WORD_LIST *
Jari Aaltob72432f1999-02-19 17:11:39 +00008140expand_word_internal (word, quoted, isexp, contains_dollar_at, expanded_something)
Jari Aalto726f6381996-08-26 18:22:31 +00008141 WORD_DESC *word;
Jari Aaltob72432f1999-02-19 17:11:39 +00008142 int quoted, isexp;
Jari Aalto726f6381996-08-26 18:22:31 +00008143 int *contains_dollar_at;
8144 int *expanded_something;
8145{
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008146 WORD_LIST *list;
8147 WORD_DESC *tword;
Jari Aalto726f6381996-08-26 18:22:31 +00008148
8149 /* The intermediate string that we build while expanding. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008150 char *istring;
Jari Aalto726f6381996-08-26 18:22:31 +00008151
8152 /* The current size of the above object. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008153 int istring_size;
Jari Aalto726f6381996-08-26 18:22:31 +00008154
8155 /* Index into ISTRING. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008156 int istring_index;
Jari Aalto726f6381996-08-26 18:22:31 +00008157
8158 /* Temporary string storage. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008159 char *temp, *temp1;
Jari Aalto726f6381996-08-26 18:22:31 +00008160
8161 /* The text of WORD. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008162 register char *string;
Jari Aalto726f6381996-08-26 18:22:31 +00008163
Jari Aalto7117c2d2002-07-17 14:10:11 +00008164 /* The size of STRING. */
8165 size_t string_size;
8166
Jari Aalto726f6381996-08-26 18:22:31 +00008167 /* The index into STRING. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008168 int sindex;
Jari Aalto726f6381996-08-26 18:22:31 +00008169
8170 /* This gets 1 if we see a $@ while quoted. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008171 int quoted_dollar_at;
Jari Aalto726f6381996-08-26 18:22:31 +00008172
8173 /* One of UNQUOTED, PARTIALLY_QUOTED, or WHOLLY_QUOTED, depending on
8174 whether WORD contains no quoting characters, a partially quoted
8175 string (e.g., "xx"ab), or is fully quoted (e.g., "xxab"). */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008176 int quoted_state;
8177
Jari Aalto95732b42005-12-07 14:08:12 +00008178 /* State flags */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008179 int had_quoted_null;
Chet Ramey0b913682012-07-10 09:44:54 -04008180 int has_dollar_at, temp_has_dollar_at;
Chet Rameyac50fba2014-02-26 09:36:43 -05008181 int split_on_spaces;
Jari Aalto28ef6c32001-04-06 19:14:31 +00008182 int tflag;
Chet Ramey00018032011-11-21 20:51:19 -05008183 int pflags; /* flags passed to param_expand */
Jari Aalto726f6381996-08-26 18:22:31 +00008184
Jari Aalto95732b42005-12-07 14:08:12 +00008185 int assignoff; /* If assignment, offset of `=' */
8186
Jari Aaltof73dda02001-11-13 17:56:06 +00008187 register unsigned char c; /* Current character. */
Jari Aalto726f6381996-08-26 18:22:31 +00008188 int t_index; /* For calls to string_extract_xxx. */
Jari Aalto726f6381996-08-26 18:22:31 +00008189
Jari Aaltobb706242000-03-17 21:46:59 +00008190 char twochars[2];
Jari Aaltob72432f1999-02-19 17:11:39 +00008191
Jari Aalto7117c2d2002-07-17 14:10:11 +00008192 DECLARE_MBSTATE;
8193
Jari Aaltof73dda02001-11-13 17:56:06 +00008194 istring = (char *)xmalloc (istring_size = DEFAULT_INITIAL_ARRAY_SIZE);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008195 istring[istring_index = 0] = '\0';
Jari Aaltocce855b1998-04-17 19:52:44 +00008196 quoted_dollar_at = had_quoted_null = has_dollar_at = 0;
Chet Rameyac50fba2014-02-26 09:36:43 -05008197 split_on_spaces = 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008198 quoted_state = UNQUOTED;
8199
8200 string = word->word;
8201 if (string == 0)
8202 goto finished_with_string;
Jari Aalto95732b42005-12-07 14:08:12 +00008203 /* Don't need the string length for the SADD... and COPY_ macros unless
8204 multibyte characters are possible. */
8205 string_size = (MB_CUR_MAX > 1) ? strlen (string) : 1;
Jari Aalto726f6381996-08-26 18:22:31 +00008206
8207 if (contains_dollar_at)
8208 *contains_dollar_at = 0;
8209
Jari Aalto95732b42005-12-07 14:08:12 +00008210 assignoff = -1;
8211
Jari Aalto726f6381996-08-26 18:22:31 +00008212 /* Begin the expansion. */
8213
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008214 for (sindex = 0; ;)
Jari Aalto726f6381996-08-26 18:22:31 +00008215 {
8216 c = string[sindex];
8217
Chet Rameyac50fba2014-02-26 09:36:43 -05008218 /* Case on top-level character. */
Jari Aalto726f6381996-08-26 18:22:31 +00008219 switch (c)
8220 {
8221 case '\0':
8222 goto finished_with_string;
8223
8224 case CTLESC:
Jari Aalto7117c2d2002-07-17 14:10:11 +00008225 sindex++;
8226#if HANDLE_MULTIBYTE
8227 if (MB_CUR_MAX > 1 && string[sindex])
8228 {
Jari Aaltob80f6442004-07-27 13:29:18 +00008229 SADD_MBQCHAR_BODY(temp, string, sindex, string_size);
Jari Aalto7117c2d2002-07-17 14:10:11 +00008230 }
8231 else
8232#endif
8233 {
8234 temp = (char *)xmalloc (3);
8235 temp[0] = CTLESC;
8236 temp[1] = c = string[sindex];
8237 temp[2] = '\0';
8238 }
Jari Aalto726f6381996-08-26 18:22:31 +00008239
Jari Aaltocce855b1998-04-17 19:52:44 +00008240dollar_add_string:
Jari Aalto726f6381996-08-26 18:22:31 +00008241 if (string[sindex])
8242 sindex++;
8243
Jari Aaltocce855b1998-04-17 19:52:44 +00008244add_string:
8245 if (temp)
8246 {
8247 istring = sub_append_string (temp, istring, &istring_index, &istring_size);
8248 temp = (char *)0;
8249 }
8250
8251 break;
Jari Aalto726f6381996-08-26 18:22:31 +00008252
8253#if defined (PROCESS_SUBSTITUTION)
8254 /* Process substitution. */
8255 case '<':
8256 case '>':
8257 {
Jari Aalto06285672006-10-10 14:15:34 +00008258 if (string[++sindex] != LPAREN || (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) || (word->flags & (W_DQUOTE|W_NOPROCSUB)) || posixly_correct)
Jari Aalto726f6381996-08-26 18:22:31 +00008259 {
Jari Aaltobb706242000-03-17 21:46:59 +00008260 sindex--; /* add_character: label increments sindex */
Jari Aalto726f6381996-08-26 18:22:31 +00008261 goto add_character;
8262 }
8263 else
Jari Aaltocce855b1998-04-17 19:52:44 +00008264 t_index = sindex + 1; /* skip past both '<' and LPAREN */
Jari Aalto726f6381996-08-26 18:22:31 +00008265
Chet Ramey85b94812014-08-18 11:45:12 -04008266 temp1 = extract_process_subst (string, (c == '<') ? "<(" : ">(", &t_index, 0); /*))*/
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008267 sindex = t_index;
Jari Aalto726f6381996-08-26 18:22:31 +00008268
8269 /* If the process substitution specification is `<()', we want to
8270 open the pipe for writing in the child and produce output; if
8271 it is `>()', we want to open the pipe for reading in the child
8272 and consume input. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008273 temp = temp1 ? process_substitute (temp1, (c == '>')) : (char *)0;
Jari Aalto726f6381996-08-26 18:22:31 +00008274
8275 FREE (temp1);
8276
8277 goto dollar_add_string;
8278 }
8279#endif /* PROCESS_SUBSTITUTION */
8280
Jari Aalto95732b42005-12-07 14:08:12 +00008281 case '=':
8282 /* Posix.2 section 3.6.1 says that tildes following `=' in words
8283 which are not assignment statements are not expanded. If the
8284 shell isn't in posix mode, though, we perform tilde expansion
8285 on `likely candidate' unquoted assignment statements (flags
8286 include W_ASSIGNMENT but not W_QUOTED). A likely candidate
8287 contains an unquoted :~ or =~. Something to think about: we
8288 now have a flag that says to perform tilde expansion on arguments
8289 to `assignment builtins' like declare and export that look like
8290 assignment statements. We now do tilde expansion on such words
8291 even in POSIX mode. */
8292 if (word->flags & (W_ASSIGNRHS|W_NOTILDE))
Jari Aalto17345e52009-02-19 22:21:29 +00008293 {
Chet Ramey00018032011-11-21 20:51:19 -05008294 if (isexp == 0 && (word->flags & (W_NOSPLIT|W_NOSPLIT2)) == 0 && isifs (c))
Jari Aalto17345e52009-02-19 22:21:29 +00008295 goto add_ifs_character;
8296 else
8297 goto add_character;
8298 }
Jari Aalto95732b42005-12-07 14:08:12 +00008299 /* If we're not in posix mode or forcing assignment-statement tilde
8300 expansion, note where the `=' appears in the word and prepare to
8301 do tilde expansion following the first `='. */
8302 if ((word->flags & W_ASSIGNMENT) &&
8303 (posixly_correct == 0 || (word->flags & W_TILDEEXP)) &&
8304 assignoff == -1 && sindex > 0)
8305 assignoff = sindex;
8306 if (sindex == assignoff && string[sindex+1] == '~') /* XXX */
8307 word->flags |= W_ITILDE;
8308#if 0
8309 else if ((word->flags & W_ASSIGNMENT) &&
8310 (posixly_correct == 0 || (word->flags & W_TILDEEXP)) &&
8311 string[sindex+1] == '~')
8312 word->flags |= W_ITILDE;
8313#endif
Chet Ramey00018032011-11-21 20:51:19 -05008314 if (isexp == 0 && (word->flags & (W_NOSPLIT|W_NOSPLIT2)) == 0 && isifs (c))
Jari Aalto17345e52009-02-19 22:21:29 +00008315 goto add_ifs_character;
8316 else
8317 goto add_character;
Jari Aalto95732b42005-12-07 14:08:12 +00008318
8319 case ':':
8320 if (word->flags & W_NOTILDE)
Jari Aalto17345e52009-02-19 22:21:29 +00008321 {
Chet Ramey00018032011-11-21 20:51:19 -05008322 if (isexp == 0 && (word->flags & (W_NOSPLIT|W_NOSPLIT2)) == 0 && isifs (c))
Jari Aalto17345e52009-02-19 22:21:29 +00008323 goto add_ifs_character;
8324 else
8325 goto add_character;
8326 }
Jari Aalto95732b42005-12-07 14:08:12 +00008327
8328 if ((word->flags & (W_ASSIGNMENT|W_ASSIGNRHS|W_TILDEEXP)) &&
8329 string[sindex+1] == '~')
8330 word->flags |= W_ITILDE;
Jari Aalto17345e52009-02-19 22:21:29 +00008331
Chet Ramey00018032011-11-21 20:51:19 -05008332 if (isexp == 0 && (word->flags & (W_NOSPLIT|W_NOSPLIT2)) == 0 && isifs (c))
Jari Aalto17345e52009-02-19 22:21:29 +00008333 goto add_ifs_character;
8334 else
8335 goto add_character;
Jari Aalto95732b42005-12-07 14:08:12 +00008336
8337 case '~':
8338 /* If the word isn't supposed to be tilde expanded, or we're not
8339 at the start of a word or after an unquoted : or = in an
8340 assignment statement, we don't do tilde expansion. */
8341 if ((word->flags & (W_NOTILDE|W_DQUOTE)) ||
8342 (sindex > 0 && ((word->flags & W_ITILDE) == 0)) ||
8343 (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT)))
8344 {
8345 word->flags &= ~W_ITILDE;
Chet Ramey00018032011-11-21 20:51:19 -05008346 if (isexp == 0 && (word->flags & (W_NOSPLIT|W_NOSPLIT2)) == 0 && isifs (c) && (quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT)) == 0)
Jari Aalto17345e52009-02-19 22:21:29 +00008347 goto add_ifs_character;
8348 else
8349 goto add_character;
Jari Aalto95732b42005-12-07 14:08:12 +00008350 }
8351
8352 if (word->flags & W_ASSIGNRHS)
8353 tflag = 2;
8354 else if (word->flags & (W_ASSIGNMENT|W_TILDEEXP))
8355 tflag = 1;
8356 else
8357 tflag = 0;
8358
8359 temp = bash_tilde_find_word (string + sindex, tflag, &t_index);
8360
8361 word->flags &= ~W_ITILDE;
8362
8363 if (temp && *temp && t_index > 0)
8364 {
8365 temp1 = bash_tilde_expand (temp, tflag);
Jari Aalto06285672006-10-10 14:15:34 +00008366 if (temp1 && *temp1 == '~' && STREQ (temp, temp1))
8367 {
8368 FREE (temp);
8369 FREE (temp1);
8370 goto add_character; /* tilde expansion failed */
8371 }
Jari Aalto95732b42005-12-07 14:08:12 +00008372 free (temp);
8373 temp = temp1;
8374 sindex += t_index;
Jari Aalto31859422009-01-12 13:36:28 +00008375 goto add_quoted_string; /* XXX was add_string */
Jari Aalto95732b42005-12-07 14:08:12 +00008376 }
8377 else
8378 {
8379 FREE (temp);
8380 goto add_character;
8381 }
8382
Jari Aalto726f6381996-08-26 18:22:31 +00008383 case '$':
Jari Aalto726f6381996-08-26 18:22:31 +00008384 if (expanded_something)
8385 *expanded_something = 1;
8386
Chet Ramey0b913682012-07-10 09:44:54 -04008387 temp_has_dollar_at = 0;
Chet Ramey00018032011-11-21 20:51:19 -05008388 pflags = (word->flags & W_NOCOMSUB) ? PF_NOCOMSUB : 0;
8389 if (word->flags & W_NOSPLIT2)
8390 pflags |= PF_NOSPLIT2;
Chet Rameyac50fba2014-02-26 09:36:43 -05008391 if (word->flags & W_ASSIGNRHS)
8392 pflags |= PF_ASSIGNRHS;
Jari Aalto95732b42005-12-07 14:08:12 +00008393 tword = param_expand (string, &sindex, quoted, expanded_something,
Chet Ramey0b913682012-07-10 09:44:54 -04008394 &temp_has_dollar_at, &quoted_dollar_at,
Chet Ramey00018032011-11-21 20:51:19 -05008395 &had_quoted_null, pflags);
Chet Ramey0b913682012-07-10 09:44:54 -04008396 has_dollar_at += temp_has_dollar_at;
Chet Rameyac50fba2014-02-26 09:36:43 -05008397 split_on_spaces += (tword->flags & W_SPLITSPACE);
Jari Aalto726f6381996-08-26 18:22:31 +00008398
Jari Aalto95732b42005-12-07 14:08:12 +00008399 if (tword == &expand_wdesc_error || tword == &expand_wdesc_fatal)
Jari Aalto726f6381996-08-26 18:22:31 +00008400 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008401 free (string);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008402 free (istring);
Jari Aalto95732b42005-12-07 14:08:12 +00008403 return ((tword == &expand_wdesc_error) ? &expand_word_error
8404 : &expand_word_fatal);
Jari Aalto726f6381996-08-26 18:22:31 +00008405 }
Jari Aaltocce855b1998-04-17 19:52:44 +00008406 if (contains_dollar_at && has_dollar_at)
8407 *contains_dollar_at = 1;
Jari Aalto95732b42005-12-07 14:08:12 +00008408
8409 if (tword && (tword->flags & W_HASQUOTEDNULL))
8410 had_quoted_null = 1;
8411
Chet Rameyac50fba2014-02-26 09:36:43 -05008412 temp = tword ? tword->word : (char *)NULL;
Jari Aalto95732b42005-12-07 14:08:12 +00008413 dispose_word_desc (tword);
8414
Chet Rameya601c742012-07-10 09:44:07 -04008415 /* Kill quoted nulls; we will add them back at the end of
8416 expand_word_internal if nothing else in the string */
8417 if (had_quoted_null && temp && QUOTED_NULL (temp))
8418 {
8419 FREE (temp);
8420 temp = (char *)NULL;
8421 }
8422
Jari Aaltocce855b1998-04-17 19:52:44 +00008423 goto add_string;
8424 break;
Jari Aalto726f6381996-08-26 18:22:31 +00008425
8426 case '`': /* Backquoted command substitution. */
8427 {
Jari Aaltob80f6442004-07-27 13:29:18 +00008428 t_index = sindex++;
Jari Aalto726f6381996-08-26 18:22:31 +00008429
Jari Aalto31859422009-01-12 13:36:28 +00008430 temp = string_extract (string, &sindex, "`", SX_REQMATCH);
Jari Aalto95732b42005-12-07 14:08:12 +00008431 /* The test of sindex against t_index is to allow bare instances of
8432 ` to pass through, for backwards compatibility. */
8433 if (temp == &extract_string_error || temp == &extract_string_fatal)
8434 {
8435 if (sindex - 1 == t_index)
8436 {
8437 sindex = t_index;
8438 goto add_character;
8439 }
Chet Rameyac50fba2014-02-26 09:36:43 -05008440 last_command_exit_value = EXECUTION_FAILURE;
Jari Aalto31859422009-01-12 13:36:28 +00008441 report_error (_("bad substitution: no closing \"`\" in %s") , string+t_index);
Jari Aalto95732b42005-12-07 14:08:12 +00008442 free (string);
8443 free (istring);
8444 return ((temp == &extract_string_error) ? &expand_word_error
8445 : &expand_word_fatal);
8446 }
8447
Jari Aalto726f6381996-08-26 18:22:31 +00008448 if (expanded_something)
8449 *expanded_something = 1;
8450
Jari Aaltob80f6442004-07-27 13:29:18 +00008451 if (word->flags & W_NOCOMSUB)
8452 /* sindex + 1 because string[sindex] == '`' */
8453 temp1 = substring (string, t_index, sindex + 1);
8454 else
8455 {
8456 de_backslash (temp);
Jari Aalto31859422009-01-12 13:36:28 +00008457 tword = command_substitute (temp, quoted);
8458 temp1 = tword ? tword->word : (char *)NULL;
8459 if (tword)
8460 dispose_word_desc (tword);
Jari Aaltob80f6442004-07-27 13:29:18 +00008461 }
Jari Aalto726f6381996-08-26 18:22:31 +00008462 FREE (temp);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008463 temp = temp1;
8464 goto dollar_add_string;
Jari Aalto726f6381996-08-26 18:22:31 +00008465 }
8466
8467 case '\\':
8468 if (string[sindex + 1] == '\n')
8469 {
8470 sindex += 2;
8471 continue;
8472 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008473
8474 c = string[++sindex];
8475
8476 if (quoted & Q_HERE_DOCUMENT)
Jari Aalto28ef6c32001-04-06 19:14:31 +00008477 tflag = CBSHDOC;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008478 else if (quoted & Q_DOUBLE_QUOTES)
Jari Aalto28ef6c32001-04-06 19:14:31 +00008479 tflag = CBSDQUOTE;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008480 else
Jari Aalto28ef6c32001-04-06 19:14:31 +00008481 tflag = 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008482
Chet Ramey495aee42011-11-22 19:11:26 -05008483 /* From Posix discussion on austin-group list: Backslash escaping
8484 a } in ${...} is removed. Issue 0000221 */
8485 if ((quoted & Q_DOLBRACE) && c == RBRACE)
8486 {
8487 SCOPY_CHAR_I (twochars, CTLESC, c, string, sindex, string_size);
8488 }
Chet Rameyac50fba2014-02-26 09:36:43 -05008489 /* This is the fix for " $@\ " */
8490 else if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && ((sh_syntaxtab[c] & tflag) == 0) && isexp == 0 && isifs (c))
8491 {
8492 RESIZE_MALLOCED_BUFFER (istring, istring_index, 2, istring_size,
8493 DEFAULT_ARRAY_SIZE);
8494 istring[istring_index++] = CTLESC;
8495 istring[istring_index++] = '\\';
8496 istring[istring_index] = '\0';
8497
8498 SCOPY_CHAR_I (twochars, CTLESC, c, string, sindex, string_size);
8499 }
Chet Ramey495aee42011-11-22 19:11:26 -05008500 else if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) && ((sh_syntaxtab[c] & tflag) == 0))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008501 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00008502 SCOPY_CHAR_I (twochars, '\\', c, string, sindex, string_size);
Jari Aaltobb706242000-03-17 21:46:59 +00008503 }
8504 else if (c == 0)
8505 {
8506 c = CTLNUL;
8507 sindex--; /* add_character: label increments sindex */
8508 goto add_character;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008509 }
8510 else
Jari Aaltobb706242000-03-17 21:46:59 +00008511 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00008512 SCOPY_CHAR_I (twochars, CTLESC, c, string, sindex, string_size);
Jari Aaltobb706242000-03-17 21:46:59 +00008513 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008514
Jari Aaltobb706242000-03-17 21:46:59 +00008515 sindex++;
8516add_twochars:
8517 /* BEFORE jumping here, we need to increment sindex if appropriate */
8518 RESIZE_MALLOCED_BUFFER (istring, istring_index, 2, istring_size,
8519 DEFAULT_ARRAY_SIZE);
8520 istring[istring_index++] = twochars[0];
8521 istring[istring_index++] = twochars[1];
8522 istring[istring_index] = '\0';
8523
8524 break;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008525
8526 case '"':
Jari Aalto95732b42005-12-07 14:08:12 +00008527 if ((quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT)))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008528 goto add_character;
8529
8530 t_index = ++sindex;
8531 temp = string_extract_double_quoted (string, &sindex, 0);
8532
8533 /* If the quotes surrounded the entire string, then the
8534 whole word was quoted. */
8535 quoted_state = (t_index == 1 && string[sindex] == '\0')
8536 ? WHOLLY_QUOTED
Jari Aalto7117c2d2002-07-17 14:10:11 +00008537 : PARTIALLY_QUOTED;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008538
8539 if (temp && *temp)
8540 {
Jari Aalto95732b42005-12-07 14:08:12 +00008541 tword = alloc_word_desc ();
8542 tword->word = temp;
8543
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008544 temp = (char *)NULL;
8545
Chet Ramey0b913682012-07-10 09:44:54 -04008546 temp_has_dollar_at = 0; /* XXX */
Jari Aalto95732b42005-12-07 14:08:12 +00008547 /* Need to get W_HASQUOTEDNULL flag through this function. */
Chet Ramey0b913682012-07-10 09:44:54 -04008548 list = expand_word_internal (tword, Q_DOUBLE_QUOTES, 0, &temp_has_dollar_at, (int *)NULL);
8549 has_dollar_at += temp_has_dollar_at;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008550
8551 if (list == &expand_word_error || list == &expand_word_fatal)
8552 {
8553 free (istring);
8554 free (string);
8555 /* expand_word_internal has already freed temp_word->word
8556 for us because of the way it prints error messages. */
8557 tword->word = (char *)NULL;
8558 dispose_word (tword);
8559 return list;
8560 }
8561
8562 dispose_word (tword);
8563
8564 /* "$@" (a double-quoted dollar-at) expands into nothing,
8565 not even a NULL word, when there are no positional
8566 parameters. */
Jari Aaltocce855b1998-04-17 19:52:44 +00008567 if (list == 0 && has_dollar_at)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008568 {
8569 quoted_dollar_at++;
8570 break;
8571 }
8572
8573 /* If we get "$@", we know we have expanded something, so we
8574 need to remember it for the final split on $IFS. This is
8575 a special case; it's the only case where a quoted string
8576 can expand into more than one word. It's going to come back
8577 from the above call to expand_word_internal as a list with
8578 a single word, in which all characters are quoted and
8579 separated by blanks. What we want to do is to turn it back
8580 into a list for the next piece of code. */
8581 if (list)
8582 dequote_list (list);
8583
Jari Aalto95732b42005-12-07 14:08:12 +00008584 if (list && list->word && (list->word->flags & W_HASQUOTEDNULL))
Chet Rameyac50fba2014-02-26 09:36:43 -05008585 had_quoted_null = 1; /* XXX */
Jari Aalto95732b42005-12-07 14:08:12 +00008586
Jari Aaltocce855b1998-04-17 19:52:44 +00008587 if (has_dollar_at)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008588 {
8589 quoted_dollar_at++;
8590 if (contains_dollar_at)
8591 *contains_dollar_at = 1;
8592 if (expanded_something)
8593 *expanded_something = 1;
8594 }
8595 }
Jari Aalto726f6381996-08-26 18:22:31 +00008596 else
8597 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008598 /* What we have is "". This is a minor optimization. */
Jari Aaltof73dda02001-11-13 17:56:06 +00008599 FREE (temp);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008600 list = (WORD_LIST *)NULL;
8601 }
Jari Aalto726f6381996-08-26 18:22:31 +00008602
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008603 /* The code above *might* return a list (consider the case of "$@",
8604 where it returns "$1", "$2", etc.). We can't throw away the
8605 rest of the list, and we have to make sure each word gets added
8606 as quoted. We test on tresult->next: if it is non-NULL, we
8607 quote the whole list, save it to a string with string_list, and
8608 add that string. We don't need to quote the results of this
8609 (and it would be wrong, since that would quote the separators
8610 as well), so we go directly to add_string. */
8611 if (list)
8612 {
8613 if (list->next)
Jari Aalto726f6381996-08-26 18:22:31 +00008614 {
Jari Aaltobc4cd231998-07-23 14:37:54 +00008615 /* Testing quoted_dollar_at makes sure that "$@" is
8616 split correctly when $IFS does not contain a space. */
8617 temp = quoted_dollar_at
8618 ? string_list_dollar_at (list, Q_DOUBLE_QUOTES)
8619 : string_list (quote_list (list));
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008620 dispose_words (list);
Jari Aalto726f6381996-08-26 18:22:31 +00008621 goto add_string;
8622 }
8623 else
8624 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008625 temp = savestring (list->word->word);
Jari Aalto95732b42005-12-07 14:08:12 +00008626 tflag = list->word->flags;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008627 dispose_words (list);
Jari Aalto95732b42005-12-07 14:08:12 +00008628
Jari Aaltocce855b1998-04-17 19:52:44 +00008629 /* If the string is not a quoted null string, we want
8630 to remove any embedded unquoted CTLNUL characters.
8631 We do not want to turn quoted null strings back into
8632 the empty string, though. We do this because we
8633 want to remove any quoted nulls from expansions that
8634 contain other characters. For example, if we have
8635 x"$*"y or "x$*y" and there are no positional parameters,
Jari Aalto7117c2d2002-07-17 14:10:11 +00008636 the $* should expand into nothing. */
Jari Aalto95732b42005-12-07 14:08:12 +00008637 /* We use the W_HASQUOTEDNULL flag to differentiate the
8638 cases: a quoted null character as above and when
8639 CTLNUL is contained in the (non-null) expansion
8640 of some variable. We use the had_quoted_null flag to
8641 pass the value through this function to its caller. */
8642 if ((tflag & W_HASQUOTEDNULL) && QUOTED_NULL (temp) == 0)
Jari Aaltocce855b1998-04-17 19:52:44 +00008643 remove_quoted_nulls (temp); /* XXX */
Jari Aalto726f6381996-08-26 18:22:31 +00008644 }
8645 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008646 else
8647 temp = (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +00008648
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008649 /* We do not want to add quoted nulls to strings that are only
Chet Rameyac50fba2014-02-26 09:36:43 -05008650 partially quoted; we can throw them away. The exception to
8651 this is when we are going to be performing word splitting,
8652 since we have to preserve a null argument if the next character
8653 will cause word splitting. */
Chet Ramey495aee42011-11-22 19:11:26 -05008654 if (temp == 0 && quoted_state == PARTIALLY_QUOTED && (word->flags & (W_NOSPLIT|W_NOSPLIT2)))
Jari Aaltocce855b1998-04-17 19:52:44 +00008655 continue;
Jari Aalto726f6381996-08-26 18:22:31 +00008656
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008657 add_quoted_string:
Jari Aalto726f6381996-08-26 18:22:31 +00008658
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008659 if (temp)
8660 {
8661 temp1 = temp;
8662 temp = quote_string (temp);
8663 free (temp1);
Jari Aaltobb706242000-03-17 21:46:59 +00008664 goto add_string;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008665 }
8666 else
8667 {
8668 /* Add NULL arg. */
Jari Aaltobb706242000-03-17 21:46:59 +00008669 c = CTLNUL;
8670 sindex--; /* add_character: label increments sindex */
8671 goto add_character;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008672 }
Jari Aaltobb706242000-03-17 21:46:59 +00008673
Jari Aalto726f6381996-08-26 18:22:31 +00008674 /* break; */
8675
8676 case '\'':
Jari Aalto95732b42005-12-07 14:08:12 +00008677 if ((quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT)))
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008678 goto add_character;
Jari Aalto726f6381996-08-26 18:22:31 +00008679
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008680 t_index = ++sindex;
8681 temp = string_extract_single_quoted (string, &sindex);
Jari Aalto726f6381996-08-26 18:22:31 +00008682
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008683 /* If the entire STRING was surrounded by single quotes,
8684 then the string is wholly quoted. */
8685 quoted_state = (t_index == 1 && string[sindex] == '\0')
8686 ? WHOLLY_QUOTED
Jari Aalto7117c2d2002-07-17 14:10:11 +00008687 : PARTIALLY_QUOTED;
Jari Aalto726f6381996-08-26 18:22:31 +00008688
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008689 /* If all we had was '', it is a null expansion. */
8690 if (*temp == '\0')
8691 {
8692 free (temp);
8693 temp = (char *)NULL;
8694 }
8695 else
Jari Aalto7117c2d2002-07-17 14:10:11 +00008696 remove_quoted_escapes (temp); /* ??? */
Jari Aalto726f6381996-08-26 18:22:31 +00008697
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008698 /* We do not want to add quoted nulls to strings that are only
8699 partially quoted; such nulls are discarded. */
8700 if (temp == 0 && (quoted_state == PARTIALLY_QUOTED))
8701 continue;
Jari Aalto726f6381996-08-26 18:22:31 +00008702
Jari Aaltobb706242000-03-17 21:46:59 +00008703 /* If we have a quoted null expansion, add a quoted NULL to istring. */
8704 if (temp == 0)
8705 {
8706 c = CTLNUL;
8707 sindex--; /* add_character: label increments sindex */
8708 goto add_character;
8709 }
8710 else
8711 goto add_quoted_string;
8712
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008713 /* break; */
Jari Aalto726f6381996-08-26 18:22:31 +00008714
8715 default:
Jari Aalto726f6381996-08-26 18:22:31 +00008716 /* This is the fix for " $@ " */
Jari Aalto17345e52009-02-19 22:21:29 +00008717 add_ifs_character:
Jari Aalto7117c2d2002-07-17 14:10:11 +00008718 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) || (isexp == 0 && isifs (c)))
Jari Aalto726f6381996-08-26 18:22:31 +00008719 {
Jari Aaltobb706242000-03-17 21:46:59 +00008720 if (string[sindex]) /* from old goto dollar_add_string */
8721 sindex++;
8722 if (c == 0)
8723 {
8724 c = CTLNUL;
8725 goto add_character;
8726 }
8727 else
8728 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00008729#if HANDLE_MULTIBYTE
Jari Aaltob80f6442004-07-27 13:29:18 +00008730 if (MB_CUR_MAX > 1)
8731 sindex--;
8732
Jari Aalto7117c2d2002-07-17 14:10:11 +00008733 if (MB_CUR_MAX > 1)
8734 {
Jari Aaltob80f6442004-07-27 13:29:18 +00008735 SADD_MBQCHAR_BODY(temp, string, sindex, string_size);
Jari Aalto7117c2d2002-07-17 14:10:11 +00008736 }
8737 else
8738#endif
8739 {
8740 twochars[0] = CTLESC;
8741 twochars[1] = c;
8742 goto add_twochars;
8743 }
Jari Aaltobb706242000-03-17 21:46:59 +00008744 }
Jari Aalto726f6381996-08-26 18:22:31 +00008745 }
8746
Jari Aalto7117c2d2002-07-17 14:10:11 +00008747 SADD_MBCHAR (temp, string, sindex, string_size);
8748
Jari Aalto726f6381996-08-26 18:22:31 +00008749 add_character:
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008750 RESIZE_MALLOCED_BUFFER (istring, istring_index, 1, istring_size,
8751 DEFAULT_ARRAY_SIZE);
Jari Aalto726f6381996-08-26 18:22:31 +00008752 istring[istring_index++] = c;
8753 istring[istring_index] = '\0';
8754
8755 /* Next character. */
8756 sindex++;
8757 }
8758 }
8759
8760finished_with_string:
Jari Aalto726f6381996-08-26 18:22:31 +00008761 /* OK, we're ready to return. If we have a quoted string, and
8762 quoted_dollar_at is not set, we do no splitting at all; otherwise
8763 we split on ' '. The routines that call this will handle what to
8764 do if nothing has been expanded. */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008765
8766 /* Partially and wholly quoted strings which expand to the empty
8767 string are retained as an empty arguments. Unquoted strings
8768 which expand to the empty string are discarded. The single
8769 exception is the case of expanding "$@" when there are no
8770 positional parameters. In that case, we discard the expansion. */
8771
8772 /* Because of how the code that handles "" and '' in partially
8773 quoted strings works, we need to make ISTRING into a QUOTED_NULL
8774 if we saw quoting characters, but the expansion was empty.
8775 "" and '' are tossed away before we get to this point when
8776 processing partially quoted strings. This makes "" and $xxx""
8777 equivalent when xxx is unset. We also look to see whether we
8778 saw a quoted null from a ${} expansion and add one back if we
8779 need to. */
8780
8781 /* If we expand to nothing and there were no single or double quotes
8782 in the word, we throw it away. Otherwise, we return a NULL word.
8783 The single exception is for $@ surrounded by double quotes when
8784 there are no positional parameters. In that case, we also throw
8785 the word away. */
8786
8787 if (*istring == '\0')
Jari Aalto726f6381996-08-26 18:22:31 +00008788 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008789 if (quoted_dollar_at == 0 && (had_quoted_null || quoted_state == PARTIALLY_QUOTED))
Jari Aalto726f6381996-08-26 18:22:31 +00008790 {
Jari Aalto726f6381996-08-26 18:22:31 +00008791 istring[0] = CTLNUL;
8792 istring[1] = '\0';
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008793 tword = make_bare_word (istring);
Jari Aalto95732b42005-12-07 14:08:12 +00008794 tword->flags |= W_HASQUOTEDNULL; /* XXX */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008795 list = make_word_list (tword, (WORD_LIST *)NULL);
8796 if (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
8797 tword->flags |= W_QUOTED;
Jari Aalto726f6381996-08-26 18:22:31 +00008798 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008799 /* According to sh, ksh, and Posix.2, if a word expands into nothing
8800 and a double-quoted "$@" appears anywhere in it, then the entire
8801 word is removed. */
8802 else if (quoted_state == UNQUOTED || quoted_dollar_at)
8803 list = (WORD_LIST *)NULL;
8804#if 0
8805 else
8806 {
8807 tword = make_bare_word (istring);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008808 if (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
8809 tword->flags |= W_QUOTED;
Jari Aalto95732b42005-12-07 14:08:12 +00008810 list = make_word_list (tword, (WORD_LIST *)NULL);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008811 }
Jari Aaltof73dda02001-11-13 17:56:06 +00008812#else
8813 else
8814 list = (WORD_LIST *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008815#endif
8816 }
8817 else if (word->flags & W_NOSPLIT)
8818 {
8819 tword = make_bare_word (istring);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008820 if (word->flags & W_ASSIGNMENT)
8821 tword->flags |= W_ASSIGNMENT; /* XXX */
Jari Aalto95732b42005-12-07 14:08:12 +00008822 if (word->flags & W_COMPASSIGN)
8823 tword->flags |= W_COMPASSIGN; /* XXX */
Jari Aaltob72432f1999-02-19 17:11:39 +00008824 if (word->flags & W_NOGLOB)
8825 tword->flags |= W_NOGLOB; /* XXX */
Chet Rameyac50fba2014-02-26 09:36:43 -05008826 if (word->flags & W_NOBRACE)
8827 tword->flags |= W_NOBRACE; /* XXX */
Jari Aalto95732b42005-12-07 14:08:12 +00008828 if (word->flags & W_NOEXPAND)
8829 tword->flags |= W_NOEXPAND; /* XXX */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008830 if (quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES))
Jari Aalto28ef6c32001-04-06 19:14:31 +00008831 tword->flags |= W_QUOTED;
Chet Rameya601c742012-07-10 09:44:07 -04008832 if (had_quoted_null && QUOTED_NULL (istring))
Jari Aalto95732b42005-12-07 14:08:12 +00008833 tword->flags |= W_HASQUOTEDNULL;
8834 list = make_word_list (tword, (WORD_LIST *)NULL);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008835 }
8836 else
8837 {
8838 char *ifs_chars;
Chet Ramey3b34f6e2014-05-16 14:17:56 -04008839 char *tstring;
Jari Aalto726f6381996-08-26 18:22:31 +00008840
Jari Aalto7117c2d2002-07-17 14:10:11 +00008841 ifs_chars = (quoted_dollar_at || has_dollar_at) ? ifs_value : (char *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008842
Jari Aaltocce855b1998-04-17 19:52:44 +00008843 /* If we have $@, we need to split the results no matter what. If
8844 IFS is unset or NULL, string_list_dollar_at has separated the
8845 positional parameters with a space, so we split on space (we have
8846 set ifs_chars to " \t\n" above if ifs is unset). If IFS is set,
8847 string_list_dollar_at has separated the positional parameters
Chet Rameyac50fba2014-02-26 09:36:43 -05008848 with the first character of $IFS, so we split on $IFS. If
8849 SPLIT_ON_SPACES is set, we expanded $* (unquoted) with IFS either
8850 unset or null, and we want to make sure that we split on spaces
8851 regardless of what else has happened to IFS since the expansion. */
8852 if (split_on_spaces)
8853 list = list_string (istring, " ", 1); /* XXX quoted == 1? */
Chet Ramey3b34f6e2014-05-16 14:17:56 -04008854 /* If we have $@ (has_dollar_at != 0) and we are in a context where we
8855 don't want to split the result (W_NOSPLIT2), and we are not quoted,
8856 we have already separated the arguments with the first character of
8857 $IFS. In this case, we want to return a list with a single word
8858 with the separator possibly replaced with a space (it's what other
8859 shells seem to do).
8860 quoted_dollar_at is internal to this function and is set if we are
8861 passed an argument that is unquoted (quoted == 0) but we encounter a
8862 double-quoted $@ while expanding it. */
8863 else if (has_dollar_at && quoted_dollar_at == 0 && ifs_chars && quoted == 0 && (word->flags & W_NOSPLIT2))
8864 {
8865 /* Only split and rejoin if we have to */
8866 if (*ifs_chars && *ifs_chars != ' ')
8867 {
8868 list = list_string (istring, *ifs_chars ? ifs_chars : " ", 1);
8869 tstring = string_list (list);
8870 }
8871 else
8872 tstring = istring;
8873 tword = make_bare_word (tstring);
8874 if (tstring != istring)
8875 free (tstring);
8876 goto set_word_flags;
8877 }
Chet Rameyac50fba2014-02-26 09:36:43 -05008878 else if (has_dollar_at && ifs_chars)
Jari Aaltocce855b1998-04-17 19:52:44 +00008879 list = list_string (istring, *ifs_chars ? ifs_chars : " ", 1);
Jari Aalto726f6381996-08-26 18:22:31 +00008880 else
8881 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008882 tword = make_bare_word (istring);
Chet Ramey3b34f6e2014-05-16 14:17:56 -04008883set_word_flags:
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008884 if ((quoted & (Q_DOUBLE_QUOTES|Q_HERE_DOCUMENT)) || (quoted_state == WHOLLY_QUOTED))
8885 tword->flags |= W_QUOTED;
8886 if (word->flags & W_ASSIGNMENT)
8887 tword->flags |= W_ASSIGNMENT;
Jari Aalto95732b42005-12-07 14:08:12 +00008888 if (word->flags & W_COMPASSIGN)
8889 tword->flags |= W_COMPASSIGN;
Jari Aaltob72432f1999-02-19 17:11:39 +00008890 if (word->flags & W_NOGLOB)
8891 tword->flags |= W_NOGLOB;
Chet Rameyac50fba2014-02-26 09:36:43 -05008892 if (word->flags & W_NOBRACE)
8893 tword->flags |= W_NOBRACE;
Jari Aalto95732b42005-12-07 14:08:12 +00008894 if (word->flags & W_NOEXPAND)
8895 tword->flags |= W_NOEXPAND;
Chet Rameya601c742012-07-10 09:44:07 -04008896 if (had_quoted_null && QUOTED_NULL (istring))
Jari Aalto95732b42005-12-07 14:08:12 +00008897 tword->flags |= W_HASQUOTEDNULL; /* XXX */
8898 list = make_word_list (tword, (WORD_LIST *)NULL);
Jari Aalto726f6381996-08-26 18:22:31 +00008899 }
Jari Aalto726f6381996-08-26 18:22:31 +00008900 }
Jari Aalto726f6381996-08-26 18:22:31 +00008901
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008902 free (istring);
8903 return (list);
Jari Aalto726f6381996-08-26 18:22:31 +00008904}
8905
8906/* **************************************************************** */
8907/* */
8908/* Functions for Quote Removal */
8909/* */
8910/* **************************************************************** */
8911
8912/* Perform quote removal on STRING. If QUOTED > 0, assume we are obeying the
Jari Aalto7117c2d2002-07-17 14:10:11 +00008913 backslash quoting rules for within double quotes or a here document. */
Jari Aalto726f6381996-08-26 18:22:31 +00008914char *
8915string_quote_removal (string, quoted)
8916 char *string;
8917 int quoted;
8918{
Jari Aalto7117c2d2002-07-17 14:10:11 +00008919 size_t slen;
8920 char *r, *result_string, *temp, *send;
Jari Aaltof73dda02001-11-13 17:56:06 +00008921 int sindex, tindex, dquote;
8922 unsigned char c;
Jari Aalto7117c2d2002-07-17 14:10:11 +00008923 DECLARE_MBSTATE;
Jari Aalto726f6381996-08-26 18:22:31 +00008924
8925 /* The result can be no longer than the original string. */
Jari Aalto7117c2d2002-07-17 14:10:11 +00008926 slen = strlen (string);
8927 send = string + slen;
8928
8929 r = result_string = (char *)xmalloc (slen + 1);
Jari Aalto726f6381996-08-26 18:22:31 +00008930
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008931 for (dquote = sindex = 0; c = string[sindex];)
Jari Aalto726f6381996-08-26 18:22:31 +00008932 {
8933 switch (c)
8934 {
8935 case '\\':
8936 c = string[++sindex];
Jari Aalto31859422009-01-12 13:36:28 +00008937 if (c == 0)
8938 {
8939 *r++ = '\\';
8940 break;
8941 }
Jari Aalto28ef6c32001-04-06 19:14:31 +00008942 if (((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) || dquote) && (sh_syntaxtab[c] & CBSDQUOTE) == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00008943 *r++ = '\\';
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008944 /* FALLTHROUGH */
Jari Aalto726f6381996-08-26 18:22:31 +00008945
8946 default:
Jari Aalto7117c2d2002-07-17 14:10:11 +00008947 SCOPY_CHAR_M (r, string, send, sindex);
Jari Aalto726f6381996-08-26 18:22:31 +00008948 break;
8949
8950 case '\'':
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008951 if ((quoted & (Q_HERE_DOCUMENT|Q_DOUBLE_QUOTES)) || dquote)
Jari Aalto726f6381996-08-26 18:22:31 +00008952 {
8953 *r++ = c;
8954 sindex++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008955 break;
Jari Aalto726f6381996-08-26 18:22:31 +00008956 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008957 tindex = sindex + 1;
8958 temp = string_extract_single_quoted (string, &tindex);
8959 if (temp)
Jari Aalto726f6381996-08-26 18:22:31 +00008960 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008961 strcpy (r, temp);
8962 r += strlen (r);
8963 free (temp);
Jari Aalto726f6381996-08-26 18:22:31 +00008964 }
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008965 sindex = tindex;
Jari Aalto726f6381996-08-26 18:22:31 +00008966 break;
8967
8968 case '"':
8969 dquote = 1 - dquote;
8970 sindex++;
8971 break;
8972 }
8973 }
8974 *r = '\0';
8975 return (result_string);
8976}
8977
Jari Aaltoccc6cda1996-12-23 17:02:34 +00008978#if 0
8979/* UNUSED */
Jari Aalto726f6381996-08-26 18:22:31 +00008980/* Perform quote removal on word WORD. This allocates and returns a new
8981 WORD_DESC *. */
8982WORD_DESC *
8983word_quote_removal (word, quoted)
8984 WORD_DESC *word;
8985 int quoted;
8986{
8987 WORD_DESC *w;
8988 char *t;
8989
8990 t = string_quote_removal (word->word, quoted);
Jari Aalto95732b42005-12-07 14:08:12 +00008991 w = alloc_word_desc ();
8992 w->word = t ? t : savestring ("");
Jari Aalto726f6381996-08-26 18:22:31 +00008993 return (w);
8994}
8995
8996/* Perform quote removal on all words in LIST. If QUOTED is non-zero,
8997 the members of the list are treated as if they are surrounded by
8998 double quotes. Return a new list, or NULL if LIST is NULL. */
8999WORD_LIST *
9000word_list_quote_removal (list, quoted)
9001 WORD_LIST *list;
9002 int quoted;
9003{
Jari Aalto95732b42005-12-07 14:08:12 +00009004 WORD_LIST *result, *t, *tresult, *e;
Jari Aalto726f6381996-08-26 18:22:31 +00009005
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009006 for (t = list, result = (WORD_LIST *)NULL; t; t = t->next)
Jari Aalto726f6381996-08-26 18:22:31 +00009007 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00009008 tresult = make_word_list (word_quote_removal (t->word, quoted), (WORD_LIST *)NULL);
Jari Aalto95732b42005-12-07 14:08:12 +00009009#if 0
Jari Aalto726f6381996-08-26 18:22:31 +00009010 result = (WORD_LIST *) list_append (result, tresult);
Jari Aalto95732b42005-12-07 14:08:12 +00009011#else
9012 if (result == 0)
9013 result = e = tresult;
9014 else
9015 {
9016 e->next = tresult;
9017 while (e->next)
9018 e = e->next;
9019 }
9020#endif
Jari Aalto726f6381996-08-26 18:22:31 +00009021 }
9022 return (result);
9023}
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009024#endif
Jari Aalto726f6381996-08-26 18:22:31 +00009025
Jari Aalto726f6381996-08-26 18:22:31 +00009026/*******************************************
9027 * *
9028 * Functions to perform word splitting *
9029 * *
9030 *******************************************/
9031
Jari Aalto7117c2d2002-07-17 14:10:11 +00009032void
9033setifs (v)
9034 SHELL_VAR *v;
9035{
9036 char *t;
9037 unsigned char uc;
9038
9039 ifs_var = v;
Jari Aalto95732b42005-12-07 14:08:12 +00009040 ifs_value = (v && value_cell (v)) ? value_cell (v) : " \t\n";
Jari Aalto7117c2d2002-07-17 14:10:11 +00009041
Chet Rameyac50fba2014-02-26 09:36:43 -05009042 ifs_is_set = ifs_var != 0;
9043 ifs_is_null = ifs_is_set && (*ifs_value == 0);
9044
Jari Aalto95732b42005-12-07 14:08:12 +00009045 /* Should really merge ifs_cmap with sh_syntaxtab. XXX - doesn't yet
9046 handle multibyte chars in IFS */
Jari Aalto7117c2d2002-07-17 14:10:11 +00009047 memset (ifs_cmap, '\0', sizeof (ifs_cmap));
9048 for (t = ifs_value ; t && *t; t++)
9049 {
9050 uc = *t;
9051 ifs_cmap[uc] = 1;
9052 }
9053
Jari Aalto95732b42005-12-07 14:08:12 +00009054#if defined (HANDLE_MULTIBYTE)
9055 if (ifs_value == 0)
9056 {
9057 ifs_firstc[0] = '\0';
9058 ifs_firstc_len = 1;
9059 }
9060 else
9061 {
9062 size_t ifs_len;
9063 ifs_len = strnlen (ifs_value, MB_CUR_MAX);
9064 ifs_firstc_len = MBLEN (ifs_value, ifs_len);
9065 if (ifs_firstc_len == 1 || ifs_firstc_len == 0 || MB_INVALIDCH (ifs_firstc_len))
9066 {
9067 ifs_firstc[0] = ifs_value[0];
9068 ifs_firstc[1] = '\0';
9069 ifs_firstc_len = 1;
9070 }
9071 else
9072 memcpy (ifs_firstc, ifs_value, ifs_firstc_len);
9073 }
9074#else
Jari Aalto7117c2d2002-07-17 14:10:11 +00009075 ifs_firstc = ifs_value ? *ifs_value : 0;
Jari Aalto95732b42005-12-07 14:08:12 +00009076#endif
Jari Aalto7117c2d2002-07-17 14:10:11 +00009077}
9078
9079char *
Jari Aaltob72432f1999-02-19 17:11:39 +00009080getifs ()
9081{
Jari Aalto7117c2d2002-07-17 14:10:11 +00009082 return ifs_value;
Jari Aaltob72432f1999-02-19 17:11:39 +00009083}
9084
Jari Aalto726f6381996-08-26 18:22:31 +00009085/* This splits a single word into a WORD LIST on $IFS, but only if the word
9086 is not quoted. list_string () performs quote removal for us, even if we
9087 don't do any splitting. */
9088WORD_LIST *
Jari Aalto7117c2d2002-07-17 14:10:11 +00009089word_split (w, ifs_chars)
Jari Aalto726f6381996-08-26 18:22:31 +00009090 WORD_DESC *w;
Jari Aalto7117c2d2002-07-17 14:10:11 +00009091 char *ifs_chars;
Jari Aalto726f6381996-08-26 18:22:31 +00009092{
9093 WORD_LIST *result;
9094
9095 if (w)
9096 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00009097 char *xifs;
Jari Aalto726f6381996-08-26 18:22:31 +00009098
Jari Aalto7117c2d2002-07-17 14:10:11 +00009099 xifs = ((w->flags & W_QUOTED) || ifs_chars == 0) ? "" : ifs_chars;
9100 result = list_string (w->word, xifs, w->flags & W_QUOTED);
Jari Aalto726f6381996-08-26 18:22:31 +00009101 }
9102 else
9103 result = (WORD_LIST *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009104
Jari Aalto726f6381996-08-26 18:22:31 +00009105 return (result);
9106}
9107
9108/* Perform word splitting on LIST and return the RESULT. It is possible
9109 to return (WORD_LIST *)NULL. */
9110static WORD_LIST *
9111word_list_split (list)
9112 WORD_LIST *list;
9113{
Jari Aalto95732b42005-12-07 14:08:12 +00009114 WORD_LIST *result, *t, *tresult, *e;
Jari Aalto726f6381996-08-26 18:22:31 +00009115
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009116 for (t = list, result = (WORD_LIST *)NULL; t; t = t->next)
Jari Aalto726f6381996-08-26 18:22:31 +00009117 {
Jari Aalto7117c2d2002-07-17 14:10:11 +00009118 tresult = word_split (t->word, ifs_value);
Jari Aalto95732b42005-12-07 14:08:12 +00009119 if (result == 0)
9120 result = e = tresult;
9121 else
9122 {
9123 e->next = tresult;
9124 while (e->next)
9125 e = e->next;
9126 }
Jari Aalto726f6381996-08-26 18:22:31 +00009127 }
9128 return (result);
9129}
9130
9131/**************************************************
9132 * *
Jari Aaltocce855b1998-04-17 19:52:44 +00009133 * Functions to expand an entire WORD_LIST *
Jari Aalto726f6381996-08-26 18:22:31 +00009134 * *
9135 **************************************************/
9136
Jari Aaltob80f6442004-07-27 13:29:18 +00009137/* Do any word-expansion-specific cleanup and jump to top_level */
9138static void
9139exp_jump_to_top_level (v)
9140 int v;
9141{
Jari Aalto31859422009-01-12 13:36:28 +00009142 set_pipestatus_from_exit (last_command_exit_value);
9143
Jari Aaltob80f6442004-07-27 13:29:18 +00009144 /* Cleanup code goes here. */
9145 expand_no_split_dollar_star = 0; /* XXX */
9146 expanding_redir = 0;
Jari Aalto31859422009-01-12 13:36:28 +00009147 assigning_in_environment = 0;
Jari Aaltob80f6442004-07-27 13:29:18 +00009148
Jari Aaltof1be6662008-11-18 13:15:12 +00009149 if (parse_and_execute_level == 0)
9150 top_level_cleanup (); /* from sig.c */
9151
Jari Aaltob80f6442004-07-27 13:29:18 +00009152 jump_to_top_level (v);
9153}
9154
Jari Aaltocce855b1998-04-17 19:52:44 +00009155/* Put NLIST (which is a WORD_LIST * of only one element) at the front of
9156 ELIST, and set ELIST to the new list. */
9157#define PREPEND_LIST(nlist, elist) \
9158 do { nlist->next = elist; elist = nlist; } while (0)
9159
Jari Aalto726f6381996-08-26 18:22:31 +00009160/* Separate out any initial variable assignments from TLIST. If set -k has
9161 been executed, remove all assignment statements from TLIST. Initial
9162 variable assignments and other environment assignments are placed
Jari Aaltobb706242000-03-17 21:46:59 +00009163 on SUBST_ASSIGN_VARLIST. */
Jari Aalto726f6381996-08-26 18:22:31 +00009164static WORD_LIST *
9165separate_out_assignments (tlist)
9166 WORD_LIST *tlist;
9167{
9168 register WORD_LIST *vp, *lp;
9169
Chet Ramey00018032011-11-21 20:51:19 -05009170 if (tlist == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00009171 return ((WORD_LIST *)NULL);
9172
Jari Aaltobb706242000-03-17 21:46:59 +00009173 if (subst_assign_varlist)
9174 dispose_words (subst_assign_varlist); /* Clean up after previous error */
Jari Aaltob72432f1999-02-19 17:11:39 +00009175
Jari Aaltobb706242000-03-17 21:46:59 +00009176 subst_assign_varlist = (WORD_LIST *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +00009177 vp = lp = tlist;
9178
9179 /* Separate out variable assignments at the start of the command.
9180 Loop invariant: vp->next == lp
9181 Loop postcondition:
Jari Aalto7117c2d2002-07-17 14:10:11 +00009182 lp = list of words left after assignment statements skipped
9183 tlist = original list of words
Jari Aalto726f6381996-08-26 18:22:31 +00009184 */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009185 while (lp && (lp->word->flags & W_ASSIGNMENT))
Jari Aalto726f6381996-08-26 18:22:31 +00009186 {
9187 vp = lp;
9188 lp = lp->next;
9189 }
9190
Jari Aaltobb706242000-03-17 21:46:59 +00009191 /* If lp != tlist, we have some initial assignment statements.
9192 We make SUBST_ASSIGN_VARLIST point to the list of assignment
9193 words and TLIST point to the remaining words. */
Jari Aalto726f6381996-08-26 18:22:31 +00009194 if (lp != tlist)
9195 {
Jari Aaltobb706242000-03-17 21:46:59 +00009196 subst_assign_varlist = tlist;
Jari Aalto726f6381996-08-26 18:22:31 +00009197 /* ASSERT(vp->next == lp); */
9198 vp->next = (WORD_LIST *)NULL; /* terminate variable list */
9199 tlist = lp; /* remainder of word list */
9200 }
9201
9202 /* vp == end of variable list */
9203 /* tlist == remainder of original word list without variable assignments */
9204 if (!tlist)
9205 /* All the words in tlist were assignment statements */
9206 return ((WORD_LIST *)NULL);
9207
9208 /* ASSERT(tlist != NULL); */
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009209 /* ASSERT((tlist->word->flags & W_ASSIGNMENT) == 0); */
Jari Aalto726f6381996-08-26 18:22:31 +00009210
9211 /* If the -k option is in effect, we need to go through the remaining
Jari Aaltobb706242000-03-17 21:46:59 +00009212 words, separate out the assignment words, and place them on
9213 SUBST_ASSIGN_VARLIST. */
Jari Aalto726f6381996-08-26 18:22:31 +00009214 if (place_keywords_in_env)
9215 {
9216 WORD_LIST *tp; /* tp == running pointer into tlist */
9217
9218 tp = tlist;
9219 lp = tlist->next;
9220
9221 /* Loop Invariant: tp->next == lp */
9222 /* Loop postcondition: tlist == word list without assignment statements */
9223 while (lp)
9224 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009225 if (lp->word->flags & W_ASSIGNMENT)
Jari Aalto726f6381996-08-26 18:22:31 +00009226 {
9227 /* Found an assignment statement, add this word to end of
Jari Aaltobb706242000-03-17 21:46:59 +00009228 subst_assign_varlist (vp). */
9229 if (!subst_assign_varlist)
9230 subst_assign_varlist = vp = lp;
Jari Aalto726f6381996-08-26 18:22:31 +00009231 else
9232 {
9233 vp->next = lp;
9234 vp = lp;
9235 }
9236
9237 /* Remove the word pointed to by LP from TLIST. */
9238 tp->next = lp->next;
9239 /* ASSERT(vp == lp); */
9240 lp->next = (WORD_LIST *)NULL;
9241 lp = tp->next;
9242 }
9243 else
9244 {
9245 tp = lp;
9246 lp = lp->next;
9247 }
9248 }
9249 }
9250 return (tlist);
9251}
9252
Jari Aaltocce855b1998-04-17 19:52:44 +00009253#define WEXP_VARASSIGN 0x001
9254#define WEXP_BRACEEXP 0x002
9255#define WEXP_TILDEEXP 0x004
9256#define WEXP_PARAMEXP 0x008
9257#define WEXP_PATHEXP 0x010
9258
9259/* All of the expansions, including variable assignments at the start of
9260 the list. */
9261#define WEXP_ALL (WEXP_VARASSIGN|WEXP_BRACEEXP|WEXP_TILDEEXP|WEXP_PARAMEXP|WEXP_PATHEXP)
9262
9263/* All of the expansions except variable assignments at the start of
9264 the list. */
9265#define WEXP_NOVARS (WEXP_BRACEEXP|WEXP_TILDEEXP|WEXP_PARAMEXP|WEXP_PATHEXP)
9266
9267/* All of the `shell expansions': brace expansion, tilde expansion, parameter
9268 expansion, command substitution, arithmetic expansion, word splitting, and
9269 quote removal. */
9270#define WEXP_SHELLEXP (WEXP_BRACEEXP|WEXP_TILDEEXP|WEXP_PARAMEXP)
9271
Jari Aalto726f6381996-08-26 18:22:31 +00009272/* Take the list of words in LIST and do the various substitutions. Return
9273 a new list of words which is the expanded list, and without things like
9274 variable assignments. */
9275
9276WORD_LIST *
9277expand_words (list)
9278 WORD_LIST *list;
9279{
Jari Aaltocce855b1998-04-17 19:52:44 +00009280 return (expand_word_list_internal (list, WEXP_ALL));
Jari Aalto726f6381996-08-26 18:22:31 +00009281}
9282
9283/* Same as expand_words (), but doesn't hack variable or environment
9284 variables. */
9285WORD_LIST *
9286expand_words_no_vars (list)
9287 WORD_LIST *list;
9288{
Jari Aaltocce855b1998-04-17 19:52:44 +00009289 return (expand_word_list_internal (list, WEXP_NOVARS));
Jari Aalto726f6381996-08-26 18:22:31 +00009290}
9291
Jari Aaltocce855b1998-04-17 19:52:44 +00009292WORD_LIST *
9293expand_words_shellexp (list)
Jari Aalto726f6381996-08-26 18:22:31 +00009294 WORD_LIST *list;
Jari Aalto726f6381996-08-26 18:22:31 +00009295{
Jari Aaltocce855b1998-04-17 19:52:44 +00009296 return (expand_word_list_internal (list, WEXP_SHELLEXP));
9297}
Jari Aalto726f6381996-08-26 18:22:31 +00009298
Jari Aaltocce855b1998-04-17 19:52:44 +00009299static WORD_LIST *
9300glob_expand_word_list (tlist, eflags)
9301 WORD_LIST *tlist;
9302 int eflags;
9303{
9304 char **glob_array, *temp_string;
9305 register int glob_index;
9306 WORD_LIST *glob_list, *output_list, *disposables, *next;
9307 WORD_DESC *tword;
Jari Aalto726f6381996-08-26 18:22:31 +00009308
Jari Aaltocce855b1998-04-17 19:52:44 +00009309 output_list = disposables = (WORD_LIST *)NULL;
9310 glob_array = (char **)NULL;
9311 while (tlist)
Jari Aalto726f6381996-08-26 18:22:31 +00009312 {
Jari Aaltocce855b1998-04-17 19:52:44 +00009313 /* For each word, either globbing is attempted or the word is
9314 added to orig_list. If globbing succeeds, the results are
9315 added to orig_list and the word (tlist) is added to the list
9316 of disposable words. If globbing fails and failed glob
9317 expansions are left unchanged (the shell default), the
9318 original word is added to orig_list. If globbing fails and
9319 failed glob expansions are removed, the original word is
9320 added to the list of disposable words. orig_list ends up
Jari Aalto7117c2d2002-07-17 14:10:11 +00009321 in reverse order and requires a call to REVERSE_LIST to
Jari Aaltocce855b1998-04-17 19:52:44 +00009322 be set right. After all words are examined, the disposable
9323 words are freed. */
9324 next = tlist->next;
9325
9326 /* If the word isn't an assignment and contains an unquoted
Jari Aalto28ef6c32001-04-06 19:14:31 +00009327 pattern matching character, then glob it. */
Jari Aaltob72432f1999-02-19 17:11:39 +00009328 if ((tlist->word->flags & W_NOGLOB) == 0 &&
Jari Aaltocce855b1998-04-17 19:52:44 +00009329 unquoted_glob_pattern_p (tlist->word->word))
Jari Aalto726f6381996-08-26 18:22:31 +00009330 {
Jari Aaltocce855b1998-04-17 19:52:44 +00009331 glob_array = shell_glob_filename (tlist->word->word);
9332
9333 /* Handle error cases.
9334 I don't think we should report errors like "No such file
9335 or directory". However, I would like to report errors
9336 like "Read failed". */
9337
Jari Aaltob80f6442004-07-27 13:29:18 +00009338 if (glob_array == 0 || GLOB_FAILED (glob_array))
Jari Aalto726f6381996-08-26 18:22:31 +00009339 {
Jari Aaltobb706242000-03-17 21:46:59 +00009340 glob_array = (char **)xmalloc (sizeof (char *));
Jari Aaltocce855b1998-04-17 19:52:44 +00009341 glob_array[0] = (char *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +00009342 }
Jari Aalto726f6381996-08-26 18:22:31 +00009343
Jari Aaltocce855b1998-04-17 19:52:44 +00009344 /* Dequote the current word in case we have to use it. */
9345 if (glob_array[0] == NULL)
Jari Aalto726f6381996-08-26 18:22:31 +00009346 {
Jari Aaltocce855b1998-04-17 19:52:44 +00009347 temp_string = dequote_string (tlist->word->word);
9348 free (tlist->word->word);
9349 tlist->word->word = temp_string;
9350 }
Jari Aalto726f6381996-08-26 18:22:31 +00009351
Jari Aaltocce855b1998-04-17 19:52:44 +00009352 /* Make the array into a word list. */
9353 glob_list = (WORD_LIST *)NULL;
9354 for (glob_index = 0; glob_array[glob_index]; glob_index++)
9355 {
9356 tword = make_bare_word (glob_array[glob_index]);
Jari Aaltocce855b1998-04-17 19:52:44 +00009357 glob_list = make_word_list (tword, glob_list);
9358 }
Jari Aalto726f6381996-08-26 18:22:31 +00009359
Jari Aaltocce855b1998-04-17 19:52:44 +00009360 if (glob_list)
9361 {
9362 output_list = (WORD_LIST *)list_append (glob_list, output_list);
9363 PREPEND_LIST (tlist, disposables);
9364 }
Jari Aaltob80f6442004-07-27 13:29:18 +00009365 else if (fail_glob_expansion != 0)
9366 {
Chet Rameyac50fba2014-02-26 09:36:43 -05009367 last_command_exit_value = EXECUTION_FAILURE;
Jari Aaltob80f6442004-07-27 13:29:18 +00009368 report_error (_("no match: %s"), tlist->word->word);
Jari Aaltof1be6662008-11-18 13:15:12 +00009369 exp_jump_to_top_level (DISCARD);
Jari Aaltob80f6442004-07-27 13:29:18 +00009370 }
Jari Aaltocce855b1998-04-17 19:52:44 +00009371 else if (allow_null_glob_expansion == 0)
9372 {
9373 /* Failed glob expressions are left unchanged. */
9374 PREPEND_LIST (tlist, output_list);
Jari Aalto726f6381996-08-26 18:22:31 +00009375 }
9376 else
9377 {
Jari Aaltocce855b1998-04-17 19:52:44 +00009378 /* Failed glob expressions are removed. */
9379 PREPEND_LIST (tlist, disposables);
Jari Aalto726f6381996-08-26 18:22:31 +00009380 }
Jari Aalto726f6381996-08-26 18:22:31 +00009381 }
Jari Aaltocce855b1998-04-17 19:52:44 +00009382 else
9383 {
9384 /* Dequote the string. */
9385 temp_string = dequote_string (tlist->word->word);
9386 free (tlist->word->word);
9387 tlist->word->word = temp_string;
9388 PREPEND_LIST (tlist, output_list);
9389 }
Jari Aalto726f6381996-08-26 18:22:31 +00009390
Jari Aalto7117c2d2002-07-17 14:10:11 +00009391 strvec_dispose (glob_array);
Jari Aaltocce855b1998-04-17 19:52:44 +00009392 glob_array = (char **)NULL;
9393
9394 tlist = next;
Jari Aalto726f6381996-08-26 18:22:31 +00009395 }
Jari Aaltocce855b1998-04-17 19:52:44 +00009396
9397 if (disposables)
9398 dispose_words (disposables);
9399
9400 if (output_list)
9401 output_list = REVERSE_LIST (output_list, WORD_LIST *);
9402
9403 return (output_list);
9404}
9405
9406#if defined (BRACE_EXPANSION)
9407static WORD_LIST *
9408brace_expand_word_list (tlist, eflags)
9409 WORD_LIST *tlist;
9410 int eflags;
9411{
9412 register char **expansions;
9413 char *temp_string;
9414 WORD_LIST *disposables, *output_list, *next;
9415 WORD_DESC *w;
9416 int eindex;
9417
9418 for (disposables = output_list = (WORD_LIST *)NULL; tlist; tlist = next)
9419 {
9420 next = tlist->next;
9421
Chet Rameyac50fba2014-02-26 09:36:43 -05009422 if (tlist->word->flags & W_NOBRACE)
9423 {
9424/*itrace("brace_expand_word_list: %s: W_NOBRACE", tlist->word->word);*/
9425 PREPEND_LIST (tlist, output_list);
9426 continue;
9427 }
9428
Chet Ramey00018032011-11-21 20:51:19 -05009429 if ((tlist->word->flags & (W_COMPASSIGN|W_ASSIGNARG)) == (W_COMPASSIGN|W_ASSIGNARG))
9430 {
9431/*itrace("brace_expand_word_list: %s: W_COMPASSIGN|W_ASSIGNARG", tlist->word->word);*/
9432 PREPEND_LIST (tlist, output_list);
9433 continue;
9434 }
Chet Rameyac50fba2014-02-26 09:36:43 -05009435
Jari Aaltocce855b1998-04-17 19:52:44 +00009436 /* Only do brace expansion if the word has a brace character. If
9437 not, just add the word list element to BRACES and continue. In
9438 the common case, at least when running shell scripts, this will
Chet Ramey00018032011-11-21 20:51:19 -05009439 degenerate to a bunch of calls to `mbschr', and then what is
Jari Aaltocce855b1998-04-17 19:52:44 +00009440 basically a reversal of TLIST into BRACES, which is corrected
Jari Aalto7117c2d2002-07-17 14:10:11 +00009441 by a call to REVERSE_LIST () on BRACES when the end of TLIST
Jari Aaltocce855b1998-04-17 19:52:44 +00009442 is reached. */
Chet Ramey00018032011-11-21 20:51:19 -05009443 if (mbschr (tlist->word->word, LBRACE))
Jari Aaltocce855b1998-04-17 19:52:44 +00009444 {
9445 expansions = brace_expand (tlist->word->word);
9446
9447 for (eindex = 0; temp_string = expansions[eindex]; eindex++)
9448 {
Chet Rameyac50fba2014-02-26 09:36:43 -05009449 w = alloc_word_desc ();
9450 w->word = temp_string;
9451
Jari Aaltocce855b1998-04-17 19:52:44 +00009452 /* If brace expansion didn't change the word, preserve
9453 the flags. We may want to preserve the flags
9454 unconditionally someday -- XXX */
9455 if (STREQ (temp_string, tlist->word->word))
9456 w->flags = tlist->word->flags;
Chet Rameyac50fba2014-02-26 09:36:43 -05009457 else
9458 w = make_word_flags (w, temp_string);
9459
Jari Aaltocce855b1998-04-17 19:52:44 +00009460 output_list = make_word_list (w, output_list);
Jari Aaltocce855b1998-04-17 19:52:44 +00009461 }
9462 free (expansions);
9463
9464 /* Add TLIST to the list of words to be freed after brace
9465 expansion has been performed. */
9466 PREPEND_LIST (tlist, disposables);
9467 }
9468 else
9469 PREPEND_LIST (tlist, output_list);
9470 }
9471
9472 if (disposables)
9473 dispose_words (disposables);
9474
9475 if (output_list)
9476 output_list = REVERSE_LIST (output_list, WORD_LIST *);
9477
9478 return (output_list);
9479}
9480#endif
9481
Jari Aalto31859422009-01-12 13:36:28 +00009482#if defined (ARRAY_VARS)
9483/* Take WORD, a compound associative array assignment, and internally run
9484 'declare -A w', where W is the variable name portion of WORD. */
9485static int
9486make_internal_declare (word, option)
9487 char *word;
9488 char *option;
9489{
9490 int t;
9491 WORD_LIST *wl;
9492 WORD_DESC *w;
9493
9494 w = make_word (word);
9495
9496 t = assignment (w->word, 0);
9497 w->word[t] = '\0';
9498
9499 wl = make_word_list (w, (WORD_LIST *)NULL);
9500 wl = make_word_list (make_word (option), wl);
9501
9502 return (declare_builtin (wl));
9503}
9504#endif
9505
Jari Aaltocce855b1998-04-17 19:52:44 +00009506static WORD_LIST *
9507shell_expand_word_list (tlist, eflags)
9508 WORD_LIST *tlist;
9509 int eflags;
9510{
9511 WORD_LIST *expanded, *orig_list, *new_list, *next, *temp_list;
9512 int expanded_something, has_dollar_at;
9513 char *temp_string;
Jari Aalto726f6381996-08-26 18:22:31 +00009514
Jari Aalto726f6381996-08-26 18:22:31 +00009515 /* We do tilde expansion all the time. This is what 1003.2 says. */
Jari Aaltocce855b1998-04-17 19:52:44 +00009516 new_list = (WORD_LIST *)NULL;
9517 for (orig_list = tlist; tlist; tlist = next)
Jari Aalto726f6381996-08-26 18:22:31 +00009518 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009519 temp_string = tlist->word->word;
Jari Aalto726f6381996-08-26 18:22:31 +00009520
9521 next = tlist->next;
9522
Jari Aalto95732b42005-12-07 14:08:12 +00009523#if defined (ARRAY_VARS)
9524 /* If this is a compound array assignment to a builtin that accepts
9525 such assignments (e.g., `declare'), take the assignment and perform
9526 it separately, handling the semantics of declarations inside shell
9527 functions. This avoids the double-evaluation of such arguments,
9528 because `declare' does some evaluation of compound assignments on
9529 its own. */
9530 if ((tlist->word->flags & (W_COMPASSIGN|W_ASSIGNARG)) == (W_COMPASSIGN|W_ASSIGNARG))
Jari Aalto726f6381996-08-26 18:22:31 +00009531 {
Jari Aalto95732b42005-12-07 14:08:12 +00009532 int t;
Chet Rameyac50fba2014-02-26 09:36:43 -05009533 char opts[8], opti;
Jari Aalto95732b42005-12-07 14:08:12 +00009534
Chet Rameyac50fba2014-02-26 09:36:43 -05009535 opti = 0;
9536 if (tlist->word->flags & (W_ASSIGNASSOC|W_ASSNGLOBAL|W_ASSIGNARRAY))
9537 opts[opti++] = '-';
9538
9539 if ((tlist->word->flags & (W_ASSIGNASSOC|W_ASSNGLOBAL)) == (W_ASSIGNASSOC|W_ASSNGLOBAL))
9540 {
9541 opts[opti++] = 'g';
9542 opts[opti++] = 'A';
9543 }
9544 else if (tlist->word->flags & W_ASSIGNASSOC)
9545 opts[opti++] = 'A';
9546 else if ((tlist->word->flags & (W_ASSIGNARRAY|W_ASSNGLOBAL)) == (W_ASSIGNARRAY|W_ASSNGLOBAL))
9547 {
9548 opts[opti++] = 'g';
9549 opts[opti++] = 'a';
9550 }
9551 else if (tlist->word->flags & W_ASSIGNARRAY)
9552 opts[opti++] = 'a';
9553 else if (tlist->word->flags & W_ASSNGLOBAL)
9554 opts[opti++] = 'g';
9555
9556#if 0
9557 /* If we have special handling note the integer attribute */
9558 if (opti > 0 && (tlist->word->flags & W_ASSIGNINT))
9559 opts[opti++] = 'i';
9560#endif
9561
9562 opts[opti] = '\0';
9563 if (opti > 0)
9564 make_internal_declare (tlist->word->word, opts);
Jari Aalto31859422009-01-12 13:36:28 +00009565
Chet Ramey495aee42011-11-22 19:11:26 -05009566 t = do_word_assignment (tlist->word, 0);
Jari Aalto95732b42005-12-07 14:08:12 +00009567 if (t == 0)
9568 {
9569 last_command_exit_value = EXECUTION_FAILURE;
9570 exp_jump_to_top_level (DISCARD);
9571 }
9572
9573 /* Now transform the word as ksh93 appears to do and go on */
9574 t = assignment (tlist->word->word, 0);
9575 tlist->word->word[t] = '\0';
Chet Rameyac50fba2014-02-26 09:36:43 -05009576 tlist->word->flags &= ~(W_ASSIGNMENT|W_NOSPLIT|W_COMPASSIGN|W_ASSIGNARG|W_ASSIGNASSOC|W_ASSIGNARRAY);
Jari Aalto7117c2d2002-07-17 14:10:11 +00009577 }
Jari Aalto95732b42005-12-07 14:08:12 +00009578#endif
Jari Aalto726f6381996-08-26 18:22:31 +00009579
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009580 expanded_something = 0;
Jari Aalto726f6381996-08-26 18:22:31 +00009581 expanded = expand_word_internal
Jari Aaltob72432f1999-02-19 17:11:39 +00009582 (tlist->word, 0, 0, &has_dollar_at, &expanded_something);
Jari Aalto726f6381996-08-26 18:22:31 +00009583
9584 if (expanded == &expand_word_error || expanded == &expand_word_fatal)
9585 {
9586 /* By convention, each time this error is returned,
9587 tlist->word->word has already been freed. */
9588 tlist->word->word = (char *)NULL;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009589
Jari Aalto726f6381996-08-26 18:22:31 +00009590 /* Dispose our copy of the original list. */
9591 dispose_words (orig_list);
Jari Aaltod166f041997-06-05 14:59:13 +00009592 /* Dispose the new list we're building. */
Jari Aalto726f6381996-08-26 18:22:31 +00009593 dispose_words (new_list);
9594
Jari Aalto28ef6c32001-04-06 19:14:31 +00009595 last_command_exit_value = EXECUTION_FAILURE;
Jari Aalto726f6381996-08-26 18:22:31 +00009596 if (expanded == &expand_word_error)
Jari Aaltob80f6442004-07-27 13:29:18 +00009597 exp_jump_to_top_level (DISCARD);
Jari Aalto726f6381996-08-26 18:22:31 +00009598 else
Jari Aaltob80f6442004-07-27 13:29:18 +00009599 exp_jump_to_top_level (FORCE_EOF);
Jari Aalto726f6381996-08-26 18:22:31 +00009600 }
9601
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009602 /* Don't split words marked W_NOSPLIT. */
9603 if (expanded_something && (tlist->word->flags & W_NOSPLIT) == 0)
Jari Aalto726f6381996-08-26 18:22:31 +00009604 {
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009605 temp_list = word_list_split (expanded);
Jari Aalto726f6381996-08-26 18:22:31 +00009606 dispose_words (expanded);
9607 }
9608 else
9609 {
9610 /* If no parameter expansion, command substitution, process
9611 substitution, or arithmetic substitution took place, then
9612 do not do word splitting. We still have to remove quoted
9613 null characters from the result. */
9614 word_list_remove_quoted_nulls (expanded);
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009615 temp_list = expanded;
Jari Aalto726f6381996-08-26 18:22:31 +00009616 }
9617
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009618 expanded = REVERSE_LIST (temp_list, WORD_LIST *);
9619 new_list = (WORD_LIST *)list_append (expanded, new_list);
Jari Aalto726f6381996-08-26 18:22:31 +00009620 }
9621
Jari Aaltocce855b1998-04-17 19:52:44 +00009622 if (orig_list)
9623 dispose_words (orig_list);
Jari Aalto726f6381996-08-26 18:22:31 +00009624
Jari Aaltocce855b1998-04-17 19:52:44 +00009625 if (new_list)
9626 new_list = REVERSE_LIST (new_list, WORD_LIST *);
9627
9628 return (new_list);
9629}
9630
9631/* The workhorse for expand_words () and expand_words_no_vars ().
9632 First arg is LIST, a WORD_LIST of words.
Jari Aaltob72432f1999-02-19 17:11:39 +00009633 Second arg EFLAGS is a flags word controlling which expansions are
9634 performed.
Jari Aaltocce855b1998-04-17 19:52:44 +00009635
9636 This does all of the substitutions: brace expansion, tilde expansion,
9637 parameter expansion, command substitution, arithmetic expansion,
9638 process substitution, word splitting, and pathname expansion, according
9639 to the bits set in EFLAGS. Words with the W_QUOTED or W_NOSPLIT bits
9640 set, or for which no expansion is done, do not undergo word splitting.
Chet Rameyac50fba2014-02-26 09:36:43 -05009641 Words with the W_NOGLOB bit set do not undergo pathname expansion; words
9642 with W_NOBRACE set do not undergo brace expansion (see
9643 brace_expand_word_list above). */
Jari Aaltocce855b1998-04-17 19:52:44 +00009644static WORD_LIST *
9645expand_word_list_internal (list, eflags)
9646 WORD_LIST *list;
9647 int eflags;
9648{
9649 WORD_LIST *new_list, *temp_list;
9650 int tint;
9651
Chet Rameyac50fba2014-02-26 09:36:43 -05009652 tempenv_assign_error = 0;
Jari Aaltocce855b1998-04-17 19:52:44 +00009653 if (list == 0)
9654 return ((WORD_LIST *)NULL);
9655
Jari Aaltobb706242000-03-17 21:46:59 +00009656 garglist = new_list = copy_word_list (list);
Jari Aaltocce855b1998-04-17 19:52:44 +00009657 if (eflags & WEXP_VARASSIGN)
9658 {
Jari Aaltobb706242000-03-17 21:46:59 +00009659 garglist = new_list = separate_out_assignments (new_list);
Jari Aaltocce855b1998-04-17 19:52:44 +00009660 if (new_list == 0)
9661 {
Jari Aaltobb706242000-03-17 21:46:59 +00009662 if (subst_assign_varlist)
Jari Aaltocce855b1998-04-17 19:52:44 +00009663 {
9664 /* All the words were variable assignments, so they are placed
9665 into the shell's environment. */
Jari Aaltobb706242000-03-17 21:46:59 +00009666 for (temp_list = subst_assign_varlist; temp_list; temp_list = temp_list->next)
Jari Aaltocce855b1998-04-17 19:52:44 +00009667 {
9668 this_command_name = (char *)NULL; /* no arithmetic errors */
Chet Ramey495aee42011-11-22 19:11:26 -05009669 tint = do_word_assignment (temp_list->word, 0);
Jari Aaltocce855b1998-04-17 19:52:44 +00009670 /* Variable assignment errors in non-interactive shells
9671 running in Posix.2 mode cause the shell to exit. */
Jari Aalto28ef6c32001-04-06 19:14:31 +00009672 if (tint == 0)
Jari Aaltocce855b1998-04-17 19:52:44 +00009673 {
9674 last_command_exit_value = EXECUTION_FAILURE;
Jari Aalto28ef6c32001-04-06 19:14:31 +00009675 if (interactive_shell == 0 && posixly_correct)
Jari Aaltob80f6442004-07-27 13:29:18 +00009676 exp_jump_to_top_level (FORCE_EOF);
Jari Aalto28ef6c32001-04-06 19:14:31 +00009677 else
Jari Aaltob80f6442004-07-27 13:29:18 +00009678 exp_jump_to_top_level (DISCARD);
Jari Aaltocce855b1998-04-17 19:52:44 +00009679 }
9680 }
Jari Aaltobb706242000-03-17 21:46:59 +00009681 dispose_words (subst_assign_varlist);
9682 subst_assign_varlist = (WORD_LIST *)NULL;
Jari Aaltocce855b1998-04-17 19:52:44 +00009683 }
9684 return ((WORD_LIST *)NULL);
9685 }
9686 }
9687
9688 /* Begin expanding the words that remain. The expansions take place on
9689 things that aren't really variable assignments. */
9690
9691#if defined (BRACE_EXPANSION)
9692 /* Do brace expansion on this word if there are any brace characters
9693 in the string. */
9694 if ((eflags & WEXP_BRACEEXP) && brace_expansion && new_list)
9695 new_list = brace_expand_word_list (new_list, eflags);
9696#endif /* BRACE_EXPANSION */
9697
9698 /* Perform the `normal' shell expansions: tilde expansion, parameter and
9699 variable substitution, command substitution, arithmetic expansion,
9700 and word splitting. */
9701 new_list = shell_expand_word_list (new_list, eflags);
Jari Aalto726f6381996-08-26 18:22:31 +00009702
Jari Aalto726f6381996-08-26 18:22:31 +00009703 /* Okay, we're almost done. Now let's just do some filename
9704 globbing. */
9705 if (new_list)
9706 {
Jari Aaltocce855b1998-04-17 19:52:44 +00009707 if ((eflags & WEXP_PATHEXP) && disallow_filename_globbing == 0)
9708 /* Glob expand the word list unless globbing has been disabled. */
9709 new_list = glob_expand_word_list (new_list, eflags);
Jari Aalto726f6381996-08-26 18:22:31 +00009710 else
Jari Aaltocce855b1998-04-17 19:52:44 +00009711 /* Dequote the words, because we're not performing globbing. */
9712 new_list = dequote_list (new_list);
Jari Aalto726f6381996-08-26 18:22:31 +00009713 }
9714
Jari Aaltobb706242000-03-17 21:46:59 +00009715 if ((eflags & WEXP_VARASSIGN) && subst_assign_varlist)
Jari Aalto726f6381996-08-26 18:22:31 +00009716 {
Jari Aalto95732b42005-12-07 14:08:12 +00009717 sh_wassign_func_t *assign_func;
Chet Ramey495aee42011-11-22 19:11:26 -05009718 int is_special_builtin, is_builtin_or_func;
Jari Aalto726f6381996-08-26 18:22:31 +00009719
9720 /* If the remainder of the words expand to nothing, Posix.2 requires
9721 that the variable and environment assignments affect the shell's
9722 environment. */
Jari Aalto95732b42005-12-07 14:08:12 +00009723 assign_func = new_list ? assign_in_env : do_word_assignment;
Jari Aaltob80f6442004-07-27 13:29:18 +00009724 tempenv_assign_error = 0;
Jari Aalto726f6381996-08-26 18:22:31 +00009725
Chet Ramey495aee42011-11-22 19:11:26 -05009726 is_builtin_or_func = (new_list && new_list->word && (find_shell_builtin (new_list->word->word) || find_function (new_list->word->word)));
9727 /* Posix says that special builtins exit if a variable assignment error
9728 occurs in an assignment preceding it. */
9729 is_special_builtin = (posixly_correct && new_list && new_list->word && find_special_builtin (new_list->word->word));
9730
Jari Aaltobb706242000-03-17 21:46:59 +00009731 for (temp_list = subst_assign_varlist; temp_list; temp_list = temp_list->next)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009732 {
9733 this_command_name = (char *)NULL;
Jari Aalto31859422009-01-12 13:36:28 +00009734 assigning_in_environment = (assign_func == assign_in_env);
Chet Ramey495aee42011-11-22 19:11:26 -05009735 tint = (*assign_func) (temp_list->word, is_builtin_or_func);
Jari Aalto31859422009-01-12 13:36:28 +00009736 assigning_in_environment = 0;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009737 /* Variable assignment errors in non-interactive shells running
9738 in Posix.2 mode cause the shell to exit. */
Jari Aaltob80f6442004-07-27 13:29:18 +00009739 if (tint == 0)
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009740 {
Jari Aalto95732b42005-12-07 14:08:12 +00009741 if (assign_func == do_word_assignment)
Jari Aaltob80f6442004-07-27 13:29:18 +00009742 {
9743 last_command_exit_value = EXECUTION_FAILURE;
Chet Ramey495aee42011-11-22 19:11:26 -05009744 if (interactive_shell == 0 && posixly_correct && is_special_builtin)
Jari Aaltob80f6442004-07-27 13:29:18 +00009745 exp_jump_to_top_level (FORCE_EOF);
9746 else
9747 exp_jump_to_top_level (DISCARD);
9748 }
Jari Aalto28ef6c32001-04-06 19:14:31 +00009749 else
Jari Aaltob80f6442004-07-27 13:29:18 +00009750 tempenv_assign_error++;
Jari Aaltoccc6cda1996-12-23 17:02:34 +00009751 }
9752 }
Jari Aalto726f6381996-08-26 18:22:31 +00009753
Jari Aaltobb706242000-03-17 21:46:59 +00009754 dispose_words (subst_assign_varlist);
9755 subst_assign_varlist = (WORD_LIST *)NULL;
Jari Aalto726f6381996-08-26 18:22:31 +00009756 }
9757
9758 return (new_list);
9759}