dup2() is a c system call that duplicates a file descriptor

learn more… | top users | synonyms

1
vote
1answer
27 views

using sort with dup2

I'm experimenting with this dup2 command in linux. I've written a code as follows: #include <stdio.h> #include <unistd.h> #include <string.h> int main() { int pipe1_ends[2]; ...
0
votes
0answers
14 views

read() and write() on multi pipes

(Sorry for my poor English)I 'm writing program that invoke a coprocess.Coprocess is a filter reading form stdin,writing to stdout, and invoked by a same process.So my program can give the coprocess ...
1
vote
2answers
85 views

C Programming 2 pipes

I want to set up 2 pipes in my program. I have 1 pipe working fine, but I don't know where to place the second pipe. The pseudo code of my setup is shown below, Here is it with curly braces sorry ...
0
votes
0answers
65 views

Multiple C UNIX pipes - close() call crashes program?

I'm currently writing a UNIX shell, and to program the command 1 -args | command 2 - args | command 3 -args functionality (i.e. output of the first command is used as the input of the second and so ...
0
votes
0answers
168 views

execlp multiple commands using pipes dup2 - c language

Im have a little C program which executes bash commands (kind of shell program). When user sends command such a: ls -l | grep .[c,h]$ | wc –l ls echo | ls I have decides to use ...
0
votes
0answers
71 views

ffmpeg in child process doesn't exit when parent closes pipe

This code snippet is from a pthread process. It is responsible for reading configuration/options to pass to ffmpeg. The data piped to ffmpeg is coming in on a ring buffer of video frames (as a proof ...
0
votes
1answer
73 views

dup2( ) causing child process to terminate early

So I'm writing a program that involves the creation of 2 sets of pipes so that a parent process can write to a child process & the child process can right back... I have the following code for my ...
0
votes
2answers
183 views

Redirecting stdout to socket

I am trying to redirect stdout to a socket. I do something like this: dup2(new_fd, STDOUT_FILENO); After doing so all stdio functions writing to the stdout fail. I have tried to reopen stdout this ...
1
vote
1answer
217 views

In C, how do I redirect STDOUT_FILENO to /dev/null using dup2 and then redirect back to its original value later?

I have an assignment I'm working on and I'm having difficulty finishing it. The idea is to write a program if.c that executes one program and if that succeeds it executes the second program. I'm ...
2
votes
1answer
160 views

How can I exec and write to stdin and pipe stdout to a socket?

I'm writing an http server for my school project, and I'm trying to execute a CGI script. The following code successfully executes the cgi program, and the output of the program is sent to the ...
0
votes
1answer
49 views

Using pipe/dup2 to communicate with a Python subprocess

I'd like to use Python to implement a user interface for my C program. However, I can't seem to get communication working. Here's what I've done so far, test.c: int main() { int pipe_in[2], ...
0
votes
3answers
97 views

use dup2 system call twice?

in the code below int main () { printf ("dup2 example!\n"); int myfd= creat ( "./etest.txt", 777); dup2(myfd, 1); printf("i am in output file!\n" ); dup2(1,1); printf("i am in STDOUT!" ); return 0; ...
0
votes
1answer
31 views

Emulating pipes

I've just recently learned about pipes and I would like to emulate the "|" gimmick provided by shells. In the code below, the parent process spawns 2 child processes, after which they do their piping ...
1
vote
1answer
132 views

making shell for homework

#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/types.h> #include <string.h> #include <sys/stat.h> #include <fcntl.h> void exec(char ...
3
votes
1answer
126 views

Error using pipes and exec.Second command does not exit

The code takes a command as input and executes it. Pipes are also handled. The issue is that suppose if i enter ls | grep x as command. The process grep does not exit and so the program halts. Any ...
1
vote
1answer
222 views

dup and dup2 commands

What I'm trying to do is that put the output of the ls command in a file, and then use grep command to read from that file and store it in a new file and based on the contents on that file, print ...
0
votes
2answers
309 views

dup2 blocking printf, but not fprintf?

so, I have an assignment for my Operating Systems class wherein i am to create a ring of processes connected with pipes in order to pass messages between them. i found some example code which i was ...
1
vote
1answer
93 views

Unexplainable behaviour with replecating manual piping using dup2

I have two sets of code both trying to execute something like ls|grep pip One that works and one that does not. The working code creates 2 child process and uses one child each to execlp the one ...
0
votes
1answer
101 views

Why could dup2 work here?

I got this code clip from APUE, if (dup2(clfd, STDOUT_FILENO) != STDOUT_FILENO || dup2(clfd, STDERR_FILENO) != STDERR_FILENO) { syslog(LOG_ERR, "ruptimed: unexpected error"); ...
1
vote
1answer
559 views

sending commands to a child process through pipe/dup2 in C

I am trying to write a remote control program for omxplayer on my rasperry Pi I can get omxplayer to run ok in a child process but I don't seem to be able to get the pipes working correctly to ...
0
votes
1answer
402 views

Undefined error using dup2 to redirect stdin and stdout

I would like to use pipes to redirect stdin and stdout of a child process. At the moment I have the following code: void child(int pipeIn[], int pipeOut[]) { char buff[20]; const char ...
0
votes
1answer
796 views

Trouble using dup2 to make a C program execute a command such as 'ls /bin | grep grep | grep b'

I'm having trouble using dup2 to make a c program execute a command such as ls /bin | grep grep | grep b. When I comment out the third command and associated pipe it executes ls /bin | grep grep fine, ...
0
votes
1answer
896 views

How to use dup2/close correctly to connect these three processes?

I'm trying to properly connect three processes in order to allow inter-process communication between them. I have one process, scanner, which takes the parent's STDIN and then processes the words ...
1
vote
1answer
549 views

Closing pipe, dup2, file descriptors in C?

I'm running a program that does piping. The command I want to run is ls | cat. int cmd(char** w, int* pipe, int action){ ... some code up here ... int fd; if(child_pid == 0) { if (pipe != 0) { ...
2
votes
1answer
1k views

How do you use dup2 and fork together?

I'm taking an operating systems course and I'm having a hard time how input is redirected with dup2 when you have forks. I wrote this small program to try and get a sense for it but I wasn't ...
1
vote
2answers
2k views

dup, dup2, tmpfile and stdout in python

This is a follow up question from here. Where I want do go I would like to be able to temporarily redirect the stdout into a temp file, while python still is able to print to stdout. This would ...
1
vote
3answers
620 views

pipe chain between processes

I want to have one parent with 2 children. The parent reads from file "a.txt" and sends trough pipe to first child; the first child reads the chars and sends to the second child the lower letter ...
3
votes
3answers
799 views

Redirect stdout from python for C calls

This is a follow up question from here specifically concerning its answer. From a python module I am calling a Hello World executable that simply prints Hello World to the stdout. I am interested ...
0
votes
1answer
157 views

Does dup2 do more than copy a file descriptor?

First, I open a file, then I use dup2 to copy the file descriptor. Why, when the first file descriptor is closed, can I still read the file through the other one? #include <fcntl.h> #include ...
1
vote
2answers
654 views

dup2 bad file descriptor error

I'm trying to implement multiple piping using a tutorial I got from this website. I seem to get a bad file descriptor error after executing the function that takes care of multiple piping. When I'm ...
1
vote
2answers
339 views

C++ dup2 and execl

I am working on an assignment and I need to create pipes so that other programs handle different functions. I am able to pipe through the command line no problem, thats easy. However using dup2 and ...
5
votes
4answers
2k views

Can someone explain what dup() in C does?

I know that dup, dup2, dup3 "create a copy of the file descriptor oldfd"(from man pages). However I can't digest it. As I know file descriptors are just numbers to keep track of file locations and ...
1
vote
1answer
429 views

Write to file with C++ dup2

Alright I am trying to read from one file and write to another. I have other things to add such as grabbing info from the first file but for testing I am trying to get it to write to the second ...
0
votes
2answers
408 views

multi pipes in C hang

I am trying to implement program that will run multiple chains of shell commands: | --> cmd3 --> cmd4 --> cmd2-->| | --> cmd5 --> cmd6 -->|--> cmd7 ...
0
votes
2answers
811 views

multi pipes in C

I am trying to implement multiple pipes in C, the solution should be both for: cmd1 | cmd2 | cmd3 and for: |--- cmd2 cmd1 |--- cmd3 |--- cmd4 #include <stdio.h> ...
1
vote
2answers
135 views

multi chains of pipes

I am desperate, I am searching for a month for reference/source code for multi chains of pipes, meaning that I can run something: cat /tmp/test.log | wc -l --> stdout ...
1
vote
2answers
422 views

Multiple pipes in C

I want to implement multi pipes in c so I can do something like this, where ||| means duplicate the stdin to N pipe commands): cat /tmp/test.log ||| wc -l ||| grep test1 ||| grep test2 | grep test3 ...
2
votes
0answers
238 views

data disappearing in a (TCP) socket

I have got this mostly-prototypical TCP socket server that accepts a connection and then runs a user-specified program to talk to the other side. The mysterious thing is that write() is called, and ...
1
vote
3answers
3k views

Are STDIN_FILENO and STDOUT_FILENO read only in c?

fd = open("/dev/null", O_RDWR); if (fd == -1) { ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, "open(\"/dev/null\") failed"); return NGX_ERROR; } if (dup2(fd, STDIN_FILENO) == ...
3
votes
3answers
1k views

Writing to file descriptor

In the following snippet i am redirecting the output of the ls command to input of wc -l which works perfectly .Now i also want to redirect the output of ls command to a file named "beejoutput.txt" ...
3
votes
1answer
1k views

Redirecting stdout to file after a fork()

I'm working on a simple shell, but right now I am just trying to understand redirection. I'm just hard coding an ls command and trying to write it to a file for now. Currently, the ls runs, and the ...
2
votes
1answer
1k views

dup2 to redirect stdout and stderr to another file descriptor

i have a call like this. int fd[2]; pipe(fd) and then dup2(fd[WRITE],STDOUT_FILENO) is there a way to use the dup call to duplicate both 1 and 2 to fd[WRITE]?
2
votes
2answers
1k views

Redirect FROM stderr to another file descriptor

My program calls library functions which print to stderr. I want to intervene so that all write calls to file descriptor #2 will instead get sent to somewhere else. Here is my first attempt: bool ...
2
votes
3answers
3k views

dup2() and exec()

#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <errno.h> #include <string.h> int main( int argc, char **argv) { int pfds[ 2], i; size_t ...
2
votes
2answers
1k views

Zombie process and fork

i have a code like this... c = fork(); if(c==0) { close(fd[READ]); if (dup2(fd[WRITE],STDOUT_FILENO) != -1) execlp("ssh", "ssh", host, "ls" , NULL); _exit(1); } ...
2
votes
3answers
3k views

Trouble with dup2, stdout, and stderr

When this program is run, the "stderr" line is displayed before the "stdout" line. Why? I thought dup2 would make stderr and stdout use the same file descriptor so there should be no problem with ...
0
votes
1answer
381 views

trouble pipeline three commands “dmesg|sort|more” c++/c

I have successfully piped the output of one command into the input of another and then show the output of the second command to the screen. I want to do this with three successive commands. (actually ...
8
votes
3answers
3k views

Can popen() make bidirectional pipes like pipe() + fork()?

I'm implementing piping on a simulated file system in C++ (with mostly C). It needs to run commands in the host shell but perform the piping itself on the simulated file system. I could achieve ...
1
vote
2answers
5k views

Using dup2 for piping

How do I use dup2 to perform the following command? ls -al | grep alpha | more
1
vote
1answer
342 views

Trouble with dup2

After incorporating Ben Voigt's answer into the code, it appears to work Original question: I'm trying to use dup2 to: pass the output of "ls -al" as input to "grep foo", whose output becomes ...

1 2