]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/powerpc/aim/trap.c
This commit was generated by cvs2svn to compensate for changes in r179191,
[FreeBSD/FreeBSD.git] / sys / powerpc / aim / trap.c
1 /*-
2  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
3  * Copyright (C) 1995, 1996 TooLs GmbH.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. All advertising materials mentioning features or use of this software
15  *    must display the following acknowledgement:
16  *      This product includes software developed by TooLs GmbH.
17  * 4. The name of TooLs GmbH may not be used to endorse or promote products
18  *    derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  *
31  * $NetBSD: trap.c,v 1.58 2002/03/04 04:07:35 dbj Exp $
32  */
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36
37 #include "opt_ktrace.h"
38
39 #include <sys/param.h>
40 #include <sys/kdb.h>
41 #include <sys/proc.h>
42 #include <sys/ktr.h>
43 #include <sys/lock.h>
44 #include <sys/mutex.h>
45 #include <sys/pioctl.h>
46 #include <sys/ptrace.h>
47 #include <sys/reboot.h>
48 #include <sys/syscall.h>
49 #include <sys/sysent.h>
50 #include <sys/systm.h>
51 #include <sys/uio.h>
52 #include <sys/signalvar.h>
53 #ifdef KTRACE
54 #include <sys/ktrace.h>
55 #endif
56 #include <sys/vmmeter.h>
57
58 #include <security/audit/audit.h>
59
60 #include <vm/vm.h>
61 #include <vm/pmap.h>
62 #include <vm/vm_extern.h>
63 #include <vm/vm_param.h>
64 #include <vm/vm_kern.h>
65 #include <vm/vm_map.h>
66 #include <vm/vm_page.h>
67
68 #include <machine/cpu.h>
69 #include <machine/db_machdep.h>
70 #include <machine/fpu.h>
71 #include <machine/frame.h>
72 #include <machine/pcb.h>
73 #include <machine/pmap.h>
74 #include <machine/psl.h>
75 #include <machine/trap.h>
76 #include <machine/spr.h>
77 #include <machine/sr.h>
78
79 static void     trap_fatal(struct trapframe *frame);
80 static void     printtrap(u_int vector, struct trapframe *frame, int isfatal,
81                     int user);
82 static int      trap_pfault(struct trapframe *frame, int user);
83 static int      fix_unaligned(struct thread *td, struct trapframe *frame);
84 static int      handle_onfault(struct trapframe *frame);
85 static void     syscall(struct trapframe *frame);
86
87 static __inline void    setusr(u_int);
88
89 int     setfault(faultbuf);             /* defined in locore.S */
90
91 /* Why are these not defined in a header? */
92 int     badaddr(void *, size_t);
93 int     badaddr_read(void *, size_t, int *);
94
95 extern char     *syscallnames[];
96
97 struct powerpc_exception {
98         u_int   vector;
99         char    *name;
100 };
101
102 static struct powerpc_exception powerpc_exceptions[] = {
103         { 0x0100, "system reset" },
104         { 0x0200, "machine check" },
105         { 0x0300, "data storage interrupt" },
106         { 0x0400, "instruction storage interrupt" },
107         { 0x0500, "external interrupt" },
108         { 0x0600, "alignment" },
109         { 0x0700, "program" },
110         { 0x0800, "floating-point unavailable" },
111         { 0x0900, "decrementer" },
112         { 0x0c00, "system call" },
113         { 0x0d00, "trace" },
114         { 0x0e00, "floating-point assist" },
115         { 0x0f00, "performance monitoring" },
116         { 0x0f20, "altivec unavailable" },
117         { 0x1000, "instruction tlb miss" },
118         { 0x1100, "data load tlb miss" },
119         { 0x1200, "data store tlb miss" },
120         { 0x1300, "instruction breakpoint" },
121         { 0x1400, "system management" },
122         { 0x1600, "altivec assist" },
123         { 0x1700, "thermal management" },
124         { 0x2000, "run mode/trace" },
125         { 0x3000, NULL }
126 };
127
128 static const char *
129 trapname(u_int vector)
130 {
131         struct  powerpc_exception *pe;
132
133         for (pe = powerpc_exceptions; pe->vector != 0x3000; pe++) {
134                 if (pe->vector == vector)
135                         return (pe->name);
136         }
137
138         return ("unknown");
139 }
140
141 void
142 trap(struct trapframe *frame)
143 {
144         struct thread   *td;
145         struct proc     *p;
146         int             sig, type, user;
147         u_int           ucode;
148         ksiginfo_t      ksi;
149
150         PCPU_INC(cnt.v_trap);
151
152         td = PCPU_GET(curthread);
153         p = td->td_proc;
154
155         type = ucode = frame->exc;
156         sig = 0;
157         user = frame->srr1 & PSL_PR;
158
159         CTR3(KTR_TRAP, "trap: %s type=%s (%s)", td->td_name,
160             trapname(type), user ? "user" : "kernel");
161
162         if (user) {
163                 td->td_pticks = 0;
164                 td->td_frame = frame;
165                 if (td->td_ucred != p->p_ucred)
166                         cred_update_thread(td);
167
168                 /* User Mode Traps */
169                 switch (type) {
170                 case EXC_RUNMODETRC:
171                 case EXC_TRC:
172                         frame->srr1 &= ~PSL_SE;
173                         sig = SIGTRAP;
174                         break;
175
176                 case EXC_DSI:
177                 case EXC_ISI:
178                         sig = trap_pfault(frame, 1);
179                         break;
180
181                 case EXC_SC:
182                         syscall(frame);
183                         break;
184
185                 case EXC_FPU:
186                         KASSERT((td->td_pcb->pcb_flags & PCB_FPU) != PCB_FPU,
187                             ("FPU already enabled for thread"));
188                         enable_fpu(td);
189                         break;
190
191 #ifdef  ALTIVEC
192                 case EXC_VEC:
193                         if ((vecthread = PCPU_GET(vecthread)) != NULL) {
194                                 KASSERT(vecthread != td,
195                                     ("altivec already enabled"));
196                                 save_vec(vecthread);
197                         }
198                         PCPU_SET(vecthread, td);
199                         td->td_pcb->pcb_veccpu = PCPU_GET(cpuid);
200                         enable_vec(td);
201                         frame->srr1 |= PSL_VEC;
202                         break;
203 #else
204                 case EXC_VEC:
205                 case EXC_VECAST:
206                         sig = SIGILL;
207                         break;
208 #endif /* ALTIVEC */
209
210                 case EXC_ALI:
211                         if (fix_unaligned(td, frame) != 0)
212                                 sig = SIGBUS;
213                         else
214                                 frame->srr0 += 4;
215                         break;
216
217                 case EXC_PGM:
218                         /* XXX temporarily */
219                         /* XXX: Magic Number? */
220                         if (frame->srr1 & 0x0002000)
221                                 sig = SIGTRAP;
222                         else
223                                 sig = SIGILL;
224                         break;
225
226                 default:
227                         trap_fatal(frame);
228                 }
229         } else {
230                 /* Kernel Mode Traps */
231
232                 KASSERT(cold || td->td_ucred != NULL,
233                     ("kernel trap doesn't have ucred"));
234                 switch (type) {
235                 case EXC_DSI:
236                         if (trap_pfault(frame, 0) == 0)
237                                 return;
238                         break;
239                 case EXC_MCHK:
240                         if (handle_onfault(frame))
241                                 return;
242                         break;
243                 default:
244                         break;
245                 }
246                 trap_fatal(frame);
247         }
248
249 #ifdef  ALTIVEC
250         if (td != PCPU_GET(vecthread) ||
251             td->td_pcb->pcb_veccpu != PCPU_GET(cpuid))
252                 frame->srr1 &= ~PSL_VEC;
253 #endif /* ALTIVEC */
254
255         if (sig != 0) {
256                 if (p->p_sysent->sv_transtrap != NULL)
257                         sig = (p->p_sysent->sv_transtrap)(sig, type);
258                 ksiginfo_init_trap(&ksi);
259                 ksi.ksi_signo = sig;
260                 ksi.ksi_code = (int) ucode; /* XXX, not POSIX */
261                 /* ksi.ksi_addr = ? */
262                 ksi.ksi_trapno = type;
263                 trapsignal(td, &ksi);
264         }
265
266         userret(td, frame);
267         mtx_assert(&Giant, MA_NOTOWNED);
268 }
269
270 static void
271 trap_fatal(struct trapframe *frame)
272 {
273
274         printtrap(frame->exc, frame, 1, (frame->srr1 & PSL_PR));
275 #ifdef KDB
276         if ((debugger_on_panic || kdb_active) &&
277             kdb_trap(frame->exc, 0, frame))
278                 return;
279 #endif
280         panic("%s trap", trapname(frame->exc));
281 }
282
283 static void
284 printtrap(u_int vector, struct trapframe *frame, int isfatal, int user)
285 {
286
287         printf("\n");
288         printf("%s %s trap:\n", isfatal ? "fatal" : "handled",
289             user ? "user" : "kernel");
290         printf("\n");
291         printf("   exception       = 0x%x (%s)\n", vector >> 8,
292             trapname(vector));
293         switch (vector) {
294         case EXC_DSI:
295                 printf("   virtual address = 0x%x\n", frame->cpu.aim.dar);
296                 break;
297         case EXC_ISI:
298                 printf("   virtual address = 0x%x\n", frame->srr0);
299                 break;
300         }
301         printf("   srr0            = 0x%x\n", frame->srr0);
302         printf("   srr1            = 0x%x\n", frame->srr1);
303         printf("   curthread       = %p\n", curthread);
304         if (curthread != NULL)
305                 printf("          pid = %d, comm = %s\n",
306                     curthread->td_proc->p_pid, curthread->td_name);
307         printf("\n");
308 }
309
310 /*
311  * Handles a fatal fault when we have onfault state to recover.  Returns
312  * non-zero if there was onfault recovery state available.
313  */
314 static int
315 handle_onfault(struct trapframe *frame)
316 {
317         struct          thread *td;
318         faultbuf        *fb;
319
320         td = curthread;
321         fb = td->td_pcb->pcb_onfault;
322         if (fb != NULL) {
323                 frame->srr0 = (*fb)[0];
324                 frame->fixreg[1] = (*fb)[1];
325                 frame->fixreg[2] = (*fb)[2];
326                 frame->fixreg[3] = 1;
327                 frame->cr = (*fb)[3];
328                 bcopy(&(*fb)[4], &frame->fixreg[13],
329                     19 * sizeof(register_t));
330                 return (1);
331         }
332         return (0);
333 }
334
335 void
336 syscall(struct trapframe *frame)
337 {
338         caddr_t         params;
339         struct          sysent *callp;
340         struct          thread *td;
341         struct          proc *p;
342         int             error, n;
343         size_t          narg;
344         register_t      args[10];
345         u_int           code;
346
347         td = PCPU_GET(curthread);
348         p = td->td_proc;
349
350         PCPU_INC(cnt.v_syscall);
351
352         code = frame->fixreg[0];
353         params = (caddr_t)(frame->fixreg + FIRSTARG);
354         n = NARGREG;
355
356         if (p->p_sysent->sv_prepsyscall) {
357                 /*
358                  * The prep code is MP aware.
359                  */
360                 (*p->p_sysent->sv_prepsyscall)(frame, args, &code, &params);
361         } else if (code == SYS_syscall) {
362                 /*
363                  * code is first argument,
364                  * followed by actual args.
365                  */
366                 code = *(u_int *) params;
367                 params += sizeof(register_t);
368                 n -= 1;
369         } else if (code == SYS___syscall) {
370                 /*
371                  * Like syscall, but code is a quad,
372                  * so as to maintain quad alignment
373                  * for the rest of the args.
374                  */
375                 params += sizeof(register_t);
376                 code = *(u_int *) params;
377                 params += sizeof(register_t);
378                 n -= 2;
379         }
380
381         if (p->p_sysent->sv_mask)
382                 code &= p->p_sysent->sv_mask;
383
384         if (code >= p->p_sysent->sv_size)
385                 callp = &p->p_sysent->sv_table[0];
386         else
387                 callp = &p->p_sysent->sv_table[code];
388
389         narg = callp->sy_narg;
390
391         if (narg > n) {
392                 bcopy(params, args, n * sizeof(register_t));
393                 error = copyin(MOREARGS(frame->fixreg[1]), args + n,
394                                (narg - n) * sizeof(register_t));
395                 params = (caddr_t)args;
396         } else
397                 error = 0;
398
399         CTR5(KTR_SYSC, "syscall: p=%s %s(%x %x %x)", td->td_name,
400              syscallnames[code],
401              frame->fixreg[FIRSTARG],
402              frame->fixreg[FIRSTARG+1],
403              frame->fixreg[FIRSTARG+2]);
404
405 #ifdef  KTRACE
406         if (KTRPOINT(td, KTR_SYSCALL))
407                 ktrsyscall(code, narg, (register_t *)params);
408 #endif
409
410         td->td_syscalls++;
411
412         if (error == 0) {
413                 td->td_retval[0] = 0;
414                 td->td_retval[1] = frame->fixreg[FIRSTARG + 1];
415
416                 STOPEVENT(p, S_SCE, narg);
417
418                 PTRACESTOP_SC(p, td, S_PT_SCE);
419
420                 AUDIT_SYSCALL_ENTER(code, td);
421                 error = (*callp->sy_call)(td, params);
422                 AUDIT_SYSCALL_EXIT(error, td);
423
424                 CTR3(KTR_SYSC, "syscall: p=%s %s ret=%x", td->td_name,
425                      syscallnames[code], td->td_retval[0]);
426         }
427         switch (error) {
428         case 0:
429                 if (frame->fixreg[0] == SYS___syscall &&
430                     code != SYS_freebsd6_lseek && code != SYS_lseek) {
431                         /*
432                          * 64-bit return, 32-bit syscall. Fixup byte order
433                          */
434                         frame->fixreg[FIRSTARG] = 0;
435                         frame->fixreg[FIRSTARG + 1] = td->td_retval[0];
436                 } else {
437                         frame->fixreg[FIRSTARG] = td->td_retval[0];
438                         frame->fixreg[FIRSTARG + 1] = td->td_retval[1];
439                 }
440                 /* XXX: Magic number */
441                 frame->cr &= ~0x10000000;
442                 break;
443         case ERESTART:
444                 /*
445                  * Set user's pc back to redo the system call.
446                  */
447                 frame->srr0 -= 4;
448                 break;
449         case EJUSTRETURN:
450                 /* nothing to do */
451                 break;
452         default:
453                 if (p->p_sysent->sv_errsize) {
454                         if (error >= p->p_sysent->sv_errsize)
455                                 error = -1;     /* XXX */
456                         else
457                                 error = p->p_sysent->sv_errtbl[error];
458                 }
459                 frame->fixreg[FIRSTARG] = error;
460                 /* XXX: Magic number: Carry Flag Equivalent? */
461                 frame->cr |= 0x10000000;
462                 break;
463         }
464
465         /*
466          * Check for misbehavior.
467          */
468         WITNESS_WARN(WARN_PANIC, NULL, "System call %s returning",
469             (code >= 0 && code < SYS_MAXSYSCALL) ? syscallnames[code] : "???");
470         KASSERT(td->td_critnest == 0,
471             ("System call %s returning in a critical section",
472             (code >= 0 && code < SYS_MAXSYSCALL) ? syscallnames[code] : "???"));
473         KASSERT(td->td_locks == 0,
474             ("System call %s returning with %d locks held",
475             (code >= 0 && code < SYS_MAXSYSCALL) ? syscallnames[code] : "???",
476             td->td_locks));
477
478 #ifdef  KTRACE
479         if (KTRPOINT(td, KTR_SYSRET))
480                 ktrsysret(code, error, td->td_retval[0]);
481 #endif
482
483         /*
484          * Does the comment in the i386 code about errno apply here?
485          */
486         STOPEVENT(p, S_SCX, code);
487  
488         PTRACESTOP_SC(p, td, S_PT_SCX);
489 }
490
491 static int
492 trap_pfault(struct trapframe *frame, int user)
493 {
494         vm_offset_t     eva, va;
495         struct          thread *td;
496         struct          proc *p;
497         vm_map_t        map;
498         vm_prot_t       ftype;
499         int             rv;
500         u_int           user_sr;
501
502         td = curthread;
503         p = td->td_proc;
504         if (frame->exc == EXC_ISI) {
505                 eva = frame->srr0;
506                 ftype = VM_PROT_READ | VM_PROT_EXECUTE;
507         } else {
508                 eva = frame->cpu.aim.dar;
509                 if (frame->cpu.aim.dsisr & DSISR_STORE)
510                         ftype = VM_PROT_WRITE;
511                 else
512                         ftype = VM_PROT_READ;
513         }
514
515         if (user) {
516                 map = &p->p_vmspace->vm_map;
517         } else {
518                 if ((eva >> ADDR_SR_SHFT) == USER_SR) {
519                         if (p->p_vmspace == NULL)
520                                 return (SIGSEGV);
521
522                         __asm ("mfsr %0, %1"
523                             : "=r"(user_sr)
524                             : "K"(USER_SR));
525                         eva &= ADDR_PIDX | ADDR_POFF;
526                         eva |= user_sr << ADDR_SR_SHFT;
527                         map = &p->p_vmspace->vm_map;
528                 } else {
529                         map = kernel_map;
530                 }
531         }
532         va = trunc_page(eva);
533
534         if (map != kernel_map) {
535                 /*
536                  * Keep swapout from messing with us during this
537                  *      critical time.
538                  */
539                 PROC_LOCK(p);
540                 ++p->p_lock;
541                 PROC_UNLOCK(p);
542
543                 /* Fault in the user page: */
544                 rv = vm_fault(map, va, ftype,
545                       (ftype & VM_PROT_WRITE) ? VM_FAULT_DIRTY
546                                               : VM_FAULT_NORMAL);
547
548                 PROC_LOCK(p);
549                 --p->p_lock;
550                 PROC_UNLOCK(p);
551         } else {
552                 /*
553                  * Don't have to worry about process locking or stacks in the
554                  * kernel.
555                  */
556                 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
557         }
558
559         if (rv == KERN_SUCCESS)
560                 return (0);
561
562         if (!user && handle_onfault(frame))
563                 return (0);
564
565         return (SIGSEGV);
566 }
567
568 static __inline void
569 setusr(u_int content)
570 {
571         __asm __volatile ("isync; mtsr %0,%1; isync"
572                       :: "n"(USER_SR), "r"(content));
573 }
574
575 int
576 badaddr(void *addr, size_t size)
577 {
578         return (badaddr_read(addr, size, NULL));
579 }
580
581 int
582 badaddr_read(void *addr, size_t size, int *rptr)
583 {
584         struct thread   *td;
585         faultbuf        env;
586         int             x;
587
588         /* Get rid of any stale machine checks that have been waiting.  */
589         __asm __volatile ("sync; isync");
590
591         td = PCPU_GET(curthread);
592
593         if (setfault(env)) {
594                 td->td_pcb->pcb_onfault = 0;
595                 __asm __volatile ("sync");
596                 return 1;
597         }
598
599         __asm __volatile ("sync");
600
601         switch (size) {
602         case 1:
603                 x = *(volatile int8_t *)addr;
604                 break;
605         case 2:
606                 x = *(volatile int16_t *)addr;
607                 break;
608         case 4:
609                 x = *(volatile int32_t *)addr;
610                 break;
611         default:
612                 panic("badaddr: invalid size (%d)", size);
613         }
614
615         /* Make sure we took the machine check, if we caused one. */
616         __asm __volatile ("sync; isync");
617
618         td->td_pcb->pcb_onfault = 0;
619         __asm __volatile ("sync");      /* To be sure. */
620
621         /* Use the value to avoid reorder. */
622         if (rptr)
623                 *rptr = x;
624
625         return (0);
626 }
627
628 /*
629  * For now, this only deals with the particular unaligned access case
630  * that gcc tends to generate.  Eventually it should handle all of the
631  * possibilities that can happen on a 32-bit PowerPC in big-endian mode.
632  */
633
634 static int
635 fix_unaligned(struct thread *td, struct trapframe *frame)
636 {
637         struct thread   *fputhread;
638         int             indicator, reg;
639         double          *fpr;
640
641         indicator = EXC_ALI_OPCODE_INDICATOR(frame->cpu.aim.dsisr);
642
643         switch (indicator) {
644         case EXC_ALI_LFD:
645         case EXC_ALI_STFD:
646                 reg = EXC_ALI_RST(frame->cpu.aim.dsisr);
647                 fpr = &td->td_pcb->pcb_fpu.fpr[reg];
648                 fputhread = PCPU_GET(fputhread);
649
650                 /* Juggle the FPU to ensure that we've initialized
651                  * the FPRs, and that their current state is in
652                  * the PCB.
653                  */
654                 if (fputhread != td) {
655                         if (fputhread)
656                                 save_fpu(fputhread);
657                         enable_fpu(td);
658                 }
659                 save_fpu(td);
660
661                 if (indicator == EXC_ALI_LFD) {
662                         if (copyin((void *)frame->cpu.aim.dar, fpr,
663                             sizeof(double)) != 0)
664                                 return -1;
665                         enable_fpu(td);
666                 } else {
667                         if (copyout(fpr, (void *)frame->cpu.aim.dar,
668                             sizeof(double)) != 0)
669                                 return -1;
670                 }
671                 return 0;
672                 break;
673         }
674
675         return -1;
676 }