blob: 7e83733d4c95c854c1a4acf2b8b7a96bf91c0d59 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/kernel/compat.c
3 *
4 * Kernel compatibililty routines for e.g. 32 bit syscall support
5 * on 64 bit kernels.
6 *
7 * Copyright (C) 2002-2003 Stephen Rothwell, IBM Corporation
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/linkage.h>
15#include <linux/compat.h>
16#include <linux/errno.h>
17#include <linux/time.h>
18#include <linux/signal.h>
19#include <linux/sched.h> /* for MAX_SCHEDULE_TIMEOUT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/syscalls.h>
21#include <linux/unistd.h>
22#include <linux/security.h>
Stephen Rothwell3158e942006-03-26 01:37:29 -080023#include <linux/timex.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040024#include <linux/export.h>
Christoph Lameter1b2db9f2006-06-23 02:03:56 -070025#include <linux/migrate.h>
Toyo Abe1711ef32006-09-29 02:00:28 -070026#include <linux/posix-timers.h>
Frank Mayharf06febc2008-09-12 09:54:39 -070027#include <linux/times.h>
Paul Mackerrase3d5a272009-01-06 14:41:02 -080028#include <linux/ptrace.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080031#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Al Viro3a4d44b2017-06-07 09:42:34 +010033int compat_get_timex(struct timex *txc, const struct compat_timex __user *utp)
Richard Cochran65f5d802011-02-01 13:52:23 +000034{
Al Viro3a4d44b2017-06-07 09:42:34 +010035 struct compat_timex tx32;
Richard Cochran65f5d802011-02-01 13:52:23 +000036
Jann Hornef7c4822018-05-11 02:19:01 +020037 memset(txc, 0, sizeof(struct timex));
Al Viro3a4d44b2017-06-07 09:42:34 +010038 if (copy_from_user(&tx32, utp, sizeof(struct compat_timex)))
Richard Cochran65f5d802011-02-01 13:52:23 +000039 return -EFAULT;
40
Al Viro3a4d44b2017-06-07 09:42:34 +010041 txc->modes = tx32.modes;
42 txc->offset = tx32.offset;
43 txc->freq = tx32.freq;
44 txc->maxerror = tx32.maxerror;
45 txc->esterror = tx32.esterror;
46 txc->status = tx32.status;
47 txc->constant = tx32.constant;
48 txc->precision = tx32.precision;
49 txc->tolerance = tx32.tolerance;
50 txc->time.tv_sec = tx32.time.tv_sec;
51 txc->time.tv_usec = tx32.time.tv_usec;
52 txc->tick = tx32.tick;
53 txc->ppsfreq = tx32.ppsfreq;
54 txc->jitter = tx32.jitter;
55 txc->shift = tx32.shift;
56 txc->stabil = tx32.stabil;
57 txc->jitcnt = tx32.jitcnt;
58 txc->calcnt = tx32.calcnt;
59 txc->errcnt = tx32.errcnt;
60 txc->stbcnt = tx32.stbcnt;
61
Richard Cochran65f5d802011-02-01 13:52:23 +000062 return 0;
63}
64
Al Viro3a4d44b2017-06-07 09:42:34 +010065int compat_put_timex(struct compat_timex __user *utp, const struct timex *txc)
Richard Cochran65f5d802011-02-01 13:52:23 +000066{
Al Viro3a4d44b2017-06-07 09:42:34 +010067 struct compat_timex tx32;
68
69 memset(&tx32, 0, sizeof(struct compat_timex));
70 tx32.modes = txc->modes;
71 tx32.offset = txc->offset;
72 tx32.freq = txc->freq;
73 tx32.maxerror = txc->maxerror;
74 tx32.esterror = txc->esterror;
75 tx32.status = txc->status;
76 tx32.constant = txc->constant;
77 tx32.precision = txc->precision;
78 tx32.tolerance = txc->tolerance;
79 tx32.time.tv_sec = txc->time.tv_sec;
80 tx32.time.tv_usec = txc->time.tv_usec;
81 tx32.tick = txc->tick;
82 tx32.ppsfreq = txc->ppsfreq;
83 tx32.jitter = txc->jitter;
84 tx32.shift = txc->shift;
85 tx32.stabil = txc->stabil;
86 tx32.jitcnt = txc->jitcnt;
87 tx32.calcnt = txc->calcnt;
88 tx32.errcnt = txc->errcnt;
89 tx32.stbcnt = txc->stbcnt;
90 tx32.tai = txc->tai;
91 if (copy_to_user(utp, &tx32, sizeof(struct compat_timex)))
Richard Cochran65f5d802011-02-01 13:52:23 +000092 return -EFAULT;
93 return 0;
94}
95
H. Peter Anvin81993e82014-02-01 18:54:11 -080096static int __compat_get_timeval(struct timeval *tv, const struct compat_timeval __user *ctv)
H. Peter Anvin6684ba22012-02-19 17:38:00 -080097{
98 return (!access_ok(VERIFY_READ, ctv, sizeof(*ctv)) ||
99 __get_user(tv->tv_sec, &ctv->tv_sec) ||
100 __get_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
101}
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800102
H. Peter Anvin81993e82014-02-01 18:54:11 -0800103static int __compat_put_timeval(const struct timeval *tv, struct compat_timeval __user *ctv)
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800104{
105 return (!access_ok(VERIFY_WRITE, ctv, sizeof(*ctv)) ||
106 __put_user(tv->tv_sec, &ctv->tv_sec) ||
107 __put_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
108}
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800109
H. Peter Anvin81993e82014-02-01 18:54:11 -0800110static int __compat_get_timespec(struct timespec *ts, const struct compat_timespec __user *cts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 return (!access_ok(VERIFY_READ, cts, sizeof(*cts)) ||
113 __get_user(ts->tv_sec, &cts->tv_sec) ||
114 __get_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
115}
116
H. Peter Anvin81993e82014-02-01 18:54:11 -0800117static int __compat_put_timespec(const struct timespec *ts, struct compat_timespec __user *cts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 return (!access_ok(VERIFY_WRITE, cts, sizeof(*cts)) ||
120 __put_user(ts->tv_sec, &cts->tv_sec) ||
121 __put_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
122}
123
Deepa Dinamanif59dd9c2017-06-24 11:45:02 -0700124static int __compat_get_timespec64(struct timespec64 *ts64,
125 const struct compat_timespec __user *cts)
126{
127 struct compat_timespec ts;
128 int ret;
129
130 ret = copy_from_user(&ts, cts, sizeof(ts));
131 if (ret)
132 return -EFAULT;
133
134 ts64->tv_sec = ts.tv_sec;
135 ts64->tv_nsec = ts.tv_nsec;
136
137 return 0;
138}
139
140static int __compat_put_timespec64(const struct timespec64 *ts64,
141 struct compat_timespec __user *cts)
142{
143 struct compat_timespec ts = {
144 .tv_sec = ts64->tv_sec,
145 .tv_nsec = ts64->tv_nsec
146 };
147 return copy_to_user(cts, &ts, sizeof(ts)) ? -EFAULT : 0;
148}
149
150int compat_get_timespec64(struct timespec64 *ts, const void __user *uts)
151{
152 if (COMPAT_USE_64BIT_TIME)
153 return copy_from_user(ts, uts, sizeof(*ts)) ? -EFAULT : 0;
154 else
155 return __compat_get_timespec64(ts, uts);
156}
157EXPORT_SYMBOL_GPL(compat_get_timespec64);
158
159int compat_put_timespec64(const struct timespec64 *ts, void __user *uts)
160{
161 if (COMPAT_USE_64BIT_TIME)
162 return copy_to_user(uts, ts, sizeof(*ts)) ? -EFAULT : 0;
163 else
164 return __compat_put_timespec64(ts, uts);
165}
166EXPORT_SYMBOL_GPL(compat_put_timespec64);
167
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800168int compat_get_timeval(struct timeval *tv, const void __user *utv)
169{
170 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700171 return copy_from_user(tv, utv, sizeof(*tv)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800172 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800173 return __compat_get_timeval(tv, utv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800174}
175EXPORT_SYMBOL_GPL(compat_get_timeval);
176
177int compat_put_timeval(const struct timeval *tv, void __user *utv)
178{
179 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700180 return copy_to_user(utv, tv, sizeof(*tv)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800181 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800182 return __compat_put_timeval(tv, utv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800183}
184EXPORT_SYMBOL_GPL(compat_put_timeval);
185
186int compat_get_timespec(struct timespec *ts, const void __user *uts)
187{
188 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700189 return copy_from_user(ts, uts, sizeof(*ts)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800190 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800191 return __compat_get_timespec(ts, uts);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800192}
193EXPORT_SYMBOL_GPL(compat_get_timespec);
194
195int compat_put_timespec(const struct timespec *ts, void __user *uts)
196{
197 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700198 return copy_to_user(uts, ts, sizeof(*ts)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800199 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800200 return __compat_put_timespec(ts, uts);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800201}
202EXPORT_SYMBOL_GPL(compat_put_timespec);
203
Al Viro54ad9c42017-06-07 09:42:37 +0100204int get_compat_itimerval(struct itimerval *o, const struct compat_itimerval __user *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Al Viro54ad9c42017-06-07 09:42:37 +0100206 struct compat_itimerval v32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Al Viro54ad9c42017-06-07 09:42:37 +0100208 if (copy_from_user(&v32, i, sizeof(struct compat_itimerval)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return -EFAULT;
Al Viro54ad9c42017-06-07 09:42:37 +0100210 o->it_interval.tv_sec = v32.it_interval.tv_sec;
211 o->it_interval.tv_usec = v32.it_interval.tv_usec;
212 o->it_value.tv_sec = v32.it_value.tv_sec;
213 o->it_value.tv_usec = v32.it_value.tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 0;
215}
216
Al Viro54ad9c42017-06-07 09:42:37 +0100217int put_compat_itimerval(struct compat_itimerval __user *o, const struct itimerval *i)
218{
219 struct compat_itimerval v32;
220
221 v32.it_interval.tv_sec = i->it_interval.tv_sec;
222 v32.it_interval.tv_usec = i->it_interval.tv_usec;
223 v32.it_value.tv_sec = i->it_value.tv_sec;
224 v32.it_value.tv_usec = i->it_value.tv_usec;
225 return copy_to_user(o, &v32, sizeof(struct compat_itimerval)) ? -EFAULT : 0;
226}
227
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400228#ifdef __ARCH_WANT_SYS_SIGPROCMASK
229
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300230/*
231 * sys_sigprocmask SIG_SETMASK sets the first (compat) word of the
232 * blocked set of signals to the supplied signal set
233 */
234static inline void compat_sig_setmask(sigset_t *blocked, compat_sigset_word set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300236 memcpy(blocked->sig, &set, sizeof(set));
237}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Al Viro5cf22102012-11-25 19:41:01 -0500239COMPAT_SYSCALL_DEFINE3(sigprocmask, int, how,
240 compat_old_sigset_t __user *, nset,
241 compat_old_sigset_t __user *, oset)
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300242{
243 old_sigset_t old_set, new_set;
244 sigset_t new_blocked;
245
246 old_set = current->blocked.sig[0];
247
248 if (nset) {
249 if (get_user(new_set, nset))
250 return -EFAULT;
251 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
252
253 new_blocked = current->blocked;
254
255 switch (how) {
256 case SIG_BLOCK:
257 sigaddsetmask(&new_blocked, new_set);
258 break;
259 case SIG_UNBLOCK:
260 sigdelsetmask(&new_blocked, new_set);
261 break;
262 case SIG_SETMASK:
263 compat_sig_setmask(&new_blocked, new_set);
264 break;
265 default:
266 return -EINVAL;
267 }
268
269 set_current_blocked(&new_blocked);
270 }
271
272 if (oset) {
273 if (put_user(old_set, oset))
274 return -EFAULT;
275 }
276
277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400280#endif
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282int put_compat_rusage(const struct rusage *r, struct compat_rusage __user *ru)
283{
Al Viro7668b672017-05-31 06:39:31 -0400284 struct compat_rusage r32;
285 memset(&r32, 0, sizeof(r32));
286 r32.ru_utime.tv_sec = r->ru_utime.tv_sec;
287 r32.ru_utime.tv_usec = r->ru_utime.tv_usec;
288 r32.ru_stime.tv_sec = r->ru_stime.tv_sec;
289 r32.ru_stime.tv_usec = r->ru_stime.tv_usec;
290 r32.ru_maxrss = r->ru_maxrss;
291 r32.ru_ixrss = r->ru_ixrss;
292 r32.ru_idrss = r->ru_idrss;
293 r32.ru_isrss = r->ru_isrss;
294 r32.ru_minflt = r->ru_minflt;
295 r32.ru_majflt = r->ru_majflt;
296 r32.ru_nswap = r->ru_nswap;
297 r32.ru_inblock = r->ru_inblock;
298 r32.ru_oublock = r->ru_oublock;
299 r32.ru_msgsnd = r->ru_msgsnd;
300 r32.ru_msgrcv = r->ru_msgrcv;
301 r32.ru_nsignals = r->ru_nsignals;
302 r32.ru_nvcsw = r->ru_nvcsw;
303 r32.ru_nivcsw = r->ru_nivcsw;
304 if (copy_to_user(ru, &r32, sizeof(r32)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return -EFAULT;
306 return 0;
307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
Rusty Russella45185d2009-01-01 10:12:24 +1030310 unsigned len, struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 unsigned long *k;
313
Rusty Russella45185d2009-01-01 10:12:24 +1030314 if (len < cpumask_size())
315 memset(new_mask, 0, cpumask_size());
316 else if (len > cpumask_size())
317 len = cpumask_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Rusty Russella45185d2009-01-01 10:12:24 +1030319 k = cpumask_bits(new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return compat_get_bitmap(k, user_mask_ptr, len * 8);
321}
322
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100323COMPAT_SYSCALL_DEFINE3(sched_setaffinity, compat_pid_t, pid,
324 unsigned int, len,
325 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Rusty Russella45185d2009-01-01 10:12:24 +1030327 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 int retval;
329
Rusty Russella45185d2009-01-01 10:12:24 +1030330 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
331 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Rusty Russella45185d2009-01-01 10:12:24 +1030333 retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
334 if (retval)
335 goto out;
336
337 retval = sched_setaffinity(pid, new_mask);
338out:
339 free_cpumask_var(new_mask);
340 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100343COMPAT_SYSCALL_DEFINE3(sched_getaffinity, compat_pid_t, pid, unsigned int, len,
344 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 int ret;
Rusty Russella45185d2009-01-01 10:12:24 +1030347 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900349 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
350 return -EINVAL;
351 if (len & (sizeof(compat_ulong_t)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return -EINVAL;
353
Rusty Russella45185d2009-01-01 10:12:24 +1030354 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
355 return -ENOMEM;
356
357 ret = sched_getaffinity(pid, mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900358 if (ret == 0) {
359 size_t retlen = min_t(size_t, len, cpumask_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900361 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
362 ret = -EFAULT;
363 else
364 ret = retlen;
365 }
Rusty Russella45185d2009-01-01 10:12:24 +1030366 free_cpumask_var(mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900367
Rusty Russella45185d2009-01-01 10:12:24 +1030368 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Davide Libenzi83f5d122007-05-10 22:23:18 -0700371int get_compat_itimerspec(struct itimerspec *dst,
372 const struct compat_itimerspec __user *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700373{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800374 if (__compat_get_timespec(&dst->it_interval, &src->it_interval) ||
375 __compat_get_timespec(&dst->it_value, &src->it_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return -EFAULT;
377 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700378}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Davide Libenzi83f5d122007-05-10 22:23:18 -0700380int put_compat_itimerspec(struct compat_itimerspec __user *dst,
381 const struct itimerspec *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700382{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800383 if (__compat_put_timespec(&src->it_interval, &dst->it_interval) ||
384 __compat_put_timespec(&src->it_value, &dst->it_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return -EFAULT;
386 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700387}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Deepa Dinamanid5b7ffb2017-06-24 11:45:03 -0700389int get_compat_itimerspec64(struct itimerspec64 *its,
390 const struct compat_itimerspec __user *uits)
391{
392
393 if (__compat_get_timespec64(&its->it_interval, &uits->it_interval) ||
394 __compat_get_timespec64(&its->it_value, &uits->it_value))
395 return -EFAULT;
396 return 0;
397}
398EXPORT_SYMBOL_GPL(get_compat_itimerspec64);
399
400int put_compat_itimerspec64(const struct itimerspec64 *its,
401 struct compat_itimerspec __user *uits)
402{
403 if (__compat_put_timespec64(&its->it_interval, &uits->it_interval) ||
404 __compat_put_timespec64(&its->it_value, &uits->it_value))
405 return -EFAULT;
406 return 0;
407}
408EXPORT_SYMBOL_GPL(put_compat_itimerspec64);
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/*
411 * We currently only need the following fields from the sigevent
412 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
413 * sigev_notify_thread_id). The others are handled in user mode.
414 * We also assume that copying sigev_value.sival_int is sufficient
415 * to keep all the bits of sigev_value.sival_ptr intact.
416 */
417int get_compat_sigevent(struct sigevent *event,
418 const struct compat_sigevent __user *u_event)
419{
David S. Miller51410d32005-04-16 15:24:01 -0700420 memset(event, 0, sizeof(*event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return (!access_ok(VERIFY_READ, u_event, sizeof(*u_event)) ||
422 __get_user(event->sigev_value.sival_int,
423 &u_event->sigev_value.sival_int) ||
424 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
425 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
426 __get_user(event->sigev_notify_thread_id,
427 &u_event->sigev_notify_thread_id))
428 ? -EFAULT : 0;
429}
430
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700431long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 unsigned long bitmap_size)
433{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 unsigned long nr_compat_longs;
435
436 /* align bitmap up to nearest compat_long_t boundary */
437 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
Al Viro1e1fc132017-05-30 00:29:38 -0400438 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 if (!access_ok(VERIFY_READ, umask, bitmap_size / 8))
441 return -EFAULT;
442
Al Viro1e1fc132017-05-30 00:29:38 -0400443 user_access_begin();
444 while (nr_compat_longs > 1) {
445 compat_ulong_t l1, l2;
446 unsafe_get_user(l1, umask++, Efault);
447 unsafe_get_user(l2, umask++, Efault);
448 *mask++ = ((unsigned long)l2 << BITS_PER_COMPAT_LONG) | l1;
449 nr_compat_longs -= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
Al Viro1e1fc132017-05-30 00:29:38 -0400451 if (nr_compat_longs)
452 unsafe_get_user(*mask, umask++, Efault);
453 user_access_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return 0;
Al Viro1e1fc132017-05-30 00:29:38 -0400455
456Efault:
457 user_access_end();
458 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
461long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
462 unsigned long bitmap_size)
463{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 unsigned long nr_compat_longs;
465
466 /* align bitmap up to nearest compat_long_t boundary */
467 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
Al Viro1e1fc132017-05-30 00:29:38 -0400468 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 if (!access_ok(VERIFY_WRITE, umask, bitmap_size / 8))
471 return -EFAULT;
472
Al Viro1e1fc132017-05-30 00:29:38 -0400473 user_access_begin();
474 while (nr_compat_longs > 1) {
475 unsigned long m = *mask++;
476 unsafe_put_user((compat_ulong_t)m, umask++, Efault);
477 unsafe_put_user(m >> BITS_PER_COMPAT_LONG, umask++, Efault);
478 nr_compat_longs -= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
Al Viro1e1fc132017-05-30 00:29:38 -0400480 if (nr_compat_longs)
481 unsafe_put_user((compat_ulong_t)*mask, umask++, Efault);
482 user_access_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return 0;
Al Viro1e1fc132017-05-30 00:29:38 -0400484Efault:
485 user_access_end();
486 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489void
Al Viro322a56c2012-12-25 13:32:58 -0500490sigset_from_compat(sigset_t *set, const compat_sigset_t *compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 switch (_NSIG_WORDS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32 );
494 case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32 );
495 case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32 );
496 case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498}
Alexander Graf1dda6062011-06-08 02:45:37 +0200499EXPORT_SYMBOL_GPL(sigset_from_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Al Viro322a56c2012-12-25 13:32:58 -0500501void
502sigset_to_compat(compat_sigset_t *compat, const sigset_t *set)
503{
504 switch (_NSIG_WORDS) {
505 case 4: compat->sig[7] = (set->sig[3] >> 32); compat->sig[6] = set->sig[3];
506 case 3: compat->sig[5] = (set->sig[2] >> 32); compat->sig[4] = set->sig[2];
507 case 2: compat->sig[3] = (set->sig[1] >> 32); compat->sig[2] = set->sig[1];
508 case 1: compat->sig[1] = (set->sig[0] >> 32); compat->sig[0] = set->sig[0];
509 }
510}
511
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700512#ifdef CONFIG_NUMA
Heiko Carstens2f2728f2014-03-04 17:18:23 +0100513COMPAT_SYSCALL_DEFINE6(move_pages, pid_t, pid, compat_ulong_t, nr_pages,
514 compat_uptr_t __user *, pages32,
515 const int __user *, nodes,
516 int __user *, status,
517 int, flags)
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700518{
519 const void __user * __user *pages;
520 int i;
521
522 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
523 for (i = 0; i < nr_pages; i++) {
524 compat_uptr_t p;
525
Christoph Lameter9216dfa2006-06-23 02:03:57 -0700526 if (get_user(p, pages32 + i) ||
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700527 put_user(compat_ptr(p), pages + i))
528 return -EFAULT;
529 }
530 return sys_move_pages(pid, nr_pages, pages, nodes, status, flags);
531}
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800532
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100533COMPAT_SYSCALL_DEFINE4(migrate_pages, compat_pid_t, pid,
534 compat_ulong_t, maxnode,
535 const compat_ulong_t __user *, old_nodes,
536 const compat_ulong_t __user *, new_nodes)
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800537{
538 unsigned long __user *old = NULL;
539 unsigned long __user *new = NULL;
540 nodemask_t tmp_mask;
541 unsigned long nr_bits;
542 unsigned long size;
543
544 nr_bits = min_t(unsigned long, maxnode - 1, MAX_NUMNODES);
545 size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
546 if (old_nodes) {
547 if (compat_get_bitmap(nodes_addr(tmp_mask), old_nodes, nr_bits))
548 return -EFAULT;
549 old = compat_alloc_user_space(new_nodes ? size * 2 : size);
550 if (new_nodes)
551 new = old + size / sizeof(unsigned long);
552 if (copy_to_user(old, nodes_addr(tmp_mask), size))
553 return -EFAULT;
554 }
555 if (new_nodes) {
556 if (compat_get_bitmap(nodes_addr(tmp_mask), new_nodes, nr_bits))
557 return -EFAULT;
558 if (new == NULL)
559 new = compat_alloc_user_space(size);
560 if (copy_to_user(new, nodes_addr(tmp_mask), size))
561 return -EFAULT;
562 }
563 return sys_migrate_pages(pid, nr_bits + 1, old, new);
564}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700565#endif
Kyle McMartind4d23ad2007-02-10 01:46:00 -0800566
Al Viro6883da82012-12-25 16:59:28 -0500567COMPAT_SYSCALL_DEFINE2(sched_rr_get_interval,
568 compat_pid_t, pid,
569 struct compat_timespec __user *, interval)
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800570{
571 struct timespec t;
572 int ret;
573 mm_segment_t old_fs = get_fs();
574
575 set_fs(KERNEL_DS);
576 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
577 set_fs(old_fs);
H. Peter Anvin81993e82014-02-01 18:54:11 -0800578 if (compat_put_timespec(&t, interval))
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800579 return -EFAULT;
580 return ret;
581}
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800582
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700583/*
584 * Allocate user-space memory for the duration of a single system call,
585 * in order to marshall parameters inside a compat thunk.
586 */
587void __user *compat_alloc_user_space(unsigned long len)
588{
589 void __user *ptr;
590
591 /* If len would occupy more than half of the entire compat space... */
592 if (unlikely(len > (((compat_uptr_t)~0) >> 1)))
593 return NULL;
594
595 ptr = arch_compat_alloc_user_space(len);
596
597 if (unlikely(!access_ok(VERIFY_WRITE, ptr, len)))
598 return NULL;
599
600 return ptr;
601}
602EXPORT_SYMBOL_GPL(compat_alloc_user_space);