blob: 55551989d9da50215c2c0954d55baa2a83bc03a9 [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
Chris Metcalfbe84cb42011-05-09 13:12:30 -040029#ifdef __ARCH_WANT_SYS_SIGPROCMASK
30
Jan Kiszkab7dafa02012-05-10 10:04:36 -030031/*
32 * sys_sigprocmask SIG_SETMASK sets the first (compat) word of the
33 * blocked set of signals to the supplied signal set
34 */
35static inline void compat_sig_setmask(sigset_t *blocked, compat_sigset_word set)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Jan Kiszkab7dafa02012-05-10 10:04:36 -030037 memcpy(blocked->sig, &set, sizeof(set));
38}
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Al Viro5cf22102012-11-25 19:41:01 -050040COMPAT_SYSCALL_DEFINE3(sigprocmask, int, how,
41 compat_old_sigset_t __user *, nset,
42 compat_old_sigset_t __user *, oset)
Jan Kiszkab7dafa02012-05-10 10:04:36 -030043{
44 old_sigset_t old_set, new_set;
45 sigset_t new_blocked;
46
47 old_set = current->blocked.sig[0];
48
49 if (nset) {
50 if (get_user(new_set, nset))
51 return -EFAULT;
52 new_set &= ~(sigmask(SIGKILL) | sigmask(SIGSTOP));
53
54 new_blocked = current->blocked;
55
56 switch (how) {
57 case SIG_BLOCK:
58 sigaddsetmask(&new_blocked, new_set);
59 break;
60 case SIG_UNBLOCK:
61 sigdelsetmask(&new_blocked, new_set);
62 break;
63 case SIG_SETMASK:
64 compat_sig_setmask(&new_blocked, new_set);
65 break;
66 default:
67 return -EINVAL;
68 }
69
70 set_current_blocked(&new_blocked);
71 }
72
73 if (oset) {
74 if (put_user(old_set, oset))
75 return -EFAULT;
76 }
77
78 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
Chris Metcalfbe84cb42011-05-09 13:12:30 -040081#endif
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083int put_compat_rusage(const struct rusage *r, struct compat_rusage __user *ru)
84{
Al Viro7668b672017-05-31 06:39:31 -040085 struct compat_rusage r32;
86 memset(&r32, 0, sizeof(r32));
87 r32.ru_utime.tv_sec = r->ru_utime.tv_sec;
88 r32.ru_utime.tv_usec = r->ru_utime.tv_usec;
89 r32.ru_stime.tv_sec = r->ru_stime.tv_sec;
90 r32.ru_stime.tv_usec = r->ru_stime.tv_usec;
91 r32.ru_maxrss = r->ru_maxrss;
92 r32.ru_ixrss = r->ru_ixrss;
93 r32.ru_idrss = r->ru_idrss;
94 r32.ru_isrss = r->ru_isrss;
95 r32.ru_minflt = r->ru_minflt;
96 r32.ru_majflt = r->ru_majflt;
97 r32.ru_nswap = r->ru_nswap;
98 r32.ru_inblock = r->ru_inblock;
99 r32.ru_oublock = r->ru_oublock;
100 r32.ru_msgsnd = r->ru_msgsnd;
101 r32.ru_msgrcv = r->ru_msgrcv;
102 r32.ru_nsignals = r->ru_nsignals;
103 r32.ru_nvcsw = r->ru_nvcsw;
104 r32.ru_nivcsw = r->ru_nivcsw;
105 if (copy_to_user(ru, &r32, sizeof(r32)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return -EFAULT;
107 return 0;
108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static int compat_get_user_cpu_mask(compat_ulong_t __user *user_mask_ptr,
Rusty Russella45185d2009-01-01 10:12:24 +1030111 unsigned len, struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 unsigned long *k;
114
Rusty Russella45185d2009-01-01 10:12:24 +1030115 if (len < cpumask_size())
116 memset(new_mask, 0, cpumask_size());
117 else if (len > cpumask_size())
118 len = cpumask_size();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Rusty Russella45185d2009-01-01 10:12:24 +1030120 k = cpumask_bits(new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return compat_get_bitmap(k, user_mask_ptr, len * 8);
122}
123
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100124COMPAT_SYSCALL_DEFINE3(sched_setaffinity, compat_pid_t, pid,
125 unsigned int, len,
126 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Rusty Russella45185d2009-01-01 10:12:24 +1030128 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int retval;
130
Rusty Russella45185d2009-01-01 10:12:24 +1030131 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
132 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Rusty Russella45185d2009-01-01 10:12:24 +1030134 retval = compat_get_user_cpu_mask(user_mask_ptr, len, new_mask);
135 if (retval)
136 goto out;
137
138 retval = sched_setaffinity(pid, new_mask);
139out:
140 free_cpumask_var(new_mask);
141 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Heiko Carstens62a6fa92014-03-03 16:11:13 +0100144COMPAT_SYSCALL_DEFINE3(sched_getaffinity, compat_pid_t, pid, unsigned int, len,
145 compat_ulong_t __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 int ret;
Rusty Russella45185d2009-01-01 10:12:24 +1030148 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900150 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
151 return -EINVAL;
152 if (len & (sizeof(compat_ulong_t)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return -EINVAL;
154
Rusty Russella45185d2009-01-01 10:12:24 +1030155 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
156 return -ENOMEM;
157
158 ret = sched_getaffinity(pid, mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900159 if (ret == 0) {
Alexey Dobriyan4de373a2018-02-06 15:39:37 -0800160 unsigned int retlen = min(len, cpumask_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900162 if (compat_put_bitmap(user_mask_ptr, cpumask_bits(mask), retlen * 8))
163 ret = -EFAULT;
164 else
165 ret = retlen;
166 }
Rusty Russella45185d2009-01-01 10:12:24 +1030167 free_cpumask_var(mask);
KOSAKI Motohirofa9dc262010-05-19 09:37:41 +0900168
Rusty Russella45185d2009-01-01 10:12:24 +1030169 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*
173 * We currently only need the following fields from the sigevent
174 * structure: sigev_value, sigev_signo, sig_notify and (sometimes
175 * sigev_notify_thread_id). The others are handled in user mode.
176 * We also assume that copying sigev_value.sival_int is sufficient
177 * to keep all the bits of sigev_value.sival_ptr intact.
178 */
179int get_compat_sigevent(struct sigevent *event,
180 const struct compat_sigevent __user *u_event)
181{
David S. Miller51410d32005-04-16 15:24:01 -0700182 memset(event, 0, sizeof(*event));
Linus Torvalds96d4f262019-01-03 18:57:57 -0800183 return (!access_ok(u_event, sizeof(*u_event)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 __get_user(event->sigev_value.sival_int,
185 &u_event->sigev_value.sival_int) ||
186 __get_user(event->sigev_signo, &u_event->sigev_signo) ||
187 __get_user(event->sigev_notify, &u_event->sigev_notify) ||
188 __get_user(event->sigev_notify_thread_id,
189 &u_event->sigev_notify_thread_id))
190 ? -EFAULT : 0;
191}
192
Stephen Rothwell5fa38392006-10-28 10:38:46 -0700193long compat_get_bitmap(unsigned long *mask, const compat_ulong_t __user *umask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 unsigned long bitmap_size)
195{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 unsigned long nr_compat_longs;
197
198 /* align bitmap up to nearest compat_long_t boundary */
199 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
Al Viro1e1fc132017-05-30 00:29:38 -0400200 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Christophe Leroy41cd7802020-04-03 07:20:51 +0000202 if (!user_read_access_begin(umask, bitmap_size / 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 return -EFAULT;
204
Al Viro1e1fc132017-05-30 00:29:38 -0400205 while (nr_compat_longs > 1) {
206 compat_ulong_t l1, l2;
207 unsafe_get_user(l1, umask++, Efault);
208 unsafe_get_user(l2, umask++, Efault);
209 *mask++ = ((unsigned long)l2 << BITS_PER_COMPAT_LONG) | l1;
210 nr_compat_longs -= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
Al Viro1e1fc132017-05-30 00:29:38 -0400212 if (nr_compat_longs)
213 unsafe_get_user(*mask, umask++, Efault);
Christophe Leroy41cd7802020-04-03 07:20:51 +0000214 user_read_access_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return 0;
Al Viro1e1fc132017-05-30 00:29:38 -0400216
217Efault:
Christophe Leroy41cd7802020-04-03 07:20:51 +0000218 user_read_access_end();
Al Viro1e1fc132017-05-30 00:29:38 -0400219 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
222long compat_put_bitmap(compat_ulong_t __user *umask, unsigned long *mask,
223 unsigned long bitmap_size)
224{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 unsigned long nr_compat_longs;
226
227 /* align bitmap up to nearest compat_long_t boundary */
228 bitmap_size = ALIGN(bitmap_size, BITS_PER_COMPAT_LONG);
Al Viro1e1fc132017-05-30 00:29:38 -0400229 nr_compat_longs = BITS_TO_COMPAT_LONGS(bitmap_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Christophe Leroy41cd7802020-04-03 07:20:51 +0000231 if (!user_write_access_begin(umask, bitmap_size / 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return -EFAULT;
233
Al Viro1e1fc132017-05-30 00:29:38 -0400234 while (nr_compat_longs > 1) {
235 unsigned long m = *mask++;
236 unsafe_put_user((compat_ulong_t)m, umask++, Efault);
237 unsafe_put_user(m >> BITS_PER_COMPAT_LONG, umask++, Efault);
238 nr_compat_longs -= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
Al Viro1e1fc132017-05-30 00:29:38 -0400240 if (nr_compat_longs)
241 unsafe_put_user((compat_ulong_t)*mask, umask++, Efault);
Christophe Leroy41cd7802020-04-03 07:20:51 +0000242 user_write_access_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return 0;
Al Viro1e1fc132017-05-30 00:29:38 -0400244Efault:
Christophe Leroy41cd7802020-04-03 07:20:51 +0000245 user_write_access_end();
Al Viro1e1fc132017-05-30 00:29:38 -0400246 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Al Viro3968cf62017-09-03 21:45:17 -0400249int
250get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Al Viro3968cf62017-09-03 21:45:17 -0400252#ifdef __BIG_ENDIAN
253 compat_sigset_t v;
254 if (copy_from_user(&v, compat, sizeof(compat_sigset_t)))
255 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 switch (_NSIG_WORDS) {
Al Viro3968cf62017-09-03 21:45:17 -0400257 case 4: set->sig[3] = v.sig[6] | (((long)v.sig[7]) << 32 );
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500258 fallthrough;
Al Viro3968cf62017-09-03 21:45:17 -0400259 case 3: set->sig[2] = v.sig[4] | (((long)v.sig[5]) << 32 );
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500260 fallthrough;
Al Viro3968cf62017-09-03 21:45:17 -0400261 case 2: set->sig[1] = v.sig[2] | (((long)v.sig[3]) << 32 );
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500262 fallthrough;
Al Viro3968cf62017-09-03 21:45:17 -0400263 case 1: set->sig[0] = v.sig[0] | (((long)v.sig[1]) << 32 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
Al Viro3968cf62017-09-03 21:45:17 -0400265#else
266 if (copy_from_user(set, compat, sizeof(compat_sigset_t)))
267 return -EFAULT;
268#endif
269 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
Al Viro3968cf62017-09-03 21:45:17 -0400271EXPORT_SYMBOL_GPL(get_compat_sigset);