* objdump.c (usage): Mention --stabs.
[deliverable/binutils-gdb.git] / gdb / i386-nlmstub.c
CommitLineData
72dd16ea
ILT
1/* i386-nlmstub.c -- NLM debugging stub for the i386.
2
3 This is originally based on an m68k software stub written by Glenn
4 Engel at HP, but has changed quite a bit. It was modified for the
5 i386 by Jim Kingdon, Cygnus Support. It was modified to run under
6 NetWare by Ian Lance Taylor, Cygnus Support.
7
8 This code is intended to produce an NLM (a NetWare Loadable Module)
9 to run under NetWare on an i386 platform. To create the NLM,
10 compile this code into an object file using the NLM SDK on any i386
11 host, and use the nlmconv program (available in the GNU binutils)
12 to transform the resulting object file into an NLM. */
13
14/****************************************************************************
15
16 THIS SOFTWARE IS NOT COPYRIGHTED
17
18 HP offers the following for use in the public domain. HP makes no
19 warranty with regard to the software or it's performance and the
20 user accepts the software "AS IS" with all faults.
21
22 HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD
23 TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES
24 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
25
26****************************************************************************/
27
28/****************************************************************************
29 *
30 * The following gdb commands are supported:
31 *
32 * command function Return value
33 *
34 * g return the value of the CPU registers hex data or ENN
35 * G set the value of the CPU registers OK or ENN
36 *
37 * mAA..AA,LLLL Read LLLL bytes at address AA..AA hex data or ENN
38 * MAA..AA,LLLL: Write LLLL bytes at address AA.AA OK or ENN
39 *
40 * c Resume at current address SNN ( signal NN)
41 * cAA..AA Continue at address AA..AA SNN
42 *
43 * s Step one instruction SNN
44 * sAA..AA Step one instruction from AA..AA SNN
45 *
46 * k kill
47 *
48 * ? What was the last sigval ? SNN (signal NN)
49 *
50 * All commands and responses are sent with a packet which includes a
51 * checksum. A packet consists of
52 *
53 * $<packet info>#<checksum>.
54 *
55 * where
56 * <packet info> :: <characters representing the command or response>
57 * <checksum> :: < two hex digits computed as modulo 256 sum of <packetinfo>>
58 *
59 * When a packet is received, it is first acknowledged with either '+' or '-'.
60 * '+' indicates a successful transfer. '-' indicates a failed transfer.
61 *
62 * Example:
63 *
64 * Host: Reply:
65 * $m0,10#2a +$00010203040506070809101112131415#42
66 *
67 ****************************************************************************/
68
69#include <dfs.h>
70#include <stdio.h>
71#include <string.h>
72#include <stdlib.h>
73#include <ctype.h>
74#include <time.h>
75#include <aio.h>
76#include <conio.h>
77#include <advanced.h>
78#include <debugapi.h>
79#include <process.h>
80
81/************************************************************************/
82/*****************************************************************************
83 *
84 * (C) Copyright 1988-1993 Novell, Inc.
85 * All Rights Reserved.
86 *
87 * This program is an unpublished copyrighted work which is proprietary
88 * to Novell, Inc. and contains confidential information that is not
89 * to be reproduced or disclosed to any other person or entity without
90 * prior written consent from Novell, Inc. in each and every instance.
91 *
92 * WARNING: Unauthorized reproduction of this program as well as
93 * unauthorized preparation of derivative works based upon the
94 * program or distribution of copies by sale, rental, lease or
95 * lending are violations of federal copyright laws and state trade
96 * secret laws, punishable by civil and criminal penalties.
97 *
98 * $release$
99 * $modname: loadstuff.h$
100 * $version: 1.37$
101 * $date: Fri, Jan 15, 1993$
102 *
103 ****************************************************************************/
104
105
106/* WARNING: THIS IS NOT A COMPLETE OS HEADER FILE - DON'T GET CONFUSED
107 ***********************************************************************
108 * The information is this file is a subset of the OS LOADER.H.
109 * This file was created to reveal the LoadDefinitionStrucutre and some
110 * associated information to Cygnus Support to assist them in their
111 * efforts to develop GNU netware utilities. Don't confuse this file
112 * with LOADER.H or any other actually supported NetWare header.
113
114************************************************************************/
115
116struct LoadDefinitionStructure
117{
118 struct LoadDefinitionStructure *LDLink;
119 struct LoadDefinitionStructure *LDKillLink;
120 struct LoadDefinitionStructure *LDScanLink;
121 struct ResourceTagStructure *LDResourceList;
122 LONG LDIdentificationNumber;
123 LONG LDCodeImageOffset;
124 LONG LDCodeImageLength;
125 LONG LDDataImageOffset;
126 LONG LDDataImageLength;
127 LONG LDUninitializedDataLength;
128 LONG LDCustomDataOffset;
129 LONG LDCustomDataSize;
130 LONG LDFlags;
131 LONG LDType;
132 LONG (*LDInitializationProcedure)(
133 struct LoadDefinitionStructure *LoadRecord,
134 struct ScreenStruct *screenID,
135 BYTE *CommandLine,
136 BYTE *loadDirectoryPath,
137 LONG uninitializedDataLength,
138 LONG fileHandle,
139 LONG (*ReadRoutine)(
140 LONG fileHandle,
141 LONG offset,
142 void *buffer,
143 LONG numberOfBytes),
144 LONG customDataOffset,
145 LONG customDataSize);
146 void (*LDExitProcedure)(void);
147 LONG (*LDCheckUnloadProcedure)(
148 struct ScreenStruct *screenID);
149 struct ExternalPublicDefinitionStructure *LDPublics;
150 BYTE LDFileName[36];
151 BYTE LDName[128];
152 LONG *LDCLIBLoadStructure;
153 LONG *LDNLMDebugger;
154 LONG LDParentID;
155 LONG LDReservedForCLIB;
156 LONG Reserved0;
157 LONG Reserved1;
158 void *LDModuleObjectHandle; /* If Instrumented BEW 10/16/90 */
159 LONG LDMajorVersion;
160 LONG LDMinorVersion;
161 LONG LDRevision;
162 LONG LDYear;
163 LONG LDMonth;
164 LONG LDDay;
165 BYTE *LDCopyright;
166 LONG LDAllocAvailBytes;
167 LONG LDAllocFreeCount;
168 LONG LDLastGarbCollect;
169 LONG LDAlloc16Lists[64];
170 LONG LDAlloc256Lists[12];
171 LONG LDAlloc4kList;
172 struct DomainStructure *LDDomainID; /* This must be non-zero for the Alloc Hunt code to work right. */
173 /* It also points to the domain structure. */
174 struct LoadDefinitionStructure *LDEnvLink;
175 void *LDAllocPagesListHead;
176 struct ExternalPublicDefinitionStructure *LDTempPublicList;
177 LONG LDMessageLanguage; /* for enabling */
178 BYTE **LDMessages; /* for enabling */
179 LONG LDMessageCount; /* for enabling */
180 BYTE *LDHelpFile; /* for enabling */
181 LONG LDMessageBufferSize; /* for enabling */
182 LONG LDHelpBufferSize; /* for enabling */
183 LONG LDSharedCodeOffset; /* for protection */
184 LONG LDSharedCodeLength; /* for protection */
185 LONG LDSharedDataOffset; /* for protection */
186 LONG LDSharedDataLength; /* for protection */
187 LONG (*LDSharedInitProcedure)(
188 struct LoadDefinitionStructure *LoadRecord,
189 struct ScreenStruct *screenID,
190 BYTE *CommandLine);
191 void (*LDSharedExitProcedure)(void);
192 LONG LDRPCDataTable;
193 LONG LDRealRPCDataTable;
194 LONG LDRPCDataTableSize;
195 LONG LDNumberOfReferencedPublics;
196 struct ExternalPublicDefinitionStructure **LDReferencedPublics;
197 LONG LDNumberOfReferencedExports;
198};
199
200
201/* define the LDFlags. */
202
203#define LDModuleIsReEntrantBit 0x00000001
204#define LDModuleCanBeMultiplyLoadedBit 0x00000002
205#define LDSynchronizeStart 0x00000004
206#define LDPseudoPreemptionBit 0x00000008
207#define LDLoadInOSDomain 0x00000010
208#define LDDontUnloadBit 0x20000000
209#define LDModuleIsBeingDebugged 0x40000000
210#define LDMemoryOn4KBoundriesBit 0x80000000
211
212/* LoadModule load options */
213#define LO_NORMAL 0x0000
214#define LO_STARTUP 0x0001
215#define LO_PROTECT 0x0002
216#define LO_DEBUG 0x0004
217#define LO_AUTO_LOAD 0x0008
218#define LO_DONT_PROMPT 0x0010
219#define LO_LOAD_LOW 0x0020
220#define LO_RETURN_HANDLE 0x0040
221#define LO_LOAD_SILENT 0x0080
222
223/* Loader returned error codes */
224#define LOAD_COULD_NOT_FIND_FILE 1
225#define LOAD_ERROR_READING_FILE 2
226#define LOAD_NOT_NLM_FILE_FORMAT 3
227#define LOAD_WRONG_NLM_FILE_VERSION 4
228#define LOAD_REENTRANT_INITIALIZE_FAILURE 5
229#define LOAD_CAN_NOT_LOAD_MULTIPLE_COPIES 6
230#define LOAD_ALREADY_IN_PROGRESS 7
231#define LOAD_NOT_ENOUGH_MEMORY 8
232#define LOAD_INITIALIZE_FAILURE 9
233#define LOAD_INCONSISTENT_FILE_FORMAT 10
234#define LOAD_CAN_NOT_LOAD_AT_STARTUP 11
235#define LOAD_AUTO_LOAD_MODULES_NOT_LOADED 12
236#define LOAD_UNRESOLVED_EXTERNAL 13
237#define LOAD_PUBLIC_ALREADY_DEFINED 14
238#define LOAD_XDC_DATA_ERROR 15
239#define LOAD_NOT_OS_DOMAIN 16
240
241/****************************************************************************/
242
243/* The main thread ID. */
244static int mainthread;
245
72dd16ea
ILT
246/* The LoadDefinitionStructure of the NLM being debugged. */
247static struct LoadDefinitionStructure *handle;
248
249/* Whether we have connected to gdb. */
250static int talking;
251
252/* The actual first instruction in the program. */
253static unsigned char first_insn;
254
255/* An error message for the main thread to print. */
256static char *error_message;
257
258/* The AIO port handle. */
259static int AIOhandle;
260
261/* The console screen. */
262static int console_screen;
263
264/* BUFMAX defines the maximum number of characters in inbound/outbound
265 buffers. At least NUMREGBYTES*2 are needed for register packets */
266#define BUFMAX 400
267
268/* remote_debug > 0 prints ill-formed commands in valid packets and
269 checksum errors. */
270static int remote_debug = 1;
271
272static const char hexchars[] = "0123456789abcdef";
273
274/* Number of bytes of registers. */
275#define NUMREGBYTES 64
276enum regnames {EAX, ECX, EDX, EBX, ESP, EBP, ESI, EDI,
277 PC /* also known as eip */,
278 PS /* also known as eflags */,
279 CS, SS, DS, ES, FS, GS};
280
281/* Register values. */
282static int registers[NUMREGBYTES/4];
283
284/* Read a character from the serial port. This must busy wait, but
285 that's OK because we will be the only thread running anyhow. */
286
287static int
288getDebugChar ()
289{
290 int err;
291 LONG got;
292 unsigned char ret;
293
294 do
295 {
296 err = AIOReadData (AIOhandle, (char *) &ret, 1, &got);
297 if (err != 0)
298 {
299 error_message = "AIOReadData failed";
300 ResumeThread (mainthread);
301 return -1;
302 }
303 }
304 while (got == 0);
305
306 return ret;
307}
308
309/* Write a character to the serial port. Returns 0 on failure,
310 non-zero on success. */
311
312static int
313putDebugChar (c)
314 unsigned char c;
315{
316 int err;
317 LONG put;
318
319 err = AIOWriteData (AIOhandle, (char *) &c, 1, &put);
320 if (err != 0 || put != 1)
321 {
322 error_message = "AIOWriteData failed";
323 ResumeThread (mainthread);
324 return 0;
325 }
326 return 1;
327}
328
329/* Get the registers out of the frame information. */
330
331static void
332frame_to_registers (frame, regs)
333 T_TSS_StackFrame *frame;
334 int *regs;
335{
336 regs[EAX] = frame->ExceptionEAX;
337 regs[ECX] = frame->ExceptionECX;
338 regs[EDX] = frame->ExceptionEDX;
339 regs[EBX] = frame->ExceptionEBX;
340 regs[ESP] = frame->ExceptionESP;
341 regs[EBP] = frame->ExceptionEBP;
342 regs[ESI] = frame->ExceptionESI;
343 regs[EDI] = frame->ExceptionEDI;
344 regs[PC] = frame->ExceptionEIP;
345 regs[PS] = frame->ExceptionSystemFlags;
346 regs[CS] = frame->ExceptionCS[0];
347 regs[SS] = frame->ExceptionSS[0];
348 regs[DS] = frame->ExceptionDS[0];
349 regs[ES] = frame->ExceptionES[0];
350 regs[FS] = frame->ExceptionFS[0];
351 regs[GS] = frame->ExceptionGS[0];
352}
353
354/* Put the registers back into the frame information. */
355
356static void
357registers_to_frame (regs, frame)
358 int *regs;
359 T_TSS_StackFrame *frame;
360{
361 frame->ExceptionEAX = regs[EAX];
362 frame->ExceptionECX = regs[ECX];
363 frame->ExceptionEDX = regs[EDX];
364 frame->ExceptionEBX = regs[EBX];
365 frame->ExceptionESP = regs[ESP];
366 frame->ExceptionEBP = regs[EBP];
367 frame->ExceptionESI = regs[ESI];
368 frame->ExceptionEDI = regs[EDI];
369 frame->ExceptionEIP = regs[PC];
370 frame->ExceptionSystemFlags = regs[PS];
371 frame->ExceptionCS[0] = regs[CS];
372 frame->ExceptionSS[0] = regs[SS];
373 frame->ExceptionDS[0] = regs[DS];
374 frame->ExceptionES[0] = regs[ES];
375 frame->ExceptionFS[0] = regs[FS];
376 frame->ExceptionGS[0] = regs[GS];
377}
378
379/* Turn a hex character into a number. */
380
381static int
382hex (ch)
383 char ch;
384{
385 if ((ch >= 'a') && (ch <= 'f'))
386 return (ch-'a'+10);
387 if ((ch >= '0') && (ch <= '9'))
388 return (ch-'0');
389 if ((ch >= 'A') && (ch <= 'F'))
390 return (ch-'A'+10);
391 return (-1);
392}
393
394/* Scan for the sequence $<data>#<checksum>. Returns 0 on failure,
395 non-zero on success. */
396
397static int
398getpacket (buffer)
399 char * buffer;
400{
401 unsigned char checksum;
402 unsigned char xmitcsum;
403 int i;
404 int count;
405 int ch;
406
407 do
408 {
409 /* wait around for the start character, ignore all other characters */
410 while ((ch = getDebugChar()) != '$')
411 if (ch == -1)
412 return 0;
413 checksum = 0;
414 xmitcsum = -1;
415
416 count = 0;
417
418 /* now, read until a # or end of buffer is found */
419 while (count < BUFMAX)
420 {
421 ch = getDebugChar();
422 if (ch == -1)
423 return 0;
424 if (ch == '#')
425 break;
426 checksum = checksum + ch;
427 buffer[count] = ch;
428 count = count + 1;
429 }
430 buffer[count] = 0;
431
432 if (ch == '#')
433 {
434 ch = getDebugChar ();
435 if (ch == -1)
436 return 0;
437 xmitcsum = hex(ch) << 4;
438 ch = getDebugChar ();
439 if (ch == -1)
440 return 0;
441 xmitcsum += hex(ch);
442 if ((remote_debug ) && (checksum != xmitcsum))
443 {
444 fprintf(stderr,"bad checksum. My count = 0x%x, sent=0x%x. buf=%s\n",
445 checksum,xmitcsum,buffer);
446 }
447
448 if (checksum != xmitcsum)
449 {
450 /* failed checksum */
451 if (! putDebugChar('-'))
452 return 0;
453 }
454 else
455 {
456 /* successful transfer */
457 if (! putDebugChar('+'))
458 return 0;
459 /* if a sequence char is present, reply the sequence ID */
460 if (buffer[2] == ':')
461 {
462 if (! putDebugChar (buffer[0])
463 || ! putDebugChar (buffer[1]))
464 return 0;
465 /* remove sequence chars from buffer */
466 count = strlen(buffer);
467 for (i=3; i <= count; i++)
468 buffer[i-3] = buffer[i];
469 }
470 }
471 }
472 }
473 while (checksum != xmitcsum);
474
89709d42
ILT
475 if (remote_debug)
476 ConsolePrintf ("Received packet \"%s\"\r\n", buffer);
477
72dd16ea
ILT
478 return 1;
479}
480
481/* Send the packet in buffer. Returns 0 on failure, non-zero on
482 success. */
483
484static int
485putpacket (buffer)
486 char * buffer;
487{
488 unsigned char checksum;
489 int count;
490 int ch;
491
89709d42
ILT
492 if (remote_debug)
493 ConsolePrintf ("Sending packet \"%s\"\r\n", buffer);
494
72dd16ea
ILT
495 /* $<packet info>#<checksum>. */
496 do
497 {
498 if (! putDebugChar('$'))
499 return 0;
500 checksum = 0;
501 count = 0;
502
503 while (ch=buffer[count])
504 {
505 if (! putDebugChar(ch))
506 return 0;
507 checksum += ch;
508 count += 1;
509 }
510
511 if (! putDebugChar('#')
512 || ! putDebugChar(hexchars[checksum >> 4])
513 || ! putDebugChar(hexchars[checksum % 16]))
514 return 0;
515
516 ch = getDebugChar ();
517 if (ch == -1)
518 return 0;
519 }
520 while (ch != '+');
521
522 return 1;
523}
524
525static char remcomInBuffer[BUFMAX];
526static char remcomOutBuffer[BUFMAX];
527static short error;
528
529static void
530debug_error (format, parm)
531 char *format;
532 char *parm;
533{
534 if (remote_debug)
89709d42
ILT
535 {
536 fprintf (stderr, format, parm);
537 fprintf (stderr, "\n");
538 }
72dd16ea
ILT
539}
540
89709d42
ILT
541/* This is set if we could get a memory access fault. */
542static int mem_may_fault;
72dd16ea
ILT
543
544/* Indicate to caller of mem2hex or hex2mem that there has been an
545 error. */
546static volatile int mem_err = 0;
547
72dd16ea
ILT
548/* These are separate functions so that they are so short and sweet
549 that the compiler won't save any registers (if there is a fault
550 to mem_fault, they won't get restored, so there better not be any
551 saved). */
552
553static int
554get_char (addr)
555 char *addr;
556{
557 return *addr;
558}
559
560static void
561set_char (addr, val)
562 char *addr;
563 int val;
564{
565 *addr = val;
566}
567
89709d42
ILT
568/* This bit of assembly language just returns from a function. If a
569 memory error occurs within get_char or set_char, the debugger
570 handler points EIP at these instructions to get out. */
571
572extern void just_return ();
573asm (".globl just_return");
574asm (".globl _just_return");
575asm ("just_return:");
576asm ("_just_return:");
577asm ("leave");
578asm ("ret");
579
72dd16ea
ILT
580/* convert the memory pointed to by mem into hex, placing result in buf */
581/* return a pointer to the last char put in buf (null) */
582/* If MAY_FAULT is non-zero, then we should set mem_err in response to
583 a fault; if zero treat a fault like any other fault in the stub. */
584
585static char *
586mem2hex (mem, buf, count, may_fault)
587 char *mem;
588 char *buf;
589 int count;
590 int may_fault;
591{
592 int i;
593 unsigned char ch;
594
89709d42 595 mem_may_fault = may_fault;
72dd16ea
ILT
596 for (i = 0; i < count; i++)
597 {
598 ch = get_char (mem++);
599 if (may_fault && mem_err)
600 return (buf);
601 *buf++ = hexchars[ch >> 4];
602 *buf++ = hexchars[ch % 16];
603 }
604 *buf = 0;
89709d42 605 mem_may_fault = 0;
72dd16ea
ILT
606 return(buf);
607}
608
609/* convert the hex array pointed to by buf into binary to be placed in mem */
610/* return a pointer to the character AFTER the last byte written */
611
612static char *
613hex2mem (buf, mem, count, may_fault)
614 char *buf;
615 char *mem;
616 int count;
617 int may_fault;
618{
619 int i;
620 unsigned char ch;
621
89709d42 622 mem_may_fault = may_fault;
72dd16ea
ILT
623 for (i=0;i<count;i++)
624 {
625 ch = hex(*buf++) << 4;
626 ch = ch + hex(*buf++);
627 set_char (mem++, ch);
628 if (may_fault && mem_err)
629 return (mem);
630 }
89709d42 631 mem_may_fault = 0;
72dd16ea
ILT
632 return(mem);
633}
634
635/* This function takes the 386 exception vector and attempts to
636 translate this number into a unix compatible signal value. */
637
638static int
639computeSignal (exceptionVector)
640 int exceptionVector;
641{
642 int sigval;
643 switch (exceptionVector)
644 {
645 case 0 : sigval = 8; break; /* divide by zero */
646 case 1 : sigval = 5; break; /* debug exception */
647 case 3 : sigval = 5; break; /* breakpoint */
648 case 4 : sigval = 16; break; /* into instruction (overflow) */
649 case 5 : sigval = 16; break; /* bound instruction */
650 case 6 : sigval = 4; break; /* Invalid opcode */
651 case 7 : sigval = 8; break; /* coprocessor not available */
652 case 8 : sigval = 7; break; /* double fault */
653 case 9 : sigval = 11; break; /* coprocessor segment overrun */
654 case 10 : sigval = 11; break; /* Invalid TSS */
655 case 11 : sigval = 11; break; /* Segment not present */
656 case 12 : sigval = 11; break; /* stack exception */
657 case 13 : sigval = 11; break; /* general protection */
658 case 14 : sigval = 11; break; /* page fault */
659 case 16 : sigval = 7; break; /* coprocessor error */
660 default:
661 sigval = 7; /* "software generated"*/
662 }
663 return (sigval);
664}
665
666/**********************************************/
667/* WHILE WE FIND NICE HEX CHARS, BUILD AN INT */
668/* RETURN NUMBER OF CHARS PROCESSED */
669/**********************************************/
670static int
671hexToInt(ptr, intValue)
672 char **ptr;
673 int *intValue;
674{
675 int numChars = 0;
676 int hexValue;
677
678 *intValue = 0;
679
680 while (**ptr)
681 {
682 hexValue = hex(**ptr);
683 if (hexValue >=0)
684 {
685 *intValue = (*intValue <<4) | hexValue;
686 numChars ++;
687 }
688 else
689 break;
690
691 (*ptr)++;
692 }
693
694 return (numChars);
695}
696
697/* This function does all command processing for interfacing to gdb.
698 It is called whenever an exception occurs in the module being
699 debugged. */
700
701static LONG
702handle_exception (T_StackFrame *old_frame)
703{
704 T_TSS_StackFrame *frame = (T_TSS_StackFrame *) old_frame;
72dd16ea
ILT
705 int sigval;
706 int addr, length;
707 char * ptr;
708 int newPC;
709
710 /* Apparently the bell can sometimes be ringing at this point, and
711 should be stopped. */
712 StopBell ();
713
714 if (remote_debug)
715 {
716 ConsolePrintf ("vector=%d: %s, sr=0x%x, pc=0x%x, thread=%d\r\n",
717 frame->ExceptionNumber,
718 frame->ExceptionDescription,
719 frame->ExceptionSystemFlags,
720 frame->ExceptionEIP,
721 GetThreadID ());
722 }
723
724 /* If the NLM just started, we record the module load information
725 and the thread ID, and set a breakpoint at the first instruction
726 in the program. */
727 if (frame->ExceptionNumber == START_NLM_EVENT
728 && handle == NULL)
729 {
72dd16ea
ILT
730 handle = (struct LoadDefinitionStructure *) frame->ExceptionErrorCode;
731 first_insn = *(char *) handle->LDInitializationProcedure;
732 *(unsigned char *) handle->LDInitializationProcedure = 0xcc;
733 return RETURN_TO_PROGRAM;
734 }
735
89709d42
ILT
736 /* After we've reached the initial breakpoint, reset it. */
737 if (frame->ExceptionEIP == (LONG) handle->LDInitializationProcedure + 1
738 && *(unsigned char *) handle->LDInitializationProcedure == 0xcc)
739 {
740 *(char *) handle->LDInitializationProcedure = first_insn;
741 frame->ExceptionEIP = (LONG) handle->LDInitializationProcedure;
742 }
743
d6a99838
ILT
744 /* Pass some events on to the next debugger, in case it will handle
745 them. */
746 if (frame->ExceptionNumber == ENTER_DEBUGGER_EVENT
747 || frame->ExceptionNumber == KEYBOARD_BREAK_EVENT)
748 return RETURN_TO_NEXT_DEBUGGER;
749
72dd16ea
ILT
750 /* At the moment, we don't care about most of the unusual NetWare
751 exceptions. */
752 if (frame->ExceptionNumber != TERMINATE_NLM_EVENT
753 && frame->ExceptionNumber > 31)
754 return RETURN_TO_PROGRAM;
755
89709d42
ILT
756 /* If we get a GP fault, and mem_may_fault is set, and the
757 instruction pointer is near set_char or get_char, then we caused
758 the fault ourselves accessing an illegal memory location. */
759 if (mem_may_fault
760 && (frame->ExceptionNumber == 11
761 || frame->ExceptionNumber == 13
762 || frame->ExceptionNumber == 14)
763 && ((frame->ExceptionEIP >= (long) &set_char
764 && frame->ExceptionEIP < (long) &set_char + 50)
765 || (frame->ExceptionEIP >= (long) &get_char
766 && frame->ExceptionEIP < (long) &get_char + 50)))
72dd16ea 767 {
89709d42
ILT
768 mem_err = 1;
769 /* Point the instruction pointer at an assembly language stub
770 which just returns from the function. */
771 frame->ExceptionEIP = (long) &just_return;
772 /* Keep going. This will act as though it returned from
773 set_char or get_char. The calling routine will check
774 mem_err, and do the right thing. */
775 return RETURN_TO_PROGRAM;
72dd16ea
ILT
776 }
777
778 /* FIXME: How do we know that this exception has anything to do with
779 the program we are debugging? We can check whether the PC is in
780 the range of the module we are debugging, but that doesn't help
781 much since an error could occur in a library routine. */
782
783 frame_to_registers (frame, registers);
784
785 /* reply to host that an exception has occurred */
786 if (frame->ExceptionNumber == TERMINATE_NLM_EVENT)
787 {
788 /* There is no way to get the exit status. */
789 remcomOutBuffer[0] = 'W';
790 remcomOutBuffer[1] = hexchars[0];
791 remcomOutBuffer[2] = hexchars[0];
792 remcomOutBuffer[3] = 0;
793 }
794 else
795 {
796 sigval = computeSignal (frame->ExceptionNumber);
89709d42 797 remcomOutBuffer[0] = 'N';
72dd16ea
ILT
798 remcomOutBuffer[1] = hexchars[sigval >> 4];
799 remcomOutBuffer[2] = hexchars[sigval % 16];
89709d42
ILT
800 sprintf (remcomOutBuffer + 3, "0x%x;0x%x;0x%x",
801 handle->LDCodeImageOffset,
802 handle->LDDataImageOffset,
803 handle->LDDataImageOffset + handle->LDDataImageLength);
72dd16ea
ILT
804 }
805
806 if (! putpacket(remcomOutBuffer))
807 return RETURN_TO_NEXT_DEBUGGER;
808
809 if (frame->ExceptionNumber == TERMINATE_NLM_EVENT)
810 {
811 ResumeThread (mainthread);
812 return RETURN_TO_PROGRAM;
813 }
814
815 while (1)
816 {
817 error = 0;
818 remcomOutBuffer[0] = 0;
819 if (! getpacket (remcomInBuffer))
820 return RETURN_TO_NEXT_DEBUGGER;
821 talking = 1;
822 switch (remcomInBuffer[0])
823 {
824 case '?':
825 sigval = computeSignal (frame->ExceptionNumber);
89709d42 826 remcomOutBuffer[0] = 'N';
72dd16ea
ILT
827 remcomOutBuffer[1] = hexchars[sigval >> 4];
828 remcomOutBuffer[2] = hexchars[sigval % 16];
89709d42
ILT
829 sprintf (remcomOutBuffer + 3, "0x%x;0x%x;0x%x",
830 handle->LDCodeImageOffset,
831 handle->LDDataImageOffset,
832 handle->LDDataImageOffset + handle->LDDataImageLength);
72dd16ea
ILT
833 break;
834 case 'd':
835 remote_debug = !(remote_debug); /* toggle debug flag */
836 break;
837 case 'g':
838 /* return the value of the CPU registers */
839 mem2hex((char*) registers, remcomOutBuffer, NUMREGBYTES, 0);
840 break;
841 case 'G':
842 /* set the value of the CPU registers - return OK */
843 hex2mem(&remcomInBuffer[1], (char*) registers, NUMREGBYTES, 0);
844 strcpy(remcomOutBuffer,"OK");
845 break;
846
847 case 'm':
848 /* mAA..AA,LLLL Read LLLL bytes at address AA..AA */
849 /* TRY TO READ %x,%x. IF SUCCEED, SET PTR = 0 */
850 ptr = &remcomInBuffer[1];
851 if (hexToInt(&ptr,&addr))
852 if (*(ptr++) == ',')
853 if (hexToInt(&ptr,&length))
854 {
855 ptr = 0;
856 mem_err = 0;
857 mem2hex((char*) addr, remcomOutBuffer, length, 1);
858 if (mem_err)
859 {
860 strcpy (remcomOutBuffer, "E03");
861 debug_error ("memory fault");
862 }
863 }
864
865 if (ptr)
866 {
867 strcpy(remcomOutBuffer,"E01");
868 debug_error("malformed read memory command: %s",remcomInBuffer);
869 }
870 break;
871
872 case 'M':
873 /* MAA..AA,LLLL: Write LLLL bytes at address AA.AA return OK */
874 /* TRY TO READ '%x,%x:'. IF SUCCEED, SET PTR = 0 */
875 ptr = &remcomInBuffer[1];
876 if (hexToInt(&ptr,&addr))
877 if (*(ptr++) == ',')
878 if (hexToInt(&ptr,&length))
879 if (*(ptr++) == ':')
880 {
881 mem_err = 0;
882 hex2mem(ptr, (char*) addr, length, 1);
883
884 if (mem_err)
885 {
886 strcpy (remcomOutBuffer, "E03");
887 debug_error ("memory fault");
888 }
889 else
890 {
891 strcpy(remcomOutBuffer,"OK");
892 }
893
894 ptr = 0;
895 }
896 if (ptr)
897 {
898 strcpy(remcomOutBuffer,"E02");
899 debug_error("malformed write memory command: %s",remcomInBuffer);
900 }
901 break;
902
903 case 'c':
904 case 's':
905 /* cAA..AA Continue at address AA..AA(optional) */
906 /* sAA..AA Step one instruction from AA..AA(optional) */
907 /* try to read optional parameter, pc unchanged if no parm */
908 ptr = &remcomInBuffer[1];
909 if (hexToInt(&ptr,&addr))
910 registers[ PC ] = addr;
911
912 newPC = registers[ PC];
913
914 /* clear the trace bit */
915 registers[ PS ] &= 0xfffffeff;
916
917 /* set the trace bit if we're stepping */
918 if (remcomInBuffer[0] == 's') registers[ PS ] |= 0x100;
919
920 registers_to_frame (registers, frame);
921 return RETURN_TO_PROGRAM;
922
923 case 'k':
924 /* kill the program */
925 KillMe (handle);
926 ResumeThread (mainthread);
927 return RETURN_TO_PROGRAM;
928 }
929
930 /* reply to the request */
931 if (! putpacket(remcomOutBuffer))
932 return RETURN_TO_NEXT_DEBUGGER;
933 }
934}
935
936/* Start up. The main thread opens the named serial I/O port, loads
937 the named NLM module and then goes to sleep. The serial I/O port
938 is named as a board number and a port number. It would be more DOS
939 like to provide a menu of available serial ports, but I don't want
940 to have to figure out how to do that. */
941
942int
943main (argc, argv)
944 int argc;
945 char **argv;
946{
947 int hardware, board, port;
948 LONG err;
949 struct debuggerStructure s;
950 char *cmdlin;
951 int i;
952
953 /* Create a screen for the debugger. */
954 console_screen = CreateScreen ("System Console", 0);
955 if (DisplayScreen (console_screen) != ESUCCESS)
956 fprintf (stderr, "DisplayScreen failed\n");
957
958 if (argc < 4)
959 {
960 fprintf (stderr,
961 "Usage: load gdbserver board port program [arguments]\n");
962 exit (1);
963 }
964
965 hardware = -1;
966 board = strtol (argv[1], (char **) NULL, 0);
967 port = strtol (argv[2], (char **) NULL, 0);
968
969 err = AIOAcquirePort (&hardware, &board, &port, &AIOhandle);
970 if (err != AIO_SUCCESS)
971 {
972 switch (err)
973 {
974 case AIO_PORT_NOT_AVAILABLE:
975 fprintf (stderr, "Port not available\n");
976 break;
977
978 case AIO_BOARD_NUMBER_INVALID:
979 case AIO_PORT_NUMBER_INVALID:
980 fprintf (stderr, "No such port\n");
981 break;
982
983 default:
984 fprintf (stderr, "Could not open port: %d\n", err);
985 break;
986 }
987
988 exit (1);
989 }
990
991 err = AIOConfigurePort (AIOhandle, AIO_BAUD_9600, AIO_DATA_BITS_8,
992 AIO_STOP_BITS_1, AIO_PARITY_NONE,
993 AIO_HARDWARE_FLOW_CONTROL_OFF);
994 if (err != AIO_SUCCESS)
995 {
996 fprintf (stderr, "Could not configure port: %d\n", err);
997 AIOReleasePort (AIOhandle);
998 exit (1);
999 }
1000
1001 /* Register ourselves as an alternate debugger. */
1002 memset (&s, 0, sizeof s);
1003 s.DDSResourceTag = ((struct ResourceTagStructure *)
1004 AllocateResourceTag (GetNLMHandle (),
1005 "gdbserver",
1006 DebuggerSignature));
1007 if (s.DDSResourceTag == 0)
1008 {
1009 fprintf (stderr, "AllocateResourceTag failed\n");
1010 AIOReleasePort (AIOhandle);
1011 exit (1);
1012 }
1013 s.DDSdebuggerEntry = handle_exception;
1014 s.DDSFlags = TSS_FRAME_BIT;
1015
1016 err = RegisterDebuggerRTag (&s, AT_FIRST);
1017 if (err != 0)
1018 {
1019 fprintf (stderr, "RegisterDebuggerRTag failed\n");
1020 AIOReleasePort (AIOhandle);
1021 exit (1);
1022 }
1023
1024 /* Get the command line we were invoked with, and advance it past
1025 our name and the board and port arguments. */
1026 cmdlin = getcmd ((char *) NULL);
1027 for (i = 0; i < 2; i++)
1028 {
1029 while (! isspace (*cmdlin))
1030 ++cmdlin;
1031 while (isspace (*cmdlin))
1032 ++cmdlin;
1033 }
1034
1035 /* In case GDB is started before us, ack any packets (presumably
1036 "$?#xx") sitting there. */
1037 if (! putDebugChar ('+'))
1038 {
1039 fprintf (stderr, "putDebugChar failed\n");
1040 UnRegisterDebugger (&s);
1041 AIOReleasePort (AIOhandle);
1042 exit (1);
1043 }
1044
1045 mainthread = GetThreadID ();
1046 handle = NULL;
1047 talking = 0;
1048
1049 if (remote_debug > 0)
1050 ConsolePrintf ("About to call LoadModule with \"%s\" %d %d\r\n",
1051 cmdlin, console_screen, __GetScreenID (console_screen));
1052
1053 /* Start up the module to be debugged. */
1054 err = LoadModule ((struct ScreenStruct *) __GetScreenID (console_screen),
1055 cmdlin, LO_DEBUG);
1056 if (err != 0)
1057 {
1058 fprintf (stderr, "LoadModule failed: %d\n", err);
1059 UnRegisterDebugger (&s);
1060 AIOReleasePort (AIOhandle);
1061 exit (1);
1062 }
1063
d6a99838 1064 /* Wait for the debugger to wake us up. */
72dd16ea 1065 if (remote_debug > 0)
d6a99838 1066 ConsolePrintf ("Suspending main thread (%d)\r\n", mainthread);
72dd16ea 1067 SuspendThread (mainthread);
d6a99838
ILT
1068 if (remote_debug > 0)
1069 ConsolePrintf ("Resuming main thread (%d)\r\n", mainthread);
72dd16ea
ILT
1070
1071 /* If we are woken up, print an optional error message, deregister
1072 ourselves and exit. */
1073 if (error_message != NULL)
1074 fprintf (stderr, "%s\n", error_message);
1075 UnRegisterDebugger (&s);
1076 AIOReleasePort (AIOhandle);
1077 exit (0);
1078}
This page took 0.063739 seconds and 4 git commands to generate.