Andreas Wacknitz
2022-11-11 03cc909ad8331b703091e983c87238ae32920349
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
                 BASH PATCH REPORT
                 =================
 
Bash-Release:    5.2
Patch-ID:    bash52-006
 
Bug-Reported-by:    feng xiangjun <fengxj325@gmail.com>
Bug-Reference-ID:    <CAHH2t87LrCmO=gdyWOmGn5WJt7EucL+iOXzrry34OETe50S6uA@mail.gmail.com>
Bug-Reference-URL:    https://lists.gnu.org/archive/html/bug-bash/2022-10/msg00089.html
 
Bug-Description:
 
In interactive shells, interrupting the shell while entering a command
substitution can inhibit alias expansion.
 
Patch (apply with `patch -p0'):
 
*** ../bash-5.2-patched/parse.y    2022-10-08 13:10:06.000000000 -0400
--- parse.y    2022-10-14 10:03:19.000000000 -0400
***************
*** 3307,3310 ****
--- 3307,3312 ----
      extended_glob = global_extglob;
  #endif
+   if (parser_state & (PST_CMDSUBST|PST_STRING))
+     expand_aliases = expaliases_flag;
  
    parser_state = 0;
***************
*** 4389,4392 ****
--- 4391,4395 ----
      parser_state |= PST_NOERROR;
  
+   parser_state |= PST_STRING;
    expand_aliases = 0;
  
***************
*** 6402,6406 ****
        parser_state &= ~PST_NOEXPAND;    /* parse_comsub sentinel */
        /* State flags we want to set for this run through the tokenizer. */
!       parser_state |= PST_COMPASSIGN|PST_REPARSE;
      }
  
--- 6405,6409 ----
        parser_state &= ~PST_NOEXPAND;    /* parse_comsub sentinel */
        /* State flags we want to set for this run through the tokenizer. */
!       parser_state |= PST_COMPASSIGN|PST_REPARSE|PST_STRING;
      }
  
*** ../bash-20221007/parser.h    2022-08-30 11:39:56.000000000 -0400
--- parser.h    2022-10-14 09:56:18.000000000 -0400
***************
*** 51,54 ****
--- 51,55 ----
  #define PST_NOEXPAND    0x400000    /* don't expand anything in read_token_word; for command substitution */
  #define PST_NOERROR    0x800000    /* don't print error messages in yyerror */
+ #define PST_STRING    0x1000000    /* parsing a string to a command or word list */
  
  /* Definition of the delimiter stack.  Needed by parse.y and bashhist.c. */
*** ../bash-20221007/builtins/shopt.def    2022-10-07 10:25:55.000000000 -0400
--- builtins/shopt.def    2022-10-14 09:30:11.000000000 -0400
***************
*** 150,153 ****
--- 150,156 ----
  #endif
  
+ int expaliases_flag = 0;
+ static int shopt_set_expaliases PARAMS((char *, int));
  static int shopt_set_debug_mode PARAMS((char *, int));
  
***************
*** 199,203 ****
    { "dotglob", &glob_dot_filenames, (shopt_set_func_t *)NULL },
    { "execfail", &no_exit_on_failed_exec, (shopt_set_func_t *)NULL },
!   { "expand_aliases", &expand_aliases, (shopt_set_func_t *)NULL },
  #if defined (DEBUGGER)
    { "extdebug", &debugging_mode, shopt_set_debug_mode },
--- 202,206 ----
    { "dotglob", &glob_dot_filenames, (shopt_set_func_t *)NULL },
    { "execfail", &no_exit_on_failed_exec, (shopt_set_func_t *)NULL },
!   { "expand_aliases", &expaliases_flag, shopt_set_expaliases },
  #if defined (DEBUGGER)
    { "extdebug", &debugging_mode, shopt_set_debug_mode },
***************
*** 351,355 ****
    allow_null_glob_expansion = glob_dot_filenames = 0;
    no_exit_on_failed_exec = 0;
!   expand_aliases = 0;
    extended_quote = 1;
    fail_glob_expansion = 0;
--- 354,358 ----
    allow_null_glob_expansion = glob_dot_filenames = 0;
    no_exit_on_failed_exec = 0;
!   expand_aliases = expaliases_flag = 0;
    extended_quote = 1;
    fail_glob_expansion = 0;
***************
*** 632,635 ****
--- 635,647 ----
  }
  
+ static int
+ shopt_set_expaliases (option_name, mode)
+      char *option_name;
+      int mode;
+ {
+   expand_aliases = expaliases_flag;
+   return 0;
+ }
  #if defined (READLINE)
  static int
*** ../bash-20221007/builtins/common.h    2022-10-07 10:10:17.000000000 -0400
--- builtins/common.h    2022-10-14 09:29:25.000000000 -0400
***************
*** 258,261 ****
--- 258,263 ----
  #endif
  
+ extern int expaliases_flag;
  /* variables from source.def */
  extern int source_searches_cwd;
*** ../bash-20221007/execute_cmd.c    2022-10-10 10:48:54.000000000 -0400
--- execute_cmd.c    2022-10-14 09:32:24.000000000 -0400
***************
*** 1537,1541 ****
       aliases. */
        if (ois != interactive_shell)
!     expand_aliases = 0;
      }
  
--- 1537,1541 ----
       aliases. */
        if (ois != interactive_shell)
!     expand_aliases = expaliases_flag = 0;
      }
  
*** ../bash-20221007/general.c    2021-11-04 14:12:38.000000000 -0400
--- general.c    2022-10-14 09:34:24.000000000 -0400
***************
*** 92,96 ****
    &interactive_comments,
    &source_uses_path,
!   &expand_aliases,
    &inherit_errexit,
    &print_shift_error,
--- 92,96 ----
    &interactive_comments,
    &source_uses_path,
!   &expaliases_flag,
    &inherit_errexit,
    &print_shift_error,
***************
*** 107,111 ****
    if (on != 0)
      {
!       interactive_comments = source_uses_path = expand_aliases = 1;
        inherit_errexit = 1;
        source_searches_cwd = 0;
--- 107,112 ----
    if (on != 0)
      {
!       interactive_comments = source_uses_path = 1;
!       expand_aliases = expaliases_flag = 1;
        inherit_errexit = 1;
        source_searches_cwd = 0;
***************
*** 117,120 ****
--- 118,122 ----
      {
        set_posix_options (saved_posix_vars);
+       expand_aliases = expaliases_flag;
        free (saved_posix_vars);
        saved_posix_vars = 0;
***************
*** 123,127 ****
      {
        source_searches_cwd = 1;
!       expand_aliases = interactive_shell;
        print_shift_error = 0;
      }
--- 125,129 ----
      {
        source_searches_cwd = 1;
!       expand_aliases = expaliases_flag = interactive_shell;    /* XXX */
        print_shift_error = 0;
      }
 
*** ../bash-5.2-patched/shell.c    2022-03-04 15:13:00.000000000 -0500
--- shell.c    2022-10-14 09:36:19.000000000 -0400
***************
*** 1845,1850 ****
  init_interactive ()
  {
!   expand_aliases = interactive_shell = startup_state = 1;
!   interactive = 1;
  #if defined (HISTORY)
    if (enable_history_list == -1)
--- 1845,1850 ----
  init_interactive ()
  {
!   expand_aliases = expaliases_flag = 1;
!   interactive_shell = startup_state = interactive = 1;
  #if defined (HISTORY)
    if (enable_history_list == -1)
***************
*** 1866,1870 ****
  #endif /* HISTORY */
    interactive_shell = startup_state = interactive = 0;
!   expand_aliases = posixly_correct;    /* XXX - was 0 not posixly_correct */
    no_line_editing = 1;
  #if defined (JOB_CONTROL)
--- 1866,1870 ----
  #endif /* HISTORY */
    interactive_shell = startup_state = interactive = 0;
!   expand_aliases = expaliases_flag = posixly_correct;    /* XXX - was 0 not posixly_correct */
    no_line_editing = 1;
  #if defined (JOB_CONTROL)
***************
*** 1883,1887 ****
  #endif
    init_noninteractive ();
!   expand_aliases = interactive_shell = startup_state = 1;
  #if defined (HISTORY)
    remember_on_history = enable_history_list;    /* XXX */
--- 1883,1887 ----
  #endif
    init_noninteractive ();
!   expand_aliases = expaliases_flag = interactive_shell = startup_state = 1;
  #if defined (HISTORY)
    remember_on_history = enable_history_list;    /* XXX */
***************
*** 2026,2030 ****
    forced_interactive = interactive_shell = 0;
    subshell_environment = running_in_background = 0;
!   expand_aliases = 0;
    bash_argv_initialized = 0;
  
--- 2026,2030 ----
    forced_interactive = interactive_shell = 0;
    subshell_environment = running_in_background = 0;
!   expand_aliases = expaliases_flag = 0;
    bash_argv_initialized = 0;
  
*** ../bash-5.2-patched/y.tab.c    2022-09-23 10:18:27.000000000 -0400
--- y.tab.c    2022-10-14 14:57:26.000000000 -0400
***************
*** 5618,5621 ****
--- 5618,5623 ----
      extended_glob = global_extglob;
  #endif
+   if (parser_state & (PST_CMDSUBST|PST_STRING))
+     expand_aliases = expaliases_flag;
  
    parser_state = 0;
***************
*** 6700,6703 ****
--- 6702,6706 ----
      parser_state |= PST_NOERROR;
  
+   parser_state |= PST_STRING;
    expand_aliases = 0;
  
***************
*** 8713,8717 ****
        parser_state &= ~PST_NOEXPAND;    /* parse_comsub sentinel */
        /* State flags we want to set for this run through the tokenizer. */
!       parser_state |= PST_COMPASSIGN|PST_REPARSE;
      }
  
--- 8716,8720 ----
        parser_state &= ~PST_NOEXPAND;    /* parse_comsub sentinel */
        /* State flags we want to set for this run through the tokenizer. */
!       parser_state |= PST_COMPASSIGN|PST_REPARSE|PST_STRING;
      }
  
*** ../bash-5.2/patchlevel.h    2020-06-22 14:51:03.000000000 -0400
--- patchlevel.h    2020-10-01 11:01:28.000000000 -0400
***************
*** 26,30 ****
     looks for to find the patch level (for the sccs version string). */
  
! #define PATCHLEVEL 5
  
  #endif /* _PATCHLEVEL_H_ */
--- 26,30 ----
     looks for to find the patch level (for the sccs version string). */
  
! #define PATCHLEVEL 6
  
  #endif /* _PATCHLEVEL_H_ */