次のコードは、シェルで実行すると期待どおりに動作します。
しかし、このプログラムをユーザーのシェルとして設定し、ホストに ssh してこのプログラムをシェルとして実行するread(0, &buf123, 1);
と、EIO (入出力エラー) が返されます。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
#include <regex.h>
#include <curl/curl.h>
#include <readline/readline.h>
int main() {
char *shell = "/bin/bash";
pid_t child;
if ((child = fork()) < 0) {
perror("vfork");
return;
}
if (child == 0) {
execl(shell, shell + 5, "-c", "exec /bin/bash --login", NULL);
perror("execl");
return;
}
wait(NULL);
char buf123[1024];
read(0, &buf123, 1);
printf("::%s::\n", buf123);
}
ただし、bash ではなくexecl(bash)
非対話型の bash またはその他のプログラムに変更すると、成功します。execl(bash -c "id")
read(0, &buf123, 1);
したがって、このエラーを再現するには、次の 2 つの条件を満たす必要があります。
1. execvl() an interactive bash(system() can also reproduce this error)
2. run as a user's shell using ssh
これを回避する理由と方法を理解するのを手伝ってくれる人はいますか?
strace
結果は次のとおりです。
wait4(-1, NULL, 0, NULL) = 2
--- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=2, si_status=0, si_utime=0, si_stime=0} ---
read(0, 0x7fff7a4c8cb0, 1) = -1 EIO (Input/output error)
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fcd281f3000
write(1, "::Xv\37(\315\177::\n", 11) = 11
exit_group(11) = ?
+++ exited with 11 +++
前もって感謝します!