blob: eaa6ca062d89b6a1c2f3fe353ae7c32216c480dd [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Will Deacon3dd681d2012-03-05 11:49:32 +00002/*
3 * Copyright (C) 2012 ARM Ltd.
Will Deacon3dd681d2012-03-05 11:49:32 +00004 */
5#ifndef __ASM_COMPAT_H
6#define __ASM_COMPAT_H
Arnd Bergmann556d6872019-12-09 16:16:20 +01007
Arnd Bergmann1a33b182021-07-22 16:28:58 +02008#define compat_mode_t compat_mode_t
9typedef u16 compat_mode_t;
10
Arnd Bergmann556d6872019-12-09 16:16:20 +010011#include <asm-generic/compat.h>
12
Will Deacon3dd681d2012-03-05 11:49:32 +000013#ifdef CONFIG_COMPAT
14
15/*
16 * Architecture specific compatibility types
17 */
18#include <linux/types.h>
19#include <linux/sched.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010020#include <linux/sched/task_stack.h>
Will Deacon3dd681d2012-03-05 11:49:32 +000021
22#define COMPAT_USER_HZ 100
Will Deacona795a382013-10-11 14:52:12 +010023#ifdef __AARCH64EB__
24#define COMPAT_UTS_MACHINE "armv8b\0\0"
25#else
Will Deacon3dd681d2012-03-05 11:49:32 +000026#define COMPAT_UTS_MACHINE "armv8l\0\0"
Will Deacona795a382013-10-11 14:52:12 +010027#endif
Will Deacon3dd681d2012-03-05 11:49:32 +000028
Victor Kamensky971a5b62014-10-14 06:55:05 +010029typedef u16 __compat_uid_t;
30typedef u16 __compat_gid_t;
Catalin Marinasf15a2a12013-04-25 11:23:41 +010031typedef u16 __compat_uid16_t;
32typedef u16 __compat_gid16_t;
Will Deacon3dd681d2012-03-05 11:49:32 +000033typedef u32 compat_dev_t;
Catalin Marinasf15a2a12013-04-25 11:23:41 +010034typedef s32 compat_nlink_t;
Will Deacon3dd681d2012-03-05 11:49:32 +000035typedef u16 compat_ipc_pid_t;
Will Deacon3dd681d2012-03-05 11:49:32 +000036typedef __kernel_fsid_t compat_fsid_t;
Will Deacon3dd681d2012-03-05 11:49:32 +000037
Will Deacon3dd681d2012-03-05 11:49:32 +000038struct compat_stat {
Will Deacona795a382013-10-11 14:52:12 +010039#ifdef __AARCH64EB__
40 short st_dev;
41 short __pad1;
42#else
Will Deacon3dd681d2012-03-05 11:49:32 +000043 compat_dev_t st_dev;
Will Deacona795a382013-10-11 14:52:12 +010044#endif
Will Deacon3dd681d2012-03-05 11:49:32 +000045 compat_ino_t st_ino;
46 compat_mode_t st_mode;
Catalin Marinasf15a2a12013-04-25 11:23:41 +010047 compat_ushort_t st_nlink;
48 __compat_uid16_t st_uid;
49 __compat_gid16_t st_gid;
Will Deacona795a382013-10-11 14:52:12 +010050#ifdef __AARCH64EB__
51 short st_rdev;
52 short __pad2;
53#else
Will Deacon3dd681d2012-03-05 11:49:32 +000054 compat_dev_t st_rdev;
Will Deacona795a382013-10-11 14:52:12 +010055#endif
Will Deacon3dd681d2012-03-05 11:49:32 +000056 compat_off_t st_size;
57 compat_off_t st_blksize;
58 compat_off_t st_blocks;
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +020059 old_time32_t st_atime;
Catalin Marinasf15a2a12013-04-25 11:23:41 +010060 compat_ulong_t st_atime_nsec;
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +020061 old_time32_t st_mtime;
Catalin Marinasf15a2a12013-04-25 11:23:41 +010062 compat_ulong_t st_mtime_nsec;
Arnd Bergmann9afc5ee2018-07-13 12:52:28 +020063 old_time32_t st_ctime;
Catalin Marinasf15a2a12013-04-25 11:23:41 +010064 compat_ulong_t st_ctime_nsec;
65 compat_ulong_t __unused4[2];
Will Deacon3dd681d2012-03-05 11:49:32 +000066};
67
68struct compat_flock {
69 short l_type;
70 short l_whence;
71 compat_off_t l_start;
72 compat_off_t l_len;
73 compat_pid_t l_pid;
74};
75
76#define F_GETLK64 12 /* using 'struct flock64' */
77#define F_SETLK64 13
78#define F_SETLKW64 14
79
80struct compat_flock64 {
81 short l_type;
82 short l_whence;
83 compat_loff_t l_start;
84 compat_loff_t l_len;
85 compat_pid_t l_pid;
86};
87
88struct compat_statfs {
89 int f_type;
90 int f_bsize;
91 int f_blocks;
92 int f_bfree;
93 int f_bavail;
94 int f_files;
95 int f_ffree;
96 compat_fsid_t f_fsid;
97 int f_namelen; /* SunOS ignores this field. */
98 int f_frsize;
99 int f_flags;
100 int f_spare[4];
101};
102
103#define COMPAT_RLIM_INFINITY 0xffffffff
104
Will Deacon3dd681d2012-03-05 11:49:32 +0000105#define COMPAT_OFF_T_MAX 0x7fffffff
Will Deacon3dd681d2012-03-05 11:49:32 +0000106
Arnd Bergmannadc235a2015-11-16 17:32:15 +0100107#define compat_user_stack_pointer() (user_stack_pointer(task_pt_regs(current)))
Will Deacon24951462018-09-05 15:34:43 +0100108#define COMPAT_MINSIGSTKSZ 2048
Al Viro9b064fc2012-12-14 13:49:35 -0500109
Will Deacon3dd681d2012-03-05 11:49:32 +0000110struct compat_ipc64_perm {
111 compat_key_t key;
112 __compat_uid32_t uid;
113 __compat_gid32_t gid;
114 __compat_uid32_t cuid;
115 __compat_gid32_t cgid;
116 unsigned short mode;
117 unsigned short __pad1;
118 unsigned short seq;
119 unsigned short __pad2;
120 compat_ulong_t unused1;
121 compat_ulong_t unused2;
122};
123
124struct compat_semid64_ds {
125 struct compat_ipc64_perm sem_perm;
Arnd Bergmann83335eb2018-04-12 12:34:16 +0200126 compat_ulong_t sem_otime;
127 compat_ulong_t sem_otime_high;
128 compat_ulong_t sem_ctime;
129 compat_ulong_t sem_ctime_high;
Will Deacon3dd681d2012-03-05 11:49:32 +0000130 compat_ulong_t sem_nsems;
131 compat_ulong_t __unused3;
132 compat_ulong_t __unused4;
133};
134
135struct compat_msqid64_ds {
136 struct compat_ipc64_perm msg_perm;
Arnd Bergmann83335eb2018-04-12 12:34:16 +0200137 compat_ulong_t msg_stime;
138 compat_ulong_t msg_stime_high;
139 compat_ulong_t msg_rtime;
140 compat_ulong_t msg_rtime_high;
141 compat_ulong_t msg_ctime;
142 compat_ulong_t msg_ctime_high;
Will Deacon3dd681d2012-03-05 11:49:32 +0000143 compat_ulong_t msg_cbytes;
144 compat_ulong_t msg_qnum;
145 compat_ulong_t msg_qbytes;
146 compat_pid_t msg_lspid;
147 compat_pid_t msg_lrpid;
148 compat_ulong_t __unused4;
149 compat_ulong_t __unused5;
150};
151
152struct compat_shmid64_ds {
153 struct compat_ipc64_perm shm_perm;
154 compat_size_t shm_segsz;
Arnd Bergmann83335eb2018-04-12 12:34:16 +0200155 compat_ulong_t shm_atime;
156 compat_ulong_t shm_atime_high;
157 compat_ulong_t shm_dtime;
158 compat_ulong_t shm_dtime_high;
159 compat_ulong_t shm_ctime;
160 compat_ulong_t shm_ctime_high;
Will Deacon3dd681d2012-03-05 11:49:32 +0000161 compat_pid_t shm_cpid;
162 compat_pid_t shm_lpid;
163 compat_ulong_t shm_nattch;
164 compat_ulong_t __unused4;
165 compat_ulong_t __unused5;
166};
167
168static inline int is_compat_task(void)
169{
170 return test_thread_flag(TIF_32BIT);
171}
172
173static inline int is_compat_thread(struct thread_info *thread)
174{
175 return test_ti_thread_flag(thread, TIF_32BIT);
176}
177
178#else /* !CONFIG_COMPAT */
179
Will Deacon3dd681d2012-03-05 11:49:32 +0000180static inline int is_compat_thread(struct thread_info *thread)
181{
182 return 0;
183}
184
185#endif /* CONFIG_COMPAT */
Will Deacon3dd681d2012-03-05 11:49:32 +0000186#endif /* __ASM_COMPAT_H */