ptrace.c 22.8 KB
Newer Older
1 2 3 4
/*
 * Server-side ptrace support
 *
 * Copyright (C) 1999 Alexandre Julliard
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * 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 25

#include <assert.h>
#include <errno.h>
26
#include <fcntl.h>
27 28
#include <stdio.h>
#include <signal.h>
29
#include <stdarg.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
30
#include <sys/types.h>
31 32 33
#ifdef HAVE_SYS_PTRACE_H
# include <sys/ptrace.h>
#endif
34 35 36
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
37
#ifdef HAVE_SYS_WAIT_H
38
# include <sys/wait.h>
39
#endif
40 41 42 43
#ifdef HAVE_SYS_THR_H
# include <sys/ucontext.h>
# include <sys/thr.h>
#endif
44 45
#include <unistd.h>

46 47 48 49
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "winternl.h"

50
#include "file.h"
51 52 53
#include "process.h"
#include "thread.h"

54 55
#ifdef USE_PTRACE

56 57 58
#ifndef PTRACE_CONT
#define PTRACE_CONT PT_CONTINUE
#endif
59 60 61
#ifndef PTRACE_SINGLESTEP
#define PTRACE_SINGLESTEP PT_STEP
#endif
62 63 64 65 66 67 68 69 70 71 72 73
#ifndef PTRACE_ATTACH
#define PTRACE_ATTACH PT_ATTACH
#endif
#ifndef PTRACE_DETACH
#define PTRACE_DETACH PT_DETACH
#endif
#ifndef PTRACE_PEEKDATA
#define PTRACE_PEEKDATA PT_READ_D
#endif
#ifndef PTRACE_POKEDATA
#define PTRACE_POKEDATA PT_WRITE_D
#endif
74 75 76 77 78 79 80 81 82 83 84 85 86
#ifndef PTRACE_PEEKUSER
#define PTRACE_PEEKUSER PT_READ_U
#endif
#ifndef PTRACE_POKEUSER
#define PTRACE_POKEUSER PT_WRITE_U
#endif

#ifdef PT_GETDBREGS
#define PTRACE_GETDBREGS PT_GETDBREGS
#endif
#ifdef PT_SETDBREGS
#define PTRACE_SETDBREGS PT_SETDBREGS
#endif
87

88
#ifndef HAVE_SYS_PTRACE_H
89 90 91 92 93
#define PT_CONTINUE 0
#define PT_ATTACH   1
#define PT_DETACH   2
#define PT_READ_D   3
#define PT_WRITE_D  4
94
#define PT_STEP     5
95
static inline int ptrace(int req, ...) { errno = EPERM; return -1; /*FAIL*/ }
96
#endif  /* HAVE_SYS_PTRACE_H */
97

98
/* handle a status returned by wait4 */
99
static int handle_child_status( struct thread *thread, int pid, int status, int want_sig )
100 101 102 103
{
    if (WIFSTOPPED(status))
    {
        int sig = WSTOPSIG(status);
104
        if (debug_level && thread)
105
            fprintf( stderr, "%04x: *signal* signal=%d\n", thread->id, sig );
106
        if (sig != want_sig)
107
        {
108
            /* ignore other signals for now */
109
            ptrace( PTRACE_CONT, pid, (caddr_t)1, sig );
110
        }
111
        return sig;
112
    }
113
    if (thread && (WIFSIGNALED(status) || WIFEXITED(status)))
114
    {
115
        thread->unix_pid = -1;
116
        thread->unix_tid = -1;
117
        if (debug_level)
118 119
        {
            if (WIFSIGNALED(status))
120 121
                fprintf( stderr, "%04x: *exited* signal=%d\n",
                         thread->id, WTERMSIG(status) );
122
            else
123 124
                fprintf( stderr, "%04x: *exited* status=%d\n",
                         thread->id, WEXITSTATUS(status) );
125
        }
126
    }
127 128 129
    return 0;
}

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
/* wait4 wrapper to handle missing __WALL flag in older kernels */
static inline pid_t wait4_wrapper( pid_t pid, int *status, int options, struct rusage *usage )
{
#ifdef __WALL
    static int wall_flag = __WALL;

    for (;;)
    {
        pid_t ret = wait4( pid, status, options | wall_flag, usage );
        if (ret != -1 || !wall_flag || errno != EINVAL) return ret;
        wall_flag = 0;
    }
#else
    return wait4( pid, status, options, usage );
#endif
}

147
/* handle a SIGCHLD signal */
148
void sigchld_callback(void)
149 150 151 152
{
    int pid, status;

    for (;;)
153
    {
154
        if (!(pid = wait4_wrapper( -1, &status, WUNTRACED | WNOHANG, NULL ))) break;
155 156 157 158 159 160
        if (pid != -1)
        {
            struct thread *thread = get_thread_from_tid( pid );
            if (!thread) thread = get_thread_from_pid( pid );
            handle_child_status( thread, pid, status, -1 );
        }
161
        else break;
162
    }
163 164
}

165
/* return the Unix pid to use in ptrace calls for a given process */
166
static int get_ptrace_pid( struct thread *thread )
167 168 169 170 171 172 173 174 175
{
#ifdef linux  /* linux always uses thread id */
    if (thread->unix_tid != -1) return thread->unix_tid;
#endif
    return thread->unix_pid;
}

/* return the Unix tid to use in ptrace calls for a given thread */
static int get_ptrace_tid( struct thread *thread )
176 177 178 179 180
{
    if (thread->unix_tid != -1) return thread->unix_tid;
    return thread->unix_pid;
}

181
/* wait for a ptraced child to get a certain signal */
182
static int wait4_thread( struct thread *thread, int signal )
183 184 185
{
    int res, status;

186
    start_watchdog();
187
    for (;;)
188
    {
189
        if ((res = wait4_wrapper( get_ptrace_pid(thread), &status, WUNTRACED, NULL )) == -1)
190
        {
191 192 193 194 195 196
            if (errno == EINTR)
            {
                if (!watchdog_triggered()) continue;
                if (debug_level) fprintf( stderr, "%04x: *watchdog* wait4 aborted\n", thread->id );
            }
            else if (errno == ECHILD)  /* must have died */
197 198
            {
                thread->unix_pid = -1;
199
                thread->unix_tid = -1;
200 201
            }
            else perror( "wait4" );
202
            stop_watchdog();
203
            return 0;
204
        }
205
        res = handle_child_status( thread, res, status, signal );
206 207
        if (!res || res == signal) break;
    }
208
    stop_watchdog();
209
    return (thread->unix_pid != -1);
210 211
}

212 213 214 215 216
/* send a signal to a specific thread */
static inline int tkill( int tgid, int pid, int sig )
{
#ifdef __linux__
# ifdef __i386__
217
    int ret = syscall(270 /*SYS_tgkill*/, tgid, pid, sig);
218 219 220
    if (ret < 0 && errno == -ENOSYS)
        ret = syscall(238 /*SYS_tkill*/, pid, sig);
    return ret;
221
# elif defined(__x86_64__)
222
    return syscall(234 /*SYS_tgkill*/, tgid, pid, sig);
223 224
# else
    errno = ENOSYS;
225
    return -1;
226
# endif
227 228 229 230 231 232
#elif defined(__FreeBSD__) && defined(HAVE_THR_KILL2)
    return thr_kill2( tgid, pid, sig );
#else
    errno = ENOSYS;
    return -1;
#endif
233 234
}

235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
/* initialize the process tracing mechanism */
void init_tracing_mechanism(void)
{
    /* no initialization needed for ptrace */
}

/* initialize the per-process tracing mechanism */
void init_process_tracing( struct process *process )
{
    /* ptrace setup is done on-demand */
}

/* terminate the per-process tracing mechanism */
void finish_process_tracing( struct process *process )
{
}

252 253 254 255 256 257 258
/* send a Unix signal to a specific thread */
int send_thread_signal( struct thread *thread, int sig )
{
    int ret = -1;

    if (thread->unix_pid != -1)
    {
259 260
        if (thread->unix_tid != -1)
        {
261
            ret = tkill( thread->unix_pid, thread->unix_tid, sig );
262 263
            if (ret == -1 && errno == ENOSYS) ret = kill( thread->unix_pid, sig );
        }
264 265
        else ret = kill( thread->unix_pid, sig );

266 267 268
        if (ret == -1 && errno == ESRCH) /* thread got killed */
        {
            thread->unix_pid = -1;
269
            thread->unix_tid = -1;
270 271
        }
    }
272 273
    if (debug_level && ret != -1)
        fprintf( stderr, "%04x: *sent signal* signal=%d\n", thread->id, sig );
274 275 276
    return (ret != -1);
}

277 278 279 280 281 282 283 284 285 286
/* resume a thread after we have used ptrace on it */
static void resume_after_ptrace( struct thread *thread )
{
    if (thread->unix_pid == -1) return;
    if (ptrace( PTRACE_DETACH, get_ptrace_pid(thread), (caddr_t)1, 0 ) == -1)
    {
        if (errno == ESRCH) thread->unix_pid = thread->unix_tid = -1;  /* thread got killed */
    }
}

287
/* suspend a thread to allow using ptrace on it */
288
/* you must do a resume_after_ptrace when finished with the thread */
289
static int suspend_for_ptrace( struct thread *thread )
290
{
291 292 293
    /* can't stop a thread while initialisation is in progress */
    if (thread->unix_pid == -1 || !is_process_init_done(thread->process)) goto error;

294 295
    /* this may fail if the client is already being debugged */
    if (ptrace( PTRACE_ATTACH, get_ptrace_pid(thread), 0, 0 ) == -1)
296
    {
297 298
        if (errno == ESRCH) thread->unix_pid = thread->unix_tid = -1;  /* thread got killed */
        goto error;
299 300 301
    }
    if (wait4_thread( thread, SIGSTOP )) return 1;
    resume_after_ptrace( thread );
302
 error:
303 304 305 306
    set_error( STATUS_ACCESS_DENIED );
    return 0;
}

307 308
/* read a long from a thread address space */
static long read_thread_long( struct thread *thread, long *addr, long *data )
309
{
310
    errno = 0;
311
    *data = ptrace( PTRACE_PEEKDATA, get_ptrace_pid(thread), (caddr_t)addr, 0 );
312
    if ( *data == -1 && errno)
313 314 315 316 317 318 319
    {
        file_set_error();
        return -1;
    }
    return 0;
}

320 321
/* write a long to a thread address space */
static long write_thread_long( struct thread *thread, long *addr, long data, unsigned long mask )
322
{
323
    long res;
324
    if (mask != ~0ul)
325
    {
326
        if (read_thread_long( thread, addr, &res ) == -1) return -1;
327 328
        data = (data & mask) | (res & ~mask);
    }
329
    if ((res = ptrace( PTRACE_POKEDATA, get_ptrace_pid(thread), (caddr_t)addr, data )) == -1)
330
        file_set_error();
331 332
    return res;
}
333

334 335 336 337 338 339 340 341 342 343 344 345 346
/* return a thread of the process suitable for ptracing */
static struct thread *get_ptrace_thread( struct process *process )
{
    struct thread *thread;

    LIST_FOR_EACH_ENTRY( thread, &process->thread_list, struct thread, proc_entry )
    {
        if (thread->unix_pid != -1) return thread;
    }
    set_error( STATUS_ACCESS_DENIED );  /* process is dead */
    return NULL;
}

347
/* read data from a process memory space */
348
int read_process_memory( struct process *process, client_ptr_t ptr, data_size_t size, char *dest )
349
{
350
    struct thread *thread = get_ptrace_thread( process );
351
    unsigned int first_offset, last_offset, len;
352
    long data, *addr;
353

354
    if (!thread) return 0;
355

356 357 358 359 360 361
    if ((unsigned long)ptr != ptr)
    {
        set_error( STATUS_ACCESS_DENIED );
        return 0;
    }

362 363 364
    first_offset = ptr % sizeof(long);
    last_offset = (size + first_offset) % sizeof(long);
    if (!last_offset) last_offset = sizeof(long);
365

366 367
    addr = (long *)(unsigned long)(ptr - first_offset);
    len = (size + first_offset + sizeof(long) - 1) / sizeof(long);
368 369 370

    if (suspend_for_ptrace( thread ))
    {
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
        if (len > 3)  /* /proc/pid/mem should be faster for large sizes */
        {
            char procmem[24];
            int fd;

            sprintf( procmem, "/proc/%u/mem", process->unix_pid );
            if ((fd = open( procmem, O_RDONLY )) != -1)
            {
                ssize_t ret = pread( fd, dest, size, ptr );
                close( fd );
                if (ret == size)
                {
                    len = 0;
                    goto done;
                }
            }
        }

389 390
        if (len > 1)
        {
391 392 393
            if (read_thread_long( thread, addr++, &data ) == -1) goto done;
            memcpy( dest, (char *)&data + first_offset, sizeof(long) - first_offset );
            dest += sizeof(long) - first_offset;
394 395 396 397 398 399
            first_offset = 0;
            len--;
        }

        while (len > 1)
        {
400 401 402
            if (read_thread_long( thread, addr++, &data ) == -1) goto done;
            memcpy( dest, &data, sizeof(long) );
            dest += sizeof(long);
403 404 405
            len--;
        }

406
        if (read_thread_long( thread, addr++, &data ) == -1) goto done;
407 408 409 410 411 412 413 414 415 416 417
        memcpy( dest, (char *)&data + first_offset, last_offset - first_offset );
        len--;

    done:
        resume_after_ptrace( thread );
    }
    return !len;
}

/* make sure we can write to the whole address range */
/* len is the total size (in ints) */
418
static int check_process_write_access( struct thread *thread, long *addr, data_size_t len )
419 420 421 422 423
{
    int page = get_page_size() / sizeof(int);

    for (;;)
    {
424
        if (write_thread_long( thread, addr, 0, 0 ) == -1) return 0;
425 426 427 428
        if (len <= page) break;
        addr += page;
        len -= page;
    }
429
    return (write_thread_long( thread, addr + len - 1, 0, 0 ) != -1);
430 431 432
}

/* write data to a process memory space */
433
int write_process_memory( struct process *process, client_ptr_t ptr, data_size_t size, const char *src )
434
{
435
    struct thread *thread = get_ptrace_thread( process );
436 437
    int ret = 0;
    long data = 0;
438
    data_size_t len;
439 440
    long *addr;
    unsigned long first_mask, first_offset, last_mask, last_offset;
441

442
    if (!thread) return 0;
443

444 445 446 447 448 449
    if ((unsigned long)ptr != ptr)
    {
        set_error( STATUS_ACCESS_DENIED );
        return 0;
    }

450
    /* compute the mask for the first long */
451
    first_mask = ~0;
452
    first_offset = ptr % sizeof(long);
453 454
    memset( &first_mask, 0, first_offset );

455 456 457
    /* compute the mask for the last long */
    last_offset = (size + first_offset) % sizeof(long);
    if (!last_offset) last_offset = sizeof(long);
458 459 460
    last_mask = 0;
    memset( &last_mask, 0xff, last_offset );

461 462
    addr = (long *)(unsigned long)(ptr - first_offset);
    len = (size + first_offset + sizeof(long) - 1) / sizeof(long);
463 464 465 466 467 468 469 470 471 472 473

    if (suspend_for_ptrace( thread ))
    {
        if (!check_process_write_access( thread, addr, len ))
        {
            set_error( STATUS_ACCESS_DENIED );
            goto done;
        }
        /* first word is special */
        if (len > 1)
        {
474 475 476
            memcpy( (char *)&data + first_offset, src, sizeof(long) - first_offset );
            src += sizeof(long) - first_offset;
            if (write_thread_long( thread, addr++, data, first_mask ) == -1) goto done;
477 478 479 480 481 482 483
            first_offset = 0;
            len--;
        }
        else last_mask &= first_mask;

        while (len > 1)
        {
484 485 486
            memcpy( &data, src, sizeof(long) );
            src += sizeof(long);
            if (write_thread_long( thread, addr++, data, ~0ul ) == -1) goto done;
487 488 489 490 491
            len--;
        }

        /* last word is special too */
        memcpy( (char *)&data + first_offset, src, last_offset - first_offset );
492
        if (write_thread_long( thread, addr, data, last_mask ) == -1) goto done;
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
        ret = 1;

    done:
        resume_after_ptrace( thread );
    }
    return ret;
}

/* retrieve an LDT selector entry */
void get_selector_entry( struct thread *thread, int entry, unsigned int *base,
                         unsigned int *limit, unsigned char *flags )
{
    if (!thread->process->ldt_copy)
    {
        set_error( STATUS_ACCESS_DENIED );
        return;
    }
    if (entry >= 8192)
    {
512
        set_error( STATUS_ACCESS_VIOLATION );
513 514 515 516
        return;
    }
    if (suspend_for_ptrace( thread ))
    {
517 518 519 520 521 522 523
        unsigned char flags_buf[sizeof(long)];
        long *addr = (long *)(unsigned long)thread->process->ldt_copy + entry;
        if (read_thread_long( thread, addr, (long *)base ) == -1) goto done;
        if (read_thread_long( thread, addr + 8192, (long *)limit ) == -1) goto done;
        addr = (long *)(unsigned long)thread->process->ldt_copy + 2*8192 + (entry / sizeof(long));
        if (read_thread_long( thread, addr, (long *)flags_buf ) == -1) goto done;
        *flags = flags_buf[entry % sizeof(long)];
524 525 526 527
    done:
        resume_after_ptrace( thread );
    }
}
528 529 530 531 532 533 534 535 536


#if defined(linux) && (defined(__i386__) || defined(__x86_64__))

#ifdef HAVE_SYS_USER_H
# include <sys/user.h>
#endif

/* debug register offset in struct user */
537
#define DR_OFFSET(dr) ((((struct user *)0)->u_debugreg) + (dr))
538 539

/* retrieve the thread x86 registers */
540
void get_thread_context( struct thread *thread, context_t *context, unsigned int flags )
541
{
542
    int i, pid = get_ptrace_tid(thread);
543
    long data[8];
544 545

    /* all other regs are handled on the client side */
546
    assert( flags == SERVER_CTX_DEBUG_REGISTERS );
547 548 549

    if (!suspend_for_ptrace( thread )) return;

550 551 552 553 554 555 556 557 558 559 560
    for (i = 0; i < 8; i++)
    {
        if (i == 4 || i == 5) continue;
        errno = 0;
        data[i] = ptrace( PTRACE_PEEKUSER, pid, DR_OFFSET(i), 0 );
        if ((data[i] == -1) && errno)
        {
            file_set_error();
            goto done;
        }
    }
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
    switch (context->cpu)
    {
    case CPU_x86:
        context->debug.i386_regs.dr0 = data[0];
        context->debug.i386_regs.dr1 = data[1];
        context->debug.i386_regs.dr2 = data[2];
        context->debug.i386_regs.dr3 = data[3];
        context->debug.i386_regs.dr6 = data[6];
        context->debug.i386_regs.dr7 = data[7];
        break;
    case CPU_x86_64:
        context->debug.x86_64_regs.dr0 = data[0];
        context->debug.x86_64_regs.dr1 = data[1];
        context->debug.x86_64_regs.dr2 = data[2];
        context->debug.x86_64_regs.dr3 = data[3];
        context->debug.x86_64_regs.dr6 = data[6];
        context->debug.x86_64_regs.dr7 = data[7];
        break;
    default:
        set_error( STATUS_INVALID_PARAMETER );
        goto done;
    }
583
    context->flags |= SERVER_CTX_DEBUG_REGISTERS;
584
done:
585 586 587 588
    resume_after_ptrace( thread );
}

/* set the thread x86 registers */
589
void set_thread_context( struct thread *thread, const context_t *context, unsigned int flags )
590
{
591
    int pid = get_ptrace_tid( thread );
592 593

    /* all other regs are handled on the client side */
594
    assert( flags == SERVER_CTX_DEBUG_REGISTERS );
595 596 597

    if (!suspend_for_ptrace( thread )) return;

598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
    switch (context->cpu)
    {
    case CPU_x86:
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(0), context->debug.i386_regs.dr0 ) == -1) goto error;
        if (thread->context) thread->context->debug.i386_regs.dr0 = context->debug.i386_regs.dr0;
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(1), context->debug.i386_regs.dr1 ) == -1) goto error;
        if (thread->context) thread->context->debug.i386_regs.dr1 = context->debug.i386_regs.dr1;
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(2), context->debug.i386_regs.dr2 ) == -1) goto error;
        if (thread->context) thread->context->debug.i386_regs.dr2 = context->debug.i386_regs.dr2;
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(3), context->debug.i386_regs.dr3 ) == -1) goto error;
        if (thread->context) thread->context->debug.i386_regs.dr3 = context->debug.i386_regs.dr3;
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(6), context->debug.i386_regs.dr6 ) == -1) goto error;
        if (thread->context) thread->context->debug.i386_regs.dr6 = context->debug.i386_regs.dr6;
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(7), context->debug.i386_regs.dr7 ) == -1) goto error;
        if (thread->context) thread->context->debug.i386_regs.dr7 = context->debug.i386_regs.dr7;
        break;
    case CPU_x86_64:
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(0), context->debug.x86_64_regs.dr0 ) == -1) goto error;
        if (thread->context) thread->context->debug.x86_64_regs.dr0 = context->debug.x86_64_regs.dr0;
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(1), context->debug.x86_64_regs.dr1 ) == -1) goto error;
        if (thread->context) thread->context->debug.x86_64_regs.dr1 = context->debug.x86_64_regs.dr1;
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(2), context->debug.x86_64_regs.dr2 ) == -1) goto error;
        if (thread->context) thread->context->debug.x86_64_regs.dr2 = context->debug.x86_64_regs.dr2;
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(3), context->debug.x86_64_regs.dr3 ) == -1) goto error;
        if (thread->context) thread->context->debug.x86_64_regs.dr3 = context->debug.x86_64_regs.dr3;
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(6), context->debug.x86_64_regs.dr6 ) == -1) goto error;
        if (thread->context) thread->context->debug.x86_64_regs.dr6 = context->debug.x86_64_regs.dr6;
        if (ptrace( PTRACE_POKEUSER, pid, DR_OFFSET(7), context->debug.x86_64_regs.dr7 ) == -1) goto error;
        if (thread->context) thread->context->debug.x86_64_regs.dr7 = context->debug.x86_64_regs.dr7;
        break;
    default:
        set_error( STATUS_INVALID_PARAMETER );
    }
631 632 633 634 635 636 637 638 639 640 641 642 643
    resume_after_ptrace( thread );
    return;
 error:
    file_set_error();
    resume_after_ptrace( thread );
}

#elif defined(__i386__) && defined(PTRACE_GETDBREGS) && defined(PTRACE_SETDBREGS) && \
    (defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__NetBSD__))

#include <machine/reg.h>

/* retrieve the thread x86 registers */
644
void get_thread_context( struct thread *thread, context_t *context, unsigned int flags )
645
{
646
    int pid = get_ptrace_tid(thread);
647 648 649
    struct dbreg dbregs;

    /* all other regs are handled on the client side */
650
    assert( flags == SERVER_CTX_DEBUG_REGISTERS );
651 652 653 654 655 656 657 658

    if (!suspend_for_ptrace( thread )) return;

    if (ptrace( PTRACE_GETDBREGS, pid, (caddr_t) &dbregs, 0 ) == -1) file_set_error();
    else
    {
#ifdef DBREG_DRX
        /* needed for FreeBSD, the structure fields have changed under 5.x */
659 660 661 662 663 664
        context->debug.i386_regs.dr0 = DBREG_DRX((&dbregs), 0);
        context->debug.i386_regs.dr1 = DBREG_DRX((&dbregs), 1);
        context->debug.i386_regs.dr2 = DBREG_DRX((&dbregs), 2);
        context->debug.i386_regs.dr3 = DBREG_DRX((&dbregs), 3);
        context->debug.i386_regs.dr6 = DBREG_DRX((&dbregs), 6);
        context->debug.i386_regs.dr7 = DBREG_DRX((&dbregs), 7);
665
#else
666 667 668 669 670 671
        context->debug.i386_regs.dr0 = dbregs.dr0;
        context->debug.i386_regs.dr1 = dbregs.dr1;
        context->debug.i386_regs.dr2 = dbregs.dr2;
        context->debug.i386_regs.dr3 = dbregs.dr3;
        context->debug.i386_regs.dr6 = dbregs.dr6;
        context->debug.i386_regs.dr7 = dbregs.dr7;
672
#endif
673
        context->flags |= SERVER_CTX_DEBUG_REGISTERS;
674 675 676 677 678
    }
    resume_after_ptrace( thread );
}

/* set the thread x86 registers */
679
void set_thread_context( struct thread *thread, const context_t *context, unsigned int flags )
680
{
681
    int pid = get_ptrace_tid(thread);
682 683 684
    struct dbreg dbregs;

    /* all other regs are handled on the client side */
685
    assert( flags == SERVER_CTX_DEBUG_REGISTERS );
686 687 688 689 690

    if (!suspend_for_ptrace( thread )) return;

#ifdef DBREG_DRX
    /* needed for FreeBSD, the structure fields have changed under 5.x */
691 692 693 694
    DBREG_DRX((&dbregs), 0) = context->debug.i386_regs.dr0;
    DBREG_DRX((&dbregs), 1) = context->debug.i386_regs.dr1;
    DBREG_DRX((&dbregs), 2) = context->debug.i386_regs.dr2;
    DBREG_DRX((&dbregs), 3) = context->debug.i386_regs.dr3;
695 696
    DBREG_DRX((&dbregs), 4) = 0;
    DBREG_DRX((&dbregs), 5) = 0;
697 698
    DBREG_DRX((&dbregs), 6) = context->debug.i386_regs.dr6;
    DBREG_DRX((&dbregs), 7) = context->debug.i386_regs.dr7;
699
#else
700 701 702 703
    dbregs.dr0 = context->debug.i386_regs.dr0;
    dbregs.dr1 = context->debug.i386_regs.dr1;
    dbregs.dr2 = context->debug.i386_regs.dr2;
    dbregs.dr3 = context->debug.i386_regs.dr3;
704 705
    dbregs.dr4 = 0;
    dbregs.dr5 = 0;
706 707
    dbregs.dr6 = context->debug.i386_regs.dr6;
    dbregs.dr7 = context->debug.i386_regs.dr7;
708 709
#endif
    if (ptrace( PTRACE_SETDBREGS, pid, (caddr_t) &dbregs, 0 ) == -1) file_set_error();
710 711
    else if (thread->context)
        thread->context->debug.i386_regs = context->debug.i386_regs;  /* update the cached values */
712 713 714 715 716 717
    resume_after_ptrace( thread );
}

#else  /* linux || __FreeBSD__ */

/* retrieve the thread x86 registers */
718
void get_thread_context( struct thread *thread, context_t *context, unsigned int flags )
719 720 721 722
{
}

/* set the thread x86 debug registers */
723
void set_thread_context( struct thread *thread, const context_t *context, unsigned int flags )
724 725 726 727
{
}

#endif  /* linux || __FreeBSD__ */
728 729

#endif  /* USE_PTRACE */