blob: ece214f097f3138361eed3067062bfa1aa6a0c42 (
plain)
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
|
BASH PATCH REPORT
=================
Bash-Release: 5.1
Patch-ID: bash51-008
Bug-Reported-by: Michael Felt <aixtools@gmail.com>
Bug-Reference-ID: <b82d9a2f-5d8a-ffb2-4115-420c09272da5@felt.demon.nl>
Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-bash/2021-03/msg00028.html
Bug-Description:
Process substitution FIFOs opened by child processes as targets of redirections
were not removed appropriately, leaving remnants in the file system.
Patch (apply with `patch -p0'):
*** ../bash-5.1-patched/execute_cmd.c 2020-10-12 10:16:13.000000000 -0400
--- execute_cmd.c 2021-05-04 11:12:39.000000000 -0400
***************
*** 5557,5565 ****
/* Try to remove named pipes that may have been created as the
result of redirections. */
! unlink_fifo_list ();
#endif /* PROCESS_SUBSTITUTION */
exit (EXECUTION_FAILURE);
}
if (async)
interactive = old_interactive;
--- 5557,5571 ----
/* Try to remove named pipes that may have been created as the
result of redirections. */
! unlink_all_fifos ();
#endif /* PROCESS_SUBSTITUTION */
exit (EXECUTION_FAILURE);
}
+ #if defined (PROCESS_SUBSTITUTION) && !defined (HAVE_DEV_FD)
+ /* This should only contain FIFOs created as part of redirection
+ expansion. */
+ unlink_all_fifos ();
+ #endif
+
if (async)
interactive = old_interactive;
*** ../bash-5.1/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 7
#endif /* _PATCHLEVEL_H_ */
--- 26,30 ----
looks for to find the patch level (for the sccs version string). */
! #define PATCHLEVEL 8
#endif /* _PATCHLEVEL_H_ */
|