Magisk/jni/daemon/log_monitor.c

35 lines
913 B
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-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-14 21:23:09 +02:00
char buffer[PATH_MAX];
// rename("/cache/magisk.log", "/cache/last_magisk.log");
// FILE *logfile = xfopen("/cache/magisk_test.log", "w");
FILE *logfile = xfopen("/cache/magisk.log", "w");
2017-04-04 21:44:13 +02:00
// Disable buffering
setbuf(logfile, NULL);
// Start logcat
FILE *p = popen("logcat -s Magisk", "r");
2017-04-14 21:23:09 +02:00
while (fgets(buffer, sizeof(buffer), p)) {
fprintf(logfile, "%s", buffer);
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() {
pthread_t log_monitor;
pthread_create(&log_monitor, NULL, logger_thread, NULL);
}