2017-04-04 19:44:13 +00:00
|
|
|
/* log_monitor.c - New thread to monitor logcat
|
|
|
|
*
|
|
|
|
* Open a new thread to call logcat and get logs with tag "Magisk"
|
|
|
|
* Also, write the logs to a log file for debugging purpose
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2017-04-14 19:23:09 +00:00
|
|
|
#include <limits.h>
|
2017-04-04 19:44:13 +00:00
|
|
|
#include <pthread.h>
|
2017-05-07 19:11:14 +00:00
|
|
|
#include <unistd.h>
|
2017-06-02 20:31:01 +00:00
|
|
|
#include <sys/wait.h>
|
2017-04-04 19:44:13 +00:00
|
|
|
|
2017-04-05 22:12:29 +00:00
|
|
|
#include "magisk.h"
|
2017-04-04 19:44:13 +00:00
|
|
|
#include "utils.h"
|
2017-04-14 19:23:09 +00:00
|
|
|
#include "daemon.h"
|
2017-04-04 19:44:13 +00:00
|
|
|
|
|
|
|
static void *logger_thread(void *args) {
|
2017-04-21 22:33:40 +00:00
|
|
|
// Setup error handler
|
|
|
|
err_handler = exit_thread;
|
|
|
|
|
2017-05-03 17:13:04 +00:00
|
|
|
rename(LOGFILE, LASTLOG);
|
2017-06-07 19:20:49 +00:00
|
|
|
int log_fd, log_pid;
|
|
|
|
|
|
|
|
log_fd = xopen(LOGFILE, O_WRONLY | O_CREAT | O_CLOEXEC | O_TRUNC, 0644);
|
2017-06-02 20:31:01 +00:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
// Start logcat
|
2017-06-07 19:20:49 +00:00
|
|
|
char *const command[] = { "logcat", "-s", "Magisk", "-v", "thread", NULL };
|
2017-08-01 07:34:16 +00:00
|
|
|
log_pid = run_command(0, &log_fd, NULL, "/system/bin/logcat", command);
|
2017-07-02 15:04:57 +00:00
|
|
|
if (log_pid > 0)
|
|
|
|
waitpid(log_pid, NULL, 0);
|
2017-06-07 19:20:49 +00:00
|
|
|
// For some reason it went here, clear buffer and restart
|
2017-07-15 19:54:06 +00:00
|
|
|
char *const restart[] = { "logcat", "-c", NULL };
|
2017-08-01 07:34:16 +00:00
|
|
|
log_pid = run_command(0, NULL, NULL, "/system/bin/logcat", restart);
|
2017-07-15 19:54:06 +00:00
|
|
|
if (log_pid > 0)
|
|
|
|
waitpid(log_pid, NULL, 0);
|
2017-04-04 19:44:13 +00:00
|
|
|
}
|
2017-06-02 20:31:01 +00:00
|
|
|
|
2017-05-07 19:11:14 +00:00
|
|
|
// Should never be here, but well...
|
2017-04-04 19:44:13 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-04-05 22:12:29 +00:00
|
|
|
/* Start a new thread to monitor logcat and dump to logfile */
|
2017-04-04 19:44:13 +00:00
|
|
|
void monitor_logs() {
|
2017-06-07 19:20:49 +00:00
|
|
|
pthread_t thread;
|
|
|
|
xpthread_create(&thread, NULL, logger_thread, NULL);
|
|
|
|
pthread_detach(thread);
|
2017-04-17 08:36:49 +00:00
|
|
|
}
|