Linux Audio

Check our new training course

Loading...
v4.17
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * unaligned.c: Unaligned load/store trap handling with special
  4 *              cases for the kernel to do them more quickly.
  5 *
  6 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  7 * Copyright (C) 1996 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  8 */
  9
 10
 11#include <linux/kernel.h>
 12#include <linux/sched/signal.h>
 13#include <linux/mm.h>
 14#include <asm/ptrace.h>
 15#include <asm/processor.h>
 16#include <linux/uaccess.h>
 17#include <linux/smp.h>
 18#include <linux/perf_event.h>
 19
 20#include <asm/setup.h>
 21
 22#include "kernel.h"
 23
 24enum direction {
 25	load,    /* ld, ldd, ldh, ldsh */
 26	store,   /* st, std, sth, stsh */
 27	both,    /* Swap, ldstub, etc. */
 28	fpload,
 29	fpstore,
 30	invalid,
 31};
 32
 33static inline enum direction decode_direction(unsigned int insn)
 34{
 35	unsigned long tmp = (insn >> 21) & 1;
 36
 37	if(!tmp)
 38		return load;
 39	else {
 40		if(((insn>>19)&0x3f) == 15)
 41			return both;
 42		else
 43			return store;
 44	}
 45}
 46
 47/* 8 = double-word, 4 = word, 2 = half-word */
 48static inline int decode_access_size(unsigned int insn)
 49{
 50	insn = (insn >> 19) & 3;
 51
 52	if(!insn)
 53		return 4;
 54	else if(insn == 3)
 55		return 8;
 56	else if(insn == 2)
 57		return 2;
 58	else {
 59		printk("Impossible unaligned trap. insn=%08x\n", insn);
 60		die_if_kernel("Byte sized unaligned access?!?!", current->thread.kregs);
 61		return 4; /* just to keep gcc happy. */
 62	}
 63}
 64
 65/* 0x400000 = signed, 0 = unsigned */
 66static inline int decode_signedness(unsigned int insn)
 67{
 68	return (insn & 0x400000);
 69}
 70
 71static inline void maybe_flush_windows(unsigned int rs1, unsigned int rs2,
 72				       unsigned int rd)
 73{
 74	if(rs2 >= 16 || rs1 >= 16 || rd >= 16) {
 75		/* Wheee... */
 76		__asm__ __volatile__("save %sp, -0x40, %sp\n\t"
 77				     "save %sp, -0x40, %sp\n\t"
 78				     "save %sp, -0x40, %sp\n\t"
 79				     "save %sp, -0x40, %sp\n\t"
 80				     "save %sp, -0x40, %sp\n\t"
 81				     "save %sp, -0x40, %sp\n\t"
 82				     "save %sp, -0x40, %sp\n\t"
 83				     "restore; restore; restore; restore;\n\t"
 84				     "restore; restore; restore;\n\t");
 85	}
 86}
 87
 88static inline int sign_extend_imm13(int imm)
 89{
 90	return imm << 19 >> 19;
 91}
 92
 93static inline unsigned long fetch_reg(unsigned int reg, struct pt_regs *regs)
 94{
 95	struct reg_window32 *win;
 96
 97	if(reg < 16)
 98		return (!reg ? 0 : regs->u_regs[reg]);
 99
100	/* Ho hum, the slightly complicated case. */
101	win = (struct reg_window32 *) regs->u_regs[UREG_FP];
102	return win->locals[reg - 16]; /* yes, I know what this does... */
103}
104
105static inline unsigned long safe_fetch_reg(unsigned int reg, struct pt_regs *regs)
106{
107	struct reg_window32 __user *win;
108	unsigned long ret;
109
110	if (reg < 16)
111		return (!reg ? 0 : regs->u_regs[reg]);
112
113	/* Ho hum, the slightly complicated case. */
114	win = (struct reg_window32 __user *) regs->u_regs[UREG_FP];
115
116	if ((unsigned long)win & 3)
117		return -1;
118
119	if (get_user(ret, &win->locals[reg - 16]))
120		return -1;
121
122	return ret;
123}
124
125static inline unsigned long *fetch_reg_addr(unsigned int reg, struct pt_regs *regs)
126{
127	struct reg_window32 *win;
128
129	if(reg < 16)
130		return &regs->u_regs[reg];
131	win = (struct reg_window32 *) regs->u_regs[UREG_FP];
132	return &win->locals[reg - 16];
133}
134
135static unsigned long compute_effective_address(struct pt_regs *regs,
136					       unsigned int insn)
137{
138	unsigned int rs1 = (insn >> 14) & 0x1f;
139	unsigned int rs2 = insn & 0x1f;
140	unsigned int rd = (insn >> 25) & 0x1f;
141
142	if(insn & 0x2000) {
143		maybe_flush_windows(rs1, 0, rd);
144		return (fetch_reg(rs1, regs) + sign_extend_imm13(insn));
145	} else {
146		maybe_flush_windows(rs1, rs2, rd);
147		return (fetch_reg(rs1, regs) + fetch_reg(rs2, regs));
148	}
149}
150
151unsigned long safe_compute_effective_address(struct pt_regs *regs,
152					     unsigned int insn)
153{
154	unsigned int rs1 = (insn >> 14) & 0x1f;
155	unsigned int rs2 = insn & 0x1f;
156	unsigned int rd = (insn >> 25) & 0x1f;
157
158	if(insn & 0x2000) {
159		maybe_flush_windows(rs1, 0, rd);
160		return (safe_fetch_reg(rs1, regs) + sign_extend_imm13(insn));
161	} else {
162		maybe_flush_windows(rs1, rs2, rd);
163		return (safe_fetch_reg(rs1, regs) + safe_fetch_reg(rs2, regs));
164	}
165}
166
167/* This is just to make gcc think panic does return... */
168static void unaligned_panic(char *str)
169{
170	panic("%s", str);
171}
172
173/* una_asm.S */
174extern int do_int_load(unsigned long *dest_reg, int size,
175		       unsigned long *saddr, int is_signed);
176extern int __do_int_store(unsigned long *dst_addr, int size,
177			  unsigned long *src_val);
178
179static int do_int_store(int reg_num, int size, unsigned long *dst_addr,
180			struct pt_regs *regs)
181{
182	unsigned long zero[2] = { 0, 0 };
183	unsigned long *src_val;
184
185	if (reg_num)
186		src_val = fetch_reg_addr(reg_num, regs);
187	else {
188		src_val = &zero[0];
189		if (size == 8)
190			zero[1] = fetch_reg(1, regs);
191	}
192	return __do_int_store(dst_addr, size, src_val);
193}
194
195extern void smp_capture(void);
196extern void smp_release(void);
197
198static inline void advance(struct pt_regs *regs)
199{
200	regs->pc   = regs->npc;
201	regs->npc += 4;
202}
203
204static inline int floating_point_load_or_store_p(unsigned int insn)
205{
206	return (insn >> 24) & 1;
207}
208
209static inline int ok_for_kernel(unsigned int insn)
210{
211	return !floating_point_load_or_store_p(insn);
212}
213
214static void kernel_mna_trap_fault(struct pt_regs *regs, unsigned int insn)
215{
216	unsigned long g2 = regs->u_regs [UREG_G2];
217	unsigned long fixup = search_extables_range(regs->pc, &g2);
218
219	if (!fixup) {
220		unsigned long address = compute_effective_address(regs, insn);
221        	if(address < PAGE_SIZE) {
222                	printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference in mna handler");
223        	} else
224                	printk(KERN_ALERT "Unable to handle kernel paging request in mna handler");
225	        printk(KERN_ALERT " at virtual address %08lx\n",address);
226		printk(KERN_ALERT "current->{mm,active_mm}->context = %08lx\n",
227			(current->mm ? current->mm->context :
228			current->active_mm->context));
229		printk(KERN_ALERT "current->{mm,active_mm}->pgd = %08lx\n",
230			(current->mm ? (unsigned long) current->mm->pgd :
231			(unsigned long) current->active_mm->pgd));
232	        die_if_kernel("Oops", regs);
233		/* Not reached */
234	}
235	regs->pc = fixup;
236	regs->npc = regs->pc + 4;
237	regs->u_regs [UREG_G2] = g2;
238}
239
240asmlinkage void kernel_unaligned_trap(struct pt_regs *regs, unsigned int insn)
241{
242	enum direction dir = decode_direction(insn);
243	int size = decode_access_size(insn);
244
245	if(!ok_for_kernel(insn) || dir == both) {
246		printk("Unsupported unaligned load/store trap for kernel at <%08lx>.\n",
247		       regs->pc);
248		unaligned_panic("Wheee. Kernel does fpu/atomic unaligned load/store.");
249	} else {
250		unsigned long addr = compute_effective_address(regs, insn);
251		int err;
252
253		perf_sw_event(PERF_COUNT_SW_ALIGNMENT_FAULTS, 1, regs, addr);
254		switch (dir) {
255		case load:
256			err = do_int_load(fetch_reg_addr(((insn>>25)&0x1f),
257							 regs),
258					  size, (unsigned long *) addr,
259					  decode_signedness(insn));
260			break;
261
262		case store:
263			err = do_int_store(((insn>>25)&0x1f), size,
264					   (unsigned long *) addr, regs);
265			break;
266		default:
267			panic("Impossible kernel unaligned trap.");
268			/* Not reached... */
269		}
270		if (err)
271			kernel_mna_trap_fault(regs, insn);
272		else
273			advance(regs);
274	}
275}
276
277static inline int ok_for_user(struct pt_regs *regs, unsigned int insn,
278			      enum direction dir)
279{
280	unsigned int reg;
281	int check = (dir == load) ? VERIFY_READ : VERIFY_WRITE;
282	int size = ((insn >> 19) & 3) == 3 ? 8 : 4;
283
284	if ((regs->pc | regs->npc) & 3)
285		return 0;
286
287	/* Must access_ok() in all the necessary places. */
288#define WINREG_ADDR(regnum) \
289	((void __user *)(((unsigned long *)regs->u_regs[UREG_FP])+(regnum)))
290
291	reg = (insn >> 25) & 0x1f;
292	if (reg >= 16) {
293		if (!access_ok(check, WINREG_ADDR(reg - 16), size))
294			return -EFAULT;
295	}
296	reg = (insn >> 14) & 0x1f;
297	if (reg >= 16) {
298		if (!access_ok(check, WINREG_ADDR(reg - 16), size))
299			return -EFAULT;
300	}
301	if (!(insn & 0x2000)) {
302		reg = (insn & 0x1f);
303		if (reg >= 16) {
304			if (!access_ok(check, WINREG_ADDR(reg - 16), size))
305				return -EFAULT;
306		}
307	}
308#undef WINREG_ADDR
309	return 0;
310}
311
312static void user_mna_trap_fault(struct pt_regs *regs, unsigned int insn)
313{
314	siginfo_t info;
315
316	info.si_signo = SIGBUS;
317	info.si_errno = 0;
318	info.si_code = BUS_ADRALN;
319	info.si_addr = (void __user *)safe_compute_effective_address(regs, insn);
320	info.si_trapno = 0;
321	send_sig_info(SIGBUS, &info, current);
322}
323
324asmlinkage void user_unaligned_trap(struct pt_regs *regs, unsigned int insn)
325{
326	enum direction dir;
327
328	if(!(current->thread.flags & SPARC_FLAG_UNALIGNED) ||
329	   (((insn >> 30) & 3) != 3))
330		goto kill_user;
331	dir = decode_direction(insn);
332	if(!ok_for_user(regs, insn, dir)) {
333		goto kill_user;
334	} else {
335		int err, size = decode_access_size(insn);
336		unsigned long addr;
337
338		if(floating_point_load_or_store_p(insn)) {
339			printk("User FPU load/store unaligned unsupported.\n");
340			goto kill_user;
341		}
342
343		addr = compute_effective_address(regs, insn);
344		perf_sw_event(PERF_COUNT_SW_ALIGNMENT_FAULTS, 1, regs, addr);
345		switch(dir) {
346		case load:
347			err = do_int_load(fetch_reg_addr(((insn>>25)&0x1f),
348							 regs),
349					  size, (unsigned long *) addr,
350					  decode_signedness(insn));
351			break;
352
353		case store:
354			err = do_int_store(((insn>>25)&0x1f), size,
355					   (unsigned long *) addr, regs);
356			break;
357
358		case both:
359			/*
360			 * This was supported in 2.4. However, we question
361			 * the value of SWAP instruction across word boundaries.
362			 */
363			printk("Unaligned SWAP unsupported.\n");
364			err = -EFAULT;
365			break;
366
367		default:
368			unaligned_panic("Impossible user unaligned trap.");
369			goto out;
370		}
371		if (err)
372			goto kill_user;
373		else
374			advance(regs);
375		goto out;
376	}
377
378kill_user:
379	user_mna_trap_fault(regs, insn);
380out:
381	;
382}
v3.15
 
  1/*
  2 * unaligned.c: Unaligned load/store trap handling with special
  3 *              cases for the kernel to do them more quickly.
  4 *
  5 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  6 * Copyright (C) 1996 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  7 */
  8
  9
 10#include <linux/kernel.h>
 11#include <linux/sched.h>
 12#include <linux/mm.h>
 13#include <asm/ptrace.h>
 14#include <asm/processor.h>
 15#include <asm/uaccess.h>
 16#include <linux/smp.h>
 17#include <linux/perf_event.h>
 18
 
 
 
 
 19enum direction {
 20	load,    /* ld, ldd, ldh, ldsh */
 21	store,   /* st, std, sth, stsh */
 22	both,    /* Swap, ldstub, etc. */
 23	fpload,
 24	fpstore,
 25	invalid,
 26};
 27
 28static inline enum direction decode_direction(unsigned int insn)
 29{
 30	unsigned long tmp = (insn >> 21) & 1;
 31
 32	if(!tmp)
 33		return load;
 34	else {
 35		if(((insn>>19)&0x3f) == 15)
 36			return both;
 37		else
 38			return store;
 39	}
 40}
 41
 42/* 8 = double-word, 4 = word, 2 = half-word */
 43static inline int decode_access_size(unsigned int insn)
 44{
 45	insn = (insn >> 19) & 3;
 46
 47	if(!insn)
 48		return 4;
 49	else if(insn == 3)
 50		return 8;
 51	else if(insn == 2)
 52		return 2;
 53	else {
 54		printk("Impossible unaligned trap. insn=%08x\n", insn);
 55		die_if_kernel("Byte sized unaligned access?!?!", current->thread.kregs);
 56		return 4; /* just to keep gcc happy. */
 57	}
 58}
 59
 60/* 0x400000 = signed, 0 = unsigned */
 61static inline int decode_signedness(unsigned int insn)
 62{
 63	return (insn & 0x400000);
 64}
 65
 66static inline void maybe_flush_windows(unsigned int rs1, unsigned int rs2,
 67				       unsigned int rd)
 68{
 69	if(rs2 >= 16 || rs1 >= 16 || rd >= 16) {
 70		/* Wheee... */
 71		__asm__ __volatile__("save %sp, -0x40, %sp\n\t"
 72				     "save %sp, -0x40, %sp\n\t"
 73				     "save %sp, -0x40, %sp\n\t"
 74				     "save %sp, -0x40, %sp\n\t"
 75				     "save %sp, -0x40, %sp\n\t"
 76				     "save %sp, -0x40, %sp\n\t"
 77				     "save %sp, -0x40, %sp\n\t"
 78				     "restore; restore; restore; restore;\n\t"
 79				     "restore; restore; restore;\n\t");
 80	}
 81}
 82
 83static inline int sign_extend_imm13(int imm)
 84{
 85	return imm << 19 >> 19;
 86}
 87
 88static inline unsigned long fetch_reg(unsigned int reg, struct pt_regs *regs)
 89{
 90	struct reg_window32 *win;
 91
 92	if(reg < 16)
 93		return (!reg ? 0 : regs->u_regs[reg]);
 94
 95	/* Ho hum, the slightly complicated case. */
 96	win = (struct reg_window32 *) regs->u_regs[UREG_FP];
 97	return win->locals[reg - 16]; /* yes, I know what this does... */
 98}
 99
100static inline unsigned long safe_fetch_reg(unsigned int reg, struct pt_regs *regs)
101{
102	struct reg_window32 __user *win;
103	unsigned long ret;
104
105	if (reg < 16)
106		return (!reg ? 0 : regs->u_regs[reg]);
107
108	/* Ho hum, the slightly complicated case. */
109	win = (struct reg_window32 __user *) regs->u_regs[UREG_FP];
110
111	if ((unsigned long)win & 3)
112		return -1;
113
114	if (get_user(ret, &win->locals[reg - 16]))
115		return -1;
116
117	return ret;
118}
119
120static inline unsigned long *fetch_reg_addr(unsigned int reg, struct pt_regs *regs)
121{
122	struct reg_window32 *win;
123
124	if(reg < 16)
125		return &regs->u_regs[reg];
126	win = (struct reg_window32 *) regs->u_regs[UREG_FP];
127	return &win->locals[reg - 16];
128}
129
130static unsigned long compute_effective_address(struct pt_regs *regs,
131					       unsigned int insn)
132{
133	unsigned int rs1 = (insn >> 14) & 0x1f;
134	unsigned int rs2 = insn & 0x1f;
135	unsigned int rd = (insn >> 25) & 0x1f;
136
137	if(insn & 0x2000) {
138		maybe_flush_windows(rs1, 0, rd);
139		return (fetch_reg(rs1, regs) + sign_extend_imm13(insn));
140	} else {
141		maybe_flush_windows(rs1, rs2, rd);
142		return (fetch_reg(rs1, regs) + fetch_reg(rs2, regs));
143	}
144}
145
146unsigned long safe_compute_effective_address(struct pt_regs *regs,
147					     unsigned int insn)
148{
149	unsigned int rs1 = (insn >> 14) & 0x1f;
150	unsigned int rs2 = insn & 0x1f;
151	unsigned int rd = (insn >> 25) & 0x1f;
152
153	if(insn & 0x2000) {
154		maybe_flush_windows(rs1, 0, rd);
155		return (safe_fetch_reg(rs1, regs) + sign_extend_imm13(insn));
156	} else {
157		maybe_flush_windows(rs1, rs2, rd);
158		return (safe_fetch_reg(rs1, regs) + safe_fetch_reg(rs2, regs));
159	}
160}
161
162/* This is just to make gcc think panic does return... */
163static void unaligned_panic(char *str)
164{
165	panic(str);
166}
167
168/* una_asm.S */
169extern int do_int_load(unsigned long *dest_reg, int size,
170		       unsigned long *saddr, int is_signed);
171extern int __do_int_store(unsigned long *dst_addr, int size,
172			  unsigned long *src_val);
173
174static int do_int_store(int reg_num, int size, unsigned long *dst_addr,
175			struct pt_regs *regs)
176{
177	unsigned long zero[2] = { 0, 0 };
178	unsigned long *src_val;
179
180	if (reg_num)
181		src_val = fetch_reg_addr(reg_num, regs);
182	else {
183		src_val = &zero[0];
184		if (size == 8)
185			zero[1] = fetch_reg(1, regs);
186	}
187	return __do_int_store(dst_addr, size, src_val);
188}
189
190extern void smp_capture(void);
191extern void smp_release(void);
192
193static inline void advance(struct pt_regs *regs)
194{
195	regs->pc   = regs->npc;
196	regs->npc += 4;
197}
198
199static inline int floating_point_load_or_store_p(unsigned int insn)
200{
201	return (insn >> 24) & 1;
202}
203
204static inline int ok_for_kernel(unsigned int insn)
205{
206	return !floating_point_load_or_store_p(insn);
207}
208
209static void kernel_mna_trap_fault(struct pt_regs *regs, unsigned int insn)
210{
211	unsigned long g2 = regs->u_regs [UREG_G2];
212	unsigned long fixup = search_extables_range(regs->pc, &g2);
213
214	if (!fixup) {
215		unsigned long address = compute_effective_address(regs, insn);
216        	if(address < PAGE_SIZE) {
217                	printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference in mna handler");
218        	} else
219                	printk(KERN_ALERT "Unable to handle kernel paging request in mna handler");
220	        printk(KERN_ALERT " at virtual address %08lx\n",address);
221		printk(KERN_ALERT "current->{mm,active_mm}->context = %08lx\n",
222			(current->mm ? current->mm->context :
223			current->active_mm->context));
224		printk(KERN_ALERT "current->{mm,active_mm}->pgd = %08lx\n",
225			(current->mm ? (unsigned long) current->mm->pgd :
226			(unsigned long) current->active_mm->pgd));
227	        die_if_kernel("Oops", regs);
228		/* Not reached */
229	}
230	regs->pc = fixup;
231	regs->npc = regs->pc + 4;
232	regs->u_regs [UREG_G2] = g2;
233}
234
235asmlinkage void kernel_unaligned_trap(struct pt_regs *regs, unsigned int insn)
236{
237	enum direction dir = decode_direction(insn);
238	int size = decode_access_size(insn);
239
240	if(!ok_for_kernel(insn) || dir == both) {
241		printk("Unsupported unaligned load/store trap for kernel at <%08lx>.\n",
242		       regs->pc);
243		unaligned_panic("Wheee. Kernel does fpu/atomic unaligned load/store.");
244	} else {
245		unsigned long addr = compute_effective_address(regs, insn);
246		int err;
247
248		perf_sw_event(PERF_COUNT_SW_ALIGNMENT_FAULTS, 1, regs, addr);
249		switch (dir) {
250		case load:
251			err = do_int_load(fetch_reg_addr(((insn>>25)&0x1f),
252							 regs),
253					  size, (unsigned long *) addr,
254					  decode_signedness(insn));
255			break;
256
257		case store:
258			err = do_int_store(((insn>>25)&0x1f), size,
259					   (unsigned long *) addr, regs);
260			break;
261		default:
262			panic("Impossible kernel unaligned trap.");
263			/* Not reached... */
264		}
265		if (err)
266			kernel_mna_trap_fault(regs, insn);
267		else
268			advance(regs);
269	}
270}
271
272static inline int ok_for_user(struct pt_regs *regs, unsigned int insn,
273			      enum direction dir)
274{
275	unsigned int reg;
276	int check = (dir == load) ? VERIFY_READ : VERIFY_WRITE;
277	int size = ((insn >> 19) & 3) == 3 ? 8 : 4;
278
279	if ((regs->pc | regs->npc) & 3)
280		return 0;
281
282	/* Must access_ok() in all the necessary places. */
283#define WINREG_ADDR(regnum) \
284	((void __user *)(((unsigned long *)regs->u_regs[UREG_FP])+(regnum)))
285
286	reg = (insn >> 25) & 0x1f;
287	if (reg >= 16) {
288		if (!access_ok(check, WINREG_ADDR(reg - 16), size))
289			return -EFAULT;
290	}
291	reg = (insn >> 14) & 0x1f;
292	if (reg >= 16) {
293		if (!access_ok(check, WINREG_ADDR(reg - 16), size))
294			return -EFAULT;
295	}
296	if (!(insn & 0x2000)) {
297		reg = (insn & 0x1f);
298		if (reg >= 16) {
299			if (!access_ok(check, WINREG_ADDR(reg - 16), size))
300				return -EFAULT;
301		}
302	}
303#undef WINREG_ADDR
304	return 0;
305}
306
307static void user_mna_trap_fault(struct pt_regs *regs, unsigned int insn)
308{
309	siginfo_t info;
310
311	info.si_signo = SIGBUS;
312	info.si_errno = 0;
313	info.si_code = BUS_ADRALN;
314	info.si_addr = (void __user *)safe_compute_effective_address(regs, insn);
315	info.si_trapno = 0;
316	send_sig_info(SIGBUS, &info, current);
317}
318
319asmlinkage void user_unaligned_trap(struct pt_regs *regs, unsigned int insn)
320{
321	enum direction dir;
322
323	if(!(current->thread.flags & SPARC_FLAG_UNALIGNED) ||
324	   (((insn >> 30) & 3) != 3))
325		goto kill_user;
326	dir = decode_direction(insn);
327	if(!ok_for_user(regs, insn, dir)) {
328		goto kill_user;
329	} else {
330		int err, size = decode_access_size(insn);
331		unsigned long addr;
332
333		if(floating_point_load_or_store_p(insn)) {
334			printk("User FPU load/store unaligned unsupported.\n");
335			goto kill_user;
336		}
337
338		addr = compute_effective_address(regs, insn);
339		perf_sw_event(PERF_COUNT_SW_ALIGNMENT_FAULTS, 1, regs, addr);
340		switch(dir) {
341		case load:
342			err = do_int_load(fetch_reg_addr(((insn>>25)&0x1f),
343							 regs),
344					  size, (unsigned long *) addr,
345					  decode_signedness(insn));
346			break;
347
348		case store:
349			err = do_int_store(((insn>>25)&0x1f), size,
350					   (unsigned long *) addr, regs);
351			break;
352
353		case both:
354			/*
355			 * This was supported in 2.4. However, we question
356			 * the value of SWAP instruction across word boundaries.
357			 */
358			printk("Unaligned SWAP unsupported.\n");
359			err = -EFAULT;
360			break;
361
362		default:
363			unaligned_panic("Impossible user unaligned trap.");
364			goto out;
365		}
366		if (err)
367			goto kill_user;
368		else
369			advance(regs);
370		goto out;
371	}
372
373kill_user:
374	user_mna_trap_fault(regs, insn);
375out:
376	;
377}