2 * linux/kernel/futex_compat.c
4 * Futex compatibililty routines.
6 * Copyright 2006, Red Hat, Inc., Ingo Molnar
9 #include <linux/linkage.h>
10 #include <linux/compat.h>
11 #include <linux/nsproxy.h>
12 #include <linux/futex.h>
14 #include <asm/uaccess.h>
18 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
21 fetch_robust_entry(compat_uptr_t
*uentry
, struct robust_list __user
**entry
,
22 compat_uptr_t __user
*head
, unsigned int *pi
)
24 if (get_user(*uentry
, head
))
27 *entry
= compat_ptr((*uentry
) & ~1);
28 *pi
= (unsigned int)(*uentry
) & 1;
33 static void __user
*futex_uaddr(struct robust_list __user
*entry
,
34 compat_long_t futex_offset
)
36 compat_uptr_t base
= ptr_to_compat(entry
);
37 void __user
*uaddr
= compat_ptr(base
+ futex_offset
);
43 * Walk curr->robust_list (very carefully, it's a userspace list!)
44 * and mark any locks found there dead, and notify any waiters.
46 * We silently return on any sign of list-walking problem.
48 void compat_exit_robust_list(struct task_struct
*curr
)
50 struct compat_robust_list_head __user
*head
= curr
->compat_robust_list
;
51 struct robust_list __user
*entry
, *next_entry
, *pending
;
52 unsigned int limit
= ROBUST_LIST_LIMIT
, pi
, pip
;
53 unsigned int uninitialized_var(next_pi
);
54 compat_uptr_t uentry
, next_uentry
, upending
;
55 compat_long_t futex_offset
;
58 if (!futex_cmpxchg_enabled
)
62 * Fetch the list head (which was registered earlier, via
63 * sys_set_robust_list()):
65 if (fetch_robust_entry(&uentry
, &entry
, &head
->list
.next
, &pi
))
68 * Fetch the relative futex offset:
70 if (get_user(futex_offset
, &head
->futex_offset
))
73 * Fetch any possibly pending lock-add first, and handle it
76 if (fetch_robust_entry(&upending
, &pending
,
77 &head
->list_op_pending
, &pip
))
80 next_entry
= NULL
; /* avoid warning with gcc */
81 while (entry
!= (struct robust_list __user
*) &head
->list
) {
83 * Fetch the next entry in the list before calling
86 rc
= fetch_robust_entry(&next_uentry
, &next_entry
,
87 (compat_uptr_t __user
*)&entry
->next
, &next_pi
);
89 * A pending lock might already be on the list, so
90 * dont process it twice:
92 if (entry
!= pending
) {
93 void __user
*uaddr
= futex_uaddr(entry
, futex_offset
);
95 if (handle_futex_death(uaddr
, curr
, pi
))
100 uentry
= next_uentry
;
104 * Avoid excessively long or circular lists:
112 void __user
*uaddr
= futex_uaddr(pending
, futex_offset
);
114 handle_futex_death(uaddr
, curr
, pip
);
119 compat_sys_set_robust_list(struct compat_robust_list_head __user
*head
,
122 if (!futex_cmpxchg_enabled
)
125 if (unlikely(len
!= sizeof(*head
)))
128 current
->compat_robust_list
= head
;
134 compat_sys_get_robust_list(int pid
, compat_uptr_t __user
*head_ptr
,
135 compat_size_t __user
*len_ptr
)
137 struct compat_robust_list_head __user
*head
;
139 const struct cred
*cred
= current_cred(), *pcred
;
141 if (!futex_cmpxchg_enabled
)
145 head
= current
->compat_robust_list
;
147 struct task_struct
*p
;
151 p
= find_task_by_vpid(pid
);
155 pcred
= __task_cred(p
);
156 if (cred
->euid
!= pcred
->euid
&&
157 cred
->euid
!= pcred
->uid
&&
158 !capable(CAP_SYS_PTRACE
))
160 head
= p
->compat_robust_list
;
164 if (put_user(sizeof(*head
), len_ptr
))
166 return put_user(ptr_to_compat(head
), head_ptr
);
174 asmlinkage
long compat_sys_futex(u32 __user
*uaddr
, int op
, u32 val
,
175 struct compat_timespec __user
*utime
, u32 __user
*uaddr2
,
179 ktime_t t
, *tp
= NULL
;
181 int cmd
= op
& FUTEX_CMD_MASK
;
183 if (utime
&& (cmd
== FUTEX_WAIT
|| cmd
== FUTEX_LOCK_PI
||
184 cmd
== FUTEX_WAIT_BITSET
||
185 cmd
== FUTEX_WAIT_REQUEUE_PI
)) {
186 if (get_compat_timespec(&ts
, utime
))
188 if (!timespec_valid(&ts
))
191 t
= timespec_to_ktime(ts
);
192 if (cmd
== FUTEX_WAIT
)
193 t
= ktime_add_safe(ktime_get(), t
);
196 if (cmd
== FUTEX_REQUEUE
|| cmd
== FUTEX_CMP_REQUEUE
||
197 cmd
== FUTEX_CMP_REQUEUE_PI
|| cmd
== FUTEX_WAKE_OP
)
198 val2
= (int) (unsigned long) utime
;
200 return do_futex(uaddr
, op
, val
, tp
, uaddr2
, val2
, val3
);