blob: a2bc1d6ceb570850bed7ebd6bcd4148eb5608a31 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/kernel/compat.c
4 *
5 * Kernel compatibililty routines for e.g. 32 bit syscall support
6 * on 64 bit kernels.
7 *
8 * Copyright (C) 2002-2003 Stephen Rothwell, IBM Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11#include <linux/linkage.h>
12#include <linux/compat.h>
13#include <linux/errno.h>
14#include <linux/time.h>
15#include <linux/signal.h>
16#include <linux/sched.h> /* for MAX_SCHEDULE_TIMEOUT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/syscalls.h>
18#include <linux/unistd.h>
19#include <linux/security.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040020#include <linux/export.h>
Christoph Lameter1b2db9f2006-06-23 02:03:56 -070021#include <linux/migrate.h>
Toyo Abe1711ef32006-09-29 02:00:28 -070022#include <linux/posix-timers.h>
Frank Mayharf06febc2008-09-12 09:54:39 -070023#include <linux/times.h>
Paul Mackerrase3d5a272009-01-06 14:41:02 -080024#include <linux/ptrace.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080027#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +020029static int __compat_get_timeval(struct timeval *tv, const struct old_timeval32 __user *ctv)
H. Peter Anvin6684ba22012-02-19 17:38:00 -080030{
Linus Torvalds96d4f262019-01-03 18:57:57 -080031 return (!access_ok(ctv, sizeof(*ctv)) ||
H. Peter Anvin6684ba22012-02-19 17:38:00 -080032 __get_user(tv->tv_sec, &ctv->tv_sec) ||
33 __get_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
34}
H. Peter Anvin6684ba22012-02-19 17:38:00 -080035
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +020036static int __compat_put_timeval(const struct timeval *tv, struct old_timeval32 __user *ctv)
H. Peter Anvin6684ba22012-02-19 17:38:00 -080037{
Linus Torvalds96d4f262019-01-03 18:57:57 -080038 return (!access_ok(ctv, sizeof(*ctv)) ||
H. Peter Anvin6684ba22012-02-19 17:38:00 -080039 __put_user(tv->tv_sec, &ctv->tv_sec) ||
40 __put_user(tv->tv_usec, &ctv->tv_usec)) ? -EFAULT : 0;
41}
H. Peter Anvin6684ba22012-02-19 17:38:00 -080042
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +020043static int __compat_get_timespec(struct timespec *ts, const struct old_timespec32 __user *cts)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Linus Torvalds96d4f262019-01-03 18:57:57 -080045 return (!access_ok(cts, sizeof(*cts)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 __get_user(ts->tv_sec, &cts->tv_sec) ||
47 __get_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
48}
49
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +020050static int __compat_put_timespec(const struct timespec *ts, struct old_timespec32 __user *cts)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Linus Torvalds96d4f262019-01-03 18:57:57 -080052 return (!access_ok(cts, sizeof(*cts)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 __put_user(ts->tv_sec, &cts->tv_sec) ||
54 __put_user(ts->tv_nsec, &cts->tv_nsec)) ? -EFAULT : 0;
55}
56
H. Peter Anvin6684ba22012-02-19 17:38:00 -080057int compat_get_timeval(struct timeval *tv, const void __user *utv)
58{
59 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -070060 return copy_from_user(tv, utv, sizeof(*tv)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -080061 else
H. Peter Anvin81993e82014-02-01 18:54:11 -080062 return __compat_get_timeval(tv, utv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -080063}
64EXPORT_SYMBOL_GPL(compat_get_timeval);
65
66int compat_put_timeval(const struct timeval *tv, void __user *utv)
67{
68 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -070069 return copy_to_user(utv, tv, sizeof(*tv)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -080070 else
H. Peter Anvin81993e82014-02-01 18:54:11 -080071 return __compat_put_timeval(tv, utv);
H. Peter Anvin6684ba22012-02-19 17:38:00 -080072}
73EXPORT_SYMBOL_GPL(compat_put_timeval);
74
75int compat_get_timespec(struct timespec *ts, const void __user *uts)
76{
77 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -070078 return copy_from_user(ts, uts, sizeof(*ts)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -080079 else
H. Peter Anvin81993e82014-02-01 18:54:11 -080080 return __compat_get_timespec(ts, uts);
H. Peter Anvin6684ba22012-02-19 17:38:00 -080081}
82EXPORT_SYMBOL_GPL(compat_get_timespec);
83
84int compat_put_timespec(const struct timespec *ts, void __user *uts)
85{
86 if (COMPAT_USE_64BIT_TIME)
Fabian Frederick6516a462014-06-04 16:12:02 -070087 return copy_to_user(uts, ts, sizeof(*ts)) ? -EFAULT : 0;
H. Peter Anvin6684ba22012-02-19 17:38:00 -080088 else
H. Peter Anvin81993e82014-02-01 18:54:11 -080089 return __compat_put_timespec(ts, uts);
H. Peter Anvin6684ba22012-02-19 17:38:00 -080090}
91EXPORT_SYMBOL_GPL(compat_put_timespec);
92
Al Viro54ad9c42017-06-07 09:42:37 +010093int get_compat_itimerval(struct itimerval *o, const struct compat_itimerval __user *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Al Viro54ad9c42017-06-07 09:42:37 +010095 struct compat_itimerval v32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Al Viro54ad9c42017-06-07 09:42:37 +010097 if (copy_from_user(&v32, i, sizeof(struct compat_itimerval)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return -EFAULT;
Al Viro54ad9c42017-06-07 09:42:37 +010099 o->it_interval.tv_sec = v32.it_interval.tv_sec;
100 o->it_interval.tv_usec = v32.it_interval.tv_usec;
101 o->it_value.tv_sec = v32.it_value.tv_sec;
102 o->it_value.tv_usec = v32.it_value.tv_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return 0;
104}
105
Al Viro54ad9c42017-06-07 09:42:37 +0100106int put_compat_itimerval(struct compat_itimerval __user *o, const struct itimerval *i)
107{
108 struct compat_itimerval v32;
109
110 v32.it_interval.tv_sec = i->it_interval.tv_sec;
111 v32.it_interval.tv_usec = i->it_interval.tv_usec;
112 v32.it_value.tv_sec = i->it_value.tv_sec;
113 v32.it_value.tv_usec = i->it_value.tv_usec;
114 return copy_to_user(o, &v32, sizeof(struct compat_itimerval)) ? -EFAULT : 0;
115}
116
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400117#ifdef __ARCH_WANT_SYS_SIGPROCMASK
118
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300119/*
120 * sys_sigprocmask SIG_SETMASK sets the first (compat) word of the
121 * blocked set of signals to the supplied signal set
122 */
123static inline void compat_sig_setmask(sigset_t *blocked, compat_sigset_word set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300125 memcpy(blocked->sig, &set, sizeof(set));
126}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Al Viro5cf22102012-11-25 19:41:01 -0500128COMPAT_SYSCALL_DEFINE3(sigprocmask, int, how,
129 compat_old_sigset_t __user *, nset,
130 compat_old_sigset_t __user *, oset)
Jan Kiszkab7dafa02012-05-10 10:04:36 -0300131{
132 old_sigset_t old_set, new_set;
133 sigset_t new_blocked;
134
135 old_set = current->blocked.sig[0];
136
137 if (nset) {
138 if (get_user(new_set, nset))
139 return -EFAULT;
140 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
141
142 new_blocked = current->blocked;
143
144 switch (how) {
145 case SIG_BLOCK:
146 sigaddsetmask(&new_blocked, new_set);
147 break;
148 case SIG_UNBLOCK:
149 sigdelsetmask(&new_blocked, new_set);
150 break;
151 case SIG_SETMASK:
152 compat_sig_setmask(&new_blocked, new_set);
153 break;
154 default:
155 return -EINVAL;
156 }
157
158 set_current_blocked(&new_blocked);
159 }
160
161 if (oset) {
162 if (put_user(old_set, oset))
163 return -EFAULT;
164 }
165
166 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Chris Metcalfbe84cb42011-05-09 13:12:30 -0400169#endif
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171int put_compat_rusage(const struct rusage *r, struct compat_rusage __user *ru)
172{
Al Viro7668b672017-05-31 06:39:31 -0400173 struct compat_rusage r32;
174 memset(&r32, 0, sizeof(r32));
175 r32.ru_utime.tv_sec = r->ru_utime.tv_sec;
176 r32.ru_utime.tv_usec = r->ru_utime.tv_usec;
177 r32.ru_stime.tv_sec = r->ru_stime.tv_sec;
178 r32.ru_stime.tv_usec = r->ru_stime.tv_usec;
179 r32.ru_maxrss = r->ru_maxrss;
180 r32.ru_ixrss = r->ru_ixrss;
181 r32.ru_idrss = r->ru_idrss;
182 r32.ru_isrss = r->ru_isrss;
183 r32.ru_minflt = r->ru_minflt;
184 r32.ru_majflt = r->ru_majflt;
185 r32.ru_nswap = r->ru_nswap;
186 r32.ru_inblock = r->ru_inblock;
187 r32.ru_oublock = r->ru_oublock;
188 r32.ru_msgsnd = r->ru_msgsnd;
189 r32.ru_msgrcv = r->ru_msgrcv;
190 r32.ru_nsignals = r->ru_nsignals;
191 r32.ru_nvcsw = r->ru_nvcsw;
192 r32.ru_nivcsw = r->ru_nivcsw;
193 if (copy_to_user(ru, &r32, sizeof(r32)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return -EFAULT;
195 return 0;
196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
Rusty Russella45185d2009-01-01 10:12:24 +1030199 unsigned len, struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 unsigned long *k;
202
Rusty Russella45185d2009-01-01 10:12:24 +1030203 if (len < cpumask_size())
204 memset(new_mask, 0, cpumask_size());
205 else if (len > cpumask_size())
206 len = cpumask_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Rusty Russella45185d2009-01-01 10:12:24 +1030208 k = cpumask_bits(new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return compat_get_bitmap(k, user_mask_ptr, len * 8);
210}
211
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100212COMPAT_SYSCALL_DEFINE3(sched_setaffinity, compat_pid_t, pid,
213 unsigned int, len,
214 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Rusty Russella45185d2009-01-01 10:12:24 +1030216 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 int retval;
218
Rusty Russella45185d2009-01-01 10:12:24 +1030219 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
220 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Rusty Russella45185d2009-01-01 10:12:24 +1030222 retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
223 if (retval)
224 goto out;
225
226 retval = sched_setaffinity(pid, new_mask);
227out:
228 free_cpumask_var(new_mask);
229 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100232COMPAT_SYSCALL_DEFINE3(sched_getaffinity, compat_pid_t, pid, unsigned int, len,
233 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 int ret;
Rusty Russella45185d2009-01-01 10:12:24 +1030236 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900238 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
239 return -EINVAL;
240 if (len & (sizeof(compat_ulong_t)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return -EINVAL;
242
Rusty Russella45185d2009-01-01 10:12:24 +1030243 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
244 return -ENOMEM;
245
246 ret = sched_getaffinity(pid, mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900247 if (ret == 0) {
Alexey Dobriyan4de373a2018-02-06 15:39:37 -0800248 unsigned int retlen = min(len, cpumask_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900250 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
251 ret = -EFAULT;
252 else
253 ret = retlen;
254 }
Rusty Russella45185d2009-01-01 10:12:24 +1030255 free_cpumask_var(mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900256
Rusty Russella45185d2009-01-01 10:12:24 +1030257 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260/*
261 * We currently only need the following fields from the sigevent
262 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
263 * sigev_notify_thread_id). The others are handled in user mode.
264 * We also assume that copying sigev_value.sival_int is sufficient
265 * to keep all the bits of sigev_value.sival_ptr intact.
266 */
267int get_compat_sigevent(struct sigevent *event,
268 const struct compat_sigevent __user *u_event)
269{
David S. Miller51410d32005-04-16 15:24:01 -0700270 memset(event, 0, sizeof(*event));
Linus Torvalds96d4f262019-01-03 18:57:57 -0800271 return (!access_ok(u_event, sizeof(*u_event)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 __get_user(event->sigev_value.sival_int,
273 &u_event->sigev_value.sival_int) ||
274 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
275 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
276 __get_user(event->sigev_notify_thread_id,
277 &u_event->sigev_notify_thread_id))
278 ? -EFAULT : 0;
279}
280
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700281long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 unsigned long bitmap_size)
283{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 unsigned long nr_compat_longs;
285
286 /* align bitmap up to nearest compat_long_t boundary */
287 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
Al Viro1e1fc132017-05-30 00:29:38 -0400288 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Linus Torvalds594cc252019-01-04 12:56:09 -0800290 if (!user_access_begin(umask, bitmap_size / 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return -EFAULT;
292
Al Viro1e1fc132017-05-30 00:29:38 -0400293 while (nr_compat_longs > 1) {
294 compat_ulong_t l1, l2;
295 unsafe_get_user(l1, umask++, Efault);
296 unsafe_get_user(l2, umask++, Efault);
297 *mask++ = ((unsigned long)l2 << BITS_PER_COMPAT_LONG) | l1;
298 nr_compat_longs -= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
Al Viro1e1fc132017-05-30 00:29:38 -0400300 if (nr_compat_longs)
301 unsafe_get_user(*mask, umask++, Efault);
302 user_access_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return 0;
Al Viro1e1fc132017-05-30 00:29:38 -0400304
305Efault:
306 user_access_end();
307 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
310long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
311 unsigned long bitmap_size)
312{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 unsigned long nr_compat_longs;
314
315 /* align bitmap up to nearest compat_long_t boundary */
316 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
Al Viro1e1fc132017-05-30 00:29:38 -0400317 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Linus Torvalds594cc252019-01-04 12:56:09 -0800319 if (!user_access_begin(umask, bitmap_size / 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return -EFAULT;
321
Al Viro1e1fc132017-05-30 00:29:38 -0400322 while (nr_compat_longs > 1) {
323 unsigned long m = *mask++;
324 unsafe_put_user((compat_ulong_t)m, umask++, Efault);
325 unsafe_put_user(m >> BITS_PER_COMPAT_LONG, umask++, Efault);
326 nr_compat_longs -= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Al Viro1e1fc132017-05-30 00:29:38 -0400328 if (nr_compat_longs)
329 unsafe_put_user((compat_ulong_t)*mask, umask++, Efault);
330 user_access_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return 0;
Al Viro1e1fc132017-05-30 00:29:38 -0400332Efault:
333 user_access_end();
334 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Al Viro3968cf62017-09-03 21:45:17 -0400337int
338get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Al Viro3968cf62017-09-03 21:45:17 -0400340#ifdef __BIG_ENDIAN
341 compat_sigset_t v;
342 if (copy_from_user(&v, compat, sizeof(compat_sigset_t)))
343 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 switch (_NSIG_WORDS) {
Al Viro3968cf62017-09-03 21:45:17 -0400345 case 4: set->sig[3] = v.sig[6] | (((long)v.sig[7]) << 32 );
Stephen Rothwell89963ad2019-05-15 15:23:52 +1000346 /* fall through */
Al Viro3968cf62017-09-03 21:45:17 -0400347 case 3: set->sig[2] = v.sig[4] | (((long)v.sig[5]) << 32 );
Stephen Rothwell89963ad2019-05-15 15:23:52 +1000348 /* fall through */
Al Viro3968cf62017-09-03 21:45:17 -0400349 case 2: set->sig[1] = v.sig[2] | (((long)v.sig[3]) << 32 );
Stephen Rothwell89963ad2019-05-15 15:23:52 +1000350 /* fall through */
Al Viro3968cf62017-09-03 21:45:17 -0400351 case 1: set->sig[0] = v.sig[0] | (((long)v.sig[1]) << 32 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
Al Viro3968cf62017-09-03 21:45:17 -0400353#else
354 if (copy_from_user(set, compat, sizeof(compat_sigset_t)))
355 return -EFAULT;
356#endif
357 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
Al Viro3968cf62017-09-03 21:45:17 -0400359EXPORT_SYMBOL_GPL(get_compat_sigset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700361/*
362 * Allocate user-space memory for the duration of a single system call,
363 * in order to marshall parameters inside a compat thunk.
364 */
365void __user *compat_alloc_user_space(unsigned long len)
366{
367 void __user *ptr;
368
369 /* If len would occupy more than half of the entire compat space... */
370 if (unlikely(len > (((compat_uptr_t)~0) >> 1)))
371 return NULL;
372
373 ptr = arch_compat_alloc_user_space(len);
374
Linus Torvalds96d4f262019-01-03 18:57:57 -0800375 if (unlikely(!access_ok(ptr, len)))
H. Peter Anvinc41d68a2010-09-07 16:16:18 -0700376 return NULL;
377
378 return ptr;
379}
380EXPORT_SYMBOL_GPL(compat_alloc_user_space);