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 send strings that should be exec by the execlp() which is located in a grandchild.
Im not able to locate my logic errors..
In main():
while (1) {
t = sizeof(remote);
printf("Waiting for connection.\n");
s2 = accept(s, (struct sockaddr*)&remote, &t);
if (s2 == -1) {
perror("accept");
exit(1);
} else {
printf("Client connected.\n");
if(!fork()) {
close(1);
dup(s2);
handle(s2);
exit(0);
}
close(s2);
}
}
In handle():
char str[100];
int n;
while(1) {
n = recv(client_socket, str, 100, 0);
if(n <= 0) {
perror("recv");
exit(1);
} else {
if(!fork()) {
execlp("/bin/sh", "sh","-c", str, NULL);
exit(1);
}
wait(0);
}
}
The result of execlp is not redirected to the client and gives an error "sh: Can't open c".
str? Is it properly terminated? – Joachim Pileborg Mar 1 at 14:11