patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / arch / i386 / kernel / ptrace.c
1 /* ptrace.c */
2 /* By Ross Biro 1/23/92 */
3 /*
4  * Pentium III FXSR, SSE support
5  *      Gareth Hughes <gareth@valinux.com>, May 2000
6  */
7
8 #include <linux/kernel.h>
9 #include <linux/sched.h>
10 #include <linux/mm.h>
11 #include <linux/smp.h>
12 #include <linux/smp_lock.h>
13 #include <linux/errno.h>
14 #include <linux/ptrace.h>
15 #include <linux/user.h>
16 #include <linux/security.h>
17 #include <linux/audit.h>
18
19 #include <asm/uaccess.h>
20 #include <asm/pgtable.h>
21 #include <asm/system.h>
22 #include <asm/processor.h>
23 #include <asm/i387.h>
24 #include <asm/debugreg.h>
25 #include <asm/ldt.h>
26 #include <asm/desc.h>
27
28 /*
29  * does not yet catch signals sent when the child dies.
30  * in exit.c or in signal.c.
31  */
32
33 /* determines which flags the user has access to. */
34 /* 1 = access 0 = no access */
35 #define FLAG_MASK 0x00044dd5
36
37 /* set's the trap flag. */
38 #define TRAP_FLAG 0x100
39
40 /*
41  * Offset of eflags on child stack..
42  */
43 #define EFL_OFFSET ((EFL-2)*4-sizeof(struct pt_regs))
44
45 /*
46  * this routine will get a word off of the processes privileged stack. 
47  * the offset is how far from the base addr as stored in the TSS.  
48  * this routine assumes that all the privileged stacks are in our
49  * data space.
50  */   
51 static inline int get_stack_long(struct task_struct *task, int offset)
52 {
53         unsigned char *stack;
54
55         stack = (unsigned char *)task->thread.esp0;
56         stack += offset;
57         return (*((int *)stack));
58 }
59
60 /*
61  * this routine will put a word on the processes privileged stack. 
62  * the offset is how far from the base addr as stored in the TSS.  
63  * this routine assumes that all the privileged stacks are in our
64  * data space.
65  */
66 static inline int put_stack_long(struct task_struct *task, int offset,
67         unsigned long data)
68 {
69         unsigned char * stack;
70
71         stack = (unsigned char *) task->thread.esp0;
72         stack += offset;
73         *(unsigned long *) stack = data;
74         return 0;
75 }
76
77 static int putreg(struct task_struct *child,
78         unsigned long regno, unsigned long value)
79 {
80         switch (regno >> 2) {
81                 case FS:
82                         if (value && (value & 3) != 3)
83                                 return -EIO;
84                         child->thread.fs = value;
85                         return 0;
86                 case GS:
87                         if (value && (value & 3) != 3)
88                                 return -EIO;
89                         child->thread.gs = value;
90                         return 0;
91                 case DS:
92                 case ES:
93                         if (value && (value & 3) != 3)
94                                 return -EIO;
95                         value &= 0xffff;
96                         break;
97                 case SS:
98                 case CS:
99                         if ((value & 3) != 3)
100                                 return -EIO;
101                         value &= 0xffff;
102                         break;
103                 case EFL:
104                         value &= FLAG_MASK;
105                         value |= get_stack_long(child, EFL_OFFSET) & ~FLAG_MASK;
106                         break;
107         }
108         if (regno > GS*4)
109                 regno -= 2*4;
110         put_stack_long(child, regno - sizeof(struct pt_regs), value);
111         return 0;
112 }
113
114 static unsigned long getreg(struct task_struct *child,
115         unsigned long regno)
116 {
117         unsigned long retval = ~0UL;
118
119         switch (regno >> 2) {
120                 case FS:
121                         retval = child->thread.fs;
122                         break;
123                 case GS:
124                         retval = child->thread.gs;
125                         break;
126                 case DS:
127                 case ES:
128                 case SS:
129                 case CS:
130                         retval = 0xffff;
131                         /* fall through */
132                 default:
133                         if (regno > GS*4)
134                                 regno -= 2*4;
135                         regno = regno - sizeof(struct pt_regs);
136                         retval &= get_stack_long(child, regno);
137         }
138         return retval;
139 }
140
141 /*
142  * Called by kernel/ptrace.c when detaching..
143  *
144  * Make sure the single step bit is not set.
145  */
146 void ptrace_disable(struct task_struct *child)
147
148         long tmp;
149
150         tmp = get_stack_long(child, EFL_OFFSET) & ~TRAP_FLAG;
151         put_stack_long(child, EFL_OFFSET, tmp);
152 }
153
154 /*
155  * Perform get_thread_area on behalf of the traced child.
156  */
157 static int
158 ptrace_get_thread_area(struct task_struct *child,
159                        int idx, struct user_desc __user *user_desc)
160 {
161         struct user_desc info;
162         struct desc_struct *desc;
163
164 /*
165  * Get the current Thread-Local Storage area:
166  */
167
168 #define GET_BASE(desc) ( \
169         (((desc)->a >> 16) & 0x0000ffff) | \
170         (((desc)->b << 16) & 0x00ff0000) | \
171         ( (desc)->b        & 0xff000000)   )
172
173 #define GET_LIMIT(desc) ( \
174         ((desc)->a & 0x0ffff) | \
175          ((desc)->b & 0xf0000) )
176
177 #define GET_32BIT(desc)         (((desc)->b >> 22) & 1)
178 #define GET_CONTENTS(desc)      (((desc)->b >> 10) & 3)
179 #define GET_WRITABLE(desc)      (((desc)->b >>  9) & 1)
180 #define GET_LIMIT_PAGES(desc)   (((desc)->b >> 23) & 1)
181 #define GET_PRESENT(desc)       (((desc)->b >> 15) & 1)
182 #define GET_USEABLE(desc)       (((desc)->b >> 20) & 1)
183
184         if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
185                 return -EINVAL;
186
187         desc = child->thread.tls_array + idx - GDT_ENTRY_TLS_MIN;
188
189         info.entry_number = idx;
190         info.base_addr = GET_BASE(desc);
191         info.limit = GET_LIMIT(desc);
192         info.seg_32bit = GET_32BIT(desc);
193         info.contents = GET_CONTENTS(desc);
194         info.read_exec_only = !GET_WRITABLE(desc);
195         info.limit_in_pages = GET_LIMIT_PAGES(desc);
196         info.seg_not_present = !GET_PRESENT(desc);
197         info.useable = GET_USEABLE(desc);
198
199         if (copy_to_user(user_desc, &info, sizeof(info)))
200                 return -EFAULT;
201
202         return 0;
203 }
204
205 /*
206  * Perform set_thread_area on behalf of the traced child.
207  */
208 static int
209 ptrace_set_thread_area(struct task_struct *child,
210                        int idx, struct user_desc __user *user_desc)
211 {
212         struct user_desc info;
213         struct desc_struct *desc;
214
215         if (copy_from_user(&info, user_desc, sizeof(info)))
216                 return -EFAULT;
217
218         if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
219                 return -EINVAL;
220
221         desc = child->thread.tls_array + idx - GDT_ENTRY_TLS_MIN;
222         if (LDT_empty(&info)) {
223                 desc->a = 0;
224                 desc->b = 0;
225         } else {
226                 desc->a = LDT_entry_a(&info);
227                 desc->b = LDT_entry_b(&info);
228         }
229
230         return 0;
231 }
232
233 asmlinkage int sys_ptrace(long request, long pid, long addr, long data)
234 {
235         struct task_struct *child;
236         struct user * dummy = NULL;
237         int i, ret;
238         unsigned long __user *datap = (unsigned long __user *)data;
239
240         lock_kernel();
241         ret = -EPERM;
242         if (request == PTRACE_TRACEME) {
243                 /* are we already being traced? */
244                 if (current->ptrace & PT_PTRACED)
245                         goto out;
246                 ret = security_ptrace(current->parent, current);
247                 if (ret)
248                         goto out;
249                 /* set the ptrace bit in the process flags. */
250                 current->ptrace |= PT_PTRACED;
251                 ret = 0;
252                 goto out;
253         }
254         ret = -ESRCH;
255         read_lock(&tasklist_lock);
256         child = find_task_by_pid(pid);
257         if (child)
258                 get_task_struct(child);
259         read_unlock(&tasklist_lock);
260         if (!child)
261                 goto out;
262         if (!vx_check(vx_task_xid(child), VX_WATCH|VX_IDENT))
263                 goto out_tsk;
264
265         ret = -EPERM;
266         if (pid == 1)           /* you may not mess with init */
267                 goto out_tsk;
268
269         if (request == PTRACE_ATTACH) {
270                 ret = ptrace_attach(child);
271                 goto out_tsk;
272         }
273
274         ret = ptrace_check_attach(child, request == PTRACE_KILL);
275         if (ret < 0)
276                 goto out_tsk;
277
278         switch (request) {
279         /* when I and D space are separate, these will need to be fixed. */
280         case PTRACE_PEEKTEXT: /* read word at location addr. */ 
281         case PTRACE_PEEKDATA: {
282                 unsigned long tmp;
283                 int copied;
284
285                 copied = access_process_vm(child, addr, &tmp, sizeof(tmp), 0);
286                 ret = -EIO;
287                 if (copied != sizeof(tmp))
288                         break;
289                 ret = put_user(tmp, datap);
290                 break;
291         }
292
293         /* read the word at location addr in the USER area. */
294         case PTRACE_PEEKUSR: {
295                 unsigned long tmp;
296
297                 ret = -EIO;
298                 if ((addr & 3) || addr < 0 || 
299                     addr > sizeof(struct user) - 3)
300                         break;
301
302                 tmp = 0;  /* Default return condition */
303                 if(addr < FRAME_SIZE*sizeof(long))
304                         tmp = getreg(child, addr);
305                 if(addr >= (long) &dummy->u_debugreg[0] &&
306                    addr <= (long) &dummy->u_debugreg[7]){
307                         addr -= (long) &dummy->u_debugreg[0];
308                         addr = addr >> 2;
309                         tmp = child->thread.debugreg[addr];
310                 }
311                 ret = put_user(tmp, datap);
312                 break;
313         }
314
315         /* when I and D space are separate, this will have to be fixed. */
316         case PTRACE_POKETEXT: /* write the word at location addr. */
317         case PTRACE_POKEDATA:
318                 ret = 0;
319                 if (access_process_vm(child, addr, &data, sizeof(data), 1) == sizeof(data))
320                         break;
321                 ret = -EIO;
322                 break;
323
324         case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
325                 ret = -EIO;
326                 if ((addr & 3) || addr < 0 || 
327                     addr > sizeof(struct user) - 3)
328                         break;
329
330                 if (addr < FRAME_SIZE*sizeof(long)) {
331                         ret = putreg(child, addr, data);
332                         break;
333                 }
334                 /* We need to be very careful here.  We implicitly
335                    want to modify a portion of the task_struct, and we
336                    have to be selective about what portions we allow someone
337                    to modify. */
338
339                   ret = -EIO;
340                   if(addr >= (long) &dummy->u_debugreg[0] &&
341                      addr <= (long) &dummy->u_debugreg[7]){
342
343                           if(addr == (long) &dummy->u_debugreg[4]) break;
344                           if(addr == (long) &dummy->u_debugreg[5]) break;
345                           if(addr < (long) &dummy->u_debugreg[4] &&
346                              ((unsigned long) data) >= TASK_SIZE-3) break;
347                           
348                           if(addr == (long) &dummy->u_debugreg[7]) {
349                                   data &= ~DR_CONTROL_RESERVED;
350                                   for(i=0; i<4; i++)
351                                           if ((0x5f54 >> ((data >> (16 + 4*i)) & 0xf)) & 1)
352                                                   goto out_tsk;
353                           }
354
355                           addr -= (long) &dummy->u_debugreg;
356                           addr = addr >> 2;
357                           child->thread.debugreg[addr] = data;
358                           ret = 0;
359                   }
360                   break;
361
362         case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
363         case PTRACE_CONT: { /* restart after signal. */
364                 long tmp;
365
366                 ret = -EIO;
367                 if ((unsigned long) data > _NSIG)
368                         break;
369                 if (request == PTRACE_SYSCALL) {
370                         set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
371                 }
372                 else {
373                         clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
374                 }
375                 child->exit_code = data;
376         /* make sure the single step bit is not set. */
377                 tmp = get_stack_long(child, EFL_OFFSET) & ~TRAP_FLAG;
378                 put_stack_long(child, EFL_OFFSET,tmp);
379                 wake_up_process(child);
380                 ret = 0;
381                 break;
382         }
383
384 /*
385  * make the child exit.  Best I can do is send it a sigkill. 
386  * perhaps it should be put in the status that it wants to 
387  * exit.
388  */
389         case PTRACE_KILL: {
390                 long tmp;
391
392                 ret = 0;
393                 if (child->state == TASK_ZOMBIE)        /* already dead */
394                         break;
395                 child->exit_code = SIGKILL;
396                 /* make sure the single step bit is not set. */
397                 tmp = get_stack_long(child, EFL_OFFSET) & ~TRAP_FLAG;
398                 put_stack_long(child, EFL_OFFSET, tmp);
399                 wake_up_process(child);
400                 break;
401         }
402
403         case PTRACE_SINGLESTEP: {  /* set the trap flag. */
404                 long tmp;
405
406                 ret = -EIO;
407                 if ((unsigned long) data > _NSIG)
408                         break;
409                 clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
410                 if ((child->ptrace & PT_DTRACE) == 0) {
411                         /* Spurious delayed TF traps may occur */
412                         child->ptrace |= PT_DTRACE;
413                 }
414                 tmp = get_stack_long(child, EFL_OFFSET) | TRAP_FLAG;
415                 put_stack_long(child, EFL_OFFSET, tmp);
416                 child->exit_code = data;
417                 /* give it a chance to run. */
418                 wake_up_process(child);
419                 ret = 0;
420                 break;
421         }
422
423         case PTRACE_DETACH:
424                 /* detach a process that was attached. */
425                 ret = ptrace_detach(child, data);
426                 break;
427
428         case PTRACE_GETREGS: { /* Get all gp regs from the child. */
429                 if (!access_ok(VERIFY_WRITE, datap, FRAME_SIZE*sizeof(long))) {
430                         ret = -EIO;
431                         break;
432                 }
433                 for ( i = 0; i < FRAME_SIZE*sizeof(long); i += sizeof(long) ) {
434                         __put_user(getreg(child, i), datap);
435                         datap++;
436                 }
437                 ret = 0;
438                 break;
439         }
440
441         case PTRACE_SETREGS: { /* Set all gp regs in the child. */
442                 unsigned long tmp;
443                 if (!access_ok(VERIFY_READ, datap, FRAME_SIZE*sizeof(long))) {
444                         ret = -EIO;
445                         break;
446                 }
447                 for ( i = 0; i < FRAME_SIZE*sizeof(long); i += sizeof(long) ) {
448                         __get_user(tmp, datap);
449                         putreg(child, i, tmp);
450                         datap++;
451                 }
452                 ret = 0;
453                 break;
454         }
455
456         case PTRACE_GETFPREGS: { /* Get the child FPU state. */
457                 if (!access_ok(VERIFY_WRITE, datap,
458                                sizeof(struct user_i387_struct))) {
459                         ret = -EIO;
460                         break;
461                 }
462                 ret = 0;
463                 if (!child->used_math)
464                         init_fpu(child);
465                 get_fpregs((struct user_i387_struct __user *)data, child);
466                 break;
467         }
468
469         case PTRACE_SETFPREGS: { /* Set the child FPU state. */
470                 if (!access_ok(VERIFY_READ, datap,
471                                sizeof(struct user_i387_struct))) {
472                         ret = -EIO;
473                         break;
474                 }
475                 child->used_math = 1;
476                 set_fpregs(child, (struct user_i387_struct __user *)data);
477                 ret = 0;
478                 break;
479         }
480
481         case PTRACE_GETFPXREGS: { /* Get the child extended FPU state. */
482                 if (!access_ok(VERIFY_WRITE, datap,
483                                sizeof(struct user_fxsr_struct))) {
484                         ret = -EIO;
485                         break;
486                 }
487                 if (!child->used_math)
488                         init_fpu(child);
489                 ret = get_fpxregs((struct user_fxsr_struct __user *)data, child);
490                 break;
491         }
492
493         case PTRACE_SETFPXREGS: { /* Set the child extended FPU state. */
494                 if (!access_ok(VERIFY_READ, datap,
495                                sizeof(struct user_fxsr_struct))) {
496                         ret = -EIO;
497                         break;
498                 }
499                 child->used_math = 1;
500                 ret = set_fpxregs(child, (struct user_fxsr_struct __user *)data);
501                 break;
502         }
503
504         case PTRACE_GET_THREAD_AREA:
505                 ret = ptrace_get_thread_area(child, addr,
506                                         (struct user_desc __user *) data);
507                 break;
508
509         case PTRACE_SET_THREAD_AREA:
510                 ret = ptrace_set_thread_area(child, addr,
511                                         (struct user_desc __user *) data);
512                 break;
513
514         default:
515                 ret = ptrace_request(child, request, addr, data);
516                 break;
517         }
518 out_tsk:
519         put_task_struct(child);
520 out:
521         unlock_kernel();
522         return ret;
523 }
524
525 /* notification of system call entry/exit
526  * - triggered by current->work.syscall_trace
527  */
528 __attribute__((regparm(3)))
529 void do_syscall_trace(struct pt_regs *regs, int entryexit)
530 {
531         if (unlikely(current->audit_context)) {
532                 if (!entryexit)
533                         audit_syscall_entry(current, regs->orig_eax,
534                                             regs->ebx, regs->ecx,
535                                             regs->edx, regs->esi);
536                 else
537                         audit_syscall_exit(current, regs->eax);
538         }
539
540         if (!test_thread_flag(TIF_SYSCALL_TRACE))
541                 return;
542         if (!(current->ptrace & PT_PTRACED))
543                 return;
544         /* the 0x80 provides a way for the tracing parent to distinguish
545            between a syscall stop and SIGTRAP delivery */
546         ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD)
547                                  ? 0x80 : 0));
548
549         /*
550          * this isn't the same as continuing with a signal, but it will do
551          * for normal use.  strace only continues with a signal if the
552          * stopping signal is not SIGTRAP.  -brl
553          */
554         if (current->exit_code) {
555                 send_sig(current->exit_code, current, 1);
556                 current->exit_code = 0;
557         }
558 }