- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一个C程序,它使用多个管道来模拟shell。问题是我可以运行大多数命令,例如 ls | cat
等,但我无法使用 ls |厕所。是否存在 wc
不起作用的情况?
int pipefd[4];
int p1 = pipe(pipefd); // Open pipe 1
int p2 = pipe(pipefd + 2); // Open pipe 2
pid_t pid;
for(i = 0; i < n_commands; i++)
{
fflush(stdout);
pid = fork();
if(pid == 0)
{
int command_no = i;
int prev_pipe = ((command_no - 1) % 2) * 2;
int current_pipe = (command_no % 2) * 2;
// If current command is the first command, close the
// read end, else read from the last command's pipe
if(command_no == 0)
{
close(pipefd[0]);
}
else
{
dup2(pipefd[prev_pipe], 0);
close(pipefd[current_pipe]);
}
// If current command is the last command, close the
// write end, else write to the pipe
if(command_no == n_commands - 1)
{
close(pipefd[current_pipe + 1]);
}
else
{
dup2(pipefd[current_pipe + 1], 1);
}
int p = execvp(tokens[cmd_pos[command_no]], tokens + cmd_pos[command_no]);
close(pipefd[current_pipe]);
close(pipefd[prev_pipe]);
close(pipefd[prev_pipe + 1]);
close(pipefd[current_pipe + 1]);
_exit(0);
}
}
如果 /usr/bin
中的程序不是管道中的第一个命令,则它们似乎不会被执行。
最佳答案
这是一个根据您的代码创建的非常简单的程序 - 猜测如何创建管道并稍微简化命令 argv
处理:
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
static char *argv_ls[] = { "ls", 0 };
static char *argv_wc[] = { "wc", 0 };
static char **cmds[] = { argv_ls, argv_wc };
int main(void)
{
int n_commands = 2;
int pipefd[2];
pipe(&pipefd[0]); // Error check!
fflush(stdout);
for (int i = 0; i < n_commands; i++)
{
int pid = fork();
if (pid == 0)
{
int command_no = i;
int prev_pipe = ((command_no - 1) % 2) * 2;
int current_pipe = (command_no % 2) * 2;
printf("cmd %d: prev pipe %d, curr pipe %d\n", i, prev_pipe, current_pipe);
fflush(stdout);
// If current command is the first command, close the
// read end, else read from the last command's pipe
if (command_no == 0)
{
close(pipefd[0]);
}
else
{
dup2(pipefd[prev_pipe], 0);
close(pipefd[current_pipe]); // Line 40
}
// If current command is the last command, close the
// write end, else write to the pipe
if (command_no == n_commands - 1)
close(pipefd[current_pipe + 1]); // Line 46
else
dup2(pipefd[current_pipe + 1], 1);
execvp(cmds[i][0], cmds[i]);
fprintf(stderr, "Failed to exec: %s (%d: %s)\n", cmds[i][0], errno, strerror(errno));
_exit(1);
}
}
return 0;
}
当 GCC 4.7.1(在 Mac OS X 10.7.4 上)编译它时,它会发出警告:
pipes-12133858.c: In function ‘main’:
pipes-12133858.c:40:22: warning: array subscript is above array bounds [-Warray-bounds]
pipes-12133858.c:46:22: warning: array subscript is above array bounds [-Warray-bounds]
当我运行它时,我得到输出:
Isis JL: pipes-12133858
cmd 0: prev pipe -2, curr pipe 0
cmd 1: prev pipe 0, curr pipe 2
Isis JL: wc: stdin: read: Bad file descriptor
由于代码中的父级不等待子级完成,因此在来自 wc
的错误消息之前会出现提示,但打印的诊断号显示存在各种问题(并且编译器能够发现一些问题)。
请注意,无需检查任何 exec*()
系列函数的返回值。如果他们成功了,他们就不会回来;如果他们成功了,他们就不会回来。如果他们回来,他们就失败了。在调用 _exit(0);
之前也不需要关闭,因为系统无论如何都会关闭它们。此外,当您无法执行某些操作时,有礼貌的是打印一条消息来指示您无法执行的操作并以非零退出状态退出。
所以,如Michał Górny说,你的问题的一个主要部分是你的管道处理代码至少是神秘的,因为你没有显示它并且可能是错误的。
我还可以肯定您的代码中没有足够的 close()
调用。作为指导,在每个打开管道且将成为管道一部分的进程中,由 pipe()
系统调用返回的所有文件描述符应在任何给定子进程之前关闭使用 exec*()
函数。不关闭管道可能会导致进程挂起,因为管道的写入端是打开的。如果写入端打开的进程正在尝试从管道的读取端读取数据,那么它将找不到任何要读取的数据。
关于c - LS |使用 C 的 wc 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12133858/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!