2 * Server-side ptrace support
4 * Copyright (C) 1999 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
30 #include <sys/types.h>
31 #ifdef HAVE_SYS_PTRACE_H
32 # include <sys/ptrace.h>
34 #ifdef HAVE_SYS_PARAM_H
35 # include <sys/param.h>
37 #ifdef HAVE_SYS_WAIT_H
38 # include <sys/wait.h>
40 #ifdef HAVE_SYS_SYSCALL_H
41 # include <sys/syscall.h>
43 #ifdef HAVE_SYS_UCONTEXT_H
44 # include <sys/ucontext.h>
52 #define WIN32_NO_STATUS
62 #define PTRACE_CONT PT_CONTINUE
64 #ifndef PTRACE_SINGLESTEP
65 #define PTRACE_SINGLESTEP PT_STEP
68 #define PTRACE_ATTACH PT_ATTACH
71 #define PTRACE_DETACH PT_DETACH
73 #ifndef PTRACE_PEEKDATA
74 #define PTRACE_PEEKDATA PT_READ_D
76 #ifndef PTRACE_POKEDATA
77 #define PTRACE_POKEDATA PT_WRITE_D
79 #ifndef PTRACE_PEEKUSER
80 #define PTRACE_PEEKUSER PT_READ_U
82 #ifndef PTRACE_POKEUSER
83 #define PTRACE_POKEUSER PT_WRITE_U
87 #define PTRACE_GETDBREGS PT_GETDBREGS
90 #define PTRACE_SETDBREGS PT_SETDBREGS
93 #ifndef HAVE_SYS_PTRACE_H
100 static inline int ptrace(int req
, ...) { errno
= EPERM
; return -1; /*FAIL*/ }
101 #endif /* HAVE_SYS_PTRACE_H */
107 /* handle a status returned by waitpid */
108 static int handle_child_status( struct thread
*thread
, int pid
, int status
, int want_sig
)
110 if (WIFSTOPPED(status
))
112 int sig
= WSTOPSIG(status
);
113 if (debug_level
&& thread
)
114 fprintf( stderr
, "%04x: *signal* signal=%d\n", thread
->id
, sig
);
117 /* ignore other signals for now */
118 ptrace( PTRACE_CONT
, pid
, (caddr_t
)1, sig
);
122 if (thread
&& (WIFSIGNALED(status
) || WIFEXITED(status
)))
124 thread
->unix_pid
= -1;
125 thread
->unix_tid
= -1;
128 if (WIFSIGNALED(status
))
129 fprintf( stderr
, "%04x: *exited* signal=%d\n",
130 thread
->id
, WTERMSIG(status
) );
132 fprintf( stderr
, "%04x: *exited* status=%d\n",
133 thread
->id
, WEXITSTATUS(status
) );
139 /* handle a SIGCHLD signal */
140 void sigchld_callback(void)
146 if (!(pid
= waitpid( -1, &status
, WUNTRACED
| WNOHANG
| __WALL
))) break;
149 struct thread
*thread
= get_thread_from_tid( pid
);
150 if (!thread
) thread
= get_thread_from_pid( pid
);
151 handle_child_status( thread
, pid
, status
, -1 );
157 /* return the Unix pid to use in ptrace calls for a given process */
158 static int get_ptrace_pid( struct thread
*thread
)
160 #ifdef linux /* linux always uses thread id */
161 if (thread
->unix_tid
!= -1) return thread
->unix_tid
;
163 return thread
->unix_pid
;
166 /* return the Unix tid to use in ptrace calls for a given thread */
167 static int get_ptrace_tid( struct thread
*thread
)
169 if (thread
->unix_tid
!= -1) return thread
->unix_tid
;
170 return thread
->unix_pid
;
173 /* wait for a ptraced child to get a certain signal */
174 static int waitpid_thread( struct thread
*thread
, int signal
)
181 if ((res
= waitpid( get_ptrace_pid(thread
), &status
, WUNTRACED
| __WALL
)) == -1)
185 if (!watchdog_triggered()) continue;
186 if (debug_level
) fprintf( stderr
, "%04x: *watchdog* waitpid aborted\n", thread
->id
);
188 else if (errno
== ECHILD
) /* must have died */
190 thread
->unix_pid
= -1;
191 thread
->unix_tid
= -1;
193 else perror( "waitpid" );
197 res
= handle_child_status( thread
, res
, status
, signal
);
198 if (!res
|| res
== signal
) break;
201 return (thread
->unix_pid
!= -1);
204 /* send a signal to a specific thread */
205 static inline int tkill( int tgid
, int pid
, int sig
)
208 int ret
= syscall( __NR_tgkill
, tgid
, pid
, sig
);
209 if (ret
< 0 && errno
== ENOSYS
) ret
= syscall( __NR_tkill
, pid
, sig
);
211 #elif (defined(__FreeBSD__) || defined (__FreeBSD_kernel__)) && defined(HAVE_THR_KILL2)
212 return thr_kill2( tgid
, pid
, sig
);
219 /* initialize the process tracing mechanism */
220 void init_tracing_mechanism(void)
222 /* no initialization needed for ptrace */
225 /* initialize the per-process tracing mechanism */
226 void init_process_tracing( struct process
*process
)
228 /* ptrace setup is done on-demand */
231 /* terminate the per-process tracing mechanism */
232 void finish_process_tracing( struct process
*process
)
236 /* send a Unix signal to a specific thread */
237 int send_thread_signal( struct thread
*thread
, int sig
)
241 if (thread
->unix_pid
!= -1)
243 if (thread
->unix_tid
!= -1)
245 ret
= tkill( thread
->unix_pid
, thread
->unix_tid
, sig
);
246 if (ret
== -1 && errno
== ENOSYS
) ret
= kill( thread
->unix_pid
, sig
);
248 else ret
= kill( thread
->unix_pid
, sig
);
250 if (ret
== -1 && errno
== ESRCH
) /* thread got killed */
252 thread
->unix_pid
= -1;
253 thread
->unix_tid
= -1;
256 if (debug_level
&& ret
!= -1)
257 fprintf( stderr
, "%04x: *sent signal* signal=%d\n", thread
->id
, sig
);
261 /* resume a thread after we have used ptrace on it */
262 static void resume_after_ptrace( struct thread
*thread
)
264 if (thread
->unix_pid
== -1) return;
265 if (ptrace( PTRACE_DETACH
, get_ptrace_pid(thread
), (caddr_t
)1, 0 ) == -1)
267 if (errno
== ESRCH
) thread
->unix_pid
= thread
->unix_tid
= -1; /* thread got killed */
271 /* suspend a thread to allow using ptrace on it */
272 /* you must do a resume_after_ptrace when finished with the thread */
273 static int suspend_for_ptrace( struct thread
*thread
)
275 /* can't stop a thread while initialisation is in progress */
276 if (thread
->unix_pid
== -1 || !is_process_init_done(thread
->process
)) goto error
;
278 /* this may fail if the client is already being debugged */
279 if (ptrace( PTRACE_ATTACH
, get_ptrace_pid(thread
), 0, 0 ) == -1)
281 if (errno
== ESRCH
) thread
->unix_pid
= thread
->unix_tid
= -1; /* thread got killed */
284 if (waitpid_thread( thread
, SIGSTOP
)) return 1;
285 resume_after_ptrace( thread
);
287 set_error( STATUS_ACCESS_DENIED
);
291 /* read a long from a thread address space */
292 static long read_thread_long( struct thread
*thread
, long *addr
, long *data
)
295 *data
= ptrace( PTRACE_PEEKDATA
, get_ptrace_pid(thread
), (caddr_t
)addr
, 0 );
296 if ( *data
== -1 && errno
)
304 /* write a long to a thread address space */
305 static long write_thread_long( struct thread
*thread
, long *addr
, long data
, unsigned long mask
)
310 if (read_thread_long( thread
, addr
, &res
) == -1) return -1;
311 data
= (data
& mask
) | (res
& ~mask
);
313 if ((res
= ptrace( PTRACE_POKEDATA
, get_ptrace_pid(thread
), (caddr_t
)addr
, data
)) == -1)
318 /* return a thread of the process suitable for ptracing */
319 static struct thread
*get_ptrace_thread( struct process
*process
)
321 struct thread
*thread
;
323 LIST_FOR_EACH_ENTRY( thread
, &process
->thread_list
, struct thread
, proc_entry
)
325 if (thread
->unix_pid
!= -1) return thread
;
327 set_error( STATUS_PROCESS_IS_TERMINATING
); /* process is dead */
331 /* read data from a process memory space */
332 int read_process_memory( struct process
*process
, client_ptr_t ptr
, data_size_t size
, char *dest
)
334 struct thread
*thread
= get_ptrace_thread( process
);
335 unsigned int first_offset
, last_offset
, len
;
338 if (!thread
) return 0;
340 if ((unsigned long)ptr
!= ptr
)
342 set_error( STATUS_ACCESS_DENIED
);
346 first_offset
= ptr
% sizeof(long);
347 last_offset
= (size
+ first_offset
) % sizeof(long);
348 if (!last_offset
) last_offset
= sizeof(long);
350 addr
= (long *)(unsigned long)(ptr
- first_offset
);
351 len
= (size
+ first_offset
+ sizeof(long) - 1) / sizeof(long);
353 if (suspend_for_ptrace( thread
))
355 if (len
> 3) /* /proc/pid/mem should be faster for large sizes */
360 sprintf( procmem
, "/proc/%u/mem", process
->unix_pid
);
361 if ((fd
= open( procmem
, O_RDONLY
)) != -1)
363 ssize_t ret
= pread( fd
, dest
, size
, ptr
);
375 if (read_thread_long( thread
, addr
++, &data
) == -1) goto done
;
376 memcpy( dest
, (char *)&data
+ first_offset
, sizeof(long) - first_offset
);
377 dest
+= sizeof(long) - first_offset
;
384 if (read_thread_long( thread
, addr
++, &data
) == -1) goto done
;
385 memcpy( dest
, &data
, sizeof(long) );
386 dest
+= sizeof(long);
390 if (read_thread_long( thread
, addr
++, &data
) == -1) goto done
;
391 memcpy( dest
, (char *)&data
+ first_offset
, last_offset
- first_offset
);
395 resume_after_ptrace( thread
);
400 /* make sure we can write to the whole address range */
401 /* len is the total size (in ints) */
402 static int check_process_write_access( struct thread
*thread
, long *addr
, data_size_t len
)
404 int page
= get_page_size() / sizeof(int);
408 if (write_thread_long( thread
, addr
, 0, 0 ) == -1) return 0;
409 if (len
<= page
) break;
413 return (write_thread_long( thread
, addr
+ len
- 1, 0, 0 ) != -1);
416 /* write data to a process memory space */
417 int write_process_memory( struct process
*process
, client_ptr_t ptr
, data_size_t size
, const char *src
)
419 struct thread
*thread
= get_ptrace_thread( process
);
424 unsigned long first_mask
, first_offset
, last_mask
, last_offset
;
426 if (!thread
) return 0;
428 if ((unsigned long)ptr
!= ptr
)
430 set_error( STATUS_ACCESS_DENIED
);
434 /* compute the mask for the first long */
436 first_offset
= ptr
% sizeof(long);
437 memset( &first_mask
, 0, first_offset
);
439 /* compute the mask for the last long */
440 last_offset
= (size
+ first_offset
) % sizeof(long);
441 if (!last_offset
) last_offset
= sizeof(long);
443 memset( &last_mask
, 0xff, last_offset
);
445 addr
= (long *)(unsigned long)(ptr
- first_offset
);
446 len
= (size
+ first_offset
+ sizeof(long) - 1) / sizeof(long);
448 if (suspend_for_ptrace( thread
))
450 if (!check_process_write_access( thread
, addr
, len
))
452 set_error( STATUS_ACCESS_DENIED
);
461 sprintf( procmem
, "/proc/%u/mem", process
->unix_pid
);
462 if ((fd
= open( procmem
, O_WRONLY
)) != -1)
464 ssize_t r
= pwrite( fd
, src
, size
, ptr
);
474 /* first word is special */
477 memcpy( (char *)&data
+ first_offset
, src
, sizeof(long) - first_offset
);
478 src
+= sizeof(long) - first_offset
;
479 if (write_thread_long( thread
, addr
++, data
, first_mask
) == -1) goto done
;
483 else last_mask
&= first_mask
;
487 memcpy( &data
, src
, sizeof(long) );
489 if (write_thread_long( thread
, addr
++, data
, ~0ul ) == -1) goto done
;
493 /* last word is special too */
494 memcpy( (char *)&data
+ first_offset
, src
, last_offset
- first_offset
);
495 if (write_thread_long( thread
, addr
, data
, last_mask
) == -1) goto done
;
499 resume_after_ptrace( thread
);
504 /* retrieve an LDT selector entry */
505 void get_selector_entry( struct thread
*thread
, int entry
, unsigned int *base
,
506 unsigned int *limit
, unsigned char *flags
)
508 if (!thread
->process
->ldt_copy
)
510 set_error( STATUS_ACCESS_DENIED
);
515 set_error( STATUS_ACCESS_VIOLATION
);
518 if (suspend_for_ptrace( thread
))
520 unsigned char flags_buf
[sizeof(long)];
521 long *addr
= (long *)(unsigned long)thread
->process
->ldt_copy
+ entry
;
522 if (read_thread_long( thread
, addr
, (long *)base
) == -1) goto done
;
523 if (read_thread_long( thread
, addr
+ 8192, (long *)limit
) == -1) goto done
;
524 addr
= (long *)(unsigned long)thread
->process
->ldt_copy
+ 2*8192 + (entry
/ sizeof(long));
525 if (read_thread_long( thread
, addr
, (long *)flags_buf
) == -1) goto done
;
526 *flags
= flags_buf
[entry
% sizeof(long)];
528 resume_after_ptrace( thread
);
533 #if defined(linux) && (defined(HAVE_SYS_USER_H) || defined(HAVE_ASM_USER_H)) \
534 && (defined(__i386__) || defined(__x86_64__))
536 #ifdef HAVE_SYS_USER_H
537 #include <sys/user.h>
538 #elif defined(HAVE_ASM_USER_H)
539 #include <asm/user.h>
542 /* debug register offset in struct user */
543 #define DR_OFFSET(dr) ((((struct user *)0)->u_debugreg) + (dr))
545 /* retrieve the thread x86 registers */
546 void get_thread_context( struct thread
*thread
, context_t
*context
, unsigned int flags
)
548 int i
, pid
= get_ptrace_tid(thread
);
551 /* all other regs are handled on the client side */
552 assert( flags
== SERVER_CTX_DEBUG_REGISTERS
);
554 if (!suspend_for_ptrace( thread
)) return;
556 for (i
= 0; i
< 8; i
++)
558 if (i
== 4 || i
== 5) continue;
560 data
[i
] = ptrace( PTRACE_PEEKUSER
, pid
, DR_OFFSET(i
), 0 );
561 if ((data
[i
] == -1) && errno
)
567 switch (context
->cpu
)
570 context
->debug
.i386_regs
.dr0
= data
[0];
571 context
->debug
.i386_regs
.dr1
= data
[1];
572 context
->debug
.i386_regs
.dr2
= data
[2];
573 context
->debug
.i386_regs
.dr3
= data
[3];
574 context
->debug
.i386_regs
.dr6
= data
[6];
575 context
->debug
.i386_regs
.dr7
= data
[7];
578 context
->debug
.x86_64_regs
.dr0
= data
[0];
579 context
->debug
.x86_64_regs
.dr1
= data
[1];
580 context
->debug
.x86_64_regs
.dr2
= data
[2];
581 context
->debug
.x86_64_regs
.dr3
= data
[3];
582 context
->debug
.x86_64_regs
.dr6
= data
[6];
583 context
->debug
.x86_64_regs
.dr7
= data
[7];
586 set_error( STATUS_INVALID_PARAMETER
);
589 context
->flags
|= SERVER_CTX_DEBUG_REGISTERS
;
591 resume_after_ptrace( thread
);
594 /* set the thread x86 registers */
595 void set_thread_context( struct thread
*thread
, const context_t
*context
, unsigned int flags
)
597 int pid
= get_ptrace_tid( thread
);
599 /* all other regs are handled on the client side */
600 assert( flags
== SERVER_CTX_DEBUG_REGISTERS
);
602 if (!suspend_for_ptrace( thread
)) return;
604 switch (context
->cpu
)
607 /* Linux 2.6.33+ does DR0-DR3 alignment validation, so it has to know LEN bits first */
608 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(7), context
->debug
.i386_regs
.dr7
& 0xffff0000 ) == -1) goto error
;
609 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(0), context
->debug
.i386_regs
.dr0
) == -1) goto error
;
610 if (thread
->context
) thread
->context
->debug
.i386_regs
.dr0
= context
->debug
.i386_regs
.dr0
;
611 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(1), context
->debug
.i386_regs
.dr1
) == -1) goto error
;
612 if (thread
->context
) thread
->context
->debug
.i386_regs
.dr1
= context
->debug
.i386_regs
.dr1
;
613 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(2), context
->debug
.i386_regs
.dr2
) == -1) goto error
;
614 if (thread
->context
) thread
->context
->debug
.i386_regs
.dr2
= context
->debug
.i386_regs
.dr2
;
615 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(3), context
->debug
.i386_regs
.dr3
) == -1) goto error
;
616 if (thread
->context
) thread
->context
->debug
.i386_regs
.dr3
= context
->debug
.i386_regs
.dr3
;
617 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(6), context
->debug
.i386_regs
.dr6
) == -1) goto error
;
618 if (thread
->context
) thread
->context
->debug
.i386_regs
.dr6
= context
->debug
.i386_regs
.dr6
;
619 /* Linux 2.6.33+ needs enable bits set briefly to update value returned by PEEKUSER later */
620 ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(7), context
->debug
.i386_regs
.dr7
| 0x55 );
621 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(7), context
->debug
.i386_regs
.dr7
) == -1) goto error
;
622 if (thread
->context
) thread
->context
->debug
.i386_regs
.dr7
= context
->debug
.i386_regs
.dr7
;
625 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(7), context
->debug
.x86_64_regs
.dr7
& 0xffff0000 ) == -1) goto error
;
626 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(0), context
->debug
.x86_64_regs
.dr0
) == -1) goto error
;
627 if (thread
->context
) thread
->context
->debug
.x86_64_regs
.dr0
= context
->debug
.x86_64_regs
.dr0
;
628 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(1), context
->debug
.x86_64_regs
.dr1
) == -1) goto error
;
629 if (thread
->context
) thread
->context
->debug
.x86_64_regs
.dr1
= context
->debug
.x86_64_regs
.dr1
;
630 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(2), context
->debug
.x86_64_regs
.dr2
) == -1) goto error
;
631 if (thread
->context
) thread
->context
->debug
.x86_64_regs
.dr2
= context
->debug
.x86_64_regs
.dr2
;
632 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(3), context
->debug
.x86_64_regs
.dr3
) == -1) goto error
;
633 if (thread
->context
) thread
->context
->debug
.x86_64_regs
.dr3
= context
->debug
.x86_64_regs
.dr3
;
634 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(6), context
->debug
.x86_64_regs
.dr6
) == -1) goto error
;
635 if (thread
->context
) thread
->context
->debug
.x86_64_regs
.dr6
= context
->debug
.x86_64_regs
.dr6
;
636 ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(7), context
->debug
.x86_64_regs
.dr7
| 0x55 );
637 if (ptrace( PTRACE_POKEUSER
, pid
, DR_OFFSET(7), context
->debug
.x86_64_regs
.dr7
) == -1) goto error
;
638 if (thread
->context
) thread
->context
->debug
.x86_64_regs
.dr7
= context
->debug
.x86_64_regs
.dr7
;
641 set_error( STATUS_INVALID_PARAMETER
);
643 resume_after_ptrace( thread
);
647 resume_after_ptrace( thread
);
650 #elif defined(__i386__) && defined(PTRACE_GETDBREGS) && defined(PTRACE_SETDBREGS) && \
651 (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__))
653 #include <machine/reg.h>
655 /* retrieve the thread x86 registers */
656 void get_thread_context( struct thread
*thread
, context_t
*context
, unsigned int flags
)
658 int pid
= get_ptrace_tid(thread
);
661 /* all other regs are handled on the client side */
662 assert( flags
== SERVER_CTX_DEBUG_REGISTERS
);
664 if (!suspend_for_ptrace( thread
)) return;
666 if (ptrace( PTRACE_GETDBREGS
, pid
, (caddr_t
) &dbregs
, 0 ) == -1) file_set_error();
670 /* needed for FreeBSD, the structure fields have changed under 5.x */
671 context
->debug
.i386_regs
.dr0
= DBREG_DRX((&dbregs
), 0);
672 context
->debug
.i386_regs
.dr1
= DBREG_DRX((&dbregs
), 1);
673 context
->debug
.i386_regs
.dr2
= DBREG_DRX((&dbregs
), 2);
674 context
->debug
.i386_regs
.dr3
= DBREG_DRX((&dbregs
), 3);
675 context
->debug
.i386_regs
.dr6
= DBREG_DRX((&dbregs
), 6);
676 context
->debug
.i386_regs
.dr7
= DBREG_DRX((&dbregs
), 7);
678 context
->debug
.i386_regs
.dr0
= dbregs
.dr0
;
679 context
->debug
.i386_regs
.dr1
= dbregs
.dr1
;
680 context
->debug
.i386_regs
.dr2
= dbregs
.dr2
;
681 context
->debug
.i386_regs
.dr3
= dbregs
.dr3
;
682 context
->debug
.i386_regs
.dr6
= dbregs
.dr6
;
683 context
->debug
.i386_regs
.dr7
= dbregs
.dr7
;
685 context
->flags
|= SERVER_CTX_DEBUG_REGISTERS
;
687 resume_after_ptrace( thread
);
690 /* set the thread x86 registers */
691 void set_thread_context( struct thread
*thread
, const context_t
*context
, unsigned int flags
)
693 int pid
= get_ptrace_tid(thread
);
696 /* all other regs are handled on the client side */
697 assert( flags
== SERVER_CTX_DEBUG_REGISTERS
);
699 if (!suspend_for_ptrace( thread
)) return;
702 /* needed for FreeBSD, the structure fields have changed under 5.x */
703 DBREG_DRX((&dbregs
), 0) = context
->debug
.i386_regs
.dr0
;
704 DBREG_DRX((&dbregs
), 1) = context
->debug
.i386_regs
.dr1
;
705 DBREG_DRX((&dbregs
), 2) = context
->debug
.i386_regs
.dr2
;
706 DBREG_DRX((&dbregs
), 3) = context
->debug
.i386_regs
.dr3
;
707 DBREG_DRX((&dbregs
), 4) = 0;
708 DBREG_DRX((&dbregs
), 5) = 0;
709 DBREG_DRX((&dbregs
), 6) = context
->debug
.i386_regs
.dr6
;
710 DBREG_DRX((&dbregs
), 7) = context
->debug
.i386_regs
.dr7
;
712 dbregs
.dr0
= context
->debug
.i386_regs
.dr0
;
713 dbregs
.dr1
= context
->debug
.i386_regs
.dr1
;
714 dbregs
.dr2
= context
->debug
.i386_regs
.dr2
;
715 dbregs
.dr3
= context
->debug
.i386_regs
.dr3
;
718 dbregs
.dr6
= context
->debug
.i386_regs
.dr6
;
719 dbregs
.dr7
= context
->debug
.i386_regs
.dr7
;
721 if (ptrace( PTRACE_SETDBREGS
, pid
, (caddr_t
) &dbregs
, 0 ) == -1) file_set_error();
722 else if (thread
->context
)
723 thread
->context
->debug
.i386_regs
= context
->debug
.i386_regs
; /* update the cached values */
724 resume_after_ptrace( thread
);
727 #else /* linux || __FreeBSD__ */
729 /* retrieve the thread x86 registers */
730 void get_thread_context( struct thread
*thread
, context_t
*context
, unsigned int flags
)
734 /* set the thread x86 debug registers */
735 void set_thread_context( struct thread
*thread
, const context_t
*context
, unsigned int flags
)
739 #endif /* linux || __FreeBSD__ */
741 #endif /* USE_PTRACE */