gdb/
[external/binutils.git] / gdb / inf-ptrace.c
1 /* Low-level child interface to ptrace.
2
3    Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998,
4    1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009
5    Free Software Foundation, Inc.
6
7    This file is part of GDB.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
21
22 #include "defs.h"
23 #include "command.h"
24 #include "inferior.h"
25 #include "inflow.h"
26 #include "terminal.h"
27 #include "gdbcore.h"
28 #include "regcache.h"
29
30 #include "gdb_assert.h"
31 #include "gdb_string.h"
32 #include "gdb_ptrace.h"
33 #include "gdb_wait.h"
34 #include <signal.h>
35
36 #include "inf-ptrace.h"
37 #include "inf-child.h"
38 #include "gdbthread.h"
39
40 \f
41
42 #ifdef PT_GET_PROCESS_STATE
43
44 static int
45 inf_ptrace_follow_fork (struct target_ops *ops, int follow_child)
46 {
47   pid_t pid, fpid;
48   ptrace_state_t pe;
49
50   pid = ptid_get_pid (inferior_ptid);
51
52   if (ptrace (PT_GET_PROCESS_STATE, pid,
53                (PTRACE_TYPE_ARG3)&pe, sizeof pe) == -1)
54     perror_with_name (("ptrace"));
55
56   gdb_assert (pe.pe_report_event == PTRACE_FORK);
57   fpid = pe.pe_other_pid;
58
59   if (follow_child)
60     {
61       struct inferior *parent_inf, *child_inf;
62       struct thread_info *tp;
63
64       parent_inf = find_inferior_pid (pid);
65
66       /* Add the child.  */
67       child_inf = add_inferior (fpid);
68       child_inf->attach_flag = parent_inf->attach_flag;
69       copy_terminal_info (child_inf, parent_inf);
70
71       /* Before detaching from the parent, remove all breakpoints from
72          it.  */
73       remove_breakpoints ();
74
75       if (ptrace (PT_DETACH, pid, (PTRACE_TYPE_ARG3)1, 0) == -1)
76         perror_with_name (("ptrace"));
77
78       /* Switch inferior_ptid out of the parent's way.  */
79       inferior_ptid = pid_to_ptid (fpid);
80
81       /* Delete the parent.  */
82       detach_inferior (pid);
83
84       add_thread_silent (inferior_ptid);
85     }
86   else
87     {
88       /* Breakpoints have already been detached from the child by
89          infrun.c.  */
90
91       if (ptrace (PT_DETACH, fpid, (PTRACE_TYPE_ARG3)1, 0) == -1)
92         perror_with_name (("ptrace"));
93     }
94
95   return 0;
96 }
97
98 #endif /* PT_GET_PROCESS_STATE */
99 \f
100
101 /* Prepare to be traced.  */
102
103 static void
104 inf_ptrace_me (void)
105 {
106   /* "Trace me, Dr. Memory!"  */
107   ptrace (PT_TRACE_ME, 0, (PTRACE_TYPE_ARG3)0, 0);
108 }
109
110 /* Start a new inferior Unix child process.  EXEC_FILE is the file to
111    run, ALLARGS is a string containing the arguments to the program.
112    ENV is the environment vector to pass.  If FROM_TTY is non-zero, be
113    chatty about it.  */
114
115 static void
116 inf_ptrace_create_inferior (struct target_ops *ops,
117                             char *exec_file, char *allargs, char **env,
118                             int from_tty)
119 {
120   int pid;
121
122   pid = fork_inferior (exec_file, allargs, env, inf_ptrace_me, NULL,
123                        NULL, NULL);
124
125   push_target (ops);
126
127   /* On some targets, there must be some explicit synchronization
128      between the parent and child processes after the debugger
129      forks, and before the child execs the debuggee program.  This
130      call basically gives permission for the child to exec.  */
131
132   target_acknowledge_created_inferior (pid);
133
134   /* START_INFERIOR_TRAPS_EXPECTED is defined in inferior.h, and will
135      be 1 or 2 depending on whether we're starting without or with a
136      shell.  */
137   startup_inferior (START_INFERIOR_TRAPS_EXPECTED);
138
139   /* On some targets, there must be some explicit actions taken after
140      the inferior has been started up.  */
141   target_post_startup_inferior (pid_to_ptid (pid));
142 }
143
144 #ifdef PT_GET_PROCESS_STATE
145
146 static void
147 inf_ptrace_post_startup_inferior (ptid_t pid)
148 {
149   ptrace_event_t pe;
150
151   /* Set the initial event mask.  */
152   memset (&pe, 0, sizeof pe);
153   pe.pe_set_event |= PTRACE_FORK;
154   if (ptrace (PT_SET_EVENT_MASK, ptid_get_pid (pid),
155               (PTRACE_TYPE_ARG3)&pe, sizeof pe) == -1)
156     perror_with_name (("ptrace"));
157 }
158
159 #endif
160
161 /* Clean up a rotting corpse of an inferior after it died.  */
162
163 static void
164 inf_ptrace_mourn_inferior (struct target_ops *ops)
165 {
166   int status;
167
168   /* Wait just one more time to collect the inferior's exit status.
169      Do not check whether this succeeds though, since we may be
170      dealing with a process that we attached to.  Such a process will
171      only report its exit status to its original parent.  */
172   waitpid (ptid_get_pid (inferior_ptid), &status, 0);
173
174   generic_mourn_inferior ();
175
176   if (!have_inferiors ())
177     unpush_target (ops);
178 }
179
180 /* Attach to the process specified by ARGS.  If FROM_TTY is non-zero,
181    be chatty about it.  */
182
183 static void
184 inf_ptrace_attach (struct target_ops *ops, char *args, int from_tty)
185 {
186   char *exec_file;
187   pid_t pid;
188   char *dummy;
189   struct inferior *inf;
190
191   if (!args)
192     error_no_arg (_("process-id to attach"));
193
194   dummy = args;
195   pid = strtol (args, &dummy, 0);
196   /* Some targets don't set errno on errors, grrr!  */
197   if (pid == 0 && args == dummy)
198     error (_("Illegal process-id: %s."), args);
199
200   if (pid == getpid ())         /* Trying to masturbate?  */
201     error (_("I refuse to debug myself!"));
202
203   if (from_tty)
204     {
205       exec_file = get_exec_file (0);
206
207       if (exec_file)
208         printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
209                            target_pid_to_str (pid_to_ptid (pid)));
210       else
211         printf_unfiltered (_("Attaching to %s\n"),
212                            target_pid_to_str (pid_to_ptid (pid)));
213
214       gdb_flush (gdb_stdout);
215     }
216
217 #ifdef PT_ATTACH
218   errno = 0;
219   ptrace (PT_ATTACH, pid, (PTRACE_TYPE_ARG3)0, 0);
220   if (errno != 0)
221     perror_with_name (("ptrace"));
222 #else
223   error (_("This system does not support attaching to a process"));
224 #endif
225
226   inferior_ptid = pid_to_ptid (pid);
227
228   inf = add_inferior (pid);
229   inf->attach_flag = 1;
230
231   /* Always add a main thread.  If some target extends the ptrace
232      target, it should decorate the ptid later with more info.  */
233   add_thread_silent (inferior_ptid);
234
235   push_target(ops);
236 }
237
238 #ifdef PT_GET_PROCESS_STATE
239
240 void
241 inf_ptrace_post_attach (int pid)
242 {
243   ptrace_event_t pe;
244
245   /* Set the initial event mask.  */
246   memset (&pe, 0, sizeof pe);
247   pe.pe_set_event |= PTRACE_FORK;
248   if (ptrace (PT_SET_EVENT_MASK, pid,
249               (PTRACE_TYPE_ARG3)&pe, sizeof pe) == -1)
250     perror_with_name (("ptrace"));
251 }
252
253 #endif
254
255 /* Detach from the inferior, optionally passing it the signal
256    specified by ARGS.  If FROM_TTY is non-zero, be chatty about it.  */
257
258 static void
259 inf_ptrace_detach (struct target_ops *ops, char *args, int from_tty)
260 {
261   pid_t pid = ptid_get_pid (inferior_ptid);
262   int sig = 0;
263
264   if (from_tty)
265     {
266       char *exec_file = get_exec_file (0);
267       if (exec_file == 0)
268         exec_file = "";
269       printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
270                          target_pid_to_str (pid_to_ptid (pid)));
271       gdb_flush (gdb_stdout);
272     }
273   if (args)
274     sig = atoi (args);
275
276 #ifdef PT_DETACH
277   /* We'd better not have left any breakpoints in the program or it'll
278      die when it hits one.  Also note that this may only work if we
279      previously attached to the inferior.  It *might* work if we
280      started the process ourselves.  */
281   errno = 0;
282   ptrace (PT_DETACH, pid, (PTRACE_TYPE_ARG3)1, sig);
283   if (errno != 0)
284     perror_with_name (("ptrace"));
285 #else
286   error (_("This system does not support detaching from a process"));
287 #endif
288
289   inferior_ptid = null_ptid;
290   detach_inferior (pid);
291
292   if (!have_inferiors ())
293     unpush_target (ops);
294 }
295
296 /* Kill the inferior.  */
297
298 static void
299 inf_ptrace_kill (struct target_ops *ops)
300 {
301   pid_t pid = ptid_get_pid (inferior_ptid);
302   int status;
303
304   if (pid == 0)
305     return;
306
307   ptrace (PT_KILL, pid, (PTRACE_TYPE_ARG3)0, 0);
308   waitpid (pid, &status, 0);
309
310   target_mourn_inferior ();
311 }
312
313 /* Stop the inferior.  */
314
315 static void
316 inf_ptrace_stop (ptid_t ptid)
317 {
318   /* Send a SIGINT to the process group.  This acts just like the user
319      typed a ^C on the controlling terminal.  Note that using a
320      negative process number in kill() is a System V-ism.  The proper
321      BSD interface is killpg().  However, all modern BSDs support the
322      System V interface too.  */
323   kill (-inferior_process_group (), SIGINT);
324 }
325
326 /* Resume execution of thread PTID, or all threads if PTID is -1.  If
327    STEP is nonzero, single-step it.  If SIGNAL is nonzero, give it
328    that signal.  */
329
330 static void
331 inf_ptrace_resume (struct target_ops *ops,
332                    ptid_t ptid, int step, enum target_signal signal)
333 {
334   pid_t pid = ptid_get_pid (ptid);
335   int request = PT_CONTINUE;
336
337   if (pid == -1)
338     /* Resume all threads.  Traditionally ptrace() only supports
339        single-threaded processes, so simply resume the inferior.  */
340     pid = ptid_get_pid (inferior_ptid);
341
342   if (step)
343     {
344       /* If this system does not support PT_STEP, a higher level
345          function will have called single_step() to transmute the step
346          request into a continue request (by setting breakpoints on
347          all possible successor instructions), so we don't have to
348          worry about that here.  */
349       request = PT_STEP;
350     }
351
352   /* An address of (PTRACE_TYPE_ARG3)1 tells ptrace to continue from
353      where it was.  If GDB wanted it to start some other way, we have
354      already written a new program counter value to the child.  */
355   errno = 0;
356   ptrace (request, pid, (PTRACE_TYPE_ARG3)1, target_signal_to_host (signal));
357   if (errno != 0)
358     perror_with_name (("ptrace"));
359 }
360
361 /* Wait for the child specified by PTID to do something.  Return the
362    process ID of the child, or MINUS_ONE_PTID in case of error; store
363    the status in *OURSTATUS.  */
364
365 static ptid_t
366 inf_ptrace_wait (struct target_ops *ops,
367                  ptid_t ptid, struct target_waitstatus *ourstatus, int options)
368 {
369   pid_t pid;
370   int status, save_errno;
371
372   do
373     {
374       set_sigint_trap ();
375
376       do
377         {
378           pid = waitpid (ptid_get_pid (ptid), &status, 0);
379           save_errno = errno;
380         }
381       while (pid == -1 && errno == EINTR);
382
383       clear_sigint_trap ();
384
385       if (pid == -1)
386         {
387           fprintf_unfiltered (gdb_stderr,
388                               _("Child process unexpectedly missing: %s.\n"),
389                               safe_strerror (save_errno));
390
391           /* Claim it exited with unknown signal.  */
392           ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
393           ourstatus->value.sig = TARGET_SIGNAL_UNKNOWN;
394           return inferior_ptid;
395         }
396
397       /* Ignore terminated detached child processes.  */
398       if (!WIFSTOPPED (status) && pid != ptid_get_pid (inferior_ptid))
399         pid = -1;
400     }
401   while (pid == -1);
402
403 #ifdef PT_GET_PROCESS_STATE
404   if (WIFSTOPPED (status))
405     {
406       ptrace_state_t pe;
407       pid_t fpid;
408
409       if (ptrace (PT_GET_PROCESS_STATE, pid,
410                   (PTRACE_TYPE_ARG3)&pe, sizeof pe) == -1)
411         perror_with_name (("ptrace"));
412
413       switch (pe.pe_report_event)
414         {
415         case PTRACE_FORK:
416           ourstatus->kind = TARGET_WAITKIND_FORKED;
417           ourstatus->value.related_pid = pid_to_ptid (pe.pe_other_pid);
418
419           /* Make sure the other end of the fork is stopped too.  */
420           fpid = waitpid (pe.pe_other_pid, &status, 0);
421           if (fpid == -1)
422             perror_with_name (("waitpid"));
423
424           if (ptrace (PT_GET_PROCESS_STATE, fpid,
425                       (PTRACE_TYPE_ARG3)&pe, sizeof pe) == -1)
426             perror_with_name (("ptrace"));
427
428           gdb_assert (pe.pe_report_event == PTRACE_FORK);
429           gdb_assert (pe.pe_other_pid == pid);
430           if (fpid == ptid_get_pid (inferior_ptid))
431             {
432               ourstatus->value.related_pid = pid_to_ptid (pe.pe_other_pid);
433               return pid_to_ptid (fpid);
434             }
435
436           return pid_to_ptid (pid);
437         }
438     }
439 #endif
440
441   store_waitstatus (ourstatus, status);
442   return pid_to_ptid (pid);
443 }
444
445 /* Attempt a transfer all LEN bytes starting at OFFSET between the
446    inferior's OBJECT:ANNEX space and GDB's READBUF/WRITEBUF buffer.
447    Return the number of bytes actually transferred.  */
448
449 static LONGEST
450 inf_ptrace_xfer_partial (struct target_ops *ops, enum target_object object,
451                          const char *annex, gdb_byte *readbuf,
452                          const gdb_byte *writebuf,
453                          ULONGEST offset, LONGEST len)
454 {
455   pid_t pid = ptid_get_pid (inferior_ptid);
456
457   switch (object)
458     {
459     case TARGET_OBJECT_MEMORY:
460 #ifdef PT_IO
461       /* OpenBSD 3.1, NetBSD 1.6 and FreeBSD 5.0 have a new PT_IO
462          request that promises to be much more efficient in reading
463          and writing data in the traced process's address space.  */
464       {
465         struct ptrace_io_desc piod;
466
467         /* NOTE: We assume that there are no distinct address spaces
468            for instruction and data.  However, on OpenBSD 3.9 and
469            later, PIOD_WRITE_D doesn't allow changing memory that's
470            mapped read-only.  Since most code segments will be
471            read-only, using PIOD_WRITE_D will prevent us from
472            inserting breakpoints, so we use PIOD_WRITE_I instead.  */
473         piod.piod_op = writebuf ? PIOD_WRITE_I : PIOD_READ_D;
474         piod.piod_addr = writebuf ? (void *) writebuf : readbuf;
475         piod.piod_offs = (void *) (long) offset;
476         piod.piod_len = len;
477
478         errno = 0;
479         if (ptrace (PT_IO, pid, (caddr_t)&piod, 0) == 0)
480           /* Return the actual number of bytes read or written.  */
481           return piod.piod_len;
482         /* If the PT_IO request is somehow not supported, fallback on
483            using PT_WRITE_D/PT_READ_D.  Otherwise we will return zero
484            to indicate failure.  */
485         if (errno != EINVAL)
486           return 0;
487       }
488 #endif
489       {
490         union
491         {
492           PTRACE_TYPE_RET word;
493           gdb_byte byte[sizeof (PTRACE_TYPE_RET)];
494         } buffer;
495         ULONGEST rounded_offset;
496         LONGEST partial_len;
497
498         /* Round the start offset down to the next long word
499            boundary.  */
500         rounded_offset = offset & -(ULONGEST) sizeof (PTRACE_TYPE_RET);
501
502         /* Since ptrace will transfer a single word starting at that
503            rounded_offset the partial_len needs to be adjusted down to
504            that (remember this function only does a single transfer).
505            Should the required length be even less, adjust it down
506            again.  */
507         partial_len = (rounded_offset + sizeof (PTRACE_TYPE_RET)) - offset;
508         if (partial_len > len)
509           partial_len = len;
510
511         if (writebuf)
512           {
513             /* If OFFSET:PARTIAL_LEN is smaller than
514                ROUNDED_OFFSET:WORDSIZE then a read/modify write will
515                be needed.  Read in the entire word.  */
516             if (rounded_offset < offset
517                 || (offset + partial_len
518                     < rounded_offset + sizeof (PTRACE_TYPE_RET)))
519               /* Need part of initial word -- fetch it.  */
520               buffer.word = ptrace (PT_READ_I, pid,
521                                     (PTRACE_TYPE_ARG3)(uintptr_t)
522                                     rounded_offset, 0);
523
524             /* Copy data to be written over corresponding part of
525                buffer.  */
526             memcpy (buffer.byte + (offset - rounded_offset),
527                     writebuf, partial_len);
528
529             errno = 0;
530             ptrace (PT_WRITE_D, pid,
531                     (PTRACE_TYPE_ARG3)(uintptr_t)rounded_offset,
532                     buffer.word);
533             if (errno)
534               {
535                 /* Using the appropriate one (I or D) is necessary for
536                    Gould NP1, at least.  */
537                 errno = 0;
538                 ptrace (PT_WRITE_I, pid,
539                         (PTRACE_TYPE_ARG3)(uintptr_t)rounded_offset,
540                         buffer.word);
541                 if (errno)
542                   return 0;
543               }
544           }
545
546         if (readbuf)
547           {
548             errno = 0;
549             buffer.word = ptrace (PT_READ_I, pid,
550                                   (PTRACE_TYPE_ARG3)(uintptr_t)rounded_offset,
551                                   0);
552             if (errno)
553               return 0;
554             /* Copy appropriate bytes out of the buffer.  */
555             memcpy (readbuf, buffer.byte + (offset - rounded_offset),
556                     partial_len);
557           }
558
559         return partial_len;
560       }
561
562     case TARGET_OBJECT_UNWIND_TABLE:
563       return -1;
564
565     case TARGET_OBJECT_AUXV:
566       return -1;
567
568     case TARGET_OBJECT_WCOOKIE:
569       return -1;
570
571     default:
572       return -1;
573     }
574 }
575
576 /* Return non-zero if the thread specified by PTID is alive.  */
577
578 static int
579 inf_ptrace_thread_alive (struct target_ops *ops, ptid_t ptid)
580 {
581   /* ??? Is kill the right way to do this?  */
582   return (kill (ptid_get_pid (ptid), 0) != -1);
583 }
584
585 /* Print status information about what we're accessing.  */
586
587 static void
588 inf_ptrace_files_info (struct target_ops *ignore)
589 {
590   struct inferior *inf = current_inferior ();
591
592   printf_filtered (_("\tUsing the running image of %s %s.\n"),
593                    inf->attach_flag ? "attached" : "child",
594                    target_pid_to_str (inferior_ptid));
595 }
596
597 static char *
598 inf_ptrace_pid_to_str (struct target_ops *ops, ptid_t ptid)
599 {
600   return normal_pid_to_str (ptid);
601 }
602
603 /* Create a prototype ptrace target.  The client can override it with
604    local methods.  */
605
606 struct target_ops *
607 inf_ptrace_target (void)
608 {
609   struct target_ops *t = inf_child_target ();
610
611   t->to_attach = inf_ptrace_attach;
612   t->to_detach = inf_ptrace_detach;
613   t->to_resume = inf_ptrace_resume;
614   t->to_wait = inf_ptrace_wait;
615   t->to_files_info = inf_ptrace_files_info;
616   t->to_kill = inf_ptrace_kill;
617   t->to_create_inferior = inf_ptrace_create_inferior;
618 #ifdef PT_GET_PROCESS_STATE
619   t->to_follow_fork = inf_ptrace_follow_fork;
620   t->to_post_startup_inferior = inf_ptrace_post_startup_inferior;
621   t->to_post_attach = inf_ptrace_post_attach;
622 #endif
623   t->to_mourn_inferior = inf_ptrace_mourn_inferior;
624   t->to_thread_alive = inf_ptrace_thread_alive;
625   t->to_pid_to_str = inf_ptrace_pid_to_str;
626   t->to_stop = inf_ptrace_stop;
627   t->to_xfer_partial = inf_ptrace_xfer_partial;
628
629   return t;
630 }
631 \f
632
633 /* Pointer to a function that returns the offset within the user area
634    where a particular register is stored.  */
635 static CORE_ADDR (*inf_ptrace_register_u_offset)(struct gdbarch *, int, int);
636
637 /* Fetch register REGNUM from the inferior.  */
638
639 static void
640 inf_ptrace_fetch_register (struct regcache *regcache, int regnum)
641 {
642   struct gdbarch *gdbarch = get_regcache_arch (regcache);
643   CORE_ADDR addr;
644   size_t size;
645   PTRACE_TYPE_RET *buf;
646   int pid, i;
647
648   /* This isn't really an address, but ptrace thinks of it as one.  */
649   addr = inf_ptrace_register_u_offset (gdbarch, regnum, 0);
650   if (addr == (CORE_ADDR)-1
651       || gdbarch_cannot_fetch_register (gdbarch, regnum))
652     {
653       regcache_raw_supply (regcache, regnum, NULL);
654       return;
655     }
656
657   /* Cater for systems like GNU/Linux, that implement threads as
658      separate processes.  */
659   pid = ptid_get_lwp (inferior_ptid);
660   if (pid == 0)
661     pid = ptid_get_pid (inferior_ptid);
662
663   size = register_size (gdbarch, regnum);
664   gdb_assert ((size % sizeof (PTRACE_TYPE_RET)) == 0);
665   buf = alloca (size);
666
667   /* Read the register contents from the inferior a chunk at a time.  */
668   for (i = 0; i < size / sizeof (PTRACE_TYPE_RET); i++)
669     {
670       errno = 0;
671       buf[i] = ptrace (PT_READ_U, pid, (PTRACE_TYPE_ARG3)(uintptr_t)addr, 0);
672       if (errno != 0)
673         error (_("Couldn't read register %s (#%d): %s."),
674                gdbarch_register_name (gdbarch, regnum),
675                regnum, safe_strerror (errno));
676
677       addr += sizeof (PTRACE_TYPE_RET);
678     }
679   regcache_raw_supply (regcache, regnum, buf);
680 }
681
682 /* Fetch register REGNUM from the inferior.  If REGNUM is -1, do this
683    for all registers.  */
684
685 static void
686 inf_ptrace_fetch_registers (struct target_ops *ops,
687                             struct regcache *regcache, int regnum)
688 {
689   if (regnum == -1)
690     for (regnum = 0;
691          regnum < gdbarch_num_regs (get_regcache_arch (regcache));
692          regnum++)
693       inf_ptrace_fetch_register (regcache, regnum);
694   else
695     inf_ptrace_fetch_register (regcache, regnum);
696 }
697
698 /* Store register REGNUM into the inferior.  */
699
700 static void
701 inf_ptrace_store_register (const struct regcache *regcache, int regnum)
702 {
703   struct gdbarch *gdbarch = get_regcache_arch (regcache);
704   CORE_ADDR addr;
705   size_t size;
706   PTRACE_TYPE_RET *buf;
707   int pid, i;
708
709   /* This isn't really an address, but ptrace thinks of it as one.  */
710   addr = inf_ptrace_register_u_offset (gdbarch, regnum, 1);
711   if (addr == (CORE_ADDR)-1 
712       || gdbarch_cannot_store_register (gdbarch, regnum))
713     return;
714
715   /* Cater for systems like GNU/Linux, that implement threads as
716      separate processes.  */
717   pid = ptid_get_lwp (inferior_ptid);
718   if (pid == 0)
719     pid = ptid_get_pid (inferior_ptid);
720
721   size = register_size (gdbarch, regnum);
722   gdb_assert ((size % sizeof (PTRACE_TYPE_RET)) == 0);
723   buf = alloca (size);
724
725   /* Write the register contents into the inferior a chunk at a time.  */
726   regcache_raw_collect (regcache, regnum, buf);
727   for (i = 0; i < size / sizeof (PTRACE_TYPE_RET); i++)
728     {
729       errno = 0;
730       ptrace (PT_WRITE_U, pid, (PTRACE_TYPE_ARG3)(uintptr_t)addr, buf[i]);
731       if (errno != 0)
732         error (_("Couldn't write register %s (#%d): %s."),
733                gdbarch_register_name (gdbarch, regnum),
734                regnum, safe_strerror (errno));
735
736       addr += sizeof (PTRACE_TYPE_RET);
737     }
738 }
739
740 /* Store register REGNUM back into the inferior.  If REGNUM is -1, do
741    this for all registers.  */
742
743 static void
744 inf_ptrace_store_registers (struct target_ops *ops,
745                             struct regcache *regcache, int regnum)
746 {
747   if (regnum == -1)
748     for (regnum = 0;
749          regnum < gdbarch_num_regs (get_regcache_arch (regcache));
750          regnum++)
751       inf_ptrace_store_register (regcache, regnum);
752   else
753     inf_ptrace_store_register (regcache, regnum);
754 }
755
756 /* Create a "traditional" ptrace target.  REGISTER_U_OFFSET should be
757    a function returning the offset within the user area where a
758    particular register is stored.  */
759
760 struct target_ops *
761 inf_ptrace_trad_target (CORE_ADDR (*register_u_offset)
762                                         (struct gdbarch *, int, int))
763 {
764   struct target_ops *t = inf_ptrace_target();
765
766   gdb_assert (register_u_offset);
767   inf_ptrace_register_u_offset = register_u_offset;
768   t->to_fetch_registers = inf_ptrace_fetch_registers;
769   t->to_store_registers = inf_ptrace_store_registers;
770
771   return t;
772 }