blob: 97087b3335438f3973e063998bb51000db7dbc5b [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
Heiko Carstens62a6fa92014-03-03 16:11:13 +010095COMPAT_SYSCALL_DEFINE2(gettimeofday, struct compat_timeval __user *, tv,
96 struct timezone __user *, tz)
Christoph Hellwigb418da12008-10-15 22:02:06 -070097{
98 if (tv) {
99 struct timeval ktv;
100 do_gettimeofday(&ktv);
H. Peter Anvin81993e82014-02-01 18:54:11 -0800101 if (compat_put_timeval(&ktv, tv))
Christoph Hellwigb418da12008-10-15 22:02:06 -0700102 return -EFAULT;
103 }
104 if (tz) {
105 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
106 return -EFAULT;
107 }
108
109 return 0;
110}
111
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100112COMPAT_SYSCALL_DEFINE2(settimeofday, struct compat_timeval __user *, tv,
113 struct timezone __user *, tz)
Christoph Hellwigb418da12008-10-15 22:02:06 -0700114{
Deepa Dinamani2ac00f12017-03-26 12:04:12 -0700115 struct timespec64 new_ts;
H. Peter Anvin81993e82014-02-01 18:54:11 -0800116 struct timeval user_tv;
H. Peter Anvin81993e82014-02-01 18:54:11 -0800117 struct timezone new_tz;
Christoph Hellwigb418da12008-10-15 22:02:06 -0700118
119 if (tv) {
H. Peter Anvin81993e82014-02-01 18:54:11 -0800120 if (compat_get_timeval(&user_tv, tv))
Christoph Hellwigb418da12008-10-15 22:02:06 -0700121 return -EFAULT;
H. Peter Anvin81993e82014-02-01 18:54:11 -0800122 new_ts.tv_sec = user_tv.tv_sec;
123 new_ts.tv_nsec = user_tv.tv_usec * NSEC_PER_USEC;
Christoph Hellwigb418da12008-10-15 22:02:06 -0700124 }
125 if (tz) {
H. Peter Anvin81993e82014-02-01 18:54:11 -0800126 if (copy_from_user(&new_tz, tz, sizeof(*tz)))
Christoph Hellwigb418da12008-10-15 22:02:06 -0700127 return -EFAULT;
128 }
129
Deepa Dinamani2ac00f12017-03-26 12:04:12 -0700130 return do_sys_settimeofday64(tv ? &new_ts : NULL, tz ? &new_tz : NULL);
Christoph Hellwigb418da12008-10-15 22:02:06 -0700131}
132
H. Peter Anvin81993e82014-02-01 18:54:11 -0800133static int __compat_get_timeval(struct timeval *tv, const struct compat_timeval __user *ctv)
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800134{
135 return (!access_ok(VERIFY_READ, ctv, sizeof(*ctv)) ||
136 __get_user(tv->tv_sec, &ctv->tv_sec) ||
137 __get_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
138}
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800139
H. Peter Anvin81993e82014-02-01 18:54:11 -0800140static int __compat_put_timeval(const struct timeval *tv, struct compat_timeval __user *ctv)
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800141{
142 return (!access_ok(VERIFY_WRITE, ctv, sizeof(*ctv)) ||
143 __put_user(tv->tv_sec, &ctv->tv_sec) ||
144 __put_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
145}
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800146
H. Peter Anvin81993e82014-02-01 18:54:11 -0800147static int __compat_get_timespec(struct timespec *ts, const struct compat_timespec __user *cts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 return (!access_ok(VERIFY_READ, cts, sizeof(*cts)) ||
150 __get_user(ts->tv_sec, &cts->tv_sec) ||
151 __get_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
152}
153
H. Peter Anvin81993e82014-02-01 18:54:11 -0800154static int __compat_put_timespec(const struct timespec *ts, struct compat_timespec __user *cts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 return (!access_ok(VERIFY_WRITE, cts, sizeof(*cts)) ||
157 __put_user(ts->tv_sec, &cts->tv_sec) ||
158 __put_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
159}
160
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800161int compat_get_timeval(struct timeval *tv, const void __user *utv)
162{
163 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700164 return copy_from_user(tv, utv, sizeof(*tv)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800165 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800166 return __compat_get_timeval(tv, utv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800167}
168EXPORT_SYMBOL_GPL(compat_get_timeval);
169
170int compat_put_timeval(const struct timeval *tv, void __user *utv)
171{
172 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700173 return copy_to_user(utv, tv, sizeof(*tv)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800174 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800175 return __compat_put_timeval(tv, utv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800176}
177EXPORT_SYMBOL_GPL(compat_put_timeval);
178
179int compat_get_timespec(struct timespec *ts, const void __user *uts)
180{
181 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700182 return copy_from_user(ts, uts, sizeof(*ts)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800183 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800184 return __compat_get_timespec(ts, uts);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800185}
186EXPORT_SYMBOL_GPL(compat_get_timespec);
187
188int compat_put_timespec(const struct timespec *ts, void __user *uts)
189{
190 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -0700191 return copy_to_user(uts, ts, sizeof(*ts)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800192 else
H. Peter Anvin81993e82014-02-01 18:54:11 -0800193 return __compat_put_timespec(ts, uts);
H. Peter Anvin6684ba22012-02-19 17:38:00 -0800194}
195EXPORT_SYMBOL_GPL(compat_put_timespec);
196
H. Peter Anvin81993e82014-02-01 18:54:11 -0800197int compat_convert_timespec(struct timespec __user **kts,
198 const void __user *cts)
199{
200 struct timespec ts;
201 struct timespec __user *uts;
202
203 if (!cts || COMPAT_USE_64BIT_TIME) {
204 *kts = (struct timespec __user *)cts;
205 return 0;
206 }
207
208 uts = compat_alloc_user_space(sizeof(ts));
209 if (!uts)
210 return -EFAULT;
211 if (compat_get_timespec(&ts, cts))
212 return -EFAULT;
213 if (copy_to_user(uts, &ts, sizeof(ts)))
214 return -EFAULT;
215
216 *kts = uts;
217 return 0;
218}
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220static inline long get_compat_itimerval(struct itimerval *o,
221 struct compat_itimerval __user *i)
222{
223 return (!access_ok(VERIFY_READ, i, sizeof(*i)) ||
224 (__get_user(o->it_interval.tv_sec, &i->it_interval.tv_sec) |
225 __get_user(o->it_interval.tv_usec, &i->it_interval.tv_usec) |
226 __get_user(o->it_value.tv_sec, &i->it_value.tv_sec) |
227 __get_user(o->it_value.tv_usec, &i->it_value.tv_usec)));
228}
229
230static inline long put_compat_itimerval(struct compat_itimerval __user *o,
231 struct itimerval *i)
232{
233 return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
234 (__put_user(i->it_interval.tv_sec, &o->it_interval.tv_sec) |
235 __put_user(i->it_interval.tv_usec, &o->it_interval.tv_usec) |
236 __put_user(i->it_value.tv_sec, &o->it_value.tv_sec) |
237 __put_user(i->it_value.tv_usec, &o->it_value.tv_usec)));
238}
239
Nicolas Pitrebaa73d92016-11-11 00:10:10 -0500240asmlinkage long sys_ni_posix_timers(void);
241
Al Viro37784072012-12-24 17:28:40 -0500242COMPAT_SYSCALL_DEFINE2(getitimer, int, which,
243 struct compat_itimerval __user *, it)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct itimerval kit;
246 int error;
247
Nicolas Pitrebaa73d92016-11-11 00:10:10 -0500248 if (!IS_ENABLED(CONFIG_POSIX_TIMERS))
249 return sys_ni_posix_timers();
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 error = do_getitimer(which, &kit);
252 if (!error && put_compat_itimerval(it, &kit))
253 error = -EFAULT;
254 return error;
255}
256
Al Viro37784072012-12-24 17:28:40 -0500257COMPAT_SYSCALL_DEFINE3(setitimer, int, which,
258 struct compat_itimerval __user *, in,
259 struct compat_itimerval __user *, out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 struct itimerval kin, kout;
262 int error;
263
Nicolas Pitrebaa73d92016-11-11 00:10:10 -0500264 if (!IS_ENABLED(CONFIG_POSIX_TIMERS))
265 return sys_ni_posix_timers();
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (in) {
268 if (get_compat_itimerval(&kin, in))
269 return -EFAULT;
270 } else
271 memset(&kin, 0, sizeof(kin));
272
273 error = do_setitimer(which, &kin, out ? &kout : NULL);
274 if (error || !out)
275 return error;
276 if (put_compat_itimerval(out, &kout))
277 return -EFAULT;
278 return 0;
279}
280
Frank Mayharf06febc2008-09-12 09:54:39 -0700281static compat_clock_t clock_t_to_compat_clock_t(clock_t x)
282{
283 return compat_jiffies_to_clock_t(clock_t_to_jiffies(x));
284}
285
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100286COMPAT_SYSCALL_DEFINE1(times, struct compat_tms __user *, tbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (tbuf) {
Frank Mayharf06febc2008-09-12 09:54:39 -0700289 struct tms tms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 struct compat_tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Frank Mayharf06febc2008-09-12 09:54:39 -0700292 do_sys_times(&tms);
293 /* Convert our struct tms to the compat version. */
294 tmp.tms_utime = clock_t_to_compat_clock_t(tms.tms_utime);
295 tmp.tms_stime = clock_t_to_compat_clock_t(tms.tms_stime);
296 tmp.tms_cutime = clock_t_to_compat_clock_t(tms.tms_cutime);
297 tmp.tms_cstime = clock_t_to_compat_clock_t(tms.tms_cstime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (copy_to_user(tbuf, &tmp, sizeof(tmp)))
299 return -EFAULT;
300 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800301 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return compat_jiffies_to_clock_t(jiffies);
303}
304
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400305#ifdef __ARCH_WANT_SYS_SIGPENDING
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
308 * Assumption: old_sigset_t and compat_old_sigset_t are both
309 * types that can be passed to put_user()/get_user().
310 */
311
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100312COMPAT_SYSCALL_DEFINE1(sigpending, compat_old_sigset_t __user *, set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 old_sigset_t s;
315 long ret;
316 mm_segment_t old_fs = get_fs();
317
318 set_fs(KERNEL_DS);
319 ret = sys_sigpending((old_sigset_t __user *) &s);
320 set_fs(old_fs);
321 if (ret == 0)
322 ret = put_user(s, set);
323 return ret;
324}
325
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400326#endif
327
328#ifdef __ARCH_WANT_SYS_SIGPROCMASK
329
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300330/*
331 * sys_sigprocmask SIG_SETMASK sets the first (compat) word of the
332 * blocked set of signals to the supplied signal set
333 */
334static inline void compat_sig_setmask(sigset_t *blocked, compat_sigset_word set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300336 memcpy(blocked->sig, &set, sizeof(set));
337}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Al Viro5cf22102012-11-25 19:41:01 -0500339COMPAT_SYSCALL_DEFINE3(sigprocmask, int, how,
340 compat_old_sigset_t __user *, nset,
341 compat_old_sigset_t __user *, oset)
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300342{
343 old_sigset_t old_set, new_set;
344 sigset_t new_blocked;
345
346 old_set = current->blocked.sig[0];
347
348 if (nset) {
349 if (get_user(new_set, nset))
350 return -EFAULT;
351 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
352
353 new_blocked = current->blocked;
354
355 switch (how) {
356 case SIG_BLOCK:
357 sigaddsetmask(&new_blocked, new_set);
358 break;
359 case SIG_UNBLOCK:
360 sigdelsetmask(&new_blocked, new_set);
361 break;
362 case SIG_SETMASK:
363 compat_sig_setmask(&new_blocked, new_set);
364 break;
365 default:
366 return -EINVAL;
367 }
368
369 set_current_blocked(&new_blocked);
370 }
371
372 if (oset) {
373 if (put_user(old_set, oset))
374 return -EFAULT;
375 }
376
377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400380#endif
381
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100382COMPAT_SYSCALL_DEFINE2(setrlimit, unsigned int, resource,
383 struct compat_rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
385 struct rlimit r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 if (!access_ok(VERIFY_READ, rlim, sizeof(*rlim)) ||
388 __get_user(r.rlim_cur, &rlim->rlim_cur) ||
389 __get_user(r.rlim_max, &rlim->rlim_max))
390 return -EFAULT;
391
392 if (r.rlim_cur == COMPAT_RLIM_INFINITY)
393 r.rlim_cur = RLIM_INFINITY;
394 if (r.rlim_max == COMPAT_RLIM_INFINITY)
395 r.rlim_max = RLIM_INFINITY;
Jiri Slabyb9518342010-05-04 11:28:25 +0200396 return do_prlimit(current, resource, &r, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
399#ifdef COMPAT_RLIM_OLD_INFINITY
400
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100401COMPAT_SYSCALL_DEFINE2(old_getrlimit, unsigned int, resource,
402 struct compat_rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct rlimit r;
405 int ret;
406 mm_segment_t old_fs = get_fs();
407
408 set_fs(KERNEL_DS);
H. Peter Anvindce44e02014-02-02 17:57:28 -0800409 ret = sys_old_getrlimit(resource, (struct rlimit __user *)&r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 set_fs(old_fs);
411
412 if (!ret) {
413 if (r.rlim_cur > COMPAT_RLIM_OLD_INFINITY)
414 r.rlim_cur = COMPAT_RLIM_INFINITY;
415 if (r.rlim_max > COMPAT_RLIM_OLD_INFINITY)
416 r.rlim_max = COMPAT_RLIM_INFINITY;
417
418 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
419 __put_user(r.rlim_cur, &rlim->rlim_cur) ||
420 __put_user(r.rlim_max, &rlim->rlim_max))
421 return -EFAULT;
422 }
423 return ret;
424}
425
426#endif
427
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100428COMPAT_SYSCALL_DEFINE2(getrlimit, unsigned int, resource,
429 struct compat_rlimit __user *, rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 struct rlimit r;
432 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Jiri Slabyb9518342010-05-04 11:28:25 +0200434 ret = do_prlimit(current, resource, NULL, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (!ret) {
436 if (r.rlim_cur > COMPAT_RLIM_INFINITY)
437 r.rlim_cur = COMPAT_RLIM_INFINITY;
438 if (r.rlim_max > COMPAT_RLIM_INFINITY)
439 r.rlim_max = COMPAT_RLIM_INFINITY;
440
441 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
442 __put_user(r.rlim_cur, &rlim->rlim_cur) ||
443 __put_user(r.rlim_max, &rlim->rlim_max))
444 return -EFAULT;
445 }
446 return ret;
447}
448
449int put_compat_rusage(const struct rusage *r, struct compat_rusage __user *ru)
450{
451 if (!access_ok(VERIFY_WRITE, ru, sizeof(*ru)) ||
452 __put_user(r->ru_utime.tv_sec, &ru->ru_utime.tv_sec) ||
453 __put_user(r->ru_utime.tv_usec, &ru->ru_utime.tv_usec) ||
454 __put_user(r->ru_stime.tv_sec, &ru->ru_stime.tv_sec) ||
455 __put_user(r->ru_stime.tv_usec, &ru->ru_stime.tv_usec) ||
456 __put_user(r->ru_maxrss, &ru->ru_maxrss) ||
457 __put_user(r->ru_ixrss, &ru->ru_ixrss) ||
458 __put_user(r->ru_idrss, &ru->ru_idrss) ||
459 __put_user(r->ru_isrss, &ru->ru_isrss) ||
460 __put_user(r->ru_minflt, &ru->ru_minflt) ||
461 __put_user(r->ru_majflt, &ru->ru_majflt) ||
462 __put_user(r->ru_nswap, &ru->ru_nswap) ||
463 __put_user(r->ru_inblock, &ru->ru_inblock) ||
464 __put_user(r->ru_oublock, &ru->ru_oublock) ||
465 __put_user(r->ru_msgsnd, &ru->ru_msgsnd) ||
466 __put_user(r->ru_msgrcv, &ru->ru_msgrcv) ||
467 __put_user(r->ru_nsignals, &ru->ru_nsignals) ||
468 __put_user(r->ru_nvcsw, &ru->ru_nvcsw) ||
469 __put_user(r->ru_nivcsw, &ru->ru_nivcsw))
470 return -EFAULT;
471 return 0;
472}
473
Al Viro8d9807b2012-12-23 14:56:40 -0500474COMPAT_SYSCALL_DEFINE4(wait4,
475 compat_pid_t, pid,
476 compat_uint_t __user *, stat_addr,
477 int, options,
478 struct compat_rusage __user *, ru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 if (!ru) {
481 return sys_wait4(pid, stat_addr, options, NULL);
482 } else {
483 struct rusage r;
484 int ret;
485 unsigned int status;
486 mm_segment_t old_fs = get_fs();
487
488 set_fs (KERNEL_DS);
489 ret = sys_wait4(pid,
490 (stat_addr ?
491 (unsigned int __user *) &status : NULL),
492 options, (struct rusage __user *) &r);
493 set_fs (old_fs);
494
495 if (ret > 0) {
496 if (put_compat_rusage(&r, ru))
497 return -EFAULT;
498 if (stat_addr && put_user(status, stat_addr))
499 return -EFAULT;
500 }
501 return ret;
502 }
503}
504
Al Viro8d9807b2012-12-23 14:56:40 -0500505COMPAT_SYSCALL_DEFINE5(waitid,
506 int, which, compat_pid_t, pid,
507 struct compat_siginfo __user *, uinfo, int, options,
508 struct compat_rusage __user *, uru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 siginfo_t info;
511 struct rusage ru;
512 long ret;
513 mm_segment_t old_fs = get_fs();
514
515 memset(&info, 0, sizeof(info));
516
517 set_fs(KERNEL_DS);
518 ret = sys_waitid(which, pid, (siginfo_t __user *)&info, options,
519 uru ? (struct rusage __user *)&ru : NULL);
520 set_fs(old_fs);
521
522 if ((ret < 0) || (info.si_signo == 0))
523 return ret;
524
525 if (uru) {
Al Viroa566c282012-12-23 23:14:49 -0500526 /* sys_waitid() overwrites everything in ru */
527 if (COMPAT_USE_64BIT_TIME)
528 ret = copy_to_user(uru, &ru, sizeof(ru));
529 else
530 ret = put_compat_rusage(&ru, uru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 if (ret)
Dan Carpenterbffea772013-02-21 16:41:57 -0800532 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534
535 BUG_ON(info.si_code & __SI_MASK);
536 info.si_code |= __SI_CHLD;
537 return copy_siginfo_to_user32(uinfo, &info);
538}
539
540static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
Rusty Russella45185d2009-01-01 10:12:24 +1030541 unsigned len, struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 unsigned long *k;
544
Rusty Russella45185d2009-01-01 10:12:24 +1030545 if (len < cpumask_size())
546 memset(new_mask, 0, cpumask_size());
547 else if (len > cpumask_size())
548 len = cpumask_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Rusty Russella45185d2009-01-01 10:12:24 +1030550 k = cpumask_bits(new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return compat_get_bitmap(k, user_mask_ptr, len * 8);
552}
553
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100554COMPAT_SYSCALL_DEFINE3(sched_setaffinity, compat_pid_t, pid,
555 unsigned int, len,
556 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Rusty Russella45185d2009-01-01 10:12:24 +1030558 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 int retval;
560
Rusty Russella45185d2009-01-01 10:12:24 +1030561 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
562 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Rusty Russella45185d2009-01-01 10:12:24 +1030564 retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
565 if (retval)
566 goto out;
567
568 retval = sched_setaffinity(pid, new_mask);
569out:
570 free_cpumask_var(new_mask);
571 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100574COMPAT_SYSCALL_DEFINE3(sched_getaffinity, compat_pid_t, pid, unsigned int, len,
575 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 int ret;
Rusty Russella45185d2009-01-01 10:12:24 +1030578 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900580 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
581 return -EINVAL;
582 if (len & (sizeof(compat_ulong_t)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return -EINVAL;
584
Rusty Russella45185d2009-01-01 10:12:24 +1030585 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
586 return -ENOMEM;
587
588 ret = sched_getaffinity(pid, mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900589 if (ret == 0) {
590 size_t retlen = min_t(size_t, len, cpumask_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900592 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
593 ret = -EFAULT;
594 else
595 ret = retlen;
596 }
Rusty Russella45185d2009-01-01 10:12:24 +1030597 free_cpumask_var(mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900598
Rusty Russella45185d2009-01-01 10:12:24 +1030599 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
Davide Libenzi83f5d122007-05-10 22:23:18 -0700602int get_compat_itimerspec(struct itimerspec *dst,
603 const struct compat_itimerspec __user *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700604{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800605 if (__compat_get_timespec(&dst->it_interval, &src->it_interval) ||
606 __compat_get_timespec(&dst->it_value, &src->it_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return -EFAULT;
608 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700609}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Davide Libenzi83f5d122007-05-10 22:23:18 -0700611int put_compat_itimerspec(struct compat_itimerspec __user *dst,
612 const struct itimerspec *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700613{
H. Peter Anvin81993e82014-02-01 18:54:11 -0800614 if (__compat_put_timespec(&src->it_interval, &dst->it_interval) ||
615 __compat_put_timespec(&src->it_value, &dst->it_value))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return -EFAULT;
617 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700618}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100620COMPAT_SYSCALL_DEFINE3(timer_create, clockid_t, which_clock,
621 struct compat_sigevent __user *, timer_event_spec,
622 timer_t __user *, created_timer_id)
Christoph Hellwig3a0f69d2006-01-09 20:52:08 -0800623{
624 struct sigevent __user *event = NULL;
625
626 if (timer_event_spec) {
627 struct sigevent kevent;
628
629 event = compat_alloc_user_space(sizeof(*event));
630 if (get_compat_sigevent(&kevent, timer_event_spec) ||
631 copy_to_user(event, &kevent, sizeof(*event)))
632 return -EFAULT;
633 }
634
635 return sys_timer_create(which_clock, event, created_timer_id);
636}
637
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100638COMPAT_SYSCALL_DEFINE4(timer_settime, timer_t, timer_id, int, flags,
639 struct compat_itimerspec __user *, new,
640 struct compat_itimerspec __user *, old)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700641{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 long err;
643 mm_segment_t oldfs;
644 struct itimerspec newts, oldts;
645
646 if (!new)
647 return -EINVAL;
648 if (get_compat_itimerspec(&newts, new))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700649 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 oldfs = get_fs();
651 set_fs(KERNEL_DS);
652 err = sys_timer_settime(timer_id, flags,
653 (struct itimerspec __user *) &newts,
654 (struct itimerspec __user *) &oldts);
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700655 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (!err && old && put_compat_itimerspec(old, &oldts))
657 return -EFAULT;
658 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700659}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100661COMPAT_SYSCALL_DEFINE2(timer_gettime, timer_t, timer_id,
662 struct compat_itimerspec __user *, setting)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700663{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 long err;
665 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700666 struct itimerspec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 oldfs = get_fs();
669 set_fs(KERNEL_DS);
670 err = sys_timer_gettime(timer_id,
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700671 (struct itimerspec __user *) &ts);
672 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (!err && put_compat_itimerspec(setting, &ts))
674 return -EFAULT;
675 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700676}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100678COMPAT_SYSCALL_DEFINE2(clock_settime, clockid_t, which_clock,
679 struct compat_timespec __user *, tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 long err;
682 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700683 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
H. Peter Anvin81993e82014-02-01 18:54:11 -0800685 if (compat_get_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700686 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 oldfs = get_fs();
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700688 set_fs(KERNEL_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 err = sys_clock_settime(which_clock,
690 (struct timespec __user *) &ts);
691 set_fs(oldfs);
692 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700693}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100695COMPAT_SYSCALL_DEFINE2(clock_gettime, clockid_t, which_clock,
696 struct compat_timespec __user *, tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 long err;
699 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700700 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 oldfs = get_fs();
703 set_fs(KERNEL_DS);
704 err = sys_clock_gettime(which_clock,
705 (struct timespec __user *) &ts);
706 set_fs(oldfs);
H. Peter Anvin81993e82014-02-01 18:54:11 -0800707 if (!err && compat_put_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700708 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700710}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100712COMPAT_SYSCALL_DEFINE2(clock_getres, clockid_t, which_clock,
713 struct compat_timespec __user *, tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715 long err;
716 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700717 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 oldfs = get_fs();
720 set_fs(KERNEL_DS);
721 err = sys_clock_getres(which_clock,
722 (struct timespec __user *) &ts);
723 set_fs(oldfs);
H. Peter Anvin81993e82014-02-01 18:54:11 -0800724 if (!err && tp && compat_put_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700725 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700727}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729/*
730 * We currently only need the following fields from the sigevent
731 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
732 * sigev_notify_thread_id). The others are handled in user mode.
733 * We also assume that copying sigev_value.sival_int is sufficient
734 * to keep all the bits of sigev_value.sival_ptr intact.
735 */
736int get_compat_sigevent(struct sigevent *event,
737 const struct compat_sigevent __user *u_event)
738{
David S. Miller51410d32005-04-16 15:24:01 -0700739 memset(event, 0, sizeof(*event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return (!access_ok(VERIFY_READ, u_event, sizeof(*u_event)) ||
741 __get_user(event->sigev_value.sival_int,
742 &u_event->sigev_value.sival_int) ||
743 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
744 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
745 __get_user(event->sigev_notify_thread_id,
746 &u_event->sigev_notify_thread_id))
747 ? -EFAULT : 0;
748}
749
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700750long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 unsigned long bitmap_size)
752{
753 int i, j;
754 unsigned long m;
755 compat_ulong_t um;
756 unsigned long nr_compat_longs;
757
758 /* align bitmap up to nearest compat_long_t boundary */
759 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
760
761 if (!access_ok(VERIFY_READ, umask, bitmap_size / 8))
762 return -EFAULT;
763
764 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
765
766 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
767 m = 0;
768
769 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
770 /*
771 * We dont want to read past the end of the userspace
772 * bitmap. We must however ensure the end of the
773 * kernel bitmap is zeroed.
774 */
Helge Deller9b7b8192015-06-04 23:57:18 +0200775 if (nr_compat_longs) {
776 nr_compat_longs--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (__get_user(um, umask))
778 return -EFAULT;
779 } else {
780 um = 0;
781 }
782
783 umask++;
784 m |= (long)um << (j * BITS_PER_COMPAT_LONG);
785 }
786 *mask++ = m;
787 }
788
789 return 0;
790}
791
792long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
793 unsigned long bitmap_size)
794{
795 int i, j;
796 unsigned long m;
797 compat_ulong_t um;
798 unsigned long nr_compat_longs;
799
800 /* align bitmap up to nearest compat_long_t boundary */
801 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
802
803 if (!access_ok(VERIFY_WRITE, umask, bitmap_size / 8))
804 return -EFAULT;
805
806 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
807
808 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
809 m = *mask++;
810
811 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
812 um = m;
813
814 /*
815 * We dont want to write past the end of the userspace
816 * bitmap.
817 */
Helge Deller9b7b8192015-06-04 23:57:18 +0200818 if (nr_compat_longs) {
819 nr_compat_longs--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (__put_user(um, umask))
821 return -EFAULT;
822 }
823
824 umask++;
825 m >>= 4*sizeof(um);
826 m >>= 4*sizeof(um);
827 }
828 }
829
830 return 0;
831}
832
833void
Al Viro322a56c2012-12-25 13:32:58 -0500834sigset_from_compat(sigset_t *set, const compat_sigset_t *compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 switch (_NSIG_WORDS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32 );
838 case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32 );
839 case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32 );
840 case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842}
Alexander Graf1dda6062011-06-08 02:45:37 +0200843EXPORT_SYMBOL_GPL(sigset_from_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Al Viro322a56c2012-12-25 13:32:58 -0500845void
846sigset_to_compat(compat_sigset_t *compat, const sigset_t *set)
847{
848 switch (_NSIG_WORDS) {
849 case 4: compat->sig[7] = (set->sig[3] >> 32); compat->sig[6] = set->sig[3];
850 case 3: compat->sig[5] = (set->sig[2] >> 32); compat->sig[4] = set->sig[2];
851 case 2: compat->sig[3] = (set->sig[1] >> 32); compat->sig[2] = set->sig[1];
852 case 1: compat->sig[1] = (set->sig[0] >> 32); compat->sig[0] = set->sig[0];
853 }
854}
855
Al Viro28d27f22012-11-25 19:32:25 -0500856COMPAT_SYSCALL_DEFINE4(rt_sigtimedwait, compat_sigset_t __user *, uthese,
857 struct compat_siginfo __user *, uinfo,
858 struct compat_timespec __user *, uts, compat_size_t, sigsetsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 compat_sigset_t s32;
861 sigset_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 struct timespec t;
863 siginfo_t info;
Oleg Nesterov943df142011-04-27 21:44:14 +0200864 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if (sigsetsize != sizeof(sigset_t))
867 return -EINVAL;
868
869 if (copy_from_user(&s32, uthese, sizeof(compat_sigset_t)))
870 return -EFAULT;
871 sigset_from_compat(&s, &s32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 if (uts) {
Al Virob2ddedc2012-12-24 12:31:00 -0500874 if (compat_get_timespec(&t, uts))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
Oleg Nesterov943df142011-04-27 21:44:14 +0200878 ret = do_sigtimedwait(&s, &info, uts ? &t : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Oleg Nesterov943df142011-04-27 21:44:14 +0200880 if (ret > 0 && uinfo) {
881 if (copy_siginfo_to_user32(uinfo, &info))
882 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return ret;
Thomas Gleixner62ab4502009-04-04 21:01:06 +0000886}
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888#ifdef __ARCH_WANT_COMPAT_SYS_TIME
889
890/* compat_time_t is a 32 bit "long" and needs to get converted. */
891
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100892COMPAT_SYSCALL_DEFINE1(time, compat_time_t __user *, tloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894 compat_time_t i;
895 struct timeval tv;
896
897 do_gettimeofday(&tv);
898 i = tv.tv_sec;
899
900 if (tloc) {
901 if (put_user(i,tloc))
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800902 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800904 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return i;
906}
907
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100908COMPAT_SYSCALL_DEFINE1(stime, compat_time_t __user *, tptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct timespec tv;
911 int err;
912
913 if (get_user(tv.tv_sec, tptr))
914 return -EFAULT;
915
916 tv.tv_nsec = 0;
917
918 err = security_settime(&tv, NULL);
919 if (err)
920 return err;
921
922 do_settimeofday(&tv);
923 return 0;
924}
925
926#endif /* __ARCH_WANT_COMPAT_SYS_TIME */
David Woodhouse150256d2006-01-18 17:43:57 -0800927
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700928#ifdef CONFIG_NUMA
Heiko Carstens2f2728f2014-03-04 17:18:23 +0100929COMPAT_SYSCALL_DEFINE6(move_pages, pid_t, pid, compat_ulong_t, nr_pages,
930 compat_uptr_t __user *, pages32,
931 const int __user *, nodes,
932 int __user *, status,
933 int, flags)
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700934{
935 const void __user * __user *pages;
936 int i;
937
938 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
939 for (i = 0; i < nr_pages; i++) {
940 compat_uptr_t p;
941
Christoph Lameter9216dfa2006-06-23 02:03:57 -0700942 if (get_user(p, pages32 + i) ||
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700943 put_user(compat_ptr(p), pages + i))
944 return -EFAULT;
945 }
946 return sys_move_pages(pid, nr_pages, pages, nodes, status, flags);
947}
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800948
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100949COMPAT_SYSCALL_DEFINE4(migrate_pages, compat_pid_t, pid,
950 compat_ulong_t, maxnode,
951 const compat_ulong_t __user *, old_nodes,
952 const compat_ulong_t __user *, new_nodes)
Stephen Rothwell3fd59392006-11-02 22:07:24 -0800953{
954 unsigned long __user *old = NULL;
955 unsigned long __user *new = NULL;
956 nodemask_t tmp_mask;
957 unsigned long nr_bits;
958 unsigned long size;
959
960 nr_bits = min_t(unsigned long, maxnode - 1, MAX_NUMNODES);
961 size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
962 if (old_nodes) {
963 if (compat_get_bitmap(nodes_addr(tmp_mask), old_nodes, nr_bits))
964 return -EFAULT;
965 old = compat_alloc_user_space(new_nodes ? size * 2 : size);
966 if (new_nodes)
967 new = old + size / sizeof(unsigned long);
968 if (copy_to_user(old, nodes_addr(tmp_mask), size))
969 return -EFAULT;
970 }
971 if (new_nodes) {
972 if (compat_get_bitmap(nodes_addr(tmp_mask), new_nodes, nr_bits))
973 return -EFAULT;
974 if (new == NULL)
975 new = compat_alloc_user_space(size);
976 if (copy_to_user(new, nodes_addr(tmp_mask), size))
977 return -EFAULT;
978 }
979 return sys_migrate_pages(pid, nr_bits + 1, old, new);
980}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -0700981#endif
Kyle McMartind4d23ad2007-02-10 01:46:00 -0800982
Al Viro6883da82012-12-25 16:59:28 -0500983COMPAT_SYSCALL_DEFINE2(sched_rr_get_interval,
984 compat_pid_t, pid,
985 struct compat_timespec __user *, interval)
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800986{
987 struct timespec t;
988 int ret;
989 mm_segment_t old_fs = get_fs();
990
991 set_fs(KERNEL_DS);
992 ret = sys_sched_rr_get_interval(pid, (struct timespec __user *)&t);
993 set_fs(old_fs);
H. Peter Anvin81993e82014-02-01 18:54:11 -0800994 if (compat_put_timespec(&t, interval))
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800995 return -EFAULT;
996 return ret;
997}
Catalin Marinas0ad50c32012-12-17 16:01:45 -0800998
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700999/*
1000 * Allocate user-space memory for the duration of a single system call,
1001 * in order to marshall parameters inside a compat thunk.
1002 */
1003void __user *compat_alloc_user_space(unsigned long len)
1004{
1005 void __user *ptr;
1006
1007 /* If len would occupy more than half of the entire compat space... */
1008 if (unlikely(len > (((compat_uptr_t)~0) >> 1)))
1009 return NULL;
1010
1011 ptr = arch_compat_alloc_user_space(len);
1012
1013 if (unlikely(!access_ok(VERIFY_WRITE, ptr, len)))
1014 return NULL;
1015
1016 return ptr;
1017}
1018EXPORT_SYMBOL_GPL(compat_alloc_user_space);