1 /* Native debugging support for Intel x86 running DJGPP.
2 Copyright (C) 1997, 1999, 2000, 2001, 2005, 2006, 2007, 2008, 2009
3 Free Software Foundation, Inc.
4 Written by Robert Hoehne.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 #include "gdbthread.h"
30 #include "floatformat.h"
32 #include "i387-tdep.h"
33 #include "i386-tdep.h"
36 #include "gdb_string.h"
39 #include <stdio.h> /* might be required for __DJGPP_MINOR__ */
44 #include <sys/utsname.h>
49 #include <sys/farptr.h>
50 #include <debug/v2load.h>
51 #include <debug/dbgcom.h>
52 #if __DJGPP_MINOR__ > 2
53 #include <debug/redir.h>
56 #if __DJGPP_MINOR__ < 3
57 /* This code will be provided from DJGPP 2.03 on. Until then I code it
65 unsigned short exponent:15;
66 unsigned short sign:1;
85 static void save_npx (void); /* Save the FPU of the debugged program */
86 static void load_npx (void); /* Restore the FPU of the debugged program */
88 /* ------------------------------------------------------------------------- */
89 /* Store the contents of the NPX in the global variable `npx'. */
95 asm ("inb $0xa0, %%al \n\
114 /* ------------------------------------------------------------------------- */
115 /* Reload the contents of the NPX from the global variable `npx'. */
120 asm ("frstor %0":"=m" (npx));
122 /* ------------------------------------------------------------------------- */
123 /* Stubs for the missing redirection functions. */
130 redir_cmdline_delete (cmdline_t *ptr)
136 redir_cmdline_parse (const char *args, cmdline_t *ptr)
142 redir_to_child (cmdline_t *ptr)
148 redir_to_debugger (cmdline_t *ptr)
154 redir_debug_init (cmdline_t *ptr)
158 #endif /* __DJGPP_MINOR < 3 */
160 typedef enum { wp_insert, wp_remove, wp_count } wp_op;
162 /* This holds the current reference counts for each debug register. */
163 static int dr_ref_count[4];
167 static int prog_has_started = 0;
168 static void go32_open (char *name, int from_tty);
169 static void go32_close (int quitting);
170 static void go32_attach (struct target_ops *ops, char *args, int from_tty);
171 static void go32_detach (struct target_ops *ops, char *args, int from_tty);
172 static void go32_resume (struct target_ops *ops,
173 ptid_t ptid, int step,
174 enum target_signal siggnal);
175 static void go32_fetch_registers (struct target_ops *ops,
176 struct regcache *, int regno);
177 static void store_register (const struct regcache *, int regno);
178 static void go32_store_registers (struct target_ops *ops,
179 struct regcache *, int regno);
180 static void go32_prepare_to_store (struct regcache *);
181 static int go32_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len,
183 struct mem_attrib *attrib,
184 struct target_ops *target);
185 static void go32_files_info (struct target_ops *target);
186 static void go32_stop (ptid_t);
187 static void go32_kill_inferior (struct target_ops *ops);
188 static void go32_create_inferior (struct target_ops *ops, char *exec_file,
189 char *args, char **env, int from_tty);
190 static void go32_mourn_inferior (struct target_ops *ops);
191 static int go32_can_run (void);
193 static struct target_ops go32_ops;
194 static void go32_terminal_init (void);
195 static void go32_terminal_inferior (void);
196 static void go32_terminal_ours (void);
198 #define r_ofs(x) (offsetof(TSS,x))
207 {r_ofs (tss_eax), 4}, /* normal registers, from a_tss */
208 {r_ofs (tss_ecx), 4},
209 {r_ofs (tss_edx), 4},
210 {r_ofs (tss_ebx), 4},
211 {r_ofs (tss_esp), 4},
212 {r_ofs (tss_ebp), 4},
213 {r_ofs (tss_esi), 4},
214 {r_ofs (tss_edi), 4},
215 {r_ofs (tss_eip), 4},
216 {r_ofs (tss_eflags), 4},
223 {0, 10}, /* 8 FP registers, from npx.reg[] */
231 /* The order of the next 7 registers must be consistent
232 with their numbering in config/i386/tm-i386.h, which see. */
233 {0, 2}, /* control word, from npx */
234 {4, 2}, /* status word, from npx */
235 {8, 2}, /* tag word, from npx */
236 {16, 2}, /* last FP exception CS from npx */
237 {12, 4}, /* last FP exception EIP from npx */
238 {24, 2}, /* last FP exception operand selector from npx */
239 {20, 4}, /* last FP exception operand offset from npx */
240 {18, 2} /* last FP opcode from npx */
246 enum target_signal gdb_sig;
250 {0, TARGET_SIGNAL_FPE},
251 {1, TARGET_SIGNAL_TRAP},
252 /* Exception 2 is triggered by the NMI. DJGPP handles it as SIGILL,
253 but I think SIGBUS is better, since the NMI is usually activated
254 as a result of a memory parity check failure. */
255 {2, TARGET_SIGNAL_BUS},
256 {3, TARGET_SIGNAL_TRAP},
257 {4, TARGET_SIGNAL_FPE},
258 {5, TARGET_SIGNAL_SEGV},
259 {6, TARGET_SIGNAL_ILL},
260 {7, TARGET_SIGNAL_EMT}, /* no-coprocessor exception */
261 {8, TARGET_SIGNAL_SEGV},
262 {9, TARGET_SIGNAL_SEGV},
263 {10, TARGET_SIGNAL_BUS},
264 {11, TARGET_SIGNAL_SEGV},
265 {12, TARGET_SIGNAL_SEGV},
266 {13, TARGET_SIGNAL_SEGV},
267 {14, TARGET_SIGNAL_SEGV},
268 {16, TARGET_SIGNAL_FPE},
269 {17, TARGET_SIGNAL_BUS},
270 {31, TARGET_SIGNAL_ILL},
271 {0x1b, TARGET_SIGNAL_INT},
272 {0x75, TARGET_SIGNAL_FPE},
273 {0x78, TARGET_SIGNAL_ALRM},
274 {0x79, TARGET_SIGNAL_INT},
275 {0x7a, TARGET_SIGNAL_QUIT},
276 {-1, TARGET_SIGNAL_LAST}
280 enum target_signal gdb_sig;
283 {TARGET_SIGNAL_0, -1},
284 {TARGET_SIGNAL_ILL, 6}, /* Invalid Opcode */
285 {TARGET_SIGNAL_EMT, 7}, /* triggers SIGNOFP */
286 {TARGET_SIGNAL_SEGV, 13}, /* GPF */
287 {TARGET_SIGNAL_BUS, 17}, /* Alignment Check */
288 /* The rest are fake exceptions, see dpmiexcp.c in djlsr*.zip for
290 {TARGET_SIGNAL_TERM, 0x1b}, /* triggers Ctrl-Break type of SIGINT */
291 {TARGET_SIGNAL_FPE, 0x75},
292 {TARGET_SIGNAL_INT, 0x79},
293 {TARGET_SIGNAL_QUIT, 0x7a},
294 {TARGET_SIGNAL_ALRM, 0x78}, /* triggers SIGTIMR */
295 {TARGET_SIGNAL_PROF, 0x78},
296 {TARGET_SIGNAL_LAST, -1}
300 go32_open (char *name, int from_tty)
302 printf_unfiltered ("Done. Use the \"run\" command to run the program.\n");
306 go32_close (int quitting)
311 go32_attach (struct target_ops *ops, char *args, int from_tty)
314 You cannot attach to a running program on this platform.\n\
315 Use the `run' command to run DJGPP programs."));
319 go32_detach (struct target_ops *ops, char *args, int from_tty)
323 static int resume_is_step;
324 static int resume_signal = -1;
327 go32_resume (struct target_ops *ops,
328 ptid_t ptid, int step, enum target_signal siggnal)
332 resume_is_step = step;
334 if (siggnal != TARGET_SIGNAL_0 && siggnal != TARGET_SIGNAL_TRAP)
336 for (i = 0, resume_signal = -1;
337 excepn_map[i].gdb_sig != TARGET_SIGNAL_LAST; i++)
338 if (excepn_map[i].gdb_sig == siggnal)
340 resume_signal = excepn_map[i].djgpp_excepno;
343 if (resume_signal == -1)
344 printf_unfiltered ("Cannot deliver signal %s on this platform.\n",
345 target_signal_to_name (siggnal));
349 static char child_cwd[FILENAME_MAX];
352 go32_wait (struct target_ops *ops,
353 ptid_t ptid, struct target_waitstatus *status)
356 unsigned char saved_opcode;
357 unsigned long INT3_addr = 0;
358 int stepping_over_INT = 0;
360 a_tss.tss_eflags &= 0xfeff; /* reset the single-step flag (TF) */
363 /* If the next instruction is INT xx or INTO, we need to handle
364 them specially. Intel manuals say that these instructions
365 reset the single-step flag (a.k.a. TF). However, it seems
366 that, at least in the DPMI environment, and at least when
367 stepping over the DPMI interrupt 31h, the problem is having
368 TF set at all when INT 31h is executed: the debuggee either
369 crashes (and takes the system with it) or is killed by a
372 So we need to emulate single-step mode: we put an INT3 opcode
373 right after the INT xx instruction, let the debuggee run
374 until it hits INT3 and stops, then restore the original
375 instruction which we overwrote with the INT3 opcode, and back
376 up the debuggee's EIP to that instruction. */
377 read_child (a_tss.tss_eip, &saved_opcode, 1);
378 if (saved_opcode == 0xCD || saved_opcode == 0xCE)
380 unsigned char INT3_opcode = 0xCC;
383 = saved_opcode == 0xCD ? a_tss.tss_eip + 2 : a_tss.tss_eip + 1;
384 stepping_over_INT = 1;
385 read_child (INT3_addr, &saved_opcode, 1);
386 write_child (INT3_addr, &INT3_opcode, 1);
389 a_tss.tss_eflags |= 0x0100; /* normal instruction: set TF */
392 /* The special value FFFFh in tss_trap indicates to run_child that
393 tss_irqn holds a signal to be delivered to the debuggee. */
394 if (resume_signal <= -1)
397 a_tss.tss_irqn = 0xff;
401 a_tss.tss_trap = 0xffff; /* run_child looks for this */
402 a_tss.tss_irqn = resume_signal;
405 /* The child might change working directory behind our back. The
406 GDB users won't like the side effects of that when they work with
407 relative file names, and GDB might be confused by its current
408 directory not being in sync with the truth. So we always make a
409 point of changing back to where GDB thinks is its cwd, when we
410 return control to the debugger, but restore child's cwd before we
412 /* Initialize child_cwd, before the first call to run_child and not
413 in the initialization, so the child get also the changed directory
414 set with the gdb-command "cd ..." */
416 /* Initialize child's cwd with the current one. */
417 getcwd (child_cwd, sizeof (child_cwd));
421 #if __DJGPP_MINOR__ < 3
425 #if __DJGPP_MINOR__ < 3
429 /* Did we step over an INT xx instruction? */
430 if (stepping_over_INT && a_tss.tss_eip == INT3_addr + 1)
432 /* Restore the original opcode. */
433 a_tss.tss_eip--; /* EIP points *after* the INT3 instruction */
434 write_child (a_tss.tss_eip, &saved_opcode, 1);
435 /* Simulate a TRAP exception. */
437 a_tss.tss_eflags |= 0x0100;
440 getcwd (child_cwd, sizeof (child_cwd)); /* in case it has changed */
441 chdir (current_directory);
443 if (a_tss.tss_irqn == 0x21)
445 status->kind = TARGET_WAITKIND_EXITED;
446 status->value.integer = a_tss.tss_eax & 0xff;
450 status->value.sig = TARGET_SIGNAL_UNKNOWN;
451 status->kind = TARGET_WAITKIND_STOPPED;
452 for (i = 0; sig_map[i].go32_sig != -1; i++)
454 if (a_tss.tss_irqn == sig_map[i].go32_sig)
456 #if __DJGPP_MINOR__ < 3
457 if ((status->value.sig = sig_map[i].gdb_sig) !=
459 status->kind = TARGET_WAITKIND_SIGNALLED;
461 status->value.sig = sig_map[i].gdb_sig;
467 return pid_to_ptid (SOME_PID);
471 fetch_register (struct regcache *regcache, int regno)
473 struct gdbarch *gdbarch = get_regcache_arch (regcache);
474 if (regno < gdbarch_fp0_regnum (gdbarch))
475 regcache_raw_supply (regcache, regno,
476 (char *) &a_tss + regno_mapping[regno].tss_ofs);
477 else if (i386_fp_regnum_p (gdbarch, regno) || i386_fpc_regnum_p (gdbarch, regno))
478 i387_supply_fsave (regcache, regno, &npx);
480 internal_error (__FILE__, __LINE__,
481 _("Invalid register no. %d in fetch_register."), regno);
485 go32_fetch_registers (struct target_ops *ops,
486 struct regcache *regcache, int regno)
489 fetch_register (regcache, regno);
493 regno < gdbarch_fp0_regnum (get_regcache_arch (regcache));
495 fetch_register (regcache, regno);
496 i387_supply_fsave (regcache, -1, &npx);
501 store_register (const struct regcache *regcache, int regno)
503 struct gdbarch *gdbarch = get_regcache_arch (regcache);
504 if (regno < gdbarch_fp0_regnum (gdbarch))
505 regcache_raw_collect (regcache, regno,
506 (char *) &a_tss + regno_mapping[regno].tss_ofs);
507 else if (i386_fp_regnum_p (gdbarch, regno) || i386_fpc_regnum_p (gdbarch, regno))
508 i387_collect_fsave (regcache, regno, &npx);
510 internal_error (__FILE__, __LINE__,
511 _("Invalid register no. %d in store_register."), regno);
515 go32_store_registers (struct target_ops *ops,
516 struct regcache *regcache, int regno)
521 store_register (regcache, regno);
524 for (r = 0; r < gdbarch_fp0_regnum (get_regcache_arch (regcache)); r++)
525 store_register (regcache, r);
526 i387_collect_fsave (regcache, -1, &npx);
531 go32_prepare_to_store (struct regcache *regcache)
536 go32_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write,
537 struct mem_attrib *attrib, struct target_ops *target)
541 if (write_child (memaddr, myaddr, len))
552 if (read_child (memaddr, myaddr, len))
563 static cmdline_t child_cmd; /* parsed child's command line kept here */
566 go32_files_info (struct target_ops *target)
568 printf_unfiltered ("You are running a DJGPP V2 program.\n");
572 go32_stop (ptid_t ptid)
576 ptid = inferior_ptid;
577 inferior_ptid = null_ptid;
578 delete_thread_silent (ptid);
579 prog_has_started = 0;
583 go32_kill_inferior (struct target_ops *ops)
585 redir_cmdline_delete (&child_cmd);
588 if (!ptid_equal (inferior_ptid, null_ptid))
589 delete_thread_silent (inferior_ptid);
590 unpush_target (&go32_ops);
594 go32_create_inferior (struct target_ops *ops, char *exec_file,
595 char *args, char **env, int from_tty)
597 extern char **environ;
600 char **env_save = environ;
603 /* If no exec file handed to us, get it from the exec-file command -- with
604 a good, common error message if none is specified. */
606 exec_file = get_exec_file (1);
608 if (prog_has_started)
610 go32_stop (inferior_ptid);
611 go32_kill_inferior (ops);
616 /* Initialize child's cwd as empty to be initialized when starting
620 /* Init command line storage. */
621 if (redir_debug_init (&child_cmd) == -1)
622 internal_error (__FILE__, __LINE__,
623 _("Cannot allocate redirection storage: not enough memory.\n"));
625 /* Parse the command line and create redirections. */
626 if (strpbrk (args, "<>"))
628 if (redir_cmdline_parse (args, &child_cmd) == 0)
629 args = child_cmd.command;
631 error (_("Syntax error in command line."));
634 child_cmd.command = xstrdup (args);
636 cmdlen = strlen (args);
637 /* v2loadimage passes command lines via DOS memory, so it cannot
638 possibly handle commands longer than 1MB. */
639 if (cmdlen > 1024*1024)
640 error (_("Command line too long."));
642 cmdline = xmalloc (cmdlen + 4);
643 strcpy (cmdline + 1, args);
644 /* If the command-line length fits into DOS 126-char limits, use the
645 DOS command tail format; otherwise, tell v2loadimage to pass it
646 through a buffer in conventional memory. */
649 cmdline[0] = strlen (args);
650 cmdline[cmdlen + 1] = 13;
653 cmdline[0] = 0xff; /* signal v2loadimage it's a long command */
657 if (v2loadimage (exec_file, cmdline, start_state))
660 printf_unfiltered ("Load failed for image %s\n", exec_file);
666 edi_init (start_state);
667 #if __DJGPP_MINOR__ < 3
671 inferior_ptid = pid_to_ptid (SOME_PID);
672 add_inferior_silent (SOME_PID);
674 push_target (&go32_ops);
676 add_thread_silent (inferior_ptid);
678 clear_proceed_status ();
679 insert_breakpoints ();
680 prog_has_started = 1;
684 go32_mourn_inferior (struct target_ops *ops)
686 /* We need to make sure all the breakpoint enable bits in the DR7
687 register are reset when the inferior exits. Otherwise, if they
688 rerun the inferior, the uncleared bits may cause random SIGTRAPs,
689 failure to set more watchpoints, and other calamities. It would
690 be nice if GDB itself would take care to remove all breakpoints
691 at all times, but it doesn't, probably under an assumption that
692 the OS cleans up when the debuggee exits. */
693 i386_cleanup_dregs ();
694 go32_kill_inferior (ops);
695 generic_mourn_inferior ();
704 /* Hardware watchpoint support. */
706 #define D_REGS edi.dr
707 #define CONTROL D_REGS[7]
708 #define STATUS D_REGS[6]
710 /* Pass the address ADDR to the inferior in the I'th debug register.
711 Here we just store the address in D_REGS, the watchpoint will be
712 actually set up when go32_wait runs the debuggee. */
714 go32_set_dr (int i, CORE_ADDR addr)
717 internal_error (__FILE__, __LINE__,
718 _("Invalid register %d in go32_set_dr.\n"), i);
722 /* Pass the value VAL to the inferior in the DR7 debug control
723 register. Here we just store the address in D_REGS, the watchpoint
724 will be actually set up when go32_wait runs the debuggee. */
726 go32_set_dr7 (unsigned val)
731 /* Get the value of the DR6 debug status register from the inferior.
732 Here we just return the value stored in D_REGS, as we've got it
733 from the last go32_wait call. */
740 /* Put the device open on handle FD into either raw or cooked
741 mode, return 1 if it was in raw mode, zero otherwise. */
744 device_mode (int fd, int raw_p)
746 int oldmode, newmode;
751 __dpmi_int (0x21, ®s);
752 if (regs.x.flags & 1)
754 newmode = oldmode = regs.x.dx;
761 if (oldmode & 0x80) /* Only for character dev */
765 regs.x.dx = newmode & 0xff; /* Force upper byte zero, else it fails */
766 __dpmi_int (0x21, ®s);
767 if (regs.x.flags & 1)
770 return (oldmode & 0x20) == 0x20;
774 static int inf_mode_valid = 0;
775 static int inf_terminal_mode;
777 /* This semaphore is needed because, amazingly enough, GDB calls
778 target.to_terminal_ours more than once after the inferior stops.
779 But we need the information from the first call only, since the
780 second call will always see GDB's own cooked terminal. */
781 static int terminal_is_ours = 1;
784 go32_terminal_init (void)
786 inf_mode_valid = 0; /* reinitialize, in case they are restarting child */
787 terminal_is_ours = 1;
791 go32_terminal_info (char *args, int from_tty)
793 printf_unfiltered ("Inferior's terminal is in %s mode.\n",
795 ? "default" : inf_terminal_mode ? "raw" : "cooked");
797 #if __DJGPP_MINOR__ > 2
798 if (child_cmd.redirection)
802 for (i = 0; i < DBG_HANDLES; i++)
804 if (child_cmd.redirection[i]->file_name)
805 printf_unfiltered ("\tFile handle %d is redirected to `%s'.\n",
806 i, child_cmd.redirection[i]->file_name);
807 else if (_get_dev_info (child_cmd.redirection[i]->inf_handle) == -1)
809 ("\tFile handle %d appears to be closed by inferior.\n", i);
810 /* Mask off the raw/cooked bit when comparing device info words. */
811 else if ((_get_dev_info (child_cmd.redirection[i]->inf_handle) & 0xdf)
812 != (_get_dev_info (i) & 0xdf))
814 ("\tFile handle %d appears to be redirected by inferior.\n", i);
821 go32_terminal_inferior (void)
823 /* Redirect standard handles as child wants them. */
825 if (redir_to_child (&child_cmd) == -1)
827 redir_to_debugger (&child_cmd);
828 error (_("Cannot redirect standard handles for program: %s."),
829 safe_strerror (errno));
831 /* set the console device of the inferior to whatever mode
832 (raw or cooked) we found it last time */
833 if (terminal_is_ours)
836 device_mode (0, inf_terminal_mode);
837 terminal_is_ours = 0;
842 go32_terminal_ours (void)
844 /* Switch to cooked mode on the gdb terminal and save the inferior
845 terminal mode to be restored when it is resumed */
846 if (!terminal_is_ours)
848 inf_terminal_mode = device_mode (0, 0);
849 if (inf_terminal_mode != -1)
852 /* If device_mode returned -1, we don't know what happens with
853 handle 0 anymore, so make the info invalid. */
855 terminal_is_ours = 1;
857 /* Restore debugger's standard handles. */
859 if (redir_to_debugger (&child_cmd) == -1)
861 redir_to_child (&child_cmd);
862 error (_("Cannot redirect standard handles for debugger: %s."),
863 safe_strerror (errno));
869 go32_thread_alive (struct target_ops *ops, ptid_t ptid)
875 go32_pid_to_str (struct target_ops *ops, ptid_t ptid)
878 xsnprintf (buf, sizeof buf, "Thread <main>");
885 go32_ops.to_shortname = "djgpp";
886 go32_ops.to_longname = "djgpp target process";
888 "Program loaded by djgpp, when gdb is used as an external debugger";
889 go32_ops.to_open = go32_open;
890 go32_ops.to_close = go32_close;
891 go32_ops.to_attach = go32_attach;
892 go32_ops.to_detach = go32_detach;
893 go32_ops.to_resume = go32_resume;
894 go32_ops.to_wait = go32_wait;
895 go32_ops.to_fetch_registers = go32_fetch_registers;
896 go32_ops.to_store_registers = go32_store_registers;
897 go32_ops.to_prepare_to_store = go32_prepare_to_store;
898 go32_ops.deprecated_xfer_memory = go32_xfer_memory;
899 go32_ops.to_files_info = go32_files_info;
900 go32_ops.to_insert_breakpoint = memory_insert_breakpoint;
901 go32_ops.to_remove_breakpoint = memory_remove_breakpoint;
902 go32_ops.to_terminal_init = go32_terminal_init;
903 go32_ops.to_terminal_inferior = go32_terminal_inferior;
904 go32_ops.to_terminal_ours_for_output = go32_terminal_ours;
905 go32_ops.to_terminal_ours = go32_terminal_ours;
906 go32_ops.to_terminal_info = go32_terminal_info;
907 go32_ops.to_kill = go32_kill_inferior;
908 go32_ops.to_create_inferior = go32_create_inferior;
909 go32_ops.to_mourn_inferior = go32_mourn_inferior;
910 go32_ops.to_can_run = go32_can_run;
911 go32_ops.to_stop = go32_stop;
912 go32_ops.to_thread_alive = go32_thread_alive;
913 go32_ops.to_pid_to_str = go32_pid_to_str;
914 go32_ops.to_stratum = process_stratum;
915 go32_ops.to_has_all_memory = 1;
916 go32_ops.to_has_memory = 1;
917 go32_ops.to_has_stack = 1;
918 go32_ops.to_has_registers = 1;
919 go32_ops.to_has_execution = 1;
921 i386_use_watchpoints (&go32_ops);
923 go32_ops.to_magic = OPS_MAGIC;
925 /* Initialize child's cwd as empty to be initialized when starting
929 /* Initialize child's command line storage. */
930 if (redir_debug_init (&child_cmd) == -1)
931 internal_error (__FILE__, __LINE__,
932 _("Cannot allocate redirection storage: not enough memory.\n"));
934 /* We are always processing GCC-compiled programs. */
935 processing_gcc_compilation = 2;
937 /* Override the default name of the GDB init file. */
938 strcpy (gdbinit, "gdb.ini");
941 unsigned short windows_major, windows_minor;
943 /* Compute the version Windows reports via Int 2Fh/AX=1600h. */
945 go32_get_windows_version(void)
950 __dpmi_int(0x2f, &r);
951 if (r.h.al > 2 && r.h.al != 0x80 && r.h.al != 0xff
952 && (r.h.al > 3 || r.h.ah > 0))
954 windows_major = r.h.al;
955 windows_minor = r.h.ah;
958 windows_major = 0xff; /* meaning no Windows */
961 /* A subroutine of go32_sysinfo to display memory info. */
963 print_mem (unsigned long datum, const char *header, int in_pages_p)
965 if (datum != 0xffffffffUL)
969 puts_filtered (header);
972 printf_filtered ("%lu KB", datum >> 10);
973 if (datum > 1024 * 1024)
974 printf_filtered (" (%lu MB)", datum >> 20);
977 printf_filtered ("%lu Bytes", datum);
978 puts_filtered ("\n");
982 /* Display assorted information about the underlying OS. */
984 go32_sysinfo (char *arg, int from_tty)
987 char cpuid_vendor[13];
988 unsigned cpuid_max = 0, cpuid_eax, cpuid_ebx, cpuid_ecx, cpuid_edx;
989 unsigned true_dos_version = _get_dos_version (1);
990 unsigned advertized_dos_version = ((unsigned int)_osmajor << 8) | _osminor;
992 char dpmi_vendor_info[129];
993 int dpmi_vendor_available =
994 __dpmi_get_capabilities (&dpmi_flags, dpmi_vendor_info);
995 __dpmi_version_ret dpmi_version_data;
997 __dpmi_free_mem_info mem_info;
1000 cpuid_vendor[0] = '\0';
1002 strcpy (u.machine, "Unknown x86");
1003 else if (u.machine[0] == 'i' && u.machine[1] > 4)
1005 /* CPUID with EAX = 0 returns the Vendor ID. */
1006 __asm__ __volatile__ ("xorl %%ebx, %%ebx;"
1007 "xorl %%ecx, %%ecx;"
1008 "xorl %%edx, %%edx;"
1015 : "=m" (cpuid_vendor[0]),
1016 "=m" (cpuid_vendor[4]),
1017 "=m" (cpuid_vendor[8]),
1020 : "%eax", "%ebx", "%ecx", "%edx");
1021 cpuid_vendor[12] = '\0';
1024 printf_filtered ("CPU Type.......................%s", u.machine);
1025 if (cpuid_vendor[0])
1026 printf_filtered (" (%s)", cpuid_vendor);
1027 puts_filtered ("\n");
1029 /* CPUID with EAX = 1 returns processor signature and features. */
1032 static char *brand_name[] = {
1040 char cpu_string[80];
1043 int intel_p = strcmp (cpuid_vendor, "GenuineIntel") == 0;
1044 int amd_p = strcmp (cpuid_vendor, "AuthenticAMD") == 0;
1045 unsigned cpu_family, cpu_model;
1047 __asm__ __volatile__ ("movl $1, %%eax;"
1054 brand_idx = cpuid_ebx & 0xff;
1055 cpu_family = (cpuid_eax >> 8) & 0xf;
1056 cpu_model = (cpuid_eax >> 4) & 0xf;
1057 cpu_brand[0] = '\0';
1061 && brand_idx < sizeof(brand_name)/sizeof(brand_name[0])
1062 && *brand_name[brand_idx])
1063 strcpy (cpu_brand, brand_name[brand_idx]);
1064 else if (cpu_family == 5)
1066 if (((cpuid_eax >> 12) & 3) == 0 && cpu_model == 4)
1067 strcpy (cpu_brand, " MMX");
1068 else if (cpu_model > 1 && ((cpuid_eax >> 12) & 3) == 1)
1069 strcpy (cpu_brand, " OverDrive");
1070 else if (cpu_model > 1 && ((cpuid_eax >> 12) & 3) == 2)
1071 strcpy (cpu_brand, " Dual");
1073 else if (cpu_family == 6 && cpu_model < 8)
1078 strcpy (cpu_brand, " Pro");
1081 strcpy (cpu_brand, " II");
1084 strcpy (cpu_brand, " II Xeon");
1087 strcpy (cpu_brand, " Celeron");
1090 strcpy (cpu_brand, " III");
1100 strcpy (cpu_brand, "486/5x86");
1109 strcpy (cpu_brand, "-K5");
1113 strcpy (cpu_brand, "-K6");
1116 strcpy (cpu_brand, "-K6-2");
1119 strcpy (cpu_brand, "-K6-III");
1129 strcpy (cpu_brand, " Athlon");
1132 strcpy (cpu_brand, " Duron");
1138 sprintf (cpu_string, "%s%s Model %d Stepping %d",
1139 intel_p ? "Pentium" : (amd_p ? "AMD" : "ix86"),
1140 cpu_brand, cpu_model, cpuid_eax & 0xf);
1141 printfi_filtered (31, "%s\n", cpu_string);
1142 if (((cpuid_edx & (6 | (0x0d << 23))) != 0)
1143 || ((cpuid_edx & 1) == 0)
1144 || (amd_p && (cpuid_edx & (3 << 30)) != 0))
1146 puts_filtered ("CPU Features...................");
1147 /* We only list features which might be useful in the DPMI
1149 if ((cpuid_edx & 1) == 0)
1150 puts_filtered ("No FPU "); /* it's unusual to not have an FPU */
1151 if ((cpuid_edx & (1 << 1)) != 0)
1152 puts_filtered ("VME ");
1153 if ((cpuid_edx & (1 << 2)) != 0)
1154 puts_filtered ("DE ");
1155 if ((cpuid_edx & (1 << 4)) != 0)
1156 puts_filtered ("TSC ");
1157 if ((cpuid_edx & (1 << 23)) != 0)
1158 puts_filtered ("MMX ");
1159 if ((cpuid_edx & (1 << 25)) != 0)
1160 puts_filtered ("SSE ");
1161 if ((cpuid_edx & (1 << 26)) != 0)
1162 puts_filtered ("SSE2 ");
1165 if ((cpuid_edx & (1 << 31)) != 0)
1166 puts_filtered ("3DNow! ");
1167 if ((cpuid_edx & (1 << 30)) != 0)
1168 puts_filtered ("3DNow!Ext");
1170 puts_filtered ("\n");
1173 puts_filtered ("\n");
1174 printf_filtered ("DOS Version....................%s %s.%s",
1175 _os_flavor, u.release, u.version);
1176 if (true_dos_version != advertized_dos_version)
1177 printf_filtered (" (disguised as v%d.%d)", _osmajor, _osminor);
1178 puts_filtered ("\n");
1180 go32_get_windows_version ();
1181 if (windows_major != 0xff)
1183 const char *windows_flavor;
1185 printf_filtered ("Windows Version................%d.%02d (Windows ",
1186 windows_major, windows_minor);
1187 switch (windows_major)
1190 windows_flavor = "3.X";
1193 switch (windows_minor)
1196 windows_flavor = "95, 95A, or 95B";
1199 windows_flavor = "95B OSR2.1 or 95C OSR2.5";
1202 windows_flavor = "98 or 98 SE";
1205 windows_flavor = "ME";
1208 windows_flavor = "9X";
1213 windows_flavor = "??";
1216 printf_filtered ("%s)\n", windows_flavor);
1218 else if (true_dos_version == 0x532 && advertized_dos_version == 0x500)
1219 printf_filtered ("Windows Version................Windows NT or Windows 2000\n");
1220 puts_filtered ("\n");
1221 if (dpmi_vendor_available == 0)
1223 /* The DPMI spec says the vendor string should be ASCIIZ, but
1224 I don't trust the vendors to follow that... */
1225 if (!memchr (&dpmi_vendor_info[2], 0, 126))
1226 dpmi_vendor_info[128] = '\0';
1227 printf_filtered ("DPMI Host......................%s v%d.%d (capabilities: %#x)\n",
1228 &dpmi_vendor_info[2],
1229 (unsigned)dpmi_vendor_info[0],
1230 (unsigned)dpmi_vendor_info[1],
1231 ((unsigned)dpmi_flags & 0x7f));
1233 __dpmi_get_version (&dpmi_version_data);
1234 printf_filtered ("DPMI Version...................%d.%02d\n",
1235 dpmi_version_data.major, dpmi_version_data.minor);
1236 printf_filtered ("DPMI Info......................%s-bit DPMI, with%s Virtual Memory support\n",
1237 (dpmi_version_data.flags & 1) ? "32" : "16",
1238 (dpmi_version_data.flags & 4) ? "" : "out");
1239 printfi_filtered (31, "Interrupts reflected to %s mode\n",
1240 (dpmi_version_data.flags & 2) ? "V86" : "Real");
1241 printfi_filtered (31, "Processor type: i%d86\n",
1242 dpmi_version_data.cpu);
1243 printfi_filtered (31, "PIC base interrupt: Master: %#x Slave: %#x\n",
1244 dpmi_version_data.master_pic, dpmi_version_data.slave_pic);
1246 /* a_tss is only initialized when the debuggee is first run. */
1247 if (prog_has_started)
1249 __asm__ __volatile__ ("pushfl ; popl %0" : "=g" (eflags));
1250 printf_filtered ("Protection.....................Ring %d (in %s), with%s I/O protection\n",
1251 a_tss.tss_cs & 3, (a_tss.tss_cs & 4) ? "LDT" : "GDT",
1252 (a_tss.tss_cs & 3) > ((eflags >> 12) & 3) ? "" : "out");
1254 puts_filtered ("\n");
1255 __dpmi_get_free_memory_information (&mem_info);
1256 print_mem (mem_info.total_number_of_physical_pages,
1257 "DPMI Total Physical Memory.....", 1);
1258 print_mem (mem_info.total_number_of_free_pages,
1259 "DPMI Free Physical Memory......", 1);
1260 print_mem (mem_info.size_of_paging_file_partition_in_pages,
1261 "DPMI Swap Space................", 1);
1262 print_mem (mem_info.linear_address_space_size_in_pages,
1263 "DPMI Total Linear Address Size.", 1);
1264 print_mem (mem_info.free_linear_address_space_in_pages,
1265 "DPMI Free Linear Address Size..", 1);
1266 print_mem (mem_info.largest_available_free_block_in_bytes,
1267 "DPMI Largest Free Memory Block.", 0);
1271 __dpmi_int (0x21, ®s);
1272 print_mem (regs.x.bx << 4, "Free DOS Memory................", 0);
1274 __dpmi_int (0x21, ®s);
1275 if ((regs.x.flags & 1) == 0)
1277 static const char *dos_hilo[] = {
1278 "Low", "", "", "", "High", "", "", "", "High, then Low"
1280 static const char *dos_fit[] = {
1281 "First", "Best", "Last"
1283 int hilo_idx = (regs.x.ax >> 4) & 0x0f;
1284 int fit_idx = regs.x.ax & 0x0f;
1290 printf_filtered ("DOS Memory Allocation..........%s memory, %s fit\n",
1291 dos_hilo[hilo_idx], dos_fit[fit_idx]);
1293 __dpmi_int (0x21, ®s);
1294 if ((regs.x.flags & 1) != 0)
1296 printfi_filtered (31, "UMBs %sin DOS memory chain\n",
1297 regs.h.al == 0 ? "not " : "");
1302 unsigned short limit0;
1303 unsigned short base0;
1304 unsigned char base1;
1309 unsigned available:1;
1312 unsigned page_granular:1;
1313 unsigned char base2;
1314 } __attribute__ ((packed));
1317 unsigned short offset0;
1318 unsigned short selector;
1319 unsigned param_count:5;
1324 unsigned short offset1;
1325 } __attribute__ ((packed));
1327 /* Read LEN bytes starting at logical address ADDR, and put the result
1328 into DEST. Return 1 if success, zero if not. */
1330 read_memory_region (unsigned long addr, void *dest, size_t len)
1332 unsigned long dos_ds_limit = __dpmi_get_segment_limit (_dos_ds);
1335 /* For the low memory, we can simply use _dos_ds. */
1336 if (addr <= dos_ds_limit - len)
1337 dosmemget (addr, len, dest);
1340 /* For memory above 1MB we need to set up a special segment to
1341 be able to access that memory. */
1342 int sel = __dpmi_allocate_ldt_descriptors (1);
1348 int access_rights = __dpmi_get_descriptor_access_rights (sel);
1349 size_t segment_limit = len - 1;
1351 /* Make sure the crucial bits in the descriptor access
1352 rights are set correctly. Some DPMI providers might barf
1353 if we set the segment limit to something that is not an
1354 integral multiple of 4KB pages if the granularity bit is
1355 not set to byte-granular, even though the DPMI spec says
1356 it's the host's responsibility to set that bit correctly. */
1357 if (len > 1024 * 1024)
1359 access_rights |= 0x8000;
1360 /* Page-granular segments should have the low 12 bits of
1362 segment_limit |= 0xfff;
1365 access_rights &= ~0x8000;
1367 if (__dpmi_set_segment_base_address (sel, addr) != -1
1368 && __dpmi_set_descriptor_access_rights (sel, access_rights) != -1
1369 && __dpmi_set_segment_limit (sel, segment_limit) != -1
1370 /* W2K silently fails to set the segment limit, leaving
1371 it at zero; this test avoids the resulting crash. */
1372 && __dpmi_get_segment_limit (sel) >= segment_limit)
1373 movedata (sel, 0, _my_ds (), (unsigned)dest, len);
1377 __dpmi_free_ldt_descriptor (sel);
1383 /* Get a segment descriptor stored at index IDX in the descriptor
1384 table whose base address is TABLE_BASE. Return the descriptor
1385 type, or -1 if failure. */
1387 get_descriptor (unsigned long table_base, int idx, void *descr)
1389 unsigned long addr = table_base + idx * 8; /* 8 bytes per entry */
1391 if (read_memory_region (addr, descr, 8))
1392 return (int)((struct seg_descr *)descr)->stype;
1397 unsigned short limit __attribute__((packed));
1398 unsigned long base __attribute__((packed));
1401 /* Display a segment descriptor stored at index IDX in a descriptor
1402 table whose type is TYPE and whose base address is BASE_ADDR. If
1403 FORCE is non-zero, display even invalid descriptors. */
1405 display_descriptor (unsigned type, unsigned long base_addr, int idx, int force)
1407 struct seg_descr descr;
1408 struct gate_descr gate;
1410 /* Get the descriptor from the table. */
1411 if (idx == 0 && type == 0)
1412 puts_filtered ("0x000: null descriptor\n");
1413 else if (get_descriptor (base_addr, idx, &descr) != -1)
1415 /* For each type of descriptor table, this has a bit set if the
1416 corresponding type of selectors is valid in that table. */
1417 static unsigned allowed_descriptors[] = {
1418 0xffffdafeL, /* GDT */
1419 0x0000c0e0L, /* IDT */
1420 0xffffdafaL /* LDT */
1423 /* If the program hasn't started yet, assume the debuggee will
1424 have the same CPL as the debugger. */
1425 int cpl = prog_has_started ? (a_tss.tss_cs & 3) : _my_cs () & 3;
1426 unsigned long limit = (descr.limit1 << 16) | descr.limit0;
1429 && (allowed_descriptors[type] & (1 << descr.stype)) != 0)
1431 printf_filtered ("0x%03x: ",
1433 ? idx : (idx * 8) | (type ? (cpl | 4) : 0));
1434 if (descr.page_granular)
1435 limit = (limit << 12) | 0xfff; /* big segment: low 12 bit set */
1436 if (descr.stype == 1 || descr.stype == 2 || descr.stype == 3
1437 || descr.stype == 9 || descr.stype == 11
1438 || (descr.stype >= 16 && descr.stype < 32))
1439 printf_filtered ("base=0x%02x%02x%04x limit=0x%08lx",
1440 descr.base2, descr.base1, descr.base0, limit);
1442 switch (descr.stype)
1446 printf_filtered (" 16-bit TSS (task %sactive)",
1447 descr.stype == 3 ? "" : "in");
1450 puts_filtered (" LDT");
1453 memcpy (&gate, &descr, sizeof gate);
1454 printf_filtered ("selector=0x%04x offs=0x%04x%04x",
1455 gate.selector, gate.offset1, gate.offset0);
1456 printf_filtered (" 16-bit Call Gate (params=%d)",
1460 printf_filtered ("TSS selector=0x%04x", descr.base0);
1461 printfi_filtered (16, "Task Gate");
1465 memcpy (&gate, &descr, sizeof gate);
1466 printf_filtered ("selector=0x%04x offs=0x%04x%04x",
1467 gate.selector, gate.offset1, gate.offset0);
1468 printf_filtered (" 16-bit %s Gate",
1469 descr.stype == 6 ? "Interrupt" : "Trap");
1473 printf_filtered (" 32-bit TSS (task %sactive)",
1474 descr.stype == 3 ? "" : "in");
1477 memcpy (&gate, &descr, sizeof gate);
1478 printf_filtered ("selector=0x%04x offs=0x%04x%04x",
1479 gate.selector, gate.offset1, gate.offset0);
1480 printf_filtered (" 32-bit Call Gate (params=%d)",
1485 memcpy (&gate, &descr, sizeof gate);
1486 printf_filtered ("selector=0x%04x offs=0x%04x%04x",
1487 gate.selector, gate.offset1, gate.offset0);
1488 printf_filtered (" 32-bit %s Gate",
1489 descr.stype == 14 ? "Interrupt" : "Trap");
1491 case 16: /* data segments */
1499 printf_filtered (" %s-bit Data (%s Exp-%s%s)",
1500 descr.bit32 ? "32" : "16",
1501 descr.stype & 2 ? "Read/Write," : "Read-Only, ",
1502 descr.stype & 4 ? "down" : "up",
1503 descr.stype & 1 ? "" : ", N.Acc");
1505 case 24: /* code segments */
1513 printf_filtered (" %s-bit Code (%s, %sConf%s)",
1514 descr.bit32 ? "32" : "16",
1515 descr.stype & 2 ? "Exec/Read" : "Exec-Only",
1516 descr.stype & 4 ? "" : "N.",
1517 descr.stype & 1 ? "" : ", N.Acc");
1520 printf_filtered ("Unknown type 0x%02x", descr.stype);
1523 puts_filtered ("\n");
1527 printf_filtered ("0x%03x: ",
1529 ? idx : (idx * 8) | (type ? (cpl | 4) : 0));
1531 puts_filtered ("Segment not present\n");
1533 printf_filtered ("Segment type 0x%02x is invalid in this table\n",
1538 printf_filtered ("0x%03x: Cannot read this descriptor\n", idx);
1542 go32_sldt (char *arg, int from_tty)
1544 struct dtr_reg gdtr;
1545 unsigned short ldtr = 0;
1547 struct seg_descr ldt_descr;
1548 long ldt_entry = -1L;
1549 int cpl = (prog_has_started ? a_tss.tss_cs : _my_cs ()) & 3;
1553 while (*arg && isspace(*arg))
1558 ldt_entry = parse_and_eval_long (arg);
1560 || (ldt_entry & 4) == 0
1561 || (ldt_entry & 3) != (cpl & 3))
1562 error (_("Invalid LDT entry 0x%03lx."), (unsigned long)ldt_entry);
1566 __asm__ __volatile__ ("sgdt %0" : "=m" (gdtr) : /* no inputs */ );
1567 __asm__ __volatile__ ("sldt %0" : "=m" (ldtr) : /* no inputs */ );
1570 puts_filtered ("There is no LDT.\n");
1571 /* LDT's entry in the GDT must have the type LDT, which is 2. */
1572 else if (get_descriptor (gdtr.base, ldt_idx, &ldt_descr) != 2)
1573 printf_filtered ("LDT is present (at %#x), but unreadable by GDB.\n",
1575 | (ldt_descr.base1 << 16)
1576 | (ldt_descr.base2 << 24));
1581 | (ldt_descr.base1 << 16)
1582 | (ldt_descr.base2 << 24);
1583 unsigned limit = ldt_descr.limit0 | (ldt_descr.limit1 << 16);
1586 if (ldt_descr.page_granular)
1587 /* Page-granular segments must have the low 12 bits of their
1589 limit = (limit << 12) | 0xfff;
1590 /* LDT cannot have more than 8K 8-byte entries, i.e. more than
1595 max_entry = (limit + 1) / 8;
1599 if (ldt_entry > limit)
1600 error (_("Invalid LDT entry %#lx: outside valid limits [0..%#x]"),
1601 (unsigned long)ldt_entry, limit);
1603 display_descriptor (ldt_descr.stype, base, ldt_entry / 8, 1);
1609 for (i = 0; i < max_entry; i++)
1610 display_descriptor (ldt_descr.stype, base, i, 0);
1616 go32_sgdt (char *arg, int from_tty)
1618 struct dtr_reg gdtr;
1619 long gdt_entry = -1L;
1624 while (*arg && isspace(*arg))
1629 gdt_entry = parse_and_eval_long (arg);
1630 if (gdt_entry < 0 || (gdt_entry & 7) != 0)
1631 error (_("Invalid GDT entry 0x%03lx: not an integral multiple of 8."),
1632 (unsigned long)gdt_entry);
1636 __asm__ __volatile__ ("sgdt %0" : "=m" (gdtr) : /* no inputs */ );
1637 max_entry = (gdtr.limit + 1) / 8;
1641 if (gdt_entry > gdtr.limit)
1642 error (_("Invalid GDT entry %#lx: outside valid limits [0..%#x]"),
1643 (unsigned long)gdt_entry, gdtr.limit);
1645 display_descriptor (0, gdtr.base, gdt_entry / 8, 1);
1651 for (i = 0; i < max_entry; i++)
1652 display_descriptor (0, gdtr.base, i, 0);
1657 go32_sidt (char *arg, int from_tty)
1659 struct dtr_reg idtr;
1660 long idt_entry = -1L;
1665 while (*arg && isspace(*arg))
1670 idt_entry = parse_and_eval_long (arg);
1672 error (_("Invalid (negative) IDT entry %ld."), idt_entry);
1676 __asm__ __volatile__ ("sidt %0" : "=m" (idtr) : /* no inputs */ );
1677 max_entry = (idtr.limit + 1) / 8;
1678 if (max_entry > 0x100) /* no more than 256 entries */
1683 if (idt_entry > idtr.limit)
1684 error (_("Invalid IDT entry %#lx: outside valid limits [0..%#x]"),
1685 (unsigned long)idt_entry, idtr.limit);
1687 display_descriptor (1, idtr.base, idt_entry, 1);
1693 for (i = 0; i < max_entry; i++)
1694 display_descriptor (1, idtr.base, i, 0);
1698 /* Cached linear address of the base of the page directory. For
1699 now, available only under CWSDPMI. Code based on ideas and
1700 suggestions from Charles Sandmann <sandmann@clio.rice.edu>. */
1701 static unsigned long pdbr;
1703 static unsigned long
1708 unsigned long taskbase, cr3;
1709 struct dtr_reg gdtr;
1711 if (pdbr > 0 && pdbr <= 0xfffff)
1714 /* Get the linear address of GDT and the Task Register. */
1715 __asm__ __volatile__ ("sgdt %0" : "=m" (gdtr) : /* no inputs */ );
1716 __asm__ __volatile__ ("str %0" : "=m" (taskreg) : /* no inputs */ );
1718 /* Task Register is a segment selector for the TSS of the current
1719 task. Therefore, it can be used as an index into the GDT to get
1720 at the segment descriptor for the TSS. To get the index, reset
1721 the low 3 bits of the selector (which give the CPL). Add 2 to the
1722 offset to point to the 3 low bytes of the base address. */
1723 offset = gdtr.base + (taskreg & 0xfff8) + 2;
1726 /* CWSDPMI's task base is always under the 1MB mark. */
1727 if (offset > 0xfffff)
1730 _farsetsel (_dos_ds);
1731 taskbase = _farnspeekl (offset) & 0xffffffU;
1732 taskbase += _farnspeekl (offset + 2) & 0xff000000U;
1733 if (taskbase > 0xfffff)
1736 /* CR3 (a.k.a. PDBR, the Page Directory Base Register) is stored at
1737 offset 1Ch in the TSS. */
1738 cr3 = _farnspeekl (taskbase + 0x1c) & ~0xfff;
1741 #if 0 /* not fullly supported yet */
1742 /* The Page Directory is in UMBs. In that case, CWSDPMI puts
1743 the first Page Table right below the Page Directory. Thus,
1744 the first Page Table's entry for its own address and the Page
1745 Directory entry for that Page Table will hold the same
1746 physical address. The loop below searches the entire UMB
1747 range of addresses for such an occurence. */
1748 unsigned long addr, pte_idx;
1750 for (addr = 0xb0000, pte_idx = 0xb0;
1752 addr += 0x1000, pte_idx++)
1754 if (((_farnspeekl (addr + 4 * pte_idx) & 0xfffff027) ==
1755 (_farnspeekl (addr + 0x1000) & 0xfffff027))
1756 && ((_farnspeekl (addr + 4 * pte_idx + 4) & 0xfffff000) == cr3))
1758 cr3 = addr + 0x1000;
1771 /* Return the N'th Page Directory entry. */
1772 static unsigned long
1775 unsigned long pde = 0;
1777 if (pdbr && n >= 0 && n < 1024)
1779 pde = _farpeekl (_dos_ds, pdbr + 4*n);
1784 /* Return the N'th entry of the Page Table whose Page Directory entry
1786 static unsigned long
1787 get_pte (unsigned long pde, int n)
1789 unsigned long pte = 0;
1791 /* pde & 0x80 tests the 4MB page bit. We don't support 4MB
1792 page tables, for now. */
1793 if ((pde & 1) && !(pde & 0x80) && n >= 0 && n < 1024)
1795 pde &= ~0xfff; /* clear non-address bits */
1796 pte = _farpeekl (_dos_ds, pde + 4*n);
1801 /* Display a Page Directory or Page Table entry. IS_DIR, if non-zero,
1802 says this is a Page Directory entry. If FORCE is non-zero, display
1803 the entry even if its Present flag is off. OFF is the offset of the
1804 address from the page's base address. */
1806 display_ptable_entry (unsigned long entry, int is_dir, int force, unsigned off)
1808 if ((entry & 1) != 0)
1810 printf_filtered ("Base=0x%05lx000", entry >> 12);
1811 if ((entry & 0x100) && !is_dir)
1812 puts_filtered (" Global");
1813 if ((entry & 0x40) && !is_dir)
1814 puts_filtered (" Dirty");
1815 printf_filtered (" %sAcc.", (entry & 0x20) ? "" : "Not-");
1816 printf_filtered (" %sCached", (entry & 0x10) ? "" : "Not-");
1817 printf_filtered (" Write-%s", (entry & 8) ? "Thru" : "Back");
1818 printf_filtered (" %s", (entry & 4) ? "Usr" : "Sup");
1819 printf_filtered (" Read-%s", (entry & 2) ? "Write" : "Only");
1821 printf_filtered (" +0x%x", off);
1822 puts_filtered ("\n");
1825 printf_filtered ("Page%s not present or not supported; value=0x%lx.\n",
1826 is_dir ? " Table" : "", entry >> 1);
1830 go32_pde (char *arg, int from_tty)
1832 long pde_idx = -1, i;
1836 while (*arg && isspace(*arg))
1841 pde_idx = parse_and_eval_long (arg);
1842 if (pde_idx < 0 || pde_idx >= 1024)
1843 error (_("Entry %ld is outside valid limits [0..1023]."), pde_idx);
1849 puts_filtered ("Access to Page Directories is not supported on this system.\n");
1850 else if (pde_idx >= 0)
1851 display_ptable_entry (get_pde (pde_idx), 1, 1, 0);
1853 for (i = 0; i < 1024; i++)
1854 display_ptable_entry (get_pde (i), 1, 0, 0);
1857 /* A helper function to display entries in a Page Table pointed to by
1858 the N'th entry in the Page Directory. If FORCE is non-zero, say
1859 something even if the Page Table is not accessible. */
1861 display_page_table (long n, int force)
1863 unsigned long pde = get_pde (n);
1869 printf_filtered ("Page Table pointed to by Page Directory entry 0x%lx:\n", n);
1870 for (i = 0; i < 1024; i++)
1871 display_ptable_entry (get_pte (pde, i), 0, 0, 0);
1872 puts_filtered ("\n");
1875 printf_filtered ("Page Table not present; value=0x%lx.\n", pde >> 1);
1879 go32_pte (char *arg, int from_tty)
1881 long pde_idx = -1L, i;
1885 while (*arg && isspace(*arg))
1890 pde_idx = parse_and_eval_long (arg);
1891 if (pde_idx < 0 || pde_idx >= 1024)
1892 error (_("Entry %ld is outside valid limits [0..1023]."), pde_idx);
1898 puts_filtered ("Access to Page Tables is not supported on this system.\n");
1899 else if (pde_idx >= 0)
1900 display_page_table (pde_idx, 1);
1902 for (i = 0; i < 1024; i++)
1903 display_page_table (i, 0);
1907 go32_pte_for_address (char *arg, int from_tty)
1909 CORE_ADDR addr = 0, i;
1913 while (*arg && isspace(*arg))
1917 addr = parse_and_eval_address (arg);
1920 error_no_arg (_("linear address"));
1924 puts_filtered ("Access to Page Tables is not supported on this system.\n");
1927 int pde_idx = (addr >> 22) & 0x3ff;
1928 int pte_idx = (addr >> 12) & 0x3ff;
1929 unsigned offs = addr & 0xfff;
1931 printf_filtered ("Page Table entry for address 0x%llx:\n",
1932 (unsigned long long)addr);
1933 display_ptable_entry (get_pte (get_pde (pde_idx), pte_idx), 0, 1, offs);
1937 static struct cmd_list_element *info_dos_cmdlist = NULL;
1940 go32_info_dos_command (char *args, int from_tty)
1942 help_list (info_dos_cmdlist, "info dos ", class_info, gdb_stdout);
1946 _initialize_go32_nat (void)
1949 add_target (&go32_ops);
1951 add_prefix_cmd ("dos", class_info, go32_info_dos_command, _("\
1952 Print information specific to DJGPP (aka MS-DOS) debugging."),
1953 &info_dos_cmdlist, "info dos ", 0, &infolist);
1955 add_cmd ("sysinfo", class_info, go32_sysinfo, _("\
1956 Display information about the target system, including CPU, OS, DPMI, etc."),
1958 add_cmd ("ldt", class_info, go32_sldt, _("\
1959 Display entries in the LDT (Local Descriptor Table).\n\
1960 Entry number (an expression) as an argument means display only that entry."),
1962 add_cmd ("gdt", class_info, go32_sgdt, _("\
1963 Display entries in the GDT (Global Descriptor Table).\n\
1964 Entry number (an expression) as an argument means display only that entry."),
1966 add_cmd ("idt", class_info, go32_sidt, _("\
1967 Display entries in the IDT (Interrupt Descriptor Table).\n\
1968 Entry number (an expression) as an argument means display only that entry."),
1970 add_cmd ("pde", class_info, go32_pde, _("\
1971 Display entries in the Page Directory.\n\
1972 Entry number (an expression) as an argument means display only that entry."),
1974 add_cmd ("pte", class_info, go32_pte, _("\
1975 Display entries in Page Tables.\n\
1976 Entry number (an expression) as an argument means display only entries\n\
1977 from the Page Table pointed to by the specified Page Directory entry."),
1979 add_cmd ("address-pte", class_info, go32_pte_for_address, _("\
1980 Display a Page Table entry for a linear address.\n\
1981 The address argument must be a linear address, after adding to\n\
1982 it the base address of the appropriate segment.\n\
1983 The base address of variables and functions in the debuggee's data\n\
1984 or code segment is stored in the variable __djgpp_base_address,\n\
1985 so use `__djgpp_base_address + (char *)&var' as the argument.\n\
1986 For other segments, look up their base address in the output of\n\
1987 the `info dos ldt' command."),
2001 tcsetpgrp (int fd, pid_t pgid)
2003 if (isatty (fd) && pgid == SOME_PID)
2005 errno = pgid == SOME_PID ? ENOTTY : ENOSYS;