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>
16 * Walk curr->robust_list (very carefully, it's a userspace list!)
17 * and mark any locks found there dead, and notify any waiters.
19 * We silently return on any sign of list-walking problem.
21 void compat_exit_robust_list(struct task_struct
*curr
)
23 struct compat_robust_list_head __user
*head
= curr
->compat_robust_list
;
24 struct robust_list __user
*entry
, *pending
;
25 compat_uptr_t uentry
, upending
;
26 unsigned int limit
= ROBUST_LIST_LIMIT
;
27 compat_long_t futex_offset
;
30 * Fetch the list head (which was registered earlier, via
31 * sys_set_robust_list()):
33 if (get_user(uentry
, &head
->list
.next
))
35 entry
= compat_ptr(uentry
);
37 * Fetch the relative futex offset:
39 if (get_user(futex_offset
, &head
->futex_offset
))
42 * Fetch any possibly pending lock-add first, and handle it
45 if (get_user(upending
, &head
->list_op_pending
))
47 pending
= compat_ptr(upending
);
49 handle_futex_death((void *)pending
+ futex_offset
, curr
);
51 while (compat_ptr(uentry
) != &head
->list
) {
53 * A pending lock might already be on the list, so
54 * dont process it twice:
57 if (handle_futex_death((void *)entry
+ futex_offset
,
62 * Fetch the next entry in the list:
64 if (get_user(uentry
, (compat_uptr_t
*)&entry
->next
))
66 entry
= compat_ptr(uentry
);
68 * Avoid excessively long or circular lists:
78 compat_sys_set_robust_list(struct compat_robust_list_head __user
*head
,
81 if (unlikely(len
!= sizeof(*head
)))
84 current
->compat_robust_list
= head
;
90 compat_sys_get_robust_list(int pid
, compat_uptr_t
*head_ptr
,
91 compat_size_t __user
*len_ptr
)
93 struct compat_robust_list_head
*head
;
97 head
= current
->compat_robust_list
;
99 struct task_struct
*p
;
102 read_lock(&tasklist_lock
);
103 p
= find_task_by_pid(pid
);
107 if ((current
->euid
!= p
->euid
) && (current
->euid
!= p
->uid
) &&
108 !capable(CAP_SYS_PTRACE
))
110 head
= p
->compat_robust_list
;
111 read_unlock(&tasklist_lock
);
114 if (put_user(sizeof(*head
), len_ptr
))
116 return put_user(ptr_to_compat(head
), head_ptr
);
119 read_unlock(&tasklist_lock
);
124 asmlinkage
long compat_sys_futex(u32 __user
*uaddr
, int op
, u32 val
,
125 struct compat_timespec __user
*utime
, u32 __user
*uaddr2
,
129 unsigned long timeout
= MAX_SCHEDULE_TIMEOUT
;
132 if (utime
&& (op
== FUTEX_WAIT
)) {
133 if (get_compat_timespec(&t
, utime
))
135 if (!timespec_valid(&t
))
137 timeout
= timespec_to_jiffies(&t
) + 1;
139 if (op
>= FUTEX_REQUEUE
)
140 val2
= (int) (unsigned long) utime
;
142 return do_futex((unsigned long)uaddr
, op
, val
, timeout
,
143 (unsigned long)uaddr2
, val2
, val3
);