meta-arm.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] runfvp: Ensure new process group is in the foreground
@ 2021-10-20 17:22 Ross Burton
  2021-10-21  8:55 ` [meta-arm] " Ross Burton
  0 siblings, 1 reply; 2+ messages in thread
From: Ross Burton @ 2021-10-20 17:22 UTC (permalink / raw)
  To: meta-arm

From: Peter Hoyes <Peter.Hoyes@arm.com>

When a new process group is created, it is launched in the background
and any attempt to access the session terminal triggers a SIGTTIN (for
stdin) or SIGTTOU (for stdout) signal. These are ignored in an
interactive shell, but the default signal behavior in a new job is to
send a SIGTSTP to the whole process group. This causes runfvp to hang
when executed via a subprocess when stdin is accessed.

After creating a new process group, use tcsetpgrp to make the new group
the foreground process for the terminal associated with stdin/stdout.

The documentation for tcsetgrp states that tcsetpgrp itself raises a
SIGTTOU signal, so set this signal to SIG_IGN.

Signed-off-by: Peter Hoyes <Peter.Hoyes@arm.com>
Change-Id: I349a825df7fcb8a3cedb81762b901c6f50fa53b5
---
 scripts/runfvp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scripts/runfvp b/scripts/runfvp
index 97836726..9188a3a6 100755
--- a/scripts/runfvp
+++ b/scripts/runfvp
@@ -4,6 +4,7 @@ import asyncio
 import json
 import os
 import re
+import signal
 import sys
 import subprocess
 import pathlib
@@ -220,6 +221,9 @@ if __name__ == "__main__":
         # Set the process group so that it's possible to kill runfvp and
         # everything it spawns easily.
         os.setpgid(0, 0)
+        signal.signal(signal.SIGTTOU, signal.SIG_IGN)
+        os.tcsetpgrp(sys.stdin.fileno(), os.getpgrp())
         runfvp(sys.argv[1:])
+
     except KeyboardInterrupt:
         pass
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [meta-arm] [PATCH] runfvp: Ensure new process group is in the foreground
  2021-10-20 17:22 [PATCH] runfvp: Ensure new process group is in the foreground Ross Burton
@ 2021-10-21  8:55 ` Ross Burton
  0 siblings, 0 replies; 2+ messages in thread
From: Ross Burton @ 2021-10-21  8:55 UTC (permalink / raw)
  To: meta-arm

Breaks in CI, v2 incoming shortly.

Ross

On Wed, 20 Oct 2021 at 18:22, Ross Burton via lists.yoctoproject.org
<ross=burtonini.com@lists.yoctoproject.org> wrote:
>
> From: Peter Hoyes <Peter.Hoyes@arm.com>
>
> When a new process group is created, it is launched in the background
> and any attempt to access the session terminal triggers a SIGTTIN (for
> stdin) or SIGTTOU (for stdout) signal. These are ignored in an
> interactive shell, but the default signal behavior in a new job is to
> send a SIGTSTP to the whole process group. This causes runfvp to hang
> when executed via a subprocess when stdin is accessed.
>
> After creating a new process group, use tcsetpgrp to make the new group
> the foreground process for the terminal associated with stdin/stdout.
>
> The documentation for tcsetgrp states that tcsetpgrp itself raises a
> SIGTTOU signal, so set this signal to SIG_IGN.
>
> Signed-off-by: Peter Hoyes <Peter.Hoyes@arm.com>
> Change-Id: I349a825df7fcb8a3cedb81762b901c6f50fa53b5
> ---
>  scripts/runfvp | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/scripts/runfvp b/scripts/runfvp
> index 97836726..9188a3a6 100755
> --- a/scripts/runfvp
> +++ b/scripts/runfvp
> @@ -4,6 +4,7 @@ import asyncio
>  import json
>  import os
>  import re
> +import signal
>  import sys
>  import subprocess
>  import pathlib
> @@ -220,6 +221,9 @@ if __name__ == "__main__":
>          # Set the process group so that it's possible to kill runfvp and
>          # everything it spawns easily.
>          os.setpgid(0, 0)
> +        signal.signal(signal.SIGTTOU, signal.SIG_IGN)
> +        os.tcsetpgrp(sys.stdin.fileno(), os.getpgrp())
>          runfvp(sys.argv[1:])
> +
>      except KeyboardInterrupt:
>          pass
> --
> 2.25.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#2289): https://lists.yoctoproject.org/g/meta-arm/message/2289
> Mute This Topic: https://lists.yoctoproject.org/mt/86470663/1676615
> Group Owner: meta-arm+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-arm/unsub [ross@burtonini.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-10-21  8:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-20 17:22 [PATCH] runfvp: Ensure new process group is in the foreground Ross Burton
2021-10-21  8:55 ` [meta-arm] " Ross Burton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).