Android dumpstateツール解析


Frameworks/base/cmds/bugreport
bugreport:dumpstatusサービスを開始し、socket接続で情報を読み取り、stdoutパイプに保持します.
frameworks/native/cmds/dumpstatus
dumpstatus:androidの関連情報、カーネル、プロセス、関連情報の主な実現場所.僕らは
frameworks/native/cmds/dumpysy
dumpsys:androidサービスプロセスの各情報、例えばdumpsys mediaを取得する.audio_义齿
dumpstateは主に情報を取得します.
1,基本情報,例えばバージョン情報,メモリ基本情報,cpu基本情報,ハードウェア情報など
2,システムロゴ
3,ネットワーク情報,ルーティング情報,ネットワークスクラップ情報
4,panic情報
5、ロックの使用情報
6,プロセス情報
7,binder情報
8、アプリケーションのインストール情報
9、ディスクの使用状況
10、すべてのactivity、services情報
11,properties情報等
フェナシdumpstateツールコードにより,androidで過去に様々な情報を効果的に理解し,自分に必要な情報を的確に取得することができる.linuxの上層部がシステムに対して
情報は管理と統計を行います!
情報チャネルを取得するには、次の手順に従います.
1,cat proc各ノードが希望情報を取得する
2,property_get各属性の情報
3,run_commendはシステムコマンドを実行し、必要な情報を取得します.主にこのような方法です
4,dumpsysコマンド
次に、関数の実装ファイルを添付します.
frameworks/native/cmds/dumpstate/dumpstate.cファイル:
//          
	static void dumpstate() {
	    time_t now = time(NULL);//    
	    char build[PROPERTY_VALUE_MAX], fingerprint[PROPERTY_VALUE_MAX];
	    char radio[PROPERTY_VALUE_MAX], bootloader[PROPERTY_VALUE_MAX];
	    char network[PROPERTY_VALUE_MAX], date[80];
	    char build_type[PROPERTY_VALUE_MAX];
	       
	//      
	    property_get("ro.build.display.id", build, "(unknown)");
	    property_get("ro.build.fingerprint", fingerprint, "(unknown)");
	    property_get("ro.build.type", build_type, "(unknown)");
	    property_get("ro.baseband", radio, "(unknown)");
	    property_get("ro.bootloader", bootloader, "(unknown)");
	    property_get("gsm.operator.alpha", network, "(unknown)");
	    strftime(date, sizeof(date), "%Y-%m-%d %H:%M:%S", localtime(&now));
	
	    printf("========================================================
"); printf("== dumpstate: %s
", date); printf("========================================================
"); printf("
"); printf("Build: %s
", build); printf("Bootloader: %s
", bootloader); printf("Radio: %s
", radio); printf("Network: %s
", network); printf("Kernel: "); // dump_file(NULL, "/proc/version"); printf("Command line: %s
", strtok(cmdline_buf, "
")); printf("
"); // : , run_command("UPTIME", 10, "uptime", NULL); // dump_file("MEMORY INFO", "/proc/meminfo"); //CPU run_command("CPU INFO", 10, "top", "-n", "1", "-d", "1", "-m", "30", "-t", NULL); // xbin run_command("PROCRANK", 20, "procrank", NULL); // dump_file("VIRTUAL MEMORY STATS", "/proc/vmstat"); dump_file("VMALLOC INFO", "/proc/vmallocinfo"); dump_file("SLAB INFO", "/proc/slabinfo"); dump_file("ZONEINFO", "/proc/zoneinfo"); dump_file("PAGETYPEINFO", "/proc/pagetypeinfo"); dump_file("BUDDYINFO", "/proc/buddyinfo"); if (screenshot_path[0]) { LOGI("taking screenshot
"); run_command(NULL, 5, "su", "root", "screenshot", screenshot_path, NULL); LOGI("wrote screenshot: %s
", screenshot_path); } // log run_command("SYSTEM LOG", 20, "logcat", "-v", "threadtime", "-d", "*:v", NULL); /* show the traces we collected in main(), if that was done */ if (dump_traces_path != NULL) { dump_file("VM TRACES JUST NOW", dump_traces_path); } /* only show ANR traces if they're less than 15 minutes old */ struct stat st; char anr_traces_path[PATH_MAX]; property_get("dalvik.vm.stack-trace-file", anr_traces_path, ""); if (!anr_traces_path[0]) { printf("*** NO VM TRACES FILE DEFINED (dalvik.vm.stack-trace-file)

"); } else if (stat(anr_traces_path, &st)) { printf("*** NO ANR VM TRACES FILE (%s): %s

", anr_traces_path, strerror(errno)); } else { dump_file("VM TRACES AT LAST ANR", anr_traces_path); } // dump_file("EVENT LOG TAGS", "/etc/event-log-tags"); run_command("EVENT LOG", 20, "logcat", "-b", "events", "-v", "threadtime", "-d", "*:v", NULL); run_command("RADIO LOG", 20, "logcat", "-b", "radio", "-v", "threadtime", "-d", "*:v", NULL); //netcfg run_command("NETWORK INTERFACES", 10, "su", "root", "netcfg", NULL); dump_file("NETWORK DEV INFO", "/proc/net/dev"); dump_file("QTAGUID NETWORK INTERFACES INFO", "/proc/net/xt_qtaguid/iface_stat_all"); dump_file("QTAGUID CTRL INFO", "/proc/net/xt_qtaguid/ctrl"); run_command("QTAGUID STATS INFO", 10, "su", "root", "cat", "/proc/net/xt_qtaguid/stats", NULL); // dump_file("NETWORK ROUTES", "/proc/net/route"); dump_file("NETWORK ROUTES IPV6", "/proc/net/ipv6_route"); run_command("IP RULES", 10, "ip", "rule", "show", NULL); run_command("IP RULES v6", 10, "ip", "-6", "rule", "show", NULL); run_command("ROUTE TABLE 60", 10, "ip", "route", "show", "table", "60", NULL); run_command("ROUTE TABLE 61 v6", 10, "ip", "-6", "route", "show", "table", "60", NULL); run_command("ROUTE TABLE 61", 10, "ip", "route", "show", "table", "61", NULL); run_command("ROUTE TABLE 61 v6", 10, "ip", "-6", "route", "show", "table", "61", NULL); dump_file("ARP CACHE", "/proc/net/arp"); run_command("IPTABLES", 10, "su", "root", "iptables", "-L", "-nvx", NULL); run_command("IP6TABLES", 10, "su", "root", "ip6tables", "-L", "-nvx", NULL); run_command("IPTABLE NAT", 10, "su", "root", "iptables", "-t", "nat", "-L", "-n", NULL); run_command("IPT6ABLE NAT", 10, "su", "root", "ip6tables", "-t", "nat", "-L", "-n", NULL); run_command("WIFI NETWORKS", 20, "su", "root", "wpa_cli", "list_networks", NULL); property_get("dhcp.wlan0.gateway", network, ""); if (network[0]) run_command("PING GATEWAY", 10, "su", "root", "ping", "-c", "3", "-i", ".5", network, NULL); property_get("dhcp.wlan0.dns1", network, ""); if (network[0]) run_command("PING DNS1", 10, "su", "root", "ping", "-c", "3", "-i", ".5", network, NULL); property_get("dhcp.wlan0.dns2", network, ""); if (network[0]) run_command("PING DNS2", 10, "su", "root", "ping", "-c", "3", "-i", ".5", network, NULL); #ifdef FWDUMP_bcm4329 run_command("DUMP WIFI STATUS", 20, "su", "root", "dhdutil", "-i", "wlan0", "dump", NULL); run_command("DUMP WIFI INTERNAL COUNTERS", 20, "su", "root", "wlutil", "counters", NULL); #endif // char ril_dumpstate_timeout[PROPERTY_VALUE_MAX] = {0}; property_get("ril.dumpstate.timeout", ril_dumpstate_timeout, "30"); if (strnlen(ril_dumpstate_timeout, PROPERTY_VALUE_MAX - 1) > 0) { if (0 == strncmp(build_type, "user", PROPERTY_VALUE_MAX - 1)) { // su does not exist on user builds, so try running without it. // This way any implementations of vril-dump that do not require // root can run on user builds. run_command("DUMP VENDOR RIL LOGS", atoi(ril_dumpstate_timeout), "vril-dump", NULL); } else { run_command("DUMP VENDOR RIL LOGS", atoi(ril_dumpstate_timeout), "su", "root", "vril-dump", NULL); } } // properties print_properties(); // run_command("KERNEL LOG", 20, "dmesg", NULL); // dump_file("KERNEL WAKELOCKS", "/proc/wakelocks"); // cpu dump_file("KERNEL CPUFREQ", "/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state"); run_command("VOLD DUMP", 10, "vdc", "dump", NULL); run_command("SECURE CONTAINERS", 10, "vdc", "asec", "list", NULL); // run_command("PROCESSES", 10, "ps", "-P", NULL); run_command("PROCESSES AND THREADS", 10, "ps", "-t", "-p", "-P", NULL); run_command("LIBRANK", 10, "librank", NULL); //BINDER dump_file("BINDER FAILED TRANSACTION LOG", "/sys/kernel/debug/binder/failed_transaction_log"); dump_file("BINDER TRANSACTION LOG", "/sys/kernel/debug/binder/transaction_log"); dump_file("BINDER TRANSACTIONS", "/sys/kernel/debug/binder/transactions"); dump_file("BINDER STATS", "/sys/kernel/debug/binder/stats"); dump_file("BINDER STATE", "/sys/kernel/debug/binder/state"); // run_command("FILESYSTEMS & FREE SPACE", 10, "su", "root", "df", NULL); // dump_file("PACKAGE SETTINGS", "/data/system/packages.xml"); dump_file("PACKAGE UID ERRORS", "/data/system/uiderrors.txt"); dump_file("LAST KMSG", "/proc/last_kmsg"); run_command("LAST RADIO LOG", 10, "parse_radio_log", "/proc/last_radio_log", NULL); //panic dump_file("LAST PANIC CONSOLE", "/data/dontpanic/apanic_console"); dump_file("LAST PANIC THREADS", "/data/dontpanic/apanic_threads"); for_each_pid(show_wchan, "BLOCKED PROCESS WAIT-CHANNELS"); printf("------ BACKLIGHTS ------
"); printf("LCD brightness="); dump_file(NULL, "/sys/class/leds/lcd-backlight/brightness"); printf("Button brightness="); dump_file(NULL, "/sys/class/leds/button-backlight/brightness"); printf("Keyboard brightness="); dump_file(NULL, "/sys/class/leds/keyboard-backlight/brightness"); printf("ALS mode="); dump_file(NULL, "/sys/class/leds/lcd-backlight/als"); printf("LCD driver registers:
"); dump_file(NULL, "/sys/class/leds/lcd-backlight/registers"); printf("
"); run_command("LIST OF OPEN FILES", 10, "su", "root", "lsof", NULL); for_each_pid(do_showmap, "SMAPS OF ALL PROCESSES"); #ifdef BOARD_HAS_DUMPSTATE printf("========================================================
"); printf("== Board
"); printf("========================================================
"); dumpstate_board(); printf("
"); #endif printf("========================================================
"); printf("== Android Framework Services
"); printf("========================================================
"); /* the full dumpsys is starting to take a long time, so we need to increase its timeout. we really need to do the timeouts in dumpsys itself... */ run_command("DUMPSYS", 60, "dumpsys", NULL); printf("========================================================
"); printf("== Running Application Activities
"); printf("========================================================
"); run_command("APP ACTIVITIES", 30, "dumpsys", "activity", "all", NULL); printf("========================================================
"); printf("== Running Application Services
"); printf("========================================================
"); // dumpsys activity services run_command("APP SERVICES", 30, "dumpsys", "activity", "service", "all", NULL); printf("========================================================
"); printf("== dumpstate: done
"); printf("========================================================
"); }

コミュニケーションへようこそ:[email protected]