advapi32: Implement CredIsMarshaledCredentialA/W.
[wine] / server / ptrace.c
1 /*
2  * Server-side ptrace support
3  *
4  * Copyright (C) 1999 Alexandre Julliard
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <stdio.h>
28 #include <signal.h>
29 #include <stdarg.h>
30 #include <sys/types.h>
31 #ifdef HAVE_SYS_PTRACE_H
32 # include <sys/ptrace.h>
33 #endif
34 #ifdef HAVE_SYS_PARAM_H
35 # include <sys/param.h>
36 #endif
37 #ifdef HAVE_SYS_WAIT_H
38 # include <sys/wait.h>
39 #endif
40 #ifdef HAVE_SYS_SYSCALL_H
41 # include <sys/syscall.h>
42 #endif
43 #ifdef HAVE_SYS_THR_H
44 # include <sys/ucontext.h>
45 # include <sys/thr.h>
46 #endif
47 #include <unistd.h>
48
49 #include "ntstatus.h"
50 #define WIN32_NO_STATUS
51 #include "winternl.h"
52
53 #include "file.h"
54 #include "process.h"
55 #include "thread.h"
56
57 #ifdef USE_PTRACE
58
59 #ifndef PTRACE_CONT
60 #define PTRACE_CONT PT_CONTINUE
61 #endif
62 #ifndef PTRACE_SINGLESTEP
63 #define PTRACE_SINGLESTEP PT_STEP
64 #endif
65 #ifndef PTRACE_ATTACH
66 #define PTRACE_ATTACH PT_ATTACH
67 #endif
68 #ifndef PTRACE_DETACH
69 #define PTRACE_DETACH PT_DETACH
70 #endif
71 #ifndef PTRACE_PEEKDATA
72 #define PTRACE_PEEKDATA PT_READ_D
73 #endif
74 #ifndef PTRACE_POKEDATA
75 #define PTRACE_POKEDATA PT_WRITE_D
76 #endif
77 #ifndef PTRACE_PEEKUSER
78 #define PTRACE_PEEKUSER PT_READ_U
79 #endif
80 #ifndef PTRACE_POKEUSER
81 #define PTRACE_POKEUSER PT_WRITE_U
82 #endif
83
84 #ifdef PT_GETDBREGS
85 #define PTRACE_GETDBREGS PT_GETDBREGS
86 #endif
87 #ifdef PT_SETDBREGS
88 #define PTRACE_SETDBREGS PT_SETDBREGS
89 #endif
90
91 #ifndef HAVE_SYS_PTRACE_H
92 #define PT_CONTINUE 0
93 #define PT_ATTACH   1
94 #define PT_DETACH   2
95 #define PT_READ_D   3
96 #define PT_WRITE_D  4
97 #define PT_STEP     5
98 static inline int ptrace(int req, ...) { errno = EPERM; return -1; /*FAIL*/ }
99 #endif  /* HAVE_SYS_PTRACE_H */
100
101 /* handle a status returned by wait4 */
102 static int handle_child_status( struct thread *thread, int pid, int status, int want_sig )
103 {
104     if (WIFSTOPPED(status))
105     {
106         int sig = WSTOPSIG(status);
107         if (debug_level && thread)
108             fprintf( stderr, "%04x: *signal* signal=%d\n", thread->id, sig );
109         if (sig != want_sig)
110         {
111             /* ignore other signals for now */
112             ptrace( PTRACE_CONT, pid, (caddr_t)1, sig );
113         }
114         return sig;
115     }
116     if (thread && (WIFSIGNALED(status) || WIFEXITED(status)))
117     {
118         thread->unix_pid = -1;
119         thread->unix_tid = -1;
120         if (debug_level)
121         {
122             if (WIFSIGNALED(status))
123                 fprintf( stderr, "%04x: *exited* signal=%d\n",
124                          thread->id, WTERMSIG(status) );
125             else
126                 fprintf( stderr, "%04x: *exited* status=%d\n",
127                          thread->id, WEXITSTATUS(status) );
128         }
129     }
130     return 0;
131 }
132
133 /* wait4 wrapper to handle missing __WALL flag in older kernels */
134 static inline pid_t wait4_wrapper( pid_t pid, int *status, int options, struct rusage *usage )
135 {
136 #ifdef __WALL
137     static int wall_flag = __WALL;
138
139     for (;;)
140     {
141         pid_t ret = wait4( pid, status, options | wall_flag, usage );
142         if (ret != -1 || !wall_flag || errno != EINVAL) return ret;
143         wall_flag = 0;
144     }
145 #else
146     return wait4( pid, status, options, usage );
147 #endif
148 }
149
150 /* handle a SIGCHLD signal */
151 void sigchld_callback(void)
152 {
153     int pid, status;
154
155     for (;;)
156     {
157         if (!(pid = wait4_wrapper( -1, &status, WUNTRACED | WNOHANG, NULL ))) break;
158         if (pid != -1)
159         {
160             struct thread *thread = get_thread_from_tid( pid );
161             if (!thread) thread = get_thread_from_pid( pid );
162             handle_child_status( thread, pid, status, -1 );
163         }
164         else break;
165     }
166 }
167
168 /* return the Unix pid to use in ptrace calls for a given process */
169 static int get_ptrace_pid( struct thread *thread )
170 {
171 #ifdef linux  /* linux always uses thread id */
172     if (thread->unix_tid != -1) return thread->unix_tid;
173 #endif
174     return thread->unix_pid;
175 }
176
177 /* return the Unix tid to use in ptrace calls for a given thread */
178 static int get_ptrace_tid( struct thread *thread )
179 {
180     if (thread->unix_tid != -1) return thread->unix_tid;
181     return thread->unix_pid;
182 }
183
184 /* wait for a ptraced child to get a certain signal */
185 static int wait4_thread( struct thread *thread, int signal )
186 {
187     int res, status;
188
189     start_watchdog();
190     for (;;)
191     {
192         if ((res = wait4_wrapper( get_ptrace_pid(thread), &status, WUNTRACED, NULL )) == -1)
193         {
194             if (errno == EINTR)
195             {
196                 if (!watchdog_triggered()) continue;
197                 if (debug_level) fprintf( stderr, "%04x: *watchdog* wait4 aborted\n", thread->id );
198             }
199             else if (errno == ECHILD)  /* must have died */
200             {
201                 thread->unix_pid = -1;
202                 thread->unix_tid = -1;
203             }
204             else perror( "wait4" );
205             stop_watchdog();
206             return 0;
207         }
208         res = handle_child_status( thread, res, status, signal );
209         if (!res || res == signal) break;
210     }
211     stop_watchdog();
212     return (thread->unix_pid != -1);
213 }
214
215 /* send a signal to a specific thread */
216 static inline int tkill( int tgid, int pid, int sig )
217 {
218 #ifdef __linux__
219     int ret = syscall( SYS_tgkill, tgid, pid, sig );
220     if (ret < 0 && errno == ENOSYS) ret = syscall( SYS_tkill, pid, sig );
221     return ret;
222 #elif (defined(__FreeBSD__) || defined (__FreeBSD_kernel__)) && defined(HAVE_THR_KILL2)
223     return thr_kill2( tgid, pid, sig );
224 #else
225     errno = ENOSYS;
226     return -1;
227 #endif
228 }
229
230 /* initialize the process tracing mechanism */
231 void init_tracing_mechanism(void)
232 {
233     /* no initialization needed for ptrace */
234 }
235
236 /* initialize the per-process tracing mechanism */
237 void init_process_tracing( struct process *process )
238 {
239     /* ptrace setup is done on-demand */
240 }
241
242 /* terminate the per-process tracing mechanism */
243 void finish_process_tracing( struct process *process )
244 {
245 }
246
247 /* send a Unix signal to a specific thread */
248 int send_thread_signal( struct thread *thread, int sig )
249 {
250     int ret = -1;
251
252     if (thread->unix_pid != -1)
253     {
254         if (thread->unix_tid != -1)
255         {
256             ret = tkill( thread->unix_pid, thread->unix_tid, sig );
257             if (ret == -1 && errno == ENOSYS) ret = kill( thread->unix_pid, sig );
258         }
259         else ret = kill( thread->unix_pid, sig );
260
261         if (ret == -1 && errno == ESRCH) /* thread got killed */
262         {
263             thread->unix_pid = -1;
264             thread->unix_tid = -1;
265         }
266     }
267     if (debug_level && ret != -1)
268         fprintf( stderr, "%04x: *sent signal* signal=%d\n", thread->id, sig );
269     return (ret != -1);
270 }
271
272 /* resume a thread after we have used ptrace on it */
273 static void resume_after_ptrace( struct thread *thread )
274 {
275     if (thread->unix_pid == -1) return;
276     if (ptrace( PTRACE_DETACH, get_ptrace_pid(thread), (caddr_t)1, 0 ) == -1)
277     {
278         if (errno == ESRCH) thread->unix_pid = thread->unix_tid = -1;  /* thread got killed */
279     }
280 }
281
282 /* suspend a thread to allow using ptrace on it */
283 /* you must do a resume_after_ptrace when finished with the thread */
284 static int suspend_for_ptrace( struct thread *thread )
285 {
286     /* can't stop a thread while initialisation is in progress */
287     if (thread->unix_pid == -1 || !is_process_init_done(thread->process)) goto error;
288
289     /* this may fail if the client is already being debugged */
290     if (ptrace( PTRACE_ATTACH, get_ptrace_pid(thread), 0, 0 ) == -1)
291     {
292         if (errno == ESRCH) thread->unix_pid = thread->unix_tid = -1;  /* thread got killed */
293         goto error;
294     }
295     if (wait4_thread( thread, SIGSTOP )) return 1;
296     resume_after_ptrace( thread );
297  error:
298     set_error( STATUS_ACCESS_DENIED );
299     return 0;
300 }
301
302 /* read a long from a thread address space */
303 static long read_thread_long( struct thread *thread, long *addr, long *data )
304 {
305     errno = 0;
306     *data = ptrace( PTRACE_PEEKDATA, get_ptrace_pid(thread), (caddr_t)addr, 0 );
307     if ( *data == -1 && errno)
308     {
309         file_set_error();
310         return -1;
311     }
312     return 0;
313 }
314
315 /* write a long to a thread address space */
316 static long write_thread_long( struct thread *thread, long *addr, long data, unsigned long mask )
317 {
318     long res;
319     if (mask != ~0ul)
320     {
321         if (read_thread_long( thread, addr, &res ) == -1) return -1;
322         data = (data & mask) | (res & ~mask);
323     }
324     if ((res = ptrace( PTRACE_POKEDATA, get_ptrace_pid(thread), (caddr_t)addr, data )) == -1)
325         file_set_error();
326     return res;
327 }
328
329 /* return a thread of the process suitable for ptracing */
330 static struct thread *get_ptrace_thread( struct process *process )
331 {
332     struct thread *thread;
333
334     LIST_FOR_EACH_ENTRY( thread, &process->thread_list, struct thread, proc_entry )
335     {
336         if (thread->unix_pid != -1) return thread;
337     }
338     set_error( STATUS_ACCESS_DENIED );  /* process is dead */
339     return NULL;
340 }
341
342 /* read data from a process memory space */
343 int read_process_memory( struct process *process, client_ptr_t ptr, data_size_t size, char *dest )
344 {
345     struct thread *thread = get_ptrace_thread( process );
346     unsigned int first_offset, last_offset, len;
347     long data, *addr;
348
349     if (!thread) return 0;
350
351     if ((unsigned long)ptr != ptr)
352     {
353         set_error( STATUS_ACCESS_DENIED );
354         return 0;
355     }
356
357     first_offset = ptr % sizeof(long);
358     last_offset = (size + first_offset) % sizeof(long);
359     if (!last_offset) last_offset = sizeof(long);
360
361     addr = (long *)(unsigned long)(ptr - first_offset);
362     len = (size + first_offset + sizeof(long) - 1) / sizeof(long);
363
364     if (suspend_for_ptrace( thread ))
365     {
366         if (len > 3)  /* /proc/pid/mem should be faster for large sizes */
367         {
368             char procmem[24];
369             int fd;
370
371             sprintf( procmem, "/proc/%u/mem", process->unix_pid );
372             if ((fd = open( procmem, O_RDONLY )) != -1)
373             {
374                 ssize_t ret = pread( fd, dest, size, ptr );
375                 close( fd );
376                 if (ret == size)
377                 {
378                     len = 0;
379                     goto done;
380                 }
381             }
382         }
383
384         if (len > 1)
385         {
386             if (read_thread_long( thread, addr++, &data ) == -1) goto done;
387             memcpy( dest, (char *)&data + first_offset, sizeof(long) - first_offset );
388             dest += sizeof(long) - first_offset;
389             first_offset = 0;
390             len--;
391         }
392
393         while (len > 1)
394         {
395             if (read_thread_long( thread, addr++, &data ) == -1) goto done;
396             memcpy( dest, &data, sizeof(long) );
397             dest += sizeof(long);
398             len--;
399         }
400
401         if (read_thread_long( thread, addr++, &data ) == -1) goto done;
402         memcpy( dest, (char *)&data + first_offset, last_offset - first_offset );
403         len--;
404
405     done:
406         resume_after_ptrace( thread );
407     }
408     return !len;
409 }
410
411 /* make sure we can write to the whole address range */
412 /* len is the total size (in ints) */
413 static int check_process_write_access( struct thread *thread, long *addr, data_size_t len )
414 {
415     int page = get_page_size() / sizeof(int);
416
417     for (;;)
418     {
419         if (write_thread_long( thread, addr, 0, 0 ) == -1) return 0;
420         if (len <= page) break;
421         addr += page;
422         len -= page;
423     }
424     return (write_thread_long( thread, addr + len - 1, 0, 0 ) != -1);
425 }
426
427 /* write data to a process memory space */
428 int write_process_memory( struct process *process, client_ptr_t ptr, data_size_t size, const char *src )
429 {
430     struct thread *thread = get_ptrace_thread( process );
431     int ret = 0;
432     long data = 0;
433     data_size_t len;
434     long *addr;
435     unsigned long first_mask, first_offset, last_mask, last_offset;
436
437     if (!thread) return 0;
438
439     if ((unsigned long)ptr != ptr)
440     {
441         set_error( STATUS_ACCESS_DENIED );
442         return 0;
443     }
444
445     /* compute the mask for the first long */
446     first_mask = ~0;
447     first_offset = ptr % sizeof(long);
448     memset( &first_mask, 0, first_offset );
449
450     /* compute the mask for the last long */
451     last_offset = (size + first_offset) % sizeof(long);
452     if (!last_offset) last_offset = sizeof(long);
453     last_mask = 0;
454     memset( &last_mask, 0xff, last_offset );
455
456     addr = (long *)(unsigned long)(ptr - first_offset);
457     len = (size + first_offset + sizeof(long) - 1) / sizeof(long);
458
459     if (suspend_for_ptrace( thread ))
460     {
461         if (!check_process_write_access( thread, addr, len ))
462         {
463             set_error( STATUS_ACCESS_DENIED );
464             goto done;
465         }
466
467         if (len > 3)
468         {
469             char procmem[24];
470             int fd;
471
472             sprintf( procmem, "/proc/%u/mem", process->unix_pid );
473             if ((fd = open( procmem, O_WRONLY )) != -1)
474             {
475                 ssize_t r = pwrite( fd, src, size, ptr );
476                 close( fd );
477                 if (r == size)
478                 {
479                     ret = 1;
480                     goto done;
481                 }
482             }
483         }
484
485         /* first word is special */
486         if (len > 1)
487         {
488             memcpy( (char *)&data + first_offset, src, sizeof(long) - first_offset );
489             src += sizeof(long) - first_offset;
490             if (write_thread_long( thread, addr++, data, first_mask ) == -1) goto done;
491             first_offset = 0;
492             len--;
493         }
494         else last_mask &= first_mask;
495
496         while (len > 1)
497         {
498             memcpy( &data, src, sizeof(long) );
499             src += sizeof(long);
500             if (write_thread_long( thread, addr++, data, ~0ul ) == -1) goto done;
501             len--;
502         }
503
504         /* last word is special too */
505         memcpy( (char *)&data + first_offset, src, last_offset - first_offset );
506         if (write_thread_long( thread, addr, data, last_mask ) == -1) goto done;
507         ret = 1;
508
509     done:
510         resume_after_ptrace( thread );
511     }
512     return ret;
513 }
514
515 /* retrieve an LDT selector entry */
516 void get_selector_entry( struct thread *thread, int entry, unsigned int *base,
517                          unsigned int *limit, unsigned char *flags )
518 {
519     if (!thread->process->ldt_copy)
520     {
521         set_error( STATUS_ACCESS_DENIED );
522         return;
523     }
524     if (entry >= 8192)
525     {
526         set_error( STATUS_ACCESS_VIOLATION );
527         return;
528     }
529     if (suspend_for_ptrace( thread ))
530     {
531         unsigned char flags_buf[sizeof(long)];
532         long *addr = (long *)(unsigned long)thread->process->ldt_copy + entry;
533         if (read_thread_long( thread, addr, (long *)base ) == -1) goto done;
534         if (read_thread_long( thread, addr + 8192, (long *)limit ) == -1) goto done;
535         addr = (long *)(unsigned long)thread->process->ldt_copy + 2*8192 + (entry / sizeof(long));
536         if (read_thread_long( thread, addr, (long *)flags_buf ) == -1) goto done;
537         *flags = flags_buf[entry % sizeof(long)];
538     done:
539         resume_after_ptrace( thread );
540     }
541 }
542
543
544 #if defined(linux) && (defined(__i386__) || defined(__x86_64__))
545
546 #ifdef HAVE_SYS_USER_H
547 # include <sys/user.h>
548 #endif
549
550 /* debug register offset in struct user */
551 #define DR_OFFSET(dr) ((((struct user *)0)->u_debugreg) + (dr))
552
553 /* retrieve the thread x86 registers */
554 void get_thread_context( struct thread *thread, context_t *context, unsigned int flags )
555 {
556     int i, pid = get_ptrace_tid(thread);
557     long data[8];
558
559     /* all other regs are handled on the client side */
560     assert( flags == SERVER_CTX_DEBUG_REGISTERS );
561
562     if (!suspend_for_ptrace( thread )) return;
563
564     for (i = 0; i < 8; i++)
565     {
566         if (i == 4 || i == 5) continue;
567         errno = 0;
568         data[i] = ptrace( PTRACE_PEEKUSER, pid, DR_OFFSET(i), 0 );
569         if ((data[i] == -1) && errno)
570         {
571             file_set_error();
572             goto done;
573         }
574     }
575     switch (context->cpu)
576     {
577     case CPU_x86:
578         context->debug.i386_regs.dr0 = data[0];
579         context->debug.i386_regs.dr1 = data[1];
580         context->debug.i386_regs.dr2 = data[2];
581         context->debug.i386_regs.dr3 = data[3];
582         context->debug.i386_regs.dr6 = data[6];
583         context->debug.i386_regs.dr7 = data[7];
584         break;
585     case CPU_x86_64:
586         context->debug.x86_64_regs.dr0 = data[0];
587         context->debug.x86_64_regs.dr1 = data[1];
588         context->debug.x86_64_regs.dr2 = data[2];
589         context->debug.x86_64_regs.dr3 = data[3];
590         context->debug.x86_64_regs.dr6 = data[6];
591         context->debug.x86_64_regs.dr7 = data[7];
592         break;
593     default:
594         set_error( STATUS_INVALID_PARAMETER );
595         goto done;
596     }
597     context->flags |= SERVER_CTX_DEBUG_REGISTERS;
598 done:
599     resume_after_ptrace( thread );
600 }
601
602 /* set the thread x86 registers */
603 void set_thread_context( struct thread *thread, const context_t *context, unsigned int flags )
604 {
605     int pid = get_ptrace_tid( thread );
606
607     /* all other regs are handled on the client side */
608     assert( flags == SERVER_CTX_DEBUG_REGISTERS );
609
610     if (!suspend_for_ptrace( thread )) return;
611
612     switch (context->cpu)
613     {
614     case CPU_x86:
615         /* Linux 2.6.33+ does DR0-DR3 alignment validation, so it has to know LEN bits first */
616         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(7), context->debug.i386_regs.dr7 & 0xffff0000 ) == -1) goto error;
617         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(0), context->debug.i386_regs.dr0 ) == -1) goto error;
618         if (thread->context) thread->context->debug.i386_regs.dr0 = context->debug.i386_regs.dr0;
619         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(1), context->debug.i386_regs.dr1 ) == -1) goto error;
620         if (thread->context) thread->context->debug.i386_regs.dr1 = context->debug.i386_regs.dr1;
621         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(2), context->debug.i386_regs.dr2 ) == -1) goto error;
622         if (thread->context) thread->context->debug.i386_regs.dr2 = context->debug.i386_regs.dr2;
623         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(3), context->debug.i386_regs.dr3 ) == -1) goto error;
624         if (thread->context) thread->context->debug.i386_regs.dr3 = context->debug.i386_regs.dr3;
625         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(6), context->debug.i386_regs.dr6 ) == -1) goto error;
626         if (thread->context) thread->context->debug.i386_regs.dr6 = context->debug.i386_regs.dr6;
627         /* Linux 2.6.33+ needs enable bits set briefly to update value returned by PEEKUSER later */
628         ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(7), context->debug.i386_regs.dr7 | 0x55 );
629         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(7), context->debug.i386_regs.dr7 ) == -1) goto error;
630         if (thread->context) thread->context->debug.i386_regs.dr7 = context->debug.i386_regs.dr7;
631         break;
632     case CPU_x86_64:
633         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(7), context->debug.x86_64_regs.dr7 & 0xffff0000 ) == -1) goto error;
634         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(0), context->debug.x86_64_regs.dr0 ) == -1) goto error;
635         if (thread->context) thread->context->debug.x86_64_regs.dr0 = context->debug.x86_64_regs.dr0;
636         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(1), context->debug.x86_64_regs.dr1 ) == -1) goto error;
637         if (thread->context) thread->context->debug.x86_64_regs.dr1 = context->debug.x86_64_regs.dr1;
638         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(2), context->debug.x86_64_regs.dr2 ) == -1) goto error;
639         if (thread->context) thread->context->debug.x86_64_regs.dr2 = context->debug.x86_64_regs.dr2;
640         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(3), context->debug.x86_64_regs.dr3 ) == -1) goto error;
641         if (thread->context) thread->context->debug.x86_64_regs.dr3 = context->debug.x86_64_regs.dr3;
642         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(6), context->debug.x86_64_regs.dr6 ) == -1) goto error;
643         if (thread->context) thread->context->debug.x86_64_regs.dr6 = context->debug.x86_64_regs.dr6;
644         ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(7), context->debug.x86_64_regs.dr7 | 0x55 );
645         if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(7), context->debug.x86_64_regs.dr7 ) == -1) goto error;
646         if (thread->context) thread->context->debug.x86_64_regs.dr7 = context->debug.x86_64_regs.dr7;
647         break;
648     default:
649         set_error( STATUS_INVALID_PARAMETER );
650     }
651     resume_after_ptrace( thread );
652     return;
653  error:
654     file_set_error();
655     resume_after_ptrace( thread );
656 }
657
658 #elif defined(__i386__) && defined(PTRACE_GETDBREGS) && defined(PTRACE_SETDBREGS) && \
659     (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__))
660
661 #include <machine/reg.h>
662
663 /* retrieve the thread x86 registers */
664 void get_thread_context( struct thread *thread, context_t *context, unsigned int flags )
665 {
666     int pid = get_ptrace_tid(thread);
667     struct dbreg dbregs;
668
669     /* all other regs are handled on the client side */
670     assert( flags == SERVER_CTX_DEBUG_REGISTERS );
671
672     if (!suspend_for_ptrace( thread )) return;
673
674     if (ptrace( PTRACE_GETDBREGS, pid, (caddr_t) &dbregs, 0 ) == -1) file_set_error();
675     else
676     {
677 #ifdef DBREG_DRX
678         /* needed for FreeBSD, the structure fields have changed under 5.x */
679         context->debug.i386_regs.dr0 = DBREG_DRX((&dbregs), 0);
680         context->debug.i386_regs.dr1 = DBREG_DRX((&dbregs), 1);
681         context->debug.i386_regs.dr2 = DBREG_DRX((&dbregs), 2);
682         context->debug.i386_regs.dr3 = DBREG_DRX((&dbregs), 3);
683         context->debug.i386_regs.dr6 = DBREG_DRX((&dbregs), 6);
684         context->debug.i386_regs.dr7 = DBREG_DRX((&dbregs), 7);
685 #else
686         context->debug.i386_regs.dr0 = dbregs.dr0;
687         context->debug.i386_regs.dr1 = dbregs.dr1;
688         context->debug.i386_regs.dr2 = dbregs.dr2;
689         context->debug.i386_regs.dr3 = dbregs.dr3;
690         context->debug.i386_regs.dr6 = dbregs.dr6;
691         context->debug.i386_regs.dr7 = dbregs.dr7;
692 #endif
693         context->flags |= SERVER_CTX_DEBUG_REGISTERS;
694     }
695     resume_after_ptrace( thread );
696 }
697
698 /* set the thread x86 registers */
699 void set_thread_context( struct thread *thread, const context_t *context, unsigned int flags )
700 {
701     int pid = get_ptrace_tid(thread);
702     struct dbreg dbregs;
703
704     /* all other regs are handled on the client side */
705     assert( flags == SERVER_CTX_DEBUG_REGISTERS );
706
707     if (!suspend_for_ptrace( thread )) return;
708
709 #ifdef DBREG_DRX
710     /* needed for FreeBSD, the structure fields have changed under 5.x */
711     DBREG_DRX((&dbregs), 0) = context->debug.i386_regs.dr0;
712     DBREG_DRX((&dbregs), 1) = context->debug.i386_regs.dr1;
713     DBREG_DRX((&dbregs), 2) = context->debug.i386_regs.dr2;
714     DBREG_DRX((&dbregs), 3) = context->debug.i386_regs.dr3;
715     DBREG_DRX((&dbregs), 4) = 0;
716     DBREG_DRX((&dbregs), 5) = 0;
717     DBREG_DRX((&dbregs), 6) = context->debug.i386_regs.dr6;
718     DBREG_DRX((&dbregs), 7) = context->debug.i386_regs.dr7;
719 #else
720     dbregs.dr0 = context->debug.i386_regs.dr0;
721     dbregs.dr1 = context->debug.i386_regs.dr1;
722     dbregs.dr2 = context->debug.i386_regs.dr2;
723     dbregs.dr3 = context->debug.i386_regs.dr3;
724     dbregs.dr4 = 0;
725     dbregs.dr5 = 0;
726     dbregs.dr6 = context->debug.i386_regs.dr6;
727     dbregs.dr7 = context->debug.i386_regs.dr7;
728 #endif
729     if (ptrace( PTRACE_SETDBREGS, pid, (caddr_t) &dbregs, 0 ) == -1) file_set_error();
730     else if (thread->context)
731         thread->context->debug.i386_regs = context->debug.i386_regs;  /* update the cached values */
732     resume_after_ptrace( thread );
733 }
734
735 #else  /* linux || __FreeBSD__ */
736
737 /* retrieve the thread x86 registers */
738 void get_thread_context( struct thread *thread, context_t *context, unsigned int flags )
739 {
740 }
741
742 /* set the thread x86 debug registers */
743 void set_thread_context( struct thread *thread, const context_t *context, unsigned int flags )
744 {
745 }
746
747 #endif  /* linux || __FreeBSD__ */
748
749 #endif  /* USE_PTRACE */