When creating a child process in C++ using Windows API, one can allow inheritance of handles from parent to child. In a Microsoft example “Creating a Child Process with Redirected Input and Output”, redirecting a child process’ std in/out to pipes created by the parent, it is necessary to allow inheritance for the redirection pipes to be usable.
I’m working on a small demo class that launches an external executable, reads the output, and then spits it back to the caller (who records the returned output to a file). I’m trying to build in a time-out feature, where it will only block for a certain amount of time before calling TerminateProcess() on the child and continuing on with life.
However, I’ve found that by allowing handle inheritance, the child process also has a handle (visible with Process Explorer) to the output file. I do not want the child process to obtain this handle, but the parent in this case (this demo class) is not aware of the handle either, so I cannot currently use SetHandleInformation() to unflag the output file specifically to exclude it from inheritance.
I am certain there must be a better way to inherit ONLY the specific handles that I want, without allowing “blanket” inheritance which passes unintended and undesired handles. Unfortunately I have been unable to find a solution, having browsed as many related MSDN articles as I can find, and having Googled myself into a state of discouragement.
At the very least, I need to do something to remove the handles from the child, without necessarily having those handles within the demo class (they’re used by the calling class, and this demo class has no explicit knowledge of their existence).
Any solutions for more selective inheritance? I’m especially interested in the solution that allows me to specifically declare what handles to inherit, and all un-specified handles will not be inherited, if such a solution exists.
Thank you kindly.
If the output file handle is inherited by the child process, then that is because the code in the parent process that opened the file explicitly stated that the file handle should be inheritable. It passed a value for the
lpSecurityAttributesparameter ofCreateFile. The default state is for the handle to not be inheritable.It seems to me that your process-creating class shouldn’t try to second-guess its caller, who has already opened the file.
However, if you have special knowledge of exactly which handles the new process needs, then as of Windows Vista, there is a mechanism for specifying which handles should be inherited. When you prepare to call
CreateProcess, use aSTARTUPINFOEXstructure instead of the usualSTARTUPINFO. It has anlpAttributeListmember. Allocate and initialize it, and then useUpdateProcThreadAttributewithPROC_THREAD_ATTRIBUTE_HANDLE_LISTto set the list of handles to be inherited. All the handles need to be inheritable, and you still need to specifybInheritHandles = TRUEwhen you callCreateProcess. You also need to includeEXTENDED_STARTUPINFO_PRESENTin thedwCreationFlagsparameter. Raymond Chen demonstrated the technique in an article in 2011.If that added functionality isn’t available to you, then you could certainly try to enumerate all your program’s open handles and set all their inheritance properties with
SetHandleInformation, but that seems to be beyond the scope of a function whose job is to create child processes. Let the code that creates the handles worry about whether they should be inheritable.