Sponsored Content
Top Forums Shell Programming and Scripting Trap CTRL-C and background process Post 302415409 by alister on Thursday 22nd of April 2010 01:27:10 PM
Old 04-22-2010
Let's forget about your traps for a moment (which aren't well implemented, I'm sorry to say).

When you launch that script from an interactive shell prompt, it, all of its non-interactive subshells, and any external commands it executes will run as part of the same process group. When you press ctrl-c, the system will send SIGINT to every single process in that terminal's foreground process group (which includes scp). You should expect scp to be killed.

Except for one very important thing: when running a process as part of an asynchronous list (backgrounded, as you're doing with scp), it inherits a signal mask which ignores SIGINT (and I think SIGQUIT as well). So, if scp is running asynchronously, and such processes are setup by their shells to ignore SIGINT, why is it terminating when it receives SIGINT? Most probably, scp is modifying its inherited sigmask.

I don't know which implementation you are using, but a quick peek at OpenSSH's scp.c turns up a couple instances of "signal(SIGINT, killchild);".

If I am correct, and the issue is that scp is modifying its sigmask to terminate upon receipt of SIGINT, try running it in a different process group. This way, when ctrl-c sends SIGINT to every process in the foreground group, scp will not be signaled, as it's not a member. One way of accomplishing this is to invoke an interactive shell from your script.

Code:
# Instead of joining the current process group...
scp large.tar.gz server:/tmp/ &

# ... let's start another process group
sh -ic 'scp large.tar.gz server:/tmp/' &


Regarding your traps, note that since SIGINT is being sent directly to each process in the process group, you cannot use sh signal handlers to modify the signal handling behavior of other processes (including subshells). The only signal handling modification that you can make that is inheritable, by subshells and external utilities, is setting a signal to be ignored (using `trap '' SIGINT`).

Also, in your code, once the signal handler is entered, to handle the arrival of a particular signal, the script is stuck in the signal handler until a different signal interrupts the wait (since the current signal will be ignored so long as its handler is executing); at which point, if the newly-received signal is being trapped, the script is again stuck, in yet another instance of the signal handler. If you send the same signal more than once, you'll see that it only prints the message the first time.

Assuming you actually even need a signal handler to accomplish what you're trying to do (which you don't, if you just want to set some signals to be ignored), it would be a good idea to remove the wait from signal_exit and use a while loop in testFunction to resume waiting if wait is interrupted by a signal.

I sincerely hope that this post was helpful to you.

Regards,
Alister
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

capture the process id when starting a background process

Hello all, How do I start a background process and save the process id to a file on my system. For example %wait 5 & will execute and print the process id. I can't figure out how to get it to a file. I've tried: > filename 0>filename 1>filename. Any assistance is most appreciated. Thanks, Jim... (10 Replies)
Discussion started by: jleavitt
10 Replies

2. UNIX for Dummies Questions & Answers

problems with ctrl-z, to switch foreground, background

my shell is /sbin/sh. i added stty susp '^Z' with the intention of being able to switch between foreground and background. but the result was strange. i had 2 servers. one is sun the os is 8 and the other is hpux v11. both of them had the same shell. but on hpux, it works perfectly fine while... (9 Replies)
Discussion started by: yls177
9 Replies

3. AIX

Disable ctrl-c,ctrl-d,ctrl-d in ksh script

I wrote a ksh script for Helpdesk. I need to know how to disable ctrl-c,ctrl-z,ctrl-d..... so that helpdesk would not be able to get to system prompt :confused: (6 Replies)
Discussion started by: wtofu
6 Replies

4. UNIX for Advanced & Expert Users

trap ctrl c in shell script

how to trap the ctrl c in unix shell script my script is running in while loop it should not be terminate with ctrl c. if i press ctrl c while running script it shloud ignore the same. please healp.......... thanks in advance (2 Replies)
Discussion started by: arvindng
2 Replies

5. Shell Programming and Scripting

trap CTRL-C problem

I am trying to trap CTRL-C, now the program I call has it's own exit message, I think this is the problem .. This is what I have now : function dothis { echo 'you hit control-c' exit } function settrap { trap dothis SIGINT } settrap until false; do ./ITGRecv.exe doneDoing this I... (2 Replies)
Discussion started by: Pmarcoen
2 Replies

6. UNIX for Dummies Questions & Answers

Script to start background process and then kill process

What I need to learn is how to use a script that launches background processes, and then kills those processes as needed. The script successfully launches the script. But how do I check to see if the job exists before I kill it? I know my problem is mostly failure to understand parameter... (4 Replies)
Discussion started by: holocene
4 Replies

7. Shell Programming and Scripting

Help with getting a Ctrl-C trap working w/ a piped tail -f...

Hi All, Although each line below seems to work by itself, I've been having trouble getting the Control-C trap working when I add the "|perl -pe..." to the end of the tail -f line, below. (That |perl -pe statement basically just adds color to highlight the word "ERROR" while tailing a log... (2 Replies)
Discussion started by: chatguy
2 Replies

8. Shell Programming and Scripting

How to put FTP process as a background process/job in perl?

Hi, I am using net::ftp for transferring files now i am trying in the same Linux server as a result ftp is very fast but if the server is other location (remote) then the file transferred will be time consuming. So i want try putting FTP part as a background process. I am unaware how to do... (5 Replies)
Discussion started by: vanitham
5 Replies

9. Shell Programming and Scripting

Make background process interact with fg process

Hi, I have written a menu driven shell script in which as per the choice, I run the another script on background. For eg: 1. get info 2)process info 3)modify info All the operations have different scripts which i schedule in background using &. However I wish to display the error... (0 Replies)
Discussion started by: ashima jain
0 Replies

10. Shell Programming and Scripting

--killing backround Procs spawned from the parent script with Ctrl+C trap

Hello: Am trying to understand why the method #2 works but method #1 does not. For both methods, sending CTRL+C should kill both the Parent script & all of the spanwd background procs. Method #1: ========================== #!/bin/sh ctrl_c() { echo "** Trapped CTRL-C" ... (3 Replies)
Discussion started by: gilgamesh
3 Replies
sigreturn(2)							System Calls Manual						      sigreturn(2)

NAME
sigreturn - Returns from signal SYNOPSIS
#include <signal.h> int sigreturn( struct sigcontext *scp) ; PARAMETERS
Points to a sigcontext structure whose members contain the processor state to be restored. The contents of the sigcontext structure should have been previously obtained by entry to a signal handler or by the setjmp() or sigsetjmp() function. DESCRIPTION
The sigreturn() function restores the processor state of the calling process from a sigcontext structure. The sigcontext structure contains the state of all application-visible registers as well as the signal mask. The specific members of the sigcontext structure depend on the machine architecture. Each machine-dependent structure member is defined in the signal.h include file. The sigreturn() function is used internally by the system software to restore the processor state on return from a signal handler and from a longjmp() function, to restore the state saved by a previous setjmp() or sigsetjmp() function. NOTES
An application should only use sigreturn() with great caution. RETURN VALUES
Upon successful completion, the sigreturn() function does not return. Otherwise, a value of -1 is returned and errno may be set to indi- cate the error. ERRORS
If the sigreturn() function fails, the process context remains unchanged and errno is set to one of the following values: The scp parameter points to memory space that is not a valid part of the process address space. The sigcontext structure contains unsupported or illegal values. RELATED INFORMATION
Functions: setjmp(3), sigaction(2), sigvec(2) delim off sigreturn(2)
All times are GMT -4. The time now is 01:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy