blob: d49afb2395e5cab17dd85417c95741c60c12a4cf [file] [log] [blame]
Ingo Molnar34f192c2006-03-27 01:16:24 -08001/*
2 * linux/kernel/futex_compat.c
3 *
4 * Futex compatibililty routines.
5 *
6 * Copyright 2006, Red Hat, Inc., Ingo Molnar
7 */
8
9#include <linux/linkage.h>
10#include <linux/compat.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070011#include <linux/nsproxy.h>
Ingo Molnar34f192c2006-03-27 01:16:24 -080012#include <linux/futex.h>
13
14#include <asm/uaccess.h>
15
Ingo Molnare3f2dde2006-07-29 05:17:57 +020016
17/*
18 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
19 */
20static inline int
21fetch_robust_entry(compat_uptr_t *uentry, struct robust_list __user **entry,
Al Viroba46df92006-10-10 22:46:07 +010022 compat_uptr_t __user *head, int *pi)
Ingo Molnare3f2dde2006-07-29 05:17:57 +020023{
24 if (get_user(*uentry, head))
25 return -EFAULT;
26
27 *entry = compat_ptr((*uentry) & ~1);
28 *pi = (unsigned int)(*uentry) & 1;
29
30 return 0;
31}
32
Al Viro84816642008-03-29 03:07:58 +000033static void __user *futex_uaddr(struct robust_list __user *entry,
David Miller3c5fd9c72007-11-06 21:13:56 -080034 compat_long_t futex_offset)
35{
36 compat_uptr_t base = ptr_to_compat(entry);
37 void __user *uaddr = compat_ptr(base + futex_offset);
38
39 return uaddr;
40}
41
Ingo Molnar34f192c2006-03-27 01:16:24 -080042/*
43 * Walk curr->robust_list (very carefully, it's a userspace list!)
44 * and mark any locks found there dead, and notify any waiters.
45 *
46 * We silently return on any sign of list-walking problem.
47 */
48void compat_exit_robust_list(struct task_struct *curr)
49{
50 struct compat_robust_list_head __user *head = curr->compat_robust_list;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070051 struct robust_list __user *entry, *next_entry, *pending;
52 unsigned int limit = ROBUST_LIST_LIMIT, pi, next_pi, pip;
53 compat_uptr_t uentry, next_uentry, upending;
Ingo Molnar34f192c2006-03-27 01:16:24 -080054 compat_long_t futex_offset;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070055 int rc;
Ingo Molnar34f192c2006-03-27 01:16:24 -080056
Thomas Gleixnera0c1e902008-02-23 15:23:57 -080057 if (!futex_cmpxchg_enabled)
58 return;
59
Ingo Molnar34f192c2006-03-27 01:16:24 -080060 /*
61 * Fetch the list head (which was registered earlier, via
62 * sys_set_robust_list()):
63 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +020064 if (fetch_robust_entry(&uentry, &entry, &head->list.next, &pi))
Ingo Molnar34f192c2006-03-27 01:16:24 -080065 return;
Ingo Molnar34f192c2006-03-27 01:16:24 -080066 /*
67 * Fetch the relative futex offset:
68 */
69 if (get_user(futex_offset, &head->futex_offset))
70 return;
71 /*
72 * Fetch any possibly pending lock-add first, and handle it
73 * if it exists:
74 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +020075 if (fetch_robust_entry(&upending, &pending,
Thomas Gleixnerce2c6b52006-08-05 12:15:15 -070076 &head->list_op_pending, &pip))
Ingo Molnar34f192c2006-03-27 01:16:24 -080077 return;
Ingo Molnar34f192c2006-03-27 01:16:24 -080078
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070079 next_entry = NULL; /* avoid warning with gcc */
Arnd Bergmann179c85e2007-09-11 15:23:49 -070080 while (entry != (struct robust_list __user *) &head->list) {
Ingo Molnar34f192c2006-03-27 01:16:24 -080081 /*
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070082 * Fetch the next entry in the list before calling
83 * handle_futex_death:
84 */
85 rc = fetch_robust_entry(&next_uentry, &next_entry,
86 (compat_uptr_t __user *)&entry->next, &next_pi);
87 /*
Ingo Molnar34f192c2006-03-27 01:16:24 -080088 * A pending lock might already be on the list, so
89 * dont process it twice:
90 */
David Miller3c5fd9c72007-11-06 21:13:56 -080091 if (entry != pending) {
92 void __user *uaddr = futex_uaddr(entry, futex_offset);
Ingo Molnar34f192c2006-03-27 01:16:24 -080093
David Miller3c5fd9c72007-11-06 21:13:56 -080094 if (handle_futex_death(uaddr, curr, pi))
95 return;
96 }
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070097 if (rc)
Ingo Molnar34f192c2006-03-27 01:16:24 -080098 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070099 uentry = next_uentry;
100 entry = next_entry;
101 pi = next_pi;
Ingo Molnar34f192c2006-03-27 01:16:24 -0800102 /*
103 * Avoid excessively long or circular lists:
104 */
105 if (!--limit)
106 break;
107
108 cond_resched();
109 }
David Miller3c5fd9c72007-11-06 21:13:56 -0800110 if (pending) {
111 void __user *uaddr = futex_uaddr(pending, futex_offset);
112
113 handle_futex_death(uaddr, curr, pip);
114 }
Ingo Molnar34f192c2006-03-27 01:16:24 -0800115}
116
117asmlinkage long
118compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
119 compat_size_t len)
120{
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800121 if (!futex_cmpxchg_enabled)
122 return -ENOSYS;
123
Ingo Molnar34f192c2006-03-27 01:16:24 -0800124 if (unlikely(len != sizeof(*head)))
125 return -EINVAL;
126
127 current->compat_robust_list = head;
128
129 return 0;
130}
131
132asmlinkage long
Al Viroba46df92006-10-10 22:46:07 +0100133compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
Ingo Molnar34f192c2006-03-27 01:16:24 -0800134 compat_size_t __user *len_ptr)
135{
Al Viroba46df92006-10-10 22:46:07 +0100136 struct compat_robust_list_head __user *head;
Ingo Molnar34f192c2006-03-27 01:16:24 -0800137 unsigned long ret;
David Howellsc69e8d92008-11-14 10:39:19 +1100138 const struct cred *cred = current_cred(), *pcred;
Ingo Molnar34f192c2006-03-27 01:16:24 -0800139
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800140 if (!futex_cmpxchg_enabled)
141 return -ENOSYS;
142
Ingo Molnar34f192c2006-03-27 01:16:24 -0800143 if (!pid)
144 head = current->compat_robust_list;
145 else {
146 struct task_struct *p;
147
148 ret = -ESRCH;
Thomas Gleixnerf409adf2009-12-01 14:02:00 +0100149 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700150 p = find_task_by_vpid(pid);
Ingo Molnar34f192c2006-03-27 01:16:24 -0800151 if (!p)
152 goto err_unlock;
153 ret = -EPERM;
David Howellsc69e8d92008-11-14 10:39:19 +1100154 pcred = __task_cred(p);
155 if (cred->euid != pcred->euid &&
156 cred->euid != pcred->uid &&
David Howellsb6dff3e2008-11-14 10:39:16 +1100157 !capable(CAP_SYS_PTRACE))
Ingo Molnar34f192c2006-03-27 01:16:24 -0800158 goto err_unlock;
159 head = p->compat_robust_list;
Thomas Gleixnerf409adf2009-12-01 14:02:00 +0100160 rcu_read_unlock();
Ingo Molnar34f192c2006-03-27 01:16:24 -0800161 }
162
163 if (put_user(sizeof(*head), len_ptr))
164 return -EFAULT;
165 return put_user(ptr_to_compat(head), head_ptr);
166
167err_unlock:
Thomas Gleixnerf409adf2009-12-01 14:02:00 +0100168 rcu_read_unlock();
Ingo Molnar34f192c2006-03-27 01:16:24 -0800169
170 return ret;
171}
172
Ingo Molnar8f17d3a2006-03-27 01:16:27 -0800173asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
Ingo Molnar34f192c2006-03-27 01:16:24 -0800174 struct compat_timespec __user *utime, u32 __user *uaddr2,
Ingo Molnar8f17d3a2006-03-27 01:16:27 -0800175 u32 val3)
Ingo Molnar34f192c2006-03-27 01:16:24 -0800176{
Pierre Peifferc19384b2007-05-09 02:35:02 -0700177 struct timespec ts;
178 ktime_t t, *tp = NULL;
Ingo Molnar34f192c2006-03-27 01:16:24 -0800179 int val2 = 0;
Ulrich Drepperf0ede662007-06-01 00:46:41 -0700180 int cmd = op & FUTEX_CMD_MASK;
Ingo Molnar34f192c2006-03-27 01:16:24 -0800181
Thomas Gleixnercd689982008-02-01 17:45:14 +0100182 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
Dinakar Guniguntala4dc88022009-08-10 18:31:42 +0530183 cmd == FUTEX_WAIT_BITSET ||
184 cmd == FUTEX_WAIT_REQUEUE_PI)) {
Pierre Peifferc19384b2007-05-09 02:35:02 -0700185 if (get_compat_timespec(&ts, utime))
Ingo Molnar34f192c2006-03-27 01:16:24 -0800186 return -EFAULT;
Pierre Peifferc19384b2007-05-09 02:35:02 -0700187 if (!timespec_valid(&ts))
Thomas Gleixner9741ef962006-03-31 02:31:32 -0800188 return -EINVAL;
Pierre Peifferc19384b2007-05-09 02:35:02 -0700189
190 t = timespec_to_ktime(ts);
Ulrich Drepperf0ede662007-06-01 00:46:41 -0700191 if (cmd == FUTEX_WAIT)
Thomas Gleixner5a7780e2008-02-13 09:20:43 +0100192 t = ktime_add_safe(ktime_get(), t);
Pierre Peifferc19384b2007-05-09 02:35:02 -0700193 tp = &t;
Ingo Molnar34f192c2006-03-27 01:16:24 -0800194 }
Dinakar Guniguntala4dc88022009-08-10 18:31:42 +0530195 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
196 cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
Ingo Molnar34f192c2006-03-27 01:16:24 -0800197 val2 = (int) (unsigned long) utime;
198
Pierre Peifferc19384b2007-05-09 02:35:02 -0700199 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
Ingo Molnar34f192c2006-03-27 01:16:24 -0800200}