kernel: pkg_observer: fix pre-4.12 kernel compilation issue (#182)

* Linux 4.12+
void fsnotify_init_mark(struct fsnotify_mark *mark,
			struct fsnotify_group *group)

* Linux <4.12
void fsnotify_init_mark(struct fsnotify_mark *mark,
			void (*free_mark)(struct fsnotify_mark *mark))

Tested-by: koyufox <koyufox@gmail.com>
Signed-off-by: Faris <rissu.ntk@gmail.com>
This commit is contained in:
Faris
2025-11-01 20:22:40 +07:00
committed by ShirkNeko
parent 7145fd537d
commit 0375058d41

View File

@@ -97,6 +97,7 @@ static const struct fsnotify_ops ksu_ops = {
#endif #endif
}; };
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
static int add_mark_on_inode(struct inode *inode, u32 mask, static int add_mark_on_inode(struct inode *inode, u32 mask,
struct fsnotify_mark **out) struct fsnotify_mark **out)
{ {
@@ -109,24 +110,43 @@ static int add_mark_on_inode(struct inode *inode, u32 mask,
fsnotify_init_mark(m, g); fsnotify_init_mark(m, g);
m->mask = mask; m->mask = mask;
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
if (fsnotify_add_inode_mark(m, inode, 0)) { if (fsnotify_add_inode_mark(m, inode, 0)) {
fsnotify_put_mark(m); fsnotify_put_mark(m);
return -EINVAL; return -EINVAL;
} }
#else /* TODO: Need more tests on k4.4 and k4.9! */
mutex_lock(&g->mark_mutex);
if (fsnotify_add_inode_mark(m, g, inode, 0)) {
fsnotify_put_mark(m);
mutex_unlock(&g->mark_mutex);
return -EINVAL;
}
mutex_unlock(&g->mark_mutex);
#endif
*out = m; *out = m;
return 0; return 0;
} }
#else
static void ksu_free_mark(struct fsnotify_mark *ksu_mark)
{
if (ksu_mark)
kfree(ksu_mark);
}
static int add_mark_on_inode(struct inode *inode, u32 mask,
struct fsnotify_mark **out)
{
struct fsnotify_mark *ksu_mark;
int ret;
ksu_mark = kzalloc(sizeof(*ksu_mark), GFP_KERNEL);
if (!ksu_mark)
return -ENOMEM;
fsnotify_init_mark(ksu_mark, ksu_free_mark);
ksu_mark->mask = mask;
ret = fsnotify_add_mark(ksu_mark, g, inode, NULL, 0);
if (ret < 0) {
fsnotify_put_mark(ksu_mark);
return ret;
}
*out = ksu_mark;
return 0;
}
#endif /* LINUX_VERSION_CODE >= 4.12 */
static int watch_one_dir(struct watch_dir *wd) static int watch_one_dir(struct watch_dir *wd)
{ {
@@ -167,8 +187,10 @@ static void unwatch_one_dir(struct watch_dir *wd)
} }
} }
static struct watch_dir g_watch = { .path = "/data/system", static struct watch_dir g_watch = {
.mask = MASK_SYSTEM }; .path = "/data/system",
.mask = MASK_SYSTEM
};
int ksu_observer_init(void) int ksu_observer_init(void)
{ {
@@ -183,7 +205,7 @@ int ksu_observer_init(void)
return PTR_ERR(g); return PTR_ERR(g);
ret = watch_one_dir(&g_watch); ret = watch_one_dir(&g_watch);
pr_info("observer init done\n"); pr_info("%s done.\n", __func__);
return 0; return 0;
} }
@@ -191,5 +213,5 @@ void ksu_observer_exit(void)
{ {
unwatch_one_dir(&g_watch); unwatch_one_dir(&g_watch);
fsnotify_put_group(g); fsnotify_put_group(g);
pr_info("observer exit done\n"); pr_info("%s: done.\n", __func__);
} }