syscall.h 4.4 KB
Newer Older
R
Roland McGrath 已提交
1 2 3
/*
 * Access to user system call parameters and results
 *
R
Roland McGrath 已提交
4
 * Copyright (C) 2008-2009 Red Hat, Inc.  All rights reserved.
R
Roland McGrath 已提交
5 6 7 8 9 10 11 12
 *
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU General Public License v.2.
 *
 * See asm-generic/syscall.h for descriptions of what we must do here.
 */

13 14
#ifndef _ASM_X86_SYSCALL_H
#define _ASM_X86_SYSCALL_H
R
Roland McGrath 已提交
15 16

#include <linux/sched.h>
17
#include <linux/err.h>
R
Roland McGrath 已提交
18

19 20
extern const unsigned long sys_call_table[];

R
Roland McGrath 已提交
21 22 23 24 25 26
/*
 * Only the low 32 bits of orig_ax are meaningful, so we return int.
 * This importantly ignores the high bits on 64-bit, so comparisons
 * sign-extend the low 32 bits.
 */
static inline int syscall_get_nr(struct task_struct *task, struct pt_regs *regs)
R
Roland McGrath 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
{
	return regs->orig_ax;
}

static inline void syscall_rollback(struct task_struct *task,
				    struct pt_regs *regs)
{
	regs->ax = regs->orig_ax;
}

static inline long syscall_get_error(struct task_struct *task,
				     struct pt_regs *regs)
{
	unsigned long error = regs->ax;
#ifdef CONFIG_IA32_EMULATION
	/*
	 * TS_COMPAT is set for 32-bit syscall entries and then
	 * remains set until we return to user mode.
	 */
	if (task_thread_info(task)->status & TS_COMPAT)
		/*
		 * Sign-extend the value so (int)-EFOO becomes (long)-EFOO
		 * and will match correctly in comparisons.
		 */
		error = (long) (int) error;
#endif
53
	return IS_ERR_VALUE(error) ? error : 0;
R
Roland McGrath 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
}

static inline long syscall_get_return_value(struct task_struct *task,
					    struct pt_regs *regs)
{
	return regs->ax;
}

static inline void syscall_set_return_value(struct task_struct *task,
					    struct pt_regs *regs,
					    int error, long val)
{
	regs->ax = (long) error ?: val;
}

#ifdef CONFIG_X86_32

static inline void syscall_get_arguments(struct task_struct *task,
					 struct pt_regs *regs,
					 unsigned int i, unsigned int n,
					 unsigned long *args)
{
	BUG_ON(i + n > 6);
	memcpy(args, &regs->bx + i, n * sizeof(args[0]));
}

static inline void syscall_set_arguments(struct task_struct *task,
					 struct pt_regs *regs,
					 unsigned int i, unsigned int n,
					 const unsigned long *args)
{
	BUG_ON(i + n > 6);
	memcpy(&regs->bx + i, args, n * sizeof(args[0]));
}

#else	 /* CONFIG_X86_64 */

static inline void syscall_get_arguments(struct task_struct *task,
					 struct pt_regs *regs,
					 unsigned int i, unsigned int n,
					 unsigned long *args)
{
# ifdef CONFIG_IA32_EMULATION
	if (task_thread_info(task)->status & TS_COMPAT)
R
Roland McGrath 已提交
98 99
		switch (i) {
		case 0:
R
Roland McGrath 已提交
100
			if (!n--) break;
R
Roland McGrath 已提交
101 102
			*args++ = regs->bx;
		case 1:
R
Roland McGrath 已提交
103
			if (!n--) break;
R
Roland McGrath 已提交
104 105
			*args++ = regs->cx;
		case 2:
R
Roland McGrath 已提交
106
			if (!n--) break;
R
Roland McGrath 已提交
107
			*args++ = regs->dx;
R
Roland McGrath 已提交
108 109
		case 3:
			if (!n--) break;
R
Roland McGrath 已提交
110 111
			*args++ = regs->si;
		case 4:
R
Roland McGrath 已提交
112
			if (!n--) break;
R
Roland McGrath 已提交
113 114
			*args++ = regs->di;
		case 5:
R
Roland McGrath 已提交
115
			if (!n--) break;
R
Roland McGrath 已提交
116 117
			*args++ = regs->bp;
		case 6:
R
Roland McGrath 已提交
118 119 120 121 122 123 124
			if (!n--) break;
		default:
			BUG();
			break;
		}
	else
# endif
R
Roland McGrath 已提交
125 126
		switch (i) {
		case 0:
R
Roland McGrath 已提交
127
			if (!n--) break;
R
Roland McGrath 已提交
128 129
			*args++ = regs->di;
		case 1:
R
Roland McGrath 已提交
130
			if (!n--) break;
R
Roland McGrath 已提交
131 132
			*args++ = regs->si;
		case 2:
R
Roland McGrath 已提交
133
			if (!n--) break;
R
Roland McGrath 已提交
134
			*args++ = regs->dx;
R
Roland McGrath 已提交
135 136
		case 3:
			if (!n--) break;
R
Roland McGrath 已提交
137 138
			*args++ = regs->r10;
		case 4:
R
Roland McGrath 已提交
139
			if (!n--) break;
R
Roland McGrath 已提交
140 141
			*args++ = regs->r8;
		case 5:
R
Roland McGrath 已提交
142
			if (!n--) break;
R
Roland McGrath 已提交
143 144
			*args++ = regs->r9;
		case 6:
R
Roland McGrath 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158
			if (!n--) break;
		default:
			BUG();
			break;
		}
}

static inline void syscall_set_arguments(struct task_struct *task,
					 struct pt_regs *regs,
					 unsigned int i, unsigned int n,
					 const unsigned long *args)
{
# ifdef CONFIG_IA32_EMULATION
	if (task_thread_info(task)->status & TS_COMPAT)
R
Roland McGrath 已提交
159 160
		switch (i) {
		case 0:
R
Roland McGrath 已提交
161
			if (!n--) break;
R
Roland McGrath 已提交
162 163
			regs->bx = *args++;
		case 1:
R
Roland McGrath 已提交
164
			if (!n--) break;
R
Roland McGrath 已提交
165 166
			regs->cx = *args++;
		case 2:
R
Roland McGrath 已提交
167
			if (!n--) break;
R
Roland McGrath 已提交
168
			regs->dx = *args++;
R
Roland McGrath 已提交
169 170
		case 3:
			if (!n--) break;
R
Roland McGrath 已提交
171 172
			regs->si = *args++;
		case 4:
R
Roland McGrath 已提交
173
			if (!n--) break;
R
Roland McGrath 已提交
174 175
			regs->di = *args++;
		case 5:
R
Roland McGrath 已提交
176
			if (!n--) break;
R
Roland McGrath 已提交
177 178
			regs->bp = *args++;
		case 6:
R
Roland McGrath 已提交
179 180 181
			if (!n--) break;
		default:
			BUG();
R
Roland McGrath 已提交
182
			break;
R
Roland McGrath 已提交
183 184 185
		}
	else
# endif
R
Roland McGrath 已提交
186 187
		switch (i) {
		case 0:
R
Roland McGrath 已提交
188
			if (!n--) break;
R
Roland McGrath 已提交
189 190
			regs->di = *args++;
		case 1:
R
Roland McGrath 已提交
191
			if (!n--) break;
R
Roland McGrath 已提交
192 193
			regs->si = *args++;
		case 2:
R
Roland McGrath 已提交
194
			if (!n--) break;
R
Roland McGrath 已提交
195
			regs->dx = *args++;
R
Roland McGrath 已提交
196 197
		case 3:
			if (!n--) break;
R
Roland McGrath 已提交
198 199
			regs->r10 = *args++;
		case 4:
R
Roland McGrath 已提交
200
			if (!n--) break;
R
Roland McGrath 已提交
201 202
			regs->r8 = *args++;
		case 5:
R
Roland McGrath 已提交
203
			if (!n--) break;
R
Roland McGrath 已提交
204 205
			regs->r9 = *args++;
		case 6:
R
Roland McGrath 已提交
206 207 208
			if (!n--) break;
		default:
			BUG();
R
Roland McGrath 已提交
209
			break;
R
Roland McGrath 已提交
210 211 212 213 214
		}
}

#endif	/* CONFIG_X86_32 */

215
#endif	/* _ASM_X86_SYSCALL_H */