Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
558 views
in Technique[技术] by (71.8m points)

c - Linux Pipes as Input and Output

I would like to do the following inside a C program on a Linux os:

  • Create a PIPE using a syscall (or 2)
  • Execute a new process using exec()
  • Connect the process's STDIN to to the previously created pipe.
  • Connect the process's output to another PIPE.

The idea is to circumvent any drive access for performance purposes.

I know that the creation of pipes is quite simple using the PIPE system call and that I could just use popen for creating a pipe for input OR output purposes.

But how would you go about doing this for both input and output?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You need to be quite careful with the plumbing:

  1. Call pipe() twice, one for pipe-to-child, one for pipe-from-child, yielding 4 file descriptors.
  2. Call fork().
  3. In child:
    • Call close() on standard input (file descriptor 0).
    • Call dup() - or dup2() - to make read end of pipe-to-child into standard input.
    • Call close() on read end of pipe-to-child.
    • Call close() on write end of pipe-to-child.
    • Call close() on standard output (file descriptor 1).
    • Call dup() - or dup2() - to make write end of pipe-from-child into standard output
    • Call close() on write end of pipe-from-child.
    • Call close() on read end of pipe-from-child.
    • Execute the required program.
  4. In parent:
    • Call close on read end of pipe-to-child.
    • Call close on write end of pipe-from-child.
    • Loop sending data to child on write end of pipe-to child and reading data from child on read end of pipe-from-child
    • When no more to send to child, close write end of pipe-to-child.
    • When all data received, close read end of pipe-from-child.

Note how many closes there are, especially in the child. If you use dup2(), you don't have to close standard input and output explicitly; however, dup() works correctly if you do the explicit closes. Also note that neither dup() nor dup2() closes the file descriptor that is duplicated. If you omit closing the pipes, then neither program can detect EOF correctly; the fact that the current process can still write to a pipe means that there is no EOF on the pipe, and the program will hang indefinitely.

Note that this solution does not alter standard error for the child; it goes to the same place as standard error for the parent. Often, this is correct. If you have a specific requirement that error messages from the child are handled differently, then take appropriate action on the child's standard error too.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...