1 /* Native debugging support for Intel x86 running DJGPP.
2 Copyright 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
3 Written by Robert Hoehne.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
30 #include "floatformat.h"
32 #include "i387-tdep.h"
33 #include "i386-tdep.h"
36 #include "gdb_string.h"
38 #include <stdio.h> /* might be required for __DJGPP_MINOR__ */
43 #include <sys/utsname.h>
48 #include <sys/farptr.h>
49 #include <debug/v2load.h>
50 #include <debug/dbgcom.h>
51 #if __DJGPP_MINOR__ > 2
52 #include <debug/redir.h>
55 #if __DJGPP_MINOR__ < 3
56 /* This code will be provided from DJGPP 2.03 on. Until then I code it
64 unsigned short exponent:15;
65 unsigned short sign:1;
84 static void save_npx (void); /* Save the FPU of the debugged program */
85 static void load_npx (void); /* Restore the FPU of the debugged program */
87 /* ------------------------------------------------------------------------- */
88 /* Store the contents of the NPX in the global variable `npx'. */
94 asm ("inb $0xa0, %%al \n\
113 /* ------------------------------------------------------------------------- */
114 /* Reload the contents of the NPX from the global variable `npx'. */
119 asm ("frstor %0":"=m" (npx));
121 /* ------------------------------------------------------------------------- */
122 /* Stubs for the missing redirection functions. */
129 redir_cmdline_delete (cmdline_t *ptr)
135 redir_cmdline_parse (const char *args, cmdline_t *ptr)
141 redir_to_child (cmdline_t *ptr)
147 redir_to_debugger (cmdline_t *ptr)
153 redir_debug_init (cmdline_t *ptr)
157 #endif /* __DJGPP_MINOR < 3 */
159 typedef enum { wp_insert, wp_remove, wp_count } wp_op;
161 /* This holds the current reference counts for each debug register. */
162 static int dr_ref_count[4];
166 static int prog_has_started = 0;
167 static void go32_open (char *name, int from_tty);
168 static void go32_close (int quitting);
169 static void go32_attach (char *args, int from_tty);
170 static void go32_detach (char *args, int from_tty);
171 static void go32_resume (ptid_t ptid, int step,
172 enum target_signal siggnal);
173 static ptid_t go32_wait (ptid_t ptid,
174 struct target_waitstatus *status);
175 static void go32_fetch_registers (int regno);
176 static void store_register (int regno);
177 static void go32_store_registers (int regno);
178 static void go32_prepare_to_store (void);
179 static int go32_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
181 struct mem_attrib *attrib,
182 struct target_ops *target);
183 static void go32_files_info (struct target_ops *target);
184 static void go32_stop (void);
185 static void go32_kill_inferior (void);
186 static void go32_create_inferior (char *exec_file, char *args, char **env, int from_tty);
187 static void go32_mourn_inferior (void);
188 static int go32_can_run (void);
190 static struct target_ops go32_ops;
191 static void go32_terminal_init (void);
192 static void go32_terminal_inferior (void);
193 static void go32_terminal_ours (void);
195 #define r_ofs(x) (offsetof(TSS,x))
204 {r_ofs (tss_eax), 4}, /* normal registers, from a_tss */
205 {r_ofs (tss_ecx), 4},
206 {r_ofs (tss_edx), 4},
207 {r_ofs (tss_ebx), 4},
208 {r_ofs (tss_esp), 4},
209 {r_ofs (tss_ebp), 4},
210 {r_ofs (tss_esi), 4},
211 {r_ofs (tss_edi), 4},
212 {r_ofs (tss_eip), 4},
213 {r_ofs (tss_eflags), 4},
220 {0, 10}, /* 8 FP registers, from npx.reg[] */
228 /* The order of the next 7 registers must be consistent
229 with their numbering in config/i386/tm-i386.h, which see. */
230 {0, 2}, /* control word, from npx */
231 {4, 2}, /* status word, from npx */
232 {8, 2}, /* tag word, from npx */
233 {16, 2}, /* last FP exception CS from npx */
234 {12, 4}, /* last FP exception EIP from npx */
235 {24, 2}, /* last FP exception operand selector from npx */
236 {20, 4}, /* last FP exception operand offset from npx */
237 {18, 2} /* last FP opcode from npx */
243 enum target_signal gdb_sig;
247 {0, TARGET_SIGNAL_FPE},
248 {1, TARGET_SIGNAL_TRAP},
249 /* Exception 2 is triggered by the NMI. DJGPP handles it as SIGILL,
250 but I think SIGBUS is better, since the NMI is usually activated
251 as a result of a memory parity check failure. */
252 {2, TARGET_SIGNAL_BUS},
253 {3, TARGET_SIGNAL_TRAP},
254 {4, TARGET_SIGNAL_FPE},
255 {5, TARGET_SIGNAL_SEGV},
256 {6, TARGET_SIGNAL_ILL},
257 {7, TARGET_SIGNAL_EMT}, /* no-coprocessor exception */
258 {8, TARGET_SIGNAL_SEGV},
259 {9, TARGET_SIGNAL_SEGV},
260 {10, TARGET_SIGNAL_BUS},
261 {11, TARGET_SIGNAL_SEGV},
262 {12, TARGET_SIGNAL_SEGV},
263 {13, TARGET_SIGNAL_SEGV},
264 {14, TARGET_SIGNAL_SEGV},
265 {16, TARGET_SIGNAL_FPE},
266 {17, TARGET_SIGNAL_BUS},
267 {31, TARGET_SIGNAL_ILL},
268 {0x1b, TARGET_SIGNAL_INT},
269 {0x75, TARGET_SIGNAL_FPE},
270 {0x78, TARGET_SIGNAL_ALRM},
271 {0x79, TARGET_SIGNAL_INT},
272 {0x7a, TARGET_SIGNAL_QUIT},
273 {-1, TARGET_SIGNAL_LAST}
277 enum target_signal gdb_sig;
280 {TARGET_SIGNAL_0, -1},
281 {TARGET_SIGNAL_ILL, 6}, /* Invalid Opcode */
282 {TARGET_SIGNAL_EMT, 7}, /* triggers SIGNOFP */
283 {TARGET_SIGNAL_SEGV, 13}, /* GPF */
284 {TARGET_SIGNAL_BUS, 17}, /* Alignment Check */
285 /* The rest are fake exceptions, see dpmiexcp.c in djlsr*.zip for
287 {TARGET_SIGNAL_TERM, 0x1b}, /* triggers Ctrl-Break type of SIGINT */
288 {TARGET_SIGNAL_FPE, 0x75},
289 {TARGET_SIGNAL_INT, 0x79},
290 {TARGET_SIGNAL_QUIT, 0x7a},
291 {TARGET_SIGNAL_ALRM, 0x78}, /* triggers SIGTIMR */
292 {TARGET_SIGNAL_PROF, 0x78},
293 {TARGET_SIGNAL_LAST, -1}
297 go32_open (char *name, int from_tty)
299 printf_unfiltered ("Done. Use the \"run\" command to run the program.\n");
303 go32_close (int quitting)
308 go32_attach (char *args, int from_tty)
311 You cannot attach to a running program on this platform.\n\
312 Use the `run' command to run DJGPP programs.");
316 go32_detach (char *args, int from_tty)
320 static int resume_is_step;
321 static int resume_signal = -1;
324 go32_resume (ptid_t ptid, int step, enum target_signal siggnal)
328 resume_is_step = step;
330 if (siggnal != TARGET_SIGNAL_0 && siggnal != TARGET_SIGNAL_TRAP)
332 for (i = 0, resume_signal = -1;
333 excepn_map[i].gdb_sig != TARGET_SIGNAL_LAST; i++)
334 if (excepn_map[i].gdb_sig == siggnal)
336 resume_signal = excepn_map[i].djgpp_excepno;
339 if (resume_signal == -1)
340 printf_unfiltered ("Cannot deliver signal %s on this platform.\n",
341 target_signal_to_name (siggnal));
345 static char child_cwd[FILENAME_MAX];
348 go32_wait (ptid_t ptid, struct target_waitstatus *status)
351 unsigned char saved_opcode;
352 unsigned long INT3_addr = 0;
353 int stepping_over_INT = 0;
355 a_tss.tss_eflags &= 0xfeff; /* reset the single-step flag (TF) */
358 /* If the next instruction is INT xx or INTO, we need to handle
359 them specially. Intel manuals say that these instructions
360 reset the single-step flag (a.k.a. TF). However, it seems
361 that, at least in the DPMI environment, and at least when
362 stepping over the DPMI interrupt 31h, the problem is having
363 TF set at all when INT 31h is executed: the debuggee either
364 crashes (and takes the system with it) or is killed by a
367 So we need to emulate single-step mode: we put an INT3 opcode
368 right after the INT xx instruction, let the debuggee run
369 until it hits INT3 and stops, then restore the original
370 instruction which we overwrote with the INT3 opcode, and back
371 up the debuggee's EIP to that instruction. */
372 read_child (a_tss.tss_eip, &saved_opcode, 1);
373 if (saved_opcode == 0xCD || saved_opcode == 0xCE)
375 unsigned char INT3_opcode = 0xCC;
378 = saved_opcode == 0xCD ? a_tss.tss_eip + 2 : a_tss.tss_eip + 1;
379 stepping_over_INT = 1;
380 read_child (INT3_addr, &saved_opcode, 1);
381 write_child (INT3_addr, &INT3_opcode, 1);
384 a_tss.tss_eflags |= 0x0100; /* normal instruction: set TF */
387 /* The special value FFFFh in tss_trap indicates to run_child that
388 tss_irqn holds a signal to be delivered to the debuggee. */
389 if (resume_signal <= -1)
392 a_tss.tss_irqn = 0xff;
396 a_tss.tss_trap = 0xffff; /* run_child looks for this */
397 a_tss.tss_irqn = resume_signal;
400 /* The child might change working directory behind our back. The
401 GDB users won't like the side effects of that when they work with
402 relative file names, and GDB might be confused by its current
403 directory not being in sync with the truth. So we always make a
404 point of changing back to where GDB thinks is its cwd, when we
405 return control to the debugger, but restore child's cwd before we
407 /* Initialize child_cwd, before the first call to run_child and not
408 in the initialization, so the child get also the changed directory
409 set with the gdb-command "cd ..." */
411 /* Initialize child's cwd with the current one. */
412 getcwd (child_cwd, sizeof (child_cwd));
416 #if __DJGPP_MINOR__ < 3
420 #if __DJGPP_MINOR__ < 3
424 /* Did we step over an INT xx instruction? */
425 if (stepping_over_INT && a_tss.tss_eip == INT3_addr + 1)
427 /* Restore the original opcode. */
428 a_tss.tss_eip--; /* EIP points *after* the INT3 instruction */
429 write_child (a_tss.tss_eip, &saved_opcode, 1);
430 /* Simulate a TRAP exception. */
432 a_tss.tss_eflags |= 0x0100;
435 getcwd (child_cwd, sizeof (child_cwd)); /* in case it has changed */
436 chdir (current_directory);
438 if (a_tss.tss_irqn == 0x21)
440 status->kind = TARGET_WAITKIND_EXITED;
441 status->value.integer = a_tss.tss_eax & 0xff;
445 status->value.sig = TARGET_SIGNAL_UNKNOWN;
446 status->kind = TARGET_WAITKIND_STOPPED;
447 for (i = 0; sig_map[i].go32_sig != -1; i++)
449 if (a_tss.tss_irqn == sig_map[i].go32_sig)
451 #if __DJGPP_MINOR__ < 3
452 if ((status->value.sig = sig_map[i].gdb_sig) !=
454 status->kind = TARGET_WAITKIND_SIGNALLED;
456 status->value.sig = sig_map[i].gdb_sig;
462 return pid_to_ptid (SOME_PID);
466 fetch_register (int regno)
468 if (regno < FP0_REGNUM)
469 supply_register (regno, (char *) &a_tss + regno_mapping[regno].tss_ofs);
470 else if (i386_fp_regnum_p (regno) || i386_fpc_regnum_p (regno))
471 i387_supply_fsave (current_regcache, regno, &npx);
473 internal_error (__FILE__, __LINE__,
474 "Invalid register no. %d in fetch_register.", regno);
478 go32_fetch_registers (int regno)
481 fetch_register (regno);
484 for (regno = 0; regno < FP0_REGNUM; regno++)
485 fetch_register (regno);
486 i387_supply_fsave (current_regcache, -1, &npx);
491 store_register (int regno)
493 if (regno < FP0_REGNUM)
494 regcache_collect (regno, (char *) &a_tss + regno_mapping[regno].tss_ofs);
495 else if (i386_fp_regnum_p (regno) || i386_fpc_regnum_p (regno))
496 i387_fill_fsave ((char *) &npx, regno);
498 internal_error (__FILE__, __LINE__,
499 "Invalid register no. %d in store_register.", regno);
503 go32_store_registers (int regno)
508 store_register (regno);
511 for (r = 0; r < FP0_REGNUM; r++)
513 i387_fill_fsave ((char *) &npx, -1);
518 go32_prepare_to_store (void)
523 go32_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
524 struct mem_attrib *attrib, struct target_ops *target)
528 if (write_child (memaddr, myaddr, len))
539 if (read_child (memaddr, myaddr, len))
550 static cmdline_t child_cmd; /* parsed child's command line kept here */
553 go32_files_info (struct target_ops *target)
555 printf_unfiltered ("You are running a DJGPP V2 program.\n");
563 inferior_ptid = null_ptid;
564 prog_has_started = 0;
568 go32_kill_inferior (void)
570 redir_cmdline_delete (&child_cmd);
573 unpush_target (&go32_ops);
577 go32_create_inferior (char *exec_file, char *args, char **env, int from_tty)
579 extern char **environ;
582 char **env_save = environ;
585 /* If no exec file handed to us, get it from the exec-file command -- with
586 a good, common error message if none is specified. */
588 exec_file = get_exec_file (1);
590 if (prog_has_started)
593 go32_kill_inferior ();
598 /* Initialize child's cwd as empty to be initialized when starting
602 /* Init command line storage. */
603 if (redir_debug_init (&child_cmd) == -1)
604 internal_error (__FILE__, __LINE__,
605 "Cannot allocate redirection storage: not enough memory.\n");
607 /* Parse the command line and create redirections. */
608 if (strpbrk (args, "<>"))
610 if (redir_cmdline_parse (args, &child_cmd) == 0)
611 args = child_cmd.command;
613 error ("Syntax error in command line.");
616 child_cmd.command = xstrdup (args);
618 cmdlen = strlen (args);
619 /* v2loadimage passes command lines via DOS memory, so it cannot
620 possibly handle commands longer than 1MB. */
621 if (cmdlen > 1024*1024)
622 error ("Command line too long.");
624 cmdline = xmalloc (cmdlen + 4);
625 strcpy (cmdline + 1, args);
626 /* If the command-line length fits into DOS 126-char limits, use the
627 DOS command tail format; otherwise, tell v2loadimage to pass it
628 through a buffer in conventional memory. */
631 cmdline[0] = strlen (args);
632 cmdline[cmdlen + 1] = 13;
635 cmdline[0] = 0xff; /* signal v2loadimage it's a long command */
639 if (v2loadimage (exec_file, cmdline, start_state))
642 printf_unfiltered ("Load failed for image %s\n", exec_file);
648 edi_init (start_state);
649 #if __DJGPP_MINOR__ < 3
653 inferior_ptid = pid_to_ptid (SOME_PID);
654 push_target (&go32_ops);
655 clear_proceed_status ();
656 insert_breakpoints ();
657 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
658 prog_has_started = 1;
662 go32_mourn_inferior (void)
664 /* We need to make sure all the breakpoint enable bits in the DR7
665 register are reset when the inferior exits. Otherwise, if they
666 rerun the inferior, the uncleared bits may cause random SIGTRAPs,
667 failure to set more watchpoints, and other calamities. It would
668 be nice if GDB itself would take care to remove all breakpoints
669 at all times, but it doesn't, probably under an assumption that
670 the OS cleans up when the debuggee exits. */
671 i386_cleanup_dregs ();
672 go32_kill_inferior ();
673 generic_mourn_inferior ();
682 /* Hardware watchpoint support. */
684 #define D_REGS edi.dr
685 #define CONTROL D_REGS[7]
686 #define STATUS D_REGS[6]
688 /* Pass the address ADDR to the inferior in the I'th debug register.
689 Here we just store the address in D_REGS, the watchpoint will be
690 actually set up when go32_wait runs the debuggee. */
692 go32_set_dr (int i, CORE_ADDR addr)
695 internal_error (__FILE__, __LINE__,
696 "Invalid register %d in go32_set_dr.\n", i);
700 /* Pass the value VAL to the inferior in the DR7 debug control
701 register. Here we just store the address in D_REGS, the watchpoint
702 will be actually set up when go32_wait runs the debuggee. */
704 go32_set_dr7 (unsigned val)
709 /* Get the value of the DR6 debug status register from the inferior.
710 Here we just return the value stored in D_REGS, as we've got it
711 from the last go32_wait call. */
718 /* Put the device open on handle FD into either raw or cooked
719 mode, return 1 if it was in raw mode, zero otherwise. */
722 device_mode (int fd, int raw_p)
724 int oldmode, newmode;
729 __dpmi_int (0x21, ®s);
730 if (regs.x.flags & 1)
732 newmode = oldmode = regs.x.dx;
739 if (oldmode & 0x80) /* Only for character dev */
743 regs.x.dx = newmode & 0xff; /* Force upper byte zero, else it fails */
744 __dpmi_int (0x21, ®s);
745 if (regs.x.flags & 1)
748 return (oldmode & 0x20) == 0x20;
752 static int inf_mode_valid = 0;
753 static int inf_terminal_mode;
755 /* This semaphore is needed because, amazingly enough, GDB calls
756 target.to_terminal_ours more than once after the inferior stops.
757 But we need the information from the first call only, since the
758 second call will always see GDB's own cooked terminal. */
759 static int terminal_is_ours = 1;
762 go32_terminal_init (void)
764 inf_mode_valid = 0; /* reinitialize, in case they are restarting child */
765 terminal_is_ours = 1;
769 go32_terminal_info (char *args, int from_tty)
771 printf_unfiltered ("Inferior's terminal is in %s mode.\n",
773 ? "default" : inf_terminal_mode ? "raw" : "cooked");
775 #if __DJGPP_MINOR__ > 2
776 if (child_cmd.redirection)
780 for (i = 0; i < DBG_HANDLES; i++)
782 if (child_cmd.redirection[i]->file_name)
783 printf_unfiltered ("\tFile handle %d is redirected to `%s'.\n",
784 i, child_cmd.redirection[i]->file_name);
785 else if (_get_dev_info (child_cmd.redirection[i]->inf_handle) == -1)
787 ("\tFile handle %d appears to be closed by inferior.\n", i);
788 /* Mask off the raw/cooked bit when comparing device info words. */
789 else if ((_get_dev_info (child_cmd.redirection[i]->inf_handle) & 0xdf)
790 != (_get_dev_info (i) & 0xdf))
792 ("\tFile handle %d appears to be redirected by inferior.\n", i);
799 go32_terminal_inferior (void)
801 /* Redirect standard handles as child wants them. */
803 if (redir_to_child (&child_cmd) == -1)
805 redir_to_debugger (&child_cmd);
806 error ("Cannot redirect standard handles for program: %s.",
807 safe_strerror (errno));
809 /* set the console device of the inferior to whatever mode
810 (raw or cooked) we found it last time */
811 if (terminal_is_ours)
814 device_mode (0, inf_terminal_mode);
815 terminal_is_ours = 0;
820 go32_terminal_ours (void)
822 /* Switch to cooked mode on the gdb terminal and save the inferior
823 terminal mode to be restored when it is resumed */
824 if (!terminal_is_ours)
826 inf_terminal_mode = device_mode (0, 0);
827 if (inf_terminal_mode != -1)
830 /* If device_mode returned -1, we don't know what happens with
831 handle 0 anymore, so make the info invalid. */
833 terminal_is_ours = 1;
835 /* Restore debugger's standard handles. */
837 if (redir_to_debugger (&child_cmd) == -1)
839 redir_to_child (&child_cmd);
840 error ("Cannot redirect standard handles for debugger: %s.",
841 safe_strerror (errno));
849 go32_ops.to_shortname = "djgpp";
850 go32_ops.to_longname = "djgpp target process";
852 "Program loaded by djgpp, when gdb is used as an external debugger";
853 go32_ops.to_open = go32_open;
854 go32_ops.to_close = go32_close;
855 go32_ops.to_attach = go32_attach;
856 go32_ops.to_detach = go32_detach;
857 go32_ops.to_resume = go32_resume;
858 go32_ops.to_wait = go32_wait;
859 go32_ops.to_fetch_registers = go32_fetch_registers;
860 go32_ops.to_store_registers = go32_store_registers;
861 go32_ops.to_prepare_to_store = go32_prepare_to_store;
862 go32_ops.to_xfer_memory = go32_xfer_memory;
863 go32_ops.to_files_info = go32_files_info;
864 go32_ops.to_insert_breakpoint = memory_insert_breakpoint;
865 go32_ops.to_remove_breakpoint = memory_remove_breakpoint;
866 go32_ops.to_terminal_init = go32_terminal_init;
867 go32_ops.to_terminal_inferior = go32_terminal_inferior;
868 go32_ops.to_terminal_ours_for_output = go32_terminal_ours;
869 go32_ops.to_terminal_ours = go32_terminal_ours;
870 go32_ops.to_terminal_info = go32_terminal_info;
871 go32_ops.to_kill = go32_kill_inferior;
872 go32_ops.to_create_inferior = go32_create_inferior;
873 go32_ops.to_mourn_inferior = go32_mourn_inferior;
874 go32_ops.to_can_run = go32_can_run;
875 go32_ops.to_stop = go32_stop;
876 go32_ops.to_stratum = process_stratum;
877 go32_ops.to_has_all_memory = 1;
878 go32_ops.to_has_memory = 1;
879 go32_ops.to_has_stack = 1;
880 go32_ops.to_has_registers = 1;
881 go32_ops.to_has_execution = 1;
882 go32_ops.to_magic = OPS_MAGIC;
884 /* Initialize child's cwd as empty to be initialized when starting
888 /* Initialize child's command line storage. */
889 if (redir_debug_init (&child_cmd) == -1)
890 internal_error (__FILE__, __LINE__,
891 "Cannot allocate redirection storage: not enough memory.\n");
893 /* We are always processing GCC-compiled programs. */
894 processing_gcc_compilation = 2;
897 unsigned short windows_major, windows_minor;
899 /* Compute the version Windows reports via Int 2Fh/AX=1600h. */
901 go32_get_windows_version(void)
906 __dpmi_int(0x2f, &r);
907 if (r.h.al > 2 && r.h.al != 0x80 && r.h.al != 0xff
908 && (r.h.al > 3 || r.h.ah > 0))
910 windows_major = r.h.al;
911 windows_minor = r.h.ah;
914 windows_major = 0xff; /* meaning no Windows */
917 /* A subroutine of go32_sysinfo to display memory info. */
919 print_mem (unsigned long datum, const char *header, int in_pages_p)
921 if (datum != 0xffffffffUL)
925 puts_filtered (header);
928 printf_filtered ("%lu KB", datum >> 10);
929 if (datum > 1024 * 1024)
930 printf_filtered (" (%lu MB)", datum >> 20);
933 printf_filtered ("%lu Bytes", datum);
934 puts_filtered ("\n");
938 /* Display assorted information about the underlying OS. */
940 go32_sysinfo (char *arg, int from_tty)
943 char cpuid_vendor[13];
944 unsigned cpuid_max = 0, cpuid_eax, cpuid_ebx, cpuid_ecx, cpuid_edx;
945 unsigned true_dos_version = _get_dos_version (1);
946 unsigned advertized_dos_version = ((unsigned int)_osmajor << 8) | _osminor;
948 char dpmi_vendor_info[129];
949 int dpmi_vendor_available =
950 __dpmi_get_capabilities (&dpmi_flags, dpmi_vendor_info);
951 __dpmi_version_ret dpmi_version_data;
953 __dpmi_free_mem_info mem_info;
956 cpuid_vendor[0] = '\0';
958 strcpy (u.machine, "Unknown x86");
959 else if (u.machine[0] == 'i' && u.machine[1] > 4)
961 /* CPUID with EAX = 0 returns the Vendor ID. */
962 __asm__ __volatile__ ("xorl %%ebx, %%ebx;"
971 : "=m" (cpuid_vendor[0]),
972 "=m" (cpuid_vendor[4]),
973 "=m" (cpuid_vendor[8]),
976 : "%eax", "%ebx", "%ecx", "%edx");
977 cpuid_vendor[12] = '\0';
980 printf_filtered ("CPU Type.......................%s", u.machine);
982 printf_filtered (" (%s)", cpuid_vendor);
983 puts_filtered ("\n");
985 /* CPUID with EAX = 1 returns processor signature and features. */
988 static char *brand_name[] = {
999 int intel_p = strcmp (cpuid_vendor, "GenuineIntel") == 0;
1000 int amd_p = strcmp (cpuid_vendor, "AuthenticAMD") == 0;
1001 unsigned cpu_family, cpu_model;
1003 __asm__ __volatile__ ("movl $1, %%eax;"
1010 brand_idx = cpuid_ebx & 0xff;
1011 cpu_family = (cpuid_eax >> 8) & 0xf;
1012 cpu_model = (cpuid_eax >> 4) & 0xf;
1013 cpu_brand[0] = '\0';
1017 && brand_idx < sizeof(brand_name)/sizeof(brand_name[0])
1018 && *brand_name[brand_idx])
1019 strcpy (cpu_brand, brand_name[brand_idx]);
1020 else if (cpu_family == 5)
1022 if (((cpuid_eax >> 12) & 3) == 0 && cpu_model == 4)
1023 strcpy (cpu_brand, " MMX");
1024 else if (cpu_model > 1 && ((cpuid_eax >> 12) & 3) == 1)
1025 strcpy (cpu_brand, " OverDrive");
1026 else if (cpu_model > 1 && ((cpuid_eax >> 12) & 3) == 2)
1027 strcpy (cpu_brand, " Dual");
1029 else if (cpu_family == 6 && cpu_model < 8)
1034 strcpy (cpu_brand, " Pro");
1037 strcpy (cpu_brand, " II");
1040 strcpy (cpu_brand, " II Xeon");
1043 strcpy (cpu_brand, " Celeron");
1046 strcpy (cpu_brand, " III");
1056 strcpy (cpu_brand, "486/5x86");
1065 strcpy (cpu_brand, "-K5");
1069 strcpy (cpu_brand, "-K6");
1072 strcpy (cpu_brand, "-K6-2");
1075 strcpy (cpu_brand, "-K6-III");
1085 strcpy (cpu_brand, " Athlon");
1088 strcpy (cpu_brand, " Duron");
1094 sprintf (cpu_string, "%s%s Model %d Stepping %d",
1095 intel_p ? "Pentium" : (amd_p ? "AMD" : "ix86"),
1096 cpu_brand, cpu_model, cpuid_eax & 0xf);
1097 printfi_filtered (31, "%s\n", cpu_string);
1098 if (((cpuid_edx & (6 | (0x0d << 23))) != 0)
1099 || ((cpuid_edx & 1) == 0)
1100 || (amd_p && (cpuid_edx & (3 << 30)) != 0))
1102 puts_filtered ("CPU Features...................");
1103 /* We only list features which might be useful in the DPMI
1105 if ((cpuid_edx & 1) == 0)
1106 puts_filtered ("No FPU "); /* it's unusual to not have an FPU */
1107 if ((cpuid_edx & (1 << 1)) != 0)
1108 puts_filtered ("VME ");
1109 if ((cpuid_edx & (1 << 2)) != 0)
1110 puts_filtered ("DE ");
1111 if ((cpuid_edx & (1 << 4)) != 0)
1112 puts_filtered ("TSC ");
1113 if ((cpuid_edx & (1 << 23)) != 0)
1114 puts_filtered ("MMX ");
1115 if ((cpuid_edx & (1 << 25)) != 0)
1116 puts_filtered ("SSE ");
1117 if ((cpuid_edx & (1 << 26)) != 0)
1118 puts_filtered ("SSE2 ");
1121 if ((cpuid_edx & (1 << 31)) != 0)
1122 puts_filtered ("3DNow! ");
1123 if ((cpuid_edx & (1 << 30)) != 0)
1124 puts_filtered ("3DNow!Ext");
1126 puts_filtered ("\n");
1129 puts_filtered ("\n");
1130 printf_filtered ("DOS Version....................%s %s.%s",
1131 _os_flavor, u.release, u.version);
1132 if (true_dos_version != advertized_dos_version)
1133 printf_filtered (" (disguised as v%d.%d)", _osmajor, _osminor);
1134 puts_filtered ("\n");
1136 go32_get_windows_version ();
1137 if (windows_major != 0xff)
1139 const char *windows_flavor;
1141 printf_filtered ("Windows Version................%d.%02d (Windows ",
1142 windows_major, windows_minor);
1143 switch (windows_major)
1146 windows_flavor = "3.X";
1149 switch (windows_minor)
1152 windows_flavor = "95, 95A, or 95B";
1155 windows_flavor = "95B OSR2.1 or 95C OSR2.5";
1158 windows_flavor = "98 or 98 SE";
1161 windows_flavor = "ME";
1164 windows_flavor = "9X";
1169 windows_flavor = "??";
1172 printf_filtered ("%s)\n", windows_flavor);
1174 else if (true_dos_version == 0x532 && advertized_dos_version == 0x500)
1175 printf_filtered ("Windows Version................Windows NT or Windows 2000\n");
1176 puts_filtered ("\n");
1177 if (dpmi_vendor_available == 0)
1179 /* The DPMI spec says the vendor string should be ASCIIZ, but
1180 I don't trust the vendors to follow that... */
1181 if (!memchr (&dpmi_vendor_info[2], 0, 126))
1182 dpmi_vendor_info[128] = '\0';
1183 printf_filtered ("DPMI Host......................%s v%d.%d (capabilities: %#x)\n",
1184 &dpmi_vendor_info[2],
1185 (unsigned)dpmi_vendor_info[0],
1186 (unsigned)dpmi_vendor_info[1],
1187 ((unsigned)dpmi_flags & 0x7f));
1189 __dpmi_get_version (&dpmi_version_data);
1190 printf_filtered ("DPMI Version...................%d.%02d\n",
1191 dpmi_version_data.major, dpmi_version_data.minor);
1192 printf_filtered ("DPMI Info......................%s-bit DPMI, with%s Virtual Memory support\n",
1193 (dpmi_version_data.flags & 1) ? "32" : "16",
1194 (dpmi_version_data.flags & 4) ? "" : "out");
1195 printfi_filtered (31, "Interrupts reflected to %s mode\n",
1196 (dpmi_version_data.flags & 2) ? "V86" : "Real");
1197 printfi_filtered (31, "Processor type: i%d86\n",
1198 dpmi_version_data.cpu);
1199 printfi_filtered (31, "PIC base interrupt: Master: %#x Slave: %#x\n",
1200 dpmi_version_data.master_pic, dpmi_version_data.slave_pic);
1202 /* a_tss is only initialized when the debuggee is first run. */
1203 if (prog_has_started)
1205 __asm__ __volatile__ ("pushfl ; popl %0" : "=g" (eflags));
1206 printf_filtered ("Protection.....................Ring %d (in %s), with%s I/O protection\n",
1207 a_tss.tss_cs & 3, (a_tss.tss_cs & 4) ? "LDT" : "GDT",
1208 (a_tss.tss_cs & 3) > ((eflags >> 12) & 3) ? "" : "out");
1210 puts_filtered ("\n");
1211 __dpmi_get_free_memory_information (&mem_info);
1212 print_mem (mem_info.total_number_of_physical_pages,
1213 "DPMI Total Physical Memory.....", 1);
1214 print_mem (mem_info.total_number_of_free_pages,
1215 "DPMI Free Physical Memory......", 1);
1216 print_mem (mem_info.size_of_paging_file_partition_in_pages,
1217 "DPMI Swap Space................", 1);
1218 print_mem (mem_info.linear_address_space_size_in_pages,
1219 "DPMI Total Linear Address Size.", 1);
1220 print_mem (mem_info.free_linear_address_space_in_pages,
1221 "DPMI Free Linear Address Size..", 1);
1222 print_mem (mem_info.largest_available_free_block_in_bytes,
1223 "DPMI Largest Free Memory Block.", 0);
1227 __dpmi_int (0x21, ®s);
1228 print_mem (regs.x.bx << 4, "Free DOS Memory................", 0);
1230 __dpmi_int (0x21, ®s);
1231 if ((regs.x.flags & 1) == 0)
1233 static const char *dos_hilo[] = {
1234 "Low", "", "", "", "High", "", "", "", "High, then Low"
1236 static const char *dos_fit[] = {
1237 "First", "Best", "Last"
1239 int hilo_idx = (regs.x.ax >> 4) & 0x0f;
1240 int fit_idx = regs.x.ax & 0x0f;
1246 printf_filtered ("DOS Memory Allocation..........%s memory, %s fit\n",
1247 dos_hilo[hilo_idx], dos_fit[fit_idx]);
1249 __dpmi_int (0x21, ®s);
1250 if ((regs.x.flags & 1) != 0)
1252 printfi_filtered (31, "UMBs %sin DOS memory chain\n",
1253 regs.h.al == 0 ? "not " : "");
1258 unsigned short limit0 __attribute__((packed));
1259 unsigned short base0 __attribute__((packed));
1260 unsigned char base1 __attribute__((packed));
1261 unsigned stype:5 __attribute__((packed));
1262 unsigned dpl:2 __attribute__((packed));
1263 unsigned present:1 __attribute__((packed));
1264 unsigned limit1:4 __attribute__((packed));
1265 unsigned available:1 __attribute__((packed));
1266 unsigned dummy:1 __attribute__((packed));
1267 unsigned bit32:1 __attribute__((packed));
1268 unsigned page_granular:1 __attribute__((packed));
1269 unsigned char base2 __attribute__((packed));
1273 unsigned short offset0 __attribute__((packed));
1274 unsigned short selector __attribute__((packed));
1275 unsigned param_count:5 __attribute__((packed));
1276 unsigned dummy:3 __attribute__((packed));
1277 unsigned stype:5 __attribute__((packed));
1278 unsigned dpl:2 __attribute__((packed));
1279 unsigned present:1 __attribute__((packed));
1280 unsigned short offset1 __attribute__((packed));
1283 /* Read LEN bytes starting at logical address ADDR, and put the result
1284 into DEST. Return 1 if success, zero if not. */
1286 read_memory_region (unsigned long addr, void *dest, size_t len)
1288 unsigned long dos_ds_limit = __dpmi_get_segment_limit (_dos_ds);
1291 /* For the low memory, we can simply use _dos_ds. */
1292 if (addr <= dos_ds_limit - len)
1293 dosmemget (addr, len, dest);
1296 /* For memory above 1MB we need to set up a special segment to
1297 be able to access that memory. */
1298 int sel = __dpmi_allocate_ldt_descriptors (1);
1304 int access_rights = __dpmi_get_descriptor_access_rights (sel);
1305 size_t segment_limit = len - 1;
1307 /* Make sure the crucial bits in the descriptor access
1308 rights are set correctly. Some DPMI providers might barf
1309 if we set the segment limit to something that is not an
1310 integral multiple of 4KB pages if the granularity bit is
1311 not set to byte-granular, even though the DPMI spec says
1312 it's the host's responsibility to set that bit correctly. */
1313 if (len > 1024 * 1024)
1315 access_rights |= 0x8000;
1316 /* Page-granular segments should have the low 12 bits of
1318 segment_limit |= 0xfff;
1321 access_rights &= ~0x8000;
1323 if (__dpmi_set_segment_base_address (sel, addr) != -1
1324 && __dpmi_set_descriptor_access_rights (sel, access_rights) != -1
1325 && __dpmi_set_segment_limit (sel, segment_limit) != -1
1326 /* W2K silently fails to set the segment limit, leaving
1327 it at zero; this test avoids the resulting crash. */
1328 && __dpmi_get_segment_limit (sel) >= segment_limit)
1329 movedata (sel, 0, _my_ds (), (unsigned)dest, len);
1333 __dpmi_free_ldt_descriptor (sel);
1339 /* Get a segment descriptor stored at index IDX in the descriptor
1340 table whose base address is TABLE_BASE. Return the descriptor
1341 type, or -1 if failure. */
1343 get_descriptor (unsigned long table_base, int idx, void *descr)
1345 unsigned long addr = table_base + idx * 8; /* 8 bytes per entry */
1347 if (read_memory_region (addr, descr, 8))
1348 return (int)((struct seg_descr *)descr)->stype;
1353 unsigned short limit __attribute__((packed));
1354 unsigned long base __attribute__((packed));
1357 /* Display a segment descriptor stored at index IDX in a descriptor
1358 table whose type is TYPE and whose base address is BASE_ADDR. If
1359 FORCE is non-zero, display even invalid descriptors. */
1361 display_descriptor (unsigned type, unsigned long base_addr, int idx, int force)
1363 struct seg_descr descr;
1364 struct gate_descr gate;
1366 /* Get the descriptor from the table. */
1367 if (idx == 0 && type == 0)
1368 puts_filtered ("0x000: null descriptor\n");
1369 else if (get_descriptor (base_addr, idx, &descr) != -1)
1371 /* For each type of descriptor table, this has a bit set if the
1372 corresponding type of selectors is valid in that table. */
1373 static unsigned allowed_descriptors[] = {
1374 0xffffdafeL, /* GDT */
1375 0x0000c0e0L, /* IDT */
1376 0xffffdafaL /* LDT */
1379 /* If the program hasn't started yet, assume the debuggee will
1380 have the same CPL as the debugger. */
1381 int cpl = prog_has_started ? (a_tss.tss_cs & 3) : _my_cs () & 3;
1382 unsigned long limit = (descr.limit1 << 16) | descr.limit0;
1385 && (allowed_descriptors[type] & (1 << descr.stype)) != 0)
1387 printf_filtered ("0x%03x: ",
1389 ? idx : (idx * 8) | (type ? (cpl | 4) : 0));
1390 if (descr.page_granular)
1391 limit = (limit << 12) | 0xfff; /* big segment: low 12 bit set */
1392 if (descr.stype == 1 || descr.stype == 2 || descr.stype == 3
1393 || descr.stype == 9 || descr.stype == 11
1394 || (descr.stype >= 16 && descr.stype < 32))
1395 printf_filtered ("base=0x%02x%02x%04x limit=0x%08lx",
1396 descr.base2, descr.base1, descr.base0, limit);
1398 switch (descr.stype)
1402 printf_filtered (" 16-bit TSS (task %sactive)",
1403 descr.stype == 3 ? "" : "in");
1406 puts_filtered (" LDT");
1409 memcpy (&gate, &descr, sizeof gate);
1410 printf_filtered ("selector=0x%04x offs=0x%04x%04x",
1411 gate.selector, gate.offset1, gate.offset0);
1412 printf_filtered (" 16-bit Call Gate (params=%d)",
1416 printf_filtered ("TSS selector=0x%04x", descr.base0);
1417 printfi_filtered (16, "Task Gate");
1421 memcpy (&gate, &descr, sizeof gate);
1422 printf_filtered ("selector=0x%04x offs=0x%04x%04x",
1423 gate.selector, gate.offset1, gate.offset0);
1424 printf_filtered (" 16-bit %s Gate",
1425 descr.stype == 6 ? "Interrupt" : "Trap");
1429 printf_filtered (" 32-bit TSS (task %sactive)",
1430 descr.stype == 3 ? "" : "in");
1433 memcpy (&gate, &descr, sizeof gate);
1434 printf_filtered ("selector=0x%04x offs=0x%04x%04x",
1435 gate.selector, gate.offset1, gate.offset0);
1436 printf_filtered (" 32-bit Call Gate (params=%d)",
1441 memcpy (&gate, &descr, sizeof gate);
1442 printf_filtered ("selector=0x%04x offs=0x%04x%04x",
1443 gate.selector, gate.offset1, gate.offset0);
1444 printf_filtered (" 32-bit %s Gate",
1445 descr.stype == 14 ? "Interrupt" : "Trap");
1447 case 16: /* data segments */
1455 printf_filtered (" %s-bit Data (%s Exp-%s%s)",
1456 descr.bit32 ? "32" : "16",
1457 descr.stype & 2 ? "Read/Write," : "Read-Only, ",
1458 descr.stype & 4 ? "down" : "up",
1459 descr.stype & 1 ? "" : ", N.Acc");
1461 case 24: /* code segments */
1469 printf_filtered (" %s-bit Code (%s, %sConf%s)",
1470 descr.bit32 ? "32" : "16",
1471 descr.stype & 2 ? "Exec/Read" : "Exec-Only",
1472 descr.stype & 4 ? "" : "N.",
1473 descr.stype & 1 ? "" : ", N.Acc");
1476 printf_filtered ("Unknown type 0x%02x", descr.stype);
1479 puts_filtered ("\n");
1483 printf_filtered ("0x%03x: ",
1485 ? idx : (idx * 8) | (type ? (cpl | 4) : 0));
1487 puts_filtered ("Segment not present\n");
1489 printf_filtered ("Segment type 0x%02x is invalid in this table\n",
1494 printf_filtered ("0x%03x: Cannot read this descriptor\n", idx);
1498 go32_sldt (char *arg, int from_tty)
1500 struct dtr_reg gdtr;
1501 unsigned short ldtr = 0;
1503 struct seg_descr ldt_descr;
1504 long ldt_entry = -1L;
1505 int cpl = (prog_has_started ? a_tss.tss_cs : _my_cs ()) & 3;
1509 while (*arg && isspace(*arg))
1514 ldt_entry = parse_and_eval_long (arg);
1516 || (ldt_entry & 4) == 0
1517 || (ldt_entry & 3) != (cpl & 3))
1518 error ("Invalid LDT entry 0x%03lx.", (unsigned long)ldt_entry);
1522 __asm__ __volatile__ ("sgdt %0" : "=m" (gdtr) : /* no inputs */ );
1523 __asm__ __volatile__ ("sldt %0" : "=m" (ldtr) : /* no inputs */ );
1526 puts_filtered ("There is no LDT.\n");
1527 /* LDT's entry in the GDT must have the type LDT, which is 2. */
1528 else if (get_descriptor (gdtr.base, ldt_idx, &ldt_descr) != 2)
1529 printf_filtered ("LDT is present (at %#x), but unreadable by GDB.\n",
1531 | (ldt_descr.base1 << 16)
1532 | (ldt_descr.base2 << 24));
1537 | (ldt_descr.base1 << 16)
1538 | (ldt_descr.base2 << 24);
1539 unsigned limit = ldt_descr.limit0 | (ldt_descr.limit1 << 16);
1542 if (ldt_descr.page_granular)
1543 /* Page-granular segments must have the low 12 bits of their
1545 limit = (limit << 12) | 0xfff;
1546 /* LDT cannot have more than 8K 8-byte entries, i.e. more than
1551 max_entry = (limit + 1) / 8;
1555 if (ldt_entry > limit)
1556 error ("Invalid LDT entry %#lx: outside valid limits [0..%#x]",
1557 (unsigned long)ldt_entry, limit);
1559 display_descriptor (ldt_descr.stype, base, ldt_entry / 8, 1);
1565 for (i = 0; i < max_entry; i++)
1566 display_descriptor (ldt_descr.stype, base, i, 0);
1572 go32_sgdt (char *arg, int from_tty)
1574 struct dtr_reg gdtr;
1575 long gdt_entry = -1L;
1580 while (*arg && isspace(*arg))
1585 gdt_entry = parse_and_eval_long (arg);
1586 if (gdt_entry < 0 || (gdt_entry & 7) != 0)
1587 error ("Invalid GDT entry 0x%03lx: not an integral multiple of 8.",
1588 (unsigned long)gdt_entry);
1592 __asm__ __volatile__ ("sgdt %0" : "=m" (gdtr) : /* no inputs */ );
1593 max_entry = (gdtr.limit + 1) / 8;
1597 if (gdt_entry > gdtr.limit)
1598 error ("Invalid GDT entry %#lx: outside valid limits [0..%#x]",
1599 (unsigned long)gdt_entry, gdtr.limit);
1601 display_descriptor (0, gdtr.base, gdt_entry / 8, 1);
1607 for (i = 0; i < max_entry; i++)
1608 display_descriptor (0, gdtr.base, i, 0);
1613 go32_sidt (char *arg, int from_tty)
1615 struct dtr_reg idtr;
1616 long idt_entry = -1L;
1621 while (*arg && isspace(*arg))
1626 idt_entry = parse_and_eval_long (arg);
1628 error ("Invalid (negative) IDT entry %ld.", idt_entry);
1632 __asm__ __volatile__ ("sidt %0" : "=m" (idtr) : /* no inputs */ );
1633 max_entry = (idtr.limit + 1) / 8;
1634 if (max_entry > 0x100) /* no more than 256 entries */
1639 if (idt_entry > idtr.limit)
1640 error ("Invalid IDT entry %#lx: outside valid limits [0..%#x]",
1641 (unsigned long)idt_entry, idtr.limit);
1643 display_descriptor (1, idtr.base, idt_entry, 1);
1649 for (i = 0; i < max_entry; i++)
1650 display_descriptor (1, idtr.base, i, 0);
1654 /* Cached linear address of the base of the page directory. For
1655 now, available only under CWSDPMI. Code based on ideas and
1656 suggestions from Charles Sandmann <sandmann@clio.rice.edu>. */
1657 static unsigned long pdbr;
1659 static unsigned long
1664 unsigned long taskbase, cr3;
1665 struct dtr_reg gdtr;
1667 if (pdbr > 0 && pdbr <= 0xfffff)
1670 /* Get the linear address of GDT and the Task Register. */
1671 __asm__ __volatile__ ("sgdt %0" : "=m" (gdtr) : /* no inputs */ );
1672 __asm__ __volatile__ ("str %0" : "=m" (taskreg) : /* no inputs */ );
1674 /* Task Register is a segment selector for the TSS of the current
1675 task. Therefore, it can be used as an index into the GDT to get
1676 at the segment descriptor for the TSS. To get the index, reset
1677 the low 3 bits of the selector (which give the CPL). Add 2 to the
1678 offset to point to the 3 low bytes of the base address. */
1679 offset = gdtr.base + (taskreg & 0xfff8) + 2;
1682 /* CWSDPMI's task base is always under the 1MB mark. */
1683 if (offset > 0xfffff)
1686 _farsetsel (_dos_ds);
1687 taskbase = _farnspeekl (offset) & 0xffffffU;
1688 taskbase += _farnspeekl (offset + 2) & 0xff000000U;
1689 if (taskbase > 0xfffff)
1692 /* CR3 (a.k.a. PDBR, the Page Directory Base Register) is stored at
1693 offset 1Ch in the TSS. */
1694 cr3 = _farnspeekl (taskbase + 0x1c) & ~0xfff;
1697 #if 0 /* not fullly supported yet */
1698 /* The Page Directory is in UMBs. In that case, CWSDPMI puts
1699 the first Page Table right below the Page Directory. Thus,
1700 the first Page Table's entry for its own address and the Page
1701 Directory entry for that Page Table will hold the same
1702 physical address. The loop below searches the entire UMB
1703 range of addresses for such an occurence. */
1704 unsigned long addr, pte_idx;
1706 for (addr = 0xb0000, pte_idx = 0xb0;
1708 addr += 0x1000, pte_idx++)
1710 if (((_farnspeekl (addr + 4 * pte_idx) & 0xfffff027) ==
1711 (_farnspeekl (addr + 0x1000) & 0xfffff027))
1712 && ((_farnspeekl (addr + 4 * pte_idx + 4) & 0xfffff000) == cr3))
1714 cr3 = addr + 0x1000;
1727 /* Return the N'th Page Directory entry. */
1728 static unsigned long
1731 unsigned long pde = 0;
1733 if (pdbr && n >= 0 && n < 1024)
1735 pde = _farpeekl (_dos_ds, pdbr + 4*n);
1740 /* Return the N'th entry of the Page Table whose Page Directory entry
1742 static unsigned long
1743 get_pte (unsigned long pde, int n)
1745 unsigned long pte = 0;
1747 /* pde & 0x80 tests the 4MB page bit. We don't support 4MB
1748 page tables, for now. */
1749 if ((pde & 1) && !(pde & 0x80) && n >= 0 && n < 1024)
1751 pde &= ~0xfff; /* clear non-address bits */
1752 pte = _farpeekl (_dos_ds, pde + 4*n);
1757 /* Display a Page Directory or Page Table entry. IS_DIR, if non-zero,
1758 says this is a Page Directory entry. If FORCE is non-zero, display
1759 the entry even if its Present flag is off. OFF is the offset of the
1760 address from the page's base address. */
1762 display_ptable_entry (unsigned long entry, int is_dir, int force, unsigned off)
1764 if ((entry & 1) != 0)
1766 printf_filtered ("Base=0x%05lx000", entry >> 12);
1767 if ((entry & 0x100) && !is_dir)
1768 puts_filtered (" Global");
1769 if ((entry & 0x40) && !is_dir)
1770 puts_filtered (" Dirty");
1771 printf_filtered (" %sAcc.", (entry & 0x20) ? "" : "Not-");
1772 printf_filtered (" %sCached", (entry & 0x10) ? "" : "Not-");
1773 printf_filtered (" Write-%s", (entry & 8) ? "Thru" : "Back");
1774 printf_filtered (" %s", (entry & 4) ? "Usr" : "Sup");
1775 printf_filtered (" Read-%s", (entry & 2) ? "Write" : "Only");
1777 printf_filtered (" +0x%x", off);
1778 puts_filtered ("\n");
1781 printf_filtered ("Page%s not present or not supported; value=0x%lx.\n",
1782 is_dir ? " Table" : "", entry >> 1);
1786 go32_pde (char *arg, int from_tty)
1788 long pde_idx = -1, i;
1792 while (*arg && isspace(*arg))
1797 pde_idx = parse_and_eval_long (arg);
1798 if (pde_idx < 0 || pde_idx >= 1024)
1799 error ("Entry %ld is outside valid limits [0..1023].", pde_idx);
1805 puts_filtered ("Access to Page Directories is not supported on this system.\n");
1806 else if (pde_idx >= 0)
1807 display_ptable_entry (get_pde (pde_idx), 1, 1, 0);
1809 for (i = 0; i < 1024; i++)
1810 display_ptable_entry (get_pde (i), 1, 0, 0);
1813 /* A helper function to display entries in a Page Table pointed to by
1814 the N'th entry in the Page Directory. If FORCE is non-zero, say
1815 something even if the Page Table is not accessible. */
1817 display_page_table (long n, int force)
1819 unsigned long pde = get_pde (n);
1825 printf_filtered ("Page Table pointed to by Page Directory entry 0x%lx:\n", n);
1826 for (i = 0; i < 1024; i++)
1827 display_ptable_entry (get_pte (pde, i), 0, 0, 0);
1828 puts_filtered ("\n");
1831 printf_filtered ("Page Table not present; value=0x%lx.\n", pde >> 1);
1835 go32_pte (char *arg, int from_tty)
1837 long pde_idx = -1L, i;
1841 while (*arg && isspace(*arg))
1846 pde_idx = parse_and_eval_long (arg);
1847 if (pde_idx < 0 || pde_idx >= 1024)
1848 error ("Entry %ld is outside valid limits [0..1023].", pde_idx);
1854 puts_filtered ("Access to Page Tables is not supported on this system.\n");
1855 else if (pde_idx >= 0)
1856 display_page_table (pde_idx, 1);
1858 for (i = 0; i < 1024; i++)
1859 display_page_table (i, 0);
1863 go32_pte_for_address (char *arg, int from_tty)
1865 CORE_ADDR addr = 0, i;
1869 while (*arg && isspace(*arg))
1873 addr = parse_and_eval_address (arg);
1876 error_no_arg ("linear address");
1880 puts_filtered ("Access to Page Tables is not supported on this system.\n");
1883 int pde_idx = (addr >> 22) & 0x3ff;
1884 int pte_idx = (addr >> 12) & 0x3ff;
1885 unsigned offs = addr & 0xfff;
1887 printf_filtered ("Page Table entry for address 0x%llx:\n",
1888 (unsigned long long)addr);
1889 display_ptable_entry (get_pte (get_pde (pde_idx), pte_idx), 0, 1, offs);
1893 static struct cmd_list_element *info_dos_cmdlist = NULL;
1896 go32_info_dos_command (char *args, int from_tty)
1898 help_list (info_dos_cmdlist, "info dos ", class_info, gdb_stdout);
1902 _initialize_go32_nat (void)
1905 add_target (&go32_ops);
1907 add_prefix_cmd ("dos", class_info, go32_info_dos_command,
1908 "Print information specific to DJGPP (aka MS-DOS) debugging.",
1909 &info_dos_cmdlist, "info dos ", 0, &infolist);
1911 add_cmd ("sysinfo", class_info, go32_sysinfo,
1912 "Display information about the target system, including CPU, OS, DPMI, etc.",
1914 add_cmd ("ldt", class_info, go32_sldt,
1915 "Display entries in the LDT (Local Descriptor Table).\n"
1916 "Entry number (an expression) as an argument means display only that entry.",
1918 add_cmd ("gdt", class_info, go32_sgdt,
1919 "Display entries in the GDT (Global Descriptor Table).\n"
1920 "Entry number (an expression) as an argument means display only that entry.",
1922 add_cmd ("idt", class_info, go32_sidt,
1923 "Display entries in the IDT (Interrupt Descriptor Table).\n"
1924 "Entry number (an expression) as an argument means display only that entry.",
1926 add_cmd ("pde", class_info, go32_pde,
1927 "Display entries in the Page Directory.\n"
1928 "Entry number (an expression) as an argument means display only that entry.",
1930 add_cmd ("pte", class_info, go32_pte,
1931 "Display entries in Page Tables.\n"
1932 "Entry number (an expression) as an argument means display only entries\n"
1933 "from the Page Table pointed to by the specified Page Directory entry.",
1935 add_cmd ("address-pte", class_info, go32_pte_for_address,
1936 "Display a Page Table entry for a linear address.\n"
1937 "The address argument must be a linear address, after adding to\n"
1938 "it the base address of the appropriate segment.\n"
1939 "The base address of variables and functions in the debuggee's data\n"
1940 "or code segment is stored in the variable __djgpp_base_address,\n"
1941 "so use `__djgpp_base_address + (char *)&var' as the argument.\n"
1942 "For other segments, look up their base address in the output of\n"
1943 "the `info dos ldt' command.",
1957 tcsetpgrp (int fd, pid_t pgid)
1959 if (isatty (fd) && pgid == SOME_PID)
1961 errno = pgid == SOME_PID ? ENOTTY : ENOSYS;