blob: 2c2e2954b713b2681a5bf120c0097cb2c2affc8c [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>
11#include <linux/futex.h>
12
13#include <asm/uaccess.h>
14
Ingo Molnare3f2dde2006-07-29 05:17:57 +020015
16/*
17 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
18 */
19static inline int
20fetch_robust_entry(compat_uptr_t *uentry, struct robust_list __user **entry,
Al Viroba46df92006-10-10 22:46:07 +010021 compat_uptr_t __user *head, int *pi)
Ingo Molnare3f2dde2006-07-29 05:17:57 +020022{
23 if (get_user(*uentry, head))
24 return -EFAULT;
25
26 *entry = compat_ptr((*uentry) & ~1);
27 *pi = (unsigned int)(*uentry) & 1;
28
29 return 0;
30}
31
Ingo Molnar34f192c2006-03-27 01:16:24 -080032/*
33 * Walk curr->robust_list (very carefully, it's a userspace list!)
34 * and mark any locks found there dead, and notify any waiters.
35 *
36 * We silently return on any sign of list-walking problem.
37 */
38void compat_exit_robust_list(struct task_struct *curr)
39{
40 struct compat_robust_list_head __user *head = curr->compat_robust_list;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070041 struct robust_list __user *entry, *next_entry, *pending;
42 unsigned int limit = ROBUST_LIST_LIMIT, pi, next_pi, pip;
43 compat_uptr_t uentry, next_uentry, upending;
Ingo Molnar34f192c2006-03-27 01:16:24 -080044 compat_long_t futex_offset;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070045 int rc;
Ingo Molnar34f192c2006-03-27 01:16:24 -080046
47 /*
48 * Fetch the list head (which was registered earlier, via
49 * sys_set_robust_list()):
50 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +020051 if (fetch_robust_entry(&uentry, &entry, &head->list.next, &pi))
Ingo Molnar34f192c2006-03-27 01:16:24 -080052 return;
Ingo Molnar34f192c2006-03-27 01:16:24 -080053 /*
54 * Fetch the relative futex offset:
55 */
56 if (get_user(futex_offset, &head->futex_offset))
57 return;
58 /*
59 * Fetch any possibly pending lock-add first, and handle it
60 * if it exists:
61 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +020062 if (fetch_robust_entry(&upending, &pending,
Thomas Gleixnerce2c6b52006-08-05 12:15:15 -070063 &head->list_op_pending, &pip))
Ingo Molnar34f192c2006-03-27 01:16:24 -080064 return;
Ingo Molnar34f192c2006-03-27 01:16:24 -080065
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070066 next_entry = NULL; /* avoid warning with gcc */
Arnd Bergmann179c85e2007-09-11 15:23:49 -070067 while (entry != (struct robust_list __user *) &head->list) {
Ingo Molnar34f192c2006-03-27 01:16:24 -080068 /*
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070069 * Fetch the next entry in the list before calling
70 * handle_futex_death:
71 */
72 rc = fetch_robust_entry(&next_uentry, &next_entry,
73 (compat_uptr_t __user *)&entry->next, &next_pi);
74 /*
Ingo Molnar34f192c2006-03-27 01:16:24 -080075 * A pending lock might already be on the list, so
76 * dont process it twice:
77 */
78 if (entry != pending)
Al Viroba46df92006-10-10 22:46:07 +010079 if (handle_futex_death((void __user *)entry + futex_offset,
Ingo Molnare3f2dde2006-07-29 05:17:57 +020080 curr, pi))
Ingo Molnar34f192c2006-03-27 01:16:24 -080081 return;
82
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070083 if (rc)
Ingo Molnar34f192c2006-03-27 01:16:24 -080084 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070085 uentry = next_uentry;
86 entry = next_entry;
87 pi = next_pi;
Ingo Molnar34f192c2006-03-27 01:16:24 -080088 /*
89 * Avoid excessively long or circular lists:
90 */
91 if (!--limit)
92 break;
93
94 cond_resched();
95 }
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -070096 if (pending)
97 handle_futex_death((void __user *)pending + futex_offset,
98 curr, pip);
Ingo Molnar34f192c2006-03-27 01:16:24 -080099}
100
101asmlinkage long
102compat_sys_set_robust_list(struct compat_robust_list_head __user *head,
103 compat_size_t len)
104{
105 if (unlikely(len != sizeof(*head)))
106 return -EINVAL;
107
108 current->compat_robust_list = head;
109
110 return 0;
111}
112
113asmlinkage long
Al Viroba46df92006-10-10 22:46:07 +0100114compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,
Ingo Molnar34f192c2006-03-27 01:16:24 -0800115 compat_size_t __user *len_ptr)
116{
Al Viroba46df92006-10-10 22:46:07 +0100117 struct compat_robust_list_head __user *head;
Ingo Molnar34f192c2006-03-27 01:16:24 -0800118 unsigned long ret;
119
120 if (!pid)
121 head = current->compat_robust_list;
122 else {
123 struct task_struct *p;
124
125 ret = -ESRCH;
126 read_lock(&tasklist_lock);
127 p = find_task_by_pid(pid);
128 if (!p)
129 goto err_unlock;
130 ret = -EPERM;
131 if ((current->euid != p->euid) && (current->euid != p->uid) &&
132 !capable(CAP_SYS_PTRACE))
133 goto err_unlock;
134 head = p->compat_robust_list;
135 read_unlock(&tasklist_lock);
136 }
137
138 if (put_user(sizeof(*head), len_ptr))
139 return -EFAULT;
140 return put_user(ptr_to_compat(head), head_ptr);
141
142err_unlock:
143 read_unlock(&tasklist_lock);
144
145 return ret;
146}
147
Ingo Molnar8f17d3a2006-03-27 01:16:27 -0800148asmlinkage long compat_sys_futex(u32 __user *uaddr, int op, u32 val,
Ingo Molnar34f192c2006-03-27 01:16:24 -0800149 struct compat_timespec __user *utime, u32 __user *uaddr2,
Ingo Molnar8f17d3a2006-03-27 01:16:27 -0800150 u32 val3)
Ingo Molnar34f192c2006-03-27 01:16:24 -0800151{
Pierre Peifferc19384b2007-05-09 02:35:02 -0700152 struct timespec ts;
153 ktime_t t, *tp = NULL;
Ingo Molnar34f192c2006-03-27 01:16:24 -0800154 int val2 = 0;
Ulrich Drepperf0ede662007-06-01 00:46:41 -0700155 int cmd = op & FUTEX_CMD_MASK;
Ingo Molnar34f192c2006-03-27 01:16:24 -0800156
Ulrich Drepperf0ede662007-06-01 00:46:41 -0700157 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI)) {
Pierre Peifferc19384b2007-05-09 02:35:02 -0700158 if (get_compat_timespec(&ts, utime))
Ingo Molnar34f192c2006-03-27 01:16:24 -0800159 return -EFAULT;
Pierre Peifferc19384b2007-05-09 02:35:02 -0700160 if (!timespec_valid(&ts))
Thomas Gleixner9741ef962006-03-31 02:31:32 -0800161 return -EINVAL;
Pierre Peifferc19384b2007-05-09 02:35:02 -0700162
163 t = timespec_to_ktime(ts);
Ulrich Drepperf0ede662007-06-01 00:46:41 -0700164 if (cmd == FUTEX_WAIT)
Pierre Peifferc19384b2007-05-09 02:35:02 -0700165 t = ktime_add(ktime_get(), t);
166 tp = &t;
Ingo Molnar34f192c2006-03-27 01:16:24 -0800167 }
Thomas Gleixnerbd197232007-06-17 21:11:10 +0200168 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE)
Ingo Molnar34f192c2006-03-27 01:16:24 -0800169 val2 = (int) (unsigned long) utime;
170
Pierre Peifferc19384b2007-05-09 02:35:02 -0700171 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
Ingo Molnar34f192c2006-03-27 01:16:24 -0800172}