我正在尝试在C中实现一些Shell命令,但是管道给我带来了一些麻烦(我踢了大部分代码,所以你们可以编译它 - 如果需要的话)
我与2011年old post
发布的Mkabs解决方案非常接近经过它之后,我以为我把它弄下来了,但它没有用。
简单示例:>> ** ls | sort -r **
但exec()都失败了: ENOENT,没有这样的文件或目录
如果我从userInput或硬编码读取给定字符串的命令无关紧要,它总是失败。
因此错误必须在ExecutePipe()fkt中,不需要通过其余部分。
#define _POSIX_C_SOURCE 1
#include <alloca.h>
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/times.h>
#include <sys/wait.h>
typedef char* string;
static int keepRunning = 1;
char inputBuffer[512];
string satz[256];
int j,comCount, modePipe,mode;
void Tokens(string);
void ExecutePipe(void);
int ScanInput(void);
void Tokens(string token){
int len;
char* ptrC;
j=0;
satz[j] = strtok (inputBuffer, token);
while (satz[j] != NULL)
{
j++;
satz[j] = strtok (NULL, token);
}
comCount =j;
/*REPLACE NEWLINE of LAST COMMAND */
len =strlen(satz[j-1]);
ptrC = satz[j-1];
for (j=0;j<len;j++){
if (*ptrC == '\n'){
*ptrC = '\0';
}
ptrC++;
}
}
void ExecutePipe(void){
int* ptrPipe;
int i,k=0, numPipes;
pid_t pid, status;
int stdin_dupfd,stdout_dupfd;
string* ptrSatz = satz;
modePipe=1;
Tokens("|");
stdin_dupfd = dup(0);
stdout_dupfd = dup(1);
numPipes = comCount-1;
ptrPipe = (int*) alloca(numPipes*2);
for(i = 0; i < numPipes; i++){
if(pipe(ptrPipe + i*2) < 0) {
printf("Error: pipe(%d)\n",i);
return;
}
}
while(k<comCount) {
pid = fork();
if(pid < 0){
fprintf(stderr,"Error: PID.%d\n", pid);
exit(9);
}
else if(pid == 0) { /* child gets input from the previous command*/
if(k > 0){ /*if not first command*/
if(dup2(ptrPipe[(k-1) * 2], 1) < 0){ /*ptr[0]. ptr[2], ptr[4], ...*/
fprintf(stderr,"Error: dup2(firstCommand)\n");
exit(10);
}
else fprintf(stderr,"k[%d]:dupe2([%d], 0)\n",k,(k-1)*2);
}
if(k != (comCount-1) ){ /*if not last command*/
if(dup2(ptrPipe[k * 2 + 1], 1) < 0){ /*ptr[1]. ptr[3], ptr[5], ...*/
fprintf(stderr,"Error: dup2(notLastCommand)\n");
exit(11);
}
else fprintf(stderr,"k[%d]:dupe2([%d], 1)\n",k,k*2+1);
}
for(i = 0; i < 2*numPipes; i++){
close(ptrPipe[i]);
}
if( execlp(*ptrSatz, *ptrSatz) < 0 ){ /* */
fprintf(stderr,"Error: ");
fprintf(stderr,"exec(%s)(%d)\n", *ptrSatz, errno);
exit(12);
}
}
fprintf(stderr,"[%d]: %s\n", k,*ptrSatz);
ptrSatz++;
k++;
}
for(i = 0; i < 2 * numPipes; i++){
close(ptrPipe[i]);
/*printf("loop %d of %d\n ",i, 2*numPipes);*/
}
for(i = 0; i < numPipes + 1; i++){
wait(&status);
}
dup2(stdin_dupfd, 0);
dup2(stdout_dupfd, 1);
close(stdin_dupfd);
close(stdout_dupfd);
inputBuffer[0] = '\0';
modePipe=0;
}
int main (void)
{
while (keepRunning){
printf(">> ");
fgets(inputBuffer, 512, stdin); /* input buffer, max.Input(char), whereFrom?*/
mode = ScanInput(); /*checks inputBuffer on keywords, returns int 1-13*/
/*printf(">> mode:%d\n", mode);*/
switch(mode){
case 11 :
ExecutePipe();
break;
}
}
return 0;
}
int ScanInput(void){
char * pch;
pch = strstr (inputBuffer," | ");
if (pch != NULL)
return 11;
else
return 1;
}
谢谢!
答案 0 :(得分:0)
exec
只能调用一个二进制文件。你在这里给了一个shell命令。使用system()
函数,您也可以调用shell命令,但它只能调用bash
来解释它。
最简单的解决方案是在system
之后调用此行,然后在exit
之后调用此行,例如
exec("complex|shell|command >&3");
需要更改为
system("complex|shell|command >&3");
exit(0);
答案 1 :(得分:0)
我的dup2迭代变量出错了。 预期的行为是:
dup2 - notLast notFirst
1,1 [first]
3,1 0,0
5,1 2,0
7,1 4,0
.. ..
并且notLast部分错误地增加...
修好后,它运行顺利