blob: 9214dcd087b7369fb754e6391015918db6d6ed3f [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
296/*
297 * Assumption: old_sigset_t and compat_old_sigset_t are both
298 * types that can be passed to put_user()/get_user().
299 */
300
301asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set)
302{
303 old_sigset_t s;
304 long ret;
305 mm_segment_t old_fs = get_fs();
306
307 set_fs(KERNEL_DS);
308 ret = sys_sigpending((old_sigset_t __user *) &s);
309 set_fs(old_fs);
310 if (ret == 0)
311 ret = put_user(s, set);
312 return ret;
313}
314
315asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *set,
316 compat_old_sigset_t __user *oset)
317{
318 old_sigset_t s;
319 long ret;
320 mm_segment_t old_fs;
321
322 if (set && get_user(s, set))
323 return -EFAULT;
324 old_fs = get_fs();
325 set_fs(KERNEL_DS);
326 ret = sys_sigprocmask(how,
327 set ? (old_sigset_t __user *) &s : NULL,
328 oset ? (old_sigset_t __user *) &s : NULL);
329 set_fs(old_fs);
330 if (ret == 0)
331 if (oset)
332 ret = put_user(s, oset);
333 return ret;
334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336asmlinkage long compat_sys_setrlimit(unsigned int resource,
337 struct compat_rlimit __user *rlim)
338{
339 struct rlimit r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 if (!access_ok(VERIFY_READ, rlim, sizeof(*rlim)) ||
342 __get_user(r.rlim_cur, &rlim->rlim_cur) ||
343 __get_user(r.rlim_max, &rlim->rlim_max))
344 return -EFAULT;
345
346 if (r.rlim_cur == COMPAT_RLIM_INFINITY)
347 r.rlim_cur = RLIM_INFINITY;
348 if (r.rlim_max == COMPAT_RLIM_INFINITY)
349 r.rlim_max = RLIM_INFINITY;
Jiri Slabyb9518342010-05-04 11:28:25 +0200350 return do_prlimit(current, resource, &r, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353#ifdef COMPAT_RLIM_OLD_INFINITY
354
355asmlinkage long compat_sys_old_getrlimit(unsigned int resource,
356 struct compat_rlimit __user *rlim)
357{
358 struct rlimit r;
359 int ret;
360 mm_segment_t old_fs = get_fs();
361
362 set_fs(KERNEL_DS);
363 ret = sys_old_getrlimit(resource, &r);
364 set_fs(old_fs);
365
366 if (!ret) {
367 if (r.rlim_cur > COMPAT_RLIM_OLD_INFINITY)
368 r.rlim_cur = COMPAT_RLIM_INFINITY;
369 if (r.rlim_max > COMPAT_RLIM_OLD_INFINITY)
370 r.rlim_max = COMPAT_RLIM_INFINITY;
371
372 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
373 __put_user(r.rlim_cur, &rlim->rlim_cur) ||
374 __put_user(r.rlim_max, &rlim->rlim_max))
375 return -EFAULT;
376 }
377 return ret;
378}
379
380#endif
381
Jiri Slabyb9518342010-05-04 11:28:25 +0200382asmlinkage long compat_sys_getrlimit(unsigned int resource,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 struct compat_rlimit __user *rlim)
384{
385 struct rlimit r;
386 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Jiri Slabyb9518342010-05-04 11:28:25 +0200388 ret = do_prlimit(current, resource, NULL, &r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (!ret) {
390 if (r.rlim_cur > COMPAT_RLIM_INFINITY)
391 r.rlim_cur = COMPAT_RLIM_INFINITY;
392 if (r.rlim_max > COMPAT_RLIM_INFINITY)
393 r.rlim_max = COMPAT_RLIM_INFINITY;
394
395 if (!access_ok(VERIFY_WRITE, rlim, sizeof(*rlim)) ||
396 __put_user(r.rlim_cur, &rlim->rlim_cur) ||
397 __put_user(r.rlim_max, &rlim->rlim_max))
398 return -EFAULT;
399 }
400 return ret;
401}
402
403int put_compat_rusage(const struct rusage *r, struct compat_rusage __user *ru)
404{
405 if (!access_ok(VERIFY_WRITE, ru, sizeof(*ru)) ||
406 __put_user(r->ru_utime.tv_sec, &ru->ru_utime.tv_sec) ||
407 __put_user(r->ru_utime.tv_usec, &ru->ru_utime.tv_usec) ||
408 __put_user(r->ru_stime.tv_sec, &ru->ru_stime.tv_sec) ||
409 __put_user(r->ru_stime.tv_usec, &ru->ru_stime.tv_usec) ||
410 __put_user(r->ru_maxrss, &ru->ru_maxrss) ||
411 __put_user(r->ru_ixrss, &ru->ru_ixrss) ||
412 __put_user(r->ru_idrss, &ru->ru_idrss) ||
413 __put_user(r->ru_isrss, &ru->ru_isrss) ||
414 __put_user(r->ru_minflt, &ru->ru_minflt) ||
415 __put_user(r->ru_majflt, &ru->ru_majflt) ||
416 __put_user(r->ru_nswap, &ru->ru_nswap) ||
417 __put_user(r->ru_inblock, &ru->ru_inblock) ||
418 __put_user(r->ru_oublock, &ru->ru_oublock) ||
419 __put_user(r->ru_msgsnd, &ru->ru_msgsnd) ||
420 __put_user(r->ru_msgrcv, &ru->ru_msgrcv) ||
421 __put_user(r->ru_nsignals, &ru->ru_nsignals) ||
422 __put_user(r->ru_nvcsw, &ru->ru_nvcsw) ||
423 __put_user(r->ru_nivcsw, &ru->ru_nivcsw))
424 return -EFAULT;
425 return 0;
426}
427
428asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru)
429{
430 struct rusage r;
431 int ret;
432 mm_segment_t old_fs = get_fs();
433
434 set_fs(KERNEL_DS);
435 ret = sys_getrusage(who, (struct rusage __user *) &r);
436 set_fs(old_fs);
437
438 if (ret)
439 return ret;
440
441 if (put_compat_rusage(&r, ru))
442 return -EFAULT;
443
444 return 0;
445}
446
447asmlinkage long
448compat_sys_wait4(compat_pid_t pid, compat_uint_t __user *stat_addr, int options,
449 struct compat_rusage __user *ru)
450{
451 if (!ru) {
452 return sys_wait4(pid, stat_addr, options, NULL);
453 } else {
454 struct rusage r;
455 int ret;
456 unsigned int status;
457 mm_segment_t old_fs = get_fs();
458
459 set_fs (KERNEL_DS);
460 ret = sys_wait4(pid,
461 (stat_addr ?
462 (unsigned int __user *) &status : NULL),
463 options, (struct rusage __user *) &r);
464 set_fs (old_fs);
465
466 if (ret > 0) {
467 if (put_compat_rusage(&r, ru))
468 return -EFAULT;
469 if (stat_addr && put_user(status, stat_addr))
470 return -EFAULT;
471 }
472 return ret;
473 }
474}
475
476asmlinkage long compat_sys_waitid(int which, compat_pid_t pid,
477 struct compat_siginfo __user *uinfo, int options,
478 struct compat_rusage __user *uru)
479{
480 siginfo_t info;
481 struct rusage ru;
482 long ret;
483 mm_segment_t old_fs = get_fs();
484
485 memset(&info, 0, sizeof(info));
486
487 set_fs(KERNEL_DS);
488 ret = sys_waitid(which, pid, (siginfo_t __user *)&info, options,
489 uru ? (struct rusage __user *)&ru : NULL);
490 set_fs(old_fs);
491
492 if ((ret < 0) || (info.si_signo == 0))
493 return ret;
494
495 if (uru) {
496 ret = put_compat_rusage(&ru, uru);
497 if (ret)
498 return ret;
499 }
500
501 BUG_ON(info.si_code & __SI_MASK);
502 info.si_code |= __SI_CHLD;
503 return copy_siginfo_to_user32(uinfo, &info);
504}
505
506static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
Rusty Russella45185d2009-01-01 10:12:24 +1030507 unsigned len, struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 unsigned long *k;
510
Rusty Russella45185d2009-01-01 10:12:24 +1030511 if (len < cpumask_size())
512 memset(new_mask, 0, cpumask_size());
513 else if (len > cpumask_size())
514 len = cpumask_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Rusty Russella45185d2009-01-01 10:12:24 +1030516 k = cpumask_bits(new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return compat_get_bitmap(k, user_mask_ptr, len * 8);
518}
519
520asmlinkage long compat_sys_sched_setaffinity(compat_pid_t pid,
521 unsigned int len,
522 compat_ulong_t __user *user_mask_ptr)
523{
Rusty Russella45185d2009-01-01 10:12:24 +1030524 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 int retval;
526
Rusty Russella45185d2009-01-01 10:12:24 +1030527 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
528 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Rusty Russella45185d2009-01-01 10:12:24 +1030530 retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
531 if (retval)
532 goto out;
533
534 retval = sched_setaffinity(pid, new_mask);
535out:
536 free_cpumask_var(new_mask);
537 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540asmlinkage long compat_sys_sched_getaffinity(compat_pid_t pid, unsigned int len,
541 compat_ulong_t __user *user_mask_ptr)
542{
543 int ret;
Rusty Russella45185d2009-01-01 10:12:24 +1030544 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900546 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
547 return -EINVAL;
548 if (len & (sizeof(compat_ulong_t)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return -EINVAL;
550
Rusty Russella45185d2009-01-01 10:12:24 +1030551 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
552 return -ENOMEM;
553
554 ret = sched_getaffinity(pid, mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900555 if (ret == 0) {
556 size_t retlen = min_t(size_t, len, cpumask_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900558 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
559 ret = -EFAULT;
560 else
561 ret = retlen;
562 }
Rusty Russella45185d2009-01-01 10:12:24 +1030563 free_cpumask_var(mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900564
Rusty Russella45185d2009-01-01 10:12:24 +1030565 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Davide Libenzi83f5d122007-05-10 22:23:18 -0700568int get_compat_itimerspec(struct itimerspec *dst,
569 const struct compat_itimerspec __user *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700570{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (get_compat_timespec(&dst->it_interval, &src->it_interval) ||
572 get_compat_timespec(&dst->it_value, &src->it_value))
573 return -EFAULT;
574 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700575}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Davide Libenzi83f5d122007-05-10 22:23:18 -0700577int put_compat_itimerspec(struct compat_itimerspec __user *dst,
578 const struct itimerspec *src)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700579{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (put_compat_timespec(&src->it_interval, &dst->it_interval) ||
581 put_compat_timespec(&src->it_value, &dst->it_value))
582 return -EFAULT;
583 return 0;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700584}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Christoph Hellwig3a0f69d2006-01-09 20:52:08 -0800586long compat_sys_timer_create(clockid_t which_clock,
587 struct compat_sigevent __user *timer_event_spec,
588 timer_t __user *created_timer_id)
589{
590 struct sigevent __user *event = NULL;
591
592 if (timer_event_spec) {
593 struct sigevent kevent;
594
595 event = compat_alloc_user_space(sizeof(*event));
596 if (get_compat_sigevent(&kevent, timer_event_spec) ||
597 copy_to_user(event, &kevent, sizeof(*event)))
598 return -EFAULT;
599 }
600
601 return sys_timer_create(which_clock, event, created_timer_id);
602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604long compat_sys_timer_settime(timer_t timer_id, int flags,
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700605 struct compat_itimerspec __user *new,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 struct compat_itimerspec __user *old)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700607{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 long err;
609 mm_segment_t oldfs;
610 struct itimerspec newts, oldts;
611
612 if (!new)
613 return -EINVAL;
614 if (get_compat_itimerspec(&newts, new))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700615 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 oldfs = get_fs();
617 set_fs(KERNEL_DS);
618 err = sys_timer_settime(timer_id, flags,
619 (struct itimerspec __user *) &newts,
620 (struct itimerspec __user *) &oldts);
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700621 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (!err && old && put_compat_itimerspec(old, &oldts))
623 return -EFAULT;
624 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700625}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627long compat_sys_timer_gettime(timer_t timer_id,
628 struct compat_itimerspec __user *setting)
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700629{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 long err;
631 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700632 struct itimerspec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 oldfs = get_fs();
635 set_fs(KERNEL_DS);
636 err = sys_timer_gettime(timer_id,
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700637 (struct itimerspec __user *) &ts);
638 set_fs(oldfs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (!err && put_compat_itimerspec(setting, &ts))
640 return -EFAULT;
641 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700642}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644long compat_sys_clock_settime(clockid_t which_clock,
645 struct compat_timespec __user *tp)
646{
647 long err;
648 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700649 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 if (get_compat_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700652 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 oldfs = get_fs();
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700654 set_fs(KERNEL_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 err = sys_clock_settime(which_clock,
656 (struct timespec __user *) &ts);
657 set_fs(oldfs);
658 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700659}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661long compat_sys_clock_gettime(clockid_t which_clock,
662 struct compat_timespec __user *tp)
663{
664 long err;
665 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700666 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 oldfs = get_fs();
669 set_fs(KERNEL_DS);
670 err = sys_clock_gettime(which_clock,
671 (struct timespec __user *) &ts);
672 set_fs(oldfs);
673 if (!err && put_compat_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700674 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700676}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Richard Cochranf1f1d5e2011-02-01 13:52:26 +0000678long compat_sys_clock_adjtime(clockid_t which_clock,
679 struct compat_timex __user *utp)
680{
681 struct timex txc;
682 mm_segment_t oldfs;
683 int err, ret;
684
685 err = compat_get_timex(&txc, utp);
686 if (err)
687 return err;
688
689 oldfs = get_fs();
690 set_fs(KERNEL_DS);
691 ret = sys_clock_adjtime(which_clock, (struct timex __user *) &txc);
692 set_fs(oldfs);
693
694 err = compat_put_timex(utp, &txc);
695 if (err)
696 return err;
697
698 return ret;
699}
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701long compat_sys_clock_getres(clockid_t which_clock,
702 struct compat_timespec __user *tp)
703{
704 long err;
705 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700706 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 oldfs = get_fs();
709 set_fs(KERNEL_DS);
710 err = sys_clock_getres(which_clock,
711 (struct timespec __user *) &ts);
712 set_fs(oldfs);
713 if (!err && tp && put_compat_timespec(&ts, tp))
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700714 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return err;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700716}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Toyo Abe1711ef32006-09-29 02:00:28 -0700718static long compat_clock_nanosleep_restart(struct restart_block *restart)
719{
720 long err;
721 mm_segment_t oldfs;
722 struct timespec tu;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100723 struct compat_timespec *rmtp = restart->nanosleep.compat_rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700724
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100725 restart->nanosleep.rmtp = (struct timespec __user *) &tu;
Toyo Abe1711ef32006-09-29 02:00:28 -0700726 oldfs = get_fs();
727 set_fs(KERNEL_DS);
728 err = clock_nanosleep_restart(restart);
729 set_fs(oldfs);
730
731 if ((err == -ERESTART_RESTARTBLOCK) && rmtp &&
732 put_compat_timespec(&tu, rmtp))
733 return -EFAULT;
734
735 if (err == -ERESTART_RESTARTBLOCK) {
736 restart->fn = compat_clock_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100737 restart->nanosleep.compat_rmtp = rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700738 }
739 return err;
740}
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
743 struct compat_timespec __user *rqtp,
744 struct compat_timespec __user *rmtp)
745{
746 long err;
747 mm_segment_t oldfs;
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700748 struct timespec in, out;
Toyo Abe1711ef32006-09-29 02:00:28 -0700749 struct restart_block *restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700751 if (get_compat_timespec(&in, rqtp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return -EFAULT;
753
754 oldfs = get_fs();
755 set_fs(KERNEL_DS);
756 err = sys_clock_nanosleep(which_clock, flags,
757 (struct timespec __user *) &in,
758 (struct timespec __user *) &out);
759 set_fs(oldfs);
Toyo Abe1711ef32006-09-29 02:00:28 -0700760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if ((err == -ERESTART_RESTARTBLOCK) && rmtp &&
762 put_compat_timespec(&out, rmtp))
763 return -EFAULT;
Toyo Abe1711ef32006-09-29 02:00:28 -0700764
765 if (err == -ERESTART_RESTARTBLOCK) {
766 restart = &current_thread_info()->restart_block;
767 restart->fn = compat_clock_nanosleep_restart;
Thomas Gleixner029a07e2008-02-10 09:17:43 +0100768 restart->nanosleep.compat_rmtp = rmtp;
Toyo Abe1711ef32006-09-29 02:00:28 -0700769 }
Daniel Walkerbd3a8492007-10-18 03:06:09 -0700770 return err;
771}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773/*
774 * We currently only need the following fields from the sigevent
775 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
776 * sigev_notify_thread_id). The others are handled in user mode.
777 * We also assume that copying sigev_value.sival_int is sufficient
778 * to keep all the bits of sigev_value.sival_ptr intact.
779 */
780int get_compat_sigevent(struct sigevent *event,
781 const struct compat_sigevent __user *u_event)
782{
David S. Miller51410d32005-04-16 15:24:01 -0700783 memset(event, 0, sizeof(*event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return (!access_ok(VERIFY_READ, u_event, sizeof(*u_event)) ||
785 __get_user(event->sigev_value.sival_int,
786 &u_event->sigev_value.sival_int) ||
787 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
788 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
789 __get_user(event->sigev_notify_thread_id,
790 &u_event->sigev_notify_thread_id))
791 ? -EFAULT : 0;
792}
793
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700794long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 unsigned long bitmap_size)
796{
797 int i, j;
798 unsigned long m;
799 compat_ulong_t um;
800 unsigned long nr_compat_longs;
801
802 /* align bitmap up to nearest compat_long_t boundary */
803 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
804
805 if (!access_ok(VERIFY_READ, umask, bitmap_size / 8))
806 return -EFAULT;
807
808 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
809
810 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
811 m = 0;
812
813 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
814 /*
815 * We dont want to read past the end of the userspace
816 * bitmap. We must however ensure the end of the
817 * kernel bitmap is zeroed.
818 */
819 if (nr_compat_longs-- > 0) {
820 if (__get_user(um, umask))
821 return -EFAULT;
822 } else {
823 um = 0;
824 }
825
826 umask++;
827 m |= (long)um << (j * BITS_PER_COMPAT_LONG);
828 }
829 *mask++ = m;
830 }
831
832 return 0;
833}
834
835long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
836 unsigned long bitmap_size)
837{
838 int i, j;
839 unsigned long m;
840 compat_ulong_t um;
841 unsigned long nr_compat_longs;
842
843 /* align bitmap up to nearest compat_long_t boundary */
844 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
845
846 if (!access_ok(VERIFY_WRITE, umask, bitmap_size / 8))
847 return -EFAULT;
848
849 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
850
851 for (i = 0; i < BITS_TO_LONGS(bitmap_size); i++) {
852 m = *mask++;
853
854 for (j = 0; j < sizeof(m)/sizeof(um); j++) {
855 um = m;
856
857 /*
858 * We dont want to write past the end of the userspace
859 * bitmap.
860 */
861 if (nr_compat_longs-- > 0) {
862 if (__put_user(um, umask))
863 return -EFAULT;
864 }
865
866 umask++;
867 m >>= 4*sizeof(um);
868 m >>= 4*sizeof(um);
869 }
870 }
871
872 return 0;
873}
874
875void
876sigset_from_compat (sigset_t *set, compat_sigset_t *compat)
877{
878 switch (_NSIG_WORDS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 case 4: set->sig[3] = compat->sig[6] | (((long)compat->sig[7]) << 32 );
880 case 3: set->sig[2] = compat->sig[4] | (((long)compat->sig[5]) << 32 );
881 case 2: set->sig[1] = compat->sig[2] | (((long)compat->sig[3]) << 32 );
882 case 1: set->sig[0] = compat->sig[0] | (((long)compat->sig[1]) << 32 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884}
885
886asmlinkage long
887compat_sys_rt_sigtimedwait (compat_sigset_t __user *uthese,
888 struct compat_siginfo __user *uinfo,
889 struct compat_timespec __user *uts, compat_size_t sigsetsize)
890{
891 compat_sigset_t s32;
892 sigset_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 struct timespec t;
894 siginfo_t info;
Oleg Nesterov943df142011-04-27 21:44:14 +0200895 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (sigsetsize != sizeof(sigset_t))
898 return -EINVAL;
899
900 if (copy_from_user(&s32, uthese, sizeof(compat_sigset_t)))
901 return -EFAULT;
902 sigset_from_compat(&s, &s32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
904 if (uts) {
Oleg Nesterov943df142011-04-27 21:44:14 +0200905 if (get_compat_timespec(&t, uts))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908
Oleg Nesterov943df142011-04-27 21:44:14 +0200909 ret = do_sigtimedwait(&s, &info, uts ? &t : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Oleg Nesterov943df142011-04-27 21:44:14 +0200911 if (ret > 0 && uinfo) {
912 if (copy_siginfo_to_user32(uinfo, &info))
913 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return ret;
917
918}
919
Thomas Gleixner62ab4502009-04-04 21:01:06 +0000920asmlinkage long
921compat_sys_rt_tgsigqueueinfo(compat_pid_t tgid, compat_pid_t pid, int sig,
922 struct compat_siginfo __user *uinfo)
923{
924 siginfo_t info;
925
926 if (copy_siginfo_from_user32(&info, uinfo))
927 return -EFAULT;
928 return do_rt_tgsigqueueinfo(tgid, pid, sig, &info);
929}
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931#ifdef __ARCH_WANT_COMPAT_SYS_TIME
932
933/* compat_time_t is a 32 bit "long" and needs to get converted. */
934
935asmlinkage long compat_sys_time(compat_time_t __user * tloc)
936{
937 compat_time_t i;
938 struct timeval tv;
939
940 do_gettimeofday(&tv);
941 i = tv.tv_sec;
942
943 if (tloc) {
944 if (put_user(i,tloc))
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800945 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
Paul Mackerrase3d5a272009-01-06 14:41:02 -0800947 force_successful_syscall_return();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return i;
949}
950
951asmlinkage long compat_sys_stime(compat_time_t __user *tptr)
952{
953 struct timespec tv;
954 int err;
955
956 if (get_user(tv.tv_sec, tptr))
957 return -EFAULT;
958
959 tv.tv_nsec = 0;
960
961 err = security_settime(&tv, NULL);
962 if (err)
963 return err;
964
965 do_settimeofday(&tv);
966 return 0;
967}
968
969#endif /* __ARCH_WANT_COMPAT_SYS_TIME */
David Woodhouse150256d2006-01-18 17:43:57 -0800970
971#ifdef __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND
972asmlinkage long compat_sys_rt_sigsuspend(compat_sigset_t __user *unewset, compat_size_t sigsetsize)
973{
974 sigset_t newset;
975 compat_sigset_t newset32;
976
977 /* XXX: Don't preclude handling different sized sigset_t's. */
978 if (sigsetsize != sizeof(sigset_t))
979 return -EINVAL;
980
981 if (copy_from_user(&newset32, unewset, sizeof(compat_sigset_t)))
982 return -EFAULT;
983 sigset_from_compat(&newset, &newset32);
984 sigdelsetmask(&newset, sigmask(SIGKILL)|sigmask(SIGSTOP));
985
986 spin_lock_irq(&current->sighand->siglock);
987 current->saved_sigmask = current->blocked;
988 current->blocked = newset;
989 recalc_sigpending();
990 spin_unlock_irq(&current->sighand->siglock);
991
992 current->state = TASK_INTERRUPTIBLE;
993 schedule();
Roland McGrath4e4c22c2008-04-30 00:53:06 -0700994 set_restore_sigmask();
David Woodhouse150256d2006-01-18 17:43:57 -0800995 return -ERESTARTNOHAND;
996}
997#endif /* __ARCH_WANT_COMPAT_SYS_RT_SIGSUSPEND */
Stephen Rothwell3158e942006-03-26 01:37:29 -0800998
999asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp)
1000{
1001 struct timex txc;
Richard Cochran65f5d802011-02-01 13:52:23 +00001002 int err, ret;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001003
Richard Cochran65f5d802011-02-01 13:52:23 +00001004 err = compat_get_timex(&txc, utp);
1005 if (err)
1006 return err;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001007
1008 ret = do_adjtimex(&txc);
1009
Richard Cochran65f5d802011-02-01 13:52:23 +00001010 err = compat_put_timex(utp, &txc);
1011 if (err)
1012 return err;
Stephen Rothwell3158e942006-03-26 01:37:29 -08001013
1014 return ret;
1015}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001016
1017#ifdef CONFIG_NUMA
1018asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_pages,
Christoph Lameter9216dfa2006-06-23 02:03:57 -07001019 compat_uptr_t __user *pages32,
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001020 const int __user *nodes,
1021 int __user *status,
1022 int flags)
1023{
1024 const void __user * __user *pages;
1025 int i;
1026
1027 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
1028 for (i = 0; i < nr_pages; i++) {
1029 compat_uptr_t p;
1030
Christoph Lameter9216dfa2006-06-23 02:03:57 -07001031 if (get_user(p, pages32 + i) ||
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001032 put_user(compat_ptr(p), pages + i))
1033 return -EFAULT;
1034 }
1035 return sys_move_pages(pid, nr_pages, pages, nodes, status, flags);
1036}
Stephen Rothwell3fd59392006-11-02 22:07:24 -08001037
1038asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
1039 compat_ulong_t maxnode,
1040 const compat_ulong_t __user *old_nodes,
1041 const compat_ulong_t __user *new_nodes)
1042{
1043 unsigned long __user *old = NULL;
1044 unsigned long __user *new = NULL;
1045 nodemask_t tmp_mask;
1046 unsigned long nr_bits;
1047 unsigned long size;
1048
1049 nr_bits = min_t(unsigned long, maxnode - 1, MAX_NUMNODES);
1050 size = ALIGN(nr_bits, BITS_PER_LONG) / 8;
1051 if (old_nodes) {
1052 if (compat_get_bitmap(nodes_addr(tmp_mask), old_nodes, nr_bits))
1053 return -EFAULT;
1054 old = compat_alloc_user_space(new_nodes ? size * 2 : size);
1055 if (new_nodes)
1056 new = old + size / sizeof(unsigned long);
1057 if (copy_to_user(old, nodes_addr(tmp_mask), size))
1058 return -EFAULT;
1059 }
1060 if (new_nodes) {
1061 if (compat_get_bitmap(nodes_addr(tmp_mask), new_nodes, nr_bits))
1062 return -EFAULT;
1063 if (new == NULL)
1064 new = compat_alloc_user_space(size);
1065 if (copy_to_user(new, nodes_addr(tmp_mask), size))
1066 return -EFAULT;
1067 }
1068 return sys_migrate_pages(pid, nr_bits + 1, old, new);
1069}
Christoph Lameter1b2db9f2006-06-23 02:03:56 -07001070#endif
Kyle McMartind4d23ad2007-02-10 01:46:00 -08001071
1072struct compat_sysinfo {
1073 s32 uptime;
1074 u32 loads[3];
1075 u32 totalram;
1076 u32 freeram;
1077 u32 sharedram;
1078 u32 bufferram;
1079 u32 totalswap;
1080 u32 freeswap;
1081 u16 procs;
1082 u16 pad;
1083 u32 totalhigh;
1084 u32 freehigh;
1085 u32 mem_unit;
1086 char _f[20-2*sizeof(u32)-sizeof(int)];
1087};
1088
1089asmlinkage long
1090compat_sys_sysinfo(struct compat_sysinfo __user *info)
1091{
1092 struct sysinfo s;
1093
1094 do_sysinfo(&s);
1095
1096 /* Check to see if any memory value is too large for 32-bit and scale
1097 * down if needed
1098 */
1099 if ((s.totalram >> 32) || (s.totalswap >> 32)) {
1100 int bitcount = 0;
1101
1102 while (s.mem_unit < PAGE_SIZE) {
1103 s.mem_unit <<= 1;
1104 bitcount++;
1105 }
1106
1107 s.totalram >>= bitcount;
1108 s.freeram >>= bitcount;
1109 s.sharedram >>= bitcount;
1110 s.bufferram >>= bitcount;
1111 s.totalswap >>= bitcount;
1112 s.freeswap >>= bitcount;
1113 s.totalhigh >>= bitcount;
1114 s.freehigh >>= bitcount;
1115 }
1116
1117 if (!access_ok(VERIFY_WRITE, info, sizeof(struct compat_sysinfo)) ||
1118 __put_user (s.uptime, &info->uptime) ||
1119 __put_user (s.loads[0], &info->loads[0]) ||
1120 __put_user (s.loads[1], &info->loads[1]) ||
1121 __put_user (s.loads[2], &info->loads[2]) ||
1122 __put_user (s.totalram, &info->totalram) ||
1123 __put_user (s.freeram, &info->freeram) ||
1124 __put_user (s.sharedram, &info->sharedram) ||
1125 __put_user (s.bufferram, &info->bufferram) ||
1126 __put_user (s.totalswap, &info->totalswap) ||
1127 __put_user (s.freeswap, &info->freeswap) ||
1128 __put_user (s.procs, &info->procs) ||
1129 __put_user (s.totalhigh, &info->totalhigh) ||
1130 __put_user (s.freehigh, &info->freehigh) ||
1131 __put_user (s.mem_unit, &info->mem_unit))
1132 return -EFAULT;
1133
1134 return 0;
1135}
H. Peter Anvinc41d68a2010-09-07 16:16:18 -07001136
1137/*
1138 * Allocate user-space memory for the duration of a single system call,
1139 * in order to marshall parameters inside a compat thunk.
1140 */
1141void __user *compat_alloc_user_space(unsigned long len)
1142{
1143 void __user *ptr;
1144
1145 /* If len would occupy more than half of the entire compat space... */
1146 if (unlikely(len > (((compat_uptr_t)~0) >> 1)))
1147 return NULL;
1148
1149 ptr = arch_compat_alloc_user_space(len);
1150
1151 if (unlikely(!access_ok(VERIFY_WRITE, ptr, len)))
1152 return NULL;
1153
1154 return ptr;
1155}
1156EXPORT_SYMBOL_GPL(compat_alloc_user_space);