All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jon Mason <jdmason@kudzu.us>
To: Peter Hoyes <peter.hoyes@arm.com>
Cc: "meta-arm@lists.yoctoproject.org"
	<meta-arm@lists.yoctoproject.org>,
	"ross@burtonini.com" <ross@burtonini.com>
Subject: Re: [meta-arm] [PATCH v2] runfvp: Ensure new process group is in the foreground
Date: Tue, 2 Nov 2021 11:04:39 -0400	[thread overview]
Message-ID: <20211102150439.GA18848@kudzu.us> (raw)
In-Reply-To: <AM6PR08MB428068EAD2DA7AAA4833CF5DFB8A9@AM6PR08MB4280.eurprd08.prod.outlook.com>

On Mon, Nov 01, 2021 at 03:50:15PM +0000, Peter Hoyes wrote:
> Hi,
> 
> I'm seeing the same issue on honister - is it possible to backport this patch?

Done

> 
> Cheers,
> Peter
> 
> ________________________________
> From: meta-arm@lists.yoctoproject.org <meta-arm@lists.yoctoproject.org> on behalf of Ross Burton via lists.yoctoproject.org <ross=burtonini.com@lists.yoctoproject.org>
> Sent: 21 October 2021 12:16
> To: meta-arm@lists.yoctoproject.org <meta-arm@lists.yoctoproject.org>
> Subject: [meta-arm] [PATCH v2] runfvp: Ensure new process group is in the foreground
> 
> 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,
> but only if stdin is a tty.
> 
> 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..66a76cc5 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)
> +        if sys.stdin.isatty():
> +            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 (#2328): https://lists.yoctoproject.org/g/meta-arm/message/2328
> Mute This Topic: https://lists.yoctoproject.org/mt/86487012/3616920
> Group Owner: meta-arm+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-arm/unsub [jdmason@kudzu.us]
> -=-=-=-=-=-=-=-=-=-=-=-
> 



      reply	other threads:[~2021-11-02 15:04 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-21 11:16 [PATCH v2] runfvp: Ensure new process group is in the foreground Ross Burton
2021-11-01 15:50 ` [meta-arm] " Peter Hoyes
2021-11-02 15:04   ` Jon Mason [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211102150439.GA18848@kudzu.us \
    --to=jdmason@kudzu.us \
    --cc=meta-arm@lists.yoctoproject.org \
    --cc=peter.hoyes@arm.com \
    --cc=ross@burtonini.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.