blob: 80c28562f57b268987cb9599d972816e10649bed [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>
Christoph Lameter1b2db9f2006-06-23 02:03:56 -070024#include <linux/migrate.h>
Toyo Abe1711ef32006-09-29 02:00:28 -070025#include <linux/posix-timers.h>
Frank Mayharf06febc2008-09-12 09:54:39 -070026#include <linux/times.h>
Paul Mackerrase3d5a272009-01-06 14:41:02 -080027#include <linux/ptrace.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Christoph Hellwigb418da12008-10-15 22:02:06 -070032/*
33 * Note that the native side is already converted to a timespec, because
34 * that's what we want anyway.
35 */
36static int compat_get_timeval(struct timespec *o,
37 struct compat_timeval __user *i)
38{
39 long usec;
40
41 if (get_user(o->tv_sec, &i->tv_sec) ||
42 get_user(usec, &i->tv_usec))
43 return -EFAULT;
44 o->tv_nsec = usec * 1000;
45 return 0;
46}
47
48static int compat_put_timeval(struct compat_timeval __user *o,
49 struct timeval *i)
50{
51 return (put_user(i->tv_sec, &o->tv_sec) ||
52 put_user(i->tv_usec, &o->tv_usec)) ? -EFAULT : 0;
53}
54
Richard Cochran65f5d802011-02-01 13:52:23 +000055static int compat_get_timex(struct timex *txc, struct compat_timex __user *utp)
56{
57 memset(txc, 0, sizeof(struct timex));
58
59 if (!access_ok(VERIFY_READ, utp, sizeof(struct compat_timex)) ||
60 __get_user(txc->modes, &utp->modes) ||
61 __get_user(txc->offset, &utp->offset) ||
62 __get_user(txc->freq, &utp->freq) ||
63 __get_user(txc->maxerror, &utp->maxerror) ||
64 __get_user(txc->esterror, &utp->esterror) ||
65 __get_user(txc->status, &utp->status) ||
66 __get_user(txc->constant, &utp->constant) ||
67 __get_user(txc->precision, &utp->precision) ||
68 __get_user(txc->tolerance, &utp->tolerance) ||
69 __get_user(txc->time.tv_sec, &utp->time.tv_sec) ||
70 __get_user(txc->time.tv_usec, &utp->time.tv_usec) ||
71 __get_user(txc->tick, &utp->tick) ||
72 __get_user(txc->ppsfreq, &utp->ppsfreq) ||
73 __get_user(txc->jitter, &utp->jitter) ||
74 __get_user(txc->shift, &utp->shift) ||
75 __get_user(txc->stabil, &utp->stabil) ||
76 __get_user(txc->jitcnt, &utp->jitcnt) ||
77 __get_user(txc->calcnt, &utp->calcnt) ||
78 __get_user(txc->errcnt, &utp->errcnt) ||
79 __get_user(txc->stbcnt, &utp->stbcnt))
80 return -EFAULT;
81
82 return 0;
83}
84
85static int compat_put_timex(struct compat_timex __user *utp, struct timex *txc)
86{
87 if (!access_ok(VERIFY_WRITE, utp, sizeof(struct compat_timex)) ||
88 __put_user(txc->modes, &utp->modes) ||
89 __put_user(txc->offset, &utp->offset) ||
90 __put_user(txc->freq, &utp->freq) ||
91 __put_user(txc->maxerror, &utp->maxerror) ||
92 __put_user(txc->esterror, &utp->esterror) ||
93 __put_user(txc->status, &utp->status) ||
94 __put_user(txc->constant, &utp->constant) ||
95 __put_user(txc->precision, &utp->precision) ||
96 __put_user(txc->tolerance, &utp->tolerance) ||
97 __put_user(txc->time.tv_sec, &utp->time.tv_sec) ||
98 __put_user(txc->time.tv_usec, &utp->time.tv_usec) ||
99 __put_user(txc->tick, &utp->tick) ||
100 __put_user(txc->ppsfreq, &utp->ppsfreq) ||
101 __put_user(txc->jitter, &utp->jitter) ||
102 __put_user(txc->shift, &utp->shift) ||
103 __put_user(txc->stabil, &utp->stabil) ||
104 __put_user(txc->jitcnt, &utp->jitcnt) ||
105 __put_user(txc->calcnt, &utp->calcnt) ||
106 __put_user(txc->errcnt, &utp->errcnt) ||
107 __put_user(txc->stbcnt, &utp->stbcnt) ||
108 __put_user(txc->tai, &utp->tai))
109 return -EFAULT;
110 return 0;
111}
112
Christoph Hellwigb418da12008-10-15 22:02:06 -0700113asmlinkage long compat_sys_gettimeofday(struct compat_timeval __user *tv,
114 struct timezone __user *tz)
115{
116 if (tv) {
117 struct timeval ktv;
118 do_gettimeofday(&ktv);
119 if (compat_put_timeval(tv, &ktv))
120 return -EFAULT;
121 }
122 if (tz) {
123 if (copy_to_user(tz, &sys_tz, sizeof(sys_tz)))
124 return -EFAULT;
125 }
126
127 return 0;
128}
129
130asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
131 struct timezone __user *tz)
132{
133 struct timespec kts;
134 struct timezone ktz;
135
136 if (tv) {
137 if (compat_get_timeval(&kts, tv))
138 return -EFAULT;
139 }
140 if (tz) {
141 if (copy_from_user(&ktz, tz, sizeof(ktz)))
142 return -EFAULT;
143 }
144
145 return do_sys_settimeofday(tv ? &kts : NULL, tz ? &ktz : NULL);
146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148int get_compat_timespec(struct timespec *ts, const struct compat_timespec __user *cts)
149{
150 return (!access_ok(VERIFY_READ, cts, sizeof(*cts)) ||
151 __get_user(ts->tv_sec, &cts->tv_sec) ||
152 __get_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
153}
154
155int put_compat_timespec(const struct timespec *ts, struct compat_timespec __user *cts)
156{
157 return (!access_ok(VERIFY_WRITE, cts, sizeof(*cts)) ||
158 __put_user(ts->tv_sec, &cts->tv_sec) ||
159 __put_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
160}
161
Oleg Nesterov41652932008-02-01 20:35:31 +0300162static long compat_nanosleep_restart(struct restart_block *restart)
163{
164 struct compat_timespec __user *rmtp;
165 struct timespec rmt;
166 mm_segment_t oldfs;
167 long ret;
168
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100169 restart->nanosleep.rmtp = (struct timespec __user *) &rmt;
Oleg Nesterov41652932008-02-01 20:35:31 +0300170 oldfs = get_fs();
171 set_fs(KERNEL_DS);
172 ret = hrtimer_nanosleep_restart(restart);
173 set_fs(oldfs);
174
175 if (ret) {
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100176 rmtp = restart->nanosleep.compat_rmtp;
Oleg Nesterov41652932008-02-01 20:35:31 +0300177
178 if (rmtp && put_compat_timespec(&rmt, rmtp))
179 return -EFAULT;
180 }
181
182 return ret;
183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
Anton Blanchardc70878b2007-10-15 16:13:56 -0500186 struct compat_timespec __user *rmtp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Anton Blanchardc70878b2007-10-15 16:13:56 -0500188 struct timespec tu, rmt;
Oleg Nesterov41652932008-02-01 20:35:31 +0300189 mm_segment_t oldfs;
Anton Blanchardc70878b2007-10-15 16:13:56 -0500190 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Anton Blanchardc70878b2007-10-15 16:13:56 -0500192 if (get_compat_timespec(&tu, rqtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return -EFAULT;
194
Anton Blanchardc70878b2007-10-15 16:13:56 -0500195 if (!timespec_valid(&tu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return -EINVAL;
197
Oleg Nesterov41652932008-02-01 20:35:31 +0300198 oldfs = get_fs();
199 set_fs(KERNEL_DS);
200 ret = hrtimer_nanosleep(&tu,
201 rmtp ? (struct timespec __user *)&rmt : NULL,
202 HRTIMER_MODE_REL, CLOCK_MONOTONIC);
203 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Oleg Nesterov41652932008-02-01 20:35:31 +0300205 if (ret) {
206 struct restart_block *restart
207 = &current_thread_info()->restart_block;
208
209 restart->fn = compat_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100210 restart->nanosleep.compat_rmtp = rmtp;
Oleg Nesterov41652932008-02-01 20:35:31 +0300211
212 if (rmtp && put_compat_timespec(&rmt, rmtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return -EFAULT;
214 }
Anton Blanchardc70878b2007-10-15 16:13:56 -0500215
216 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
219static inline long get_compat_itimerval(struct itimerval *o,
220 struct compat_itimerval __user *i)
221{
222 return (!access_ok(VERIFY_READ, i, sizeof(*i)) ||
223 (__get_user(o->it_interval.tv_sec, &i->it_interval.tv_sec) |
224 __get_user(o->it_interval.tv_usec, &i->it_interval.tv_usec) |
225 __get_user(o->it_value.tv_sec, &i->it_value.tv_sec) |
226 __get_user(o->it_value.tv_usec, &i->it_value.tv_usec)));
227}
228
229static inline long put_compat_itimerval(struct compat_itimerval __user *o,
230 struct itimerval *i)
231{
232 return (!access_ok(VERIFY_WRITE, o, sizeof(*o)) ||
233 (__put_user(i->it_interval.tv_sec, &o->it_interval.tv_sec) |
234 __put_user(i->it_interval.tv_usec, &o->it_interval.tv_usec) |
235 __put_user(i->it_value.tv_sec, &o->it_value.tv_sec) |
236 __put_user(i->it_value.tv_usec, &o->it_value.tv_usec)));
237}
238
239asmlinkage long compat_sys_getitimer(int which,
240 struct compat_itimerval __user *it)
241{
242 struct itimerval kit;
243 int error;
244
245 error = do_getitimer(which, &kit);
246 if (!error && put_compat_itimerval(it, &kit))
247 error = -EFAULT;
248 return error;
249}
250
251asmlinkage long compat_sys_setitimer(int which,
252 struct compat_itimerval __user *in,
253 struct compat_itimerval __user *out)
254{
255 struct itimerval kin, kout;
256 int error;
257
258 if (in) {
259 if (get_compat_itimerval(&kin, in))
260 return -EFAULT;
261 } else
262 memset(&kin, 0, sizeof(kin));
263
264 error = do_setitimer(which, &kin, out ? &kout : NULL);
265 if (error || !out)
266 return error;
267 if (put_compat_itimerval(out, &kout))
268 return -EFAULT;
269 return 0;
270}
271
Frank Mayharf06febc2008-09-12 09:54:39 -0700272static compat_clock_t clock_t_to_compat_clock_t(clock_t x)
273{
274 return compat_jiffies_to_clock_t(clock_t_to_jiffies(x));
275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277asmlinkage long compat_sys_times(struct compat_tms __user *tbuf)
278{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (tbuf) {
Frank Mayharf06febc2008-09-12 09:54:39 -0700280 struct tms tms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 struct compat_tms tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Frank Mayharf06febc2008-09-12 09:54:39 -0700283 do_sys_times(&tms);
284 /* Convert our struct tms to the compat version. */
285 tmp.tms_utime = clock_t_to_compat_clock_t(tms.tms_utime);
286 tmp.tms_stime = clock_t_to_compat_clock_t(tms.tms_stime);
287 tmp.tms_cutime = clock_t_to_compat_clock_t(tms.tms_cutime);
288 tmp.tms_cstime = clock_t_to_compat_clock_t(tms.tms_cstime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (copy_to_user(tbuf, &tmp, sizeof(tmp)))
290 return -EFAULT;
291 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800292 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return compat_jiffies_to_clock_t(jiffies);
294}
295
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400296#ifdef __ARCH_WANT_SYS_SIGPENDING
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298/*
299 * Assumption: old_sigset_t and compat_old_sigset_t are both
300 * types that can be passed to put_user()/get_user().
301 */
302
303asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set)
304{
305 old_sigset_t s;
306 long ret;
307 mm_segment_t old_fs = get_fs();
308
309 set_fs(KERNEL_DS);
310 ret = sys_sigpending((old_sigset_t __user *) &s);
311 set_fs(old_fs);
312 if (ret == 0)
313 ret = put_user(s, set);
314 return ret;
315}
316
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400317#endif
318
319#ifdef __ARCH_WANT_SYS_SIGPROCMASK
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *set,
322 compat_old_sigset_t __user *oset)
323{
324 old_sigset_t s;
325 long ret;
326 mm_segment_t old_fs;
327
328 if (set && get_user(s, set))
329 return -EFAULT;
330 old_fs = get_fs();
331 set_fs(KERNEL_DS);
332 ret = sys_sigprocmask(how,
333 set ? (old_sigset_t __user *) &s : NULL,
334 oset ? (old_sigset_t __user *) &s : NULL);
335 set_fs(old_fs);
336 if (ret == 0)
337 if (oset)
338 ret = put_user(s, oset);
339 return ret;
340}
341
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400342#endif
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344asmlinkage long compat_sys_setrlimit(unsigned int resource,
345 struct compat_rlimit __user *rlim)
346{
347 struct rlimit r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 if (!access_ok(VERIFY_READ, rlim, sizeof(*rlim)) ||
350 __get_user(r.rlim_cur, &rlim->rlim_cur) ||
351 __get_user(r.rlim_max, &rlim->rlim_max))
352 return -EFAULT;
353
354 if (r.rlim_cur == COMPAT_RLIM_INFINITY)
355 r.rlim_cur = RLIM_INFINITY;
356 if (r.rlim_max == COMPAT_RLIM_INFINITY)
357 r.rlim_max = RLIM_INFINITY;
Jiri Slabyb9518342010-05-04 11:28:25 +0200358 return do_prlimit(current, resource, &r, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
361#ifdef COMPAT_RLIM_OLD_INFINITY
362
363asmlinkage long compat_sys_old_getrlimit(unsigned int resource,
364 struct compat_rlimit __user *rlim)
365{
366 struct rlimit r;
367 int ret;
368 mm_segment_t old_fs = get_fs();
369
370 set_fs(KERNEL_DS);
371 ret = sys_old_getrlimit(resource, &r);
372 set_fs(old_fs);
373
374 if (!ret) {
375 if (r.rlim_cur > COMPAT_RLIM_OLD_INFINITY)
376 r.rlim_cur = COMPAT_RLIM_INFINITY;
377 if (r.rlim_max > COMPAT_RLIM_OLD_INFINITY)
378 r.rlim_max = COMPAT_RLIM_INFINITY;
379
380 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
381 __put_user(r.rlim_cur, &rlim->rlim_cur) ||
382 __put_user(r.rlim_max, &rlim->rlim_max))
383 return -EFAULT;
384 }
385 return ret;
386}
387
388#endif
389
Jiri Slabyb9518342010-05-04 11:28:25 +0200390asmlinkage long compat_sys_getrlimit(unsigned int resource,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 struct compat_rlimit __user *rlim)
392{
393 struct rlimit r;
394 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Jiri Slabyb9518342010-05-04 11:28:25 +0200396 ret = do_prlimit(current, resource, NULL, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (!ret) {
398 if (r.rlim_cur > COMPAT_RLIM_INFINITY)
399 r.rlim_cur = COMPAT_RLIM_INFINITY;
400 if (r.rlim_max > COMPAT_RLIM_INFINITY)
401 r.rlim_max = COMPAT_RLIM_INFINITY;
402
403 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
404 __put_user(r.rlim_cur, &rlim->rlim_cur) ||
405 __put_user(r.rlim_max, &rlim->rlim_max))
406 return -EFAULT;
407 }
408 return ret;
409}
410
411int put_compat_rusage(const struct rusage *r, struct compat_rusage __user *ru)
412{
413 if (!access_ok(VERIFY_WRITE, ru, sizeof(*ru)) ||
414 __put_user(r->ru_utime.tv_sec, &ru->ru_utime.tv_sec) ||
415 __put_user(r->ru_utime.tv_usec, &ru->ru_utime.tv_usec) ||
416 __put_user(r->ru_stime.tv_sec, &ru->ru_stime.tv_sec) ||
417 __put_user(r->ru_stime.tv_usec, &ru->ru_stime.tv_usec) ||
418 __put_user(r->ru_maxrss, &ru->ru_maxrss) ||
419 __put_user(r->ru_ixrss, &ru->ru_ixrss) ||
420 __put_user(r->ru_idrss, &ru->ru_idrss) ||
421 __put_user(r->ru_isrss, &ru->ru_isrss) ||
422 __put_user(r->ru_minflt, &ru->ru_minflt) ||
423 __put_user(r->ru_majflt, &ru->ru_majflt) ||
424 __put_user(r->ru_nswap, &ru->ru_nswap) ||
425 __put_user(r->ru_inblock, &ru->ru_inblock) ||
426 __put_user(r->ru_oublock, &ru->ru_oublock) ||
427 __put_user(r->ru_msgsnd, &ru->ru_msgsnd) ||
428 __put_user(r->ru_msgrcv, &ru->ru_msgrcv) ||
429 __put_user(r->ru_nsignals, &ru->ru_nsignals) ||
430 __put_user(r->ru_nvcsw, &ru->ru_nvcsw) ||
431 __put_user(r->ru_nivcsw, &ru->ru_nivcsw))
432 return -EFAULT;
433 return 0;
434}
435
436asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru)
437{
438 struct rusage r;
439 int ret;
440 mm_segment_t old_fs = get_fs();
441
442 set_fs(KERNEL_DS);
443 ret = sys_getrusage(who, (struct rusage __user *) &r);
444 set_fs(old_fs);
445
446 if (ret)
447 return ret;
448
449 if (put_compat_rusage(&r, ru))
450 return -EFAULT;
451
452 return 0;
453}
454
455asmlinkage long
456compat_sys_wait4(compat_pid_t pid, compat_uint_t __user *stat_addr, int options,
457 struct compat_rusage __user *ru)
458{
459 if (!ru) {
460 return sys_wait4(pid, stat_addr, options, NULL);
461 } else {
462 struct rusage r;
463 int ret;
464 unsigned int status;
465 mm_segment_t old_fs = get_fs();
466
467 set_fs (KERNEL_DS);
468 ret = sys_wait4(pid,
469 (stat_addr ?
470 (unsigned int __user *) &status : NULL),
471 options, (struct rusage __user *) &r);
472 set_fs (old_fs);
473
474 if (ret > 0) {
475 if (put_compat_rusage(&r, ru))
476 return -EFAULT;
477 if (stat_addr && put_user(status, stat_addr))
478 return -EFAULT;
479 }
480 return ret;
481 }
482}
483
484asmlinkage long compat_sys_waitid(int which, compat_pid_t pid,
485 struct compat_siginfo __user *uinfo, int options,
486 struct compat_rusage __user *uru)
487{
488 siginfo_t info;
489 struct rusage ru;
490 long ret;
491 mm_segment_t old_fs = get_fs();
492
493 memset(&info, 0, sizeof(info));
494
495 set_fs(KERNEL_DS);
496 ret = sys_waitid(which, pid, (siginfo_t __user *)&info, options,
497 uru ? (struct rusage __user *)&ru : NULL);
498 set_fs(old_fs);
499
500 if ((ret < 0) || (info.si_signo == 0))
501 return ret;
502
503 if (uru) {
504 ret = put_compat_rusage(&ru, uru);
505 if (ret)
506 return ret;
507 }
508
509 BUG_ON(info.si_code & __SI_MASK);
510 info.si_code |= __SI_CHLD;
511 return copy_siginfo_to_user32(uinfo, &info);
512}
513
514static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
Rusty Russella45185d2009-01-01 10:12:24 +1030515 unsigned len, struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
517 unsigned long *k;
518
Rusty Russella45185d2009-01-01 10:12:24 +1030519 if (len < cpumask_size())
520 memset(new_mask, 0, cpumask_size());
521 else if (len > cpumask_size())
522 len = cpumask_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Rusty Russella45185d2009-01-01 10:12:24 +1030524 k = cpumask_bits(new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return compat_get_bitmap(k, user_mask_ptr, len * 8);
526}
527
528asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
529 unsigned int len,
530 compat_ulong_t __user *user_mask_ptr)
531{
Rusty Russella45185d2009-01-01 10:12:24 +1030532 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int retval;
534
Rusty Russella45185d2009-01-01 10:12:24 +1030535 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
536 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Rusty Russella45185d2009-01-01 10:12:24 +1030538 retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
539 if (retval)
540 goto out;
541
542 retval = sched_setaffinity(pid, new_mask);
543out:
544 free_cpumask_var(new_mask);
545 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
548asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid, unsigned int len,
549 compat_ulong_t __user *user_mask_ptr)
550{
551 int ret;
Rusty Russella45185d2009-01-01 10:12:24 +1030552 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900554 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
555 return -EINVAL;
556 if (len & (sizeof(compat_ulong_t)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return -EINVAL;
558
Rusty Russella45185d2009-01-01 10:12:24 +1030559 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
560 return -ENOMEM;
561
562 ret = sched_getaffinity(pid, mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900563 if (ret == 0) {
564 size_t retlen = min_t(size_t, len, cpumask_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900566 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
567 ret = -EFAULT;
568 else
569 ret = retlen;
570 }
Rusty Russella45185d2009-01-01 10:12:24 +1030571 free_cpumask_var(mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900572
Rusty Russella45185d2009-01-01 10:12:24 +1030573 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Davide Libenzi83f5d122007-05-10 22:23:18 -0700576int get_compat_itimerspec(struct itimerspec *dst,
577 const struct compat_itimerspec __user *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700578{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (get_compat_timespec(&dst->it_interval, &src->it_interval) ||
580 get_compat_timespec(&dst->it_value, &src->it_value))
581 return -EFAULT;
582 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700583}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Davide Libenzi83f5d122007-05-10 22:23:18 -0700585int put_compat_itimerspec(struct compat_itimerspec __user *dst,
586 const struct itimerspec *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700587{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (put_compat_timespec(&src->it_interval, &dst->it_interval) ||
589 put_compat_timespec(&src->it_value, &dst->it_value))
590 return -EFAULT;
591 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700592}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Christoph Hellwig3a0f69d2006-01-09 20:52:08 -0800594long compat_sys_timer_create(clockid_t which_clock,
595 struct compat_sigevent __user *timer_event_spec,
596 timer_t __user *created_timer_id)
597{
598 struct sigevent __user *event = NULL;
599
600 if (timer_event_spec) {
601 struct sigevent kevent;
602
603 event = compat_alloc_user_space(sizeof(*event));
604 if (get_compat_sigevent(&kevent, timer_event_spec) ||
605 copy_to_user(event, &kevent, sizeof(*event)))
606 return -EFAULT;
607 }
608
609 return sys_timer_create(which_clock, event, created_timer_id);
610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612long compat_sys_timer_settime(timer_t timer_id, int flags,
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700613 struct compat_itimerspec __user *new,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 struct compat_itimerspec __user *old)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700615{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 long err;
617 mm_segment_t oldfs;
618 struct itimerspec newts, oldts;
619
620 if (!new)
621 return -EINVAL;
622 if (get_compat_itimerspec(&newts, new))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700623 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 oldfs = get_fs();
625 set_fs(KERNEL_DS);
626 err = sys_timer_settime(timer_id, flags,
627 (struct itimerspec __user *) &newts,
628 (struct itimerspec __user *) &oldts);
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700629 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (!err && old && put_compat_itimerspec(old, &oldts))
631 return -EFAULT;
632 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700633}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635long compat_sys_timer_gettime(timer_t timer_id,
636 struct compat_itimerspec __user *setting)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700637{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 long err;
639 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700640 struct itimerspec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 oldfs = get_fs();
643 set_fs(KERNEL_DS);
644 err = sys_timer_gettime(timer_id,
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700645 (struct itimerspec __user *) &ts);
646 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (!err && put_compat_itimerspec(setting, &ts))
648 return -EFAULT;
649 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700650}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652long compat_sys_clock_settime(clockid_t which_clock,
653 struct compat_timespec __user *tp)
654{
655 long err;
656 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700657 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (get_compat_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700660 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 oldfs = get_fs();
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700662 set_fs(KERNEL_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 err = sys_clock_settime(which_clock,
664 (struct timespec __user *) &ts);
665 set_fs(oldfs);
666 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700667}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669long compat_sys_clock_gettime(clockid_t which_clock,
670 struct compat_timespec __user *tp)
671{
672 long err;
673 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700674 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 oldfs = get_fs();
677 set_fs(KERNEL_DS);
678 err = sys_clock_gettime(which_clock,
679 (struct timespec __user *) &ts);
680 set_fs(oldfs);
681 if (!err && put_compat_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700682 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700684}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Richard Cochranf1f1d5e2011-02-01 13:52:26 +0000686long compat_sys_clock_adjtime(clockid_t which_clock,
687 struct compat_timex __user *utp)
688{
689 struct timex txc;
690 mm_segment_t oldfs;
691 int err, ret;
692
693 err = compat_get_timex(&txc, utp);
694 if (err)
695 return err;
696
697 oldfs = get_fs();
698 set_fs(KERNEL_DS);
699 ret = sys_clock_adjtime(which_clock, (struct timex __user *) &txc);
700 set_fs(oldfs);
701
702 err = compat_put_timex(utp, &txc);
703 if (err)
704 return err;
705
706 return ret;
707}
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709long compat_sys_clock_getres(clockid_t which_clock,
710 struct compat_timespec __user *tp)
711{
712 long err;
713 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700714 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 oldfs = get_fs();
717 set_fs(KERNEL_DS);
718 err = sys_clock_getres(which_clock,
719 (struct timespec __user *) &ts);
720 set_fs(oldfs);
721 if (!err && tp && put_compat_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700722 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700724}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Toyo Abe1711ef32006-09-29 02:00:28 -0700726static long compat_clock_nanosleep_restart(struct restart_block *restart)
727{
728 long err;
729 mm_segment_t oldfs;
730 struct timespec tu;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100731 struct compat_timespec *rmtp = restart->nanosleep.compat_rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700732
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100733 restart->nanosleep.rmtp = (struct timespec __user *) &tu;
Toyo Abe1711ef32006-09-29 02:00:28 -0700734 oldfs = get_fs();
735 set_fs(KERNEL_DS);
736 err = clock_nanosleep_restart(restart);
737 set_fs(oldfs);
738
739 if ((err == -ERESTART_RESTARTBLOCK) && rmtp &&
740 put_compat_timespec(&tu, rmtp))
741 return -EFAULT;
742
743 if (err == -ERESTART_RESTARTBLOCK) {
744 restart->fn = compat_clock_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100745 restart->nanosleep.compat_rmtp = rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700746 }
747 return err;
748}
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
751 struct compat_timespec __user *rqtp,
752 struct compat_timespec __user *rmtp)
753{
754 long err;
755 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700756 struct timespec in, out;
Toyo Abe1711ef32006-09-29 02:00:28 -0700757 struct restart_block *restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700759 if (get_compat_timespec(&in, rqtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return -EFAULT;
761
762 oldfs = get_fs();
763 set_fs(KERNEL_DS);
764 err = sys_clock_nanosleep(which_clock, flags,
765 (struct timespec __user *) &in,
766 (struct timespec __user *) &out);
767 set_fs(oldfs);
Toyo Abe1711ef32006-09-29 02:00:28 -0700768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if ((err == -ERESTART_RESTARTBLOCK) && rmtp &&
770 put_compat_timespec(&out, rmtp))
771 return -EFAULT;
Toyo Abe1711ef32006-09-29 02:00:28 -0700772
773 if (err == -ERESTART_RESTARTBLOCK) {
774 restart = &current_thread_info()->restart_block;
775 restart->fn = compat_clock_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100776 restart->nanosleep.compat_rmtp = rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700777 }
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700778 return err;
779}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781/*
782 * We currently only need the following fields from the sigevent
783 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
784 * sigev_notify_thread_id). The others are handled in user mode.
785 * We also assume that copying sigev_value.sival_int is sufficient
786 * to keep all the bits of sigev_value.sival_ptr intact.
787 */
788int get_compat_sigevent(struct sigevent *event,
789 const struct compat_sigevent __user *u_event)
790{
David S. Miller51410d32005-04-16 15:24:01 -0700791 memset(event, 0, sizeof(*event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return (!access_ok(VERIFY_READ, u_event, sizeof(*u_event)) ||
793 __get_user(event->sigev_value.sival_int,
794 &u_event->sigev_value.sival_int) ||
795 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
796 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
797 __get_user(event->sigev_notify_thread_id,
798 &u_event->sigev_notify_thread_id))
799 ? -EFAULT : 0;
800}
801
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700802long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 unsigned long bitmap_size)
804{
805 int i, j;
806 unsigned long m;
807 compat_ulong_t um;
808 unsigned long nr_compat_longs;
809
810 /* align bitmap up to nearest compat_long_t boundary */
811 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
812
813 if (!access_ok(VERIFY_READ, umask, bitmap_size / 8))
814 return -EFAULT;
815
816 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
817
818 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
819 m = 0;
820
821 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
822 /*
823 * We dont want to read past the end of the userspace
824 * bitmap. We must however ensure the end of the
825 * kernel bitmap is zeroed.
826 */
827 if (nr_compat_longs-- > 0) {
828 if (__get_user(um, umask))
829 return -EFAULT;
830 } else {
831 um = 0;
832 }
833
834 umask++;
835 m |= (long)um << (j * BITS_PER_COMPAT_LONG);
836 }
837 *mask++ = m;
838 }
839
840 return 0;
841}
842
843long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
844 unsigned long bitmap_size)
845{
846 int i, j;
847 unsigned long m;
848 compat_ulong_t um;
849 unsigned long nr_compat_longs;
850
851 /* align bitmap up to nearest compat_long_t boundary */
852 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
853
854 if (!access_ok(VERIFY_WRITE, umask, bitmap_size / 8))
855 return -EFAULT;
856
857 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
858
859 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
860 m = *mask++;
861
862 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
863 um = m;
864
865 /*
866 * We dont want to write past the end of the userspace
867 * bitmap.
868 */
869 if (nr_compat_longs-- > 0) {
870 if (__put_user(um, umask))
871 return -EFAULT;
872 }
873
874 umask++;
875 m >>= 4*sizeof(um);
876 m >>= 4*sizeof(um);
877 }
878 }
879
880 return 0;
881}
882
883void
884sigset_from_compat (sigset_t *set, compat_sigset_t *compat)
885{
886 switch (_NSIG_WORDS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32 );
888 case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32 );
889 case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32 );
890 case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892}
893
894asmlinkage long
895compat_sys_rt_sigtimedwait (compat_sigset_t __user *uthese,
896 struct compat_siginfo __user *uinfo,
897 struct compat_timespec __user *uts, compat_size_t sigsetsize)
898{
899 compat_sigset_t s32;
900 sigset_t s;
901 int sig;
902 struct timespec t;
903 siginfo_t info;
904 long ret, timeout = 0;
905
906 if (sigsetsize != sizeof(sigset_t))
907 return -EINVAL;
908
909 if (copy_from_user(&s32, uthese, sizeof(compat_sigset_t)))
910 return -EFAULT;
911 sigset_from_compat(&s, &s32);
912 sigdelsetmask(&s,sigmask(SIGKILL)|sigmask(SIGSTOP));
913 signotset(&s);
914
915 if (uts) {
916 if (get_compat_timespec (&t, uts))
917 return -EFAULT;
918 if (t.tv_nsec >= 1000000000L || t.tv_nsec < 0
919 || t.tv_sec < 0)
920 return -EINVAL;
921 }
922
923 spin_lock_irq(&current->sighand->siglock);
924 sig = dequeue_signal(current, &s, &info);
925 if (!sig) {
926 timeout = MAX_SCHEDULE_TIMEOUT;
927 if (uts)
928 timeout = timespec_to_jiffies(&t)
929 +(t.tv_sec || t.tv_nsec);
930 if (timeout) {
931 current->real_blocked = current->blocked;
932 sigandsets(&current->blocked, &current->blocked, &s);
933
934 recalc_sigpending();
935 spin_unlock_irq(&current->sighand->siglock);
936
Nishanth Aravamudan75bcc8c2005-09-10 00:27:24 -0700937 timeout = schedule_timeout_interruptible(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 spin_lock_irq(&current->sighand->siglock);
940 sig = dequeue_signal(current, &s, &info);
941 current->blocked = current->real_blocked;
942 siginitset(&current->real_blocked, 0);
943 recalc_sigpending();
944 }
945 }
946 spin_unlock_irq(&current->sighand->siglock);
947
948 if (sig) {
949 ret = sig;
950 if (uinfo) {
951 if (copy_siginfo_to_user32(uinfo, &info))
952 ret = -EFAULT;
953 }
954 }else {
955 ret = timeout?-EINTR:-EAGAIN;
956 }
957 return ret;
958
959}
960
Thomas Gleixner62ab4502009-04-04 21:01:06 +0000961asmlinkage long
962compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
963 struct compat_siginfo __user *uinfo)
964{
965 siginfo_t info;
966
967 if (copy_siginfo_from_user32(&info, uinfo))
968 return -EFAULT;
969 return do_rt_tgsigqueueinfo(tgid, pid, sig, &info);
970}
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972#ifdef __ARCH_WANT_COMPAT_SYS_TIME
973
974/* compat_time_t is a 32 bit "long" and needs to get converted. */
975
976asmlinkage long compat_sys_time(compat_time_t __user * tloc)
977{
978 compat_time_t i;
979 struct timeval tv;
980
981 do_gettimeofday(&tv);
982 i = tv.tv_sec;
983
984 if (tloc) {
985 if (put_user(i,tloc))
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800986 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800988 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return i;
990}
991
992asmlinkage long compat_sys_stime(compat_time_t __user *tptr)
993{
994 struct timespec tv;
995 int err;
996
997 if (get_user(tv.tv_sec, tptr))
998 return -EFAULT;
999
1000 tv.tv_nsec = 0;
1001
1002 err = security_settime(&tv, NULL);
1003 if (err)
1004 return err;
1005
1006 do_settimeofday(&tv);
1007 return 0;
1008}
1009
1010#endif /* __ARCH_WANT_COMPAT_SYS_TIME */
David Woodhouse150256d2006-01-18 17:43:57 -08001011
1012#ifdef __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND
1013asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset, compat_size_t sigsetsize)
1014{
1015 sigset_t newset;
1016 compat_sigset_t newset32;
1017
1018 /* XXX: Don't preclude handling different sized sigset_t's. */
1019 if (sigsetsize != sizeof(sigset_t))
1020 return -EINVAL;
1021
1022 if (copy_from_user(&newset32, unewset, sizeof(compat_sigset_t)))
1023 return -EFAULT;
1024 sigset_from_compat(&newset, &newset32);
1025 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
1026
1027 spin_lock_irq(&current->sighand->siglock);
1028 current->saved_sigmask = current->blocked;
1029 current->blocked = newset;
1030 recalc_sigpending();
1031 spin_unlock_irq(&current->sighand->siglock);
1032
1033 current->state = TASK_INTERRUPTIBLE;
1034 schedule();
Roland McGrath4e4c22c2008-04-30 00:53:06 -07001035 set_restore_sigmask();
David Woodhouse150256d2006-01-18 17:43:57 -08001036 return -ERESTARTNOHAND;
1037}
1038#endif /* __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND */
Stephen Rothwell3158e942006-03-26 01:37:29 -08001039
1040asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp)
1041{
1042 struct timex txc;
Richard Cochran65f5d802011-02-01 13:52:23 +00001043 int err, ret;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001044
Richard Cochran65f5d802011-02-01 13:52:23 +00001045 err = compat_get_timex(&txc, utp);
1046 if (err)
1047 return err;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001048
1049 ret = do_adjtimex(&txc);
1050
Richard Cochran65f5d802011-02-01 13:52:23 +00001051 err = compat_put_timex(utp, &txc);
1052 if (err)
1053 return err;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001054
1055 return ret;
1056}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001057
1058#ifdef CONFIG_NUMA
1059asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_pages,
Christoph Lameter9216dfa2006-06-23 02:03:57 -07001060 compat_uptr_t __user *pages32,
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001061 const int __user *nodes,
1062 int __user *status,
1063 int flags)
1064{
1065 const void __user * __user *pages;
1066 int i;
1067
1068 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
1069 for (i = 0; i < nr_pages; i++) {
1070 compat_uptr_t p;
1071
Christoph Lameter9216dfa2006-06-23 02:03:57 -07001072 if (get_user(p, pages32 + i) ||
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001073 put_user(compat_ptr(p), pages + i))
1074 return -EFAULT;
1075 }
1076 return sys_move_pages(pid, nr_pages, pages, nodes, status, flags);
1077}
Stephen Rothwell3fd59392006-11-02 22:07:24 -08001078
1079asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
1080 compat_ulong_t maxnode,
1081 const compat_ulong_t __user *old_nodes,
1082 const compat_ulong_t __user *new_nodes)
1083{
1084 unsigned long __user *old = NULL;
1085 unsigned long __user *new = NULL;
1086 nodemask_t tmp_mask;
1087 unsigned long nr_bits;
1088 unsigned long size;
1089
1090 nr_bits = min_t(unsigned long, maxnode - 1, MAX_NUMNODES);
1091 size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1092 if (old_nodes) {
1093 if (compat_get_bitmap(nodes_addr(tmp_mask), old_nodes, nr_bits))
1094 return -EFAULT;
1095 old = compat_alloc_user_space(new_nodes ? size * 2 : size);
1096 if (new_nodes)
1097 new = old + size / sizeof(unsigned long);
1098 if (copy_to_user(old, nodes_addr(tmp_mask), size))
1099 return -EFAULT;
1100 }
1101 if (new_nodes) {
1102 if (compat_get_bitmap(nodes_addr(tmp_mask), new_nodes, nr_bits))
1103 return -EFAULT;
1104 if (new == NULL)
1105 new = compat_alloc_user_space(size);
1106 if (copy_to_user(new, nodes_addr(tmp_mask), size))
1107 return -EFAULT;
1108 }
1109 return sys_migrate_pages(pid, nr_bits + 1, old, new);
1110}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001111#endif
Kyle McMartind4d23ad2007-02-10 01:46:00 -08001112
1113struct compat_sysinfo {
1114 s32 uptime;
1115 u32 loads[3];
1116 u32 totalram;
1117 u32 freeram;
1118 u32 sharedram;
1119 u32 bufferram;
1120 u32 totalswap;
1121 u32 freeswap;
1122 u16 procs;
1123 u16 pad;
1124 u32 totalhigh;
1125 u32 freehigh;
1126 u32 mem_unit;
1127 char _f[20-2*sizeof(u32)-sizeof(int)];
1128};
1129
1130asmlinkage long
1131compat_sys_sysinfo(struct compat_sysinfo __user *info)
1132{
1133 struct sysinfo s;
1134
1135 do_sysinfo(&s);
1136
1137 /* Check to see if any memory value is too large for 32-bit and scale
1138 * down if needed
1139 */
1140 if ((s.totalram >> 32) || (s.totalswap >> 32)) {
1141 int bitcount = 0;
1142
1143 while (s.mem_unit < PAGE_SIZE) {
1144 s.mem_unit <<= 1;
1145 bitcount++;
1146 }
1147
1148 s.totalram >>= bitcount;
1149 s.freeram >>= bitcount;
1150 s.sharedram >>= bitcount;
1151 s.bufferram >>= bitcount;
1152 s.totalswap >>= bitcount;
1153 s.freeswap >>= bitcount;
1154 s.totalhigh >>= bitcount;
1155 s.freehigh >>= bitcount;
1156 }
1157
1158 if (!access_ok(VERIFY_WRITE, info, sizeof(struct compat_sysinfo)) ||
1159 __put_user (s.uptime, &info->uptime) ||
1160 __put_user (s.loads[0], &info->loads[0]) ||
1161 __put_user (s.loads[1], &info->loads[1]) ||
1162 __put_user (s.loads[2], &info->loads[2]) ||
1163 __put_user (s.totalram, &info->totalram) ||
1164 __put_user (s.freeram, &info->freeram) ||
1165 __put_user (s.sharedram, &info->sharedram) ||
1166 __put_user (s.bufferram, &info->bufferram) ||
1167 __put_user (s.totalswap, &info->totalswap) ||
1168 __put_user (s.freeswap, &info->freeswap) ||
1169 __put_user (s.procs, &info->procs) ||
1170 __put_user (s.totalhigh, &info->totalhigh) ||
1171 __put_user (s.freehigh, &info->freehigh) ||
1172 __put_user (s.mem_unit, &info->mem_unit))
1173 return -EFAULT;
1174
1175 return 0;
1176}
H. Peter Anvinc41d68a2010-09-07 16:16:18 -07001177
1178/*
1179 * Allocate user-space memory for the duration of a single system call,
1180 * in order to marshall parameters inside a compat thunk.
1181 */
1182void __user *compat_alloc_user_space(unsigned long len)
1183{
1184 void __user *ptr;
1185
1186 /* If len would occupy more than half of the entire compat space... */
1187 if (unlikely(len > (((compat_uptr_t)~0) >> 1)))
1188 return NULL;
1189
1190 ptr = arch_compat_alloc_user_space(len);
1191
1192 if (unlikely(!access_ok(VERIFY_WRITE, ptr, len)))
1193 return NULL;
1194
1195 return ptr;
1196}
1197EXPORT_SYMBOL_GPL(compat_alloc_user_space);