summaryrefslogtreecommitdiffstats
path: root/source/a/bash/bash-5.2-patches/bash52-019
blob: 165a55e62c2398f476650c2e4319ffaae2097637 (plain) (blame)
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
			     BASH PATCH REPORT
			     =================

Bash-Release:	5.2
Patch-ID:	bash52-019

Bug-Reported-by:	Steffen Nurpmeso <steffen@sdaoden.eu>
Bug-Reference-ID:	<20230116233547.2jFxL%steffen@sdaoden.eu>
Bug-Reference-URL:	https://lists.gnu.org/archive/html/bug-bash/2023-01/msg00057.html

Bug-Description:

There are some cases where the shell reaped a background (asynchronous) job
and would incorrectly try to set the terminal's process group back to the
shell's. In these cases it never set the terminal process group to that
jobs's process group initially, so resetting it is incorrect.

Patch (apply with `patch -p0'):

*** ../bash-5.2-patched/jobs.c	2022-12-13 12:09:02.000000000 -0500
--- jobs.c	2023-10-26 12:12:10.000000000 -0400
***************
*** 3078,3084 ****
  	 subshell.  Make sure subst.c:command_substitute uses the same
  	 conditions to determine whether or not it should undo this and
! 	 give the terminal to pipeline_pgrp. */
!       
        if ((flags & JWAIT_NOTERM) == 0 && running_in_background == 0 &&
  	  (subshell_environment & (SUBSHELL_ASYNC|SUBSHELL_PIPE)) == 0)
  	give_terminal_to (shell_pgrp, 0);
--- 3036,3046 ----
  	 subshell.  Make sure subst.c:command_substitute uses the same
  	 conditions to determine whether or not it should undo this and
! 	 give the terminal to pipeline_pgrp. We don't give the terminal
! 	 back to shell_pgrp if an async job in the background exits because
! 	 we never gave it to that job in the first place. An async job in
! 	 the foreground is one we started in the background and foregrounded
! 	 with `fg', and gave it the terminal. */
        if ((flags & JWAIT_NOTERM) == 0 && running_in_background == 0 &&
+ 	  (job == NO_JOB || IS_ASYNC (job) == 0 || IS_FOREGROUND (job)) &&
  	  (subshell_environment & (SUBSHELL_ASYNC|SUBSHELL_PIPE)) == 0)
  	give_terminal_to (shell_pgrp, 0);
***************
*** 3624,3627 ****
--- 3599,3603 ----
        get_tty_state ();
        save_stty = shell_tty_info;
+       jobs[job]->flags &= ~J_ASYNC;	/* no longer async */
        /* Give the terminal to this job. */
        if (IS_JOBCONTROL (job))

*** ../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 18
  
  #endif /* _PATCHLEVEL_H_ */
--- 26,30 ----
     looks for to find the patch level (for the sccs version string). */
  
! #define PATCHLEVEL 19
  
  #endif /* _PATCHLEVEL_H_ */