我在阅读很多帖子之前不幸地问这个问题,他们都没有给我解决我问题的必要方法。 我正在用gnu c编写一个mpi程序,并尝试在之前的子进程中执行hping3。 实际状态是,我可以生成一个孩子,也许执行hping3命令,但是孩子的管道输出给我以下错误信息,可能来自hping3:
"you must specify only one target host at a time"
我做了以下事情: 首先,我创建了大量的char数组来填充我的参数。 为什么阵列?我想在运行时(迭代循环)
更改端口和IP//Parameter list for hping3 fork, maxlength precalculated (tcp restrictions and given params for hping)
char sudo[] = "/usr/bin/sudo";
char path[] = "/usr/sbin/hping3";
char scan[] = "--scan";
char port[] = "65535";
char ip[] = "192.168.111.111";
char verbose[] = "-V";
char *params[7];
params[0]=sudo;
params[1]=path;
params[2]=scan;
params[3]=port;
params[4]=ip;
params[5]=verbose;
params[6]=NULL;
params的变化如下:
sprintf(*(params + 3), "%u", *(portarray+i));
sprintf(*(params + 4), "%u.%u.%u.%u", (iterator & 0xFF000000)>>24, (iterator & 0x00FF0000)>>16, (iterator & 0x0000FF00)>>8, (iterator & 0x000000FF));
最后是叉子。
if(pid == -1){
perror("Error forking");
} else if(pid > 0){
//Parent does not write
close(pipes[1]);
//Status Message
printf("Pipe Output ...");
fflush(stdout);
//Parent, wait for child
//waitpid(pid, &status, 0);
//Save stdout from pipe
while((nbytes = read(pipes[0], buffer+count, buffsize-count)) != -1) count+=nbytes;
//Print out pipe
printf("hping3: (%.*s)\n", nbytes, buffer);
fflush(stdout);
wait(NULL);
close(pipes[0]);
} else {
//Child does not read
close(pipes[0]);
//Map stdout and stderr to write pipe-end
dup2(pipes[1], STDOUT_FILENO);
//dup2(pipes[1], STDERR_FILENO);
//Status Message
printf("Try to execute hping3 ...");
fflush(stdout);
//Child, exec hping with params
execv("/usr/sbin/hping3",params);
puts("never happens");
close(pipes[1]);
exit(1);
}
感谢您的帮助我遇到了这个问题,现在已经解决了12个小时的问题。
答案 0 :(得分:0)
此问题的工作解决方案是使用execve。 它也适用于execv。 我不得不用完整的路径调用sudo并将hping3及其params传递给sudo命令。
//Child, exec hping with params
execve("/usr/bin/sudo",params, NULL);