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/futex.h>
13 #include <asm/uaccess.h>
17 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
20 fetch_robust_entry(compat_uptr_t
*uentry
, struct robust_list __user
**entry
,
21 compat_uptr_t __user
*head
, int *pi
)
23 if (get_user(*uentry
, head
))
26 *entry
= compat_ptr((*uentry
) & ~1);
27 *pi
= (unsigned int)(*uentry
) & 1;
33 * Walk curr->robust_list (very carefully, it's a userspace list!)
34 * and mark any locks found there dead, and notify any waiters.
36 * We silently return on any sign of list-walking problem.
38 void compat_exit_robust_list(struct task_struct
*curr
)
40 struct compat_robust_list_head __user
*head
= curr
->compat_robust_list
;
41 struct robust_list __user
*entry
, *pending
;
42 unsigned int limit
= ROBUST_LIST_LIMIT
, pi
, pip
;
43 compat_uptr_t uentry
, upending
;
44 compat_long_t futex_offset
;
47 * Fetch the list head (which was registered earlier, via
48 * sys_set_robust_list()):
50 if (fetch_robust_entry(&uentry
, &entry
, &head
->list
.next
, &pi
))
53 * Fetch the relative futex offset:
55 if (get_user(futex_offset
, &head
->futex_offset
))
58 * Fetch any possibly pending lock-add first, and handle it
61 if (fetch_robust_entry(&upending
, &pending
,
62 &head
->list_op_pending
, &pip
))
65 handle_futex_death((void __user
*)pending
+ futex_offset
, curr
, pip
);
67 while (compat_ptr(uentry
) != &head
->list
) {
69 * A pending lock might already be on the list, so
70 * dont process it twice:
73 if (handle_futex_death((void __user
*)entry
+ futex_offset
,
78 * Fetch the next entry in the list:
80 if (fetch_robust_entry(&uentry
, &entry
,
81 (compat_uptr_t __user
*)&entry
->next
, &pi
))
84 * Avoid excessively long or circular lists:
94 compat_sys_set_robust_list(struct compat_robust_list_head __user
*head
,
97 if (unlikely(len
!= sizeof(*head
)))
100 current
->compat_robust_list
= head
;
106 compat_sys_get_robust_list(int pid
, compat_uptr_t __user
*head_ptr
,
107 compat_size_t __user
*len_ptr
)
109 struct compat_robust_list_head __user
*head
;
113 head
= current
->compat_robust_list
;
115 struct task_struct
*p
;
118 read_lock(&tasklist_lock
);
119 p
= find_task_by_pid(pid
);
123 if ((current
->euid
!= p
->euid
) && (current
->euid
!= p
->uid
) &&
124 !capable(CAP_SYS_PTRACE
))
126 head
= p
->compat_robust_list
;
127 read_unlock(&tasklist_lock
);
130 if (put_user(sizeof(*head
), len_ptr
))
132 return put_user(ptr_to_compat(head
), head_ptr
);
135 read_unlock(&tasklist_lock
);
140 asmlinkage
long compat_sys_futex(u32 __user
*uaddr
, int op
, u32 val
,
141 struct compat_timespec __user
*utime
, u32 __user
*uaddr2
,
145 unsigned long timeout
= MAX_SCHEDULE_TIMEOUT
;
148 if (utime
&& (op
== FUTEX_WAIT
|| op
== FUTEX_LOCK_PI
)) {
149 if (get_compat_timespec(&t
, utime
))
151 if (!timespec_valid(&t
))
153 if (op
== FUTEX_WAIT
)
154 timeout
= timespec_to_jiffies(&t
) + 1;
160 if (op
== FUTEX_REQUEUE
|| op
== FUTEX_CMP_REQUEUE
)
161 val2
= (int) (unsigned long) utime
;
163 return do_futex(uaddr
, op
, val
, timeout
, uaddr2
, val2
, val3
);