blob: ebd8bdc3fd68c70fce5a37588ae22253690410c3 [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
Al Viro3a4d44b2017-06-07 09:42:34 +010037 if (copy_from_user(&tx32, utp, sizeof(struct compat_timex)))
Richard Cochran65f5d802011-02-01 13:52:23 +000038 return -EFAULT;
39
Al Viro3a4d44b2017-06-07 09:42:34 +010040 txc->modes = tx32.modes;
41 txc->offset = tx32.offset;
42 txc->freq = tx32.freq;
43 txc->maxerror = tx32.maxerror;
44 txc->esterror = tx32.esterror;
45 txc->status = tx32.status;
46 txc->constant = tx32.constant;
47 txc->precision = tx32.precision;
48 txc->tolerance = tx32.tolerance;
49 txc->time.tv_sec = tx32.time.tv_sec;
50 txc->time.tv_usec = tx32.time.tv_usec;
51 txc->tick = tx32.tick;
52 txc->ppsfreq = tx32.ppsfreq;
53 txc->jitter = tx32.jitter;
54 txc->shift = tx32.shift;
55 txc->stabil = tx32.stabil;
56 txc->jitcnt = tx32.jitcnt;
57 txc->calcnt = tx32.calcnt;
58 txc->errcnt = tx32.errcnt;
59 txc->stbcnt = tx32.stbcnt;
60
Richard Cochran65f5d802011-02-01 13:52:23 +000061 return 0;
62}
63
Al Viro3a4d44b2017-06-07 09:42:34 +010064int compat_put_timex(struct compat_timex __user *utp, const struct timex *txc)
Richard Cochran65f5d802011-02-01 13:52:23 +000065{
Al Viro3a4d44b2017-06-07 09:42:34 +010066 struct compat_timex tx32;
67
68 memset(&tx32, 0, sizeof(struct compat_timex));
69 tx32.modes = txc->modes;
70 tx32.offset = txc->offset;
71 tx32.freq = txc->freq;
72 tx32.maxerror = txc->maxerror;
73 tx32.esterror = txc->esterror;
74 tx32.status = txc->status;
75 tx32.constant = txc->constant;
76 tx32.precision = txc->precision;
77 tx32.tolerance = txc->tolerance;
78 tx32.time.tv_sec = txc->time.tv_sec;
79 tx32.time.tv_usec = txc->time.tv_usec;
80 tx32.tick = txc->tick;
81 tx32.ppsfreq = txc->ppsfreq;
82 tx32.jitter = txc->jitter;
83 tx32.shift = txc->shift;
84 tx32.stabil = txc->stabil;
85 tx32.jitcnt = txc->jitcnt;
86 tx32.calcnt = txc->calcnt;
87 tx32.errcnt = txc->errcnt;
88 tx32.stbcnt = txc->stbcnt;
89 tx32.tai = txc->tai;
90 if (copy_to_user(utp, &tx32, sizeof(struct compat_timex)))
Richard Cochran65f5d802011-02-01 13:52:23 +000091 return -EFAULT;
92 return 0;
93}
94
H. Peter Anvin81993e82014-02-01 18:54:11 -080095static int __compat_get_timeval(struct timeval *tv, const struct compat_timeval __user *ctv)
H. Peter Anvin6684ba22012-02-19 17:38:00 -080096{
97 return (!access_ok(VERIFY_READ, ctv, sizeof(*ctv)) ||
98 __get_user(tv->tv_sec, &ctv->tv_sec) ||
99 __get_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
100}
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800101
H. Peter Anvin81993e82014-02-01 18:54:11 -0800102static int __compat_put_timeval(const struct timeval *tv, struct compat_timeval __user *ctv)
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800103{
104 return (!access_ok(VERIFY_WRITE, ctv, sizeof(*ctv)) ||
105 __put_user(tv->tv_sec, &ctv->tv_sec) ||
106 __put_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
107}
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800108
H. Peter Anvin81993e82014-02-01 18:54:11 -0800109static int __compat_get_timespec(struct timespec *ts, const struct compat_timespec __user *cts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 return (!access_ok(VERIFY_READ, cts, sizeof(*cts)) ||
112 __get_user(ts->tv_sec, &cts->tv_sec) ||
113 __get_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
114}
115
H. Peter Anvin81993e82014-02-01 18:54:11 -0800116static int __compat_put_timespec(const struct timespec *ts, struct compat_timespec __user *cts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 return (!access_ok(VERIFY_WRITE, cts, sizeof(*cts)) ||
119 __put_user(ts->tv_sec, &cts->tv_sec) ||
120 __put_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
121}
122
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800123int compat_get_timeval(struct timeval *tv, const void __user *utv)
124{
125 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700126 return copy_from_user(tv, utv, sizeof(*tv)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800127 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800128 return __compat_get_timeval(tv, utv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800129}
130EXPORT_SYMBOL_GPL(compat_get_timeval);
131
132int compat_put_timeval(const struct timeval *tv, void __user *utv)
133{
134 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700135 return copy_to_user(utv, tv, sizeof(*tv)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800136 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800137 return __compat_put_timeval(tv, utv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800138}
139EXPORT_SYMBOL_GPL(compat_put_timeval);
140
141int compat_get_timespec(struct timespec *ts, const void __user *uts)
142{
143 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700144 return copy_from_user(ts, uts, sizeof(*ts)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800145 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800146 return __compat_get_timespec(ts, uts);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800147}
148EXPORT_SYMBOL_GPL(compat_get_timespec);
149
150int compat_put_timespec(const struct timespec *ts, void __user *uts)
151{
152 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700153 return copy_to_user(uts, ts, sizeof(*ts)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800154 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800155 return __compat_put_timespec(ts, uts);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800156}
157EXPORT_SYMBOL_GPL(compat_put_timespec);
158
H. Peter Anvin81993e82014-02-01 18:54:11 -0800159int compat_convert_timespec(struct timespec __user **kts,
160 const void __user *cts)
161{
162 struct timespec ts;
163 struct timespec __user *uts;
164
165 if (!cts || COMPAT_USE_64BIT_TIME) {
166 *kts = (struct timespec __user *)cts;
167 return 0;
168 }
169
170 uts = compat_alloc_user_space(sizeof(ts));
171 if (!uts)
172 return -EFAULT;
173 if (compat_get_timespec(&ts, cts))
174 return -EFAULT;
175 if (copy_to_user(uts, &ts, sizeof(ts)))
176 return -EFAULT;
177
178 *kts = uts;
179 return 0;
180}
181
Al Viro54ad9c42017-06-07 09:42:37 +0100182int get_compat_itimerval(struct itimerval *o, const struct compat_itimerval __user *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Al Viro54ad9c42017-06-07 09:42:37 +0100184 struct compat_itimerval v32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Al Viro54ad9c42017-06-07 09:42:37 +0100186 if (copy_from_user(&v32, i, sizeof(struct compat_itimerval)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return -EFAULT;
Al Viro54ad9c42017-06-07 09:42:37 +0100188 o->it_interval.tv_sec = v32.it_interval.tv_sec;
189 o->it_interval.tv_usec = v32.it_interval.tv_usec;
190 o->it_value.tv_sec = v32.it_value.tv_sec;
191 o->it_value.tv_usec = v32.it_value.tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return 0;
193}
194
Al Viro54ad9c42017-06-07 09:42:37 +0100195int put_compat_itimerval(struct compat_itimerval __user *o, const struct itimerval *i)
196{
197 struct compat_itimerval v32;
198
199 v32.it_interval.tv_sec = i->it_interval.tv_sec;
200 v32.it_interval.tv_usec = i->it_interval.tv_usec;
201 v32.it_value.tv_sec = i->it_value.tv_sec;
202 v32.it_value.tv_usec = i->it_value.tv_usec;
203 return copy_to_user(o, &v32, sizeof(struct compat_itimerval)) ? -EFAULT : 0;
204}
205
Frank Mayharf06febc2008-09-12 09:54:39 -0700206static compat_clock_t clock_t_to_compat_clock_t(clock_t x)
207{
208 return compat_jiffies_to_clock_t(clock_t_to_jiffies(x));
209}
210
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100211COMPAT_SYSCALL_DEFINE1(times, struct compat_tms __user *, tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (tbuf) {
Frank Mayharf06febc2008-09-12 09:54:39 -0700214 struct tms tms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 struct compat_tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Frank Mayharf06febc2008-09-12 09:54:39 -0700217 do_sys_times(&tms);
218 /* Convert our struct tms to the compat version. */
219 tmp.tms_utime = clock_t_to_compat_clock_t(tms.tms_utime);
220 tmp.tms_stime = clock_t_to_compat_clock_t(tms.tms_stime);
221 tmp.tms_cutime = clock_t_to_compat_clock_t(tms.tms_cutime);
222 tmp.tms_cstime = clock_t_to_compat_clock_t(tms.tms_cstime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (copy_to_user(tbuf, &tmp, sizeof(tmp)))
224 return -EFAULT;
225 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800226 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return compat_jiffies_to_clock_t(jiffies);
228}
229
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400230#ifdef __ARCH_WANT_SYS_SIGPENDING
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/*
233 * Assumption: old_sigset_t and compat_old_sigset_t are both
234 * types that can be passed to put_user()/get_user().
235 */
236
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100237COMPAT_SYSCALL_DEFINE1(sigpending, compat_old_sigset_t __user *, set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 old_sigset_t s;
240 long ret;
241 mm_segment_t old_fs = get_fs();
242
243 set_fs(KERNEL_DS);
244 ret = sys_sigpending((old_sigset_t __user *) &s);
245 set_fs(old_fs);
246 if (ret == 0)
247 ret = put_user(s, set);
248 return ret;
249}
250
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400251#endif
252
253#ifdef __ARCH_WANT_SYS_SIGPROCMASK
254
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300255/*
256 * sys_sigprocmask SIG_SETMASK sets the first (compat) word of the
257 * blocked set of signals to the supplied signal set
258 */
259static inline void compat_sig_setmask(sigset_t *blocked, compat_sigset_word set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300261 memcpy(blocked->sig, &set, sizeof(set));
262}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Al Viro5cf22102012-11-25 19:41:01 -0500264COMPAT_SYSCALL_DEFINE3(sigprocmask, int, how,
265 compat_old_sigset_t __user *, nset,
266 compat_old_sigset_t __user *, oset)
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300267{
268 old_sigset_t old_set, new_set;
269 sigset_t new_blocked;
270
271 old_set = current->blocked.sig[0];
272
273 if (nset) {
274 if (get_user(new_set, nset))
275 return -EFAULT;
276 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
277
278 new_blocked = current->blocked;
279
280 switch (how) {
281 case SIG_BLOCK:
282 sigaddsetmask(&new_blocked, new_set);
283 break;
284 case SIG_UNBLOCK:
285 sigdelsetmask(&new_blocked, new_set);
286 break;
287 case SIG_SETMASK:
288 compat_sig_setmask(&new_blocked, new_set);
289 break;
290 default:
291 return -EINVAL;
292 }
293
294 set_current_blocked(&new_blocked);
295 }
296
297 if (oset) {
298 if (put_user(old_set, oset))
299 return -EFAULT;
300 }
301
302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400305#endif
306
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100307COMPAT_SYSCALL_DEFINE2(setrlimit, unsigned int, resource,
308 struct compat_rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 struct rlimit r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 if (!access_ok(VERIFY_READ, rlim, sizeof(*rlim)) ||
313 __get_user(r.rlim_cur, &rlim->rlim_cur) ||
314 __get_user(r.rlim_max, &rlim->rlim_max))
315 return -EFAULT;
316
317 if (r.rlim_cur == COMPAT_RLIM_INFINITY)
318 r.rlim_cur = RLIM_INFINITY;
319 if (r.rlim_max == COMPAT_RLIM_INFINITY)
320 r.rlim_max = RLIM_INFINITY;
Jiri Slabyb9518342010-05-04 11:28:25 +0200321 return do_prlimit(current, resource, &r, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324#ifdef COMPAT_RLIM_OLD_INFINITY
325
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100326COMPAT_SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
327 struct compat_rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct rlimit r;
330 int ret;
331 mm_segment_t old_fs = get_fs();
332
333 set_fs(KERNEL_DS);
H. Peter Anvindce44e02014-02-02 17:57:28 -0800334 ret = sys_old_getrlimit(resource, (struct rlimit __user *)&r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 set_fs(old_fs);
336
337 if (!ret) {
338 if (r.rlim_cur > COMPAT_RLIM_OLD_INFINITY)
339 r.rlim_cur = COMPAT_RLIM_INFINITY;
340 if (r.rlim_max > COMPAT_RLIM_OLD_INFINITY)
341 r.rlim_max = COMPAT_RLIM_INFINITY;
342
343 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
344 __put_user(r.rlim_cur, &rlim->rlim_cur) ||
345 __put_user(r.rlim_max, &rlim->rlim_max))
346 return -EFAULT;
347 }
348 return ret;
349}
350
351#endif
352
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100353COMPAT_SYSCALL_DEFINE2(getrlimit, unsigned int, resource,
354 struct compat_rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 struct rlimit r;
357 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Jiri Slabyb9518342010-05-04 11:28:25 +0200359 ret = do_prlimit(current, resource, NULL, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (!ret) {
361 if (r.rlim_cur > COMPAT_RLIM_INFINITY)
362 r.rlim_cur = COMPAT_RLIM_INFINITY;
363 if (r.rlim_max > COMPAT_RLIM_INFINITY)
364 r.rlim_max = COMPAT_RLIM_INFINITY;
365
366 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
367 __put_user(r.rlim_cur, &rlim->rlim_cur) ||
368 __put_user(r.rlim_max, &rlim->rlim_max))
369 return -EFAULT;
370 }
371 return ret;
372}
373
374int put_compat_rusage(const struct rusage *r, struct compat_rusage __user *ru)
375{
376 if (!access_ok(VERIFY_WRITE, ru, sizeof(*ru)) ||
377 __put_user(r->ru_utime.tv_sec, &ru->ru_utime.tv_sec) ||
378 __put_user(r->ru_utime.tv_usec, &ru->ru_utime.tv_usec) ||
379 __put_user(r->ru_stime.tv_sec, &ru->ru_stime.tv_sec) ||
380 __put_user(r->ru_stime.tv_usec, &ru->ru_stime.tv_usec) ||
381 __put_user(r->ru_maxrss, &ru->ru_maxrss) ||
382 __put_user(r->ru_ixrss, &ru->ru_ixrss) ||
383 __put_user(r->ru_idrss, &ru->ru_idrss) ||
384 __put_user(r->ru_isrss, &ru->ru_isrss) ||
385 __put_user(r->ru_minflt, &ru->ru_minflt) ||
386 __put_user(r->ru_majflt, &ru->ru_majflt) ||
387 __put_user(r->ru_nswap, &ru->ru_nswap) ||
388 __put_user(r->ru_inblock, &ru->ru_inblock) ||
389 __put_user(r->ru_oublock, &ru->ru_oublock) ||
390 __put_user(r->ru_msgsnd, &ru->ru_msgsnd) ||
391 __put_user(r->ru_msgrcv, &ru->ru_msgrcv) ||
392 __put_user(r->ru_nsignals, &ru->ru_nsignals) ||
393 __put_user(r->ru_nvcsw, &ru->ru_nvcsw) ||
394 __put_user(r->ru_nivcsw, &ru->ru_nivcsw))
395 return -EFAULT;
396 return 0;
397}
398
Al Viro8d9807b2012-12-23 14:56:40 -0500399COMPAT_SYSCALL_DEFINE4(wait4,
400 compat_pid_t, pid,
401 compat_uint_t __user *, stat_addr,
402 int, options,
403 struct compat_rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 if (!ru) {
406 return sys_wait4(pid, stat_addr, options, NULL);
407 } else {
408 struct rusage r;
409 int ret;
410 unsigned int status;
411 mm_segment_t old_fs = get_fs();
412
413 set_fs (KERNEL_DS);
414 ret = sys_wait4(pid,
415 (stat_addr ?
416 (unsigned int __user *) &status : NULL),
417 options, (struct rusage __user *) &r);
418 set_fs (old_fs);
419
420 if (ret > 0) {
421 if (put_compat_rusage(&r, ru))
422 return -EFAULT;
423 if (stat_addr && put_user(status, stat_addr))
424 return -EFAULT;
425 }
426 return ret;
427 }
428}
429
Al Viro8d9807b2012-12-23 14:56:40 -0500430COMPAT_SYSCALL_DEFINE5(waitid,
431 int, which, compat_pid_t, pid,
432 struct compat_siginfo __user *, uinfo, int, options,
433 struct compat_rusage __user *, uru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 siginfo_t info;
436 struct rusage ru;
437 long ret;
438 mm_segment_t old_fs = get_fs();
439
440 memset(&info, 0, sizeof(info));
441
442 set_fs(KERNEL_DS);
443 ret = sys_waitid(which, pid, (siginfo_t __user *)&info, options,
444 uru ? (struct rusage __user *)&ru : NULL);
445 set_fs(old_fs);
446
447 if ((ret < 0) || (info.si_signo == 0))
448 return ret;
449
450 if (uru) {
Al Viroa566c282012-12-23 23:14:49 -0500451 /* sys_waitid() overwrites everything in ru */
452 if (COMPAT_USE_64BIT_TIME)
453 ret = copy_to_user(uru, &ru, sizeof(ru));
454 else
455 ret = put_compat_rusage(&ru, uru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (ret)
Dan Carpenterbffea772013-02-21 16:41:57 -0800457 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459
460 BUG_ON(info.si_code & __SI_MASK);
461 info.si_code |= __SI_CHLD;
462 return copy_siginfo_to_user32(uinfo, &info);
463}
464
465static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
Rusty Russella45185d2009-01-01 10:12:24 +1030466 unsigned len, struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 unsigned long *k;
469
Rusty Russella45185d2009-01-01 10:12:24 +1030470 if (len < cpumask_size())
471 memset(new_mask, 0, cpumask_size());
472 else if (len > cpumask_size())
473 len = cpumask_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Rusty Russella45185d2009-01-01 10:12:24 +1030475 k = cpumask_bits(new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return compat_get_bitmap(k, user_mask_ptr, len * 8);
477}
478
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100479COMPAT_SYSCALL_DEFINE3(sched_setaffinity, compat_pid_t, pid,
480 unsigned int, len,
481 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Rusty Russella45185d2009-01-01 10:12:24 +1030483 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 int retval;
485
Rusty Russella45185d2009-01-01 10:12:24 +1030486 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
487 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Rusty Russella45185d2009-01-01 10:12:24 +1030489 retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
490 if (retval)
491 goto out;
492
493 retval = sched_setaffinity(pid, new_mask);
494out:
495 free_cpumask_var(new_mask);
496 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100499COMPAT_SYSCALL_DEFINE3(sched_getaffinity, compat_pid_t, pid, unsigned int, len,
500 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 int ret;
Rusty Russella45185d2009-01-01 10:12:24 +1030503 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900505 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
506 return -EINVAL;
507 if (len & (sizeof(compat_ulong_t)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return -EINVAL;
509
Rusty Russella45185d2009-01-01 10:12:24 +1030510 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
511 return -ENOMEM;
512
513 ret = sched_getaffinity(pid, mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900514 if (ret == 0) {
515 size_t retlen = min_t(size_t, len, cpumask_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900517 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
518 ret = -EFAULT;
519 else
520 ret = retlen;
521 }
Rusty Russella45185d2009-01-01 10:12:24 +1030522 free_cpumask_var(mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900523
Rusty Russella45185d2009-01-01 10:12:24 +1030524 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
Davide Libenzi83f5d122007-05-10 22:23:18 -0700527int get_compat_itimerspec(struct itimerspec *dst,
528 const struct compat_itimerspec __user *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700529{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800530 if (__compat_get_timespec(&dst->it_interval, &src->it_interval) ||
531 __compat_get_timespec(&dst->it_value, &src->it_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return -EFAULT;
533 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700534}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Davide Libenzi83f5d122007-05-10 22:23:18 -0700536int put_compat_itimerspec(struct compat_itimerspec __user *dst,
537 const struct itimerspec *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700538{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800539 if (__compat_put_timespec(&src->it_interval, &dst->it_interval) ||
540 __compat_put_timespec(&src->it_value, &dst->it_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return -EFAULT;
542 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700543}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545/*
546 * We currently only need the following fields from the sigevent
547 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
548 * sigev_notify_thread_id). The others are handled in user mode.
549 * We also assume that copying sigev_value.sival_int is sufficient
550 * to keep all the bits of sigev_value.sival_ptr intact.
551 */
552int get_compat_sigevent(struct sigevent *event,
553 const struct compat_sigevent __user *u_event)
554{
David S. Miller51410d32005-04-16 15:24:01 -0700555 memset(event, 0, sizeof(*event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return (!access_ok(VERIFY_READ, u_event, sizeof(*u_event)) ||
557 __get_user(event->sigev_value.sival_int,
558 &u_event->sigev_value.sival_int) ||
559 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
560 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
561 __get_user(event->sigev_notify_thread_id,
562 &u_event->sigev_notify_thread_id))
563 ? -EFAULT : 0;
564}
565
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700566long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 unsigned long bitmap_size)
568{
569 int i, j;
570 unsigned long m;
571 compat_ulong_t um;
572 unsigned long nr_compat_longs;
573
574 /* align bitmap up to nearest compat_long_t boundary */
575 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
576
577 if (!access_ok(VERIFY_READ, umask, bitmap_size / 8))
578 return -EFAULT;
579
580 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
581
582 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
583 m = 0;
584
585 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
586 /*
587 * We dont want to read past the end of the userspace
588 * bitmap. We must however ensure the end of the
589 * kernel bitmap is zeroed.
590 */
Helge Deller9b7b8192015-06-04 23:57:18 +0200591 if (nr_compat_longs) {
592 nr_compat_longs--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (__get_user(um, umask))
594 return -EFAULT;
595 } else {
596 um = 0;
597 }
598
599 umask++;
600 m |= (long)um << (j * BITS_PER_COMPAT_LONG);
601 }
602 *mask++ = m;
603 }
604
605 return 0;
606}
607
608long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
609 unsigned long bitmap_size)
610{
611 int i, j;
612 unsigned long m;
613 compat_ulong_t um;
614 unsigned long nr_compat_longs;
615
616 /* align bitmap up to nearest compat_long_t boundary */
617 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
618
619 if (!access_ok(VERIFY_WRITE, umask, bitmap_size / 8))
620 return -EFAULT;
621
622 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
623
624 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
625 m = *mask++;
626
627 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
628 um = m;
629
630 /*
631 * We dont want to write past the end of the userspace
632 * bitmap.
633 */
Helge Deller9b7b8192015-06-04 23:57:18 +0200634 if (nr_compat_longs) {
635 nr_compat_longs--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (__put_user(um, umask))
637 return -EFAULT;
638 }
639
640 umask++;
641 m >>= 4*sizeof(um);
642 m >>= 4*sizeof(um);
643 }
644 }
645
646 return 0;
647}
648
649void
Al Viro322a56c2012-12-25 13:32:58 -0500650sigset_from_compat(sigset_t *set, const compat_sigset_t *compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 switch (_NSIG_WORDS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32 );
654 case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32 );
655 case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32 );
656 case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658}
Alexander Graf1dda6062011-06-08 02:45:37 +0200659EXPORT_SYMBOL_GPL(sigset_from_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Al Viro322a56c2012-12-25 13:32:58 -0500661void
662sigset_to_compat(compat_sigset_t *compat, const sigset_t *set)
663{
664 switch (_NSIG_WORDS) {
665 case 4: compat->sig[7] = (set->sig[3] >> 32); compat->sig[6] = set->sig[3];
666 case 3: compat->sig[5] = (set->sig[2] >> 32); compat->sig[4] = set->sig[2];
667 case 2: compat->sig[3] = (set->sig[1] >> 32); compat->sig[2] = set->sig[1];
668 case 1: compat->sig[1] = (set->sig[0] >> 32); compat->sig[0] = set->sig[0];
669 }
670}
671
Al Viro28d27f22012-11-25 19:32:25 -0500672COMPAT_SYSCALL_DEFINE4(rt_sigtimedwait, compat_sigset_t __user *, uthese,
673 struct compat_siginfo __user *, uinfo,
674 struct compat_timespec __user *, uts, compat_size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 compat_sigset_t s32;
677 sigset_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 struct timespec t;
679 siginfo_t info;
Oleg Nesterov943df142011-04-27 21:44:14 +0200680 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 if (sigsetsize != sizeof(sigset_t))
683 return -EINVAL;
684
685 if (copy_from_user(&s32, uthese, sizeof(compat_sigset_t)))
686 return -EFAULT;
687 sigset_from_compat(&s, &s32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 if (uts) {
Al Virob2ddedc2012-12-24 12:31:00 -0500690 if (compat_get_timespec(&t, uts))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693
Oleg Nesterov943df142011-04-27 21:44:14 +0200694 ret = do_sigtimedwait(&s, &info, uts ? &t : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Oleg Nesterov943df142011-04-27 21:44:14 +0200696 if (ret > 0 && uinfo) {
697 if (copy_siginfo_to_user32(uinfo, &info))
698 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return ret;
Thomas Gleixner62ab4502009-04-04 21:01:06 +0000702}
703
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700704#ifdef CONFIG_NUMA
Heiko Carstens2f2728f2014-03-04 17:18:23 +0100705COMPAT_SYSCALL_DEFINE6(move_pages, pid_t, pid, compat_ulong_t, nr_pages,
706 compat_uptr_t __user *, pages32,
707 const int __user *, nodes,
708 int __user *, status,
709 int, flags)
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700710{
711 const void __user * __user *pages;
712 int i;
713
714 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
715 for (i = 0; i < nr_pages; i++) {
716 compat_uptr_t p;
717
Christoph Lameter9216dfa2006-06-23 02:03:57 -0700718 if (get_user(p, pages32 + i) ||
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700719 put_user(compat_ptr(p), pages + i))
720 return -EFAULT;
721 }
722 return sys_move_pages(pid, nr_pages, pages, nodes, status, flags);
723}
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800724
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100725COMPAT_SYSCALL_DEFINE4(migrate_pages, compat_pid_t, pid,
726 compat_ulong_t, maxnode,
727 const compat_ulong_t __user *, old_nodes,
728 const compat_ulong_t __user *, new_nodes)
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800729{
730 unsigned long __user *old = NULL;
731 unsigned long __user *new = NULL;
732 nodemask_t tmp_mask;
733 unsigned long nr_bits;
734 unsigned long size;
735
736 nr_bits = min_t(unsigned long, maxnode - 1, MAX_NUMNODES);
737 size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
738 if (old_nodes) {
739 if (compat_get_bitmap(nodes_addr(tmp_mask), old_nodes, nr_bits))
740 return -EFAULT;
741 old = compat_alloc_user_space(new_nodes ? size * 2 : size);
742 if (new_nodes)
743 new = old + size / sizeof(unsigned long);
744 if (copy_to_user(old, nodes_addr(tmp_mask), size))
745 return -EFAULT;
746 }
747 if (new_nodes) {
748 if (compat_get_bitmap(nodes_addr(tmp_mask), new_nodes, nr_bits))
749 return -EFAULT;
750 if (new == NULL)
751 new = compat_alloc_user_space(size);
752 if (copy_to_user(new, nodes_addr(tmp_mask), size))
753 return -EFAULT;
754 }
755 return sys_migrate_pages(pid, nr_bits + 1, old, new);
756}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700757#endif
Kyle McMartind4d23ad2007-02-10 01:46:00 -0800758
Al Viro6883da82012-12-25 16:59:28 -0500759COMPAT_SYSCALL_DEFINE2(sched_rr_get_interval,
760 compat_pid_t, pid,
761 struct compat_timespec __user *, interval)
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800762{
763 struct timespec t;
764 int ret;
765 mm_segment_t old_fs = get_fs();
766
767 set_fs(KERNEL_DS);
768 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
769 set_fs(old_fs);
H. Peter Anvin81993e82014-02-01 18:54:11 -0800770 if (compat_put_timespec(&t, interval))
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800771 return -EFAULT;
772 return ret;
773}
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800774
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700775/*
776 * Allocate user-space memory for the duration of a single system call,
777 * in order to marshall parameters inside a compat thunk.
778 */
779void __user *compat_alloc_user_space(unsigned long len)
780{
781 void __user *ptr;
782
783 /* If len would occupy more than half of the entire compat space... */
784 if (unlikely(len > (((compat_uptr_t)~0) >> 1)))
785 return NULL;
786
787 ptr = arch_compat_alloc_user_space(len);
788
789 if (unlikely(!access_ok(VERIFY_WRITE, ptr, len)))
790 return NULL;
791
792 return ptr;
793}
794EXPORT_SYMBOL_GPL(compat_alloc_user_space);