Skip to content

Commit 74994fe

Browse files
committed
address concerns
/** * d_path - return the path of a dentry * @path: path to report * @buf: buffer to return value in * @buflen: buffer length * * Convert a dentry into an ASCII path name. If the entry has been deleted * the string " (deleted)" is appended. Note that this is ambiguous. * * Returns a pointer into the buffer or an error code if the path was * too long. Note: Callers should use the returned pointer, not the passed * in buffer, to use the name! The implementation often starts at an offset * into the buffer, and may leave 0 bytes at the start. * * "buflen" should be positive. */
1 parent 152aeb7 commit 74994fe

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

kernel/core_hook.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -704,10 +704,13 @@ static int ksu_task_fix_setuid(struct cred *new, const struct cred *old,
704704
static int ksu_sb_mount(const char *dev_name, const struct path *path,
705705
const char *type, unsigned long flags, void *data)
706706
{
707-
char buf[256];
707+
// 384 is what throne_tracker uses, something sensible even for /data/app
708+
// we can pattern match revanced mounts even.
709+
// we are not really interested on mountpoints that are longer than that
710+
char buf[384];
708711
char *dir_name = d_path(path, buf, sizeof(buf));
709-
710-
if (dir_name)
712+
713+
if (dir_name && dir_name != buf)
711714
return ksu_mount_monitor(dev_name, dir_name, type);
712715
else
713716
return 0;

0 commit comments

Comments
 (0)