1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kernel.h>
3 #include <linux/syscalls.h>
4 #include <linux/fdtable.h>
5 #include <linux/string.h>
6 #include <linux/random.h>
7 #include <linux/module.h>
8 #include <linux/ptrace.h>
9 #include <linux/init.h>
10 #include <linux/errno.h>
11 #include <linux/cache.h>
12 #include <linux/bug.h>
13 #include <linux/err.h>
14 #include <linux/kcmp.h>
15 #include <linux/capability.h>
16 #include <linux/list.h>
17 #include <linux/eventpoll.h>
18 #include <linux/file.h>
20 #include <asm/unistd.h>
23 * We don't expose the real in-memory order of objects for security reasons.
24 * But still the comparison results should be suitable for sorting. So we
25 * obfuscate kernel pointers values and compare the production instead.
27 * The obfuscation is done in two steps. First we xor the kernel pointer with
28 * a random value, which puts pointer into a new position in a reordered space.
29 * Secondly we multiply the xor production with a large odd random number to
30 * permute its bits even more (the odd multiplier guarantees that the product
31 * is unique ever after the high bits are truncated, since any odd number is
32 * relative prime to 2^n).
34 * Note also that the obfuscation itself is invisible to userspace and if needed
35 * it can be changed to an alternate scheme.
37 static unsigned long cookies[KCMP_TYPES][2] __read_mostly;
39 static long kptr_obfuscate(long v, int type)
41 return (v ^ cookies[type][0]) * cookies[type][1];
45 * 0 - equal, i.e. v1 = v2
46 * 1 - less than, i.e. v1 < v2
47 * 2 - greater than, i.e. v1 > v2
48 * 3 - not equal but ordering unavailable (reserved for future)
50 static int kcmp_ptr(void *v1, void *v2, enum kcmp_type type)
54 t1 = kptr_obfuscate((long)v1, type);
55 t2 = kptr_obfuscate((long)v2, type);
57 return (t1 < t2) | ((t1 > t2) << 1);
60 /* The caller must have pinned the task */
62 get_file_raw_ptr(struct task_struct *task, unsigned int idx)
64 struct file *file = NULL;
70 file = fcheck_files(task->files, idx);
78 static void kcmp_unlock(struct mutex *m1, struct mutex *m2)
85 static int kcmp_lock(struct mutex *m1, struct mutex *m2)
92 err = mutex_lock_killable(m1);
93 if (!err && likely(m1 != m2)) {
94 err = mutex_lock_killable_nested(m2, SINGLE_DEPTH_NESTING);
103 static int kcmp_epoll_target(struct task_struct *task1,
104 struct task_struct *task2,
106 struct kcmp_epoll_slot __user *uslot)
108 struct file *filp, *filp_epoll, *filp_tgt;
109 struct kcmp_epoll_slot slot;
110 struct files_struct *files;
112 if (copy_from_user(&slot, uslot, sizeof(slot)))
115 filp = get_file_raw_ptr(task1, idx1);
119 files = get_files_struct(task2);
123 spin_lock(&files->file_lock);
124 filp_epoll = fcheck_files(files, slot.efd);
126 get_file(filp_epoll);
128 filp_tgt = ERR_PTR(-EBADF);
129 spin_unlock(&files->file_lock);
130 put_files_struct(files);
133 filp_tgt = get_epoll_tfile_raw_ptr(filp_epoll, slot.tfd, slot.toff);
137 if (IS_ERR(filp_tgt))
138 return PTR_ERR(filp_tgt);
140 return kcmp_ptr(filp, filp_tgt, KCMP_FILE);
143 static int kcmp_epoll_target(struct task_struct *task1,
144 struct task_struct *task2,
146 struct kcmp_epoll_slot __user *uslot)
152 SYSCALL_DEFINE5(kcmp, pid_t, pid1, pid_t, pid2, int, type,
153 unsigned long, idx1, unsigned long, idx2)
155 struct task_struct *task1, *task2;
161 * Tasks are looked up in caller's PID namespace only.
163 task1 = find_task_by_vpid(pid1);
164 task2 = find_task_by_vpid(pid2);
165 if (!task1 || !task2)
168 get_task_struct(task1);
169 get_task_struct(task2);
174 * One should have enough rights to inspect task details.
176 ret = kcmp_lock(&task1->signal->cred_guard_mutex,
177 &task2->signal->cred_guard_mutex);
180 if (!ptrace_may_access(task1, PTRACE_MODE_READ_REALCREDS) ||
181 !ptrace_may_access(task2, PTRACE_MODE_READ_REALCREDS)) {
188 struct file *filp1, *filp2;
190 filp1 = get_file_raw_ptr(task1, idx1);
191 filp2 = get_file_raw_ptr(task2, idx2);
194 ret = kcmp_ptr(filp1, filp2, KCMP_FILE);
200 ret = kcmp_ptr(task1->mm, task2->mm, KCMP_VM);
203 ret = kcmp_ptr(task1->files, task2->files, KCMP_FILES);
206 ret = kcmp_ptr(task1->fs, task2->fs, KCMP_FS);
209 ret = kcmp_ptr(task1->sighand, task2->sighand, KCMP_SIGHAND);
212 ret = kcmp_ptr(task1->io_context, task2->io_context, KCMP_IO);
215 #ifdef CONFIG_SYSVIPC
216 ret = kcmp_ptr(task1->sysvsem.undo_list,
217 task2->sysvsem.undo_list,
224 ret = kcmp_epoll_target(task1, task2, idx1, (void *)idx2);
232 kcmp_unlock(&task1->signal->cred_guard_mutex,
233 &task2->signal->cred_guard_mutex);
235 put_task_struct(task1);
236 put_task_struct(task2);
245 static __init int kcmp_cookies_init(void)
249 get_random_bytes(cookies, sizeof(cookies));
251 for (i = 0; i < KCMP_TYPES; i++)
252 cookies[i][1] |= (~(~0UL >> 1) | 1);
256 arch_initcall(kcmp_cookies_init);