blob: 8d33bc5462d1bd30af43bcb4156fec351149eaa6 [file] [log] [blame]
Roland McGrath68bd0f42008-04-18 17:08:44 -07001/*
2 * Access to user system call parameters and results
3 *
Roland McGrath18c1e2c2009-09-22 19:57:51 -07004 * Copyright (C) 2008-2009 Red Hat, Inc. All rights reserved.
Roland McGrath68bd0f42008-04-18 17:08:44 -07005 *
6 * This copyrighted material is made available to anyone wishing to use,
7 * modify, copy, or redistribute it subject to the terms and conditions
8 * of the GNU General Public License v.2.
9 *
10 * See asm-generic/syscall.h for descriptions of what we must do here.
11 */
12
H. Peter Anvin5e1b0072008-10-23 00:20:33 -070013#ifndef _ASM_X86_SYSCALL_H
14#define _ASM_X86_SYSCALL_H
Roland McGrath68bd0f42008-04-18 17:08:44 -070015
16#include <linux/sched.h>
Petr Tesarik4ab4ba32008-09-03 13:31:42 +020017#include <linux/err.h>
Roland McGrath68bd0f42008-04-18 17:08:44 -070018
Roland McGrath18c1e2c2009-09-22 19:57:51 -070019/*
20 * Only the low 32 bits of orig_ax are meaningful, so we return int.
21 * This importantly ignores the high bits on 64-bit, so comparisons
22 * sign-extend the low 32 bits.
23 */
24static inline int syscall_get_nr(struct task_struct *task, struct pt_regs *regs)
Roland McGrath68bd0f42008-04-18 17:08:44 -070025{
Roland McGrath68bd0f42008-04-18 17:08:44 -070026 return regs->orig_ax;
27}
28
29static inline void syscall_rollback(struct task_struct *task,
30 struct pt_regs *regs)
31{
32 regs->ax = regs->orig_ax;
33}
34
35static inline long syscall_get_error(struct task_struct *task,
36 struct pt_regs *regs)
37{
38 unsigned long error = regs->ax;
39#ifdef CONFIG_IA32_EMULATION
40 /*
41 * TS_COMPAT is set for 32-bit syscall entries and then
42 * remains set until we return to user mode.
43 */
44 if (task_thread_info(task)->status & TS_COMPAT)
45 /*
46 * Sign-extend the value so (int)-EFOO becomes (long)-EFOO
47 * and will match correctly in comparisons.
48 */
49 error = (long) (int) error;
50#endif
Petr Tesarik4ab4ba32008-09-03 13:31:42 +020051 return IS_ERR_VALUE(error) ? error : 0;
Roland McGrath68bd0f42008-04-18 17:08:44 -070052}
53
54static inline long syscall_get_return_value(struct task_struct *task,
55 struct pt_regs *regs)
56{
57 return regs->ax;
58}
59
60static inline void syscall_set_return_value(struct task_struct *task,
61 struct pt_regs *regs,
62 int error, long val)
63{
64 regs->ax = (long) error ?: val;
65}
66
67#ifdef CONFIG_X86_32
68
69static inline void syscall_get_arguments(struct task_struct *task,
70 struct pt_regs *regs,
71 unsigned int i, unsigned int n,
72 unsigned long *args)
73{
74 BUG_ON(i + n > 6);
75 memcpy(args, &regs->bx + i, n * sizeof(args[0]));
76}
77
78static inline void syscall_set_arguments(struct task_struct *task,
79 struct pt_regs *regs,
80 unsigned int i, unsigned int n,
81 const unsigned long *args)
82{
83 BUG_ON(i + n > 6);
84 memcpy(&regs->bx + i, args, n * sizeof(args[0]));
85}
86
87#else /* CONFIG_X86_64 */
88
89static inline void syscall_get_arguments(struct task_struct *task,
90 struct pt_regs *regs,
91 unsigned int i, unsigned int n,
92 unsigned long *args)
93{
94# ifdef CONFIG_IA32_EMULATION
95 if (task_thread_info(task)->status & TS_COMPAT)
Linus Torvaldsc3c98972008-10-23 12:38:39 -070096 switch (i) {
97 case 0:
Roland McGrath68bd0f42008-04-18 17:08:44 -070098 if (!n--) break;
99 *args++ = regs->bx;
Linus Torvaldsc3c98972008-10-23 12:38:39 -0700100 case 1:
101 if (!n--) break;
102 *args++ = regs->cx;
103 case 2:
104 if (!n--) break;
105 *args++ = regs->dx;
106 case 3:
107 if (!n--) break;
108 *args++ = regs->si;
109 case 4:
110 if (!n--) break;
111 *args++ = regs->di;
112 case 5:
113 if (!n--) break;
114 *args++ = regs->bp;
115 case 6:
Roland McGrath68bd0f42008-04-18 17:08:44 -0700116 if (!n--) break;
117 default:
118 BUG();
119 break;
120 }
121 else
122# endif
Linus Torvaldsc3c98972008-10-23 12:38:39 -0700123 switch (i) {
124 case 0:
Roland McGrath68bd0f42008-04-18 17:08:44 -0700125 if (!n--) break;
126 *args++ = regs->di;
Linus Torvaldsc3c98972008-10-23 12:38:39 -0700127 case 1:
128 if (!n--) break;
129 *args++ = regs->si;
130 case 2:
131 if (!n--) break;
132 *args++ = regs->dx;
133 case 3:
134 if (!n--) break;
135 *args++ = regs->r10;
136 case 4:
137 if (!n--) break;
138 *args++ = regs->r8;
139 case 5:
140 if (!n--) break;
141 *args++ = regs->r9;
142 case 6:
Roland McGrath68bd0f42008-04-18 17:08:44 -0700143 if (!n--) break;
144 default:
145 BUG();
146 break;
147 }
148}
149
150static inline void syscall_set_arguments(struct task_struct *task,
151 struct pt_regs *regs,
152 unsigned int i, unsigned int n,
153 const unsigned long *args)
154{
155# ifdef CONFIG_IA32_EMULATION
156 if (task_thread_info(task)->status & TS_COMPAT)
Linus Torvaldsc3c98972008-10-23 12:38:39 -0700157 switch (i) {
158 case 0:
Roland McGrath68bd0f42008-04-18 17:08:44 -0700159 if (!n--) break;
160 regs->bx = *args++;
Linus Torvaldsc3c98972008-10-23 12:38:39 -0700161 case 1:
162 if (!n--) break;
163 regs->cx = *args++;
164 case 2:
165 if (!n--) break;
166 regs->dx = *args++;
167 case 3:
168 if (!n--) break;
169 regs->si = *args++;
170 case 4:
171 if (!n--) break;
172 regs->di = *args++;
173 case 5:
174 if (!n--) break;
175 regs->bp = *args++;
176 case 6:
Roland McGrath68bd0f42008-04-18 17:08:44 -0700177 if (!n--) break;
178 default:
179 BUG();
Linus Torvaldsc3c98972008-10-23 12:38:39 -0700180 break;
Roland McGrath68bd0f42008-04-18 17:08:44 -0700181 }
182 else
183# endif
Linus Torvaldsc3c98972008-10-23 12:38:39 -0700184 switch (i) {
185 case 0:
Roland McGrath68bd0f42008-04-18 17:08:44 -0700186 if (!n--) break;
187 regs->di = *args++;
Linus Torvaldsc3c98972008-10-23 12:38:39 -0700188 case 1:
189 if (!n--) break;
190 regs->si = *args++;
191 case 2:
192 if (!n--) break;
193 regs->dx = *args++;
194 case 3:
195 if (!n--) break;
196 regs->r10 = *args++;
197 case 4:
198 if (!n--) break;
199 regs->r8 = *args++;
200 case 5:
201 if (!n--) break;
202 regs->r9 = *args++;
203 case 6:
Roland McGrath68bd0f42008-04-18 17:08:44 -0700204 if (!n--) break;
205 default:
206 BUG();
Linus Torvaldsc3c98972008-10-23 12:38:39 -0700207 break;
Roland McGrath68bd0f42008-04-18 17:08:44 -0700208 }
209}
210
211#endif /* CONFIG_X86_32 */
212
H. Peter Anvin5e1b0072008-10-23 00:20:33 -0700213#endif /* _ASM_X86_SYSCALL_H */