Tagged Questions
0
votes
0answers
9 views
Calling Valgrind programatically (execing) produces no profiling data
My app has a process A which fork/execs another process B, and the child B then loads a shared library. I want to run Valgrind only on the child process B. Process A also ptrace's process B.
I tried ...
0
votes
1answer
47 views
C pipe, fork, dup, and exec()
I'm trying to pass list of strings through pipe to child process where it should display through /bin/cat using execl(). I had it working earlier except that the pipe did not close so the program ...
0
votes
1answer
68 views
C system calls pipe, fork, and execl
I fork()'d a child process and created pipes between them and am able to send argument argv[1] to the child. I want the child to take that filename provided from argv[1] and perform an ...
1
vote
1answer
62 views
C - WHILE Loop with fork() / pipe() inside
I have a problem where I must implement a key logger into a shell we have made in class. I am having trouble getting the flow of the program within a while loop to continue looping after a child ...
0
votes
3answers
42 views
Working of exec family functions
I am studying exec family of functions.Its man page says,it replaces the current process image with a new process image. If it replaces the binary,then after returning back,how does it get the ...
0
votes
1answer
30 views
How can I use execle with a va_list like execvpe?
The version of glibc I am using does not have the execvpe function. However, I need that exact functionality for what I am trying to do. The user will pass in an argument list that is their linux ...
1
vote
1answer
53 views
Forking with command line arguments
I am building a Linux Shell, and my current headache is passing command line arguments to forked/exec'ed programs and system functions.
Currently all input is tokenized on spaces and new lines, in a ...
0
votes
0answers
45 views
Save the output of execl command in c to the same file
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#define MAXLINE 512
main(int argc,char* ...
2
votes
1answer
71 views
C - execl(): can't execute file located in another directory
I'm trying to execute a binary file named "helloworld" (compiled from a source.c) located in another directory with my program notify.c. Here's where my files are located:
...
0
votes
1answer
72 views
C - exec() a file located in another directory [closed]
How can I execute a binary file (compilated from a c source) located in another directory with one of the exec() functions?
I'm working with the inotify API, and I want to execute a file located in ...
0
votes
1answer
57 views
execl command to write on file
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#define MAXLINE 512
main(int argc,char* argv[]){
int k;
for (k=0; k<argc; k++) {
if (k%2==0) {
...
0
votes
1answer
70 views
C exec, awk, not working
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#define MAXLINE 512
main(int argc,char* argv[]){
int k;
for (k=0; k<=argc; k++) {
if (k%2==0) {
...
1
vote
2answers
67 views
Is dup2() necessary for execl
Is it necessary to replace stdin with a pipe end when using pipes?
I have an application that:-
Creates a pipe,
Forks a child process, and then
execl() a new process image within new child ...
0
votes
1answer
125 views
execvp - ls: fts_open: No such file or directory
I'm currently struggling with this error. I'm writing a shell emulator, using fork() for executing a command using execvp();.
Almost every command I try to parse to my shell is working perfectly, ...
0
votes
0answers
245 views
Capture stdin, stdout, stderr of child process using pipes
I have to write program in C (Unix) which captures stdin, stdout and stderr of command passed in command line arguments.
For example,
./capture echo Hi
== stdout ===
Hi
== end of stdout ==
./capture ...
0
votes
1answer
75 views
Pipestream and child processes
I need to write my pipestream. My program should get names of another programs and call them, first program should read from stdin second from output of the first an so on. Last program print the ...
0
votes
2answers
218 views
C program that executes bash commands inside xterm with execl
I have a command that execute well in the normal terminal on Linux:
xterm -e bash -c "some commands"
I want to execute the above command using c program execXX system calls. I try to use the ...
0
votes
2answers
75 views
Run program within C _without_ using a shell
I'm trying to run an application in C, but the only way I could find that is reasonably easy to use works like this:
system("command here");
It works, of course, but it's really slow (especially ...
1
vote
3answers
81 views
Splitting Unix command for use with exec [duplicate]
I have a program which takes command from input, and then executes it using execl (it has to be function from execvp family). Right now, assuming the input line is in , can I simply use ...
2
votes
0answers
111 views
How do i correctly utilize pipe, fork and execv to launch and interact with a secondary program?
Programming Language: C and C++ mixed code
Context: There is program 'A' that takes user input from STDIN and outputs a response to STDOUT. The input and output of 'A' are unsuitable for my intended ...
2
votes
2answers
94 views
Return status of execve
I want to send exit status 0 from the execve process to the process which started it.
Because on Success execve never returns, So I am not able to do anything after that. But I want if execve ran ...
0
votes
1answer
77 views
When should I use O_CLOEXEC when I open file in Linux?
My process forks several times, and each time the child will exec - means I want it to run some other program.
In the main process I open a file descriptor with the open() syscall.
Would it be ...
0
votes
1answer
73 views
sorting random numbers sent to child using exec
What I am trying to do is send random numbers generated by a parent and then sent to the child, who then execs "sort -nr", and then sends back the sorted numbers back to the parent. I found this ...
-3
votes
1answer
91 views
I am making linux command Program by C-language. and I want to know what is wrong the code?
I wanna ask about how to make exec process programing by C.
Now, I typed like these code, and I use strtok and strdup.
my code wrong assign value from input, so could you see my code and could you ...
-6
votes
2answers
117 views
Create linux environment in C using execl and fork() [closed]
I have created a program that acts like a Linux environment. You put in a command and it does it for you.
#include <stdio.h>
#include <string.h>
int main()
{
int pid;
int status;
...
0
votes
1answer
86 views
How to exit with Ctrl+D like bash with execl?
I'm doing :
execl("/bin/bash", "/bin/bash", NULL);
When I do a Ctrl+D, it directly exit. How can I do the same as bash and write exit before exiting ?
Do I have to add a flag or something to execl?
...
0
votes
2answers
93 views
Multiple execlp not working
I need some help here. I need to execute all three execlp() once I run the program but what happen is that only case 0 is executed.I changed pid to 1 and case1 gets executed and so on. Tried putting ...
0
votes
2answers
75 views
Fork-server and grandchildren for exec
I need help with fork-server. What I want to do is accept a client then fork to let other clients connect and at the same time redirect stdout & err to client. The client should then be able to ...
0
votes
1answer
75 views
Child Process in Background Issues for Handmade Shell
I'm having a bit of trouble implementing my own handmade shell. I've been able to fork a process and run it in the foregroud with waitpid, but when I try and run simple processes in the background ...
0
votes
1answer
134 views
Ls -l not executing in execl, whereas in execvp it works
So here is my problem, using the code below in the execl, ls works, but ls -l does not work.
but in my execvp approach ls and ls-l works. The reason why I adopted the execl approach is because the ...
1
vote
2answers
229 views
C Unix - fork(), execl() and pipe in a loop
I want to preface this with the fact that I have no formal education in the use of pipes, so this is my first venture. Not to mention that I couldn't find any similar questions to my situation.
...
0
votes
1answer
144 views
C- Using exec() in windows
I've seen many many results for unix systems. I am using cygwin so I am using unistd.h library. I am trying to run this command but It does not run. What could I be missing here?
...
3
votes
3answers
134 views
How can I exec either a shell script or an executable?
This is a school project I'm working on.
I'm writing a web server. If the requested resource has the extension 'cgi', I need to fork and exec the program. If the cgi is a compiled executable, this ...
1
vote
2answers
89 views
Shared structure for different processes
I need to define a shared structure between different executables in C/C++. How can I do that?
in my starter.c file:
pid_t child = fork();
if (child > 0) {
// Parent.
... // detach shared ...
1
vote
3answers
136 views
What does execvp actually do? [duplicate]
Possible Duplicate:
Writing a shell - how to execute commands
I've been tasked with writing a shell in C. So far I understand that execvp will try to run the program in arg1 with arg2 as ...
1
vote
2answers
1k views
In C how do you redirect stdin/stdout/stderr to files when making an execvp() or similar call?
I have the following code:
pid_t pid = fork();
if (pid == -1)
{
// ...
}
else if (pid == 0)
{
stdin = someopenfile;
stdout = someotherfile;
stderr = somethirdopenfile;
...
0
votes
1answer
63 views
How to execute arbitrary pipes in c and continue
I'm trying to fork and then execute two or more piped commands in the child process. My idea is to use a while loop to continuously fork and execute the command in one process while continuing the ...
0
votes
1answer
125 views
C executing a pipe: execlp works while execvp doesn't
Could someone explain to me why this gives the normal behavior (ls | cat)
int fd[2]; pipe(fd);
pid_t pid = fork();
if(pid > 0) {
close(fd[0]);
close(STDOUT_FILENO);
...
0
votes
0answers
78 views
How to get this program running on Linux [closed]
So, I've looked throughout other threads and I didn't found an answer and I've become pretty desperate. Here is my problem. I have an assignment from my university. I have to make a program which ...
1
vote
1answer
75 views
How to free memory created by malloc after using execvp?
In my C program, I create a child process and in it, it parses a string and created a pointer array (using malloc()) for the use of passing it in execvp() command.
But the problem is, how do you ...
0
votes
1answer
62 views
How can stdout of exec'ed program be redirected to FCGI_stdout?
I am building a libfcgi-based fastcgi application to provide "smart HTTP" transfers in git. To do so, I currently need to fork and exec the git-upload-pack program. The only issue is that libfcgi ...
2
votes
1answer
183 views
no result!! using fork() to run execlp() with 2 pipes using dup2
I am writing a C program which will run Linux commands, like:
cat /etc/passwd | grep list | cut -c 1-5
and i didnt have any result
*here the parent wait for the first child(child_pid) to finish;and ...
1
vote
1answer
164 views
fork () and execlp () , printf before execlp() does not get executed
I m learning interprocess communication ...this is the code that bugs me
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(void)
{
int pfds[2];
pipe(pfds);
...
0
votes
2answers
189 views
malloc on (char**)
Well, I'm trying to write a shell for linux using C. Using the functions fork() and execl(), I can execute each command, but now I'm stuck trying to read the arguments:
char * command;
char ** c_args ...
0
votes
2answers
133 views
Sending signal to a forked process that calls exec()
I have a simple C program that forks a process and call exec to run a command as below:
#include<stdio.h>
#include<signal.h>
#include<unistd.h>
#include<sys/types.h>
int ...
0
votes
0answers
52 views
stdin/stdout redirection err while using execvp function [duplicate]
Possible Duplicate:
Classic C. Using pipes in execvp function, stdin and stdout redirection
I want to simulate simple bash pipe command like ls | wc in my Linux C program using pipes, fork ...
-1
votes
1answer
111 views
popen2: reading works, writing doesn't
The following function executes a process, returns its PID and provides file descriptors for reading and writing:
pid_t popen2(const char **command, int *infp, int *outfp)
{
int p_stdin[2], ...
1
vote
3answers
143 views
Redirection inside call to execvp() not working
I've been implementing a small program that executes a given command using execvp(). It works fine when not using redirection, but when I run a command such as:
cat file1.txt > redirected.txt
...
2
votes
1answer
463 views
fork/exec/waitpid issue
I'm trying to determine whether an execution failed by checking the result of waitpid(). However, even when I run a command that I know fails and writes the issue to stderr, the check below never ...
0
votes
3answers
230 views
execvp/fork — how to catch unsuccessful executions?
Right now I'm writing a C program that must execute a child process. I'm not doing multiple child processes simultaneously or anything, so this is fairly straightforward. I am definitely executing the ...