diff options
author | Tao Bao <tbao@google.com> | 2019-03-01 03:29:35 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-03-01 03:29:35 +0100 |
commit | a04a7d89c29ee2a99f8fdfe25920b873735ef230 (patch) | |
tree | 7bd331194255fd7403b15dc1a65b42ebf703b71d /recovery_main.cpp | |
parent | Merge "Updater updater_sample/README.md - build instructions." (diff) | |
parent | Merge "Use android::base::Pipe." (diff) | |
download | android_bootable_recovery-a04a7d89c29ee2a99f8fdfe25920b873735ef230.tar android_bootable_recovery-a04a7d89c29ee2a99f8fdfe25920b873735ef230.tar.gz android_bootable_recovery-a04a7d89c29ee2a99f8fdfe25920b873735ef230.tar.bz2 android_bootable_recovery-a04a7d89c29ee2a99f8fdfe25920b873735ef230.tar.lz android_bootable_recovery-a04a7d89c29ee2a99f8fdfe25920b873735ef230.tar.xz android_bootable_recovery-a04a7d89c29ee2a99f8fdfe25920b873735ef230.tar.zst android_bootable_recovery-a04a7d89c29ee2a99f8fdfe25920b873735ef230.zip |
Diffstat (limited to 'recovery_main.cpp')
-rw-r--r-- | recovery_main.cpp | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/recovery_main.cpp b/recovery_main.cpp index 7fb46163e..935d69815 100644 --- a/recovery_main.cpp +++ b/recovery_main.cpp @@ -217,9 +217,10 @@ static void ListenRecoverySocket(RecoveryUI* ui, std::atomic<Device::BuiltinActi } static void redirect_stdio(const char* filename) { - int pipefd[2]; - if (pipe(pipefd) == -1) { - PLOG(ERROR) << "pipe failed"; + android::base::unique_fd pipe_read, pipe_write; + // Create a pipe that allows parent process sending logs over. + if (!android::base::Pipe(&pipe_read, &pipe_write)) { + PLOG(ERROR) << "Failed to create pipe for redirecting stdio"; // Fall back to traditional logging mode without timestamps. If these fail, there's not really // anywhere to complain... @@ -233,7 +234,7 @@ static void redirect_stdio(const char* filename) { pid_t pid = fork(); if (pid == -1) { - PLOG(ERROR) << "fork failed"; + PLOG(ERROR) << "Failed to fork for redirecting stdio"; // Fall back to traditional logging mode without timestamps. If these fail, there's not really // anywhere to complain... @@ -246,8 +247,8 @@ static void redirect_stdio(const char* filename) { } if (pid == 0) { - /// Close the unused write end. - close(pipefd[1]); + // Child process reads the incoming logs and doesn't write to the pipe. + pipe_write.reset(); auto start = std::chrono::steady_clock::now(); @@ -255,15 +256,13 @@ static void redirect_stdio(const char* filename) { FILE* log_fp = fopen(filename, "ae"); if (log_fp == nullptr) { PLOG(ERROR) << "fopen \"" << filename << "\" failed"; - close(pipefd[0]); _exit(EXIT_FAILURE); } - FILE* pipe_fp = fdopen(pipefd[0], "r"); + FILE* pipe_fp = android::base::Fdopen(std::move(pipe_read), "r"); if (pipe_fp == nullptr) { PLOG(ERROR) << "fdopen failed"; check_and_fclose(log_fp, filename); - close(pipefd[0]); _exit(EXIT_FAILURE); } @@ -283,25 +282,23 @@ static void redirect_stdio(const char* filename) { PLOG(ERROR) << "getline failed"; + fclose(pipe_fp); free(line); check_and_fclose(log_fp, filename); - close(pipefd[0]); _exit(EXIT_FAILURE); } else { // Redirect stdout/stderr to the logger process. Close the unused read end. - close(pipefd[0]); + pipe_read.reset(); setbuf(stdout, nullptr); setbuf(stderr, nullptr); - if (dup2(pipefd[1], STDOUT_FILENO) == -1) { + if (dup2(pipe_write.get(), STDOUT_FILENO) == -1) { PLOG(ERROR) << "dup2 stdout failed"; } - if (dup2(pipefd[1], STDERR_FILENO) == -1) { + if (dup2(pipe_write.get(), STDERR_FILENO) == -1) { PLOG(ERROR) << "dup2 stderr failed"; } - - close(pipefd[1]); } } |