I am implementing my own fragment of code for a security control purpose. It normally runs in the background but on a timeout needs to take over the current terminal, display a message, collect user input, and react to the user input.
Waiting for the timeout is easy. Collecting user input while sleep
is the active program is easy. Preventing the shell from stealing the user input I just tried to collect is not so easy.
I am reasonably convinced that "What if two programs did this?" doesn't apply. If another program triggered while we were waiting for input, it's not too bad. If the user wants to interfere with the security check, there are easier ways than this.
Need process group control. This is not so easy to find if you don't know that job control is implemented using process group control. The shell starts background processes in their own process groups and the
bg
andfg
commands toggle which process group is allowed to read from the terminal. All other processes block reading from the terminal.