Add option to enable global namespace (#497)

Disabled by default.
To enable/disable use terminal with root.

To enable:
echo 1 > /sys/module/ksu/parameters/global_namespace_enable

To disable:
echo 0 > /sys/module/ksu/parameters/global_namespace_enable

Value will be reset to 0 (disabled) on reboot.
This commit is contained in:
Hikari-no-Tenshi
2023-05-16 06:39:48 +03:00
committed by GitHub
parent d4680c6de7
commit f81caf75a9
2 changed files with 8 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
#include "linux/fs.h"
#include "linux/module.h"
#include "linux/moduleparam.h"
#include "linux/workqueue.h"
#include "allowlist.h"
@@ -9,6 +10,9 @@
#include "ksu.h"
#include "uid_observer.h"
int global_namespace_enable;
module_param(global_namespace_enable, int, S_IRUSR | S_IWUSR);
static struct workqueue_struct *ksu_workqueue;
bool ksu_queue_work(struct work_struct *work)