vote up 1 vote down star

Let's say I create a socketpair() and I pass the handle of one of the socket to a spawned process (popen), will the said process be able to communicate back with the parent?

The examples I saw are applied using fork() which is out of scope for my current project.

Updated: I tried a simple test:

  1. Client: socketpair with sockets[0]

  2. From Client use posix_spawn with sockets[1] as command-line argument

  3. Client: write to socket ... Client exits without any warning...

It would appear that there is a problem with this method.

UPDATED: I also found this note:

Pipes and socketpairs are limited to communication between processes with a common ancestor.

flag

Have you tried it? – Jim Garrison Nov 5 at 20:20
@Jim: not yet... I was hoping for a fast turnaround on this question... – jldupont Nov 5 at 20:21
Regarding "Client exits without any warning", doesn't perror(3) say anything? – Inshallah Nov 6 at 21:29
@Inshallah: the moment I call write the process exits so I can't perror(). – jldupont Nov 6 at 21:40
@jldupont - I didn't think that you meant that the client, literally, just exits :-). Some signal handler may be responsible for terminating your process. Try trapping SIGPIPE (or some others, see signal(7)). Also, make sure you are checking all return values for errors. Best would be if you could post the code that you used for testing. – Inshallah Nov 6 at 23:05

2 Answers

vote up 2 vote down

The man page for execve states:

 File descriptors open in the calling process image remain open in the new
 process image, except for those for which the close-on-exec flag is set
 (see close(2) and fcntl(2)).  Descriptors that remain open are unaffected
 by execve().

Since functions like popen are based on execve, then the file descriptors that you got from your socketpair function should be good across both processes, and I don't see why you can't pass the descriptor in whatever manner pleases you. I'm assuming that in this case you mean to convert it to a string and set it over STDIN to the sub-process, which would convert it back to an int to use as a file descriptor.

It would certainly be worth writing some trial code for.

link|flag
popen will not close existing file descriptors, except: "The popen() function shall ensure that any streams from previous popen() calls that remain open in the parent process are closed in the new child process." opengroup.org/onlinepubs/009695399/… – ephemient Nov 5 at 21:29
2  
Just to clarify, please note that file descriptors that are opened after the child has been forked (and sent stringified to the child's STDIN) will not be open in the child. Only fds already open at the time the execve call is made will be open in the child as well, and usually such fds will be communicated to the child via command line arguments. I can see no reason to involve a pipe. – Inshallah Nov 5 at 21:33
vote up 0 vote down

Yes, you can pass it to the child process. The trick is really that socketpair() gives you a pair of connected sockets - make sure that the child keeps one and the parent keeps the other (the parent should close the child's and vice versa).

Most cases use a pair of pipes instead though.

link|flag
see updated section in question. I did that to no avail. I created the child process through posix_spawn: could that be the problem? – jldupont Nov 6 at 13:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.