Blame view

kernel/futex_compat.c 4.45 KB
34f192c65   Ingo Molnar   [PATCH] lightweig...
1
2
3
4
5
6
7
8
9
10
  /*
   * linux/kernel/futex_compat.c
   *
   * Futex compatibililty routines.
   *
   * Copyright 2006, Red Hat, Inc., Ingo Molnar
   */
  
  #include <linux/linkage.h>
  #include <linux/compat.h>
b488893a3   Pavel Emelyanov   pid namespaces: c...
11
  #include <linux/nsproxy.h>
34f192c65   Ingo Molnar   [PATCH] lightweig...
12
  #include <linux/futex.h>
bdbb776f8   Kees Cook   futex: Do not lea...
13
  #include <linux/ptrace.h>
90caf58da   Al Viro   convert futex com...
14
  #include <linux/syscalls.h>
34f192c65   Ingo Molnar   [PATCH] lightweig...
15
16
  
  #include <asm/uaccess.h>
e3f2ddeac   Ingo Molnar   [PATCH] pi-futex:...
17
18
19
20
21
22
  
  /*
   * Fetch a robust-list pointer. Bit 0 signals PI futexes:
   */
  static inline int
  fetch_robust_entry(compat_uptr_t *uentry, struct robust_list __user **entry,
1dcc41bb0   Namhyung Kim   futex: Change 3rd...
23
  		   compat_uptr_t __user *head, unsigned int *pi)
e3f2ddeac   Ingo Molnar   [PATCH] pi-futex:...
24
25
26
27
28
29
30
31
32
  {
  	if (get_user(*uentry, head))
  		return -EFAULT;
  
  	*entry = compat_ptr((*uentry) & ~1);
  	*pi = (unsigned int)(*uentry) & 1;
  
  	return 0;
  }
8481664d3   Al Viro   futex_compat __us...
33
  static void __user *futex_uaddr(struct robust_list __user *entry,
3c5fd9c77   David Miller   [FUTEX] Fix addre...
34
35
36
37
38
39
40
  				compat_long_t futex_offset)
  {
  	compat_uptr_t base = ptr_to_compat(entry);
  	void __user *uaddr = compat_ptr(base + futex_offset);
  
  	return uaddr;
  }
34f192c65   Ingo Molnar   [PATCH] lightweig...
41
42
43
44
45
46
47
48
49
  /*
   * Walk curr->robust_list (very carefully, it's a userspace list!)
   * and mark any locks found there dead, and notify any waiters.
   *
   * We silently return on any sign of list-walking problem.
   */
  void compat_exit_robust_list(struct task_struct *curr)
  {
  	struct compat_robust_list_head __user *head = curr->compat_robust_list;
9f96cb1e8   Martin Schwidefsky   robust futex thre...
50
  	struct robust_list __user *entry, *next_entry, *pending;
4c115e951   Darren Hart   futex: Address co...
51
52
  	unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
  	unsigned int uninitialized_var(next_pi);
9f96cb1e8   Martin Schwidefsky   robust futex thre...
53
  	compat_uptr_t uentry, next_uentry, upending;
34f192c65   Ingo Molnar   [PATCH] lightweig...
54
  	compat_long_t futex_offset;
9f96cb1e8   Martin Schwidefsky   robust futex thre...
55
  	int rc;
34f192c65   Ingo Molnar   [PATCH] lightweig...
56

a0c1e9073   Thomas Gleixner   futex: runtime en...
57
58
  	if (!futex_cmpxchg_enabled)
  		return;
34f192c65   Ingo Molnar   [PATCH] lightweig...
59
60
61
62
  	/*
  	 * Fetch the list head (which was registered earlier, via
  	 * sys_set_robust_list()):
  	 */
e3f2ddeac   Ingo Molnar   [PATCH] pi-futex:...
63
  	if (fetch_robust_entry(&uentry, &entry, &head->list.next, &pi))
34f192c65   Ingo Molnar   [PATCH] lightweig...
64
  		return;
34f192c65   Ingo Molnar   [PATCH] lightweig...
65
66
67
68
69
70
71
72
73
  	/*
  	 * Fetch the relative futex offset:
  	 */
  	if (get_user(futex_offset, &head->futex_offset))
  		return;
  	/*
  	 * Fetch any possibly pending lock-add first, and handle it
  	 * if it exists:
  	 */
e3f2ddeac   Ingo Molnar   [PATCH] pi-futex:...
74
  	if (fetch_robust_entry(&upending, &pending,
ce2c6b538   Thomas Gleixner   [PATCH] futex: Ap...
75
  			       &head->list_op_pending, &pip))
34f192c65   Ingo Molnar   [PATCH] lightweig...
76
  		return;
34f192c65   Ingo Molnar   [PATCH] lightweig...
77

9f96cb1e8   Martin Schwidefsky   robust futex thre...
78
  	next_entry = NULL;	/* avoid warning with gcc */
179c85ea5   Arnd Bergmann   futex_compat: fix...
79
  	while (entry != (struct robust_list __user *) &head->list) {
34f192c65   Ingo Molnar   [PATCH] lightweig...
80
  		/*
9f96cb1e8   Martin Schwidefsky   robust futex thre...
81
82
83
84
85
86
  		 * Fetch the next entry in the list before calling
  		 * handle_futex_death:
  		 */
  		rc = fetch_robust_entry(&next_uentry, &next_entry,
  			(compat_uptr_t __user *)&entry->next, &next_pi);
  		/*
34f192c65   Ingo Molnar   [PATCH] lightweig...
87
88
89
  		 * A pending lock might already be on the list, so
  		 * dont process it twice:
  		 */
3c5fd9c77   David Miller   [FUTEX] Fix addre...
90
91
  		if (entry != pending) {
  			void __user *uaddr = futex_uaddr(entry, futex_offset);
34f192c65   Ingo Molnar   [PATCH] lightweig...
92

3c5fd9c77   David Miller   [FUTEX] Fix addre...
93
94
95
  			if (handle_futex_death(uaddr, curr, pi))
  				return;
  		}
9f96cb1e8   Martin Schwidefsky   robust futex thre...
96
  		if (rc)
34f192c65   Ingo Molnar   [PATCH] lightweig...
97
  			return;
9f96cb1e8   Martin Schwidefsky   robust futex thre...
98
99
100
  		uentry = next_uentry;
  		entry = next_entry;
  		pi = next_pi;
34f192c65   Ingo Molnar   [PATCH] lightweig...
101
102
103
104
105
106
107
108
  		/*
  		 * Avoid excessively long or circular lists:
  		 */
  		if (!--limit)
  			break;
  
  		cond_resched();
  	}
3c5fd9c77   David Miller   [FUTEX] Fix addre...
109
110
111
112
113
  	if (pending) {
  		void __user *uaddr = futex_uaddr(pending, futex_offset);
  
  		handle_futex_death(uaddr, curr, pip);
  	}
34f192c65   Ingo Molnar   [PATCH] lightweig...
114
  }
90caf58da   Al Viro   convert futex com...
115
116
117
  COMPAT_SYSCALL_DEFINE2(set_robust_list,
  		struct compat_robust_list_head __user *, head,
  		compat_size_t, len)
34f192c65   Ingo Molnar   [PATCH] lightweig...
118
  {
a0c1e9073   Thomas Gleixner   futex: runtime en...
119
120
  	if (!futex_cmpxchg_enabled)
  		return -ENOSYS;
34f192c65   Ingo Molnar   [PATCH] lightweig...
121
122
123
124
125
126
127
  	if (unlikely(len != sizeof(*head)))
  		return -EINVAL;
  
  	current->compat_robust_list = head;
  
  	return 0;
  }
90caf58da   Al Viro   convert futex com...
128
129
130
  COMPAT_SYSCALL_DEFINE3(get_robust_list, int, pid,
  			compat_uptr_t __user *, head_ptr,
  			compat_size_t __user *, len_ptr)
34f192c65   Ingo Molnar   [PATCH] lightweig...
131
  {
ba46df984   Al Viro   [PATCH] __user an...
132
  	struct compat_robust_list_head __user *head;
34f192c65   Ingo Molnar   [PATCH] lightweig...
133
  	unsigned long ret;
bdbb776f8   Kees Cook   futex: Do not lea...
134
  	struct task_struct *p;
34f192c65   Ingo Molnar   [PATCH] lightweig...
135

a0c1e9073   Thomas Gleixner   futex: runtime en...
136
137
  	if (!futex_cmpxchg_enabled)
  		return -ENOSYS;
bdbb776f8   Kees Cook   futex: Do not lea...
138
139
140
  	rcu_read_lock();
  
  	ret = -ESRCH;
34f192c65   Ingo Molnar   [PATCH] lightweig...
141
  	if (!pid)
bdbb776f8   Kees Cook   futex: Do not lea...
142
  		p = current;
34f192c65   Ingo Molnar   [PATCH] lightweig...
143
  	else {
228ebcbe6   Pavel Emelyanov   Uninline find_tas...
144
  		p = find_task_by_vpid(pid);
34f192c65   Ingo Molnar   [PATCH] lightweig...
145
146
  		if (!p)
  			goto err_unlock;
34f192c65   Ingo Molnar   [PATCH] lightweig...
147
  	}
bdbb776f8   Kees Cook   futex: Do not lea...
148
149
150
151
152
153
  	ret = -EPERM;
  	if (!ptrace_may_access(p, PTRACE_MODE_READ))
  		goto err_unlock;
  
  	head = p->compat_robust_list;
  	rcu_read_unlock();
34f192c65   Ingo Molnar   [PATCH] lightweig...
154
155
156
157
158
  	if (put_user(sizeof(*head), len_ptr))
  		return -EFAULT;
  	return put_user(ptr_to_compat(head), head_ptr);
  
  err_unlock:
f409adf5b   Thomas Gleixner   futex: Protect pi...
159
  	rcu_read_unlock();
34f192c65   Ingo Molnar   [PATCH] lightweig...
160
161
162
  
  	return ret;
  }
90caf58da   Al Viro   convert futex com...
163
164
165
  COMPAT_SYSCALL_DEFINE6(futex, u32 __user *, uaddr, int, op, u32, val,
  		struct compat_timespec __user *, utime, u32 __user *, uaddr2,
  		u32, val3)
34f192c65   Ingo Molnar   [PATCH] lightweig...
166
  {
c19384b5b   Pierre Peiffer   Make futex_wait()...
167
168
  	struct timespec ts;
  	ktime_t t, *tp = NULL;
34f192c65   Ingo Molnar   [PATCH] lightweig...
169
  	int val2 = 0;
f0ede66fc   Ulrich Drepper   fix compat futex ...
170
  	int cmd = op & FUTEX_CMD_MASK;
34f192c65   Ingo Molnar   [PATCH] lightweig...
171

cd689985c   Thomas Gleixner   futex: Add bitset...
172
  	if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
4dc88029f   Dinakar Guniguntala   futex: Fix compat...
173
174
  		      cmd == FUTEX_WAIT_BITSET ||
  		      cmd == FUTEX_WAIT_REQUEUE_PI)) {
81993e81a   H. Peter Anvin   compat: Get rid o...
175
  		if (compat_get_timespec(&ts, utime))
34f192c65   Ingo Molnar   [PATCH] lightweig...
176
  			return -EFAULT;
c19384b5b   Pierre Peiffer   Make futex_wait()...
177
  		if (!timespec_valid(&ts))
9741ef964   Thomas Gleixner   [PATCH] futex: ch...
178
  			return -EINVAL;
c19384b5b   Pierre Peiffer   Make futex_wait()...
179
180
  
  		t = timespec_to_ktime(ts);
f0ede66fc   Ulrich Drepper   fix compat futex ...
181
  		if (cmd == FUTEX_WAIT)
5a7780e72   Thomas Gleixner   hrtimer: check re...
182
  			t = ktime_add_safe(ktime_get(), t);
c19384b5b   Pierre Peiffer   Make futex_wait()...
183
  		tp = &t;
34f192c65   Ingo Molnar   [PATCH] lightweig...
184
  	}
4dc88029f   Dinakar Guniguntala   futex: Fix compat...
185
186
  	if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
  	    cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
34f192c65   Ingo Molnar   [PATCH] lightweig...
187
  		val2 = (int) (unsigned long) utime;
c19384b5b   Pierre Peiffer   Make futex_wait()...
188
  	return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
34f192c65   Ingo Molnar   [PATCH] lightweig...
189
  }