Magisk/jni/daemon/log_monitor.c

46 lines
1.1 KiB
C
Raw Normal View History

2017-04-04 21:44:13 +02: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 21:23:09 +02:00
#include <limits.h>
2017-04-04 21:44:13 +02:00
#include <pthread.h>
2017-05-07 21:11:14 +02:00
#include <unistd.h>
2017-04-04 21:44:13 +02:00
2017-04-06 00:12:29 +02:00
#include "magisk.h"
2017-04-04 21:44:13 +02:00
#include "utils.h"
2017-04-14 21:23:09 +02:00
#include "daemon.h"
2017-04-04 21:44:13 +02:00
static void *logger_thread(void *args) {
2017-04-22 00:33:40 +02:00
// Setup error handler
err_handler = exit_thread;
2017-05-07 21:11:14 +02:00
char *buffer = xmalloc(PATH_MAX);
2017-05-03 19:13:04 +02:00
rename(LOGFILE, LASTLOG);
2017-05-07 21:11:14 +02:00
FILE *logfile = xfdopen(xopen(LOGFILE, O_WRONLY | O_CREAT | O_CLOEXEC | O_TRUNC, 0644), "w");
2017-04-04 21:44:13 +02:00
// Disable buffering
setbuf(logfile, NULL);
// Start logcat
2017-04-18 13:32:50 +02:00
char *const command[] = { "logcat", "-s", "Magisk", "-v", "time", NULL };
int fd;
run_command(&fd, "/system/bin/logcat", command);
2017-05-07 21:11:14 +02:00
while (fdgets(buffer, PATH_MAX, fd)) {
2017-04-14 21:23:09 +02:00
fprintf(logfile, "%s", buffer);
2017-04-04 21:44:13 +02:00
}
2017-05-07 21:11:14 +02:00
// Should never be here, but well...
free(buffer);
close(fd);
fclose(logfile);
2017-04-04 21:44:13 +02:00
return NULL;
}
2017-04-06 00:12:29 +02:00
/* Start a new thread to monitor logcat and dump to logfile */
2017-04-04 21:44:13 +02:00
void monitor_logs() {
2017-04-17 10:36:49 +02:00
pthread_t log_monitor_thread;
2017-04-21 18:54:08 +02:00
xpthread_create(&log_monitor_thread, NULL, logger_thread, NULL);
pthread_detach(log_monitor_thread);
2017-04-17 10:36:49 +02:00
}