Bash-4.3 patch 27

This commit is contained in:
Chet Ramey 2014-09-27 22:58:05 -04:00
commit 3590145af6
2 changed files with 63 additions and 23 deletions

View file

@ -25,6 +25,6 @@
regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh
looks for to find the patch level (for the sccs version string). */ looks for to find the patch level (for the sccs version string). */
#define PATCHLEVEL 26 #define PATCHLEVEL 27
#endif /* _PATCHLEVEL_H_ */ #endif /* _PATCHLEVEL_H_ */

View file

@ -83,6 +83,11 @@
#define ifsname(s) ((s)[0] == 'I' && (s)[1] == 'F' && (s)[2] == 'S' && (s)[3] == '\0') #define ifsname(s) ((s)[0] == 'I' && (s)[1] == 'F' && (s)[2] == 'S' && (s)[3] == '\0')
#define BASHFUNC_PREFIX "BASH_FUNC_"
#define BASHFUNC_PREFLEN 10 /* == strlen(BASHFUNC_PREFIX */
#define BASHFUNC_SUFFIX "%%"
#define BASHFUNC_SUFFLEN 2 /* == strlen(BASHFUNC_SUFFIX) */
extern char **environ; extern char **environ;
/* Variables used here and defined in other files. */ /* Variables used here and defined in other files. */
@ -279,7 +284,7 @@ static void push_temp_var __P((PTR_T));
static void propagate_temp_var __P((PTR_T)); static void propagate_temp_var __P((PTR_T));
static void dispose_temporary_env __P((sh_free_func_t *)); static void dispose_temporary_env __P((sh_free_func_t *));
static inline char *mk_env_string __P((const char *, const char *)); static inline char *mk_env_string __P((const char *, const char *, int));
static char **make_env_array_from_var_list __P((SHELL_VAR **)); static char **make_env_array_from_var_list __P((SHELL_VAR **));
static char **make_var_export_array __P((VAR_CONTEXT *)); static char **make_var_export_array __P((VAR_CONTEXT *));
static char **make_func_export_array __P((void)); static char **make_func_export_array __P((void));
@ -349,22 +354,33 @@ initialize_shell_variables (env, privmode)
/* If exported function, define it now. Don't import functions from /* If exported function, define it now. Don't import functions from
the environment in privileged mode. */ the environment in privileged mode. */
if (privmode == 0 && read_but_dont_execute == 0 && STREQN ("() {", string, 4)) if (privmode == 0 && read_but_dont_execute == 0 &&
STREQN (BASHFUNC_PREFIX, name, BASHFUNC_PREFLEN) &&
STREQ (BASHFUNC_SUFFIX, name + char_index - BASHFUNC_SUFFLEN) &&
STREQN ("() {", string, 4))
{ {
string_length = strlen (string); size_t namelen;
temp_string = (char *)xmalloc (3 + string_length + char_index); char *tname; /* desired imported function name */
strcpy (temp_string, name); namelen = char_index - BASHFUNC_PREFLEN - BASHFUNC_SUFFLEN;
temp_string[char_index] = ' ';
strcpy (temp_string + char_index + 1, string); tname = name + BASHFUNC_PREFLEN; /* start of func name */
tname[namelen] = '\0'; /* now tname == func name */
string_length = strlen (string);
temp_string = (char *)xmalloc (namelen + string_length + 2);
memcpy (temp_string, tname, namelen);
temp_string[namelen] = ' ';
memcpy (temp_string + namelen + 1, string, string_length + 1);
/* Don't import function names that are invalid identifiers from the /* Don't import function names that are invalid identifiers from the
environment, though we still allow them to be defined as shell environment, though we still allow them to be defined as shell
variables. */ variables. */
if (legal_identifier (name)) if (absolute_program (tname) == 0 && (posixly_correct == 0 || legal_identifier (tname)))
parse_and_execute (temp_string, name, SEVAL_NONINT|SEVAL_NOHIST|SEVAL_FUNCDEF|SEVAL_ONECMD); parse_and_execute (temp_string, tname, SEVAL_NONINT|SEVAL_NOHIST|SEVAL_FUNCDEF|SEVAL_ONECMD);
if (temp_var = find_function (name)) if (temp_var = find_function (tname))
{ {
VSETATTR (temp_var, (att_exported|att_imported)); VSETATTR (temp_var, (att_exported|att_imported));
array_needs_making = 1; array_needs_making = 1;
@ -377,8 +393,11 @@ initialize_shell_variables (env, privmode)
array_needs_making = 1; array_needs_making = 1;
} }
last_command_exit_value = 1; last_command_exit_value = 1;
report_error (_("error importing function definition for `%s'"), name); report_error (_("error importing function definition for `%s'"), tname);
} }
/* Restore original suffix */
tname[namelen] = BASHFUNC_SUFFIX[0];
} }
#if defined (ARRAY_VARS) #if defined (ARRAY_VARS)
# if ARRAY_EXPORT # if ARRAY_EXPORT
@ -2954,7 +2973,7 @@ assign_in_env (word, flags)
var->context = variable_context; /* XXX */ var->context = variable_context; /* XXX */
INVALIDATE_EXPORTSTR (var); INVALIDATE_EXPORTSTR (var);
var->exportstr = mk_env_string (name, value); var->exportstr = mk_env_string (name, value, 0);
array_needs_making = 1; array_needs_making = 1;
@ -3852,21 +3871,42 @@ merge_temporary_env ()
/* **************************************************************** */ /* **************************************************************** */
static inline char * static inline char *
mk_env_string (name, value) mk_env_string (name, value, isfunc)
const char *name, *value; const char *name, *value;
int isfunc;
{ {
int name_len, value_len; size_t name_len, value_len;
char *p; char *p, *q;
name_len = strlen (name); name_len = strlen (name);
value_len = STRLEN (value); value_len = STRLEN (value);
p = (char *)xmalloc (2 + name_len + value_len);
strcpy (p, name); /* If we are exporting a shell function, construct the encoded function
p[name_len] = '='; name. */
if (value && *value) if (isfunc && value)
strcpy (p + name_len + 1, value); {
p = (char *)xmalloc (BASHFUNC_PREFLEN + name_len + BASHFUNC_SUFFLEN + value_len + 2);
q = p;
memcpy (q, BASHFUNC_PREFIX, BASHFUNC_PREFLEN);
q += BASHFUNC_PREFLEN;
memcpy (q, name, name_len);
q += name_len;
memcpy (q, BASHFUNC_SUFFIX, BASHFUNC_SUFFLEN);
q += BASHFUNC_SUFFLEN;
}
else else
p[name_len + 1] = '\0'; {
p = (char *)xmalloc (2 + name_len + value_len);
memcpy (p, name, name_len);
q = p + name_len;
}
q[0] = '=';
if (value && *value)
memcpy (q + 1, value, value_len + 1);
else
q[1] = '\0';
return (p); return (p);
} }
@ -3952,7 +3992,7 @@ make_env_array_from_var_list (vars)
/* Gee, I'd like to get away with not using savestring() if we're /* Gee, I'd like to get away with not using savestring() if we're
using the cached exportstr... */ using the cached exportstr... */
list[list_index] = USE_EXPORTSTR ? savestring (value) list[list_index] = USE_EXPORTSTR ? savestring (value)
: mk_env_string (var->name, value); : mk_env_string (var->name, value, function_p (var));
if (USE_EXPORTSTR == 0) if (USE_EXPORTSTR == 0)
SAVE_EXPORTSTR (var, list[list_index]); SAVE_EXPORTSTR (var, list[list_index]);