我的目标是通过FIFO在孩子和父母之间建立IPC。孩子应该跑
execl ("/bin/cat", "cat", "/etc/passwd", (char *)0);
将其输出重定向到父输入,父节点应运行此命令:
cut -l : -f 1
并将其输出到命令行。
现在,我已成功链接我的FIFO并将子进程的输出重定向到父进程的输入。我做了多次测试,连接正常。问题在于切割的execl,看起来应该是这样的:
execlp("/bin/cut", "cut", "-l:", "-f", "1", NULL);
但我很确定不是。
int cut(){
//
int myfifo;
char buf[MAX_BUF];
printf("\nCut opening FIFO");
if((myfifo = open("/tmp/myfifo", O_RDONLY | O_TRUNC))<0){
perror("open FIFO at cut");
quit(EXIT_FAILURE);}
else{printf("\nCut has FIFO opened and is reading\n");}
//read(myfifo, buf, MAX_BUF); outputting buf goes as supposed to
if( dup2(myfifo, 0) < 0 ){
perror("dup2 at cut");
quit(EXIT_FAILURE);}
//read(STDIN_FILENO, buf, MAX_BUF);
close(myfifo);
execlp("/bin/cut", "cut", "-l:", "-f", "1", NULL);
//this is for testing buf, but i guess the program shouldn't even get here
printf("\nCut has received: %s\nAnd is closing FIFO", buf);
return -1;
}
int cat(){
int myfifo;
//OPEN FIFO
printf("\nCat opening FIFO");
if( (myfifo = open("/tmp/myfifo", O_WRONLY | O_TRUNC) )<0){
perror("open FIFO at cat");
quit(EXIT_FAILURE);
}
else{
printf("\nCat has opened FIFO");
//WRITE OUTPUT OF "cat \etc\passwd" TO FIFO
dup2(myfifo, 1);
execl ("/bin/cat", "cat", "/etc/passwd", (char *)0);
}
close(myfifo);
return 0;
}
main当前只创建fifo(mkfifo),forks()并调用该函数。 我的问题可能与父节点的stdin(运行剪切),但我不这么认为,或者我可能假设execl()直接从stdin读取而它没有。 我认为这真的是因为我没有正确地通过execl()编写“剪切”。
对代码的任何更正,甚至我表达一些想法的方式都表明我不理解某些东西,我将非常感激。 谢谢你的帮助
答案 0 :(得分:0)
如评论中所述,GNU和BSD(和POSIX)下的cut
命令不支持-l
选项;您需要的选项是-d
分隔符。
此代码适用于我。在我的计算机上,/bin/cat
是正确的,但/usr/bin/cut
是正确的(不是/bin/cut
),所以我必须编译:
$ rmk cutcat UFLAGS=-DCUT_CMD=/usr/bin/cut && ./cutcat
gcc -O3 -g -std=c11 -Wall -Wextra -Werror -DCUT_CMD=/usr/bin/cut cutcat.c -o cutcat
$
它使用make
的自定义变体(称为rmk
)和自定义makefile
,但cut
命令的位置在命令行中通过UFLAGS
(用户标志)宏。 C代码中的STRING
和EXPAND
宏是令人讨厌的,但并不像试图通过调用make
(或rmk
的shell获取双引号那么麻烦})然后make
调用以运行编译器的shell。
代码:
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>
#include <sys/stat.h>
#ifndef CUT_CMD
#define CUT_CMD /bin/cut
#endif
#ifndef CAT_CMD
#define CAT_CMD /bin/cat
#endif
#define EXPAND(x) #x
#define STRING(x) EXPAND(x)
static const char cut_cmd[] = STRING(CUT_CMD);
static const char cat_cmd[] = STRING(CAT_CMD);
static inline void quit(int status) { exit(status); }
enum { MAX_BUF = 4096 };
static void cut(void)
{
int myfifo;
printf("\nCut opening FIFO");
if ((myfifo = open("/tmp/myfifo", O_RDONLY | O_TRUNC)) < 0)
{
perror("open FIFO at cut");
quit(EXIT_FAILURE);
}
printf("\nCut has FIFO opened and is reading\n");
if (dup2(myfifo, 0) < 0)
{
perror("dup2 at cut");
quit(EXIT_FAILURE);
}
close(myfifo);
execlp(cut_cmd, "cut", "-d:", "-f", "1", NULL);
fprintf(stderr, "Failed to execute %s\n", cut_cmd);
exit(1);
}
static
void cat(void)
{
int myfifo;
printf("\nCat opening FIFO");
if ( (myfifo = open("/tmp/myfifo", O_WRONLY | O_TRUNC) ) < 0)
{
perror("open FIFO at cat");
quit(EXIT_FAILURE);
}
printf("\nCat has opened FIFO");
dup2(myfifo, 1);
close(myfifo);
execl(cat_cmd, "cat", "/etc/passwd", (char *)0);
fprintf(stderr, "Failed to execute %s\n", cat_cmd);
exit(1);
}
int main(void)
{
mkfifo("/tmp/myfifo", 0600);
if (fork() == 0)
cat();
else
cut();
/*NOTREACHED*/
fprintf(stderr, "You should not see this message\n");
return 0;
}
示例输出:
多截断
…
nobody
root
daemon
_uucp
_taskgated
_networkd
…
代码与你的代码并没有太大的不同。我删除了一些混乱。我确保close(myfifo)
执行了cat()
;它不是原版。这可能很重要。