1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
|
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef FRAMEWORK_NATIVE_CMD_DUMPSTATE_H_
#define FRAMEWORK_NATIVE_CMD_DUMPSTATE_H_
#include <time.h>
#include <unistd.h>
#include <stdbool.h>
#include <stdio.h>
#include <string>
#include <vector>
#include <aidl/android/hardware/dumpstate/IDumpstateDevice.h>
#include <android-base/macros.h>
#include <android-base/unique_fd.h>
#include <android/hardware/dumpstate/1.1/types.h>
#include <android/os/BnIncidentAuthListener.h>
#include <android/os/IDumpstate.h>
#include <android/os/IDumpstateListener.h>
#include <utils/StrongPointer.h>
#include <ziparchive/zip_writer.h>
#include "DumpstateUtil.h"
#include "DumpPool.h"
#include "TaskQueue.h"
// TODO: move everything under this namespace
// TODO: and then remove explicitly android::os::dumpstate:: prefixes
namespace android {
namespace os {
struct DumpstateOptions;
namespace dumpstate {
class DumpstateTest;
class ProgressTest;
class ZippedBugReportStreamTest;
} // namespace dumpstate
} // namespace os
} // namespace android
class ZipWriter;
// TODO: remove once moved to HAL
#ifdef __cplusplus
extern "C" {
#endif
/*
* Helper class used to report how long it takes for a section to finish.
*
* Typical usage:
*
* DurationReporter duration_reporter(title);
*
*/
class DurationReporter {
public:
explicit DurationReporter(const std::string& title, bool logcat_only = false,
bool verbose = false, int duration_fd = STDOUT_FILENO);
~DurationReporter();
private:
std::string title_;
bool logcat_only_;
bool verbose_;
uint64_t started_;
int duration_fd_;
DISALLOW_COPY_AND_ASSIGN(DurationReporter);
};
/*
* Keeps track of current progress and estimated max, saving stats on file to tune up future runs.
*
* Each `dumpstate` section contributes to the total weight by an individual weight, so the overall
* progress can be calculated by dividing the estimate max progress by the current progress.
*
* The estimated max progress is initially set to a value (`kDefaultMax) defined empirically, but
* it's adjusted after each dumpstate run by storing the average duration in a file.
*
*/
class Progress {
friend class android::os::dumpstate::ProgressTest;
friend class android::os::dumpstate::DumpstateTest;
public:
/*
* Default estimation of the max duration of a bugreport generation.
*
* It does not need to match the exact sum of all sections, but ideally it should to be slight
* more than such sum: a value too high will cause the bugreport to finish before the user
* expected (for example, jumping from 70% to 100%), while a value too low will cause the
* progress to get stuck at an almost-finished value (like 99%) for a while.
*
* This constant is only used when the average duration from previous runs cannot be used.
*/
static const int kDefaultMax;
explicit Progress(const std::string& path = "");
// Gets the current progress.
int32_t Get() const;
// Gets the current estimated max progress.
int32_t GetMax() const;
// Gets the initial estimated max progress.
int32_t GetInitialMax() const;
// Increments progress (ignored if not positive).
// Returns `true` if the max progress increased as well.
bool Inc(int32_t delta);
// Persist the stats.
void Save();
void Dump(int fd, const std::string& prefix) const;
private:
Progress(int32_t initial_max, float growth_factor,
const std::string& path = ""); // Used by test cases.
Progress(int32_t initial_max, int32_t progress, float growth_factor); // Used by test cases.
void Load();
int32_t initial_max_;
int32_t progress_;
int32_t max_;
float growth_factor_;
int32_t n_runs_;
int32_t average_max_;
std::string path_;
};
/*
* List of supported zip format versions.
*
* See bugreport-format.md for more info.
*/
static std::string VERSION_CURRENT = "2.0";
/*
* "Alias" for the current version.
*/
static std::string VERSION_DEFAULT = "default";
/*
* Directory used by Dumpstate binary to keep its local files.
*/
static const std::string DUMPSTATE_DIRECTORY = "/bugreports";
/*
* Structure that contains the information of an open dump file.
*/
struct DumpData {
// Path of the file.
std::string name;
// Open file descriptor for the file.
android::base::unique_fd fd;
// Modification time of the file.
time_t mtime;
};
/*
* Main class driving a bugreport generation.
*
* Currently, it only contains variables that are accessed externally, but gradually the functions
* that are spread accross utils.cpp and dumpstate.cpp will be moved to it.
*/
class Dumpstate {
friend class android::os::dumpstate::DumpstateTest;
friend class android::os::dumpstate::ZippedBugReportStreamTest;
public:
enum RunStatus { OK, HELP, INVALID_INPUT, ERROR, USER_CONSENT_DENIED, USER_CONSENT_TIMED_OUT };
// The mode under which the bugreport should be run. Each mode encapsulates a few options.
enum BugreportMode {
BUGREPORT_FULL = android::os::IDumpstate::BUGREPORT_MODE_FULL,
BUGREPORT_INTERACTIVE = android::os::IDumpstate::BUGREPORT_MODE_INTERACTIVE,
BUGREPORT_REMOTE = android::os::IDumpstate::BUGREPORT_MODE_REMOTE,
BUGREPORT_WEAR = android::os::IDumpstate::BUGREPORT_MODE_WEAR,
BUGREPORT_TELEPHONY = android::os::IDumpstate::BUGREPORT_MODE_TELEPHONY,
BUGREPORT_WIFI = android::os::IDumpstate::BUGREPORT_MODE_WIFI,
BUGREPORT_DEFAULT = android::os::IDumpstate::BUGREPORT_MODE_DEFAULT
};
static android::os::dumpstate::CommandOptions DEFAULT_DUMPSYS;
static Dumpstate& GetInstance();
/* Initialize dumpstate fields before starting bugreport generation */
void Initialize();
/*
* Forks a command, waits for it to finish, and returns its status.
*
* |title| description of the command printed on `stdout` (or empty to skip
* description).
* |full_command| array containing the command (first entry) and its arguments.
* Must contain at least one element.
* |options| optional argument defining the command's behavior.
* |out_fd| A fd to support the DumpPool to output results to a temporary
* file. Using STDOUT_FILENO if it's not running in the parallel task.
*/
int RunCommand(const std::string& title, const std::vector<std::string>& fullCommand,
const android::os::dumpstate::CommandOptions& options =
android::os::dumpstate::CommandOptions::DEFAULT,
bool verbose_duration = false, int out_fd = STDOUT_FILENO);
/*
* Runs `dumpsys` with the given arguments, automatically setting its timeout
* (`-T` argument)
* according to the command options.
*
* |title| description of the command printed on `stdout` (or empty to skip
* description).
* |dumpsys_args| `dumpsys` arguments (except `-t`).
* |options| optional argument defining the command's behavior.
* |dumpsys_timeout| when > 0, defines the value passed to `dumpsys -T` (otherwise it uses the
* timeout from `options`)
* |out_fd| A fd to support the DumpPool to output results to a temporary
* file. Using STDOUT_FILENO if it's not running in the parallel task.
*/
void RunDumpsys(const std::string& title, const std::vector<std::string>& dumpsys_args,
const android::os::dumpstate::CommandOptions& options = DEFAULT_DUMPSYS,
long dumpsys_timeout_ms = 0, int out_fd = STDOUT_FILENO);
/*
* Prints the contents of a file.
*
* |title| description of the command printed on `stdout` (or empty to skip
* description).
* |path| location of the file to be dumped.
*/
int DumpFile(const std::string& title, const std::string& path);
/*
* Adds a new entry to the existing zip file.
* */
bool AddZipEntry(const std::string& entry_name, const std::string& entry_path);
/*
* Adds a new entry to the existing zip file.
*
* |entry_name| destination path of the new entry.
* |fd| file descriptor to read from.
* |timeout| timeout to terminate the read if not completed. Set
* value of 0s (default) to disable timeout.
*/
android::status_t AddZipEntryFromFd(const std::string& entry_name, int fd,
std::chrono::milliseconds timeout);
/*
* Adds a text entry to the existing zip file.
*/
bool AddTextZipEntry(const std::string& entry_name, const std::string& content);
/*
* Adds all files from a directory to the zipped bugreport file.
*/
void AddDir(const std::string& dir, bool recursive);
/*
* Takes a screenshot and save it to the given `path`.
*
* If `path` is empty, uses a standard path based on the bugreport name.
*/
void TakeScreenshot(const std::string& path = "");
/////////////////////////////////////////////////////////////////////
// TODO: members below should be private once refactor is finished //
/////////////////////////////////////////////////////////////////////
// TODO: temporary method until Dumpstate object is properly set
void SetProgress(std::unique_ptr<Progress> progress);
// Dumps Dalvik and native stack traces, sets the trace file location to path
// if it succeeded.
// Note that it returns early if user consent is denied with status USER_CONSENT_DENIED.
// Returns OK in all other cases.
RunStatus DumpTraces(const char** path);
/*
* |out_fd| A fd to support the DumpPool to output results to a temporary file.
* Dumpstate can pick up later and output to the bugreport. Using STDOUT_FILENO
* if it's not running in the parallel task.
*/
void DumpstateBoard(int out_fd = STDOUT_FILENO);
/*
* Updates the overall progress of the bugreport generation by the given weight increment.
*/
void UpdateProgress(int32_t delta);
/* Prints the dumpstate header on `stdout`. */
void PrintHeader() const;
/*
* Adds the temporary report to the existing .zip file, closes the .zip file, and removes the
* temporary file.
*/
bool FinishZipFile();
/* Constructs a full path inside directory with file name formatted using the given suffix. */
std::string GetPath(const std::string& directory, const std::string& suffix) const;
/* Constructs a full path inside bugreport_internal_dir_ with file name formatted using the
* given suffix. */
std::string GetPath(const std::string& suffix) const;
/* Returns true if the current version supports priority dump feature. */
bool CurrentVersionSupportsPriorityDumps() const;
struct DumpOptions;
/*
* Main entry point for running a complete bugreport.
*
* Initialize() dumpstate before calling this method.
*
*/
RunStatus Run(int32_t calling_uid, const std::string& calling_package);
RunStatus ParseCommandlineAndRun(int argc, char* argv[]);
/* Deletes in-progress files */
void Cancel();
/* Sets runtime options. */
void SetOptions(std::unique_ptr<DumpOptions> options);
/*
* Returns true if user consent is necessary and has been denied.
* Consent is only necessary if the caller has asked to copy over the bugreport to a file they
* provided.
*/
bool IsUserConsentDenied() const;
/*
* Returns true if dumpstate is called by bugreporting API
*/
bool CalledByApi() const;
/*
* Enqueues a task to the dumpstate's TaskQueue if the parallel run is enabled,
* otherwise invokes it immediately. The task adds file at path entry_path
* as a zip file entry with name entry_name. Unlinks entry_path when done.
*
* All enqueued tasks will be executed in the dumpstate's FinishZipFile method
* before the zip file is finished. Tasks will be cancelled in dumpstate's
* ShutdownDumpPool method if they have never been called.
*/
void EnqueueAddZipEntryAndCleanupIfNeeded(const std::string& entry_name,
const std::string& entry_path);
/*
* Structure to hold options that determine the behavior of dumpstate.
*/
struct DumpOptions {
bool do_vibrate = true;
// Writes bugreport zipped file to a socket.
bool stream_to_socket = false;
// Writes generation progress updates to a socket.
bool progress_updates_to_socket = false;
bool do_screenshot = false;
bool is_screenshot_copied = false;
bool is_remote_mode = false;
bool show_header_only = false;
bool telephony_only = false;
bool wifi_only = false;
// Trimmed-down version of dumpstate to only include whitelisted logs.
bool limited_only = false;
// Whether progress updates should be published.
bool do_progress_updates = false;
// this is used to derive dumpstate HAL bug report mode
// TODO(b/148168577) get rid of the AIDL values, replace them with the HAL values instead.
// The HAL is actually an API surface that can be validated, while the AIDL is not (@hide).
BugreportMode bugreport_mode = Dumpstate::BugreportMode::BUGREPORT_DEFAULT;
// File descriptor to output zip file. Takes precedence over out_dir.
android::base::unique_fd bugreport_fd;
// File descriptor to screenshot file.
android::base::unique_fd screenshot_fd;
// Custom output directory.
std::string out_dir;
// Bugreport mode of the bugreport as a string
std::string bugreport_mode_string;
// Command-line arguments as string
std::string args;
// Notification title and description
std::string notification_title;
std::string notification_description;
/* Initializes options from commandline arguments. */
RunStatus Initialize(int argc, char* argv[]);
/* Initializes options from the requested mode. */
void Initialize(BugreportMode bugreport_mode, const android::base::unique_fd& bugreport_fd,
const android::base::unique_fd& screenshot_fd,
bool is_screenshot_requested);
/* Returns true if the options set so far are consistent. */
bool ValidateOptions() const;
/* Returns if options specified require writing to custom file location */
bool OutputToCustomFile() {
// Custom location is only honored in limited mode.
return limited_only && !out_dir.empty() && bugreport_fd.get() == -1;
}
};
// TODO: initialize fields on constructor
// dumpstate id - unique after each device reboot.
uint32_t id_;
// dumpstate pid
pid_t pid_;
// Runtime options.
std::unique_ptr<DumpOptions> options_;
// Last progress that was sent to the listener [0-100].
int last_reported_percent_progress_ = 0;
// Whether it should take an screenshot earlier in the process.
bool do_early_screenshot_ = false;
// This is set to true when the trace snapshot request in the early call to
// MaybeSnapshotSystemTrace(). When this is true, the later stages of
// dumpstate will append the trace to the zip archive.
bool has_system_trace_ = false;
std::unique_ptr<Progress> progress_;
// When set, defines a socket file-descriptor use to report progress to bugreportz
// or to stream the zipped file to.
int control_socket_fd_ = -1;
// Bugreport format version;
std::string version_ = VERSION_CURRENT;
time_t now_;
// Base name (without suffix or extensions) of the bugreport files, typically
// `bugreport-BUILD_ID`.
std::string base_name_;
// Name is the suffix part of the bugreport files - it's typically the date,
// but it could be changed by the user..
std::string name_;
std::string bugreport_internal_dir_ = DUMPSTATE_DIRECTORY;
// Full path of the temporary file containing the bugreport, inside bugreport_internal_dir_.
// At the very end this file is pulled into the zip file.
std::string tmp_path_;
// Full path of the file containing the dumpstate logs, inside bugreport_internal_dir_.
// This is useful for debugging.
std::string log_path_;
// Full path of the bugreport zip file inside bugreport_internal_dir_.
std::string path_;
// Full path of the file containing the screenshot (when requested).
std::string screenshot_path_;
// Pointer to the zipped file.
std::unique_ptr<FILE, int (*)(FILE*)> zip_file{nullptr, fclose};
// Pointer to the zip structure.
std::unique_ptr<ZipWriter> zip_writer_;
// Binder object listening to progress.
android::sp<android::os::IDumpstateListener> listener_;
// List of open tombstone dump files.
std::vector<DumpData> tombstone_data_;
// List of open ANR dump files.
std::vector<DumpData> anr_data_;
// List of open shutdown checkpoint files.
std::vector<DumpData> shutdown_checkpoints_;
// A thread pool to execute dump tasks simultaneously if the parallel run is enabled.
std::unique_ptr<android::os::dumpstate::DumpPool> dump_pool_;
// A task queue to collect adding zip entry tasks inside dump tasks if the
// parallel run is enabled.
std::unique_ptr<android::os::dumpstate::TaskQueue> zip_entry_tasks_;
// A callback to IncidentCompanion service, which checks user consent for sharing the
// bugreport with the calling app. If the user has not responded yet to the dialog it will
// be neither confirmed nor denied.
class ConsentCallback : public android::os::BnIncidentAuthListener {
public:
ConsentCallback();
android::binder::Status onReportApproved() override;
android::binder::Status onReportDenied() override;
enum ConsentResult { APPROVED, DENIED, UNAVAILABLE };
ConsentResult getResult();
// Returns the time since creating this listener
uint64_t getElapsedTimeMs() const;
private:
ConsentResult result_;
uint64_t start_time_;
std::mutex lock_;
};
private:
RunStatus RunInternal(int32_t calling_uid, const std::string& calling_package);
RunStatus DumpstateDefaultAfterCritical();
void MaybeTakeEarlyScreenshot();
void MaybeSnapshotSystemTrace();
void MaybeSnapshotWinTrace();
void onUiIntensiveBugreportDumpsFinished(int32_t calling_uid);
void MaybeCheckUserConsent(int32_t calling_uid, const std::string& calling_package);
// Removes the in progress files output files (tmp file, zip/txt file, screenshot),
// but leaves the log file alone.
void CleanupTmpFiles();
// Create the thread pool to enable the parallel run function.
void EnableParallelRunIfNeeded();
void ShutdownDumpPool();
RunStatus HandleUserConsentDenied();
// Copies bugreport artifacts over to the caller's directories provided there is user consent or
// called by Shell.
RunStatus CopyBugreportIfUserConsented(int32_t calling_uid);
std::function<int(const char *)> open_socket_fn_;
// Used by GetInstance() only.
explicit Dumpstate(const std::string& version = VERSION_CURRENT);
android::sp<ConsentCallback> consent_callback_;
std::recursive_mutex mutex_;
DISALLOW_COPY_AND_ASSIGN(Dumpstate);
};
// for_each_pid_func = void (*)(int, const char*);
// for_each_tid_func = void (*)(int, int, const char*);
typedef void(for_each_pid_func)(int, const char*);
typedef void(for_each_tid_func)(int, int, const char*);
/* saves the the contents of a file as a long */
int read_file_as_long(const char *path, long int *output);
/* prints the contents of the fd
* fd must have been opened with the flag O_NONBLOCK.
*/
int dump_file_from_fd(const char *title, const char *path, int fd);
/* calls skip to gate calling dump_from_fd recursively
* in the specified directory. dump_from_fd defaults to
* dump_file_from_fd above when set to NULL. skip defaults
* to false when set to NULL. dump_from_fd will always be
* called with title NULL.
*/
int dump_files(const std::string& title, const char* dir, bool (*skip)(const char* path),
int (*dump_from_fd)(const char* title, const char* path, int fd));
/*
* Redirects 'redirect' to a file indicated by 'path', truncating it.
*
* Returns true if redirect succeeds.
*/
bool redirect_to_file(FILE* redirect, char* path);
/*
* Redirects 'redirect' to an existing file indicated by 'path', appending it.
*
* Returns true if redirect succeeds.
*/
bool redirect_to_existing_file(FILE* redirect, char* path);
/* create leading directories, if necessary */
void create_parent_dirs(const char *path);
/* for each process in the system, run the specified function */
void for_each_pid(for_each_pid_func func, const char *header);
/* for each thread in the system, run the specified function */
void for_each_tid(for_each_tid_func func, const char *header);
/* Displays a blocked processes in-kernel wait channel */
void show_wchan(int pid, int tid, const char *name);
/* Displays a processes times */
void show_showtime(int pid, const char *name);
/* Gets the dmesg output for the kernel */
void do_dmesg();
/* Prints the contents of all the routing tables, both IPv4 and IPv6. */
void dump_route_tables();
/* Dump subdirectories of cgroupfs if the corresponding process is frozen */
void dump_frozen_cgroupfs();
/* Play a sound via Stagefright */
void play_sound(const char *path);
/* Checks if a given path is a directory. */
bool is_dir(const char* pathname);
/** Gets the last modification time of a file, or default time if file is not found. */
time_t get_mtime(int fd, time_t default_mtime);
/** Gets command-line arguments. */
void format_args(int argc, const char *argv[], std::string *args);
/** Main entry point for dumpstate. */
int run_main(int argc, char* argv[]);
#ifdef __cplusplus
}
#endif
#endif /* FRAMEWORK_NATIVE_CMD_DUMPSTATE_H_ */
|